Use macros from dispextern.h where appropriate.
[bpt/emacs.git] / src / ChangeLog
1 2013-03-10 Eli Zaretskii <eliz@gnu.org>
2
3 * xdisp.c (display_tool_bar_line, redisplay_tool_bar)
4 (redisplay_internal, set_cursor_from_row, try_window)
5 (try_window_id, dump_glyph_row, extend_face_to_end_of_line)
6 (display_line, notice_overwritten_cursor)
7 (mouse_face_from_buffer_pos, note_mouse_highlight): Use
8 MATRIX_ROW_DISPLAYS_TEXT_P.
9 (note_mouse_highlight): Use MATRIX_ROW_GLYPH_START.
10 (mouse_face_from_string_pos, fast_find_string_pos): Use
11 MATRIX_ROW_VPOS.
12
13 * xfns.c (Fx_show_tip): Use MATRIX_ROW_DISPLAYS_TEXT_P.
14
15 * w32fns.c (Fx_show_tip): Use MATRIX_ROW_DISPLAYS_TEXT_P.
16
17 * xdisp.c (try_cursor_movement): Use MATRIX_ROW and
18 MATRIX_MODE_LINE_ROW.
19
20 * dispnew.c (update_window): Use MATRIX_ROW and MATRIX_MODE_LINE_ROW.
21
22 2013-03-10 handa <handa@gnu.org>
23
24 * lisp.h (adjust_after_replace): Extern it.
25
26 * coding.c (detect_coding): Cound the heading ASCII bytes in the
27 case of detection for coding_category_utf_8_auto.
28 (decode_coding_gap) [not CODING_DISABLE_ASCII_OPTIMIZATION]: Skip
29 decoding if all bytes are ASCII.
30
31 * insdel.c (adjust_after_replace): Make it public. New arg
32 text_at_gap_tail.
33 (adjust_after_insert): Call adjust_after_replace with the new arg
34 value 0.
35
36 2013-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
37
38 * keyboard.h (EVENT_START, EVENT_END, POSN_WINDOW, POSN_POSN)
39 (POSN_WINDOW_POSN, POSN_TIMESTAMP): Be careful since events may come
40 from Elisp via unread-command-events.
41
42 * keyboard.c (access_keymap_keyremap): Accept nil return value from
43 functions to mean "no change".
44
45 2013-03-08 Paul Eggert <eggert@cs.ucla.edu>
46
47 region-cache.c, scroll.c, search.c: Use bool for booleans.
48 * lisp.h (compile_pattern):
49 * scroll.c (do_scrolling, do_direct_scrolling):
50 * search.c (struct regexp_cache, compile_pattern_1)
51 (compile_pattern, string_match_1, search_command)
52 (trivial_regexp_p, search_buffer, Freplace_match, match_limit)
53 (search_regs_saved, Fregexp_quote):
54 Use bool for boolean.
55 * region-cache.c (region_cache_forward, region_cache_backward):
56 Fix comments to match code: these functions return int, not boolean.
57
58 2013-03-08 Dmitry Antipov <dmantipov@yandex.ru>
59
60 * search.c (find_newline): Accept start and end byte positions
61 as arguments and allow -1 if not known.
62 (find_newline_no_quit): Likewise for start position.
63 * lisp.h (find_newline, find_newline_no_quit): Adjust prototype.
64 * bidi.c (bidi_find_paragraph_start): Pass byte position to
65 find_newline_no_quit, thus eliminating CHAR_TO_BYTE.
66 * editfns.c (Fconstrain_to_field): Break long line.
67 Adjust call to find_newline.
68 * indent.c (vmotion): Adjust calls to find_newline_no_quit.
69 Use DEC_BOTH to start next search from the previous buffer
70 position, where appropriate.
71 * xdisp.c (back_to_previous_line_start, forward_to_next_line_start)
72 (get_visually_first_element, move_it_vertically_backward): Likewise.
73 Obtain byte position from the display iterator, where appropriate.
74
75 2013-03-08 Paul Eggert <eggert@cs.ucla.edu>
76
77 print.c, process.c: Use bool for booleans.
78 * lisp.h (wait_reading_process_output):
79 * print.c (print_output_debug_flag, PRINTDECLARE, printchar)
80 (strout, debug_output_compilation_hack, float_to_string, print)
81 (print_object):
82 * process.c (kbd_is_on_hold, inhibit_sentinels, process_output_skip)
83 (decode_status, status_message, create_process, create_pty)
84 (Fmake_network_process, Fnetwork_interface_info)
85 (wait_reading_process_output, read_process_output)
86 (write_queue_push, write_queue_pop, process_send_signal)
87 (handle_child_signal, keyboard_bit_set, kbd_on_hold_p):
88 * process.h (struct Lisp_Process, inhibit_sentinels, kbd_on_hold_p):
89 Use bool for booleans.
90 * process.c (Fnetwork_interface_list): Remove unused local.
91 (connect_counter): Now EMACS_INT, not int.
92
93 2013-03-08 Dmitry Antipov <dmantipov@yandex.ru>
94
95 * bidi.c (bidi_fetch_char): Swap first and second arguments
96 to match other functions accepting character and byte positions.
97 Adjust comment.
98 (bidi_resolve_explicit_1, bidi_level_of_next_char): Adjust users.
99 (bidi_paragraph_init): Likewise. Use DEC_BOTH which is faster
100 when you need just to move to the previous buffer position.
101 * xdisp.c (Fcurrent_bidi_paragraph_direction): Use DEC_BOTH.
102
103 2013-03-07 Eli Zaretskii <eliz@gnu.org>
104
105 * .gdbinit (prowlims): Display the enabled_p flag of the row.
106
107 2013-03-07 Dmitry Antipov <dmantipov@yandex.ru>
108
109 Avoid character to byte conversions in motion subroutines.
110 * indent.h (compute_motion, vmotion): Add byte position argument.
111 * indent.c (compute_motion): Use it and avoid CHAR_TO_BYTE.
112 Add eassert.
113 (Fcompute_motion): Break long line. Adjust call to compute_motion.
114 Use list5 for return value.
115 (vmotion): Use byte position argument and avoid call to CHAR_TO_BYTE.
116 Adjust comments, style and calls to compute_motion.
117 (Fvertical_motion): Adjust call to vmotion.
118 * window.c (Fdelete_other_windows_internal): Record window start
119 byte position and adjust call to vmotion.
120 (window_scroll_line_based): Likewise with call to compute_motion.
121 Use SET_PT_BOTH.
122 (Frecenter): Adjust calls to vmotion.
123
124 2013-03-07 Dmitry Antipov <dmantipov@yandex.ru>
125
126 * lisp.h (list2i, list3i): New functions.
127 (list4i): Move from window.c and make LISP_INLINE.
128 * editfns.c (make_lisp_time):
129 * fns.c (Flocale_info):
130 * keyboard.c (parse_modifiers):
131 * xterm.c (x_ewmh_activate_frame): Use list2i.
132 * instel.c (signal_after_change):
133 * nsfns.m (Fx_server_version, Fxw_color_values):
134 * w32fns.c (Fxw_color_values, Fx_server_version):
135 * xfns.c (Fxw_color_values, Fx_server_version): Use list3i.
136 * fileio.c (Fvisited_file_modtime):
137 * nsfns.m (Fns_display_usable_bounds):
138 * w32.c (ltime): Use list4i.
139
140 2013-03-06 Eli Zaretskii <eliz@gnu.org>
141
142 * search.c (find_newline_no_quit): Rename from find_next_newline.
143 Add commentary.
144
145 * lisp.h (find_newline_no_quit): Rename prototype.
146
147 * xdisp.c (back_to_previous_line_start)
148 (forward_to_next_line_start, get_visually_first_element)
149 (move_it_vertically_backward): Callers of find_newline_no_quit changed.
150 * indent.c (vmotion): Callers of find_newline_no_quit changed.
151 * bidi.c (bidi_find_paragraph_start): Callers of
152 find_newline_no_quit changed.
153
154 * msdos.c: Change encoding to cp850. (Bug#13879)
155 (fr_keyboard, it_keyboard, dk_keyboard): Update keyboard layouts.
156
157 2013-03-06 Dmitry Antipov <dmantipov@yandex.ru>
158
159 Coding system support cleanup and minor refactoring.
160 * coding.h (enum coding_result_code): Remove
161 CODING_RESULT_INCONSISTENT_EOL and CODING_RESULT_INSUFFICIENT_MEM.
162 (toplevel): Remove unused CODING_MODE_INHIBIT_INCONSISTENT_EOL.
163 (CODING_MODE_LAST_BLOCK, CODING_MODE_SELECTIVE_DISPLAY)
164 (CODING_MODE_DIRECTION, CODING_MODE_FIXED_DESTINATION)
165 (CODING_MODE_SAFE_ENCODING): Rearrange bit values.
166 (decode_coding_region, encode_coding_region, decode_coding_string):
167 Remove unused compatibility macros.
168 * coding.c (Qinconsistent_eol, Qinsufficient_memory): Remove.
169 (record_conversion_result): Adjust user.
170 (syms_of_coding): Likewise.
171 (ALLOC_CONVERSION_WORK_AREA): Use SAFE_ALLOCA.
172 (decode_coding, encode_coding): Add USE_SAFE_ALLOCA and SAFE_FREE.
173 (decode_coding_object): Simplify since xrealloc never returns NULL.
174 Add eassert.
175
176 2013-03-06 Paul Eggert <eggert@cs.ucla.edu>
177
178 Fix a build failure on OpenBSD 4.x and MirBSD (Bug#13881).
179 * sysdep.c (list_system_processes)
180 [BSD_SYSTEM && !DARWIN_OS && !__FreeBSD__]:
181 Make it a stub in this case; otherwise the build might fail,
182 and this code hasn't been tested on such hosts anyway.
183 Problem reported by Nelson H. F. Beebe in
184 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00021.html>
185 and analyzed by Jérémie Courrèges-Anglas in
186 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00062.html>.
187
188 2013-03-06 Dmitry Antipov <dmantipov@yandex.ru>
189
190 * lisp.h (find_next_newline_no_quit): Rename to find_next_newline.
191 * xdisp.c (back_to_previous_line_start, forward_to_next_line_start)
192 (get_visually_first_element, move_it_vertically_backward): Ajust users.
193 * bidi.c (bidi_find_paragraph_start): Likewise.
194 * indent.c (vmotion): Likewise.
195
196 2013-03-05 Paul Eggert <eggert@cs.ucla.edu>
197
198 FILE's lock is now always .#FILE and may be a regular file (Bug#13807).
199 * filelock.c: Include <c-ctype.h>.
200 (MAX_LFINFO): New top-level constant.
201 (lock_info_type): Remove members pid, boot_time. Add members at,
202 dot, colon. Change user member to be the entire buffer, not a
203 pointer. This allows us to handle the case where a foreign
204 pid or boot time exceeds the local range. All uses changed.
205 (LINKS_MIGHT_NOT_WORK): New constant.
206 (FREE_LOCK_INFO): Remove, as the pieces no longer need freeing.
207 (defined_WINDOWSNT): Remove.
208 (MAKE_LOCK_NAME, file_in_lock_file_name):
209 Always use .#FILE (not .#-FILE) for the file lock,
210 even if it is a regular file.
211 (rename_lock_file): New function.
212 (create_lock_file): Use it.
213 (create_lock_file, read_lock_data):
214 Prefer a symbolic link for the lock file, falling back on a
215 regular file if symlinks don't work. Do not try to create
216 symlinks on MS-Windows, due to security hassles. Stick with
217 POSIXish functions (open, read, write, close, fchmod, readlink, symlink,
218 link, rename, unlink, mkstemp) when creating locks, as a GNUish
219 host may be using a Windowsish file system, and cannot use
220 MS-Windows-only system calls. Fall back on mktemp if mkstemp
221 doesn't work. Don't fail merely because of a symlink-contents
222 length limit in the current file system; fall back on regular
223 files. Increase the symlink contents length limit to 8 KiB, this
224 should be big enough for any real use and doesn't crunch the
225 stack.
226 (create_lock_file, lock_file_1, read_lock_data):
227 Simplify allocation of lock file buffers now that they fit in 8 KiB.
228 (lock_file_1): Return error number, not bool. All callers changed.
229 (ELOOP): New macro, if not already defined.
230 (read_lock_data): Return size of lock file contents, not Lisp object.
231 All callers changed. Handle a race condition if some other process
232 replaces a regular-file lock with a symlink lock or vice versa,
233 while we're trying to read the lock.
234 (current_lock_owner): Parse contents more carefully, to help avoid
235 confusing a regular-file lock with some other application's use
236 of the file. Check for lock file contents being too long, or
237 not parsing correctly.
238 (current_lock_owner, lock_file):
239 Allow foreign pid and boot times that exceed the local range.
240 (current_lock_owner, lock_if_free, lock_file):
241 Simplify allocation of lock file contents.
242 * w32.c (sys_rename_replace): New function, containing most of
243 the contents of the old sys_rename.
244 (sys_rename): Use it.
245 (fchmod): New dummy function.
246 * w32.h (sys_rename_replace, fchmod): New decls.
247
248 2013-03-05 Eli Zaretskii <eliz@gnu.org>
249
250 * bidi.c (bidi_resolve_explicit_1): Don't call CHAR_TO_BYTE or
251 bidi_count_bytes, as the callers now arrange for bidi_it->charpos
252 to be in sync with bidi_it->bytepos. Suggested by Dmitry Antipov
253 <dmantipov@yandex.ru>.
254
255 2013-03-05 Dmitry Antipov <dmantipov@yandex.ru>
256
257 * composite.c (get_composition_id, fill_gstring_header):
258 Use make_uninit_vector where appropriate.
259 * font.c (Ffont_get_glyphs, build_style_table): Likewise.
260 * xselect.c (clean_local_selection_data): Likewise.
261
262 2013-03-04 Paul Eggert <eggert@cs.ucla.edu>
263
264 Fix misuse of ImageMagick that caused core dump (Bug#13846).
265 * image.c (imagemagick_load_image): Calculate height and width
266 after flattening the image, not before.
267
268 2013-03-04 Dmitry Antipov <dmantipov@yandex.ru>
269
270 * font.c (Ffont_get_glyphs): Use convenient LGLYPH_NEW.
271 * ftfont.c (ftfont_shape_by_flt): Likewise.
272 * w32uniscribe.c (uniscribe_shape): Likewise.
273
274 2013-03-02 Paul Eggert <eggert@cs.ucla.edu>
275
276 The lock for FILE is now .#FILE or .#-FILE (Bug#13807).
277 The old approach, which fell back on DIR/.#FILE.0 through
278 DIR/.#FILE.9, had race conditions that could not be easily fixed.
279 If DIR/.#FILE is a non-symlink file, Emacs now does not create a
280 lock file for DIR/FILE; that is, DIR/FILE is no longer partly
281 protected by a lock if DIR/.#FILE is a non-symlink file ("partly"
282 because the locking mechanism was never reliable in that case).
283 This patch fixes this and other bugs discovered by a code
284 inspection that was prompted by
285 <http://lists.gnu.org/archive/html/emacs-devel/2013-02/msg00531.html>.
286 Also, this patch switches to .#-FILE (not .#FILE) on MS-Windows,
287 to avoid interoperability problems between the MS-Windows and
288 non-MS-Windows implementations. MS-Windows and non-MS-Windows
289 instances of Emacs now ignore each others' locks.
290 * filelock.c (defined_WINDOWSNT): New constant.
291 (MAKE_LOCK_NAME, fill_in_lock_file_name):
292 Don't create DIR/.#FILE.0 through DIR/.#FILE.9. Instead, create
293 DIR/.#FILE symlinks on non-MS-Windows hosts, and DIR/.#-FILE
294 regular files on MS-Windows hosts.
295 (MAKE_LOCK_NAME, unlock_file, Ffile_locked_p):
296 Use SAFE_ALLOCA to avoid problems with long file names.
297 (MAX_LFINFO): Now a local constant, not a global macro.
298 (IS_LOCK_FILE): Remove.
299 (lock_file_1): Don't inspect errno if symlink call succeeds;
300 that's not portable.
301 (lock_file): Document that this function can return if lock
302 creation fails.
303 (lock_file): Don't access freed storage.
304
305 2013-03-02 Andreas Schwab <schwab@linux-m68k.org>
306
307 * lisp.h (XPNTR) [!USE_LSB_TAG]: Remove extra paren. (Bug#13734)
308
309 2013-03-02 Paul Eggert <eggert@cs.ucla.edu>
310
311 * textprop.c: Use bool for booleans.
312 (validate_interval_range, Fadd_text_properties)
313 (Fremove_text_properties): Prefer bool to int when either works.
314
315 2013-03-02 Eli Zaretskii <eliz@gnu.org>
316
317 * textprop.c (Fadd_text_properties, Fremove_text_properties):
318 If the interval tree changes as a side effect of calling
319 modify_region, re-do processing starting from the call to
320 validate_interval_range. (Bug#13743)
321
322 2013-02-28 Eli Zaretskii <eliz@gnu.org>
323
324 * w32.c (sys_open): Don't reset the flags for FD in fd_info[].
325 (Bug#13546).
326
327 2013-02-27 Eli Zaretskii <eliz@gnu.org>
328
329 * filelock.c (create_lock_file) [WINDOWSNT]: Use _sopen with
330 _SH_DENYRW flag, instead of emacs_open, to deny any other process
331 access to the lock file until it is written and closed.
332 (Bug#13807)
333
334 2013-02-27 Paul Eggert <eggert@cs.ucla.edu>
335
336 * callint.c (Qcall_interactively):
337 * macros.c (Qexecute_kbd_macro):
338 Now static.
339
340 2013-02-26 Bastien Guerry <bzg@gnu.org>
341
342 * window.c (Frecenter): Tiny docstring enhancement.
343
344 2013-02-26 Paul Eggert <eggert@cs.ucla.edu>
345
346 Minor textprop integer cleanup.
347 * intervals.h, textprop.c (add_text_properties_from_list):
348 Return void, not int, since nobody uses the return value.
349 * textprop.c (validate_plist, add_properties, remove_properties)
350 (Fadd_text_properties):
351 Don't assume list length fits in int.
352 (interval_has_all_properties, interval_has_some_properties)
353 (interval_has_some_properties_list, add_properties, remove_properties)
354 (Fadd_text_properties, Fremove_text_properties)
355 (Fremove_list_of_text_properties, text_property_stickiness):
356 Use bool for booleans.
357 (Fadd_text_properties, Fremove_text_properties):
358 (Fremove_list_of_text_properties):
359 Reindent do-while as per GNU style.
360
361 2013-02-25 Eli Zaretskii <eliz@gnu.org>
362
363 Implement CLASH_DETECTION for MS-Windows.
364
365 * filelock.c [WINDOWSNT]: Include w32.h.
366 (MAKE_LOCK_NAME): Don't use 'lock', it clashes with MS runtime
367 function of that name. Up-case the macro arguments.
368 (IS_LOCK_FILE): New macro.
369 (fill_in_lock_file_name): Use IS_LOCK_FILE instead of S_ISLNK.
370 (create_lock_file): New function, with body extracted from
371 lock_file_1.
372 [WINDOWSNT]: Implement lock files by writing a regular file with
373 the lock information as its contents.
374 (read_lock_data): New function, on Posix platforms just calls
375 emacs_readlinkat.
376 [WINDOWSNT]: Read the lock info from the file.
377 (current_lock_owner): Call read_lock_data instead of calling
378 emacs_readlinkat directly.
379 (lock_file) [WINDOWSNT]: Run the file name through
380 dostounix_filename.
381
382 * w32proc.c (sys_kill): Support the case of SIG = 0, in which case
383 just check if the process by that PID exists.
384
385 * w32.c (sys_open): Don't reset the _O_CREAT flag if _O_EXCL is
386 also present, as doing so will fail to error out if the file
387 already exists.
388
389 * makefile.w32-in ($(BLD)/filelock.$(O)): Depend on src/w32.h.
390
391 * textprop.c (Fadd_text_properties, Fremove_text_properties)
392 (Fremove_list_of_text_properties): Skip all of the intervals in
393 the region between START and END that already have resp. don't
394 have the requested properties, not just the first one.
395 Add assertions that the loop afterwards always modifies the
396 properties. (Bug#13743)
397
398 2013-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
399
400 * callint.c (Fcall_interactively): Use the right lexical environment
401 for `interactive' specs (bug#13811).
402 * eval.c (Feval): Accept a lexical environment.
403
404 2013-02-25 Paul Eggert <eggert@cs.ucla.edu>
405
406 Simplify data_start configuration (Bug#13783).
407 This is a followon simplification to the fix for Bug#13650.
408 * Makefile.in (LD_FIRSTFLAG, LIB_GCC, CRT_DIR, LIB_STANDARD)
409 (START_FILES): Remove. All uses removed.
410 (otherobj): Remove $(VMLIMIT_OBJ), as it's now first.
411 (ALLOBJS): Move here from autodeps.mk, and with VMLIMITS_OBJ first.
412 (buildobj.h): Use it.
413 ($(ALLOBJS)): Depend on globals.h.
414 (temacs$(EXEEXT)): Use $(ALLOBJS).
415 * autodeps.mk (ALLOBJS): Move to Makefile.in.
416 * deps.mk (vm-limit.o):
417 * makefile.w32-in ($(BLD)/vm-limit.$(O)):
418 Do not depend on mem-limits.h.
419 * emacs.c (__do_global_ctors, __do_global_ctors_aux)
420 (__do_global_dtors, __CTOR_LIST__, __DTOR_LIST__)
421 [__GNUC__ && !ORDINARY_LINK]: Remove.
422 * mem-limits.h, pre-crt0.c: Remove.
423 * unexaix.c, unexcoff.c: Don't include mem-limits.h.
424 * unexcoff.c (etext): New decl.
425 (make_hdr): Use DATA_START instead of start_of_data.
426 * vm-limit.c: Move most of mem-limits.h's contents here.
427 (data_start): New decl. It's OK if this is approximate,
428 so simplify-away some unnecessary exactness.
429 (POINTER): Remove; all uses removed.
430 (data_space_start): Now char *, to avoid casts.
431 (exceeds_lisp_ptr): New function, replacing the old
432 EXCEEDS_LISP_PTR macro. All uses changed.
433 (check_memory_limits): Simplify and remove casts.
434 (start_of_data) [!CANNOT_DUMP || !SYSTEM_MALLOC]: Remove.
435 (memory_warnings): Use data_start instead of start_of_data.
436
437 2013-02-24 Andreas Schwab <schwab@linux-m68k.org>
438
439 * xdisp.c (set_message): Only check for debug-on-message if STRING
440 is a string. (Bug#13797)
441
442 2013-02-24 Paul Eggert <eggert@cs.ucla.edu>
443
444 Fix regression introduced by July 10 filelock.c patch.
445 * filelock.c (fill_in_lock_file_name): Fix crash caused by the
446 2012-07-10 patch to this file. Reported by Eli Zaretskii in
447 <http://lists.gnu.org/archive/html/emacs-devel/2013-02/msg00533.html>
448 and diagnosed by Andreas Schwab in
449 <http://lists.gnu.org/archive/html/emacs-devel/2013-02/msg00534.html>.
450
451 2013-02-22 Paul Eggert <eggert@cs.ucla.edu>
452
453 Assume C89 or better.
454 * ralloc.c (SIZE, POINTER, NIL):
455 * vm-limit.c (POINTER):
456 Remove, replacing all uses with C89 equivalents. These old
457 symbols were present only for porting to pre-C89 platforms.
458
459 2013-02-22 Claudio Bley <claudio.bley@gmail.com>
460
461 * w32.c (emacs_gnutls_pull): Don't call 'select', and don't loop.
462 This avoids warning messages reported as part of Bug#13546.
463
464 2013-02-21 Ken Brown <kbrown@cornell.edu>
465
466 * sheap.c (report_sheap_usage): Fix arguments of message1_no_log.
467
468 2013-02-20 Stefan Monnier <monnier@iro.umontreal.ca>
469
470 * sheap.c (report_sheap_usage): Prefer message1_nolog.
471
472 * keyboard.c (Qcommand_execute): New var.
473 (command_loop_1, read_char): Use it.
474 (Fcommand_execute): Remove, replace by an Elisp implementation.
475 (syms_of_keyboard): Adjust accordingly.
476
477 2013-02-19 Daniel Colascione <dancol@dancol.org>
478
479 * sheap.c (report_sheap_usage): Use message, not message1, so
480 that we don't try to create a buffer while we're in the middle
481 of dumping Emacs. Explain why.
482
483 2013-02-20 Dmitry Antipov <dmantipov@yandex.ru>
484
485 * search.c (find_newline): Return byte position in bytepos.
486 Adjust comment.
487 (find_next_newline_no_quit, find_before_next_newline):
488 Add bytepos argument.
489 * lisp.h (find_newline, find_next_newline_no_quit)
490 (find_before_next_newline): Adjust prototypes.
491 * bidi.c (bidi_find_paragraph_start):
492 * editfns.c (Fconstrain_to_field, Fline_end_position):
493 * indent.c (compute_motion, vmotion):
494 * xdisp.c (back_to_previous_line_start, forward_to_next_line_start):
495 (get_visually_first_element, move_it_vertically_backward):
496 Adjust users and avoid calls to CHAR_TO_BYTE where appropriate.
497
498 2013-02-19 Eli Zaretskii <eliz@gnu.org>
499
500 * w32proc.c (new_child): Avoid leaking handles if the subprocess
501 resources were not orderly released.
502
503 2013-02-17 Eli Zaretskii <eliz@gnu.org>
504
505 * xdisp.c (x_draw_vertical_border): For a window that is neither
506 the leftmost nor the rightmost, redraw both the left and the right
507 vertical borders. (Bug#13723)
508
509 2013-02-17 Stefan Monnier <monnier@iro.umontreal.ca>
510
511 * xml.c (init_libxml2_functions):
512 * sound.c (sound_warning):
513 * sheap.c (report_sheap_usage):
514 * process.c (wait_reading_process_output):
515 * msdos.c (XMenuActivate):
516 * macros.c (Fstart_kbd_macro, Fend_kbd_macro):
517 * keyboard.c (top_level_1):
518 * editfns.c (Fmessage, Fmessage_box):
519 * callint.c (Fcall_interactively):
520 * fns.c (Fyes_or_no_p): Prefer `message1' over `message'.
521
522 2013-02-17 Jan Djärv <jan.h.d@swipnet.se>
523
524 * xterm.c (syms_of_xterm): Move scroll-bar-adjust-thumb-portion ...
525 * frame.c (syms_of_frame): ... to here.
526
527 2013-02-16 Eli Zaretskii <eliz@gnu.org>
528
529 * w32.c (sys_chown): Remove unused function.
530
531 * w32term.c <input_signal_count>: Declare 'volatile'
532 unconditionally. (Bug#9066)
533
534 * w32.c (set_errno): Reset h_errno and don't set it to any other
535 value. Set errno instead.
536 (check_errno): Reset h_errno.
537 (sys_socket, socket_to_fd, sys_bind, sys_connect)
538 (sys_gethostname, sys_getservbyname, sys_getpeername)
539 (sys_shutdown, sys_setsockopt, sys_listen, sys_getsockname)
540 (sys_accept, sys_recvfrom, sys_sendto, fcntl, sys_read): Don't set
541 h_errno.
542 (sys_gethostbyname): Set h_errno only errors detected.
543
544 2013-02-15 Paul Eggert <eggert@cs.ucla.edu>
545
546 * process.c (h_errno) [!HAVE_H_ERRNO]: Remove unused decl.
547
548 2013-02-15 Eli Zaretskii <eliz@gnu.org>
549
550 * keyboard.c (read_char): Fix calculation of auto-save time out
551 when auto-save-timeout is less than 4. (Bug#13720)
552
553 * w32proc.c (new_child): Free up to 2 slots of dead processes at a
554 time. Improve diagnostics in DebPrint. (Bug#13546)
555
556 * w32.c (sys_socket, sys_bind, sys_connect, sys_gethostname)
557 (sys_gethostbyname, sys_getservbyname, sys_getpeername)
558 (sys_shutdown, sys_setsockopt, sys_listen, sys_getsockname)
559 (sys_accept, sys_recvfrom, sys_sendto, fcntl): In case of failure,
560 make sure errno is set to an appropriate value. (Bug#13546)
561 (socket_to_fd): Add assertion against indexing fd_info[] with a
562 value that is out of bounds.
563 (sys_accept): If fd is negative, do not set up the child_process
564 structure for reading.
565
566 2013-02-15 Dmitry Antipov <dmantipov@yandex.ru>
567
568 * composite.c (fill_gstring_header): Remove useless prototype.
569 Break long line.
570 * lisp.h (message_dolog, compile_pattern): Adjust prototype.
571 * print.c (PRINTDECLARE, print_object):
572 * search.c (compile_pattern, fast_looking_at, search_buffer):
573 (simple_search, boyer_moore, Freplace_match):
574 * xdisp.c (c_string_pos, number_of_chars, message_dolog):
575 (get_overlay_arrow_glyph_row, display_mode_element):
576 (decode_mode_spec_coding, message3):
577 * xfaces.c (face_at_string_position): Use bool for booleans.
578 Adjust comments.
579
580 2013-02-15 Paul Eggert <eggert@cs.ucla.edu>
581
582 Fix AIX port (Bug#13650).
583 * lisp.h (XPNTR) [!USE_LSB_TAG && DATA_SEG_BITS]:
584 Fix bug introduced in 2012-07-27 change. DATA_SEG_BITS, if set,
585 was #undeffed earlier, so it cannot be used as a macro here.
586 Use the constant and not the macro.
587
588 2013-02-15 Eli Zaretskii <eliz@gnu.org>
589
590 * w32proc.c (new_child): If no vacant slots are found in
591 child_procs[], make another pass looking for slots whose process
592 has exited or died. (Bug#13546)
593
594 * w32.c (sys_pipe): When failing due to file descriptors above
595 MAXDESC, set errno to EMFILE.
596 (_sys_read_ahead): Update cp->status when failing to read serial
597 communications input, so that the status doesn't stay at
598 STATUS_READ_IN_PROGRESS. (Bug#13546)
599
600 2013-02-14 Jan Djärv <jan.h.d@swipnet.se>
601
602 * gtkutil.c (tb_size_cb): New function.
603 (xg_create_tool_bar): Connect size-allocate to tb_size_cb (Bug#13512).
604
605 2013-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
606
607 * keyboard.c (active_maps): Fcurrent_active_maps expects a position, not
608 an event.
609
610 2013-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
611
612 * keyboard.c (syms_of_keyboard): Further tweaks of docstring.
613
614 2013-02-13 Dmitry Antipov <dmantipov@yandex.ru>
615
616 * font.c (font_range): Add pos_byte argument. Adjust comment
617 and break long line.
618 * font.h (font_range): Adjust prototype.
619 * composite.c (autocmp_chars): Pass byte position to font_range.
620 Break long line. Remove useless prototype and format comment.
621
622 2013-02-13 Glenn Morris <rgm@gnu.org>
623
624 * keyboard.c (input-decode-map, key-translation-map): Doc fixes.
625
626 2013-02-13 Paul Eggert <eggert@cs.ucla.edu>
627
628 Improve AIX port some more (Bug#13650).
629 With this, it should be as good as it was in 23.3, though it's
630 still pretty bad: the dumped emacs does not run. See Mark Fleishman in
631 http://lists.gnu.org/archive/html/help-gnu-emacs/2011-04/msg00287.html
632 * unexaix.c (start_of_text): Remove.
633 (_data, _text): Declare as char[], not int, as AIX manual suggests.
634 (bias, lnnoptr, text_scnptr, data_scnptr, load_scnptr)
635 (orig_load_scnptr, orig_data_scnptr):
636 Now off_t, not long, since they are file offsets.
637 (make_hdr): Use _data, not start_of_data ().
638 This is the key part of the fix.
639 (make_hdr, unrelocate_symbols): Use off_t for file offsets.
640 (unrelocate_symbols): Cast pointers to intptr_t, not to ulong.
641
642 * pre-crt0.c (data_start): Initialize to 1.
643 This ports to compilers that optimize the external declaration
644 'int x = 0;' as if it were 'int x;' to shrink the executable.
645
646 Improve AIX port (Bug#13650).
647 This doesn't fix the bug, but it makes progress: Emacs builds now.
648 * unexaix.c: Include inttypes.h, stdarg.h.
649 (report_error, report_error_1): Mark as _Noreturn.
650 (report_error): Don't report the wrong errno.
651 (report_error_1): Now varargs. All callers changed.
652 (make_hdr): Use uintptr_t, not unsigned, when converting pointers
653 to unsigned. Don't use ADDR_CORRECT, as it no longer exists.
654 (write_ptr): Use %p to print address rather than %lx and a cast
655 to unsigned long. Grow buffer a bit, to be safer.
656
657 2013-02-13 Eli Zaretskii <eliz@gnu.org>
658
659 * bidi.c (bidi_resolve_neutral): After finding the next
660 non-neutral character, accept NEUTRAL_ON type as well, because
661 directional control characters, such as LRE and RLE, have their
662 type converted to that by bidi_resolve_weak. This avoids aborts
663 when LRE/RLE follows a run of neutrals.
664 (bidi_move_to_visually_next): Assert that return value of
665 bidi_peek_at_next_level is non-negative. Negative values will
666 cause an infloop.
667
668 2013-02-13 Paul Eggert <eggert@cs.ucla.edu>
669
670 Minor getenv-related fixes.
671 * callproc.c (Fcall_process_region) [!DOS_NT]:
672 Avoid unnecessary duplicate call to getenv.
673 * callproc.c (init_callproc):
674 * dispnew.c (init_display):
675 * sysdep.c (sys_subshell):
676 Omit unnecessary cast of getenv or egetenv.
677
678 2013-02-13 Juanma Barranquero <lekktu@gmail.com>
679
680 * makefile.w32-in ($(BLD)/filelock.$(O), $(BLD)/sysdep.$(O)):
681 Update dependencies.
682
683 2013-02-12 Eli Zaretskii <eliz@gnu.org>
684
685 * xdisp.c (redisplay_internal): Don't set w->region_showing to the
686 marker's position.
687 (display_line): Set w->region_showing to the value of
688 it->region_beg_charpos, not to -1. This fixes redisplay
689 optimization when cursor is moved up after M->. (Bug#13623)
690 (Bug#13626)
691 (try_scrolling): Scroll text up more if point is too close to ZV
692 and inside the scroll margin. This makes sure point is moved
693 outside the scroll margin in these cases.
694
695 * window.h (struct window): region_showing can no longer be
696 negative.
697
698 2013-02-11 Paul Eggert <eggert@cs.ucla.edu>
699
700 Tune by using memchr and memrchr.
701 * doc.c (Fsnarf_documentation):
702 * fileio.c (Fsubstitute_in_file_name):
703 * search.c (find_newline, scan_newline):
704 * xdisp.c (pos_visible_p, display_count_lines):
705 Use memchr and memrchr rather than scanning byte-by-byte.
706 * search.c (find_newline): Rename from scan_buffer.
707 Omit first arg TARGET, as it's always '\n'. All callers changed.
708
709 Clean up read_key_sequence a tiny bit more.
710 * keyboard.c (read_char_x_menu_prompt) [HAVE_MENUS]:
711 (read_key_sequence): Remove unused locals.
712
713 2013-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
714
715 Clean up read_key_sequence a bit; reread active keymaps after first event.
716 * keyboard.c (read_char, read_char_x_menu_prompt)
717 (read_char_minibuf_menu_prompt):
718 Replace nmaps+maps with a single `map' arg.
719 (follow_key): Operate on a single map.
720 (active_maps): New function.
721 (test_undefined): Also return true for nil bindings.
722 (read_key_sequence): Use active_maps to replace the arrays of keymaps with
723 a single (composed) keymap. Remember `first_event' to choose the right
724 set of active keymaps. Recompute the set of keymaps after receiving
725 the first event. Remove GOBBLE_FIRST_EVENT.
726 (syms_of_keyboard): Remove inhibit_local_menu_bar_menus.
727 * keyboard.h (read_char): Update declaration.
728 * lread.c (read_filtered_event): Adjust call to read_char.
729
730 2013-02-11 Eli Zaretskii <eliz@gnu.org>
731
732 * xdisp.c (move_it_vertically_backward, move_it_by_lines):
733 Don't use the limitation on backwards movement when lines are truncated
734 in the window. (Bug#13675)
735
736 2013-02-11 Dmitry Antipov <dmantipov@yandex.ru>
737
738 * marker.c (set_marker_internal): If desired position is passed
739 as a marker, avoid call to buf_charpos_to_bytepos.
740 * window.c (Fset_window_point): Omit redundant type checking.
741 (Fset_window_start): Likewise. Format comment.
742 (window_scroll_pixel_based): Use set_marker_restricted_both
743 with character and byte positions obtained from an iterator.
744 (Fset_window_configuration): Use set_marker_restricted_both.
745 * xdisp.c (message_dolog): Likewise.
746
747 2013-02-10 Eli Zaretskii <eliz@gnu.org>
748
749 * xdisp.c (move_it_vertically_backward, move_it_by_lines):
750 When text lines are longer than window's screen lines, don't move back
751 too far. This speeds up some redisplay operations. (Bug#13675)
752
753 2013-02-10 Dmitry Antipov <dmantipov@yandex.ru>
754
755 * syntax.c (scan_sexps_forward): Fix byte position calculation
756 Bug#13664 (a.k.a Bug#13667) introduced with 2013-02-08 change.
757
758 2013-02-10 Paul Eggert <eggert@cs.ucla.edu>
759
760 * fileio.c (Fexpand_file_name): Omit confusing pointer comparison
761 that was not needed.
762
763 2013-02-09 Paul Eggert <eggert@cs.ucla.edu>
764
765 Minor hashing refactoring.
766 * fns.c (SXHASH_REDUCE): Move to lisp.h.
767 (sxhash_float): Return EMACS_UINT, for consistency with the other
768 hash functions.
769 * lisp.h (INTMASK): Now a macro, since SXHASH_REDUCE is now a
770 non-static inline function and therefore can't use static vars.
771 (SXHASH_REDUCE): Move here from fns.c, and make it inline.
772 * profiler.c (hashfn_profiler): Use SXHASH_REDUCE, to be consistent
773 with the other hash functions.
774
775 2013-02-09 Eli Zaretskii <eliz@gnu.org>
776
777 * callproc.c (Fcall_process_region) [WINDOWSNT]: Make sure the
778 XXXXXX part of the temporary file pattern is not downcased even
779 when w32-downcase-file-names is non-nil. (Bug#13661)
780
781 * xdisp.c (decode_mode_spec): Remove handling of %t.
782
783 * msdos.c (careadlinkatcwd): Remove.
784
785 2013-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
786
787 * lread.c (skip_dyn_bytes): New function (bug#12598).
788 (read1): Use it. Use getc instead of READCHAR to read bytes.
789 (load_each_byte): Remove. Update users.
790
791 2013-02-08 Dmitry Antipov <dmantipov@yandex.ru>
792
793 * search.c (scan_buffer): Calculate end byte position just once.
794 (scan_newline): Do not recalculate start_byte.
795 (search_command): Use eassert.
796 * syntax.c (struct lisp_parse_state): New member location_byte.
797 (scan_sexps_forward): Record from_byte and avoid redundant
798 character to byte position calculation ...
799 (Fparse_partial_sexp): ... here. Break too long line.
800
801 2013-02-08 Dmitry Antipov <dmantipov@yandex.ru>
802
803 * lisp.h (make_uninit_vector): New function.
804 * alloc.c (Fvector, Fmake_byte_code):
805 * ccl.c (Fregister_ccl_program):
806 * charset.c (Fdefine_charset_internal, define_charset_internal):
807 * coding.c (make_subsidiaries, Fdefine_coding_system_internal):
808 * composite.c (syms_of_composite):
809 * font.c (Fquery_font, Ffont_info, syms_of_font):
810 * fontset.c (FONT_DEF_NEW, Fset_fontset_font):
811 * ftfont.c (ftfont_shape_by_flt):
812 * indent.c (recompute_width_table):
813 * nsselect.m (clean_local_selection_data):
814 * syntax.c (init_syntax_once):
815 * w32unsubscribe.c (uniscribe_shape):
816 * window.c (Fcurrent_window_configuration):
817 * xfaces.c (Fx_family_fonts):
818 * xselect.c (selection_data_to_lisp_data): Use it.
819
820 2013-02-07 Dmitry Antipov <dmantipov@yandex.ru>
821
822 * coding.c (Fdefine_coding_system_internal): Use AREF where
823 argument is known to be a vector.
824 * fns.c (Flocale_info): Likewise for ASET.
825 * xselect.c (selection_data_to_lisp_data): Likewise for ASET.
826 * w32fns.c (w32_parse_hot_key): Likewise for ASIZE and AREF.
827
828 2013-02-05 Jan Djärv <jan.h.d@swipnet.se>
829
830 * nsmenu.m (update_frame_tool_bar): Check for negative tool bar
831 height.
832
833 * nsterm.h (HAVE_NATIVE_FS): Define if OSX => 10.7.
834 (EmacsView): Add fs_is_native, fsIsNative, isFullscreen and
835 updateCollectionBehaviour.
836
837 * nsterm.m (NEW_STYLE_FS): Remove.
838 (ns_last_use_native_fullscreen): New variable.
839 (x_make_frame_visible): Replace NEW_STYLE_FS with isFullscreen.
840 (x_set_window_size): Do not take title bar and tool bar into account
841 if isFullscreen returns YES.
842 (ns_fullscreen_hook): Replace NEW_STYLE_FS with isFullscreen.
843 (check_native_fs): New function.
844 (ns_select, ns_read_socket): Call check_native_fs if HAVE_NATIVE_FS.
845 (ns_term_init): Remove NEW_STYLE_FS.
846 (updateFrameSize:, windowWillResize:toSize:): Only adjust for title bar
847 and tool bar if isFullscreen returns NO.
848 (windowDidResize:): Replace NEW_STYLE_FS with fsIsNative.
849 (initFrameFromEmacs:): Initialize fs_is_native. Replace NEW_STYLE_FS
850 with HAVE_NATIVE_FS.
851 (window:willUseFullScreenPresentationOptions:): New method.
852 (windowDidEnterFullScreen:): Replace NEW_STYLE_FS with fsIsNative.
853 Hide toolbar if not enabled (Bug#13444).
854 (windowDidExitFullScreen:): Call updateCollectionBehaviour.
855 Restore tool bar if enabled, hide it otherwise (Bug#13444).
856 (fsIsNative, isFullscreen, updateCollectionBehaviour): New methods.
857 (toggleFullScreen:): If fs_is_native, call toggleFullScreen on
858 window. Do no set FRAME_EXTERNAL_TOOL_BAR (f) to 0.
859 Check FRAME_EXTERNAL_TOOL_BAR (f) before restoring
860 FRAME_TOOLBAR_HEIGHT (f). Call updateFrameSize when going non-fs.
861 (syms_of_nsterm): Add ns-use-native-fullscreen.
862
863 2013-02-04 Paul Eggert <eggert@cs.ucla.edu>
864
865 * fileio.c (Qchoose_write_coding_system): Now static.
866
867 2013-02-04 Eli Zaretskii <eliz@gnu.org>
868
869 * xdisp.c (window_buffer_changed): region_showing can be negative,
870 which still means region is being displayed.
871 (redisplay_internal): Resurrect code that forced redisplay of the
872 whole window when showing region and the mark has changed.
873 Record the new mark position to allow redisplay optimizations.
874 (display_line): If it->region_beg_charpos is non-zero, set the
875 window's region_showing member to -1. (Bug#13623) (Bug#13626)
876
877 * window.h (struct window) <region_showing>: Declare ptrdiff_t,
878 not bitfield of 1 bit.
879
880 2013-02-03 Daniel Colascione <dancol@dancol.org>
881
882 * emacs.c: Use execvp, not execv, when DAEMON_MUST_EXEC, so that
883 daemon mode works on cygw32 when Emacs is installed and not just
884 during development.
885
886 2013-02-02 Paul Eggert <eggert@cs.ucla.edu>
887
888 Avoid file time stamp bug on MS-Windows (Bug#13149).
889 * fileio.c (Fwrite_region): Don't use the heuristic on empty files,
890 as FAT32 doesn't update time stamps when truncating them.
891 Also, check that a file time stamp is not a multiple of 100 ns;
892 this should catch all instances of the problem on MS-Windows,
893 as its native file system resolution is 100 ns or worse, and
894 checking for a non-multiple of 100 ns should impose only a small
895 overhead on systems with ns resolution.
896
897 2013-02-02 Eli Zaretskii <eliz@gnu.org>
898
899 Avoid encoding file names on MS-Windows when they need to be run
900 through dostounix_filename.
901 * w32.c (normalize_filename): Accept an additional argument
902 MULTIBYTE; if non-zero, traverse the file name by bytes and don't
903 downcase it even if w32-downcase-file-names is non-nil.
904 (dostounix_filename): Accept an additional argument MULTIBYTE and
905 pass it to normalize_filename.
906 (emacs_root_dir): Adjust.
907
908 * msdos.h (dostounix_filename): Adjust prototype.
909
910 * w32.h (dostounix_filename): Adjust prototype.
911
912 * msdos.c (dostounix_filename): Accept an additional argument and
913 ignore it.
914 (init_environment): Adjust callers of dostounix_filename.
915
916 * fileio.c (Ffile_name_directory, file_name_as_directory)
917 (directory_file_name, Fexpand_file_name)
918 (Fsubstitute_in_file_name): [DOS_NT] Adjust call to
919 dostounix_filename.
920 [WINDOWSNT]: Downcase file names if w32-downcase-file-names is
921 non-nil.
922 (Fsubstitute_in_file_name): [DOS_NT] Don't downcase environment
923 variables, as egetenv is case-insensitive for DOS_NT.
924
925 * dired.c (file_name_completion): Don't call Fdirectory_file_name
926 with an encoded file name.
927
928 * w32proc.c (Fw32_short_file_name, Fw32_long_file_name):
929 Adjust calls to dostounix_filename.
930
931 * w32fns.c (Fx_file_dialog): Adjust call to dostounix_filename.
932
933 * unexw32.c (unexec): Adjust call to dostounix_filename.
934
935 * termcap.c (tgetent) [MSDOS]: Adjust call to dostounix_filename.
936
937 * emacs.c (decode_env_path) [DOS_NT]: Adjust call to
938 dostounix_filename.
939
940 * callproc.c (Fcall_process) [MSDOS]: Adjust call to
941 dostounix_filename.
942
943 * callproc.c (Fcall_process): Make sure program name in PATH and
944 new_argv[0] is encoded, if needed. Otherwise, un-encoded string
945 is passed to exec/spawnve, which fails unless the file-name
946 encoding is UTF-8.
947
948 * w32proc.c (sys_spawnve): Make sure escape_char is initialized,
949 even if w32-quote-process-args is nil.
950
951 2013-02-01 Paul Eggert <eggert@cs.ucla.edu>
952
953 Fix timestamp bug when write-region appends nothing (Bug#13149).
954 * fileio.c (Fwrite_region): When neither O_EXCL nor O_TRUNC is used,
955 the file's time stamp doesn't change if Emacs happens to write nothing
956 to the file, and on a buggy file system this could cause Emacs to
957 incorrectly infer that the file system doesn't have the bug.
958 Avoid this problem by inhibiting the inference in this case.
959
960 2013-02-01 Dmitry Antipov <dmantipov@yandex.ru>
961
962 * window.h (struct window): Convert base_line_number, base_line_pos
963 and column_number_displayed members from Lisp_Object to ptrdiff_t.
964 Convert region_showing member from Lisp_Object to bitfield.
965 Remove sequence_number member. Adjust comments.
966 * window.c (sequence_number): Remove.
967 (make_window): Initialize column_number_displayed.
968 * print.c (print_object): Follow the printed representation of
969 frames and print window pointer to distinguish between windows.
970 (adjust_window_count): Invalidate base_line_pos. Adjust comment.
971 * xdisp.c (wset_base_line_number, wset_base_line_pos)
972 (wset_column_number_displayed, wset_region_showing): Remove.
973 (window_buffer_changed, mode_line_update_needed, redisplay_internal)
974 (try_scrolling, try_cursor_movement, redisplay_window)
975 (try_window_reusing_current_matrix, try_window_id, display_line)
976 (display_mode_lines, decode_mode_spec): Adjust users.
977 * .gdbinit (pwinx): Do not print sequence_number.
978
979 2013-02-01 Paul Eggert <eggert@cs.ucla.edu>
980
981 Use fdopendir, fstatat and readlinkat, for efficiency (Bug#13539).
982 * conf_post.h (GNULIB_SUPPORT_ONLY_AT_FDCWD): Remove.
983 * dired.c: Include <fcntl.h>.
984 (open_directory): New function, which uses open and fdopendir
985 rather than opendir. DOS_NT platforms still use opendir, though.
986 (directory_files_internal, file_name_completion): Use it.
987 (file_attributes): New function, with most of the old Ffile_attributes.
988 (directory_files_internal, Ffile_attributes): Use it.
989 (file_attributes, file_name_completion_stat): First arg is now fd,
990 not dir name. All uses changed. Use fstatat rather than lstat +
991 stat.
992 (file_attributes): Use emacs_readlinkat rather than Ffile_symlink_p.
993 * fileio.c: Include <allocator.h>, <careadlinkat.h>.
994 (emacs_readlinkat): New function, with much of the old
995 Ffile_symlink_p, but with an fd argument for speed.
996 It uses readlinkat rather than careadlinkatcwd, so that it
997 need not assume the working directory.
998 (Ffile_symlink_p): Use it.
999 * filelock.c (current_lock_owner): Use emacs_readlinkat
1000 rather than emacs_readlink.
1001 * lisp.h (emacs_readlinkat): New decl.
1002 (READLINK_BUFSIZE, emacs_readlink): Remove.
1003 * sysdep.c: Do not include <allocator.h>, <careadlinkat.h>.
1004 (emacs_norealloc_allocator, emacs_readlink): Remove.
1005 This stuff is moved to fileio.c.
1006 * w32.c (fstatat, readlinkat): New functions.
1007 (careadlinkat): Don't check that fd == AT_FDCWD.
1008 (careadlinkatcwd): Remove; no longer needed.
1009
1010 2013-01-31 Glenn Morris <rgm@gnu.org>
1011
1012 * fileio.c (choose_write_coding_system): Make it callable from Lisp.
1013 (Fwrite_region): Update for new choose_write_coding_system args.
1014 Move the last piece of choose_write_coding_system here. (Bug#13522)
1015 (syms_of_fileio): Add choose-write-coding-system.
1016
1017 2013-01-30 Eli Zaretskii <eliz@gnu.org>
1018
1019 * w32.c (sys_open): Zero out the flags for the new file descriptor.
1020 (sys_close): Zero out the flags for the file descriptor before
1021 closing it. (Bug#13546)
1022
1023 * w32.c (parse_root, get_volume_info, readdir, read_unc_volume)
1024 (logon_network_drive, stat_worker, symlink, chase_symlinks):
1025 Use CharNextExA and CharPrevExA to iterate over file names encoded in
1026 DBCS. (Bug#13553)
1027
1028 * w32.c (w32_get_long_filename, init_environment, readlink):
1029 Support file names encoded in DBCS codepages.
1030 (readlink): Use the current file-name-coding-system, not the ANSI
1031 codepage, to decode and handle targets of symlinks.
1032
1033 2013-01-28 Eli Zaretskii <eliz@gnu.org>
1034
1035 * w32.c (opendir): Now accepts a 'const char *'.
1036
1037 2013-01-28 Dmitry Antipov <dmantipov@yandex.ru>
1038
1039 Remove obsolete redisplay code. See the discussion at
1040 http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00576.html.
1041 * dispnew.c (preemption_period, preemption_next_check): Remove.
1042 (Vredisplay_preemption_period): Likewise.
1043 (update_frame, update_single_window, update_window, update_frame_1):
1044 Adjust users. Always assume that PERIODIC_PREEMPTION_CHECKING is not
1045 used, following the 2012-06-22 change.
1046
1047 2013-01-25 Eli Zaretskii <eliz@gnu.org>
1048
1049 * w32notify.c (Fw32notify_add_watch): Doc fix. (Bug#13540)
1050
1051 2013-01-25 Dmitry Antipov <dmantipov@yandex.ru>
1052
1053 * font.c (num_fonts): Remove the leftover from old
1054 debugging code. Adjust comment style here and there.
1055 * insdel.c (insert_1): Remove.
1056 * lisp.h (insert_1): Remove prototype.
1057 * xdisp.c (message_dolog): Adjust users to call insert_1_both.
1058
1059 2013-01-25 Eli Zaretskii <eliz@gnu.org>
1060
1061 * w32.c (max_filename_mbslen): New function.
1062 (normalize_filename, readdir): Use it to detect locales where ANSI
1063 encoding of file names uses a double-byte character set (DBCS).
1064 If a DBCS encoding is used, advance by characters using
1065 CharNextExA, instead of incrementing a 'char *' pointer.
1066 Use _mbslwr instead of _strlwr. (Bug#13515)
1067
1068 * w32heap.c (allocate_heap) [!_WIN64]: Decrease the initial
1069 request of memory reservation to 1.7GB. (Bug#13065)
1070
1071 2013-01-25 Andreas Schwab <schwab@linux-m68k.org>
1072
1073 * coding.c (detect_coding_iso_2022): Move back mis-reordered code
1074 at check_extra_latin label. (Bug#13505)
1075
1076 2013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
1077
1078 * nsfont.m (ns_escape_name, ns_unescape_name, ns_registry_to_script):
1079 Avoid redundant calls to strlen.
1080
1081 2013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
1082
1083 Drop async_visible and async_iconified fields of struct frame.
1084 This is possible because async input is gone; for details, see
1085 http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00734.html.
1086 * frame.h (struct frame): Remove async_visible and async_iconified
1087 members, convert garbaged to unsigned bitfield. Adjust comments.
1088 (FRAME_SAMPLE_VISIBILITY): Remove. Adjust all users.
1089 (SET_FRAME_VISIBLE, SET_FRAME_ICONIFIED): New macros.
1090 * frame.c, gtkutil.c, term.c, w32fns.c, window.c, xdisp.c:
1091 Consistently use SET_FRAME_VISIBLE, SET_FRAME_ICONIFIED,
1092 FRAME_VISIBLE_P and FRAME_ICONIFIED_P macros where appropriate.
1093 * w32term.c: Ditto.
1094 (w32_read_socket): Save iconified state to generate DEICONIFY_EVENT
1095 properly. Likewise for obscured.
1096 * xterm.c: Ditto.
1097 (handle_one_xevent): Save visible state to generate ICONIFY_EVENT
1098 properly.
1099 * nsterm.m: Ditto.
1100 (windowDidDeminiaturize): Generate DEICONIFY_EVENT.
1101
1102 2013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
1103
1104 * insdel.c (prepare_to_modify_buffer): Revert last change as suggested
1105 in http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00555.html.
1106
1107 2013-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
1108
1109 * xdisp.c (message2, message2_nolog): Remove functions.
1110 (message3, message3_nolog): Extract nbytes and multibyteness directly
1111 from the string. Change all callers.
1112 (message3_nolog): Don't set message_enable_multibyte since set_message
1113 will reset it anyway.
1114 (message1, message1_nolog): Use message3.
1115 (vmessage): Use a stack allocated buffer rather than f->message_buf.
1116 (with_echo_area_buffer): Remove last two arguments. Update all callers.
1117 (set_message): Drop all but the second arg, which has to be a string.
1118 (set_message_1): Simplify now that we know that a1 is NULL and the
1119 second arg is a string.
1120 * frame.h (struct frame): Remove `message_buf' field.
1121 Use glyphs_initialized_p instead.
1122 (FRAME_MESSAGE_BUF): Remove macro.
1123 * w16select.c (Fw16_set_clipboard_data): Prefer message3 to message2.
1124 * lisp.h (message2, message2_nolog): Remove declarations.
1125 (message3, message3_nolog): Update declarations.
1126 * keyboard.c (read_char_minibuf_menu_text)
1127 (read_char_minibuf_menu_width): Remove vars.
1128 (read_char_minibuf_menu_prompt): Rewrite the menu's construction so as
1129 to correctly handle multibyte strings.
1130 * frame.c (delete_frame): Don't free message_buf any more.
1131 * editfns.c (message_text, message_length): Remove vars.
1132 (Fmessage_box): Don't copy the Lisp string's bytes any longer.
1133 * fileio.c (auto_save_error): Use message3 instead of message2.
1134 * dispnew.c (adjust_frame_message_buffer): Remove function.
1135
1136 2013-01-23 Eli Zaretskii <eliz@gnu.org>
1137
1138 * w32term.c (w32fullscreen_hook): Account correctly for the screen
1139 real estate used for the tool bar and the menu bar.
1140
1141 2013-01-23 Dmitry Antipov <dmantipov@yandex.ru>
1142
1143 * insdel.c (prepare_to_modify_buffer): Force redisplay if
1144 hidden buffer is prepared to modification (Bug#13164).
1145
1146 2013-01-22 Dmitry Antipov <dmantipov@yandex.ru>
1147
1148 * window.h (struct window): Change window_end_valid member from
1149 Lisp_Object to a bitfield. Adjust comments.
1150 (wset_window_end_valid): Remove.
1151 * window.c (adjust_window_count): Clear window_end_valid.
1152 (Fwindow_end): Adjust user. Remove ancient #if 0 code.
1153 (Fwindow_line_height, set_window_buffer, Frecenter)
1154 (Fsplit_window_internal, Fdelete_other_windows_internal)
1155 (Fset_window_fringes, Fset_window_scroll_bars): Adjust users.
1156 * dispnew.c (adjust_glyph_matrix, clear_window_matrices): Likewise.
1157 * xdisp.c (check_window_end, reconsider_clip_changes)
1158 (redisplay_internal, mark_window_display_accurate_1, redisplay_window)
1159 (try_window, try_window_reusing_current_matrix, note_mouse_highlight)
1160 (find_first_unchanged_at_end_row, try_window_id): Likewise.
1161
1162 2013-01-22 Dmitry Antipov <dmantipov@yandex.ru>
1163
1164 * xdisp.c (mark_window_display_accurate): Simplify the loop
1165 assuming that the only one of vchild, hchild or buffer window
1166 slots is non-nil. Call mark_window_display_accurate_1 for
1167 the leaf windows only.
1168 (mark_window_display_accurate_1): Always assume leaf window.
1169 Adjust comment.
1170
1171 2013-01-22 Paul Eggert <eggert@cs.ucla.edu>
1172
1173 * emacs.c (Qkill_emacs_hook): Now static.
1174
1175 * fileio.c (Finsert_file_contents): Simplify.
1176 Remove unnecessary assignments and tests.
1177
1178 2013-01-21 Eli Zaretskii <eliz@gnu.org>
1179
1180 * w32.c (acl_set_file): Don't test for errors unless
1181 set_file_security returns FALSE. Avoids spurious errors when
1182 saving files.
1183
1184 2013-01-21 Dmitry Antipov <dmantipov@yandex.ru>
1185
1186 * fileio.c (Finsert_file_contents): Revert code introduced at
1187 2013-01-18 in favor of the simpler and generally better fix.
1188 Save stack space by removing 'buffer' and reusing 'read_buf'
1189 where appropriate.
1190
1191 2013-01-19 Paul Eggert <eggert@cs.ucla.edu>
1192
1193 * lisp.h (eabs): Define unconditionally (Bug#13419).
1194 The old "#if !defined (eabs)" was an unnecessary revenant of back
1195 when this macro was called "abs". Document 'eabs' better.
1196
1197 2013-01-19 Glenn Morris <rgm@gnu.org>
1198
1199 * fns.c (Frandom): Doc fix.
1200
1201 2013-01-19 Eli Zaretskii <eliz@gnu.org>
1202
1203 * editfns.c (get_pos_property): Use SAFE_ALLOCA_LISP, to avoid
1204 segfault when there are lots of overlays.
1205
1206 * buffer.c (sort_overlays): Use SAFE_NALLOCA, to avoid segfault
1207 when there are lots of overlays.
1208 See http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00421.html
1209 for the details and a way to reproduce.
1210
1211 2013-01-19 Paul Eggert <eggert@cs.ucla.edu>
1212
1213 * fileio.c: Use O_APPEND to append.
1214 This corresponds better to the natural interpretation of "append",
1215 and avoids the need to open the output file twice, or to invoke
1216 lseek when APPEND is neither nil nor a number.
1217 This relies on POSIX 1003.1-1988 or later, which is OK nowadays.
1218 (Fwrite_region): Simplify. Use O_APPEND instead of opening the
1219 file possibly twice, and lseeking to its end; this avoids the
1220 need to lseek on non-regular files. Do not use O_EXCL and O_TRUNC
1221 at the same time: the combination is never needed and apparently
1222 it doesn't work with DOS_NT.
1223
1224 Fix size bug on DOS_NT introduced by CIFS workaround (Bug#13149).
1225 * fileio.c (Fwrite_region): Use O_BINARY in checking code, too.
1226
1227 Allow floating-point file offsets.
1228 Problem reported by Vitalie Spinu in
1229 <http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00411.html>.
1230 * fileio.c (emacs_lseek): Remove.
1231 (file_offset): New function.
1232 (Finsert_file_contents, Fwrite_region): Use it.
1233
1234 2013-01-19 Chong Yidong <cyd@gnu.org>
1235
1236 * emacs.c (Fkill_emacs): Set waiting_for_input to 0 to avoid
1237 aborting on Fsignal (Bug#13289).
1238
1239 2013-01-19 Eli Zaretskii <eliz@gnu.org>
1240
1241 * w32.c (acl_set_file): Treat ERROR_ACCESS_DENIED from
1242 set_file_security as failure due to insufficient privileges.
1243 Reported by Fabrice Popineau <fabrice.popineau@supelec.fr>.
1244 (fstat): Return owner and group like 'stat' and 'lstat' do.
1245
1246 2013-01-19 Paul Eggert <eggert@cs.ucla.edu>
1247
1248 Work around bug in CIFS and vboxsf file systems (Bug#13149).
1249 The bug was observed on Ubuntu operating inside a virtual machine,
1250 editing files mounted via CIFS or vboxsf from the MS Windows 7 host.
1251 The workaround introduces a race condition on non-buggy hosts,
1252 but it's an unlikely race and anyway there's a nearly identical
1253 nearby race that can't be fixed.
1254 * fileio.c (valid_timestamp_file_system, timestamp_file_system):
1255 New static vars.
1256 (Fwrite_region): Test for file system time stamp bug.
1257 (init_fileio): New function.
1258 * lisp.h (init_fileio): Declare it.
1259 * emacs.c (main): Call it.
1260
1261 * fileio.c (Finsert_file_contents): Simplify new diagnostic
1262 and make it more consistent with other stat-failure diagnostics.
1263
1264 2013-01-18 Dmitry Antipov <dmantipov@yandex.ru>
1265
1266 Fix crash when inserting data from non-regular files.
1267 See http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00406.html
1268 for the error description produced by valgrind.
1269 * fileio.c (read_non_regular): Rename to read_contents.
1270 Free Lisp_Save_Value object used to pass parameters.
1271 (read_non_regular_quit): Rename to read_contents_quit.
1272 (Finsert_file_contents): Redesign internal file reading loop to adjust
1273 gap and end positions after each read and so help make_gap to work
1274 properly. Do not signal an I/O error too early and so do not leave
1275 not yet decoded characters in a buffer, which was the reason of
1276 redisplay crash. Use list2 to build return value. Adjust comments.
1277
1278 2013-01-17 Paul Eggert <eggert@cs.ucla.edu>
1279
1280 Close a race when statting and reading files (Bug#13149).
1281 * fileio.c (Finsert_file_contents): Use open+fstat, not stat+open.
1282 This avoids a race if the file is renamed between stat and open.
1283 This race is not the problem originally noted in Bug#13149;
1284 see <http://bugs.gnu.org/13149#73> and later messages in the thread.
1285
1286 2013-01-17 Dmitry Antipov <dmantipov@yandex.ru>
1287
1288 * lisp.h (toplevel): Add comment about using Lisp_Save_Value
1289 objects, related functions and macros.
1290 (make_save_value): Adjust prototype.
1291 (make_save_pointer): New prototype.
1292 (SAFE_NALLOCA): Fix indentation. Use make_save_pointer.
1293 (SAFE_ALLOCA_LISP): Adjust make_save_value usage.
1294 * alloc.c (format_save_value): Rename to make_save_value.
1295 (make_save_pointer): New function.
1296 (record_xmalloc): Use make_save_pointer.
1297 * dired.c, editfns.c, fileio.c, font.c, gtkutil.c, lread.c:
1298 * nsmenu.m, nsterm.m, xfns.c, xmenu.c, xselect.c, keymap.c:
1299 Change users of make_save_value to make_save_pointer.
1300 Likewise for format_save_value and make_save_value.
1301
1302 2013-01-17 Dmitry Antipov <dmantipov@yandex.ru>
1303
1304 * buffer.h (NARROWED, BUF_NARROWED): Drop unused macros.
1305 (DECODE_POSITION, BUFFER_CHECK_INDIRECTION): Fix indentation.
1306 * buffer.c (toplevel, syms_of_buffer): Drop old commented-out
1307 debugging stubs.
1308
1309 2013-01-15 Paul Eggert <eggert@cs.ucla.edu>
1310
1311 * alloc.c (free_save_value): Now static.
1312
1313 2013-01-15 Dmitry Antipov <dmantipov@yandex.ru>
1314
1315 * keymap.c (map_keymap_internal): Use format_save_value.
1316 (map_keymap_char_table_item): Adjust accordingly.
1317 * fileio.c (non_regular_fd, non_regular_inserted)
1318 (non_regular_nbytes): Remove.
1319 (Finsert_file_contents): Convert trytry to ptrdiff_t.
1320 Use format_save_value to pass parameters to read_non_regular.
1321 (read_non_regular): Use XSAVE_ macros to extract parameters.
1322 Adjust comment.
1323 * xmenu.c (xmenu_show) [!USE_X_TOOLKIT && !USE_GTK]: Use
1324 format_save_value.
1325 (pop_down_menu) [!USE_X_TOOLKIT && !USE_GTK]: Adjust user.
1326
1327 2013-01-15 Dmitry Antipov <dmantipov@yandex.ru>
1328
1329 * lisp.h (XSAVE_POINTER, XSAVE_INTEGER): Change to allow
1330 extraction from any Lisp_Save_Value slot. Add type checking.
1331 * alloc.c, dired.c, editfns.c, fileio.c, ftfont.c, gtkutil.c:
1332 * keymap.c, lread.c, nsterm.h, nsmenu.c, xfns.c, xmenu.c:
1333 * xselect.c: All users changed.
1334
1335 2013-01-15 Dmitry Antipov <dmantipov@yandex.ru>
1336
1337 Some convenient bits to deal with Lisp_Save_Values.
1338 * lisp.h (XSAVE_OBJECT): New macro to extract saved objects.
1339 (allocate_misc): Remove prototype.
1340 (format_save_value): New prototype.
1341 * alloc.c (allocate_misc): Revert back to static.
1342 (format_save_value): New function to build Lisp_Save_Value
1343 object with the specified internal structure.
1344 (make_save_value): Reimplement using format_save_value.
1345 * editfns.c (save_excursion_save): Use format_save_value.
1346 (save_excursion_restore): Use XSAVE_OBJECT.
1347
1348 2013-01-14 Paul Eggert <eggert@cs.ucla.edu>
1349
1350 Avoid needless casts with XSAVE_POINTER.
1351 * alloc.c (mark_object) [GC_MARK_STACK]:
1352 * dired.c (directory_files_internal_unwind):
1353 * fileio.c (do_auto_save_unwind):
1354 * gtkutil.c (pop_down_dialog):
1355 * keymap.c (map_keymap_char_table_item):
1356 * lread.c (load_unwind):
1357 * nsmenu.m (pop_down_menu):
1358 * print.c (print_object) [GC_MARK_STACK]:
1359 * xfns.c (clean_up_file_dialog):
1360 * xmenu.c (cleanup_widget_value_tree):
1361 Omit casts between XSAVE_POINTER and a pointer type.
1362
1363 2013-01-14 Dmitry Antipov <dmantipov@yandex.ru>
1364
1365 Fix compilation with GC_MARK_STACK == GC_USE_GCPROS_AS_BEFORE.
1366 * eval.c (eval_sub): Protect `form' from being GCed before its
1367 car and cdr becomes protected with the backtrace entry.
1368
1369 2013-01-14 Dmitry Antipov <dmantipov@yandex.ru>
1370
1371 Make Lisp_Save_Value more versatile storage for up to four objects.
1372 * lisp.h (toplevel): Enumeration to describe types of saved objects.
1373 (struct Lisp_Save_Value): New layout. Adjust comments.
1374 (XSAVE_POINTER): New macro.
1375 (XSAVE_INTEGER): Likewise.
1376 (allocate_misc): Add prototype.
1377 (free_misc): Likewise.
1378 * alloc.c (allocate_misc): Now global.
1379 (free_misc): Likewise. Adjust comment.
1380 (make_save_value): Use new Lisp_Save_Value layout. Adjust comment.
1381 (free_save_value): Likewise.
1382 (mark_object): Likewise.
1383 * editfns.c (save_excursion_save): Pack everything within
1384 Lisp_Save_Value and so avoid xmalloc.
1385 (save_excursion_restore): Adjust to match new layout. Use free_misc
1386 because we do not allocate extra memory any more. Add eassert.
1387 * print.c (print_object): New code to print Lisp_Save_Value. Do not
1388 rely on valid_lisp_object_p if !GC_MARK_STACK. Adjust comments.
1389 * dired.c, fileio.c, font.c, ftfont.c, gtkutil.c, keymap.c,
1390 * lread.c, nsmenu.m, nsterm.h, xfns.c, xmenu.c, xselect.c:
1391 Use XSAVE_POINTER and XSAVE_INTEGER where appropriate.
1392
1393 2013-01-13 Jan Djärv <jan.h.d@swipnet.se>
1394
1395 * nsfont.m (LCD_SMOOTHING_MARGIN): New define.
1396 (nsfont_draw): Remove disabling of LCD smoothing.
1397 (ns_glyph_metrics): Add LCD_SMOOTHING_MARGIN to bearings to fix
1398 Bug#11484 with LCD smoothing on.
1399
1400 2013-01-13 Paul Eggert <eggert@cs.ucla.edu>
1401
1402 Fix SIGDANGER handlers, for AIX (Bug#13408).
1403 * sysdep.c.c (handle_danger_signal, deliver_danger_signal) [SIGDANGER]:
1404 Move handlers here from emacs.c; they were out of place.
1405
1406 2013-01-11 Jan Djärv <jan.h.d@swipnet.se>
1407
1408 * xterm.c (syms_of_xterm): Adjust documentation for
1409 scroll-bar-adjust-thumb-portion.
1410
1411 2012-12-31 Adam Sjøgren <asjo@koldfront.dk> (tiny change)
1412
1413 * xterm.c (scroll-bar-adjust-thumb-portion): New variable to
1414 determine whether scroll bar thumb size should be adjusted or
1415 not. Use variable for MOTIF.
1416
1417 * gtkutil.c (scroll-bar-adjust-thumb-portion): Use variable for
1418 GTK.
1419
1420 2013-01-13 Jan Djärv <jan.h.d@swipnet.se>
1421
1422 * nsterm.m (keyDown:): Set processingCompose to NO if an emacs key
1423 event is generated.
1424 (doCommandBySelector:): Set processingCompose to NO.
1425
1426 * nsfont.m (ns_findfonts): Add block/unblock_input calls.
1427 Remove check for fkeys count > zero, block/unblock fixes the real bug.
1428 (nsfont_list_family): Add block/unblock_input calls.
1429 (nsfont_open): Move block_input earlier. Add unblock_input before early
1430 return.
1431 (nsfont_draw): Add block/unblock_input calls.
1432
1433 2013-01-12 Dmitry Antipov <dmantipov@yandex.ru>
1434
1435 * indent.c (Fvertical_motion): Remove now-incorrect GCPROs
1436 for old_charpos and old_bytepos.
1437
1438 2013-01-12 Paul Eggert <eggert@cs.ucla.edu>
1439
1440 Fix bug with set-time-zone-rule and LOCALTIME_CACHE (Bug#13415).
1441 * editfns.c (set_time_zone_rule) [LOCALTIME_CACHE]:
1442 Clear tzvalbuf_in_environ if this workaround is in effect.
1443 Problem and fix reported by Kazuhiro Ito.
1444
1445 2013-01-11 Aaron S. Hawley <Aaron.Hawley@vtinfo.com>
1446
1447 * insdel.c (Fcombine_after_change_execute, syms_of_insdel):
1448 Fix ambiguous doc string cross-reference(s).
1449
1450 * keyboard.c (Fcommand_execute, syms_of_keyboard): Fix ambiguous
1451 doc string cross-reference(s).
1452
1453 * window.c (Fwindow_point, syms_of_window): Fix ambiguous doc
1454 string cross-reference(s).
1455
1456 2013-01-11 Dmitry Antipov <dmantipov@yandex.ru>
1457
1458 Avoid unnecessary byte position calculation for the gap movement.
1459 Since all users of move_gap do CHAR_TO_BYTE for other purposes
1460 anyway, all of them should use move_gap_both instead.
1461 * lisp.h (move_gap): Remove prototype.
1462 * insdel.c (move_gap): Remove.
1463 (move_gap_both): Add eassert.
1464 * editfns.c (Ftranspose_regions): Tweak to use move_gap_both.
1465 * xml.c (parse_region): Likewise.
1466
1467 2013-01-11 Paul Eggert <eggert@cs.ucla.edu>
1468
1469 emacsclient -t should not suspend Emacs server (Bug#13387)
1470 * lisp.h, sysdep.c (block_tty_out_signal, unblock_tty_out_signal):
1471 New functions.
1472 * term.c (init_tty): Use them instead of rolling our own code.
1473 * sysdep.c (tcsetpgrp_without_stopping): Likewise. Here, this
1474 switches from 'signal' to 'pthread_sigmask', which is safer in
1475 multithreaded applications.
1476 * term.c (Fresume_tty): Don't bother dissociating if O_IGNORE_CTTY,
1477 which has already arranged for that.
1478 (dissociate_if_controlling_tty): If setsid fails, fall back on TIOCNOTTY.
1479 This is the main part of the bug fix.
1480
1481 2013-01-10 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> (tiny change)
1482
1483 * gtkutil.c (xg_initialize): Add ifdef HAVE_FREETYPE around
1484 x_last_font_name (Bug#13403).
1485
1486 2013-01-10 Dmitry Antipov <dmantipov@yandex.ru>
1487
1488 Omit buffer_slot_type_mismatch and use generic predicates to enforce
1489 the type of per-buffer values where appropriate.
1490 * lisp.h (struct Lisp_Buffer_Objfwd): Rename slottype member to
1491 predicate, which is how it's really used now. Adjust comment.
1492 * buffer.h (buffer_slot_type_mismatch): Remove prototype.
1493 * buffer.c (buffer_slot_type_mismatch): Remove.
1494 (DEFVAR_PER_BUFFER, defvar_per_buffer): Rename type argument to
1495 predicate. Adjust comment.
1496 (syms_of_buffer): Use Qsymbolp for major-mode. Use Qintegerp for
1497 fill-column, left-margin, tab-width, buffer-saved-size,
1498 left-margin-width, right-margin-width, left-fringe-width,
1499 right-fringe-width, scroll-bar-width and buffer-display-count.
1500 Use Qstringp for default-directory, buffer-file-name,
1501 buffer-file-truename and buffer-auto-save-file-name. Use Qfloatp for
1502 scroll-up-aggressively and scroll-down-aggressively. Use Qnumberp for
1503 line-spacing.
1504 * data.c (store_symval_forwarding): Adjust to call the predicate.
1505
1506 2013-01-09 Juanma Barranquero <lekktu@gmail.com>
1507
1508 * w32.c (get_name_and_id, acl_set_file):
1509 * w32term.c (w32fullscreen_hook): Remove unused local variables.
1510
1511 2013-01-09 Dmitry Antipov <dmantipov@yandex.ru>
1512
1513 * lisp.h (make_gap_1): New prototype.
1514 * buffer.h (GAP_BYTES_DFL, GAP_BYTES_MIN): New macros for the special
1515 gap size values.
1516 * editfns.c (Fbuffer_size): Rename from Fbufsize to fit the common
1517 naming convention.
1518 (syms_of_editfns): Adjust defsubr. Drop commented-out obsolete code.
1519 * insdel.c (make_gap_larger): Use GAP_BYTES_DFL. Adjust comment.
1520 (make_gap_smaller): Use GAP_BYTES_MIN. Adjust comment.
1521 (make_gap_1): New function to adjust the gap of any buffer.
1522 * coding.c (coding_alloc_by_making_gap): Use it.
1523 * buffer.c (compact_buffer): Likewise. Use BUF_Z_BYTE, BUF_GAP_SIZE,
1524 GAP_BYTES_DFL and GAP_BYTES_MIN. Adjust comment.
1525
1526 2013-01-08 Juri Linkov <juri@jurta.org>
1527
1528 * xfaces.c (tty_supports_face_attributes_p): Return 0 for the case
1529 of (supports :underline (:style wave)). (Bug#13000)
1530
1531 2013-01-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
1532
1533 * undo.c (Fprimitive_undo): Move to simple.el.
1534 (syms_of_undo): Remove declarations for Sprimitive_undo.
1535
1536 2013-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
1537
1538 * keyboard.c (echo_add_key): Rename from echo_add_char.
1539
1540 2013-01-06 Chong Yidong <cyd@gnu.org>
1541
1542 * keyboard.c (echo_add_char): New function, factored out from
1543 echo_char. Don't add a space if the previous echo string was
1544 empty (Bug#13255).
1545 (echo_char): Use it.
1546 (read_key_sequence): When echoing mock input, ensure that the
1547 trailing dash is properly added.
1548
1549 2013-01-05 Eli Zaretskii <eliz@gnu.org>
1550
1551 * xdisp.c (dump_glyph): Align glyph data better. Use "pD" instead
1552 of a non-portable "t" to print ptrdiff_t values. Allow up to 9
1553 digits for buffer positions, before misalignment starts.
1554 Display "0" for integer "object" field.
1555 (dump_glyph_row): Adapt the header line to changes in dump_glyph.
1556 Display the newline glyph more unambiguously.
1557
1558 2013-01-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1559
1560 * nsterm.m (ns_draw_underwave):
1561 * w32term.c (w32_draw_underwave):
1562 * xterm.c (x_draw_underwave): Make underwave look more triangular
1563 and also degrade gracefully for small fonts. (Bug#13000)
1564
1565 * nsterm.m (ns_draw_text_decoration):
1566 * w32term.c (x_draw_glyph_string):
1567 * xterm.c (x_draw_glyph_string): Don't use previous underline
1568 thickness and position if previous underline type is underwave.
1569
1570 2013-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
1571
1572 * fileio.c (Ffile_acl): Undocument return format.
1573
1574 2013-01-02 Glenn Morris <rgm@gnu.org>
1575
1576 * keymap.c (Fkey_description): Doc fix. (Bug#13323)
1577
1578 2013-01-02 Paul Eggert <eggert@cs.ucla.edu>
1579
1580 Simplify via eabs.
1581 * dired.c (file_name_completion):
1582 * doc.c (get_doc_string):
1583 * floatfns.c (round2):
1584 * font.c (font_score, font_delete_unmatched):
1585 * fringe.c (compute_fringe_widths):
1586 * lread.c (read_list):
1587 * minibuf.c (Ftry_completion):
1588 * term.c (tty_ins_del_lines):
1589 * xterm.c (x_draw_image_foreground, x_draw_image_foreground_1):
1590 Use eabs (x) rather than open-coding it as (x < 0 ? -x : x).
1591
1592 2012-12-31 Eli Zaretskii <eliz@gnu.org>
1593
1594 * w32.c (unsetenv): Set up the string passed to _putenv
1595 correctly.
1596 See http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00863.html
1597 for the bug this caused.
1598
1599 2012-12-30 Paul Eggert <eggert@cs.ucla.edu>
1600
1601 * coding.c (Qmac): Now static.
1602
1603 2012-12-30 Jan Djärv <jan.h.d@swipnet.se>
1604
1605 * gtkutil.c (TOOLBAR_TOP_WIDGET): New macro.
1606 (xg_pack_tool_bar): Use TOOLBAR_TOP_WIDGET, condition out use of
1607 handlebox_widget. Set toolbar_in_hbox to false/true, set
1608 toolbar_is_packed to true.
1609 (xg_update_tool_bar_sizes): Use widget returned by TOOLBAR_TOP_WIDGET.
1610 (update_frame_tool_bar): Check toolbar_is_packed for packing.
1611 Show all on TOOLBAR_TOP_WIDGET.
1612 (free_frame_tool_bar): Check toolbar_is_packed. Use widget returned
1613 by TOOLBAR_TOP_WIDGET.
1614 (xg_change_toolbar_position): Use widget returned by TOOLBAR_TOP_WIDGET.
1615 Check toolbar_is_packed.
1616 (xg_have_tear_offs, tearoff_remove, tearoff_activate): Condition on
1617 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
1618 (xg_have_tear_offs): When ! HAVE_GTK_TEAROFF_MENU_ITEM_NEW, return
1619 false.
1620 (create_menus): Create tearoff only if HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
1621 (xg_update_menubar): Update title only if
1622 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
1623 (xg_update_submenu): Skip tearoff only if
1624 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
1625 (xg_initialize): Initialize xg_detached_menus only if
1626 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
1627
1628 * xterm.h (struct x_output): Surround handlebox_widget with
1629 #ifdef HAVE_GTK_HANDLE_BOX_NEW. toolbar_is_packed is new,
1630 toolbar_in_hbox is bool.
1631
1632 2012-12-30 Andreas Schwab <schwab@linux-m68k.org>
1633
1634 * src/Makefile.in (TEMACS_LDFLAGS2): Remove.
1635 (LIBS_GNUSTEP): Define.
1636 (LIBES): Add $(LIBS_GNUSTEP).
1637 (temacs$(EXEEXT)): Use $(LDFLAGS) instead of $(TEMACS_LDFLAGS2).
1638
1639 2012-12-30 Eli Zaretskii <eliz@gnu.org>
1640
1641 * xdisp.c (set_cursor_from_row): Don't confuse a truncation or
1642 continuation glyph on a TTY with an indication of an empty line.
1643 (Bug#13277)
1644
1645 2012-12-29 Eli Zaretskii <eliz@gnu.org>
1646
1647 * fileio.c (Fset_file_selinux_context, Fset_file_acl): Return t if
1648 file's SELinux context or ACLs successfully set, nil otherwise.
1649 (Bug#13298)
1650 (Fcopy_file) [WINDOWSNT]: Improve diagnostics when CopyFile fails.
1651
1652 * w32proc.c (reader_thread): Avoid passing NULL handles to
1653 SetEvent and WaitForSingleObject.
1654
1655 2012-12-28 Paul Eggert <eggert@cs.ucla.edu>
1656
1657 Port EXTERNALLY_VISIBLE to Clang 3.2.
1658 * conf_post.h (__has_attribute): New macro.
1659 (EXTERNALLY_VISIBLE): Use it. This ports to Clang 3.2.
1660
1661 2012-12-27 Glenn Morris <rgm@gnu.org>
1662
1663 * cygw32.c (Fcygwin_convert_file_name_to_windows)
1664 (Fcygwin_convert_file_name_from_windows): Doc fixes.
1665
1666 2012-12-27 Eli Zaretskii <eliz@gnu.org>
1667
1668 * fileio.c (file_name_as_directory, directory_file_name):
1669 Accept an additional argument MULTIBYTE to indicate whether the input C
1670 came from a multibyte or a unibyte Lisp string; all callers
1671 adjusted. Don't assume the input string is always multibyte.
1672 (Bug#13262)
1673 (Ffile_name_directory) [DOS_NT]: Handle unibyte strings correctly:
1674 don't ENCODE_FILE them, and return a unibyte string if the input
1675 was unibyte.
1676 (Fexpand_file_name): Don't mix unibyte with multibyte strings, and
1677 don't assume the input strings will always be multibyte. If the
1678 input strings are multibyte, decode strings obtained from C
1679 library functions.
1680
1681 2012-12-26 Dmitry Antipov <dmantipov@yandex.ru>
1682
1683 * lisp.h (toplevel): Add two notices to the comment about
1684 defining a new Lisp data type.
1685 * print.c (print_object): If Lisp_Save_Value object's pointer
1686 is the address of a memory area containing Lisp_Objects, try
1687 to print them.
1688 * alloc.c (valid_lisp_object_p): Adjust comment.
1689
1690 2012-12-26 Dmitry Antipov <dmantipov@yandex.ru>
1691
1692 * keyboard.c (record_asynch_buffer_change): Initialize an event
1693 only if it's really needed.
1694 * frame.h (enum output_method): Remove output_mac member since
1695 it's a leftover from the deleted code.
1696 * frame.c (Fframep): Adjust user here ...
1697 * terminal.c (Fterminal_live_p): ... and here.
1698 * coding.c (Qmac): Now here because it's only used to denote
1699 end-of-line encoding type.
1700 (syms_of_coding): DEFSYM it.
1701 * frame.h (Qmac): Remove duplicated declaration.
1702
1703 2012-12-26 Paul Eggert <eggert@cs.ucla.edu>
1704
1705 * window.c (select_window_1): Now static, since it's used only here.
1706
1707 2012-12-25 Eli Zaretskii <eliz@gnu.org>
1708
1709 * window.c (window_body_cols): Subtract display margins from the
1710 window body width on TTYs as well. See
1711 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-12/msg00317.html
1712 for the original report.
1713
1714 2012-12-25 Dmitry Antipov <dmantipov@yandex.ru>
1715
1716 * xdisp.c (redisplay_window): Remove inner local variable
1717 because the outer shadowed one has the same meaning.
1718 * xterm.h (struct x_output): Remove toolbar_detached member since it's
1719 set but never used.
1720 * gtkutil.c (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
1721 (xg_create_tool_bar): Adjust users.
1722
1723 2012-12-24 Dmitry Antipov <dmantipov@yandex.ru>
1724
1725 * buffer.h (BUF_COMPACT): New macro to follow the common style.
1726 * buffer.c (Fget_buffer_create): Use it to set compact field of
1727 struct buffer_text to avoid accessing an uninitialized value
1728 when compact_buffer is called for the first time.
1729 (compact_buffer): Use convenient BUF_COMPACT and BUF_MODIFF.
1730 (Fset_buffer_modified_p): Use buffer_window_count to check
1731 whether the buffer is displayed in some window.
1732 * xdisp.c (message_dolog): Likewise.
1733
1734 2012-12-23 Eli Zaretskii <eliz@gnu.org>
1735
1736 * w32.c (acl_set_file): If setting the file security descriptor
1737 fails, and the new DACL is identical to the existing one, silently
1738 return success. This fixes problems for users backing up their
1739 own files without having the necessary privileges for setting
1740 security descriptors.
1741
1742 * w32proc.c (reader_thread): Do not index fd_info[] with negative
1743 values.
1744 (reader_thread): Exit when cp->status becomes STATUS_READ_ERROR
1745 after WaitForSingleObject returns normally. This expedites reader
1746 thread shutdown when delete_child triggers it.
1747 (reap_subprocess): More accurate commentary for why we call
1748 delete_child only when cp->fd is negative.
1749
1750 * w32.c (sys_close): Do not call delete_child on a subprocess
1751 whose handle is not yet closed. Instead, set its file descriptor
1752 to a negative value, so that reap_subprocess will call
1753 delete_child on that subprocess when its SIGCHLD arrives.
1754 This avoids closing handles used for communications between sys_select
1755 and reader_thread, which doesn't give sys_select a chance to
1756 notice that the process exited and invoke the SIGCHLD handler for
1757 it.
1758
1759 2012-12-23 Jan Djärv <jan.h.d@swipnet.se>
1760
1761 * nsfns.m (Fns_do_applescript): Run event loop until script has
1762 been executed (Bug#12969).
1763 (ns_run_ascript): Chech as_script for nil, set to nil after
1764 executing script.
1765
1766 2012-12-22 Martin Rudalics <rudalics@gmx.at>
1767
1768 * window.c (Fselect_window): Reword doc-string (Bug#13248).
1769
1770 2012-12-22 Eli Zaretskii <eliz@gnu.org>
1771
1772 * w32term.c (w32fullscreen_hook): New function.
1773 (w32_create_terminal): Plug it into the terminal's fullscreen_hook.
1774
1775 2012-12-21 Eli Zaretskii <eliz@gnu.org>
1776
1777 * fileio.c (Finsert_file_contents): Doc fix.
1778
1779 * w32proc.c (new_child, delete_child, find_child_pid): For a
1780 subprocess, consider its slot being in use as long as its process
1781 handle (procinfo.hProcess) is not NULL. This avoids reusing the
1782 slot when a new process is started immediately after killing
1783 another one, without waiting enough time for the first process to
1784 be reaped and resources allocated for it be orderly freed.
1785 (Bug#13086)
1786 Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
1787
1788 2012-12-21 Chong Yidong <cyd@gnu.org>
1789
1790 * buffer.c (Fset_buffer_major_mode): Doc fix (Bug#13231).
1791
1792 * fns.c (Fcompare_strings): Doc fix (Bug#13081).
1793
1794 2012-12-21 Eli Zaretskii <eliz@gnu.org>
1795
1796 * w32.c (get_name_and_id): Always pass NULL as the first argument
1797 of lookup_account_sid. Avoids crashes with UNC file names that
1798 refer to DFS domains, not to specific machine names. (Bug#12621)
1799 Remove now unused argument FNAME; all callers changed.
1800 (get_file_owner_and_group): Remove now unused argument FNAME; all
1801 callers changed.
1802
1803 2012-12-21 Chong Yidong <cyd@gnu.org>
1804
1805 * editfns.c (Finsert_char): Since read-char-by-name now signals an
1806 error for invalid chars, don't check for a nil return value.
1807
1808 2012-12-20 Dmitry Antipov <dmantipov@yandex.ru>
1809
1810 Avoid calls to CHAR_TO_BYTE if byte position is known.
1811 * editfns.c (make_buffer_string_both): Use move_gap_both.
1812 (Fbuffer_string): Use make_buffer_string_both.
1813 * marker.c (buf_charpos_to_bytepos): Convert to eassert.
1814 Adjust comment.
1815 (buf_bytepos_to_charpos): Likewise.
1816 (charpos_to_bytepos): Remove.
1817 * fileio.c (Finsert_file_contents): Use move_gap_both.
1818 * search.c (Freplace_match): Likewise.
1819 * process.c (process_send_region): Likewise. Use convenient
1820 names for byte positions.
1821 * lisp.h (charpos_to_bytepos): Remove prototype.
1822 * indent.c (scan_for_column): Use CHAR_TO_BYTE.
1823 * insdel.c (move_gap): Likewise.
1824
1825 2012-12-20 Paul Eggert <eggert@cs.ucla.edu>
1826
1827 * xdisp.c (redisplay_internal): Remove now-unused local.
1828
1829 2012-12-20 Stefan Monnier <monnier@iro.umontreal.ca>
1830
1831 * xdisp.c (select_frame_for_redisplay, ensure_selected_frame): Remove.
1832 (redisplay_internal): Don't bother selecting the frame to get the
1833 proper value of frame-local variables (bug#13225).
1834
1835 2012-12-20 Dmitry Antipov <dmantipov@yandex.ru>
1836
1837 * textprop.c (set_text_properties_1): Do not allow NULL interval.
1838 Rename 4th argument since it may be buffer or string. Adjust comment.
1839 * intervals.c (graft_intervals_info_buffer): Find an interval here.
1840
1841 2012-12-19 Dmitry Antipov <dmantipov@yandex.ru>
1842
1843 * coding.c (Fdetect_coding_region): Do not check start and end with
1844 CHECK_NUMBER_COERCE_MARKER since validate_region does that itself.
1845 (code_convert_region): Likewise.
1846
1847 2012-12-18 Eli Zaretskii <eliz@gnu.org>
1848
1849 * w32.c (acl_get_file, acl_set_file): Run the file name through
1850 map_w32_filename, and resolve any symlinks in the file name, like
1851 Posix platforms do.
1852 (acl_set_file): Call revert_to_self, if any privileges were
1853 enabled.
1854
1855 2012-12-17 Juanma Barranquero <lekktu@gmail.com>
1856
1857 * makefile.w32-in ($(BLD)/editfns.$(O), $(BLD)/fileio.$(O))
1858 ($(BLD)/w32.$(O)): Update dependencies.
1859
1860 2012-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
1861
1862 * xdisp.c (select_frame_for_redisplay): Use select_window_1 to
1863 propagate redisplay's scrolling (if any) to the right window.
1864 (redisplay_internal): Use ensure_selected_frame.
1865 (display_mode_lines): Complete last fix.
1866 * window.c (select_window_1): New func, extracted from select_window.
1867 (select_window): Use it.
1868 * window.h (select_window_1): Declare.
1869
1870 2012-12-17 Eli Zaretskii <eliz@gnu.org>
1871
1872 Emulate Posix ACL APIs on MS-Windows.
1873 * w32.c: Include sddl.h and sys/acl.h.
1874 (SDDL_REVISION_1): Define if not already defined.
1875 (g_b_init_get_security_descriptor_dacl)
1876 (g_b_init_convert_sd_to_sddl, g_b_init_convert_sddl_to_sd)
1877 (g_b_init_is_valid_security_descriptor)
1878 (g_b_init_set_file_security): New static flags.
1879 (globals_of_w32): Initialize them to zero.
1880 (SetFileSecurity_Name): New string constant.
1881 (SetFileSecurity_Proc, GetSecurityDescriptorDacl_Proc)
1882 (ConvertStringSecurityDescriptorToSecurityDescriptor_Proc)
1883 (ConvertSecurityDescriptorToStringSecurityDescriptor_Proc)
1884 (IsValidSecurityDescriptor_Proc): New typedefs.
1885 (get_file_security, get_security_descriptor_owner)
1886 (get_security_descriptor_group): Set errno to ENOTSUP.
1887 (set_file_security, get_security_descriptor_dacl)
1888 (is_valid_security_descriptor, convert_sd_to_sddl)
1889 (convert_sddl_to_sd, acl_valid, acl_to_text, acl_from_text)
1890 (acl_free, acl_get_file, acl_set_file): New functions.
1891
1892 * fileio.c (Fcopy_file) [WINDOWSNT]: Support copying ACLs.
1893
1894 2012-12-17 Paul Eggert <eggert@cs.ucla.edu>
1895
1896 Don't reraise SIGCHLD, as that can now lose (Bug#13192).
1897 With the 2012-12-03 fix for Bug#12980 in place, an old workaround
1898 for some of that bug's symptoms can now cause Emacs to abort.
1899 Remove the workaround.
1900 * process.c (wait_reading_process_output): Don't reraise SIGCHLD.
1901 The bug that caused SIGCHLD to get lost has been fixed, and the
1902 workaround for it can now cause Emacs to abort.
1903
1904 2012-12-16 Paul Eggert <eggert@cs.ucla.edu>
1905
1906 * sysdep.c (emacs_abort): Bump backtrace size to 40.
1907 Companion to the 2012-09-30 patch. Suggested by Eli Zaretskii in
1908 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00796.html>.
1909
1910 2012-12-16 Romain Francoise <romain@orebokech.com>
1911
1912 * fileio.c (Ffile_acl, Fset_file_acl): New functions.
1913 (Fcopy_file): Change last arg to `preserve_extended_attributes'
1914 and copy ACL entries of file in addition to SELinux context if set.
1915 (syms_of_fileio): Add `file-acl' and `set-file-acl'.
1916
1917 * Makefile.in (LIBACL_LIBS): New macro.
1918 (LIBES): Use it.
1919
1920 2012-12-15 Paul Eggert <eggert@cs.ucla.edu>
1921
1922 * fileio.c (internal_delete_file): Use bool for boolean.
1923
1924 2012-12-15 Eli Zaretskii <eliz@gnu.org>
1925
1926 Fix bug #13079 on MS-Windows with temp files not being deleted.
1927 * w32.h (_child_process): New members input_file and
1928 pending_deletion.
1929 (register_child): First argument is now pid_t.
1930 (record_infile, record_pending_deletion): New prototypes.
1931
1932 * w32proc.c (new_child): Initialize input_file and
1933 pending_deletion members of the child.
1934 (delete_child): Delete the child's temporary input file, if any,
1935 that is pending deletion.
1936 (register_child): First argument is now pid_t.
1937 (record_infile, record_pending_deletion): New functions.
1938 (reap_subprocess): Fix a typo in DebPrint string.
1939 (sys_spawnve, sys_kill): Use pid_t for PID arguments.
1940
1941 * fileio.c (internal_delete_file): Return an int again: non-zero
1942 if delete-file succeeds, zero otherwise.
1943
1944 * lisp.h (internal_delete_file): Adjust prototype.
1945
1946 * callproc.c (Fcall_process): Don't overwrite infile with result
1947 of DECODE_FILE.
1948 [WINDOWSNT] If BUFFER is an integer, i.e. we are launching an
1949 asynchronous subprocess, record the name of the input file name,
1950 if any.
1951 (delete_temp_file) [WINDOWSNT]: If internal_delete_file fails to
1952 delete the file, record it as pending deletion when the subprocess
1953 exits.
1954
1955 2012-12-14 Eli Zaretskii <eliz@gnu.org>
1956
1957 * editfns.c [HAVE_PWD_H]: Include grp.h.
1958
1959 * makefile.w32-in ($(BLD)/editfns.$(O)): Add $(NT_INC)/grp.h.
1960
1961 2012-12-14 Paul Eggert <eggert@cs.ucla.edu>
1962
1963 Fix permissions bugs with setgid directories etc. (Bug#13125)
1964 * dired.c (Ffile_attributes): Return t as the 9th attribute,
1965 to mark it as a placeholder. The old value was often wrong.
1966 The only user of this attribute has been changed to use
1967 file-ownership-preserved-p instead, with its new group arg.
1968 * editfns.c (Fgroup_gid, Fgroup_real_gid): New functions.
1969
1970 2012-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
1971
1972 * xdisp.c (select_frame_for_redisplay, display_mode_lines):
1973 Keep selected_window and selected_frame in sync.
1974
1975 2012-12-14 Eli Zaretskii <eliz@gnu.org>
1976
1977 * w32.c (stat_worker): If w32_stat_get_owner_group is zero, do not
1978 try to get accurate owner and group information from NT file
1979 security APIs. This is to make most callers of 'stat' and
1980 'lstat', which don't need that information, much faster.
1981
1982 * dired.c (Ffile_attributes) [WINDOWSNT]:
1983 Set w32_stat_get_owner_group to a non-zero value, to request accurate
1984 owner and group information from 'lstat'.
1985
1986 2012-12-13 Paul Eggert <eggert@cs.ucla.edu>
1987
1988 * fileio.c (Finsert_file_contents): Don't put tail into head area,
1989 as that confuses set-auto-coding, so insist on the head-read
1990 returning the full 1024 bytes. Let lseek compute the tail offset;
1991 less work for us. Do not ignore I/O errors when reading the tail.
1992
1993 * xdisp.c: Minor style fixes.
1994 (init_iterator): Hoist assignment out of if-expression.
1995 (markpos_of_region): Callers now test for sign, not for -1.
1996
1997 2012-12-13 Dmitry Antipov <dmantipov@yandex.ru>
1998
1999 Minor redisplay optimization when the region length is zero.
2000 * xdisp.c (markpos_of_region): New function.
2001 (init_iterator): Do not highlight the region of zero length.
2002 (redisplay_window): Check whether the region is of non-zero length.
2003 (try_cursor_movement): Allow if the region length is zero.
2004 (try_window_reusing_current_matrix, try_window_id): Likewise.
2005
2006 2012-12-13 Eli Zaretskii <eliz@gnu.org>
2007
2008 * search.c (search_buffer): Check the inverse translations of each
2009 character in pattern when the buffer being searched is unibyte.
2010 (Bug#13084)
2011
2012 2012-12-13 Paul Eggert <eggert@cs.ucla.edu>
2013
2014 * fileio.c (Fvisited_file_modtime): Return (-1 ...) for nonexistent
2015 files, fixing a regression from 24.2.
2016 (Fverify_visited_file_modtime): Don't read uninitialized st.st_size.
2017
2018 2012-12-13 Paul Eggert <eggert@cs.ucla.edu>
2019
2020 * fileio.c (Fcopy_file): Make fstat failure as serious as open failure.
2021 fstat shouldn't fail, and if it does fail copy-file should not proceed.
2022 Remove unnecessary S_ISLNK test, as (contra the comments) this
2023 function can't copy symlinks. Improve quality of error message
2024 when attempting to copy files that are neither regular files nor
2025 directories.
2026
2027 2012-12-12 Dmitry Antipov <dmantipov@yandex.ru>
2028
2029 * dispnew.c (set_window_cursor_after_update): Use clip_to_bounds.
2030 * gtkutil.c (xg_set_toolkit_scroll_bar_thumb):
2031 * window.c (Frecenter):
2032 * xdisp.c (resize_mini_window, hscroll_window_tree, draw_glyphs):
2033 * xterm.c (x_set_toolkit_scroll_bar_thumb): Likewise.
2034
2035 2012-12-12 Daniel Colascione <dancol@dancol.org>
2036
2037 * unexcw.c (fixup_executable): Use posix_fallocate to ensure that
2038 the dumped Emacs is not a sparse file, greatly improving Cygwin
2039 "make bootstrap" performance.
2040
2041 2012-12-11 Michael Albinus <michael.albinus@gmx.de>
2042
2043 * inotify.c (inotify_callback): Generate an Emacs event for every
2044 incoming inotify event.
2045
2046 2012-12-11 Eli Zaretskii <eliz@gnu.org>
2047
2048 * xdisp.c (handle_face_prop): Fix logic of computing
2049 it->start_of_box_run_p.
2050 (append_space_for_newline): If the glyph row is R2L, reset the
2051 iterator's end_of_box_run_p flag before prepending the space glyph.
2052 (extend_face_to_end_of_line): If the glyph row is R2L, reset the
2053 iterator's start_of_box_run_p flag before prepending the stretch.
2054 (append_glyph, produce_image_glyph, append_composite_glyph)
2055 (append_stretch_glyph, append_glyphless_glyph): Reverse the
2056 left_box_line_p and right_box_line_p flags of the glyph for R2L
2057 glyph rows. (Bug#13011)
2058
2059 2012-12-11 Dmitry Antipov <dmantipov@yandex.ru>
2060
2061 * buffer.c (Fset_buffer_multibyte): Do not force redisplay
2062 if changed buffer is not shown in a window.
2063 * insdel.c (prepare_to_modify_buffer): Likewise.
2064 * window.c (replace_buffer_in_windows_safely): Do nothing
2065 if buffer is not shown in a window.
2066 (Fforce_window_update): Likewise if string or buffer argument
2067 is passed.
2068
2069 2012-12-11 Eli Zaretskii <eliz@gnu.org>
2070
2071 * inotify.c (Finotify_add_watch): Rename decoded_file_name to
2072 encoded_file_name, which is what it is.
2073
2074 2012-12-11 Dmitry Antipov <dmantipov@yandex.ru>
2075
2076 Consistently use marker_position and marker_byte_position.
2077 * fringe.c (Ffringe_bitmaps_at_pos):
2078 * indent.c (Fvertical_motion):
2079 * insdel.c (prepare_to_modify_buffer):
2080 * keyboard.c (make_lispy_position):
2081 * window.c (Fwindow_end, Fpos_visible_in_window_p, unshow_buffer)
2082 (window_scroll_pixel_based, displayed_window_lines)
2083 (Fset_window_configuration):
2084 * xdisp.c (message_dolog, with_echo_area_buffer_unwind_data)
2085 (mark_window_display_accurate_1, redisplay_window, decode_mode_spec):
2086 Replace direct access to marker fields with calls
2087 to marker_position and/or marker_byte_position.
2088
2089 2012-12-11 Juanma Barranquero <lekktu@gmail.com>
2090
2091 * makefile.w32-in (SIG2STR_H): New macro.
2092 (SYSWAIT_H, $(BLD)/emacs.$(O), $(BLD)/process.$(O))
2093 ($(BLD)/w32notify.$(O)): Update dependencies.
2094
2095 2012-12-10 Daniel Colascione <dancol@dancol.org>
2096
2097 * w32term.c, keyboard.c: Fix build break in cygw32 by omitting
2098 Windows file notification functionality unless WINDOWSNT.
2099
2100 * w32gui.h (hprevinst, lpCmdLine, nCmdShow): Remove unused
2101 declarations.
2102
2103 * w32fns.c (cache_system_info): Initialize the global hinst
2104 variable here so various initialization calls DTRT.
2105
2106 * unexw32.c (hprevinst, lpCmdLine, nCmdShow): Remove unused variables.
2107 (hinst): Remove unneeded extern declaration.
2108 (_start): Remove initialization of above variables; remove
2109 initialization of hinst, as cache_system_info now does that.
2110
2111 * emacs.c (main): Call cache_system_info early in startup; we
2112 previously weren't calling it in Cygwin builds.
2113
2114 * Makefile.in (ntsource, WINDRES, W32_RES, W#@_RES_LINK):
2115 Teach the autoconf build system how to compile a Windows resource file
2116 and link it to Emacs.
2117
2118 2012-12-10 Dmitry Antipov <dmantipov@yandex.ru>
2119
2120 Per-buffer window counters.
2121 * buffer.h (struct buffer): New member window_count.
2122 (buffer_window_count): New function.
2123 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
2124 Initialize window_count.
2125 (Fkill_buffer): Verify window_count for the buffer being killed.
2126 (modify_overlay): Do not force redisplay if buffer is not shown
2127 in any window.
2128 (init_buffer_once): Initialize window_count for buffer_defaults
2129 and buffer_local_symbols.
2130 * window.h (buffer_shared): Remove declaration.
2131 (wset_buffer): Convert from inline ...
2132 * window.c (wset_buffer): ... to an ordinary function.
2133 (adjust_window_count): New function.
2134 (make_parent_window): Use it.
2135 * xdisp.c (buffer_shared): Remove.
2136 (redisplay_internal, redisplay_window): Adjust users.
2137 (buffer_shared_and_changed): Use per-buffer window counter.
2138
2139 2012-12-10 Eli Zaretskii <eliz@gnu.org>
2140
2141 Support for filesystem notifications on MS-Windows.
2142 * w32proc.c (sys_select): If drain_message_queue returns non-zero,
2143 and this is a TTY frame, signal the caller that keyboard input is
2144 available.
2145
2146 * w32xfns.c (drain_message_queue): Now returns an int: an
2147 indication whether any WM_EMACS_FILENOTIFY messages were found in
2148 the queue.
2149
2150 * w32inevt.c (handle_file_notifications): New function.
2151 (w32_console_read_socket): Call it to process file notifications.
2152
2153 * w32console.c (initialize_w32_display): Record the main thread ID
2154 in dwMainThreadId.
2155
2156 * deps.mk (inotify.o): New dependency list.
2157
2158 * Makefile.in (SOME_MACHINE_OBJECTS): Add w32notify.o.
2159
2160 * w32term.h (WM_EMACS_FILENOTIFY): New custom message.
2161 (WM_EMACS_END): Bump value by 1.
2162 (notification_buffer_in_use, file_notifications)
2163 (notifications_size, notifications_desc): Declare.
2164 (w32_get_watch_object, lispy_file_action, globals_of_w32notify):
2165 Add prototypes.
2166
2167 * w32term.c (lispy_file_action, queue_notifications): New functions.
2168 (syms_of_w32term) <Qadded, Qremoved, Qmodified, Qrenamed_from>
2169 <Qrenamed_to>: New symbols.
2170 (w32_read_socket): Handle the WM_EMACS_FILENOTIFY message.
2171
2172 * w32notify.c: New file, implements file event notifications for
2173 MS-Windows.
2174
2175 * w32fns.c (w32_wnd_proc): Handle the WM_EMACS_FILENOTIFY message
2176 by posting it to the w32_read_socket queue.
2177
2178 * termhooks.h (enum event_kind) [HAVE_NTGUI]: Support FILE_NOTIFY_EVENT.
2179
2180 * makefile.w32-in (OBJ2): Add $(BLD)/w32notify.$(O).
2181 (GLOBAL_SOURCES): Add w32notify.c
2182 ($(BLD)/w32notify.$(O)): New set of dependencies.
2183
2184 * lisp.h (syms_of_w32notify) [WINDOWSNT]: Add prototype.
2185
2186 * keyboard.c (kbd_buffer_get_event) [WINDOWSNT]:
2187 Handle FILE_NOTIFY_EVENT.
2188 (syms_of_keyboard) [HAVE_NTGUI] <Qfile_notify>: New symbol.
2189 (keys_of_keyboard) [WINDOWSNT]: Bind file-notify to
2190 w32notify-handle-event by default.
2191
2192 * emacs.c (main) [WINDOWSNT]: Call globals_of_w32notify and
2193 syms_of_w32notify.
2194
2195 2012-12-10 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2196
2197 Support for filesystem notifications on GNU/Linux via inotify.
2198 * termhooks.h (enum event_kind) [HAVE_INOTIFY]: Add FILE_NOTIFY_EVENT.
2199
2200 * lisp.h (syms_of_inotify) [HAVE_INOTIFY]: Add prototype.
2201
2202 * keyboard.c (Qfile_inotify) [HAVE_INOTIFY]: New variable.
2203 (syms_of_keyboard): DEFSYM it.
2204 (kbd_buffer_get_event) [HAVE_INOTIFY]: Generate FILE_NOTIFY_EVENT.
2205 (make_lispy_event): Support FILE_NOTIFY_EVENT by generating
2206 Qfile_inotify events.
2207 (keys_of_keyboard) [HAVE_INOTIFY]: Bind file-inotify events in
2208 special-event-map to inotify-handle-event.
2209
2210 * emacs.c (main) [HAVE_INOTIFY]: Call syms_of_inotify.
2211
2212 * Makefile.in (base_obj): Add inotify.o.
2213
2214 * inotify.c: New file.
2215
2216 2012-12-10 Jan Djärv <jan.h.d@swipnet.se>
2217
2218 * nsterm.m (fd_handler:): FD_ZERO fds (Bug#13103).
2219
2220 2012-12-10 Fabrice Popineau <fabrice.popineau@gmail.com>
2221
2222 * w32fns.c (cache_system_info): Cast sysinfo_cache.dwPageSize to
2223 DWORD_PTR, for compatibility with 64-bit builds.
2224
2225 * w32.c (_PROCESS_MEMORY_COUNTERS_EX):
2226 (GetProcessWorkingSetSize_Proc, get_process_working_set_size)
2227 (system_process_attributes): Use SIZE_T rather than DWORD, for
2228 compatibility with 64-bit builds.
2229
2230 2012-12-10 Christopher Schmidt <christopher@ch.ristopher.com>
2231
2232 * lread.c (Vload_source_file_function): Doc fix (Bug#11647).
2233
2234 2012-12-10 Eli Zaretskii <eliz@gnu.org>
2235
2236 * indent.c (Fvertical_motion): If a display string will be
2237 displayed on the left or the right margin, don't consider it as a
2238 factor in cursor positioning. (Bug#13108)
2239
2240 2012-12-10 Martin Rudalics <rudalics@gmx.at>
2241
2242 * editfns.c (Fcompare_buffer_substrings): Reword doc-string.
2243
2244 2012-12-10 Paul Eggert <eggert@cs.ucla.edu>
2245
2246 * fileio.c (Fsubstitute_in_file_name): Use ptrdiff_t, not int,
2247 for string length.
2248
2249 2012-12-08 Eli Zaretskii <eliz@gnu.org>
2250
2251 * w32.c (unsetenv): Return 0 if the input string is too long.
2252
2253 2012-12-08 Paul Eggert <eggert@cs.ucla.edu>
2254
2255 Use putenv+unsetenv instead of modifying environ directly (Bug#13070).
2256 * alloc.c (xputenv): New function.
2257 * dbusbind.c (Fdbus_init_bus):
2258 * emacs.c (main):
2259 * xterm.c (x_term_init):
2260 Use xputenv instead of setenv or putenv, to detect memory exhaustion.
2261 * editfns.c (initial_tz): Move static var decl up.
2262 (tzvalbuf_in_environ): New static var.
2263 (init_editfns): Initialize these two static vars.
2264 (Fencode_time): Don't assume arbitrary limit on EMACS_INT width.
2265 Save old TZ value on stack, if it's small.
2266 (Fencode_time, set_time_zone_rule): Don't modify 'environ' directly;
2267 instead, use xputenv+unsetenv to set and restore TZ.
2268 (environbuf): Remove static var. All uses removed.
2269 (Fset_time_zone_rule): Do not save TZ and environ;
2270 no longer needed here.
2271 (set_time_zone_rule_tz1, set_time_zone_rule_tz2) [LOCALTIME_CACHE]:
2272 Move to inside set_time_zone_rule; they don't need file scope any more.
2273 (set_time_zone_rule): Maintain the TZ=value string separately.
2274 (syms_of_editfns): Don't initialize initial_tz;
2275 init_editfns now does it.
2276 * emacs.c (dump_tz) [HAVE_TZSET]: Now const.
2277 * lisp.h (xputenv): New decl.
2278
2279 2012-12-08 Fabrice Popineau <fabrice.popineau@gmail.com>
2280
2281 * w32fns.c (emacs_abort): Don't do arithmetics on void pointers.
2282
2283 2012-12-08 Eli Zaretskii <eliz@gnu.org>
2284
2285 * w32.c (unsetenv, sys_putenv): New functions.
2286
2287 2012-12-08 Chong Yidong <cyd@gnu.org>
2288
2289 * editfns.c (Finsert_char): Make the error message more
2290 informative (Bug#12992).
2291
2292 2012-12-08 Paul Eggert <eggert@cs.ucla.edu>
2293
2294 Simplify get_lim_data.
2295 * vm-limit.c (get_lim_data): Combine RLIMIT_AS and RLIMIT_DATA methods.
2296 Remove USG and vlimit methods; no longer used these days.
2297 Add #error catchall just in case.
2298
2299 Assume POSIX 1003.1-1988 or later for signal.h (Bug#13026).
2300 Exceptions: do not assume SIGCONT, SIGSTOP, SIGTSTP, SIGTTIN,
2301 SIGTTOU, SIGUSR1, SIGUSR2, as Microsoft platforms lack these.
2302 * process.c [subprocesses]: Include <c-ctype.h>, <sig2str.h>.
2303 (deleted_pid_list, Fdelete_process, create_process)
2304 (record_child_status_change, handle_child_signal, deliver_child_signal)
2305 (init_process_emacs, syms_of_process):
2306 Assume SIGCHLD is defined.
2307 (parse_signal): Remove. All uses removed.
2308 (abbr_to_signal): New static function.
2309 (Fsignal_process): Use it to convert signal names to ints.
2310 * sysdep.c (sys_suspend) [!DOS_NT]: Use kill (0, ...) rather than
2311 kill (getpgrp (), ...).
2312 (emacs_sigaction_init): Assume SIGCHLD is defined.
2313 (init_signals): Assume SIGALRM, SIGCHLD, SIGHUP, SIGKILL,
2314 SIGPIPE, and SIGQUIT are defined. Do not worry about SIGCLD any more.
2315 * syssignal.h (EMACS_KILLPG): Remove.
2316 All uses replaced by 'kill' with a negative pid.
2317 (SIGCHLD): Remove definition, as we now assume SIGCHLD.
2318 * w32proc.c (sys_kill): Support negative pids compatibly with POSIX.
2319
2320 2012-12-07 Paul Eggert <eggert@cs.ucla.edu>
2321
2322 * sysdep.c (get_child_status): Abort on internal error (Bug#13086).
2323 This will cause a production Emacs to dump core instead of
2324 infinite-looping.
2325
2326 2012-12-07 Dmitry Antipov <dmantipov@yandex.ru>
2327
2328 * frame.c (make_frame): Do not set window's buffer to t.
2329 * window.c (Fsplit_window_internal): Likewise. Previously it was
2330 used to indicate that the window is being set up. Now we use
2331 set_window_buffer for all new windows, so the condition in ...
2332 (Fset_window_buffer): ... is always true and can be removed.
2333
2334 2012-12-07 Dmitry Antipov <dmantipov@yandex.ru>
2335
2336 Convenient macro to check whether the buffer is hidden.
2337 * buffer.h (BUFFER_HIDDEN_P): New macro.
2338 * frame.c (make_frame): Use it. Adjust comment.
2339 * buffer.c (candidate_buffer): New function.
2340 (Fother_buffer, other_buffer_safely): Use it.
2341
2342 2012-12-06 Eli Zaretskii <eliz@gnu.org>
2343
2344 * w32proc.c (waitpid): Avoid busy-waiting when called with WNOHANG
2345 if the child process is still running. Instead, exit the wait
2346 loop and return zero. (Bug#13086)
2347
2348 2012-12-06 Dmitry Antipov <dmantipov@yandex.ru>
2349
2350 * frame.h (x_char_width, x_char_height): Remove prototypes.
2351 * w32term.h (x_char_width, x_char_height): Likewise.
2352 * xfns.c (x_char_width, x_char_height): Remove.
2353 * w32fns.c (x_char_width, x_char_height): Likewise.
2354 * nsfns.c (x_char_width, x_char_height): Likewise.
2355 * frame.c (Fframe_char_width): Use FRAME_COLUMN_WIDTH for
2356 all window frames.
2357 (Fframe_char_height): Likewise with FRAME_LINE_HEIGHT.
2358 * keyboard.c (command_loop_1): Remove prototype.
2359 (command_loop_2, top_level_1): Add static to match prototype.
2360
2361 2012-12-06 Paul Eggert <eggert@cs.ucla.edu>
2362
2363 Fix a recently-introduced delete-process race condition.
2364 * callproc.c, process.h (record_kill_process):
2365 New function, containing part of the old call_process_kill.
2366 (call_process_kill): Use it.
2367 This does not change call_process_kill's behavior.
2368 * process.c (Fdelete_process): Use record_kill_process to fix a
2369 race condition that could cause Emacs to lose track of a child.
2370
2371 2012-12-06 Dmitry Antipov <dmantipov@yandex.ru>
2372
2373 Avoid code duplication between prev_frame and next_frame.
2374 * frame.c (candidate_frame): New function. Add comment.
2375 (prev_frame, next_frame): Use it. Adjust comment.
2376
2377 2012-12-06 Eli Zaretskii <eliz@gnu.org>
2378
2379 * callproc.c (Fcall_process_region) [!HAVE_MKSTEMP]: If mktemp
2380 fails, signal an error instead of continuing with an empty
2381 string. (Bug#13079)
2382 Encode expanded temp file pattern before passing it to mkstemp or
2383 mktemp.
2384
2385 * fileio.c (file_name_as_directory, directory_file_name) [DOS_NT]:
2386 Encode the file name before passing it to dostounix_filename, in
2387 case it will downcase it (under w32-downcase-file-names).
2388 (Bug#12933)
2389
2390 2012-12-05 Paul Eggert <eggert@cs.ucla.edu>
2391
2392 Minor call-process cleanups.
2393 * callproc.c (Fcall_process): Do record-unwind-protect on MSDOS
2394 at the same time as other platforms, to simplify analysis.
2395 No need for fd0_volatile since we have synch_process_fd.
2396 Avoid needless emacs_close; arg is always negative.
2397
2398 2012-12-04 Andreas Schwab <schwab@linux-m68k.org>
2399
2400 * callproc.c (Fcall_process): Fix specpdl nesting for asynchronous
2401 processes.
2402
2403 2012-12-04 Dmitry Antipov <dmantipov@yandex.ru>
2404
2405 * lisp.h (Mouse_HLInfo): Remove set-but-unused mouse_face_image_state
2406 member. Adjust users. Convert mouse_face_past_end, mouse_face_defer
2407 and mouse_face_hidden members to a bitfields.
2408 * frame.h (struct frame): Remove set-but-not-used space_width member.
2409 (FRAME_SPACE_WIDTH): Remove.
2410 * nsterm.m, w32term.c, xterm.c: Adjust users.
2411 * termchar.h (struct tty_display_info): Remove set-but-unused se_is_so
2412 member. Adjust users. Convert term_initted, delete_in_insert_mode,
2413 costs_set, insert_mode, standout_mode, cursor_hidden and flow_control
2414 members to a bitfields.
2415
2416 2012-12-03 Paul Eggert <eggert@cs.ucla.edu>
2417
2418 Don't let call-process be a zombie factory (Bug#12980).
2419 Fixing this bug required some cleanup of the signal-handling code.
2420 As a side effect, this change also fixes a longstanding rare race
2421 condition whereby Emacs could mistakenly kill unrelated processes,
2422 and it fixes a bug where a second C-g does not kill a recalcitrant
2423 synchronous process in GNU/Linux and similar platforms.
2424 The patch should also fix the last vestiges of Bug#9488,
2425 a bug which has mostly been fixed on the trunk by other changes.
2426 * callproc.c, process.h (synch_process_alive, synch_process_death)
2427 (synch_process_termsig, sync_process_retcode):
2428 Remove. All uses removed, to simplify analysis and so that
2429 less consing is done inside critical sections.
2430 * callproc.c (call_process_exited): Remove. All uses replaced
2431 with !synch_process_pid.
2432 * callproc.c (synch_process_pid, synch_process_fd): New static vars.
2433 These take the role of what used to be in unwind-protect arg.
2434 All uses changed.
2435 (block_child_signal, unblock_child_signal):
2436 New functions, to avoid races that could kill innocent-victim processes.
2437 (call_process_kill, call_process_cleanup, Fcall_process): Use them.
2438 (call_process_kill): Record killed processes as deleted, so that
2439 zombies do not clutter up the system. Do this inside a critical
2440 section, to avoid a race that would allow the clutter.
2441 (call_process_cleanup): Fix code so that the second C-g works again
2442 on common platforms such as GNU/Linux.
2443 (Fcall_process): Create the child process in a critical section,
2444 to fix a race condition. If creating an asynchronous process,
2445 record it as deleted so that zombies do not clutter up the system.
2446 Do unwind-protect for WINDOWSNT too, as that's simpler in the
2447 light of these changes. Omit unnecessary call to emacs_close
2448 before failure, as the unwind-protect code does that.
2449 * callproc.c (call_process_cleanup):
2450 * w32proc.c (waitpid): Simplify now that synch_process_alive is gone.
2451 * process.c (record_deleted_pid): New function, containing
2452 code refactored out of Fdelete_process.
2453 (Fdelete_process): Use it.
2454 (process_status_retrieved): Remove. All callers changed to use
2455 child_status_change.
2456 (record_child_status_change): Remove, folding its contents into ...
2457 (handle_child_signal): ... this signal handler. Now, this
2458 function is purely a handler for SIGCHLD, and is not called after
2459 a synchronous waitpid returns; the synchronous code is moved to
2460 wait_for_termination. There is no need to worry about reaping
2461 more than one child now.
2462 * sysdep.c (get_child_status, child_status_changed): New functions.
2463 (wait_for_termination): Now takes int * status and bool
2464 interruptible arguments, too. Do not record child status change;
2465 that's now the caller's responsibility. All callers changed.
2466 Reimplement in terms of get_child_status.
2467 (wait_for_termination_1, interruptible_wait_for_termination):
2468 Remove. All callers changed to use wait_for_termination.
2469 * syswait.h: Include <stdbool.h>, for bool.
2470 (record_child_status_change, interruptible_wait_for_termination):
2471 Remove decls.
2472 (record_deleted_pid, child_status_changed): New decls.
2473 (wait_for_termination): Adjust to API changes noted above.
2474
2475 * bytecode.c, lisp.h (Qbytecode): Remove.
2476 No longer needed after 2012-11-20 interactive-p changes.
2477
2478 2012-12-03 Eli Zaretskii <eliz@gnu.org>
2479
2480 * xdisp.c (redisplay_window): If the cursor is visible, but inside
2481 the scroll margin, move point outside the margin. (Bug#13055)
2482
2483 2012-12-03 Jan Djärv <jan.h.d@swipnet.se>
2484
2485 * gtkutil.c (my_log_handler): New function.
2486 (xg_set_geometry): Set log handler to my_log_handler (Bug#11177).
2487
2488 2012-12-03 Dmitry Antipov <dmantipov@yandex.ru>
2489
2490 * lisp.h (modify_region): Rename to...
2491 (modify_region_1): ...new prototype.
2492 * textprop.c (modify_region): Now static. Adjust users.
2493 * insdel.c (modify_region): Rename to...
2494 (modify_region_1): ...new function to work with current buffer.
2495 Adjust comment and users. Use true and false for booleans.
2496
2497 2012-12-03 Dmitry Antipov <dmantipov@yandex.ru>
2498
2499 * alloc.c (free_save_value): New function.
2500 (safe_alloca_unwind): Use it.
2501 * lisp.h (free_save_value): New prototype.
2502 * editfns.c (save_excursion_save): Use Lisp_Misc_Save_Value.
2503 Add comment.
2504 (save_excursion_restore): Adjust to match saved data structure.
2505 Use free_save_value to offload some work from GC. Drop obsolete
2506 #if 0 code.
2507
2508 2012-12-03 Chong Yidong <cyd@gnu.org>
2509
2510 * fileio.c (Vauto_save_list_file_name): Doc fix.
2511
2512 2012-12-03 Fabrice Popineau <fabrice.popineau@gmail.com>
2513
2514 * w32fns.c: Remove prototype of atof.
2515 (syspage_mask): Make it DWORD_PTR, for compatibility with 64-bit
2516 builds.
2517 (file_dialog_callback): Make it UINT_PTR.
2518
2519 * w32common.h (syspage_mask): Declare DWORD_PTR, for compatibility
2520 with 64-bit builds.
2521
2522 * w32.c (FILE_DEVICE_FILE_SYSTEM, METHOD_BUFFERED)
2523 (FILE_ANY_ACCESS, CTL_CODE) [_MSC_VER]: Define only if not already
2524 defined.
2525
2526 2012-12-03 Glenn Morris <rgm@gnu.org>
2527
2528 * data.c (Fboundp, Fsymbol_value): Doc fix re lexical-binding.
2529
2530 2012-12-02 Paul Eggert <eggert@cs.ucla.edu>
2531
2532 Fix xpalloc confusion after memory is exhausted.
2533 * alloc.c (xpalloc): Comment fix.
2534 * charset.c (Fdefine_charset_internal): If xpalloc exhausts memory
2535 and signals an error, do not clear charset_table_size, as
2536 charset_table is still valid.
2537 * doprnt.c (evxprintf): Clear *BUF after freeing it.
2538
2539 Use execve to avoid need to munge environ (Bug#13054).
2540 * callproc.c (Fcall_process):
2541 * process.c (create_process):
2542 Don't save and restore environ; no longer needed.
2543 * callproc.c (child_setup):
2544 Use execve, not execvp, to preserve environ.
2545
2546 2012-12-01 Paul Eggert <eggert@cs.ucla.edu>
2547
2548 * xterm.c (x_draw_image_relief): Remove unused locals (Bug#10500).
2549
2550 2012-12-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2551
2552 * xterm.c (x_draw_relief_rect, x_draw_image_relief): Fix relief
2553 display for sliced images (Bug#10500).
2554
2555 * w32term.c (w32_draw_relief_rect, x_draw_image_relief): Likewise.
2556
2557 2012-11-30 Juanma Barranquero <lekktu@gmail.com>
2558
2559 * doc.c (Fdocumentation): Re-add handling of function-documentation,
2560 accidentally removed in 2012-11-09T04:10:16Z!monnier@iro.umontreal.ca (bug#13034).
2561
2562 2012-11-29 Dmitry Antipov <dmantipov@yandex.ru>
2563
2564 * xdisp.c (window_outdated): Remove eassert since it hits
2565 some suspicious corner cases (see Bug#13007 and Bug#13012).
2566 (mode_line_update_needed): New function.
2567 (redisplay_internal, redisplay_window): Use it.
2568 (ensure_selected_frame): New function.
2569 (redisplay_internal, unwind_redisplay): Use it.
2570 (redisplay_internal): Move comment about buffer_shared...
2571 (buffer_shared_and_changed): ...near to its real use.
2572
2573 2012-11-29 Paul Eggert <eggert@cs.ucla.edu>
2574
2575 * callproc.c (Fcall_process): Don't misreport vfork failure.
2576
2577 2012-11-28 Paul Eggert <eggert@cs.ucla.edu>
2578
2579 * callproc.c (Fcall_process): Fix vfork portability problems.
2580 Do not assume that fd[0], count, filefd, and save_environ survive
2581 vfork. Fix bug whereby wrong errno value could be reported for
2582 pipe failure. Some minor cleanups, too, as follows. Move buf and
2583 bufsize to the context where they're needed. Change new_argv to
2584 be of type char **, as this is more convenient and avoids casts.
2585 (CALLPROC_BUFFER_SIZE_MIN, CALLPROC_BUFFER_SIZE_MAX):
2586 Now local constants, not macros.
2587
2588 2012-11-18 Kenichi Handa <handa@gnu.org>
2589
2590 * font.c (font_unparse_xlfd): Fix previous change. Keep "const"
2591 for the variable "f".
2592
2593 2012-11-13 Kenichi Handa <handa@gnu.org>
2594
2595 * font.c (font_unparse_xlfd): Exclude special characters from the
2596 generating XLFD name.
2597
2598 2012-11-27 Paul Eggert <eggert@cs.ucla.edu>
2599
2600 Assume POSIX 1003.1-1988 or later for grp.h, pwd.h.
2601 * dired.c (stat_uname, stat_gname):
2602 * fileio.c (Fexpand_file_name): Remove no-longer-needed casts.
2603
2604 Assume POSIX 1003.1-1988 or later for errno.h (Bug#12968).
2605 * dired.c (directory_files_internal, file_name_completion):
2606 Assume EAGAIN and EINTR are defined.
2607
2608 * fileio.c (Fcopy_file): Assume EISDIR is defined.
2609 * gmalloc.c (ENOMEM, EINVAL): Assume they're defined.
2610 * gnutls.c (emacs_gnutls_write): Assume EAGAIN is defined.
2611 * lread.c (readbyte_from_file): Assume EINTR is defined.
2612 * process.c (wait_reading_process_output, send_process) [subprocesses]:
2613 Assume EIO and EAGAIN are defined.
2614 * unexcoff.c (write_segment): Assume EFAULT is defined.
2615
2616 2012-11-27 Eli Zaretskii <eliz@gnu.org>
2617
2618 * fontset.c (Finternal_char_font): Return nil on non-GUI frames.
2619 (Bug#11964)
2620
2621 * xdisp.c (draw_glyphs): Don't draw in mouse face if mouse
2622 highlighting on the frame was cleared. Prevents assertion
2623 violations when repeatedly clicking on the "Top" link of the
2624 "bread-crumbs" in Info buffers.
2625
2626 2012-11-25 Paul Eggert <eggert@cs.ucla.edu>
2627
2628 * sysdep.c (sys_subshell): Don't assume pid_t fits in int.
2629
2630 2012-11-24 Ken Brown <kbrown@cornell.edu>
2631
2632 * keyboard.c (HAVE_MOUSE):
2633 * frame.c (HAVE_MOUSE): Remove, and rewrite code as if HAVE_MOUSE
2634 were always defined.
2635
2636 2012-11-24 Eli Zaretskii <eliz@gnu.org>
2637
2638 * xdisp.c (set_cursor_from_row): Skip step 2 only if point is not
2639 between bpos_covered and bpos_max. This fixes cursor display when
2640 several display strings follow each other.
2641
2642 * .gdbinit (pgx): If the glyph's object is a string, display the
2643 pointer to string data, rather than the value of the string object
2644 itself (which barfs under CHECK_LISP_OBJECT_TYPE).
2645
2646 * indent.c (Fvertical_motion): If the starting position is covered
2647 by a display string, return to one position before that, to avoid
2648 overshooting it inside move_it_to. (Bug#12930)
2649
2650 2012-11-23 Dmitry Antipov <dmantipov@yandex.ru>
2651
2652 * frame.h (struct frame): Remove display_preempted member
2653 since all users are dead long ago.
2654 * nsterm.h (struct x_output): Use the only dummy member.
2655 * w32menu.c (pending_menu_activation): Remove since not
2656 really used.
2657 (set_frame_menubar): Adjust user.
2658 * w32term.h (struct x_output): Drop outdated #if 0 code.
2659 (struct w32_output): Use bitfields for explicit_parent,
2660 asked_for_visible and menubar_active members.
2661 Drop unused pending_menu_activation member.
2662 * xterm.h (struct x_output): Drop outdated #if 0 code.
2663 Use bitfields for explicit_parent, asked_for_visible,
2664 has_been_visible and net_wm_state_hidden_seen members.
2665
2666 2012-11-23 Eli Zaretskii <eliz@gnu.org>
2667
2668 * makefile.w32-in (globals.h, gl-stamp): Use $(SWITCHCHAR) instead
2669 of a literal "/". (Bug#12955)
2670 (gl-stamp): Invoke fc.exe directly, not through cmd.
2671
2672 2012-11-23 Paul Eggert <eggert@cs.ucla.edu>
2673
2674 Assume POSIX 1003.1-1988 or later for dirent.h (Bug#12958).
2675 * dired.c: Assume HAVE_DIRENT_H.
2676 (NAMLEN): Remove, replacing with ...
2677 (dirent_namelen): New function. All uses changed. Use the GNU macro
2678 _D_EXACT_NAMELEN if available, as it's faster than strlen.
2679 (DIRENTRY): Remove, replacing all uses with 'struct dirent'.
2680 (DIRENTRY_NONEMPTY): Remove. All callers now assume it's nonzero.
2681 * makefile.w32-in (DIR_H): Remove. All uses replaced with
2682 $(NT_INC)/dirent.h.
2683 ($(BLD)/w32.$(O)): Do not depend on $(SRC)/ndir.h.
2684 * ndir.h: Rename to ../nt/inc/dirent.h.
2685 * sysdep.h (closedir) [!HAVE_CLOSEDIR]: Remove.
2686 Do not include <dirent.h>; no longer needed.
2687 * w32.c: Include <dirent.h> rather than "ndir.h".
2688
2689 2012-11-23 Chong Yidong <cyd@gnu.org>
2690
2691 * xftfont.c (xftfont_open): Remove duplicate assignment.
2692
2693 2012-11-22 Dmitry Antipov <dmantipov@yandex.ru>
2694
2695 * alloc.c (Fgarbage_collect): Unblock input after clearing
2696 gc_in_progress to avoid note_mouse_highlight glitch with GC.
2697 * frame.h (FRAME_MOUSE_UPDATE): New macro.
2698 * msdos.c (IT_frame_up_to_date): Use it here...
2699 * w32term.c (w32_frame_up_to_date): ...here...
2700 * xterm.c (XTframe_up_to_date): ...and here...
2701 * nsterm.m (ns_frame_up_to_date): ...but not here.
2702 * lisp.h (Mouse_HLInfo): Remove mouse_face_deferred_gc member.
2703 Adjust users.
2704 * xdisp.c (message2_nolog, message3_nolog, note_mouse_highlight):
2705 Do not check whether GC is in progress.
2706
2707 2012-11-22 Dmitry Antipov <dmantipov@yandex.ru>
2708
2709 * xdisp.c (window_buffer_changed): New function.
2710 (update_menu_bar, update_tool_bar): Use it to
2711 simplify large 'if' statements.
2712 (redisplay_internal): Generalize commonly used
2713 'tail' and 'frame' local variables.
2714
2715 2012-11-22 Eli Zaretskii <eliz@gnu.org>
2716
2717 * w32.c (getcwd): Fix the 2nd argument type, to prevent conflicts
2718 with Windows system header.
2719
2720 2012-11-21 Paul Eggert <eggert@cs.ucla.edu>
2721
2722 Assume POSIX 1003.1-1988 or later for unistd.h (Bug#12945).
2723 * alloc.c: Assume unistd.h exists.
2724 * fileio.c (Fexpand_file_name) [DOS_NT]: Use getcwd, not getwd.
2725 * sysdep.c (get_current_dir_name): Assume getcwd exists.
2726 (getwd) [USG]: Remove; no longer needed.
2727 (sys_subshell) [DOS_NT]: Use getcwd, not getwd.
2728 * w32.c (getcwd): Rename from getwd, and switch to getcwd's API.
2729 * w32.h (getcwd): Remove decl.
2730
2731 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
2732
2733 * xdisp.c (fast_set_selected_frame): Rename from update_tool_bar_unwind.
2734 Make it set selected_window as well.
2735 (update_tool_bar): Use it.
2736
2737 2012-11-21 Ken Brown <kbrown@cornell.edu>
2738
2739 * emacs.c (main): Set the G_SLICE environment variable for all
2740 Cygwin builds, not just GTK builds. See
2741 https://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00368.html.
2742
2743 2012-11-21 Eli Zaretskii <eliz@gnu.org>
2744
2745 * w32.c (FILE_DEVICE_FILE_SYSTEM, METHOD_BUFFERED)
2746 (FILE_ANY_ACCESS, CTL_CODE, FSCTL_GET_REPARSE_POINT) [_MSC_VER]:
2747 Define for the MSVC compiler.
2748
2749 * w32term.h (EnumSystemLocalesW) [_MSC_VER]: Add a missing semi-colon.
2750
2751 * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
2752 (Fexpand_file_name) [DOS_NT]: Pass encoded file name to
2753 dostounix_filename. Prevents crashes down the road, because
2754 dostounix_filename assumes it gets a unibyte string.
2755 Reported by Michel de Ruiter <michel@sentient.nl>, see
2756 http://lists.gnu.org/archive/html/help-emacs-windows/2012-11/msg00017.html
2757
2758 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
2759
2760 Conflate Qnil and Qunbound for `symbol-function'.
2761 * alloc.c (Fmake_symbol): Initialize `function' to Qnil.
2762 * lread.c (init_obarray): Set `function' fields to Qnil.
2763 * eval.c (Fcommandp): Ignore Qunbound.
2764 (Fautoload, eval_sub, Fapply, Ffuncall, Fmacroexpand):
2765 * data.c (Ffset, Ffboundp, indirect_function, Findirect_function):
2766 Test NILP rather than Qunbound.
2767 (Ffmakunbound): Set to Qnil.
2768 (Fsymbol_function): Never signal an error.
2769 (Finteractive_form): Ignore Qunbound.
2770
2771 2012-11-20 Paul Eggert <eggert@cs.ucla.edu>
2772
2773 * eval.c (interactive_p): Remove no-longer-used decl.
2774
2775 2012-11-20 Dmitry Antipov <dmantipov@yandex.ru>
2776
2777 * xdisp.c (buffer_shared): Adjust comment.
2778 (buffer_shared_and_changed): New function.
2779 (prepare_menu_bars, redisplay_internal): Use it to
2780 decide whether all windows or frames should be updated.
2781 (window_outdated): New function.
2782 (text_outside_line_unchanged_p, redisplay_window): Use it.
2783 (redisplay_internal): Likewise. Fix indentation.
2784
2785 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
2786
2787 * eval.c (Finteractive_p, Fcalled_interactively_p, interactive_p): Remove.
2788 (syms_of_eval): Remove corresponding defsubr.
2789 * bytecode.c (exec_byte_code): `interactive-p' is now a Lisp function.
2790
2791 2012-11-19 Daniel Colascione <dancol@dancol.org>
2792
2793 * w32fns.c (Fx_file_dialog):
2794 (Fx_file_dialog): Accomodate rename of cygwin_convert_path* to
2795 cygwin_convert_file_name*.
2796
2797 * cygw32.c (Fcygwin_convert_path_to_windows, syms_of_cygw32):
2798 Rename cygwin_convert_path* to cygwin_convert_file_name*.
2799
2800 2012-11-18 Paul Eggert <eggert@cs.ucla.edu>
2801
2802 * nsterm.m (ns_select): Send SIGIO only to self, not to process group.
2803
2804 2012-11-18 Eli Zaretskii <eliz@gnu.org>
2805
2806 * w32select.c: Include w32common.h before w32term.h, so that
2807 windows.h gets included before w32term.h uses some of its
2808 features, see below.
2809
2810 * w32term.h (LOCALE_ENUMPROCA, LOCALE_ENUMPROCW) [_MSC_VER]:
2811 New typedefs.
2812 (EnumSystemLocalesA, EnumSystemLocalesW) [_MSC_VER]:
2813 New prototypes.
2814 (EnumSystemLocales) [_MSC_VER]: Define if undefined. (Bug#12878)
2815
2816 2012-11-18 Jan Djärv <jan.h.d@swipnet.se>
2817
2818 * nsterm.m (hold_event): Set send_appdefined to YES (Bug#12834).
2819 (ns_select): Return at once if events are held (Bug#12834).
2820
2821 2012-11-18 enami tsugutomo <tsugutomo.enami@jp.sony.com>
2822
2823 * unexelf.c (ELFSIZE) [__NetBSD__ && _LP64]: Set to 64.
2824 Needed following 2012-10-20 change. (Bug#12902)
2825
2826 2012-11-18 Juanma Barranquero <lekktu@gmail.com>
2827
2828 * w32proc.c (waitpid): Remove unused label get_result.
2829
2830 2012-11-17 Juanma Barranquero <lekktu@gmail.com>
2831
2832 * makefile.w32-in (SYSWAIT_H): New macro.
2833 ($(BLD)/callproc.$(O), $(BLD)/w32proc.$(O), $(BLD)/process.$(O))
2834 ($(BLD)/sysdep.$(O)): Update dependencies.
2835
2836 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
2837
2838 Assume POSIX 1003.1-1988 or later for fcntl.h (Bug#12881).
2839 * callproc.c (relocate_fd): Assume F_DUPFD.
2840 * emacs.c, term.c (O_RDWR): Remove.
2841 * keyboard.c (tty_read_avail_input): Use O_NONBLOCK rather than
2842 O_NDELAY, since O_NONBLOCK is the standard name for this flag.
2843 * nsterm.m: Assume <fcntl.h> exists.
2844 * process.c (NON_BLOCKING_CONNECT, allocate_pty, create_process)
2845 (create_pty, Fmake_network_process, server_accept_connection)
2846 (wait_reading_process_output, init_process_emacs):
2847 Assume O_NONBLOCK.
2848 (wait_reading_process_output): Put in a special case for WINDOWSNT
2849 to mimick the older behavior where it had O_NDELAY but not O_NONBLOCK.
2850 It's not clear this is needed, but it's a more-conservative change.
2851 (create_process): Assume FD_CLOEXEC.
2852 (create_process, create_pty): Assume O_NOCTTY.
2853 * sysdep.c (init_sys_modes, reset_sys_modes): Assume F_SETFL.
2854 (reset_sys_modes): Use O_NONBLOCK rather than O_NDELAY.
2855 Omit if not DOS_NT, since F_GETFL is not defined there.
2856 (serial_open): Assume O_NONBLOCK and O_NOCTTY.
2857 * term.c: Include <fcntl.h>, for flags like O_NOCTTY.
2858 (O_NOCTTY): Remove.
2859 (init_tty): Assume O_IGNORE_CTTY is defined to 0 on platforms that
2860 lack it, since gnulib guarantees this.
2861 * w32.c (fcntl): Test for O_NONBLOCK rather than O_NDELAY.
2862
2863 2012-11-17 Eli Zaretskii <eliz@gnu.org>
2864
2865 * w32.c (faccessat): Pretend that directories have the execute bit
2866 set. Emacs expects that, e.g., in files.el:cd-absolute.
2867
2868 * w32proc.c (create_child): Don't clip the PID of the child
2869 process to fit into an Emacs integer, as this is no longer a
2870 restriction.
2871 (waitpid): Rename from sys_wait. Emulate a Posix 'waitpid' by
2872 reaping only the process specified by PID argument, if that is
2873 positive. Use PID instead of dead_child to know which process to
2874 reap. Wait for the child to die only if WNOHANG is not in
2875 OPTIONS.
2876 (sys_select): Don't set dead_child.
2877
2878 * sysdep.c (wait_for_termination_1): Remove the WINDOWSNT portion,
2879 as it is no longer needed.
2880
2881 * process.c (waitpid, WUNTRACED) [!WNOHANG]: Remove definitions,
2882 no longer needed.
2883 (record_child_status_change): Remove the setting of
2884 record_at_most_one_child for the !WNOHANG case.
2885
2886 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
2887
2888 Fix problems in ns port found by static checking.
2889 * nsterm.m: Include <pthread.h>, for pthread_mutex_lock etc.
2890 (hold_event, setPosition:portion:whole:): Send SIGIO only to self,
2891 not to process group.
2892 (ns_select): Use emacs_write, not write, as that's more robust
2893 in the presence of signals.
2894 (fd_handler:): Check for read errors.
2895
2896 2012-11-16 Glenn Morris <rgm@gnu.org>
2897
2898 * editfns.c (Fmessage): Mention message-log-max. (Bug#12849)
2899
2900 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
2901
2902 * eval.c (Finteractive_p): Revert lexbind-merge mishap.
2903
2904 2012-11-16 Eli Zaretskii <eliz@gnu.org>
2905
2906 * w32proc.c (timer_loop): Make sure SuspendThread and ResumeThread
2907 use the same value of thread handle.
2908 (start_timer_thread): If the timer thread exited (due to error),
2909 clean up by closing the two handles it used. Duplicate the caller
2910 thread's handle here, so it gets duplicated only once, when
2911 launching the timer thread. Set priority of the timer thread, not
2912 the caller thread.
2913 (getitimer): Don't duplicate the caller thread's handle here.
2914 (Bug#12832)
2915
2916 2012-11-16 Jan Djärv <jan.h.d@swipnet.se>
2917
2918 * nsterm.m (hold_event): Send SIGIO to make sure ns_read_socket is
2919 called (Bug#12834).
2920
2921 2012-11-16 Paul Eggert <eggert@cs.ucla.edu>
2922
2923 Remove no-longer-used pty_max_bytes variable.
2924 * process.c (pty_max_bytes): Remove; unused.
2925 (send_process): Do not set it.
2926
2927 2012-11-15 Juanma Barranquero <lekktu@gmail.com>
2928
2929 * makefile.w32-in ($(BLD)/dispnew.$(O), $(BLD)/emacs.$(O)):
2930 Update dependencies.
2931
2932 2012-11-15 Paul Eggert <eggert@cs.ucla.edu>
2933
2934 * eval.c (mark_backtrace) [BYTE_MARK_STACK]: Remove stray '*'.
2935 This follows up on the 2012-09-29 patch that removed indirection
2936 for the 'function' field. Reported by Sergey Vinokurov in
2937 <http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00263.html>.
2938
2939 2012-11-14 Eli Zaretskii <eliz@gnu.org>
2940
2941 * w32.c (faccessat): Rename from sys_faccessat. (No need to use a
2942 different name, as the MS runtime does not have such a function,
2943 and probably never will.) All callers changed. Ignore DIRFD
2944 value if PATH is an absolute file name, to match Posix spec
2945 better. If AT_SYMLINK_NOFOLLOW is set in FLAGS, don't resolve
2946 symlinks.
2947
2948 2012-11-14 Dmitry Antipov <dmantipov@yandex.ru>
2949
2950 * xdisp.c (echo_area_display, redisplay_internal):
2951 Omit redundant check whether frame_garbaged is set.
2952
2953 2012-11-14 Paul Eggert <eggert@cs.ucla.edu>
2954
2955 Use faccessat, not access, when checking file permissions (Bug#12632).
2956 This fixes a bug that has been present in Emacs since its creation.
2957 It was reported by Chris Torek in 1983 even before GNU Emacs existed,
2958 which must set some sort of record. (Torek's bug report was against
2959 a predecessor of GNU Emacs, but GNU Emacs happened to have the
2960 same common flaw.) See Torek's Usenet posting
2961 "setuid/setgid programs & Emacs" Article-I.D.: sri-arpa.858
2962 Posted: Fri Apr 8 14:18:56 1983.
2963 * Makefile.in (LIB_EACCESS): New macro.
2964 (LIBES): Use it.
2965 * callproc.c (init_callproc):
2966 * charset.c (init_charset):
2967 * fileio.c (check_existing, check_executable, check_writable)
2968 (Ffile_readable_p):
2969 * lread.c (openp, load_path_check):
2970 * process.c (allocate_pty):
2971 * xrdb.c (file_p):
2972 Use effective UID when checking permissions, not real UID.
2973 * callproc.c (init_callproc):
2974 * charset.c (init_charset):
2975 * lread.c (load_path_check, init_lread):
2976 Test whether directories are accessible, not merely whether they exist.
2977 * conf_post.h (GNULIB_SUPPORT_ONLY_AT_FDCWD): New macro.
2978 * fileio.c (check_existing, check_executable, check_writable)
2979 (Ffile_readable_p):
2980 Use symbolic names instead of integers for the flags, as they're
2981 portable now.
2982 (check_writable): New arg AMODE. All uses changed.
2983 Set errno on failure.
2984 (Ffile_readable_p): Use faccessat, not stat + open + close.
2985 (Ffile_writable_p): No need to call check_existing + check_writable.
2986 Just call check_writable and then look at errno. This saves a syscall.
2987 dir should never be nil; replace an unnecessary runtime check
2988 with an eassert. When checking the parent directory of a nonexistent
2989 file, check that the directory is searchable as well as writable, as
2990 we can't create files in unsearchable directories.
2991 (file_directory_p): New function, which uses 'stat' on most platforms
2992 but faccessat with D_OK (for efficiency) if WINDOWSNT.
2993 (Ffile_directory_p, Fset_file_times): Use it.
2994 (file_accessible_directory_p): New function, which uses a single
2995 syscall for efficiency.
2996 (Ffile_accessible_directory_p): Use it.
2997 * xrdb.c (file_p): Use file_directory_p.
2998 * lisp.h (file_directory_p, file_accessible_directory_p): New decls.
2999 * lread.c (openp): When opening a file, use fstat rather than
3000 stat, as that avoids a permissions race. When not opening a file,
3001 use file_directory_p rather than stat.
3002 (dir_warning): First arg is now a usage string, not a format.
3003 Use errno. All uses changed.
3004 * nsterm.m (ns_term_init): Remove unnecessary call to file-readable
3005 that merely introduced a race.
3006 * process.c, sysdep.c, term.c: All uses of '#ifdef O_NONBLOCK'
3007 changed to '#if O_NONBLOCK', to accommodate gnulib O_* style,
3008 and similarly for the other O_* flags.
3009 * w32.c (sys_faccessat): Rename from sys_access and switch to
3010 faccessat's API. All uses changed.
3011 * xrdb.c: Do not include <sys/stat.h>; no longer needed.
3012 (magic_db): Rename from magic_file_p.
3013 (magic_db, search_magic_path): Return an XrmDatabase rather than a
3014 char *, so that we don't have to test for file existence
3015 separately from opening the file for reading. This removes a race
3016 fixes a permission-checking problem, and simplifies the code.
3017 All uses changed.
3018 (file_p): Remove; no longer needed.
3019
3020 2012-11-13 Dmitry Antipov <dmantipov@yandex.ru>
3021
3022 Omit glyphs initialization at startup.
3023 * dispnew.c (glyphs_initialized_initially_p): Remove.
3024 (adjust_frame_glyphs_initially): Likewise. Adjust users.
3025 (Fredraw_frame): Move actual code from here...
3026 (redraw_frame): ...to here. Add eassert. Adjust comment.
3027 (Fredraw_display): Use redraw_frame.
3028 * xdisp.c (clear_garbaged_frames): Likewise.
3029
3030 2012-11-13 Eli Zaretskii <eliz@gnu.org>
3031
3032 * xdisp.c (decode_mode_spec): Limit the value of WIDTH argument
3033 passed to pint2str and pint2hrstr to be at most the size of the
3034 frame's decode_mode_spec_buffer. This avoids crashes with very
3035 large values of FIELD_WIDTH argument to decode_mode_spec.
3036 (Bug#12867)
3037
3038 2012-11-13 Paul Eggert <eggert@cs.ucla.edu>
3039
3040 Fix a race with verify-visited-file-modtime (Bug#12863).
3041 Since at least 1991 Emacs has ignored an mtime difference of no
3042 more than one second, but my guess is that this was to work around
3043 file system bugs that were fixed long ago. Since the race is
3044 causing problems now, let's remove that code.
3045 * fileio.c (Fverify_visited_file_modtime): Do not accept a file
3046 whose time stamp is off by no more than a second. Insist that the
3047 file time stamps match exactly.
3048
3049 2012-11-12 Dmitry Antipov <dmantipov@yandex.ru>
3050
3051 * frame.h (struct frame): Convert external_tool_bar member to
3052 1-bit unsigned bitfield.
3053 * termhooks.h (struct terminal): Remove mouse_moved member since
3054 all users are long dead. Adjust comment on mouse_position_hook.
3055
3056 2012-11-12 Dmitry Antipov <dmantipov@yandex.ru>
3057
3058 Simplify by using FOR_EACH_FRAME here and there.
3059 * frame.c (next_frame, prev_frame, other_visible_frames)
3060 (delete_frame, visible-frame-list): Use FOR_EACH_FRAME.
3061 * w32term.c (x_window_to_scroll_bar): Likewise.
3062 * window.c (window_list): Likewise.
3063 * xdisp.c (x_consider_frame_title): Likewise.
3064 * xfaces.c ( Fdisplay_supports_face_attributes_p): Likewise.
3065 * xfns.c (x_window_to_frame, x_any_window_to_frame)
3066 (x_menubar_window_to_frame, x_top_window_to_frame): Likewise.
3067 * xmenu.c (menubar_id_to_frame): Likewise.
3068 * xselect.c (frame_for_x_selection): Likewise.
3069 * xterm.c (x_frame_of_widget, x_window_to_scroll_bar)
3070 (x_window_to_menu_bar): Likewise.
3071 * w32fns.c (x_window_to_frame): Likewise. Adjust comment.
3072
3073 2012-11-12 Paul Eggert <eggert@cs.ucla.edu>
3074
3075 * data.c (Qdefalias_fset_function): Now static.
3076
3077 Another tweak to vectorlike_header change.
3078 * alloc.c (struct Lisp_Vectorlike_Free, NEXT_IN_FREE_LIST):
3079 Remove, and replace all uses with ...
3080 (next_in_free_list, set_next_in_free_list):
3081 New functions, which respect C's aliasing rules better.
3082
3083 2012-11-11 Paul Eggert <eggert@cs.ucla.edu>
3084
3085 * window.c (list4i): Rename from 'quad'. All uses changed.
3086 Needed because <sys/types.h> defines 'quad' on Solaris 10.
3087
3088 2012-11-11 Juanma Barranquero <lekktu@gmail.com>
3089
3090 * xdisp.c (start_hourglass) [HAVE_NTGUI]: Add block to silence
3091 warning about mixing declarations and code in ISO C90.
3092
3093 2012-11-10 Martin Rudalics <rudalics@gmx.at>
3094
3095 * window.c (Fsplit_window_internal): Set combination limit of
3096 new parent window to t iff Vwindow_combination_limit is t;
3097 fixing a regression introduced with the change from 2012-09-22.
3098 (Fset_window_combination_limit): Fix doc-string.
3099
3100 2012-11-10 Eli Zaretskii <eliz@gnu.org>
3101
3102 * xdisp.c (try_scrolling): Fix correction of aggressive-scroll
3103 amount when the scroll margins are too large. When scrolling
3104 backwards in the buffer, give up if cannot reach point or the
3105 scroll margin within a reasonable number of screen lines.
3106 Fixes point position in window under scroll-up/down-aggressively when
3107 point is positioned many lines beyond the window top/bottom.
3108 (Bug#12811)
3109
3110 * ralloc.c (relinquish): If real_morecore fails to return memory
3111 to the system, don't crash; instead, leave the last heap
3112 unchanged and return. (Bug#12774)
3113
3114 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
3115
3116 * lisp.h (AUTOLOADP): New macro.
3117 * eval.c (Fautoload): Don't attach to loadhist, call Fdefalias instead.
3118 * data.c (Ffset): Remove special ad-advice-info handling.
3119 (Fdefalias): Handle autoload definitions and new Qdefalias_fset_function.
3120 (Fsubr_arity): CSE.
3121 (Finteractive_form): Simplify.
3122 (Fquo): Don't insist on having at least 2 arguments.
3123 (Qdefalias_fset_function): New var.
3124
3125 2012-11-09 Jan Djärv <jan.h.d@swipnet.se>
3126
3127 * image.c (xpm_make_color_table_h): Change to hashtest_equal.
3128
3129 * nsfont.m (Qcondensed, Qexpanded): New variables.
3130 (ns_descriptor_to_entity): Restore Qcondensed, Qexpanded setting.
3131 (syms_of_nsfont): Defsym Qcondensed, Qexpanded.
3132
3133 2012-11-09 Dmitry Antipov <dmantipov@yandex.ru>
3134
3135 Fix recently introduced crash on MS-Windows (Bug#12839).
3136 * w32term.h (struct scroll_bar): Use convenient header.
3137 (SCROLL_BAR_VEC_SIZE): Remove.
3138 * w32term.c (x_scroll_bar_create): Use VECSIZE.
3139
3140 2012-11-09 Dmitry Antipov <dmantipov@yandex.ru>
3141
3142 Tweak last vectorlike_header change.
3143 * alloc.c (struct Lisp_Vectorlike_Free): Special type to represent
3144 vectorlike object on the free list. This is introduced to avoid
3145 some (but not all) pointer casting and aliasing problems, see
3146 http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00105.html.
3147 * .gdbinit (pvectype, pvecsize): New commands to examine vectorlike
3148 objects.
3149 (xvectype, xvecsize): Use them to examine Lisp_Object values.
3150
3151 2012-11-09 Jan Djärv <jan.h.d@swipnet.se>
3152
3153 * nsfont.m (ns_descriptor_to_entity): Qcondensed and Qexpanded has
3154 been removed, so remove them here also.
3155
3156 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
3157
3158 * doc.c (Fdocumentation): Handle new property
3159 dynamic-docstring-function to replace the old ad-advice-info.
3160
3161 2012-11-09 Paul Eggert <eggert@cs.ucla.edu>
3162
3163 * fns.c (Qeql, hashtest_eq): Now static.
3164
3165 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
3166
3167 * lisp.h (XHASH): Redefine to be imperfect and fit in a Lisp int.
3168 * fns.c (hashfn_eq, hashfn_eql, sxhash):
3169 * profiler.c (hashfn_profiler): Don't use XUINT on non-integers.
3170 * buffer.c (compare_overlays): Use XLI rather than XHASH.
3171
3172 2012-11-08 Paul Eggert <eggert@cs.ucla.edu>
3173
3174 Use same hash function for hashfn_profiler as for hash_string etc.
3175 * fns.c (SXHASH_COMBINE): Remove. All uses replaced by sxhash_combine.
3176 * lisp.h (sxhash_combine): New inline function, with the contents
3177 of the old SXHASH_COMBINE.
3178 * profiler.c (hashfn_profiler): Use it, instead of having a
3179 special hash function containing a comparison that always yields 1.
3180
3181 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
3182
3183 * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic)
3184 (Qultra_condensed, Qextra_condensed, Qcondensed, Qsemi_condensed)
3185 (Qsemi_expanded, Qextra_expanded, Qexpanded, Qultra_expanded):
3186 Remove unused vars.
3187
3188 2012-11-08 Jan Djärv <jan.h.d@swipnet.se>
3189
3190 * image.c (xpm_make_color_table_h): Fix compiler error because
3191 make_hash_table changed.
3192
3193 2012-11-08 Thomas Kappler <tkappler@gmail.com> (tiny change)
3194
3195 * nsfont.m (ns_findfonts): Handle empty matchingDescs (Bug#11541).
3196
3197 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
3198
3199 Use ad-hoc comparison function for the profiler's hash-tables.
3200 * profiler.c (Qprofiler_backtrace_equal, hashtest_profiler): New vars.
3201 (make_log): Use them.
3202 (handle_profiler_signal): Don't inhibit quit any longer since we don't
3203 call Fequal any more.
3204 (Ffunction_equal): New function.
3205 (cmpfn_profiler, hashfn_profiler): New functions.
3206 (syms_of_profiler): Initialize them.
3207 * lisp.h (struct hash_table_test): New struct.
3208 (struct Lisp_Hash_Table): Use it.
3209 * alloc.c (mark_object): Mark hash_table_test fields of hash tables.
3210 * fns.c (make_hash_table): Take a struct to describe the test.
3211 (cmpfn_eql, cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
3212 (hashfn_equal, hashfn_user_defined): Adjust to new calling convention.
3213 (hash_lookup, hash_remove_from_table): Move assertion checking of
3214 hashfn result here. Check hash-equality before calling cmpfn.
3215 (Fmake_hash_table): Adjust call to make_hash_table.
3216 (hashtest_eq, hashtest_eql, hashtest_equal): New structs.
3217 (syms_of_fns): Initialize them.
3218 * emacs.c (main): Move syms_of_fns earlier.
3219 * xterm.c (syms_of_xterm):
3220 * category.c (hash_get_category_set): Adjust call to make_hash_table.
3221 * print.c (print_object): Adjust to new hash-table struct.
3222 * composite.c (composition_gstring_put_cache): Adjust to new hashfn.
3223
3224 2012-11-08 Eli Zaretskii <eliz@gnu.org>
3225
3226 * w32fns.c (modifier_set): Fix handling of Scroll Lock when the
3227 value of w32-scroll-lock-modifier is neither nil nor one of the
3228 known key modifiers. (Bug#12806)
3229
3230 2012-11-08 Dmitry Antipov <dmantipov@yandex.ru>
3231
3232 Shrink struct vectorlike_header to the only size field.
3233 * lisp.h (enum pvec_type): Avoid explicit enum member values.
3234 Adjust comment.
3235 (enum More_Lisp_Bits): Change PSEUDOVECTOR_SIZE_BITS and
3236 PVEC_TYPE_MASK to arrange new bitfield in the vector header.
3237 (PSEUDOVECTOR_REST_BITS, PSEUDOVECTOR_REST_MASK): New members.
3238 (PSEUDOVECTOR_AREA_BITS): New member used to extract subtype
3239 information from the vector header. Adjust comment.
3240 (XSETPVECTYPE, XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR)
3241 (PSEUDOVECTOR_TYPEP, DEFUN): Adjust to match new vector header
3242 layout.
3243 (XSETSUBR, SUBRP): Adjust to match new Lisp_Subr layout.
3244 (struct vectorlike_header): Remove next member. Adjust comment.
3245 (struct Lisp_Subr): Add convenient header. Adjust comment.
3246 (allocate_pseudovector): Adjust prototype.
3247 * alloc.c (mark_glyph_matrix, mark_face_cache, allocate_string)
3248 (sweep_string, lisp_malloc): Remove useless prototypes.
3249 (enum mem_type): Adjust comment.
3250 (NEXT_IN_FREE_LIST): New macro.
3251 (SETUP_ON_FREE_LIST): Adjust XSETPVECTYPESIZE usage.
3252 (Fmake_bool_vector): Likewise.
3253 (struct large_vector): New type to represent allocation unit for
3254 the vectors with the memory footprint more than VBLOOCK_BYTES_MAX.
3255 (large_vectors): Change type to struct large_vector.
3256 (allocate_vector_from_block): Simplify.
3257 (PSEUDOVECTOR_NBYTES): Replace with...
3258 (vector_nbytes): ...new function. Adjust users.
3259 (sweep_vectors): Adjust processing of large vectors.
3260 (allocate_vectorlike): Likewise.
3261 (allocate_pseudovector): Change type of 3rd arg to enum pvec_type.
3262 Add easserts. Adjust XSETPVECTYPESIZE usage.
3263 (allocate_buffer): Use BUFFER_PVEC_INIT.
3264 (live_vector_p): Adjust to match large vector.
3265 * buffer.c (init_buffer_once): Use BUFFER_PVEC_INIT.
3266 * buffer.h (struct buffer): Add next member.
3267 (BUFFER_LISP_SIZE, BUFFER_REST_SIZE, BUFFER_PVEC_INIT):
3268 New macros.
3269 (FOR_EACH_BUFFER): Adjust to match struct buffer change.
3270 * fns.c (internal_equal): Adjust to match enum pvec_type change.
3271 (copy_hash_table): Adjust to match vector header change.
3272 * lread.c (defsubr): Use XSETPVECTYPE.
3273 * .gdbinit (xpr, xbacktrace): Adjust to match vector header change.
3274 (xvectype): Likewise. Print PVEC_NORMAL_VECTOR for regular vectors.
3275 (xvecsize): New command.
3276
3277 2012-11-08 Dmitry Antipov <dmantipov@yandex.ru>
3278
3279 * keyboard.c (event_to_kboard): Do not dereference
3280 frame_or_window field of SELECTION_REQUEST_EVENT
3281 and SELECTION_CLEAR_EVENT events (Bug#12814).
3282 * xterm.h (struct selection_input_event): Adjust comment.
3283
3284 2012-11-07 Eli Zaretskii <eliz@gnu.org>
3285
3286 * w32fns.c (modifier_set): Don't report modifiers from toggle key,
3287 such as Scroll Lock, if the respective keys are treated as
3288 function keys, not as modifiers. This avoids destroying non-ASCII
3289 keyboard input when Scroll Lock is toggled ON. (Bug#12806)
3290
3291 2012-11-07 Dmitry Antipov <dmantipov@yandex.ru>
3292
3293 * xfns.c (Fx_wm_set_size_hint): Use check_x_frame. Adjust docstring.
3294
3295 2012-11-06 Paul Eggert <eggert@cs.ucla.edu>
3296
3297 Restore some duplicate definitions (Bug#12814).
3298 This undoes part of the 2012-11-03 changes. Some people build
3299 with plain -g rather than with -g3, and they need the duplicate
3300 definitions for .gdbinit to work; see <http://bugs.gnu.org/12814#26>.
3301 * lisp.h (GCTYPEBITS, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK):
3302 Define as macros, as well as as enums or as constants.
3303
3304 2012-11-06 Jan Djärv <jan.h.d@swipnet.se>
3305
3306 * nsterm.m (convert_ns_to_X_keysym, keyDown:): Add NSNumericPadKeyMask
3307 to keypad keys (Bug#12816).
3308
3309 2012-11-06 Paul Eggert <eggert@cs.ucla.edu>
3310
3311 Minor adjustments of recently-changed frame functions.
3312 * buffer.c (Fbuffer_list): Omit CHECK_FRAME, since arg is already
3313 known to be a frame (we're in the FRAMEP branch).
3314 * lisp.h (Qframep): Remove decl. frame.h declares this.
3315 * window.c (quad): Args are of type EMACS_INT, not ptrdiff_t,
3316 since they're meant for Lisp fixnum values.
3317
3318 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
3319
3320 * window.c (Fwindow_combination_limit): Revert to the only
3321 required argument and adjust docstring as suggested in
3322 http://lists.gnu.org/archive/html/emacs-diffs/2012-11/msg01082.html
3323 by Martin Rudalics <rudalics@gmx.at>.
3324
3325 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
3326
3327 Widely used frame validity and checking functions.
3328 * frame.h (decode_live_frame, decode_any_frame): Add prototypes.
3329 * frame.c (decode_live_frame, decode_any_frame): New functions.
3330 (delete_frame, Fredirect_frame_focus, Fframe_parameters)
3331 (Fframe_parameter, Fframe_char_height, Fframe_char_width)
3332 (Fframe_pixel_height, Fframe_pixel_width, Ftool_bar_pixel_width)
3333 (Fframe_pointer_visible_p): Use decode_any_frame.
3334 (Fmake_frame_visible, Fmake_frame_invisible, Ficonify_frame)
3335 (Fraise_frame, Flower_frame, Fmodify_frame_parameters)
3336 (Fset_frame_height, Fset_frame_width): Use decode_live_frame.
3337 (Fframe_focus): Likewise. Allow zero number of arguments.
3338 Adjust docstring.
3339 (frame_buffer_list, frame_buffer_predicate): Remove.
3340 * lisp.h (frame_buffer_predicate): Remove prototype.
3341 * buffer.c (Fother_buffer): Use decode_any_frame.
3342 * xdisp.c (Ftool_bar_lines_needed): Likewise.
3343 * xfaces.c (Fcolor_gray_p, Fcolor_supported_p): Likewise.
3344 * font.c (Ffont_face_attributes, Ffont_family_list, Fopen_font)
3345 (Fclose_font, Ffont_info): Use decode_live_frame.
3346 * fontset.c (check_fontset_name): Likewise.
3347 * terminal.c (Fframe_terminal): Likewise.
3348 * w32fns.c (check_x_frame): Likewise.
3349 * window.c (Fminibuffer_window, Fwindow_at)
3350 (Fcurrent_window_configuration): Likewise.
3351 (Frun_window_configuration_change_hook, Fwindow_resize_apply):
3352 Likewise. Allow zero number of arguments. Adjust docstring.
3353 * dispnew.c (Fredraw_frame): Likewise.
3354 * xfaces.c (frame_or_selected_frame): Remove.
3355 (Fx_list_fonts, Finternal_get_lisp_face_attribute, Fface_font)
3356 (Finternal_lisp_face_equal_p, Finternal_lisp_face_empty_p)
3357 (Fframe_face_alist): Use decode_live_frame.
3358 * xfns.c (check_x_frame): Likewise.
3359
3360 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
3361
3362 * window.c (quad): New function.
3363 (Fwindow_edges, Fwindow_pixel_edges, Fwindow_inside_edges)
3364 (Fwindow_absolute_pixel_edges, Fwindow_inside_absolute_pixel_edges)
3365 (Fwindow_inside_pixel_edges, Fpos_visible_in_window_p)
3366 (Fwindow_line_height): Use it.
3367 (Fwindow_fringes): Use list3.
3368 (Fwindow_scroll_bars): Use list4.
3369 (Fwindow_frame, Fwindow_top_child, Fwindow_left_child)
3370 (Fwindow_combination_limit): Allow zero number of arguments.
3371
3372 2012-11-05 Eli Zaretskii <eliz@gnu.org>
3373
3374 * makefile.w32-in ($(BLD)/w32fns.$(O)): Depend on $(NT_INC)/unistd.h.
3375
3376 * w32fns.c: Include unistd.h, to avoid compiler warnings on Cygwin.
3377 (emacs_abort) [CYGWIN]: Don't call _open_osfhandle; instead, use
3378 file descriptor 2 for standard error. (Bug#12805)
3379
3380 2012-11-05 Chong Yidong <cyd@gnu.org>
3381
3382 * process.c (wait_reading_process_output): Revert previous change.
3383
3384 2012-11-05 Paul Eggert <eggert@cs.ucla.edu>
3385
3386 Assume at least POSIX.1-1988 for getpgrp, setpgid, setsid (Bug#12800).
3387 This removes code that has been obsolete since around 1990.
3388 * callproc.c (Fcall_process):
3389 * emacs.c (main):
3390 * process.c (create_process):
3391 * term.c (dissociate_if_controlling_tty):
3392 Assume setsid exists.
3393 * callproc.c (child_setup): Assume setpgid exists and behaves as
3394 per POSIX.1-1988 or later.
3395 * conf_post.h (setpgid) [!HAVE_SETPGID]: Remove.
3396 * emacs.c (shut_down_emacs):
3397 * sysdep.c (sys_suspend, init_foreground_group):
3398 Assume getpgrp behaves as per POSIX.1-1998 or later.
3399 * msdos.c (setpgrp): Remove.
3400 (tcgetpgrp, setpgid, setsid): New functions.
3401 * systty.h (EMACS_GETPGRP): Remove. All callers now use getpgrp.
3402 * term.c (no_controlling_tty): Remove; unused.
3403 * w32proc.c (setpgrp): Remove.
3404 (setsid, tcgetpgrp): New functions.
3405
3406 Simplify by assuming __fpending.
3407 * dispnew.c: Include <fpending.h>, not <stdio_ext.h>.
3408 (update_frame_1): Use __fpending, not PENDING_OUTPUT_COUNT.
3409 Do not assume that __fpending's result fits in int.
3410
3411 2012-11-04 Paul Eggert <eggert@cs.ucla.edu>
3412
3413 Remove EMACS_OUTQSIZE+sleep hack.
3414 * dispnew.c (update_frame_1): Remove hack for terminals slower
3415 than 2400 bps, which throttled Emacs by having it sleep.
3416 This code hasn't worked since at least 2007, when the multi-tty stuff
3417 was added, and anyway those old terminals are long dead.
3418 * systty.h (EMACS_OUTQSIZE): Remove; unused. The macro isn't used even
3419 without the dispnew.c change, as dispnew.c doesn't include systty.h.
3420
3421 Fix data-loss with --version (Bug#9574).
3422 * emacs.c (close_output_streams): Use strerror, not emacs_strerror,
3423 as we can't assume that emacs_strerror is initialized, and strerror
3424 is good enough here.
3425 (main): Invoke atexit earlier, to catch earlier instances of
3426 sending data to stdout and exiting, e.g., "emacs --version >/dev/full".
3427
3428 2012-11-04 Michael Marchionna <tralfaz@pacbell.net>
3429
3430 * nsterm.m: Add NSClearLineFunctionKey and keypad keys (Bug#8680).
3431 (keyDown): Remap keypad keys to X11 virtual key codes.
3432
3433 2012-11-03 Paul Eggert <eggert@cs.ucla.edu>
3434
3435 Fix data-loss with --batch (Bug#9574).
3436 * emacs.c: Include <close-stream.h>.
3437 (close_output_streams): New function.
3438 (main): Pass it to atexit, so that Emacs closes stdout and stderr
3439 and handles errors appropriately.
3440 (Fkill_emacs): Don't worry about flushing, as close_output_stream
3441 does that now.
3442
3443 Fix a race condition that causes Emacs to mess up glib (Bug#8855).
3444 The symptom is a diagnostic "GLib-WARNING **: In call to
3445 g_spawn_sync(), exit status of a child process was requested but
3446 SIGCHLD action was set to SIG_IGN and ECHILD was received by
3447 waitpid(), so exit status can't be returned." The diagnostic
3448 is partly wrong, as the SIGCHLD action is not set to SIG_IGN.
3449 The real bug is a race condition between Emacs and glib: Emacs
3450 does a waitpid (-1, ...) and reaps glib's subprocess by mistake,
3451 so that glib can't find it. Work around the bug by invoking
3452 waitpid only on subprocesses that Emacs itself creates.
3453 * process.c (create_process, record_child_status_change):
3454 Don't use special value -1 in pid field, as the caller now must
3455 know the pid rather than having the callee infer it.
3456 The inference was sometimes incorrect anyway, due to another race.
3457 (create_process): Set new 'alive' member if child is created.
3458 (process_status_retrieved): New function.
3459 (record_child_status_change): Use it.
3460 Accept negative 1st argument, which means to wait for the
3461 processes that Emacs already knows about. Move special-case code
3462 for DOS_NT (which lacks WNOHANG) here, from caller. Keep track of
3463 processes that have already been waited for, by testing and
3464 clearing new 'alive' member.
3465 (CAN_HANDLE_MULTIPLE_CHILDREN): Remove, as record_child_status_change
3466 now does this internally.
3467 (handle_child_signal): Let record_child_status_change do all
3468 the work, since we do not want to reap all exited child processes,
3469 only the child processes that Emacs itself created.
3470 * process.h (Lisp_Process): New boolean member 'alive'.
3471
3472 Omit duplicate definitions no longer needed with gcc -g3.
3473 * lisp.h (GCTYPEBITS, GCALIGNMENT, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG)
3474 (VALMASK, MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM):
3475 Define only as macros. There's no longer any need to also define
3476 these symbols as enums or as constants, since we now assume
3477 gcc -g3 when debugging.
3478
3479 2012-11-03 Eli Zaretskii <eliz@gnu.org>
3480
3481 * lisp.mk: Adjust comments to the fact that term/internal is now
3482 loaded from loadup.el.
3483
3484 * msdos.c (msdos_abort): Rename from emacs_abort, and make static.
3485 (msdos_fatal_signal): New function.
3486 (XMenuActivate): Adjust the call to kbd_buffer_events_waiting to
3487 its argument list.
3488
3489 * conf_post.h (_GL_EXECINFO_INLINE) [MSDOS]: Define to "inline"
3490 for GCC versions before 4.
3491 (emacs_raise): Define to call msdos_fatal_signal.
3492
3493 * xdisp.c (init_from_display_pos): Fix initialization of the bidi
3494 iterator when starting in the middle of a display or overlay
3495 string. (Bug#12745)
3496
3497 2012-11-03 Chong Yidong <cyd@gnu.org>
3498
3499 * process.c (wait_reading_process_output): Clean up the last
3500 change.
3501
3502 2012-11-03 Jim Paris <jim@jtan.com> (tiny change)
3503
3504 * process.c (wait_reading_process_output): Avoid a race condition
3505 with SIGIO delivery (Bug#11536).
3506
3507 2012-11-03 Chong Yidong <cyd@gnu.org>
3508
3509 * buffer.c (cursor_type): Untabify docstring.
3510
3511 2012-11-03 Dmitry Antipov <dmantipov@yandex.ru>
3512
3513 * frame.h (struct frame): Drop can_have_scroll_bars member
3514 which is meaningless for a long time. Adjust comments.
3515 (FRAME_CAN_HAVE_SCROLL_BARS): Remove.
3516 * frame.c, nsfns.m, term.c, w32fns.c, xfns.c: Adjust users.
3517
3518 2012-11-03 Dmitry Antipov <dmantipov@yandex.ru>
3519
3520 * window.c (decode_next_window_args): Update window arg after
3521 calling decode_live_window and so fix crash reported at
3522 http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00035.html
3523 by Juanma Barranquero <lekktu@gmail.com>.
3524 (Fwindow_body_width, Fwindow_body_height): Simplify a bit.
3525 * font.c (Ffont_at): Likewise.
3526
3527 2012-11-01 Jan Djärv <jan.h.d@swipnet.se>
3528
3529 * widget.c (resize_cb): New function.
3530 (EmacsFrameRealize): Add resize_cb as event handler (Bug#12733).
3531 (EmacsFrameResize): Check if all is up to date before changing frame
3532 size.
3533
3534 2012-11-02 Eli Zaretskii <eliz@gnu.org>
3535
3536 Implement backtrace output for fatal errors on MS-Windows.
3537 * w32fns.c (CaptureStackBackTrace_proc): New typedef.
3538 (BACKTRACE_LIMIT_MAX): New macro.
3539 (w32_backtrace): New function.
3540 (emacs_abort): Use w32_backtrace when the user chooses not to
3541 attach a debugger. Update the text of the abort dialog.
3542
3543 2012-11-02 Dmitry Antipov <dmantipov@yandex.ru>
3544
3545 Window-related stuff cleanup here and there.
3546 * dispnew.c (Finternal_show_cursor, Finternal_show_cursor_p):
3547 Use decode_any_window.
3548 * fringe.c (Ffringe_bitmaps_at_pos): Likewise.
3549 * xdisp.c (Fformat_mode_line): Likewise.
3550 * font.c (Ffont_at): Use decode_live_window.
3551 * indent.c (Fcompute_motion, Fvertical_motion): Likewise.
3552 * window.c (decode_next_window_args): Likewise.
3553 (decode_any_window): Remove static.
3554 * window.h (decode_any_window): Add prototype.
3555 * lisp.h (CHECK_VALID_WINDOW, CHECK_LIVE_WINDOW): Move from here...
3556 * window.h: ...to here, redefine via WINDOW_VALID_P and WINDOW_LIVE_P,
3557 respectively.
3558
3559 2012-11-02 Dmitry Antipov <dmantipov@yandex.ru>
3560
3561 Remove pad from struct input_event.
3562 * termhooks.h (struct input_event): Remove padding field.
3563 Adjust comment.
3564 * keyboard.c (event_to_kboard): Simplify because frame_or_window
3565 member is never cons for a long time. Adjust comment.
3566 (mark_kboards): Adjust because SELECTION_REQUEST_EVENT and
3567 SELECTION_CLEAR_EVENT has no Lisp_Objects to mark. Add comment.
3568 * xterm.c (handle_one_xevent): Do not initialize frame_or_window
3569 field of SELECTION_REQUEST_EVENT and SELECTION_CLEAR_EVENT.
3570
3571 2012-11-01 Eli Zaretskii <eliz@gnu.org>
3572
3573 * w32proc.c (getpgrp, setpgid): New functions. (Bug#12776)
3574
3575 2012-10-31 Paul Eggert <eggert@cs.ucla.edu>
3576
3577 Fix crash when using Emacs as commit editor for git (Bug#12697).
3578 * callproc.c (setpgrp): Remove macro, as we now use setpgid
3579 and it is configured in conf_post.h.
3580 (Fcall_process): Don't invoke both setsid and setpgid; the former
3581 is enough, if it exists.
3582 * callproc.c (Fcall_process, child_setup):
3583 * process.c (create_process): Use setpgid.
3584 * conf_post.h (setpgid) [!HAVE_SETPGID]: New macro, which substitutes
3585 for the real thing.
3586 * dispnew.c (init_display): Initialize the foreground group
3587 if we are running a tty display.
3588 * emacs.c (main): Do not worry about setpgrp; init_display does it now.
3589 * lisp.h (init_foreground_group): New decl.
3590 * sysdep.c (inherited_pgroup): New static var.
3591 (init_foreground_group, tcsetpgrp_without_stopping)
3592 (narrow_foreground_group, widen_foreground_group): New functions.
3593 (init_sys_modes): Narrow foreground group.
3594 (reset_sys_modes): Widen foreground group.
3595
3596 2012-10-31 Michael Albinus <michael.albinus@gmx.de>
3597
3598 * dbusbind.c: Fix cut'n'waste error. Use HAVE_DBUS_VALIDATE_INTERFACE.
3599
3600 2012-10-31 Martin Rudalics <rudalics@gmx.at>
3601
3602 * minibuf.c (read_minibuf): Restore current buffer since
3603 choose_minibuf_frame calling Fset_frame_selected_window may
3604 change it (Bug#12766).
3605
3606 2012-10-30 Jan Djärv <jan.h.d@swipnet.se>
3607
3608 * frame.c (Fframe_pixel_height): Fix documentation (Bug#12733).
3609
3610 2012-10-30 Kenichi Handa <handa@gnu.org>
3611
3612 * font.c (Ffont_at): If WINDOW is specified and it is not
3613 displaying the current buffer, signal an error.
3614
3615 2012-10-29 Daniel Colascione <dancol@dancol.org>
3616
3617 * cygw32.h, cygw32.c (Qutf_16le, from_unicode, to_unicode):
3618 In preparation for fixing bug#12739, move these functions from
3619 here...
3620
3621 * coding.h, coding.c: ... to here, and compile them only when
3622 WINDOWSNT or CYGWIN. Moving these functions out of cygw32 proper
3623 lets us write cygw32-agnostic code for the HAVE_NTGUI case.
3624
3625 2012-10-28 Eli Zaretskii <eliz@gnu.org>
3626
3627 * w32proc.c (TIMER_TICKS_PER_SEC): New macro.
3628 (timer_loop, getitimer, setitimer): Use it instead of
3629 CLOCKS_PER_SEC, which is no longer pertinent, since we don't use
3630 'clock'.
3631 (w32_get_timer_time): Use 10*TIMER_TICKS_PER_SEC instead of a
3632 literal 10000.
3633
3634 2012-10-28 Jan Djärv <jan.h.d@swipnet.se>
3635
3636 * nsterm.m (NO_APPDEFINED_DATA): New define.
3637 (last_appdefined_event_data): New variable
3638 (last_appdefined_event): Remove.
3639 (ns_select): Initialize t from last_appdefined_event_data instead
3640 of [last_appdefined_event data1].
3641 (sendEvent:): Save [theEvent data1] to last_appdefined_event_data,
3642 remove last_appdefined_event (Bug#12698).
3643
3644 2012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
3645
3646 * frame.c (x_set_font): Catch internal error.
3647
3648 2012-10-27 Eli Zaretskii <eliz@gnu.org>
3649
3650 Avoid overflow in w32 implementation of interval timers.
3651 When possible, for ITIMER_PROF count only times the main thread
3652 actually executes.
3653 * w32proc.c <struct itimer_data>: 'expire' and 'reload' are now
3654 'volatile ULONGLONG' types. All the other data which was
3655 previously clock_t is now ULONGLONG. 'terminate' is 'volatile int'.
3656 (GetThreadTimes_Proc): New typedef.
3657 (w32_get_timer_time): New function, returns a suitable time value
3658 for the timer.
3659 (timer_loop): Enter critical section when accessing ULONGLONG
3660 values of the itimer_data struct, as these accesses are no longer
3661 atomic. Call 'w32_get_timer_time' instead of 'clock'.
3662 Remove unused variable.
3663 (init_timers): Initialize s_pfn_Get_Thread_Times.
3664 (start_timer_thread): Don't assign itimer->caller_thread here.
3665 (getitimer): Assign itimer->caller_thread here.
3666 (setitimer): Always call getitimer to get the value of ticks_now.
3667 (sys_spawnve): Avoid compiler warning about format mismatch.
3668
3669 2012-10-26 Eli Zaretskii <eliz@gnu.org>
3670
3671 * w32fns.c (w32_wnd_proc) <WM_MOUSEMOVE>: Don't enable tracking of
3672 mouse movement events if the menu bar is active. This avoids
3673 producing a busy "hour-glass" cursor by Windows if the mouse
3674 pointer is positioned over a tooltip shown for some menu item.
3675
3676 2012-10-25 Paul Eggert <eggert@cs.ucla.edu>
3677
3678 Don't assume process IDs fit in int.
3679 * emacs.c (shut_down_emacs) [!DOS_NT]:
3680 * sysdep.c (sys_suspend) [SIGTSTP && !MSDOS]:
3681 * term.c (dissociate_if_controlling_tty) [!DOS_NT]:
3682 Use pid_t, not int, to store process IDs, as 'int'
3683 is not wide enough on a few platforms (e.g., AIX and IRIX).
3684
3685 2012-10-23 Kenichi Handa <handa@gnu.org>
3686
3687 The following change is to make face-font-rescale-alist work
3688 correctly for non-ASCII fonts.
3689
3690 * font.c (font_open_entity): Don't handle Vface_font_rescale_alist.
3691 (font_open_for_lface): Handle Vface_font_rescale_alist.
3692
3693 2012-10-23 Chong Yidong <cyd@gnu.org>
3694
3695 * xfaces.c (Vfont_list_limit): Move unused variable to faces.el.
3696
3697 2012-10-21 Jan Djärv <jan.h.d@swipnet.se>
3698
3699 * nsfont.m (nsfont_open, ns_glyph_metrics): Force integer advancement
3700 for screen font.
3701 (nsfont_draw): Turn off LCD-smoothing (Bug#11484).
3702
3703 * xterm.c (x_focus_changed): Check if daemonp when sending focus in
3704 event (Bug#12681).
3705
3706 2012-10-21 Glenn Morris <rgm@gnu.org>
3707
3708 * lisp.mk (lisp): Add cp51932.el and eucjp-ms.el.
3709
3710 2012-10-20 Paul Eggert <eggert@cs.ucla.edu>
3711
3712 Port to OpenBSD 5.1.
3713 * frame.c (Fmouse_position, Fmouse_pixel_position):
3714 * xdisp.c (produce_stretch_glyph):
3715 Declare local vars only when they're needed.
3716 This is clearer and avoids a warning on OpenBSD about unused vars.
3717 * frame.h (FRAME_WINDOW_P): Always evaluate its argument.
3718 This is safer, and avoids OpenBSD warnings about unused vars.
3719 * keyboard.c (record_menu_key): Remove unnecessary decl.
3720 (poll_timer): Define only if POLL_FOR_INPUT is defined.
3721 * unexelf.c (ELFSIZE) [!ElfW]: Do not define if already defined,
3722 as our definition clashes with OpenBSD's.
3723 * xfaces.c (load_face_colors, check_lface_attrs)
3724 (get_lface_attributes_no_remap, get_lface_attributes)
3725 (lface_fully_specified_p, x_supports_face_attributes_p)
3726 (tty_supports_face_attributes_p, face_fontset, realize_face)
3727 (realize_x_face, realize_tty_face):
3728 Declare parameters to be Lisp_Object[LFACE_VECTOR_SIZE], not
3729 merely Lisp_Object *. This is more informative and avoids
3730 a warning on OpenBSD about accessing beyond an object's size.
3731
3732 2012-10-20 Chong Yidong <cyd@gnu.org>
3733
3734 * lread.c (Fload): Doc fix (Bug#12592).
3735
3736 2012-10-19 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
3737
3738 * font.c (Ffont_at): Fix previous change.
3739
3740 2012-10-19 Eli Zaretskii <eliz@gnu.org>
3741
3742 * puresize.h (BASE_PURESIZE): Bump the base value to 1700000.
3743 See http://lists.gnu.org/archive/html/emacs-devel/2012-10/msg00593.html
3744 for the reasons.
3745
3746 * alloc.c (NSTATICS): Decrease to 0x800.
3747
3748 2012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
3749
3750 * fns.c (Fnreverse): Include the problem element when signaling an
3751 error (bug#12677).
3752
3753 2012-10-18 Jan Djärv <jan.h.d@swipnet.se>
3754
3755 * nsterm.m (ns_select): Check writefds before call to
3756 FD_ISSET (Bug#12668).
3757
3758 2012-10-18 Daniel Colascione <dancol@dancol.org>
3759
3760 * alloc.c (NSTATICS): Increase from 0x650 to 0x1000
3761 (staticpro): If we run out of staticpro slots, die with an
3762 informative error instead of just calling emacs_abort.
3763
3764 2012-10-18 Martin Rudalics <rudalics@gmx.at>
3765
3766 Fix two flaws reported by Dmitry Antipov.
3767 * window.c (Ftemp_output_buffer_show): Remove.
3768 (Fwindow_vscroll, Fset_window_vscroll): Use decode_live_window.
3769 (syms_of_window): Remove defsubr for Stemp_output_buffer_show.
3770
3771 2012-10-17 Eli Zaretskii <eliz@gnu.org>
3772
3773 * makefile.w32-in ($(BLD)/w32.$(O)):
3774 ($(BLD)/vm-limit.$(O)):
3775 ($(BLD)/term.$(O)):
3776 ($(BLD)/unexw32.$(O)):
3777 ($(BLD)/fileio.$(O)):
3778 ($(BLD)/dispnew.$(O)): Update dependencies.
3779
3780 * w32term.h (w32_initialize_display_info, initialize_w32_display):
3781 Add prototypes.
3782
3783 * w32proc.c: Include ctype.h.
3784
3785 * w32.h (init_environment, check_windows_init_file)
3786 (syms_of_ntproc, syms_of_ntterm, dostounix_filename)
3787 (unixtodos_filename, init_winsock, srandom, random, sys_pipe)
3788 (set_process_dir, sys_spawnve, register_child, sys_sleep, getwd)
3789 (sys_link): Add prototypes.
3790
3791 * w32.c: Include w32select.h.
3792 (sys_access, e_malloc, sys_select): Add prototypes.
3793 (emacs_gnutls_pull): 'timeout' is now EMACS_TIME, not struct timeval.
3794
3795 * vm-limit.c [WINDOWSNT]: Include w32heap.h.
3796
3797 * unexw32.c: Include lisp.h and w32.h.
3798
3799 * term.c [WINDOWSNT]: Include w32term.h.
3800
3801 * process.c [WINDOWSNT]: Add prototype of sys_select.
3802
3803 * fileio.c [WINDOWSNT]: Include w32.h.
3804
3805 * dispnew.c [WINDOWSNT]: Include w32.h.
3806
3807 * cygw32.c (Fcygwin_convert_path_to_windows)
3808 (Fcygwin_convert_path_from_windows): Use EQ to compare 2
3809 Lisp_Object values. (Bug#12661)
3810
3811 * w32fns.c (w32_msg_pump): Use XIL instead of casting an integer
3812 to Lisp_Object. (Bug#12661)
3813
3814 2012-10-17 Kenichi Handa <handa@gnu.org>
3815
3816 * xdisp.c (reseat_1): Make the information stored in it->cmp_it
3817 invalidate.
3818
3819 2012-10-17 Dmitry Antipov <dmantipov@yandex.ru>
3820
3821 * buffer.c (Fkill_buffer): When unchaining the marker,
3822 reset its buffer pointer to NULL (Bug#12652).
3823
3824 2012-10-17 Dmitry Antipov <dmantipov@yandex.ru>
3825
3826 Do not verify indirection counters of killed buffers (Bug#12579).
3827 * buffer.h (BUFFER_CHECK_INDIRECTION): New macro.
3828 * buffer.c (compact_buffer, set_buffer_internal_1): Use it.
3829
3830 2012-10-16 Dmitry Antipov <dmantipov@yandex.ru>
3831
3832 * alloc.c (Fmake_byte_code): Fix typo in comment.
3833 * print.c (print_interval): Define as static to match prototype.
3834 * indent.c (disptab_matches_widthtab, recompute_width_table):
3835 Convert to eassert.
3836
3837 2012-10-16 Dmitry Antipov <dmantipov@yandex.ru>
3838
3839 * editfns.c (get_system_name): Remove.
3840 * lisp.h (get_system_name): Remove prototype.
3841 * xrdb.c (getenv, getpwuid, getpwnam): Remove prototypes.
3842 (get_environ_db): Use Vsystem_name. Avoid call to strlen.
3843
3844 2012-10-15 Daniel Colascione <dancol@dancol.org>
3845
3846 * dbusbind.c: Add comment explaining reason for previous change.
3847
3848 2012-10-15 Martin Rudalics <rudalics@gmx.at>
3849
3850 * window.c (Fwindow_end): Rewrite check whether cached position
3851 can be used (Bug#12600).
3852 (resize_frame_windows, grow_mini_window, shrink_mini_window):
3853 Set windows_or_buffers_changed.
3854
3855 2012-10-15 Daniel Colascione <dancol@dancol.org>
3856
3857 * dbusbind.c: Fix cygw32 build break when compiling with dbus
3858 enabled by undefining the symbol "interface", which the platform
3859 headers define to something incompatible.
3860
3861 2012-10-14 Daniel Colascione <dancol@dancol.org>
3862
3863 * image.c (init_tiff_functions, init_imagemagick_functions)
3864 (init_svg_functions): Fix cygw32 build break by using these
3865 functions only when WINDOWSNT _and_ HAVE_NTGUI.
3866
3867 2012-10-14 Jan Djärv <jan.h.d@swipnet.se>
3868
3869 * nsterm.m (ns_select): Count fd:s in writefs also (Bug#12422).
3870
3871 2012-10-13 Jan Djärv <jan.h.d@swipnet.se>
3872
3873 * gtkutil.c (xg_set_widget_bg): Divide by 65535 (Bug#12612).
3874
3875 2012-10-13 HANATAKA, Shinya <bogytech@gmail.com> (tiny change)
3876
3877 * coding.c (detect_coding): Set coding->id before calling
3878 this->detector.
3879
3880 2012-10-13 Andreas Schwab <schwab@linux-m68k.org>
3881
3882 * fileio.c: Formatting fixes.
3883
3884 2012-10-13 Paul Eggert <eggert@cs.ucla.edu>
3885
3886 Fix some stat-related races.
3887 * fileio.c (Fwrite_region): Avoid race condition if a file is
3888 removed or renamed by some other process immediately after Emacs
3889 writes it but before Emacs stats it. Do not assume that stat (or
3890 fstat) succeeds.
3891 * image.c (slurp_file): Resolve the file name with fopen + fstat
3892 rather than stat + fopen.
3893 (pbm_read_file) [0]: Remove unused code with stat race.
3894 * process.c (allocate_pty) [HAVE_PTYS && !PTY_ITERATION && !PTY_OPEN]:
3895 Remove ineffective code with stat race.
3896
3897 2012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
3898
3899 * doc.c (get_doc_string): Don't signal an error if the file is missing.
3900
3901 2012-10-12 Jan Djärv <jan.h.d@swipnet.se>
3902
3903 * nsterm.m (hold_event_q): New static variable.
3904 (EV_TRAILER, sendScrollEventAtLoc:fromEvent:): Call hold_event if
3905 ! q_event_ptr.
3906 (hold_event): New function.
3907 (ns_read_socket): If hold_event_q have events, store them and
3908 return (Bug#12384).
3909 (setPosition:portion:whole:): Send SIGIO to ourselves if apploopnr
3910 is zero (Bug#12384).
3911
3912 2012-10-12 Juanma Barranquero <lekktu@gmail.com>
3913
3914 * makefile.w32-in ($(BLD)/w32select.$(O)): Update dependencies.
3915
3916 2012-10-12 Eli Zaretskii <eliz@gnu.org>
3917
3918 * makefile.w32-in ($(BLD)/fileio.$(O)): Add sys/file.h.
3919
3920 * fileio.c (check_existing): New function.
3921 (make_temp_name, Ffile_exists_p, Ffile_writable_p): Call it
3922 instead of calling 'stat', when what's needed is to check whether
3923 a file exists. This avoids expensive system calls on MS-Windows.
3924 (Bug#12587)
3925
3926 * w32.c (init_environment): Call 'check_existing' instead of 'stat'.
3927
3928 * lread.c (openp) [WINDOWSNT]: Call 'access' instead of 'stat' to
3929 determine whether a file exists and is not a directory.
3930
3931 * lisp.h (check_existing): Add prototype.
3932
3933 2012-10-12 Jan Djärv <jan.h.d@swipnet.se>
3934
3935 * nsfont.m (nsfont_open): Remove font cache, it is not GC correct.
3936
3937 2012-10-12 Glenn Morris <rgm@gnu.org>
3938
3939 * buffer.c (Fset_buffer): Doc fix. (Bug#12624)
3940
3941 2012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
3942
3943 * buffer.c (Fkill_buffer): Null out the overlay list(s) as well.
3944
3945 * eval.c (Fautoload): Remember previous autoload status in load-history.
3946
3947 2012-10-11 Paul Eggert <eggert@cs.ucla.edu>
3948
3949 lread.c, macros.c, marker.c, menu.c, minibuf.c: Use bool for booleans.
3950 * lread.c (load_each_byte, new_backquote_flag, readchar)
3951 (read_filtered_event, lisp_file_lexically_bound_p)
3952 (safe_to_load_version, Fload, complete_filename_p, openp)
3953 (build_load_history, readevalloop, read_escape, read1)
3954 (string_to_number, read_vector, read_list):
3955 * macros.c (Fstart_kbd_macro):
3956 * marker.c (CONSIDER):
3957 * menu.c (parse_single_submenu, digest_single_submenu)
3958 (find_and_return_menu_selection, Fx_popup_menu):
3959 * minibuf.c (read_minibuf_noninteractive, read_minibuf)
3960 (Ftry_completion):
3961 * nsmenu.m (ns_update_menubar, runMenuAt:forFrame:keymaps:):
3962 (ns_menu_show):
3963 * xmenu.c (set_frame_menubar, create_and_show_popup_menu)
3964 (xmenu_show, xdialog_show):
3965 Use bool for booleans.
3966 * lread.c (safe_to_load_version): Rename from safe_to_load_p,
3967 as it's not a predicate. All uses changed. Omit unnecessary
3968 buffer termination.
3969
3970 2012-10-11 Dmitry Antipov <dmantipov@yandex.ru>
3971
3972 * editfns.c (save_excursion_save): Use nil if mark points to nowhere.
3973 (save_excursion_restore): Do not restore mark if it was not saved.
3974
3975 2012-10-11 Paul Eggert <eggert@cs.ucla.edu>
3976
3977 * marker.c (cached_modiff): EMACS_INT, not int.
3978
3979 * w32select.c (waiting_for_input): Declare by including "keyboard.h"
3980 instead of having a wrong decl.
3981 * nsmenu.m (waiting_for_input): Remove wrong decl.
3982
3983 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
3984
3985 keyboard.c, keymap.c: Use bool for booleans.
3986 * dispnew.c (sit_for): Distinguish between 3-way display_option
3987 and boolean do_display.
3988 * keyboard.c (single_kboard, this_command_key_count_reset)
3989 (waiting_for_input, echoing, immediate_quit, input_pending)
3990 (interrupt_input, interrupts_deferred, pop_kboard)
3991 (temporarily_switch_to_single_kboard, ignore_mouse_drag_p)
3992 (command_loop_1, adjust_point_for_property)
3993 (safe_run_hooks_error, input_polling_used, read_char):
3994 (help_char_p, readable_events, kbd_buffer_events_waiting)
3995 (kbd_buffer_get_event, timer_check_2, make_lispy_event)
3996 (lucid_event_type_list_p, get_input_pending):
3997 (gobble_input, menu_separator_name_p, menu_bar_item)
3998 (parse_menu_item, parse_tool_bar_item, read_char_x_menu_prompt)
3999 (read_char_minibuf_menu_prompt, access_keymap_keyremap)
4000 (keyremap_step, test_undefined, read_key_sequence)
4001 (detect_input_pending, detect_input_pending_ignore_squeezables)
4002 (detect_input_pending_run_timers, requeued_events_pending_p)
4003 (quit_throw_to_read_char, Fset_input_interrupt_mode):
4004 * keymap.c (get_keymap, keymap_parent, keymap_memberp)
4005 (access_keymap_1, access_keymap, map_keymap, get_keyelt)
4006 (Fdefine_key, Flookup_key, struct accessible_keymaps_data)
4007 (accessible_keymaps_1, Fkey_description, push_key_description):
4008 (shadow_lookup, struct where_is_internal_data)
4009 (where_is_internal, Fwhere_is_internal, where_is_internal_1)
4010 (Fdescribe_buffer_bindings, describe_map_tree, struct describe_map_elt)
4011 (describe_map, describe_vector):
4012 * menu.c (single_menu_item):
4013 * nsmenu.m (ns_update_menubar):
4014 * process.c (wait_reading_process_output):
4015 * search.c (scan_buffer, scan_newline):
4016 Use bool for boolean.
4017 * keyboard.c (timers_run, swallow_events)
4018 (detect_input_pending_run_timers):
4019 * process.c (wait_reading_process_output):
4020 Use unsigned for counter where wraparound-on-overflow is desired,
4021 since unsigned is guaranteed to have that behavior and signed is not.
4022 (read_char): Use ptrdiff_t for string length.
4023 (get_input_pending): Remove first argument, since it was always
4024 the same pointer-to-int (now pointer-to-boolean) &input_pending,
4025 and behave as if it had that value. Return new value of
4026 input_pending. All callers changed.
4027 * keyboard.h (struct kboard): Use unsigned : 1 for boolean member
4028 immediate_echo. Use ptrdiff_t for echo_after_prompt, since it's
4029 a string length.
4030 * keymap.c (push_key_description): Omit last arg, which was always 1.
4031 All callers changed.
4032
4033 * regex.c (immediate_quit) [emacs]: Remove duplicate decl.
4034
4035 2012-10-10 Juanma Barranquero <lekktu@gmail.com>
4036
4037 * makefile.w32-in ($(BLD)/dispnew.$(O), $(BLD)/indent.$(O))
4038 ($(BLD)/term.$(O)): Update dependencies.
4039
4040 2012-10-10 Dmitry Antipov <dmantipov@yandex.ru>
4041
4042 * alloc.c (mark_object): Use meaningful PVEC_NORMAL_VECTOR.
4043 * lisp.h (enum pvec_type): Adjust comments and omit explicit
4044 initializer for PVEC_NORMAL_VECTOR.
4045
4046 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
4047
4048 Clean out old termopts cruft.
4049 * termopts.h (flow_control, meta_key): Remove unused decls.
4050 * dispnew.c, indent.c, nsterm.m, term.c, xsettings.c, xsmfns.c:
4051 Don't include termopts.h.
4052
4053 2012-10-10 Dmitry Antipov <dmantipov@yandex.ru>
4054
4055 * alloc.c (gc_sweep): Use pointer-to-a-pointer loop for buffers.
4056
4057 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
4058
4059 * commands.h (immediate_quit): Remove duplicate decl.
4060
4061 2012-10-09 Jan Djärv <jan.h.d@swipnet.se>
4062
4063 * nsfont.m (Vfonts_in_cache): Remove, not needed as font.c handles
4064 caching.
4065 (nsfont_open): Remove setting of Vfonts_in_cache.
4066 (syms_of_nsfont): Remove initialization of Vfonts_in_cache.
4067
4068 2012-10-09 Eli Zaretskii <eliz@gnu.org>
4069
4070 * w32fns.c (w32_last_error): Change the return value to DWORD, to
4071 match what GetLastError returns. Explain why the function is
4072 needed.
4073
4074 * frame.c (delete_frame): Rename local variable 'tooltip_frame' to
4075 'is_tooltip_frame', to avoid confusion with its global namesake.
4076
4077 2012-10-08 Daniel Colascione <dancol@dancol.org>
4078
4079 * xdisp.c (start_hourglass): Call w32_note_current_window when
4080 HAVE_NTGUI, not just WINDOWSNT, resolving a problem in the cygw32
4081 build that caused Emacs to display the hourglass cursor forever.
4082
4083 * w32fns.c (Fx_display_color_cells): Instead of using NCOLORS,
4084 which is broken under remote desktop, calculate the number of
4085 colors available for a display based on the display's number of
4086 planes and number of bits per pixel per plane. (bug#10397).
4087
4088 2012-10-08 Jan Djärv <jan.h.d@swipnet.se>
4089
4090 * nsfont.m (Vfonts_in_cache): New variable.
4091 (nsfont_open): Use unsignedLongLongValue for cache in case wide ints
4092 are used. Add cached fonts to Vfonts_in_cache.
4093 (syms_of_nsfont): Initialize and staticpro Vfonts_in_cache.
4094
4095 2012-10-08 Juanma Barranquero <lekktu@gmail.com>
4096
4097 * makefile.w32-in (LOCAL_FLAGS): Don't define HAVE_NTGUI, it's now
4098 in nt/config.nt.
4099 (FONT_H): Define after FRAME_H.
4100 ($(BLD)/emacs.$(O), $(BLD)/process.$(O), $(BLD)/w32heap.$(O)):
4101 Update dependencies.
4102
4103 * w32term.c: Remove leftover declaration of keyboard_codepage.
4104
4105 2012-10-08 Eli Zaretskii <eliz@gnu.org>
4106
4107 * makefile.w32-in (FONT_H): Add $(FRAME_H).
4108 (W32TERM_H): Add $(ATIMER_H) and $(FRAME_H).
4109 ($(BLD)/emacs.$(O), $(BLD)/w32console.$(O)): Update dependencies.
4110 (GLOBAL_SOURCES): Add cygw32.c.
4111 ($(BLD)/unexw32.$(O)):
4112 ($(BLD)/w32.$(O)):
4113 ($(BLD)/w32console.$(O)):
4114 ($(BLD)/w32fns.$(O)):
4115 ($(BLD)/w32heap.$(O)):
4116 ($(BLD)/w32menu.$(O)):
4117 ($(BLD)/w32proc.$(O)): Add w32common.h.
4118
4119 * w32fns.c (w32_color_map_lookup, x_to_w32_color): Argument is now
4120 'const char *'.
4121 (x_to_w32_color): Don't modify the argument, modify a copy instead.
4122
4123 2012-10-08 Daniel Colascione <dancol@dancol.org>
4124
4125 * w32term.h (WM_EMACS_BRINGTOTOP, WM_EMACS_INPUT_READY)
4126 (WM_EMACS_END): Change WM_EMACS_BRINGTOTOP from 22 to 21 to close
4127 accidental message numbering hole. Change other messages to
4128 match.
4129
4130 * w32select.h (HAVE_W32SELECT): Remove.
4131
4132 * w32select.c, w32proc.c, w32menu.c, w32console.c, w32.c: Include
4133 w32common.h instead of w32heap.h.
4134
4135 * w32heap.h (ROUND_UP, ROUND_DOWN, get_page_size)
4136 (get_allocation_unit, get_processor_type, get_w32_major_version)
4137 (get_w32_minor_version, sysinfo_cache, osinfo_cache)
4138 (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
4139 (OS_NT, os_subtype, cache_system_info): Move declarations to
4140 w32common.
4141
4142 * w32heap.c: Include w32common.h.
4143 (sysinfo_cache, syspage_mask, osinfo_cache, w32_major_version)
4144 (w32_minor_version, w32_build_number, w32_subtype):
4145 Remove duplicate definitions.
4146
4147 * w32fns.c: Include w32common.h; include w32heap.h only in
4148 WINDOWSNT.
4149
4150 (Fx_file_dialog): Clarify comment on GetOpenFileName structure.
4151 Use `report_file_error' instead of `error' in order to better
4152 inform users of what went wrong. Increase NTGUI_UNICODE file
4153 dialog box file name length to 32k, the maximum allowed by the NT
4154 kernel.
4155
4156 * w32common.h: New file.
4157 (ROUND_UP, ROUND_DOWN, get_page_size)
4158 (get_allocation_unit, get_processor_type, get_w32_major_version)
4159 (get_w32_minor_version, sysinfo_cache, osinfo_cache)
4160 (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
4161 (OS_NT, os_subtype, cache_system_info): Move here.
4162
4163 * unexw32.c, unexcw.c: Include w32common.h.
4164
4165 * emacs.c (main): Use (defined (WINDOWSNT) || defined
4166 HAVE_NTGUI) instead of removed HAVE_W32SELECT to decide whether
4167 to call syms_of_w32select.
4168
4169 * cygw32.h: Remove obsolete EXFUN declarations.
4170
4171 * cygw32.c (Qutf_16_le): Rename to Qutf_16le.
4172
4173 * Makefile.in (SOME_MACHINE_OBJECTS): Reverse accidental removal
4174 of w32inevt.o from SOME_MACHINE_OBJECTS.
4175
4176 2012-10-08 Daniel Colascione <dancol@dancol.org>
4177
4178 * image.c: Permanent fix for JPEG compilation issue --- limit
4179 jpeglib `boolean' redefinition to Cygwin builds.
4180
4181 2012-10-08 Eli Zaretskii <eliz@gnu.org>
4182
4183 * image.c (CHECK_LIB_AVAILABLE): Remove, no longer used.
4184
4185 * emacs.c (DAEMON_MUST_EXEC) [HAVE_NTGUI]: Define this only on
4186 Cygwin.
4187
4188 2012-10-08 Daniel Colascione <dancol@dancol.org>
4189
4190 * xfaces.c, xdisp.c, window.c, w32xfns.c, w32term.h, w32term.c,
4191 w32select.h w32select.c, w32proc.c, w32menu.c, w32inevt.c,
4192 w32help.c, w32font.c, w32font.c, w32fns.c, w32console.c, w32.h,
4193 w32.c, unexw32.c, termhooks.h, process.c, menu.c, keyboard.h,
4194 keyboard.c, image.c, frame.h, frame.c, fontset.c, font.h, font.c,
4195 emacs.c, dispextern.h, cygw32.h, cygw32.c, conf_post.h,
4196 Makefile.in: use HAVE_NTGUI for W32 GUI and WINDOWSNT for the
4197 operating system. defined(HAVE_NTGUI) && !defined(WINDOWSNT) is
4198 now a supported configuration.
4199
4200 * Makefile.in: consolidate image variables into LIBIMAGE; add
4201 W32_OBJ and W32_LIBS. Compile new files.
4202
4203 * conf_post.h:
4204 (_DebPrint) declare tracing facility for W32 debugging. We need
4205 to unify tracing later.
4206
4207 (NTGUI_UNICODE) Define when compiling for Cygwin to allow the
4208 unconditional use of W32 Unicode functions. Cygwin runs only on
4209 100% Unicode operating systems.
4210
4211 * cygw32.c: New file. Define Cygwin-specific facilities.
4212 (Fcygwin_convert_path_to_windows)
4213 (Fcygwin_convert_path_from_windows): New user functions for
4214 accessing Cygwin path-munging routines.
4215
4216 * cygw32.h: New file.
4217 (WCSDATA, to_unicode, from_unicode): Define facilities for storing
4218 UTF-16LE strings temporarily inside non-Lisp-visible string
4219 objects.
4220
4221 (w32_strerror): Just what it says on the tin.
4222
4223 * emacs.c: Make the NS fork-then-exec code for daemon-launching
4224 also run for Cygwin; both systems have the same problem with using
4225 GUI facilities in a forked child. Also call syms_of_cygw32,
4226 syms_of_w32select in correct places.
4227
4228 (DAEMON_MUST_EXEC): new macro defined to signal that a platform
4229 needs fork-then-exec for daemon launching.
4230
4231 * font.h: Include frame.h.
4232
4233 * image.c: Use the image library cache machinery only when we're
4234 compiling for native WINDOWSNT; Cygwin can use shared libraries
4235 like any other Unixlike system.
4236
4237 * keyboard.c: Clarify a comment regarding the input loop.
4238
4239 * menu.c: When NTGUI_UNICODE is defined, use Unicode menu
4240 functions directly instead of trying to detect at runtime that our
4241 host operating system supports them. We make this change for two
4242 reasons: Cygwin lacks support for the multibyte character
4243 conversion functions used by the legacy menu code, and Cygwin
4244 never needs to rely on non-Unicode APIs.
4245
4246 * unexw32.c (hinst): Declare extern.
4247
4248 * w32.c: Change header order;
4249 (w32_strerror): Move to w32fns.c because we need it for
4250 non-WINDOWSNT builds.
4251
4252 * w32.h: Add #error macro to make sure we don't include w32.h for
4253 Cygwin builds. Remove w32select declarations.
4254
4255 * w32console.c (w32_sys_ring_bell, Fset_message_beep): Move to
4256 w32fns.c. w32console.c is WINDOWSNT-only.
4257
4258 * w32fns.c: Include cygw32.h or w32.h depending on CYGWIN; more
4259 NTGUI_UNICODE tweaks. (See above.) Change _snprintf to the more
4260 POSIXy alternative.
4261 (faked_key, sysinfo_cache, osinfo_cahce, syspage_mask)
4262 (w32_major_version, w32_minor_version, w32_build_number)
4263 (os_subtype, sound_type): Define here
4264 (w32_defined_color): Make color parameter const for consistency
4265 with other _defined_color functions.
4266 (w32_createwindow): Unconditionally call w32_init_class instead of
4267 doing so only when hprevinst is non-NULL. Plumbing hprevinst
4268 through the code is complex and unnecessary because class
4269 registration is practically free.
4270 (w32_name_of_message): New EMACSDEBUG-only function.
4271 (Fset_message_beep): Move here
4272 (Fx_open_connection): Require that the display name for Windows be
4273 "w32" for consistency, emacsclient disambiguation, and maybe, one
4274 day, multi-window-system support.
4275 (file_dialog_callback): NTGUI_UNICODE changes; encode and decode
4276 Cygwin files for W32 GUI facilities, since these clearly don't
4277 expect Cygwin names.
4278 (_DebPrint): Define.
4279 (w32_strerror, w32_console_toggle_lock_key, w32_kbd_mods_to_emacs)
4280 (w32_kbd_patch_key, w32_sys_ring_bell): Move here.
4281 (Ssystem_move_file_to_trash): Define only for native WINDOWSNT.
4282 (w32_last_error): Remove.
4283
4284 * w32font.c: Define _strlwr to strlwr for non-WINDOWSNT builds.
4285
4286 * w32heap.c (syspage_mask): Declare here.
4287 (cache_system_info): Remove.
4288
4289 * w32inevt.c (faked_key): Define globally, not statically.
4290 (w32_kbd_mods_to_emacs, w32_kbd_patch_key, faked_key)
4291 (w32_console_toggle_lock_key): Move to w32fns.c.
4292
4293 * w32menu.c: Include setjmp.h. NTGUI_UNICODE changes throughout.
4294
4295 * w32proc.c (_DebPrint): Move to w32fns.c.
4296 * w32select.c: Include string.h, stdio.h for Cygwin.
4297 * w32select.h: New File.
4298
4299 * w32term.c: Include io.h for non-CYGWIN builds; needed for
4300 get_osfhandle.
4301 (w32_message_fd): New variable. Under Cygwin, holds the file
4302 descriptor the system used to tell us about pending thread
4303 messages.
4304
4305 (w32_init_term): Remove incorrect calls to fcntl and init_sigio
4306 that prevented compilation under non-WINDOWSNT systems.
4307
4308 (w32_initialize): Open /dev/windows and assign it to
4309 w32_message_fd. Provide w32 feature.
4310
4311 * w32term.h: Include frame.h, atimer.h. Declare various frame functions.
4312 (WM_EMACS_INPUT_READY): add.
4313 (prepend_msg, w32_message_fd): Declare globally.
4314
4315 * w32xfns.c:
4316 (keyboard_handle): Use only when WINDOWSNT.
4317 (notify_msg_ready): New function. Posts a message to the main
4318 thread's message queue under CYGWIN, which wakes up the main
4319 thread from select(2) by making the /dev/windows file descriptor
4320 ready. Under WINDOWSNT, it sets an event the same way the old
4321 code did.
4322
4323 (post, prepend_msg): Actually call notify_msg_ready instead of
4324 setting the input event directly.
4325
4326 2012-10-07 Eli Zaretskii <eliz@gnu.org>
4327
4328 * ralloc.c (relinquish): If a heap is ready to be relinquished,
4329 but it still has blocs in it, don't return it to the system,
4330 instead of aborting. (Bug#12402)
4331
4332 2012-10-07 Jan Djärv <jan.h.d@swipnet.se>
4333
4334 * nsterm.m (ns_dumpglyphs_image): Only draw slice of image (Bug#12506).
4335
4336 * nsterm.m (ns_update_auto_hide_menu_bar): Remove defintion of
4337 MAC_OS_X_VERSION_10_6.
4338 (syms_of_nsterm): Remove comment about Panther and above for
4339 ns-antialias-text.
4340 * nsterm.h (MAC_OS_X_VERSION_10_3, onTiger): Remove.
4341 (EmacsApp): Remove check for >= MAC_OS_X_VERSION_10_4.
4342 (struct nsfont_info): Remove check for >= MAC_OS_X_VERSION_10_3.
4343
4344 * nsselect.m (ns_string_from_pasteboard): Remove check for >=
4345 MAC_OS_X_VERSION_10_4.
4346
4347 * nsmenu.m (fillWithWidgetValue:): Remove code for <
4348 MAC_OS_X_VERSION_10_2.
4349
4350 * nsimage.m (setPixmapData, getPixelAtX, setAlphaAtX): Remove onTiger.
4351
4352 * nsfns.m (Fns_list_services): Remove comment and check for OSX < 10.4.
4353 (ns_do_applescript): Remove check for >= MAC_OS_X_VERSION_10_4.
4354
4355 * nsterm.m (ns_in_resize): Remove (Bug#12479).
4356 (ns_resize_handle_rect, mouseDown, mouseUp, mouseDragged): Remove.
4357 (ns_clear_frame, sendEvent, windowDidResize, drawRect:):
4358 Remove ns_in_resize check.
4359 (ns_clear_frame_area): Remove resize handle code.
4360
4361 * nsfns.m (ns_in_resize): Remove.
4362 (x_set_icon_name, ns_set_name, ns_set_name_as_filename):
4363 Remove ns_in_resize check.
4364
4365 2012-10-07 Paul Eggert <eggert@cs.ucla.edu>
4366
4367 Improve sys_siglist detection.
4368 * sysdep.c (sys_siglist, init_signals): Use _sys_siglist if it's
4369 defined as a macro, as is done in Solaris.
4370 (sys_siglist_entries): New macro.
4371 (save_strsignal): Use it.
4372 * syssignal.h (safe_strsignal): Now ATTRIBUTE_CONST, to pacify
4373 GCC 4.7.2 on Fedora 17 with the fixed sys_siglist detection.
4374
4375 2012-10-06 Jan Djärv <jan.h.d@swipnet.se>
4376
4377 * nsfns.m (Fx_create_frame): Call x_default_parameter with
4378 fullscreen/Fullscreen.
4379
4380 * nsterm.h (EmacsView): Rename tbar_height to tibar_height.
4381 tobar_height is new.
4382
4383 * nsterm.m (x_make_frame_visible): Check for fullscreen.
4384 (ns_fullscreen_hook): Activate old style fullscreen with a timer.
4385 (ns_term_init): Set activateIgnoringOtherApps if old style fullscreen.
4386 (windowDidResize:): Check for correct window if old style fullscreen.
4387 Capitalize word in comment. Remove incorrect comment.
4388 (initFrameFromEmacs:): tbar_height renamed tibar_height.
4389 (windowDidEnterFullScreen:): Toggle toolbar for fullscreen to fix
4390 error in drawing background.
4391 (toggleFullScreen:): Remove comment. Rearrange calls.
4392 Set toolbar values to zero, save old height in tobar_height.
4393 Restore tool bar height when leaving fullscreen.
4394 (canBecomeMainWindow): New function.
4395
4396 2012-10-06 Paul Eggert <eggert@cs.ucla.edu>
4397
4398 * keyboard.c (read_char): Remove unnecessary 'volatile's and label.
4399
4400 2012-10-05 Eli Zaretskii <eliz@gnu.org>
4401
4402 * w32proc.c (stop_timer_thread): Fix declaration of 'err'.
4403
4404 * w32.c (utime): Open the file with FILE_FLAG_BACKUP_SEMANTICS, so
4405 that time stamps of directories could also be changed.
4406 Don't request the too broad GENERIC_WRITE, only the more restrictive
4407 FILE_WRITE_ATTRIBUTES access rights.
4408
4409 * fileio.c (Fset_file_times): Special-case ignoring errors for
4410 directories only on MSDOS, not on MS-Windows.
4411
4412 2012-10-05 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
4413
4414 * minibuf.c (Fcompleting_read): Doc fix. (Bug#12555)
4415
4416 2012-10-04 Eli Zaretskii <eliz@gnu.org>
4417
4418 * w32.c (utime): Test for INVALID_HANDLE_VALUE, not for NULL, to
4419 see whether CreateFile failed.
4420
4421 2012-10-04 Paul Eggert <eggert@cs.ucla.edu>
4422
4423 * profiler.c (handle_profiler_signal): Inhibit pending signals too,
4424 to avoid similar races.
4425 * keyboard.c (pending_signals): Now bool, not int.
4426
4427 Port timers to OpenBSD, plus check for timer failures.
4428 OpenBSD problem reported by Han Boetes.
4429 * profiler.c (setup_cpu_timer): Check for failure of timer_settime
4430 and/or setitimer.
4431 (Fprofiler_cpu_stop): Don't assume HAVE_SETITIMER.
4432 * syssignal.h (HAVE_ITIMERSPEC): New macro. This is for platforms
4433 like OpenBSD, which has timer_settime but does not declare it.
4434 OpenBSD does not define SIGEV_SIGNAL, so use that when deciding
4435 whether to use itimerspec-related primitives. All uses of
4436 HAVE_TIMER_SETTIME replaced with HAVE_ITIMERSPEC.
4437
4438 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
4439
4440 * profiler.c (handle_profiler_signal): Fix a malloc race
4441 that caused Emacs to hang on Fedora 17 when profiling Lisp.
4442
4443 2012-10-02 Jan Djärv <jan.h.d@swipnet.se>
4444
4445 * nsterm.m (windowDidEnterFullScreen): Remove fprintf.
4446
4447 2012-10-02 Eli Zaretskii <eliz@gnu.org>
4448
4449 * w32proc.c (sys_wait): Declare 'signame' 'const char *', to be
4450 consistent with the change in return value of 'safe_strsignal'.
4451
4452 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
4453
4454 Prefer plain 'static' to 'static inline' (Bug#12541).
4455 * bidi.c (bidi_get_type, bidi_check_type, bidi_get_category)
4456 (bidi_set_sor_type, bidi_push_embedding_level)
4457 (bidi_pop_embedding_level, bidi_remember_char, bidi_copy_it)
4458 (bidi_cache_reset, bidi_cache_shrink, bidi_cache_fetch_state)
4459 (bidi_cache_search, bidi_cache_ensure_space)
4460 (bidi_cache_iterator_state, bidi_cache_find)
4461 (bidi_peek_at_next_level, bidi_set_paragraph_end)
4462 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
4463 (bidi_explicit_dir_char, bidi_resolve_neutral_1):
4464 Now 'static', not 'static inline'.
4465
4466 Count overruns when profiling; change units to ns.
4467 * profiler.c (handle_profiler_signal): Count sampling intervals, not ms.
4468 Give extra weight to samples after overruns, to attempt to count
4469 the time more accurately.
4470 (setup_cpu_timer): Change sampling interval units from ms to ns, since
4471 the underlying primitives nominally do ns.
4472 (Fprofiler_cpu_start): Document the change. Mention that
4473 the sampling intervals are only approximate.
4474
4475 2012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
4476
4477 * frame.c (Fmake_terminal_frame): Prefer safer CONSP over !NILP.
4478
4479 * coding.h (ENCODE_FILE, DECODE_FILE, DECODE_SYSTEM): Remove special
4480 case for the special 0 coding-system.
4481
4482 * buffer.c (Fset_buffer_multibyte): Signal an error instead of widening.
4483 (Fmake_overlay): Remove redundant tests.
4484 (fix_start_end_in_overlays): Remove redundant recentering.
4485
4486 2012-10-02 Juanma Barranquero <lekktu@gmail.com>
4487
4488 * makefile.w32-in ($(BLD)/alloc.$(O), $(BLD)/gmalloc.$(O)):
4489 Update dependencies.
4490
4491 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
4492
4493 Fix a malloc race condition involving strsignal.
4494 A signal can arrive in the middle of a malloc, and Emacs's signal
4495 handler can invoke strsignal, which can invoke malloc, which is
4496 not portable. This race condition bug makes Emacs hang on GNU/Linux.
4497 Fix it by altering the signal handler so that it does not invoke
4498 strsignal.
4499 * emacs.c (shut_down_emacs): Use safe_strsignal, not strsignal.
4500 * process.c (status_message): Use const pointer, in case strsignal
4501 is #defined to safe_strsignal.
4502 * sysdep.c (sys_siglist, init_signals): Always define and
4503 initialize a substitute sys_siglist if the system does not define
4504 one, even if HAVE_STRSIGNAL.
4505 (safe_strsignal): Rename from strsignal. Always define,
4506 using sys_siglist. Return a const pointer.
4507 * syssignal.h (safe_strsignal): New decl.
4508 (strsignal) [!HAVE_STRSIGNAL]: Define in terms of safe_strsignal.
4509
4510 2012-10-01 Eli Zaretskii <eliz@gnu.org>
4511
4512 * w32proc.c (timer_loop): Fix code that waits for timer
4513 expiration, to avoid high CPU usage.
4514
4515 2012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
4516
4517 * fns.c (check_hash_table, get_key_arg, maybe_resize_hash_table)
4518 (sweep_weak_table): Remove redundant prototypes.
4519
4520 2012-10-01 Fabrice Popineau <fabrice.popineau@gmail.com>
4521
4522 * emacs.c: Move the inclusion of TERM_HEADER after including
4523 windows.h on WINDOWSNT. This avoids compilation problems with
4524 MSVC.
4525
4526 2012-10-01 Eli Zaretskii <eliz@gnu.org>
4527
4528 * unexw32.c (OFFSET_TO_RVA, RVA_TO_OFFSET)
4529 (RVA_TO_SECTION_OFFSET): Encode all macro arguments in parentheses.
4530 (RVA_TO_PTR): Cast the result of RVA_TO_OFFSET to 'unsigned char *',
4531 as the previous version used 'void *'.
4532
4533 * ralloc.c (ROUNDUP): Fix last change.
4534 (MEM_ROUNDUP): Don't cast MEM_ALIGN, it is already of type
4535 'size_t'.
4536
4537 * w32proc.c <disable_itimers>: New static flag.
4538 (init_timers): Initialize it to zero, after creating the critical
4539 sections used by the timer threads.
4540 (term_timers): Set to 1 before deleting the critical sections.
4541 (getitimer, setitimer): If disable_itimers is non-zero, return an
4542 error indication without doing anything. Reported by Fabrice
4543 Popineau <fabrice.popineau@supelec.fr> as part of bug#12544.
4544 (alarm) [HAVE_SETITIMER]: Be more conformant to the expected
4545 return results.
4546 [!HAVE_SETITIMER]: Behave as the previous version that didn't
4547 support timers.
4548
4549 * emacs.c (shut_down_emacs) [WINDOWSNT]: Move the call to
4550 term_ntproc after all the other bookkeeping, to get timers working
4551 as long as possible.
4552
4553 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
4554
4555 * xdisp.c (syms_of_xdisp): Default message-log-max to 1000, not 100.
4556 Suggested by Juri Linkov in
4557 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00821.html>.
4558
4559 Prefer plain 'static' to 'static inline' (Bug#12541).
4560 With static functions, modern compilers inline pretty well by
4561 themselves; advice from programmers often hurts as much as it helps.
4562 On my host (x86-64, Fedora 17, GCC 4.7.2, default 'configure'),
4563 this change shrinks the text size of the Emacs executable by 1.1%
4564 without affecting CPU significantly in my benchmark.
4565 * alloc.c (mem_find, live_string_p, live_cons_p, live_symbol_p)
4566 (live_float_p, live_misc_p, live_vector_p, live_buffer_p)
4567 (mark_maybe_object, mark_maybe_pointer, bounded_number):
4568 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
4569 (bset_auto_fill_function, bset_auto_save_file_format)
4570 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
4571 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
4572 (bset_cache_long_line_scans, bset_case_fold_search)
4573 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
4574 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
4575 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
4576 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
4577 (bset_header_line_format, bset_indicate_buffer_boundaries)
4578 (bset_indicate_empty_lines, bset_invisibility_spec)
4579 (bset_left_fringe_width, bset_major_mode, bset_mark)
4580 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
4581 (bset_name, bset_overwrite_mode, bset_pt_marker)
4582 (bset_right_fringe_width, bset_save_length)
4583 (bset_scroll_bar_width, bset_scroll_down_aggressively)
4584 (bset_scroll_up_aggressively, bset_selective_display)
4585 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
4586 (bset_word_wrap, bset_zv_marker, set_buffer_overlays_before)
4587 (set_buffer_overlays_after):
4588 * category.c (bset_category_table):
4589 * charset.c (read_hex):
4590 * coding.c (produce_composition, produce_charset)
4591 (handle_composition_annotation, handle_charset_annotation)
4592 (char_encodable_p):
4593 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers)
4594 (assign_row, set_frame_matrix_frame, make_current)
4595 (add_row_entry):
4596 * eval.c (set_specpdl_symbol, set_specpdl_old_value):
4597 * fns.c (maybe_resize_hash_table):
4598 * frame.c (fset_buffer_predicate, fset_minibuffer_window):
4599 * gmalloc.c (register_heapinfo):
4600 * image.c (lookup_image_type):
4601 * intervals.c (set_interval_object, set_interval_left)
4602 (set_interval_right, copy_interval_parent, rotate_right)
4603 (rotate_left, balance_possible_root_interval):
4604 * keyboard.c (kset_echo_string, kset_kbd_queue)
4605 (kset_keyboard_translate_table, kset_last_prefix_arg)
4606 (kset_last_repeatable_command, kset_local_function_key_map)
4607 (kset_overriding_terminal_local_map, kset_real_last_command)
4608 (kset_system_key_syms, clear_event, set_prop):
4609 * lread.c (digit_to_number):
4610 * marker.c (attach_marker, live_buffer, set_marker_internal):
4611 * nsterm.m (ns_compute_glyph_string_overhangs):
4612 * process.c (pset_buffer, pset_command)
4613 (pset_decode_coding_system, pset_decoding_buf)
4614 (pset_encode_coding_system, pset_encoding_buf, pset_filter)
4615 (pset_log, pset_mark, pset_name, pset_plist, pset_sentinel)
4616 (pset_status, pset_tty_name, pset_type, pset_write_queue):
4617 * syntax.c (bset_syntax_table, dec_bytepos):
4618 * terminal.c (tset_param_alist):
4619 * textprop.c (interval_has_some_properties)
4620 (interval_has_some_properties_list):
4621 * window.c (wset_combination_limit, wset_dedicated)
4622 (wset_display_table, wset_hchild, wset_left_fringe_width)
4623 (wset_left_margin_cols, wset_new_normal, wset_new_total)
4624 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
4625 (wset_right_fringe_width, wset_right_margin_cols)
4626 (wset_scroll_bar_width, wset_start, wset_temslot, wset_vchild)
4627 (wset_vertical_scroll_bar_type, wset_window_parameters):
4628 * xdisp.c (wset_base_line_number, wset_base_line_pos)
4629 (wset_column_number_displayed, wset_region_showing)
4630 (window_box_edges, run_window_scroll_functions)
4631 (append_glyph_string_lists, prepend_glyph_string_lists)
4632 (append_glyph_string, set_glyph_string_background_width)
4633 (append_glyph, append_composite_glyph)
4634 (take_vertical_position_into_account):
4635 * xfaces.c (x_create_gc, x_free_gc, merge_face_vectors)
4636 (face_attr_equal_p, lface_equal_p, hash_string_case_insensitive)
4637 (lface_hash, lface_same_font_attributes_p, lookup_face):
4638 * xml.c (libxml2_loaded_p):
4639 * xterm.c (x_set_mode_line_face_gc, x_set_glyph_string_gc)
4640 (x_set_glyph_string_clipping, x_clear_glyph_string_rect):
4641 Now 'static', not 'static inline'.
4642
4643 * bidi.c: Tune.
4644 (bidi_copy_it): Do the whole copy with a single memcpy.
4645 (bidi_char_at_pos): Merge the two STRING_CHAR calls into one.
4646
4647 Revert the FOLLOW-SYMLINKS change for file-attributes.
4648 Doing it right would require several changes to Tramp, and there's
4649 not enough time to get that tested before the freeze today.
4650 * dired.c (directory_files_internal, Ffile_attributes):
4651 Undo last change.
4652
4653 * frame.c (x_report_frame_params): Port better to wider ints.
4654 Do not assume that EMACS_UINT is the same width as uprintmax_t,
4655 or that pointers can be printed in 15 decimal digits.
4656 Avoid GCC warnings if EMACS_UINT is wider than a pointer.
4657
4658 2012-09-30 Fabrice Popineau <fabrice.popineau@supelec.fr>
4659
4660 Support x64 build on MS-Windows.
4661 * w32term.h (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK): Define for x64.
4662 (SET_SCROLL_BAR_W32_WINDOW): Cast ID to intptr_t, for
4663 compatibility with x64.
4664 (x_get_focus_frame): Add prototype.
4665
4666 * w32term.c (w32_draw_underwave): Don't use GCC extensions for
4667 defining an XRectangle structure.
4668
4669 * w32proc.c (RVA_TO_PTR, w32_executable_type): Fix pointer
4670 arithmetics for compatibility with x64.
4671
4672 * w32menu.c (add_menu_item): Use UINT_PTR instead of UINT, for
4673 compatibility with x64.
4674
4675 * w32heap.h: Adjust prototypes and declarations.
4676
4677 * w32heap.c (RVA_TO_PTR, allocate_heap, sbrk, init_heap)
4678 (round_heap): Use DWORD_PTR, ptrdiff_t and size_t instead of
4679 DWORD, long, and unsigned long, for compatibility with x64.
4680 (allocate_heap) [_WIN64]: Reserve 32GB of memory.
4681 (sbrk): Argument is now of type ptrdiff_t.
4682
4683 * w32fns.c (HMONITOR): Condition declaration on _WIN32_WINNT being
4684 less than 0x0500.
4685 (w32_msg_pump): Use WPARAM type for 'result'.
4686
4687 * w32.c (init_environment, get_emacs_configuration): Support AMD64
4688 architecture.
4689 (init_ntproc): Cast arguments of _open_osfhandle to intptr_t, for
4690 compatibility with x64.
4691
4692 * vm-limit.c (lim_data): Now size_t.
4693 (check_memory_limits): Adjust prototypes of real_morecore and
4694 __morecore to receive argument of type ptrdiff_t. Use size_t for
4695 five_percent and data_size.
4696
4697 * unexw32.c: Use DWORD_PTR instead of DWORD for file-scope
4698 variables, for compatibility with x64.
4699 (rva_to_section, offset_to_section, relocate_offset)
4700 (OFFSET_TO_RVA, RVA_TO_OFFSET, RVA_TO_SECTION_OFFSET)
4701 (PTR_TO_RVA, RVA_TO_PTR, OFFSET_TO_PTR, get_section_info)
4702 (copy_executable_and_dump_data): Use DWORD_PTR instead of DWORD
4703 for compatibility with x64.
4704
4705 * sysdep.c (STDERR_FILENO): Define if not already defined.
4706
4707 * ralloc.c (real_morecore): Argument type is now ptrdiff_t.
4708 (__morecore): Argument type is now ptrdiff_t.
4709 (ROUNDUP, MEM_ROUNDUP): Use size_t instead of 'unsigned long'.
4710 (relinquish): Use ptrdiff_t type for 'excess'.
4711 (r_alloc_sbrk): Argument type is now ptrdiff_t.
4712
4713 * makefile.w32-in (HEAPSIZE): Get value from EMACS_HEAPSIZE.
4714 (bootstrap-temacs-CMD, bootstrap-temacs-SH): Use $(EMACS_PURESIZE)
4715 instead of a literal number.
4716
4717 * gmalloc.c [WINDOWSNT]: Include w32heap.h.
4718 (min): Define only if not already defined.
4719
4720 * frame.c (x_report_frame_params): Use EMACS_UINT for the return
4721 value of FRAME_X_WINDOW, to fit a 64-bit pointer on 64-bit Windows
4722 hosts.
4723
4724 * image.c (x_bitmap_pixmap): Return ptrdiff_t, not int, since
4725 'bitmaps' is a pointer.
4726
4727 * dispextern.h (x_bitmap_pixmap): Adjust prototype.
4728
4729 * alloc.c (gdb_make_enums_visible): Now conditional on __GNUC__.
4730
4731 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
4732
4733 file-attributes has a new optional arg FOLLOW-SYMLINKS.
4734 * dired.c (directory_files_internal, Ffile_attributes):
4735 New arg follow_symlinks. All uses changed.
4736
4737 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
4738
4739 * .gdbinit (xbacktrace): Adjust to recent "struct backtrace" change.
4740
4741 2012-09-30 Eli Zaretskii <eliz@gnu.org>
4742
4743 Support atimers and CPU profiler via profile.c on MS-Windows.
4744 * w32proc.c (sig_mask, crit_sig): New static variables.
4745 (sys_signal): Support SIGALRM and SIGPROF.
4746 (sigemptyset, sigaddset, sigfillset, sigprocmask)
4747 (pthread_sigmask, setpgrp): Move here from w32.c. sigaddset,
4748 sigfillset, and sigprocmask are no longer no-ops.
4749 (sigismember): New function.
4750 (struct itimer_data): New definition.
4751 (ticks_now, real_itimer, prof_itimer, clocks_min, crit_real)
4752 (crit_prof): New static variables.
4753 (MAX_SINGLE_SLEEP): New definition.
4754 (timer_loop, stop_timer_thread, term_timers, init_timers)
4755 (start_timer_thread, getitimer, setitimer): New functions.
4756 (alarm): No longer a no-op, calls setitimer.
4757
4758 * w32.c (term_ntproc): Call term_timers.
4759 (init_ntproc): Make sure all signals are unblocked at startup, to
4760 erase any traces of dumping. Call init_timers.
4761
4762 * w32fns.c (hourglass_timer, HOURGLASS_ID): Remove.
4763 Windows-specific code to display the hourglass mouse pointer is no
4764 longer used.
4765 (w32_wnd_proc): Remove code that handled the WM_TIMER message due
4766 to hourglass timer expiration.
4767 (start_hourglass, cancel_hourglass, DEFAULT_HOURGLASS_DELAY):
4768 Remove, no longer used.
4769 (w32_note_current_window, show_hourglass, hide_hourglass):
4770 New functions, in support of hourglass cursor display similar to other
4771 window systems.
4772 (syms_of_w32fns): Don't initialize hourglass_timer.
4773
4774 * xdisp.c (start_hourglass, cancel_hourglass): Now used on
4775 WINDOWSNT as well.
4776 (start_hourglass) [WINDOWSNT]: Call w32_note_current_window.
4777
4778 * w32.h (init_timers, term_timers): Add prototypes.
4779
4780 2012-09-30 Kenichi Handa <handa@gnu.org>
4781
4782 * coding.c (decode_coding_ccl, encode_coding_ccl): Pay attention
4783 to the buffer relocation which may be caused by ccl_driver.
4784
4785 2012-09-30 Jan Djärv <jan.h.d@swipnet.se>
4786
4787 * xfns.c (Fx_file_dialog): Update comment.
4788
4789 * w32fns.c (Fx_file_dialog): Update comment.
4790
4791 * nsfns.m (Fns_read_file_name): Add argument DIR_ONLY_P.
4792 Initialize panel name field if OSX >= 10.6.
4793
4794 * fileio.c (Fnext_read_file_uses_dialog_p): Add HAVE_NS.
4795
4796 * nsfns.m (ns_frame_parm_handlers): Add x_set_fullscreen.
4797
4798 * nsterm.m (NEW_STYLE_FS): New define.
4799 (ns_fullscreen_hook, windowWillEnterFullScreen)
4800 (windowDidEnterFullScreen, windowWillExitFullScreen)
4801 (windowDidExitFullScreen, toggleFullScreen, handleFS)
4802 (setFSValue): New functions.
4803 (EmacsFSWindow): New implementation.
4804 (canBecomeKeyWindow): New function for EmacsFSWindow.
4805 (ns_create_terminal): Set fullscreen_hook to ns_fullscreen_hook.
4806 (dealloc): Release nonfs_window if in fullscreen.
4807 (updateFrameSize:): Call windowDidMove to update top/left.
4808 (windowWillResize:toSize:): Check if frame is still maximized.
4809 (initFrameFromEmacs:): Initialize fs_state, fs_before_fs,
4810 next_maximized, maximized_width, maximized_height and nonfs_window.
4811 Call setCollectionBehavior if NEW_STYLE_FS. Initialize bwidth and
4812 tbar_height.
4813 (windowWillUseStandardFrame:defaultFrame:): Update frame parameter
4814 fullscreen. Set maximized_width/height. Act on next_maximized.
4815
4816 * nsterm.h (MAC_OS_X_VERSION_10_7, MAC_OS_X_VERSION_10_8): New.
4817 (EmacsView): Add variables for fullscreen.
4818 (handleFS, setFSValue, toggleFullScreen): New in EmacsView.
4819 (EmacsFSWindow): New interface for fullscreen.
4820
4821 2012-09-30 Juanma Barranquero <lekktu@gmail.com>
4822
4823 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
4824
4825 2012-09-30 Chong Yidong <cyd@gnu.org>
4826
4827 * fns.c (Frandom): Doc fix.
4828
4829 2012-09-30 Martin Rudalics <rudalics@gmx.at>
4830
4831 * window.c (Vwindow_combination_limit): New default value.
4832 (Qwindow_size): New symbol replacing Qtemp_buffer_resize.
4833
4834 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
4835
4836 * syssignal.h (PROFILER_CPU_SUPPORT): Don't define if PROFILING.
4837 Suggested by Eli Zaretskii in
4838 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00811.html>.
4839
4840 2012-09-30 Eli Zaretskii <eliz@gnu.org>
4841
4842 * profiler.c (Fprofiler_cpu_stop): Use timer_settime only if
4843 HAVE_TIMER_SETTIME is defined.
4844
4845 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
4846
4847 Profiler improvements: more-accurate timers, overflow checks.
4848 * profiler.c: Don't include stdio.h, limits.h, sys/time.h,
4849 signal.h, setjmp.h. Include systime.h instead.
4850 (saturated_add): New function.
4851 (record_backtrace, current_sample_interval): Use EMACS_INT, not size_t.
4852 (record_backtrace, handle_profiler_signal): Saturate on fixnum overflow.
4853 (profiler_timer, profiler_timer_ok) [HAVE_TIMER_SETTIME]:
4854 New static vars.
4855 (enum profiler_cpu_running): New enum.
4856 (profiler_cpu_running): Now of that enum type, not bool.
4857 All uses changed to store the new value.
4858 (handle_profiler_signal): Rename from sigprof_handler_1,
4859 for consistency with other handlers. Do not check whether
4860 cpu_log is a hash-table if garbage collecting, since it
4861 doesn't matter in that case.
4862 (deliver_profiler_signal): Rename from sigprof_handler,
4863 for consistency with other handlers.
4864 (setup_cpu_timer): New function, with much of what used to be in
4865 Fprofiler_cpu_start. Check for out-of-range argument.
4866 Prefer timer_settime if available, and prefer
4867 thread cputime clocks, then process cputime clocks, then
4868 monotonic clocks, to the old realtime clock. Use make_timeval
4869 to round more-correctly when falling back to setitimer.
4870 (Fprofiler_cpu_start): Use it.
4871 (Fprofiler_cpu_stop): Prefer timer_settime if available.
4872 Don't assume that passing NULL as the 2nd argument of setitimer
4873 is the same as passing a pointer to all-zero storage.
4874 Ignore SIGPROF afterwards.
4875 (malloc_probe): Saturate at MOST_POSITIVE_FIXNUM.
4876 * sysdep.c (emacs_sigaction_init): Also mask out SIGPROF in
4877 non-fatal signal handlers. Ignore SIGPROF on startup.
4878 * syssignal.h (PROFILER_CPU_SUPPORT): Define this macro here, not
4879 in profiler.c, since sysdep.c now uses it.
4880
4881 * sysdep.c (handle_fatal_signal): Bump backtrace size to 40.
4882 Suggested by Eli Zaretskii in
4883 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00796.html>.
4884
4885 2012-09-29 Juanma Barranquero <lekktu@gmail.com>
4886
4887 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
4888
4889 2012-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
4890
4891 * lisp.h (struct backtrace): Remove indirection for `function' field.
4892 * xdisp.c (redisplay_internal):
4893 * profiler.c (record_backtrace, sigprof_handler_1):
4894 * alloc.c (Fgarbage_collect):
4895 * eval.c (interactive_p, Fsignal, eval_sub, Ffuncall, Fbacktrace)
4896 (Fbacktrace_frame): Adjust accordingly.
4897
4898 2012-09-28 Glenn Morris <rgm@gnu.org>
4899
4900 * eval.c (Frun_hook_with_args, Frun_hook_with_args_until_success)
4901 (Frun_hook_with_args_until_failure): Doc fixes.
4902
4903 2012-09-28 Eli Zaretskii <eliz@gnu.org>
4904
4905 * xdisp.c (syms_of_xdisp) <Qredisplay_internal>: Rename from
4906 Qautomatic_redisplay and change the symbol name. All users changed.
4907
4908 2012-09-28 Tomohiro Matsuyama <tomo@cx4a.org>
4909
4910 * profiler.c (sigprof_handler): Fix race condition.
4911
4912 2012-09-28 Glenn Morris <rgm@gnu.org>
4913
4914 * lread.c (lisp_file_lexically_bound_p): Handle #! lines. (Bug#12528)
4915
4916 2012-09-27 Paul Eggert <eggert@cs.ucla.edu>
4917
4918 Check more robustly for timer_settime.
4919 * Makefile.in (LIB_TIMER_TIME): New macro.
4920 (LIBES): Add it.
4921 * atimer.c (alarm_timer, alarm_timer_ok, set_alarm, init_atimer):
4922 Use HAVE_TIMER_SETTIME, not SIGEV_SIGNAL, to decide whether to
4923 call timer_settime.
4924
4925 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
4926
4927 * profiler.c (Fprofiler_cpu_start): Remove unnecessary flag SA_SIGINFO.
4928
4929 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
4930
4931 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
4932
4933 2012-09-26 Paul Eggert <eggert@cs.ucla.edu>
4934
4935 * character.h (MAYBE_UNIFY_CHAR): Remove.
4936 * charset.c, charset.h (maybe_unify_char): Now static.
4937 * charset.c (decode_char): Use maybe_unify_char, not MAYBE_UNIFY_CHAR.
4938 Since this stuff is now private to charset.c, there's no need for
4939 a public macro and no need to inline by hand.
4940
4941 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
4942 Stefan Monnier <monnier@iro.umontreal.ca>
4943 Juanma Barranquero <lekktu@gmail.com>
4944
4945 * profiler.c: New file.
4946 * Makefile.in (base_obj): Add profiler.o.
4947 * makefile.w32-in (OBJ2, GLOBAL_SOURCES): Add profiler.c.
4948 ($(BLD)/profiler.$(O)): New target.
4949 * emacs.c (main): Call syms_of_profiler.
4950 * alloc.c (Qautomatic_gc): New constant.
4951 (MALLOC_PROBE): New macro.
4952 (xmalloc, xzalloc, xrealloc, lisp_malloc, lisp_align_malloc): Use it.
4953 (total_bytes_of_live_objects): New function.
4954 (Fgarbage_collect): Use it. Record itself in backtrace_list.
4955 Call malloc_probe for the memory profiler.
4956 (syms_of_alloc): Define Qautomatic_gc.
4957 * eval.c (eval_sub, Ffuncall): Reorder assignments to avoid
4958 race condition.
4959 (struct backtrace): Move definition...
4960 * lisp.h (struct backtrace): ..here.
4961 (Qautomatic_gc, profiler_memory_running): Declare vars.
4962 (malloc_probe, syms_of_profiler): Declare functions.
4963 * xdisp.c (Qautomatic_redisplay): New constant.
4964 (redisplay_internal): Record itself in backtrace_list.
4965 (syms_of_xdisp): Define Qautomatic_redisplay.
4966
4967 2012-09-25 Eli Zaretskii <eliz@gnu.org>
4968 2012-09-25 Juanma Barranquero <lekktu@gmail.com>
4969
4970 * makefile.w32-in ($(BLD)/callproc.$(O)): Update dependencies.
4971
4972 2012-09-25 Paul Eggert <eggert@cs.ucla.edu>
4973
4974 Prefer POSIX timers if available.
4975 They avoid a race if the timer is too close to the current time.
4976 * atimer.c (alarm_timer, alarm_timer_ok) [SIGEV_SIGNAL]: New static vars.
4977 (set_alarm) [SIGEV_SIGNAL]: Use POSIX timers if available.
4978 (init_atimer) [SIGEV_SIGNAL]: Initialize them.
4979
4980 2012-09-25 Eli Zaretskii <eliz@gnu.org>
4981
4982 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY): Make it an alias of
4983 CHAR_STRING_ADVANCE.
4984 (STRING_CHAR_ADVANCE_NO_UNIFY): Make it an alias of
4985 STRING_CHAR_ADVANCE.
4986
4987 2012-09-25 Juanma Barranquero <lekktu@gmail.com>
4988
4989 Move Vlibrary_cache to emacs.c and reset before dumping.
4990
4991 * lisp.h (reset_image_types): Declare.
4992 [WINDOWSNT] (Vlibrary_cache): Declare.
4993
4994 * image.c (reset_image_types): New function.
4995
4996 * emacs.c [WINDOWSNT] (Vlibrary_cache): Move from w32.c.
4997 (syms_of_emacs) [WINDOWSNT] <Vlibrary_cache>: Initialize and staticpro.
4998 (Fdump_emacs): Reset Vlibrary_cache and image_types.
4999
5000 * w32.c (Vlibrary_cache): Do not define; moved to emacs.c
5001 (globals_of_w32) <Vlibrary_cache>: Do not initialize.
5002
5003 * w32.h (Vlibrary_cache): Do not declare.
5004
5005 2012-09-25 Eli Zaretskii <eliz@gnu.org>
5006
5007 * w32proc.c (sys_signal): Handle all signals defined by the
5008 MS-Windows runtime, not just SIGCHLD. Actually install the signal
5009 handlers for signals supported by Windows. Don't override
5010 term_ntproc as the handler for SIGABRT.
5011 (sigaction): Rewrite to call sys_signal instead of duplicating its
5012 code.
5013 (sys_kill): Improve commentary.
5014
5015 * w32.c (term_ntproc): Accept (and ignore) one argument, for
5016 consistency with a signature of a signal handler. All callers
5017 changed.
5018 (init_ntproc): Accept an argument DUMPING. If dumping, don't
5019 install term_ntproc as a signal handler for SIGABRT, as that
5020 should be done by the dumped Emacs.
5021
5022 * w32.h (init_ntproc, term_ntproc): Adjust prototypes.
5023
5024 * w32select.c (term_w32select): Protect against repeated
5025 invocation by setting clipboard_owner to NULL after calling
5026 DestroyWindow.
5027
5028 * emacs.c (shut_down_emacs, main): Adapt the calls to init_ntproc
5029 and term_ntproc to their modified signatures.
5030
5031 * character.c (char_string, string_char): Remove calls to
5032 MAYBE_UNIFY_CHAR. See the discussion starting at
5033 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00433.html
5034 for the details.
5035
5036 2012-09-25 Chong Yidong <cyd@gnu.org>
5037
5038 * xdisp.c (mode_line_inverse_video): Delete obsolete variable.
5039
5040 2012-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
5041
5042 * bytecode.c (exec_byte_code): Signal an error instead of aborting,
5043 when encountering an unknown bytecode.
5044
5045 2012-09-24 Paul Eggert <eggert@cs.ucla.edu>
5046
5047 image.c, indent.c: Use bool for booleans.
5048 * dispextern.h (struct image_type): Members valid_p, load, init
5049 now return bool, not int. All uses changed.
5050 * image.c: Omit unnecessary static decls.
5051 (x_create_bitmap_mask, x_build_heuristic_mask):
5052 Return void, not int, since callers don't care about the return value.
5053 (x_create_bitmap_mask, define_image_type, valid_image_p)
5054 (struct image_keyword, parse_image_spec, image_spec_value)
5055 (check_image_size, image_background)
5056 (image_background_transparent, x_clear_image_1)
5057 (postprocess_image, lookup_image, x_check_image_size)
5058 (x_create_x_image_and_pixmap, xbm_image_p)
5059 (Create_Pixmap_From_Bitmap_Data, xbm_read_bitmap_data)
5060 (xbm_load_image, xbm_file_p, xbm_load, xpm_lookup_color)
5061 (init_xpm_functions, xpm_valid_color_symbols_p, xpm_image_p)
5062 (xpm_load, xpm_load_image, lookup_rgb_color, lookup_pixel_color)
5063 (x_to_xcolors, x_build_heuristic_mask, pbm_image_p, pbm_load)
5064 (png_image_p, init_png_functions, png_load_body, png_load)
5065 (jpeg_image_p, init_jpeg_functions, jpeg_load_body, jpeg_load)
5066 (tiff_image_p, init_tiff_functions, tiff_load, gif_image_p)
5067 (init_gif_functions, gif_load, imagemagick_image_p)
5068 (imagemagick_load_image, imagemagick_load, svg_image_p)
5069 (init_svg_functions, svg_load, svg_load_image, gs_image_p)
5070 (gs_load):
5071 * nsimage.m (ns_load_image):
5072 * nsterm.m (ns_defined_color):
5073 * xfaces.c (tty_lookup_color, tty_defined_color, defined_color):
5074 * xfns.c (x_defined_color):
5075 * xterm.c (x_alloc_lighter_color_for_widget)
5076 (x_alloc_nearest_color_1, x_alloc_nearest_color)
5077 (x_alloc_lighter_color):
5078 * indent.c (disptab_matches_widthtab, current_column)
5079 (scan_for_column, string_display_width, indented_beyond_p)
5080 (compute_motion, vmotion, Fvertical_motion):
5081 Use bool for booleans.
5082
5083 2012-09-24 Chong Yidong <cyd@gnu.org>
5084
5085 * chartab.c (Fset_char_table_default): Obsolete function removed.
5086
5087 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
5088
5089 Move pid_t related decls out of lisp.h.
5090 * lisp.h, syswait.h (record_child_status_change, wait_for_termination)
5091 (interruptible_wait_for_termination):
5092 Move these decls from lisp.h to syswait.h, since they use pid_t.
5093 Needed on FreeBSD; see Herbert J. Skuhra in
5094 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00571.html>.
5095 * callproc.c: Include syswait.h.
5096
5097 gnutls.c, gtkutil.c: Use bool for boolean.
5098 * gnutls.c (gnutls_global_initialized, init_gnutls_functions)
5099 (emacs_gnutls_handle_error):
5100 * gtkutil.c (xg_check_special_colors, xg_prepare_tooltip)
5101 (xg_hide_tooltip, xg_create_frame_widgets)
5102 (create_dialog, xg_uses_old_file_dialog)
5103 (xg_get_file_with_chooser, xg_get_file_with_selection)
5104 (xg_get_file_name, xg_have_tear_offs, create_menus, xg_create_widget)
5105 (xg_item_label_same_p, xg_update_menubar)
5106 (xg_modify_menubar_widgets, xg_event_is_for_menubar)
5107 (xg_ignore_gtk_scrollbar, xg_set_toolkit_scroll_bar_thumb)
5108 (xg_event_is_for_scrollbar, xg_pack_tool_bar, xg_make_tool_item)
5109 (is_box_type, xg_tool_item_stale_p, xg_update_tool_bar_sizes)
5110 (update_frame_tool_bar, free_frame_tool_bar):
5111 * gtkutil.c, w32term.c, xterm.c (x_wm_set_size_hint):
5112 * nsmenu.m (ns_update_menubar):
5113 * nsmenu.m, w32menu.c, xmenu.c (set_frame_menubar):
5114 * xfns.c (Fx_show_tip) [USE_GTK]:
5115 Use bool for boolean.
5116 * gtkutil.c (xg_update_frame_menubar):
5117 * xmenu.c (update_frame_menubar):
5118 Return void, not int, since caller ignores return value.
5119 * gtkutil.c (xg_change_toolbar_position):
5120 Return void, not 1.
5121
5122 2012-09-23 Juanma Barranquero <lekktu@gmail.com>
5123
5124 * makefile.w32-in (BLOCKINPUT_H): Remove.
5125 (SYSSIGNAL_H): New macro.
5126 ($(BLD)/alloc.$(O), $(BLD)/atimer.$(O), $(BLD)/buffer.$(O))
5127 ($(BLD)/callproc.$(O), $(BLD)/data.$(O), $(BLD)/dired.$(O))
5128 ($(BLD)/dispnew.$(O), $(BLD)/editfns.$(O), $(BLD)/emacs.$(O))
5129 ($(BLD)/eval.$(O), $(BLD)/fileio.$(O), $(BLD)/floatfns.$(O))
5130 ($(BLD)/fns.$(O), $(BLD)/fontset.$(O), $(BLD)/frame.$(O))
5131 ($(BLD)/fringe.$(O), $(BLD)/image.$(O), $(BLD)/insdel.$(O))
5132 ($(BLD)/keyboard.$(O), $(BLD)/keymap.$(O), $(BLD)/lread.$(O))
5133 ($(BLD)/menu.$(O), $(BLD)/w32inevt.$(O), $(BLD)/w32proc.$(O))
5134 ($(BLD)/print.$(O), $(BLD)/process.$(O), $(BLD)/ralloc.$(O))
5135 ($(BLD)/search.$(O), $(BLD)/sound.$(O), $(BLD)/sysdep.$(O))
5136 ($(BLD)/term.$(O), $(BLD)/window.$(O), $(BLD)/xdisp.$(O))
5137 ($(BLD)/xfaces.$(O), $(BLD)/w32fns.$(O), $(BLD)/w32menu.$(O))
5138 ($(BLD)/w32term.$(O), $(BLD)/w32select.$(O), $(BLD)/w32reg.$(O))
5139 ($(BLD)/w32xfns.$(O)): Update dependencies.
5140
5141 2012-09-23 Eli Zaretskii <eliz@gnu.org>
5142
5143 * .gdbinit: Set breakpoint on terminate_due_to_signal, not on
5144 fatal_error_backtrace.
5145
5146 * w32proc.c (sys_kill): Undo last change: don't do anything when
5147 invoked to deliver SIGABRT to our own process. This is now
5148 handled by emacs_raise.
5149
5150 2012-09-23 Juanma Barranquero <lekktu@gmail.com>
5151
5152 * w32term.c (w32_read_socket): Remove leftover reference to
5153 interrupt_input_pending.
5154
5155 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
5156
5157 Do not use SA_NODEFER.
5158 Problem reported by Dani Moncayo in
5159 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00557.html>.
5160 * alloc.c (die):
5161 * sysdep.c (emacs_abort): Do not reset signal handler.
5162 * emacs.c (terminate_due_to_signal): Reset signal handler here.
5163 * sysdep.c (init_signals): Do not use SA_NODEFER. It wasn't
5164 wanted even on POSIXish hosts, and it doesn't work on Windows.
5165
5166 2012-09-23 Jan Djärv <jan.h.d@swipnet.se>
5167
5168 * xterm.c (x_term_init): Call fixup_locale before and after calling
5169 gtk_init (Bug#12392).
5170
5171 2012-09-23 Chong Yidong <cyd@gnu.org>
5172
5173 * w32.c (w32_delayed_load): Remove LIBRARIES argument; always use
5174 Vdynamic_library_alist.
5175
5176 * gnutls.c (init_gnutls_functions): Caller changed; remove arg.
5177 (Fgnutls_available_p): Caller changed.
5178
5179 * xml.c (init_libxml2_functions, Flibxml_parse_html_region)
5180 (Flibxml_parse_xml_region): Likewise.
5181
5182 * dispextern.h (struct image_type): Remove arg from init function.
5183
5184 * image.c (Finit_image_library, lookup_image_type)
5185 (define_image_type): Remove now-unneeded second arg.
5186 (init_xpm_functions, init_png_functions, init_jpeg_functions)
5187 (init_tiff_functions, init_gif_functions, init_svg_functions):
5188 Arglist and w32_delayed_load calling convention changed.
5189 (gs_type): Remove init_gs_functions; there is no such function.
5190 (valid_image_p, make_image): Fix caller to lookup_image_type.
5191
5192 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
5193
5194 Simplify and avoid signal-handling races (Bug#12471).
5195 * alloc.c (die):
5196 * sysdep.c (emacs_abort) [HAVE_NTGUI]:
5197 Avoid recursive loop if there's a fatal error in the function itself.
5198 * atimer.c (pending_atimers):
5199 * blockinput.h: Don't include "atimer.h"; no longer needed.
5200 (interrupt_input_pending): Remove. All uses removed.
5201 pending_signals now counts both atimers and ordinary interrupts.
5202 This is less racy than having three separate pending-signal flags.
5203 (block_input, unblock_input, totally_unblock_input, unblock_input_to)
5204 (input_blocked_p):
5205 Rename from their upper-case counterparts BLOCK_INPUT,
5206 UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT, UNBLOCK_INPUT_TO,
5207 INPUT_BLOCKED_P, and turn into functions. All uses changed.
5208 This makes it easier to access volatile variables more accurately.
5209 (BLOCK_INPUT_RESIGNAL): Remove. All uses replaced by unblock_input ().
5210 (input_blocked_p): Prefer this to 'interrupt_input_blocked', as
5211 that's more reliable if the code is buggy and sets
5212 interrupt_input_blocked to a negative value. All uses changed.
5213 * atimer.c (deliver_alarm_signal):
5214 Remove. No need to deliver this to the parent; any thread can
5215 handle this signal now. All uses replaced by underlying handler.
5216 * atimer.c (turn_on_atimers):
5217 * dispnew.c (handle_window_change_signal):
5218 * emacs.c (handle_danger_signal):
5219 * keyboard.c (kbd_buffer_get_event):
5220 Don't reestablish signal handler; not needed with sigaction.
5221 * blockinput.h (UNBLOCK_INPUT_TO, TOTALLY_UNBLOCK_INPUT)
5222 (UNBLOCK_INPUT_TO):
5223 Rework to avoid unnecessary accesses to volatile variables.
5224 (UNBLOCK_INPUT_TO): Now a function.
5225 (totally_unblock_input, unblock_input): New decls.
5226 * data.c (handle_arith_signal, deliver_arith_signal): Move to sysdep.c
5227 (init_data): Remove. Necessary stuff now done in init_signal.
5228 * emacs.c, xdisp.c: Include "atimer.h", since we invoke atimer functions.
5229 * emacs.c (handle_fatal_signal, deliver_fatal_signal): Move to sysdep.c.
5230 (fatal_error_code): Remove; no longer needed.
5231 (terminate_due_to_signal): Rename from fatal_error_backtrace, since
5232 it doesn't always backtrace. All uses changed. No need to reset
5233 signal to default, since sigaction and/or die does that for us now.
5234 Use emacs_raise (FOO), not kill (getpid (), FOO).
5235 (main): Check more-accurately whether we're dumping.
5236 Move fatal-error setup to sysdep.c
5237 * floatfns.c: Do not include "syssignal.h"; no longer needed.
5238 * gtkutil.c (xg_get_file_name, xg_get_font):
5239 Remove no-longer-needed signal-mask manipulation.
5240 * keyboard.c, process.c (POLL_FOR_INPUT):
5241 Don't depend on USE_ASYNC_EVENTS, a symbol that is never defined.
5242 * keyboard.c (read_avail_input): Remove.
5243 All uses replaced by gobble_input.
5244 (Ftop_level): Use TOTALLY_UNBLOCK_INPUT rather than open code.
5245 (kbd_buffer_store_event_hold, gobble_input):
5246 (record_asynch_buffer_change) [USABLE_SIGIO]:
5247 (store_user_signal_events):
5248 No need to mess with signal mask.
5249 (gobble_input): If blocking input and there are terminals, simply
5250 set pending_signals to 1 and return. All hooks changed to not
5251 worry about whether input is blocked.
5252 (process_pending_signals): Clear pending_signals before processing
5253 them, in case a signal comes in while we're processing.
5254 By convention callers now test pending_signals before calling us.
5255 (UNBLOCK_INPUT_TO, unblock_input, totally_unblock_input):
5256 New functions, to support changes to blockinput.h.
5257 (handle_input_available_signal): Now extern.
5258 (reinvoke_input_signal): Remove. All uses replaced by
5259 handle_async_input.
5260 (quit_count): Now volatile, since a signal handler uses it.
5261 (handle_interrupt): Now takes bool IN_SIGNAL_HANDLER as arg.
5262 All callers changed. Block SIGINT only if not already blocked.
5263 Clear sigmask reliably, even if Fsignal returns, which it can.
5264 Omit unnecessary accesses to volatile var.
5265 (quit_throw_to_read_char): No need to restore sigmask.
5266 * keyboard.c (gobble_input, handle_user_signal):
5267 * process.c (wait_reading_process_output):
5268 Call signal-handling code rather than killing ourselves.
5269 * lisp.h: Include <float.h>, for...
5270 (IEEE_FLOATING_POINT): New macro, moved here to avoid duplication.
5271 (pending_signals): Now volatile.
5272 (syms_of_data): Now const if IEEE floating point.
5273 (handle_input_available_signal) [USABLE_SIGIO]:
5274 (terminate_due_to_signal, record_child_status_change): New decls.
5275 * process.c (create_process): Avoid disaster if memory is exhausted
5276 while we're processing a vfork, by tightening the critical section
5277 around the vfork.
5278 (send_process_frame, process_sent_to, handle_pipe_signal)
5279 (deliver_pipe_signal): Remove. No longer needed, as Emacs now
5280 ignores SIGPIPE.
5281 (send_process): No need for setjmp/longjmp any more, since the
5282 SIGPIPE stuff is now gone. Instead, report an error if errno
5283 is EPIPE.
5284 (record_child_status_change): Now extern. PID and W are now args.
5285 Return void, not bool. All callers changed.
5286 * sysdep.c (wait_debugging) [(BSD_SYSTEM || HPUX) && !defined (__GNU__)]:
5287 Remove. All uses removed. This bug should be fixed now in a
5288 different way.
5289 (wait_for_termination_1): Use waitpid rather than sigsuspend,
5290 and record the child status change directly. This avoids the
5291 need to futz with the signal mask.
5292 (process_fatal_action): Move here from emacs.c.
5293 (emacs_sigaction_flags): New function, containing
5294 much of what used to be in emacs_sigaction_init.
5295 (emacs_sigaction_init): Use it. Block nonfatal system signals that are
5296 caught by emacs, to make races less likely.
5297 (deliver_process_signal): Rename from handle_on_main_thread.
5298 All uses changed.
5299 (BACKTRACE_LIMIT_MAX): Now at top level.
5300 (thread_backtrace_buffer, threadback_backtrace_pointers):
5301 New static vars.
5302 (deliver_thread_signal, deliver_fatal_thread_signal):
5303 New functions, for more-accurate delivery of thread-specific signals.
5304 (handle_fatal_signal, deliver_fatal_signal): Move here from emacs.c.
5305 (deliver_arith_signal): Handle in this thread, not
5306 in the main thread, since it's triggered by this thread.
5307 (maybe_fatal_sig): New function.
5308 (init_signals): New arg DUMPING so that we can be more accurate
5309 about whether we're dumping. Caller changed.
5310 Treat thread-specific signals differently from process-general signals.
5311 Block all signals while handling fatal error; that's safer.
5312 xsignal from SIGFPE only on non-IEEE hosts, treating it as fatal
5313 on IEEE hosts.
5314 When batch, ignore SIGHUP, SIGINT, SIGTERM if they were already ignored.
5315 Ignore SIGPIPE unless batch.
5316 (emacs_backtrace): Output backtrace for the appropriate thread,
5317 which is not necessarily the main thread.
5318 * syssignal.h: Include <stdbool.h>.
5319 (emacs_raise): New macro.
5320 * xterm.c (x_connection_signal): Remove; no longer needed
5321 now that we use sigaction.
5322 (x_connection_closed): No need to mess with sigmask now.
5323 (x_initialize): No need to reset SIGPIPE handler here, since
5324 init_signals does this for us now.
5325
5326 2012-09-23 Jan Djärv <jan.h.d@swipnet.se>
5327
5328 * nsterm.m (ns_dumpglyphs_image): dr is a new rect to draw image into,
5329 background rect may be larger (Bug#12245).
5330
5331 2012-09-23 Chong Yidong <cyd@gnu.org>
5332
5333 * keyboard.c (timer_check): Avoid quitting during Fcopy_sequence.
5334
5335 2012-09-22 Paul Eggert <eggert@cs.ucla.edu>
5336
5337 * .gdbinit: Just stop at fatal_error_backtrace.
5338 See Stefan Monnier's request in
5339 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00549.html>.
5340 Remove no-longer-used query of system type.
5341
5342 2012-09-22 Chong Yidong <cyd@gnu.org>
5343
5344 * search.c (Freplace_match): Doc fix (Bug#12325).
5345
5346 * minibuf.c (Finternal_complete_buffer): Doc fix (Bug#12391).
5347
5348 * editfns.c (Fline_beginning_position): Doc fix (Bug#12416).
5349 (Fline_end_position): Doc fix.
5350
5351 * cmds.c (Fforward_char, Fbackward_char): Doc fix (Bug#12414).
5352
5353 2012-09-22 Chong Yidong <cyd@gnu.org>
5354
5355 * dispextern.h (struct image_type): Add new slot, storing a type
5356 initialization function.
5357
5358 * image.c (define_image_type): Call the image initializer function
5359 if it is defined. Arguments and return value changed.
5360 (valid_image_p, make_image): Callers changed.
5361 (xbm_type, xpm_type, pbm_type, png_type, jpeg_type, tiff_type)
5362 (gif_type, imagemagick_type, svg_type, gs_type):
5363 Add initialization functions.
5364 (Finit_image_library): Call lookup_image_type.
5365 (CHECK_LIB_AVAILABLE): Macro deleted.
5366 (lookup_image_type): Call define_image_type here, rather than via
5367 Finit_image_library, and without using CHECK_LIB_AVAILABLE.
5368 (syms_of_image): Move define_image_type calls for xbm_type and
5369 pbm_type to lookup_image_type.
5370
5371 2012-09-22 Eli Zaretskii <eliz@gnu.org>
5372
5373 * keyboard.c (timer_check_2): Move calculation of 'timers' and
5374 'idle_timers' from here ...
5375 (timer_check): ... to here. Use Fcopy_sequence to copy the timer
5376 lists, to avoid infloops when the timer does something stupid,
5377 like reinvoke itself with the same or smaller time-out.
5378 (Bug#12447)
5379
5380 2012-09-22 Martin Rudalics <rudalics@gmx.at>
5381
5382 * window.c (Fsplit_window_internal): Handle only Qt value of
5383 Vwindow_combination_limit separately.
5384 (Qtemp_buffer_resize): New symbol.
5385 (Vwindow_combination_limit): New default value.
5386 Rewrite doc-string.
5387
5388 2012-09-22 Eli Zaretskii <eliz@gnu.org>
5389
5390 * xdisp.c (next_overlay_string): Initialize it->end_charpos for
5391 the new overlay string. (Bug#10159)
5392
5393 2012-09-22 Paul Eggert <eggert@cs.ucla.edu>
5394
5395 * emacs.c (shut_down_emacs): Don't assume stderr is buffered,
5396 or that fprintf is async-signal-safe. POSIX doesn't require
5397 either assumption.
5398
5399 2012-09-22 Chong Yidong <cyd@gnu.org>
5400
5401 * buffer.c (Fset_buffer_modified_p): Handle indirect buffers
5402 (Bug#8207).
5403
5404 2012-09-22 Kenichi Handa <handa@gnu.org>
5405
5406 * composite.c (composition_reseat_it): Handle the case that a
5407 grapheme cluster is not covered by a single font (Bug#12352).
5408
5409 2012-09-21 Chong Yidong <cyd@gnu.org>
5410
5411 * image.c (define_image_type): Avoid adding duplicate types to
5412 image_types (Bug#12463). Suggested by Jörg Walter.
5413
5414 2012-09-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5415
5416 * unexmacosx.c: Define LC_DATA_IN_CODE if not defined.
5417 (print_load_command_name): Add case LC_DATA_IN_CODE.
5418 (dump_it) [LC_DATA_IN_CODE]: Call copy_linkedit_data.
5419
5420 2012-09-21 Glenn Morris <rgm@gnu.org>
5421
5422 * eval.c (Frun_hook_with_args_until_success)
5423 (Frun_hook_with_args_until_failure): Doc fixes. (Bug#12393)
5424
5425 2012-09-21 Andreas Schwab <schwab@linux-m68k.org>
5426
5427 * fileio.c (Ffile_selinux_context): Only call freecon when
5428 lgetfilecon succeeded.
5429 (Fset_file_selinux_context): Likewise. (Bug#12444)
5430
5431 2012-09-21 Eli Zaretskii <eliz@gnu.org>
5432
5433 * xdisp.c (try_window_reusing_current_matrix): Under bidi
5434 reordering, locate the cursor by calling set_cursor_from_row; if
5435 that fails, clear the desired glyph matrix before returning a
5436 failure indication to the caller. Fixes leaving garbled display
5437 when fast scrolling with a down-key. (Bug#12403)
5438 (compute_stop_pos_backwards): Fix a typo that caused crashes while
5439 scrolling through multibyte text.
5440
5441 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
5442
5443 * alloc.c (mark_object) <PVEC_WINDOW>: Mark prev/next_buffers *after*
5444 calling mark_vectorlike since that's the one that marks the window.
5445 (mark_discard_killed_buffers): Mark the final cdr.
5446 * window.h (struct window): Move prev/next_buffers to the
5447 non-standard fields.
5448 * window.c (make_window): Initialize prev/next_buffers manually.
5449
5450 2012-09-20 Paul Eggert <eggert@cs.ucla.edu>
5451
5452 Omit unused arg EXPECTED from socket hooks.
5453 * keyboard.c (gobble_input, read_avail_input, tty_read_avail_input):
5454 * nsterm.m (ns_term_init):
5455 * termhooks.h (struct terminal.read_socket_hook):
5456 * w32inevt.c (w32_console_read_socket):
5457 * w32term.c (w32_read_socket):
5458 * xterm.c (XTread_socket):
5459 Omit unused arg EXPECTED. All callers changed.
5460 (store_user_signal_events): Return void, not int, since callers no
5461 longer care about the return value. All uses changed.
5462
5463 2012-09-20 Juanma Barranquero <lekktu@gmail.com>
5464
5465 * w32gui.h (XParseGeometry): Do not declare.
5466
5467 2012-09-19 Paul Eggert <eggert@cs.ucla.edu>
5468
5469 * w32inevt.c (w32_console_read_socket): Return -1 on failure, not 0.
5470 Ignore 'expected'. See Eli Zaretskii in
5471 <http://bugs.gnu.org/12471#8> (last line).
5472
5473 * frame.c (read_integer): Remove. All uses replaced by strtol/strtoul.
5474 (XParseGeometry): Now static. Substitute extremal values for
5475 values that are out of range.
5476
5477 2012-09-19 Jan Djärv <jan.h.d@swipnet.se>
5478
5479 * w32xfns.c (read_integer, XParseGeometry): Move to frame.c.
5480
5481 * nsfns.m (XParseGeometry): Remove.
5482 (Fx_create_frame): Call x_set_offset to correctly interpret
5483 top_pos in geometry.
5484
5485 * frame.c (read_integer, XParseGeometry): Move from w32xfns.c.
5486 (Fx_parse_geometry): If there is a space in string, call
5487 Qns_parse_geometry, otherwise do as on other terms (Bug#12368).
5488
5489 2012-09-17 Eli Zaretskii <eliz@gnu.org>
5490
5491 * search.c (scan_buffer): Use character positions in calls to
5492 region_cache_forward and region_cache_backward, not byte
5493 positions. (Bug#12196)
5494
5495 * w32term.c (w32_read_socket): Set pending_signals to 1, like
5496 xterm.c does. Reported by Daniel Colascione <dancol@dancol.org>.
5497
5498 * ralloc.c (r_alloc_init) [!SYSTEM_MALLOC]: Initialize
5499 __malloc_extra_blocks to 32 instead of 64, like alloc.c did in
5500 emacs_blocked_malloc, now deleted.
5501
5502 2012-09-17 Paul Eggert <eggert@cs.ucla.edu>
5503
5504 Remove no-longer-needed Solaris 2.4 vfork bug workaround.
5505 The workaround was for improving performance on Solaris 2.4, but
5506 is getting in the way now. Emacs will still work if someone is
5507 still running Solaris 2.4 in a museum somewhere; Sun dropped
5508 support for Solaris 2.4 in 2003.
5509 * callproc.c (Fcall_process) [HAVE_WORKING_VFORK]:
5510 * process.c (create_process) [HAVE_WORKING_VFORK]:
5511 Omit now-unnecessary workaround for the Solaris 2.4 vfork bug,
5512 since Emacs no longer uses vfork on that platform.
5513
5514 2012-09-17 Glenn Morris <rgm@gnu.org>
5515
5516 * emacs.c: Use COPYRIGHT.
5517
5518 2012-09-16 Paul Eggert <eggert@cs.ucla.edu>
5519
5520 Remove configure's --without-sync-input option (Bug#12450).
5521 When auditing signal-handling in preparation for cleaning it up,
5522 I found that SYNC_INPUT has race conditions and would be a real
5523 pain to fix. Since it's an undocumented and deprecated
5524 configure-time option, now seems like a good time to remove it.
5525 Also see <http://bugs.gnu.org/11080#16>.
5526 * alloc.c (_bytes_used, __malloc_extra_blocks, _malloc_internal)
5527 (_free_internal) [!DOUG_LEA_MALLOC]: Remove decls.
5528 (alloc_mutex) [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
5529 (malloc_hysteresis):
5530 (check_depth) [XMALLOC_OVERRUN_CHECK]:
5531 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT):
5532 (__malloc_hook, __realloc_hook, __free_hook, BYTES_USED)
5533 (dont_register_blocks, bytes_used_when_reconsidered)
5534 (bytes_used_when_full, emacs_blocked_free, emacs_blocked_malloc)
5535 (emacs_blocked_realloc, reset_malloc_hooks, uninterrupt_malloc):
5536 [!SYSTEM_MALLOC && !SYNC_INPUT]:
5537 Remove. All uses removed.
5538 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): Use a different
5539 implementation, one that depends on whether the new macro
5540 XMALLOC_BLOCK_INPUT_CHECK is defined, not on whether SYNC_INPUT
5541 is defined.
5542 * atimer.c (run_timers, handle_alarm_signal):
5543 * keyboard.c (pending_signal, poll_for_input_1, poll_for_input)
5544 (handle_async_input, process_pending_signals)
5545 (handle_input_available_signal, init_keyboard):
5546 * nsterm.m (ns_read_socket):
5547 * process.c (wait_reading_process_output):
5548 * regex.c (immediate_quit, IMMEDIATE_QUIT_CHECK):
5549 * sysdep.c (emacs_sigaction_init) [SA_RESTART]:
5550 (emacs_write):
5551 * xterm.c (XTread_socket):
5552 Assume SYNC_INPUT.
5553 * conf_post.h (SA_RESTART) [IRIX6_5]: Do not #undef.
5554 * eval.c (handling_signal): Remove. All uses removed.
5555 * lisp.h (ELSE_PENDING_SIGNALS): Remove.
5556 All uses replaced with the SYNC_INPUT version.
5557 (reset_malloc_hooks, uninterrupt_malloc, handling_signal):
5558 Remove decls.
5559 * sysdep.c, syssignal.h (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
5560 Now static.
5561
5562 * font.c (Ffont_shape_gstring): Remove unused local.
5563
5564 2012-09-16 Glenn Morris <rgm@gnu.org>
5565
5566 * Makefile.in (clean): No longer run nextstep's clean.
5567
5568 * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Remove variables.
5569 (ns_frag): Remove.
5570 (ns-app): Move here from ns.mk, and simplify.
5571 (clean): Simplify nextstep entry.
5572 * ns.mk: Remove file.
5573
5574 2012-09-17 Kenichi Handa <handa@gnu.org>
5575
5576 * font.c (Ffont_shape_gstring): Fix previous change; GLYPHs may
5577 not covert the last few charactes.
5578
5579 2012-09-16 Kenichi Handa <handa@gnu.org>
5580
5581 * font.c (Ffont_shape_gstring): Don't adjust grapheme cluster
5582 here, but just check the validity of glyphs in the glyph-string.
5583
5584 2012-09-16 Martin Rudalics <rudalics@gmx.at>
5585
5586 * window.c (Fwindow_parameter, Fset_window_parameter):
5587 Accept any window as argument (Bug#12452).
5588
5589 2012-09-16 Jan Djärv <jan.h.d@swipnet.se>
5590
5591 * nsfns.m (Fx_open_connection): Move initialization of ns_*_types
5592 to ns_term_init to avoid memory leak.
5593
5594 * nsterm.m (ns_update_begin): Initialize bp after lcokFocus, use
5595 explicit retain/release.
5596 (ns_term_init): Only allow one display. Initialize outerpool and
5597 ns_*_types.
5598
5599 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
5600
5601 Port _setjmp fix to POSIXish hosts as well as Microsoft.
5602 * image.c (_setjmp) [!HAVE__SETJMP]: Restore definition, as
5603 it's needed on POSIXish hosts that lack _setjmp. Attempt to solve
5604 the Microsoft problem in a different way, by altering ../nt/config.nt.
5605
5606 2012-09-15 Eli Zaretskii <eliz@gnu.org>
5607
5608 * w32xfns.c:
5609 * w32uniscribe.c:
5610 * w32term.c:
5611 * w32select.c:
5612 * w32reg.c:
5613 * w32proc.c:
5614 * w32menu.c:
5615 * w32inevt.c:
5616 * w32heap.c:
5617 * w32font.c:
5618 * w32fns.c:
5619 * w32console.c:
5620 * w32.c:
5621 * w16select.c: Remove inclusion of setjmp.h, as it is now included
5622 by lisp.h. This completes removal of setjmp.h inclusion
5623 erroneously announced in the previous commit. (Bug#12446)
5624
5625 * lisp.h [!HAVE__SETJMP, !HAVE_SIGSETJMP]: Make the commentary
5626 more accurate.
5627
5628 * image.c (_setjmp) [!HAVE__SETJMP]: Define only if 'setjmp' is
5629 not defined as a macro. The latter happens on MS-Windows.
5630 (Bug#12446)
5631
5632 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
5633
5634 Port better to POSIX hosts lacking _setjmp (Bug#12446).
5635 * lisp.h: Include <setjmp.h> here, since we use its symbols here.
5636 Some instances of '#include <setjmp.h>' removed, if the
5637 only reason for the instance was because "lisp.h" was included.
5638 (sys_jmp_buf, sys_setjmp, sys_longjmp): New symbols.
5639 Unless otherwise specified, replace all uses of jmp_buf, _setjmp,
5640 and _longjmp with the new symbols. Emacs already uses _setjmp if
5641 available, so this change affects only POSIXish hosts that have
5642 sigsetjmp but not _setjmp, such as some versions of Solaris and
5643 Unixware. (Also, POSIX-2008 marks _setjmp as obsolescent.)
5644 * image.c (_setjmp, _longjmp) [HAVE_PNG && !HAVE__SETJMP]: New macros.
5645 (png_load_body) [HAVE_PNG]:
5646 (PNG_LONGJMP) [HAVE_PNG && PNG_LIBPNG_VER < 10500]:
5647 (PNG_JMPBUF) [HAVE_PNG && PNG_LIBPNG_VER >= 10500]:
5648 Use _setjmp and _longjmp rather than sys_setjmp and sys_longjmp,
5649 since PNG requires jmp_buf. This is the only exception to the
5650 general rule that we now use sys_setjmp and sys_longjmp.
5651 This exception is OK since this code does not change the signal
5652 mask or longjmp out of a signal handler.
5653
5654 2012-09-14 Paul Eggert <eggert@cs.ucla.edu>
5655
5656 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
5657 Include "syssignal.h", for 'main_thread'.
5658
5659 2012-09-14 Dmitry Antipov <dmantipov@yandex.ru>
5660
5661 Avoid out-of-range marker position (Bug#12426).
5662 * insdel.c (replace_range, replace_range_2):
5663 Adjust markers before overlays, as suggested by comments.
5664 (insert_1_both, insert_from_buffer_1, adjust_after_replace):
5665 Remove redundant check before calling offset_intervals.
5666
5667 2012-09-14 Martin Rudalics <rudalics@gmx.at>
5668
5669 * xdisp.c (Fformat_mode_line): Unconditionally save/restore
5670 current buffer (Bug#12387).
5671
5672 2012-09-14 Juanma Barranquero <lekktu@gmail.com>
5673
5674 * makefile.w32-in ($(BLD)/alloc.$(O)): Update dependencies.
5675
5676 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
5677
5678 Use a more backwards-compatible timer format (Bug#12430).
5679 * keyboard.c (decode_timer): Get PSECS from the 8th (origin-0)
5680 vector element, not from the 4th, since PSECS is now at the end.
5681 (Fcurrent_idle_time): Doc fix.
5682
5683 2012-09-13 Dmitry Antipov <dmantipov@yandex.ru>
5684
5685 Function to mark objects and remove killed buffers at once.
5686 * alloc.c (discard_killed_buffers): Rename to ...
5687 (mark_discard_killed buffers) ... new name. Add marking
5688 of remaining objects. Fix comment. Adjust users.
5689 (mark_object): Do not touch frame buffer lists here.
5690 * frame.c (delete_frame): Reset frame buffer lists here.
5691
5692 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
5693
5694 Better workaround for GNOME bug when --enable-gcc-warnings.
5695 * emacsgtkfixed.c (G_STATIC_ASSERT): Remove, undoing last change.
5696 Instead, disable -Wunused-local-typedefs. See Dmitry Antipov in
5697 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00335.html>.
5698
5699 Simplify SIGIO usage (Bug#12408).
5700 The code that dealt with SIGIO was crufty and confusing, e.g., it
5701 played tricks like "#undef SIGIO" but these tricks were not used
5702 consistently. Simplify mostly by not #undeffing standard symbols,
5703 e.g., use "defined USABLE_SIGIO" (our symbol, which we can define
5704 or not as we please) rather than "defined SIGIO" (standard symbol
5705 that we probably shouldn't #undef).
5706 * conf_post.h [USG5_4]: Do not include <sys/wait.h> here.
5707 Modules that need it can include it.
5708 [USG5_4 && emacs]: Likewise, do not include the streams stuff here.
5709 * dispextern.h (ignore_sigio): New decl.
5710 * emacs.c (shut_down_emacs): Invoke unrequest_sigio
5711 unconditionally, since it's now a no-op if !USABLE_SIGIO.
5712 * emacs.c (shut_down_emacs):
5713 * keyboard.c (kbd_buffer_store_event_hold):
5714 Use ignore_sigio rather than invoking 'signal' directly.
5715 * keyboard.c (USABLE_FIONREAD && USG5_4): Include <sys/filio.h>,
5716 for FIONREAD.
5717 (FIONREAD, SIGIO): Do not #undef.
5718 (tty_read_avail_input): Use #error rather than a syntax error.
5719 * process.c [USG5_4]: Include <sys/stream.h> and <sys/stropts.h>,
5720 for I_PIPE, used by SETUP_SLAVE_PTY.
5721 (DATAGRAM_SOCKETS): Simplify defn, based on USABLE_FIONREAD.
5722 * sysdep.c (croak): Remove; no longer needed. This bit of
5723 temporary code, with Fred N. Fish's comment that it's temporary,
5724 has been in Emacs since at least 1992!
5725 (init_sigio, reset_sigio, request_sigio, unrequest_sigio):
5726 Arrange for them to be no-ops in all cases when ! USABLE_SIGIO.
5727 * syssignal.h (croak): Remove decl.
5728 (SIGIO, SIGPOO, SIGAIO, SIGPTY): Do not #undef; that's too fragile.
5729 * systty.h [!NO_TERMIO]: Do not include <termio.h>; no longer needed
5730 now that we're termios-only.
5731 (FIONREAD, ASYNC) [BROKEN_FIONREAD]: Do not #undef.
5732 * term.c (dissociate_if_controlling_tty): Use #error rather than
5733 a run-time error.
5734
5735 Work around GCC and GNOME bugs when --enable-gcc-warnings.
5736 * emacsgtkfixed.c (G_STATIC_ASSERT): Redefine to use 'verify',
5737 to work around GNOME bug 683906.
5738 * image.c (jpeg_load_body) [HAVE_JPEG && lint]: Pacify gcc -Wclobber.
5739 (struct my_jpeg_error_mgr) [HAVE_JPEG && lint]: New member fp.
5740 This works around GCC bug 54561.
5741
5742 2012-09-12 Paul Eggert <eggert@cs.ucla.edu>
5743
5744 More fixes for 'volatile' and setjmp/longjmp.
5745 * eval.c (Fdefvar, Fcondition_case): Remove unnecessary 'volatile's.
5746 * image.c (struct png_load_context) [HAVE_PNG]: New type.
5747 (png_load_body) [HAVE_PNG]:
5748 (jpeg_load_body) [HAVE_JPEG]:
5749 New function, with most of the old parent function's body.
5750 (png_load) [HAVE_PNG]:
5751 (jpeg_load) [HAVE_JPEG]:
5752 Invoke the new function, to avoid longjmp munging our locals.
5753 (struct my_jpeg_error_mgr) [HAVE_JPEG]: New members cinfo, failure_code.
5754 (my_error_exit) [HAVE_JPEG]: Don't trust 'setjmp' to return 2 when
5755 longjmp is passed 2, as the C standard doesn't guarantee this.
5756 Instead, store the failure code into mgr->failure_code.
5757
5758 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
5759
5760 * keyboard.c (read_char, requeued_events_pending_p, Finput_pending_p)
5761 (Fdiscard_input, quit_throw_to_read_char, init_keyboard)
5762 (syms_of_keyboard): Remove support for unread-command-char.
5763
5764 2012-09-12 Eli Zaretskii <eliz@gnu.org>
5765
5766 * w32proc.c (sys_kill): If PID is our process ID and the signal is
5767 SIGABRT, call emacs_abort. Avoids silently exiting upon assertion
5768 violation. (Bug#12426)
5769
5770 2012-09-12 Paul Eggert <eggert@cs.ucla.edu>
5771
5772 * image.c (jpeg_memory_src): Don't assume string len fits in unsigned.
5773
5774 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
5775
5776 * eval.c: Add `inhibit-debugger'.
5777 (Qinhibit_debugger): New symbol.
5778 (call_debugger): Bind it instead of Qdebug_on_error.
5779 (maybe_call_debugger): Test Vinhibit_debugger.
5780 (syms_of_eval): Define inhibit-debugger.
5781 * xdisp.c (set_message): Don't bind Qinhibit_debug_on_message.
5782 (syms_of_xdisp): Remove inhibit-debug-on-message.
5783
5784 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
5785
5786 Avoid _setjmp/_longjmp problems with local nonvolatile variables.
5787 If a nonvolatile local variable is written before a _longjmp to
5788 the frame containing the variable, and is read after the _longjmp,
5789 the value read is indeterminate. Some local variables of type
5790 'struct handler' and 'struct catchtag' are used in this way, so
5791 mark each of their slots as volatile if the slot can be set before
5792 _longjmp and read afterwards.
5793 * lisp.h (struct handler): var and chosen_clause are now volatile.
5794 (struct catchtag): val, next, and pdlcount are now volatile.
5795
5796 * bidi.c (bidi_push_it, bidi_pop_it):
5797 * fns.c (copy_hash_table):
5798 * image.c (define_image_type):
5799 * keyboard.c (kbd_buffer_store_event_hold):
5800 * process.c (Fprocess_send_eof):
5801 * xfaces.c (x_create_gc) [HAVE_NS]:
5802 * xgselect.c (xg_select):
5803 Prefer assignment to memcpy when either will do.
5804
5805 * alloc.c (discard_killed_buffers): Tune and simplify a bit.
5806 Use pointer-to-a-pointer to simplify and avoid a NILP check each
5807 time an item is removed. No need to mark this function 'inline';
5808 the compiler knows better than we do.
5809
5810 2012-09-11 Jan Djärv <jan.h.d@swipnet.se>
5811
5812 * nsterm.m (ns_judge_scroll_bars): Pass NO to updateFrameSize.
5813 (updateFrameSize:): Add delay parameter to updateFrameSize, send it
5814 to change_frame_size (Bug#12388).
5815 (windowDidResize:): Pass YES to updateFrameSize.
5816
5817 * nsterm.h: Add delay parameter to updateFrameSize.
5818
5819 2012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
5820
5821 Discard killed buffers from deleted window and frame objects.
5822 This reduces an amount of references to killed buffers and
5823 helps GC to reclaim them faster.
5824 * alloc.c (discard_killed_buffers): New function.
5825 (mark_object): Use it for deleted windows and frames.
5826 (mark_object): If symbol's value is set up for a killed buffer
5827 or deleted frame, restore its global binding.
5828 * data.c (swap_in_global_binding): Add GC notice.
5829 (swap_in_symval_forwarding): Use convenient set_blv_where.
5830 * window.c (wset_next_buffers, wset_prev_buffers): Move ...
5831 * window.h: ... to here.
5832
5833 2012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
5834
5835 Convenient macro to check whether the buffer is live.
5836 * buffer.h (BUFFER_LIVE_P): New macro.
5837 * alloc.c, buffer.c, editfns.c, insdel.c, lread.c, marker.c:
5838 * minibuf.c, print.c, process.c, window.c, xdisp.c: Use it.
5839
5840 2012-09-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5841
5842 * xdisp.c (right_overwritten, right_overwriting): Also handle gstring
5843 composition cases (Bug#12364).
5844
5845 * xterm.c (x_draw_glyph_string): Avoid overwriting inverted left
5846 overhang of succeeding glyphs overlapping box cursor.
5847
5848 * w32term.c (x_draw_glyph_string): Likewise.
5849
5850 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
5851
5852 Simplify, document, and port floating-point (Bug#12381).
5853 The porting part of this patch fixes bugs on non-IEEE platforms
5854 with frexp, ldexp, logb.
5855 * data.c, lisp.h (Qdomain_error, Qsingularity_error, Qunderflow_error):
5856 Now static.
5857 * floatfns.c: Simplify discussion of functions that Emacs doesn't
5858 support, by removing commented-out code and briefly listing the
5859 C89 functions excluded. The commented-out stuff was confusing
5860 maintenance, e.g., we thought we needed cbrt but it was commented out.
5861 (logb): Remove decl; no longer needed.
5862 (isfinite): New macro, if not already supplied.
5863 (isnan): Don't replace any existing macro.
5864 (Ffrexp, Fldexp): Define even if !HAVE_COPYSIGN, as frexp and ldexp
5865 are present on all C89 platforms.
5866 (Ffrexp): Do not special-case zero, as frexp does the right thing
5867 for that case.
5868 (Flogb): Do not use logb, as it doesn't have the desired meaning
5869 on hosts that use non-base-2 floating point. Instead, stick with
5870 frexp, which is C89 anyway. Do not pass an infinity or a NaN to
5871 frexp, to avoid getting an unspecified result.
5872
5873 * xdisp.c (Qinhibit_debug_on_message): Now static.
5874
5875 2012-09-10 Jan Djärv <jan.h.d@swipnet.se>
5876
5877 * nsterm.m (ns_update_begin): Set clip path to whole view by using
5878 NSBezierPath (Bug#12131).
5879
5880 2012-09-10 Chong Yidong <cyd@gnu.org>
5881
5882 * fns.c (Fdelq, Fdelete): Doc fix.
5883
5884 2012-09-10 Paul Eggert <eggert@cs.ucla.edu>
5885
5886 * lisp.h (XSETINT, XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL)
5887 (XSETFLOAT, XSETMISC): Parenthesize macro bodies.
5888
5889 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
5890
5891 * lisp.h (make_lisp_ptr): New macro to replace XSET.
5892 (XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL, XSETFLOAT, XSETMISC):
5893 Use it.
5894
5895 2012-09-09 Eli Zaretskii <eliz@gnu.org>
5896
5897 * fringe.c (draw_fringe_bitmap_1): Don't reduce the width of the
5898 left fringe if the window has a left margin. This avoids leaving
5899 traces of the cursor because its leftmost pixel is not drawn over.
5900
5901 * dispnew.c (update_window_line): When the left margin area of a
5902 screen line is updated, set the redraw_fringe_bitmaps_p flag of
5903 that screen line. (Bug#12277)
5904
5905 2012-09-09 Paul Eggert <eggert@cs.ucla.edu>
5906
5907 Assume C89 or later for math functions (Bug#12381).
5908 This simplifies the code, and makes it a bit smaller and faster,
5909 and (most important) makes it easier to clean up signal handling
5910 since we can stop worring about floating-point exceptions in
5911 library code. That was a problem before C89, but the problem
5912 went away many years ago on all practical Emacs targets.
5913 * data.c, image.c, lread.c, print.c:
5914 Don't include <math.h>; no longer needed.
5915 * data.c, floatfns.c (IEEE_FLOATING_POINT): Don't worry that it
5916 might be autoconfigured, as that never happens.
5917 * data.c (fmod):
5918 * doprnt.c (DBL_MAX_10_EXP):
5919 * print.c (DBL_DIG):
5920 Remove. C89 or later always defines these.
5921 * floatfns.c (HAVE_MATHERR, FLOAT_CHECK_ERRNO, FLOAT_CHECK_DOMAIN)
5922 (in_float, float_error_arg, float_error_arg2, float_error_fn_name)
5923 (arith_error, domain_error, domain_error2):
5924 Remove all this pre-C89 cruft. Do not include <errno.h> as that's
5925 no longer needed -- we simply return what C returns. All uses removed.
5926 (IN_FLOAT, IN_FLOAT2): Remove. All uses replaced with
5927 the wrapped code.
5928 (FLOAT_TO_INT, FLOAT_TO_INT2, range_error, range_error2):
5929 Remove. All uses expanded, as these macros are no longer used
5930 more than once and are now more trouble than they're worth.
5931 (Ftan): Use tan, not sin / cos.
5932 (Flogb): Assume C89 frexp.
5933 (fmod_float): Assume C89 fmod.
5934 (matherr) [HAVE_MATHERR]: Remove; no longer needed.
5935 (init_floatfns): Remove. All uses removed.
5936
5937 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
5938
5939 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Take back
5940 compositeToPoint for OSX < 10.6 (Bug#12390).
5941
5942 2012-09-08 Paul Eggert <eggert@cs.ucla.edu>
5943
5944 * floatfns.c (Ftan): Use tan (x), not (sin (x) / cos (x)).
5945 This produces more-accurate results.
5946
5947 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
5948
5949 * nsterm.m (updateFrameSize): Call setFrame: on the view when size
5950 changes (Bug#12088).
5951
5952 2012-09-08 Chong Yidong <cyd@gnu.org>
5953
5954 * syntax.c (Fstring_to_syntax): Doc fix.
5955
5956 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
5957
5958 * nsterm.m (ns_clip_to_row): Remove code that deals with drawing fringe
5959 in the internal border.
5960 (x_set_window_size): Remove static variables and their usage.
5961 (ns_redraw_scroll_bars): Fix NSTRACE arg.
5962 (ns_after_update_window_line, ns_draw_fringe_bitmap):
5963 Remove fringe/internal border adjustment (Bug#11052).
5964 (ns_draw_fringe_bitmap): Make code more like other terms (xterm.c).
5965 (ns_draw_window_cursor): Remove fringe/internal border adjustment.
5966 (ns_fix_rect_ibw): Remove.
5967 (ns_get_glyph_string_clip_rect): Remove call to ns_fix_rect_ibw.
5968 (ns_dumpglyphs_box_or_relief): Ditto.
5969 (ns_maybe_dumpglyphs_background): Remove fringe/internal border
5970 adjustment.
5971 (ns_dumpglyphs_image): Ditto.
5972 (ns_dumpglyphs_stretch): Fix coding style. Remove fringe/internal
5973 border adjustment.
5974 (ns_set_vertical_scroll_bar): Remove variables barOnVeryLeft/Right and
5975 their usage. Add fringe_extended_p and its use as in other terms.
5976 (ns_judge_scroll_bars): Code style fix. Call updateFrameSize if
5977 scroll bar was removed.
5978 (updateFrameSize): New function.
5979 (windowDidResize): Move code to updateFrameSize and call it.
5980
5981 * nsterm.h (EmacsView): Add updateFrameSize.
5982
5983 2012-09-07 Chong Yidong <cyd@gnu.org>
5984
5985 * textprop.c (Fget_text_property): Minor doc fix (Bug#12323).
5986
5987 * data.c (Flocal_variable_if_set_p): Doc fix (Bug#10713).
5988
5989 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
5990
5991 More signal-handler cleanup (Bug#12327).
5992 * emacs.c (main): Convert three 'signal' calls to 'sigaction' calls.
5993 Problem introduced when merging patches. Noted by Eli Zaretskii in
5994 <http://bugs.gnu.org/12327#67>.
5995 * floatfns.c: Comment fix.
5996 * lisp.h (force_auto_save_soon): Declare regardless of SIGDANGER.
5997 SIGDANGER might not be in scope so "#ifdef SIGDANGER" is not right,
5998 and anyway the declaration is harmless even if SIGDANGER is not defined.
5999 * syssignal.h (SIGIO): Also #undef if (! defined FIONREAD ||
6000 defined BROKEN_FIONREAD). systty.h formerly did this, but other
6001 source files not surprisingly expected syssignal.h to define, or
6002 not define, SIGIO, and it's cleaner to do it that way, for consistency.
6003 Include <sys/ioctl.h>, for FIONREAD.
6004 * systty.h (SIGIO): Do not #undef here; it's now syssignal.h's job.
6005 This eliminates a problem whereby other files mysteriously had
6006 to include "syssignal.h" before including "systty.h" if they
6007 wanted to use "#ifdef SIGIO".
6008
6009 2012-09-07 Eli Zaretskii <eliz@gnu.org>
6010
6011 * w32proc.c (sigaction): New function, emulates Posix 'sigaction'.
6012
6013 * w32.c (sigemptyset): Empty the set.
6014 (sigsetmask, sigmask, sigblock, sigunblock): Remove unused functions.
6015
6016 * alloc.c [ENABLE_CHECKING]: Include signal.h, since we need SIGABRT.
6017
6018 2012-09-07 Dmitry Antipov <dmantipov@yandex.ru>
6019
6020 * alloc.c (mark_buffer): Revert unsafe marking optimization.
6021 (mark_object): Likewise for frame objects.
6022
6023 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
6024
6025 * syssignal.h (handle_on_main_thread): Always declare,
6026 even if FORWARD_SIGNAL_TO_MAIN_THREAD is not defined.
6027 This ports to platforms without HAVE_PTHREAD.
6028
6029 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
6030
6031 Signal-handler cleanup (Bug#12327).
6032 Emacs's signal handlers were written in the old 4.2BSD style with
6033 sigblock and sigmask and so forth, and this led to some
6034 inefficiencies and confusion. Rewrite these to use
6035 pthread_sigmask etc. without copying signal sets around. Also,
6036 get rid of the confusing macros 'SIGNAL_THREAD_CHECK' and
6037 'signal', and instead use functions that do not attempt to take
6038 over the system name space. This patch causes Emacs's text
6039 segment to shrink by 0.7% on my platform, Fedora 17 x86-64.
6040 * alloc.c, emacsgtkfixed.c, nsfns.m, widget.c, xmenu.c:
6041 Do not include <signal.h> or "syssignal.h", as these
6042 modules do not use signals.
6043 * atimer.c, callproc.c, data.c, dispnew.c, emacs.c, floatfns.c:
6044 * gtkutil.c, keyboard.c, process.c, sound.c, sysdep.c, term.c, xterm.c:
6045 Do not include <signal.h>, as "syssignal.h" does that for us now.
6046 * atimer.c (sigmask_atimers): New function.
6047 (block_atimers, unblock_atimers): New functions,
6048 replacing the old macros BLOCK_ATIMERS and UNBLOCK_ATIMERS.
6049 All uses replaced.
6050 * conf_post.h [SIGNAL_H_AHB]: Do not include <signal.h>;
6051 no longer needed here.
6052 * emacs.c (main): Inspect existing signal handler with sigaction,
6053 so that there's no need to block and unblock SIGHUP.
6054 * sysdep.c (struct save_signal): New member 'action', replacing
6055 old member 'handler'.
6056 (save_signal_handlers, restore_signal_handlers):
6057 Use sigaction instead of 'signal' to save and restore.
6058 (get_set_sighandler, set_sighandler) [!WINDOWSNT]:
6059 New function. All users of 'signal' modified to use set_sighandler
6060 if they're writeonly, and to use sys_signal if they're read+write.
6061 (emacs_sigaction_init, forwarded_signal): New functions.
6062 (sys_signal): Remove. All uses replaced by calls to sigaction
6063 and emacs_sigaction_init, or by direct calls to 'signal'.
6064 (sys_sigmask) [!__GNUC__]: Remove; no longer needed.
6065 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove;
6066 all uses replaced by pthread_sigmask etc. calls.
6067 * syssignal.h: Include <signal.h>.
6068 (emacs_sigaction_init, forwarded_signal): New decls.
6069 (SIGMASKTYPE): Remove. All uses replaced by its definiens, sigset_t.
6070 (SIGEMPTYMASK): Remove; all uses replaced by its definiens, empty_mask.
6071 (sigmask, sys_sigmask): Remove; no longer needed.
6072 (sigpause): Remove. All uses replaced by its definiens, sigsuspend.
6073 (sigblock, sigunblock, sigfree):
6074 (sigsetmask) [!defined sigsetmask]:
6075 Remove. All uses replaced by pthread_sigmask.
6076 (signal): Remove. Its remaining uses (with SIG_DFL and SIG_IGN)
6077 no longer need to be replaced, and its typical old uses
6078 are now done via emacs_sigaction_init and sigaction.
6079 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove decls.
6080 (sys_sigdel): Remove; unused.
6081 (NSIG): Remove a FIXME; the code's fine. Remove an unnecessary ifdef.
6082
6083 2012-09-06 Eli Zaretskii <eliz@gnu.org>
6084
6085 * process.c (CAN_HANDLE_MULTIPLE_CHILDREN): Fix a typo that broke
6086 SIGCHLD handling on systems that don't have WNOHANG. (Bug#12327)
6087
6088 2012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
6089
6090 Explicitly mark buffer_defaults and buffer_local_symbols.
6091 * alloc.c (Fgarbage_collect): Mark buffer_defaults and
6092 mark_local_symbols here.
6093 (mark_object): If GC_CHECK_MARKED_OBJECTS, simplify checking
6094 since special buffers aren't marked here any more.
6095 (allocate_buffer): Chain new buffer with all_buffers here...
6096 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): ...and
6097 not here.
6098 (Vbuffer_defaults, Vbuffer_local_symbols): Remove.
6099 (syms_of_buffer): Remove staticpro of the above.
6100 (init_buffer_once): Set names for buffer_defaults and
6101 buffer_local_symbols.
6102
6103 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
6104
6105 Use bool for booleans in font-related modules.
6106 * font.c (font_intern_prop, font_style_to_value)
6107 (font_style_symbolic, font_parse_xlfd, font_parse_fcname)
6108 (generate_otf_features, font_check_otf_features, font_check_otf)
6109 (font_match_p, font_list_entities, font_at):
6110 * fontset.c (fontset_id_valid_p, reorder_font_vector
6111 (fontset_find_font, Fset_fontset_font)
6112 (face_suitable_for_char_p) [0]:
6113 * ftfont.c (fc_initialized, ftfont_get_open_type_spec)
6114 (ftfont_open, ftfont_text_extents, ftfont_check_otf):
6115 (m17n_flt_initialized, ftfont_shape_by_flt):
6116 * ftxfont.c (ftxfont_draw_bitmap, ftxfont_draw):
6117 * nsfont.m (nsfont_draw):
6118 * w32font.c (w32font_draw):
6119 * w32term.c (x_draw_glyphless_glyph_string_foreground):
6120 Use bool for booleans.
6121 * font.h: Adjust to above API changes.
6122 (struct font, struct font_driver, struct font_driver_list):
6123 Use bool for booleans.
6124 (struct font): Remove useless member encoding_type.
6125 All users removed.
6126 * fontset.c, xftfont.c: Omit unnecessary static decls.
6127
6128 2012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
6129
6130 * alloc.c (mark_object): Revert window marking code
6131 since it's unsafe for the Fset_window_configuration.
6132
6133 2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
6134
6135 Fix race conditions with signal handlers and errno (Bug#12327).
6136 Be more systematic about preserving errno whenever a signal
6137 handler returns, even if it's not in the main thread. Do this by
6138 renaming signal handlers to distinguish between signal delivery
6139 and signal handling. All uses changed.
6140 * atimer.c (deliver_alarm_signal): Rename from alarm_signal_handler.
6141 * data.c (deliver_arith_signal): Rename from arith_error.
6142 * dispnew.c (deliver_window_change_signal): Rename from
6143 window_change_signal.
6144 * emacs.c (deliver_error_signal): Rename from fatal_error_signal.
6145 (deliver_danger_signal) [SIGDANGER]: Rename from memory_warning_signal.
6146 * keyboard.c (deliver_input_available_signal): Rename from
6147 input_available_signal.
6148 (deliver_user_signal): Rename from handle_user_signal.
6149 (deliver_interrupt_signal): Rename from interrupt_signal.
6150 * process.c (deliver_pipe_signal): Rename from send_process_trap.
6151 (deliver_child_signal): Rename from sigchld_handler.
6152 * atimer.c (handle_alarm_signal):
6153 * data.c (handle_arith_signal):
6154 * dispnew.c (handle_window_change_signal):
6155 * emacs.c (handle_fatal_signal, handle_danger_signal):
6156 * keyboard.c (handle_input_available_signal):
6157 * keyboard.c (handle_user_signal, handle_interrupt_signal):
6158 * process.c (handle_pipe_signal, handle_child_signal):
6159 New functions, with the actual signal-handling code taken from the
6160 original respective signal handlers, sans the sporadic attempts to
6161 preserve errno, since that's now done by handle_on_main_thread.
6162 * atimer.c (alarm_signal_handler): Remove unnecessary decl.
6163 * emacs.c, floatfns.c, lisp.h: Remove unused FLOAT_CATCH_SIGKILL cruft.
6164 * emacs.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
6165 Move to sysdep.c.
6166 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
6167 Move initialization of main_thread to sysdep.c's init_signals.
6168 * process.c (waitpid) [!WNOHANG]: #define to wait; that's good enough for
6169 our usage, and simplifies the mainline code.
6170 (record_child_status_change): New static function, as a helper
6171 for handle_child_signal, and with most of the old child handler's
6172 contents.
6173 (CAN_HANDLE_MULTIPLE_CHILDREN): New constant.
6174 (handle_child_signal): Use the above.
6175 * sysdep.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
6176 Moved here from emacs.c.
6177 (init_signals) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it;
6178 code moved here from emacs.c's main function.
6179 * sysdep.c, syssignal.h (handle_on_main_thread): New function,
6180 replacing the old SIGNAL_THREAD_CHECK. All uses changed.
6181 This lets callers save and restore errno properly.
6182
6183 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
6184
6185 Remove redundant or unused things here and there.
6186 * lisp.h (CYCLE_CHECK, CHAR_TABLE_TRANSLATE): Remove.
6187 * conf_post.h (RE_TRANSLATE): Use char_table_translate.
6188 * editfns.c (Fcompare_buffer_substrings): Likewise.
6189 * frame.h (struct terminal, struct font_driver_list):
6190 Remove redundant declarations.
6191 * window.h (Qleft, Qright): Likewise.
6192
6193 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
6194
6195 Do not mark objects from deleted buffers, windows and frames.
6196 * alloc.c (mark_buffer): Mark just the buffer if it is dead.
6197 (mark_object): Likewise for windows and frames.
6198
6199 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
6200
6201 * alloc.c (valid_lisp_object_p): Treat killed buffers,
6202 buffer_defaults and buffer_local_symbols as valid objects.
6203 Return special value to denote them.
6204
6205 2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
6206
6207 * fileio.c, filelock.c, floatfns.c, fns.c: Use bool for boolean.
6208 * fileio.c (auto_saving, auto_save_error_occurred, make_temp_name)
6209 (Fexpand_file_name, barf_or_query_if_file_exists, Fcopy_file)
6210 (file_name_absolute_p, Fsubstitute_in_file_name):
6211 (check_executable, check_writable, Ffile_accessible_directory_p)
6212 (Fset_file_selinux_context, Fdefault_file_modes)
6213 (Finsert_file_contents, choose_write_coding_system)
6214 (Fwrite_region, build_annotations, a_write, e_write)
6215 (Fdo_auto_save):
6216 * filelock.c (boot_time_initialized, get_boot_time)
6217 (get_boot_time_1, lock_file_1, within_one_second):
6218 * floatfns.c (in_float):
6219 * fns.c (concat, internal_equal, Frequire, base64_encode_1)
6220 (base64_decode_1, cmpfn_eql, cmpfn_user_defined)
6221 (sweep_weak_table, sweep_weak_hash_tables, secure_hash):
6222 * lisp.h (struct Lisp_Hash_Table.cmpfn):
6223 * window.c (compare_window_configurations):
6224 Use bool for booleans.
6225 * fileio.c (auto_saving_dir_umask, auto_saving_mode_bits)
6226 (Fdefault_file_modes): Now mode_t, not int, for modes.
6227 (Fdo_auto_save): Set a boolean to 1 rather than using ++.
6228 (internal_delete_file): Now returns void, not a (boolean) int,
6229 since nobody was looking at the return value.
6230 * lisp.h, window.h: Adjust to above API changes.
6231
6232 * xdisp.c (set_message): Simplify and reindent last change.
6233
6234 2012-09-05 Juanma Barranquero <lekktu@gmail.com>
6235
6236 * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies.
6237
6238 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
6239
6240 * eval.c (call_debugger): Make the function non-static so that we
6241 can call it from set_message.
6242
6243 * xdisp.c (set_message): Implement the new variable `debug-on-message'.
6244 (syms_of_xdisp): Defvar it and `inhibit-debug-on-message'.
6245
6246 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
6247
6248 Give more-useful info on a fatal error (Bug#12328).
6249 * alloc.c [ENABLE_CHECKING]: Do not include <execinfo.h>.
6250 (die) [ENABLE_CHECKING]: Call fatal_error_backtrace instead
6251 of doing the work ourselves.
6252 * emacs.c (fatal_error_signal): Let fatal_error_backtrace
6253 do most of the work.
6254 (fatal_error_backtrace): New function, taken from the guts
6255 of the old fatal_error_signal, but with a new option to output
6256 a backtrace.
6257 (shut_down_emacs) [!DOS_NT]: Use strsignal to give more-useful
6258 info about the signal than just its number.
6259 * lisp.h (fatal_error_backtrace, emacs_backtrace): New decls.
6260 * sysdep.c: Include <execinfo.h>
6261 (emacs_backtrace): New function, taken partly from the previous
6262 code of the 'die' function.
6263 (emacs_abort): Call fatal_error_backtrace rather than abort.
6264
6265 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
6266
6267 * lread.c (readevalloop): Call internal-macroexpand-for-load to perform
6268 eager (load-time) macro-expansion.
6269 * lisp.mk (lisp): Add macroexp.
6270
6271 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
6272
6273 Simplify redefinition of 'abort' (Bug#12316).
6274 Do not try to redefine the 'abort' function. Instead, redo
6275 the code so that it calls 'emacs_abort' rather than 'abort'.
6276 This removes the need for the NO_ABORT configure-time macro
6277 and makes it easier to change the abort code to do a backtrace.
6278 * .gdbinit: Just stop at emacs_abort, not at w32_abort or abort.
6279 * emacs.c (abort) [!DOS_NT && !NO_ABORT]:
6280 Remove; sysdep.c's emacs_abort now takes its place.
6281 * lisp.h (emacs_abort): New decl. All calls from Emacs code to
6282 'abort' changed to use 'emacs_abort'.
6283 * msdos.c (dos_abort) [defined abort]: Remove; not used.
6284 (abort) [!defined abort]: Rename to ...
6285 (emacs_abort): ... new name.
6286 * sysdep.c (emacs_abort) [!HAVE_NTGUI]: New function, taking
6287 the place of the old 'abort' in emacs.c.
6288 * w32.c, w32fns.c (abort): Do not #undef.
6289 * w32.c (emacs_abort): Rename from w32_abort.
6290
6291 2012-09-04 Eli Zaretskii <eliz@gnu.org>
6292
6293 * w32uniscribe.c (uniscribe_shape): Reverse the sign of
6294 offsets[j].dv, since the y axis of the screen coordinates points
6295 down, while the y axis of the font definition coordinates points
6296 up. This fixes display of Arabic diacritics such as KASRA and
6297 KASRATAN. (Bug#11860)
6298
6299 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
6300
6301 Be more systematic about _setjmp vs setjmp.
6302 * alloc.c (test_setjmp, mark_stack):
6303 * image.c (PNG_LONGJMP) [PNG_LIBPNG_VER < 10500]:
6304 (PNG_JMPBUF) [! (PNG_LIBPNG_VER < 10500)]:
6305 (png_load, my_error_exit, jpeg_load):
6306 * process.c (send_process_trap, send_process):
6307 Uniformly prefer _setjmp and _longjmp to setjmp and longjmp.
6308 The underscored versions are up to 30x faster on some hosts.
6309 Formerly, the code used setjmp+longjmp sometimes and
6310 _setjmp+_longjmp at other times, with no particular reason to
6311 prefer setjmp+longjmp.
6312
6313 2012-09-03 Paul Eggert <eggert@cs.ucla.edu>
6314
6315 Fix minor problem found by static checking.
6316 * buffer.c (Fdelete_all_overlays): Return nil.
6317
6318 2012-09-03 Martin Rudalics <rudalics@gmx.at>
6319
6320 * buffer.c (Fdelete_all_overlays): New function.
6321
6322 2012-09-03 Chong Yidong <cyd@gnu.org>
6323
6324 * gtkutil.c: Add extern decl for Qxft.
6325
6326 2012-09-02 Paul Eggert <eggert@cs.ucla.edu>
6327
6328 * emacs.c, eval.c: Use bool for boolean.
6329 * emacs.c (initialized, inhibit_window_system, running_asynch_code):
6330 (malloc_using_checking) [DOUG_LEA_MALLOC]:
6331 (display_arg) [HAVE_X_WINDOWS || HAVE_NS]:
6332 (noninteractive, no_site_lisp, fatal_error_in_progress, argmatch)
6333 (main, decode_env_path, Fdaemon_initialized):
6334 * eval.c (call_debugger, Finteractive_p, interactive_p):
6335 (unwind_to_catch, Fsignal, wants_debugger, skip_debugger)
6336 (maybe_call_debugger, Fbacktrace):
6337 * process.c (read_process_output, exec_sentinel):
6338 Use bool for booleans.
6339 * emacs.c (shut_down_emacs): Omit unused boolean argument NO_X.
6340 All callers changed.
6341 * eval.c (interactive_p): Omit always-true boolean argument
6342 EXCLUDE_SUBRS_P. All callers changed.
6343 * dispextern.h, lisp.h: Reflect above API changes.
6344 * firstfile.c (dummy): Use the address of 'main', whose signature
6345 won't change, instead of the address of 'initialize', whose
6346 signature just changed from int to bool.
6347 * lisp.h (fatal_error_in_progress): New decl of boolean, moved here ...
6348 * msdos.c (fatal_error_in_progress): ... from here.
6349 * xdisp.c (redisplaying_p): Now a boolean. Set it to 1 instead
6350 of incrementing it.
6351 (redisplay_internal, unwind_redisplay): Simply clear
6352 REDISPLAYING_P when unwinding, instead of saving its previous,
6353 always-false value and then restoring it.
6354
6355 Clean up some extern decls.
6356 Mostly, this hoists extern decls out of .c files and into .h files.
6357 That way, we're more likely to catch errors if the interfaces change.
6358 * alloc.c [USE_GTK]: Include "gtkutil.h" so that we need not
6359 declare xg_mark_data.
6360 * dispextern.h (x_frame_parm_handlers):
6361 * font.h (Qxft):
6362 * lisp.h (Qlexical_binding, Qinternal_interpreter_environment)
6363 (Qextra_light, Qlight, Qsemi_light, Qsemi_bold, Qbold, Qextra_bold)
6364 (Qultra_bold, Qoblique, Qitalic):
6365 Move extern decl here from .c file.
6366 * alloc.c (xg_mark_data) [USE_GTK]:
6367 * doc.c (Qclosure):
6368 * eval.c (Qlexical_binding):
6369 * fns.c (time) [!HAVE_UNISTD_H]:
6370 * gtkutil.c (Qxft, Qnormal, Qextra_light, Qlight, Qsemi_light)
6371 (Qsemi_bold, Qbold, Qextra_bold, Qultra_bold, Qoblique, Qitalic):
6372 * image.c (Vlibrary_cache, QCloaded_from) [HAVE_NTGUI]:
6373 * lread.c (Qinternal_interpreter_environment):
6374 * minibuf.c (Qbuffer):
6375 * process.c (QCfamily, QCfilter):
6376 * widget.c (free_frame_faces):
6377 * xfaces.c (free_frame_menubar) [USE_X_TOOLKIT]:
6378 * xfont.c (x_clear_errors):
6379 * xterm.c (x_frame_parm_handlers):
6380 Remove now-redundant extern decls.
6381 * keyboard.c, keyboard.h (ignore_mouse_drag_p) [USE_GTK || HAVE_NS]:
6382 * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic):
6383 Now static.
6384 * xfaces.c: Remove unnecessary static decls.
6385 * xterm.c (updating_frame): Remove decl of nonexistent object.
6386
6387 * Makefile.in (gl-stamp): Don't scan $(SOME_MACHINE_OBJECTS)
6388 when building globals.h, as the objects that are not built on
6389 this host are not needed to compile C files on this host.
6390
6391 2012-09-02 Jan Djärv <jan.h.d@swipnet.se>
6392
6393 * gtkutil.h: Remove prototype for x_wm_set_size_hint.
6394
6395 * frame.h: Add missing prototype for x_wm_set_size_hint.
6396
6397 2012-09-02 Paul Eggert <eggert@cs.ucla.edu>
6398
6399 * doc.c, editfns.c, insdel.c, intervals.c: Use bool for boolean.
6400 * doc.c (read_bytecode_char, get_doc_string, reread_doc_file)
6401 (Fdocumentation, Fdocumentation_property, Fsnarf_documentation)
6402 (Fsubstitute_command_keys):
6403 * editfns.c (region_limit, find_field, Fconstrain_to_field)
6404 (save_excursion_save, save_excursion_restore)
6405 (disassemble_lisp_time, decode_time_components, emacs_nmemftime)
6406 (format_time_string, general_insert_function)
6407 (make_buffer_string, make_buffer_string_both)
6408 (Fsubst_char_in_region, Ftranslate_region_internal, Fformat):
6409 * insdel.c (check_markers, gap_left, adjust_markers_for_insert)
6410 (copy_text, insert_1, insert_1_both, insert_from_string)
6411 (insert_from_string_before_markers, insert_from_string_1)
6412 (insert_from_buffer, insert_from_buffer_1, replace_range)
6413 (replace_range_2, del_range_1, del_range_byte, del_range_both)
6414 (del_range_2, modify_region):
6415 * intervals.c (intervals_equal, balance_possible_root_interval)
6416 (adjust_intervals_for_insertion, merge_properties_sticky)
6417 (graft_intervals_into_buffer, lookup_char_property)
6418 (adjust_for_invis_intang, set_point_both)
6419 (get_property_and_range, compare_string_intervals)
6420 (set_intervals_multibyte_1, set_intervals_multibyte):
6421 * keyboard.c (decode_timer):
6422 Use bool for boolean.
6423 * intervals.h, lisp.h, systime.h: Reflect above API changes.
6424 * editfns.c (struct info): Use 1-bit unsigned bitfields for booleans.
6425
6426 2012-09-02 Chong Yidong <cyd@gnu.org>
6427
6428 * keymap.c (push_key_description): Print M-TAB as C-M-i
6429 (Bug#11758).
6430
6431 2012-09-02 Juanma Barranquero <lekktu@gmail.com>
6432
6433 * makefile.w32-in (CCL_H, W32FONT_H): New macros.
6434 (ATIMER_H, FONT_H, $(BLD)/alloc.$(O), $(BLD)/callproc.$(O))
6435 ($(BLD)/editfns.$(O), $(BLD)/ccl.$(O), $(BLD)/chartab.$(O))
6436 ($(BLD)/coding.$(O), $(BLD)/sysdep.$(O), $(BLD)/fontset.$(O))
6437 ($(BLD)/sysdep.$(O), $(BLD)/w32fns.$(O), $(BLD)/keyboard.$(O))
6438 ($(BLD)/w32term.$(O), $(BLD)/w32menu.$(O), $(BLD)/process.$(O))
6439 ($(BLD)/w32font.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
6440
6441 2012-09-01 Eli Zaretskii <eliz@gnu.org>
6442
6443 * w32uniscribe.c (uniscribe_shape): Handle correctly the case of
6444 more than one grapheme cluster passed to the shaper: compute the
6445 offset adjustment values separately for each cluster. (Bug#11860)
6446
6447 * image.c: Restore mistakenly removed inclusion of w32.h. Without
6448 it, GCC doesn't see prototypes of w32_delayed_load, and complains
6449 about implicit conversions from integer to pointer.
6450
6451 2012-09-01 Daniel Colascione <dancol@dancol.org>
6452
6453 * w32fns.c (x_display_info_for_name): Prevent crash if w32 window
6454 system used too early.
6455
6456 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
6457
6458 Better seed support for (random).
6459 * emacs.c (main): Call init_random.
6460 * fns.c (Frandom): Set the seed from a string argument, if given.
6461 Remove long-obsolete Gentzel cruft.
6462 * lisp.h, sysdep.c (seed_random): Now takes address and size, not long.
6463 (init_random): New function.
6464
6465 2012-09-01 Daniel Colascione <dancol@dancol.org>
6466
6467 * xterm.h: Add header guards. Declare x_menubar_window_to_frame.
6468 Remove x_set_frame_alpha, x_bitmap_icon, x_make_frame_visible,
6469 x_make_frame_invisible, x_iconify_frame, x_free_frame_resources,
6470 x_wm_set_size_hint, x_query_colors, x_real_positions,
6471 x_set_menu_bar_lines, x_char_width, x_char_height, x_sync,
6472 x_set_tool_bar_lines, x_activate_menubar, and free_frame_menubar,
6473 all of which have been moved to common code.
6474
6475 * xfaces.c: Include TERM_HEADER instead of listing all possible
6476 window-system headers.
6477
6478 * w32xfns.c (x_sync): Correct definition of x_sync (a no-op here)
6479 to match header.
6480
6481 * w32term.h (FRAME_X_WINDOW): Use FRAME_W32_WINDOW instead of
6482 directly accessing frame internals.
6483
6484 * w32font.h: Include font.h. Define syms_of_w32font and
6485 globals_of_w32font.
6486
6487 * process.c: Include TERM_HEADER instead of listing all possible
6488 window-system headers.
6489
6490 * nsterm.h: Remove declarations now in frame.h.
6491 Define FRAME_X_SCREEN, FRAME_X_VISUAL.
6492
6493 * menu.c: Include TERM_HEADER instead of listing all possible
6494 window-system headers.
6495
6496 * keyboard.h: Declare ignore_mouse_drag_p whenever we have a
6497 window system.
6498
6499 * keyboard.c: Include TERM_HEADER instead of listing all possible
6500 window-system headers.
6501
6502 * image.c: Include TERM_HEADER instead of listing all possible
6503 window-system headers. Declare Vlibrary_cache when compiling for
6504 Windows.
6505
6506 * gtkutil.h (xg_list_node_): Include xterm.h to pick up needed
6507 window system declarations.
6508
6509 * frame.h: Move common functions here: set_frame_menubar,
6510 x_set_window_size, x_sync, x_get_focus_frame,
6511 x_set_mouse_position, x_set_mouse_pixel_position,
6512 x_make_frame_visible, x_make_frame_invisible, x_iconify_frame,
6513 x_char_width, x_char_height, x_pixel_width, x_pixel_height,
6514 x_set_frame_alpha, x_set_menu_bar_lines, x_set_tool_bar_lines,
6515 x_activate_menubar, x_real_positions, x_bitmap_icon,
6516 x_set_menu_bar_lines, free_frame_menubar, x_free_frame_resources,
6517 and x_query_colors.
6518
6519 * frame.c: Include TERM_HEADER instead of listing all possible
6520 window-system headers.
6521
6522 * font.c: Include TERM_HEADER instead of listing all possible
6523 window-system headers.
6524
6525 * emacs.c: Include TERM_HEADER.
6526
6527 * dispnew.c: Include TERM_HEADER instead of listing all possible
6528 window-system headers.
6529
6530 * ccl.h: Include character.h.
6531
6532 * Makefile.in: Define WINDOW_SYSTEM_OBJ to hold objects needed for
6533 the current window system; include in list of objects to link into
6534 Emacs.
6535
6536 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
6537
6538 Remove mark_ttys function and fix tty_display_info initialization.
6539 * lisp.h (mark_ttys): Remove prototype.
6540 * alloc.c (Fgarbage_collect): Remove redundant (and the only) call
6541 to mark_ttys because all possible values of 'top_frame' slot are
6542 the frames which are reachable from Vframe_list.
6543 * term.c (mark_ttys): Remove.
6544 (init_tty): Safely initialize 'top_frame' slot with Qnil.
6545
6546 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
6547
6548 Change struct frame bitfields from unsigned char to unsigned.
6549 * frame.h (struct frame): Change type of 'display_preempted',
6550 'visible', 'iconified', 'has_minibuffer', 'wants_modeline',
6551 'auto_raise', 'auto_lower', 'no_split', 'explicit_name',
6552 'window_sizes_changed', 'mouse_moved' and 'pointer_invisible'
6553 bitfields from unsigned char to unsigned.
6554
6555 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
6556
6557 Remove unused member of struct x_output and struct w32_output.
6558 * xterm.h (struct x_output): Remove unused field 'needs_exposure'.
6559 * w32term.h (struct w32_output): Likewise.
6560
6561 2012-08-30 Jan Djärv <jan.h.d@swipnet.se>
6562
6563 * gtkutil.c (x_wm_set_size_hint): Use 1 col for base_width so it
6564 does not become zero (Bug#12234).
6565
6566 2012-08-30 Paul Eggert <eggert@cs.ucla.edu>
6567
6568 * dispnew.c (update_frame_1): Pacify gcc -Wstrict-overflow
6569 for GCC 4.7.1 x86-64.
6570
6571 2012-08-30 Glenn Morris <rgm@gnu.org>
6572
6573 * lread.c (init_lread): For out-of-tree builds, only add the
6574 source directory's site-lisp dir to the load-path if it exists,
6575 consistent with in-tree builds. (Bug#12302)
6576
6577 2012-08-28 Jan Djärv <jan.h.d@swipnet.se>
6578
6579 * nsmenu.m (initWithContentRect:styleMask:backing:defer:): Initialize
6580 button_values to NULL. Call setStykeMask so dialogs get a close button.
6581 (windowShouldClose:): Set window_closed.
6582 (dealloc): New member, free button_values.
6583 (process_dialog:): Make member function. Remove window argument,
6584 replace window with self. Count buttons and allocate and store values
6585 in button_values.
6586 (addButton:value:row:): value is int with the name tag. Call setTag
6587 with tag. Remove return self, declare return value as void.
6588 (addString:row:): Remove return self, declare return value as void.
6589 (addSplit): Remove return self, declare return value as void.
6590 (clicked:): Remove return self, declare return value as void.
6591 Set dialog_return to button_values[seltag]. Code formatting change.
6592 (initFromContents:isQuestion:): Adjust call to process_dialog.
6593 Code formatting change.
6594 (timeout_handler:): Set timer_fired to YES.
6595 (runDialogAt:): Set timer_fired to NO.
6596 Handle click on close button as quit.
6597
6598 * nsterm.h (EmacsDialogPanel): Make timer_fired BOOL.
6599 Add window_closed and button_values. Add void as return value for
6600 add(Button|String|Split). addButton takes int instead of Lisp_Object.
6601 Add process_dialog as new member.
6602
6603 2012-08-28 Eli Zaretskii <eliz@gnu.org>
6604
6605 * ralloc.c (free_bloc): Don't dereference a 'heap' structure if it
6606 is not one of the heaps we manage. (Bug#12242)
6607
6608 2012-08-28 Glenn Morris <rgm@gnu.org>
6609
6610 * eval.c (Fcalled_interactively_p): Doc fix. (Bug#11747)
6611
6612 2012-08-28 Martin Rudalics <rudalics@gmx.at>
6613
6614 * window.c (Fset_window_configuration): Remove handling of
6615 auto-buffer-name window parameter. Install revision of reverted
6616 fix.
6617
6618 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
6619
6620 Do not allow to set major mode for a dead buffer.
6621 * buffer.c (Fset_buffer_major_mode): Signal an error
6622 if the buffer is dead.
6623 (Fother_buffer, other_buffer_safely): Remove redundant
6624 nested declaration.
6625
6626 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
6627
6628 Always use set_buffer_if_live to restore original buffer at unwind.
6629 * buffer.h (record_unwind_current_buffer): New function.
6630 * bytecode.c, dispnew.c, editfns.c, fileio.c, fns.c, insdel.c:
6631 * keyboard.c, keymap.c, minibuf.c, print.c, process.c, textprop.c:
6632 * undo.c, window.c: Adjust users.
6633 * buffer.c (set_buffer_if_live): Fix comment.
6634
6635 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
6636
6637 Fix usage of set_buffer_internal.
6638 * buffer.h (set_buffer_internal): Make it BUFFER_INLINE.
6639 * buffer.c (set_buffer_if_live): Use set_buffer_internal.
6640 * coding.c (decode_coding): Omit redundant test.
6641 * fileio.c (decide_coding_unwind): Likewise.
6642 * fns.c (secure_hash): Likewise.
6643 * insdel.c (modify_region): Likewise.
6644 * keyboard.c (command_loop_1): Likewise.
6645 * print.c (PRINTFINISH): Likewise.
6646 * xdisp.c (run_window_scroll_functions): Use set_buffer_internal.
6647
6648 2012-08-27 Paul Eggert <eggert@cs.ucla.edu>
6649
6650 * dispnew.c: Use bool for boolean.
6651 (frame_garbaged, display_completed, delayed_size_change)
6652 (fonts_changed_p, add_window_display_history)
6653 (add_frame_display_history, verify_row_hash)
6654 (adjust_glyph_matrix, clear_window_matrices, glyph_row_slice_p)
6655 (row_equal_p, realloc_glyph_pool)
6656 (allocate_matrices_for_frame_redisplay)
6657 (showing_window_margins_p)
6658 (adjust_frame_glyphs_for_frame_redisplay)
6659 (build_frame_matrix_from_leaf_window, make_current)
6660 (mirrored_line_dance, mirror_line_dance, update_frame)
6661 (update_window_tree, update_single_window)
6662 (check_current_matrix_flags, update_window, update_text_area)
6663 (update_window_line, set_window_update_flags, scrolling_window)
6664 (update_frame_1, scrolling, buffer_posn_from_coords)
6665 (do_pending_window_change, change_frame_size)
6666 (change_frame_size_1, sit_for):
6667 Use bool for boolean.
6668 (clear_glyph_matrix_rows): Rename from enable_glyph_matrix_rows,
6669 and remove last int (actually boolean) argument, which was always 0.
6670 All callers changed.
6671 * dispextern.h, frame.h, lisp.h: Reflect above API changes.
6672 * dispextern.h (struct composition_it): Use bool for boolean.
6673 (struct glyph_matrix): Don't assume buffer sizes can fit in 'int'.
6674 (struct bidi_it): Use unsigned:1, not int, for boolean prev_was_pdf.
6675 * dired.c (file_name_completion):
6676 Use bool for boolean. (This was missed in an earlier change.)
6677
6678 2012-08-27 Martin Rudalics <rudalics@gmx.at>
6679
6680 * window.c (Fset_window_configuration): Revert first part of
6681 last change.
6682
6683 2012-08-27 Jan Djärv <jan.h.d@swipnet.se>
6684
6685 * nsterm.h (NSPanel): New class variable dialog_return.
6686
6687 * nsmenu.m (initWithContentRect:styleMask:backing:defer:):
6688 Initialize dialog_return.
6689 (windowShouldClose:): Use stop instead of stopModalWithCode.
6690 (clicked:): Ditto, and also set dialog_return (Bug#12258).
6691 (timeout_handler:): Use stop instead of abortModal. Send a dummy
6692 event.
6693 (runDialogAt:): Make ret Lisp_Object. Set it from dialog_return when
6694 modal loop returns.
6695
6696 2012-08-27 Paul Eggert <eggert@cs.ucla.edu>
6697
6698 * composite.c, data.c, dbusbind.c, dired.c: Use bool for booleans.
6699 * composite.c (find_composition, composition_gstring_p)
6700 (composition_reseat_it, find_automatic_composition):
6701 * data.c (let_shadows_buffer_binding_p)
6702 (let_shadows_global_binding_p, set_internal, make_blv)
6703 (Fmake_variable_buffer_local, Fmake_local_variable)
6704 (Fmake_variable_frame_local, arithcompare, cons_to_unsigned)
6705 (cons_to_signed, arith_driver):
6706 * dbusbind.c (xd_in_read_queued_messages):
6707 * dired.c (directory_files_internal, file_name_completion):
6708 Use bool for booleans.
6709 * dired.c (file_name_completion):
6710 * process.h (fd_callback):
6711 Omit int (actually boolean) argument. It wasn't being used.
6712 All uses changed.
6713 * composite.h, lisp.h: Reflect above API changes.
6714
6715 * cmds.c, coding.c: Use bool for booleans.
6716 * cmds.c (move_point, Fself_insert_command):
6717 * coding.h (struct composition status, struct coding_system):
6718 * coding.c (detect_coding_utf_8, encode_coding_utf_8)
6719 (detect_coding_utf_16, encode_coding_utf_16, detect_coding_emacs_mule)
6720 (emacs_mule_char, decode_coding_emacs_mule)
6721 (encode_coding_emacs_mule, detect_coding_iso_2022)
6722 (decode_coding_iso_2022, encode_invocation_designation)
6723 (encode_designation_at_bol, encode_coding_iso_2022)
6724 (detect_coding_sjis, detect_coding_big5, decode_coding_sjis)
6725 (decode_coding_big5, encode_coding_sjis, encode_coding_big5)
6726 (detect_coding_ccl, encode_coding_ccl, decode_coding_raw_text)
6727 (encode_coding_raw_text, detect_coding_charset)
6728 (decode_coding_charset, encode_coding_charset, detect_eol)
6729 (detect_coding, get_translation_table, produce_chars)
6730 (consume_chars, reused_workbuf_in_use)
6731 (make_conversion_work_buffer, code_conversion_save)
6732 (decode_coding_object, encode_coding_object)
6733 (detect_coding_system, char_encodable_p)
6734 (Funencodable_char_position, code_convert_region)
6735 (code_convert_string, code_convert_string_norecord)
6736 (Fset_coding_system_priority):
6737 * fileio.c (Finsert_file_contents):
6738 Use bool for booleans.
6739 * coding.h, lisp.h: Reflect above API changes.
6740 * coding.c: Remove unnecessary static function decls.
6741 (detect_coding): Use unsigned, not signed, to copy an unsigned field.
6742 (decode_coding, encode_coding, decode_coding_gap): Return 'void',
6743 not a boolean 'int', since callers never look at the return value.
6744 (ALLOC_CONVERSION_WORK_AREA): Assume caller returns 'void', not 'int'.
6745 * coding.h (decoding_buffer_size, encoding_buffer_size)
6746 (emacs_mule_string_char): Remove unused extern decls.
6747 (struct iso_2022_spec, struct coding_system):
6748 Use 'unsigned int : 1' for boolean fields, since there's more than one.
6749 (struct emacs_mule_spec): Remove unused field 'full_support'.
6750 All initializations removed.
6751 * cmds.c (internal_self_insert): Don't assume EMACS_INT fits in 'int'.
6752
6753 2012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
6754
6755 Fix spare memory change (Bug#12286).
6756 * alloc.c (mark_maybe_pointer): Handle MEM_TYPE_SPARE.
6757 (valid_lisp_object_p): Likewise.
6758
6759 2012-08-27 Martin Rudalics <rudalics@gmx.at>
6760
6761 * window.c (Fset_window_configuration): Record any window's old
6762 buffer if it's replaced (see Bug#8789). If the new current
6763 buffer doesn't appear in the selected window, go to its old
6764 point (Bug#12208).
6765
6766 2012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
6767
6768 Special MEM_TYPE_SPARE to denote reserved memory.
6769 * alloc.c (enum mem_type): New memory type.
6770 (refill_memory_reserve): Use new type for spare memory.
6771 This prevents live_cons_p and live_string_p from incorrect
6772 detection of uninitialized objects from spare memory as live.
6773
6774 2012-08-26 Paul Eggert <eggert@cs.ucla.edu>
6775
6776 Spelling fixes.
6777 * Makefile.in (.PHONY): versioclean -> versionclean.
6778
6779 Remove unused external symbols.
6780 * data.c (Qcons, Qfloat, Qmisc, Qstring, Qvector):
6781 * window.c (Qwindow_valid_p, decode_valid_window):
6782 Now static, not extern.
6783 * data.c (Qinterval): Remove; unused.
6784 (syms_of_data): Do not define 'interval'.
6785 * lisp.h (Qinteger, Qstring, Qmisc, Qvector, Qfloat, Qcons):
6786 * window.h (decode_valid_window):
6787 Remove decls.
6788
6789 * character.c, charset.c, chartab.c: Use bool for booleans.
6790 * character.c (lisp_string_width, string_count_byte8)
6791 (string_escape_byte8):
6792 * charset.c (charset_map_loaded, load_charset_map, read_hex):
6793 (load_charset_map_from_file, map_charset_chars)
6794 (Fdefine_charset_internal, define_charset_internal)
6795 (Fdeclare_equiv_charset, find_charsets_in_text)
6796 (Ffind_charset_region, char_charset, Fiso_charset):
6797 * chartab.c (sub_char_table_ref, sub_char_table_ref_and_range)
6798 (sub_char_table_set, sub_char_table_set_range)
6799 (char_table_set_range, optimize_sub_char_table)
6800 (map_sub_char_table):
6801 Use bool for boolean.
6802 * character.c (str_to_unibyte): Omit last boolean argument; it was
6803 always 0. All callers changed.
6804 * character.h, charset.h: Adjust to match previous changes.
6805 * character.h (char_printable_p): Remove decl of nonexistent function.
6806 * charset.h (struct charset): Members code_linear_p, iso_chars_96,
6807 ascii_compatible_p, supplementary_p, compact_codes_p, unified_p
6808 are all boolean, so make them single-bit bitfields.
6809
6810 * lisp.h (ASET): Remove attempt to detect side effects.
6811 It was meant to be temporary and it often doesn't work,
6812 because when IDX has side effects the behavior of IDX==IDX
6813 is undefined. See Stefan Monnier in
6814 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00762.html>.
6815
6816 2012-08-26 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
6817
6818 * lisp.h (functionp): New function (extracted from Ffunctionp).
6819 (FUNCTIONP): Use it.
6820 * eval.c (Ffunctionp): Use it.
6821
6822 2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
6823
6824 * xgselect.c (xg_select): Use auto storage for the GPollFD buffer
6825 as that's faster and simpler than static storage. Don't bother
6826 with the g_main_context_query overhead if g_main_context_pending
6827 says no events are pending.
6828 (gfds, gfds_size): Remove these static vars.
6829 (xgselect_initialize): Remove; no longer needed.
6830 All uses and decls removed.
6831
6832 * emacs.c (fatal_error_signal_hook): Remove.
6833 All uses removed. This leftover from old code was always 0.
6834
6835 * casefiddle.c, casetab.c, category.c: Use bool for boolean.
6836 * casefiddle.c (casify_object, casify_region):
6837 * casetab.c (set_case_table):
6838 * category.c, category.h (word_boundary_p):
6839 * category.h (CHAR_HAS_CATEGORY):
6840 Use bool for booleans, instead of int.
6841
6842 2012-08-25 Eli Zaretskii <eliz@gnu.org>
6843
6844 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on $(GNU_LIB)/execinfo.h.
6845
6846 2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
6847
6848 On assertion failure, print backtrace if available.
6849 * alloc.c [ENABLE_CHECKING]: Include <execinfo.h>.
6850 (die) [ENABLE_CHECKING]: Print a backtrace if available.
6851 * Makefile.in (LIB_EXECINFO): New macro.
6852 (LIBES): Use it.
6853
6854 * bytecode.c, callint.c, callproc.c: Use bool for boolean.
6855 * bytecode.c (exec_byte_code):
6856 * callint.c (check_mark, Fcall_interactively):
6857 * callproc.c (Fcall_process, add_env, child_setup, getenv_internal_1)
6858 (getenv_internal, sync_process_alive, call_process_exited):
6859 * lisp.h (USE_SAFE_ALLOCA):
6860 Use bool for booleans, instead of int.
6861 * lisp.h, process.h: Adjust prototypes to match above changes.
6862 * callint.c (Fcall_interactively): Don't assume the mark's
6863 offset fits in 'int'.
6864
6865 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
6866
6867 * buffer.c, buffer.h: Use bool for boolean.
6868 * buffer.c (reset_buffer_local_variables)
6869 (buffer_lisp_local_variables, Fset_buffer_modified_p)
6870 (Frestore_buffer_modified_p, Fset_buffer_multibyte):
6871 (overlays_at, overlays_in, mouse_face_overlay_overlaps)
6872 (overlay_touches_p, overlay_strings, Foverlay_put)
6873 (report_overlay_modification, call_overlay_mod_hooks):
6874 (mmap_enlarge, mmap_set_vars):
6875 * buffer.h (buffer_has_overlays, uppercasep, lowercasep):
6876 Use bool for booleans, instead of int.
6877 * buffer.c (compact_buffer, mmap_free_1): Return void, not int,
6878 since the 1-or-0 return value is always ignored anyway.
6879 (mmap_initialized_p):
6880 * buffer.h (struct buffer_text.inhibit_shrinking): Now bool, not int.
6881 * buffer.h, lisp.h: Adjust prototypes to match above changes.
6882
6883 2012-08-23 Paul Eggert <eggert@cs.ucla.edu>
6884
6885 * bidi.c: Use bool for boolean.
6886 This is a bit more readable, and makes the text segment of bidi.o
6887 0.4% smaller on my platform (GCC 4.7.1 x86-64, Fedora 15).
6888 Presumably it's faster too.
6889 (bidi_initialized, bidi_ignore_explicit_marks_for_paragraph_level):
6890 Now bool.
6891 (bidi_cache_find_level_change, bidi_cache_iterator_state)
6892 (bidi_unshelve_cache, bidi_init_it, bidi_count_bytes)
6893 (bidi_char_at_pos, bidi_fetch_char, bidi_paragraph_init)
6894 (bidi_explicit_dir_char, bidi_level_of_next_char)
6895 (bidi_find_other_level_edge, bidi_move_to_visually_next):
6896 Use bool for booleans, instead of int.
6897 * dispextern.h (bidi_init_it, bidi_paragraph_init)
6898 (bidi_unshelve_cache): Adjust decls to match code.
6899
6900 2012-08-23 Martin Rudalics <rudalics@gmx.at>
6901
6902 * keyboard.c (Fposn_at_x_y): Do not allow internal window as
6903 argument.
6904
6905 2012-08-23 Paul Eggert <eggert@cs.ucla.edu>
6906
6907 * atimer.c, atimer.h (turn_on_atimers): Use bool for boolean.
6908 * atimer.h: Include <stdbool.h>.
6909
6910 2012-08-22 Dan Nicolaescu <dann@gnu.org>
6911
6912 * frame.h (FRAME_W32_P, FRAME_MSDOS_P, FRAME_NS_P): Change to
6913 compile time tests instead of run time tests on systems that do
6914 not use them.
6915 (FRAME_MAC_P): Remove leftover from deleted code.
6916 * frame.c (syms_of_frame): Remove leftover from deleted code.
6917
6918 2012-08-22 Jan Djärv <jan.h.d@swipnet.se>
6919
6920 * nsterm.m (insertText:): Don't clear modifiers if code is space.
6921
6922 2012-08-22 Paul Eggert <eggert@cs.ucla.edu>
6923
6924 * fontset.c (FONTSET_ADD): Return void, not Lisp_Object.
6925 Otherwise, the compiler complains about (A?B:C) where B is void
6926 and C is Lisp_Object. This fixes an incompatibility with Sun C 5.12.
6927 (fontset_add): Return void, for FONTSET_ADD.
6928
6929 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
6930
6931 * alloc.c: Use bool for booleans.
6932 (gc_in_progress, abort_on_gc)
6933 (setjmp_tested_p) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
6934 (dont_register_blocks) [GC_MALLOC_CHECK]:
6935 (suppress_checking) [ENABLE_CHECKING]: Now bool, not int.
6936 (check_string_bytes, make_specified_string, memory_full)
6937 (live_string_p, live_cons_p, live_symbol_p, live_float_p)
6938 (live_misc_p, live_vector_p, live_buffer_p, mark_maybe_object)
6939 (mark_stack, valid_pointer_p, make_pure_string)
6940 (Fgarbage_collect, survives_gc_p, gc_sweep):
6941 Use bool for booleans, instead of int.
6942 (test_setjmp) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
6943 Remove unused local.
6944 * alloc.c (PURE_POINTER_P):
6945 * lisp.h (STRING_MULTIBYTE): Document that it returns a boolean.
6946 * editfns.c (Fformat):
6947 * fileio.c (Fexpand_file_name, Fsubstitute_in_file_name)
6948 (Fdo_auto_save):
6949 * fns.c (sweep_weak_table):
6950 * lisp.h (suppress_checking, push_message, survives_gc_p)
6951 (make_pure_string, gc_in_progress, abort_on_gc):
6952 * lread.c (readchar, read1):
6953 * print.c (Fprin1_to_string):
6954 * xdisp.c (push_message):
6955 Use bool for booleans affected directly or indirectly by
6956 alloc.c's changes.
6957
6958 Make recently-introduced setters macros.
6959 * fontset.c (set_fontset_id, set_fontset_name, set_fontset_ascii)
6960 (set_fontset_base, set_fontset_frame, set_fontset_nofont_face)
6961 (set_fontset_default, set_fontset_fallback): Rename from their
6962 upper-case counterparts, and make them functions rather than macros.
6963 This is more consistent with the other recently-introduced setters.
6964 These don't need to be inline, since they're local.
6965
6966 2012-08-21 Jan Djärv <jan.h.d@swipnet.se>
6967
6968 * nsterm.m (fd_handler:): Alloc and release a NSAutoreleasePool in
6969 the loop (Bug#12247).
6970
6971 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
6972
6973 * lisp.h (vcopy): Use memcpy rather than our own loop.
6974 This fixes a performance regression introduced by the recent
6975 addition of vcopy. This means 'vcopy' will need to be modified
6976 for a copying collector, but that's OK. Also, tighten the
6977 checking in the assertion.
6978
6979 2012-08-21 Eli Zaretskii <eliz@gnu.org>
6980
6981 * w32uniscribe.c (uniscribe_shape): Fix producing gstring
6982 components for RTL text (Bug#11860). Adjust X-OFFSET of each
6983 non-base glyph for the width of the base character, according to
6984 what x_draw_composite_glyph_string_foreground expects.
6985 Generate WADJUST value according to composition_gstring_width's
6986 expectations, to produce correct width of the composed character.
6987 Reverse the sign of the DU offset produced by ScriptPlace.
6988
6989 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
6990
6991 * dbusbind.c (xd_remove_watch): Do not assume C99 comments.
6992
6993 2012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
6994
6995 Avoid direct writes to contents member of struct Lisp_Vector.
6996 * lisp.h (vcopy): New function to copy data into vector.
6997 * dispnew.c (Fframe_or_buffer_changed_p): Use AREF and ASET.
6998 * fns.c (Ffillarray): Use ASET.
6999 * keyboard.c (timer_check_2): Use AREF and ASET.
7000 (append_tool_bar_item, Frecent_keys): Use vcopy.
7001 * lread.c (read_vector): Use ASET.
7002 * msdos.c (Frecent_doskeys): Use vcopy.
7003 * xface.c (Finternal_copy_lisp_face): Use vcopy.
7004 (Finternal_merge_in_global_face): Use ASET and vcopy.
7005 * xfont.c (xfont_list_pattern): Likewise.
7006
7007 2012-08-21 Martin Rudalics <rudalics@gmx.at>
7008
7009 * window.c (Fwindow_point): For the selected window always return
7010 the position of its buffer's point.
7011 (Fset_window_point): For the selected window always go in its
7012 buffer to the specified position.
7013
7014 2012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
7015
7016 Setter macros for fontsets.
7017 * fontset.c (SET_FONTSET_ID, SET_FONTSET_NAME, SET_FONTSET_ASCII)
7018 (SET_FONTSET_BASE, SET_FONTSET_FRAME, SET_FONTSET_NOFONT_FACE)
7019 (SET_FONTSET_DEFAULT, SET_FONTSET_FALLBACK): New macros.
7020 Adjust users.
7021
7022 2012-08-20 Glenn Morris <rgm@gnu.org>
7023
7024 * Makefile.in (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
7025 Don't assume that `ln -f' works.
7026
7027 2012-08-20 Eli Zaretskii <eliz@gnu.org>
7028
7029 * .gdbinit: Use "set $dummy = ..." to avoid warnings from GDB 7.5
7030 and later about non-assignments with no effect. See discussion at
7031 http://sourceware.org/ml/gdb-patches/2012-08/msg00518.html for
7032 details.
7033
7034 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
7035
7036 Inline setter functions for Lisp_Objects slots of struct specbinding.
7037 * eval.c (set_specpdl_symbol, set_specpdl_old_value): New functions.
7038 Adjust users.
7039
7040 2012-08-20 Martin Rudalics <rudalics@gmx.at>
7041
7042 * window.c (select_window): Always make selected window's buffer
7043 current.
7044
7045 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
7046
7047 Use AREF and ASET for docstrings of category tables.
7048 * category.h (CATEGORY_DOCSTRING): Use AREF.
7049 (SET_CATEGORY_DOCSTRING): Use ASET.
7050 * category.c (Fdefine_category): Use SET_CATEGORY_DOCSTRING.
7051
7052 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
7053
7054 Inline setter functions for hash table members.
7055 * lisp.h (set_hash_key, set_hash_value, set_hash_next)
7056 (set_hash_hash, set_hash_index): Rename with _slot suffix.
7057 (set_hash_key_and_value, set_hash_index, set_hash_next)
7058 (set_hash_hash): New functions.
7059 * charset.c, fns.c: Adjust users.
7060
7061 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
7062
7063 Inline getter and setter functions for per-buffer values.
7064 * buffer.h (per_buffer_default, set_per_buffer_default)
7065 (per_buffer_value, set_per_buffer_value): New functions.
7066 (PER_BUFFER_VALUE, PER_BUFFER_DEFAULT): Remove.
7067 * buffer.c, data.c: Adjust users.
7068
7069 2012-08-20 Juanma Barranquero <lekktu@gmail.com>
7070
7071 * makefile.w32-in ($(BLD)/vm-limit.$(O)): Update dependencies.
7072
7073 2012-08-19 Paul Eggert <eggert@cs.ucla.edu>
7074
7075 Rely on <config.h> + <unistd.h> to declare 'environ',
7076 as gnulib does this if the system doesn't.
7077 * callproc.c, editfns.c, process.c (environ) [!USE_CRT_DLL]:
7078 Remove declaration. MS-Windows declares it on stdlib.h which is
7079 included by conf_post.h.
7080 * emacs.c (environ) [DOUG_LEA_MALLOC]:
7081 * vm-limit.c (environ) [ORDINARY_LINK]: Remove decl.
7082 * vm-limit.c: Include <unistd.h>, for 'environ'.
7083
7084 * unexaix.c, unexcoff.c: Include "mem-limits.h".
7085 (start_of_data): Remove decl; mem-limits.h provides it.
7086
7087 * xdisp.c (handle_invisible_prop): Make it a bit faster
7088 and avoid a gcc -Wmaybe-uninitialized diagnostic.
7089
7090 2012-08-19 Chong Yidong <cyd@gnu.org>
7091
7092 * xdisp.c (handle_invisible_prop): Fix ellipses at overlay string
7093 ends (Bug#3874).
7094
7095 2012-08-19 Andreas Schwab <schwab@linux-m68k.org>
7096
7097 * .gdbinit: Use call instead of set when calling a function in the
7098 inferior.
7099
7100 * data.c (set_internal): Don't use set_blv_found.
7101 (Fkill_local_variable): Likewise.
7102
7103 2012-08-18 Alp Aker <alp.tekin.aker@gmail.com>
7104
7105 * nsfont.m (ns_ascii_average_width): Ensure the string
7106 ascii_printable is initialized with a null-terminated character
7107 array. Otherwise, it can contain undesired extra characters.
7108
7109 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
7110
7111 port new setting code to Sun C 5.8 2005/10/13
7112 * chartab.c, lisp.h (char_table_set, char_table_set_range):
7113 Return void, not Lisp_Object. Otherwise, the compiler
7114 complains about (A?B:C) where B is void and C is Lisp_Object
7115 when compiling CHAR_TABLE_SET, due to the recent change to
7116 the API of sub_char_table_set_contents.
7117
7118 2012-08-18 Chong Yidong <cyd@gnu.org>
7119
7120 * xdisp.c (handle_invisible_prop): Obey TEXT_PROP_MEANS_INVISIBLE
7121 for the string case (Bug#3874).
7122
7123 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
7124
7125 * buffer.h (BSET): Remove (Bug#12215).
7126 Replace all uses with calls to new setter functions.
7127 (bset_bidi_paragraph_direction, bset_case_canon_table)
7128 (bset_case_eqv_table, bset_directory, bset_display_count)
7129 (bset_display_time, bset_downcase_table)
7130 (bset_enable_multibyte_characters, bset_filename, bset_keymap)
7131 (bset_last_selected_window, bset_local_var_alist)
7132 (bset_mark_active, bset_point_before_scroll, bset_read_only)
7133 (bset_truncate_lines, bset_undo_list, bset_upcase_table)
7134 (bset_width_table):
7135 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
7136 (bset_auto_fill_function, bset_auto_save_file_format)
7137 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
7138 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
7139 (bset_cache_long_line_scans, bset_case_fold_search)
7140 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
7141 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
7142 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
7143 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
7144 (bset_header_line_format, bset_indicate_buffer_boundaries)
7145 (bset_indicate_empty_lines, bset_invisibility_spec)
7146 (bset_left_fringe_width, bset_major_mode, bset_mark)
7147 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
7148 (bset_name, bset_overwrite_mode, bset_pt_marker)
7149 (bset_right_fringe_width, bset_save_length)
7150 (bset_scroll_bar_width, bset_scroll_down_aggressively)
7151 (bset_scroll_up_aggressively, bset_selective_display)
7152 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
7153 (bset_word_wrap, bset_zv_marker):
7154 * category.c (bset_category_table):
7155 * syntax.c (bset_syntax_table):
7156 New setter functions.
7157
7158 * process.h (PSET): Remove (Bug#12215).
7159 Replace all uses with calls to new setter functions.
7160 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
7161 (PROCESS_INLINE): New macro.
7162 (pset_childp): New setter function.
7163 (pset_gnutls_cred_type) [HAVE_GNUTLS]: New setter function.
7164 * process.c (PROCESS_INLINE):
7165 Define to EXTERN_INLINE, so that the corresponding functions
7166 are compiled into code.
7167 (pset_buffer, pset_command, pset_decode_coding_system)
7168 (pset_decoding_buf, pset_encode_coding_system)
7169 (pset_encoding_buf, pset_filter, pset_log, pset_mark, pset_name)
7170 (pset_plist, pset_sentinel, pset_status, pset_tty_name)
7171 (pset_type, pset_write_queue): New setter functions.
7172
7173 * window.h (WSET): Remove (Bug#12215).
7174 Replace all uses with calls to new setter functions.
7175 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
7176 (WINDOW_INLINE): New macro.
7177 (wset_buffer, wset_frame, wset_left_col, wset_next, wset_prev)
7178 (wset_redisplay_end_trigger, wset_top_line, wset_total_cols)
7179 (wset_total_lines, wset_vertical_scroll_bar)
7180 (wset_window_end_pos, wset_window_end_valid)
7181 (wset_window_end_vpos): New setter functions.
7182 * window.c (WINDOW_INLINE):
7183 Define to EXTERN_INLINE, so that the corresponding functions
7184 are compiled into code.
7185 (wset_combination_limit, wset_dedicated, wset_display_table)
7186 (wset_hchild, wset_left_fringe_width, wset_left_margin_cols)
7187 (wset_new_normal, wset_new_total, wset_next_buffers)
7188 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
7189 (wset_prev_buffers, wset_right_fringe_width)
7190 (wset_right_margin_cols, wset_scroll_bar_width, wset_start)
7191 (wset_temslot, wset_vchild, wset_vertical_scroll_bar_type)
7192 (wset_window_parameters):
7193 * xdisp.c (wset_base_line_number, wset_base_line_pos)
7194 (wset_column_number_displayed, wset_region_showing):
7195 New setter functions.
7196
7197 * termhooks.h (TSET): Remove (Bug#12215).
7198 Replace all uses with calls to new setter functions.
7199 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
7200 (TERMHOOKS_INLINE): New macro.
7201 (tset_charset_list, tset_selection_alist): New setter functions.
7202 * terminal.c (TERMHOOKS_INLINE):
7203 Define to EXTERN_INLINE, so that the corresponding functions
7204 are compiled into code.
7205 (tset_param_alist): New setter function.
7206
7207 2012-08-17 Paul Eggert <eggert@cs.ucla.edu>
7208
7209 * keyboard.h (KSET): Remove (Bug#12215).
7210 Replace all uses with calls to new setter functions.
7211 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
7212 (KEYBOARD_INLINE): New macro.
7213 (kset_default_minibuffer_frame, kset_defining_kbd_macro)
7214 (kset_input_decode_map, kset_last_command, kset_last_kbd_macro)
7215 (kset_prefix_arg, kset_system_key_alist, kset_window_system):
7216 New setter functions.
7217 * keyboard.c (KEYBOARD_INLINE):
7218 Define to EXTERN_INLINE, so that the corresponding functions
7219 are compiled into code.
7220 (kset_echo_string, kset_kbd_queue)
7221 (kset_keyboard_translate_table, kset_last_prefix_arg)
7222 (kset_last_repeatable_command, kset_local_function_key_map)
7223 (kset_overriding_terminal_local_map, kset_real_last_command)
7224 (kset_system_key_syms): New setter functions.
7225
7226 * frame.h (FSET): Remove (Bug#12215).
7227 Replace all uses with calls to new setter functions.
7228 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
7229 (FRAME_INLINE): New macro.
7230 (fset_buffer_list, fset_buried_buffer_list, fset_condemned_scroll_bars)
7231 (fset_current_tool_bar_string, fset_desired_tool_bar_string)
7232 (fset_face_alist, fset_focus_frame, fset_icon_name, fset_menu_bar_items)
7233 (fset_menu_bar_vector, fset_menu_bar_window, fset_name)
7234 (fset_param_alist, fset_root_window, fset_scroll_bars)
7235 (fset_selected_window, fset_title, fset_tool_bar_items)
7236 (fset_tool_bar_position, fset_tool_bar_window): New functions.
7237 * frame.c (FRAME_INLINE):
7238 Define to EXTERN_INLINE, so that the corresponding functions
7239 are compiled into code.
7240 (fset_buffer_predicate, fset_minibuffer_window): New setter functions.
7241
7242 A few more naming-convention fixes for getters and setters.
7243 * buffer.c (set_buffer_overlays_before): Move here from buffer.h,
7244 and rename from buffer_overlays_set_before.
7245 (set_buffer_overlays_after): Move here from buffer.h, and rename
7246 from buffer_overlays_set_after.
7247 * buffer.h (buffer_intervals): Rename from buffer_get_intervals.
7248 All uses changed.
7249 (set_buffer_intervals): Rename from buffer_set_intervals.
7250 * intervals.c (set_interval_object): Move here from intervals.h,
7251 and rename from interval_set_object.
7252 (set_interval_left): Move here from intervals.h, and rename from
7253 interval_set_left.
7254 (set_interval_right): Move here from intervals.h, and rename from
7255 interval_set_right.
7256 (copy_interval_parent): Move here from intervals.h, and rename from
7257 interval_copy_parent.
7258 * intervals.h (set_interval_parent): Rename from interval_set_parent.
7259 (set_interval_plist): Rename from interval_set_plist.
7260 Return void, not Lisp_Object, since no caller uses the result.
7261 * lisp.h (string_intervals): Rename from string_get_intervals.
7262 (set_string_intervals): Rename from string_set_intervals.
7263
7264 * lisp.h (set_char_table_extras): Rename from char_table_set_extras.
7265 (set_char_table_contents): Rename from char_table_set_contents.
7266 (set_sub_char_table_contents): Rename from sub_char_table_set_contents.
7267 All uses changed. See the end of
7268 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00549.html>.
7269
7270 * lisp.h (CSET): Remove (Bug#12215).
7271 (set_char_table_ascii, set_char_table_defalt, set_char_table_parent)
7272 (set_char_table_purpose): New functions,
7273 replacing CSET. All uses changed. For example, replace
7274 "CSET (XCHAR_TABLE (char_table), parent, parent);" with
7275 "set_char_table_parent (char_table, parent);".
7276 The old version was confusing because it used the same name
7277 'parent' for two different things.
7278
7279 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
7280
7281 Functions to get and set Lisp_Object fields of buffer-local variables.
7282 * lisp.h (blv_found, set_blv_found, blv_value, set_blv_value)
7283 (set_blv_where, set_blv_defcell, set_blv_valcell): New functions.
7284 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): Remove.
7285 * data.c, eval.c, frame.c: Adjust users.
7286
7287 2012-08-17 Chong Yidong <cyd@gnu.org>
7288
7289 * xfaces.c (merge_face_vectors): If the target font specfies a
7290 font spec, make the font's attributes take precedence over
7291 directly-specified attributes.
7292 (merge_face_ref): Recognize :font.
7293
7294 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
7295
7296 Do not use memcpy for copying intervals.
7297 * intervals.c (reproduce_interval): New function.
7298 (reproduce_tree, reproduce_tree_obj): Use it.
7299 (reproduce_tree_obj): Remove prototype.
7300
7301 2012-08-17 Paul Eggert <eggert@cs.ucla.edu>
7302
7303 * lisp.h (duration_to_sec_usec): Remove unused decl.
7304
7305 2012-08-17 Alp Aker <alp.tekin.aker@gmail.com>
7306
7307 * nsfont.m (ns_ascii_average_width): Send initWithFormat selector
7308 to an allocated instance of NSString, not to the class itself.
7309
7310 2012-08-17 Juanma Barranquero <lekktu@gmail.com>
7311
7312 * makefile.w32-in (C_CTYPE_H): New macro.
7313 (LISP_H, $(BLD)/ccl.$(O), $(BLD)/doc.$(O), $(BLD)/w32console.$(O)):
7314 ($(BLD)/fontset.$(O), $(BLD)/frame.$(O), $(BLD)/composite.$(O)):
7315 ($(BLD)/sysdep.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
7316
7317 2012-08-16 Paul Eggert <eggert@cs.ucla.edu>
7318
7319 Use ASCII tests for character types.
7320 * category.c, dispnew.c, doprnt.c, editfns.c, syntax.c, term.c:
7321 * xfns.c, xterm.c:
7322 Don't include <ctype.h>; was not needed.
7323 * charset.c, doc.c, fileio.c, font.c, frame.c, gtkutil.c, image.c:
7324 * sysdep.c, xfaces.c:
7325 Include <c-ctype.h> instead of <ctype.h>.
7326 * nsterm.m: Include <c-ctype.h>.
7327 * charset.c (read_hex):
7328 * doc.c (Fsnarf_documentation):
7329 * fileio.c (IS_DRIVE) [WINDOWSNT]:
7330 (DRIVE_LETTER) [DOS_NT]:
7331 (Ffile_name_directory, Fexpand_file_name)
7332 (Fsubstitute_in_file_name):
7333 * font.c (font_parse_xlfd, font_parse_fcname):
7334 * frame.c (x_set_font_backend):
7335 * gtkutil.c (xg_get_font):
7336 * image.c (xbm_scan, xpm_scan, pbm_scan_number):
7337 * nsimage.m (hexchar):
7338 * nsterm.m (ns_xlfd_to_fontname):
7339 * sysdep.c (system_process_attributes):
7340 * xfaces.c (hash_string_case_insensitive):
7341 Use C-locale tests instead of locale-specific tests for character
7342 types, since we want the ASCII interpretation here, not the
7343 interpretation suitable for whatever happens to be the current locale.
7344
7345 2012-08-16 Martin Rudalics <rudalics@gmx.at>
7346
7347 Consistently check windows for validity/liveness
7348 (Bug#11984, Bug#12025, Bug#12026).
7349 * lisp.h (CHECK_VALID_WINDOW): New macro.
7350 * window.c (decode_window): Rename to decode_live_window.
7351 (decode_valid_window, Fwindow_valid_p): New functions.
7352 (Fwindow_frame, Fframe_root_window, Fwindow_minibuffer_p)
7353 (Fframe_first_window, Fframe_selected_window, Fwindow_parent)
7354 (Fwindow_top_child, Fwindow_left_child, Fwindow_next_sibling)
7355 (Fwindow_prev_sibling, Fwindow_combination_limit)
7356 (Fset_window_combination_limit, Fwindow_use_time)
7357 (Fwindow_total_height, Fwindow_total_width, Fwindow_new_total)
7358 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_left_column)
7359 (Fwindow_top_line, Fwindow_body_height, Fwindow_body_width)
7360 (Fwindow_hscroll, Fset_window_hscroll)
7361 (Fwindow_redisplay_end_trigger)
7362 (Fset_window_redisplay_end_trigger, Fwindow_edges)
7363 (Fwindow_pixel_edges, Fwindow_absolute_pixel_edges)
7364 (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
7365 (Fcoordinates_in_window_p, Fwindow_point, Fwindow_start)
7366 (Fwindow_end, Fset_window_point, Fset_window_start)
7367 (Fpos_visible_in_window_p, Fwindow_line_height)
7368 (Fwindow_dedicated_p, Fset_window_dedicated_p)
7369 (Fwindow_prev_buffers, Fset_window_prev_buffers)
7370 (Fwindow_next_buffers, Fwindow_parameters, Fwindow_parameter)
7371 (Fset_window_parameter, Fwindow_display_table)
7372 (Fset_window_display_table, Fdelete_other_windows_internal)
7373 (Fset_window_buffer, Fset_window_new_total)
7374 (Fset_window_new_normal, Fdelete_window_internal)
7375 (Fwindow_text_height, Fset_window_margins, Fwindow_margins)
7376 (Fset_window_fringes, Fwindow_fringes, Fset_window_scroll_bars)
7377 (Fwindow_scroll_bars): Check whether argument window is a valid or
7378 live window. Update doc-strings.
7379 (syms_of_window): New symbol Qwindow_valid_p.
7380 * keyboard.c (Fposn_at_x_y): Check whether argument
7381 frame_or_window denotes a valid window.
7382
7383 2012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
7384
7385 Fix previous char table change.
7386 * lisp.h (CHAR_TABLE_SET): Use sub_char_table_set_contents.
7387 * chartab.c (optimize_sub_char_table): Likewise.
7388
7389 2012-08-16 Chong Yidong <cyd@gnu.org>
7390
7391 * gtkutil.c (xg_get_font): Demand an Xft font (Bug#3228).
7392
7393 * xfont.c (xfont_open):
7394 * xftfont.c (xftfont_open): Set the font's max_width field.
7395
7396 * nsfont.m (nsfont_open): Similar to the Xft backend, set
7397 min_width to space_width and average_width to the average over
7398 printable ASCII characters.
7399 (ns_char_width): Code cleanup.
7400 (ns_ascii_average_width): New utility function.
7401
7402 * font.h (struct font): Update comments.
7403
7404 2012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
7405
7406 Simple interface to set Lisp_Object fields of character tables.
7407 * lisp.h (CSET): New macro.
7408 (char_table_set_extras, char_table_set_contents)
7409 (sub_char_table_set_contents): New function.
7410 * casetab.c, category.c, chartab.c, fns.c, fontset.c, search.c:
7411 * syntax.c: Adjust users.
7412
7413 2012-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
7414
7415 * eval.c (eval_sub): Bind lexical-binding.
7416 * lread.c (Qlexical_binding): Make non-static.
7417
7418 2012-08-15 Jan Djärv <jan.h.d@swipnet.se>
7419
7420 * nsmenu.m (popupSession): Remove.
7421 (pop_down_menu): Remove endModalSession.
7422 (timeout_handler:): New method.
7423 (runDialogAt:): Get next timeout. Start a NSTimer with that timeout.
7424 Call runModalForWindow. Check timer_fired when it returns.
7425 If not set, cancel timer and break out of loop.
7426 Otherwise loop again, with a new timeout.
7427
7428 * nsterm.m: Include fcntl.h if present.
7429 (fd_entry, t_readfds, inNsSelect): Remove.
7430 (select_writefds, select_valid, select_timeout, selfds)
7431 (select_mutex, apploopnr): Add.
7432 (EV_TRAILER): Call kbd_buffer_store_event_hold only if q_event_ptr.
7433 Otherwise call kbd_buffer_store_event.
7434 (ns_send_appdefined): Remove release of fd_entry.
7435 (ns_read_socket): Always send appdefined. Remove inNsSelect check.
7436 Increment and decrement apploopnr.
7437 (ns_select): If no file descriptors, just do a NSTimer.
7438 Otherwise copy read/write masks and start select thread (fd_handler).
7439 Start main loop and wait for application defined event.
7440 Inform select thread to stop selecting after main loop is exited.
7441 (ns_term_init): Create selfds pipe and set non-blocking.
7442 Initialize select_mutex. Start the select thread (fd_handler).
7443 (fd_handler:): Loop forever, wait for info from the main thread
7444 to either start or stop selecting. When select returns, send
7445 and appdefined event.
7446 (sendScrollEventAtLoc:fromEvent:): Check if q_event_ptr is set.
7447 If not call kbd_buffer_store_event.
7448
7449 * nsterm.h (EmacsApp): fd_handler takes id argument.
7450 (EmacsDialogPanel): Add timer_fired and timeout_handler.
7451
7452 * gtkutil.c (xg_mark_data): Use FRAME_X_P.
7453
7454 2012-08-15 Eli Zaretskii <eliz@gnu.org>
7455
7456 * region-cache.c (move_cache_gap): Update gap_len using the actual
7457 growth of the boundaries array. Do not change cache_len.
7458 (Bug#12196)
7459
7460 2012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
7461
7462 Generalize and cleanup font subsystem checks.
7463 * font.h (FONT_DEBUG, font_assert): Remove.
7464 * font.c, fontset.c, w32font.c, xfont.c, xftfont.c:
7465 Change font_assert to eassert. Use eassert where appropriate.
7466
7467 2012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
7468
7469 * gtkutil.c (xg_get_font): Use pango_units_to_double.
7470
7471 2012-08-15 Chong Yidong <cyd@gnu.org>
7472
7473 * gtkutil.c (xg_get_font): Rename from xg_get_font_name.
7474 When using the new font chooser, use gtk_font_chooser_get_font_desc to
7475 extract the font descriptor instead of just the font name.
7476 In that case, return a font spec instead of a string.
7477 (x_last_font_name): Move to this file from xfns.c.
7478
7479 * xfns.c (Fx_select_font): The return value can also be a font
7480 spec. Move x_last_font_name management to gtkutil.c.
7481
7482 * xfaces.c: Make font weight and style symbols non-static.
7483
7484 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
7485
7486 * minibuf.c (read_minibuf): Ignore caller's inhibit-read-only
7487 (bug#12117).
7488
7489 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
7490
7491 * alloc.c (Fgarbage_collect): Use plural form consistently.
7492
7493 2012-08-14 Eli Zaretskii <eliz@gnu.org>
7494
7495 * keyboard.c (command_loop_1): Reset ignore_mouse_drag_p flag each
7496 iteration through the command loop. Fixes a problem whereby mouse
7497 movements are ignored until the first mouse click.
7498
7499 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
7500
7501 Use bool, not int, for Lisp booleans.
7502 This is more natural, and on my platform (GCC 4.7.1 x86-64) it
7503 makes Emacs a bit smaller and presumably a bit faster.
7504 * lisp.h: Include <stdbool.h>.
7505 (struct Lisp_Boolfwd, defvar_bool):
7506 * lread.c (defvar_bool): Use bool, not int, for Lisp booleans.
7507 * regex.c [!emacs]: Include <stdbool.h>.
7508 (false, true): Remove; <stdbool.h> does this for us now.
7509
7510 2012-08-14 Chong Yidong <cyd@gnu.org>
7511
7512 * character.c (Fcharacterp): Doc fix (Bug#12076).
7513
7514 * data.c (Findirect_variable): Doc fix (Bug#11040).
7515
7516 * chartab.c (Fmap_char_table): Doc fix (Bug#12061).
7517
7518 * editfns.c (Fformat): Doc fix (Bug#12059).
7519 (Fsave_current_buffer): Doc fix (Bug#11542).
7520
7521 2012-08-14 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
7522
7523 * keyboard.c (access_keymap_keyremap): Accept anonymous functions
7524 (bug#12022).
7525
7526 2012-08-14 Martin Rudalics <rudalics@gmx.at>
7527
7528 * frame.c (make_frame_without_minibuffer, make_minibuffer_frame)
7529 (delete_frame, Fmake_frame_invisible, Ficonify_frame):
7530 * minibuf.c (choose_minibuf_frame, read_minibuf):
7531 * w32fns.c (x_create_tip_frame):
7532 * xfns.c (x_create_tip_frame): Call set_window_buffer instead of
7533 Fset_window_buffer (Bug#11984, Bug#12025, Bug#12026).
7534
7535 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
7536
7537 * intervals.c (offset_intervals): Remove obsolete comment.
7538
7539 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
7540
7541 * gtkutil.c (find_rtl_image, update_frame_tool_bar): Use NILP.
7542
7543 2012-08-14 Gergely Risko <gergely@risko.hu>
7544
7545 * coding.c (decode_coding): Record buffer modification before
7546 disabling undo_list (Bug#11773).
7547
7548 2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
7549
7550 Revert and cleanup some recent overlay changes.
7551 * buffer.h (enum overlay_type): Remove.
7552 (buffer_get_overlays, buffer_set_overlays): Likewise.
7553 (buffer_set_overlays_before, buffer_set_overlays_after):
7554 New function. Adjust users.
7555 (unchain_both): Add eassert.
7556
7557 2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
7558
7559 * gtkutil.c (update_frame_tool_bar): Use EQ where appropriate.
7560
7561 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
7562
7563 * gtkutil.c (xg_mark_data): Don't assume C99.
7564
7565 2012-08-13 Jan Djärv <jan.h.d@swipnet.se>
7566
7567 * gtkutil.c (xg_frame_tb_info): New struct.
7568 (TB_INFO_KEY): New define.
7569 (xg_free_frame_widgets): Free xg_frame_tb_info for frame if present.
7570 (xg_mark_data): Mark Lisp_Objects in xg_frame_tb_info.
7571 (xg_create_tool_bar): Allocate and initialize a xg_frame_tb_info
7572 if not present.
7573 (update_frame_tool_bar): Return early if data in xg_frame_tb_info
7574 is up to date. Otherwise store new data.
7575 (free_frame_tool_bar): Free xg_frame_tb_info if present.
7576
7577 2012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
7578
7579 Use KSET for write access to Lisp_Object members of struct kboard.
7580 * keyboard.h (KSET): New macro.
7581 * callint.c, category.c, frame.c, keyboard.c, keyboard.h, macros.c:
7582 * msdos.c, nsfns.m, nsterm.m, term.c, w32fns.c, w32term.c, xfns.c:
7583 * xterm.c: Adjust users.
7584
7585 2012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
7586
7587 Use BSET for write access to Lisp_Object members of struct buffer.
7588 * buffer.h (BSET): New macro.
7589 * buffer.c, casetab.c, cmds.c, coding.c, data.c, editfns.c:
7590 * fileio.c, frame.c, indent.c, insdel.c, intervals.c, keymap.c:
7591 * minibuf.c, print.c, process.c, syntax.c, undo.c, w32fns.c:
7592 * window.c, xdisp.c, xfns.c: Adjust users.
7593
7594 2012-08-11 BT Templeton <bpt@hcoop.net> (tiny change)
7595
7596 * lread.c (syms_of_lread): Initialize Vlexical_binding.
7597
7598 2012-08-11 Jan Djärv <jan.h.d@swipnet.se>
7599
7600 * nsterm.m (not_in_argv): New function.
7601 (application:openFile, application:openTempFile:):
7602 (application:openFileWithoutUI:, application:openFiles:): Open file
7603 if not_in_argv returns non-zero (bug#12171).
7604
7605 * gtkutil.c (gtk_font_chooser_dialog_new, GTK_FONT_CHOOSER)
7606 (gtk_font_chooser_set_font, gtk_font_chooser_get_font):
7607 Define for Gtk+ versions less than 3.2.
7608 (xg_get_font_name): Use those functions/macros here.
7609 Reported by Frans Oilinki <moilinki@gmail.com>.
7610
7611 2012-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7612
7613 * unexmacosx.c (copy_data_segment): Copy initialized data in
7614 statically linked libraries from input file rather than memory.
7615
7616 * unexmacosx.c (print_load_command_name): Add cases LC_MAIN,
7617 LC_SOURCE_VERSION, and LC_DYLIB_CODE_SIGN_DRS.
7618 (dump_it) [LC_DYLIB_CODE_SIGN_DRS]: Call copy_linkedit_data.
7619
7620 2012-08-10 Glenn Morris <rgm@gnu.org>
7621
7622 * conf_post.h (IF_LINT, lint_assume): Move here from lisp.h.
7623 * lisp.h (IF_LINT, lint_assume): Move to conf_post.h.
7624
7625 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
7626
7627 Fix last change to allow compilation with low optimization levels.
7628 * intervals.c (INTERVALS_INLINE): Define to EXTERN_INLINE.
7629 Reported by Jan Djärv <jan.h.d@swipnet.se>.
7630
7631 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
7632
7633 Use common inline syntax in intervals.h.
7634 * intervals.h (INTERVALS_INLINE): New macro.
7635 Change all users from LISP_INLINE.
7636
7637 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
7638
7639 Define Qnone once for all platforms.
7640 * frame.c (Qnone): Define here.
7641 (syms_of_frame): DEFSYM it.
7642 * lisp.h (Qnone): New declaration.
7643 * nsfns.m, nsterm.h, nsterm.m, w32fns.c, w32font.c:
7644 * xfns.c: Remove duplication. Adjust users.
7645
7646 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
7647
7648 Remove unused macros from intervals.h.
7649 * intervals.h (MERGE_INSERTIONS, DISPLAY_INVISIBLE_GLYPH): Remove.
7650 * intervals.c: Adjust comment.
7651
7652 2012-08-10 Eli Zaretskii <eliz@gnu.org>
7653
7654 * w32fns.c <w32_unicode_gui>: New static variable.
7655 (globals_of_w32fns): Initialize it according to os_subtype.
7656 (w32_init_class, w32_msg_pump, w32_wnd_proc): Use it instead of
7657 testing os_subtype.
7658
7659 2012-08-10 Joakim Hårsman <joakim.harsman@gmail.com> (tiny change)
7660 Eli Zaretskii <eliz@gnu.org>
7661
7662 Fix bug #10299 with Unicode characters sent by customized
7663 keyboards created by MSKLC.
7664 * w32fns.c (INIT_WINDOW_CLASS): New macro.
7665 (w32_init_class): Use it to initialize the Emacs class with either
7666 ANSI or Unicode API calls.
7667 (w32_msg_pump): Call GetMessageW and DispatchMessageW on NT and
7668 later.
7669 (w32_wnd_proc): If the character code sent by WM_CHAR or
7670 WM_SYSCHAR is above 255, post a WM_UNICHAR message, not the
7671 original message. Call DefWindowProcW on NT and later.
7672
7673 2012-08-10 Glenn Morris <rgm@gnu.org>
7674
7675 * Makefile.in (config_h): Fix conf_post.h out-of-tree build location.
7676
7677 * lisp.h (DIRECTORY_SEP): Let configure set it.
7678
7679 2012-08-09 Dmitry Antipov <dmantipov@yandex.ru>
7680
7681 Use TSET for write access to Lisp_Object slots of struct terminal.
7682 * termhooks.h (TSET): New macro.
7683 * coding.c, terminal.c, xselect.c: Adjust users.
7684
7685 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
7686
7687 * xdisp.c (safe_eval_handler): Remove prototype. Receive args describing
7688 the failing expression, include them in the error message.
7689 * eval.c (internal_condition_case_n): Pass nargs and args to hfun.
7690 * lisp.h (internal_condition_case_n): Update declaration.
7691
7692 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
7693
7694 Inline functions to examine and change buffer overlays.
7695 * buffer.c (unchain_both): New function.
7696 * buffer.h (buffer_get_overlays, buffer_set_overlays):
7697 (buffer_has_overlays): New function.
7698 (enum overlay_type): New enum.
7699 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c:
7700 * insdel.c, intervals.c, print.c, xdisp.c: Adjust users.
7701
7702 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
7703
7704 Inline functions to examine and change buffer intervals.
7705 * alloc.c (mark_interval_tree): Remove.
7706 (MARK_INTERVAL_TREE): Simplify.
7707 (UNMARK_BALANCE_INTERVALS): Remove. Adjust users.
7708 * intervals.c (buffer_balance_intervals): New function.
7709 (graft_intervals_into_buffer): Adjust indentation.
7710 (set_intervals_multibyte): Simplify.
7711 * buffer.h (BUF_INTERVALS): Remove.
7712 (buffer_get_intervals, buffer_set_intervals): New function.
7713 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c, insdel.c:
7714 * intervals.c, textprop.c: Adjust users.
7715
7716 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
7717
7718 Inline functions to examine and change string intervals.
7719 * lisp.h (STRING_INTERVALS, STRING_SET_INTERVALS): Remove.
7720 (string_get_intervals, string_set_intervals): New function.
7721 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
7722 * lread.c, print.c, textprop.c: Adjust users.
7723
7724 2012-08-08 Glenn Morris <rgm@gnu.org>
7725
7726 * lisp.mk (lisp): Remove language/persian.elc.
7727
7728 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
7729
7730 Cleanup intervals.
7731 * intervals.h (NULL_INTERVAL, DEFAULT_INTERVAL): Remove.
7732 (NULL_INTERVAL_P): Likewise. Adjust users.
7733 (FRONT_STICKY_P, END_NONSTICKY_P, FRONT_NONSTICKY_P):
7734 Adjust comment. Move under #if 0.
7735 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
7736 * print.c, syntax.c, textprop.c, xdisp.c: Adjust users.
7737
7738 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
7739
7740 Check total length of intervals with eassert.
7741 * intervals.h (CHECK_TOTAL_LENGTH): Remove.
7742 * intervals.c: Change all users to eassert.
7743
7744 2012-08-07 Eli Zaretskii <eliz@gnu.org>
7745
7746 * .gdbinit (xframe, xwindow, nextcons, xcar, xcdr, xlist):
7747 Rename fields to match removal of FGET and WGET and disuse of
7748 INTERNAL_FIELD in Lisp_Cons.
7749
7750 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
7751
7752 Revert and cleanup Lisp_Cons, Lisp_Misc and Lisp_Symbol things.
7753 * lisp.h (struct Lisp_Symbol): Change xname to meaningful
7754 name since all xname users are fixed long time ago. Do not
7755 use INTERNAL_FIELD.
7756 (set_symbol_name, set_symbol_function, set_symbol_plist):
7757 (set_symbol_next, set_overlay_plist): New function.
7758 (struct Lisp_Cons): Do not use INTERNAL_FIELD.
7759 (struct Lisp_Overlay): Likewise.
7760 (CVAR, MVAR, SVAR): Remove.
7761 * alloc.c, buffer.c, buffer.h, bytecode.c, cmds.c, data.c:
7762 * doc.c, eval.c, fns.c, keyboard.c, lread.c, nsselect.m:
7763 * xterm.c: Adjust users.
7764 * .gdbinit: Change to use name field of struct Lisp_Symbol
7765 where appropriate.
7766
7767 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
7768
7769 Basic functions to set Lisp_Object and pointer slots of intervals.
7770 * intervals.h (interval_set_parent, interval_set_object):
7771 (interval_set_left, interval_set_right, interval_set_plist):
7772 (interval_copy_parent): New function.
7773 (SET_INTERVAL_OBJECT, SET_INTERVAL_PARENT, INTERVAL_PTR_SIZE): Remove.
7774 (RESET_INTERVAL, COPY_INTERVAL_CACHE, MERGE_INTERVAL_CACHE):
7775 Adjust indentation.
7776 (INTERVAL_SIZE): Remove. Adjust users.
7777 * alloc.c, intervals.c, lread.c, textprop.c: Use new functions.
7778
7779 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
7780
7781 Drop PGET and revert read access to Lisp_Objects slots of Lisp_Process.
7782 * process.h (PGET): Remove.
7783 (struct Lisp_Process): Do not use INTERNAL_FIELD.
7784 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
7785
7786 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
7787
7788 Drop WGET and revert read access to Lisp_Objects slots of struct window.
7789 * window.h (WGET): Remove.
7790 (struct window): Do not use INTERNAL_FIELD.
7791 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
7792 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
7793 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
7794 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
7795 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
7796 Adjust users.
7797
7798 2012-08-07 Chong Yidong <cyd@gnu.org>
7799
7800 * window.c (Fwindow_edges, Fwindow_pixel_edges)
7801 (Fwindow_absolute_pixel_edges, Fdelete_other_windows_internal)
7802 (Fdelete_window_internal): Signal an error if the window is not on
7803 a live frame (Bug#12025).
7804
7805 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
7806
7807 Drop FGET and revert read access to Lisp_Objects slots of struct frame.
7808 * frame.h (FGET): Remove.
7809 (struct frame): Do not use INTERNAL_FIELD.
7810 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
7811 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
7812 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
7813 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
7814
7815 2012-08-06 Juanma Barranquero <lekktu@gmail.com>
7816
7817 * w32.c: Silence compiler warnings.
7818 (map_w32_filename): Remove unused variable `is_fat'.
7819 (chase_symlinks): Add parentheses around expression.
7820
7821 2012-08-06 Glenn Morris <rgm@gnu.org>
7822
7823 * sysdep.c: Respect BROKEN_GETWD.
7824
7825 * dispnew.c (GNU_LIBRARY_PENDING_OUTPUT_COUNT, PENDING_OUTPUT_COUNT):
7826 Let configure handle it.
7827 (stdio_ext.h) [DISPNEW_NEEDS_STDIO_EXT]: Include it.
7828
7829 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7830
7831 Use GCALIGNMENT where appropriate.
7832 * alloc.c (XMALLOC_HEADER_ALIGNMENT, roundup_size):
7833 (union aligned_Lisp_Symbol, union aligned_Lisp_Misc):
7834 (mark_maybe_pointer, pure_alloc): Change to use GCALIGNMENT.
7835
7836 2012-08-06 Eli Zaretskii <eliz@gnu.org>
7837
7838 * w32menu.c (set_frame_menubar, initialize_frame_menubar):
7839 Don't use FRAME_MENU_BAR_ITEMS as an lvalue.
7840
7841 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
7842
7843 * buffer.h (struct buffer): Revert `indirections' to a simple int;
7844 that should be sufficient for everyone.
7845
7846 2012-08-06 Jan Djärv <jan.h.d@swipnet.se>
7847
7848 * keyboard.c (timer_check_2): Add break so timer_check returns next
7849 timeout.
7850
7851 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7852
7853 Fix Windows build errors introduced after converting to WGET and WSET.
7854 * w32term.c (w32_set_vertical_scroll_bar): Change to use WSET.
7855 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
7856
7857 2012-08-06 Jan Djärv <jan.h.d@swipnet.se>
7858
7859 * nsterm.m (ns_frame_rehighlight): Use FSET.
7860
7861 * nsmenu.m (ns_update_menubar): Use FSET.
7862
7863 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7864
7865 Separate read and write access to Lisp_Object slots of Lisp_Process.
7866 * process.h (PGET, PSET): New macros similar to AREF and ASET.
7867 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
7868
7869 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7870
7871 Separate read and write access to Lisp_Object slots of struct window.
7872 * window.h (WGET, WSET): New macros similar to AREF and ASET.
7873 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
7874 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
7875 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
7876 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
7877 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
7878 Adjust users.
7879
7880 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7881
7882 Fix Windows build errors introduced after converting to FGET and FSET.
7883 * w32term.c (x_frame_rehighlight, x_scroll_bar_create):
7884 (w32_condemn_scroll_bars, w32_redeem_scroll_bar):
7885 (w32_judge_scroll_bars): Change to use FSET.
7886 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
7887
7888 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7889
7890 Fix replacement typo.
7891 * window.c (replace_window): Set root_window instead of
7892 selected_window. This fixes a total window subsystem
7893 malfunction reported by Bastien Guerry <bzg@gnu.org>.
7894
7895 2012-08-06 Glenn Morris <rgm@gnu.org>
7896
7897 * lisp.mk (lisp): Add language/persian.elc.
7898
7899 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7900
7901 Separate read and write access to Lisp_Object slots of struct frame.
7902 * frame.h (FGET, FSET): New macros similar to AREF and ASET.
7903 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
7904 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
7905 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
7906 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
7907
7908 2012-08-05 Andreas Schwab <schwab@linux-m68k.org>
7909
7910 * emacs.c (decode_env_path): Only use defaulted if WINDOWSNT.
7911
7912 2012-08-05 Dmitry Antipov <dmantipov@yandex.ru>
7913
7914 Generalize common compile-time constants.
7915 * lisp.h (header_size, bool_header_size, word_size): Now here.
7916 (struct Lisp_Vector): Add comment.
7917 (struct Lisp_Bool_Vector): Move up to define handy constants.
7918 (VECSIZE, PSEUDOVECSIZE): Simplify.
7919 (SAFE_ALLOCA_LISP): Use new constant. Adjust indentation.
7920 * buffer.c, buffer.h, bytecode.c, callint.c, eval.c, fns.c:
7921 * font.c, fontset.c, keyboard.c, keymap.c, macros.c, menu.c:
7922 * msdos.c, w32menu.c, w32term.h, window.c, xdisp.c, xfaces.c:
7923 * xfont.c, xmenu.c: Use word_size where appropriate.
7924
7925 2012-08-05 Lawrence Mitchell <wence@gmx.li>
7926
7927 * search.c (Freplace_match): Treat \? in the replacement text
7928 literally (Bug#8161).
7929
7930 2012-08-05 Chong Yidong <cyd@gnu.org>
7931
7932 * term.c (Vsuspend_tty_functions, Vresume_tty_functions):
7933 * frame.c (Vdelete_frame_functions):
7934 * emacs.c (Vkill_emacs_hook): Doc fix.
7935
7936 2012-08-04 Eli Zaretskii <eliz@gnu.org>
7937
7938 * xfns.c (x_set_menu_bar_lines): Fix compilation error in
7939 --with-x-toolkit=no builds.
7940 Reported by Carsten Mattner <carstenmattner@gmail.com>.
7941
7942 2012-08-04 Chong Yidong <cyd@gnu.org>
7943
7944 * syntax.c (Fmodify_syntax_entry): Doc fix.
7945
7946 2012-08-04 Eli Zaretskii <eliz@gnu.org>
7947
7948 Fix startup warnings about ../site-lisp on MS-Windows. (Bug#11959)
7949 * w32.c (init_environment): Change the default values of many
7950 environment variables in dflt_envvars[] to NULL, to avoid pushing
7951 them into environment when they were not already defined.
7952 Remove the code that deletes site-lisp subdirectories from the default
7953 value of EMACSLOADPATH, as it is no longer needed.
7954 (check_windows_init_file): Now external, not static.
7955 Use Vload_path as is, without adding anything, as this function is now
7956 called when Vload_path is already set up.
7957
7958 * w32.h (check_windows_init_file): Add prototype.
7959
7960 * emacs.c (init_cmdargs) [WINDOWSNT]: When running from the build
7961 directory, ignore the /*/i386/ tail in Vinvocation_directory, for
7962 compatibility with Posix platforms.
7963 (main): Move the call to check_windows_init_file to here from
7964 w32.c.
7965 (decode_env_path) [WINDOWSNT]: Expand the %emacs_dir%/ prefix, if
7966 any, in the DEFALT argument into the root of the Emacs build or
7967 installation tree, as appropriate.
7968
7969 * callproc.c (init_callproc_1): Call decode_env_path instead of
7970 doing its equivalent by hand.
7971 (init_callproc): Replace DOS_NT condition with MSDOS, thus letting
7972 the code that sets Vexec_path run on MS-Windows.
7973
7974 * lread.c (init_lread): Add comments to #ifdef's.
7975
7976 * msdos.c (dos_set_window_size, IT_update_begin)
7977 (IT_frame_up_to_date, IT_set_frame_parameters): Use FVAR and WVAR
7978 instead of direct references.
7979
7980 2012-08-04 Paul Eggert <eggert@cs.ucla.edu>
7981
7982 Export DEFAULT_REHASH_* to GDB.
7983 * lisp.h (DEFAULT_REHASH_THRESHOLD, DEFAULT_REHASH_SIZE):
7984 Now constants, not macros.
7985
7986 2012-08-03 Paul Eggert <eggert@cs.ucla.edu>
7987
7988 Remove unnecessary casts involving pointers.
7989 These casts are no longer needed now that we assume C89 or later,
7990 since they involve casting to or from void *.
7991 * alloc.c (make_pure_string, make_pure_c_string, pure_cons)
7992 (make_pure_float, make_pure_vector):
7993 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP):
7994 * macros.c (Fstart_kbd_macro):
7995 * menu.c (find_and_return_menu_selection):
7996 * minibuf.c (read_minibuf_noninteractive):
7997 * sysdep.c (closedir):
7998 * xdisp.c (x_produce_glyphs):
7999 * xfaces.c (compare_fonts_by_sort_order):
8000 * xfns.c (x_real_positions, select_visual):
8001 * xselect.c (x_stop_queuing_selection_requests)
8002 (x_get_window_property, x_get_window_property_as_lisp_data):
8003 * xterm.c (x_set_frame_alpha, x_find_modifier_meanings):
8004 Remove unnecessary pointer casts.
8005 * alloc.c (record_xmalloc): New function.
8006 * lisp.h (record_xmalloc): New decl.
8007 (SAFE_ALLOCA): Now takes just one arg -- the size -- and acts
8008 more like a function. This is because the pointer cast is not
8009 needed. All uses changed.
8010 * print.c (print_string, print_error_message): Avoid length recalc.
8011
8012 Improve fix for macroexp crash with debugging (Bug#12118).
8013 * lisp.h (ASET) [ENABLE_CHECKING]: Pay attention to
8014 ARRAY_MARK_FLAG when checking subscripts, because ASET is
8015 not supposed to be invoked from the garbage collector.
8016 See Andreas Schwab in <http://bugs.gnu.org/12118#25>.
8017 (gc_aset): New function, which is like ASET but can be
8018 used in the garbage collector.
8019 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
8020 (set_hash_index): Use it instead of ASET.
8021
8022 2012-08-03 Eli Zaretskii <eliz@gnu.org>
8023
8024 Support symlinks on latest versions of MS-Windows.
8025 * w32.c: Include winioctl.h and aclapi.h.
8026 (is_symlink, chase_symlinks, enable_privilege, restore_privilege)
8027 (revert_to_self): Forward declarations of static functions.
8028 <static BOOL g_b_init_get_security_info>:
8029 <g_b_init_create_symbolic_link>: New static flags.
8030 (globals_of_w32): Initialize them to zero.
8031 (GetSecurityInfo_Proc, CreateSymbolicLink_Proc): New typedefs.
8032 (map_w32_filename): Improve commentary. Simplify switch.
8033 (SYMBOLIC_LINK_FLAG_DIRECTORY): Define if not defined in system
8034 headers (most versions of MinGW w32api don't).
8035 (get_security_info, create_symbolic_link)
8036 (get_file_security_desc_by_handle, is_symlink, chase_symlinks):
8037 New functions.
8038 (sys_access, sys_chmod): Call 'chase_symlinks' to resolve symlinks
8039 in the argument file name.
8040 (sys_access): Call unc_volume_file_attributes only if
8041 GetFileAttributes fails with network-related error codes.
8042 (sys_rename): Diagnose renaming of a symlink when the user doesn't
8043 have the required privileges.
8044 (get_file_security_desc_by_name): Rename from
8045 get_file_security_desc.
8046 (stat_worker): New function, with most of the guts of 'stat', and
8047 with addition of handling of symlinks and support for 'lstat'.
8048 If possible, get file's attributes and security information by
8049 handle, not by name. Produce S_IFLNK bit for symlinks, when
8050 called from 'lstat'.
8051 (stat, lstat): New functions, call 'stat_worker'.
8052 (symlink, readlink, careadlinkat): Rewritten to create and resolve
8053 symlinks when the underlying filesystem supports them.
8054
8055 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
8056
8057 Fix macroexp crash on Windows with debugging (Bug#12118).
8058 * lisp.h (ASET) [ENABLE_CHECKING]: Ignore ARRAY_MARK_FLAG when
8059 checking subscripts; problem introduced with the recent
8060 "ASET (a, i, v)" rather than "AREF (a, i) = v" patch.
8061 (ARRAY_MARK_FLAG): Now a macro as well as a constant,
8062 since it's used in non-static inline functions now.
8063
8064 * xfaces.c (face_at_buffer_position, face_for_overlay_string):
8065 Don't assume buffer size fits in 'int'. Remove unused local.
8066
8067 Use C99-style 'extern inline' if available.
8068 * buffer.h (BUFFER_INLINE):
8069 * category.h (CATEGORY_INLINE):
8070 * character.h (CHARACTER_INLINE):
8071 * charset.h (CHARSET_INLINE):
8072 * composite.h (COMPOSITE_INLINE):
8073 * dispextern.h (DISPEXTERN_INLINE):
8074 * lisp.h (LISP_INLINE):
8075 * systime.h (SYSTIME_INLINE):
8076 New macro, replacing 'static inline' in this header.
8077 * buffer.h, category.h, character.h, charset.h, composite.h:
8078 * dispextern.h, lisp.h, systime.h:
8079 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
8080 * alloc.c (LISP_INLINE):
8081 * buffer.c (BUFFER_INLINE):
8082 * category.c (CATEGORY_INLINE):
8083 * character.c (CHARACTER_INLINE):
8084 * charset.c (CHARSET_INLINE):
8085 * composite.c (COMPOSITE_INLINE):
8086 * dispnew.c (DISPEXTERN_INLINE):
8087 * sysdep.c (SYSTIME_INLINE):
8088 Define to EXTERN_INLINE, so that the corresponding functions
8089 are compiled into code.
8090 * conf_post.h (INLINE, EXTERN_INLINE, INLINE_HEADER_BEGIN)
8091 (INLINE_HEADER_END): New macros.
8092 * lisp.h (PSEUDOVECTOR_FLAG): Now a macro as well as a constant,
8093 since it's used in non-static inline functions now.
8094 (VALMASK) [!USE_LSB_TAG]: Likewise.
8095
8096 2012-08-02 Glenn Morris <rgm@gnu.org>
8097
8098 * s/: Remove empty directory.
8099
8100 * s/ms-w32.h: Move to ../nt/inc.
8101 * makefile.w32-in (TAGS, TAGS-gmake, MS_W32_H):
8102 Update for new ms-w32.h location.
8103
8104 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
8105
8106 Port to Solaris 8.
8107 * syswait.h (WRETCODE): Remove, consistently with ../configure.ac.
8108
8109 2012-08-02 Glenn Morris <rgm@gnu.org>
8110
8111 * nsterm.m (ns_exec_path, ns_load_path): Use SEPCHAR rather than
8112 hard-coding the path separator.
8113
8114 2012-08-01 Paul Eggert <eggert@cs.ucla.edu>
8115
8116 Use "ASET (a, i, v)" rather than "AREF (a, i) = v".
8117 This how ASET and AREF are supposed to work, and makes
8118 it easier to think about future improvements. See
8119 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00026.html>.
8120 * charset.h (set_charset_attr): New function.
8121 All lvalue-style uses of CHARSET_DECODER etc. changed to use it.
8122 * lisp.h (ASET): Rewrite so as not to use AREF in an lvalue style.
8123 (aref_addr): New function. All uses of &AREF(...) changed.
8124 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
8125 (set_hash_index): New functions. All lvalue-style uses of
8126 HASH_KEY etc. changed.
8127 * keyboard.c (set_prop): New function. All lvalue-style uses
8128 of PROP changed.
8129
8130 2012-08-01 Alp Aker <alp.tekin.aker@gmail.com>
8131
8132 * nsterm.m (ns_set_vertical_scroll_bar, ns_redeem_scroll_bar)
8133 (EmacsWindow-accessibilityAttributeValue, EmacsScroller-initFrame:)
8134 (EmacsScroller-dealloc): Adjust to use WVAR. (Bug#12114)
8135 * nsfns.m (ns_set_name_as_filename): Likewise.
8136 * nsmenu.m (ns_update_menubar): Likewise.
8137 * nsselect.m (symbol_to_nsstring): Adjust to use SVAR.
8138
8139 2012-08-01 Eli Zaretskii <eliz@gnu.org>
8140
8141 * .gdbinit (xcar, xcdr, xlist, xwindow, nextcons, xprintsym):
8142 Adapt to latest changes in field names of the corresponding Lisp
8143 objects.
8144
8145 * xdisp.c (try_window_id): Use WVAR in IF_DEBUG code.
8146
8147 2012-08-01 Glenn Morris <rgm@gnu.org>
8148
8149 * s/msdos.h: Remove file.
8150 * conf_post.h [MSDOS]: New section, moved from s/msdos.h.
8151 * Makefile.in (S_FILE): Remove.
8152 (config_h): Remove S_FILE.
8153
8154 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
8155
8156 * s/ms-w32.h (DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP):
8157 Remove; moved to nt/config.nt.
8158
8159 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
8160
8161 Use INTERNAL_FIELD for conses and overlays.
8162 * lisp.h (struct Lisp_Cons): Use INTERNAL_FIELD.
8163 Remove obsolete comment.
8164 (MVAR): New macro.
8165 (struct Lisp_Overlay): Use INTERNAL_FIELD.
8166 * alloc.c, buffer.c, buffer.h, fns.c: Adjust users.
8167
8168 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
8169
8170 Use INTERNAL_FIELD for symbols.
8171 * lisp.h (SVAR): New macro. Adjust users.
8172 * alloc.c, bytecode.c, cmds.c, data.c, doc.c, eval.c:
8173 * fns.c, keyboard.c, lread.c, xterm.c: Users changed.
8174
8175 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
8176
8177 Use INTERNAL_FIELD for processes.
8178 * process.h (PVAR): New macro. Adjust style.
8179 (struct Lisp_Process): Change Lisp_Object members to INTERNAL_FIELD.
8180 * print.c, process.c, sysdep.c, w32.c, xdisp.c: Users changed.
8181
8182 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
8183
8184 Use INTERNAL_FIELD for windows.
8185 * window.h (WVAR): New macro.
8186 (struct window): Change Lisp_Object members to INTERNAL_FIELD.
8187 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
8188 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
8189 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, nsterm.m, print.c:
8190 * textprop.c, w32fns.c, w32menu.c, w32term.c, window.c, xdisp.c:
8191 * xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
8192
8193 2012-08-01 Paul Eggert <eggert@cs.ucla.edu>
8194
8195 * coding.h (CODING_ATTR_FLUSHING): Remove; unused and wouldn't work.
8196
8197 2012-08-01 Glenn Morris <rgm@gnu.org>
8198
8199 * lisp.h (IS_DIRECTORY_SEP, IS_DEVICE_SEP, IS_ANY_SEP):
8200 Move to configure.ac.
8201
8202 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
8203
8204 * makefile.w32-in (CONFIG_H): Update dependencies.
8205 (CONF_POST_H): New macro.
8206
8207 * s/ms-w32.h (SEPCHAR, NULL_DEVICE): Remove; moved to nt/config.nt.
8208
8209 2012-07-31 Glenn Morris <rgm@gnu.org>
8210
8211 * Makefile.in (S_FILE): No longer set by configure.
8212
8213 * conf_post.h (config_opsysfile): Move earlier, so that WINDOWSNT
8214 is available.
8215 (alloca.h) [WINDOWSNT]: Don't include it on MS Windows.
8216
8217 * process.h (NULL_DEVICE):
8218 * emacs.c (SEPCHAR):
8219 * editfns.c (USER_FULL_NAME): Let configure set them.
8220
8221 * s/README, s/template.h: Remove files.
8222
8223 * conf_post.h [HPUX]: Undefine HAVE_RANDOM and HAVE_RINT.
8224
8225 * conf_post.h (AMPERSAND_FULL_NAME, subprocesses):
8226 Move to configure.ac.
8227
8228 2012-07-31 Eli Zaretskii <eliz@gnu.org>
8229
8230 * .gdbinit (xframe): Adapt to introduction of FVAR and the
8231 resulting renaming of 'struct frame' members.
8232
8233 * w32menu.c (w32_menu_show): Revert bogus introduction of FVAR.
8234
8235 * fontset.c (dump_fontset): Fix compilation with ENABLE_CHECKING
8236 after introduction of FVAR.
8237
8238 2012-07-31 Jan Djärv <jan.h.d@swipnet.se>
8239
8240 * nsmenu.m (update_frame_tool_bar): Change key from NSObject* to id.
8241
8242 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Use drawInRect
8243 instead of compositeToPoint.
8244 (applicationShouldTerminate): Pass NS String literal to NSRunAlertPanel.
8245
8246 * nsfns.m, nsmenu.m, nsterm.m: Adopt to struct frame/FVAR changes.
8247
8248 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
8249
8250 Generalize INTERNAL_FIELD between buffers, keyboards and frames.
8251 * lisp.h (INTERNAL_FIELD): New macro.
8252 * buffer.h (BUFFER_INTERNAL_FIELD): Remove.
8253 (BVAR): Change to use INTERNAL_FIELD.
8254 * keyboard.h (KBOARD_INTERNAL_FIELD): Likewise.
8255 (KVAR): Change to use INTERNAL_FIELD.
8256 * frame.h (FVAR): New macro.
8257 (struct frame): Use INTERNAL_FIELD for all Lisp_Object fields.
8258 * alloc.c, buffer.c, data.c, dispnew.c, dosfns.c, eval.c, frame.c:
8259 * fringe.c, gtkutil.c, minibuf.c, nsfns.m, nsterm.m, print.c:
8260 * term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
8261 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
8262
8263 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
8264
8265 Miscellaneous fixes for non-default X toolkits.
8266 * xfns.c (Fx_file_dialog): Change to SSDATA to avoid warnings.
8267 * xterm.c (x_frame_of_widget): Remove redundant prototype.
8268 Move under #ifdef USE_LUCID.
8269 (x_create_toolkit_scroll_bar): Adjust scroll_bar_name
8270 definition and usage to avoid warnings.
8271
8272 2012-07-31 Jan Djärv <jan.h.d@swipnet.se>
8273
8274 * nsterm.m (openFiles): Fix previous checkin.
8275
8276 2012-07-31 Paul Eggert <eggert@cs.ucla.edu>
8277
8278 * indent.c (compute_motion): Remove unused local.
8279
8280 2012-07-31 Glenn Morris <rgm@gnu.org>
8281
8282 * s/usg5-4-common.h (wait3, WRETCODE): Let configure set them.
8283
8284 * conf_post.h [USG5_4]:
8285 Move remaining contents of s/usg5-4-common.h here.
8286 * s/usg5-4-common.h: Remove file.
8287
8288 * conf_post.h [IRIX6_5]: Move remaining contents of s/irix6-5.h here.
8289 * s/irix6-5.h: Remove file.
8290
8291 * conf_post.h [DARWIN_OS]: Move remaining contents of s/darwin.h here.
8292 * s/darwin.h: Remove file.
8293
8294 * conf_post.h [HPUX]: Move random, srandom here from s/hpux10-20.h.
8295 * s/hpux10-20.h: Remove file, which is now empty.
8296
8297 2012-07-30 Glenn Morris <rgm@gnu.org>
8298
8299 * conf_post.h: New, split from configure.ac's AH_BOTTOM.
8300 * Makefile.in (config_h): Add conf_post.h.
8301 * makefile.w32-in (CONFIG_H): Add conf_post.h.
8302
8303 2012-07-30 Jan Djärv <jan.h.d@swipnet.se>
8304
8305 * nsterm.m (ns_do_open_file): New variable.
8306 (ns_term_init): Set ns_do_open_file to YES after run returns.
8307 (openFile, openTempFile, openFileWithoutUI, openFiles):
8308 Open files only if ns_do_open_file.
8309
8310 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
8311
8312 * lisp.h (SWITCH_ENUM_CAST): Remove. All uses removed.
8313 This no-op macro hasn't been needed for many years.
8314 * src/regex.c (SWITCH_ENUM_CAST) [!emacs]: Likewise.
8315
8316 Export DIRECTORY_SEP, TYPEMASK, VALMASK to GDB.
8317 * alloc.c (gdb_make_enums_visible) [USE_LSB_TAG]: Add lsb_bits.
8318 * lisp.h (enum lsb_bits) [USE_LSB_TAG]: New enum, for
8319 gdb_make_enums_visible.
8320 (TYPEMASK, VALMASK) [USE_LSB_TAGS]: Now enum constants, not macros.
8321 (DIRECTORY_SEP): Now a constant, not a macro.
8322
8323 2012-07-30 Eli Zaretskii <eliz@gnu.org>
8324
8325 * w32fns.c (w32_wnd_proc): Pass w32_keyboard_codepage to
8326 w32_kbd_patch_key as the 2nd arg. (Bug#12082)
8327
8328 * w32term.c <w32_keyboard_codepage>: Renamed from
8329 keyboard_codepage and now external. All users changed.
8330
8331 * w32term.h: Add declaration of w32_keyboard_codepage.
8332
8333 * w32inevt.c (w32_kbd_patch_key): Accept an additional argument --
8334 the codepage to translate keys to Unicode. If this argument is
8335 -1, use the value returned by GetConsoleCP. All callers changed.
8336
8337 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
8338
8339 Update .PHONY listings in makefiles.
8340 * Makefile.in (.PHONY): Add all, mostlyclean, clean,
8341 bootstrap-clean, distclean, maintainer-clean, versioclean,
8342 extraclean, frc.
8343
8344 * lisp.h (STRING_BYTES_BOUND): Cast entire result to ptrdiff_t.
8345 This is a bit clearer. Fix some commentary typos.
8346
8347 2012-07-30 Glenn Morris <rgm@gnu.org>
8348
8349 * s/netbsd.h: Let configure include signal.h if needed.
8350 Remove file, which is now empty.
8351
8352 * s/usg5-4-common.h (_longjmp, _setjmp, TIOCSIGSEND):
8353 Let configure set them.
8354 * s/irix6-5.h (_longjmp, _setjmp, TIOCSIGSEND):
8355 No more need to undefine.
8356
8357 2012-07-30 Andreas Schwab <schwab@linux-m68k.org>
8358
8359 * keymap.c (Fkey_description): Don't remove 0x80 bit from
8360 non-single-byte char when adding meta modifier. (Bug#12090)
8361
8362 2012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
8363
8364 Convert safe_call to use variable number of arguments.
8365 * xdisp.c (safe_call): Convert to use varargs. Adjust users.
8366 (safe_call2): Fix comment.
8367 * lisp.h (safe_call): Adjust prototype.
8368 * coding.c (encode_coding_object): Change to use safe_call2.
8369 * xfaces.c (merge_face_heights): Change to use safe_call1.
8370
8371 2012-07-30 Glenn Morris <rgm@gnu.org>
8372
8373 * s/aix4-2.h (sigmask): No need to undefine it, since syssignal.h
8374 does that unconditionally. Remove file, which is now empty.
8375
8376 * s/freebsd.h, s/gnu-linux.h, s/sol2-6.h, s/unixware.h:
8377 Remove empty files.
8378
8379 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
8380
8381 Export to GDB most of lisp.h's remaining object-like macros.
8382 * lisp.h (min, max): Move earlier, because they're used earlier now.
8383 (INTMASK, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK)
8384 (CHAR_TABLE_STANDARD_SLOTS, CHARTAB_SIZE_BITS_0)
8385 (CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2, CHARTAB_SIZE_BITS_3)
8386 (DEFAULT_HASH_SIZE, COMPILED_ARGLIST, COMPILED_BYTECODE)
8387 (COMPILED_CONSTANTS, COMPILED_STACK_DEPTH, COMPILED_DOC_STRING)
8388 (COMPILED_INTERACTIVE, CHAR_ALT, CHAR_SUPER, CHAR_HYPER, CHAR_SHIFT)
8389 (CHAR_CTL, CHAR_META, CHAR_MODIFIER_MASK, CHARACTERBITS)
8390 (MANY, UNEVALLED, FLOAT_TO_STRING_BUFSIZE, MAX_ALLOCA):
8391 Now constants, for GDB. They need not be macros.
8392 (MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM, STRING_BYTES_BOUND):
8393 Now constants, for GDB, as well as macros, for static initializers.
8394 (CHAR_TABLE_STANDARD_SLOTS, CHAR_TABLE_EXTRA_SLOTS):
8395 Move to after the definition of struct Lisp_Char_Table,
8396 since the former now needs that type defined.
8397 (enum CHARTAB_SIZE_BITS, enum CHAR_TABLE_STANDARD_SLOTS)
8398 (enum DEFAULT_HASH_SIZE, enum Lisp_Compiled, enum char_bits)
8399 (enum maxargs, enum FLOAT_TO_STRING_BUFSIZE, enum MAX_ALLOCA):
8400 New enums, for gdb_make_enums_visible.
8401 (GLYPH_MODE_LINE_FACE): Remove; unused.
8402 * alloc.c (STRING_BYTES_MAX): Now a constant, not a macro.
8403 (gdb_make_enums_visible): Add enum CHARTAB_SIZE_BITS, enum
8404 CHAR_TABLE_STANDARD_SLOTS, enum char_bits, enum DEFAULT_HASH_SIZE,
8405 enum FLOAT_TO_STRING_BUFSIZE, enum Lisp_Bits, enum Lisp_Compiled,
8406 enum maxargs, enum MAX_ALLOCA.
8407 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): Remove.
8408 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Remove;
8409 no longer needed, now that they are done in lisp.h.
8410
8411 2012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
8412
8413 Cleanup string bytes checking.
8414 * alloc.c (GC_STRING_BYTES, CHECK_STRING_BYTES): Remove. Convert
8415 all users to STRING_BYTES or string_bytes if GC_CHECK_STRING_BYTES.
8416 (check_string_bytes): Define to empty if not GC_CHECK_STRING_BYTES.
8417 (check_sblock, compact_small_strings): Simplify.
8418
8419 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
8420
8421 * lisp.h (LISP_INT_TAG, LISP_INT1_TAG, LISP_STRING_TAG): Remove.
8422 These macros are confusing and no longer need to be defined, as
8423 the enum values now suffice. All uses replaced with definiens.
8424 (Lisp_Int1, Lisp_String): Define directly; this is clearer.
8425
8426 2012-07-29 Juanma Barranquero <lekktu@gmail.com>
8427
8428 * makefile.w32-in (LISP_H, $(BLD)/emacs.$(O), $(BLD)/w32inevt.$(O))
8429 ($(BLD)/w32console.$(O)): Update dependencies.
8430
8431 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
8432
8433 Remove HIDE_LISP_IMPLEMENTATION and cleanup cons free list check.
8434 * lisp.h (HIDE_LISP_IMPLEMENTATION): Remove as useless for a long
8435 time. Adjust users.
8436 (CHECK_CONS_LIST): Remove. Convert all users to check_cons_list.
8437
8438 2012-07-29 Jan Djärv <jan.h.d@swipnet.se>
8439
8440 * lread.c (init_lread): Remove if-statement in ifdef HAVE_NS before
8441 setting sitelisp (Bug#12010).
8442
8443 2012-07-29 Eli Zaretskii <eliz@gnu.org>
8444
8445 * w32heap.h (OS_9X): Rename from OS_WINDOWS_95.
8446
8447 * w32heap.c (cache_system_info):
8448 * w32.c (sys_rename):
8449 * w32proc.c (find_child_console, sys_kill): All users changed.
8450
8451 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
8452
8453 * alloc.c (Fgarbage_collect): Indent as per usual Emacs style.
8454
8455 2012-07-29 Eli Zaretskii <eliz@gnu.org>
8456
8457 * makefile.w32-in (LISP_H): Add $(NT_INC)/stdalign.h.
8458
8459 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
8460
8461 Cleanup statistics calculation in Fgarbage_collect.
8462 * alloc.c (Fgarbage_collect): Rename t1 to meaningful start.
8463 Fix zombies percentage calculation. Simplify elapsed time calculation.
8464
8465 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
8466
8467 Generalize marker debugging code under MARKER_DEBUG and use eassert.
8468 * insdel.c (CHECK_MARKERS, check_markers_debug_flag): Remove.
8469 (gap_left, gap_right, adjust_markers_for_delete, insert_1_both)
8470 (insert_from_string_1, insert_from_gap, insert_from_buffer_1)
8471 (replace_range, replace_range_2, del_range_2): Change to eassert.
8472 * marker.c (byte_char_debug_check): Adjust style.
8473
8474 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
8475
8476 Don't use the abbreviation "win" to refer to Windows (Bug#10421).
8477 * regex.c (MAX_BUF_SIZE): Remove some incorrect and
8478 long-ago-commented-out code that talks about "WIN32".
8479 * w32heap.h (OS_WINDOWS_95): Rename from OS_WIN95.
8480 All uses changed.
8481
8482 2012-07-28 Paul Eggert <eggert@cs.ucla.edu>
8483
8484 Use Gnulib stdalign module (Bug#9772, Bug#9960).
8485 * alloc.c (XMALLOC_BASE_ALIGNMENT, GC_POINTER_ALIGNMENT, pure_alloc):
8486 Simplify by using alignof.
8487 (pure_alloc) [! USE_LSB_TAG]: Don't over-align EMACS_INT values.
8488 * lisp.h: Include <stdalign.h>.
8489 (GCALIGNMENT): New macro and constant.
8490 (DECL_ALIGN): Remove. All uses replaced by alignas (GCALIGNMENT).
8491 (USE_LSB_TAG): ifdef on alignas, not on DECL_ALIGN.
8492 (stdalign): New macro, if not already defined.
8493
8494 2012-07-28 Eli Zaretskii <eliz@gnu.org>
8495
8496 Fix non-ASCII input in non-GUI frames on MS-Windows. (Bug#12055)
8497 * w32inevt.c: Include w32inevt.h.
8498 (w32_read_console_input): New inline function, calls either
8499 ReadConsoleInputA or ReadConsoleInputW, depending on the value of
8500 w32_console_unicode_input.
8501 (fill_queue): Call w32_read_console_input instead of ReadConsoleInput.
8502 (w32_kbd_patch_key, key_event): Use the codepage returned by
8503 GetConsoleCP, rather than the ANSI codepage returned by GetLocaleInfo.
8504 (key_event): use uChar.UnicodeChar only if
8505 w32_console_unicode_input is non-zero.
8506
8507 * w32console.c: Include w32heap.h.
8508 <w32_console_unicode_input>: New global variable.
8509 (initialize_w32_display): Set w32_console_unicode_input to 1 on NT
8510 family of Windows, zero otherwise.
8511
8512 * w32inevt.h: Declare w32_console_unicode_input.
8513
8514 * xdisp.c (init_iterator): Don't reference tip_frame in a build
8515 --without-x. (Bug#11742)
8516
8517 2012-07-27 Paul Eggert <eggert@cs.ucla.edu>
8518
8519 Adjust GDB to reflect pvec_type changes (Bug#12036).
8520 * .gdbinit (xvectype, xpr, xbacktrace): Adjust to reflect the
8521 2012-07-04 changes to pseudovector representation.
8522 Problem reported by Eli Zaretskii in <http://bugs.gnu.org/12036#30>.
8523
8524 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
8525
8526 * dbusbind.c (XD_DBUS_VALIDATE_BUS_ADDRESS): Canonicalize session
8527 bus address.
8528 (xd_close_bus, Fdbus_init_bus): Handle reference counter properly.
8529
8530 2012-07-27 Eli Zaretskii <eliz@gnu.org>
8531
8532 * alloc.c (listn): Fix the order the arguments are consed onto the
8533 list.
8534
8535 * lisp.h (enum constype): Use CONSTYPE_HEAP and CONSTYPE_PURE for
8536 enumeration constants, as PURE and HEAP are too general, and clash
8537 with other headers and sources, such as gmalloc.c and the
8538 MS-Windows system headers. All users changed.
8539
8540 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
8541
8542 Revert last save_excursion_save and save_excursion_restore changes.
8543 * alloc.c, editfns.c, marker.c, lisp.h: Revert.
8544 Lots of crashes reported by Chong Yidong <cyd@gnu.org>.
8545
8546 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
8547
8548 Fix recently-introduced typos in Windows port.
8549 Reported by Martin Rudalics <rudalics@gmx.at>.
8550 * w32.c (init_environment): Replace comma with semicolon.
8551 * w32fns.c (syms_of_w32fns): Add missing parenthesis.
8552
8553 2012-07-27 Paul Eggert <eggert@cs.ucla.edu>
8554
8555 Improve GDB symbol export (Bug#12036).
8556 * .gdbinit (xgetptr, xgetint, xgettype): Set $bugfix in different
8557 arms of an 'if', not using conditional expressions; otherwise GDB
8558 complains about the types in the unevaluated arm when the argument
8559 is an integer literal.
8560 (xgetint): Simplify expression.
8561 * alloc.c (gdb_make_enums_visible): New constant. This ports to
8562 GCC 3.4.2 the export of symbols to GDB. Problem reported by Eli
8563 Zaretskii in <http://bugs.gnu.org/12036#13>.
8564 * lisp.h (PUBLISH_TO_GDB): Remove. All uses removed. No longer
8565 needed now that we have gdb_make_enums_visible.
8566 (enum CHECK_LISP_OBJECT_TYPE, enum Lisp_Bits, enum More_Lisp_Bits)
8567 (enum enum_USE_LSB_TAG):
8568 New enum types, packaging up enums that need to be exported to GDB.
8569
8570 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
8571
8572 Utility function to make a list from specified amount of objects.
8573 * lisp.h (enum constype): New datatype.
8574 (listn): New prototype.
8575 * alloc.c (listn): New function.
8576 (Fmemory_use_count, syms_of_alloc): Use it.
8577 * buffer.c (syms_of_buffer): Likewise.
8578 * callint.c (syms_of_callint): Likewise.
8579 * charset.c (define_charset_internal): Likewise.
8580 * coding.c (syms_of_coding): Likewise.
8581 * keymap.c (syms_of_keymap): Likewise.
8582 * search.c (syms_of_search): Likewise.
8583 * syntax.c (syms_of_syntax): Likewise.
8584 * w32.c (init_environment): Likewise.
8585 * w32fns.c (Fw32_battery_status, syms_of_w32fns): Likewise.
8586 * xdisp.c (syms_of_xdisp): Likewise.
8587 * xfns.c (syms_of_xfns): Likewise.
8588
8589 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
8590
8591 Fast save_excursion_save and save_excursion_restore.
8592 * lisp.h (struct Lisp_Excursion): New data type.
8593 (PVEC_EXCURSION): New pseudovector type.
8594 (XEXCURSION, XSETEXCURSION, EXCURSIONP): Convenient macros
8595 to deal with it. Adjust comments.
8596 (init_marker, attach_marker): New prototype.
8597 (unchain_marker): Adjust prototype.
8598 * marker.c (attach_marker): Change to global.
8599 (init_marker): New function.
8600 * alloc.c (Fmake_marker, build_marker): Use it.
8601 (build_marker): More easserts.
8602 (mark_object): Handle struct Lisp_Excursion.
8603 * editfns.c (save_excursion_save, save_excursion_restore):
8604 Reimplement to use struct Lisp_Excursion. Add comments.
8605
8606 2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
8607
8608 Fix export of symbols to GDB (Bug#12036).
8609 * alloc.c (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL)
8610 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Move these here from
8611 emacs.c, as this is a more-suitable home. Had this been done earlier
8612 the fix for 12036 would have avoided some of the problems noted in
8613 <http://bugs.gnu.org/12036#13> by Eli Zaretskii, as the scope problems
8614 would have been more obvious.
8615 * emacs.c: Do not include <verify.h>; no longer needed.
8616 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS)
8617 (gdb_GCTYPEBITS, gdb_USE_LSB_TAG)
8618 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
8619 Remove; now done in lisp.h.
8620 * lisp.h (PUBLISH_TO_GDB): New macro.
8621 (GCTYPEBITS, USE_LSB_TAG, CHECK_LISP_OBJECT_TYPE, enum pvec_type)
8622 (DATA_SEG_BITS): Use it.
8623 (GCTYPEBITS, USE_LSB_TAG): Now also an enum, for GDB.
8624 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Now just an enum, for GDB.
8625 * mem-limits.h (EXCEEDS_LISP_PTR): Redo so that DATA_SEG_BITS need
8626 not be usable in #if. This simplifies things.
8627
8628 2012-07-26 Juanma Barranquero <lekktu@gmail.com>
8629
8630 * makefile.w32-in ($(BLD)/emacs.$(O)): Update dependencies.
8631
8632 2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
8633
8634 Simplify export of symbols to GDB (Bug#12036).
8635 * .gdbinit (xgetptr, xgetint, xgettype): Don't use "set $bugfix =
8636 $bugfix.i", as this doesn't work (with GDB 7.4.1, anyway).
8637 (xgetptr, xgetint, xgettype, xcoding, xcharset, xprintbytestr):
8638 Adjust to changes in lisp.h and emacs.c, by using
8639 CHECK_LISP_OBJECT_TYPE rather than gdb_use_struct, VALMASK instead
8640 of $valmask, DATA_SEG_BITS instead of gdb_data_seg_bits,
8641 INTTYPEBITS instead of gdb_gctypebits - 1, USE_LSB_TAG instead of
8642 gdb_use_lsb, (1 << GCTYPEBITS) - 1 instead of $tagmask, VALBITS
8643 instead of gdb_valbits.
8644 (xvectype, xvector, xpr, xprintstr, xbacktrace): Similarly, use
8645 PSEUDOVECTOR_FLAG instead of PVEC_FLAG, and ARRAY_MARK_FLAG
8646 instead of gdb_array_mark_flag.
8647 (xboolvector): Get size from $->size, not $->header.size.
8648 Use BOOL_VECTOR_BITS_PER_CHAR rather than mystery constants.
8649 (xreload, hook-run, hookpost-run): Remove.
8650 * emacs.c: Include <verify.h>.
8651 (gdb_use_lsb, gdb_use_struct, gdb_valbits, gdb_gctypebits)
8652 (gdb_data_seg_bits, PVEC_FLAG, gdb_array_mark_flag, gdb_pvec_type):
8653 Remove.
8654 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS, gdb_GCTYPEBITS)
8655 (gdb_USE_LSB_TAG): New enum constants.
8656 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
8657 Also define these as enum constants, so they're visible to GDB.
8658 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): New macros.
8659 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Also define these
8660 as constants, so they're visible to GDB.
8661 * lisp.h (VALBITS, INTTYPEBITS, FIXNUM_BITS, PSEUDOVECTOR_SIZE_BITS)
8662 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK, BOOL_VECTOR_BITS_PER_CHAR):
8663 Now enum constants, not macros, so they're visible to GDB.
8664 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Default to 0, as this is
8665 more convenient now. All uses changed.
8666 (VALMASK) [USE_LSB_TAG]: Also define in this case.
8667 * mem-limits.h (EXCEEDS_LISP_PTR): Adjust to DATA_SEG_BITS change.
8668
8669 2012-07-26 Dmitry Antipov <dmantipov@yandex.ru>
8670
8671 Explicitly free restriction data that are not needed anymore.
8672 * editfns.c (save_restriction_restore): Free restriction data.
8673
8674 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
8675
8676 * eval.c (Fautoload_do_load): Rename from do_autoload, export to Lisp,
8677 add argument, tune behavior, and adjust all callers.
8678
8679 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
8680
8681 Use typedef for EMACS_INT, EMACS_UINT.
8682 * lisp.h, s/ms-w32.h (EMACS_INT, EMACS_UINT): Use typedefs rather
8683 than macros. This simplifies debugging in the usual case, since
8684 it lets GDB show addresses as 'EMACS_INT *' rather than 'long int *'
8685 and it allows expressions involving EMACS_INT casts.
8686 * .gdbinit (xreload): Simplify by using EMACS_INT cast.
8687
8688 2012-07-25 Jan Djärv <jan.h.d@swipnet.se>
8689
8690 * nsterm.m (ns_read_socket): Return early if there is a modal
8691 window (Bug#12043).
8692
8693 2012-07-25 Martin Rudalics <rudalics@gmx.at>
8694
8695 * frame.c (Fredirect_frame_focus): In doc-string don't mention
8696 that FOCUS-FRAME can be omitted.
8697
8698 2012-07-25 Dmitry Antipov <dmantipov@yandex.ru>
8699
8700 Adjust buffer text indirection counters at the end of Fkill_buffer.
8701 * buffer.c (Fkill_buffer): Adjust indirection counters when the
8702 buffer is definitely dead. This should really fix an issue reported
8703 by Christoph Scholtes again. (Bug#12007).
8704 (init_buffer_once): Initialize indirection counters of
8705 buffer_defaults and buffer_local_symbols (for sanity and safety).
8706
8707 2012-07-24 Eli Zaretskii <eliz@gnu.org>
8708
8709 * xdisp.c (init_iterator): Don't compute dimensions of truncation
8710 and continuation glyphs on tooltip frames, leave them at zero.
8711 Avoids continued lines in tooltips. (Bug#11832)
8712
8713 2012-07-24 Dmitry Antipov <dmantipov@yandex.ru>
8714
8715 Simplify copy_overlay.
8716 * buffer.c (copy_overlay): Simplify. Use build_marker.
8717 * lisp.h (struct Lisp_Overlay): Restore comment with minor tweaks.
8718
8719 2012-07-23 Eli Zaretskii <eliz@gnu.org>
8720
8721 * print.c (print_object): Don't crash when a frame's name is nil
8722 or invalid. (Bug#12025)
8723
8724 * window.c (decode_any_window): Disable CHECK_LIVE_FRAME test, as
8725 it signals an error when a tooltip frame is being created.
8726
8727 2012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
8728
8729 Cleanup miscellaneous objects allocation and initialization.
8730 * alloc.c (allocate_misc): Change to static. Add argument to
8731 specify the subtype. Adjust comment and users.
8732 (build_overlay): New function.
8733 * buffer.c (copy_overlays, Fmake_overlay): Use it.
8734 * lisp.h (struct Lisp_Overlay): Remove obsolete comment.
8735 (allocate_misc): Remove prototype.
8736 (build_overlay): Add prototype.
8737
8738 2012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
8739
8740 Swap buffer text indirection counters in Fbuffer_swap_text.
8741 * buffer.c (Fbuffer_swap_text): Swap indirections too.
8742 This avoids crash reported by Christoph Scholtes at
8743 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00785.html.
8744
8745 2012-07-22 Jan Djärv <jan.h.d@swipnet.se>
8746
8747 * nsmenu.m (Popdown_data): New struct.
8748 (pop_down_menu): p->pointer is Popdown_data. Release the pool and
8749 free Popdown_data.
8750 (ns_popup_dialog): Use NSAutoreleasePool and pass it to pop_down_menu.
8751 (initWithContentRect): Make imgView and contentView non-static
8752 and autorelease them. Also autorelease img and matrix (Bug#12005).
8753 (dealloc): Remove (Bug#12005).
8754
8755 2012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
8756
8757 Adjust consing_since_gc when objects are explicitly freed.
8758 * alloc.c (GC_DEFAULT_THRESHOLD): New macro.
8759 (Fgarbage_collect): Use it. Change minimum to 1/10 of default.
8760 (free_cons, free_misc): Subtract object size from consing_since_gc.
8761
8762 2012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
8763
8764 Simplify and cleanup markers positioning code.
8765 * marker.c (attach_marker): More useful eassert.
8766 (live_buffer, set_marker_internal): New function.
8767 (Fset_marker, set_marker_restricted): Use set_marker_internal.
8768 (set_marker_both, set_marker_restricted_both): Use live_buffer.
8769
8770 2012-07-22 Paul Eggert <eggert@cs.ucla.edu>
8771
8772 * buffer.h (struct buffer.indirections): Now ptrdiff_t, not int,
8773 as it's limited by the amount of memory, not by INT_MAX.
8774
8775 2012-07-21 Eli Zaretskii <eliz@gnu.org>
8776
8777 * keyboard.c (keys_of_keyboard): Bind language-change to 'ignore'
8778 in special-event-map. See the discussion at
8779 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00417.html
8780 for the reasons.
8781
8782 * w32menu.c (add_menu_item): Cast to ULONG_PTR when assigning
8783 info.dwItemData. Fixes crashes on 64-bit Windows.
8784 Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
8785
8786 2012-07-21 Jan Djärv <jan.h.d@swipnet.se>
8787
8788 * nsterm.m (accessibilityAttributeValue): New function. (Bug#11134).
8789 (conversationIdentifier): Return value is NSInteger.
8790 * nsterm.m (accessibilityAttributeValue): Surround with NS_IMPL_COCOA.
8791
8792 2012-07-21 Chong Yidong <cyd@gnu.org>
8793
8794 * window.c (decode_any_window): Signal an error if the window is
8795 on a dead frame (Bug#11984).
8796
8797 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
8798
8799 Add indirection counting to speed up Fkill_buffer.
8800 * buffer.h (struct buffer): New member.
8801 * buffer.c (Fget_buffer_create): Set indirection counter to 0.
8802 (Fmake_indirect_buffer): Set indirection counter to -1, increment
8803 base buffer indirection counter.
8804 (compact_buffer): If ENABLE_CHECKING, verify indirection counters.
8805 (Fkill_buffer): Adjust indirection counters as needed, don't walk
8806 through buffer list if indirection counter is 0.
8807
8808 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
8809
8810 Extend the value returned by Fgarbage_collect with heap statistics.
8811 * alloc.c (Qheap): New symbol.
8812 (syms_of_alloc): DEFSYM it.
8813 (Fgarbage_collect): If DOUG_LEA_MALLOC, add mallinfo data.
8814 (Fmemory_free): Remove.
8815 (syms_of_alloc): Don't defsubr it.
8816 * buffer.c (Fcompact_buffer): Remove.
8817 (syms_of_buffer): Don't defsubr it.
8818
8819 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
8820
8821 Make maybe_gc inline.
8822 Verify that inlining is always possible (GCC 4.7.1, -O3 -Winline).
8823 * lisp.h (consing_since_gc, gc_relative_threshold)
8824 (memory_full_cons_threshold): Revert declaration.
8825 (maybe_gc): Remove prototype, define as inline.
8826 * alloc.c: Remove old commented-out code.
8827 (consing_since_gc, gc_relative_threshold)
8828 (memory_full_cons_threshold): Revert to global.
8829 (maybe_gc): Remove.
8830
8831 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
8832
8833 Simple wrapper for make_unibyte_string, adjust font_open_by_name.
8834 * lisp.h (build_unibyte_string): New function.
8835 * dosfns.c, fileio.c, fns.c, ftfont.c, process.c:
8836 * sysdep.c, w32fns.c, xfns.c: Use it.
8837 * font.c (font_open_by_name): Change 2nd and 3rd args to the only arg
8838 of type Lisp_Object to avoid redundant calls to make_unibyte_string.
8839 Adjust users accordingly.
8840 * font.h (font_open_by_name): Adjust prototype.
8841
8842 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
8843
8844 Cleanup calls to Fgarbage_collect.
8845 * lisp.h (maybe_gc): New prototype.
8846 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
8847 Remove declarations.
8848 * alloc.c (maybe_gc): New function.
8849 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
8850 Make them static.
8851 * bytecode.c (MAYBE_GC): Use maybe_gc.
8852 * eval.c (eval_sub, Ffuncall): Likewise.
8853 * keyboard.c (read_char): Likewise. Adjust call to maybe_gc
8854 to avoid dependency from auto-save feature.
8855
8856 2012-07-19 Paul Eggert <eggert@cs.ucla.edu>
8857
8858 * buffer.h (FOR_EACH_BUFFER): Rename from 'for_each_buffer'.
8859 (FOR_EACH_PER_BUFFER_OBJECT_AT): Rename from
8860 'for_each_per_buffer_object_at'.
8861 All uses changed. It's better to use upper-case for macros that
8862 cannot be implemented as functions, to give the reader a clue
8863 that they're special.
8864
8865 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
8866
8867 * alloc.c (Fgarbage_collect): Tweak docstring.
8868
8869 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
8870
8871 Tweak the value returned from Fgarbage_collect again.
8872 * alloc.c (Fgarbage_collect): New return value, as confirmed in
8873 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00418.html.
8874 Adjust documentation.
8875 (total_vector_bytes): Rename to total_vector_slots, adjust
8876 accounting.
8877 (total_free_vector_bytes): Rename to total_free_vector_slots,
8878 adjust accounting.
8879 (Qstring_bytes, Qvector_slots): New symbols.
8880 (syms_of_alloc): DEFSYM them.
8881
8882 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
8883
8884 Buffer compaction primitive which may be used from Lisp.
8885 * buffer.c (compact_buffer, Fcompact_buffer): New function.
8886 (syms_of_buffer): Register Fcompact_buffer.
8887 * alloc.c (Fgarbage_collect): Use compact_buffer.
8888 * buffer.h (compact_buffer): New prototype.
8889 (struct buffer_text): New member.
8890
8891 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
8892
8893 New macro to iterate over all buffers, miscellaneous cleanups.
8894 * lisp.h (all_buffers): Remove declaration.
8895 * buffer.h (all_buffers): Add declaration, with comment.
8896 (for_each_buffer): New macro.
8897 * alloc.c (Fgarbage_collect, mark_object): Use it.
8898 * buffer.c (Fkill_buffer, Fbuffer_swap_text, Fset_buffer_multibyte)
8899 (init_buffer): Likewise.
8900 * data.c (Fset_default): Likewise.
8901 * coding.c (code_conversion_restore): Remove redundant check
8902 for dead buffer.
8903 * buffer.c (Fkill_buffer): Likewise. Remove obsolete comment.
8904
8905 2012-07-18 Andreas Schwab <schwab@linux-m68k.org>
8906
8907 Fix bug that created negative-length intervals.
8908 * intervals.c (merge_interval_right, merge_interval_left):
8909 Do not zero out this interval if it is absorbed by its children,
8910 as this interval's total length doesn't change in that case. See
8911 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00403.html>.
8912
8913 2012-07-18 Paul Eggert <eggert@cs.ucla.edu>
8914
8915 * alloc.c (Fmake_bool_vector): Fix off-by-8 bug
8916 when invoking (make-bool-vector N t) and N is a positive
8917 multiple of 8 -- the last 8 bits were mistakenly cleared.
8918
8919 Remove some struct layout assumptions in bool vectors.
8920 * alloc.c (bool_header_size): New constant.
8921 (header_size, word_size): Move earlier, as they're now used earlier.
8922 Use 'word_size' in a few more places, where it's appropriate.
8923 (Fmake_bool_vector, sweep_vectors): Don't assume that there is no
8924 padding before the data member of a bool vector.
8925 (sweep_vectors): Use PSEUDOVECTOR_TYPEP, in an eassert, rather
8926 than doing the check by hand with an abort ().
8927
8928 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
8929
8930 * eval.c (Fdefvar): Don't check constants since we only set the var if
8931 it's not yet defined anyway (bug#11904).
8932
8933 * lisp.h (last_undo_boundary): Declare new var.
8934 * keyboard.c (command_loop_1): Set it.
8935 * cmds.c (Fself_insert_command): Use it to only remove boundaries that
8936 were auto-added by the command loop (bug#11774).
8937
8938 2012-07-18 Andreas Schwab <schwab@linux-m68k.org>
8939
8940 * w32font.c (Qsymbol): Remove local definition.
8941 (syms_of_w32font): Don't DEFSYM it.
8942
8943 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
8944
8945 Fix sweep_vectors to handle large bool vectors correctly.
8946 * alloc.c (sweep_vectors): Account total_vector_bytes for
8947 bool vectors larger than VBLOCK_BYTES_MAX.
8948
8949 2012-07-18 Chong Yidong <cyd@gnu.org>
8950
8951 * frame.c (x_set_frame_parameters): Revert bogus change introduced
8952 in 2012-05-25 commit by Paul Eggert (Bug#11738).
8953
8954 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
8955
8956 Return more descriptive data from Fgarbage_collect.
8957 Suggested by Stefan Monnier in
8958 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00369.html.
8959 * alloc.c (bounded_number): New function.
8960 (total_buffers, total_vectors): New variable.
8961 (total_string_size): Rename to total_string_bytes, adjust users.
8962 (total_vector_size): Rename to total_vector_bytes, adjust users.
8963 (sweep_vectors): Account total_vectors and total_vector_bytes.
8964 (Fgarbage_collect): New return value. Adjust documentation.
8965 (gc_sweep): Account total_buffers.
8966 (Fmemory_free, Fmemory_use_counts): Use bounded_number.
8967 (VECTOR_SIZE): Remove.
8968 * data.c (Qfloat, Qvector, Qsymbol, Qstring, Qcons): Make global.
8969 (Qinterval, Qmisc): New symbols.
8970 (syms_of_data): Initialize them.
8971 * lisp.h (Qinterval, Qsymbol, Qstring, Qmisc, Qvector, Qfloat)
8972 (Qcons, Qbuffer): New declarations.
8973
8974 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
8975
8976 * alloc.c (Fmemory_free): Account for memory-free's own storage.
8977 Round up, not down. Improve doc.
8978
8979 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
8980
8981 Restore old code in allocate_string_data to avoid Faset breakage.
8982 Reported by Julien Danjou <julien@danjou.info> in
8983 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00371.html.
8984 * alloc.c (allocate_string_data): Restore old code with minor
8985 adjustments, fix comment to explain this subtle issue.
8986
8987 2012-07-17 Eli Zaretskii <eliz@gnu.org>
8988
8989 Remove FILE_SYSTEM_CASE.
8990 * s/msdos.h (FILE_SYSTEM_CASE): Don't define.
8991
8992 * fileio.c (FILE_SYSTEM_CASE): Don't define.
8993 (Ffile_name_directory, Fexpand_file_name): Don't use FILE_SYSTEM_CASE.
8994 Fixes problems on MS-DOS with Vtemp_file_name_pattern when
8995 call-process-region passes it through expand-file-name.
8996
8997 * dired.c (file_name_completion): Don't use FILE_SYSTEM_CASE.
8998
8999 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
9000
9001 Fix crash when creating indirect buffer (Bug#11917)
9002 * buffer.c (buffer_lisp_local_variables): Add argument CLONE.
9003 Don't handle unbound variables specially if non-zero.
9004 (Fbuffer_local_variables): Pass zero.
9005 (clone_per_buffer_values): Pass non-zero.
9006
9007 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
9008
9009 * gnutls.c (emacs_gnutls_handshake): Revert last change. Add QUIT
9010 to make the loop interruptible.
9011
9012 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
9013
9014 * gnutls.c (emacs_gnutls_handshake): Only retry if
9015 GNUTLS_E_INTERRUPTED.
9016
9017 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
9018
9019 Cleanup and convert miscellaneous checks to eassert.
9020 * alloc.c (mark_interval): Fix comment, partially rephrase
9021 old comment from intervals.h (see below).
9022 * intervals.c (find_interval, adjust_intervals_for_insertion)
9023 (delete_interval, adjust_intervals_for_deletion)
9024 (graft_intervals_into_buffer, temp_set_point_both, copy_intervals):
9025 Convert to eassert.
9026 (adjust_intervals_for_insertion, make_new_interval):
9027 Remove obsolete and unused code.
9028 * intervals.h (struct interval): Remove obsolete comment.
9029 * textprotp.c (erase_properties): Remove unused code.
9030 (Fadd_text_properties, set_text_properties_1, Fremove_text_properties)
9031 (Fremove_list_of_text_properties): Convert to eassert.
9032
9033 2012-07-17 Chong Yidong <cyd@gnu.org>
9034
9035 * editfns.c (Finsert_char): Doc fix.
9036
9037 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
9038
9039 Fix previous change to make Fmemory_free always accurate.
9040 * alloc.c (make_interval): Update total_free_intervals.
9041 (make_float): Likewise for total_free_floats.
9042 (free_cons, Fcons): Likewise for total_free_conses.
9043 (SETUP_ON_FREE_LIST, allocate_vector_from_block):
9044 Likewise for total_free_vector_bytes.
9045 (Fmake_symbol): Likewise for total_free_symbols.
9046 (bytes_free): Remove.
9047
9048 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
9049
9050 Simple free memory accounting feature.
9051 * alloc.c (bytes_free, total_free_vector_bytes): New variable.
9052 (sweep_vectors): Accumulate size of free vectors.
9053 (Fgarbage_collect): Setup bytes_free.
9054 (Fmemory_free): New function.
9055 (syms_of_alloc): Register it.
9056
9057 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
9058
9059 Cleanup overlays checking.
9060 * buffer.h (OVERLAY_VALID): Remove as useless synonym of OVERLAYP.
9061 * buffer.c (overlay_touches_p, recenter_overlay_lists): Change to
9062 eassert and OVERLAYP.
9063 (sort_overlays): Change to use OVERLAYP.
9064
9065 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
9066
9067 * editfns.c (Finsert_char): Make it interactive, and make the
9068 second arg optional. Copy interactive spec and docstring from
9069 ucs-insert.
9070
9071 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
9072
9073 * floatfns.c (Fabs): Do not wrap fabs inside IN_FLOAT (Bug#11913).
9074 Unlike the other wrapped functions, fabs has an unspecified
9075 effect on errno.
9076
9077 2012-07-16 Jan Djärv <jan.h.d@swipnet.se>
9078
9079 * nsterm.m (keyDown): Interpret flags without left/right bits
9080 as the left key (Bug#11670).
9081
9082 2012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
9083
9084 Remove empty and useless init functions.
9085 * lisp.h (init_character_once, init_fns, init_image)
9086 (init_filelock, init_sound): Remove prototype.
9087 * character.c (init_character_once): Remove.
9088 * filelock.c (init_filelock): Likewise.
9089 * fns.c (init_fns): Likewise.
9090 * image.c (init_image): Likewise.
9091 * sound.c (init_sound): Likewise.
9092 * emacs.c (main): Adjust accordingly.
9093
9094 2012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
9095
9096 * gtkutil.h: Tiny cleanups.
9097 (use_old_gtk_file_dialog): Remove useless declaration.
9098 (xg_uses_old_file_dialog): Add suggested const attribute.
9099
9100 2012-07-15 Eli Zaretskii <eliz@gnu.org>
9101
9102 * bidi.c (MAX_STRONG_CHAR_SEARCH): New macro.
9103 (bidi_paragraph_init): Use it to limit search forward for a strong
9104 directional character in abnormally large paragraphs full of
9105 neutral or weak characters. (Bug#11943)
9106
9107 2012-07-15 Stefano Facchini <stefano.facchini@gmail.com> (tiny change)
9108
9109 * gtkutil.c (xg_create_tool_bar): Apply "primary-toolbar" style to
9110 the toolbar (Bug#9451).
9111 (xg_make_tool_item): Give the widget event box a transparent
9112 background.
9113
9114 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
9115
9116 Cleanup basic allocation variables and functions.
9117 * alloc.c (ignore_warnings, init_intervals, init_float)
9118 (init_cons, init_symbol, init_marker): Remove.
9119 (interval_block_index): Initialize to INTERVAL_BLOCK_SIZE.
9120 (float_block_index): Initialize to FLOAT_BLOCK_SIZE.
9121 (cons_block_index): Initialize to CONS_BLOCK_SIZE.
9122 (symbol_block_size): Initialize to SYMBOL_BLOCK_SIZE.
9123 (marker_block_index): Initialize to MARKER_BLOCK_SIZE.
9124 (staticidx, init_alloc_once, init_strings, free_ablock):
9125 Remove redundant initialization.
9126 * fns.c (init_weak_hash_tables): Remove.
9127 * lisp.h (init_weak_hash_tables): Remove prototype.
9128
9129 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
9130
9131 Use zero_vector where appropriate.
9132 * alloc.c (zero_vector): Define as Lisp_Object. Adjust users
9133 accordingly.
9134 * lisp.h (zero_vector): New declaration.
9135 * font.c (null_vector): Remove.
9136 (syms_of_font): Remove initialization and staticpro.
9137 (font_list_entities, font_find_for_lface): Change to use zero_vector.
9138 * keymap.c (Faccessible_keymaps): Likewise.
9139
9140 2012-07-15 Leo Liu <sdl.web@gmail.com>
9141
9142 * fringe.c: Fix typo in comments.
9143
9144 2012-07-14 Leo Liu <sdl.web@gmail.com>
9145
9146 * fringe.c: Add a new bitmap exclamation-mark.
9147
9148 2012-07-14 Eli Zaretskii <eliz@gnu.org>
9149
9150 * gmalloc.c (GMALLOC_INHIBIT_VALLOC): Don't reference.
9151
9152 * s/msdos.h (BSD_SYSTEM, DATA_START, GC_SETJMP_WORKS, HAVE_MOUSE)
9153 (HAVE_MENUS): Don't define, defined by editing config.in with
9154 msdos/sed2v2.inp.
9155 (GMALLOC_INHIBIT_VALLOC): Don't define.
9156 (MODE_LINE_BINARY_TEXT): Remove, not used anymore.
9157
9158 2012-07-14 Juanma Barranquero <lekktu@gmail.com>
9159
9160 * s/ms-w32.h (GC_SETJMP_WORKS, GC_MARK_STACK): Set in nt/config.nt.
9161
9162 2012-07-14 Glenn Morris <rgm@gnu.org>
9163
9164 * s/aix4-2.h, s/freebsd.h, s/gnu-linux.h, s/hpux10-20.h:
9165 * s/irix6-5.h, s/netbsd.h, s/sol2-6.h, s/unixware.h:
9166 Let configure set GC_SETJMP_WORKS, GC_MARK_STACK.
9167
9168 2012-07-13 Glenn Morris <rgm@gnu.org>
9169
9170 * s/gnu-linux.h (GC_MARK_SECONDARY_STACK): Let configure set it.
9171
9172 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Let configure set it.
9173 * s/irix6-5.h (SETUP_SLAVE_PTY): No more need to unset it.
9174
9175 2012-07-13 Jan Djärv <jan.h.d@swipnet.se>
9176
9177 * nsterm.m (uRect): Only define if NS_IMPL_GNUSTEP.
9178 (x_free_frame_resources): Pass x_free_frame_resources to NSTRACE.
9179 (ns_lisp_to_color, ns_string_to_lispmod, ns_term_init)
9180 (ns_term_shutdown, requestService, initFrameFromEmacs): Use SSDATA
9181 where appropriate.
9182 (ns_exec_path, ns_load_path, changeFont): Put () around assignment used
9183 as boolean expression.
9184 (x_set_window_size): Remove unused variable toolbar.
9185 (ns_get_color_default, ns_mod_to_lisp): Remove.
9186 (ns_mouse_position): Remove unused variables xchar and ychar.
9187 (ns_compute_glyph_string_overhangs): Remove unused variable face.
9188 (ns_set_vertical_scroll_bar): Remove unused variable count.
9189 (ns_delete_terminal): Remove unused variable i.
9190 (ns_term_init): Remove unused variables r, g and b.
9191 (mouseDown): Remove unused variable window.
9192 (windowDidResize): Move definition of theWindow inside NS_IMPL_GNUSTEP.
9193 (initFrameFromEmacs): Remove unused variable vbextra.
9194 (mouseEntered): Remove unused variables p and dpyinfo.
9195 (mouseExited): Remove unused variables p and r.
9196 (ns_define_frame_cursor, ns_clear_frame_area)
9197 (ns_draw_window_cursor, ns_initialize_display_info): Make static.
9198 (menuDown): Assign [sender tag] to variable and cast the variable.
9199
9200 * nsterm.h (menuDown): Add id as type to argument sender.
9201 (ns_display_info_for_name): Add Lisp_Object argument.
9202 (ns_term_init): Add Lisp_Object argument.
9203 (ns_map_event_to_object): Add void argument.
9204 (ns_string_from_pasteboard, ns_string_to_pasteboard): Add correct
9205 prototype with arguments and only declare if __OBJC__.
9206 (nxatoms_of_nsselect): Add void argument.
9207 (ns_lisp_to_cursor_type): Add Lisp_Object argument.
9208 (ns_alloc_autorelease_pool): Add void argument.
9209 (ns_release_autorelease_pool): Add void* argument.
9210 (ns_get_defaults_value): Add const char* argument.
9211
9212 * nsmenu.m (ns_update_menubar, ns_menu_show, process_dialog)
9213 (initFromContents): Use SSDATA where appropriate.
9214 (ns_update_menubar): Add braces to ambigous if-else.
9215 (initWithTitle): Put () around assignment in if statement.
9216 (ns_menu_show): Remove unused variables window and keymap.
9217 (update_frame_tool_bar): Remove unused variable selected_p.
9218 (initWithContentRect): Remove unused variable this_cmd_name.
9219
9220 * nsimage.m (ns_load_image, allocInitFromFile): Use SSDATA where
9221 appropriate.
9222 (setXBMColor): Remove unused variable len.
9223 (setPixmapData): Put () around assignment in loop statement.
9224
9225 * nsfont.m (ns_get_family, ns_lang_to_script, ns_otf_to_script)
9226 (ns_registry_to_script, ns_get_req_script, nsfont_open): Use SSDATA
9227 where appropriate.
9228 (ns_get_covering_families, ns_findfonts, nsfont_list_family): Put ()
9229 around assignment in loop statement.
9230 (nsfont_open): Remove unused variable i.
9231 (nsfont_open): Remove unused variable len.
9232 (nsfont_draw): Remove unused variable cs.
9233
9234 * nsfns.m (x_set_icon_name, ns_set_name_internal)
9235 (ns_set_name_as_filename, ns_implicitly_set_icon_type)
9236 (x_set_icon_type, ns_lisp_to_cursor_type, Fns_read_file_name)
9237 (Fns_get_resource, Fns_set_resource, Fx_open_connection)
9238 (Fns_font_name, Fns_perform_service)
9239 (Fns_convert_utf8_nfd_to_nfc, ns_do_applescript)
9240 (Fns_do_applescript, Fx_show_tip): Use SSDATA where appropriate.
9241 (ns_set_name): Remove unused variable view.
9242 (x_set_menu_bar_lines): Remove unused variable olines.
9243 (x_set_tool_bar_lines): Remove unused variable root_window.
9244 (Fns_list_colors): Put () around assignment in while statement.
9245 (Fns_perform_service): Remove unused variable len.
9246 (Fns_display_usable_bounds): Remove unused variable top.
9247 (syms_of_nsfns): Remove unused variable i.
9248
9249 * nsmenu.m (ns_update_menubar): Exchange place of argument 2 and 3 to
9250 memcpy (Bug#11907).
9251
9252 2012-07-13 Kalle Kankare <kalle.kankare@iki.fi> (tiny change)
9253
9254 * image.c (Fimagemagick_types): Initialize ex with GetExceptionInfo
9255 and free it with DestroyExceptionInfo (Bug#11558).
9256
9257 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
9258
9259 * s/ms-w32.h (FIRST_PTY_LETTER, HAVE_SOCKETS): Move to nt/config.nt.
9260 (HAVE_ATTRIBUTE_ALIGNED, HAVE_C99_STRTOLD, HAVE___BUILTIN_UNWIND_INIT):
9261 Set here, not in nt/config.nt.
9262
9263 2012-07-13 Eli Zaretskii <eliz@gnu.org>
9264
9265 * xdisp.c (move_it_in_display_line_to): On GUI terminals, allow
9266 cursor overflow into the last glyph on display line when the right
9267 fringe is off. (Bug#11832)
9268
9269 2012-07-13 Paul Eggert <eggert@cs.ucla.edu>
9270
9271 * xdisp.c (produce_special_glyphs): Now static.
9272 * dispextern.h (produce_special_glyphs): Remove decl.
9273
9274 2012-07-13 Glenn Morris <rgm@gnu.org>
9275
9276 * s/bsd-common.h, s/cygwin.h: Remove empty files.
9277 * s/freebsd.h, s/netbsd.h: Do not include bsd-common.h.
9278
9279 * s/usg5-4-common.h (USG, USG5):
9280 * s/template.h (USG5, USG, HPUX, BSD4_2, BSD_SYSTEM):
9281 * s/sol2-6.h (SOLARIS2):
9282 * s/irix6-5.h (IRIX6_5):
9283 * s/hpux10-20.h (USG, USG5, HPUX):
9284 * s/gnu-linux.h (USG, GNU_LINUX):
9285 * s/freebsd.h (BSD_SYSTEM):
9286 * s/darwin.h (BSD4_2, BSD_SYSTEM, DARWIN_OS):
9287 * s/cygwin.h (CYGWIN):
9288 * s/bsd-common.h (BSD_SYSTEM, BSD4_2):
9289 * s/aix4-2.h (USG, USG5, _AIX): Move "system type" macros to configure.
9290
9291 2012-07-13 BT Templeton <bpt@hcoop.net> (tiny change)
9292
9293 * nsfont.m (ns_charset_covers): Don't abort if no bitmap (Bug#11853).
9294
9295 2012-07-13 Glenn Morris <rgm@gnu.org>
9296
9297 * s/usg5-4-common.h (NSIG_MINIMUM): Let configure set it.
9298
9299 * s/gnu-linux.h, s/irix6-5.h: Let configure set ULIMIT_BREAK_VALUE.
9300
9301 * process.c (init_process_emacs): Replace MIN_PTY_KERNEL_VERSION.
9302 * s/darwin.h (MIN_PTY_KERNEL_VERSION): Remove single-use macro.
9303
9304 2012-07-12 Glenn Morris <rgm@gnu.org>
9305
9306 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Move to configure.
9307
9308 * process.c (init_process_emacs): Rename from init_process.
9309 The old name is also the name of a Mach system call.
9310 * lisp.h, emacs.c: Update for this name change.
9311 * nsgui.h, sysselect.h, s/darwin.h: Remove workaround that is no
9312 longer needed.
9313
9314 2012-07-12 Eli Zaretskii <eliz@gnu.org>
9315
9316 * xdisp.c (insert_left_trunc_glyphs): Fix incorrect size in
9317 memmove call that removes glyphs covered by the left truncation
9318 glyph. Improve commentary.
9319 (display_line): Fix display of continuation glyphs on GUI frames
9320 when the right fringe is turned off and variable-size fonts are
9321 used in the window. Move the code that appends a stretch glyph to
9322 produce_special_glyphs, so that it could be used for truncation
9323 and continuation glyphs alike.
9324 (produce_special_glyphs) [HAVE_WINDOW_SYSTEM]: Produce a stretch
9325 glyph of a suitably computed width, to align the special glyphs at
9326 the window margin. Code moved from display_line. (Bug#11832)
9327
9328 2012-07-12 Glenn Morris <rgm@gnu.org>
9329
9330 * s/aix4-2.h, s/hpux10-20.h: Let configure set NO_EDITRES.
9331
9332 * s/gnu-linux.h, s/hpux10-20.h:
9333 Do not unconditionally define HAVE_XRMSETDATABASE.
9334
9335 * s/gnu-linux.h (UNIX98_PTYS): Let configure set it.
9336
9337 2012-07-12 Paul Eggert <eggert@cs.ucla.edu>
9338
9339 Fix typos that broke OS X build.
9340 Reported by Randal L. Schwartz in
9341 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00225.html>.
9342 * nsterm.m (ns_timeout): Add missing local decl.
9343 (ns_get_color): snprintf -> sprintf, to fix typo.
9344
9345 2012-07-12 Glenn Morris <rgm@gnu.org>
9346
9347 * src/s/aix4-2.h, src/s/cygwin.h, src/s/darwin.h:
9348 * src/s/gnu-linux.h, src/s/hpux10-20.h, src/s/irix6-5.h:
9349 * src/s/sol2-6.h, src/s/unixware.h, src/s/usg5-4-common.h:
9350 Move PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF to configure.
9351
9352 * s/cygwin.h, s/darwin.h, s/gnu-linux.h, s/irix6-5.h:
9353 Move PTY_OPEN to configure.
9354
9355 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
9356 * s/gnu-linux.h, s/hpux10-20.h, s/irix6-5.h, s/template.h:
9357 * s/usg5-4-common.h: Move FIRST_PTY_LETTER, PTY_ITERATION to configure.
9358
9359 2012-07-12 Dmitry Antipov <dmantipov@yandex.ru>
9360
9361 Use empty_unibyte_string where applicable.
9362 * keyboard.c (parse_tool_bar_item): Use empty_unibyte_string.
9363 * lread.c (read1): Likewise.
9364 * xsettings.c (syms_of_xsettings): Likewise.
9365
9366 2012-07-12 Glenn Morris <rgm@gnu.org>
9367
9368 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC):
9369 * s/freebsd.h (BROKEN_PTY_READ_AFTER_EAGAIN):
9370 * s/irix6-5.h (SETPGRP_RELEASES_CTTY, PREFER_VSUSP):
9371 * s/hpux10-20.h (RUN_TIME_REMAP):
9372 * s/bsd-common.h (TABDLY): Move to configure.
9373
9374 * s/hpux10-20.h, s/sol2-6.h: Move XOS_NEEDS_TIME_H to configure.
9375
9376 * s/bsd-common.h, s/darwin.h: Move TAB3 to configure.
9377
9378 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
9379 (BROKEN_SIGPOLL, BROKEN_GET_CURRENT_DIR_NAME): Let configure set them.
9380
9381 * s/darwin.h (NO_ABORT, NO_MATHERR): Let configure set them.
9382
9383 * s/bsd-common.h, s/cygwin.h, s/gnu-linux.h, s/irix6-5.h:
9384 * s/template.h: Move NARROWPROTO to configure.
9385
9386 2012-07-11 Glenn Morris <rgm@gnu.org>
9387
9388 * s/gnu-linux.h, s/sol2-6.h: No longer define POSIX,
9389 unused since 2011-01-17 change to systty.h.
9390
9391 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h, s/gnu-linux.h:
9392 * s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
9393 Move HAVE_PTYS and HAVE_SOCKETS to configure.
9394
9395 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
9396
9397 * s/sol2-6.h (HAVE_LIBKSTAT): Remove. (Bug#11914)
9398
9399 2012-07-11 Glenn Morris <rgm@gnu.org>
9400
9401 * s/darwin.h, s/gnu-linux.h, s/template.h:
9402 Move INTERRUPT_INPUT to configure.
9403
9404 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
9405
9406 Minor adjustments to interning code.
9407 * lisp.h (intern, intern_c_string): Redefine as static inline
9408 wrappers for intern_1 and intern_c_string_1, respectively.
9409 (intern_1, intern_c_string_1): Rename prototypes.
9410 * lread.c (intern_1, intern_c_string_1, oblookup):
9411 Simplify Vobarray checking.
9412 * font.c (font_intern_prop): Likewise. Adjust comment.
9413 * w32font.c (intern_font_name): Likewise.
9414
9415 2012-07-11 Andreas Schwab <schwab@linux-m68k.org>
9416
9417 * gnutls.c (Fgnutls_boot): Properly parse :keylist argument.
9418
9419 * coding.c (Fdefine_coding_system_internal): Use XCAR/XCDR instead
9420 of Fcar/Fcdr if possible.
9421 * font.c (check_otf_features): Likewise.
9422 * fontset.c (Fnew_fontset): Likewise.
9423 * gnutls.c (Fgnutls_boot): Likewise.
9424 * minibuf.c (read_minibuf): Likewise.
9425 * msdos.c (IT_set_frame_parameters): Likewise.
9426 * xmenu.c (Fx_popup_dialog): Likewise.
9427 * w32menu.c (Fx_popup_dialog): Likewise.
9428
9429 2012-07-11 Glenn Morris <rgm@gnu.org>
9430
9431 * s/bsd-common.h, s/cygwin.h: No need to undefine INTERRUPT_INPUT,
9432 since nothing has defined it on these platforms.
9433
9434 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/gnu-linux.h:
9435 * s/irix6-5.h: Move SIGNALS_VIA_CHARACTERS to configure.
9436
9437 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
9438 * s/gnu-linux.h, s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
9439 Move CLASH_DETECTION to configure.
9440
9441 * s/gnu.h: Remove file, which is now empty.
9442
9443 * s/gnu.h, s/gnu-linux.h:
9444 Move GNU_LIBRARY_PENDING_OUTPUT_COUNT to configure.
9445
9446 2012-07-11 John Wiegley <johnw@newartisans.com>
9447
9448 * alloc.c (mark_memory): Guard the "no_address_safety_analysis"
9449 function attribute, so we only use it if it exists in the
9450 compiler.
9451
9452 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
9453
9454 Avoid call to strlen in fast_c_string_match_ignore_case.
9455 * search.c (fast_c_string_match_ignore_case): Change to use
9456 length argument. Adjust users accordingly.
9457 * lisp.h (fast_c_string_match_ignore_case): Adjust prototype.
9458
9459 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
9460
9461 Assume mkdir, rmdir.
9462 * sysdep.c (mkdir) [!HAVE_MKDIR]: Remove.
9463 * sysdep.c (rmdir) [!HAVE_RMDIR]: Remove.
9464
9465 Assume rename.
9466 * sysdep.c (rename) [!HAVE_RENAME]: Remove.
9467
9468 Assume perror.
9469 * s/hpux10-20.h (HAVE_PERROR): Remove.
9470 * sysdep.c (perror) [HPUX && !HAVE_PERROR]:
9471 Remove dummy definition, as this problem was obsolete long ago.
9472
9473 Assume strerror.
9474 * sysdep.c (strerror) [!HAVE_STRERROR && !WINDOWSNT]: Remove.
9475
9476 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
9477
9478 Avoid calls to strlen in font processing functions.
9479 * font.c (font_parse_name, font_parse_xlfd, font_parse_fcname)
9480 (font_open_by_name): Change to use length argument.
9481 Adjust users accordingly.
9482 * font.h (font_open_by_name, font_parse_xlfd, font_unparse_xlfd):
9483 Adjust prototypes.
9484 * xfont.c (xfont_decode_coding_xlfd, font_unparse_xlfd):
9485 Change to return ptrdiff_t.
9486 (xfont_list_pattern, xfont_match): Use length returned by
9487 xfont_decode_coding_xlfd.
9488 * xfns.c (x_default_font_parameter): Omit useless xstrdup.
9489
9490 2012-07-11 Glenn Morris <rgm@gnu.org>
9491
9492 * s/darwin.h, s/freebsd.h, s/netbsd.h:
9493 Move DONT_REOPEN_PTY to configure.
9494
9495 * sound.c (DEFAULT_SOUND_DEVICE) [!WINDOWSNT]:
9496 * s/netbsd.h (DEFAULT_SOUND_DEVICE): Let configure set it.
9497
9498 2012-07-10 Paul Eggert <eggert@cs.ucla.edu>
9499
9500 Remove "#define unix" that is no longer needed (Bug#11905).
9501 * s/aix4-2.h (unix): Remove; no longer needed.
9502
9503 EMACS_TIME simplification (Bug#11875).
9504 This replaces macros (which typically do not work in GDB)
9505 with functions, typedefs and enums, making the code easier to debug.
9506 The functional style also makes code easier to read and maintain.
9507 * systime.h: Include <sys/time.h> on all hosts, not just if
9508 WINDOWSNT, since 'struct timeval' is needed in general.
9509 (EMACS_TIME): Now a typedef, not a macro.
9510 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): Now constants,
9511 not macros.
9512 (EMACS_SECS, EMACS_NSECS, EMACS_TIME_SIGN, EMACS_TIME_VALID_P)
9513 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE, EMACS_TIME_EQ)
9514 (EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE, EMACS_TIME_LT)
9515 (EMACS_TIME_LE): Now functions, not macros.
9516 (EMACS_SET_SECS, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS)
9517 (EMACS_SET_USECS, EMACS_SET_SECS_USECS): Remove these macros,
9518 which are not functions. All uses rewritten to use:
9519 (make_emacs_time): New function.
9520 (EMACS_SECS_ADDR, EMACS_SET_INVALID_TIME, EMACS_GET_TIME)
9521 (EMACS_ADD_TIME, EMACS_SUB_TIME): Remove these macros, which are
9522 not functions. All uses rewritten to use the following, respectively:
9523 (emacs_secs_addr, invalid_emacs_time, get_emacs_time)
9524 (add_emacs_time, sub_emacs_time): New functions.
9525 * atimer.c: Don't include <sys/time.h>, as "systime.h" does this.
9526 * fileio.c (Fcopy_file):
9527 * xterm.c (XTflash): Get the current time closer to when it's used.
9528 * makefile.w32-in ($(BLD)/atimer.$(O)): Update dependencies.
9529
9530 * bytecode.c (targets): Suppress -Woverride-init warnings.
9531
9532 Simplify by avoiding confusing use of strncpy etc.
9533 * doc.c (Fsnarf_documentation):
9534 * fileio.c (Ffile_name_directory, Fsubstitute_in_file_name):
9535 * frame.c (Fmake_terminal_frame):
9536 * gtkutil.c (get_utf8_string):
9537 * lread.c (openp):
9538 * nsmenu.m (ns_update_menubar):
9539 * regex.c (regerror):
9540 Prefer memcpy to strncpy and strncat when either will do.
9541 * fileio.c (Fsubstitute_in_file_name):
9542 * keyboard.c (MULTI_LETTER_MOD, parse_modifiers_uncached)
9543 (menu_separator_name_p):
9544 * nsmenu.m (ns_update_menubar):
9545 Prefer memcmp to strncmp when either will do.
9546 * nsterm.m: Include <ftoastr.h>.
9547 (ns_get_color):
9548 * s/gnu-linux.h, s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF):
9549 Prefer snprintf to strncpy.
9550 * nsterm.m (ns_term_init):
9551 * widget.c (set_frame_size) [0]: Prefer xstrdup to xmalloc + strncpy.
9552 * nsterm.m (ns_term_init):
9553 Avoid the need for strncpy, by using build_string or
9554 make_unibyte_string directly. Use dtoastr, not snprintf.
9555 * process.c (Fmake_network_process): Diagnose service names that
9556 are too long, rather than silently truncating them or creating
9557 non-null-terminated names.
9558 (Fnetwork_interface_info): Likewise, for interface names.
9559 * sysdep.c (system_process_attributes) [GNU_LINUX]:
9560 Prefer sprintf to strncat.
9561 * xdisp.c (debug_method_add) [GLYPH_DEBUG]:
9562 Prefer vsnprintf to vsprintf + strncpy.
9563
9564 2012-07-10 Glenn Morris <rgm@gnu.org>
9565
9566 * dispnew.c (PENDING_OUTPUT_COUNT) [!__GNU_LIBRARY__]:
9567 Clarify fallback case.
9568
9569 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
9570
9571 Use XCAR and XCDR instead of Fcar and Fcdr where possible.
9572 * callint.c, coding.c, doc.c, editfns.c, eval.c, font.c, fontset.c,
9573 * frame.c, gnutls.c, minibuf.c, msdos.c, textprop.c, w32fns.c,
9574 * w32menu.c, window.c, xmenu.c: Change to use XCAR and XCDR
9575 where argument type is known to be a Lisp_Cons.
9576
9577 2012-07-10 Tom Tromey <tromey@redhat.com>
9578
9579 * bytecode.c (BYTE_CODE_THREADED): New macro.
9580 (BYTE_CODES): New macro. Replaces all old byte-code defines.
9581 (enum byte_code_op): New type.
9582 (CASE, NEXT, FIRST, CASE_DEFAULT, CASE_ABORT): New macros.
9583 (exec_byte_code): Use them. Use token threading when applicable.
9584
9585 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
9586
9587 Optimize pure C strings initialization.
9588 * lisp.h (make_pure_string): Fix prototype.
9589 (build_pure_c_string): New function, defined as static inline. This
9590 provides a better opportunity to optimize away calls to strlen when
9591 the function is called with compile-time constant argument.
9592 * alloc.c (make_pure_c_string): Fix comment. Change to add nchars
9593 argument, adjust users accordingly. Use build_pure_c_string where
9594 appropriate.
9595 * buffer.c, coding.c, data.c, dbusbind.c, fileio.c, fontset.c, frame.c,
9596 * keyboard.c, keymap.c, lread.c, search.c, syntax.c, w32fns.c, xdisp.c,
9597 * xfaces.c, xfns.c, xterm.c: Use build_pure_c_string where appropriate.
9598
9599 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
9600
9601 Avoid calls to strlen in miscellaneous functions.
9602 * buffer.c (init_buffer): Use precalculated len, adjust if needed.
9603 * font.c (Ffont_xlfd_name): Likewise. Change to call make_string.
9604 * lread.c (openp): Likewise.
9605
9606 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
9607
9608 Avoid calls to strlen in path processing functions.
9609 * fileio.c (file_name_as_directory): Add comment. Change to add
9610 srclen argument and return the length of result. Adjust users
9611 accordingly.
9612 (directory_file_name): Fix comment. Change to add srclen argument,
9613 swap 1st and 2nd arguments to obey the common convention.
9614 Adjust users accordingly.
9615 * filelock.c (fill_in_lock_file_name): Avoid calls to strlen.
9616
9617 2012-07-10 Glenn Morris <rgm@gnu.org>
9618
9619 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/netbsd.h, s/unixware.h:
9620 Move PENDING_OUTPUT_COUNT definition to configure.
9621
9622 * s/irix6-5.h (DATA_START, DATA_SEG_BITS):
9623 * s/hpux10-20.h (DATA_SEG_BITS, DATA_START):
9624 * s/gnu.h (DATA_START): Move definitions to configure.
9625
9626 * s/irix6-5.h (SETUP_SLAVE_PTY, PTY_NAME_SPRINTF): Drop ifdef guards.
9627 We include usg5-4-common.h, which defines them both.
9628
9629 * s/gnu.h: Don't include fcntl.h (every file in Emacs that uses
9630 O_RDONLY already includes it).
9631
9632 Stop ns builds setting the EMACSLOADPATH environment variable.
9633 * nsterm.m (ns_load_path): Rename from ns_init_paths.
9634 Now it does not set EMACSLOADPATH, just returns the load-path string.
9635 * nsterm.h: Update accordingly.
9636 * lread.c [HAVE_NS]: Include nsterm.h.
9637 (init_lread) [HAVE_NS]: Use ns_load_path.
9638 * emacs.c (main) [HAVE_NS]: No longer call ns_init_paths.
9639
9640 2012-07-09 Glenn Morris <rgm@gnu.org>
9641
9642 * s/gnu.h (SIGNALS_VIA_CHARACTERS): No need to define it here,
9643 since the included bsd-common.h does so.
9644
9645 Stop ns builds setting the EMACSPATH environment variable.
9646 * nsterm.m (ns_exec_path): New function, split from ns_init_paths.
9647 (ns_init_paths): Do not set EMACSPATH.
9648 * nsterm.h (ns_exec_path): Add it.
9649 * callproc.c (init_callproc_1, init_callproc) [HAVE_NS]:
9650 Use ns_exec_path.
9651
9652 * nsterm.m, nsterm.h (ns_etc_directory): Fix type, empty return.
9653
9654 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
9655
9656 * process.c (wait_reading_process_output): 'waitchannels' was unset
9657 when read_kbd || !NILP (wait_for_cell); fix this.
9658
9659 Add GCC-style 'const' attribute to functions that can use it.
9660 * character.h (char_resolve_modifier_mask):
9661 * keyboard.h (make_ctrl_char):
9662 * lisp.h (multibyte_char_to_unibyte, multibyte_char_to_unibyte_safe)
9663 (init_character_once, next_almost_prime, init_fns, init_image)
9664 (flush_pending_output, init_sound):
9665 * mem-limits.h (start_of_data):
9666 * menu.h (finish_menu_items):
9667 Add ATTRIBUTE_CONST.
9668 * emacs.c (DEFINE_DUMMY_FUNCTION):
9669 Declare the dummy function with ATTRIBUTE_CONST.
9670 * lisp.h (Fbyteorder, Fmax_char, Fidentity):
9671 Add decls with ATTRIBUTE_CONST.
9672
9673 Minor improvements to make_formatted_string.
9674 * alloc.c (make_formatted_string): Prefer int to ptrdiff_t
9675 where int is good enough, as vsprintf returns an int.
9676 * lisp.h (make_formatted_string): Add ATTRIBUTE_FORMAT_PRINTF.
9677
9678 2012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
9679
9680 Use make_formatted_string to avoid double length calculation.
9681 * lisp.h (make_formatted_string): New prototype.
9682 * alloc.c (make_formatted_string): New function.
9683 * buffer.c (Fgenerate_new_buffer_name): Use it.
9684 * dbusbind.c (syms_of_dbusbind): Likewise.
9685 * editfns.c (Fcurrent_time_zone): Likewise.
9686 * filelock.c (get_boot_time): Likewise.
9687 * frame.c (make_terminal_frame, set_term_frame_name)
9688 (x_report_frame_params): Likewise.
9689 * image.c (gs_load): Likewise.
9690 * minibuf.c (get_minibuffer): Likewise.
9691 * msdos.c (dos_set_window_size): Likewise.
9692 * process.c (make_process): Likewise.
9693 * xdisp.c (ensure_echo_area_buffers): Likewise.
9694 * xsettings.c (apply_xft_settings): Likewise.
9695
9696 2012-07-09 Glenn Morris <rgm@gnu.org>
9697
9698 Stop ns builds polluting the environment with EMACSDATA, EMACSDOC.
9699 * nsterm.m (ns_etc_directory): New function, split from ns_init_paths.
9700 (ns_init_paths): Do not set EMACSDATA, EMACSDOC.
9701 * nsterm.h (ns_etc_directory): Add it.
9702 * callproc.c [HAVE_NS]: Include nsterm.h.
9703 (init_callproc_1, init_callproc) [HAVE_NS]: Use ns_etc_directory.
9704
9705 2012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
9706
9707 Move marker debugging code under MARKER_DEBUG.
9708 * marker.c (MARKER_DEBUG): Move marker debugging code under
9709 #ifdef MARKER_DEBUG because byte_char_debug_check is too slow
9710 for bootstrap with --enable-checking (~3x slowdown reported
9711 by Juanma Barranquero <lekktu@gmail.com>).
9712 (verify_bytepos): Move under #ifdef MARKER_DEBUG.
9713
9714 2012-07-08 Paul Eggert <eggert@cs.ucla.edu>
9715
9716 * systime.h (EMACS_SUB_TIME): Clarify behavior with unsigned time_t.
9717 See <http://bugs.gnu.org/11825#29>.
9718
9719 2012-07-08 Eli Zaretskii <eliz@gnu.org>
9720
9721 * xdisp.c (fill_glyphless_glyph_string): If the face of the glyph
9722 has no font, use the frame's font. (Bug#11813)
9723 (display_line): Add commentary about displaying truncation glyphs
9724 on GUI frames.
9725 (produce_special_glyphs): Move here from term.c.
9726
9727 * term.c (produce_special_glyphs): Move to xdisp.c.
9728
9729 * dispextern.h (produce_special_glyphs): Move prototype to xdisp.c
9730 section.
9731
9732 2012-07-07 Andreas Schwab <schwab@linux-m68k.org>
9733
9734 * xdisp.c (display_line): Avoid warning about implicit declaration
9735 of FRAME_FONT.
9736
9737 * frame.c (get_frame_param): Define only if HAVE_WINDOW_SYSTEM.
9738
9739 * lisp.h: Remove empty conditional.
9740
9741 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
9742
9743 * lread.c (load_path_check): Now static.
9744
9745 Fix some minor --with-ns problems found by static checking.
9746 * frame.c (Ftool_bar_pixel_width) [!FRAME_TOOLBAR_WIDTH]:
9747 (x_set_font) [!HAVE_X_WINDOWS]:
9748 * image.c (xpm_load_image) [HAVE_NS]:
9749 (x_to_xcolors) [!HAVE_X_WINDOWS && !HAVE_NTGUI]:
9750 (x_disable_image) [!HAVE_NS && !HAVE_NTGUI]:
9751 Remove unused local.
9752 (Fx_parse_geometry) [HAVE_NS]: Don't return garbage.
9753 (xpm_load_image) [HAVE_NS && !HAVE_XPM]: Remove unused label.
9754 * image.c (x_create_bitmap_from_file) [HAVE_NS]:
9755 (xpm_load_image, xpm_load) [HAVE_NS && !HAVE_XPM]:
9756 * nsselect.m (symbol_to_nsstring, ns_string_to_pasteboard_internal):
9757 * xfaces.c (Fx_load_color_file) [!HAVE_X_WINDOWS]:
9758 Fix pointer signedness problem.
9759 * xfaces.c (FRAME_X_FONT_TABLE):
9760 * xterm.h (FRAME_X_FONT_TABLE): Remove unused, incompatible macros.
9761
9762 2012-07-07 Glenn Morris <rgm@gnu.org>
9763
9764 * lread.c (load_path_check): New function, split from init_lread.
9765 (init_lread): Reorganize. Motivation:
9766 If EMACSLOADPATH is set, check/warn about that rather than the
9767 defaults, which we are not going to use. Hence we can remove
9768 the turn_off_warning and WINDOWSNT || HAVE_NS tests.
9769 Don't warn if site-lisp directories are missing.
9770 If not installed, start from a blank load-path, since
9771 PATH_LOADSEARCH refers to the eventual installation directories.
9772
9773 2012-07-07 Eli Zaretskii <eliz@gnu.org>
9774
9775 Support truncation and continuation glyphs on GUI frames, when
9776 fringes are disabled. (Bug#11832)
9777 * xdisp.c (init_iterator): Get dimensions of truncation and
9778 continuation glyphs even if on GUI frames.
9779 Adjust it->last_visible_x on GUI frames when the left or right fringes,
9780 or both, are absent.
9781 (start_display, move_it_in_display_line_to): Handle the case of a
9782 GUI frame without a fringe to display continuation or truncation
9783 glyphs.
9784 (insert_left_trunc_glyphs): Support GUI frames: make sure
9785 truncation glyphs overwrite enough glyphs from the current line to
9786 have sufficient space in pixels.
9787 (display_line): Support truncation and continuation glyphs on GUI
9788 frames. If some spare pixels are left on the line after inserting
9789 the truncation glyphs, fill that space with a stretch glyph of a
9790 suitably computed width.
9791
9792 * term.c (produce_special_glyphs): Call PRODUCE_GLYPHS, not
9793 produce_glyphs, to support GUI sessions.
9794
9795 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
9796
9797 * sysdep.c (ULLONG_MAX): Define if not already defined (Bug#11781).
9798
9799 * sysdep.c (list_system_processes): Port to NetBSD-current (Bug#11797).
9800
9801 Do not require float-time's arg to fit in time_t (Bug#11825).
9802 This works better on hosts where time_t is unsigned, and where
9803 float-time is applied to the (negative) difference between two times.
9804 * editfns.c (decode_time_components): Last arg is now double *,
9805 not int *, and means to store all the result as a double, without
9806 worrying about whether the seconds part fits in time_t.
9807 All callers changed.
9808 (lisp_time_argument): Remove last int * arg, as it's no longer needed.
9809 All callers changed.
9810 (Ffloat_time): Do not fail merely because the specified time falls
9811 outside of time_t range.
9812
9813 2012-07-07 Glenn Morris <rgm@gnu.org>
9814
9815 * s/darwin.h (HAVE_RES_INIT, HAVE_LIBRESOLV):
9816 * s/hpux10-20.h (HAVE_RINT, HAVE_RANDOM):
9817 * s/unixware.h (HAVE_GETWD): Move undefs to configure (effectively).
9818
9819 2012-07-07 Juanma Barranquero <lekktu@gmail.com>
9820
9821 * makefile.w32-in (DISPEXTERN_H, $(BLD)/regex.$(O)):
9822 Update dependencies.
9823
9824 * s/ms-w32.h [_MSC_VER]: Remove strcasecmp, strncasecmp.
9825
9826 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
9827
9828 Use c_strcasecmp for ASCII case-insensitive comparison (Bug#11786).
9829 * dispextern.h, nsfns.m, nsterm.m: Include <c-strcase.h>.
9830 * dispextern.h (xstrcasecmp): Rewrite using c_strcasecmp.
9831 * nsfns.m (x_get_string_resource): Use c_strncasecmp, not strncasecmp.
9832 * nsterm.m (ns_default): Use c_strcasecmp, not strcasecmp.
9833 * xfaces.c (xstrcasecmp) [!HAVE_STRCASECMP]: Remove.
9834
9835 * xfont.c (compare_font_names): Redo to omit the need for casts.
9836
9837 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
9838
9839 * xfns.c (Fx_change_window_property): Doc fix.
9840 * w32fns.c (Fx_change_window_property): Doc fix.
9841
9842 * w32fns.c (Fx_window_property): Accept the same arguments as the
9843 X Windows version. Doc fix.
9844 * xfns.c (Fx_window_property): Doc fix. (Bug#11870)
9845
9846 2012-07-06 Juanma Barranquero <lekktu@gmail.com>
9847 Eli Zaretskii <eliz@gnu.org>
9848
9849 * s/ms-w32.h: Settings not specific to Windows moved to nt/config.nt.
9850 Windows-specific code from nt/config.nt moved here.
9851 Obsolete settings removed.
9852
9853 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
9854
9855 * process.c: Avoid unnecessary calls to gettime.
9856 (wait_reading_process_output): Don't get the time of day
9857 when gobbling data immediately and not waiting, as there's no need
9858 for it in that case. This removes a FIXME.
9859
9860 2012-07-06 Jan Djärv <jan.h.d@swipnet.se>
9861
9862 * gtkutil.c (xg_event_is_for_scrollbar): Assign gwin when HAVE_GTK3
9863 is defined (Bug#11768).
9864
9865 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
9866
9867 Fix marker debugging code.
9868 * marker.c (byte_char_debug_check): Do not perform the check
9869 if buffer is not multibyte.
9870 (buf_charpos_to_bytepos, buf_bytepos_to_charpos):
9871 Call byte_char_debug_check with correct arguments.
9872
9873 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
9874
9875 Compile marker debugging code only if ENABLE_CHECKING is defined.
9876 * marker.c (byte_char_debug_check, count_markers):
9877 Use only if ENABLE_CHECKING is defined.
9878 (byte_debug_flag): Remove.
9879 (CONSIDER, buf_charpos_to_bytepos, buf_bytepos_to_charpos):
9880 Always call byte_char_debug_check if ENABLE_CHECKING is defined.
9881
9882 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
9883
9884 Avoid code repetition in marker-related functions.
9885 * marker.c (attach_marker): New function.
9886 (Fset_marker, set_marker_restricted, set_marker_both)
9887 (set_marker_restricted_both): Use it.
9888 (Fset_marker, set_marker_restricted, Fbuffer_has_markers_at):
9889 Consistently rename charno to charpos.
9890 (marker_position): Add eassert.
9891 (marker_byte_position): Convert to eassert.
9892
9893 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
9894
9895 Simplify list operations in unchain_overlay and unchain_marker.
9896 * buffer.c (unchain_overlay): Simplify. Add comment.
9897 * marker.c (unchain_marker): Simplify. Fix comments.
9898
9899 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
9900
9901 Introduce fast path for the widely used marker operation.
9902 * alloc.c (build_marker): New function.
9903 * lisp.h (build_marker): New prototype.
9904 * buffer.c (clone_per_buffer_values, Fmake_indirect_buffer): Use it.
9905 * composite.c (autocmp_chars): Likewise.
9906 * editfns.c (buildmark): Remove.
9907 (Fpoint_marker, Fpoint_min_marker, Fpoint_max_marker)
9908 (save_restriction_save): Use build_marker.
9909 * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos): Likewise.
9910 * window.c (save_window_save): Likewise.
9911
9912 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
9913
9914 Do not use Fdelete_overlay in delete_all_overlays
9915 to avoid redundant calls to unchain_overlay.
9916 * buffer.c (drop_overlay): New function.
9917 (delete_all_overlays, Fdelete_overlay): Use it.
9918 * minibuf.c (get_minibuffer): Fix comment.
9919
9920 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
9921
9922 Port to OpenBSD 5.1 amd64.
9923 * sysdep.c [BSD_SYSTEM]: Include <sys/param.h> before <sys/sysctl.h>.
9924 This is needed for OpenBSD, and should be harmless on all BSD systems.
9925 Also, include <sys/sysctl.h>, as it should be available on all
9926 BSD_SYSTEM hosts given that we're already calling sysctl in that case.
9927 (list_system_processes) [__OpenBSD__]: Use DARWIN_OS style mib, but
9928 use p_pid member, not kp_proc.pid.
9929
9930 2012-07-06 Glenn Morris <rgm@gnu.org>
9931
9932 * Makefile.in (emacs$(EXEEXT)): Don't check for load-path shadows.
9933
9934 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
9935
9936 More xmalloc and related cleanup.
9937 * alloc.c, bidi.c, buffer.c, buffer.h, bytecode.c, callint.c:
9938 * callproc.c, charset.c, coding.c, composite.c, data.c, dispnew.c:
9939 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, fns.c:
9940 * font.c, fontset.c, frame.c, fringe.c, ftfont.c, ftxfont.c, gmalloc.c:
9941 * gtkutil.c, image.c, keyboard.c, keymap.c, lread.c, macros.c, menu.c:
9942 * nsfns.m, nsfont.m, nsmenu.m, nsterm.m, print.c, process.c, ralloc.c:
9943 * regex.c, region-cache.c, scroll.c, search.c, sound.c, syntax.c:
9944 * sysdep.c, term.c, termcap.c, unexmacosx.c, window.c, xdisp.c:
9945 * xfaces.c, xfns.c, xftfont.c, xgselect.c, xmenu.c, xrdb.c, xselect.c:
9946 * xterm.c:
9947 Omit needless casts involving void * pointers and allocation.
9948 Prefer "P = xmalloc (sizeof *P)" to "P = xmalloc (sizeof (TYPE_OF_P))",
9949 as the former is more robust if P's type is changed.
9950 Prefer xzalloc to xmalloc + memset 0.
9951 Simplify malloc-or-realloc to realloc.
9952 Don't worry about xmalloc returning a null pointer.
9953 Prefer xstrdup to xmalloc + strcpy.
9954 * editfns.c (Fmessage_box): Grow message_text by at least 80 when
9955 growing it.
9956 * keyboard.c (apply_modifiers_uncached): Prefer local array to
9957 alloca of a constant.
9958
9959 2012-07-05 Eli Zaretskii <eliz@gnu.org>
9960
9961 * xdisp.c (display_line): Fix horizontal pixel coordinates when
9962 hscroll is larger than the line width. Fixes long and futile
9963 looping inside extend_face_to_end_of_line (on a TTY) producing
9964 glyphs that are not needed and thrown away.
9965
9966 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
9967
9968 * marker.c (set_marker_restricted_both): Simplify by using
9969 clip_to_bounds.
9970
9971 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
9972
9973 * editfns.c (region_limit): Simplify by using clip_to_bounds.
9974
9975 2012-07-05 Jan Djärv <jan.h.d@swipnet.se>
9976
9977 * gtkutil.c (gtk_scrollbar_new, gtk_box_new): Define when HAVE_GTK3 is
9978 not defined (Bug#11768).
9979 (xg_create_frame_widgets): Use gtk_plug_new_for_display (Bug#11768).
9980 (xg_create_frame_widgets, create_dialog, xg_get_file_with_chooser)
9981 (make_widget_for_menu_item, xg_make_tool_item): Use gtk_box_new
9982 followed by gtk_box_set_homogeneous (Bug#11768).
9983 (xg_update_menu_item): Use GTK_IS_BOX (Bug#11768).
9984 (update_theme_scrollbar_width, xg_create_scroll_bar):
9985 Use gtk_scrollbar_new (Bug#11768).
9986 (xg_event_is_for_scrollbar): Use Gdk Device functions for HAVE_GTK3.
9987 (is_box_type): New function (Bug#11768).
9988 (xg_tool_item_stale_p): Call is_box_type.
9989 (xg_initialize): Get settings by calling gtk_settings_get_for_screen
9990 with default display (Bug#11768).
9991
9992 2012-07-05 Eli Zaretskii <eliz@gnu.org>
9993
9994 * xdisp.c (window_hscroll_limited): New function.
9995 (pos_visible_p, init_iterator): Use it to avoid overflow of pixel
9996 coordinates when window's hscroll is set to insanely large
9997 values. (Bug#11857)
9998
9999 2012-07-05 Juanma Barranquero <lekktu@gmail.com>
10000
10001 * makefile.w32-in ($(BLD)/dired.$(O), $(BLD)/fileio.$(O)): Fix typo.
10002 ($(BLD)/terminal.$(O), $(BLD)/syntax.$(O)): Update dependencies.
10003
10004 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
10005
10006 Cleanup xmalloc.
10007 * lisp.h (xzalloc): New prototype. Omit needless casts.
10008 * alloc.c (xzalloc): New function. Omit needless casts.
10009 * charset.c: Omit needless casts. Convert all calls to
10010 xmalloc with following memset to xzalloc.
10011 * dispnew.c: Likewise.
10012 * fringe.c: Likewise.
10013 * image.c: Likewise.
10014 * sound.c: Likewise.
10015 * term.c: Likewise.
10016 * w32fns.c: Likewise.
10017 * w32font.c: Likewise.
10018 * w32term.c: Likewise.
10019 * xfaces.c: Likewise.
10020 * xfns.c: Likewise.
10021 * xterm.c: Likewise.
10022 * atimer.c: Omit needless casts.
10023 * buffer.c: Likewise.
10024 * callproc.c: Likewise.
10025 * ccl.c: Likewise.
10026 * coding.c: Likewise.
10027 * composite.c: Likewise.
10028 * doc.c: Likewise.
10029 * doprnt.c: Likewise.
10030 * editfns.c: Likewise.
10031 * emacs.c: Likewise.
10032 * eval.c: Likewise.
10033 * filelock.c: Likewise.
10034 * fns.c: Likewise.
10035 * gtkutil.c: Likewise.
10036 * keyboard.c: Likewise.
10037 * lisp.h: Likewise.
10038 * lread.c: Likewise.
10039 * minibuf.c: Likewise.
10040 * msdos.c: Likewise.
10041 * print.c: Likewise.
10042 * process.c: Likewise.
10043 * region-cache.c: Likewise.
10044 * search.c: Likewise.
10045 * sysdep.c: Likewise.
10046 * termcap.c: Likewise.
10047 * terminal.c: Likewise.
10048 * tparam.c: Likewise.
10049 * w16select.c: Likewise.
10050 * w32.c: Likewise.
10051 * w32reg.c: Likewise.
10052 * w32select.c: Likewise.
10053 * w32uniscribe.c: Likewise.
10054 * widget.c: Likewise.
10055 * xdisp.c: Likewise.
10056 * xmenu.c: Likewise.
10057 * xrdb.c: Likewise.
10058 * xselect.c: Likewise.
10059
10060 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
10061
10062 * fileio.c (time_error_value): Check the right error number.
10063 Problem reported by Troels Nielsen in
10064 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00095.html>.
10065
10066 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
10067
10068 * window.c (set_window_hscroll): Revert the 100000 hscroll limit.
10069 This should be fixed in a better way; see Eli Zaretskii in
10070 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00088.html>.
10071 (HSCROLL_MAX): Remove; this is now internal to set_window_hscroll.
10072
10073 * fileio.c (time_error_value): Rename from special_mtime.
10074 The old name's problems were noted by Eli Zaretskii in
10075 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00087.html>.
10076
10077 * emacs.c (gdb_pvec_type): Change it back to enum pvec_type.
10078 This variable's comment says Emacs needs at least one GDB-visible
10079 symbol of type enum pvec_type, to work around GDB problems.
10080 The symbol's value doesn't matter.
10081
10082 * alloc.c (PSEUDOVECTOR_NBYTES): Remove stray ';'
10083 that causes compilation to fail on pre-C99 compilers.
10084
10085 2012-07-04 Juanma Barranquero <lekktu@gmail.com>
10086
10087 * s/ms-w32.h (LISP_FLOAT_TYPE, HAVE_MEMCMP, HAVE_MEMCPY)
10088 (HAVE_MEMMOVE, HAVE_MEMSET): Don't set, obsolete.
10089
10090 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
10091
10092 * buffer.c (init_buffer_once): Fix initialization of
10093 headers for buffer_defaults and buffer_local_symbols.
10094 Reported by Juanma Barranquero <lekktu@gmail.com>.
10095
10096 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
10097
10098 Turn VECTOR_FREE_LIST_FLAG into PVEC_FREE.
10099 * lisp.h (enum pvec_type): Use fewer bits.
10100 (PSEUDOVECTOR_SIZE_BITS): New constant.
10101 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK): Use it.
10102 (XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR, DEFUN): Adapt code to
10103 change in pvec_type.
10104 (PSEUDOVECTOR_TYPEP): New macro.
10105 (TYPED_PSEUDOVECTORP): Use it.
10106 * fns.c (internal_equal): Adapt code to extract pvectype.
10107 * emacs.c (gdb_pvec_type): Update type.
10108 * alloc.c (PSEUDOVECTOR_NBYTES): New macro.
10109 (VECTOR_FREE_LIST_SIZE_MASK): Remove (=> PSEUDOVECTOR_SIZE_MASK).
10110 (VECTOR_FREE_LIST_FLAG): Remove (=> PVEC_FREE).
10111 (SETUP_ON_FREE_LIST): Use XSETPVECTYPESIZE.
10112 (sweep_vectors): Use it. Use local var `total_bytes' instead of
10113 abusing vector->header.next.nbytes.
10114 (live_vector_p): Use PVEC_TYPE.
10115 (mark_object): Adapt code to extract pvectype. Use switch.
10116
10117 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
10118
10119 * doprnt.c (doprnt): Don't assume string length fits in 'int'.
10120 Tighten new eassert a bit.
10121
10122 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
10123
10124 Fix compilation with --enable-gcc-warnings and -O1
10125 optimization level.
10126 * doprnt.c (doprnt): Change type of tem to int, initialize
10127 to avoid compiler warning. Add eassert.
10128 * search.c (simple_search): Initialize match_byte to avoid
10129 compiler warning. Add eassert.
10130
10131 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
10132
10133 Avoid weird behavior with large horizontal scrolls.
10134 Without this change, for example, large hscroll values would
10135 mess up Emacs's display on Fedora 15 x86, presumably due to
10136 overflows in int calculations in the display code.
10137 Also, if buffers had long lines, Emacs would freeze.
10138 * window.c (HSCROLL_MAX): Reduce to 100000, and make it visible to GDB.
10139 (set_window_hscroll): New function, containing the old guts of
10140 Fset_window_hscroll. Return the clipped value.
10141 (Fset_window_hscroll, Fscroll_left, Fscroll_right): Use it.
10142 This avoids the need to check against PTRDIFF_MAX.
10143
10144 * buffer.c (Fgenerate_new_buffer_name): Fix sprintf format mismatch.
10145
10146 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
10147
10148 * buffer.c (Fgenerate_new_buffer_name): Fix type mismatch.
10149
10150 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
10151
10152 * regex.c: Suppress GCC warning on RHEL 6. (Bug#11207)
10153 Conditionalize the pragmas on GCC 4.5 or later, not GCC 4.3 or later,
10154 since GCC 4.4.6 issues a bogus warning for them.
10155
10156 Fix bugs in file timestamp newness comparisons.
10157 * fileio.c (Ffile_newer_than_file_p):
10158 * lread.c (Fload): Use full timestamp resolution of files,
10159 not just the 1-second resolution, so that files that are only
10160 slightly newer still count as newer.
10161 * fileio.c (Ffile_newer_than_file_p): Don't assume file
10162 timestamps fit in 'int'; this fixes a Y2038 bug on most hosts.
10163
10164 2012-07-03 Paul Eggert <eggert@cs.ucla.edu>
10165
10166 * fileio.c: Improve handling of file time marker. (Bug#11852)
10167 (special_mtime): New function.
10168 (Finsert_file_contents, Fverify_visited_file_modtime):
10169 Use it to set special mtime values consistently.
10170
10171 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
10172
10173 * fileio.c (Finsert_file_contents): Properly handle st_mtime
10174 marker for non-existing file. (Bug#11852)
10175
10176 2012-07-03 Glenn Morris <rgm@gnu.org>
10177
10178 * lisp.h (Fread_file_name): Restore EXFUN (it's not a normal DEFUN
10179 and did not make it into globals.h).
10180
10181 2012-07-03 Tom Tromey <tromey@redhat.com>
10182
10183 * window.c (Fset_window_margins, Fset_window_fringes)
10184 (Fset_window_scroll_bars, Fset_window_vscroll): No longer static.
10185 * textprop.c (Fprevious_property_change): No longer static.
10186 * syntax.c (Fsyntax_table_p): No longer static.
10187 * process.c (Fget_process, Fprocess_datagram_address): No longer
10188 static.
10189 * keymap.c (Flookup_key, Fcopy_keymap): No longer static.
10190 * keyboard.c (Fcommand_execute): No longer static.
10191 Remove EXFUN.
10192 * insdel.c (Fcombine_after_change_execute): No longer static.
10193 * image.c (Finit_image_library): No longer static.
10194 * fileio.c (Fmake_symbolic_link): No longer static.
10195 * eval.c (Ffetch_bytecode): No longer static.
10196 * editfns.c (Fuser_full_name): No longer static.
10197 * doc.c (Fdocumentation_property, Fsnarf_documentation):
10198 No longer static.
10199 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): No longer
10200 static.
10201 * dired.c (Ffile_attributes): No longer static.
10202 * composite.c (Fcomposition_get_gstring): No longer static.
10203 * callproc.c (Fgetenv_internal): No longer static.
10204
10205 * ccl.h: Remove EXFUNs.
10206 * buffer.h: Remove EXFUNs.
10207 * dispextern.h: Remove EXFUNs.
10208 * intervals.h: Remove EXFUNs.
10209 * fontset.h: Remove EXFUN.
10210 * font.h: Remove EXFUNs.
10211 * dosfns.c (system_process_attributes): Remove EXFUN.
10212 * keymap.h: Remove EXFUNs.
10213 * lisp.h: Remove EXFUNs.
10214 * w32term.h: Remove EXFUNs.
10215 * window.h: Remove EXFUNs.
10216 * xsettings.h: Remove EXFUN.
10217 * xterm.h: Remove EXFUN.
10218
10219 2012-07-03 Glenn Morris <rgm@gnu.org>
10220
10221 * lisp.h (Frandom): Make it visible to C.
10222 * buffer.c (Fgenerate_new_buffer_name): Speed up finding a new
10223 buffer for invisible buffers. (Bug#1229)
10224
10225 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
10226
10227 Fix block vector allocation code to allow VECTOR_BLOCK_SIZE
10228 values which aren't power of 2.
10229 * alloc.c (VECTOR_FREE_LIST_SIZE_MASK): New macro.
10230 Verify its value and the value of VECTOR_BLOCK_SIZE. Adjust users
10231 accordingly.
10232
10233 2012-07-03 Stefan Monnier <monnier@iro.umontreal.ca>
10234
10235 * lisp.h (Lisp_Misc, Lisp_Fwd): Move around to group better.
10236
10237 * alloc.c (mark_object): Revert part of last patch to use `switch'.
10238
10239 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
10240
10241 * alloc.c (allocate_vector_block): Remove redundant
10242 calls to mallopt if DOUG_LEA_MALLOC is defined.
10243 (allocate_vectorlike): If DOUG_LEA_MALLOC is defined,
10244 avoid calls to mallopt if zero_vector is returned.
10245
10246 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
10247
10248 * alloc.c (check_string_bytes): If GC_CHECK_STRING_BYTES
10249 is enabled, avoid dereferencing NULL current_sblock if
10250 running undumped.
10251
10252 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
10253
10254 Cleanup basic buffer management.
10255 * buffer.h (struct buffer): Change layout to use generic vector
10256 marking code. Fix some comments. Change type of 'clip_changed'
10257 to bitfield. Remove unused #ifndef old.
10258 (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER): Remove.
10259 (GET_OVERLAYS_AT): Fix indentation.
10260 (for_each_per_buffer_object_at): New macro.
10261 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
10262 (Fbuffer_local_variables): Use it.
10263 (init_buffer_once, syms_of_buffer): Remove unused #ifndef old.
10264 * alloc.c (allocate_buffer): Adjust to match new layout of
10265 struct buffer. Fix comment.
10266 (mark_overlay): New function.
10267 (mark_buffer): Use it. Use mark_vectorlike to mark normal
10268 Lisp area of struct buffer.
10269 (mark_object): Use it. Adjust marking of misc objects
10270 and related comments.
10271
10272 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
10273
10274 * alloc.c (mark_object): Remove "#ifdef GC_CHECK_MARKED_OBJECTS"
10275 wrapper that is not needed because the wrapped code is a no-op (zero
10276 machine instructions) when GC_CHECK_MARKED_OBJECTS is not defined.
10277 This avoids a -Wunused-macros diagnostic with GCC 4.7.1 x86-64.
10278
10279 2012-07-02 Dmitry Antipov <dmantipov@yandex.ru>
10280
10281 * alloc.c (mark_buffer): Simplify. Remove prototype.
10282 (mark_object): Add comment. Reorganize marking of vector-like
10283 objects. Use CHECK_LIVE for all vector-like objects except buffers
10284 and subroutines when GC_CHECK_MARKED_OBJECTS is defined.
10285 Avoid redundant calls to mark_vectorlike for bool vectors.
10286
10287 2012-06-30 Glenn Morris <rgm@gnu.org>
10288
10289 * nsterm.m (ns_init_paths): Ignore site-lisp if --no-site-lisp.
10290
10291 * epaths.in (PATH_SITELOADSEARCH): New.
10292 * lread.c (init_lread): Use PATH_SITELOADSEARCH.
10293 This is rather than relying on --enable-locallisppath elements
10294 having "site-lisp" in their names. (Bug#10208#25, 11658)
10295
10296 2012-06-30 Eli Zaretskii <eliz@gnu.org>
10297
10298 * w32proc.c (sys_select): Accept and ignore one more argument.
10299
10300 * w32.c (emacs_gnutls_pull): Call select with one more argument.
10301
10302 * sysselect.h [DOS_NT]: Don't include sys/select.h.
10303 (pselect) [!MS_DOS]: Redirect to sys_select.
10304
10305 * sysdep.c: Don't include dos.h and dosfns.h.
10306
10307 * process.c (sys_select):
10308 * msdos.c (sys_select): Accept one more argument and ignore it.
10309
10310 * msdos.c (event_timestamp, sys_select): Use gnulib's gettime;
10311 adapt data types and code to that.
10312
10313 * dosfns.c:
10314 * msdos.c (gettime, settime): Define away the prototypes in dos.h,
10315 which clashes with the gnulib function of the same name.
10316
10317 2012-06-30 Andreas Schwab <schwab@linux-m68k.org>
10318
10319 * font.c (font_style_to_value, font_style_symbolic)
10320 (font_prop_validate_style): Add type checks for values in
10321 font_style_table.
10322
10323 * lisp.h (CHECK_RANGED_INTEGER): Make value to check the first
10324 argument.
10325 * character.c, charset.c, menu.c, process.c, window.c: Adjust all
10326 uses.
10327
10328 2012-06-29 Eli Zaretskii <eliz@gnu.org>
10329
10330 * xdisp.c (try_window_id): Undo last change.
10331
10332 * w32.c (getwd): Adjust commentary about startup_dir.
10333 (init_environment): Always call sys_access, even in non-MSVC
10334 builds. Don't chdir to the directory of the Emacs executable.
10335 This undoes code from 1997 which was justified by the need to
10336 "avoid conflicts when removing and renaming directories". But its
10337 downside was that every relative file name was being interpreted
10338 relative to the directory of the Emacs executable, which can never
10339 be TRT. In particular, it broke sys_access when called with
10340 relative file names.
10341 (sys_access): Map GetLastError to errno.
10342
10343 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
10344
10345 * window.h (struct window): Change type of 'fringes_outside_margins'
10346 to bitfield. Fix comment. Adjust users accordingly.
10347 (struct window): Change type of 'window_end_bytepos' to ptrdiff_t.
10348 Adjust comment.
10349 * xdisp.c (try_window_id): Change type of 'first_vpos' and 'vpos'
10350 to ptrdiff_t.
10351
10352 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
10353
10354 * gnutls.c (emacs_gnutls_handshake):
10355 Add QUIT to make the loop interruptible.
10356
10357 2012-06-29 Glenn Morris <rgm@gnu.org>
10358
10359 * charset.c (init_charset): Make lack of etc/charsets fatal.
10360
10361 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
10362
10363 * editfns.c (region_limit): Fix type mismatch.
10364
10365 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
10366
10367 * nsfns.m: Fix GLYPH_DEBUG usage assuming that it may be
10368 undefined. Convert from xassert to eassert.
10369 * nsmenu.m: Convert from xassert to eassert.
10370 * nsterm.m: Likewise.
10371
10372 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
10373
10374 * editfns.c (region_limit): Clip to narrowing (bug#11770).
10375
10376 2012-06-28 Paul Eggert <eggert@cs.ucla.edu>
10377
10378 Avoid integer overflow on scroll-left and scroll-right.
10379 * window.c (HSCROLL_MAX): New macro.
10380 (Fscroll_left, Fscroll_right): Avoid undefined behavior on integer
10381 overflow when requested scroll falls outside ptrdiff_t range.
10382
10383 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
10384
10385 * window.h (struct window): Change type of 'hscroll',
10386 'min_hscroll' and 'last_point' from Lisp_Object to ptrdiff_t,
10387 'last_modified' and 'last_overlay_modified' to EMACS_INT.
10388 Adjust users accordingly.
10389 * xdisp.c (try_cursor_movement): Replace type check with eassert.
10390 * window.c (Fscroll_left, Fscroll_right): Change type of 'hscroll'
10391 from EMACS_INT to ptrdiff_t.
10392 (make_window): Omit redundant initialization.
10393
10394 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
10395
10396 * makefile.w32-in ($(BLD)/regex.$(O)): Update dependencies.
10397
10398 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
10399
10400 * window.h (struct window): Change type of 'use_time' and
10401 'sequence_number' from Lisp_Object to int.
10402 * frame.c (make_frame): Adjust users accordingly.
10403 * print.c (print_object): Likewise.
10404 * window.c (select_window, Fwindow_use_time, make_parent_window)
10405 (make_window): Likewise.
10406
10407 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
10408
10409 * dispextern.h (GLYPH_DEBUG): Now defined in config.h if
10410 enabled with --enable-checking=[all,glyphs] configure option.
10411 Fix GLYPH_DEBUG usage assuming that it may be undefined,
10412 adjust comments accordingly.
10413 * dispnew.c: Fix GLYPH_DEBUG usage assuming that it may be
10414 undefined, adjust comments accordingly.
10415 * image.c: Likewise.
10416 * scroll.c: Likewise.
10417 * w32fns.c: Likewise.
10418 * w32term.c: Likewise.
10419 * xdisp.c: Likewise.
10420 * xfaces.c: Likewise.
10421 * xfns.c: Likewise.
10422 * xterm.c: Likewise.
10423
10424 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
10425
10426 Generalize run-time debugging checks.
10427 * dispextern.h (XASSERTS): Remove.
10428 * fontset.c (xassert): Remove.
10429 Convert from xassert to eassert.
10430 * alloc.c: Convert from xassert to eassert.
10431 * bidi.c: Likewise.
10432 * dispnew.c: Likewise.
10433 * fns.c: Likewise.
10434 * fringe.c: Likewise.
10435 * ftfont.c: Likewise.
10436 * gtkutil.c: Likewise.
10437 * image.c: Likewise.
10438 * keyboard.c: Likewise.
10439 * menu.c: Likewise.
10440 * process.c: Likewise.
10441 * scroll.c: Likewise.
10442 * sound.c: Likewise.
10443 * term.c: Likewise.
10444 * w32console.c: Likewise.
10445 * w32fns.c: Likewise.
10446 * w32term.c: Likewise.
10447 * window.c: Likewise.
10448 * xdisp.c: Likewise.
10449 * xfaces.c: Likewise.
10450 * xfns.c: Likewise.
10451 * xselect.c: Likewise.
10452 * xterm.c: Likewise.
10453
10454 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
10455
10456 * fns.c (maybe_resize_hash_table): Output message when growing the
10457 purify-hashtable.
10458
10459 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
10460
10461 * alloc.c (allocate_string_data): Remove dead code.
10462 * xsettings.c (XSETTINGS_FONT_NAME): Move under HAVE_XFT to
10463 avoid GCC warning about unused macro.
10464
10465 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
10466
10467 * alloc.c (allocate_string): Omit intervals initialization.
10468 * alloc.c (make_uninit_multibyte_string): Initialize intervals
10469 as in make_pure_string and make_pure_c_string.
10470
10471 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
10472
10473 * alloc.c (allocate_string): Fix last change.
10474
10475 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
10476
10477 * alloc.c (allocate_string): Remove two redundant calls
10478 to memset, add explicit initialization where appropriate.
10479
10480 2012-06-27 Glenn Morris <rgm@gnu.org>
10481
10482 * lisp.mk (lisp): Remove paths.elc.
10483
10484 2012-06-27 Chong Yidong <cyd@gnu.org>
10485
10486 * doc.c (Fsubstitute_command_keys): Fix punctuation.
10487
10488 2012-06-26 John Wiegley <johnw@newartisans.com>
10489
10490 * unexmacosx.c (copy_data_segment): Add two section names used
10491 on Mac OS X Lion: __mod_init_func and __mod_term_func.
10492
10493 * alloc.c (mark_memory): Do not check with -faddress-sanitizer
10494 when building with Clang.
10495
10496 2012-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
10497
10498 * eval.c (Fapply): Allow calling it with a single argument.
10499
10500 2012-06-26 Eli Zaretskii <eliz@gnu.org>
10501
10502 * s/ms-w32.h (strcasecmp, strncasecmp) [_MSC_VER]: Redirect to
10503 _stricmp and _strnicmp.
10504 (HAVE_STRCASECMP, HAVE_STRNCASECMP): Define to 1.
10505
10506 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
10507
10508 * alloc.c (allocate_window): Zero out non-Lisp part of newly
10509 allocated window.
10510 (allocate_process): Likewise for new process.
10511 (allocate_terminal): Change to use offsetof.
10512 (allocate_frame): Likewise.
10513 * frame.c (make_frame): Omit redundant initialization.
10514 * window.c (make_parent_window): Use memset.
10515 (make_window): Omit redundant initialization.
10516 * process.c (make_process): Omit redundant initialization.
10517 * terminal.c (create_terminal): Likewise.
10518
10519 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
10520
10521 * term.c (delete_tty): Remove redundant call to memset.
10522
10523 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
10524
10525 * alloc.c: Remove build_string.
10526 * lisp.h: Define build_string as static inline. This provides
10527 a better opportunity to optimize away calls to strlen when the
10528 function is called with compile-time constant argument.
10529 * image.c (imagemagick_error): Convert to build_string.
10530 * w32proc.c (sys_spawnve): Likewise.
10531 * xterm.c (x_term_init): Likewise.
10532
10533 2012-06-26 Paul Eggert <eggert@cs.ucla.edu>
10534
10535 Use sprintf return value instead of invoking strlen on result.
10536 In the old days this wasn't portable, since some sprintf
10537 implementations returned char *. But they died out years ago and
10538 Emacs already assumes sprintf returns int.
10539 Similarly for float_to_string.
10540 This patch speeds up (number-to-string 1000) by 3% on Fedora 15 x86-64.
10541 * ccl.c (ccl_driver):
10542 * character.c (string_escape_byte8):
10543 * data.c (Fnumber_to_string):
10544 * doprnt.c (doprnt):
10545 * print.c (print_object):
10546 * xdisp.c (message_dolog):
10547 * xfns.c (syms_of_xfns):
10548 Use sprintf or float_to_string result to avoid need to call strlen.
10549 * data.c (Fnumber_to_string):
10550 Use make_unibyte_string, since the string must be ASCII.
10551 * lisp.h, print.c (float_to_string): Now returns int length.
10552 * term.c (produce_glyphless_glyph):
10553 Use sprintf result rather than recomputing it.
10554
10555 Clean out last vestiges of the old HAVE_CONFIG_H stuff.
10556 * Makefile.in (ALL_CFLAGS):
10557 * makefile.w32-in (LOCAL_FLAGS): Remove -DHAVE_CONFIG_H.
10558 * gmalloc.c, regex.c: Include <config.h> unconditionally.
10559
10560 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
10561
10562 * dispextern.h (xstrcasecmp): Define to library function
10563 strcasecmp if available.
10564 * xfaces.c: Do not use xstrcasecmp if strcasecmp is available.
10565
10566 2012-06-25 Andreas Schwab <schwab@linux-m68k.org>
10567
10568 * keyboard.c (menu_bar_items, menu_bar_item, read_key_sequence):
10569 Avoid comma operator.
10570 * menu.c (push_submenu_start, push_submenu_end)
10571 (push_left_right_boundary, push_menu_pane): Likewise.
10572 * msdos.c (dos_rawgetc): Likewise.
10573
10574 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
10575
10576 * xfns.c (xic_create_fontsetname): Remove redundant calls
10577 to memset.
10578
10579 2012-06-25 Paul Eggert <eggert@cs.ucla.edu>
10580
10581 * gtkutil.c (get_utf8_string): Remove redundant assignment.
10582 sprintf already null-terminates its output.
10583
10584 * xfns.c (x_window): Remove redundant cast.
10585
10586 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
10587
10588 * xmenu.c (xmenu_show, xdialog_show): Explicit cast from
10589 `const char *' to `char *' to avoid compiler warning.
10590
10591 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
10592
10593 * xterm.c (x_term_init): Build proper-sized _XSETTINGS_Snnn string
10594 instead of truncating it to 63 (admittedly a generous limit).
10595
10596 * process.c: Fix spelling and caps in comments.
10597
10598 2012-06-24 Dan Nicolaescu <dann@ics.uci.edu>
10599
10600 * emacs.c (setpgrp): Remove definition, unused.
10601 * sysdep.c (setpgrp): Remove definition, not used in this file.
10602
10603 2012-06-24 Juanma Barranquero <lekktu@gmail.com>
10604
10605 * makefile.w32-in: Update dependencies.
10606
10607 2012-06-24 Eli Zaretskii <eliz@gnu.org>
10608
10609 * makefile.w32-in (TIMESPEC_H): Remove nt/inc/sys/time.h.
10610 (SYSTIME_H): Add nt/inc/sys/time.h.
10611
10612 * systime.h [WINDOWSNT]: Include sys/time.h.
10613
10614 * s/ms-w32.h (struct timespec): Definition moved from
10615 nt/inc/sys/time.h. Suggested by Paul Eggert <eggert@cs.ucla.edu>.
10616
10617 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
10618
10619 Switch from NO_RETURN to C11's _Noreturn (Bug#11750).
10620 * buffer.h (buffer_slot_type_mismatch):
10621 * data.c (arith_error) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
10622 * eval.c (unwind_to_catch):
10623 * image.c (my_png_error, my_error_exit):
10624 * keyboard.c (quit_throw_to_read_char, user_error)
10625 (Fexit_recursive_edit, Fabort_recursive_edit):
10626 * lisp.h (die, args_out_of_range, args_out_of_range_3)
10627 (wrong_type_argument, buffer_overflow, __executable_start)
10628 (memory_full, buffer_memory_full, string_overflow, Fthrow)
10629 (xsignal, xsignal0, xsignal1, xsignal2, xsignal3, signal_error)
10630 (error, verror, nsberror, report_file_error, Ftop_level, Fkill_emacs)
10631 (fatal):
10632 (child_setup) [!DOS_NT]:
10633 * lread.c (end_of_file_error, invalid_syntax):
10634 * process.c (send_process_trap) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
10635 * puresize.h (pure_write_error):
10636 * search.c (matcher_overflow):
10637 * sound.c (sound_perror, alsa_sound_perror):
10638 * sysdep.c, syssignal.h (croak):
10639 * term.c (maybe_fatal, vfatal):
10640 * textprop.c (text_read_only):
10641 * undo.c (user_error):
10642 * unexmacosx.c (unexec_error):
10643 * xterm.c (x_ins_del_lines, x_delete_glyphs):
10644 Use _Noreturn rather than NO_RETURN.
10645 No need for separate decl merely because of _Noreturn.
10646 * sound.c (sound_warning, parse_sound):
10647 Remove unnecessary forward decls.
10648
10649 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
10650
10651 Fix bug when time_t is unsigned and as wide as intmax_t (Bug#9000).
10652 * lisp.h (WAIT_READING_MAX): New macro.
10653 * dispnew.c (Fsleep_for, sit_for):
10654 * keyboard.c (kbd_buffer_get_event):
10655 * process.c (Faccept_process_output):
10656 Use it to avoid bogus compiler warnings with obsolescent GCC versions.
10657 This improves on the previous patch, which introduced a bug
10658 when time_t is unsigned and as wide as intmax_t.
10659 See <http://bugs.gnu.org/9000#51>.
10660
10661 2012-06-23 Eli Zaretskii <eliz@gnu.org>
10662
10663 * dispnew.c (sit_for, Fsleep_for):
10664 * keyboard.c (kbd_buffer_get_event):
10665 * process.c (Faccept_process_output): Avoid compiler warnings when
10666 comparing a 32-bit time_t with a 64-bit INTMAX_MAX.
10667
10668 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
10669
10670 * makefile.w32-in: Update dependencies.
10671
10672 * w32.c (ltime): Add return type and declare static.
10673 (w32_get_internal_run_time): Remove usused variable `time_100ns'.
10674
10675 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
10676
10677 * sysdep.c [__FreeBSD__]: Fix more recently-introduced typos.
10678 Privately reported by Herbert J. Skuhra.
10679 (make_lisp_timeval) [__FreeBSD__]: Rename from TIMELIST.
10680 All uses changed.
10681 (system_process_attributes) [__FreeBSD__]: Invoke make_lisp_time,
10682 not make_lisp_timeval, when the argument is of type EMACS_TIME.
10683
10684 2012-06-23 Eli Zaretskii <eliz@gnu.org>
10685
10686 * w32proc.c (Fw32_get_locale_info): Fix an off-by-one error in
10687 last argument of make_unibyte_string.
10688
10689 * keyboard.c (kbd_buffer_get_event): Include the codepage and the
10690 language ID in the event parameters.
10691
10692 * w32term.c (w32_read_socket): Put the new keyboard codepage into
10693 event.code, not the obscure "character set ID".
10694
10695 2012-06-23 Chong Yidong <cyd@gnu.org>
10696
10697 * xmenu.c (x_menu_wait_for_event): Adapt GTK3 to new xg_select.
10698
10699 2012-06-23 Eli Zaretskii <eliz@gnu.org>
10700
10701 Fix the MS-Windows build broken by 2012-06-22T21:17:42Z!eggert@cs.ucla.edu.
10702 * w32.c (fdutimens): New function.
10703
10704 * w32proc.c (sys_select): Adapt to change in the EMACS_TIME type.
10705
10706 * s/ms-w32.h (pselect): Redirect to sys_select.
10707
10708 * sysselect.h [WINDOWSNT]: Don't include sys/select.h.
10709
10710 * ralloc.c (r_alloc_inhibit_buffer_relocation): Fix stupid thinko
10711 in the logic of incrementing and decrementing the value of
10712 use_relocatable_buffers.
10713
10714 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
10715
10716 * sysdep.c [__FreeBSD__]: Fix recently-introduced typos.
10717 Privately reported by Herbert J. Skuhra.
10718 [__FreeBSD__]: Remove "*/" typo after "#include".
10719 (timeval_to_EMACS_TIME) [__FreeBSD__]: New static function.
10720 (TIMEVAL) [__FreeBSD__]: Now a static function rather than a macro.
10721 (TIMEVAL, system_process_attributes) [__FreeBSD__]:
10722 Don't assume EMACS_TIME and struct timeval are the same type.
10723
10724 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
10725
10726 Support higher-resolution time stamps (Bug#9000).
10727 The time stamps are only nanosecond-resolution at the C level,
10728 since that's the best that any real-world system supports now.
10729 But they are picosecond-resolution at the Lisp level, as that's
10730 easy, and leaves room for future OS improvements.
10731
10732 * Makefile.in (LIB_CLOCK_GETTIME): New macro.
10733 (LIBES): Use it.
10734
10735 * alloc.c (Fgarbage_collect): Port to higher-res time stamps.
10736 Don't get current time unless it's needed.
10737
10738 * atimer.c: Include <sys/time.h> unconditionally, since gnulib
10739 now provides it if it's absent.
10740 (start_atimer): Port to higher-res time stamps.
10741 Check for time stamp overflow. Don't get current time more
10742 often than is needed.
10743
10744 * buffer.h (struct buffer): Buffer modtime now has high resolution.
10745 Include systime.h, not time.h.
10746 (NONEXISTENT_MODTIME_NSECS, UNKNOWN_MODTIME_NSECS): New macros.
10747
10748 * dired.c: Include stat-time.h.
10749 (Ffile-attributes): File times now have higher resolution.
10750
10751 * dispextern.h [HAVE_WINDOW_SYSTEM]: Include systime.h.
10752 (struct image): Timestamp now has higher resolution.
10753
10754 * dispnew.c (PERIODIC_PREEMPTION_CHECKING): Remove, as Emacs always
10755 has at least microseconds now. All uses removed.
10756 (update_frame, update_single_window, update_window, update_frame_1)
10757 (Fsleep_for, sit_for): Port to higher-resolution time stamps.
10758 (duration_to_sec_usec): Remove; no longer needed.
10759
10760 * editfns.c (time_overflow): Now extern.
10761 (Fcurrent_time, Fget_internal_run_time, make_time, lisp_time_argument)
10762 (float-time, Fformat_time_string, Fcurrent_time_string)
10763 (Fcurrent_time_zone): Accept and generate higher-resolution
10764 time stamps.
10765 (make_time_tail, make_lisp_time, dissassemble_lisp_time)
10766 (decode_time_components, lisp_seconds_argument): New functions.
10767 (make_time): Now static.
10768 (lisp_time_argument): Now returns EMACS_TIME. New arg ppsec.
10769 Report an error if the time is invalid, rather than having the caller
10770 do that.
10771
10772 * fileio.c: Include <stat-time.h>
10773 (Fcopy_file): Copy higher-resolution time stamps.
10774 Prefer to set the time stamp via a file descriptor if that works.
10775 (Fset_file_times, Finsert_file_contents, Fwrite_region)
10776 (Fverify_visited_file_modtime, Fclear_visited_file_modtime)
10777 (Fvisited_file_modtime, Fset_visited_file_modtime):
10778 Support higher-resolution time stamps.
10779
10780 * fns.c (Frandom): Use nanoseconds, not microseconds, for seed.
10781
10782 * gtkutil.c (xg_maybe_add_timer): Port to higher-res time stamps.
10783
10784 * image.c (prepare_image_for_display, clear_image_cache)
10785 (lookup_image): Port to higer-resolution time stamps.
10786
10787 * keyboard.c (start_polling, bind_polling_period):
10788 Check for time stamp overflow.
10789 (read_char, kbd_buffer_get_event, timer_start_idle)
10790 (timer_stop_idle, timer_resume_idle, timer_check_2, timer_check)
10791 (Fcurrent_idle_time, init_keyboard, set_waiting_for_input):
10792 Port to higher-resolution time stamps. Do not assume time_t is signed.
10793 (decode_timer): New function. Timers are now vectors of length 9,
10794 not 8, to accommodate the picosecond component.
10795 (timer_check_2): Use it.
10796
10797 * nsterm.m (select_timeout, timeval_subtract): Remove.
10798 (ns_timeout): Use Emacs's facilities for time stamp arithmetic,
10799 as they're a bit more accurate and handle overflow better.
10800 (ns_select): Change prototype to be compatible with pselect.
10801 (ns_select, ns_term_shutdown): Port to ns-resolution time stamps.
10802 * nsterm.h (ns_select): Adjust prototype.
10803
10804 * msdos.c (EMACS_TIME_ZERO_OR_NEG_P): Remove, as it assumes
10805 us-resolution time stamps.
10806 (sys_select): Use the new EMACS_TIME_SIGN macro instead.
10807
10808 * lread.c (read_filtered_event): Port to ns-resolution time stamps.
10809
10810 * lisp.h (time_overflow): New decl.
10811 (wait_reading_process_output): First arg is now intmax_t, not int,
10812 to accommodate larger waits.
10813
10814 * process.h (struct Lisp_Process.read_output_delay):
10815 Now counts nanoseconds, not microseconds.
10816 * process.c (ADAPTIVE_READ_BUFFERING): Don't worry about
10817 EMACS_HAS_USECS.
10818 (READ_OUTPUT_DELAY_INCREMENT, Faccept_process_output)
10819 (wait_reading_process_output):
10820 Port to ns-resolution time stamps.
10821 (Faccept_process_output, wait_reading_process_output):
10822 Check for time stamp overflow. Do not assume time_t is signed.
10823 (select_wrapper): Remove; we now use pselect.
10824 (Fprocess_attributes): Now generates ns-resolution time stamps.
10825
10826 * sysdep.c: Include utimens.h. Don't include utime.h
10827 or worry about struct utimbuf; gnulib does that for us now.
10828 (gettimeofday): Remove; gnulib provides a substitute.
10829 (make_timeval): New function.
10830 (set_file_times): Now sets ns-resolution time stamps.
10831 New arg FD; all uses changed.
10832 (time_from_jiffies, ltime_from_jiffies, get_up_time)
10833 (system_process_attributes):
10834 Now returns ns-resolution time stamp. All uses changed.
10835 Check for time stamp overflow.
10836
10837 * sysselect.h: Don't depend on HAVE_SYS_SELECT_H; gnulib
10838 provides a substitute now.
10839
10840 * systime.h: Include timespec.h rather than sys/time.h and time.h,
10841 since it guarantees struct timespec.
10842 (EMACS_TIME): Now struct timespec, so that we can support
10843 ns-resolution time stamps.
10844 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): New macros.
10845 (EMACS_HAS_USECS): Remove; Emacs always has sub-second time stamps now.
10846 (EMACS_USECS): Remove.
10847 (EMACS_SET_USECS): The underlying time stamp now has ns resolution,
10848 so multiply the arg by 1000 before storing it.
10849 (EMACS_NSECS, EMACS_SECS_ADDR, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS):
10850 New macros.
10851 (EMACS_GET_TIME, EMACS_ADD_TIME, EMACS_SUB_TIME):
10852 Port to ns-resolution time stamps.
10853 (EMACS_TIME_NEG_P): Remove; replaced by....
10854 (EMACS_TIME_SIGN): New macro.
10855 (EMACS_SET_INVALID_TIME, EMACS_TIME_VALID_P)
10856 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE): New macros.
10857 (set_file_times, make_time, lisp_time_argument): Adjust signature.
10858 (make_timeval, make_lisp_time, decode_time_components): New decls.
10859 (EMACS_TIME_CMP): Remove; no longer used. Plus, it was buggy, in
10860 that it mishandled time_t overflow. You can't compare by subtracting!
10861 (EMACS_TIME_EQ, EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE)
10862 (EMACS_TIME_LT, EMACS_TIME_LE): Rewrite in terms of timespec_cmp.
10863
10864 * term.c: Include <sys/time.h>.
10865 (timeval_to_Time): New function, for proper overflow wraparound.
10866 (term_mouse_position, term_mouse_click): Use it.
10867
10868 * undo.c (record_first_change): Support higher-resolution time stamps
10869 in the undo buffer.
10870 (Fprimitive_undo): Use them when restoring time stamps.
10871
10872 * w32.c (ltime, U64_TO_LISP_TIME, process_times, emacs_gnutls_pull)
10873 (w32_get_internal_run_time):
10874 Port to higher-resolution Emacs time stamps.
10875 (ltime): Now accepts single 64-bit integer, as that's more convenient
10876 for callers.
10877
10878 * xdisp.c (start_hourglass): Port to ns-resolution time stamps.
10879
10880 * xgselect.c, xgselect.h (xg_select): Add sigmask argument,
10881 for compatibility with pselect. Support ns-resolution time stamps.
10882
10883 * xmenu.c (x_menu_wait_for_event): Support ns-resolution time stamps.
10884
10885 * xselect.c (wait_for_property_change, x_get_foreign_selection):
10886 Check for time stamp overflow, and support ns-resolution time stamps.
10887
10888 * xterm.c: Don't include sys/time.h; gnulib does that for us now.
10889 Don't worry about whether HAVE_TIMEVAL and HAVE_SELECT are set.
10890 (timeval_subtract): Remove; no longer needed.
10891 (XTflash, XTring_bell, x_wait_for_event):
10892 Port to ns-resolution time stamps. Don't assume time_t is signed.
10893
10894 2012-06-22 Chong Yidong <cyd@gnu.org>
10895
10896 * xdisp.c (x_consider_frame_title): Revert last change.
10897
10898 2012-06-22 Eli Zaretskii <eliz@gnu.org>
10899
10900 * alloc.c (NSTATICS): Enlarge to 0x650. Otherwise, Emacs compiled
10901 with -DENABLE_CHECKING -DXASSERTS -DGLYPH_DEBUG=1 -DBYTE_CODE_METER
10902 aborts in staticpro during startup. (Without -DBYTE_CODE_METER,
10903 staticidx goes up to 1597 out of 1600 = 0x640.)
10904
10905 2012-06-20 Paul Eggert <eggert@cs.ucla.edu>
10906
10907 * fileio.c (Fdefault_file_modes): Block input while fiddling with umask.
10908 Otherwise, the umask might be mistakenly 0 while handling input signals.
10909
10910 2012-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
10911
10912 * minibuf.c (Fread_string): Bind minibuffer-completion-table.
10913
10914 2012-06-19 Dmitry Antipov <dmantipov@yandex.ru>
10915
10916 * alloc.c, bytecode.c, ccl.c, coding.c, composite.c, data.c, dosfns.c:
10917 * font.c, image.c, keyboard.c, lread.c, menu.c, minibuf.c, msdos.c:
10918 * print.c, syntax.c, window.c, xmenu.c, xselect.c: Replace direct
10919 access to `contents' member of Lisp_Vector objects with AREF and ASET
10920 where appropriate.
10921
10922 2012-06-19 Chong Yidong <cyd@gnu.org>
10923
10924 * frame.c (delete_frame): When selecting a frame on a different
10925 text terminal, do not alter the terminal's top-frame.
10926
10927 * xdisp.c (format_mode_line_unwind_data): Record the target
10928 frame's selected window and its terminal's top-frame.
10929 (unwind_format_mode_line): Restore them.
10930 (x_consider_frame_title, display_mode_line, Fformat_mode_line):
10931 Callers changed.
10932 (x_consider_frame_title): Do not condition on HAVE_WINDOW_SYSTEM,
10933 since tty frames can be explicitly named.
10934 (prepare_menu_bars): Likewise.
10935
10936 * term.c (Ftty_top_frame): New function.
10937
10938 2012-06-18 Paul Eggert <eggert@cs.ucla.edu>
10939
10940 Port byte-code-meter to modern targets.
10941 * bytecode.c (METER_CODE) [BYTE_CODE_METER]: Don't assume
10942 !CHECK_LISP_OBJECT_TYPE && !USE_LSB_TAG. Problem with
10943 CHECK_LISP_OBJECT_TYPE reported by Dmitry Antipov in
10944 <http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00282.html>.
10945 (METER_1, METER_2): Simplify.
10946
10947 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
10948
10949 * data.c (Fdefalias): Return `symbol' (bug#11686).
10950
10951 2012-06-18 Martin Rudalics <rudalics@gmx.at>
10952
10953 * buffer.c (Fkill_buffer): Don't throw an error when the buffer
10954 gets killed during executing of this function (Bug#11665).
10955 Try to always return Qt when the buffer has been actually killed.
10956 (Vkill_buffer_query_functions): In doc-string say that functions
10957 run by this hook should not change the current buffer.
10958
10959 2012-06-18 Paul Eggert <eggert@cs.ucla.edu>
10960
10961 Fix recently-introduced process.c problems found by static checking.
10962 * process.c (write_queue_push, write_queue_pop, send_process):
10963 Use ptrdiff_t, not int or EMACS_INT, for buffer lengths and offsets.
10964 (write_queue_pop): Fix pointer signedness problem.
10965 (send_process): Remove unused local.
10966
10967 2012-06-17 Chong Yidong <cyd@gnu.org>
10968
10969 * xdisp.c (redisplay_internal): No need to redisplay terminal
10970 frames that are not on top.
10971
10972 2012-06-17 Troels Nielsen <bn.troels@gmail.com>
10973
10974 * process.c (make_process): Initialize write_queue.
10975 (write_queue_push, write_queue_pop): New functions.
10976 (send_process): Use them to maintain correct ordering of process
10977 writes (Bug#10815).
10978
10979 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
10980
10981 * lisp.h (eassert): Assume C89 or later.
10982 This removes the need for CHECK.
10983 (CHECK): Remove. Its comments about always evaluating its
10984 argument were confusing, as 'eassert' typically does not evaluate
10985 its argument.
10986
10987 * coding.c (produce_chars): Use ptrdiff_t, not int.
10988
10989 * xterm.c (x_draw_underwave): Check for integer overflow.
10990 This pacifies gcc 4.7.0 -Wunsafe-loop-optimizations on x86-64.
10991
10992 2012-06-17 Jan Djärv <jan.h.d@swipnet.se>
10993
10994 * nsterm.m (x_free_frame_resources): Move xfree so freed memory isn't
10995 referenced (Bug#11583).
10996
10997 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
10998
10999 Implement wave-style variant of underlining.
11000 * dispextern.h (face_underline_type): New enum.
11001 (face): Add field for underline type.
11002 * nsterm.m (ns_draw_underwave): New function.
11003 (ns_draw_text_decoration): Use it.
11004 * w32term.c (w32_restore_glyph_string_clip, w32_draw_underwave):
11005 New functions.
11006 (x_draw_glyph_string): Use them.
11007 * xfaces.c (Qline, Qwave): New Lisp objects.
11008 (check_lface_attrs, merge_face_ref)
11009 (Finternal_set_lisp_face_attribute, realize_x_face):
11010 Handle wave-style underline face attributes.
11011 * xterm.c (x_draw_underwave): New function.
11012 (x_draw_glyph_string): Use it.
11013
11014 2012-06-16 Juanma Barranquero <lekktu@gmail.com>
11015
11016 * makefile.w32-in ($(BLD)/emacs.$(O), $(BLD)/fringe.$(O))
11017 ($(BLD)/xml.$(O), $(BLD)/intervals.$(O), $(BLD)/macros.$(O))
11018 ($(BLD)/minibuf.$(O), $(BLD)/regex.$(O), $(BLD)/region-cache.$(O))
11019 ($(BLD)/textprop.$(O), $(BLD)/undo.$(O), $(BLD)/window.$(O))
11020 ($(BLD)/w32select.$(O)): Update dependencies.
11021
11022 2012-06-16 Andreas Schwab <schwab@linux-m68k.org>
11023
11024 * buffer.h (FETCH_MULTIBYTE_CHAR): Define as inline.
11025 (BUF_FETCH_MULTIBYTE_CHAR): Likewise.
11026 * character.c (_fetch_multibyte_char_p): Remove.
11027 * alloc.c: Include "character.h" before "buffer.h".
11028 * bidi.c: Likewise.
11029 * buffer.c: Likewise.
11030 * bytecode.c: Likewise.
11031 * callint.c: Likewise.
11032 * callproc.c: Likewise.
11033 * casefiddle.c: Likewise.
11034 * casetab.c: Likewise.
11035 * category.c: Likewise.
11036 * cmds.c: Likewise.
11037 * coding.c: Likewise.
11038 * composite.c: Likewise.
11039 * dired.c: Likewise.
11040 * dispnew.c: Likewise.
11041 * doc.c: Likewise.
11042 * dosfns.c: Likewise.
11043 * editfns.c: Likewise.
11044 * emacs.c: Likewise.
11045 * fileio.c: Likewise.
11046 * filelock.c: Likewise.
11047 * font.c: Likewise.
11048 * fontset.c: Likewise.
11049 * fringe.c: Likewise.
11050 * indent.c: Likewise.
11051 * insdel.c: Likewise.
11052 * intervals.c: Likewise.
11053 * keyboard.c: Likewise.
11054 * keymap.c: Likewise.
11055 * lread.c: Likewise.
11056 * macros.c: Likewise.
11057 * marker.c: Likewise.
11058 * minibuf.c: Likewise.
11059 * nsfns.m: Likewise.
11060 * nsmenu.m: Likewise.
11061 * print.c: Likewise.
11062 * process.c: Likewise.
11063 * regex.c: Likewise.
11064 * region-cache.c: Likewise.
11065 * search.c: Likewise.
11066 * syntax.c: Likewise.
11067 * term.c: Likewise.
11068 * textprop.c: Likewise.
11069 * undo.c: Likewise.
11070 * unexsol.c: Likewise.
11071 * w16select.c: Likewise.
11072 * w32fns.c: Likewise.
11073 * w32menu.c: Likewise.
11074 * window.c: Likewise.
11075 * xdisp.c: Likewise.
11076 * xfns.c: Likewise.
11077 * xmenu.c: Likewise.
11078 * xml.c: Likewise.
11079 * xselect.c: Likewise.
11080
11081 2012-06-16 Eli Zaretskii <eliz@gnu.org>
11082
11083 * xdisp.c (set_cursor_from_row): Don't dereference glyphs_end.
11084 If all the glyphs of the glyph row came from strings, and we have no
11085 cursor positioning clues, put the cursor on the first glyph of the
11086 row.
11087 (handle_face_prop): Use chunk-relative overlay string index when
11088 indexing into it->string_overlays array. (Bug#11653)
11089 (set_cursor_from_row): Use the leftmost glyph as GLYPH_BEFORE, not
11090 the rightmost. (Bug#11720)
11091
11092 2012-06-16 Andreas Schwab <schwab@linux-m68k.org>
11093
11094 * category.h (CHAR_HAS_CATEGORY): Define as inline.
11095 (CATEGORY_MEMBER): Enforce 1/0 value.
11096 * category.c (_temp_category_set): Remove.
11097
11098 2012-06-16 Eli Zaretskii <eliz@gnu.org>
11099
11100 * window.c (Fdelete_other_windows_internal)
11101 (Fdelete_window_internal): Don't access frame's mouse highlight
11102 info of the initial frame. (Bug#11677)
11103
11104 2012-06-14 Paul Eggert <eggert@cs.ucla.edu>
11105
11106 * .gdbinit (xgetint): Fix recently-introduced paren typo.
11107 Assume USE_2_TAGS_FOR_INTS.
11108 (xreload): Adjust $tagmask width to match recent lisp.h change.
11109
11110 Simplify lisp.h in minor ways that should not affect code.
11111 * lisp.h (USE_2_TAGS_FOR_INTS): Remove, as it was always defined.
11112 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P)
11113 (LISP_INT1_TAG, enum Lisp_Type, XINT, XUINT, make_number):
11114 Simplify under the assumption that USE_2_TAGS_FOR_INTS is defined.
11115 (INTTYPEBITS): New macro, for clarity.
11116 (INTMASK, MOST_POSITIVE_FIXNUM): Use it.
11117 (LISP_INT1_TAG, LISP_STRING_TAG, LISP_INT_TAG_P):
11118 Simplify now that USE_LSB_TAG is always defined.
11119 (TYPEMASK, XINT) [USE_LSB_TAG]: Remove unnecessary cast.
11120 (make_number) [!USE_LSB_TAG]: Use INTMASK; that's simpler.
11121
11122 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
11123
11124 * makefile.w32-in ($(BLD)/data.$(O)): Update dependencies.
11125
11126 2012-06-13 Glenn Morris <rgm@gnu.org>
11127
11128 * s/bsd-common.h (BSD4_3):
11129 * s/usg5-4-common.h (USG5_4): No longer define; unused.
11130
11131 2012-06-13 Andreas Schwab <schwab@linux-m68k.org>
11132
11133 * lisp.h (Lisp_Object) [CHECK_LISP_OBJECT_TYPE]: Define as struct
11134 instead of union.
11135 (XLI, XIL): Define.
11136 (XHASH, XTYPE, XINT, XUINT, make_number, XSET, XPNTR, XUNTAG):
11137 Use them.
11138 * emacs.c (gdb_use_struct): Rename from gdb_use_union.
11139 * .gdbinit: Check gdb_use_struct instead of gdb_use_union.
11140 * alloc.c (widen_to_Lisp_Object): Remove.
11141 (mark_memory): Use XIL instead of widen_to_Lisp_Object.
11142 * frame.c (delete_frame): Remove outdated comment.
11143 * w32fns.c (Fw32_register_hot_key): Use XLI instead of checking
11144 USE_LISP_UNION_TYPE.
11145 (Fw32_unregister_hot_key): Likewise.
11146 (Fw32_toggle_lock_key): Likewise.
11147 * w32menu.c (add_menu_item): Likewise.
11148 (w32_menu_display_help): Use XIL instead of checking
11149 USE_LISP_UNION_TYPE.
11150 * w32heap.c (allocate_heap): Don't check USE_LISP_UNION_TYPE.
11151 (init_heap): Likewise.
11152 * w32term.c (w32_read_socket): Update comment.
11153
11154 2012-06-13 Glenn Morris <rgm@gnu.org>
11155
11156 * s/usg5-4-common.h, src/s/unixware.h:
11157 Remove define/undef of HAVE_SYSV_SIGPAUSE (not used since 2010-05-04).
11158
11159 * s/gnu.h (POSIX_SIGNALS): Remove (not used since 2010-05-04).
11160
11161 2012-06-13 Paul Eggert <eggert@cs.ucla.edu>
11162
11163 USE_LISP_UNION_TYPE + USE_LSB_TAG cleanup (Bug#11604)
11164 * alloc.c (make_number) [!defined make_number]:
11165 Remove, as lisp.h always defines this now.
11166 (mark_maybe_pointer): Simplify since USE_LSB_TAG is always defined now.
11167 (roundup_size): Verify that it is a power of 2.
11168 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
11169 * ftfont.c (ftfont_driver): Use LISP_INITIALLY_ZERO.
11170 * lisp.h (USE_LSB_TAG): Allow the builder to compile with
11171 -DUSE_LSB_TAG=0, to override the automatically-selected default.
11172 USE_LSB_TAG now is always defined to be either 0 or 1.
11173 All uses changed.
11174 (union Lisp_Object): Don't worry about WORDS_BIGENDIAN; the
11175 code works fine either way, and efficiency is not a concern here,
11176 as the union type is for debugging, not for production.
11177 (LISP_MAKE_RVALUE, make_number) [USE_LISP_UNION_TYPE]:
11178 Use an inline function on all platforms when using the union type,
11179 since this is simpler and 'static inline' can be used portably
11180 within Emacs now.
11181 (LISP_INITIALLY_ZERO): New macro.
11182 (XFASTINT, XSETFASTINT) [USE_LISP_UNION_TYPE]: Remove.
11183 (XSET) [USE_LISP_UNION_TYPE]: Don't overparenthesize.
11184
11185 2012-06-12 Glenn Morris <rgm@gnu.org>
11186
11187 * s/gnu-kfreebsd.h, s/hpux11.h, s/openbsd.h, s/sol2-10.h: Remove files.
11188
11189 * s/gnu-linux.h (HAVE_PROCFS): Move to configure.
11190
11191 * s/hpux10-20.h, s/openbsd.h, s/usg5-4-common.h:
11192 Move BROKEN_SIGIO to configure.
11193
11194 * s/bsd-common.h, s/darwin.h, s/gnu-kfreebsd.h, s/hpux10-20.h:
11195 Move NO_TERMIO to configure.
11196
11197 2012-06-12 Chong Yidong <cyd@gnu.org>
11198
11199 * image.c (imagemagick_load_image): Use MagickFlattenImage if
11200 MagickMergeImageLayers is undefined. Use pixel pusher loop if
11201 MagickExportImagePixels is undefined.
11202
11203 2012-06-12 Paul Eggert <eggert@cs.ucla.edu>
11204
11205 * image.c (imagemagick_load_image): Remove unused label.
11206
11207 2012-06-11 Glenn Morris <rgm@gnu.org>
11208
11209 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
11210 * s/gnu-kfreebsd.h, s/gnu-linux.h, s/gnu.h, s/hpux10-20.h:
11211 * s/irix6-5.h, s/ms-w32.h, s/msdos.h, s/template.h:
11212 * s/usg5-4-common.h: Move SYSTEM_TYPE to configure.
11213
11214 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
11215
11216 * alloc.c (make_byte_code): New function.
11217 (Fmake_byte_code): Use it. Don't purify here.
11218 * lread.c (read1): Use it as well to avoid extra allocation.
11219
11220 2012-06-11 Chong Yidong <cyd@gnu.org>
11221
11222 * image.c (imagemagick_load_image): Implement transparency.
11223
11224 2012-06-10 Andreas Schwab <schwab@linux-m68k.org>
11225
11226 * regex.c (at_begline_loc_p): Also recognize `(?N:' and correctly
11227 account for preceding backslashes. (Bug#11663)
11228
11229 2012-06-09 Chong Yidong <cyd@gnu.org>
11230
11231 * term.c: Support italics in capable terminals (Bug#9652).
11232 (no_color_bit): Replace unused NC_BLINK with NC_ITALIC.
11233 (turn_on_face): Output using TS_enter_italic_mode if available.
11234 Don't handle unused blinking and alt-charset cases.
11235 (turn_off_face): Handle italic case; discard unused tty_blinking_p
11236 and tty_alt_charset_p cases.
11237 (tty_capable_p, init_tty): Support italics.
11238
11239 * termchar.h (struct tty_display_info): Add field for italics.
11240 Remove unused blink field.
11241
11242 * xfaces.c (tty_supports_face_attributes_p, realize_tty_face):
11243 Handle slant.
11244
11245 * dispextern.h: Replace unused TTY_CAP_BLINK with TTY_CAP_ITALIC.
11246 (struct face): Remove unused fields tty_dim_p, tty_blinking_p, and
11247 tty_alt_charset_p. Add tty_italic_p.
11248
11249 2012-06-09 Michael Albinus <michael.albinus@gmx.de>
11250
11251 * dbusbind.c (XD_BASIC_DBUS_TYPE): Use dbus_type_is_valid and
11252 dbus_type_is_basic if available.
11253 (xd_extract_signed, xd_extract_unsigned): Rename from
11254 extract_signed and extract_unsigned, respectively. Adapt callers.
11255
11256 2012-06-09 Chong Yidong <cyd@gnu.org>
11257
11258 * xfaces.c (face_for_overlay_string): Handle face remapping (Bug#2066).
11259
11260 * fringe.c (Fset_fringe_bitmap_face): Handle the noninteractive
11261 case (Bug#9752).
11262
11263 2012-06-08 Paul Eggert <eggert@cs.ucla.edu>
11264
11265 * xdisp.c (vmessage): Treat frame message as multibyte.
11266 Without this change, (let ((§ 1)) (make-variable-buffer-local '§))
11267 would generate the diagnostic "Making \302\247 buffer-local while
11268 let-bound!".
11269
11270 2012-06-08 Eli Zaretskii <eliz@gnu.org>
11271
11272 * dispnew.c (showing_window_margins_p): Undo last change, which
11273 was done due to an inadvertent commit.
11274 (adjust_frame_glyphs_for_frame_redisplay): Do call
11275 showing_window_margins_p.
11276
11277 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
11278
11279 * eval.c (Fmake_var_non_special): New primitive.
11280 (syms_of_eval): Defsubr it.
11281 * lread.c (syms_of_lread): Mark `values' as lexically scoped.
11282
11283 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
11284
11285 * dispnew.c (showing_window_margins_p): Wrap in #if 0 to prevent unused
11286 function warning (the only call is inside #if 0 since 2012-06-08T08:44:45Z!eliz@gnu.org).
11287
11288 2012-06-08 Eli Zaretskii <eliz@gnu.org>
11289
11290 * alloc.c (allocate_vectorlike): Fix last change.
11291
11292 2012-06-08 Dmitry Antipov <dmantipov@yandex.ru>
11293
11294 Block-based vector allocation of small vectors.
11295 * lisp.h (struct vectorlike_header): New field `nbytes',
11296 adjust comment accordingly.
11297 * alloc.c (enum mem_type): New type `MEM_TYPE_VECTOR_BLOCK'
11298 to denote vector blocks. Adjust users (live_vector_p,
11299 mark_maybe_pointer, valid_lisp_object_p) accordingly.
11300 (COMMON_MULTIPLE): Move outside #if USE_LSB_TAG.
11301 (VECTOR_BLOCK_SIZE, vroundup, VECTOR_BLOCK_BYTES),
11302 (VBLOCK_BYTES_MIN, VBLOCK_BYTES_MAX, VECTOR_MAX_FREE_LIST_INDEX),
11303 (VECTOR_FREE_LIST_FLAG, ADVANCE, VINDEX, SETUP_ON_FREE_LIST),
11304 (VECTOR_SIZE, VECTOR_IN_BLOCK): New macros.
11305 (roundup_size): New constant.
11306 (struct vector_block): New data type.
11307 (vector_blocks, vector_free_lists, zero_vector): New variables.
11308 (all_vectors): Rename to `large_vectors'.
11309 (allocate_vector_from_block, init_vectors, allocate_vector_from_block)
11310 (sweep_vectors): New functions.
11311 (allocate_vectorlike): Return `zero_vector' as the only vector of
11312 0 items. Allocate new vector from block if vector size is less than
11313 or equal to VBLOCK_BYTES_MAX.
11314 (Fgarbage_collect): Move all vector sweeping code to sweep_vectors.
11315 (init_alloc_once): Add call to init_vectors.
11316
11317 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
11318
11319 * eval.c (Fmacroexpand): Stop if the macro returns the same form.
11320
11321 2012-06-07 Paul Eggert <eggert@cs.ucla.edu>
11322
11323 * doprnt.c (doprnt): Truncate multibyte char correctly.
11324 Without this change, doprnt (buf, 2, "%s", FORMAT_END, AP)
11325 would mishandle a string argument "Xc" if X was a multibyte
11326 character of length 2: it would truncate after X's first byte
11327 rather than including all of X.
11328
11329 2012-06-06 Chong Yidong <cyd@gnu.org>
11330
11331 * buffer.c (word_wrap): Doc fix.
11332
11333 2012-06-04 Paul Eggert <eggert@cs.ucla.edu>
11334
11335 * xdisp.c (note_mode_line_or_margin_highlight): Pacify gcc -Wall.
11336
11337 2012-06-03 Glenn Morris <rgm@gnu.org>
11338
11339 * xdisp.c (tool-bar-style): Doc fix.
11340
11341 2012-06-03 Ulrich Müller <ulm@gentoo.org>
11342
11343 * Makefile.in (PAXCTL): Define.
11344 (temacs$(EXEEXT)): Disable memory randomization for the temacs
11345 binary via PaX flags if the paxctl utility is available.
11346 (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
11347 Restore PaX flags to their default. (Bug#11398)
11348
11349 2012-06-03 Chong Yidong <cyd@gnu.org>
11350
11351 * xdisp.c (decode_mode_spec_coding): Display a space for a unibyte
11352 buffer (Bug#11226).
11353
11354 2012-06-03 Chong Yidong <cyd@gnu.org>
11355
11356 * xdisp.c (calc_pixel_width_or_height): Use Fbuffer_local_value.
11357 (note_mode_line_or_margin_highlight): If there is no help echo,
11358 use mode-line-default-help-echo. Handle the case where the mouse
11359 position is past the end of the mode line string.
11360
11361 * buffer.c (buffer_local_value_1): New function, split from
11362 Fbuffer_local_value; can return Qunbound.
11363 (Fbuffer_local_value): Use it.
11364 (Vmode_line_format): Docstring tweaks.
11365
11366 2012-06-02 Paul Eggert <eggert@cs.ucla.edu>
11367
11368 * sysdep.c (system_process_attributes): Improve comment.
11369
11370 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
11371
11372 * keyboard.c: Export real-this-command to Elisp.
11373 (syms_of_keyboard): Rename real_this_command to Vreal_this_command
11374 and DEFVAR it. Update all users.
11375
11376 2012-06-02 Paul Eggert <eggert@cs.ucla.edu>
11377
11378 * minibuf.c (Fassoc_string): Remove duplicate declaration.
11379
11380 * sysdep.c (system_process_attributes) [SOLARIS2 && HAVE_PROCFS]:
11381 Convert pctcpu and pctmem to Lisp float properly.
11382 Let the compiler fold better, as 100.0/0x8000 is exact.
11383
11384 2012-06-02 Andreas Schwab <schwab@linux-m68k.org>
11385
11386 * alloc.c (CONS_BLOCK_SIZE): Account for padding at the end of
11387 cons_block.
11388
11389 2012-06-01 Paul Eggert <eggert@cs.ucla.edu>
11390
11391 * xfns.c (x_set_tool_bar_lines) [USE_GTK]: Adjust to bitfield change.
11392
11393 2012-06-01 Dmitry Antipov <dmantipov@yandex.ru>
11394
11395 For a 'struct window', replace some Lisp_Object fields to
11396 bitfields where appropriate, remove unused fields.
11397 * window.h (struct window): Remove unused 'last_mark_x' and
11398 'last_mark_y' fields. Rename 'mini_p' field to 'mini',
11399 change its type from Lisp_Object to bitfield.
11400 Change type of 'force_start', 'optional_new_start',
11401 'last_had_star', 'update_mode_line' and 'start_at_line_beg'
11402 fields from Lisp_Object to bitfield. Adjust users accordingly.
11403
11404 2012-05-31 Paul Eggert <eggert@cs.ucla.edu>
11405
11406 Pacify gcc -Wdouble-precision when using Xaw.
11407 * xterm.c (xaw_jump_callback, x_set_toolkit_scroll_bar_thumb)
11408 [HAVE_X_WINDOWS && USE_TOOLKIT_SCROLL_BARS && !USE_MOTIF && !USE_GTK]:
11409 Use 'float' consistently, rather than 'float' in most places
11410 and 'double' in a couple of places.
11411
11412 2012-05-31 Eli Zaretskii <eliz@gnu.org>
11413
11414 * xdisp.c (handle_stop): Detect whether we have overlay strings
11415 loaded by testing it->current.overlay_string_index to be
11416 non-negative, instead of checking whether n_overlay_strings is
11417 positive. (Bug#11587)
11418
11419 2012-05-31 Chong Yidong <cyd@gnu.org>
11420
11421 * keymap.c (describe_map_tree): Revert 2011-07-07 change (Bug#1169).
11422
11423 * doc.c (Fsubstitute_command_keys): Doc fix.
11424
11425 2012-05-31 Eli Zaretskii <eliz@gnu.org>
11426
11427 * search.c (search_buffer): Remove calls to
11428 r_alloc_inhibit_buffer_relocation, as it is now called by
11429 maybe_unify_char, which was the cause of relocation of buffer text
11430 in bug#11519.
11431
11432 2012-05-31 Eli Zaretskii <eliz@gnu.org>
11433
11434 * charset.c (maybe_unify_char): Inhibit relocation of buffer text
11435 for the duration of call to load_charset, to avoid problems with
11436 callers of maybe_unify_char that access buffer text through C
11437 pointers.
11438
11439 * ralloc.c (r_alloc_inhibit_buffer_relocation): Increment and
11440 decrement the inhibition flag, instead of just setting or
11441 resetting it.
11442
11443 2012-05-31 Paul Eggert <eggert@cs.ucla.edu>
11444
11445 Remove obsolete '#define static' cruft.
11446 * s/hpux10-20.h (_FILE_OFFSET_BITS): Don't #undef.
11447 This #undef was "temporary" in 2000; it is no longer needed
11448 now that '#define static' has gone away.
11449 * xfns.c, xterm.h (gray_bitmap_width, gray_bitmap_height)
11450 (gray_bitmap_bits): Remove; no longer needed.
11451 All uses replaced with definiens.
11452 * xterm.c: Include "bitmaps/gray.xbm".
11453
11454 2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
11455
11456 Clean up __executable_start, monstartup when --enable-profiling.
11457 The following changes affect the code only when profiling.
11458 * dispnew.c (__executable_start): Rename from safe_bcopy.
11459 Define only on platforms that need it.
11460 * emacs.c: Include <sys/gmon.h> when profiling.
11461 (_mcleanup): Remove decl, since <sys/gmon.h> does it now.
11462 (__executable_start): Remove decl, since lisp.h does it now.
11463 (safe_bcopy): Remove decl; no longer has that name.
11464 (main): Coalesce #if into single bit of code, for simplicity.
11465 Cast pointers to uintptr_t, since standard libraries want integers
11466 and not pointers.
11467 * lisp.h (__executable_start): New decl.
11468
11469 2012-05-31 Glenn Morris <rgm@gnu.org>
11470
11471 * image.c (Fimagemagick_types): Doc fix.
11472
11473 2012-05-30 Jim Meyering <meyering@redhat.com>
11474
11475 * callproc.c (Fcall_process_region): Include directory component
11476 in mkstemp error message (Bug#11586).
11477
11478 2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
11479
11480 * alloc.c, lisp.h (make_pure_vector): Now static.
11481
11482 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
11483
11484 * eval.c (Fdefun, Fdefmacro, Vmacro_declaration_function):
11485 Move to byte-run.el.
11486 (Fautoload): Do the hash-doc more carefully.
11487 * data.c (Fdefalias): Purify definition, except for keymaps.
11488 (Qdefun): Move from eval.c.
11489 * lisp.h (Qdefun): Remove.
11490 * lread.c (read1): Tiny simplification.
11491
11492 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
11493
11494 Do not create empty overlays with the evaporate property (Bug#9642).
11495 * buffer.c (Fmove_overlay): Reinstate the earlier fix for
11496 Bug#9642, but explicitly check that the buffer the overlay would
11497 be moved to is live and rearrange lines to make sure that errors
11498 will not put the overlay in an inconsistent state.
11499 (Fdelete_overlay): Cosmetics.
11500
11501 2012-05-28 Eli Zaretskii <eliz@gnu.org>
11502
11503 * w32term.c (my_bring_window_to_top): New function.
11504 (x_raise_frame): Use handle returned by DeferWindowPos, which
11505 could be different from the original one.
11506 Call my_bring_window_to_top instead of my_set_foreground_window.
11507 (Bug#11513)
11508
11509 * w32fns.c (w32_wnd_proc): Accept and process WM_EMACS_BRINGTOTOP
11510 by calling BringWindowToTop.
11511
11512 * w32term.h (WM_EMACS_BRINGTOTOP): New message.
11513 (WM_EMACS_END): Increase by one.
11514
11515 2012-05-28 Paul Eggert <eggert@cs.ucla.edu>
11516
11517 * bidi.c (bidi_mirror_char): Put eassert before conversion to int.
11518 This avoids undefined behavior that might cause the eassert
11519 to not catch an out-of-range value.
11520
11521 2012-05-28 Juanma Barranquero <lekktu@gmail.com>
11522
11523 * makefile.w32-in ($(BLD)/w32inevt.$(O), $(BLD)/w32console.$(O)):
11524 Update dependencies.
11525
11526 2012-05-27 Eli Zaretskii <eliz@gnu.org>
11527
11528 * bidi.c (bidi_mirror_char): Fix last change.
11529
11530 2012-05-27 Andreas Schwab <schwab@linux-m68k.org>
11531
11532 * unexmacosx.c (copy_data_segment): Truncate after 16 characters
11533 when referring to sectname field in printf format.
11534
11535 2012-05-27 Paul Eggert <eggert@cs.ucla.edu>
11536
11537 * lisp.h [REL_ALLOC]: Omit duplicate prototypes.
11538 Only r_alloc_inhibit_buffer_relocation needed to be added;
11539 the others were already declared.
11540
11541 * bidi.c (bidi_mirror_char): Don't possibly truncate the integer
11542 before checking whether it's out of range. Put the check inside
11543 eassert. See
11544 <http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00485.html>.
11545
11546 2012-05-27 Ken Brown <kbrown@cornell.edu>
11547
11548 * callproc.c (Fcall_process): Restore a line that was accidentally
11549 commented out in the 2011-02-13 change (bug#11547).
11550
11551 2012-05-27 Eli Zaretskii <eliz@gnu.org>
11552
11553 * lisp.h [REL_ALLOC]: Add prototypes for external functions
11554 defined on ralloc.c.
11555
11556 * buffer.c [REL_ALLOC]: Remove prototypes of
11557 r_alloc_reset_variable, r_alloc, r_re_alloc, and r_alloc_free,
11558 they are now on lisp.h.
11559
11560 * ralloc.c (r_alloc_inhibit_buffer_relocation): New function.
11561
11562 * search.c (search_buffer): Use it to inhibit relocation of buffer
11563 text while re_search_2 is doing its job, because re_search_2 is
11564 passed C pointers to buffer text. (Bug#11519)
11565
11566 * msdos.c (internal_terminal_init) <Vwindow_system_version>:
11567 Update value to 24.
11568
11569 * xdisp.c (move_it_to): Under MOVE_TO_Y, when restoring iterator
11570 state after an additional call to move_it_in_display_line_to, keep
11571 the values of it->max_ascent and it->max_descent found for the
11572 entire line.
11573 (pos_visible_p): Revert the comparison against bottom_y to what it
11574 was in revid eliz@gnu.org-20120513182235-4p6386j761ld0nwb.
11575 (Bug#11464)
11576
11577 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
11578
11579 Fix coding-related core dumps with gcc -ftrapv.
11580 The code was computing A - B, where A and B are pointers, and B is
11581 random garbage. This can lead to core dumps on platforms that
11582 have special pointer registers, and it also leads to core dumps on
11583 x86-64 when compiled with gcc -ftrapv. The fix is to compute
11584 A - B only when B is initialized properly.
11585 * coding.c (coding_set_source, coding_set_destination): Return void.
11586 (coding_change_source, coding_change_destinations): New functions,
11587 with the old behaviors of coding_set_source and coding_set_destination.
11588 All callers that need an offset changed to use these new functions.
11589
11590 2012-05-26 Glenn Morris <rgm@gnu.org>
11591
11592 * nsterm.m (ns_init_paths): Don't mess with INFOPATH. (Bug#2791)
11593
11594 2012-05-26 Eli Zaretskii <eliz@gnu.org>
11595
11596 Extend mouse support on W32 text-mode console.
11597 * xdisp.c (draw_row_with_mouse_face):
11598 Call tty_draw_row_with_mouse_face for WINDOWSNT as well.
11599
11600 * w32console.c: Include window.h.
11601 (w32con_write_glyphs_with_face, tty_draw_row_with_mouse_face):
11602 New functions.
11603 (initialize_w32_display): Initialize mouse-highlight data.
11604
11605 * w32inevt.c: Include termchar.h and window.h.
11606 (do_mouse_event): Support mouse-autoselect-window. When the mouse
11607 moves, call note_mouse_highlight. If help_echo changed, call
11608 gen_help_event to produce help-echo message in the echo area.
11609 Call clear_mouse_face if mouse_face_hidden is set in the mouse
11610 highlight info.
11611
11612 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
11613
11614 * lread.c (read1): Simplify slightly to avoid an overflow warning
11615 with GCC 4.7.0 on x86-64.
11616
11617 2012-05-26 Eli Zaretskii <eliz@gnu.org>
11618
11619 * bidi.c (bidi_mirror_char): Revert last change: an int is
11620 definitely wide enough here.
11621
11622 2012-05-25 Paul Eggert <eggert@cs.ucla.edu>
11623
11624 Fix integer width and related bugs (Bug#9874).
11625 * alloc.c (pure_bytes_used_lisp, pure_bytes_used_non_lisp):
11626 (allocate_vectorlike, buffer_memory_full, struct sdata, SDATA_SIZE)
11627 (string_bytes, check_sblock, allocate_string_data):
11628 (compact_small_strings, Fmake_bool_vector, make_string)
11629 (make_unibyte_string, make_multibyte_string)
11630 (make_string_from_bytes, make_specified_string)
11631 (allocate_vectorlike, Fmake_vector, find_string_data_in_pure)
11632 (make_pure_string, make_pure_c_string, make_pure_vector, Fpurecopy)
11633 (mark_vectorlike):
11634 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11635 (allocate_pseudovector):
11636 Use int, not EMACS_INT, where int is wide enough.
11637 (inhibit_garbage_collection, Fgarbage_collect):
11638 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11639 * bidi.c (bidi_mirror_char): Use EMACS_INT, not int, where
11640 int might not be wide enough.
11641 (bidi_cache_search, bidi_cache_find, bidi_init_it)
11642 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
11643 (bidi_at_paragraph_end, bidi_find_paragraph_start)
11644 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
11645 (bidi_level_of_next_char, bidi_move_to_visually_next):
11646 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11647 * buffer.c (copy_overlays, Fgenerate_new_buffer_name)
11648 (Fkill_buffer, Fset_buffer_major_mode)
11649 (advance_to_char_boundary, Fbuffer_swap_text)
11650 (Fset_buffer_multibyte, overlays_at, overlays_in)
11651 (overlay_touches_p, struct sortvec, record_overlay_string)
11652 (overlay_strings, recenter_overlay_lists)
11653 (adjust_overlays_for_insert, adjust_overlays_for_delete)
11654 (fix_start_end_in_overlays, fix_overlays_before, modify_overlay)
11655 (Fmove_overlay, Fnext_overlay_change, Fprevious_overlay_change)
11656 (Foverlay_recenter, last_overlay_modification_hooks_used)
11657 (report_overlay_modification, evaporate_overlays, enlarge_buffer_text):
11658 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11659 (validate_region): Omit unnecessary test for b <= e,
11660 since that's guaranteed by the previous test.
11661 (adjust_overlays_for_delete): Avoid pos + length overflow.
11662 (Fmove_overlay, Fdelete_overlay, add_overlay_mod_hooklist)
11663 (report_overlay_modification):
11664 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11665 (Foverlays_at, Fnext_overlay_change, Fprevious_overlay_change):
11666 Omit pointer cast, which isn't needed anyway, and doesn't work
11667 after the EMACS_INT -> ptrdiff_t change.
11668 (Fmove_overlay): Clip BEG and END to ptrdiff_t to avoid overflow.
11669 * buffer.h: Adjust decls to match defn changes elsewhere.
11670 (struct buffer_text, struct buffer):
11671 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11672 Use EMACS_INT, not int, where int might not be wide enough.
11673 * bytecode.c (unmark_byte_stack, exec_byte_code): Use ptrdiff_t,
11674 not int, to avoid needless 32-bit limit on 64-bit hosts.
11675 (exec_byte_code): Use tighter memory-full test, one that checks
11676 for alloca overflow. Don't compute the address of the object just
11677 before an array, as that's not portable. Use EMACS_INT, not
11678 ptrdiff_t or int, where ptrdiff_t or int might not be wide enough.
11679 * callint.c (Fcall_interactively):
11680 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11681 * callproc.c (call_process_kill, Fcall_process):
11682 Don't assume pid_t fits into an Emacs fixnum.
11683 (call_process_cleanup, Fcall_process, child_setup):
11684 Don't assume pid_t fits into int.
11685 (call_process_cleanup, Fcall_process, delete_temp_file)
11686 (Fcall_process_region):
11687 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11688 (Fcall_process): Simplify handling of volatile integers.
11689 Use int, not EMACS_INT, where int will do.
11690 * casefiddle.c (casify_object, casify_region, operate_on_word)
11691 (Fupcase_word, Fdowncase_word, Fcapitalize_word):
11692 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11693 (casify_object): Avoid integer overflow when overallocating buffer.
11694 * casetab.c (set_identity, shuffle): Prefer int to unsigned when
11695 either works. Use lint_assume to convince GCC 4.6.1 that it's OK.
11696 * category.c (Fchar_category_set): Don't assume fixnum fits in int.
11697 * category.h (CATEGORYP): Don't assume arg is nonnegative.
11698 * ccl.c (GET_CCL_INT): Remove; no longer needed, since the
11699 integers are now checked earlier. All uses replaced with XINT.
11700 (ccl_driver):
11701 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11702 For CCL_MapSingle, check that content and value are in int range.
11703 (ccl_driver, Fregister_code_conversion_map):
11704 Check that Vcode_version_map_vector is a vector.
11705 (resolve_symbol_ccl_program): Check that vector header is in range.
11706 Always copy the vector, so that we can check its contents reliably
11707 now rather than having to recheck each instruction as it's being
11708 executed. Check that vector words fit in 'int'.
11709 (ccl_get_compiled_code, Fregister_ccl_program)
11710 (Fregister_code_conversion_map): Use ptrdiff_t, not int, for
11711 program indexes, to avoid needless 32-bit limit on 64-bit hosts.
11712 (Fccl_execute, Fccl_execute_on_string): Check that initial reg
11713 contents are in range.
11714 (Fccl_execute_on_string): Check that status is in range.
11715 * ccl.h (struct ccl_program.idx): Now ptrdiff_t, not int.
11716 * character.c (char_resolve_modifier_mask, Fchar_resolve_modifiers):
11717 Accept and return EMACS_INT, not int, because callers can pass values
11718 out of 'int' range.
11719 (c_string_width, strwidth, lisp_string_width, chars_in_text)
11720 (multibyte_chars_in_text, parse_str_as_multibyte)
11721 (str_as_multibyte, count_size_as_multibyte, str_to_multibyte)
11722 (str_as_unibyte, str_to_unibyte, string_count_byte8)
11723 (string_escape_byte8, Fget_byte):
11724 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11725 (Funibyte_string): Use CHECK_RANGED_INTEGER, not CHECK_NATNUM, to
11726 avoid mishandling large integers.
11727 * character.h: Adjust decls to match defn changes elsewhere.
11728 * charset.c (load_charset_map_from_file, find_charsets_in_text)
11729 (Ffind_charset_region):
11730 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11731 (load_charset_map_from_file): Redo idx calculation to avoid overflow.
11732 (load_charset_map_from_vector, Fdefine_charset_internal):
11733 Don't assume fixnum fits in int.
11734 (load_charset_map_from_vector, Fmap_charset_chars):
11735 Remove now-unnecessary CHECK_NATNUMs.
11736 (Fdefine_charset_internal): Check ranges here, more carefully.
11737 Don't rely on undefined behavior with signed left shift overflow.
11738 Don't assume unsigned int fits into fixnum, or that fixnum fits
11739 into unsigned int. Don't require max_code to be a valid fixnum;
11740 that's not true for gb10830 4-byte on a 32-bit host. Allow
11741 invalid_code to be a cons, for the same reason. Require code_offset
11742 to be a character. Avoid int overflow if max_char is close
11743 to INT_MAX.
11744 (CODE_POINT_TO_INDEX): On 32-bit hosts, return int, not unsigned;
11745 this is intended anyway and avoids some undefined behavior.
11746 (load_charset_map): Pass unsigned, not int, as 2nd arg of
11747 INDEX_TO_CODE_POINT, as that's what it expects.
11748 (Funify_charset, encode_char): Don't stuff unsigned vals into int vars.
11749 * charset.h (DECODE_CHAR): Return int, not unsigned;
11750 this is what was intended anyway, and it avoids undefined behavior.
11751 (CHARSET_OFFSET): Remove unused macro, instead of fixing its
11752 integer-overflow issues.
11753 (ENCODE_CHAR): Return unsigned on all hosts, not just on 32-bit hosts.
11754 Formerly, it returned EMACS_INT on 64-bit hosts in the common case
11755 where the argument is EMACS_INT, and this behavior is not intended.
11756 * chartab.c (Fmake_char_table, Fset_char_table_range)
11757 (uniprop_get_decoder, uniprop_get_encoder):
11758 Don't assume fixnum fits in int.
11759 * cmds.c (move_point): New function, that does the gist of
11760 Fforward_char and Fbackward_char, but does so while checking
11761 for integer overflow more accurately.
11762 (Fforward_char, Fbackward_char): Use it.
11763 (Fforward_line, Fend_of_line, internal_self_insert)
11764 (internal_self_insert):
11765 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11766 Fix a FIXME, by checking for integer overflow when calculating
11767 target_clm and actual_clm.
11768 * coding.c (detect_coding_XXX, encode_coding_XXX, CODING_DECODE_CHAR)
11769 (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET, CODING_CHAR_CHARSET_P)
11770 (ASSURE_DESTINATION, coding_alloc_by_realloc)
11771 (coding_alloc_by_making_gap, alloc_destination)
11772 (detect_coding_utf_8, encode_coding_utf_8, decode_coding_utf_16)
11773 (encode_coding_utf_16, detect_coding_emacs_mule)
11774 (decode_coding_emacs_mule, encode_coding_emacs_mule)
11775 (detect_coding_iso_2022, decode_coding_iso_2022)
11776 (encode_invocation_designation, encode_designation_at_bol)
11777 (encode_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
11778 (decode_coding_sjis, decode_coding_big5, encode_coding_sjis)
11779 (encode_coding_big5, detect_coding_ccl, decode_coding_ccl)
11780 (encode_coding_ccl, encode_coding_raw_text)
11781 (detect_coding_charset, decode_coding_charset)
11782 (encode_coding_charset, detect_eol, decode_eol, produce_chars)
11783 (produce_composition, produce_charset, produce_annotation)
11784 (decode_coding, handle_composition_annotation)
11785 (handle_charset_annotation, consume_chars, decode_coding_gap)
11786 (decode_coding_object, encode_coding_object, detect_coding_system)
11787 (Ffind_coding_systems_region_internal, Fcheck_coding_systems_region)
11788 (code_convert_region, code_convert_string)
11789 (Fdefine_coding_system_internal)
11790 (coding_set_source, coding_set_destination):
11791 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11792 (setup_iso_safe_charsets, consume_chars, Funencodable_char_position)
11793 (Fdefine_coding_system_internal):
11794 Don't assume fixnums fit in int.
11795 (decode_coding_gap, decode_coding_object, encode_coding_object)
11796 (Fread_coding_system, Fdetect_coding_region)
11797 (Funencodable_char_position, Fcheck_coding_systems_region)
11798 (get_translation, handle_composition_annotation, consume_chars):
11799 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11800 (consume_chars): Rewrite to not calculate an address outside buffer.
11801 (Ffind_operation_coding_system): NATNUMP can eval its arg twice.
11802 Don't access memory outside of the args array.
11803 (Fdefine_coding_system_internal): Check for charset-id overflow.
11804 (ENCODE_ISO_CHARACTER): Use unsigned, not int, to store the unsigned
11805 result of ENCODE_CHAR.
11806 * coding.h: Adjust decls to match defn changes elsewhere.
11807 (struct coding_system):
11808 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11809 * composite.c (get_composition_id, find_composition)
11810 (run_composition_function, update_compositions)
11811 (compose_text, composition_gstring_put_cache)
11812 (composition_gstring_p, composition_gstring_width)
11813 (fill_gstring_header, fill_gstring_body, autocmp_chars)
11814 (composition_compute_stop_pos, composition_reseat_it)
11815 (composition_update_it, struct position_record)
11816 (find_automatic_composition, composition_adjust_point)
11817 (Fcomposition_get_gstring, Ffind_composition_internal):
11818 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11819 (update_compositions):
11820 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11821 * composite.h: Adjust decls to match defn changes elsewhere.
11822 (struct composition):
11823 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11824 * data.c (let_shadows_buffer_binding_p, let_shadows_global_binding_p):
11825 Do not attempt to compute the address of the object just before a
11826 buffer; this is not portable.
11827 (Faref, Faset):
11828 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11829 (Faset): Use int, not EMACS_INT, where int is wide enough.
11830 (Fstring_to_number): Don't assume fixnums fit in int.
11831 (Frem): Don't assume arg is nonnegative.
11832 * dbusbind.c (xd_append_arg): Check for integers out of range.
11833 (Fdbus_call_method): Don't overflow the timeout int.
11834 (extract_signed, extract_unsigned): New functions.
11835 (XD_CHECK_DBUS_SERIAL): Remove; superseded by extract_unsigned.
11836 (xd_get_connection_references): Return ptrdiff_t, not int.
11837 All uses changed.
11838 (xd_signature, xd_append_arg, xd_retrieve_arg, Fdbus_message_internal)
11839 (xd_read_message_1):
11840 Use int, not unsigned, where the dbus API uses int.
11841 (Fdbus_message_internal): Don't overflow mtype.
11842 (syms_of_dbusbind): Allocate right-sized buffer for integers.
11843 * dired.c (directory_files_internal, file_name_completion, scmp)
11844 (file_name_completion_stat):
11845 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11846 (file_name_completion): Don't overflow matchcount.
11847 (file_name_completion_stat): Use SAFE_ALLOCA, not alloca.
11848 * dispextern.h: Adjust decls to match defn changes elsewhere.
11849 (struct text_pos, struct glyph, struct bidi_saved_info)
11850 (struct bidi_string_data, struct bidi_it, struct composition_it)
11851 (struct it):
11852 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11853 (struct display_pos, struct composition_it, struct it):
11854 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11855 * dispnew.c (increment_matrix_positions)
11856 (increment_row_positions, mode_line_string)
11857 (marginal_area_string):
11858 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11859 (change_frame_size_1, Fredisplay, Fframe_or_buffer_changed_p):
11860 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11861 (duration_to_sec_usec): New function, to check for overflow better.
11862 (Fsleep_for, sit_for): Use it.
11863 * doc.c (get_doc_string, store_function_docstring):
11864 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11865 (get_doc_string, Fsnarf_documentation):
11866 Use int, not EMACS_INT, where int is wide enough.
11867 (get_doc_string):
11868 Use SAFE_ALLOCA, not alloca.
11869 Check for overflow when converting EMACS_INT to off_t.
11870 * doprnt.c (doprnt):
11871 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11872 * editfns.c (init_editfns, Fuser_uid, Fuser_real_uid):
11873 Don't assume uid_t fits into fixnum.
11874 (buildmark, Fgoto_char, overlays_around, find_field, Fdelete_field)
11875 (Ffield_string, Ffield_string_no_properties, Ffield_beginning)
11876 (Ffield_end, Fconstrain_to_field, Fline_beginning_position)
11877 (Fline_end_position, Fprevious_char, Fchar_after, Fchar_before)
11878 (general_insert_function)
11879 (Finsert_char, make_buffer_string, make_buffer_string_both)
11880 (update_buffer_properties, Fbuffer_substring)
11881 (Fbuffer_substring_no_properties, Fcompare_buffer_substrings)
11882 (Fsubst_char_in_region, check_translation)
11883 (Ftranslate_region_internal, save_restriction_restore, Fformat)
11884 (transpose_markers, Ftranspose_regions):
11885 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11886 (clip_to_bounds): Move to lisp.h as an inline function).
11887 (Fconstrain_to_field): Don't assume integers are nonnegative.
11888 (Fline_beginning_position, Fsave_excursion, Fsave_current_buffer):
11889 (Fsubst_char_in_region, Fsave_restriction):
11890 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11891 (Femacs_pid): Don't assume pid_t fits into fixnum.
11892 (lo_time): Use int, not EMACS_INT, when int suffices.
11893 (lisp_time_argument): Check for usec out of range.
11894 (Fencode_time): Don't assume fixnum fits in int.
11895 (Fuser_login_name, Fuser_full_name): Signal an error
11896 if a uid argument is out of range, rather than relying on
11897 undefined behavior.
11898 (Fformat_time_string): Remove now-unnecessary check.
11899 lisp_time_argument checks for out-of-range usec now.
11900 Use ptrdiff_t, not size_t, where ptrdiff_t will do.
11901 * emacs.c (gdb_valbits, gdb_gctypebits): Now int, not EMACS_INT.
11902 (gdb_data_seg_bits): Now uintptr_t, not EMACS_INT.
11903 (PVEC_FLAG, gdb_array_mark_flag): Now ptrdiff_t, not EMACS_INT.
11904 (init_cmdargs, Fdump_emacs):
11905 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11906 (Fkill_emacs): Don't assume fixnum fits in int; instead, take just
11907 the bottom (typically) 32 bits of the fixnum.
11908 * eval.c (specpdl_size, call_debugger):
11909 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11910 (when_entered_debugger, Fbacktrace_debug):
11911 Don't assume fixnum can fit in int.
11912 (Fdefvaralias, Fdefvar): Do not attempt to compute the address of
11913 the object just before a buffer; this is not portable.
11914 (FletX, Flet, Funwind_protect, do_autoload, Feval, funcall_lambda)
11915 (grow_specpdl, unbind_to):
11916 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11917 (Fapply, apply_lambda): Don't assume ptrdiff_t can hold fixnum.
11918 (grow_specpdl): Simplify allocation by using xpalloc.
11919 (Fprog1, Fprog2): Don't assume list length fits in int. Simplify.
11920 * fileio.c (Ffind_file_name_handler, Fcopy_file, Frename_file)
11921 (Finsert_file_contents, Fwrite_region, Fdo_auto_save):
11922 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11923 (Ffind_file_name_handler, non_regular_inserted, Finsert_file_contents)
11924 (a_write, e_write):
11925 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11926 (Fcopy_file, non_regular_nbytes, read_non_regular)
11927 (Finsert_file_contents):
11928 Use int, not EMACS_INT, where int is wide enough.
11929 (READ_BUF_SIZE): Verify that it fits in int.
11930 (Finsert_file_contents): Check that counts are in proper range,
11931 rather than assuming fixnums fit into ptrdiff_t etc.
11932 Don't assume fixnums fit into int.
11933 * floatfns.c (Fexpt): Avoid undefined signed * signed overflow.
11934 * fns.c (Fcompare_strings, Fstring_lessp, struct textprop_rec, concat)
11935 (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
11936 (string_char_to_byte, string_byte_to_char)
11937 (string_make_multibyte, string_to_multibyte)
11938 (string_make_unibyte, Fstring_as_unibyte, Fstring_as_multibyte)
11939 (Fstring_to_unibyte, Fsubstring, Fsubstring_no_properties)
11940 (substring_both, Fdelete, internal_equal, Ffillarray)
11941 (Fclear_string, mapcar1)
11942 (Fbase64_encode_region, Fbase64_encode_string, base64_encode_1)
11943 (Fbase64_decode_region, Fbase64_decode_string, base64_decode_1)
11944 (larger_vector, make_hash_table, maybe_resize_hash_table)
11945 (hash_lookup, hash_remove_from_table, hash_clear, sweep_weak_table)
11946 (Fmaphash, secure_hash):
11947 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11948 (concat): Check for string index and length overflow.
11949 (Fmapconcat): Don't assume fixnums fit into ptrdiff_t.
11950 (Frequire):
11951 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11952 (larger_vector): New API (vec, incr_min, size_max) replaces old
11953 one (vec, new_size, init). This catches size overflow.
11954 INIT was removed because it was always Qnil.
11955 All callers changed.
11956 (INDEX_SIZE_BOUND): New macro, which calculates more precisely
11957 the upper bound on a hash table index size.
11958 (make_hash_table, maybe_resize_hash_table): Use it.
11959 (secure_hash): Computer start_byte and end_byte only after
11960 they're known to be in ptrdiff_t range.
11961 * font.c (font_intern_prop, font_at, font_range, Ffont_shape_gstring)
11962 (Ffont_get_glyphs, Ffont_at):
11963 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11964 (font_style_to_value, font_prop_validate_style, font_expand_wildcards)
11965 (Flist_fonts, Fopen_font):
11966 Don't assume fixnum can fit in int.
11967 (check_gstring): Don't assume index can fit in int.
11968 (font_match_p): Check that fixnum is a character, not a nonnegative
11969 fixnum, since the later code needs to stuff it into an int.
11970 (font_find_for_lface): Use SAFE_ALLOCA_LISP, not alloca.
11971 (font_fill_lglyph_metrics): Use unsigned, not EMACS_INT, to avoid
11972 conversion overflow issues.
11973 (Fopen_font): Check for integer out of range.
11974 (Ffont_get_glyphs): Don't assume index can fit in int.
11975 * font.h: Adjust decls to match defn changes elsewhere.
11976 * fontset.c (reorder_font_vector): Redo score calculation to avoid
11977 integer overflow.
11978 (num_auto_fontsets, fontset_from_font): Use ptrdiff_t, not
11979 printmax_t, where ptrdiff_t is wide enough.
11980 (Finternal_char_font):
11981 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11982 * frame.c (Fset_mouse_position, Fset_mouse_pixel_position)
11983 (Fset_frame_height, Fset_frame_width, Fset_frame_size)
11984 (Fset_frame_position, x_set_frame_parameters)
11985 (x_set_line_spacing, x_set_border_width)
11986 (x_set_internal_border_width, x_set_alpha, x_figure_window_size):
11987 Check that fixnums are in proper range for system types.
11988 (frame_name_fnn_p, Fframe_parameter, Fmodify_frame_parameters):
11989 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11990 (Fmodify_frame_parameters): Don't assume fixnum fits in int.
11991 Use SAFE_ALLOCA_LISP, not alloca.
11992 * frame.h (struct frame): Use intptr_t, not EMACS_INT, where
11993 intptr_t is wide enough.
11994 * fringe.c (lookup_fringe_bitmap, get_logical_fringe_bitmap)
11995 (Fdefine_fringe_bitmap): Don't assume fixnum fits in int.
11996 (Ffringe_bitmaps_at_pos): Don't assume index fits in int.
11997 Check for fixnum out of range.
11998 * ftfont.c (ftfont_list): Don't assume index fits in int.
11999 Check that fixnums are in proper range for system types.
12000 (ftfont_shape_by_flt):
12001 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12002 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
12003 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12004 (Fgnutls_error_fatalp, Fgnutls_error_string, Fgnutls_boot):
12005 Check that fixnums are in proper range for system types.
12006 * gnutls.h: Adjust decls to match defn changes elsewhere.
12007 * gtkutil.c (xg_dialog_run):
12008 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12009 (update_frame_tool_bar):
12010 Check that fixnums are in proper range for system types.
12011 * image.c (parse_image_spec): Redo count calculation to avoid overflow.
12012 (lookup_image): Check that fixnums are in range for system types.
12013 * indent.c (last_known_column, last_known_column_point):
12014 (current_column_bol_cache):
12015 (skip_invisible, current_column, check_display_width):
12016 (check_display_width, scan_for_column, current_column_1)
12017 (Findent_to, Fcurrent_indentation, position_indentation)
12018 (indented_beyond_p, Fmove_to_column, compute_motion):
12019 (Fcompute_motion, Fvertical_motion):
12020 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12021 (last_known_column_modified): Use EMACS_INT, not int.
12022 (check_display_width):
12023 (Fcompute_motion):
12024 Check that fixnums and floats are in proper range for system types.
12025 (compute_motion): Don't assume index or fixnum fits in int.
12026 (compute_motion, Fcompute_motion):
12027 Use int, not EMACS_INT, when it is wide enough.
12028 (vmotion): Omit local var start_hpos that is always 0; that way
12029 we don't need to worry about overflow in expressions involving it.
12030 * indent.h: Adjust decls to match defn changes elsewhere.
12031 (struct position):
12032 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12033 Use int, not EMACS_INT, where int is wide enough.
12034 Remove unused members ovstring_chars_done and tab_offset;
12035 all uses removed.
12036 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
12037 (adjust_markers_for_delete, adjust_markers_for_insert, adjust_point)
12038 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
12039 (make_gap, copy_text, insert, insert_and_inherit)
12040 (insert_before_markers, insert_before_markers_and_inherit)
12041 (insert_1, count_combining_before, count_combining_after)
12042 (insert_1_both, insert_from_string)
12043 (insert_from_string_before_markers, insert_from_string_1)
12044 (insert_from_gap, insert_from_buffer, insert_from_buffer_1)
12045 (adjust_after_replace, adjust_after_insert, replace_range)
12046 (replace_range_2, del_range, del_range_1, del_range_byte)
12047 (del_range_both, del_range_2, modify_region)
12048 (prepare_to_modify_buffer, signal_before_change)
12049 (signal_after_change, Fcombine_after_change_execute):
12050 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12051 * intervals.c (traverse_intervals, rotate_right, rotate_left)
12052 (balance_an_interval, split_interval_right, split_interval_left)
12053 (find_interval, next_interval, update_interval)
12054 (adjust_intervals_for_insertion, delete_node, delete_interval)
12055 (interval_deletion_adjustment, adjust_intervals_for_deletion)
12056 (static_offset_intervals, offset_intervals)
12057 (merge_interval_right, merge_interval_left, make_new_interval)
12058 (graft_intervals_into_buffer, temp_set_point_both)
12059 (temp_set_point, set_point, adjust_for_invis_intang)
12060 (set_point_both, move_if_not_intangible, get_property_and_range)
12061 (get_local_map, copy_intervals, copy_intervals_to_string)
12062 (compare_string_intervals, set_intervals_multibyte_1):
12063 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12064 * intervals.h: Adjust decls to match defn changes elsewhere.
12065 (struct interval):
12066 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12067 * keyboard.c (this_command_key_count, this_single_command_key_start)
12068 (before_command_key_count, before_command_echo_length, echo_now)
12069 (echo_length, recursive_edit_1, Frecursive_edit, Ftrack_mouse)
12070 (command_loop_1, safe_run_hooks, read_char, timer_check_2)
12071 (menu_item_eval_property, read_key_sequence, Fread_key_sequence)
12072 (Fread_key_sequence_vector, Fexecute_extended_command, Fsuspend_emacs):
12073 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12074 (last_non_minibuf_size, last_point_position, echo_truncate)
12075 (command_loop_1, adjust_point_for_property, read_char, gen_help_event)
12076 (make_lispy_position, make_lispy_event, parse_modifiers_uncached)
12077 (parse_modifiers, modify_event_symbol, Fexecute_extended_command)
12078 (stuff_buffered_input):
12079 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12080 (last_auto_save, command_loop_1, read_char):
12081 Use EMACS_INT, not int, to avoid integer overflow.
12082 (record_char): Avoid overflow in total_keys computation.
12083 (parse_modifiers_uncached): Redo index calculation to avoid overflow.
12084 * keyboard.h: Adjust decls to match defn changes elsewhere.
12085 * keymap.c (Fdefine_key, Fcurrent_active_maps, accessible_keymaps_1)
12086 (Fkey_description, Fdescribe_vector, Flookup_key):
12087 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12088 (click_position): New function, to check that positions are in range.
12089 (Fcurrent_active_maps):
12090 (describe_command):
12091 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12092 (Faccessible_keymaps, Fkey_description):
12093 (preferred_sequence_p):
12094 Don't assume fixnum can fit into int.
12095 (Fkey_description): Use SAFE_ALLOCA_LISP, not alloca.
12096 Check for integer overflow in size calculations.
12097 (Ftext_char_description): Use CHECK_CHARACTER, not CHECK_NUMBER, to
12098 avoid mishandling large integers.
12099 * lisp.h: Adjust decls to match defn changes elsewhere.
12100 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, struct Lisp_String)
12101 (struct vectorlike_header, struct Lisp_Subr, struct Lisp_Hash_Table)
12102 (struct Lisp_Marker):
12103 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12104 (clip_to_bounds): Now an inline function, moved here from editfns.c.
12105 (GLYPH_CODE_P): Check for overflow in system types, subsuming the
12106 need for GLYPH_CODE_CHAR_VALID_P and doing proper checking ourselves.
12107 All callers changed.
12108 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE):
12109 Assume the arg has valid form, since it always does.
12110 (TYPE_RANGED_INTEGERP): Avoid bug when checking against a wide
12111 unsigned integer system type.
12112 (CHECK_RANGED_INTEGER, CHECK_TYPE_RANGED_INTEGER): New macros.
12113 (struct catchtag, specpdl_size, SPECPDL_INDEX, USE_SAFE_ALLOCA):
12114 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12115 (struct catchtag): Use EMACS_INT, not int, since it may be a fixnum.
12116 (duration_to_sec_usec): New decl.
12117 * lread.c (read_from_string_index, read_from_string_index_byte)
12118 (read_from_string_limit, readchar, unreadchar, openp)
12119 (read_internal_start, read1, oblookup):
12120 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12121 (Fload, readevalloop, Feval_buffer, Feval_region):
12122 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12123 (openp): Check for out-of-range argument to 'access'.
12124 (read1): Use int, not EMACS_INT, where int is wide enough.
12125 Don't assume fixnum fits into int.
12126 Fix off-by-one error that can read outside a buffer.
12127 (read_filtered_event): Use duration_to_sec_usec
12128 to do proper overflow checking on durations.
12129 * macros.c (Fstart_kbd_macro): Use xpalloc to check for overflow
12130 in size calculation.
12131 (Fexecute_kbd_macro):
12132 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12133 * marker.c (cached_charpos, cached_bytepos, CONSIDER)
12134 (byte_char_debug_check, buf_charpos_to_bytepos, verify_bytepos)
12135 (buf_bytepos_to_charpos, Fset_marker, set_marker_restricted)
12136 (set_marker_both, set_marker_restricted_both, marker_position)
12137 (marker_byte_position, Fbuffer_has_markers_at):
12138 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12139 (Fset_marker, set_marker_restricted): Don't assume fixnum fits in int.
12140 * menu.c (ensure_menu_items): Rename from grow_menu_items.
12141 It now merely ensures that the menu is large enough, without
12142 necessarily growing it, as this avoids some integer overflow issues.
12143 All callers changed.
12144 (keymap_panes, parse_single_submenu, Fx_popup_menu):
12145 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12146 (parse_single_submenu, Fx_popup_menu): Don't assume fixnum fits in int.
12147 Use SAFE_ALLOCA_LISP, not alloca.
12148 (find_and_return_menu_selection): Avoid unnecessary casts of pointers
12149 to EMACS_INT. Check that fixnums are in proper range for system types.
12150 * minibuf.c (minibuf_prompt_width, string_to_object)
12151 (Fminibuffer_contents, Fminibuffer_contents_no_properties)
12152 (Fminibuffer_completion_contents, Ftry_completion, Fall_completions):
12153 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12154 (get_minibuffer, read_minibuf_unwind):
12155 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12156 (read_minibuf): Omit unnecessary arg BACKUP_N, which is always nil;
12157 this simplifies overflow checking. All callers changed.
12158 (read_minibuf, Fread_buffer, Ftry_completion, Fall_completions)
12159 (Ftest_completion):
12160 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12161 * nsfns.m (check_ns_display_info): Don't assume fixnum fits in long.
12162 (x_set_menu_bar_lines, x_set_tool_bar_lines, Fx_create_frame):
12163 Check that fixnums are in proper range for system types.
12164 (Fx_create_frame, Fx_show_tip):
12165 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12166 * nsfont.m (ns_findfonts, nsfont_list_family):
12167 Don't assume fixnum fits in long.
12168 * nsmenu.m (ns_update_menubar, ns_menu_show, ns_popup_dialog):
12169 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12170 (ns_update_menubar): Use intptr_t, not EMACS_INT, when intptr_t is
12171 wide enough.
12172 * nsselect.m (ns_get_local_selection, clean_local_selection_data):
12173 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12174 * print.c (print_buffer_size, print_buffer_pos, print_buffer_pos_byte)
12175 (PRINTDECLARE, PRINTPREPARE):
12176 (strout, print_string):
12177 (print, print_preprocess, print_check_string_charset_prop)
12178 (print_object):
12179 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12180 (PRINTDECLARE):
12181 (temp_output_buffer_setup, Fprin1_to_string, print_object):
12182 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12183 (PRINTPREPARE): Use int, not ptrdiff_t, where int is wide enough.
12184 (printchar, strout): Use xpalloc to catch size calculation overflow.
12185 (Fexternal_debugging_output): Don't overflow EMACS_INT->int conversion.
12186 (print_error_message): Use SAFE_ALLOCA, not alloca.
12187 (print_object): Use int, not EMACS_INT, where int is wide enough.
12188 (print_depth, new_backquote_output, print_number_index):
12189 Use ptrdiff_t, not int, where int might not be wide enough.
12190 * process.c (Fdelete_process): Don't assume pid fits into EMACS_INT.
12191 (Fset_process_window_size, Fformat_network_address)
12192 (get_lisp_to_sockaddr_size, set_socket_option, Fmake_network_process)
12193 (sigchld_handler):
12194 Check that fixnums are in proper range for system types.
12195 (Fsignal_process): Simplify by avoiding a goto.
12196 Check for process-ids out of pid_t range rather than relying on
12197 undefined behavior.
12198 (process_tick, update_tick): Use EMACS_INT, not int.
12199 (Fformat_network_address, read_process_output, send_process)
12200 (Fprocess_send_region, status_notify):
12201 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12202 (Fformat_network_address, Fmake_serial_process, Fmake_network_process)
12203 (wait_reading_process_output, read_process_output, exec_sentinel):
12204 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12205 (conv_lisp_to_sockaddr): Don't assume fixnums fit into int.
12206 (Faccept_process_output): Use duration_to_sec_usec to do proper
12207 overflow checking on durations.
12208 (emacs_get_tty_pgrp, Fprocess_running_child_p, process_send_signal):
12209 Don't assume pid_t fits in int.
12210 * process.h (struct Lisp_Process): Members tick and update_tick
12211 are now of type EMACS_INT, not int.
12212 * puresize.h (PURESIZE_RATIO): Shrink this to 8/6 on 32-bit hosts
12213 configured --with-wide-int.
12214 * scroll.c (calculate_scrolling, calculate_direct_scrolling)
12215 (line_ins_del): Use int, not EMACS_INT, where int is wide enough.
12216 * search.c (looking_at_1, string_match_1):
12217 (fast_string_match, fast_c_string_match_ignore_case)
12218 (fast_string_match_ignore_case, fast_looking_at, scan_buffer)
12219 (scan_newline, find_before_next_newline, search_command)
12220 (trivial_regexp_p, search_buffer, simple_search, boyer_moore)
12221 (set_search_regs, wordify):
12222 (Freplace_match):
12223 (Fmatch_data):
12224 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12225 (string_match_1, search_buffer, set_search_regs):
12226 (Fmatch_data):
12227 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12228 (wordify): Check for overflow in size calculation.
12229 (Freplace_match): Avoid potential buffer overflow in search_regs.start.
12230 (Fset_match_data): Don't assume fixnum fits in ptrdiff_t.
12231 Check that fixnums are in proper range for system types.
12232 * sound.c (struct sound_device)
12233 (wav_play, au_play, vox_write, alsa_period_size, alsa_write):
12234 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12235 (Fplay_sound_internal):
12236 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12237 * syntax.c (struct lisp_parse_state, find_start_modiff)
12238 (Finternal_describe_syntax_value, scan_lists, scan_sexps_forward):
12239 (Fparse_partial_sexp):
12240 Don't assume fixnums can fit in int.
12241 (struct lisp_parse_state, find_start_pos, find_start_value)
12242 (find_start_value_byte, find_start_begv)
12243 (update_syntax_table, char_quoted, dec_bytepos)
12244 (find_defun_start, prev_char_comend_first, back_comment):
12245 (scan_words, skip_chars, skip_syntaxes, forw_comment, Fforward_comment)
12246 (scan_lists, Fbackward_prefix_chars, scan_sexps_forward):
12247 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12248 (Finternal_describe_syntax_value): Check that match_lisp is a
12249 character, not an integer, since the code stuffs it into int.
12250 (scan_words, scan_sexps_forward):
12251 Check that fixnums are in proper range for system types.
12252 (Fforward_word):
12253 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12254 (scan_sexps_forward):
12255 Use CHARACTERP, not INTEGERP, since the value must fit into int.
12256 (Fparse_partial_sexp): Fix doc; element 8 is not ignored.
12257 * syntax.h: Adjust decls to match defn changes elsewhere.
12258 (struct gl_state_s):
12259 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12260 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Use PTRDIFF_MAX, not
12261 MOST_POSITIVE_FIXNUM.
12262 * sysdep.c (wait_for_termination_1, wait_for_termination)
12263 (interruptible_wait_for_termination, mkdir):
12264 Don't assume pid_t fits in int; on 64-bit AIX pid_t is 64-bit.
12265 (emacs_read, emacs_write):
12266 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12267 (system_process_attributes): Don't assume uid_t, gid_t, EMACS_INT,
12268 and double all fit in int.
12269 * term.c (set_tty_color_mode):
12270 Check that fixnums are in proper range for system types.
12271 * termhooks.h (struct input_event):
12272 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12273 * textprop.c (validate_interval_range, interval_of)
12274 (Fadd_text_properties, set_text_properties_1)
12275 (Fremove_text_properties, Fremove_list_of_text_properties)
12276 (Ftext_property_any, Ftext_property_not_all)
12277 (copy_text_properties, text_property_list, extend_property_ranges)
12278 (verify_interval_modification):
12279 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12280 (Fnext_single_char_property_change)
12281 (Fprevious_single_char_property_change):
12282 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12283 (copy_text_properties):
12284 Check for integer overflow in index calculation.
12285 * undo.c (last_boundary_position, record_point, record_insert)
12286 (record_delete, record_marker_adjustment, record_change)
12287 (record_property_change):
12288 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12289 (truncate_undo_list, Fprimitive_undo): Don't assume fixnum fits in int.
12290 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12291 * w32fns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
12292 (Fx_hide_tip, Fx_file_dialog):
12293 * w32menu.c (set_frame_menubar):
12294 Use ptrdiff_t, not int, for consistency with rest of code.
12295 * window.c (window_scroll_preserve_hpos, window_scroll_preserve_vpos)
12296 (select_window, Fdelete_other_windows_internal)
12297 (window_scroll_pixel_based, window_scroll_line_based)
12298 (Frecenter, Fset_window_configuration):
12299 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12300 (Fset_window_hscroll, run_window_configuration_change_hook)
12301 (set_window_buffer, temp_output_buffer_show, scroll_command)
12302 (Fscroll_other_window, Frecenter):
12303 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12304 (Fwindow_line_height, window_scroll, Fscroll_left, Fscroll_right):
12305 Don't assume fixnum fits in int.
12306 (Fset_window_scroll_bars):
12307 Check that fixnums are in proper range for system types.
12308 * xdisp.c (help_echo_pos, pos_visible_p, string_pos_nchars_ahead)
12309 (string_pos, c_string_pos, number_of_chars, init_iterator)
12310 (in_ellipses_for_invisible_text_p, init_from_display_pos)
12311 (compute_stop_pos, next_overlay_change, compute_display_string_pos)
12312 (compute_display_string_end, handle_face_prop)
12313 (face_before_or_after_it_pos, handle_invisible_prop)
12314 (handle_display_prop, handle_display_spec, handle_single_display_spec)
12315 (display_prop_intangible_p, string_buffer_position_lim)
12316 (string_buffer_position, handle_composition_prop, load_overlay_strings)
12317 (get_overlay_strings_1, get_overlay_strings)
12318 (iterate_out_of_display_property, forward_to_next_line_start)
12319 (back_to_previous_visible_line_start, reseat, reseat_to_string)
12320 (get_next_display_element, set_iterator_to_next)
12321 (get_visually_first_element, compute_stop_pos_backwards)
12322 (handle_stop_backwards, next_element_from_buffer)
12323 (move_it_in_display_line_to, move_it_in_display_line)
12324 (move_it_to, move_it_vertically_backward, move_it_by_lines)
12325 (add_to_log, message_dolog, message_log_check_duplicate)
12326 (message2, message2_nolog, message3, message3_nolog
12327 (with_echo_area_buffer, display_echo_area_1, resize_mini_window_1)
12328 (current_message_1, truncate_echo_area, truncate_message_1)
12329 (set_message, set_message_1, store_mode_line_noprop)
12330 (hscroll_window_tree, debug_delta, debug_delta_bytes, debug_end_vpos)
12331 (text_outside_line_unchanged_p, check_point_in_composition)
12332 (reconsider_clip_changes)
12333 (redisplay_internal, set_cursor_from_row, try_scrolling)
12334 (try_cursor_movement, set_vertical_scroll_bar, redisplay_window)
12335 (redisplay_window, find_last_unchanged_at_beg_row)
12336 (find_first_unchanged_at_end_row, row_containing_pos, try_window_id)
12337 (trailing_whitespace_p, find_row_edges, display_line)
12338 (RECORD_MAX_MIN_POS, Fcurrent_bidi_paragraph_direction)
12339 (display_mode_element, store_mode_line_string)
12340 (pint2str, pint2hrstr, decode_mode_spec)
12341 (display_count_lines, display_string, draw_glyphs)
12342 (x_produce_glyphs, x_insert_glyphs)
12343 (rows_from_pos_range, mouse_face_from_buffer_pos)
12344 (fast_find_string_pos, mouse_face_from_string_pos)
12345 (note_mode_line_or_margin_highlight, note_mouse_highlight):
12346 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12347 (safe_call, init_from_display_pos, handle_fontified_prop)
12348 (handle_single_display_spec, load_overlay_strings)
12349 (with_echo_area_buffer, setup_echo_area_for_printing)
12350 (display_echo_area, echo_area_display)
12351 (x_consider_frame_title, prepare_menu_bars, update_menu_bar)
12352 (update_tool_bar, hscroll_window_tree, redisplay_internal)
12353 (redisplay_window, dump_glyph_row, display_mode_line)
12354 (Fformat_mode_line, decode_mode_spec, on_hot_spot_p):
12355 (handle_display_spec, display_prop_string_p):
12356 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12357 (handle_single_display_spec, build_desired_tool_bar_string)
12358 (redisplay_tool_bar, scroll_window_tree, Fdump_glyph_matrix)
12359 (get_specified_cursor_type):
12360 Check that fixnums are in proper range for system types.
12361 (struct overlay_entry, resize_mini_window, Fdump_glyph_row)
12362 (Flookup_image_map):
12363 Don't assume fixnums fit in int.
12364 (compare_overlay_entries):
12365 Avoid mishandling comparisons due to subtraction overflow.
12366 (load_overlay_strings): Use SAFE_NALLOCA, not alloca.
12367 (last_escape_glyph_face_id, last_glyphless_glyph_face_id):
12368 (handle_tool_bar_click):
12369 Use int, not unsigned, since we prefer signed and the signedness
12370 doesn't matter here.
12371 (get_next_display_element, next_element_from_display_vector):
12372 Use int, not EMACS_INT, when int is wide enough.
12373 (start_hourglass): Use duration_to_sec_usec to do proper
12374 overflow checking on durations.
12375 * xfaces.c (Fbitmap_spec_p):
12376 Check that fixnums are in proper range for system types.
12377 (compare_fonts_by_sort_order):
12378 Avoid mishandling comparisons due to subtraction overflow.
12379 (Fx_family_fonts, realize_basic_faces):
12380 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12381 (Fx_family_fonts):
12382 Don't assume fixnum fits in int.
12383 Use SAFE_ALLOCA_LISP, not alloca.
12384 (merge_face_heights): Remove unnecessary cast to EMACS_INT.
12385 (Finternal_make_lisp_face): Don't allocate more than MAX_FACE_ID.
12386 (face_at_buffer_position, face_for_overlay_string)
12387 (face_at_string_position):
12388 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12389 (merge_faces): Use int, not EMACS_INT, where int is wide enough.
12390 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines, x_icon_verify)
12391 (Fx_show_tip):
12392 Check that fixnums are in proper range for system types.
12393 (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
12394 (Fx_hide_tip, Fx_file_dialog, Fx_select_font):
12395 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12396 (Fx_change_window_property): Don't assume fixnums fit in int.
12397 * xfont.c (xfont_chars_supported):
12398 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12399 * xmenu.c (Fx_popup_dialog, set_frame_menubar)
12400 (create_and_show_popup_menu, create_and_show_dialog, xmenu_show):
12401 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12402 * xml.c (parse_region):
12403 * xrdb.c (magic_file_p):
12404 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12405 * xselect.c (TRACE1): Don't assume pid_t promotes to int.
12406 (x_get_local_selection, x_reply_selection_request)
12407 (x_handle_selection_request, wait_for_property_change):
12408 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12409 (selection_data_to_lisp_data): Use short, not EMACS_INT, where
12410 short is wide enough.
12411 (x_send_client_event): Don't assume fixnum fits in int.
12412 * xterm.c (x_x_to_emacs_modifiers):
12413 Don't assume EMACS_INT overflows nicely into int.
12414 (x_emacs_to_x_modifiers): Use EMACS_INT, not int, because values
12415 may come from Lisp.
12416 (handle_one_xevent): NATNUMP can eval its arg twice.
12417 (x_connection_closed):
12418 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12419 * xterm.h: Adjust decls to match defn changes elsewhere.
12420 (struct scroll_bar): Use struct vectorlike_header
12421 rather than rolling our own approximation.
12422 (SCROLL_BAR_VEC_SIZE): Remove; not used.
12423
12424 2012-05-25 Glenn Morris <rgm@gnu.org>
12425
12426 * lisp.mk (lisp): Update for more files being compiled now.
12427
12428 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
12429
12430 * lread.c: Remove `read_pure' which makes no difference.
12431 (read_pure): Remove var.
12432 (unreadpure): Remove function.
12433 (readevalloop): Don't call read_list with -1 flag.
12434 (read1, read_vector): Don't test read_pure any more.
12435 (read_list): Simplify.
12436
12437 * fileio.c, character.h: Minor style tweaks.
12438
12439 2012-05-24 Dmitry Antipov <dmantipov@yandex.ru>
12440
12441 * window.h (clip_changed): Remove useless declaration.
12442
12443 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
12444
12445 * makefile.w32-in: Follow-up to 2012-05-22T16:20:27Z!eggert@cs.ucla.edu.
12446 (TAGS, TAGS-gmake, CONFIG_H): Remove further references to m/intel386.h.
12447
12448 2012-05-22 Paul Eggert <eggert@cs.ucla.edu>
12449
12450 Remove src/m/*.
12451 This directory predates autoconf and is no longer needed nowadays.
12452 Move its few remaining bits of functionality to where they're needed.
12453 * m/README, m/alpha.h, m/amdx86-64.h, m/ia64.h, m/ibmrs6000.h:
12454 * m/ibms390x.h, m/intel386.h, m/m68k.h, m/macppc.h, m/sparc.h:
12455 * m/template.h: Remove.
12456 * Makefile.in (M_FILE): Remove. All uses removed.
12457 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS):
12458 * lisp.h (USE_LSB_TAG):
12459 * mem-limits.h (EXCEEDS_LISP_PTR):
12460 Use VAL_MAX, not VALBITS, in #if.
12461 * lisp.h (EMACS_INT_MAX): New macro, useful in #if.
12462 (EMACS_UINT): Define unconditionally now.
12463 (BITS_PER_CHAR, BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG)
12464 (BITS_PER_EMACS_INT): New constants, replacing
12465 what used to be in config.h, but not useful in #if.
12466 (GCTYPEBITS, VALBITS): Define unconditionally, since m/* files don't
12467 define them any more.
12468 (VAL_MAX): New macro.
12469 (VALMASK): Use it.
12470 * puresize.h (PURESIZE_RATIO): Use EMACS_INT_MAX, not
12471 BITS_PER_EMACS_INT, in #if.
12472 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
12473 (BROKEN_SIGPOLL): Move here from m/ibmrs6000.h, which was removed.
12474 * s/gnu-linux.h (ULIMIT_BREAK_VALUE) [__i386__]:
12475 * s/ms-w32.h (DATA_START):
12476 Move here from removed file m/intel386.h.
12477 * s/gnu.h (NLIST_STRUCT): Remove undef; 'configure' does this.
12478 * s/irix6-5.h (_LP64): Remove; lisp.h no longer needs this.
12479
12480 2012-05-21 Paul Eggert <eggert@cs.ucla.edu>
12481
12482 Assume C89 or later.
12483 * alloc.c, buffer.c, lisp.h: Replace POINTER_TYPE with void.
12484 * alloc.c (overrun_check_malloc, overrun_check_realloc, xmalloc)
12485 (xrealloc):
12486 * buffer.c (mmap_free_1, mmap_enlarge): Omit needless casts.
12487 * editfns.c, fns.c, gmalloc.c, insdel.c, sysdep.c, termcap.c (NULL):
12488 * textprop.c, tparam.c (NULL): Remove.
12489 * ralloc.c, vm-limit.c (POINTER): Assume void * works.
12490 * regex.c (SIGN_EXTEND_CHAR): Assume signed char works.
12491 * regex.h (_RE_ARGS): Remove. All uses rewritten to use prototypes.
12492 * unexelf.c (ElfBitsW): Assume c89 preprocessor or better.
12493 * xterm.c (input_signal_count): Assume volatile works.
12494
12495 2012-05-21 Ken Brown <kbrown@cornell.edu>
12496
12497 * xgselect.c (xg_select): Fix first argument in call to 'select'
12498 (bug#11508).
12499
12500 2012-05-20 Ken Brown <kbrown@cornell.edu>
12501
12502 * gmalloc.c (_free_internal_nolock, _realloc_internal_nolock)
12503 [CYGWIN]: Cast ptr to (char *) before comparing to _heapbase.
12504
12505 2012-05-19 Ken Brown <kbrown@cornell.edu>
12506
12507 * xfns.c (x_in_use): Remove `static' qualifier.
12508 * xterm.h (x_in_use): Declare.
12509 * xgselect.c: Include xterm.h.
12510 (xg_select): Test `x_in_use' instead of `inhibit_window_system'
12511 and `display_arg' (bug#9754).
12512
12513 2012-05-19 Paul Eggert <eggert@cs.ucla.edu>
12514
12515 * s/ms-w32.h (HAVE_GETDOMAINNAME): Remove; not needed.
12516
12517 * m/vax.h: Remove; no longer needed since HAVE_FTIME is being removed.
12518 * s/ms-w32.h (HAVE_FTIME): Remove; not needed.
12519
12520 2012-05-18 Eli Zaretskii <eliz@gnu.org>
12521
12522 Fix compilation with -DGLYPH_DEBUG=1 on MS-Windows.
12523
12524 * w32term.c [GLYPH_DEBUG]: Add prototype for x_check_font.
12525 (x_check_font) [GLYPH_DEBUG]: New function, copied from xterm.c.
12526
12527 * w32fns.c (unwind_create_frame) [GLYPH_DEBUG]: Fix broken
12528 reference to image_cache->refcount.
12529 (x_create_tip_frame): Fix broken use of FRAME_IMAGE_CACHE.
12530
12531 2012-05-17 Juri Linkov <juri@jurta.org>
12532
12533 * search.c (Fword_search_regexp, Fword_search_backward)
12534 (Fword_search_forward, Fword_search_backward_lax)
12535 (Fword_search_forward_lax): Move functions to isearch.el
12536 (bug#10145, bug#11381).
12537
12538 2012-05-16 Paul Eggert <eggert@cs.ucla.edu>
12539
12540 * xgselect.c (xg_select): Just invoke 'select' if -nw (Bug#9754).
12541
12542 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
12543
12544 * lread.c (init_obarray): Declare Qt and Qnil as special.
12545
12546 2012-05-14 Glenn Morris <rgm@gnu.org>
12547
12548 * nsterm.m (ns_init_paths): Fix typo ("libexec" not "lib-exec").
12549 Put "libexec" before "bin", for the sake of init_callproc_1.
12550
12551 2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
12552
12553 * keyboard.c (kbd_buffer_get_event) [!HAVE_DBUS]: Omit unused local.
12554
12555 * unexaix.c: Port to more-recent AIX compilers.
12556 (report_error, report_error_1, make_hdr, copy_sym)
12557 (mark_x, adjust_lnnoptrs, unrelocate_symbols):
12558 Make arguments const char *, not char *, to avoid violations of C
12559 standard and to fix some AIX warnings reported by Gilles Pion.
12560
12561 2012-05-14 Eli Zaretskii <eliz@gnu.org>
12562
12563 * xdisp.c (handle_stop): Don't call get_overlay_strings_1 if we
12564 already have overlays loaded.
12565 (handle_single_display_spec): Before returning without displaying
12566 fringe bitmap, synchronize the bidi iterator with the main display
12567 iterator, by calling iterate_out_of_display_property.
12568 (iterate_out_of_display_property): Detect buffer iteration by
12569 testing that it->string is a Lisp string.
12570 (get_next_display_element): When the current object is exhausted,
12571 and there's something on it->stack, call set_iterator_to_next to
12572 proceed with what's on the stack, instead of returning zero.
12573 (set_iterator_to_next): If called at the end of a Lisp string,
12574 proceed to consider_string_end without incrementing string
12575 position. Don't increment display vector index past the end of
12576 the display vector. (Bug#11417)
12577 (pos_visible_p): Don't report a position visible when move_it_to
12578 stopped at the last line of window, which happens to be scanned
12579 backwards by the bidi iteration. (Bug#11464)
12580
12581 2012-05-14 Eli Zaretskii <eliz@gnu.org>
12582
12583 * xdisp.c (handle_single_display_spec): Return 1 for left-margin
12584 and right-margin display specs even if the spec is invalid or we
12585 are on a TTY, and thus unable to display on the fringes.
12586 That's because the text with the property will not be displayed anyway,
12587 so we need to signal to the caller that this is a "replacing"
12588 display spec. This fixes display when the spec is invalid or we
12589 are on a TTY.
12590
12591 2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
12592
12593 * unexaix.c (make_hdr): Fix typo in prototype.
12594 This bug broke the build on AIX. Problem reported by Gilles Pion.
12595
12596 2012-05-14 Michael Albinus <michael.albinus@gmx.de>
12597
12598 * keyboard.c (kbd_buffer_get_event): Read special events also in
12599 batch mode. (Bug#11415)
12600
12601 2012-05-12 Glenn Morris <rgm@gnu.org>
12602
12603 * ns.mk: Update for ns_appbindir no longer having trailing "/".
12604
12605 2012-05-12 Eli Zaretskii <eliz@gnu.org>
12606
12607 * lisp.mk (lisp): Add newcomment.elc.
12608
12609 2012-05-12 Glenn Morris <rgm@gnu.org>
12610
12611 * Makefile.in (MKDIR_P): New, set by configure.
12612 * ns.mk (${ns_appdir}, ${ns_appbindir}Emacs): Use $MKDIR_P.
12613
12614 2012-05-11 Paul Eggert <eggert@cs.ucla.edu>
12615
12616 Remove unused function hourglass_started.
12617 * dispextern.h (hourglass_started):
12618 * w32fns.c (hourglass_started):
12619 * xdisp.c (hourglass_started): Remove.
12620
12621 2012-05-10 Juanma Barranquero <lekktu@gmail.com>
12622
12623 * makefile.w32-in ($(BLD)/gmalloc.$(O), $(BLD)/w32menu.$(O)):
12624 Update dependencies.
12625
12626 2012-05-10 Paul Eggert <eggert@cs.ucla.edu>
12627
12628 * xgselect.c (xg_select): Put maxfds+1 into a var.
12629 This is slightly clearer, and pacifies Ubuntu 12.04 gcc.
12630
12631 * sound.c (DEFAULT_ALSA_SOUND_DEVICE): Define only if HAVE_ALSA.
12632
12633 2012-05-10 Dave Abrahams <dave@boostpro.com>
12634
12635 * filelock.c (syms_of_filelock): New boolean create-lockfiles.
12636 (lock_file): If create_lockfiles is 0, do nothing. (Bug#11227)
12637
12638 2012-05-09 Michael Albinus <michael.albinus@gmx.de>
12639
12640 * dbusbind.c (xd_registered_buses): New internal Lisp object.
12641 Rename all occurrences of Vdbus_registered_buses to xd_registered_buses.
12642 (syms_of_dbusbind): Remove declaration of Vdbus_registered_buses.
12643 Initialize xd_registered_buses.
12644
12645 2012-05-09 Paul Eggert <eggert@cs.ucla.edu>
12646
12647 Untag more efficiently if USE_LSB_TAG.
12648 This is based on a proposal by YAMAMOTO Mitsuharu in
12649 <http://lists.gnu.org/archive/html/emacs-devel/2008-01/msg01876.html>.
12650 For an admittedly artificial (nth 8000 longlist) benchmark on
12651 Fedora 15 x86-64, this yields a 25% CPU speedup. Also, it shrinks
12652 Emacs's overall text size by 1%.
12653 * lisp.h (XUNTAG): New macro.
12654 (XCONS, XVECTOR, XSTRING, XSYMBOL, XFLOAT, XMISC, XPROCESS, XWINDOW)
12655 (XTERMINAL, XSUBR, XBUFFER, XCHAR_TABLE, XSUB_CHAR_TABLE, XBOOL_VECTOR)
12656 (XSETTYPED_PSEUDOVECTOR, XHASH_TABLE, TYPED_PSEUDOVECTORP): Use it.
12657 * eval.c (Fautoload):
12658 * font.h (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT):
12659 * frame.h (XFRAME): Use XUNTAG.
12660
12661 Port recent dbusbind.c changes to 32-bit --with-wide-int.
12662 * dbusbind.c (xd_append_arg, xd_retrieve_arg, Fdbus_message_internal):
12663 Remove unportable assumptions about print widths of types like
12664 dbus_uint32_t.
12665 (xd_get_connection_address, Fdbus_init_bus): Cast Emacs integer to
12666 intptr_t when converting between pointer and integer, to avoid GCC
12667 warnings about wrong width.
12668
12669 2012-05-09 Eli Zaretskii <eliz@gnu.org>
12670
12671 * w32proc.c (new_child): Force Windows to reserve only 64KB of
12672 stack for each reader_thread, instead of defaulting to 8MB
12673 determined by the linker. This avoids failures in creating
12674 subprocesses on Windows 7, see the discussion in this thread:
12675 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00119.html.
12676
12677 2012-05-07 Jérémy Compostella <jeremy.compostella@gmail.com>
12678
12679 Fix up display of the *Minibuf-0* buffer in the mini window.
12680 * keyboard.c (read_char): Don't clear the echo area if there's no
12681 message to clear.
12682 * xdisp.c (redisplay_internal): Redisplay the mini window (with the
12683 contents of *Minibuf-0*) if there's no message displayed in its stead.
12684
12685 2012-05-07 Michael Albinus <michael.albinus@gmx.de>
12686
12687 * dbusbind.c (XD_DEBUG_MESSAGE): Don't print message twice in
12688 batch mode.
12689
12690 2012-05-06 Chong Yidong <cyd@gnu.org>
12691
12692 * lisp.mk (lisp): Update.
12693
12694 2012-05-05 Jim Meyering <meyering@redhat.com>
12695
12696 * w32font.c (fill_in_logfont): NUL-terminate a string (Bug#11372).
12697
12698 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
12699
12700 * data.c (PUT_ERROR): New macro.
12701 (syms_of_data): Use it. Add new error type `user-error'.
12702 * undo.c (user_error): New function.
12703 (Fprimitive_undo): Use it.
12704 * print.c (print_error_message): Adjust print style for `user-error'.
12705 * keyboard.c (user_error): New function.
12706 (Fexit_recursive_edit, Fabort_recursive_edit): Use it.
12707
12708 2012-05-03 Paul Eggert <eggert@cs.ucla.edu>
12709
12710 Do not limit current-time-string to years 1000..9999.
12711 * editfns.c (TM_YEAR_IN_ASCTIME_RANGE): Remove.
12712 (Fcurrent_time_string): Support any year that is supported by the
12713 underlying localtime representation. Don't use asctime, as it
12714 has undefined behavior for years outside the range -999..9999.
12715
12716 2012-05-02 Paul Eggert <eggert@cs.ucla.edu>
12717
12718 Fix race conditions involving setenv, gmtime, localtime, asctime.
12719 Without this fix, interrupts could mess up code that uses these
12720 nonreentrant functions, since setting TZ invalidates existing
12721 tm_zone or tzname values, and since most of these functions return
12722 pointers to static storage.
12723 * editfns.c (format_time_string, Fdecode_time, Fencode_time)
12724 (Fcurrent_time_string, Fcurrent_time_zone, Fset_time_zone_rule):
12725 Grow the critical sections to include not just invoking
12726 localtime/gmtime, but also accessing these functions' results
12727 including their tm_zone values if any, and any related TZ setting.
12728 (format_time_string): Last arg is now struct tm *, not struct tm **,
12729 so that the struct tm is saved in the critical section.
12730 All callers changed. Simplify allocation of initial buffer, partly
12731 motivated by the fact that memory allocation needs to be outside
12732 the critical section.
12733
12734 2012-05-02 Dmitry Antipov <dmantipov@yandex.ru>
12735
12736 * intervals.c (adjust_intervals_for_insertion): Initialize `newi'
12737 with RESET_INTERVAL.
12738
12739 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
12740 Remove duplicated buffer name initialization.
12741
12742 2012-05-02 Jim Meyering <jim@meyering.net>
12743
12744 * xterm.c (x_term_init): Use memcpy instead of strncpy (Bug#11373).
12745
12746 * xfns.c (x_window): Use xstrdup (Bug#11375).
12747
12748 2012-05-02 Eli Zaretskii <eliz@gnu.org>
12749
12750 * xdisp.c (pos_visible_p): If already at a newline from the
12751 display string before the 'while' loop, don't walk back the glyphs
12752 from it3.glyph_row. Solves assertion violation when the display
12753 string begins with a newline (egg.el). (Bug#11367)
12754
12755 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
12756
12757 * keyboard.c (Fexecute_extended_command, Vsuggest_key_bindings):
12758 Move to simple.el.
12759
12760 2012-05-01 Glenn Morris <rgm@gnu.org>
12761
12762 * syssignal.h: Remove reference to BROKEN_SIGINFO (last used in
12763 s/ptx4.h), BROKEN_SIGTSTP (last used in m/ustation.h, m/dpx2.h),
12764 and BROKEN_SIGURG (was in s/gnu-linux.h prior to 2008-02-10).
12765 All were removed before 23.1.
12766
12767 * dispnew.c: Remove HAVE_LIBNCURSES test;
12768 it is always true on relevant platforms.
12769
12770 * Makefile.in (LD_SWITCH_X_SITE_RPATH):
12771 Rename from LD_SWITCH_X_SITE_AUX_RPATH.
12772
12773 * Makefile.in (LD_SWITCH_X_SITE_AUX): Remove; no longer used.
12774
12775 2012-04-30 Andreas Schwab <schwab@linux-m68k.org>
12776
12777 * .gdbinit (xpr): Remove checks for no longer existing misc types.
12778 (xintfwd, xboolfwd, xobjfwd, xbufobjfwd, xkbobjfwd, xbuflocal):
12779 Remove.
12780
12781 2012-04-28 Paul Eggert <eggert@cs.ucla.edu>
12782
12783 Do not avoid creating empty evaporating overlays (Bug#9642).
12784 * buffer.c (Fmove_overlay): Revert the change of 2012-04-23.
12785 That is, do not delete an evaporating overlay if it becomes
12786 empty after its bounds are adjusted to fit within its buffer.
12787 This fix caused other problems, and I'm reverting it until we get
12788 to the bottom of them.
12789
12790 2012-04-27 Chong Yidong <cyd@gnu.org>
12791
12792 * xselect.c (x_convert_selection): Initialize a pointer (Bug#11315).
12793
12794 2012-04-27 Eli Zaretskii <eliz@gnu.org>
12795
12796 * xdisp.c (pos_visible_p): If the window start position is beyond
12797 ZV, start the display from buffer beginning. Prevents assertion
12798 violation in init_iterator when the minibuffer window is scrolled
12799 via the scroll bar.
12800
12801 * window.c (window_scroll_pixel_based): Likewise.
12802
12803 2012-04-27 Chong Yidong <cyd@gnu.org>
12804
12805 * keymap.c (where_is_internal): Doc fix (Bug#10872).
12806
12807 2012-04-27 Glenn Morris <rgm@gnu.org>
12808
12809 * fileio.c (Fcopy_file, Fset_file_selinux_context):
12810 Ignore ENOTSUP failures from setfilecon functions. (Bug#11245)
12811
12812 2012-04-27 Eli Zaretskii <eliz@gnu.org>
12813
12814 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers):
12815 Don't overrun array limits of glyph row's used[] array. (Bug#11288)
12816
12817 2012-04-26 Eli Zaretskii <eliz@gnu.org>
12818
12819 * xdisp.c (IT_DISPLAYING_WHITESPACE): In addition to the loaded
12820 display element, check also the underlying string or buffer
12821 character. (Bug#11341)
12822
12823 * w32menu.c: Include w32heap.h.
12824 (add_menu_item): If the call to AppendMenuW (via
12825 unicode_append_menu) fails, disable Unicode menus only if we are
12826 running on Windows 9X/Me.
12827
12828 2012-04-24 Andreas Schwab <schwab@linux-m68k.org>
12829
12830 * .gdbinit (xpr): Handle USE_2_TAGS_FOR_INTS.
12831 (xgetint): Add missing shift for LSB tags.
12832
12833 2012-04-24 Martin Rudalics <rudalics@gmx.at>
12834
12835 * keyboard.c (read_char): Don't wipe echo area for select window
12836 events: These might get delayed via `mouse-autoselect-window'
12837 (Bug#11304).
12838
12839 2012-04-24 Juanma Barranquero <lekktu@gmail.com>
12840
12841 * gnutls.c (init_gnutls_functions): Protect against (unlikely)
12842 manipulation of :loaded-from data.
12843
12844 2012-04-23 Juanma Barranquero <lekktu@gmail.com>
12845
12846 * gnutls.c (init_gnutls_functions): The value of :loaded-from is
12847 now a cons (bug#11311).
12848
12849 2012-04-23 Paul Eggert <eggert@cs.ucla.edu>
12850
12851 Do not create empty overlays with the evaporate property (Bug#9642).
12852 * buffer.c (Fmove_overlay): Delete an evaporating overlay
12853 if it becomes empty after its bounds are adjusted to fit within
12854 its buffer. Without this fix, in a nonempty buffer (let ((o
12855 (make-overlay 1 2))) (overlay-put o 'evaporate t) (move-overlay o 0 1))
12856 yields an empty overlay that has the evaporate property, which is
12857 not supposed to happen.
12858
12859 Fix minor GTK3 problems found by static checking.
12860 * emacsgtkfixed.c (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
12861 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
12862 (struct _EmacsFixedClass, emacs_fixed_get_type):
12863 Move decls here from emacsgtkfixed.h, since they needn't be public.
12864 (emacs_fixed_get_type): Now static.
12865 (emacs_fixed_class_init): Omit unused local.
12866 (emacs_fixed_child_type): Remove; unused.
12867 * emacsgtkfixed.h (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
12868 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
12869 (struct _EmacsFixedClass): Move to emacsgtkfixed.c.
12870 (EMACS_FIXED_CLASS, EMACS_IS_FIXED, EMACS_IS_FIXED_CLASS)
12871 (EMACS_FIXED_GET_CLASS): Remove; unused.
12872 * gtkutil.c (xg_create_frame_widgets) [!HAVE_GTK3]: Omit unused local.
12873
12874 * keyboard.c (handle_async_input): Define only if SYNC_INPUT || SIGIO.
12875 Problem reported by Juanma Barranquero for Windows -Wunused-function.
12876
12877 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
12878
12879 Modernize and clean up gmalloc.c to assume C89 (Bug#9119).
12880 * gmalloc.c (_MALLOC_INTERNAL, _MALLOC_H, _PP, __ptr_t)
12881 (__malloc_size_t, __malloc_ptrdiff_t):
12882 Remove. All uses removed, replaced by the definiens if needed,
12883 since we can assume C89 or better now.
12884 Include <stdint.h>, for PTRDIFF_MAX, uintptr_t.
12885 (protect_malloc_state, align, get_contiguous_space)
12886 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
12887 (malloc_atfork_handler_child, malloc_enable_thread)
12888 (malloc_initialize_1, __malloc_initialize, morecore_nolock)
12889 (_malloc_internal_nolock, _malloc_internal, malloc, _malloc)
12890 (_free, _realloc, _free_internal_nolock, _free_internal, free, cfree)
12891 (special_realloc, _realloc_internal_nolock, _realloc_internal)
12892 (realloc, calloc, __default_morecore, memalign, valloc, checkhdr)
12893 (freehook, mallochook, reallochook, mabort, mcheck, mprobe):
12894 Define using prototypes, not old style.
12895 (align, _malloc_internal_nolock, _free_internal_nolock, memalign):
12896 Don't assume ptrdiff_t and uintptr_t are no wider than unsigned long.
12897 (align): Don't assume that signed integer overflow wraps around.
12898 Omit unused local var.
12899 (malloc_initialize_1, morecore_nolock, _malloc_internal_nolock)
12900 (_free_internal_nolock, memalign, mallochook, reallochook):
12901 Omit no-longer-needed casts.
12902 (valloc): Use getpagesize, not __getpagesize.
12903 (MAGICWORD, MAGICFREE): Now randomish size_t values, not 32-bit.
12904 (struct hdr): The 'magic' member is now size_t, not unsigned long.
12905
12906 * dbusbind.c (XD_DBUS_VALIDATE_OBJECT): Define only if needed.
12907
12908 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
12909
12910 Move functions from C to Lisp. Make non-blocking method calls
12911 the default. Implement further D-Bus standard interfaces.
12912
12913 * dbusbind.c (DBUS_NUM_MESSAGE_TYPES): Declare.
12914 (QCdbus_request_name_allow_replacement)
12915 (QCdbus_request_name_replace_existing)
12916 (QCdbus_request_name_do_not_queue)
12917 (QCdbus_request_name_reply_primary_owner)
12918 (QCdbus_request_name_reply_in_queue)
12919 (QCdbus_request_name_reply_exists)
12920 (QCdbus_request_name_reply_already_owner): Move to dbus.el.
12921 (QCdbus_registered_serial, QCdbus_registered_method)
12922 (QCdbus_registered_signal): New Lisp objects.
12923 (XD_DEBUG_MESSAGE): Use sizeof.
12924 (XD_MESSAGE_TYPE_TO_STRING, XD_OBJECT_TO_STRING)
12925 (XD_DBUS_VALIDATE_BUS_ADDRESS, XD_DBUS_VALIDATE_OBJECT)
12926 (XD_DBUS_VALIDATE_BUS_NAME, XD_DBUS_VALIDATE_PATH)
12927 (XD_DBUS_VALIDATE_INTERFACE, XD_DBUS_VALIDATE_MEMBER): New macros.
12928 (XD_CHECK_DBUS_SERIAL): Rename from CHECK_DBUS_SERIAL_GET_SERIAL.
12929 (xd_signature, xd_append_arg): Allow float for integer types.
12930 (xd_get_connection_references): New function.
12931 (xd_get_connection_address): Rename from xd_initialize.
12932 Return cached address.
12933 (xd_remove_watch): Do not unset $DBUS_SESSION_BUS_ADDRESS.
12934 (xd_close_bus): Rename from Fdbus_close_bus. Not needed on Lisp
12935 level.
12936 (Fdbus_init_bus): New optional arg PRIVATE. Cache address.
12937 Return number of refcounts.
12938 (Fdbus_get_unique_name): Make stronger parameter check.
12939 (Fdbus_message_internal): New defun.
12940 (Fdbus_call_method, Fdbus_call_method_asynchronously)
12941 (Fdbus_method_return_internal, Fdbus_method_error_internal)
12942 (Fdbus_send_signal, Fdbus_register_service)
12943 (Fdbus_register_signal, Fdbus_register_method): Move to dbus.el.
12944 (xd_read_message_1): Obey new structure of Vdbus_registered_objects.
12945 (xd_read_queued_messages): Obey new structure of Vdbus_registered_buses.
12946 (Vdbus_compiled_version, Vdbus_runtime_version)
12947 (Vdbus_message_type_invalid, Vdbus_message_type_method_call)
12948 (Vdbus_message_type_method_return, Vdbus_message_type_error)
12949 (Vdbus_message_type_signal): New defvars.
12950 (Vdbus_registered_buses, Vdbus_registered_objects_table):
12951 Adapt docstring.
12952
12953 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
12954
12955 Fix GC_MALLOC_CHECK debugging output on 64-bit hosts.
12956 * alloc.c (emacs_blocked_malloc) [GC_MALLOC_CHECK]:
12957 Do not assume ptrdiff_t is the same width as 'int'.
12958
12959 * alloc.c: Handle unusual debugging option combinations.
12960 (GC_CHECK_MARKED_OBJECTS): Undef if ! GC_MARK_STACK,
12961 since the two debugging options are incompatible.
12962 (GC_MALLOC_CHECK): Similarly, undef if GC_CHECK_MARKED_OBJECTS
12963 is defined.
12964 (mem_init, mem_insert, mem_insert_fixup):
12965 Define if GC_MARK_STACK || GC_MALLOC_CHECK.
12966 (NEED_MEM_INSERT): Remove; no longer needed.
12967
12968 2012-04-22 Leo Liu <sdl.web@gmail.com>
12969
12970 * sysdep.c (list_system_processes): Support Darwin (Bug#5725).
12971
12972 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
12973
12974 * sysdep.c [__FreeBSD__]: Minor cleanups.
12975 (list_system_processes, system_process_attributes) [__FreeBSD__]:
12976 Use Emacs indenting style more consistently. Avoid some casts.
12977 Use 'double' consistently rather than mixing 'float' and 'double'.
12978
12979 2012-04-21 Eduard Wiebe <usenet@pusto.de>
12980
12981 * sysdep.c (list_system_processes, system_process_attributes):
12982 Add implementation for FreeBSD (Bug#5243).
12983
12984 2012-04-21 Andreas Schwab <schwab@linux-m68k.org>
12985
12986 * lisp.mk (lisp): Update.
12987
12988 2012-04-20 Paul Eggert <eggert@cs.ucla.edu>
12989
12990 * keyboard.c (process_pending_signals): Define only if SYNC_INPUT.
12991 It is never used otherwise.
12992
12993 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
12994
12995 * print.c (print_preprocess): Only check print_depth if print-circle
12996 is nil.
12997 (print_object): Check for cycles even when print-circle is nil and
12998 print-gensym is t, but only check print_depth if print-circle is nil.
12999
13000 2012-04-20 Chong Yidong <cyd@gnu.org>
13001
13002 * process.c (wait_reading_process_output): If EIO occurs on a pty,
13003 set the status to "failed" and ensure that sentinel is run.
13004
13005 2012-04-20 Glenn Morris <rgm@gnu.org>
13006
13007 * process.c (Fset_process_inherit_coding_system_flag)
13008 (Fset_process_query_on_exit_flag): Doc fix (mention return value).
13009 (Fmake_network_process, Fmake_serial_process): Doc fix.
13010
13011 2012-04-20 Eli Zaretskii <eliz@gnu.org>
13012
13013 * xdisp.c (string_buffer_position_lim): Limit starting position to
13014 BEGV.
13015 (set_cursor_from_row): If called for a mode-line or header-line
13016 row, return zero immediately.
13017 (try_cursor_movement): If inside continuation line, don't back up
13018 farther than the first row after the header line, if any.
13019 Don't consider the header-line row as "partially visible", even if
13020 MATRIX_ROW_PARTIALLY_VISIBLE_P returns non-zero. (Bug#11261)
13021
13022 2012-04-20 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
13023
13024 * lread.c (lisp_file_lexically_bound_p): Fix hang at ";-*-\n"
13025 (bug#11238).
13026
13027 2012-04-20 Teodor Zlatanov <tzz@lifelogs.com>
13028 2012-04-18 Paul Eggert <eggert@cs.ucla.edu>
13029
13030 configure: new option --enable-gcc-warnings (Bug#11207)
13031 * Makefile.in (C_WARNINGS_SWITCH): Remove.
13032 (WARN_CFLAGS, WERROR_CFLAGS): New macros.
13033 (ALL_CFLAGS): Use new macros rather than old.
13034 * process.c: Ignore -Wstrict-overflow to work around GCC bug 52904.
13035 * regex.c: Ignore -Wstrict-overflow. If !emacs, also ignore
13036 -Wunused-but-set-variable, -Wunused-function, -Wunused-macros,
13037 -Wunused-result, -Wunused-variable. This should go away once
13038 the Emacs and Gnulib regex code is merged.
13039 (xmalloc, xrealloc): Now static.
13040
13041 2012-04-17 Paul Eggert <eggert@cs.ucla.edu>
13042
13043 * dired.c (Fsystem_groups): Remove unused local.
13044
13045 2012-04-17 Glenn Morris <rgm@gnu.org>
13046
13047 * dired.c (Fsystem_users): Doc fix.
13048
13049 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
13050
13051 * dired.c (Fsystem_users, Fsystem_groups): New functions. (Bug#7900)
13052 (syms_of_dired): Add them.
13053
13054 2012-04-16 Paul Eggert <eggert@cs.ucla.edu>
13055
13056 Fix minor alloc.c problems found by static checking.
13057 * alloc.c (_malloc_internal, _free_internal) [!DOUG_LEA_MALLOC]:
13058 New extern decls, to avoid calling undeclared functions.
13059 (dont_register_blocks): Define if ((!SYSTEM_MALLOC && !SYNC_INPUT)
13060 && GC_MALLOC_CHECK), not if ((GC_MARK_STACK || defined
13061 GC_MALLOC_CHECK) && GC_MALLOC_CHECK), to match when it's used.
13062 (NEED_MEM_INSERT): New macro.
13063 (mem_insert, mem_insert_fixup) [!NEED_MEM_INSERT]: Remove; unused.
13064 Remove one incorrect comment and fix another.
13065
13066 Fix minor ralloc.c problems found by static checking.
13067 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
13068 * ralloc.c (ALIGNED, ROUND_TO_PAGE, HEAP_PTR_SIZE)
13069 (r_alloc_size_in_use, r_alloc_freeze, r_alloc_thaw): Remove; unused.
13070 (r_alloc_sbrk): Now static.
13071
13072 Improve ralloc.c interface checking.
13073 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
13074 * buffer.c (ralloc_reset_variable, r_alloc, r_re_alloc)
13075 (r_alloc_free) [REL_ALLOC]: Move decls from here ...
13076 * lisp.h (r_alloc, r_alloc_free, r_re_alloc, r_alloc_reset_variable)
13077 [REL_ALLOC]: ... to here, to check interface.
13078 * m/ia64.h (r_alloc, r_alloc_free) [REL_ALLOC && !_MALLOC_INTERNAL]:
13079 Remove decls. This fixes an "It stinks!".
13080
13081 * alloc.c (which_symbols): Fix alignment issue / type clash.
13082
13083 2012-04-15 Andreas Schwab <schwab@linux-m68k.org>
13084
13085 * lisp.h (struct Lisp_Symbol): Remove explicit padding.
13086 (struct Lisp_Misc_Any): Likewise.
13087 (struct Lisp_Free): Likewise.
13088 * alloc.c (union aligned_Lisp_Symbol): Define.
13089 (SYMBOL_BLOCK_SIZE, struct symbol_block): Use union
13090 aligned_Lisp_Symbol instead of struct Lisp_Symbol.
13091 (union aligned_Lisp_Misc): Define.
13092 (MARKER_BLOCK_SIZE, struct marker_block): Use union
13093 aligned_Lisp_Misc instead of union Lisp_Misc.
13094 (Fmake_symbol, allocate_misc, gc_sweep): Adjust.
13095
13096 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
13097
13098 Make GC_MAKE_GCPROS_NOOPS the default (Bug#9926).
13099 * lisp.h (GC_MARK_STACK): Default to GC_MAKE_GCPROS_NOOPS.
13100 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/gnu.h, s/irix6-5.h, s/msdos.h:
13101 * s/netbsd.h, s/sol2-6.h:
13102 Remove definition of GC_MARK_STACK, since the default now works.
13103 * s/aix4-2.h, s/hpux10-20.h, s/unixware.h:
13104 Define GC_MARK_STACK to GC_USE_GCPROS_AS_BEFORE, since that's
13105 no longer the default.
13106 * s/gnu-linux.h (GC_MARK_STACK): Adjust to change in default.
13107
13108 2012-04-14 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
13109
13110 * lread.c (lisp_file_lexically_bound_p):
13111 Fix hang at ";-*-\n" (bug#11238).
13112
13113 2012-04-14 Eli Zaretskii <eliz@gnu.org>
13114
13115 * xdisp.c (find_last_unchanged_at_beg_row): Don't consider a row
13116 "unchanged" if its end.pos is beyond ZV. (Bug#11199)
13117
13118 2012-04-14 Jan Djärv <jan.h.d@swipnet.se>
13119
13120 * nsterm.m (constrainFrameRect): Always constrain when there is only
13121 one screen (Bug#10962).
13122
13123 2012-04-13 Ken Brown <kbrown@cornell.edu>
13124
13125 * s/cygwin.h (PTY_OPEN): Don't try to close a bogus file descriptor.
13126
13127 2012-04-13 Reuben Thomas <rrt@sc3d.org>
13128
13129 * indent.c (Fmove_to_column): Change interactive spec (Bug#739).
13130
13131 2012-04-11 Daniel Colascione <dancol@dancol.org>
13132
13133 * s/cygwin.h: The vfork the #define in cygwin.h was protecting
13134 against is gone. It's better to use vfork now so that when Cygwin
13135 gains a new, working vfork, we use it automatically (bug#10398).
13136
13137 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
13138
13139 * window.c (save_window_save): Obey window-point-insertion-type.
13140
13141 2012-04-11 Glenn Morris <rgm@gnu.org>
13142
13143 * Makefile.in (GNUSTEP_CFLAGS): Rename from C_SWITCH_X_SYSTEM.
13144
13145 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
13146
13147 * alloc.c (lisp_align_malloc): Remove unneeded prototype.
13148
13149 2012-04-10 Jason S. Cornez <jcornez@ravenpack.com> (tiny change)
13150
13151 * keyboard.c: Override inhibit-quit after the third C-g (bug#6585).
13152 (force_quit_count): New var.
13153 (handle_interrupt): Use it.
13154
13155 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
13156
13157 * w32.c (w32_delayed_load): Record the full path of the library
13158 being loaded (bug#10424).
13159
13160 2012-04-09 Glenn Morris <rgm@gnu.org>
13161
13162 * doc.c (Fsnarf_documentation): Check variables, functions are bound,
13163 not just in the obarray, before snarfing them. (Bug#11036)
13164
13165 * Makefile.in ($(leimdir)/leim-list.el):
13166 Pass EMACS rather than BUILT_EMACS.
13167
13168 2012-04-09 Teodor Zlatanov <tzz@lifelogs.com>
13169
13170 * process.c (make_process):
13171 * process.h: Add integer `gnutls_handshakes_tried' member to
13172 process struct.
13173
13174 * gnutls.h: Add `GNUTLS_EMACS_HANDSHAKES_LIMIT' upper limit.
13175 Add convenience `GNUTLS_LOG2i' macro.
13176
13177 * gnutls.c (gnutls_log_function2i): Convenience log function.
13178 (emacs_gnutls_read): Use new log functions,
13179 `gnutls_handshakes_tried' process member, and
13180 `GNUTLS_EMACS_HANDSHAKES_LIMIT' to limit the number of handshake
13181 attempts per process (connection).
13182
13183 2012-04-09 Chong Yidong <cyd@gnu.org>
13184
13185 * eval.c (Fuser_variable_p, user_variable_p_eh)
13186 (lisp_indirect_variable): Functions deleted.
13187 (Fdefvar): Caller changed.
13188
13189 * callint.c (Finteractive, Fcall_interactively):
13190 * minibuf.c (Fread_variable): Callers changed.
13191
13192 2012-04-09 Eli Zaretskii <eliz@gnu.org>
13193
13194 * xdisp.c (set_cursor_from_row): If the display string appears in
13195 the buffer at position that is closer to point than the position
13196 after the display string, display the cursor on the first glyph of
13197 the display string. Fixes cursor display when a 'display' text
13198 property immediately follows invisible text. (Bug#11094)
13199
13200 2012-04-09 Paul Eggert <eggert@cs.ucla.edu>
13201
13202 composite.c: use 'double' consistently
13203 * composite.c (get_composition_id): Use 'double' consistently
13204 instead of converting 'float' to 'double' and vice versa; this is
13205 easier to understand and avoids a GCC warning.
13206
13207 2012-04-09 Glenn Morris <rgm@gnu.org>
13208
13209 * Makefile.in: Generate leim-list with bootstrap-emacs, in
13210 preparation for dumping it with emacs. (Bug#4789)
13211 (leimdir): New variable.
13212 ($(leimdir)/leim-list.el): New rule.
13213 (emacs$(EXEEXT)): Depend on leim-list.el.
13214
13215 * buffer.c (Qucs_set_table_for_input): Remove. (Bug#9821)
13216 (Fget_buffer_create): Don't call Qucs_set_table_for_input.
13217 (init_buffer_once, syms_of_buffer): Remove Qucs_set_table_for_input.
13218
13219 2012-04-08 Andreas Schwab <schwab@linux-m68k.org>
13220
13221 * lisp.h (struct Lisp_Symbol): Add explicit padding to ensure
13222 proper alignment.
13223
13224 2012-04-07 Juanma Barranquero <lekktu@gmail.com>
13225
13226 * xml.c (init_libxml2_functions) [WINDOWSNT]:
13227 Remove unused local variable.
13228
13229 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
13230
13231 Avoid unnecessary pointer scanning in garbage collection (Bug#10780).
13232 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS): New macro.
13233 (mark_memory): Mark Lisp_Objects only if pointers might hide in
13234 objects, as mark_maybe_pointer will catch them otherwise.
13235 (GC_LISP_OBJECT_ALIGNMENT): Remove; no longer needed.
13236 * s/gnu-linux.h (GC_LISP_OBJECT_ALIGNMENT) [__mc68000__]: Likewise.
13237
13238 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
13239
13240 Fix typo that broke non-Windows builds.
13241 * xml.c (libxml2_loaded_p) [!!WINDOWSNT]: 'inine' -> 'inline'.
13242
13243 2012-04-07 Eli Zaretskii <eliz@gnu.org>
13244
13245 Support building on MS-Windows with libxml2.
13246
13247 * makefile.w32-in (OBJ2): Add xml.$(O).
13248 (GLOBAL_SOURCES): Add xml.c.
13249 ($(BLD)/xml.$(O)): New dependency list.
13250
13251 * xml.c (DEF_XML2_FN, LOAD_XML2_FN) [WINDOWSNT]: New macros.
13252 (fn_htmlReadMemory, fn_xmlReadMemory, fn_xmlDocGetRootElement)
13253 (fn_xmlFreeDoc, fn_xmlCleanupParser, fn_xmlCheckVersion)
13254 [!WINDOWSNT]: New macros.
13255 (init_libxml2_functions, libxml2_loaded_p): New functions.
13256 (parse_region): Call fn_xmlCheckVersion instead of using the macro
13257 LIBXML_TEST_VERSION. Call libxml2 functions via the fn_* macros.
13258 (xml_cleanup_parser): New function, export for fn_xmlCleanupParser.
13259 Calls xmlCleanupParser only if libxml2 was loaded (or statically
13260 linked in).
13261 (Flibxml_parse_html_region, Flibxml_parse_xml_region):
13262 Call init_libxml2_functions before calling libxml2 functions.
13263 (syms_of_xml) <Qlibxml2_dll>: DEFSYM it.
13264
13265 * emacs.c: Don't include libxml/parser.h.
13266 (shut_down_emacs): Call xml_cleanup_parser, instead of calling
13267 xmlCleanupParser directly.
13268
13269 * lisp.h [HAVE_LIBXML2]: Add prototype for xml_cleanup_parser.
13270
13271 2012-04-07 Eli Zaretskii <eliz@gnu.org>
13272
13273 * indent.c (Fvertical_motion): If there is a display string at
13274 point, use it.vpos to compute how many lines to backtrack after
13275 move_it_to point. (Bug#11133)
13276
13277 2012-04-06 Eli Zaretskii <eliz@gnu.org>
13278
13279 * buffer.h (FETCH_CHAR, FETCH_MULTIBYTE_CHAR):
13280 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH): Add comments
13281 about subtle differences between FETCH_CHAR* and STRING_CHAR*
13282 macros related to unification of CJK characters. For the details,
13283 see the discussion following the message here:
13284 http://debbugs.gnu.org/cgi/bugreport.cgi?bug=11073#14.
13285
13286 2012-04-04 Chong Yidong <cyd@gnu.org>
13287
13288 * keyboard.c (Vdelayed_warnings_list): Doc fix.
13289
13290 2012-04-01 Eli Zaretskii <eliz@gnu.org>
13291
13292 * w32menu.c (simple_dialog_show, add_menu_item): Use SAFE_ALLOCA
13293 instead of alloca. (Bug#11138)
13294
13295 2012-04-01 Andreas Schwab <schwab@linux-m68k.org>
13296
13297 * w32menu.c (is_simple_dialog): Properly check lisp types.
13298 (Bug#11141)
13299
13300 2012-03-31 Eli Zaretskii <eliz@gnu.org>
13301
13302 * xdisp.c (move_it_by_lines): When DVPOS is positive, and the
13303 position we get to after a call to move_it_to fails the
13304 IS_POS_VALID_AFTER_MOVE_P test, move to the next buffer position
13305 only if we wind up in a string from display property. (Bug#11063)
13306
13307 * window.c (Fdelete_other_windows_internal): Invalidate the row
13308 and column information about mouse highlight, so that redisplay
13309 restores it after reallocating the glyph matrices. (Bug#7464)
13310
13311 * xdisp.c (set_cursor_from_row): If `cursor' property on a display
13312 string comes from a `display' text property, use the buffer
13313 position of that property as if we actually saw that position in
13314 the row's glyphs.
13315 (move_it_by_lines): Remove the assertion that
13316 "it->current_x == 0 && it->hpos == 0" which can be legitimately
13317 violated when there's a before-string at the beginning of a line.
13318 (Bug#11063)
13319
13320 2012-03-30 Eli Zaretskii <eliz@gnu.org>
13321
13322 * xdisp.c (append_space_for_newline): If the default face was
13323 remapped, use the remapped face for the appended newline.
13324 (extend_face_to_end_of_line): Use the remapped default face for
13325 extending the face to the end of the line.
13326 (display_line): Call extend_face_to_end_of_line when the default
13327 face was remapped. (Bug#11068)
13328
13329 2012-03-29 Eli Zaretskii <eliz@gnu.org>
13330
13331 * s/ms-w32.h: Discourage from defining HAVE_GETCWD.
13332
13333 2012-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
13334
13335 * keyboard.c (safe_run_hooks_error): Don't unquote strings.
13336
13337 2012-03-27 Glenn Morris <rgm@gnu.org>
13338
13339 * search.c (Fword_search_backward_lax, Fword_search_forward_lax):
13340 Doc fixes.
13341
13342 2012-03-26 Kenichi Handa <handa@m17n.org>
13343
13344 * dispextern.h (struct glyph): Fix previous change. Change the
13345 bit length of glyphless.ch to 25 (Bug#11082).
13346
13347 2012-03-26 Chong Yidong <cyd@gnu.org>
13348
13349 * keyboard.c (Vselection_inhibit_update_commands): New variable.
13350 (command_loop_1): Use it; inhibit selection update for
13351 handle-select-window too (Bug#8996).
13352
13353 2012-03-25 Fabrice Popineau <fabrice.popineau@supelec.fr>
13354
13355 * w32heap.c (_heap_init, _heap_term): Remove dead MSVC-specific code.
13356
13357 2012-03-25 Kenichi Handa <handa@m17n.org>
13358
13359 * dispextern.h (struct glyph): Change the bit length of
13360 glyphless.ch to 22 to make the member glyphless fit in 32 bits.
13361
13362 2012-03-24 Eli Zaretskii <eliz@gnu.org>
13363
13364 * s/ms-w32.h (tzname): Include time.h before redirecting to
13365 _tzname. Fixes the MSVC build. (Bug#9960)
13366
13367 2012-03-24 Andreas Schwab <schwab@linux-m68k.org>
13368
13369 * xdisp.c (produce_glyphless_glyph): Limit length of acronym to 6
13370 characters.
13371
13372 * xterm.c (XTread_socket): Only modify handling_signal if
13373 !SYNC_INPUT. (Bug#11080)
13374
13375 2012-03-23 Eli Zaretskii <eliz@gnu.org>
13376
13377 * bidi.c (bidi_fetch_char): Use STRING_CHAR_AND_LENGTH instead of
13378 FETCH_MULTIBYTE_CHAR followed by CHAR_BYTES. Prevents crashes
13379 when fetching a multibyte character consumes more bytes than
13380 CHAR_BYTES returns, due to unification of CJK characters in
13381 string_char. (Bug#11073)
13382
13383 2012-03-23 Troels Nielsen <bn.troels@gmail.com> (tiny change)
13384
13385 * process.c (wait_reading_process_output): Handle pty disconnect
13386 by refraining from sending oneself a SIGCHLD (bug#10933).
13387
13388 2012-03-22 Chong Yidong <cyd@gnu.org>
13389
13390 * dispextern.h (struct it): New member string_from_prefix_prop_p.
13391
13392 * xdisp.c (push_prefix_prop): Rename from push_display_prop.
13393 Mark string as coming from a prefix property.
13394 (handle_face_prop): Use default face for prefix strings (Bug#4281).
13395 (pop_it, reseat_1): Save and restore string_from_prefix_prop_p.
13396
13397 2012-03-21 Chong Yidong <cyd@gnu.org>
13398
13399 * xfaces.c (Vface_remapping_alist): Doc fix.
13400
13401 2012-03-20 Eli Zaretskii <eliz@gnu.org>
13402
13403 * w32proc.c (Fw32_set_console_codepage)
13404 (Fw32_set_console_output_codepage, Fw32_get_codepage_charset):
13405 Doc fixes.
13406
13407 2012-03-20 Chong Yidong <cyd@gnu.org>
13408
13409 * dispnew.c (Fredisplay, Vredisplay_preemption_period): Update doc
13410 to reflect default non-nil value of redisplay-dont-pause.
13411
13412 2012-03-19 Kenichi Handa <handa@m17n.org>
13413
13414 * ftfont.c (ftfont_drive_otf): Mask bits of character code to make
13415 it fit in a valid range (Bug#11003).
13416
13417 2012-03-18 Eli Zaretskii <eliz@gnu.org>
13418
13419 * xdisp.c (cursor_row_p): Even if the glyph row ends in a string
13420 that is not from display property, accept the row as a "cursor
13421 row" if one of the string's character has a non-nil `cursor'
13422 property. Fixes cursor positioning when there are newlines in
13423 overlay strings, e.g. in icomplete.el. (Bug#11035)
13424
13425 2012-03-12 Paul Eggert <eggert@cs.ucla.edu>
13426
13427 * buffer.c (compare_overlays): Don't assume args differ (Bug#6830).
13428
13429 2012-03-12 Chong Yidong <cyd@gnu.org>
13430
13431 * eval.c (inhibit_lisp_code): Rename from
13432 inhibit_window_configuration_change_hook; move from window.c.
13433
13434 * xfns.c (unwind_create_frame_1, Fx_create_frame):
13435 * window.c (run_window_configuration_change_hook)
13436 (syms_of_window): Callers changed.
13437
13438 2012-03-11 Chong Yidong <cyd@gnu.org>
13439
13440 * keymap.c (Fkey_description): Doc fix (Bug#9700).
13441
13442 * editfns.c (Fconstrain_to_field): Doc fix (Bug#9452).
13443
13444 2012-03-10 Chong Yidong <cyd@gnu.org>
13445
13446 * frame.c (other_visible_frames): Don't assume the selected frame
13447 is visible (Bug#10955).
13448
13449 2012-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
13450
13451 * buffer.c (compare_overlays): Avoid qsort's instability (bug#6830).
13452
13453 2012-03-08 Jan Djärv <jan.h.d@swipnet.se>
13454
13455 * gtkutil.c (x_wm_set_size_hint): Use one row in call to
13456 FRAME_TEXT_LINES_TO_PIXEL_HEIGHT so base_height is greater than
13457 zero (Bug#10954).
13458
13459 2012-03-03 Glenn Morris <rgm@gnu.org>
13460
13461 * alloc.c (Fgarbage_collect, misc-objects-consed): Doc fixes.
13462
13463 2012-03-02 Eli Zaretskii <eliz@gnu.org>
13464
13465 * xdisp.c (try_window_reusing_current_matrix): Don't move cursor
13466 position past the first glyph_row that ends at ZV. (Bug#10902)
13467 (redisplay_window, next_element_from_string): Fix typos in
13468 comments.
13469 (redisplay_window): Pass to move_it_vertically the margin in
13470 pixels, not in screen lines.
13471
13472 2012-03-02 Glenn Morris <rgm@gnu.org>
13473
13474 * buffer.c (buffer-list-update-hook): Doc fix.
13475
13476 2012-02-29 Eli Zaretskii <eliz@gnu.org>
13477
13478 * xdisp.c (get_overlay_strings_1): Under bidi redisplay, call
13479 push_it before setting up the iterator for the first overlay
13480 string, even if we have an empty string loaded.
13481 (next_overlay_string): If there's an empty string on the iterator
13482 stack, pop the stack. (Bug#10903)
13483
13484 2012-02-25 Paul Eggert <eggert@cs.ucla.edu>
13485
13486 Generalize fix for crash due to non-contiguous EMACS_INT (Bug#10780).
13487 Suggested by Stefan Monnier in
13488 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00692.html>.
13489 * alloc.c (widen_to_Lisp_Object): New static function.
13490 (mark_memory): Also mark Lisp_Objects by fetching pointer words
13491 and widening them to Lisp_Objects. This would work even if
13492 USE_LSB_TAG is defined and wide integers are used, which might
13493 happen in a future version of Emacs.
13494
13495 2012-02-25 Chong Yidong <cyd@gnu.org>
13496
13497 * fileio.c (Ffile_selinux_context, Fset_file_selinux_context):
13498 Doc fix.
13499
13500 * xselect.c (Fx_selection_exists_p): Doc fix.
13501 (x_clipboard_manager_save_all): Print an informative message
13502 before saving to clipboard manager.
13503
13504 2012-02-24 Chong Yidong <cyd@gnu.org>
13505
13506 * keyboard.c (process_special_events): Handle all X selection
13507 requests in kbd_buffer, not just the next one (Bug#8869).
13508
13509 2012-02-23 Chong Yidong <cyd@gnu.org>
13510
13511 * xfns.c (Fx_create_frame): Avoid window-configuration-change-hook
13512 call when setting menu-bar-lines and tool-bar-lines parameters.
13513 (unwind_create_frame_1): New helper function.
13514
13515 * window.c (inhibit_window_configuration_change_hook): New var.
13516 (run_window_configuration_change_hook): Obey it.
13517 (syms_of_window): Initialize it.
13518
13519 2012-02-22 Chong Yidong <cyd@gnu.org>
13520
13521 * xterm.c (x_draw_image_relief): Add missing type check for
13522 Vtool_bar_button_margin (Bug#10743).
13523
13524 2012-02-21 Chong Yidong <cyd@gnu.org>
13525
13526 * fileio.c (Vfile_name_handler_alist): Doc fix.
13527
13528 * buffer.c (Fget_file_buffer): Protect against invalid file
13529 handler return value.
13530
13531 2012-02-20 Paul Eggert <eggert@cs.ucla.edu>
13532
13533 * .gdbinit (xreload): Don't assume EMACS_INT fits in 'long'
13534 when computing $valmask.
13535
13536 Fix crash due to non-contiguous EMACS_INT (Bug#10780).
13537 * lisp.h (VALBITS): Move definition up, so that USE_LSB_TAG can use it.
13538 (USE_LSB_TAG): Do not define if UINTPTR_MAX >> VALBITS == 0.
13539 It's useless in that case, and it can cause problems on hosts
13540 that allocate halves of EMACS_INT values separately.
13541 Reported by Dan Horák. Diagnosed by Andreas Schwab in
13542 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=10780#30>.
13543 * mem-limits.h (EXCEEDS_LISP_PTR): Define to 0 on hosts where
13544 UINTPTR_MAX >> VALBITS == 0. This is required by the above change;
13545 it avoids undefined behavior on hosts where shifting right by more
13546 than the word width has undefined behavior.
13547
13548 2012-02-19 Chong Yidong <cyd@gnu.org>
13549
13550 * fileio.c (Ffile_name_directory, Ffile_name_nondirectory)
13551 (Funhandled_file_name_directory, Ffile_name_as_directory)
13552 (Fdirectory_file_name, Fexpand_file_name)
13553 (Fsubstitute_in_file_name): Protect against invalid file handler
13554 return values (Bug#10845).
13555
13556 2012-02-18 Eli Zaretskii <eliz@gnu.org>
13557
13558 * .gdbinit (pitx): Fix incorrect references to fields of the
13559 iterator stack.
13560
13561 2012-02-17 Chong Yidong <cyd@gnu.org>
13562
13563 * syntax.c (Fscan_lists): Doc fix (Bug#10833).
13564
13565 2012-02-15 Paul Eggert <eggert@cs.ucla.edu>
13566
13567 * image.c (MAX_IMAGE_SIZE): Increase from 6.0 to 10.0; see
13568 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00540.html>.
13569
13570 2012-02-15 Chong Yidong <cyd@gnu.org>
13571
13572 * eval.c (Fdefvar, Fdefconst): Doc fix; note that the variable is
13573 marked as special. Also, starting docstrings with * is obsolete.
13574
13575 2012-02-13 Andreas Schwab <schwab@linux-m68k.org>
13576
13577 * gnutls.c (emacs_gnutls_write): Fix last change.
13578
13579 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
13580
13581 * gnutls.c (emacs_gnutls_write): Set errno appropriately for
13582 send_process.
13583
13584 2012-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
13585
13586 * keymap.c (Fsingle_key_description): Handle char ranges.
13587
13588 2012-02-12 Chong Yidong <cyd@gnu.org>
13589
13590 * xdisp.c (handle_stop): Avoid assigning -1 to it->face_id here,
13591 as that creates a dangerous corner case.
13592
13593 * window.c (Fdelete_window_internal): Invalidate the mouse
13594 highlight (Bug#9904).
13595
13596 2012-02-12 Glenn Morris <rgm@gnu.org>
13597
13598 * xselect.c (Fx_own_selection_internal)
13599 (Fx_get_selection_internal, Fx_disown_selection_internal)
13600 (Fx_selection_owner_p, Fx_selection_exists_p): Doc fixes.
13601 * nsselect.m (Fx_own_selection_internal)
13602 (Fx_disown_selection_internal, Fx_selection_exists_p)
13603 (Fx_selection_owner_p, Fx_get_selection_internal):
13604 Sync docs and argument specs with the xselect.c versions.
13605
13606 2012-02-11 Lars Ingebrigtsen <larsi@gnus.org>
13607
13608 * gnutls.c (emacs_gnutls_write): Don't infloop if sendto fails.
13609
13610 2012-02-11 Eli Zaretskii <eliz@gnu.org>
13611
13612 * w32select.c (Fx_selection_exists_p): Sync doc string and
13613 argument list with xselect.c. (Bug#10783)
13614
13615 * w16select.c (Fx_selection_exists_p): Sync doc string and
13616 argument list with xselect.c. (Bug#10783)
13617
13618 2012-02-10 Glenn Morris <rgm@gnu.org>
13619
13620 * fns.c (Fsecure_hash): Doc fix.
13621
13622 2012-02-09 Kenichi Handa <handa@m17n.org>
13623
13624 * coding.c (produce_chars): Fix updating of src_end (Bug#10701).
13625
13626 2012-02-07 Chong Yidong <cyd@gnu.org>
13627
13628 * buffer.c (Fbuffer_local_variables)
13629 (buffer_lisp_local_variables): Handle unbound vars correctly;
13630 don't let Qunbound leak into Lisp.
13631
13632 2012-02-07 Glenn Morris <rgm@gnu.org>
13633
13634 * image.c (Fimagemagick_types): Doc fix.
13635
13636 * image.c (imagemagick-render-type): Change it from a lisp object
13637 to an integer. Move the doc here from the lisp manual.
13638 Treat all values not equal to 0 the same.
13639
13640 2012-02-06 Chong Yidong <cyd@gnu.org>
13641
13642 * doc.c (store_function_docstring): Avoid applying docstring of
13643 alias to base function (Bug#2603).
13644
13645 2012-02-04 Andreas Schwab <schwab@linux-m68k.org>
13646
13647 * .gdbinit (pp1, pv1): Remove redundant defines.
13648 (pr): Use pp.
13649
13650 2012-02-04 Chong Yidong <cyd@gnu.org>
13651
13652 * nsterm.m: Declare a global (Bug#10694).
13653
13654 2012-02-04 Eli Zaretskii <eliz@gnu.org>
13655
13656 * w32.c (get_emacs_configuration_options):
13657 Include --enable-checking, if specified, in the return value.
13658
13659 2012-02-04 Martin Rudalics <rudalics@gmx.at>
13660
13661 * dispnew.c (change_frame_size_1): Calculate new_frame_total_cols
13662 after rounding frame sizes. (Bug#9723)
13663
13664 2012-02-04 Eli Zaretskii <eliz@gnu.org>
13665
13666 * keyboard.c (adjust_point_for_property): Don't position point
13667 before BEGV. (Bug#10696)
13668
13669 2012-02-03 Paul Eggert <eggert@cs.ucla.edu>
13670
13671 Handle overflow when computing char display width (Bug#9496).
13672 * character.c (char_width): Return EMACS_INT, not int.
13673 (char_width, c_string_width): Check for overflow when
13674 computing the width; this is possible now that individual
13675 characters can have unbounded width. Problem introduced
13676 by merge from Emacs 23 on 2012-01-19.
13677
13678 2012-02-02 Michael Albinus <michael.albinus@gmx.de>
13679
13680 * dbusbind.c (Fdbus_register_method): Mention the return value
13681 :ignore in the docstring.
13682
13683 2012-02-02 Glenn Morris <rgm@gnu.org>
13684
13685 * callproc.c (Fcall_process, Fcall_process_region): Doc fix.
13686
13687 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
13688 Unconditionally set to t. (Bug#10673)
13689 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
13690 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
13691 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Doc fix.
13692
13693 2012-02-02 Kenichi Handa <handa@m17n.org>
13694
13695 (x_produce_glyphs): Cancel previous change. If cmp->glyph_len is
13696 0, do not call append_composite_glyph.
13697
13698 2012-02-02 Kenichi Handa <handa@m17n.org>
13699
13700 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING): Initialize first_s to
13701 NULL (Bug#6988).
13702 (x_produce_glyphs): If the component of a composition is a null
13703 string, set it->pixel_width to 1 to avoid zero-width glyph.
13704
13705 2012-02-01 Eli Zaretskii <eliz@gnu.org>
13706
13707 * ralloc.c (resize_bloc, r_alloc_sbrk): Don't call memmove if its
13708 first 2 arguments are identical. This makes inserting large
13709 output from a subprocess an order of magnitude faster on
13710 MS-Windows, where all sbrk'ed memory is always contiguous.
13711
13712 2012-01-31 Glenn Morris <rgm@gnu.org>
13713
13714 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
13715 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
13716 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Sync docs.
13717
13718 2012-01-29 Glenn Morris <rgm@gnu.org>
13719
13720 * gnutls.c (syms_of_gnutls): More doc (from etc/NEWS).
13721
13722 2012-01-28 Samuel Thibault <sthibault@debian.org> (tiny change)
13723
13724 * s/gnu.h: Define POSIX_SIGNALS (Bug#10552).
13725
13726 2012-01-28 Chong Yidong <cyd@gnu.org>
13727
13728 * minibuf.c (syms_of_minibuf): Doc fix (Bug#10550).
13729
13730 2012-01-26 Chong Yidong <cyd@gnu.org>
13731
13732 * keyboard.c (Vecho_keystrokes): Document zero value (Bug#10503).
13733
13734 * search.c (Fsearch_forward, Fsearch_backward): Document negative
13735 repeat counts (Bug#10507).
13736
13737 2012-01-26 Glenn Morris <rgm@gnu.org>
13738
13739 * lread.c (syms_of_lread): Doc fix.
13740
13741 2012-01-25 HIROSHI OOTA <nil@mad.dog.cx> (tiny change)
13742
13743 * coding.c (encode_designation_at_bol): Change return value to
13744 EMACS_INT.
13745
13746 2012-01-25 Chong Yidong <cyd@gnu.org>
13747
13748 * eval.c (Fuser_variable_p): Doc fix; mention custom-variable-p.
13749
13750 2012-01-21 Chong Yidong <cyd@gnu.org>
13751
13752 * floatfns.c (Fcopysign): Make the second argument non-optional,
13753 since nil is not allowed anyway.
13754
13755 2012-01-21 Andreas Schwab <schwab@linux-m68k.org>
13756
13757 * process.c (read_process_output): Use p instead of XPROCESS (proc).
13758 (send_process): Likewise.
13759
13760 2012-01-19 Martin Rudalics <rudalics@gmx.at>
13761
13762 * window.c (save_window_save, Fcurrent_window_configuration)
13763 (Vwindow_persistent_parameters): Do not use Qstate.
13764 Rewrite doc-strings.
13765
13766 2012-01-19 Kenichi Handa <handa@m17n.org>
13767
13768 * character.c (char_width): New function.
13769 (Fchar_width, c_string_width, lisp_string_width):
13770 Use char_width (Bug#9496).
13771
13772 2012-01-16 Martin Rudalics <rudalics@gmx.at>
13773
13774 * window.c (Vwindow_persistent_parameters): New variable.
13775 (Fset_window_configuration, save_window_save): Handle persistent
13776 window parameters.
13777
13778 2012-01-14 Eli Zaretskii <eliz@gnu.org>
13779
13780 * w32fns.c (signal_user_input): Don't do a QUIT, to avoid
13781 thrashing the stack of the thread. (Bug#9087)
13782
13783 2012-01-12 Paul Eggert <eggert@cs.ucla.edu>
13784
13785 * xdisp.c (rows_from_pos_range): Add parens as per gcc -Wparentheses.
13786
13787 2012-01-11 Eli Zaretskii <eliz@gnu.org>
13788
13789 * xdisp.c (rows_from_pos_range): Handle the case where the
13790 highlight ends on a newline. (Bug#10464)
13791 (mouse_face_from_buffer_pos): Fix off-by-one error in calculating
13792 he end column for display of highlight that ends on a newline
13793 before a R2L line.
13794
13795 2012-01-11 Glenn Morris <rgm@gnu.org>
13796
13797 * lread.c (init_lread): If no-site-lisp, remove site-lisp dirs
13798 from load-path also when installation-directory is nil. (Bug#10208)
13799
13800 2012-01-10 Glenn Morris <rgm@gnu.org>
13801
13802 * emacs.c (syms_of_emacs) <installation-directory>: Doc fix.
13803
13804 * epaths.in (PATH_LOADSEARCH, PATH_EXEC, PATH_DATA, PATH_DOC):
13805 Update template values to be closer to their typical values these days.
13806
13807 2012-01-09 Eli Zaretskii <eliz@gnu.org>
13808
13809 * xdisp.c (rows_from_pos_range): Accept additional argument
13810 DISP_STRING, and accept any glyph in a row whose object is that
13811 string as eligible for mouse highlight. Fixes mouse highlight of
13812 display strings from overlays. (Bug#10464)
13813
13814 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
13815
13816 emacs: fix an auto-save permissions race condition (Bug#10400)
13817 * fileio.c (auto_saving_dir_umask): New static var.
13818 (Fmake_directory_internal): Use it.
13819 (do_auto_save_make_dir): Set it, instead of invoking chmod after
13820 creating the directory. The old code temporarily assigns
13821 too-generous permissions to the directory.
13822 (do_auto_save_eh): Clear it.
13823 (Fdo_auto_save): Catch all errors, not just file errors, so
13824 that the var is always cleared.
13825
13826 2012-01-07 Eli Zaretskii <eliz@gnu.org>
13827
13828 * search.c (scan_buffer): Pass character positions to
13829 know_region_cache, not byte positions. (Bug#6540)
13830
13831 2012-01-07 LynX <_LynX@bk.ru> (tiny change)
13832
13833 * w32.c (sys_rename): Report EXDEV when rename of a directory
13834 fails because the target is on another logical disk. (Bug#10284)
13835
13836 2012-01-07 David Benjamin <davidben@mit.edu> (tiny change)
13837
13838 * xterm.c (x_embed_request_focus): New function.
13839
13840 * xterm.h: Add prototype.
13841
13842 * xfns.c (Fx_focus_frame): Use it for embedded frames (Bug#9977).
13843
13844 2012-01-05 Glenn Morris <rgm@gnu.org>
13845
13846 * emacs.c (emacs_copyright): Update short copyright year to 2012.
13847
13848 2012-01-01 Eli Zaretskii <eliz@gnu.org>
13849
13850 * gnutls.c (init_gnutls_functions): Load gnutls_check_version.
13851 Load gnutls_transport_set_lowat only if GnuTLS version is below
13852 2.11.1.
13853 (emacs_gnutls_handshake): Call gnutls_transport_set_lowat only for
13854 GnuTLS versions below 2.11.1.
13855
13856 2011-12-31 Antoine Levitt <antoine.levitt@gmail.com>
13857
13858 * xdisp.c (syms_of_xdisp) <window-scroll-functions>: Add warning
13859 to the doc string advising against its use for altering the way
13860 windows are scrolled.
13861
13862 2011-12-28 Kenichi Handa <handa@m17n.org>
13863
13864 * coding.c (Fdefine_coding_system_internal): Make an utf-8 base
13865 coding-system ASCII compatible only when it does not produce BOM
13866 on encoding (Bug#10383).
13867
13868 2011-12-26 Jan Djärv <jan.h.d@swipnet.se>
13869
13870 * xmenu.c (x_menu_wait_for_event): Use xg_select for Gtk3 so menus
13871 can scroll.
13872 (create_and_show_popup_menu): Always use menu_position_func for
13873 Gtk3 (Bug#10361).
13874
13875 2011-12-24 Andreas Schwab <schwab@linux-m68k.org>
13876
13877 * callint.c (Fcall_interactively): Don't truncate prompt string.
13878
13879 2011-12-23 Eli Zaretskii <eliz@gnu.org>
13880
13881 * xdisp.c (handle_invisible_prop): Handle correctly an invisible
13882 property that ends at ZV, so that the bidi iteration could be
13883 resumed from there (after widening). (Bug#10360)
13884
13885 2011-12-22 Jan Djärv <jan.h.d@swipnet.se>
13886
13887 * nsfont.m (ns_spec_to_descriptor): Do not autorelease fdesc.
13888
13889 2011-12-21 Jan Djärv <jan.h.d@swipnet.se>
13890
13891 * nsterm.m (x_free_frame_resources):
13892 Release f->output_data.ns->miniimage.
13893 (ns_index_color): Fix indentation. Do not retain
13894 color_table->colors[i].
13895
13896 * nsmenu.m (ns_update_menubar): Call free_menubar_widget_value_tree
13897 before returning.
13898
13899 * nsfns.m (x_set_background_color): Assign return value from
13900 ns_index_color to face-background instead of NSColor*.
13901 (ns_implicitly_set_icon_type): Fix indentation.
13902 Change assignment in for loop to comparison.
13903
13904 * emacs.c (ns_pool): New variable.
13905 (main): Assign ns_pool.
13906 (Fkill_emacs): Call ns_release_autorelease_pool.
13907
13908 * nsfont.m (ns_spec_to_descriptor): Fix indentation,
13909 autorelease fdesc, release fdAttrs and tdict.
13910 (ns_get_covering_families): Release charset.
13911 (ns_findfonts): Release NSFontDescriptor created with new.
13912 (ns_uni_to_glyphs): Fix indentation.
13913 (setString): Release attrStr before assigning new value.
13914
13915 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
13916
13917 * nsmenu.m (NSMenuDidBeginTrackingNotification): Declare if OSX < 10.5
13918 and NS_IMPL_COCOA.
13919 (trackingNotification): Surround with ifdef NS_IMPL_COCOA.
13920 (syms_of_nsmenu): Set trackingMenu to 1 if not NS_IMPL_COCOA.
13921
13922 2011-12-18 David Reitter <reitter@cmu.edu>
13923
13924 * nsterm.m (ns_term_init): Subscribe for notifications
13925 NSMenuDidBeginTrackingNotification and NSMenuDidEndTrackingNotification
13926 to method trackingNotification in EmacsMenu.
13927
13928 * nsmenu.m (trackingMenu): New variable.
13929 (trackingNotification): New method (from Aquamacs).
13930 (menuNeedsUpdate): Expand comment and return if trackingMenu is 0,
13931 from Aquamacs (Bug#7030).
13932
13933 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
13934
13935 * nsselect.m (CUT_BUFFER_SUPPORT): Remove define.
13936 (symbol_to_nsstring): Fix indentation.
13937 (ns_symbol_to_pb): New function.
13938 (Fns_get_selection_internal): Rename from Fns_get_cut_buffer_internal.
13939 (Fns_rotate_cut_buffers_internal): Remove.
13940 (Fns_store_selection_internal): Rename from
13941 Fns_store_cut_buffer_internal.
13942 (ns_get_foreign_selection, Fx_own_selection_internal)
13943 (Fx_disown_selection_internal, Fx_selection_exists_p)
13944 (Fns_get_selection_internal, Fns_store_selection_internal):
13945 Use ns_symbol_to_pb and check if return value is nil.
13946 (syms_of_nsselect): Remove ifdef CUT_BUFFER_SUPPORT. Remove defsubr
13947 Sns_rotate_cut_buffers_internal. Sns_get_cut_buffer_internal
13948 renamed to Sns_get_selection_internal, Sns_store_cut_buffer_internal
13949 renamed to Sns_store_selection_internal.
13950 (ns_handle_selection_request): Move code to Fx_own_selection_internal
13951 and remove this function.
13952 (ns_handle_selection_clear): Remove, never used.
13953 (Fx_own_selection_internal): Move code from ns_handle_selection_request
13954 here.
13955
13956 2011-12-17 Ken Brown <kbrown@cornell.edu>
13957
13958 * fileio.c (check_writable) [CYGWIN]: Return non-zero if UID or
13959 GID is unknown (Bug#10257).
13960
13961 2011-12-17 Paul Eggert <eggert@cs.ucla.edu>
13962
13963 * s/gnu-linux.h: Fix mark_memory typo (Bug#10286).
13964 (GC_MARK_SECONDARY_STACK): Omit removed 3rd arg to mark_memory,
13965 which caused a build failure on GNU/Linux IA-64. This problem was
13966 introduced by my 2011-10-07 patch.
13967
13968 2011-12-15 Juri Linkov <juri@jurta.org>
13969
13970 * image.c (imagemagick_error): New function. (Bug#10112)
13971 (imagemagick_load_image): Comment out `MagickSetResolution' call.
13972 Use `imagemagick_error' where ImageMagick functions return
13973 `MagickFalse'.
13974 (Fimagemagick_types): Add `Fnreverse' to return the list in the
13975 proper order.
13976
13977 2011-12-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13978
13979 * xftfont.c (xftfont_draw): Use the font metrics of s->font to
13980 fill background (Bug#8992).
13981
13982 2011-12-13 Martin Rudalics <rudalics@gmx.at>
13983
13984 * window.c (Vwindow_combination_resize)
13985 (Vwindow_combination_limit): Use t instead of non-nil in
13986 doc-strings.
13987 (Vrecenter_redisplay): Add first sentence of doc-string on
13988 separate line.
13989 (Frecenter): Fix doc-string typo.
13990
13991 2011-12-11 Kenichi Handa <handa@m17n.org>
13992
13993 * coding.c (Funencodable_char_position): Pay attention to the
13994 buffer text relocation (Bug#9389).
13995
13996 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
13997
13998 * xterm.c (x_term_init): Move call to gdk_window_add_filter before
13999 gtk_init (Bug#10100).
14000
14001 2011-12-10 Eli Zaretskii <eliz@gnu.org>
14002
14003 * xdisp.c (RECORD_MAX_MIN_POS): Use IT->cmp_it.charpos only if
14004 IT->string is nil. (Bug#10263)
14005
14006 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
14007
14008 * nsterm.h (x_free_frame_resources): Declare.
14009
14010 * nsfns.m (ns_get_defaults_value): New function (Bug#10103).
14011 (Fns_get_resource, x_get_string_resource): Call ns_get_defaults_value.
14012
14013 * nsterm.h (ns_get_defaults_value): Declare.
14014
14015 * nsterm.m (ns_default): Call ns_get_defaults_value.
14016
14017 2011-12-09 Eli Zaretskii <eliz@gnu.org>
14018
14019 * xdisp.c (try_scrolling): Don't set scroll_down_p if dy is zero.
14020 (Bug#10170)
14021
14022 2011-12-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14023
14024 * unexelf.c (unexec) [NS_IMPL_GNUSTEP]: Take account of the case
14025 that where the value of an _OBJC_* symbol points to is in the .bss
14026 section (Bug#10240).
14027
14028 2011-12-08 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
14029
14030 * coding.c (encode_coding_ccl): Check (charbuf < charbuf_end)
14031 after the loop to call ccl_driver at least once (Bug#8619).
14032
14033 2011-12-08 Kenichi Handa <handa@m17n.org>
14034
14035 * ftfont.c (get_adstyle_property): Fix previous change
14036 (Bug#10233).
14037
14038 2011-12-07 Juanma Barranquero <lekktu@gmail.com>
14039
14040 * w32.c (init_environment): If no_site_lisp, remove site-lisp
14041 dirs from the default value of EMACSLOADPATH (bug#10208).
14042
14043 2011-12-07 Glenn Morris <rgm@gnu.org>
14044
14045 * lread.c (init_lread): If no_site_lisp, exclude site-lisp/ in
14046 installation and source directories as well. (Bug#10208)
14047
14048 2011-12-06 Chong Yidong <cyd@gnu.org>
14049
14050 * minibuf.c (Fread_from_minibuffer): Doc fix (Bug#10228).
14051
14052 2011-12-06 Glenn Morris <rgm@gnu.org>
14053
14054 * process.c (start_process_unwind): Treat any pid <= 0, except -2,
14055 as an error, not just -1. (Bug#10217)
14056
14057 2011-12-05 Chong Yidong <cyd@gnu.org>
14058
14059 * keyboard.c (process_special_events): New function.
14060 (swallow_events, Finput_pending_p): Use it (Bug#10195).
14061
14062 2011-12-05 Paul Eggert <eggert@cs.ucla.edu>
14063
14064 * coding.c (encode_designation_at_bol): Don't use uninitialized
14065 local variable (Bug#9318).
14066
14067 2011-12-05 Kenichi Handa <handa@m17n.org>
14068
14069 * ftfont.c (get_adstyle_property): If the font is not BDF nor PCF,
14070 return Qnil (Bug#8046, Bug#10193).
14071
14072 2011-12-05 Kenichi Handa <handa@m17n.org>
14073
14074 * coding.c (encode_designation_at_bol): New args charbuf_end and
14075 dst. Return the number of produced bytes. Callers changed.
14076 (coding_set_source): Return how many bytes coding->source was
14077 relocated.
14078 (coding_set_destination): Return how many bytes
14079 coding->destination was relocated.
14080 (CODING_DECODE_CHAR, CODING_ENCODE_CHAR, CODING_CHAR_CHARSET)
14081 (CODING_CHAR_CHARSET_P): Adjust for the avove changes.
14082
14083 2011-12-05 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
14084
14085 * coding.c (CODING_CHAR_CHARSET_P): New macro.
14086 (encode_coding_emacs_mule, encode_coding_iso_2022): Use the above
14087 macro (Bug#9318).
14088
14089 2011-12-05 Andreas Schwab <schwab@linux-m68k.org>
14090
14091 The following changes are to fix Bug#9318.
14092
14093 * coding.c (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET): New macros.
14094 (encode_coding_emacs_mule, ENCODE_ISO_CHARACTER)
14095 (encode_coding_iso_2022, encode_coding_sjis)
14096 (encode_coding_big5, encode_coding_charset): Use the above macros.
14097
14098 2011-12-05 Juanma Barranquero <lekktu@gmail.com>
14099
14100 * lisp.h (process_quit_flag): Fix external declaration.
14101
14102 2011-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
14103
14104 Don't macro-inline non-performance-critical code.
14105 * eval.c (process_quit_flag): New function.
14106 * lisp.h (QUIT): Use it.
14107
14108 2011-12-04 Jan Djärv <jan.h.d@swipnet.se>
14109
14110 * nsfns.m (get_geometry_from_preferences): New function.
14111 (Fx_create_frame): Call get_geometry_from_preferences (Bug#10103).
14112
14113 2011-12-04 Andreas Schwab <schwab@linux-m68k.org>
14114
14115 * emacs.c (Qkill_emacs): Define.
14116 (syms_of_emacs): Initialize it.
14117 * keyboard.c (interrupt_signal): Don't call Fkill_emacs here, set
14118 Qquit_flag to `kill-emacs' instead.
14119 (quit_throw_to_read_char): Add parameter `from_signal'.
14120 All callers changed. Call Fkill_emacs if requested and safe.
14121 * lisp.h (QUIT): Call Fkill_emacs if requested.
14122
14123 2011-12-03 Jan Djärv <jan.h.d@swipnet.se>
14124
14125 * widget.c (update_wm_hints): Return if wmshell is null.
14126 (widget_update_wm_size_hints): New function.
14127
14128 * widget.h (widget_update_wm_size_hints): Declare.
14129
14130 * xterm.c (x_wm_set_size_hint): If USE_X_TOOLKIT, call
14131 widget_update_wm_size_hints (Bug#10104).
14132
14133 2011-12-03 Eli Zaretskii <eliz@gnu.org>
14134
14135 * xdisp.c (handle_invisible_prop): If the invisible text ends just
14136 before a newline, prepare the bidi iterator for consuming the
14137 newline, and keep the current paragraph direction. (Bug#10183)
14138 (redisplay_window): Don't let `margin' become negative. (Bug#10192)
14139
14140 2011-12-02 Juri Linkov <juri@jurta.org>
14141
14142 * search.c (Fword_search_regexp): New Lisp function created from
14143 `wordify'. Change type of arg `lax' from `int' to `Lisp_Object'.
14144 (Fword_search_backward, Fword_search_forward)
14145 (Fword_search_backward_lax, Fword_search_forward_lax):
14146 Use `Fword_search_regexp' instead of `wordify'. Doc fix.
14147 (syms_of_search): Define `Sword_search_regexp'. (Bug#10145)
14148
14149 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
14150
14151 * fileio.c (Finsert_file_contents): Move after-change-function call
14152 to before the "handled:" label, since all "goto handled" appear in
14153 cases where the *-change-functions have already been properly called
14154 (bug#10117).
14155
14156 2011-12-01 Andreas Schwab <schwab@linux-m68k.org>
14157
14158 * keyboard.c (interrupt_signal): Don't call kill-emacs when
14159 waiting for input. (Bug#10169)
14160
14161 2011-11-30 Eli Zaretskii <eliz@gnu.org>
14162
14163 * dispnew.c (adjust_glyph_matrix): Remove the assertion that
14164 verifies glyph row's hash code--we have just reallocated the
14165 glyphs, so their contents can be complete garbage. (Bug#10164)
14166
14167 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
14168
14169 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Add missing check.
14170
14171 2011-11-30 Eli Zaretskii <eliz@gnu.org>
14172
14173 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Ensure ROW's
14174 attributes are tested _before_ calling verify_row_hash, to protect
14175 against GCC re-ordering of the tests. (Bug#10164)
14176
14177 2011-11-29 Jan Djärv <jan.h.d@swipnet.se>
14178
14179 * xterm.h (struct x_output): net_wm_state_hidden_seen is new.
14180
14181 * xterm.c (handle_one_xevent): Only set async_visible and friends
14182 if net_wm_state_hidden_seen is non-zero (Bug#10002)
14183 (get_current_wm_state): Set net_wm_state_hidden_seen to 1 if
14184 _NET_WM_STATE_HIDDEN is in NET_WM_STATE.
14185
14186 2011-11-28 Paul Eggert <eggert@cs.ucla.edu>
14187
14188 Remove GCPRO-related macros that exist only to avoid shadowing locals.
14189 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR)
14190 (GCPRO6_VAR, UNGCPRO_VAR): Remove. See
14191 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
14192 All uses changed to use GCPRO1 etc.
14193 (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6, UNGCPRO):
14194 Revert to old implementation (i.e., before 2011-03-11).
14195
14196 2011-11-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14197
14198 * dispnew.c (scrolling_window): Truncate overlaps in copy destination
14199 of scroll runs so as to avoid assigning disabled bogus rows and
14200 unnecessary graphics copy operations.
14201
14202 2011-11-27 Eli Zaretskii <eliz@gnu.org>
14203
14204 * s/ms-w32.h (utimbuf) [_MSC_VER]: Don't define.
14205 (snprintf) [_MSC_VER]: Redirect to _snprintf.
14206 (strtoll) [_MSC_VER]: Redirect to _strtoi64.
14207 (malloc, free, realloc, calloc): Redirect to e_* only when
14208 compiling Emacs.
14209
14210 * lisp.h (GCTYPEBITS): Move before first use.
14211 (ALIGN_GCTYPEBITS) [_MSC_VER]: Define.
14212 (DECL_ALIGN) [_MSC_VER]: Use it, as MSVC doesn't like bit ops in
14213 this macro definition.
14214
14215 * s/ms-w32.h (tzname): Redirect to _tzname for all values of
14216 _MSC_VER.
14217
14218 2011-11-27 Jan Djärv <jan.h.d@swipnet.se>
14219
14220 * gtkutil.c (xg_create_frame_widgets):
14221 Call gtk_window_set_has_resize_grip (FALSE) if that function is
14222 present with Gtk+ 2.0.
14223
14224 2011-11-26 Paul Eggert <eggert@cs.ucla.edu>
14225
14226 * fileio.c (Finsert_file_contents): Undo previous change; see
14227 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
14228
14229 2011-11-26 Paul Eggert <eggert@cs.ucla.edu>
14230
14231 Rename locals to avoid shadowing.
14232 * fileio.c (Finsert_file_contents):
14233 Rename inner 'gcpro1' to 'inner_gcpro1' to avoid shadowing.
14234 * process.c (wait_reading_process_output):
14235 Rename inner 'proc' to 'p' to avoid shadowing.
14236 Indent for consistency with usual Emacs style.
14237
14238 2011-11-25 Eli Zaretskii <eliz@gnu.org>
14239
14240 * xdisp.c (redisplay_window): If cursor row is not fully visible
14241 after recentering, and scroll-conservatively is set to a large
14242 number, scroll window by a few more lines to make the cursor fully
14243 visible and out of scroll-margin. (Bug#10105)
14244 (start_display): Don't move to the next line if the display should
14245 start at a newline that is part of a display vector or an overlay
14246 string. (Bug#10119)
14247
14248 2011-11-24 Juri Linkov <juri@jurta.org>
14249
14250 * image.c (imagemagick_load_image): Move `MagickSetResolution' down
14251 after the `MagickPingImage' call. (Bug#10112)
14252
14253 2011-11-23 Chong Yidong <cyd@gnu.org>
14254
14255 * window.c (Fcoordinates_in_window_p): Accept only live windows.
14256
14257 2011-11-23 Martin Rudalics <rudalics@gmx.at>
14258
14259 * buffer.c (Fkill_buffer): Run replace_buffer_in_windows before
14260 making another buffer current. (Bug#10114)
14261
14262 2011-11-23 Glenn Morris <rgm@gnu.org>
14263
14264 * font.c (font_find_for_lface) [HAVE_NS]: Ignore case. (Bug#2526)
14265
14266 2011-11-23 Chong Yidong <cyd@gnu.org>
14267
14268 * xdisp.c (compute_stop_pos): Check validity of end_charpos before
14269 using it (Bug#5984).
14270
14271 2011-11-22 Eli Zaretskii <eliz@gnu.org>
14272
14273 * dispnew.c (adjust_glyph_matrix): Don't verify hash code of mode-
14274 and header-lines, as they don't have one computed for them.
14275 (Bug#10098)
14276
14277 * .gdbinit (prow): Make displayed values more self-explaining.
14278 Add row's hash code.
14279
14280 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
14281
14282 * process.c (wait_reading_process_output): Fix asynchrounous
14283 GnuTLS socket handling on some versions of the GnuTLS library.
14284 (wait_reading_process_output): Add comment and URL.
14285
14286 2011-11-21 Jan Djärv <jan.h.d@swipnet.se>
14287
14288 * xterm.c (x_clear_frame): Reinstate the XClearWindow call.
14289
14290 2011-11-21 Chong Yidong <cyd@gnu.org>
14291
14292 * window.c (Fnext_window, Fprevious_window): Doc fix.
14293
14294 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
14295
14296 * window.c (get_phys_cursor_glyph): Fix Lisp_Object/int mixup.
14297
14298 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
14299
14300 * nsfont.m (syms_of_nsfont) <ns-reg-to-script>: Fix typo.
14301
14302 2011-11-20 Martin Rudalics <rudalics@gmx.at>
14303
14304 * window.c (Fset_window_combination_limit): Rename argument
14305 STATUS to LIMIT.
14306 (Vwindow_combination_limit): Remove "status" from doc-string.
14307
14308 2011-11-20 Andreas Schwab <schwab@linux-m68k.org>
14309
14310 * m/ibms390.h: Remove.
14311 * m/ibms390x.h: Don't include "ibms390.h".
14312
14313 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
14314
14315 * fileio.c (Finsert_file_contents): Add missing gcpro1 variable.
14316 Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
14317
14318 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
14319
14320 * casetab.c (Fset_case_table):
14321 * charset.c (Fcharset_after): Fix typos.
14322
14323 2011-11-20 Paul Eggert <eggert@cs.ucla.edu>
14324
14325 Standardize on VIRT_ADDR_VARIES behavior (Bug#10042).
14326 Otherwise, valgrind does not work on some platforms.
14327 Problem reported by Andreas Schwab in
14328 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00081.html>.
14329 * puresize.h (pure, PURE_P): Always behave as if VIRT_ADDR_VARIES
14330 is set, removing the need for VIRT_ADDRESS_VARIES.
14331 (PURE_P): Use a more-efficient implementation that needs just one
14332 comparison, not two: on x86-64 with GCC 4.6.2, this cut down the
14333 number of instructions from 6 (xorl, cmpq, jge, xorl, cmpq, setge)
14334 to 4 (xorl, subq, cmpq, setbe).
14335 * alloc.c (pure): Always extern now, since that's the
14336 VIRT_ADDR_VARIES behavior.
14337 (PURE_POINTER_P): Use a single comparison, not two, for
14338 consistency with the new puresize.h.
14339 * lisp.h (PNTR_COMPARISON_TYPE): Remove; no longer needed.
14340 * m/ibms390.h, m/intel386.h, m/template.h, s/cygwin.h, s/hpux10-20.h:
14341 Remove VIRT_ADDR_VARIES no longer needed.
14342
14343 2011-11-19 Eli Zaretskii <eliz@gnu.org>
14344
14345 * xdisp.c (x_write_glyphs, draw_phys_cursor_glyph)
14346 (erase_phys_cursor, update_window_cursor, show_mouse_face)
14347 (cursor_in_mouse_face_p): If the cursor position is out of bounds,
14348 behave as if the cursor position were at the window margin.
14349
14350 * window.c (get_phys_cursor_glyph): If the window is hscrolled,
14351 and the cursor position is out of bounds, behave as if the cursor
14352 position were at the window margin. (Bug#10075)
14353
14354 2011-11-18 Chong Yidong <cyd@gnu.org>
14355
14356 * window.c (Fwindow_combination_limit): Make first argument
14357 non-optional, since it is meaningless for live windows like the
14358 selected window.
14359
14360 2011-11-18 Dmitry Antipov <dmantipov@yandex.ru>
14361
14362 * keymap.c (Fwhere_is_internal): Add missing RETURN_UNGCPROs.
14363
14364 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
14365
14366 * intervals.c: Fix grafting over the whole buffer (bug#10071).
14367 (graft_intervals_into_buffer): Simplify.
14368
14369 2011-11-18 Eli Zaretskii <eliz@gnu.org>
14370
14371 * dispnew.c (swap_glyph_pointers): Swap the used[] arrays and the
14372 hash values of the two rows.
14373 (copy_row_except_pointers): Preserve the used[] arrays and the
14374 hash values of the two rows. (Bug#10035)
14375 (add_row_entry): Add xassert to verify that ROW's hash code is valid.
14376
14377 * xdisp.c (row_hash): New function, body extracted from
14378 compute_line_metrics.
14379 (compute_line_metrics): Call row_hash, instead of computing the
14380 hash code inline.
14381
14382 * dispnew.c (verify_row_hash): Call row_hash for computing the
14383 hash code of a row, instead of duplicating code from xdisp.c.
14384
14385 * dispextern.h (row_hash): Add prototype.
14386
14387 2011-11-18 Tassilo Horn <tassilo@member.fsf.org>
14388
14389 * frame.c (delete_frame): Don't delete the terminal when the last
14390 X frame is closed if emacs is built with GTK toolkit.
14391
14392 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
14393
14394 * window.c (syms_of_window) <window-combination-resize>: Fix typo.
14395
14396 2011-11-17 Martin Rudalics <rudalics@gmx.at>
14397
14398 * window.c (Vwindow_splits): Rename to
14399 Vwindow_combination_resize. Suggested by Juri Linkov.
14400 (Fsplit_window_internal): Use Vwindow_combination_resize instead
14401 of Vwindow_splits.
14402
14403 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
14404
14405 * nsfns.m (Fns_font_name):
14406 * window.c (syms_of_window) <window-combination-limit>: Fix typos.
14407
14408 2011-11-16 Martin Rudalics <rudalics@gmx.at>
14409
14410 * window.h (window): Rename slot "nest" to "combination_limit".
14411 * window.c (Fwindow_nest): Rename to Fwindow_combination_limit.
14412 (Fset_window_nest): Rename to Fset_window_combination_limit.
14413 (Vwindow_nest): Rename to Vwindow_combination_limit.
14414 (recombine_windows, make_parent_window, make_window)
14415 (Fsplit_window_internal, saved_window)
14416 (Fset_window_configuration, save_window_save): Rename all
14417 occurrences of window_nest to window_combination_limit.
14418
14419 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
14420
14421 * image.c (imagemagick_load_image): Fix typo.
14422
14423 2011-11-14 Eli Zaretskii <eliz@gnu.org>
14424
14425 * xdisp.c (display_line): Move the call to
14426 highlight_trailing_whitespace before the call to
14427 compute_line_metrics, since the latter needs to see the final
14428 faces of all the glyphs to compute ROW's hash value.
14429 Fixes assertion violations in row_equal_p. (Bug#10035)
14430
14431 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
14432
14433 * w32proc.c (reader_thread): Don't check pending input if cp->fd < 0,
14434 just return (bug#10044).
14435
14436 2011-11-12 Eli Zaretskii <eliz@gnu.org>
14437
14438 * makefile.w32-in (HEAPSIZE): New variable, allows to build temacs
14439 with user-defined heap size. Bump the default size of the temacs
14440 heap to 27MB, to avoid memory warning when running temacs.
14441 ($(TEMACS)): Use HEAPSIZE instead of a hardcoded value.
14442
14443 * dispnew.c (scrolling_window): Fix incorrect indices in accessing
14444 current_matrix and desired_matrix. (Bug#9990)
14445 (verify_row_hash) [XASSERTS]: New function.
14446 (adjust_glyph_matrix, row_equal_p): Use it in xassert to verify
14447 that the hash value of glyph rows is correct.
14448
14449 2011-11-12 Martin Rudalics <rudalics@gmx.at>
14450
14451 * window.h (window): Remove splits slot.
14452 * window.c (Fwindow_splits, Fset_window_splits): Remove.
14453 (Fdelete_other_windows_internal, make_parent_window)
14454 (make_window, Fsplit_window_internal, Fdelete_window_internal)
14455 (Fset_window_configuration, save_window_save): Don't deal with
14456 split status of windows.
14457 (saved_window): Remove splits slot.
14458 (Vwindow_splits): Rewrite doc-string.
14459
14460 2011-11-11 Jan Djärv <jan.h.d@swipnet.se>
14461
14462 * xfns.c (unwind_create_frame):
14463 * nsfns.m (unwind_create_frame):
14464 * w32fns.c (unwind_create_frame): Use Fmemq to check if frame is in
14465 Vframe_list (Bug#9999).
14466
14467 2011-11-11 Dmitry Antipov <dmantipov@yandex.ru>
14468
14469 * xdisp.c (syms_of_xdisp): Remove duplicated definition of Qtext.
14470
14471 2011-11-11 Kenichi Handa <handa@m17n.org>
14472
14473 * callproc.c (Fcall_process): Set the member dst_multibyte of
14474 process_coding.
14475
14476 2011-11-11 Johan Bockgård <bojohan@gnu.org>
14477
14478 * xdisp.c (fill_composite_glyph_string): Always set s->face, to
14479 avoid a crash (bug#9496).
14480
14481 2011-11-09 Chong Yidong <cyd@gnu.org>
14482
14483 * window.c (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
14484 (Fwindow_inside_absolute_pixel_edges): Only allow live windows.
14485
14486 2011-11-08 Paul Eggert <eggert@cs.ucla.edu>
14487
14488 * s/gnu.h (GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS (Bug#9926).
14489
14490 2011-11-08 Paul Eggert <eggert@cs.ucla.edu>
14491
14492 Avoid some portability problems by eschewing 'extern inline' functions.
14493 The trivial performance wins aren't worth the portability hassles; see
14494 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>
14495 et seq.
14496 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
14497 (window_box_width, window_box_left, window_box_left_offset)
14498 (window_box_right, window_box_right_offset): Undo previous change,
14499 by removing the "extern"s.
14500 * intervals.c (adjust_intervals_for_insertion)
14501 (adjust_intervals_for_deletion): Undo previous change,
14502 making these static again.
14503 (offset_intervals, temp_set_point_both, temp_set_point)
14504 (copy_intervals_to_string): No longer inline.
14505 * xdisp.c (window_text_bottom_y, window_box_width)
14506 (window_box_height, window_box_left_offset)
14507 (window_box_right_offset, window_box_left, window_box_right)
14508 (window_box): No longer inline.
14509
14510 2011-11-08 Chong Yidong <cyd@gnu.org>
14511
14512 * window.c (Fwindow_left_column, Fwindow_top_line): Doc fix.
14513 (Fwindow_body_height, Fwindow_body_width): Move from Lisp.
14514 Signal an error if not a live window.
14515 (Fwindow_total_width, Fwindow_total_height): Move from Lisp.
14516 (Fwindow_total_size, Fwindow_body_size): Move to Lisp.
14517
14518 2011-11-07 Juanma Barranquero <lekktu@gmail.com>
14519
14520 * lisp.h (syms_of_abbrev): Remove declaration.
14521 Reported by CHENG Gao <chenggao@royau.me>.
14522
14523 2011-11-07 Eli Zaretskii <eliz@gnu.org>
14524
14525 * w32.c (check_windows_init_file): Don't look for term/w32-win.el
14526 if Vpurify_flag is non-nil. Fixes a crash when running w32 build
14527 of temacs in GUI mode.
14528
14529 2011-11-07 Martin Rudalics <rudalics@gmx.at>
14530
14531 * window.h: Declare delete_all_child_windows instead of
14532 delete_all_subwindows.
14533 * window.c (Fwindow_nest, Fset_window_nest)
14534 (Fset_window_new_total, Fset_window_new_normal)
14535 (Fwindow_resize_apply): Don't use term subwindow in doc-strings.
14536 (delete_all_subwindows): Rename to delete_all_child_windows.
14537 (Fdelete_other_windows_internal, Fset_window_configuration):
14538 Call delete_all_child_windows instead of delete_all_subwindows.
14539 * frame.c (delete_frame): Call delete_all_child_windows instead
14540 of delete_all_subwindows.
14541
14542 2011-11-07 Paul Eggert <eggert@cs.ucla.edu>
14543
14544 * alloc.c (DEADP): New macro, for porting to GNU/Hurd (Bug#9926).
14545 This is also needed for porting to any host where GC_MARK_STACK is
14546 not GC_MAKE_GCPROS_NOOPS.
14547 (which_symbols): Use it.
14548
14549 2011-11-07 Kenichi Handa <handa@m17n.org>
14550
14551 * coding.c (coding_set_destination): Check coding->src_pos only
14552 when coding->src_object is a buffer (bug#9910).
14553
14554 * process.c (send_process): Set the member src_multibyte of coding
14555 to 0 (bug#9911) when sending a unibyte text.
14556
14557 * callproc.c (Fcall_process): Set the member src_multibyte of
14558 process_coding to 0 (bug#9912).
14559
14560 2011-11-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14561
14562 * xmenu.c (cleanup_widget_value_tree): New function.
14563 (xmenu_show, xdialog_show): Use it in record_unwind_protect instead of
14564 calling free_menubar_widget_value_tree directly (Bug#9830).
14565
14566 2011-11-06 Paul Eggert <eggert@cs.ucla.edu>
14567
14568 Fix some portability problems with 'inline'.
14569 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
14570 (window_box_width, window_box_left, window_box_left_offset)
14571 (window_box_right, window_box_right_offset): Declare extern.
14572 Otherwise, these inline functions do not conform to C99 and
14573 are miscompiled by Microsoft compilers. Reported by Eli Zaretskii in
14574 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>.
14575 * intervals.c (adjust_intervals_for_insertion)
14576 (adjust_intervals_for_deletion): Now extern, because otherwise the
14577 extern inline functions 'offset_intervals' couldn't refer to it.
14578 (static_offset_intervals): Remove.
14579 (offset_intervals): Rewrite using the old contents of
14580 static_offset_intervals. The old version didn't conform to C99
14581 because an extern inline function contained a reference to an
14582 identifier with static linkage.
14583
14584 2011-11-06 Andreas Schwab <schwab@linux-m68k.org>
14585
14586 * keyboard.c (interrupt_signal): Don't call kill-emacs while in
14587 GC.
14588
14589 2011-11-06 Eli Zaretskii <eliz@gnu.org>
14590
14591 * xdisp.c (init_iterator, reseat_to_string): Don't set the
14592 iterator's bidi_p flag if Vpurify_flag is non-nil. (Bug#9963)
14593 (Fcurrent_bidi_paragraph_direction): If Vpurify_flag is non-nil,
14594 return Qleft_to_right.
14595
14596 2011-11-06 Chong Yidong <cyd@gnu.org>
14597
14598 * window.c (Fwindow_live_p, Fwindow_frame, Fframe_root_window)
14599 (Fminibuffer_window, Fwindow_buffer, Fwindow_splits)
14600 (Fset_window_splits, Fwindow_nest, Fset_window_nest)
14601 (Fwindow_use_time, Fwindow_total_size, Fwindow_normal_size)
14602 (Fwindow_new_normal, Fwindow_left_column, Fwindow_top_line)
14603 (Fwindow_margins, Fwindow_fringes, Fwindow_scroll_bars)
14604 (Fwindow_vscroll): Doc fix.
14605 (Fwindow_top_child, Fwindow_left_child): Eliminate a nil default
14606 argument, since it makes no sense to pass a live window and for
14607 consistency with window-child.
14608
14609 2011-11-05 Christoph Scholtes <cschol2112@googlemail.com>
14610
14611 * makefile.w32-in ($(TEMACS), (gl-stamp)): Use $(THISDIR) to
14612 support MSVC.
14613
14614 2011-11-05 Jason Rumney <jasonr@gnu.org>
14615
14616 * w32font.c (font_matches_spec): Filter out non-Japanese kana fonts.
14617 (add_font_entity_to_list): Filter out non-Japanese Shift-JIS
14618 fonts (Bug#6029).
14619 (add_font_entity_to_list): Fix logic errors in mixed boolean and
14620 bitwise arithmetic preventing use of unicode-sip and non-truetype
14621 opentype fonts.
14622
14623 2011-11-05 Eli Zaretskii <eliz@gnu.org>
14624
14625 * s/ms-w32.h (fstat, stat, utime): Move redirections to
14626 "emacs"-only part.
14627
14628 * w32fns.c (x_create_tip_frame, Fx_create_frame): Rearrange
14629 initialization code to keep similarity to xfns.c after changes
14630 from 2011-11-05.
14631
14632 2011-11-05 Jan Djärv <jan.h.d@swipnet.se>
14633
14634 * nsfns.m: Declare image_cache_refcount if GLYPH_DEBUG.
14635 (unwind_create_frame): New function (Bug#9943).
14636 (Fx_create_frame): Restructure code to be more similar to the one in
14637 xfns.c. Call record_unwind_protect with unwind_create_frame (Bug#9943).
14638 Initialize image_cache_refcount if GLYPH_DEBUG (Bug#9943).
14639 Move terminal->reference_count++ just before making the frame official
14640 (Bug#9943).
14641
14642 * nsterm.m (x_free_frame_resources): New function.
14643 (x_destroy_window): Move code to x_free_frame_resources.
14644
14645 * xfns.c (unwind_create_frame): Fix comment.
14646 (Fx_create_frame, x_create_tip_frame):
14647 Move terminal->reference_count++ just before making the frame
14648 official. Move initialization of image_cache_refcount and
14649 dpyinfo_refcount before calling init_frame_faces (Bug#9943).
14650
14651 2011-11-05 Eli Zaretskii <eliz@gnu.org>
14652
14653 Support MSVC build with newer versions of Visual Studio.
14654 * makefile.w32-in (TAGS-gmake): Don't use $(patsubst ...), as
14655 Nmake barfs on that. Use $(OBJ*_c) variables instead, defined on
14656 nt/gmake.defs.
14657
14658 * lisp.h (ENUM_BF): New macro, for enumerated types in bitfields,
14659 which are not supported by MSVC.
14660 (Lisp_Symbol, Lisp_Misc_Any, Lisp_Marker, Lisp_Misc_Overlay)
14661 (Lisp_Save_Value, Lisp_Free): Use ENUM_BF for enumerated types in
14662 bitfields.
14663 (Lisp_Object) [USE_LISP_UNION_TYPE]: Use ENUM_BF for enumerated
14664 types in bitfields.
14665 (DEFUN) [_MSC_VER]: Define in a different way for MSVC.
14666
14667 * w32fns.c [_MSC_VER]: DECLARE_HANDLE for any MSVC version.
14668
14669 2011-11-05 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
14670
14671 Support MSVC build with newer versions of Visual Studio.
14672 * w32.c: Don't include w32api.h for MSVC.
14673 (init_environment) [_MSC_VER]: Call sys_access, not _access.
14674
14675 * s/ms-w32.h <sigset_t, ssize_t> [_MSC_VER]: Typedefs for MSVC.
14676 [_MSC_VER]: Include sys/timeb.h, sys/stat.h, and signal.h.
14677 (fstat, stat, utime) [_MSC_VER]: Redirect to their sys_* cousins.
14678 (malloc, free, realloc, calloc) [_MSC_VER]: Always redirect to the
14679 e_* cousins.
14680 (alloca) [_MSC_VER]: Define to _alloca.
14681
14682 * lisp.h (DECL_ALIGN) [_MSC_VER]: Define for MSVC.
14683
14684 * regex.c <re_char> [_MSC_VER]: A separate definition for MSVC.
14685
14686 2011-11-04 Eli Zaretskii <eliz@gnu.org>
14687
14688 * xdisp.c (note_mouse_highlight): If either of
14689 previous/next-single-property-change returns nil, treat that as
14690 the beginning or the end of the buffer. (Bug#9955)
14691
14692 2011-11-04 Jan Djärv <jan.h.d@swipnet.se>
14693
14694 * gtkutil.c (xg_make_tool_item): Add callbacks if one of wimage or
14695 label is not null (Bug#9951).
14696 (xg_tool_item_stale_p): Handle the fact that wimage and/or wlbl
14697 may be NULL.
14698
14699 2011-11-04 Eli Zaretskii <eliz@gnu.org>
14700
14701 * window.c (Fwindow_body_size): Mention in the doc string that the
14702 return value is in frame's canonical units. (Bug#9949)
14703
14704 2011-11-03 Eli Zaretskii <eliz@gnu.org>
14705
14706 * xdisp.c (note_mouse_highlight): Initialize `area'. (Bug#9947)
14707
14708 * w32fns.c (unwind_create_frame): If needed, free the glyph
14709 matrices of the partially constructed frame. (Bug#9943)
14710 * xfns.c (unwind_create_frame): Likewise.
14711
14712 2011-11-01 Eli Zaretskii <eliz@gnu.org>
14713
14714 * xdisp.c (mouse_face_from_buffer_pos): Fix a typo in a comment.
14715 Don't stop backward scan on the continuation glyph, even though
14716 its CHARPOS is positive.
14717 (mouse_face_from_buffer_pos, note_mouse_highlight):
14718 Rename cover_string to disp_string.
14719
14720 2011-11-01 Martin Rudalics <rudalics@gmx.at>
14721
14722 * window.c (temp_output_buffer_show): Don't use
14723 Vtemp_buffer_show_specifiers.
14724 (Vtemp_buffer_show_specifiers): Remove unused variable.
14725
14726 2011-10-30 Eli Zaretskii <eliz@gnu.org>
14727
14728 * xdisp.c (try_cursor_movement): Make sure ROW isn't decremented
14729 past the beginning of the current glyph matrix.
14730
14731 2011-10-30 Adam Sjøgren <asjo@koldfront.dk> (tiny change)
14732
14733 * xterm.c: Include X11/Xproto.h if HAVE_GTK3.
14734 (x_error_handler): Ignore BadMatch for X_SetInputFocus for
14735 HAVE_GTK3 (Bug#9869).
14736
14737 * gtkutil.c (xg_win_to_widget, xg_event_is_for_menubar): Initialize
14738 type to GDK_NOTHING so valgrind does not complain (Bug#9901).
14739
14740 * xterm.h (x_display_info): Add Xatom_net_wm_state_hidden (Bug#9893).
14741
14742 * xterm.c: Declare x_handle_net_wm_state to return int.
14743 (handle_one_xevent): Check if we are iconified but don't have
14744 _NET_WM_STATE_HIDDEN. If do, treat as deiconify (Bug#9893).
14745 (get_current_wm_state): Return non-zero if not hidden,
14746 check for _NET_WM_STATE_HIDDEN (Bug#9893).
14747 (do_ewmh_fullscreen): Ignore return value from get_current_wm_state.
14748 (x_handle_net_wm_state): Return what get_current_wm_state returns.
14749 (x_term_init): Initialize dpyinfo->Xatom_net_wm_state_hidden.
14750
14751 2011-10-29 Paul Eggert <eggert@cs.ucla.edu>
14752
14753 * alloc.c (which_symbols): Declare EXTERNALLY_VISIBLE,
14754 so that this new function doesn't get optimized away by a
14755 whole-program optimizer. Make the 2nd arg EMACS_INT, not int.
14756
14757 2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
14758
14759 * frame.h (MOUSE_HL_INFO): Remove excess parens.
14760
14761 2011-10-29 Eli Zaretskii <eliz@gnu.org>
14762
14763 Fix the `xbytecode' command.
14764 * .gdbinit (xprintbytestr): New command.
14765 (xwhichsymbols): Rename from `which'; all callers changed.
14766 (xbytecode): Print the byte-code string as well.
14767
14768 2011-10-29 Kim Storm <storm@cua.dk>
14769
14770 * alloc.c (which_symbols): New function.
14771
14772 2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
14773
14774 * minibuf.c (read_minibuf_noninteractive): Allow reading empty
14775 line. (Bug#9903)
14776
14777 2011-10-29 Glenn Morris <rgm@gnu.org>
14778
14779 * process.c (wait_reading_process_output): Revert 2009-08-30 change.
14780 Not clear what it was for, and it causes various bugs. (Bug#9839)
14781
14782 2011-10-28 Eli Zaretskii <eliz@gnu.org>
14783
14784 * xdisp.c (note_mouse_highlight): Initialize `part', to avoid a
14785 possible random value that matches one of those tested as
14786 condition to clear the mouse face.
14787
14788 2011-10-28 Chong Yidong <cyd@gnu.org>
14789
14790 * xdisp.c (note_mouse_highlight): Fix use of uninitialized var.
14791
14792 2011-10-28 Dan Nicolaescu <dann@ics.uci.edu>
14793
14794 * window.c (make_window): Initialize phys_cursor_on_p.
14795
14796 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
14797
14798 * lisp.h (struct Lisp_Symbol): Update comments.
14799
14800 2011-10-28 Juanma Barranquero <lekktu@gmail.com>
14801
14802 * w32font.c (w32_load_unicows_or_gdi32): Add missing return.
14803
14804 2011-10-28 Eli Zaretskii <eliz@gnu.org>
14805
14806 Fix Emacs on Windows 9X (bug#8562). Thanks to oslsachem
14807 <oslsachem@gmail.com> for helping to debug this.
14808
14809 * w32font.c (g_b_init_is_w9x, g_b_init_get_outline_metrics_w)
14810 (g_b_init_get_text_metrics_w, g_b_init_get_glyph_outline_w)
14811 (g_b_init_get_glyph_outline_w): New static variables.
14812 (GetOutlineTextMetricsW_Proc, GetTextMetricsW_Proc)
14813 (GetGlyphOutlineW_Proc): New typedefs.
14814 (w32_load_unicows_or_gdi32, get_outline_metrics_w)
14815 (get_text_metrics_w, get_glyph_outline_w, globals_of_w32font):
14816 New functions.
14817 (w32font_open_internal, compute_metrics):
14818 Call get_outline_metrics_w, get_text_metrics_w, and get_glyph_outline_w
14819 instead of calling the "wide" APIs directly.
14820
14821 * emacs.c (main) [HAVE_NTGUI]: Call globals_of_w32font.
14822
14823 * w32.h (syms_of_w32font): Add prototype.
14824
14825 2011-10-27 Juanma Barranquero <lekktu@gmail.com>
14826
14827 * window.c (Fframe_root_window, Fframe_first_window, Fwindow_end)
14828 (Fframe_selected_window, Ftemp_output_buffer_show, Fnext_window)
14829 (Fdelete_window_internal, Fwindow_parameters): Fix typos in docstrings.
14830 (Fmove_to_window_line): Doc fix.
14831
14832 2011-10-27 Chong Yidong <cyd@gnu.org>
14833
14834 * process.c (make_process): Set gnutls_state to NULL.
14835
14836 * gnutls.c (emacs_gnutls_deinit): Deinit the gnutls_state if it is
14837 non-NULL, regardless of GNUTLS_INITSTAGE.
14838 (Fgnutls_boot): Cleanups. Call emacs_gnutls_deinit if we signal
14839 an error. Set process slots as soon as we allocate them.
14840
14841 * gnutls.h (GNUTLS_LOG, GNUTLS_LOG2): Fix macros.
14842
14843 2011-10-27 Chong Yidong <cyd@gnu.org>
14844
14845 * gnutls.c (emacs_gnutls_deinit): New function.
14846 Deallocate credentials structures as well as calling gnutls_deinit.
14847 (Fgnutls_deinit, Fgnutls_boot): Use it.
14848
14849 * process.c (make_process): Initialize GnuTLS credentials to NULL.
14850 (deactivate_process): Call emacs_gnutls_deinit.
14851
14852 2011-10-27 Juanma Barranquero <lekktu@gmail.com>
14853
14854 * image.c (x_create_x_image_and_pixmap):
14855 * w32.c (sys_rename, w32_delayed_load):
14856 * w32font.c (fill_in_logfont):
14857 * w32reg.c (x_get_string_resource): Silence compiler warnings.
14858
14859 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
14860
14861 * w32fns.c (w32_default_color_map): New function,
14862 extracted from Fw32_default_color_map.
14863 (Fw32_default_color_map, Fx_open_connection): Use it. (Bug#9785)
14864
14865 2011-10-25 Paul Eggert <eggert@cs.ucla.edu>
14866
14867 * dispextern.h (Fcontrolling_tty_p): New decl (Bug#6649 part 2).
14868
14869 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
14870
14871 * keyboard.c (test_undefined): New function (bug#9751).
14872 (read_key_sequence): Use it to detect when a key is bound to `undefined'.
14873
14874 2011-10-25 Enami Tsugutomo <tsugutomo.enami@jp.sony.com>
14875
14876 * sysdep.c (init_sys_modes): Fix the check for the controlling
14877 terminal (Bug#6649).
14878
14879 2011-10-20 Eli Zaretskii <eliz@gnu.org>
14880
14881 * dispextern.h (struct bidi_it): New member next_en_type.
14882
14883 * bidi.c (bidi_line_init): Initialize the next_en_type member.
14884 (bidi_resolve_explicit_1): When next_en_pos is valid for the
14885 current character, check also for next_en_type being WEAK_EN.
14886 (bidi_resolve_weak): Don't enter the expensive loop if the current
14887 position is before next_en_pos. Record the bidi type of the first
14888 non-ET, non-BN character we find, in addition to its position.
14889 (bidi_level_of_next_char): Invalidate next_en_type when
14890 next_en_pos is over-stepped.
14891
14892 2011-10-20 Paul Eggert <eggert@cs.ucla.edu>
14893
14894 Time zone name fixes for non-ASCII locales (Bug#641, Bug#9794)
14895 * editfns.c: Rewrite current-time-zone so that it invokes
14896 the equivalent of (format-time-string "%Z") to get the time zone name.
14897 This fixes a bug when the time zone name contains characters that
14898 need converting from the system time locale to Emacs internal format.
14899 This fixes a shortcoming that I introduced in my 1999-10-19 patch:
14900 that patch fixed format-time-string to do the conversion, but
14901 I forgot to fix current-time-zone.
14902 (format_time_string): New function, containing most of
14903 what Fformat_time_string used to contain.
14904 (Fformat_time_string): Rewrite in terms of format_time_string.
14905 This doesn't change this function's behavior.
14906 (current-time-zone): Rewrite to use format_time_string.
14907 This fixes the bug reported by Michael Schierl in
14908 <http://lists.gnu.org/archive/html/emacs-devel/2007-06/msg00334.html>.
14909 Jason Rumney's 2007-06-07 change worked around this bug, but
14910 didn't fix it.
14911 * systime.h (tzname, timezone): Remove no-longer-used declarations.
14912
14913 2011-10-19 Eli Zaretskii <eliz@gnu.org>
14914
14915 * xdisp.c (start_display): If the character at POS is displayed
14916 via a display vector, reset IT->current.dpvec_index to zero.
14917 (try_window_reusing_current_matrix): If a line ends in a display
14918 vector or the next line starts in a display vector, continue
14919 redrawing the window even though the character position of
14920 start_row was reached.
14921 (Bug#9771, part 2)
14922
14923 2011-10-18 Chong Yidong <cyd@gnu.org>
14924
14925 * xdisp.c (get_next_display_element): Handle U+2010 and U+2011
14926 with nobreak-char-display too.
14927
14928 2011-10-18 Eli Zaretskii <eliz@gnu.org>
14929
14930 Fix part 3 of bug#9771.
14931 * bidi.c (bidi_line_init): Initialize next_en_pos to zero, not -1.
14932 (bidi_resolve_neutral): Don't enter the expensive loop looking for
14933 non-neutral characters if the current character is a paragraph
14934 separator (a.k.a. Newline). This avoids running the same
14935 expensive loop twice, once when we consume the preceding newline
14936 and the other time when the line actually needs to be displayed.
14937 Avoid the loop when we see neutrals on the base embedding level
14938 following a character whose directionality is the same as the
14939 paragraph's. This avoids running the expensive loop when a line
14940 ends in a long sequence of neutrals, like control characters.
14941 Add assertion against STRONG_AL type. Slightly rearrange code
14942 that determines the type of a neutral given the first non-neutral
14943 that follows it.
14944 (bidi_level_of_next_char): Set next_en_pos to zero when
14945 invalidating its info.
14946
14947 2011-10-17 Eli Zaretskii <eliz@gnu.org>
14948
14949 * xdisp.c (push_display_prop): Determine whether to record string
14950 or buffer position by IT->string, not by IT->method. Allow
14951 GET_FROM_DISPLAY_VECTOR as IT->method on entry. (Bug#9771, part 4)
14952 (move_it_vertically_backward): Don't look for character position
14953 immediately after the newline when in a continuation line.
14954 (Bug#9771, part 1)
14955
14956 2011-10-15 Martin Rudalics <rudalics@gmx.at>
14957
14958 * window.c (coordinates_in_window): Rewrite and delabelize
14959 vertical border check. (Bug#5357) (Bug#9618)
14960
14961 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
14962
14963 * xterm.c (frame_highlight, frame_unhighlight): Ignore unexplained
14964 errors in XSetWindowBorder (bug#9310).
14965
14966 2011-10-13 Dmitry Antipov <dmantipov@yandex.ru>
14967
14968 * editfns.c (Fset_time_zone_rule): Replace free with xfree to
14969 avoid crash when xmalloc overrun checking is enabled.
14970
14971 2011-10-13 Eli Zaretskii <eliz@gnu.org>
14972
14973 * xdisp.c (Fcurrent_bidi_paragraph_direction): Initialize
14974 itb.paragraph_dir to NEUTRAL_DIR. Fixes an occasional incorrect
14975 cursor motion with <left> and <right> arrow keys.
14976
14977 * bidi.c (bidi_init_it): Don't initialize paragraph_dir here, as
14978 some callers set that themselves.
14979
14980 2011-10-12 Eli Zaretskii <eliz@gnu.org>
14981
14982 * xdisp.c (find_row_edges): Handle the case where ROW comes from a
14983 display string and the previous row comes from the same string and
14984 is empty. (Bug#9739) (Bug#9738)
14985
14986 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
14987
14988 * doc.c (get_doc_string): Encode file name (bug#9735).
14989
14990 2011-10-12 Eli Zaretskii <eliz@gnu.org>
14991
14992 * bidi.c (bidi_level_of_next_char):
14993 * xdisp.c (get_visually_first_element): Remove old incorrect
14994 comments regarding the Unicode Line Separator character.
14995
14996 * bidi.c (bidi_init_it): Initialize paragraph_dir to NEUTRAL_DIR.
14997
14998 2011-10-12 Dmitry Antipov <dmantipov@yandex.ru>
14999
15000 * alloc.c (Fgc_status): Do not access beyond zombies array
15001 boundary if nzombies > MAX_ZOMBIES.
15002 * alloc.c (dump_zombies): Add missing format specifier.
15003
15004 2011-10-12 Paul Eggert <eggert@cs.ucla.edu>
15005
15006 * xdisp.c (set_cursor_from_row): Simplify conditionals,
15007 to pacify GCC 4.6.1 x86-64 with -O2 -Wstrict-overflow.
15008
15009 * lread.c (read_escape): Allow hex escapes as large as ?\xfffffff.
15010 Some packages use them to denote characters with modifiers.
15011
15012 2011-10-11 Andreas Schwab <schwab@linux-m68k.org>
15013
15014 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR)
15015 (GCPRO5_VAR, GCPRO6_VAR, UNGCPRO_VAR): Add whitespace to avoid
15016 matching a pp-number. Rename parameter var to var1.
15017
15018 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
15019
15020 * minibuf.c (Finternal_complete_buffer): Fix last change (bug#9709).
15021
15022 2011-10-08 Glenn Morris <rgm@gnu.org>
15023
15024 * callint.c (Fcall_interactively): Give a more explicit error for the
15025 'c' case with a non-character input. (Bug#8479)
15026
15027 2011-10-08 Eli Zaretskii <eliz@gnu.org>
15028
15029 * xdisp.c (hscroll_window_tree): Support hscroll in right-to-left
15030 lines.
15031 (set_cursor_from_row): Fix cursor positioning in mixed L2R+R2L
15032 lines that are hscrolled on the left.
15033
15034 * dispnew.c (buffer_posn_from_coords): Account for a possible
15035 presence of header-line. (Bug#4426)
15036
15037 2011-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
15038
15039 * buffer.c (syms_of_buffer) <enable-multibyte-characters>:
15040 Don't advertise functionality which we discourage or doesn't work.
15041
15042 2011-10-07 Paul Eggert <eggert@cs.ucla.edu>
15043
15044 * alloc.c (GC_LISP_OBJECT_ALIGNMENT): Use offsetof, not __alignof__
15045 or sizeof. __alignof__ gives the wrong answer on Fedora x86-64
15046 with GCC 4.6.1 when configured with CC='gcc -m32' --with-wide-int;
15047 this makes Emacs dump core during garbage collection on rare
15048 occasions. sizeof is obviously inferior to offsetof here, so
15049 stick with offsetof.
15050 (GC_POINTER_ALIGNMENT): New macro.
15051 (mark_memory): Omit 3rd (offset) arg; caller changed.
15052 Don't assume EMACS_INT alignment is the same as pointer alignment.
15053
15054 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
15055
15056 * keyboard.c (read_key_sequence_remapped): New var.
15057 (read_key_sequence): Compute remapping in the right buffer.
15058 (command_loop_1): Use read_key_sequence's remapping directly.
15059
15060 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
15061
15062 * dired.c (file_name_completion): Don't expand file name.
15063 (Ffile_name_completion, Ffile_name_all_completions): Expand file name
15064 before checking file name handler.
15065
15066 * minibuf.c (Finternal_complete_buffer): Only show internal buffers if
15067 they've been requested explicitly (bug#9591).
15068
15069 2011-10-01 Andreas Schwab <schwab@linux-m68k.org>
15070
15071 * keymap.c (Fsingle_key_description): Use make_specified_string
15072 instead of build_string to build string from push_key_description.
15073 (Bug#5193)
15074
15075 2011-09-30 Paul Eggert <eggert@cs.ucla.edu>
15076
15077 * buffer.h (struct buffer): Use time_t, not int, for a time stamp.
15078 This fixes a Y2038 bug on 64-bit hosts.
15079 * buffer.c (reset_buffer):
15080 * fileio.c (Fdo_auto_save, Fset_buffer_auto_saved)
15081 (Fclear_buffer_auto_save_failure):
15082 Use 0, not -1, to represent an unset failure time, since time_t
15083 might not be signed.
15084
15085 Remove dependency on glibc malloc internals.
15086 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
15087 Move back here from lisp.h, but with their new implementations.
15088 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
15089 (XMALLOC_OVERRUN_SIZE_SIZE): Move these new lisp.h macros here.
15090 * charset.c (charset_table_init): New static var.
15091 (syms_of_charset): Use it instead of xmalloc. This removes a
15092 dependency on glibc malloc internals. See Eli Zaretskii's comment in
15093 <http://lists.gnu.org/archive/html/emacs-devel/2011-09/msg00815.html>.
15094 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
15095 Move back to alloc.c.
15096 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
15097 (XMALLOC_OVERRUN_SIZE_SIZE): Move to alloc.c.
15098
15099 2011-09-30 Jan Djärv <jan.h.d@swipnet.se>
15100
15101 * nsterm.m (windowDidResize): Call x_set_window_size only when
15102 ns_in_resize is true. Otherwise set pixelwidth/height and
15103 call change_frame_size (Bug#9628).
15104
15105 2011-09-30 Paul Eggert <eggert@cs.ucla.edu>
15106
15107 Port --enable-checking=all to Fedora 14 x86-64.
15108 * charset.c (syms_of_charset): Also account for glibc malloc's
15109 internal overhead when calculating the initial malloc maximum.
15110
15111 Port --enable-checking=all to Fedora 14 x86.
15112 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
15113 Move to lisp.h.
15114 (xmalloc_put_size, xmalloc_get_size, overrun_check_malloc)
15115 (overrun_check_realloc, overrun_check_free):
15116 Use XMALLOC_OVERRUN_SIZE_SIZE, not sizeof (size_t).
15117 That way, xmalloc returns a properly-aligned pointer even if
15118 XMALLOC_OVERRUN_CHECK is defined. The old debugging code happened
15119 to align OK on typical 64-bit hosts, but not on Fedora 14 x86.
15120 * charset.c (syms_of_charset): Take XMALLOC_OVERRUN_CHECK_OVERHEAD
15121 into account when calculating the initial malloc maximum.
15122 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
15123 Move here from alloc.c, so that charset.c can use it too.
15124 Properly align; the old code wasn't right for common 32-bit hosts
15125 when configured with --enable-checking=all.
15126 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
15127 (XMALLOC_OVERRUN_SIZE_SIZE): New macros.
15128
15129 2011-09-29 Eli Zaretskii <eliz@gnu.org>
15130
15131 * sysdep.c (snprintf) [!EOVERFLOW]: If EOVERFLOW is not defined,
15132 use EDOM.
15133
15134 2011-09-28 Eli Zaretskii <eliz@gnu.org>
15135
15136 * xdisp.c (compute_display_string_end): If there's no display
15137 string at CHARPOS, return -1.
15138
15139 * bidi.c (bidi_fetch_char): When compute_display_string_end
15140 returns a negative value, treat the character as a normal
15141 character not covered by a display string. (Bug#9624)
15142
15143 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
15144
15145 * lread.c (Fread_from_string): Fix typo in docstring.
15146
15147 2011-09-27 Eli Zaretskii <eliz@gnu.org>
15148
15149 * xdisp.c (handle_invisible_prop): If invisible text ends on a
15150 newline, reseat the iterator instead of bidi-iterating there one
15151 character at a time. (Bug#9610)
15152 (BUFFER_POS_REACHED_P, move_it_in_display_line_to): Bail when past
15153 TO_CHARPOS if the bidi iterator is at base embedding level.
15154
15155 2011-09-27 Andreas Schwab <schwab@linux-m68k.org>
15156
15157 * lread.c (readevalloop): Use correct code for NBSP.
15158 (read1): Likewise. (Bug#9608)
15159
15160 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
15161
15162 * dbusbind.c (Fdbus_register_signal): When service is not
15163 registered, use nil in Vdbus_registered_objects_table. (Bug#9581)
15164
15165 2011-09-25 Glenn Morris <rgm@gnu.org>
15166
15167 * buffer.c (truncate-lines): Doc fix.
15168
15169 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
15170
15171 * window.c (Fwindow_prev_buffers, Fset_window_prev_buffers)
15172 (Fset_window_next_buffers): Doc fix.
15173
15174 2011-09-24 Glenn Morris <rgm@gnu.org>
15175
15176 * minibuf.c (read_minibuf): Disable line truncation. (Bug#5715)
15177
15178 2011-09-24 Paul Eggert <eggert@cs.ucla.edu>
15179
15180 Fix minor problems found by static checking.
15181 * xdisp.c (string_from_display_spec): Don't assume vecsize fits in int.
15182 * indent.c (Fvertical_motion): Fix == vs = typo.
15183
15184 2011-09-24 Eli Zaretskii <eliz@gnu.org>
15185
15186 * dispnew.c (syms_of_display) <redisplay-dont-pause>:
15187 Default value is now t. Doc fix.
15188
15189 * indent.c (Fvertical_motion): Compute and apply the overshoot
15190 logic when moving up, not only when moving down. Fix the
15191 confusing name and values of the it_overshoot_expected variable;
15192 logic changes accordingly. (Bug#9254) (Bug#9549)
15193
15194 * xdisp.c (pos_visible_p): Produce correct pixel coordinates when
15195 CHARPOS is covered by a display string which includes newlines.
15196 (move_it_vertically_backward): Avoid inflooping when START_CHARPOS
15197 is covered by a display string with embedded newlines.
15198
15199 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
15200
15201 * dbusbind.c (Fdbus_register_signal): Add match rule to
15202 Vdbus_registered_objects_table. (Bug#9581)
15203 (Fdbus_register_method, Vdbus_registered_objects_table):
15204 Fix docstring.
15205
15206 2011-09-24 Jim Meyering <meyering@redhat.com>
15207
15208 do not ignore write error for any output size
15209 The previous change was incomplete.
15210 While it makes emacs --batch detect the vast majority of stdout
15211 write failures, errors were still ignored whenever the output size is
15212 k * (BUFSIZ+1) - 4. E.g., on a system with BUFSIZ of 4096,
15213 $ emacs --batch --eval '(print (format "%4093d" 0))' > /dev/full \
15214 && echo FAIL: ignored write error
15215 FAIL: ignored write error
15216 $ emacs --batch --eval '(print (format "%20481d" 0))' > /dev/full \
15217 && echo FAIL: ignored write error
15218 FAIL: ignored write error
15219 * emacs.c (Fkill_emacs): Also test ferror. (Bug#9574)
15220
15221 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
15222
15223 * emacs.c (Fkill_emacs): In noninteractive mode exit
15224 non-successfully if a write error occurred on stdout. (Bug#9574)
15225
15226 2011-09-21 Eli Zaretskii <eliz@gnu.org>
15227
15228 * xdisp.c (pop_it): Allow it->object that is a cons cell to pass
15229 the xassert test.
15230
15231 * dispextern.h (struct it): Update the comment documenting what
15232 can it->OBJECT be.
15233
15234 2011-09-20 Eli Zaretskii <eliz@gnu.org>
15235
15236 * xdisp.c (set_cursor_from_row): If the row ends in a newline from
15237 a display string, extend search for cursor position to end of row.
15238 (find_row_edges): If the row ends in a newline from a display
15239 string, increment its MATRIX_ROW_END_CHARPOS by one. (Bug#9549)
15240 Handle the case of a display string with multiple newlines.
15241 (Fcurrent_bidi_paragraph_direction): Fix search for previous
15242 non-empty line. Fixes confusing cursor motion with arrow keys at
15243 the beginning of a line that starts with whitespace.
15244
15245 2011-09-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
15246
15247 * lread.c (Fread_from_string): Document what FINAL-STRING-INDEX is
15248 (bug#9493).
15249
15250 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
15251
15252 * xfns.c (Fx_create_frame): Handle the bitmapIcon resource as
15253 boolean (Bug#9154).
15254
15255 2011-09-18 Eli Zaretskii <eliz@gnu.org>
15256
15257 * xdisp.c (display_line): Record maximum and minimum buffer
15258 positions even if no glyphs were produced (e.g., by a zero-width
15259 stretch). Fixes bug#9530 on a TTY. Under word-wrap, don't record
15260 buffer positions that will be removed from the glyph row because
15261 they don't fit.
15262 (produce_stretch_glyph): Fix a bug in :align-to on a TTY when the
15263 column is beyond frame width: don't subtract 1 "pixel" when
15264 computing width of the stretch.
15265 (reseat_at_next_visible_line_start): Undo the change made on
15266 2011-09-17 that saved paragraph information and restored it after
15267 the call to `reseat'. (Bug#9545)
15268
15269 2011-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15270
15271 * xdisp.c (expose_window): Save original value of phys_cursor_on_p
15272 and turn window cursor on if cleared (Bug#9415).
15273
15274 2011-09-18 Andreas Schwab <schwab@linux-m68k.org>
15275
15276 * search.c (boyer_moore): Take unibyte characters from pattern
15277 literally. (Bug#9458)
15278
15279 2011-09-18 Eli Zaretskii <eliz@gnu.org>
15280
15281 * xdisp.c (reseat_at_next_visible_line_start): Fix last change.
15282
15283 2011-09-18 Paul Eggert <eggert@cs.ucla.edu>
15284
15285 Fix minor problem found by static checking.
15286 * xdisp.c (reseat_at_next_visible_line_start): Mark locals as
15287 initialized, to pacify gcc -Wuninitialized.
15288
15289 * fileio.c: Report proper errno when syscall falls.
15290 (Finsert_file_contents): Save and restore errno,
15291 so that report_file_error outputs the correct diagnostic.
15292 (Fwrite_region) [CLASH_DETECTION]: Likewise.
15293
15294 2011-09-18 Eli Zaretskii <eliz@gnu.org>
15295
15296 * .gdbinit (pgx): Fix references to fields of `struct glyph'.
15297
15298 2011-09-17 Eli Zaretskii <eliz@gnu.org>
15299
15300 * xdisp.c (produce_stretch_glyph): Another fix for changes made on
15301 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9530)
15302
15303 2011-09-17 Eli Zaretskii <eliz@gnu.org>
15304
15305 * xdisp.c (reseat_at_next_visible_line_start): Keep information
15306 about the current paragraph and restore it after the call to reseat.
15307
15308 * bidi.c (MAX_PARAGRAPH_SEARCH): New macro.
15309 (bidi_find_paragraph_start): Search back for paragraph beginning
15310 at most MAX_PARAGRAPH_SEARCH lines; if not found, return BEGV_BYTE.
15311 (bidi_move_to_visually_next): Only trigger paragraph-related
15312 computations when the last character is a newline or at EOB, not
15313 just any NEUTRAL_B. (Bug#9470)
15314
15315 * xdisp.c (set_cursor_from_row): Don't invoke special treatment of
15316 truncated lines if point is covered by a display string. (Bug#9524)
15317
15318 2011-09-16 Paul Eggert <eggert@cs.ucla.edu>
15319
15320 * xselect.c: Relax test for outgoing X longs (Bug#9498).
15321 (cons_to_x_long): New function.
15322 (lisp_data_to_selection_data): Use it. Correct the test for
15323 short-versus-long data; it was negated. Break out of vector
15324 loop, for efficiency, when a long datum is discovered.
15325
15326 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
15327
15328 * eval.c (Fquote): Document its non-consing behavior (bug#9482).
15329
15330 2011-09-16 Eli Zaretskii <eliz@gnu.org>
15331
15332 * image.c (tiff_handler): Work around a bug in MinGW GCC 3.x (see
15333 GCC PR/17406) by declaring this function with external scope.
15334
15335 2011-09-15 Paul Eggert <eggert@cs.ucla.edu>
15336
15337 * editfns.c (Fformat): Fix bug in text-property fix (Bug#9514).
15338 Don't mishandle (length (format "%%")) and (format "%4000s%%" "").
15339
15340 2011-09-15 Andreas Schwab <schwab@linux-m68k.org>
15341
15342 * editfns.c (Fformat): Correctly handle text properties on "%%".
15343
15344 2011-09-15 Eli Zaretskii <eliz@gnu.org>
15345
15346 * xterm.c (x_draw_composite_glyph_string_foreground):
15347 * w32term.c (x_draw_composite_glyph_string_foreground):
15348 * term.c (encode_terminal_code):
15349 * composite.c (composition_update_it, get_composition_id):
15350 * xdisp.c (get_next_display_element)
15351 (fill_composite_glyph_string): Add comments about special meaning
15352 of TAB characters in a composition.
15353
15354 2011-09-15 Paul Eggert <eggert@cs.ucla.edu>
15355
15356 * editfns.c (Fformat): Fix off-by-1 bug for "%%b" (Bug#9514).
15357 This occurs when processing a multibyte format.
15358 Problem reported by Wolfgang Jenker.
15359
15360 2011-09-15 Johan Bockgård <bojohan@gnu.org>
15361
15362 * xdisp.c (try_cursor_movement): Only check for exact match if
15363 cursor hpos found by set_cursor_from_row is valid. (Bug#9495)
15364
15365 2011-09-14 Paul Eggert <eggert@cs.ucla.edu>
15366
15367 Remove unused external symbols.
15368 * dispextern.h (calc_pixel_width_or_height): Remove decl.
15369 * xdisp.c (calc_pixel_width_or_height): Now static.
15370 * doprnt.c (exprintf) [! (HAVE_X_WINDOWS && USE_X_TOOLKIT)]: Remove.
15371 * indent.c (check_display_width):
15372 * w32term.c: Fix comment to match code.
15373 * xterm.c, xterm.h (x_catching_errors): Remove.
15374
15375 2011-09-14 Paul Eggert <eggert@cs.ucla.edu>
15376
15377 * xselect.c: Use signed conversions more consistently (Bug#9498).
15378 (selection_data_to_lisp_data): Assume incoming selection data are
15379 signed integers, not unsigned. This is to be consistent with
15380 outgoing selection data, which was modified to use signed integers
15381 in as part of the fix to Bug#9196 in response to Jan D.'s comment
15382 in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9196#32> that X11
15383 expects long, not unsigned long.
15384
15385 2011-09-14 Eli Zaretskii <eliz@gnu.org>
15386
15387 * xdisp.c (try_window_reusing_current_matrix): Fix incorrect
15388 computation of loop end. Reported by Johan Bockgård
15389 <bojohan@gnu.org>.
15390
15391 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
15392
15393 * frame.c (Fother_visible_frames_p): Function deleted.
15394
15395 2011-09-12 Eli Zaretskii <eliz@gnu.org>
15396
15397 * indent.c (compute_motion): Process display vector front to back
15398 rather than the other way around. (Bug#2496)
15399
15400 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
15401
15402 * fileio.c (Finsert_file_contents): Don't assume beg_offset is 0.
15403
15404 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
15405
15406 * minibuf.c (Fread_from_minibuffer): Doc fix.
15407
15408 2011-09-11 Eli Zaretskii <eliz@gnu.org>
15409
15410 * xdisp.c (produce_stretch_glyph): Fix a typo made in changes from
15411 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9475)
15412
15413 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
15414
15415 * fileio.c (Fvisited_file_modtime): Document `(-1 65535)' as a
15416 value for non-existent files.
15417
15418 2011-09-11 Eli Zaretskii <eliz@gnu.org>
15419
15420 * fileio.c (Finsert_file_contents): If the file cannot be opened,
15421 set its "size" to -1. This will set the modtime_size field of
15422 the corresponding buffer to -1, which is what
15423 verify-visited-file-modtime expects for files that do not exist.
15424 (Bug#9139)
15425
15426 2011-09-11 Paul Eggert <eggert@cs.ucla.edu>
15427
15428 * keymap.h (KEY_DESCRIPTION_SIZE, push_key_description): Move decls
15429 here ...
15430 * lisp.h: ... from here. push_key_description is no longer
15431 defined in keyboard.c, so its declaration should not be in
15432 lisp.h's "Defined in keyboard.c" section, and KEY_DESCRIPTION_SIZE
15433 logically belongs with push_key_description.
15434
15435 2011-09-10 Paul Eggert <eggert@cs.ucla.edu>
15436
15437 * buffer.h: Include <sys/types.h> instead of <time.h>.
15438 Otherwise, off_t wasn't defined on FreeBSD 9.0-BETA2 i386.
15439 Problem reported by Herbert J. Skuhra.
15440
15441 2011-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
15442
15443 * xml.c (parse_region): Make the parsing work for
15444 non-comment-starting XML files again (bug#9144).
15445
15446 2011-09-10 Andreas Schwab <schwab@linux-m68k.org>
15447
15448 * image.c (gif_load): Fix calculation of bottom and right corner.
15449 (Bug#9468)
15450
15451 2011-09-10 Eli Zaretskii <eliz@gnu.org>
15452
15453 * xdisp.c (MAX_DISP_SCAN): Decrease to 250. Prevents sluggish
15454 redisplay in small windows.
15455
15456 2011-09-09 Eli Zaretskii <eliz@gnu.org>
15457
15458 * frame.c (x_report_frame_params): Cast to avoid compiler warnings.
15459
15460 2011-09-08 Martin Rudalics <rudalics@gmx.at>
15461
15462 * window.c (Fset_window_prev_buffers, Fset_window_next_buffers):
15463 Operate on live windows only.
15464
15465 2011-09-08 Juanma Barranquero <lekktu@gmail.com>
15466
15467 * emacs.c (my_heap_start): #ifdef to avoid warnings when unused.
15468
15469 2011-09-07 Eli Zaretskii <eliz@gnu.org>
15470
15471 * xdisp.c (move_it_in_display_line_to): Call RESTORE_IT on ppos_it
15472 only under bidi iteration.
15473
15474 2011-09-07 Jan Djärv <jan.h.d@swipnet.se>
15475
15476 * gtkutil.c (xg_make_tool_item): Insert comment about eventbox.
15477
15478 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
15479
15480 isnan: Fix porting problem to Solaris 10 with bundled gcc.
15481 Without this fix, the command to link temacs failed due to an
15482 undefined symbol __builtin_isnan. This is because
15483 /usr/include/iso/math_c99.h #defines isnan(x) to
15484 __builtin_isnan(x), but the bundled gcc, which identifies itself
15485 as gcc 3.4.3 (csl-sol210-3_4-branch+sol_rpath), does not have
15486 a __builtin_isnan.
15487 * floatfns.c (isnan): #undef, and then #define to a clone of
15488 what's in data.c.
15489 (Fisnan): Always define, since it's always available now.
15490 (syms_of_floatfns): Always define isnan at the Lisp level.
15491
15492 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
15493
15494 * Makefile.in (gl-stamp): move-if-change now in build-aux (Bug#9169).
15495
15496 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
15497
15498 * fileio.c: Fix bugs with large file offsets (Bug#9428).
15499 The previous code assumed that file offsets (off_t values) fit in
15500 EMACS_INT variables, which is not true on typical 32-bit hosts.
15501 The code messed up by falsely reporting buffer overflow in cases
15502 such as (insert-file-contents "big" nil 1 2) into an empty buffer
15503 when "big" contains more than 2**29 bytes, even though this
15504 inserts just one byte and does not overflow the buffer.
15505 (Finsert_file_contents): Store file offsets as off_t
15506 values, not as EMACS_INT values. Check for overflow when
15507 converting between EMACS_INT and off_t. When checking for
15508 buffer overflow or for overlap, take the offsets into account.
15509 Don't use EMACS_INT for small values where int suffices.
15510 When checking for overlap, fix a typo: ZV was used where
15511 ZV_BYTE was intended.
15512 (Fwrite_region): Don't assume off_t fits into 'long'.
15513 * buffer.h (struct buffer.modtime_size): Now off_t, not EMACS_INT.
15514
15515 2011-09-05 Michael Albinus <michael.albinus@gmx.de>
15516
15517 * dbusbind.c (xd_signature_cat): Rename from signature_cat.
15518
15519 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
15520
15521 sprintf-related integer and memory overflow issues (Bug#9412).
15522
15523 * doprnt.c (doprnt): Support printing ptrdiff_t and intmax_t values.
15524 (esprintf, exprintf, evxprintf): New functions.
15525 * keyboard.c (command_loop_level): Now EMACS_INT, not int.
15526 (cmd_error): Kbd macro iterations count is now EMACS_INT, not int.
15527 (modify_event_symbol): Do not assume that the length of
15528 name_alist_or_stem is safe to alloca and fits in int.
15529 (Fexecute_extended_command): Likewise for function name and binding.
15530 (Frecursion_depth): Wrap around reliably on integer overflow.
15531 * keymap.c (push_key_description): First arg is now EMACS_INT, not int,
15532 since some callers pass EMACS_INT values.
15533 (Fsingle_key_description): Don't crash if symbol name contains more
15534 than MAX_ALLOCA bytes.
15535 * minibuf.c (minibuf_level): Now EMACS_INT, not int.
15536 (get_minibuffer): Arg is now EMACS_INT, not int.
15537 * lisp.h (get_minibuffer, push_key_description): Reflect API changes.
15538 (esprintf, exprintf, evxprintf): New decls.
15539 * window.h (command_loop_level, minibuf_level): Reflect API changes.
15540
15541 * dbusbind.c (signature_cat): New function.
15542 (xd_signature, Fdbus_register_signal):
15543 Do not overrun buffer; instead, report string overflow.
15544
15545 * dispnew.c (add_window_display_history): Don't overrun buffer.
15546 Truncate instead; this is OK since it's just a log.
15547
15548 * editfns.c (Fcurrent_time_zone): Don't overrun buffer
15549 even if the time zone offset is outlandishly large.
15550 Don't mishandle offset == INT_MIN.
15551
15552 * emacs.c (main) [NS_IMPL_COCOA]: Don't overrun buffer
15553 when creating daemon; the previous buffer-overflow check was incorrect.
15554
15555 * eval.c (verror): Simplify by rewriting in terms of evxprintf,
15556 which has the guts of the old verror function.
15557
15558 * filelock.c (lock_file_1, lock_file): Don't blindly alloca long name;
15559 use SAFE_ALLOCA instead. Use esprintf to avoid int-overflow issues.
15560
15561 * font.c: Include <float.h>, for DBL_MAX_10_EXP.
15562 (font_unparse_xlfd): Don't blindly alloca long strings.
15563 Don't assume XINT result fits in int, or that XFLOAT_DATA * 10
15564 fits in int, when using sprintf. Use single snprintf to count
15565 length of string rather than counting it via multiple sprintfs;
15566 that's simpler and more reliable.
15567 (font_unparse_fcname): Use it to avoid sprintf buffer overrun.
15568 (generate_otf_features) [0 && HAVE_LIBOTF]: Use esprintf, not
15569 sprintf, in case result does not fit in int.
15570
15571 * fontset.c (num_auto_fontsets): Now printmax_t, not int.
15572 (fontset_from_font): Print it.
15573
15574 * frame.c (tty_frame_count): Now printmax_t, not int.
15575 (make_terminal_frame, set_term_frame_name): Print it.
15576 (x_report_frame_params): In X, window IDs are unsigned long,
15577 not signed long, so print them as unsigned.
15578 (validate_x_resource_name): Check for implausibly long names,
15579 and don't assume name length fits in 'int'.
15580 (x_get_resource_string): Don't blindly alloca invocation name;
15581 use SAFE_ALLOCA. Use esprintf, not sprintf, in case result does
15582 not fit in int.
15583
15584 * gtkutil.c: Include <float.h>, for DBL_MAX_10_EXP.
15585 (xg_check_special_colors, xg_set_geometry):
15586 Make sprintf buffers a bit bigger, to avoid potential buffer overrun.
15587
15588 * lread.c (dir_warning): Don't blindly alloca buffer; use SAFE_ALLOCA.
15589 Use esprintf, not sprintf, in case result does not fit in int.
15590
15591 * macros.c (executing_kbd_macro_iterations): Now EMACS_INT, not int.
15592 (Fend_kbd_macro): Don't mishandle MOST_NEGATIVE_FIXNUM by treating
15593 it as a large positive number.
15594 (Fexecute_kbd_macro): Don't assume repeat count fits in int.
15595 * macros.h (executing_kbd_macro_iterations): Now EMACS_INT, not int.
15596
15597 * nsterm.m ((NSSize)windowWillResize): Use esprintf, not sprintf,
15598 in case result does not fit in int.
15599
15600 * print.c (float_to_string): Detect width overflow more reliably.
15601 (print_object): Make sprintf buffer a bit bigger, to avoid potential
15602 buffer overrun. Don't assume list length fits in 'int'. Treat
15603 print length of 0 as 0, not as infinity; to be consistent with other
15604 uses of print length in this function. Don't overflow print length
15605 index. Don't assume hash table size fits in 'long', or that
15606 vectorlike size fits in 'unsigned long'.
15607
15608 * process.c (make_process): Use printmax_t, not int, to format
15609 process-name gensyms.
15610
15611 * sysdep.c (snprintf) [! HAVE_SNPRINTF]: New function.
15612
15613 * term.c (produce_glyphless_glyph): Make sprintf buffer a bit bigger
15614 to avoid potential buffer overrun.
15615
15616 * xfaces.c (x_update_menu_appearance): Don't overrun buffer
15617 if X resource line is longer than 512 bytes.
15618
15619 * xfns.c (x_window): Make sprintf buffer a bit bigger
15620 to avoid potential buffer overrun.
15621
15622 * xterm.c (x_io_error_quitter): Don't overrun sprintf buffer.
15623
15624 * xterm.h (x_check_errors): Add ATTRIBUTE_FORMAT_PRINTF.
15625
15626 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
15627
15628 Integer overflow fixes for scrolling, etc.
15629 Without these, Emacs silently mishandles large integers sometimes.
15630 For example, "C-u 4294967297 M-x recenter" was treated as if
15631 it were "C-u 1 M-x recenter" on a typical 64-bit host.
15632
15633 * xdisp.c (try_window_id): Check Emacs fixnum range before
15634 converting to 'int'.
15635
15636 * window.c (window_scroll_line_based, Frecenter):
15637 Check that an Emacs fixnum is in range before assigning it to 'int'.
15638 (Frecenter, Fmove_to_window_line): Use EMACS_INT, not int, for
15639 values converted from Emacs fixnums.
15640 (Frecenter): Don't wrap around a line count if it is out of 'int'
15641 range; instead, treat it as an extreme value.
15642 (Fset_window_configuration, compare_window_configurations):
15643 Use ptrdiff_t, not int, for index that might exceed 2 GiB.
15644
15645 * search.c (Freplace_match): Use ptrdiff_t, not int, for indexes
15646 that can exceed INT_MAX. Check that EMACS_INT value is in range
15647 before assigning it to the (possibly-narrower) index.
15648 (match_limit): Don't assume that a fixnum can fit in 'int'.
15649
15650 * print.c (print_object): Use ptrdiff_t, not int, for index that can
15651 exceed INT_MAX.
15652
15653 * indent.c (position_indentation): Now takes ptrdiff_t, not int.
15654 (Fvertical_motion): Don't wrap around LINES values that don't fit
15655 in 'int'. Instead, treat them as extreme values. This is good
15656 enough for windows, which can't have more than INT_MAX lines anyway.
15657
15658 2011-09-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
15659
15660 * Require libxml/parser.h to avoid compilation warning.
15661
15662 * emacs.c (shut_down_emacs): Call xmlCleanupParser on shutdown.
15663
15664 * xml.c (parse_region): Don't call xmlCleanupParser after parsing,
15665 since this reportedly can destroy thread storage.
15666
15667 2011-08-30 Chong Yidong <cyd@stupidchicken.com>
15668
15669 * syntax.c (find_defun_start): Update all cache variables if
15670 exiting early (Bug#9401).
15671
15672 2011-08-30 Eli Zaretskii <eliz@gnu.org>
15673
15674 * image.c (x_bitmap_pixmap): Cast to int to avoid compiler warnings.
15675
15676 * xdisp.c (produce_stretch_glyph): No longer static, compiled also
15677 when HAVE_WINDOW_SYSTEM is not defined. Support both GUI and TTY
15678 frames. Call tty_append_glyph in the TTY case. (Bug#9402)
15679
15680 * term.c (tty_append_glyph): New function.
15681 (produce_stretch_glyph): Static function and its prototype deleted.
15682
15683 * dispextern.h (produce_stretch_glyph, tty_append_glyph):
15684 Add prototypes.
15685
15686 2011-08-29 Paul Eggert <eggert@cs.ucla.edu>
15687
15688 * image.c (parse_image_spec): Check for nonnegative, not for positive,
15689 when checking :margin (Bug#9390).
15690 (IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR):
15691 Rename from IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR,
15692 so that the name doesn't mislead. All uses changed.
15693
15694 2011-08-28 Johan Bockgård <bojohan@gnu.org>
15695
15696 * term.c (init_tty) [HAVE_GPM]: Move mouse settings after
15697 set_tty_hooks.
15698
15699 2011-08-27 Eli Zaretskii <eliz@gnu.org>
15700
15701 * xdisp.c (move_it_to): Don't bail out early when reaching
15702 position beyond to_charpos, if we are scanning backwards.
15703 (move_it_vertically_backward): When DY == 0, make sure we get to
15704 the first character in the line after the newline.
15705
15706 2011-08-27 Paul Eggert <eggert@cs.ucla.edu>
15707
15708 * ccl.c: Improve and simplify overflow checking (Bug#9196).
15709 (ccl_driver): Do not generate an out-of-range pointer.
15710 (Fccl_execute_on_string): Remove unnecessary check for
15711 integer overflow, noted by Stefan Monnier in
15712 <http://lists.gnu.org/archive/html/emacs-devel/2011-08/msg00979.html>.
15713 Remove a FIXME that didn't need fixing.
15714 Simplify the newly-introduced buffer reallocation code.
15715
15716 2011-08-27 Juanma Barranquero <lekktu@gmail.com>
15717
15718 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on lib/verify.h.
15719
15720 2011-08-26 Paul Eggert <eggert@cs.ucla.edu>
15721
15722 Integer and memory overflow issues (Bug#9196).
15723
15724 * doc.c (get_doc_string): Rework so that
15725 get_doc_string_buffer_size is the actual buffer size, rather than
15726 being 1 less than the actual buffer size; this makes xpalloc more
15727 convenient.
15728
15729 * image.c (x_allocate_bitmap_record, cache_image):
15730 * xselect.c (Fx_register_dnd_atom):
15731 Simplify previous changes by using xpalloc.
15732
15733 * buffer.c (overlay_str_len): Now ptrdiff_t, not EMACS_INT,
15734 since either will do and ptrdiff_t is convenient with xpalloc.
15735
15736 * charset.c (charset_table_size)
15737 (struct charset_sort_data.priority): Now ptrdiff_t.
15738 (charset_compare): Don't overflow if priorities differ greatly.
15739 (Fsort_charsets): Don't assume list length fits in int.
15740 Check for size-calculation overflow when allocating sort data.
15741 (syms_of_charset): Allocate an initial charset table that is
15742 just under 64 KiB, to avoid problems with glibc malloc and mmap.
15743
15744 * cmds.c (internal_self_insert): Check for size-calculation overflow.
15745
15746 * composite.h (struct composition.glyph_len): Now int, not unsigned.
15747 The actual value is always <= INT_MAX, and leaving it unsigned made
15748 overflow checking harder.
15749
15750 * dispextern.h (struct glyph_matrix.rows_allocated)
15751 (struct face_cache.size): Now ptrdiff_t, for convenience in use
15752 with xpalloc. The values are still always <= INT_MAX.
15753
15754 * indent.c (compute_motion): Adjust to region_cache_forward sig change.
15755
15756 * lisp.h (xnmalloc, xnrealloc, xpalloc): New decls.
15757 (SAFE_NALLOCA): New macro.
15758
15759 * region-cache.c (struct boundary.pos, find_cache_boundary)
15760 (move_cache_gap, insert_cache_boundary, delete_cache_boundaries)
15761 (set_cache_region, invalidate_region_cache)
15762 (revalidate_region_cache, know_region_cache, region_cache_forward)
15763 (region_cache_backward, pp_cache):
15764 Use ptrdiff_t, not EMACS_INT, since either will do. This is needed
15765 so that ptrdiff_t * can be passed to xpalloc.
15766 (struct region_cache): Similarly, for gap_start, gap_len, cache_len,
15767 beg_unchanged, end_unchanged, buffer_beg, buffer_end members.
15768 (pp_cache): Don't assume cache_len fits in int.
15769 * region-cache.h: Adjust extern decls to match.
15770
15771 * search.c (scan_buffer, Freplace_match): Use ptrdiff_t, not
15772 EMACS_INT, since either will do, for xpalloc.
15773
15774 * alloc.c: Include verify.h, and check that int fits in ptrdiff_t.
15775 (xnmalloc, xnrealloc, xpalloc): New functions.
15776
15777 * bidi.c (bidi_shelve_header_size): New constant.
15778 (bidi_cache_ensure_space, bidi_shelve_cache): Use it.
15779 (bidi_cache_ensure_space): Avoid integer overflow when allocating.
15780
15781 * bidi.c (bidi_cache_shrink):
15782 * buffer.c (overlays_at, overlays_in, record_overlay_string)
15783 (overlay_strings):
15784 Don't update size of array until after memory allocation succeeds,
15785 because xmalloc/xrealloc may not return.
15786 (struct sortstrlist.bytes): Now ptrdiff_t, as EMACS_INT doesn't help
15787 now that we have proper integer overflow checking.
15788 (record_overlay_string, overlay_strings): Catch overflows when
15789 calculating size of overlay_str_buf.
15790
15791 * callproc.c (Fcall_process): Check for size overflow when
15792 calculating size of args2.
15793 (child_setup): Avoid overflow by using size_t rather than ptrdiff_t.
15794 Normally we prefer signed values, but sticking with ptrdiff_t would
15795 require adding more-complicated checks.
15796
15797 * ccl.c (Fccl_execute_on_string): Check for memory overflow.
15798 Use ptrdiff_t rather than EMACS_INT where ptrdiff_t will do.
15799 Redo buffer-overflow calculations to avoid integer overflow.
15800 Add a FIXME comment where memory seems to be over-allocated.
15801
15802 * character.c (Fstring): Check for size-calculation overflow.
15803
15804 * coding.c (produce_chars): Redo buffer-overflow calculations to avoid
15805 unnecessary integer overflow. Check for size overflow.
15806 (encode_coding_object): Don't update size until xmalloc succeeds.
15807
15808 * composite.c (get_composition_id): Check for overflow in glyph
15809 length calculations.
15810
15811 Integer and memory overflow fixes for display code.
15812 * dispextern.h (struct glyph_pool.nglyphs): Now ptrdiff_t, not int.
15813 * dispnew.c (adjust_glyph_matrix, realloc_glyph_pool)
15814 (scrolling_window): Check for overflow in size calculations.
15815 (line_draw_cost, realloc_glyph_pool, add_row_entry):
15816 Don't assume glyph table len fits in int.
15817 (struct row_entry.bucket, row_entry_pool_size, row_entry_idx)
15818 (row_table_size): Now ptrdiff_t, not int.
15819 (scrolling_window): Avoid overflow in size calculations.
15820 Don't update size until allocation succeeds.
15821 * fns.c (concat): Check for overflow in size calculations.
15822 (next_almost_prime): Verify NEXT_ALMOST_PRIME_LIMIT.
15823 * lisp.h (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
15824 (NEXT_ALMOST_PRIME_LIMIT): New constant.
15825
15826 * doc.c (get_doc_string_buffer_size): Now ptrdiff_t, not int.
15827 (get_doc_string): Check for size calculation overflow.
15828 Don't update size until allocation succeeds.
15829 (get_doc_string, Fsubstitute_command_keys): Use ptrdiff_t, not
15830 EMACS_INT, where ptrdiff_t will do.
15831 (Fsubstitute_command_keys): Check for string overflow.
15832
15833 * editfns.c (set_time_zone_rule): Don't assume environment length
15834 fits in int.
15835 (message_length): Now ptrdiff_t, not int.
15836 (Fmessage_box): Don't update size until allocation succeeds.
15837 Don't assume message length fits in int.
15838 (Fformat): Use ptrdiff_t, not EMACS_INT, where ptrdiff_t will do.
15839
15840 * emacs.c (main): Do not reallocate argv, since there is a null at
15841 the end that can be overwritten, and this way there's no need to
15842 worry about size-calculation overflow.
15843 (sort_args): Check for size-calculation overflow.
15844
15845 * eval.c (init_eval_once, grow_specpdl): Don't update size until
15846 alloc succeeds.
15847 (call_debugger, grow_specpdl): Redo calculations to avoid overflow.
15848
15849 * frame.c (set_menu_bar_lines, x_set_frame_parameters)
15850 (x_set_scroll_bar_width, x_figure_window_size):
15851 Check for integer overflow.
15852 (x_set_alpha): Do not assume XINT fits in int.
15853
15854 * frame.h (struct frame): Use int, not EMACS_INT, where int works.
15855 This is for the members text_lines, text_cols, total_lines, total_cols,
15856 where the system imposes an 'int' limit.
15857
15858 * fringe.c (Fdefine_fringe_bitmap):
15859 Don't update size until alloc works.
15860
15861 * ftfont.c (ftfont_get_open_type_spec, setup_otf_gstring)
15862 (ftfont_shape_by_flt): Check for integer overflow in size calculations.
15863
15864 * gtkutil.c (get_utf8_string, xg_store_widget_in_map):
15865 Check for size-calculation overflow.
15866 (get_utf8_string): Use ptrdiff_t, not size_t, where either will
15867 do, as we prefer signed integers.
15868 (id_to_widget.max_size, id_to_widget.used)
15869 (xg_store_widget_in_map, xg_remove_widget_from_map)
15870 (xg_get_widget_from_map, xg_get_scroll_id_for_window)
15871 (xg_remove_scroll_bar, xg_update_scrollbar_pos):
15872 Use and return ptrdiff_t, not int.
15873 (xg_gtk_scroll_destroy): Don't assume ptrdiff_t fits in int.
15874 * gtkutil.h: Change prototypes to match the above.
15875
15876 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): Remove; these
15877 are duplicate now that they've been promoted to lisp.h.
15878 (x_allocate_bitmap_record, x_alloc_image_color)
15879 (make_image_cache, cache_image, xpm_load):
15880 Don't update size until alloc is done.
15881 (xpm_load, lookup_rgb_color, lookup_pixel_color, x_to_xcolors)
15882 (x_detect_edges):
15883 Check for size calculation overflow.
15884 (ct_colors_allocated_max): New constant.
15885 (x_to_xcolors, x_detect_edges): Reorder multiplicands to avoid
15886 overflow.
15887
15888 * keyboard.c (read_char, menu_bar_items, tool_bar_items)
15889 (read_char_x_menu_prompt, read_char_minibuf_menu_width)
15890 (read_char_minibuf_menu_prompt, follow_key, read_key_sequence):
15891 Use ptrdiff_t, not int, to count maps.
15892 (read_char_minibuf_menu_prompt): Check for overflow in size
15893 calculations. Don't update size until allocation succeeds.
15894 Redo calculations to avoid overflow.
15895 * keyboard.h: Change prototypes to match the above.
15896
15897 * keymap.c (cmm_size, current_minor_maps): Use ptrdiff_t, not int,
15898 to count maps.
15899 (current_minor_maps): Check for size calculation overflow.
15900 * keymap.h: Change prototypes to match the above.
15901
15902 * lread.c (read1, init_obarray): Don't update size until alloc done.
15903
15904 * macros.c (Fstart_kbd_macro): Don't update size until alloc done.
15905 (store_kbd_macro_char): Reorder multiplicands to avoid overflow.
15906
15907 * nsterm.h (struct ns_color_table.size, struct ns_color_table.avail):
15908 Now ptrdiff_t, not int.
15909 * nsterm.m (ns_index_color): Use ptrdiff_t, not int, for table indexes.
15910 (ns_draw_fringe_bitmap): Rewrite to avoid overflow.
15911
15912 * process.c (Fnetwork_interface_list): Check for overflow
15913 in size calculation.
15914
15915 * region-cache.c (move_cache_gap): Check for size calculation overflow.
15916
15917 * scroll.c (do_line_insertion_deletion_costs): Check for size calc
15918 overflow. Don't bother calling xmalloc when xrealloc will do.
15919
15920 * search.c (Freplace_match): Check for size calculation overflow.
15921 (Fset_match_data): Don't assume list lengths fit in 'int'.
15922
15923 * sysdep.c (system_process_attributes): Use ptrdiff_t, not int,
15924 for command line length. Do not attempt to address one before the
15925 beginning of an array, as that's not portable.
15926
15927 * term.c (max_frame_lines): Remove; unused.
15928 (encode_terminal_src_size, encode_terminal_dst_size): Now ptrdiff_t,
15929 not int.
15930 (encode_terminal_code, calculate_costs): Check for size
15931 calculation overflow.
15932 (encode_terminal_code): Use ptrdiff_t, not int, to record glyph
15933 table lengths and related sizes. Don't update size until alloc
15934 done. Redo calculations to avoid overflow.
15935 (calculate_costs): Don't bother calling xmalloc when xrealloc will do.
15936
15937 * termcap.c (tgetent): Use ptrdiff_t, not int, to record results of
15938 subtracting pointers.
15939 (gobble_line): Check for overflow more carefully. Don't update size
15940 until alloc done.
15941
15942 * tparam.c (tparam1): Use ptrdiff_t, not int, for sizes.
15943 Don't update size until alloc done.
15944 Redo size calculations to avoid overflow.
15945 Check for size calculation overflow.
15946 (main) [DEBUG]: Fix typo in invoking tparam1.
15947
15948 * xdisp.c (store_mode_line_noprop_char, x_consider_frame_title):
15949 Use ptrdiff_t, not int, for sizes.
15950 (store_mode_line_noprop_char): Don't update size until alloc done.
15951
15952 * xfaces.c (lface_id_to_name_size, Finternal_make_lisp_face):
15953 Use ptrdiff_t, not int, for sizes.
15954 (Finternal_make_lisp_face, cache_face):
15955 Check for size calculation overflow.
15956 (cache_face): Treat size calculation overflows as if they were
15957 memory exhaustion (the usual treatment), rather than aborting.
15958
15959 * xfns.c (x_encode_text, x_set_name_internal)
15960 (Fx_change_window_property): Use ptrdiff_t, not int, to count
15961 sizes, since they can exceed INT_MAX in size. Check for size
15962 calculation overflow.
15963
15964 * xgselect.c (gfds_size): Now ptrdiff_t, for convenience with xpalloc.
15965 (xg_select): Check for size calculation overflow.
15966 Don't update size until alloc done.
15967
15968 * xrdb.c (get_environ_db): Don't assume path length fits in int,
15969 as sprintf is limited to int lengths.
15970
15971 * xselect.c (X_LONG_SIZE, X_SHRT_MAX, X_SHRT_MIN, X_LONG_MAX)
15972 (X_LONG_MIN): New macros.
15973 Use them to make the following changes clearer.
15974 (MAX_SELECTION_QUANTUM): Make the other bounds on this value clearer.
15975 This change doesn't affect the value now, but it may help remind
15976 future maintainers not to raise the value too much later.
15977 (SELECTION_QUANTUM): Remove, replacing with ...
15978 (selection_quantum): ... new function, which avoids overflow.
15979 All uses changed.
15980 (struct selection_data.size): Now ptrdiff_t, not int, to avoid
15981 assumption that selection length fits in 'int'.
15982 (x_reply_selection_request, x_handle_selection_request)
15983 (x_get_window_property, receive_incremental_selection)
15984 (x_get_window_property_as_lisp_data, selection_data_to_lisp_data)
15985 (lisp_data_to_selection_data, clean_local_selection_data):
15986 Use ptrdiff_t, not int, to record length of selection.
15987 (x_reply_selection_request, x_get_window_property)
15988 (receive_incremental_selection, x_property_data_to_lisp):
15989 Redo calculations to avoid overflow.
15990 (x_reply_selection_request): When sending hint, ceiling it at
15991 X_LONG_MAX rather than relying on wraparound overflow to send
15992 something.
15993 (x_get_window_property, receive_incremental_selection)
15994 (lisp_data_to_selection_data, x_property_data_to_lisp):
15995 Check for size-calculation overflow.
15996 (x_get_window_property, receive_incremental_selection)
15997 (lisp_data_to_selection_data, Fx_register_dnd_atom):
15998 Don't store size until memory allocation succeeds.
15999 (x_get_window_property): Plug memory leak on memory exhaustion.
16000 Don't double-block input; malloc is safe here. Don't assume 2**34
16001 - 4 fits in unsigned long. Add an xassert to check
16002 XGetWindowProperty overflow. Be more careful about overflow
16003 calculations, and distinguish size from memory overflow better.
16004 (receive_incremental_selection): When tracing, don't assume
16005 unsigned int is less than INT_MAX.
16006 (x_selection_data_to_lisp_data): Remove unnecessary (and in theory
16007 harmful) conversions of unsigned short to int.
16008 (lisp_data_to_selection_data): Don't assume that integers
16009 in the range -65535 through -1 fit in an X unsigned short.
16010 Don't assume that ULONG_MAX == X_ULONG_MAX. Don't store into
16011 result parameters unless successful. Rely on cons_to_unsigned
16012 to report problems with elements; the old code wasn't right anyway.
16013 (x_check_property_data): Check for int overflow; we cannot use
16014 a wider type due to X limits.
16015 (x_handle_dnd_message): Use unsigned int, to avoid int overflow.
16016
16017 * xsmfns.c (smc_save_yourself_CB): Check for size calc overflow.
16018
16019 * xterm.c (x_color_cells, x_send_scrollbar_event, handle_one_xevent)
16020 (x_term_init): Check for size calculation overflow.
16021 (x_color_cells): Don't store size until memory allocation succeeds.
16022 (handle_one_xevent): Use ptrdiff_t, not int, for byte counts.
16023 Don't assume alloca size is less than MAX_ALLOCA.
16024 (x_term_init): Don't assume length fits in int (sprintf is limited
16025 to int size).
16026
16027 Use ptrdiff_t for composition IDs.
16028 * character.c (lisp_string_width):
16029 * composite.c (composition_table_size, n_compositions)
16030 (get_composition_id, composition_gstring_from_id):
16031 * dispextern.h (struct glyph_string.cmp_id, struct composition_it.id):
16032 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING):
16033 * window.c (Frecenter):
16034 Use ptrdiff_t, not int, for composition IDs.
16035 * composite.c (get_composition_id): Check for integer overflow.
16036 * composite.h: Adjust prototypes to match the above changes.
16037
16038 Use ptrdiff_t for hash table indexes.
16039 * category.c (hash_get_category_set):
16040 * ccl.c (ccl_driver):
16041 * charset.h (struct charset.hash_index, CHECK_CHARSET_GET_ID):
16042 * coding.c (coding_system_charset_list, detect_coding_system):
16043 * coding.h (struct coding_system.id):
16044 * composite.c (get_composition_id, gstring_lookup_cache):
16045 * fns.c (hash_lookup, hash_put, Fgethash, Fputhash):
16046 * image.c (xpm_get_color_table_h):
16047 * lisp.h (hash_lookup, hash_put):
16048 * minibuf.c (Ftest_completion):
16049 Use ptrdiff_t for hash table indexes, not int (which is too
16050 narrow, on 64-bit hosts) or EMACS_INT (which is too wide, on
16051 32-bit --with-wide-int hosts).
16052
16053 * charset.c (Fdefine_charset_internal): Check for integer overflow.
16054 Add a FIXME comment about memory leaks.
16055 (syms_of_charset): Don't assume xmalloc returns.
16056
16057 Don't assume that stated character widths fit in int.
16058 * character.c (Fchar_width, c_string_width, lisp_string_width):
16059 * character.h (CHAR_WIDTH):
16060 * indent.c (MULTIBYTE_BYTES_WIDTH):
16061 Use sanitize_char_width to avoid undefined and/or bad behavior
16062 with outlandish widths.
16063 * character.h (sanitize_tab_width): Rename from sanitize_width,
16064 now that we have two such functions. All uses changed.
16065 (sanitize_char_width): New inline function.
16066
16067 Don't assume that tab-width fits in int.
16068 * character.h (sanitize_width): New inline function.
16069 (SANE_TAB_WIDTH): New macro.
16070 (ASCII_CHAR_WIDTH): Use it.
16071 * indent.c (sane_tab_width): Remove. All uses replaced by
16072 SANE_TAB_WIDTH (current_buffer).
16073 * xdisp.c (init_iterator): Use SANE_TAB_WIDTH.
16074
16075 * fileio.c: Integer overflow issues with file modes.
16076 (Fset_file_modes, auto_save_1): Don't assume EMACS_INT fits in int.
16077
16078 * charset.c (read_hex): New arg OVERFLOW. All uses changed.
16079 Remove unreachable code.
16080 (read_hex, load_charset_map_from_file): Check for integer overflow.
16081
16082 * xterm.c: Don't go over XClientMessageEvent limit.
16083 (scroll_bar_windows_size): Now ptrdiff_t, as we prefer signed.
16084 (x_send_scroll_bar_event): Likewise. Check that the size does not
16085 exceed limits imposed by XClientMessageEvent, as well as the usual
16086 ptrdiff_t and size_t limits.
16087
16088 * keyboard.c: Overflow, signedness and related fixes.
16089 (make_lispy_movement): Use same integer type in forward decl
16090 that is used in the definition.
16091 (read_key_sequence, keyremap_step):
16092 Change bufsize argument back to int, undoing my 2011-03-30 change.
16093 We prefer signed types, and int is wide enough here.
16094 (parse_tool_bar_item): Don't assume tool_bar_max_label_size is less
16095 than TYPE_MAXIMUM (EMACS_INT) / 2. Don't let the label size grow
16096 larger than STRING_BYTES_BOUND. Use ptrdiff_t for Emacs string
16097 length, not size_t. Use ptrdiff_t for index, not int.
16098 (keyremap_step, read_key_sequence): Redo bufsize check to avoid
16099 possibility of integer overflow.
16100
16101 Overflow, signedness and related fixes for images.
16102
16103 * dispextern.h (struct it.stack[0].u.image.image_id)
16104 (struct_it.image_id, struct image.id, struct image_cache.size)
16105 (struct image_cache.used, struct image_cache.ref_count):
16106 * gtkutil.c (update_frame_tool_bar):
16107 * image.c (x_reference_bitmap, Fimage_size, Fimage_mask_p)
16108 (Fimage_metadata, free_image_cache, clear_image_cache, lookup_image)
16109 (cache_image, mark_image_cache, x_kill_gs_process, Flookup_image):
16110 * nsmenu.m (update_frame_tool_bar):
16111 * xdisp.c (calc_pixel_width_or_height):
16112 * xfns.c (image_cache_refcount):
16113 Image IDs are now ptrdiff_t, not int, to avoid arbitrary limits
16114 on typical 64-bit hosts.
16115
16116 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
16117 (x_bitmap_pixmap, x_create_x_image_and_pixmap):
16118 Omit unnecessary casts to int.
16119 (parse_image_spec): Check that integers fall into 'int' range
16120 when the callers expect that.
16121 (image_ascent): Redo ascent calculation to avoid int overflow.
16122 (clear_image_cache): Avoid overflow when sqrt (INT_MAX) < nimages.
16123 (lookup_image): Remove unnecessary tests.
16124 (xbm_image_p): Locals are now of int, not EMACS_INT,
16125 since parse_image_check makes sure they fit into int.
16126 (png_load, gif_load, svg_load_image):
16127 Prefer int to unsigned where either will do.
16128 (tiff_handler): New function, combining the cores of the
16129 old tiff_error_handler and tiff_warning_handler.
16130 This function is rewritten to use vsnprintf and thereby avoid
16131 stack buffer overflows. It uses only the features of vsnprintf
16132 that are common to both POSIX and native Microsoft.
16133 (tiff_error_handler, tiff_warning_handler): Use it.
16134 (tiff_load, gif_load, imagemagick_load_image):
16135 Don't assume :index value fits in 'int'.
16136 (gif_load): Omit unnecessary cast to double, and avoid double-rounding.
16137 (imagemagick_load_image): Check that crop parameters fit into
16138 the integer types that MagickCropImage accepts. Don't assume
16139 Vimagemagick_render_type has a nonnegative value. Don't assume
16140 size_t fits in 'long'.
16141 (gs_load): Use printmax_t to print the widest integers possible.
16142 Check for integer overflow when computing image height and width.
16143
16144 2011-08-26 Eli Zaretskii <eliz@gnu.org>
16145
16146 * xdisp.c (redisplay_window): Don't force window start if point
16147 will be invisible in the resulting window. (Bug#9324)
16148
16149 2011-08-25 Eli Zaretskii <eliz@gnu.org>
16150
16151 * xdisp.c (compute_display_string_pos): Return 2 in DISP_PROP when
16152 the display spec is of the form `(space ...)'.
16153 (handle_display_spec): Return the value returned by
16154 handle_single_display_spec, not just 1 or zero.
16155 (handle_single_display_spec): If the display spec is of the form
16156 `(space ...)', and specifies display in the text area, return 2
16157 rather than 1.
16158 (try_cursor_movement): Check for the need to scroll more
16159 accurately, and prefer exact match for point under bidi.
16160 Don't advance `row' beyond the last row of the window.
16161
16162 * dispextern.h (struct bidi_it): Rename the disp_prop_p member
16163 into disp_prop; all users changed.
16164
16165 * bidi.c (bidi_fetch_char): If compute_display_string_pos returns
16166 DISP_PROP = 2, substitute the u+2029 PARAGRAPH SEPARATOR character
16167 for the text covered by the display property.
16168
16169 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
16170
16171 * buffer.c (Fbury_buffer_internal): Rename from Funrecord_buffer.
16172 Change return value to nil.
16173 (Frecord_buffer): Delete unused function.
16174
16175 2011-08-24 Eli Zaretskii <eliz@gnu.org>
16176
16177 * xdisp.c (Fcurrent_bidi_paragraph_direction): For unibyte
16178 buffers, return left-to-right.
16179 (set_cursor_from_row): Consider candidate row a win if its glyph
16180 represents a newline and point is on that newline. Fixes cursor
16181 positioning on the newline at EOL of R2L text within L2R
16182 paragraph, and vice versa.
16183 (try_cursor_movement): Check continued rows, in addition to
16184 continuation rows. Fixes unwarranted scroll when point enters a
16185 continued line of R2L text within an L2R paragraph, or vice versa.
16186 (cursor_row_p): Consider the case of point being equal to
16187 MATRIX_ROW_END_CHARPOS. Prevents cursor being stuck when moving
16188 from the end of a short line to the beginning of a continued line
16189 of R2L text within L2R paragraph.
16190 (RECORD_MAX_MIN_POS): For max_pos, use IT_CHARPOS even for
16191 composed characters.
16192
16193 * bidi.c (bidi_check_type): Use xassert.
16194 (bidi_cache_iterator_state): Update the disp_pos and disp_prop_p
16195 members.
16196
16197 2011-08-23 Eli Zaretskii <eliz@gnu.org>
16198
16199 * bidi.c (bidi_get_type): Abort if we get zero as the bidi type of
16200 a character.
16201
16202 2011-08-23 Chong Yidong <cyd@stupidchicken.com>
16203
16204 * nsfont.m (ns_otf_to_script): Fix typo.
16205
16206 2011-08-22 Kenichi Handa <handa@m17n.org>
16207
16208 * chartab.c (Fset_char_table_extra_slot): Do not inhibit setting a
16209 extra slot even if the purpose is char-code-property-table.
16210
16211 2011-08-23 Eli Zaretskii <eliz@gnu.org>
16212
16213 * xdisp.c (redisplay_window): When computing centering_position,
16214 account for the height of the header line. (Bug#8874)
16215
16216 * dispnew.c (buffer_posn_from_coords): Use buf_charpos_to_bytepos
16217 instead of CHAR_TO_BYTE. Fixes a crash when a completion
16218 candidate is selected by the mouse, and that candidate has a
16219 composed character under the mouse.
16220
16221 * xdisp.c (x_produce_glyphs): Set it->nglyphs to 1. Fixes pixel
16222 coordinates reported by pos-visible-in-window-p for a composed
16223 character in column zero.
16224
16225 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
16226
16227 * cmds.c (Fself_insert_command): Mention post-self-insert-hook.
16228
16229 2011-08-22 Eli Zaretskii <eliz@gnu.org>
16230
16231 * xdisp.c (BUFFER_POS_REACHED_P): If this is a composition,
16232 consider it a hit if to_charpos is anywhere in the range of the
16233 composed buffer positions.
16234
16235 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
16236
16237 * image.c (gif_load): Don't assume that each subimage has the same
16238 dimensions as the base image. Handle disposal method that is
16239 "undefined" by the gif spec (Bug#9335).
16240
16241 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
16242
16243 * eval.c (Fsignal): Handle `debug' symbol in error handler (Bug#9329).
16244 (Fcondition_case): Document `debug' symbol in error handler.
16245
16246 2011-08-19 Eli Zaretskii <eliz@gnu.org>
16247
16248 * xfaces.c (face_at_buffer_position): Avoid repeated evaluation of
16249 face ID by FACE_FROM_ID, and avoid a crash when mouse is moved
16250 from an Org mode buffer to a Speedbar frame.
16251
16252 * xdisp.c (RECORD_MAX_MIN_POS): If the display element comes from
16253 a composition, take its buffer position from IT->cmp_it.charpos.
16254 Fixes cursor positioning at the beginning of a line that begins
16255 with a composed character.
16256
16257 2011-08-18 Eli Zaretskii <eliz@gnu.org>
16258
16259 * bidi.c (bidi_get_type): If bidi_type_table reports zero as the
16260 character bidirectional type, use STRONG_L instead. Fixes crashes
16261 in a buffer produced by `describe-categories'.
16262
16263 * dispextern.h (struct bidi_it): Move disp_pos and disp_prop_p
16264 members before the level stack, so they would be saved and
16265 restored when copying iterator state. Fixes incorrect reordering
16266 around TABs covered by display properties.
16267
16268 2011-08-18 Andreas Schwab <schwab@linux-m68k.org>
16269
16270 * process.c (Fnetwork_interface_list): Correctly determine buffer size.
16271
16272 2011-08-17 Chong Yidong <cyd@stupidchicken.com>
16273
16274 * eval.c (internal_condition_case, internal_condition_case_1)
16275 (internal_condition_case_2, internal_condition_case_n):
16276 Remove unnecessary aborts (Bug#9081).
16277
16278 2011-08-17 Eli Zaretskii <eliz@gnu.org>
16279
16280 * lread.c (Fload) [DOS_NT]: If `openp' returns -2, but the file
16281 has no `load' handler, try opening the file locally. (Bug#9311)
16282
16283 2011-08-16 Ken Brown <kbrown@cornell.edu>
16284
16285 * gmalloc.c: Expand comment.
16286
16287 2011-08-16 Eli Zaretskii <eliz@gnu.org>
16288
16289 * xdisp.c (set_cursor_from_row): Don't accept a previous candidate
16290 if it fails the cursor_row_p test. Fixes cursor positioning at ZV.
16291
16292 2011-08-16 Ken Brown <kbrown@cornell.edu>
16293
16294 Fix memory allocation problems in Cygwin build (Bug#9273).
16295
16296 * unexcw.c ( __malloc_initialized): Declare external variable.
16297 (fixup_executable): Force the dumped emacs to reinitialize malloc.
16298
16299 * gmalloc.c [CYGWIN] (bss_sbrk_heapbase, bss_sbrk_heapinfo):
16300 New variables.
16301 (malloc_initialize_1) [CYGWIN]: Prepare for reinitializing the
16302 dumped emacs.
16303 (_free_internal_nolock) [CYGWIN]: Ignore requests to free storage
16304 in the static heap.
16305 [CYGWIN] (special_realloc): New function.
16306 (_realloc_internal_nolock) [CYGWIN]: Use the new function on
16307 requests to realloc storage in the static heap.
16308
16309 2011-08-15 Paul Eggert <eggert@cs.ucla.edu>
16310
16311 * bidi.c (bidi_initialize): Remove unused local.
16312
16313 2011-08-15 Eli Zaretskii <eliz@gnu.org>
16314
16315 * bidimirror.h:
16316 * biditype.h: Remove file.
16317 * makefile.w32-in ($(BLD)/bidi.$(O)):
16318 * deps.mk (bidi.o): Remove biditype.h and bidimirror.h.
16319
16320 * dispextern.h: Fix a typo in the comment to bidi_type_t.
16321
16322 * chartab.c: Improve commentary for the uniprop_table API.
16323
16324 * bidi.c (bidi_paragraph_init): Support zero value of
16325 bidi_ignore_explicit_marks_for_paragraph_level.
16326 (bidi_initialize): Use uniprop_table instead of including
16327 biditype.h and bidimirror.h.
16328
16329 * xdisp.c (move_it_in_display_line_to): Don't reset pixel
16330 coordinates of the iterator when restoring from ppos_it.
16331 (Bug#9296)
16332
16333 2011-08-14 Kenichi Handa <handa@m17n.org>
16334
16335 * process.c (create_process): Call setup_process_coding_systems
16336 after the pid of the process is set to -1 (Bug#8162).
16337
16338 2011-08-14 Eli Zaretskii <eliz@gnu.org>
16339
16340 * xdisp.c (move_it_in_display_line_to): Don't invoke
16341 IT_RESET_X_ASCENT_DESCENT when iterator position was restored from
16342 ppos_it. Fixes vertical cursor motion when line beginning is
16343 covered by an image. (Bug#9296)
16344
16345 2011-08-14 Jan Djärv <jan.h.d@swipnet.se>
16346
16347 * nsterm.h (ns_run_ascript): Declare.
16348 (NSAPP_DATA2_RUNASSCRIPT): Define.
16349
16350 * nsfns.m (as_script, as_result, as_status): New static variables.
16351 (ns_run_ascript): New function.
16352 (Fns_do_applescript): Set variables as_*. Make an NSApplicationDefined
16353 event with data2 set to NSAPP_DATA2_RUNASSCRIPT, post it and then start
16354 the event loop. Get status from as_status (Bug#7276).
16355
16356 * nsterm.m (sendEvent): If event is NSApplicationDefined and
16357 data2 is NSAPP_DATA2_RUNASSCRIPT, call ns_run_ascript and then exit
16358 the event loop (Bug#7276).
16359
16360 2011-08-14 Andreas Schwab <schwab@linux-m68k.org>
16361
16362 * gnutls.c (QCgnutls_bootprop_priority)
16363 (QCgnutls_bootprop_trustfiles, QCgnutls_bootprop_keylist)
16364 (QCgnutls_bootprop_crlfiles, QCgnutls_bootprop_callbacks)
16365 (QCgnutls_bootprop_loglevel, QCgnutls_bootprop_hostname)
16366 (QCgnutls_bootprop_min_prime_bits, QCgnutls_bootprop_verify_flags)
16367 (QCgnutls_bootprop_verify_hostname_error)
16368 (QCgnutls_bootprop_callbacks_verify): Rename from
16369 Qgnutls_bootprop_..., all uses changed.
16370
16371 * xfaces.c (QCignore_defface): Rename from Qignore_defface, all
16372 uses changed.
16373
16374 2011-08-14 Paul Eggert <eggert@cs.ucla.edu>
16375
16376 * xfaces.c (Qframe_set_background_mode): Now static.
16377 * dispextern.h (Qframe_set_background_mode): Remove decl.
16378
16379 * process.c (Fnetwork_interface_info): Declare local only if needed.
16380
16381 2011-08-13 Jan Djärv <jan.h.d@swipnet.se>
16382
16383 * process.c: Include ifaddrs.h and net/if_dl.h if available (Bug#8477).
16384 (Fnetwork_interface_list): Allocate in increments of bytes instead
16385 of sizeof (struct ifreq). Iterate over ifconf.ifc_req by counting
16386 bytes (Bug#8477). Count bytes correctly when ifr_addr is a struct
16387 sockaddr.
16388 (struct ifflag_def): notrailers is smart on OSX.
16389 (Fnetwork_interface_info): Handle case when ifr_flags is negative.
16390 Get hardware address with getifaddrs if available.
16391
16392 2011-08-12 Eli Zaretskii <eliz@gnu.org>
16393
16394 * xdisp.c (iterate_out_of_display_property): xassert that
16395 IT->position is set to within IT->object's boundaries. Break from
16396 the loop as soon as EOB is reached; avoids infloops in redisplay
16397 when IT->position is set up wrongly due to some bug.
16398 Set IT->current to match the bidi iterator unconditionally.
16399 (push_display_prop): Allow GET_FROM_STRING as IT->method on
16400 entry. Force push_it to save on the stack the current
16401 buffer/string position, to be restored by pop_it. Fix flags in
16402 the iterator structure wrt the object coming from a display
16403 property, as `line-prefix' and `wrap-prefix' are not ``replacing''
16404 properties. (Bug#9284)
16405
16406 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
16407
16408 * fontset.c (fontset_get_font_group): Add proper type checks.
16409 (Bug#9172)
16410
16411 2011-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16412
16413 * unexmacosx.c (print_load_command_name): Add cases LC_FUNCTION_STARTS
16414 and LC_VERSION_MIN_MACOSX.
16415 (copy_linkedit_data) [LC_FUNCTION_STARTS]: New function.
16416 (dump_it) [LC_FUNCTION_STARTS]: Use it.
16417
16418 2011-08-08 Eli Zaretskii <eliz@gnu.org>
16419
16420 * xdisp.c (forward_to_next_line_start): Allow to use the
16421 no-display-properties-and-no-overlays under bidi display.
16422 Set disp_pos in the bidi iterator to avoid searches for display
16423 properties and overlays.
16424
16425 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
16426
16427 * editfns.c (Fset_time_zone_rule): Document relationship with the
16428 setenv function.
16429
16430 * ftfont.c (ftfont_pattern_entity): Copy the extras argument to
16431 the font entity extracted from the cache (Bug#8109).
16432
16433 2011-08-07 Chong Yidong <cyd@stupidchicken.com>
16434
16435 * composite.c (autocmp_chars): Don't reset point. That is done by
16436 restore_point_unwind (Bug#5984).
16437
16438 2011-08-07 Juri Linkov <juri@jurta.org>
16439
16440 * editfns.c (Fformat_time_string): Doc fix, add tag `usage:'
16441 to show the arg `TIME' instead of `TIMEVAL'.
16442
16443 2011-08-06 Eli Zaretskii <eliz@gnu.org>
16444
16445 * xdisp.c (set_cursor_from_row): Fix cursor positioning when a
16446 display property strides EOL and includes a newline, as in
16447 longlines-mode. (Bug#9254)
16448 (move_it_in_display_line_to): Fix vertical-motion in a buffer with
16449 word-wrap under bidirectional display. (Bug#9224)
16450
16451 * bidi.c (bidi_unshelve_cache): Don't reset the cache if JUST_FREE
16452 is non-zero, even if the data buffer is NULL. Fixes a crash in
16453 vertical-motion with longlines-mode. (Bug#9254)
16454
16455 2011-08-05 Eli Zaretskii <eliz@gnu.org>
16456
16457 * bidi.c <bidi_cache_total_alloc>: Now static.
16458 (bidi_initialize): Initialize bidi_cache_total_alloc.
16459
16460 * xdisp.c (display_line): Release buffer allocated for shelved bidi
16461 cache. (Bug#9221)
16462
16463 * bidi.c (bidi_shelve_cache, bidi_unshelve_cache): Track total
16464 amount allocated this far in `bidi_cache_total_alloc'.
16465 (bidi_unshelve_cache): Accept an additional argument JUST_FREE; if
16466 non-zero, only free the data buffer without restoring the cache
16467 contents. All callers changed.
16468
16469 * dispextern.h (bidi_unshelve_cache): Update prototype.
16470
16471 * xdisp.c (SAVE_IT, pos_visible_p, move_it_in_display_line_to)
16472 (move_it_in_display_line, move_it_to)
16473 (move_it_vertically_backward, move_it_by_lines): Replace the call
16474 to xfree to an equivalent call to bidi_unshelve_cache.
16475 (move_it_in_display_line_to): Fix logic of returning
16476 MOVE_POS_MATCH_OR_ZV in the bidi case. (Bug#9224)
16477
16478 2011-08-05 Eli Zaretskii <eliz@gnu.org>
16479
16480 * xdisp.c (set_cursor_from_row): Prefer the candidate glyph that
16481 came from a string character with a `cursor' property. (Bug#9229)
16482
16483 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
16484
16485 * Makefile.in (LIB_PTHREAD): New variable.
16486 (LIBES): Add LIB_PTHREAD (Bug#9216).
16487
16488 * alloc.c, emacs.c, gmalloc.c, gtkutil.c, keyboard.c, syssignal.h:
16489 Rename HAVE_GTK_AND_PTHREAD to HAVE_PTHREAD (Bug#9216).
16490
16491 2011-08-04 Andreas Schwab <schwab@linux-m68k.org>
16492
16493 * regex.c (re_iswctype): Remove some redundant boolean conversions.
16494
16495 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
16496
16497 * xterm.c (x_find_topmost_parent): New function.
16498 (x_set_frame_alpha): Find topmost parent window with
16499 x_find_topmost_parent and set the property there also (bug#9181).
16500 (handle_one_xevent): Call x_set_frame_alpha on ReparentNotify.
16501
16502 2011-08-04 Paul Eggert <eggert@cs.ucla.edu>
16503
16504 * callproc.c (Fcall_process): Avoid vfork clobbering
16505 the local vars buffer, coding_systems, current_dir.
16506
16507 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
16508
16509 * keymap.c (Fmake_composed_keymap): Move to subr.el.
16510
16511 2011-08-03 Paul Eggert <eggert@cs.ucla.edu>
16512
16513 * fontset.c (dump_fontset) [FONTSET_DEBUG]: Declare EXTERNALLY_VISIBLE
16514 so that it is not optimized away.
16515
16516 * xdisp.c (compute_display_string_pos): Remove unused local.
16517
16518 2011-08-02 Eli Zaretskii <eliz@gnu.org>
16519
16520 Fix slow cursor motion and scrolling in large buffers with
16521 selective display, like Org Mode buffers. (Bug#9218)
16522
16523 * dispextern.h (struct bidi_it): New member disp_prop_p.
16524
16525 * xdisp.c: Remove one-slot cache of display string positions.
16526 (compute_display_string_pos): Accept an additional argument
16527 DISP_PROP_P; callers changed. Scan at most 5K characters forward
16528 for a display string or property. If found, set DISP_PROP_P
16529 non-zero.
16530
16531 * bidi.c (bidi_fetch_char): Accept an additional argument
16532 DISP_PROP_P, and pass it to compute_display_string_pos.
16533 Only handle text covered by a display string if DISP_PROP_P is returned
16534 non-zero. All callers of bidi_fetch_char changed.
16535
16536 2011-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
16537
16538 * keymap.c (Fdefine_key): Fix Lisp_Object/int mixup; apply some CSE.
16539
16540 2010-12-03 Don March <don@ohspite.net>
16541
16542 * keymap.c (Fdefine_key): Fix non-prefix key error message when
16543 last character M-[char] is translated to ESC [char] (bug#7541).
16544
16545 2011-08-02 Kenichi Handa <handa@m17n.org>
16546
16547 * lisp.h (uniprop_table): Extern it.
16548
16549 * chartab.c (uniprop_table): Make it non-static.
16550
16551 2011-08-01 Eli Zaretskii <eliz@gnu.org>
16552
16553 * xdisp.c (forward_to_next_line_start): Accept additional argument
16554 BIDI_IT_PREV, and store into it the state of the bidi iterator had
16555 on the newline.
16556 (reseat_at_next_visible_line_start): Use the bidi iterator state
16557 returned by forward_to_next_line_start to restore the state of
16558 it->bidi_it after backing up to previous newline. (Bug#9212)
16559
16560 2011-07-30 Andreas Schwab <schwab@linux-m68k.org>
16561
16562 * regex.c (re_comp): Protoize.
16563 (re_exec): Fix return type.
16564 (regexec): Fix type of `ret'. (Bug#9203)
16565
16566 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
16567
16568 * image.c (check_image_size): Use 1024x1024 if unknown frame (Bug#9189).
16569 This is needed if max-image-size is a floating-point number.
16570
16571 2011-07-28 Andreas Schwab <schwab@linux-m68k.org>
16572
16573 * print.c (print_object): Print empty symbol as ##.
16574
16575 * lread.c (read1): Read ## as empty symbol.
16576
16577 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
16578
16579 * nsfns.m (x_set_foreground_color): Set f->foreground_pixel when
16580 setting frame foreground color (Bug#9175).
16581 (x_set_background_color): Likewise.
16582
16583 * nsmenu.m (-setText): Size tooltip dimensions precisely to
16584 contents (Bug#9176).
16585 (EmacsTooltip -init): Remove bezels and add shadows to
16586 tooltip windows.
16587
16588 * nsterm.m (ns_dumpglyphs_stretch): Avoid overwriting left fringe
16589 or scroll bar (Bug#8470).
16590
16591 * nsfont.m (nsfont_open): Remove assignment to voffset and
16592 unnecessary vars hshink, expand, hd, full_height, min_height.
16593 (nsfont_draw): Use s->ybase as baseline for glyph drawing (Bug#8913).
16594
16595 * nsterm.h (nsfont_info): Remove voffset field.
16596
16597 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
16598
16599 Implement strike-through and overline on NextStep (Bug#8863).
16600
16601 * nsfont.m (nsfont_open): Use underline position provided by font,
16602 instead of hard-coded value of 2.
16603 (nsfont_draw): Call ns_draw_text_decoration instead.
16604
16605 * nsterm.h: Add declaration for ns_draw_text_decoration.
16606
16607 * nsterm.m (ns_draw_text_decoration): New function for drawing
16608 underline, overline, and strike-through.
16609 (ns_dumpglyphs_image, ns_dumpglyphs_stretch): Add call to
16610 ns_draw_text_decoration. Change treatment of cursor drawing to
16611 accommodate underlining, etc.
16612
16613 2011-07-28 Eli Zaretskii <eliz@gnu.org>
16614
16615 * buffer.c (init_buffer_once): Set bidi-display-reordering to t by
16616 default.
16617
16618 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
16619
16620 * alloc.c (memory_full) [!SYNC_INPUT]: Fix signal-related race.
16621 Without this fix, if a signal arrives just after memory fills up,
16622 'malloc' might be invoked reentrantly.
16623
16624 * image.c (x_check_image_size) [!HAVE_X_WINDOWS]: Return 1.
16625 In other words, assume that every image size is allowed, on non-X
16626 hosts. This assumption is probably wrong, but it lets Emacs compile.
16627
16628 2011-07-28 Andreas Schwab <schwab@linux-m68k.org>
16629
16630 * regex.c (re_iswctype): Convert return values to boolean.
16631
16632 2011-07-28 Eli Zaretskii <eliz@fencepost.gnu.org>
16633
16634 * xdisp.c (compute_display_string_pos): Don't use cached display
16635 string position if the buffer had its restriction changed.
16636 (Bug#9184)
16637
16638 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
16639
16640 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
16641
16642 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
16643
16644 Integer signedness and overflow and related fixes. (Bug#9079)
16645
16646 * bidi.c: Integer size and overflow fixes.
16647 (bidi_cache_size, bidi_cache_idx, bidi_cache_last_idx)
16648 (bidi_cache_start, bidi_cache_fetch_state, bidi_cache_search)
16649 (bidi_cache_find_level_change, bidi_cache_ensure_space)
16650 (bidi_cache_iterator_state, bidi_cache_find, bidi_cache_start_stack)
16651 (bidi_find_other_level_edge):
16652 Use ptrdiff_t instead of EMACS_INT where either will do.
16653 This works better on 32-bit hosts configured --with-wide-int.
16654 (bidi_cache_ensure_space): Check for size-calculation overflow.
16655 Use % rather than repeated addition, for better worst-case speed.
16656 Don't set bidi_cache_size until after xrealloc returns, because it
16657 might not return.
16658 (bidi_dump_cached_states): Use ptrdiff_t, not int, to avoid overflow.
16659 (bidi_cache_ensure_space): Also check that the bidi cache size
16660 does not exceed that of the largest Lisp string or buffer. See Eli
16661 Zaretskii in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#29>.
16662
16663 * alloc.c (__malloc_size_t): Remove.
16664 All uses replaced by size_t. See Andreas Schwab's note
16665 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#8>.
16666
16667 * image.c: Improve checking for integer overflow.
16668 (check_image_size): Assume that f is nonnull, since
16669 it is always nonnull in practice. This is one less thing to
16670 worry about when checking for integer overflow later.
16671 (x_check_image_size): New function, which checks for integer
16672 overflow issues inside X.
16673 (x_create_x_image_and_pixmap, xbm_read_bitmap_data): Use it.
16674 This removes the need for a memory_full check.
16675 (xbm_image_p): Rewrite to avoid integer multiplication overflow.
16676 (Create_Pixmap_From_Bitmap_Data, xbm_load): Use x_check_image_size.
16677 (xbm_read_bitmap_data): Change locals back to 'int', since
16678 their values must fit in 'int'.
16679 (xpm_load_image, png_load, tiff_load):
16680 Invoke x_create_x_image_and_pixmap earlier,
16681 to avoid much needless work if the image is too large.
16682 (tiff_load): Treat overly large images as if
16683 x_create_x_image_and_pixmap failed, not as malloc failures.
16684 (gs_load): Use x_check_image_size.
16685
16686 * gtkutil.c: Omit integer casts.
16687 (xg_get_pixbuf_from_pixmap): Remove unnecessary cast.
16688 (xg_set_toolkit_scroll_bar_thumb): Rewrite to avoid need for cast.
16689
16690 * image.c (png_load): Don't assume height * row_bytes fits in 'int'.
16691
16692 * xfaces.c (Fbitmap_spec_p): Fix integer overflow bug.
16693 Without this fix, (bitmap-spec-p '(34359738368 1 "x"))
16694 would wrongly return t on a 64-bit host.
16695
16696 * dispnew.c (init_display): Use *_RANGE_OVERFLOW macros.
16697 The plain *_OVERFLOW macros run afoul of GCC bug 49705
16698 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49705>
16699 and therefore cause GCC to emit a bogus diagnostic in some cases.
16700
16701 * image.c: Integer signedness and overflow and related fixes.
16702 This is not an exhaustive set of fixes, but it's time to
16703 record what I've got.
16704 (lookup_pixel_color, check_image_size): Remove redundant decls.
16705 (check_image_size): Don't assume that arbitrary EMACS_INT values
16706 fit in 'int', or that arbitrary 'double' values fit in 'int'.
16707 (x_alloc_image_color, x_create_x_image_and_pixmap, png_load)
16708 (tiff_load, imagemagick_load_image):
16709 Check for overflow in size calculations.
16710 (x_create_x_image_and_pixmap): Remove unnecessary test for
16711 xmalloc returning NULL; that can't happen.
16712 (xbm_read_bitmap_data): Don't assume sizes fit into 'int'.
16713 (xpm_color_bucket): Use better integer hashing function.
16714 (xpm_cache_color): Don't possibly over-allocate memory.
16715 (struct png_memory_storage, tiff_memory_source, tiff_seek_in_memory)
16716 (gif_memory_source):
16717 Use ptrdiff_t, not int or size_t, to record sizes.
16718 (png_load): Don't assume values greater than 2**31 fit in 'int'.
16719 (our_stdio_fill_input_buffer): Prefer ptrdiff_t to size_t when
16720 either works, as we prefer signed integers.
16721 (tiff_read_from_memory, tiff_write_from_memory):
16722 Return tsize_t, not size_t, since that's what the TIFF API wants.
16723 (tiff_read_from_memory): Don't fail simply because the read would
16724 go past EOF; instead, return a short read.
16725 (tiff_load): Omit no-longer-needed casts.
16726 (Fimagemagick_types): Don't assume size fits into 'int'.
16727
16728 Improve hashing quality when configured --with-wide-int.
16729 * fns.c (hash_string): New function, taken from sxhash_string.
16730 Do not discard information about ASCII character case; this
16731 discarding is no longer needed.
16732 (sxhash-string): Use it. Change sig to match it. Caller changed.
16733 * lisp.h: Declare it.
16734 * lread.c (hash_string): Remove, since we now use fns.c's version.
16735 The fns.c version returns a wider integer if --with-wide-int is
16736 specified, so this should help the quality of the hashing a bit.
16737
16738 * emacs.c: Integer overflow minor fix.
16739 (heap_bss_diff): Now uprintmax_t, not unsigned long. All used changed.
16740 Define only if GNU_LINUX.
16741 (main, Fdump_emacs): Set and use heap_bss_diff only if GNU_LINUX.
16742
16743 * dispnew.c: Integer signedness and overflow fixes.
16744 Remove unnecessary forward decls, that were a maintenance hassle.
16745 (history_tick): Now uprintmax_t, so it's more likely to avoid overflow.
16746 All uses changed.
16747 (adjust_glyph_matrix, realloc_glyph_pool, adjust_frame_message_buffer)
16748 (scrolling_window): Use ptrdiff_t, not int, for byte count.
16749 (prepare_desired_row, line_draw_cost):
16750 Use int, not unsigned, where either works.
16751 (save_current_matrix, restore_current_matrix):
16752 Use ptrdiff_t, not size_t, where either works.
16753 (init_display): Check for overflow more accurately, and without
16754 relying on undefined behavior.
16755
16756 * editfns.c (pWIDE, pWIDElen, signed_wide, unsigned_wide):
16757 Remove, replacing with the new symbols in lisp.h. All uses changed.
16758 * fileio.c (make_temp_name):
16759 * filelock.c (lock_file_1, lock_file):
16760 * xdisp.c (message_dolog):
16761 Don't assume PRIdMAX etc. works; this isn't portable to pre-C99 hosts.
16762 Use pMd etc. instead.
16763 * lisp.h (printmax_t, uprintmax_t, pMd, pMu): New types and macros,
16764 replacing the pWIDE etc. symbols removed from editfns.c.
16765
16766 * keyboard.h (num_input_events): Now uintmax_t.
16767 This is (very slightly) less likely to mess up due to wraparound.
16768 All uses changed.
16769
16770 * buffer.c: Integer signedness fixes.
16771 (alloc_buffer_text, enlarge_buffer_text):
16772 Use ptrdiff_t rather than size_t when either will do, as we prefer
16773 signed integers.
16774
16775 * alloc.c: Integer signedness and overflow fixes.
16776 Do not impose an arbitrary 32-bit limit on malloc sizes when debugging.
16777 (__malloc_size_t): Default to size_t, not to int.
16778 (pure_size, pure_bytes_used_before_overflow, stack_copy_size)
16779 (Fgarbage_collect, mark_object_loop_halt, mark_object):
16780 Prefer ptrdiff_t to size_t when either would do, as we prefer
16781 signed integers.
16782 (XMALLOC_OVERRUN_CHECK_OVERHEAD): New macro.
16783 (xmalloc_overrun_check_header, xmalloc_overrun_check_trailer):
16784 Now const. Initialize with values that are in range even if char
16785 is signed.
16786 (XMALLOC_PUT_SIZE, XMALLOC_GET_SIZE): Remove, replacing with ...
16787 (xmalloc_put_size, xmalloc_get_size): New functions. All uses changed.
16788 These functions do the right thing with sizes > 2**32.
16789 (check_depth): Now ptrdiff_t, not int.
16790 (overrun_check_malloc, overrun_check_realloc, overrun_check_free):
16791 Adjust to new way of storing sizes. Check for size overflow bugs
16792 in rest of code.
16793 (STRING_BYTES_MAX): Adjust to new overheads. The old code was
16794 slightly wrong anyway, as it missed one instance of
16795 XMALLOC_OVERRUN_CHECK_OVERHEAD.
16796 (refill_memory_reserve): Omit needless cast to size_t.
16797 (mark_object_loop_halt): Mark as externally visible.
16798
16799 * xselect.c: Integer signedness and overflow fixes.
16800 (Fx_register_dnd_atom, x_handle_dnd_message):
16801 Use ptrdiff_t, not size_t, since we prefer signed.
16802 (Fx_register_dnd_atom): Check for ptrdiff_t (and size_t) overflow.
16803 * xterm.h (struct x_display_info): Use ptrdiff_t, not size_t, for
16804 x_dnd_atoms_size and x_dnd_atoms_length.
16805
16806 * doprnt.c: Prefer signed to unsigned when either works.
16807 * eval.c (verror):
16808 * doprnt.c (doprnt):
16809 * lisp.h (doprnt):
16810 * xdisp.c (vmessage):
16811 Use ptrdiff_t, not size_t, when using or implementing doprnt,
16812 since the sizes cannot exceed ptrdiff_t bounds anyway, and we
16813 prefer signed arithmetic to avoid comparison confusion.
16814 * doprnt.c (doprnt): Avoid a "+ 1" that can't overflow,
16815 but is a bit tricky.
16816
16817 Assume freestanding C89 headers, string.h, stdlib.h.
16818 * data.c, doprnt.c, floatfns.c, print.c:
16819 Include float.h unconditionally.
16820 * gmalloc.c: Assume C89-at-least behavior for preprocessor,
16821 limits.h, stddef.h, string.h. Use memset instead of 'flood'.
16822 * regex.c: Likewise for stddef.h, string.h.
16823 (ISASCII): Remove; can assume it returns 1 now. All uses removed.
16824 * s/aix4-2.h (HAVE_STRING_H): Remove obsolete undef.
16825 * s/ms-w32.h (HAVE_LIMITS_H, HAVE_STRING_H, HAVE_STDLIB_H)
16826 (STDC_HEADERS): Remove obsolete defines.
16827 * sysdep.c: Include limits.h unconditionally.
16828
16829 Assume support for memcmp, memcpy, memmove, memset.
16830 * lisp.h, sysdep.c (memcmp, memcpy, memmove, memset):
16831 * regex.c (memcmp, memcpy):
16832 Remove; we assume C89 now.
16833
16834 * gmalloc.c (memcpy, memset, memmove): Remove; we assume C89 now.
16835 (__malloc_safe_bcopy): Remove; no longer needed.
16836
16837 * lisp.h (struct vectorlike_header, struct Lisp_Subr): Signed sizes.
16838 Use EMACS_INT, not EMACS_UINT, for sizes. The code works equally
16839 well either way, and we prefer signed to unsigned.
16840
16841 2011-07-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
16842
16843 * gnutls.c (emacs_gnutls_read): Don't message anything if the peer
16844 closes the connection while we're reading (bug#9182).
16845
16846 2011-07-25 Jan Djärv <jan.h.d@swipnet.se>
16847
16848 * nsmenu.m (ns_popup_dialog): Add an "ok" button if no buttons
16849 are specified (Bug#9168).
16850
16851 2011-07-25 Paul Eggert <eggert@cs.ucla.edu>
16852
16853 * bidi.c (bidi_dump_cached_states): Fix printf format mismatch.
16854 Found by GCC static checking and --with-wide-int on a 32-bit host.
16855
16856 2011-07-25 Eli Zaretskii <eliz@gnu.org>
16857
16858 * xdisp.c (compute_display_string_pos): Fix logic of caching
16859 previous display string position. Initialize cached_prev_pos to
16860 -1. Fixes slow-down at the beginning of a buffer.
16861
16862 2011-07-24 Eli Zaretskii <eliz@gnu.org>
16863
16864 * xfaces.c (check_lface_attrs) [HAVE_WINDOW_SYSTEM]: Allow `nil'
16865 for attrs[LFACE_FONTSET_INDEX].
16866
16867 2011-07-23 Paul Eggert <eggert@cs.ucla.edu>
16868
16869 * xml.c (parse_region): Remove unused local
16870 that was recently introduced.
16871
16872 2011-07-23 Eli Zaretskii <eliz@gnu.org>
16873
16874 * xfns.c (unwind_create_frame) [GLYPH_DEBUG]: Adapt to changes in
16875 2008-02-22T17:42:09Z!monnier@iro.umontreal.ca.
16876
16877 * xdisp.c (move_it_in_display_line_to): Record the best matching
16878 position for TO_CHARPOS while scanning the line, and restore it on
16879 exit if none of the characters scanned was an exact match.
16880 Fixes vertical-motion and pos-visible-in-window-p under bidi redisplay
16881 when exact match is impossible due to invisible text, and the
16882 lines are truncated.
16883
16884 2011-07-23 Jan Djärv <jan.h.d@swipnet.se>
16885
16886 * nsterm.m (initFrameFromEmacs): Set NSTitledWindowMask in styleMask
16887 for OSX >= 10.7.
16888
16889 2011-07-22 Eli Zaretskii <eliz@gnu.org>
16890
16891 Fix a significant slow-down of cursor motion with C-n, C-p,
16892 C-f/C-b, and C-v/M-v that couldn't keep up with keyboard
16893 auto-repeat under bidi redisplay in fontified buffers.
16894 * xdisp.c (compute_stop_pos_backwards): New function.
16895 (next_element_from_buffer): Call compute_stop_pos_backwards to
16896 find a suitable prev_stop when we find ourselves before
16897 base_level_stop.
16898 (reseat): Don't look for prev_stop, as that could mean a very long
16899 run.
16900 <cached_disp_pos, cached_disp_buffer, cached_disp_modiff>
16901 <cached_disp_overlay_modiff>: Cache for last found display string
16902 position.
16903 (compute_display_string_pos): Return the cached position if asked
16904 about the same buffer in the same area of character positions, and
16905 the buffer wasn't changed since the time the display string
16906 position was cached.
16907
16908 2011-07-22 Eli Zaretskii <eliz@gnu.org>
16909
16910 * xdisp.c (rows_from_pos_range): Don't ignore glyphs whose object
16911 is an integer, which is important for empty lines. (Bug#9149)
16912
16913 2011-07-22 Chong Yidong <cyd@stupidchicken.com>
16914
16915 * frame.c (Fmodify_frame_parameters): In tty case, update the
16916 default face if necessary (Bug#4238).
16917
16918 2011-07-21 Chong Yidong <cyd@stupidchicken.com>
16919
16920 * editfns.c (Fstring_to_char): No need to explain what a character
16921 is in the docstring (Bug#6576).
16922
16923 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
16924
16925 * xml.c (parse_region): Make sure we always return a tree.
16926
16927 2011-07-20 HAMANO Kiyoto <khiker.mail@gmail.com>
16928
16929 * xml.c (parse_region): If a document contains only comments,
16930 return that, too.
16931
16932 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
16933
16934 * xml.c (make_dom): Return comments, too.
16935
16936 2011-07-19 Paul Eggert <eggert@cs.ucla.edu>
16937
16938 Port to OpenBSD.
16939 See http://lists.gnu.org/archive/html/emacs-devel/2011-07/msg00688.html
16940 and the surrounding thread.
16941 * minibuf.c (read_minibuf_noninteractive): Rewrite to use getchar
16942 rather than fgets, and retry after EINTR. Otherwise, 'emacs
16943 --batch -f byte-compile-file' fails on OpenBSD if an inactivity
16944 timer goes off.
16945 * s/openbsd.h (BROKEN_SIGIO): Define.
16946 * unexelf.c (unexec) [__OpenBSD__]:
16947 Don't update the .mdebug section of the Alpha COFF symbol table.
16948
16949 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
16950
16951 * lread.c (syms_of_lread): Clarify when `lexical-binding' is used
16952 (bug#8460).
16953
16954 2011-07-18 Paul Eggert <eggert@cs.ucla.edu>
16955
16956 * fileio.c (Fcopy_file) [!MSDOS]: Tighten created file's mask.
16957 This fixes some race conditions on the permissions of any newly
16958 created file.
16959
16960 * alloc.c (valid_pointer_p): Use pipe, not open.
16961 This fixes some permissions issues when debugging.
16962
16963 * fileio.c (Fcopy_file): Adjust mode if fchown fails. (Bug#9002)
16964 If fchown fails to set both uid and gid, try to set just gid,
16965 as that is sometimes allowed. Adjust the file's mode to eliminate
16966 setuid or setgid bits that are inappropriate if fchown fails.
16967
16968 2011-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
16969
16970 * xdisp.c (next_element_from_string, next_element_from_buffer): Use EQ
16971 to compare Lisp_Objects.
16972 * gnutls.c (syms_of_gnutls): Rename Vgnutls_log_level to
16973 global_gnutls_log_level, don't mistake it for a Lisp_Object.
16974 (init_gnutls_functions, emacs_gnutls_handle_error): Fix up uses.
16975
16976 2011-07-17 Andreas Schwab <schwab@linux-m68k.org>
16977
16978 * lread.c (read_integer): Unread even EOF character.
16979 (read1): Likewise. Properly record start position of symbol.
16980
16981 * lread.c (read1): Read `#:' as empty uninterned symbol if no
16982 symbol character follows.
16983
16984 2011-07-17 Paul Eggert <eggert@cs.ucla.edu>
16985
16986 * fileio.c (Fcopy_file): Pacify gcc re fchown. (Bug#9002)
16987 This works around a problem with the previous change to Fcopy_file.
16988 Recent glibc declares fchown with __attribute__((warn_unused_result)),
16989 and without this change, GCC might complain about discarding
16990 fchown's return value.
16991
16992 2011-07-16 Juanma Barranquero <lekktu@gmail.com>
16993
16994 * makefile.w32-in (GLOBAL_SOURCES): Add gnutls.c (followup to bug#9059).
16995
16996 2011-07-16 Paul Eggert <eggert@cs.ucla.edu>
16997
16998 * fileio.c (Fcopy_file): Don't diagnose fchown failures. (Bug#9002)
16999
17000 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
17001
17002 * gnutls.c (syms_of_gnutls): Define `gnutls-log-level' here, since
17003 it's used from the C level.
17004
17005 * process.c: Use the same condition for POLL_FOR_INPUT in both
17006 keyboard.c and process.c (bug#1858).
17007
17008 2011-07-09 Lawrence Mitchell <wence@gmx.li>
17009
17010 * gnutls.c (Qgnutls_bootprop_min_prime_bits): New variable.
17011 (Fgnutls_boot): Use it.
17012
17013 2011-07-15 Andreas Schwab <schwab@linux-m68k.org>
17014
17015 * doc.c (Fsubstitute_command_keys): Revert last change.
17016
17017 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
17018
17019 * doc.c (Fsubstitute_command_keys): Clarify that \= really only
17020 quotes the next character, and doesn't affect other longer
17021 sequences (bug#8935).
17022
17023 * lread.c (syms_of_lread): Clarify that is isn't only
17024 `eval-buffer' and `eval-defun' that's affected by
17025 `lexical-binding' (bug#8460).
17026
17027 2011-07-15 Eli Zaretskii <eliz@gnu.org>
17028
17029 * xdisp.c (move_it_in_display_line_to): Fix vertical motion with
17030 bidi redisplay when a line includes both an image and is truncated.
17031
17032 2011-07-14 Paul Eggert <eggert@cs.ucla.edu>
17033
17034 Fix minor problems found by static checking.
17035 * bidi.c (bidi_cache_size): Now EMACS_INT, not size_t.
17036 (elsz): Now a signed constant, not a size_t var. We prefer signed
17037 types to unsigned, to avoid integer comparison confusion. Without
17038 this change, GCC 4.6.1 with -Wunsafe-loop-optimizations complains
17039 "cannot optimize loop, the loop counter may overflow", a symptom
17040 of the confusion.
17041 * indent.c (Fvertical_motion): Mark locals as initialized.
17042 * xdisp.c (reseat_to_string): Fix pointer signedness issue.
17043
17044 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
17045
17046 * search.c (Fre_search_backward): Mention `case-fold-search' in
17047 all the re_search_* functions (bug#8138).
17048
17049 * keyboard.c (Fopen_dribble_file): Document when the file is
17050 closed (bug#8056).
17051
17052 2011-07-14 Eli Zaretskii <eliz@gnu.org>
17053
17054 * bidi.c (bidi_dump_cached_states): Fix format of displaying
17055 bidi_cache_idx.
17056
17057 Support bidi reordering of display and overlay strings.
17058 * xdisp.c (compute_display_string_pos)
17059 (compute_display_string_end): Accept additional argument STRING.
17060 (init_iterator, reseat_1): Initialize bidi_it->string.s to NULL.
17061 (reseat_to_string): Initialize bidi_it->string.s and
17062 bidi_it->string.schars.
17063 (Fcurrent_bidi_paragraph_direction): Initialize itb.string.s to
17064 NULL (avoids a crash in bidi_paragraph_init).
17065 Initialize itb.string.lstring.
17066 (init_iterator): Call bidi_init_it only of a valid
17067 buffer position was specified. Initialize paragraph_embedding to
17068 L2R.
17069 (reseat_to_string): Initialize the bidi iterator.
17070 (display_string): If we need to ignore text properties of
17071 LISP_STRING, set IT->stop_charpos to IT->end_charpos. (The
17072 original value of -1 will not work with bidi.)
17073 (compute_display_string_pos): First arg is now struct
17074 `text_pos *'; all callers changed. Support display properties on
17075 Lisp strings.
17076 (compute_display_string_end): Support display properties on Lisp
17077 strings.
17078 (init_iterator, reseat_1, reseat_to_string): Initialize the
17079 string.bufpos member to 0 (zero, for compatibility with IT_CHARPOS
17080 when iterating on a string not from display properties).
17081 (compute_display_string_pos, compute_display_string_end):
17082 Fix calculation of the object to scan. Fixes an error when using
17083 arrow keys.
17084 (next_element_from_buffer): Don't abort when IT_CHARPOS is before
17085 base_level_stop; instead, set base_level_stop to BEGV.
17086 Fixes crashes in vertical-motion.
17087 (next_element_from_buffer): Improve commentary for when
17088 the iterator is before prev_stop.
17089 (init_iterator): Initialize bidi_p from the default value of
17090 bidi-display-reordering, not from buffer-local value. Use the
17091 buffer-local value only if initializing for buffer iteration.
17092 (handle_invisible_prop): Support invisible properties on strings
17093 that are being bidi-reordered.
17094 (set_iterator_to_next): Support bidi reordering of C strings and
17095 Lisp strings.
17096 (next_element_from_string): Support bidi reordering of Lisp
17097 strings.
17098 (handle_stop_backwards): Support Lisp strings as well.
17099 (display_string): Support display of R2L glyph rows.
17100 Use IT_STRING_CHARPOS when displaying from a Lisp string.
17101 (init_iterator): Don't initialize it->bidi_p for strings
17102 here.
17103 (reseat_to_string): Initialize it->bidi_p for strings here.
17104 (next_element_from_string, next_element_from_c_string)
17105 (next_element_from_buffer): Add xassert's for correspondence
17106 between IT's object being iterated and it->bidi_it.string
17107 structure.
17108 (face_before_or_after_it_pos): Support bidi iteration.
17109 (next_element_from_c_string): Handle the case of the first string
17110 character that is not the first one in the visual order.
17111 (get_visually_first_element): New function, refactored from common
17112 parts of next_element_from_buffer, next_element_from_string, and
17113 next_element_from_c_string.
17114 (tool_bar_lines_needed, redisplay_tool_bar)
17115 (display_menu_bar): Force left-to-right direction. Add a FIXME
17116 comment for making that be controlled by a user option.
17117 (push_it, pop_it): Save and restore the state of the
17118 bidi iterator. Save and restore the bidi_p flag.
17119 (pop_it): Iterate out of display property for string iteration as
17120 well.
17121 (iterate_out_of_display_property): Support iteration over strings.
17122 (handle_single_display_spec): Set up it->bidi_it for iteration
17123 over a display string, and call bidi_init_it.
17124 (handle_single_display_spec, next_overlay_string)
17125 (get_overlay_strings_1, push_display_prop): Set up the bidi
17126 iterator for displaying display or overlay strings.
17127 (forward_to_next_line_start): Don't use the shortcut if
17128 bidi-iterating.
17129 (back_to_previous_visible_line_start): If handle_display_prop
17130 pushed the iterator stack, restore the internal state of the bidi
17131 iterator by calling bidi_pop_it same number of times.
17132 (reseat_at_next_visible_line_start): If ON_NEWLINE_P is non-zero,
17133 and we are bidi-iterating, don't decrement the iterator position;
17134 instead, set the first_elt flag in the bidi iterator, to produce
17135 the same effect.
17136 (reseat_1): Remove redundant setting of string_from_display_prop_p.
17137 (push_display_prop): xassert that we are iterating a buffer.
17138 (push_it, pop_it): Save and restore paragraph_embedding member.
17139 (handle_single_display_spec, next_overlay_string)
17140 (get_overlay_strings_1, reseat_1, reseat_to_string)
17141 (push_display_prop): Set up the `unibyte' member of bidi_it.string
17142 correctly. Don't assume unibyte strings are not bidi-reordered.
17143 (compute_display_string_pos)
17144 (compute_display_string_end): Fix handling the case of C string.
17145 (push_it, pop_it): Save and restore from_disp_prop_p.
17146 (handle_single_display_spec, push_display_prop): Set the
17147 from_disp_prop_p flag.
17148 (get_overlay_strings_1): Reset the from_disp_prop_p flag.
17149 (pop_it): Call iterate_out_of_display_property only if we are
17150 popping after iteration over a string that came from a display
17151 property. Fix a typo in popping stretch info. Add an assertion
17152 for verifying that the iterator position is in sync with the bidi
17153 iterator.
17154 (handle_single_display_spec, get_overlay_strings_1)
17155 (push_display_prop): Fix initialization of paragraph direction for
17156 string when that of the parent object is not yet determined.
17157 (reseat_1): Call bidi_init_it to resync the bidi
17158 iterator with IT's position. (Bug#7616)
17159 (find_row_edges): If ROW->start.pos gives position
17160 smaller than min_pos, use it as ROW->minpos. (Bug#7616)
17161 (handle_stop, back_to_previous_visible_line_start, reseat_1):
17162 Reset the from_disp_prop_p flag.
17163 (SAVE_IT, RESTORE_IT): New macros.
17164 (pos_visible_p, face_before_or_after_it_pos)
17165 (back_to_previous_visible_line_start)
17166 (move_it_in_display_line_to, move_it_in_display_line)
17167 (move_it_to, move_it_vertically_backward, move_it_by_lines)
17168 (try_scrolling, redisplay_window, display_line): Use them when
17169 saving a temporary copy of the iterator and restoring it back.
17170 (back_to_previous_visible_line_start, reseat_1)
17171 (init_iterator): Empty the bidi cache "stack".
17172 (move_it_in_display_line_to): If iterator ended up at
17173 EOL, but we never saw any buffer positions smaller than
17174 to_charpos, return MOVE_POS_MATCH_OR_ZV. Fixes vertical cursor
17175 motion in bidi-reordered lines.
17176 (move_it_in_display_line_to): Record prev_method and prev_pos
17177 immediately before the call to set_iterator_to_next. Fixes cursor
17178 motion in bidi-reordered lines with stretch glyphs and strings
17179 displayed in margins. (Bug#8133) (Bug#8867)
17180 Return MOVE_POS_MATCH_OR_ZV only if iterator position is past
17181 TO_CHARPOS.
17182 (pos_visible_p): Support positions in bidi-reordered lines.
17183 Save and restore bidi cache.
17184
17185 * bidi.c (bidi_level_of_next_char): clen should be EMACS_NT, not int.
17186 (bidi_paragraph_info): Delete unused struct.
17187 (bidi_cache_idx, bidi_cache_last_idx): Declare EMACS_INT.
17188 (bidi_cache_start): New variable.
17189 (bidi_cache_reset): Reset bidi_cache_idx to bidi_cache_start, not
17190 to zero.
17191 (bidi_cache_fetch_state, bidi_cache_search)
17192 (bidi_cache_find_level_change, bidi_cache_iterator_state)
17193 (bidi_cache_find, bidi_peek_at_next_level)
17194 (bidi_level_of_next_char, bidi_find_other_level_edge)
17195 (bidi_move_to_visually_next): Compare cache index with
17196 bidi_cache_start rather than with zero.
17197 (bidi_fetch_char): Accept new argument STRING; all callers
17198 changed. Support iteration over a string. Support strings with
17199 display properties. Support unibyte strings. Fix the type of
17200 `len' according to what STRING_CHAR_AND_LENGTH expects.
17201 (bidi_paragraph_init, bidi_resolve_explicit_1)
17202 (bidi_resolve_explicit, bidi_resolve_weak)
17203 (bidi_level_of_next_char, bidi_move_to_visually_next):
17204 Support iteration over a string.
17205 (bidi_set_sor_type, bidi_resolve_explicit_1)
17206 (bidi_resolve_explicit, bidi_type_of_next_char): ignore_bn_limit
17207 can now be zero (for strings); special values 0 and -1 were
17208 changed to -1 and -2, respectively.
17209 (bidi_char_at_pos): New function.
17210 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak):
17211 Call it instead of FETCH_MULTIBYTE_CHAR.
17212 (bidi_move_to_visually_next): Abort if charpos or bytepos were not
17213 initialized to valid values.
17214 (bidi_init_it): Don't initialize charpos and bytepos with invalid
17215 values.
17216 (bidi_level_of_next_char): Allow the sentinel "position" to pass
17217 the test for valid cached positions. Fix the logic for looking up
17218 the sentinel state in the cache. GCPRO the Lisp string we are
17219 iterating.
17220 (bidi_push_it, bidi_pop_it): New functions.
17221 (bidi_initialize): Initialize the bidi cache start stack pointer.
17222 (bidi_cache_ensure_space): New function, refactored from part of
17223 bidi_cache_iterator_state. Don't assume the required size is just
17224 one BIDI_CACHE_CHUNK away.
17225 (bidi_cache_start_stack, bidi_push_it): Use IT_STACK_SIZE.
17226 (bidi_count_bytes, bidi_char_at_pos): New functions.
17227 (bidi_cache_search): Don't assume bidi_cache_last_idx is
17228 always valid if bidi_cache_idx is valid.
17229 (bidi_cache_find_level_change): xassert that bidi_cache_last_idx
17230 is valid if it's going to be used.
17231 (bidi_shelve_cache, bidi_unshelve_cache): New functions.
17232 (bidi_cache_fetch_state, bidi_cache_search)
17233 (bidi_cache_find_level_change, bidi_cache_ensure_space)
17234 (bidi_cache_iterator_state, bidi_cache_find)
17235 (bidi_find_other_level_edge, bidi_cache_start_stack):
17236 All variables related to cache indices are now EMACS_INT.
17237
17238 * dispextern.h (struct bidi_string_data): New structure.
17239 (struct bidi_it): New member `string'. Make flag members be 1-bit
17240 fields, and put them last in the struct.
17241 (compute_display_string_pos, compute_display_string_end):
17242 Update prototypes.
17243 (bidi_push_it, bidi_pop_it): Add prototypes.
17244 (struct iterator_stack_entry): New members bidi_p,
17245 paragraph_embedding, and from_disp_prop_p.
17246 (struct it): Member bidi_p is now a bit field 1 bit wide.
17247 (bidi_shelve_cache, bidi_unshelve_cache):
17248 Declare prototypes.
17249
17250 * .gdbinit (xvectype, xvector, xcompiled, xchartable, xboolvector)
17251 (xpr, xfont, xbacktrace): Use "header.size" when accessing vectors
17252 and vector-like objects.
17253
17254 * dispnew.c (buffer_posn_from_coords): Save and restore the bidi
17255 cache around display iteration.
17256
17257 * window.c (Fwindow_end, window_scroll_pixel_based)
17258 (displayed_window_lines, Frecenter): Save and restore the bidi
17259 cache around display iteration.
17260
17261 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
17262
17263 * editfns.c (Fdelete_region): Clarify the use of the named
17264 parameters (bug#6788).
17265
17266 2011-07-14 Martin Rudalics <rudalics@gmx.at>
17267
17268 * indent.c (Fvertical_motion): Set and restore w->pointm when
17269 saving and restoring the window's buffer (Bug#9006).
17270
17271 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
17272
17273 * editfns.c (Fstring_to_char): Clarify just what is returned
17274 (bug#6576). Text by Eli Zaretskii.
17275
17276 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
17277
17278 * gnutls.c (init_gnutls_functions): Honor gnutls_log_level (bug#9059).
17279
17280 2011-07-13 Eli Zaretskii <eliz@gnu.org>
17281
17282 * buffer.c (mmap_find): Fix a typo.
17283
17284 2011-07-13 Johan Bockgård <bojohan@gnu.org>
17285
17286 Fix execution of x selection hooks.
17287 * xselect.c (Qx_lost_selection_functions)
17288 (Qx_sent_selection_functions): New vars.
17289 (syms_of_xselect): DEFSYM them.
17290 (x_handle_selection_request): Pass Qx_sent_selection_functions
17291 rather than Vx_sent_selection_functions to Frun_hook_with_args.
17292 (x_handle_selection_clear,x_clear_frame_selections):
17293 Pass Qx_lost_selection_functions rather than
17294 Vx_lost_selection_functions to Frun_hook_with_args.
17295
17296 2011-07-13 Paul Eggert <eggert@cs.ucla.edu>
17297
17298 * buffer.c (Fget_buffer_create): Initialize inhibit_shrinking.
17299 The old code sometimes used this field without initializing it.
17300
17301 * alloc.c (gc_sweep): Don't read past end of array.
17302 In theory, the old code could also have corrupted Emacs internals,
17303 though it'd be very unlikely.
17304
17305 2011-07-12 Andreas Schwab <schwab@linux-m68k.org>
17306
17307 * character.c (Fcharacterp): Don't advertise optional ignored
17308 argument. (Bug#4026)
17309
17310 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
17311
17312 * keymap.c (syms_of_keymap): Clarify that "modifier" is "modifier
17313 key" (bug#4257).
17314
17315 * window.c (Fset_window_start): Doc fix (bug#4199).
17316 (Fset_window_hscroll): Ditto.
17317
17318 2011-07-12 Paul Eggert <eggert@cs.ucla.edu>
17319
17320 Fix minor new problems caught by GCC 4.6.1.
17321 * term.c (init_tty): Remove unused local.
17322 * xsettings.c (store_monospaced_changed): Define this function only
17323 if (defined HAVE_GSETTINGS || defined HAVE_GCONF), as it's
17324 not used otherwise.
17325
17326 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
17327
17328 * xdisp.c (Vresize_mini_windows): Minor doc fix (Bug#3300).
17329
17330 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
17331
17332 * xdisp.c (syms_of_xdisp): Make it explicit that the mini-windows
17333 are the mini-buffer and the echo area (bug#3320).
17334
17335 * term.c (init_tty): Remove support for supdup, c10 and perq
17336 terminals, which are no longer supported (bug#1482).
17337
17338 2011-07-10 Johan Bockgård <bojohan@gnu.org>
17339
17340 * xdisp.c (Ftool_bar_lines_needed): Fix WINDOWP check.
17341
17342 2011-07-10 Jan Djärv <jan.h.d@swipnet.se>
17343
17344 * xmenu.c (menu_highlight_callback): Only pass frame to show_help_event
17345 for non-popups (Bug#3642).
17346
17347 2011-07-10 Andreas Schwab <schwab@linux-m68k.org>
17348
17349 * alloc.c (reset_malloc_hooks): Protoize.
17350 * buffer.c (mmap_init, mmap_find, mmap_free_1, mmap_enlarge)
17351 (mmap_set_vars, mmap_alloc, mmap_free, mmap_realloc): Likewise.
17352 * cm.c (losecursor): Likewise.
17353 * data.c (fmod): Likewise.
17354 * dispnew.c (swap_glyphs_in_rows): Likewise.
17355 * emacs.c (memory_warning_signal): Likewise.
17356 * floatfns.c (float_error): Likewise.
17357 * font.c (check_gstring, check_otf_features, otf_tag_symbol)
17358 (otf_open, font_otf_capability, generate_otf_features)
17359 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
17360 Likewise.
17361 * image.c (pbm_read_file): Likewise.
17362 * indent.c (string_display_width): Likewise.
17363 * intervals.c (check_for_interval, search_for_interval)
17364 (inc_interval_count, count_intervals, root_interval)
17365 (adjust_intervals_for_insertion, make_new_interval): Likewise.
17366 * lread.c (defalias): Likewise.
17367 * ralloc.c (r_alloc_check): Likewise.
17368 * regex.c (set_image_of_range_1, set_image_of_range)
17369 (regex_grow_registers): Likewise.
17370 * sysdep.c (strerror): Likewise.
17371 * termcap.c (valid_filename_p, tprint, main): Likewise.
17372 * tparam.c (main): Likewise.
17373 * unexhp9k800.c (run_time_remap, save_data_space)
17374 (update_file_ptrs, read_header, write_header, calculate_checksum)
17375 (copy_file, copy_rest, display_header): Likewise.
17376 * widget.c (mark_shell_size_user_specified, create_frame_gcs):
17377 Likewise.
17378 * xdisp.c (check_it): Likewise.
17379 * xfaces.c (register_color, unregister_color, unregister_colors):
17380 Likewise.
17381 * xfns.c (print_fontset_result): Likewise.
17382 * xrdb.c (member, fatal, main): Likewise.
17383
17384 2011-07-10 Paul Eggert <eggert@cs.ucla.edu>
17385
17386 Fix minor problems found by static checking (Bug#9031).
17387 * chartab.c (char_table_set_range, map_sub_char_table):
17388 Remove unused locals.
17389 (uniprop_table): Now static.
17390 * composite.c (_work_char): Remove unused static var.
17391
17392 2011-07-09 Juanma Barranquero <lekktu@gmail.com>
17393
17394 * chartab.c (uniprop_table_uncompress): Remove unused local variable.
17395
17396 2011-07-09 Jan Djärv <jan.h.d@swipnet.se>
17397
17398 * gtkutil.c (qttip_cb): Remove code without function.
17399
17400 2011-07-09 Eli Zaretskii <eliz@gnu.org>
17401
17402 * w32.c (pthread_sigmask): New stub.
17403
17404 2011-07-08 Paul Eggert <eggert@cs.ucla.edu>
17405
17406 Use pthread_sigmask, not sigprocmask (Bug#9010).
17407 sigprocmask is portable only for single-threaded applications, and
17408 Emacs can be multi-threaded when it uses GTK.
17409 * Makefile.in (LIB_PTHREAD_SIGMASK): New macro.
17410 (LIBES): Use it.
17411 * callproc.c (Fcall_process):
17412 * process.c (create_process):
17413 * sysdep.c (sys_sigblock, sys_sigunblock, sys_sigsetmask):
17414 Use pthread_sigmask, not sigprocmask.
17415
17416 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
17417
17418 * gtkutil.c (qttip_cb): Set line wrap to FALSE for tooltip widget.
17419 (xg_prepare_tooltip): Revert text in x->ttip_lbl, margins was
17420 wrong (Bug#8591).
17421
17422 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
17423
17424 * gtkutil.c (xg_prepare_tooltip): Fix indentation and comment.
17425 Put text in x->ttip_lbl instead of gtk_tooltip_set_text (Bug#8591).
17426 (xg_hide_tooltip): Fix comment.
17427
17428 * nsterm.m (initFrameFromEmacs): Don't use ns_return_types
17429 in registerServicesMenuSendTypes.
17430 (validRequestorForSendType): Don't check ns_return_types.
17431
17432 * nsfns.m (Fx_open_connection): Put NSStringPboardType into
17433 ns_return_type.
17434
17435 2011-07-08 Jason Rumney <jasonr@gnu.org>
17436
17437 * w32term.c (x_make_frame_visible): Use SH_SHOWNORMAL rather than
17438 SH_SHOW for hidden windows (Bug#5482).
17439
17440 * w32fns.c (w32_wnd_proc) [WM_TIMER, WM_SET_CURSOR]: Avoid using
17441 frame struct members of non-existent frames (Bug#6284).
17442
17443 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
17444
17445 * nsterm.m (keyDown): Call to wantsToDelayTextChangeNotifications and
17446 variable firstTime not needed on OSX >= 10.6.
17447 (setPosition): setFloatValue:knobProportion: is deprecated on OSX
17448 >= 10.5. Use setKnobProportion, setDoubleValue.
17449
17450 * nsterm.h (MAC_OS_X_VERSION_10_3, MAC_OS_X_VERSION_10_4)
17451 (MAC_OS_X_VERSION_10_5): Define if not defined.
17452 (EmacsView, EmacsTooltip): Implements NSWindowDelegate on OSX >= 10.6.
17453 (EmacsMenu): Implements NSMenuDelegate on OSX >= 10.6.
17454 (EmacsToolbar): Implements NSToolbarDelegate on OSX >= 10.6.
17455
17456 * nsselect.m (ns_string_from_pasteboard): Don't use deprecated methods
17457 cString and lossyCString on OSX >= 10.4.
17458
17459 * nsmenu.m (fillWithWidgetValue): Don't use deprecated method
17460 sizeToFit on OSX >= 10.2.
17461
17462 * nsimage.m (allocInitFromFile): Don't use deprecated method
17463 bestRepresentationForDevice on OSX >= 10.6.
17464
17465 * nsfns.m (check_ns_display_info): Cast to long and use %ld in error
17466 to avoid warning.
17467
17468 * emacs.c: Declare unexec_init_emacs_zone.
17469
17470 * nsgui.h: Fix compiler warning about gnulib redefining verify.
17471
17472 * nsselect.m (ns_get_local_selection): Change to extern (Bug#8842).
17473
17474 * nsmenu.m (ns_update_menubar): Remove useless setDelegate call
17475 on svcsMenu (Bug#8842).
17476
17477 * nsfns.m (Fx_open_connection): Remove NSStringPboardType from
17478 ns_return_types.
17479 (Fns_list_services): Just return Qnil on 10.6, code not working there.
17480
17481 * nsterm.m (QUTF8_STRING): Declare.
17482 (initFrameFromEmacs): Call registerServicesMenuSendTypes.
17483 (validRequestorForSendType): Return type is (id).
17484 Change indexOfObjectIdenticalTo to indexOfObject.
17485 Check if we have local selection before returning self (Bug#8842).
17486 (writeSelectionToPasteboard): Put local selection into paste board
17487 if we have a local selection (Bug#8842).
17488 (syms_of_nsterm): DEFSYM QUTF8_STRING.
17489
17490 * nsterm.h (MAC_OS_X_VERSION_10_6): Define here instead of nsterm.m.
17491 (ns_get_local_selection): Declare.
17492
17493 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
17494
17495 * keymap.c (describe_map_tree): Don't insert a double newline at
17496 the end of the buffer (bug#1169) and return whether we inserted
17497 something.
17498
17499 * callint.c (Fcall_interactively): Change "reading args" to
17500 "providing args" to try to clarify what it does (bug#1010).
17501
17502 2011-07-07 Kenichi Handa <handa@m17n.org>
17503
17504 * composite.c (composition_compute_stop_pos): Ignore a static
17505 composition starting before CHARPOS (Bug#8915).
17506
17507 * xdisp.c (handle_composition_prop): Likewise.
17508
17509 2011-07-07 Eli Zaretskii <eliz@gnu.org>
17510
17511 * term.c (produce_glyphs) <xassert>: Allow IT_GLYPHLESS in it->what.
17512 (Bug#9015)
17513
17514 2011-07-07 Kenichi Handa <handa@m17n.org>
17515
17516 * character.h (unicode_category_t): New enum type.
17517
17518 * chartab.c (uniprop_decoder_t, uniprop_encoder_t): New types.
17519 (Qchar_code_property_table): New variable.
17520 (UNIPROP_TABLE_P, UNIPROP_GET_DECODER)
17521 (UNIPROP_COMPRESSED_FORM_P): New macros.
17522 (char_table_ascii): Uncompress the compressed values.
17523 (sub_char_table_ref): New arg is_uniprop. Callers changed.
17524 Uncompress the compressed values.
17525 (sub_char_table_ref_and_range): Likewise.
17526 (char_table_ref_and_range): Uncompress the compressed values.
17527 (sub_char_table_set): New arg is_uniprop. Callers changed.
17528 Uncompress the compressed values.
17529 (sub_char_table_set_range): Args changed. Callers changed.
17530 (char_table_set_range): Adjuted for the above change.
17531 (map_sub_char_table): Delete args default_val and parent. Add arg
17532 top. Give decoded values to a Lisp function.
17533 (map_char_table): Adjust for the above change. Give decoded
17534 values to a Lisp function. Gcpro more variables.
17535 (uniprop_table_uncompress)
17536 (uniprop_decode_value_run_length): New functions.
17537 (uniprop_decoder, uniprop_decoder_count): New variables.
17538 (uniprop_get_decoder, uniprop_encode_value_character)
17539 (uniprop_encode_value_run_length, uniprop_encode_value_numeric):
17540 New functions.
17541 (uniprop_encoder, uniprop_encoder_count): New variables.
17542 (uniprop_get_encoder, uniprop_table)
17543 (Funicode_property_table_internal, Fget_unicode_property_internal)
17544 (Fput_unicode_property_internal): New functions.
17545 (syms_of_chartab): DEFSYM Qchar_code_property_table, defsubr
17546 Sunicode_property_table_internal, Sget_unicode_property_internal,
17547 and Sput_unicode_property_internal. Defvar_lisp
17548 char-code-property-alist.
17549
17550 * composite.c (CHAR_COMPOSABLE_P): Adjust for the change of
17551 Vunicode_category_table.
17552
17553 * font.c (font_range): Adjust for the change of
17554 Vunicode_category_table.
17555
17556 2011-07-07 Dan Nicolaescu <dann@ics.uci.edu>
17557
17558 * m/iris4d.h: Remove file, move contents ...
17559 * s/irix6-5.h: ... here.
17560
17561 2011-07-06 Paul Eggert <eggert@cs.ucla.edu>
17562
17563 Remove unportable assumption about struct layout (Bug#8884).
17564 * alloc.c (mark_buffer):
17565 * buffer.c (reset_buffer_local_variables, Fbuffer_local_variables)
17566 (clone_per_buffer_values): Don't assume that
17567 sizeof (struct buffer) is a multiple of sizeof (Lisp_Object).
17568 This isn't true in general, and it's particularly not true
17569 if Emacs is configured with --with-wide-int.
17570 * buffer.h (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER):
17571 New macros, used in the buffer.c change.
17572
17573 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
17574
17575 * xsettings.c: Use both GConf and GSettings if both are available.
17576 (store_config_changed_event): Add comment.
17577 (dpyinfo_valid, store_font_name_changed, map_tool_bar_style)
17578 (store_tool_bar_style_changed): New functions.
17579 (store_monospaced_changed): Add comment. Call dpyinfo_valid.
17580 (struct xsettings): Move font inside HAVE_XFT.
17581 (GSETTINGS_TOOL_BAR_STYLE, GSETTINGS_FONT_NAME): New defines.
17582 (GSETTINGS_MONO_FONT): Rename from SYSTEM_MONO_FONT.
17583 Move inside HAVE_XFT.
17584 (something_changed_gsettingsCB): Rename from something_changedCB.
17585 Check for changes in GSETTINGS_TOOL_BAR_STYLE and GSETTINGS_FONT_NAME
17586 also.
17587 (GCONF_TOOL_BAR_STYLE, GCONF_FONT_NAME): New defines.
17588 (GCONF_MONO_FONT): Rename from SYSTEM_MONO_FONT. Move inside HAVE_XFT.
17589 (something_changed_gconfCB): Rename from something_changedCB.
17590 Check for changes in GCONF_TOOL_BAR_STYLE and GCONF_FONT_NAME also.
17591 (parse_settings): Move check for font inside HAVE_XFT.
17592 (read_settings, apply_xft_settings): Add comment.
17593 (read_and_apply_settings): Add comment. Call map_tool_bar_style and
17594 store_tool_bar_style_changed. Move check for font inside HAVE_XFT and
17595 call store_font_name_changed.
17596 (xft_settings_event): Add comment.
17597 (init_gsettings): Add comment. Get values for GSETTINGS_TOOL_BAR_STYLE
17598 and GSETTINGS_FONT_NAME. Move check for fonts within HAVE_XFT.
17599 (init_gconf): Add comment. Get values for GCONF_TOOL_BAR_STYLE
17600 and GCONF_FONT_NAME. Move check for fonts within HAVE_XFT.
17601 (xsettings_initialize): Call init_gsettings last.
17602 (xsettings_get_system_font, xsettings_get_system_normal_font):
17603 Add comment.
17604
17605 2011-07-05 Paul Eggert <eggert@cs.ucla.edu>
17606
17607 Random fixes. E.g., (random) never returned negative values.
17608 * fns.c (Frandom): Use GET_EMACS_TIME for random seed, and add the
17609 subseconds part to the entropy, as that's a bit more random.
17610 Prefer signed to unsigned, since the signedness doesn't matter and
17611 in general we prefer signed. When given a limit, use a
17612 denominator equal to INTMASK + 1, not to VALMASK + 1, because the
17613 latter isn't right if USE_2_TAGS_FOR_INTS.
17614 * sysdep.c (get_random): Return a value in the range 0..INTMASK,
17615 not 0..VALMASK. Don't discard "excess" bits that random () returns.
17616
17617 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
17618
17619 * textprop.c (text_property_stickiness):
17620 Obey Vtext_property_default_nonsticky.
17621 (syms_of_textprop): Add `display' to Vtext_property_default_nonsticky.
17622 * w32fns.c (syms_of_w32fns):
17623 * xfns.c (syms_of_xfns): Don't Add `display' since it's there by default.
17624
17625 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
17626
17627 * fileio.c (barf_or_query_if_file_exists): Use S_ISDIR.
17628 This is more efficient than Ffile_directory_p and avoids a minor race.
17629
17630 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
17631
17632 * buffer.c (Foverlay_put): Say what the return value is
17633 (bug#7835).
17634
17635 * fileio.c (barf_or_query_if_file_exists): Check first if the file
17636 is a directory before asking whether to use the file name
17637 (bug#7564).
17638 (barf_or_query_if_file_exists): Make the "File is a directory"
17639 error be more correct.
17640
17641 * fns.c (Frequire): Remove the mention of the .gz files, since
17642 that's installation-specific, but keep the mention of
17643 `get-load-suffixes'.
17644
17645 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
17646
17647 * editfns.c (Fformat_time_string): Don't assume strlen fits in int.
17648 Report string overflow if the output is too long.
17649
17650 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
17651
17652 * gnutls.c (Fgnutls_boot): Don't mention :verify-error.
17653 (syms_of_gnutls): Remove duplicate DEFSYM for
17654 Qgnutls_bootprop_verify_hostname_error, an error for
17655 Qgnutls_bootprop_verify_error (which is no longer used).
17656
17657 * eval.c (find_handler_clause): Remove parameters `sig' and `data',
17658 unused since 2011-01-26T20:02:07Z!monnier@iro.umontreal.ca. All callers changed.
17659 Also (re)move comments that are misplaced or no longer relevant.
17660
17661 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
17662
17663 * callint.c (Finteractive): Clarify the meaning of "@" (bug#8813).
17664
17665 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
17666
17667 * xfaces.c (Finternal_merge_in_global_face): Modify the foreground
17668 and background color parameters if they have been changed.
17669
17670 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
17671
17672 * editfns.c (Fformat): Clarify the - and 0 flags (bug#6659).
17673
17674 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
17675
17676 * xsettings.c (SYSTEM_FONT): Define only when used.
17677 No need to define when HAVE_GSETTINGS || !HAVE_XFT.
17678
17679 * keymap.c (access_keymap_1): Now static.
17680
17681 2011-07-02 Chong Yidong <cyd@stupidchicken.com>
17682
17683 * keyboard.c (command_loop_1): If a down-mouse event is unbound,
17684 leave any prefix arg for the up event (Bug#1586).
17685
17686 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
17687
17688 * lread.c (syms_of_lread): Mention single symbols defined by
17689 `defvar' or `defconst' (bug#7154).
17690
17691 * fns.c (Frequire): Mention .el.gz files (bug#7314).
17692 (Frequire): Mention get-load-suffixes.
17693
17694 2011-07-02 Martin Rudalics <rudalics@gmx.at>
17695
17696 * window.h (window): Remove clone_number slot.
17697 * window.c (Fwindow_clone_number, Fset_window_clone_number):
17698 Remove.
17699 (make_parent_window, make_window, saved_window)
17700 (Fset_window_configuration, save_window_save): Don't deal with
17701 clone numbers.
17702 * buffer.c (Qclone_number): Remove declaration.
17703 (sort_overlays, overlay_strings): Don't deal with clone numbers.
17704
17705 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
17706
17707 Add multiple inheritance to keymaps.
17708 * keymap.c (Fmake_composed_keymap): New function.
17709 (Fset_keymap_parent): Simplify.
17710 (fix_submap_inheritance): Remove.
17711 (access_keymap_1): New function extracted from access_keymap to handle
17712 embedded parents and handle lists of maps.
17713 (access_keymap): Use it.
17714 (Fkeymap_prompt, map_keymap_internal, map_keymap, store_in_keymap)
17715 (Fcopy_keymap): Handle embedded parents.
17716 (Fcommand_remapping, define_as_prefix): Simplify.
17717 (Fkey_binding): Simplify.
17718 (syms_of_keymap): Move minibuffer-local-completion-map,
17719 minibuffer-local-filename-completion-map,
17720 minibuffer-local-must-match-map, and
17721 minibuffer-local-filename-must-match-map to Elisp.
17722 (syms_of_keymap): Defsubr make-composed-keymap.
17723 * keyboard.c (menu_bar_items): Use map_keymap_canonical.
17724 (parse_menu_item): Trivial simplification.
17725
17726 2011-07-01 Glenn Morris <rgm@gnu.org>
17727
17728 * Makefile.in (SETTINGS_LIBS): Fix typo.
17729
17730 2011-07-01 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
17731
17732 * coding.c (Fencode_coding_string): Record the last coding system
17733 used, as the function doc string says (bug#8738).
17734
17735 2011-07-01 Jan Djärv <jan.h.d@swipnet.se>
17736
17737 * xsettings.c (store_monospaced_changed): Take new font as arg and
17738 check for change against current_mono_font.
17739 (EMACS_TYPE_SETTINGS): Remove this and related defines.
17740 (emacs_settings_constructor, emacs_settings_get_property)
17741 (emacs_settings_set_property, emacs_settings_class_init)
17742 (emacs_settings_init, gsettings_obj): Remove.
17743 (something_changedCB): New function for HAVE_GSETTINGS.
17744 (something_changedCB): HAVE_GCONF: Call store_monospaced_changed
17745 with value as argument.
17746 (init_gsettings): Check that GSETTINGS_SCHEMA exists before calling
17747 g_settings_new (Bug#8967). Do not create gsettings_obj.
17748 Remove calls to g_settings_bind. Connect something_changedCB to
17749 "changed".
17750
17751 * xgselect.c: Add defined (HAVE_GSETTINGS).
17752 (xgselect_initialize): Ditto.
17753
17754 * process.c: Add defined (HAVE_GSETTINGS) for xgselect.h
17755 (wait_reading_process_output): Add defined (HAVE_GSETTINGS) for
17756 xg_select.
17757
17758 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
17759
17760 * eval.c (struct backtrace): Simplify and port the data structure.
17761 Do not assume that "int nargs : BITS_PER_INT - 2;" produces a
17762 signed bit field, as this assumption is not portable and it makes
17763 Emacs crash when compiled with Sun C 5.8 on sparc. Do not use
17764 "char debug_on_exit : 1" as this is not portable either; instead,
17765 use the portable "unsigned int debug_on_exit : 1". Remove unused
17766 member evalargs. Remove obsolete comments about cc bombing out.
17767
17768 2011-06-30 Jan Djärv <jan.h.d@swipnet.se>
17769
17770 * xsettings.c: Include glib-object.h, gio/gio.h if HAVE_GSETTINGS.
17771 Let HAVE_GSETTINGS override HAVE_GCONF.
17772 (store_monospaced_changed): New function.
17773 (EMACS_SETTINGS): A new type derived from GObject to handle
17774 GSettings notifications.
17775 (emacs_settings_constructor, emacs_settings_get_property)
17776 (emacs_settings_set_property, emacs_settings_class_init):
17777 New functions.
17778 (gsettings_client, gsettings_obj): New variables.
17779 (GSETTINGS_SCHEMA): New define.
17780 (something_changedCB): Call store_monospaced_changed.
17781 (init_gsettings): New function.
17782 (xsettings_initialize): Call init_gsettings.
17783 (syms_of_xsettings): Initialize gsettings_client, gsettings_obj
17784 to NULL.
17785
17786 * Makefile.in (SETTINGS_CFLAGS, SETTINGS_LIBS): Rename from
17787 GCONF_CFLAGS/LIBS.
17788
17789 2011-06-29 Martin Rudalics <rudalics@gmx.at>
17790
17791 * window.c (resize_root_window, grow_mini_window)
17792 (shrink_mini_window): Rename Qresize_root_window to
17793 Qwindow_resize_root_window and Qresize_root_window_vertically to
17794 Qwindow_resize_root_window_vertically.
17795
17796 2011-06-28 Paul Eggert <eggert@cs.ucla.edu>
17797
17798 * gnutls.c (Qgnutls_bootprop_verify_error): Remove unused var.
17799
17800 2011-06-27 Juanma Barranquero <lekktu@gmail.com>
17801
17802 * makefile.w32-in: Redesign dependencies so they reflect more
17803 clearly which files are directly included by each source file,
17804 and not through other includes.
17805
17806 2011-06-27 Martin Rudalics <rudalics@gmx.at>
17807
17808 * buffer.c (Qclone_number): Declare static and DEFSYM it.
17809 (sort_overlays, overlay_strings): When an overlay's clone number
17810 matches the window's clone number process the overlay even if
17811 the overlay's window property doesn't match the current window.
17812
17813 * window.c (Fwindow_vchild): Rename to Fwindow_top_child.
17814 (Fwindow_hchild): Rename to Fwindow_left_child.
17815 (Fwindow_next): Rename to Fwindow_next_sibling.
17816 (Fwindow_prev): Rename to Fwindow_prev_sibling.
17817 (resize_window_check): Rename to window_resize_check.
17818 (resize_window_apply): Rename to window_resize_apply.
17819 (Fresize_window_apply): Rename to Fwindow_resize_apply.
17820 (Fdelete_other_windows_internal, resize_frame_windows)
17821 (Fsplit_window_internal, Fdelete_window_internal)
17822 (grow_mini_window, shrink_mini_window)
17823 (Fresize_mini_window_internal): Fix callers accordingly.
17824
17825 2011-06-26 Jan Djärv <jan.h.d@swipnet.se>
17826
17827 * emacsgtkfixed.h: State that this is only used with Gtk+3.
17828 (emacs_fixed_set_min_size): Remove.
17829 (emacs_fixed_new): Take frame as argument.
17830
17831 * emacsgtkfixed.c: State that this is only used with Gtk+3.
17832 (_EmacsFixedPrivate): Remove minwidth/height.
17833 Add struct frame *f.
17834 (emacs_fixed_init): Initialize priv->f.
17835 (get_parent_class, emacs_fixed_set_min_size): Remove.
17836 (emacs_fixed_new): Set priv->f to argument.
17837 (emacs_fixed_get_preferred_width)
17838 (emacs_fixed_get_preferred_height): Use min_width/height from
17839 frames size_hint to set minimum and natural (Bug#8919).
17840 (XSetWMSizeHints, XSetWMNormalHints): Override these functions
17841 and use min_width/height from frames size_hint to set
17842 min_width/height (Bug#8919).
17843
17844 * gtkutil.c (xg_create_frame_widgets): Pass f to emacs_fixed_new.
17845 (x_wm_set_size_hint): Remove call to emacs_fixed_set_min_size.
17846 Fix indentation.
17847
17848 2011-06-26 Eli Zaretskii <eliz@gnu.org>
17849
17850 * bidi.c (bidi_paragraph_init): Test for ZV_BYTE before calling
17851 bidi_at_paragraph_end, since fast_looking_at doesn't like to be
17852 called at ZV.
17853
17854 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
17855
17856 * process.c (wait_reading_process_output): Bypass select if
17857 waiting for a cell while ignoring keyboard input, and input is
17858 pending. Suggested by Jan Djärv (Bug#8869).
17859
17860 2011-06-25 Paul Eggert <eggert@cs.ucla.edu>
17861
17862 Use gnulib's dup2 module instead of rolling our own.
17863 * sysdep.c (dup2) [!HAVE_DUP2]: Remove; gnulib now does this.
17864
17865 2011-06-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17866
17867 * dispnew.c (scrolling_window): Before scrolling, turn off a
17868 mouse-highlight in the window being scrolled.
17869
17870 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
17871
17872 Move DEFSYM to lisp.h and use everywhere.
17873
17874 * character.h (DEFSYM): Move declaration...
17875 * lisp.h (DEFSYM): ...here.
17876
17877 * gnutls.c:
17878 * minibuf.c:
17879 * w32menu.c:
17880 * w32proc.c:
17881 * w32select.c: Don't include character.h.
17882
17883 * alloc.c (syms_of_alloc):
17884 * buffer.c (syms_of_buffer):
17885 * bytecode.c (syms_of_bytecode):
17886 * callint.c (syms_of_callint):
17887 * casefiddle.c (syms_of_casefiddle):
17888 * casetab.c (init_casetab_once):
17889 * category.c (init_category_once, syms_of_category):
17890 * ccl.c (syms_of_ccl):
17891 * cmds.c (syms_of_cmds):
17892 * composite.c (syms_of_composite):
17893 * dbusbind.c (syms_of_dbusbind):
17894 * dired.c (syms_of_dired):
17895 * dispnew.c (syms_of_display):
17896 * doc.c (syms_of_doc):
17897 * editfns.c (syms_of_editfns):
17898 * emacs.c (syms_of_emacs):
17899 * eval.c (syms_of_eval):
17900 * fileio.c (syms_of_fileio):
17901 * fns.c (syms_of_fns):
17902 * frame.c (syms_of_frame):
17903 * fringe.c (syms_of_fringe):
17904 * insdel.c (syms_of_insdel):
17905 * keymap.c (syms_of_keymap):
17906 * lread.c (init_obarray, syms_of_lread):
17907 * macros.c (syms_of_macros):
17908 * msdos.c (syms_of_msdos):
17909 * print.c (syms_of_print):
17910 * process.c (syms_of_process):
17911 * search.c (syms_of_search):
17912 * sound.c (syms_of_sound):
17913 * syntax.c (init_syntax_once, syms_of_syntax):
17914 * terminal.c (syms_of_terminal):
17915 * textprop.c (syms_of_textprop):
17916 * undo.c (syms_of_undo):
17917 * w32.c (globals_of_w32):
17918 * window.c (syms_of_window):
17919 * xdisp.c (syms_of_xdisp):
17920 * xfaces.c (syms_of_xfaces):
17921 * xfns.c (syms_of_xfns):
17922 * xmenu.c (syms_of_xmenu):
17923 * xsettings.c (syms_of_xsettings):
17924 * xterm.c (syms_of_xterm): Use DEFSYM.
17925
17926 2011-06-24 Teodor Zlatanov <tzz@lifelogs.com>
17927
17928 * gnutls.c (syms_of_gnutls): Use the DEFSYM macro from character.h.
17929
17930 2011-06-23 Paul Eggert <eggert@cs.ucla.edu>
17931
17932 Integer and buffer overflow fixes (Bug#8873).
17933
17934 * print.c (printchar, strout): Check for string overflow.
17935 (PRINTPREPARE, printchar, strout):
17936 Don't set size unless allocation succeeds.
17937
17938 * minibuf.c (read_minibuf_noninteractive): Use ptrdiff_t, not int,
17939 for sizes. Check for string overflow more accurately.
17940 Simplify newline removal at end; this suppresses a GCC 4.6.0 warning.
17941
17942 * macros.c: Integer and buffer overflow fixes.
17943 * keyboard.h (struct keyboard.kbd_macro_bufsize):
17944 * macros.c (Fstart_kbd_macro, store_kbd_macro_char):
17945 Use ptrdiff_t, not int, for sizes.
17946 Don't increment bufsize until after realloc succeeds.
17947 Check for size-calculation overflow.
17948 (Fstart_kbd_macro): Use EMACS_INT, not int, for XINT result.
17949
17950 * lisp.h (DEFVAR_KBOARD): Use offsetof instead of char * finagling.
17951
17952 * lread.c: Integer overflow fixes.
17953 (read_integer): Radix is now EMACS_INT, not int,
17954 to improve quality of diagnostics for out-of-range radices.
17955 Calculate buffer size correctly for out-of-range radices.
17956 (read1): Check for integer overflow in radices, and in
17957 read-circle numbers.
17958 (read_escape): Avoid int overflow.
17959 (Fload, openp, read_buffer_size, read1)
17960 (substitute_object_recurse, read_vector, read_list, map_obarray):
17961 Use ptrdiff_t, not int, for sizes.
17962 (read1): Use EMACS_INT, not int, for sizes.
17963 Check for size overflow.
17964
17965 * image.c (cache_image): Check for size arithmetic overflow.
17966
17967 * lread.c: Integer overflow issues.
17968 (saved_doc_string_size, saved_doc_string_length)
17969 (prev_saved_doc_string_size, prev_saved_doc_string_length):
17970 Now ptrdiff_t, not int.
17971 (read1): Don't assume doc string length fits in int. Check for
17972 out-of-range doc string lengths.
17973 (read_list): Don't assume file position fits in int.
17974 (read_escape): Check for hex character overflow.
17975
17976 2011-06-22 Leo Liu <sdl.web@gmail.com>
17977
17978 * minibuf.c (Fcompleting_read_default, Vcompleting_read_function):
17979 Move to minibuffer.el.
17980
17981 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
17982
17983 Fixes for GLYPH_DEBUG found by GCC 4.6.0 static checking.
17984 The following patches are for when GLYPH_DEBUG && !XASSERT.
17985 * dispextern.h (trace_redisplay_p, dump_glyph_string):
17986 * dispnew.c (flush_stdout):
17987 * xdisp.c (dump_glyph_row, dump_glyph_matrix, dump_glyph):
17988 Mark as externally visible.
17989 * dispnew.c (check_window_matrix_pointers): Now static.
17990 * dispnew.c (window_to_frame_vpos):
17991 * xfns.c (unwind_create_frame):
17992 * xterm.c (x_check_font): Remove unused local.
17993 * scroll.c (CHECK_BOUNDS):
17994 * xfaces.c (cache_fache): Rename local to avoid shadowing.
17995 * xfns.c, w32fns.c (image_cache_refcount, dpyinfo_refcount): Now static.
17996 * xdisp.c (check_window_end): Now a no-op if !XASSERTS.
17997 (debug_first_unchanged_at_end_vpos, debug_last_unchanged_at_beg_vpos)
17998 (debug_dvpos, debug_dy, debug_delta, debug_delta_bytes, debug_end_vpos):
17999 Now static.
18000 (debug_method_add): Use va_list and vsprintf rather than relying
18001 on undefined behavior with wrong number of arguments.
18002 (dump_glyph, dump_glyph_row, Fdump_glyph_matrix):
18003 Don't assume ptrdiff_t and EMACS_INT are the same width as int.
18004 In this code, it's OK to assume C99 behavior for ptrdiff_t formats
18005 since we're not interested in debugging glyphs with old libraries.
18006 * xfaces.c (cache_face): Move debugging code earlier; this pacifies
18007 GCC 4.6.0's static checking.
18008
18009 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
18010
18011 Integer overflow and signedness fixes (Bug#8873).
18012 A few related buffer overrun fixes, too.
18013
18014 * font.c (font_score): Use EMACS_INT, not int, to store XINT value.
18015
18016 * dispextern.h (struct face.stipple):
18017 * image.c (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
18018 (x_bitmap_mask, x_allocate_bitmap_record)
18019 (x_create_bitmap_from_data, x_create_bitmap_from_file)
18020 (x_destroy_bitmap, x_destroy_all_bitmaps, x_create_bitmap_mask)
18021 (x_create_bitmap_from_xpm_data):
18022 * nsterm.h (struct ns_display_info.bitmaps_size, .bitmaps_last):
18023 * w32term.h (struct w32_display_info.icon_bitmap_id, .bitmaps_size)
18024 (.bitmaps_last):
18025 * xfaces.c (load_pixmap):
18026 * xterm.c (x_bitmap_icon, x_wm_set_icon_pixmap):
18027 * xterm.h (struct x_display_info.icon_bitmap_id, .bitmaps_size)
18028 (.bitmaps_last, struct x_output.icon_bitmap):
18029 Use ptrdiff_t, not int, for bitmap indexes.
18030 (x_allocate_bitmap_record): Check for size overflow.
18031 * dispextern.h, lisp.h: Adjust to API changes elsewhere.
18032
18033 Use ptrdiff_t, not int, for overlay counts.
18034 * buffer.h (overlays_at, sort_overlays, GET_OVERLAYS_AT):
18035 * editfns.c (overlays_around, get_pos_property):
18036 * textprop.c (get_char_property_and_overlay):
18037 * xdisp.c (next_overlay_change, note_mouse_highlight):
18038 * xfaces.c (face_at_buffer_position):
18039 * buffer.c (OVERLAY_COUNT_MAX): New macro.
18040 (overlays_at, overlays_in, sort_overlays, Foverlays_at)
18041 (Fnext_overlay_change, Fprevious_overlay_change)
18042 (mouse_face_overlay_overlaps, Foverlays_in):
18043 Use ptrdiff_t, not int, for sizes.
18044 (overlays_at, overlays_in): Check for size-calculation overflow.
18045
18046 * xterm.c (xim_initialize, same_x_server): Strlen may not fit in int.
18047
18048 * xsmfns.c (smc_save_yourself_CB, x_session_initialize): Avoid strlen.
18049 (x_session_initialize): Do not assume string length fits in int.
18050
18051 * xsettings.c (apply_xft_settings): Fix potential buffer overrun.
18052 This is unlikely, but can occur if DPI is outlandish.
18053
18054 * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
18055 * xselect.c (Fx_get_atom_name): Avoid need for strlen.
18056
18057 * xrdb.c: Don't assume strlen fits in int; avoid some strlens.
18058 * xrdb.c (magic_file_p, search_magic_path):
18059 Omit last arg SUFFIX; it was always 0. All callers changed.
18060 (magic_file_p): Use ptrdiff_t, not int. Check for size overflow.
18061
18062 * xfont.c (xfont_match): Avoid need for strlen.
18063
18064 * xfns.c: Don't assume strlen fits in int.
18065 (xic_create_fontsetname, x_window): Use ptrdiff_t, not int.
18066
18067 * xdisp.c (message_log_check_duplicate): Return intmax_t,
18068 not unsigned long, as we prefer signed integers. All callers changed.
18069 Detect integer overflow in repeat count.
18070 (message_dolog): Don't assume print length fits in 39 bytes.
18071 (display_mode_element): Don't assume strlen fits in int.
18072
18073 * termcap.c: Don't assume sizes fit in int and never overflow.
18074 (struct termcap_buffer, tgetent): Use ptrdiff_t, not int, for sizes.
18075 (gobble_line): Check for size-calculation overflow.
18076
18077 * minibuf.c (Fread_buffer):
18078 * lread.c (intern, intern_c_string):
18079 * image.c (xpm_scan) [HAVE_NS && !HAVE_XPM]:
18080 Don't assume string length fits in int.
18081
18082 * keyboard.c (parse_tool_bar_item):
18083 * gtkutil.c (style_changed_cb): Avoid need for strlen.
18084
18085 * font.c: Don't assume string length fits in int.
18086 (font_parse_xlfd, font_parse_fcname, font_unparse_fcname):
18087 Use ptrdiff_t, not int.
18088 (font_intern_prop): Don't assume string length fits in int.
18089 Don't assume integer property fits in fixnum.
18090 * font.h (font_intern_prop): 2nd arg is now ptrdiff_t, not int.
18091
18092 * filelock.c: Fix some buffer overrun and integer overflow issues.
18093 (get_boot_time): Don't assume gzip command string fits in 100 bytes.
18094 Reformulate so as not to need the command string.
18095 Invoke gzip -cd rather than gunzip, as it's more portable.
18096 (lock_info_type, lock_file_1, lock_file):
18097 Don't assume pid_t and time_t fit in unsigned long.
18098 (LOCK_PID_MAX): Remove; we now use more-reliable bounds.
18099 (current_lock_owner): Prefer signed type for sizes.
18100 Use memcpy, not strncpy, where memcpy is what is really wanted.
18101 Don't assume (via atoi) that time_t and pid_t fit in int.
18102 Check for time_t and/or pid_t out of range, e.g., via a network share.
18103 Don't alloca where an auto var works fine.
18104
18105 * fileio.c: Fix some integer overflow issues.
18106 (file_name_as_directory, Fexpand_file_name, Fsubstitute_in_file_name):
18107 Don't assume string length fits in int.
18108 (directory_file_name): Don't assume string length fits in long.
18109 (make_temp_name): Don't assume pid fits in int, or that its print
18110 length is less than 20.
18111
18112 * data.c (Fsubr_name): Rewrite to avoid a strlen call.
18113
18114 * coding.c (make_subsidiaries): Don't assume string length fits in int.
18115
18116 * callproc.c (child_setup): Rewrite to avoid two strlen calls.
18117
18118 * process.c (Fformat_network_address): Use EMACS_INT, not EMACS_UINT.
18119 We prefer signed integers, even for size calculations.
18120
18121 * emacs.c: Don't assume string length fits in 'int'.
18122 (DEFINE_DUMMY_FUNCTION, sort_args): Use ptrdiff_t, not int.
18123 (main): Don't invoke strlen when not needed.
18124
18125 * dbusbind.c (XD_ERROR): Don't arbitrarily truncate string.
18126 (XD_DEBUG_MESSAGE): Don't waste a byte.
18127
18128 * callproc.c (getenv_internal_1, getenv_internal)
18129 (Fgetenv_internal):
18130 * buffer.c (init_buffer): Don't assume string length fits in 'int'.
18131
18132 * lread.c (invalid_syntax): Omit length argument.
18133 All uses changed. This doesn't fix a bug, but it simplifies the
18134 code away from its former Hollerith-constant appearance, and it's
18135 one less 'int' to worry about when looking at integer-overflow issues.
18136 (string_to_number): Simplify 2011-04-26 change by invoking xsignal1.
18137
18138 * lisp.h (DEFUN): Remove bogus use of sizeof (struct Lisp_Subr).
18139 This didn't break anything, but it didn't help either.
18140 It's confusing to put a bogus integer in a place where the actual
18141 value does not matter.
18142 (LIST_END_P): Remove unused macro and its bogus comment.
18143 (make_fixnum_or_float): Remove unnecessary cast to EMACS_INT.
18144
18145 * lisp.h (union Lisp_Object.i): EMACS_INT, not EMACS_UINT.
18146 This is for consistency with the ordinary, non-USE_LISP_UNION_TYPE,
18147 implementation.
18148 (struct Lisp_Bool_Vector.size): EMACS_INT, not EMACS_UINT.
18149 We prefer signed types, and the value cannot exceed the EMACS_INT
18150 range anyway (because otherwise the length would not be representable).
18151 (XSET) [USE_LISP_UNION_TYPE]: Use uintptr_t and intptr_t,
18152 not EMACS_UINT and EMACS_INT, when converting pointer to integer.
18153 This avoids a GCC warning when WIDE_EMACS_INT.
18154
18155 * indent.c (sane_tab_width): New function.
18156 (current_column, scan_for_column, Findent_to, position_indentation)
18157 (compute_motion): Use it. This is just for clarity.
18158 (Fcompute_motion): Don't assume hscroll and tab offset fit in int.
18159
18160 * image.c (xbm_image_p): Don't assume stated width, height fit in int.
18161
18162 * lisp.h (lint_assume): New macro.
18163 * composite.c (composition_gstring_put_cache):
18164 * ftfont.c (ftfont_shape_by_flt): Use it to pacify GCC 4.6.0.
18165
18166 * editfns.c, insdel.c:
18167 Omit unnecessary forward decls, to simplify future changes.
18168
18169 * ftfont.c (ftfont_shape_by_flt): Use signed integers for lengths.
18170
18171 * font.c (Ffont_shape_gstring): Don't assume glyph len fits in 'int'.
18172
18173 * fns.c (Ffillarray): Don't assume bool vector size fits in 'int'.
18174 Use much-faster test for byte-length change.
18175 Don't assume string byte-length fits in 'int'.
18176 Check that character arg fits in 'int'.
18177 (mapcar1): Declare byte as byte, for clarity.
18178
18179 * alloc.c (Fmake_bool_vector): Avoid unnecessary multiplication.
18180
18181 * fns.c (concat): Catch string overflow earlier.
18182 Do not rely on integer wraparound.
18183
18184 * dispextern.h (struct it.overlay_strings_charpos)
18185 (struct it.selective): Now EMACS_INT, not int.
18186 * xdisp.c (forward_to_next_line_start)
18187 (back_to_previous_visible_line_start)
18188 (reseat_at_next_visible_line_start, next_element_from_buffer):
18189 Don't arbitrarily truncate the value of 'selective' to int.
18190
18191 * xdisp.c (init_iterator): Use XINT, not XFASTINT; it might be < 0.
18192
18193 * composite.c: Don't truncate sizes to 'int'.
18194 (composition_gstring_p, composition_reseat_it)
18195 (composition_adjust_point): Use EMACS_INT, not int.
18196 (get_composition_id, composition_gstring_put_cache): Use EMACS_INT,
18197 not EMACS_UINT, for indexes.
18198
18199 * category.h (CATEGORY_SET_P): Remove unnecessary cast to EMACS_INT.
18200
18201 * buffer.c: Include <verify.h>.
18202 (struct sortvec.priority, struct sortstr.priority):
18203 Now EMACS_INT, not int.
18204 (compare_overlays, cmp_for_strings): Avoid subtraction overflow.
18205 (struct sortstr.size, record_overlay_string)
18206 (struct sortstrlist.size, struct sortlist.used):
18207 Don't truncate size to int.
18208 (record_overlay_string): Check for size-calculation overflow.
18209 (init_buffer_once): Check at compile-time, not run-time.
18210
18211 2011-06-22 Jim Meyering <meyering@redhat.com>
18212
18213 Don't leak an XBM-image-sized buffer
18214 * image.c (xbm_load): Free the image buffer after using it.
18215
18216 2011-06-21 Paul Eggert <eggert@cs.ucla.edu>
18217
18218 Port to Sun C.
18219 * composite.c (find_automatic_composition): Omit needless 'return 0;'
18220 that Sun C diagnosed.
18221 * fns.c (secure_hash): Fix pointer signedness issue.
18222 * intervals.c (static_offset_intervals): New function.
18223 (offset_intervals): Use it.
18224
18225 2011-06-21 Leo Liu <sdl.web@gmail.com>
18226
18227 * deps.mk (fns.o):
18228 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha256.h and
18229 sha512.h.
18230
18231 * fns.c (secure_hash): Rename from crypto_hash_function and change
18232 the first arg to accept symbols.
18233 (Fsecure_hash): New primitive.
18234 (syms_of_fns): New symbols.
18235
18236 2011-06-20 Deniz Dogan <deniz@dogan.se>
18237
18238 * process.c (Fset_process_buffer): Clarify return value in
18239 docstring.
18240
18241 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
18242
18243 * dispnew.c (add_window_display_history): Use BVAR.
18244
18245 * xdisp.c (debug_method_add): Use BVAR.
18246 (check_window_end, dump_glyph_matrix, dump_glyph)
18247 (dump_glyph_row, dump_glyph_string): Convert arglist to ANSI C.
18248
18249 * xfaces.c (check_lface_attrs, check_lface, dump_realized_face):
18250 Likewise.
18251
18252 * xfns.c (Fx_create_frame, x_create_tip_frame): Delay image cache
18253 check till after the cache is created in init_frame_faces.
18254
18255 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
18256
18257 * fns.c (Fsafe_length): Yet another int/Lisp_Object mixup.
18258
18259 2011-06-16 Paul Eggert <eggert@cs.ucla.edu>
18260
18261 * lisp.h: Include <limits.h>, for INT_MAX, LONG_MAX, LLONG_MAX.
18262 Without this, prin1 mishandles Lisp_Misc_Save_Value printing on
18263 hosts with pre-C99 libraries, because pD is wrongly defined to "t".
18264
18265 Improve buffer-overflow checking (Bug#8873).
18266 * fileio.c (Finsert_file_contents):
18267 * insdel.c (insert_from_buffer_1, replace_range, replace_range_2):
18268 Remove the old (too-loose) buffer overflow checks.
18269 They weren't needed, since make_gap checks for buffer overflow.
18270 * insdel.c (make_gap_larger): Catch buffer overflows that were missed.
18271 The old code merely checked for Emacs fixnum overflow, and relied
18272 on undefined (wraparound) behavior. The new code avoids undefined
18273 behavior, and also checks for ptrdiff_t and/or size_t overflow.
18274
18275 * editfns.c (Finsert_char): Don't dump core with very negative counts.
18276 Tune. Don't use wider integers than needed. Don't use alloca.
18277 Use a bigger 'string' buffer. Rewrite to avoid 'n > 0' test.
18278
18279 * insdel.c (replace_range): Fix buf overflow when insbytes < outgoing.
18280
18281 * insdel.c, lisp.h (buffer_overflow): New function.
18282 (insert_from_buffer_1, replace_range, replace_range_2):
18283 * insdel.c (make_gap_larger):
18284 * editfns.c (Finsert_char):
18285 * fileio.c (Finsert_file_contents): Use it, to normalize wording.
18286
18287 * buffer.h (BUF_BYTES_MAX): Cast to ptrdiff_t so that it's signed.
18288
18289 2011-06-15 Paul Eggert <eggert@cs.ucla.edu>
18290
18291 Integer overflow and signedness fixes (Bug#8873, Bug#8828).
18292
18293 * ccl.c (ASCENDING_ORDER): New macro, to work around GCC bug 43772.
18294 (GET_CCL_RANGE, IN_INT_RANGE): Use it.
18295
18296 * fileio.c: Don't assume EMACS_INT fits in off_t.
18297 (emacs_lseek): New static function.
18298 (Finsert_file_contents, Fwrite_region): Use it.
18299 Use SEEK_SET, SEEK_CUR, SEEK_END as appropriate.
18300
18301 * fns.c (Fload_average): Don't assume 100 * load average fits in int.
18302
18303 * fns.c: Don't overflow int when computing a list length.
18304 * fns.c (QUIT_COUNT_HEURISTIC): New constant.
18305 (Flength, Fsafe_length): Use EMACS_INT, not int, to avoid unwanted
18306 truncation on 64-bit hosts. Check for QUIT every
18307 QUIT_COUNT_HEURISTIC entries rather than every other entry; that's
18308 faster and is responsive enough.
18309 (Flength): Report an error instead of overflowing an integer.
18310 (Fsafe_length): Return a float if the value is not representable
18311 as a fixnum. This shouldn't happen except in contrived situations.
18312 (Fnthcdr, Fsort): Don't assume list length fits in int.
18313 (Fcopy_sequence): Don't assume vector length fits in int.
18314
18315 * alloc.c: Check that resized vectors' lengths fit in fixnums.
18316 (header_size, word_size): New constants.
18317 (allocate_vectorlike): Don't check size overflow here.
18318 (allocate_vector): Check it here instead, since this is the only
18319 caller of allocate_vectorlike that could cause overflow.
18320 Check that the new vector's length is representable as a fixnum.
18321
18322 * fns.c (next_almost_prime): Don't return a multiple of 3 or 5.
18323 The previous code was bogus. For example, next_almost_prime (32)
18324 returned 39, which is undesirable as it is a multiple of 3; and
18325 next_almost_prime (24) returned 25, which is a multiple of 5 so
18326 why was the code bothering to check for multiples of 7?
18327
18328 * bytecode.c (exec_byte_code): Use ptrdiff_t, not int, for vector length.
18329
18330 * eval.c, doprnt.c (SIZE_MAX): Remove; inttypes.h defines this now.
18331
18332 Variadic C functions now count arguments with ptrdiff_t.
18333 This partly undoes my 2011-03-30 change, which replaced int with size_t.
18334 Back then I didn't know that the Emacs coding style prefers signed int.
18335 Also, in the meantime I found a few more instances where arguments
18336 were being counted with int, which may truncate counts on 64-bit
18337 machines, or EMACS_INT, which may be unnecessarily wide.
18338 * lisp.h (struct Lisp_Subr.function.aMANY)
18339 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call):
18340 Arg counts are now ptrdiff_t, not size_t.
18341 All variadic functions and their callers changed accordingly.
18342 (struct gcpro.nvars): Now size_t, not size_t. All uses changed.
18343 * bytecode.c (exec_byte_code): Check maxdepth for overflow,
18344 to avoid potential buffer overrun. Don't assume arg counts fit in 'int'.
18345 * callint.c (Fcall_interactively): Check arg count for overflow,
18346 to avoid potential buffer overrun. Use signed char, not 'int',
18347 for 'varies' array, so that we needn't bother to check its size
18348 calculation for overflow.
18349 * editfns.c (Fformat): Use ptrdiff_t, not EMACS_INT, to count args.
18350 * eval.c (apply_lambda):
18351 * fns.c (Fmapconcat): Use XFASTINT, not XINT, to get args length.
18352 (struct textprop_rec.argnum): Now ptrdiff_t, not int. All uses changed.
18353 (mapconcat): Use ptrdiff_t, not int and EMACS_INT, to count args.
18354
18355 * callint.c (Fcall_interactively): Don't use index var as event count.
18356
18357 * vm-limit.c (check_memory_limits): Fix incorrect extern function decls.
18358 * mem-limits.h (SIZE): Remove; no longer used.
18359
18360 * xterm.c (x_alloc_nearest_color_1): Prefer int to long when int works.
18361
18362 Remove unnecessary casts.
18363 * xterm.c (x_term_init):
18364 * xfns.c (x_set_border_pixel):
18365 * widget.c (create_frame_gcs): Remove casts to unsigned long etc.
18366 These aren't needed now that we assume ANSI C.
18367
18368 * sound.c (Fplay_sound_internal): Remove cast to unsigned long.
18369 It's more likely to cause problems (due to unsigned overflow)
18370 than to cure them.
18371
18372 * dired.c (Ffile_attributes): Don't use 32-bit hack on 64-bit hosts.
18373
18374 * unexelf.c (unexec): Don't assume BSS addr fits in unsigned.
18375
18376 * xterm.c (handle_one_xevent): Omit unnecessary casts to unsigned.
18377
18378 * keyboard.c (modify_event_symbol): Don't limit alist len to UINT_MAX.
18379
18380 * lisp.h (CHAR_TABLE_SET): Omit now-redundant test.
18381
18382 * lread.c (Fload): Don't compare a possibly-garbage time_t value.
18383
18384 GLYPH_CODE_FACE returns EMACS_INT, not int.
18385 * dispextern.h (merge_faces):
18386 * xfaces.c (merge_faces):
18387 * xdisp.c (get_next_display_element, next_element_from_display_vector):
18388 Don't assume EMACS_INT fits in int.
18389
18390 * character.h (CHAR_VALID_P): Remove unused parameter.
18391 * fontset.c, lisp.h, xdisp.c: All uses changed.
18392
18393 * editfns.c (Ftranslate_region_internal): Omit redundant test.
18394
18395 * fns.c (concat): Minor tuning based on overflow analysis.
18396 This doesn't fix any bugs. Use int to hold character, instead
18397 of constantly refetching from Emacs object. Use XFASTINT, not
18398 XINT, for value known to be a character. Don't bother comparing
18399 a single byte to 0400, as it's always less.
18400
18401 * floatfns.c (Fexpt):
18402 * fileio.c (make_temp_name): Omit unnecessary cast to unsigned.
18403
18404 * editfns.c (Ftranslate_region_internal): Use int, not EMACS_INT
18405 for characters.
18406
18407 * doc.c (get_doc_string): Omit (unsigned)c that mishandled negatives.
18408
18409 * data.c (Faset): If ARRAY is a string, check that NEWELT is a char.
18410 Without this fix, on a 64-bit host (aset S 0 4294967386) would
18411 incorrectly succeed when S was a string, because 4294967386 was
18412 truncated before it was used.
18413
18414 * chartab.c (Fchar_table_range): Use CHARACTERP to check range.
18415 Otherwise, an out-of-range integer could cause undefined behavior
18416 on a 64-bit host.
18417
18418 * composite.c: Use int, not EMACS_INT, for characters.
18419 (fill_gstring_body, composition_compute_stop_pos): Use int, not
18420 EMACS_INT, for values that are known to be in character range.
18421 This doesn't fix any bugs but is the usual style inside Emacs and
18422 may generate better code on 32-bit machines.
18423
18424 Make sure a 64-bit char is never passed to ENCODE_CHAR.
18425 This is for reasons similar to the recent CHAR_STRING fix.
18426 * charset.c (Fencode_char): Check that character arg is actually
18427 a character. Pass an int to ENCODE_CHAR.
18428 * charset.h (ENCODE_CHAR): Verify that the character argument is no
18429 wider than 'int', as a compile-time check to prevent future regressions
18430 in this area.
18431
18432 * character.c (char_string): Remove unnecessary casts.
18433
18434 Make sure a 64-bit char is never passed to CHAR_STRING.
18435 Otherwise, CHAR_STRING would do the wrong thing on a 64-bit platform,
18436 by silently ignoring the top 32 bits, allowing some values
18437 that were far too large to be valid characters.
18438 * character.h: Include <verify.h>.
18439 (CHAR_STRING, CHAR_STRING_ADVANCE): Verify that the character
18440 arguments are no wider than unsigned, as a compile-time check
18441 to prevent future regressions in this area.
18442 * data.c (Faset):
18443 * editfns.c (Fchar_to_string, general_insert_function, Finsert_char)
18444 (Fsubst_char_in_region):
18445 * fns.c (concat):
18446 * xdisp.c (decode_mode_spec_coding):
18447 Adjust to CHAR_STRING's new requirement.
18448 * editfns.c (Finsert_char, Fsubst_char_in_region):
18449 * fns.c (concat): Check that character args are actually
18450 characters. Without this test, these functions did the wrong
18451 thing with wildly out-of-range values on 64-bit hosts.
18452
18453 Remove incorrect casts to 'unsigned' that lose info on 64-bit hosts.
18454 These casts should not be needed on 32-bit hosts, either.
18455 * keyboard.c (read_char):
18456 * lread.c (Fload): Remove casts to unsigned.
18457
18458 * lisp.h (UNSIGNED_CMP): New macro.
18459 This fixes comparison bugs on 64-bit hosts.
18460 (ASCII_CHAR_P): Use it.
18461 * casefiddle.c (casify_object):
18462 * character.h (ASCII_BYTE_P, CHAR_VALID_P)
18463 (SINGLE_BYTE_CHAR_P, CHAR_STRING):
18464 * composite.h (COMPOSITION_ENCODE_RULE_VALID):
18465 * dispextern.h (FACE_FROM_ID):
18466 * keyboard.c (read_char): Use UNSIGNED_CMP.
18467
18468 * xmenu.c (dialog_selection_callback) [!USE_GTK]: Cast to intptr_t,
18469 not to EMACS_INT, to avoid GCC warning.
18470
18471 * xfns.c (x_set_scroll_bar_default_width): Remove unused 'int' locals.
18472
18473 * buffer.h (PTR_BYTE_POS, BUF_PTR_BYTE_POS): Remove harmful cast.
18474 The cast incorrectly truncated 64-bit byte offsets to 32 bits, and
18475 isn't needed on 32-bit machines.
18476
18477 * buffer.c (Fgenerate_new_buffer_name):
18478 Use EMACS_INT for count, not int.
18479 (advance_to_char_boundary): Return EMACS_INT, not int.
18480
18481 * data.c (Qcompiled_function): Now static.
18482
18483 * window.c (window_body_lines): Now static.
18484
18485 * image.c (gif_load): Rename local to avoid shadowing.
18486
18487 * lisp.h (SAFE_ALLOCA_LISP): Check for integer overflow.
18488 (struct Lisp_Save_Value): Use ptrdiff_t, not int, for 'integer' member.
18489 * alloc.c (make_save_value): Integer argument is now of type
18490 ptrdiff_t, not int.
18491 (mark_object): Use ptrdiff_t, not int.
18492 * lisp.h (pD): New macro.
18493 * print.c (print_object): Use it.
18494
18495 * alloc.c: Use EMACS_INT, not int, to count objects.
18496 (total_conses, total_markers, total_symbols, total_vector_size)
18497 (total_free_conses, total_free_markers, total_free_symbols)
18498 (total_free_floats, total_floats, total_free_intervals)
18499 (total_intervals, total_strings, total_free_strings):
18500 Now EMACS_INT, not int. All uses changed.
18501 (Fgarbage_collect): Compute overall total using a double, so that
18502 integer overflow is less likely to be a problem. Check for overflow
18503 when converting back to an integer.
18504 (n_interval_blocks, n_string_blocks, n_float_blocks, n_cons_blocks)
18505 (n_vectors, n_symbol_blocks, n_marker_blocks): Remove.
18506 These were 'int' variables that could overflow on 64-bit hosts;
18507 they were never used, so remove them instead of repairing them.
18508 (nzombies, ngcs, max_live, max_zombies): Now EMACS_INT, not 'int'.
18509 (inhibit_garbage_collection): Set gc_cons_threshold to max value.
18510 Previously, this ceilinged at INT_MAX, but that doesn't work on
18511 64-bit machines.
18512 (allocate_pseudovector): Don't use EMACS_INT when int would do.
18513
18514 * alloc.c (Fmake_bool_vector): Don't assume vector size fits in int.
18515 (allocate_vectorlike): Check for ptrdiff_t overflow.
18516 (mark_vectorlike, mark_char_table, mark_object): Avoid EMACS_UINT
18517 when a (possibly-narrower) signed value would do just as well.
18518 We prefer using signed arithmetic, to avoid comparison confusion.
18519
18520 * alloc.c: Catch some string size overflows that we were missing.
18521 (XMALLOC_OVERRUN_CHECK_SIZE) [!XMALLOC_OVERRUN_CHECK]: Define to 0,
18522 for convenience in STRING_BYTES_MAX.
18523 (STRING_BYTES_MAX): New macro, superseding the old one in lisp.h.
18524 The definition here is exact; the one in lisp.h was approximate.
18525 (allocate_string_data): Check for string overflow. This catches
18526 some instances we weren't catching before. Also, it catches
18527 size_t overflow on (unusual) hosts where SIZE_MAX <= min
18528 (PTRDIFF_MAX, MOST_POSITIVE_FIXNUM), e.g., when size_t is 32 bits
18529 and ptrdiff_t and EMACS_INT are both 64 bits.
18530
18531 * character.c, coding.c, doprnt.c, editfns.c, eval.c:
18532 All uses of STRING_BYTES_MAX replaced by STRING_BYTES_BOUND.
18533 * lisp.h (STRING_BYTES_BOUND): Rename from STRING_BYTES_MAX.
18534
18535 * character.c (string_escape_byte8): Fix nbytes/nchars typo.
18536
18537 * alloc.c (Fmake_string): Check for out-of-range init.
18538
18539 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
18540
18541 * eval.c (Fdefvaralias): Also mark the target as variable-special-p.
18542
18543 2011-06-14 Jan Djärv <jan.h.d@swipnet.se>
18544
18545 * xfns.c (x_set_scroll_bar_default_width): Remove argument to
18546 xg_get_default_scrollbar_width.
18547
18548 * gtkutil.c: Include emacsgtkfixed.h if HAVE_GTK3.
18549 (int_gtk_range_get_value): Move to the scroll bar part of the file.
18550 (style_changed_cb): Call update_theme_scrollbar_width and call
18551 x_set_scroll_bar_default_width and xg_frame_set_char_size for
18552 all frames (Bug#8505).
18553 (xg_create_frame_widgets): Call emacs_fixed_new if HAVE_GTK3 (Bug#8505).
18554 Call gtk_window_set_resizable if HAVE_GTK3.
18555 (x_wm_set_size_hint): Call emacs_fixed_set_min_size with min width
18556 and height if HAVE_GTK3 (Bug#8505).
18557 (scroll_bar_width_for_theme): New variable.
18558 (update_theme_scrollbar_width): New function.
18559 (xg_get_default_scrollbar_width): Move code to
18560 update_theme_scrollbar_width, just return scroll_bar_width_for_theme.
18561 (xg_initialize): Call update_theme_scrollbar_width.
18562
18563 * gtkutil.h (xg_get_default_scrollbar_width): Remove argument.
18564
18565 * emacsgtkfixed.c, emacsgtkfixed.h: New files.
18566
18567 2011-06-12 Martin Rudalics <rudalics@gmx.at>
18568
18569 * frame.c (make_frame): Call other_buffer_safely instead of
18570 other_buffer.
18571
18572 * window.c (temp_output_buffer_show): Call display_buffer with
18573 second argument Vtemp_buffer_show_specifiers and reset latter
18574 immediately after the call.
18575 (Vtemp_buffer_show_specifiers): New variable.
18576 (auto_window_vscroll_p, next_screen_context_lines)
18577 (Vscroll_preserve_screen_position): Remove leading asterisks from
18578 doc-strings.
18579
18580 2011-06-12 Paul Eggert <eggert@cs.ucla.edu>
18581
18582 Fix minor problems found by GCC 4.6.0 static checking.
18583 * buffer.c (Qclone_number): Remove for now, as it's unused.
18584 (record_buffer, Funrecord_buffer): Rename local to avoid shadowing.
18585 (record_buffer): Remove unused local.
18586 * frame.c (other_visible_frames, frame_buffer_list): Now static.
18587 (set_frame_buffer_list): Remove; unused.
18588 * frame.h (other_visible_frames): Remove decl.
18589 * keyboard.h (menu_items_inuse): Declare only if USE_GTK || USE_MOTIF.
18590 * lisp.h (frame_buffer_list, set_frame_buffer_list): Remove decls.
18591 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor): Declare only
18592 if HAVE_GPM.
18593 * menu.c (menu_items_inuse): Now static unless USE_GTK || USE_MOTIF.
18594 * process.c (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
18595 Define only if HAVE_GPM.
18596 * widget.c (EmacsFrameResize, emacsFrameClassRec): Now static.
18597 (update_hints_inhibit): Remove; never set. All uses removed.
18598 * widgetprv.h (emacsFrameClassRec): Remove decl.
18599 * window.c (delete_deletable_window): Now returns void, since it
18600 wasn't returning anything.
18601 (compare_window_configurations): Remove unused locals.
18602 * xfns.c (x_set_scroll_bar_default_width): Remove unused locals.
18603 * xmenu.c (x_menu_set_in_use): Define only if USE_GTK || USE_MOTIF.
18604 (dialog_selection_callback) [!USE_GTK]: Prefer intptr_t for integers
18605 the same widths as pointers. This follows up on the 2011-05-06 patch.
18606 * xterm.c (x_alloc_lighter_color_for_widget): Define only if USE_LUCID.
18607 * xterm.h: Likewise.
18608 (x_menu_set_in_use): Declare only if USE_GTK || USE_MOTIF.
18609
18610 2011-06-12 Juanma Barranquero <lekktu@gmail.com>
18611
18612 * makefile.w32-in: Update dependencies.
18613 (LISP_H): Add lib/intprops.h.
18614
18615 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
18616
18617 * image.c (gif_load): Add animation frame delay to the metadata.
18618 (syms_of_image): Use DEFSYM. New symbol `delay'.
18619
18620 2011-06-11 Martin Rudalics <rudalics@gmx.at>
18621
18622 * window.c (delete_deletable_window): Re-add.
18623 (Fset_window_configuration): Rewrite to handle dead buffers and
18624 consequently deletable windows.
18625 (window_tree, Fwindow_tree): Remove. Supply functionality in
18626 window.el.
18627 (compare_window_configurations): Simplify code.
18628
18629 2011-06-11 Andreas Schwab <schwab@linux-m68k.org>
18630
18631 * image.c (imagemagick_load_image): Fix type mismatch.
18632 (Fimagemagick_types): Likewise.
18633
18634 * window.h (replace_buffer_in_windows): Declare.
18635
18636 2011-06-11 Martin Rudalics <rudalics@gmx.at>
18637
18638 * buffer.c: New Lisp objects Qbuffer_list_update_hook and
18639 Qclone_number. Remove external declaration of Qdelete_window.
18640 (Fbuffer_list): Rewrite doc-string. Minor restructuring of
18641 code.
18642 (Fget_buffer_create, Fmake_indirect_buffer, Frename_buffer):
18643 Run Qbuffer_list_update_hook if allowed.
18644 (Fother_buffer): Rewrite doc-string. Major rewrite for new
18645 buffer list implementation.
18646 (other_buffer_safely): New function.
18647 (Fkill_buffer): Replace call to replace_buffer_in_all_windows by
18648 calls to replace_buffer_in_windows and
18649 replace_buffer_in_windows_safely. Run Qbuffer_list_update_hook
18650 if allowed.
18651 (record_buffer): Inhibit quitting and rewrite using quittable
18652 functions. Run Qbuffer_list_update_hook if allowed.
18653 (Frecord_buffer, Funrecord_buffer): New functions.
18654 (switch_to_buffer_1, Fswitch_to_buffer): Remove.
18655 Move switch-to-buffer to window.el.
18656 (bury-buffer): Move to window.el.
18657 (Vbuffer_list_update_hook): New variable.
18658
18659 * lisp.h (other_buffer_safely): Add prototype in buffer.c
18660 section.
18661
18662 * window.h (resize_frame_windows): Move up in code.
18663 (Fwindow_frame): Remove EXFUN.
18664 (replace_buffer_in_all_windows): Remove prototype.
18665 (replace_buffer_in_windows_safely): Add prototype.
18666
18667 * window.c: Declare Qdelete_window static again. Move down
18668 declaration of select_count.
18669 (Fnext_window, Fprevious_window): Rewrite doc-strings.
18670 (Fother_window): Move to window.el.
18671 (window_loop): Remove DELETE_BUFFER_WINDOWS and UNSHOW_BUFFER
18672 cases. Add REPLACE_BUFFER_IN_WINDOWS_SAFELY case.
18673 (Fdelete_windows_on, Freplace_buffer_in_windows): Move to
18674 window.el.
18675 (replace_buffer_in_windows): Implement by calling
18676 Qreplace_buffer_in_windows.
18677 (replace_buffer_in_all_windows): Remove with some functionality
18678 moved into replace_buffer_in_windows_safely.
18679 (replace_buffer_in_windows_safely): New function.
18680 (select_window_norecord, select_frame_norecord): Move in front
18681 of run_window_configuration_change_hook. Remove now obsolete
18682 declarations.
18683 (Fset_window_buffer): Rewrite doc-string.
18684 Call Qrecord_window_buffer.
18685 (keys_of_window): Move binding for other-window to window.el.
18686
18687 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
18688
18689 * dispextern.h (struct image): Replace data member, whose int_val
18690 and ptr_val fields were not used by anything, with a single
18691 lisp_val object.
18692
18693 * image.c (Fimage_metadata, make_image, mark_image, tiff_load)
18694 (gif_clear_image, gif_load, imagemagick_load_image)
18695 (gs_clear_image, gs_load): Callers changed.
18696
18697 2011-06-10 Paul Eggert <eggert@cs.ucla.edu>
18698
18699 * buffer.h: Include <time.h>, for time_t.
18700 Needed to build on FreeBSD 8.2. Problem reported by Herbert J. Skuhra.
18701
18702 Fix minor problems found by static checking.
18703
18704 * image.c (PixelGetMagickColor): Declare if ImageMagick headers don't.
18705
18706 Make identifiers static if they are not used in other modules.
18707 * data.c (Qcompiled_function, Qframe, Qvector):
18708 * image.c (QimageMagick, Qsvg):
18709 * minibuf.c (Qmetadata):
18710 * window.c (resize_window_check, resize_root_window): Now static.
18711 * window.h (resize_window_check, resize_root_window): Remove decls.
18712
18713 * window.c (window_deletion_count, delete_deletable_window):
18714 Remove; unused.
18715 (window_body_lines): Now static.
18716 (Fdelete_other_windows_internal): Mark vars as initialized.
18717 Make sure 'resize_failed' is initialized.
18718 (run_window_configuration_change_hook): Rename local to avoid shadowing.
18719 (resize_window_apply): Remove unused local.
18720 * window.h (delete_deletable_window): Remove decl.
18721
18722 * image.c (gif_load, svg_load_image): Rename locals to avoid shadowing.
18723 (imagemagick_load_image): Fix pointer signedness problem by changing
18724 last arg from unsigned char * to char *. All uses changed.
18725 Also, fix a local for similar reasons.
18726 Remove unused locals. Remove locals to avoid shadowing.
18727 (fn_rsvg_handle_free): Remove; unused.
18728 (svg_load, svg_load_image): Fix pointer signedness problem.
18729 (imagemagick_load_image): Don't use garbage pointer image_wand.
18730
18731 * ftfont.c (ftfont_get_metrics, ftfont_drive_otf): Remove unused locals.
18732
18733 2011-06-10 Chong Yidong <cyd@stupidchicken.com>
18734
18735 * image.c (gif_load): Fix omitted cast error introduced by
18736 2011-06-06 change.
18737
18738 2011-06-10 Martin Rudalics <rudalics@gmx.at>
18739
18740 * window.h (resize_proportionally, orig_total_lines)
18741 (orig_top_line): Remove from window structure.
18742 (set_window_height, set_window_width, change_window_heights)
18743 (Fdelete_window): Remove prototypes.
18744 (resize_frame_windows): Remove duplicate declaration.
18745
18746 2011-06-10 Eli Zaretskii <eliz@gnu.org>
18747
18748 * window.h (resize_frame_windows, resize_window_check)
18749 (delete_deletable_window, resize_root_window)
18750 (resize_frame_windows): Declare prototypes.
18751
18752 * window.c (resize_window_apply): Make definition be "static" to
18753 match the prototype.
18754
18755 2011-06-10 Martin Rudalics <rudalics@gmx.at>
18756
18757 * window.c: Remove declarations of Qwindow_size_fixed,
18758 window_min_size_1, window_min_size_2, window_min_size,
18759 size_window, window_fixed_size_p, enlarge_window, delete_window.
18760 Remove static from declaration of Qdelete_window, it's
18761 temporarily needed by Fbury_buffer.
18762 (replace_window): Don't assign orig_top_line and
18763 orig_total_lines.
18764 (Fdelete_window, delete_window): Remove. Window deletion is
18765 handled by window.el.
18766 (window_loop): Remove DELETE_OTHER_WINDOWS case.
18767 Replace Fdelete_window calls with calls to Qdelete_window.
18768 (Fdelete_other_windows): Remove. Deleting other windows is
18769 handled by window.el.
18770 (window_fixed_size_p): Remove. Fixed-sizeness of windows is
18771 handled in window.el.
18772 (window_min_size_2, window_min_size_1, window_min_size): Remove.
18773 Window minimum sizes are handled in window.el.
18774 (shrink_windows, size_window, set_window_height)
18775 (set_window_width, change_window_heights, window_height)
18776 (window_width, CURBEG, CURSIZE, enlarge_window)
18777 (adjust_window_trailing_edge, Fadjust_window_trailing_edge)
18778 (Fenlarge_window, Fshrink_window): Remove. Window resizing is
18779 handled in window.el.
18780 (make_dummy_parent): Rename to make_parent_window and give it a
18781 second argument horflag.
18782 (make_window): Don't set resize_proportionally any more.
18783 (Fsplit_window): Remove. Windows are split in window.el.
18784 (save_restore_action, save_restore_orig_size)
18785 (shrink_window_lowest_first, save_restore_orig_size): Remove.
18786 Resize mini windows in window.el.
18787 (grow_mini_window, shrink_mini_window): Implement by calling
18788 Qresize_root_window_vertically, resize_window_check and
18789 resize_window_apply.
18790 (saved_window, Fset_window_configuration, save_window_save):
18791 Do not handle orig_top_line, orig_total_lines, and
18792 resize_proportionally.
18793 (window_min_height, window_min_width): Move to window.el.
18794 (keys_of_window): Move bindings for delete-other-windows,
18795 split-window, delete-window and enlarge-window to window.el.
18796
18797 * buffer.c: Temporarily extern Qdelete_window.
18798 (Fbury_buffer): Temporarily call Qdelete_window instead of
18799 Fdelete_window (Fbury_buffer will move to window.el soon).
18800
18801 * frame.c (set_menu_bar_lines_1): Remove code handling
18802 orig_top_line and orig_total_lines.
18803
18804 * dispnew.c (adjust_frame_glyphs_initially): Don't use
18805 set_window_height but set heights directly.
18806 (change_frame_size_1): Use resize_frame_windows.
18807
18808 * xdisp.c (init_xdisp): Don't use set_window_height but set
18809 heights directly.
18810
18811 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines):
18812 Use resize_frame_windows instead of change_window_heights and run
18813 run_window_configuration_change_hook.
18814
18815 * w32fns.c (x_set_tool_bar_lines): Use resize_frame_windows
18816 instead of change_window_heights and run
18817 run_window_configuration_change_hook.
18818
18819 2011-06-09 Martin Rudalics <rudalics@gmx.at>
18820
18821 * window.c (replace_window): Rename second argument REPLACEMENT to
18822 NEW. New third argument SETFLAG. Rewrite.
18823 (delete_window, make_dummy_parent): Call replace_window with
18824 third argument 1.
18825 (window_list_1): Move down in code.
18826 (run_window_configuration_change_hook): Move set_buffer part
18827 before select_frame_norecord part in order to unwind correctly.
18828 Rename count1 to count.
18829 (recombine_windows, delete_deletable_window, resize_root_window)
18830 (Fdelete_other_windows_internal)
18831 (Frun_window_configuration_change_hook, make_parent_window)
18832 (resize_window_check, resize_window_apply, Fresize_window_apply)
18833 (resize_frame_windows, Fsplit_window_internal)
18834 (Fdelete_window_internal, Fresize_mini_window_internal):
18835 New functions.
18836 (syms_of_window): New variables Vwindow_splits and Vwindow_nest.
18837
18838 2011-06-08 Martin Rudalics <rudalics@gmx.at>
18839
18840 * window.h (window): Add some new members to window structure -
18841 normal_lines, normal_cols, new_total, new_normal, clone_number,
18842 splits, nest, prev_buffers, next_buffers.
18843 (WINDOW_TOTAL_SIZE): Move here from window.c.
18844 (MIN_SAFE_WINDOW_WIDTH, MIN_SAFE_WINDOW_HEIGHT): Define here.
18845
18846 * window.c (Fwindow_height, Fwindow_width, Fwindow_full_width_p):
18847 Remove.
18848 (make_dummy_parent): Set new members of windows structure.
18849 (make_window): Move down in code. Handle new members of window
18850 structure.
18851 (Fwindow_clone_number, Fwindow_splits, Fset_window_splits)
18852 (Fwindow_nest, Fset_window_nest, Fwindow_new_total)
18853 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_prev_buffers)
18854 (Fset_window_prev_buffers, Fwindow_next_buffers)
18855 (Fset_window_next_buffers, Fset_window_clone_number):
18856 New functions.
18857 (Fwindow_hscroll, Fwindow_at, Fwindow_point, Fwindow_start)
18858 (Fwindow_end, Fwindow_line_height, Fset_window_dedicated_p):
18859 Doc-string fixes.
18860 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter):
18861 Argument WINDOW can be now internal window too.
18862 (Fwindow_use_time): Move up in code.
18863 (Fget_buffer_window): Rename argument FRAME to ALL-FRAMES.
18864 Rewrite doc-string.
18865 (Fset_window_configuration, saved_window)
18866 (Fcurrent_window_configuration, save_window_save): Handle new
18867 members of window structure.
18868 (WINDOW_TOTAL_SIZE, MIN_SAFE_WINDOW_WIDTH)
18869 (MIN_SAFE_WINDOW_HEIGHT): Move to window.h.
18870 (syms_of_window): New Lisp objects Qrecord_window_buffer,
18871 Qwindow_deletable_p, Qdelete_window, Qreplace_buffer_in_windows,
18872 Qget_mru_window, Qresize_root_window,
18873 Qresize_root_window_vertically, Qsafe, Qabove, Qbelow,
18874 Qauto_buffer_name; staticpro them.
18875
18876 2011-06-07 Martin Rudalics <rudalics@gmx.at>
18877
18878 * window.c (Fwindow_total_size, Fwindow_left_column)
18879 (Fwindow_top_line, window_body_lines, Fwindow_body_size)
18880 (Fwindow_list_1): New functions.
18881 (window_box_text_cols): Replace with window_body_cols.
18882 (Fwindow_width, Fscroll_left, Fscroll_right):
18883 Use window_body_cols instead of window_box_text_cols.
18884 (delete_window, Fset_window_configuration):
18885 Call delete_all_subwindows with window as argument.
18886 (delete_all_subwindows): Take a window as argument and not a
18887 structure. Rewrite.
18888 (window_loop): Remove handling of GET_LRU_WINDOW and
18889 GET_LARGEST_WINDOW.
18890 (Fget_lru_window, Fget_largest_window): Move to window.el.
18891
18892 * window.h: Extern window_body_cols instead of
18893 window_box_text_cols. delete_all_subwindows now takes a
18894 Lisp_Object as argument.
18895
18896 * indent.c (compute_motion, Fcompute_motion):
18897 Use window_body_cols instead of window_box_text_cols.
18898
18899 * frame.c (delete_frame): Call delete_all_subwindows with root
18900 window as argument.
18901
18902 2011-06-07 Daniel Colascione <dan.colascione@gmail.com>
18903
18904 * fns.c (Fputhash): Document return value.
18905
18906 2011-06-06 Chong Yidong <cyd@stupidchicken.com>
18907
18908 * image.c (gif_load): Implement gif89a spec "no disposal" method.
18909
18910 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
18911
18912 Cons<->int and similar integer overflow fixes (Bug#8794).
18913
18914 Check for overflow when converting integer to cons and back.
18915 * charset.c (Fdefine_charset_internal, Fdecode_char):
18916 Use cons_to_unsigned to catch overflow.
18917 (Fencode_char): Use INTEGER_TO_CONS.
18918 * composite.h (LGLYPH_CODE): Use cons_to_unsigned.
18919 (LGLYPH_SET_CODE): Use INTEGER_TO_CONS.
18920 * data.c (long_to_cons, cons_to_long): Remove.
18921 (cons_to_unsigned, cons_to_signed): New functions.
18922 These signal an error for invalid or out-of-range values.
18923 * dired.c (Ffile_attributes): Use INTEGER_TO_CONS.
18924 * fileio.c (Fset_visited_file_modtime): Use CONS_TO_INTEGER.
18925 * font.c (Ffont_variation_glyphs):
18926 * fontset.c (Finternal_char_font): Use INTEGER_TO_CONS.
18927 * lisp.h: Include <intprops.h>.
18928 (INTEGER_TO_CONS, CONS_TO_INTEGER): New macros.
18929 (cons_to_signed, cons_to_unsigned): New decls.
18930 (long_to_cons, cons_to_long): Remove decls.
18931 * undo.c (record_first_change): Use INTEGER_TO_CONS.
18932 (Fprimitive_undo): Use CONS_TO_INTEGER.
18933 * xfns.c (Fx_window_property): Likewise.
18934 * xselect.c: Include <limits.h>.
18935 (x_own_selection, selection_data_to_lisp_data):
18936 Use INTEGER_TO_CONS.
18937 (x_handle_selection_request, x_handle_selection_clear)
18938 (x_get_foreign_selection, Fx_disown_selection_internal)
18939 (Fx_get_atom_name, x_send_client_event): Use CONS_TO_INTEGER.
18940 (lisp_data_to_selection_data): Use cons_to_unsigned.
18941 (x_fill_property_data): Use cons_to_signed.
18942 Report values out of range.
18943
18944 Check for buffer and string overflow more precisely.
18945 * buffer.h (BUF_BYTES_MAX): New macro.
18946 * lisp.h (STRING_BYTES_MAX): New macro.
18947 * alloc.c (Fmake_string):
18948 * character.c (string_escape_byte8):
18949 * coding.c (coding_alloc_by_realloc):
18950 * doprnt.c (doprnt):
18951 * editfns.c (Fformat):
18952 * eval.c (verror):
18953 Use STRING_BYTES_MAX, not MOST_POSITIVE_FIXNUM,
18954 since they may not be the same number.
18955 * editfns.c (Finsert_char):
18956 * fileio.c (Finsert_file_contents):
18957 Likewise for BUF_BYTES_MAX.
18958
18959 * image.c: Use ptrdiff_t, not int, for sizes.
18960 (slurp_file): Switch from int to ptrdiff_t.
18961 All uses changed.
18962 (slurp_file): Check that file size fits in both size_t (for
18963 malloc) and ptrdiff_t (for sanity and safety).
18964
18965 * fileio.c (Fverify_visited_file_modtime): Avoid time overflow
18966 if b->modtime has its maximal value.
18967
18968 * dired.c (Ffile_attributes): Don't assume EMACS_INT has >32 bits.
18969
18970 Don't assume time_t can fit into int.
18971 * buffer.h (struct buffer.modtime): Now time_t, not int.
18972 * fileio.c (Fvisited_file_modtime): No need for time_t cast now.
18973 * undo.c (Fprimitive_undo): Use time_t, not int, for time_t value.
18974
18975 Minor fixes for signed vs unsigned integers.
18976 * character.h (MAYBE_UNIFY_CHAR):
18977 * charset.c (maybe_unify_char):
18978 * keyboard.c (read_char, reorder_modifiers):
18979 XINT -> XFASTINT, since the integer must be nonnegative.
18980 * ftfont.c (ftfont_spec_pattern):
18981 * keymap.c (access_keymap, silly_event_symbol_error):
18982 XUINT -> XFASTINT, since the integer must be nonnegative.
18983 (Fsingle_key_description, preferred_sequence_p): XUINT -> XINT,
18984 since it makes no difference and we prefer signed.
18985 * keyboard.c (record_char): Use XUINT when all the neighbors do.
18986 (access_keymap): NATNUMP -> INTEGERP, since the integer must be
18987 nonnegative.
18988
18989 2011-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
18990
18991 * window.h (Fwindow_frame): Declare.
18992
18993 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
18994
18995 * alloc.c: Simplify handling of large-request failures (Bug#8800).
18996 (SPARE_MEMORY): Always define.
18997 (LARGE_REQUEST): Remove.
18998 (memory_full): Use SPARE_MEMORY rather than LARGE_REQUEST.
18999
19000 2011-06-06 Martin Rudalics <rudalics@gmx.at>
19001
19002 * lisp.h: Move EXFUNS for Fframe_root_window,
19003 Fframe_first_window and Fset_frame_selected_window to window.h.
19004
19005 * window.h: Move EXFUNS for Fframe_root_window,
19006 Fframe_first_window and Fset_frame_selected_window here from
19007 lisp.h.
19008
19009 * frame.c (Fwindow_frame, Fframe_first_window)
19010 (Fframe_root_window, Fframe_selected_window)
19011 (Fset_frame_selected_window): Move to window.c.
19012 (Factive_minibuffer_window): Move to minibuf.c.
19013 (Fother_visible_frames_p): New function.
19014
19015 * minibuf.c (Factive_minibuffer_window): Move here from frame.c.
19016
19017 * window.c (decode_window, decode_any_window): Move up in code.
19018 (Fwindowp, Fwindow_live_p): Rewrite doc-strings.
19019 (inhibit_frame_unsplittable): Remove unused variable.
19020 (Fwindow_buffer): Move up and rewrite doc-string.
19021 (Fwindow_parent, Fwindow_vchild, Fwindow_hchild, Fwindow_next)
19022 (Fwindow_prev): New functions.
19023 (Fwindow_frame): Move here from frame.c. Accept any window as
19024 argument.
19025 (Fframe_root_window, Fframe_first_window)
19026 (Fframe_selected_window): Move here from frame.c. Accept frame
19027 or arbitrary window as argument. Update doc-strings.
19028 (Fminibuffer_window): Move up in code.
19029 (Fwindow_minibuffer_p): Move up in code and simplify.
19030 (Fset_frame_selected_window): Move here from frame.c.
19031 Marginal rewrite.
19032 (Fselected_window, select_window, Fselect_window): Move up in
19033 code. Minor doc-string fixes.
19034
19035 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
19036
19037 * alloc.c (memory_full) [SYSTEM_MALLOC]: Port to MacOS (Bug#8800).
19038 Do not assume that spare memory exists; that assumption is valid
19039 only if SYSTEM_MALLOC.
19040 (LARGE_REQUEST): New macro, so that the issue of large requests
19041 is separated from the issue of spare memory.
19042
19043 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
19044
19045 * editfns.c (Fformat): Correctly handle zero flag with hexadecimal
19046 format. (Bug#8806)
19047
19048 * gtkutil.c (xg_get_default_scrollbar_width): Avoid warning.
19049
19050 * xfns.c (x_set_scroll_bar_default_width): Move declarations
19051 before statements.
19052
19053 2011-06-05 Jan Djärv <jan.h.d@swipnet.se>
19054
19055 * gtkutil.c (xg_get_default_scrollbar_width): New function.
19056
19057 * gtkutil.h: Declare xg_get_default_scrollbar_width.
19058
19059 * xfns.c (x_set_scroll_bar_default_width): If USE_GTK, get
19060 min width by calling x_set_scroll_bar_default_width (Bug#8505).
19061
19062 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
19063
19064 * xdisp.c (single_display_spec_intangible_p): Remove declaration.
19065
19066 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
19067
19068 * xselect.c (x_clipboard_manager_save): Remove redundant arg.
19069 (x_clipboard_manager_save): Add return value.
19070 (x_clipboard_manager_error_1, x_clipboard_manager_error_2):
19071 New error handlers.
19072 (x_clipboard_manager_save_frame, x_clipboard_manager_save_all):
19073 Obey Vx_select_enable_clipboard_manager. Catch errors in
19074 x_clipboard_manager_save (Bug#8779).
19075 (Vx_select_enable_clipboard_manager): New variable.
19076 (x_get_foreign_selection): Reduce scope of x_catch_errors (Bug#8790).
19077
19078 2011-06-04 Dan Nicolaescu <dann@ics.uci.edu>
19079
19080 * emacs.c (main): Warn when starting a GTK emacs in daemon mode.
19081
19082 2011-06-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19083
19084 * fringe.c (update_window_fringes): Don't update overlay arrow bitmap
19085 in the current matrix if keep_current_p is non-zero.
19086
19087 2011-06-04 Eli Zaretskii <eliz@gnu.org>
19088
19089 * bidi.c (bidi_level_of_next_char): Fix last change.
19090
19091 2011-06-03 Eli Zaretskii <eliz@gnu.org>
19092
19093 Support bidi reordering of text covered by display properties.
19094
19095 * bidi.c (bidi_copy_it): Use offsetof instead of emulating it.
19096 (bidi_fetch_char, bidi_fetch_char_advance): New functions.
19097 (bidi_cache_search, bidi_cache_iterator_state)
19098 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
19099 (bidi_level_of_next_char, bidi_move_to_visually_next):
19100 Support character positions inside a run of characters covered by a
19101 display string.
19102 (bidi_paragraph_init, bidi_resolve_explicit_1)
19103 (bidi_level_of_next_char): Call bidi_fetch_char and
19104 bidi_fetch_char_advance instead of FETCH_CHAR and
19105 FETCH_CHAR_ADVANCE.
19106 (bidi_init_it): Initialize new members.
19107 (LRE_CHAR, RLE_CHAR, PDF_CHAR, LRO_CHAR, RLO_CHAR): Remove macro
19108 definitions.
19109 (bidi_explicit_dir_char): Lookup character type in bidi_type_table,
19110 instead of using explicit *_CHAR codes.
19111 (bidi_resolve_explicit, bidi_resolve_weak):
19112 Use FETCH_MULTIBYTE_CHAR instead of FETCH_CHAR, as reordering of
19113 bidirectional text is supported only in multibyte buffers.
19114 (bidi_init_it): Accept additional argument FRAME_WINDOW_P and use
19115 it to initialize the frame_window_p member of struct bidi_it.
19116 (bidi_cache_iterator_state, bidi_resolve_explicit_1)
19117 (bidi_resolve_explicit, bidi_resolve_weak)
19118 (bidi_level_of_next_char, bidi_move_to_visually_next): Abort if
19119 bidi_it->nchars is non-positive.
19120 (bidi_level_of_next_char): Don't try to lookup the cache for the
19121 next/previous character if nothing is cached there yet, or if we
19122 were just reseat()'ed to a new position.
19123
19124 * xdisp.c (set_cursor_from_row): Set start and stop points
19125 according to the row's direction when priming the loop that looks
19126 for the glyph on which to display cursor.
19127 (single_display_spec_intangible_p): Function deleted.
19128 (display_prop_intangible_p): Reimplement to call
19129 handle_display_spec instead of single_display_spec_intangible_p.
19130 Accept 3 additional arguments needed by handle_display_spec.
19131 This fixes incorrect cursor motion across display property with complex
19132 values: lists, `(when COND...)' forms, etc.
19133 (single_display_spec_string_p): Support property values that are
19134 lists with the argument STRING its top-level element.
19135 (display_prop_string_p): Fix the condition for processing a
19136 property that is a list to be consistent with handle_display_spec.
19137 (handle_display_spec): New function, refactored from the
19138 last portion of handle_display_prop.
19139 (compute_display_string_pos): Accept additional argument
19140 FRAME_WINDOW_P. Call handle_display_spec to determine whether the
19141 value of a `display' property is a "replacing spec".
19142 (handle_single_display_spec): Accept 2 additional arguments BUFPOS
19143 and FRAME_WINDOW_P. If IT is NULL, don't set up the iterator from
19144 the display property, but just return a value indicating whether
19145 the display property will replace the characters it covers.
19146 (Fcurrent_bidi_paragraph_direction): Initialize the nchars and
19147 frame_window_p members of struct bidi_it.
19148 (compute_display_string_pos, compute_display_string_end):
19149 New functions.
19150 (push_it): Accept second argument POSITION, where pop_it should
19151 jump to continue iteration.
19152 (reseat_1): Initialize bidi_it.disp_pos.
19153
19154 * keyboard.c (adjust_point_for_property): Adjust the call to
19155 display_prop_intangible_p to its new signature.
19156
19157 * dispextern.h (struct bidi_it): New member frame_window_p.
19158 (bidi_init_it): Update prototypes.
19159 (display_prop_intangible_p): Update prototype.
19160 (compute_display_string_pos, compute_display_string_end):
19161 Declare prototypes.
19162 (struct bidi_it): New members nchars and disp_pos. ch_len is now
19163 EMACS_INT.
19164
19165 2011-06-02 Paul Eggert <eggert@cs.ucla.edu>
19166
19167 Malloc failure behavior now depends on size of allocation.
19168 * alloc.c (buffer_memory_full, memory_full): New arg NBYTES.
19169 * lisp.h: Change signatures accordingly.
19170 * alloc.c, buffer.c, editfns.c, menu.c, minibuf.c, xterm.c:
19171 All callers changed. (Bug#8762)
19172
19173 * gnutls.c: Use Emacs's memory allocators.
19174 Without this change, the gnutls library would invoke malloc etc.
19175 directly, which causes problems on non-SYNC_INPUT hosts, and which
19176 runs afoul of improving memory_full behavior. (Bug#8761)
19177 (fn_gnutls_global_set_mem_functions): New macro or function pointer.
19178 (emacs_gnutls_global_init): Use it to specify xmalloc, xrealloc,
19179 xfree instead of the default malloc, realloc, free.
19180 (Fgnutls_boot): No need to check for memory allocation failure,
19181 since xmalloc does that for us.
19182
19183 Remove arbitrary limit of 2**31 entries in hash tables. (Bug#8771)
19184 * category.c (hash_get_category_set):
19185 * ccl.c (ccl_driver):
19186 * charset.c (Fdefine_charset_internal):
19187 * charset.h (struct charset.hash_index):
19188 * composite.c (get_composition_id, gstring_lookup_cache)
19189 (composition_gstring_put_cache):
19190 * composite.h (struct composition.hash_index):
19191 * dispextern.h (struct image.hash):
19192 * fns.c (next_almost_prime, larger_vector, cmpfn_eql)
19193 (cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
19194 (hashfn_equal, hashfn_user_defined, make_hash_table)
19195 (maybe_resize_hash_table, hash_lookup, hash_put)
19196 (hash_remove_from_table, hash_clear, sweep_weak_table, SXHASH_COMBINE)
19197 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector)
19198 (Fsxhash, Fgethash, Fputhash, Fmaphash):
19199 * image.c (make_image, search_image_cache, lookup_image)
19200 (xpm_put_color_table_h):
19201 * lisp.h (struct Lisp_Hash_Table):
19202 * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
19203 * print.c (print): Use 'EMACS_UINT' and 'EMACS_INT'
19204 for hashes and hash indexes, instead of 'unsigned' and 'int'.
19205 * alloc.c (allocate_vectorlike):
19206 Check for overflow in vector size calculations.
19207 * ccl.c (ccl_driver):
19208 Check for overflow when converting EMACS_INT to int.
19209 * fns.c, image.c: Remove unnecessary static decls that would otherwise
19210 need to be updated by these changes.
19211 * fns.c (make_hash_table, maybe_resize_hash_table):
19212 Check for integer overflow with large hash tables.
19213 (make_hash_table, maybe_resize_hash_table, Fmake_hash_table):
19214 Prefer the faster XFLOAT_DATA to XFLOATINT where either will do.
19215 (SXHASH_REDUCE): New macro.
19216 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector):
19217 Use it instead of discarding useful hash info with large hash values.
19218 (sxhash_float): New function.
19219 (sxhash): Use it. No more need for "& INTMASK" due to above changes.
19220 * lisp.h (FIXNUM_BITS): New macro, useful for SXHASH_REDUCE etc.
19221 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
19222 Rewrite to use FIXNUM_BITS, as this simplifies things.
19223 (next_almost_prime, larger_vector, sxhash, hash_lookup, hash_put):
19224 Adjust signatures to match updated version of code.
19225 (consing_since_gc): Now EMACS_INT, since a single hash table can
19226 use more than INT_MAX bytes.
19227
19228 2011-06-01 Dan Nicolaescu <dann@ics.uci.edu>
19229
19230 Make it possible to build with GCC-4.6+ -O2 -flto.
19231
19232 * emacs.c (__malloc_initialize_hook): Mark as EXTERNALLY_VISIBLE.
19233
19234 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
19235
19236 * minibuf.c (get_minibuffer, read_minibuf_unwind):
19237 Call minibuffer-inactive-mode.
19238
19239 2011-05-31 Juanma Barranquero <lekktu@gmail.com>
19240
19241 * makefile.w32-in ($(BLD)/data.$(O), $(BLD)/editfns.$(O)):
19242 Update dependencies.
19243
19244 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
19245
19246 * data.c (init_data): Remove code for UTS, this system is not
19247 supported anymore.
19248
19249 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
19250
19251 Don't force ./temacs to start in terminal mode.
19252
19253 * frame.c (make_initial_frame): Initialize faces in all cases, not
19254 only when CANNOT_DUMP is defined.
19255 * dispnew.c (init_display): Remove CANNOT_DUMP condition.
19256
19257 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
19258
19259 * dispnew.c (add_window_display_history): Use const for the string
19260 pointer. Remove declaration, not needed.
19261
19262 2011-05-31 Paul Eggert <eggert@cs.ucla.edu>
19263
19264 Use 'inline', not 'INLINE'.
19265 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00914.html>
19266 * alloc.c, fontset.c (INLINE): Remove.
19267 * alloc.c, bidi.c, charset.c, coding.c, dispnew.c, fns.c, image.c:
19268 * intervals.c, keyboard.c, process.c, syntax.c, textprop.c, w32term.c:
19269 * xdisp.c, xfaces.c, xterm.c: Replace all uses of INLINE with inline.
19270 * gmalloc.c (register_heapinfo): Use inline unconditionally.
19271 * lisp.h (LISP_MAKE_RVALUE): Use inline, not __inline__.
19272
19273 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
19274
19275 Make it possible to run ./temacs.
19276
19277 * callproc.c (set_initial_environment): Remove CANNOT_DUMP code,
19278 syms_of_callproc does the same thing. Remove test for
19279 "initialized", do it in the caller.
19280 * emacs.c (main): Avoid calling set_initial_environment when dumping.
19281
19282 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
19283
19284 * minibuf.c (Finternal_complete_buffer): Return `category' metadata.
19285 (read_minibuf): Use get_minibuffer.
19286 (syms_of_minibuf): Use DEFSYM.
19287 (Qmetadata): New var.
19288 * data.c (Qbuffer): Don't make it static.
19289 (syms_of_data): Use DEFSYM.
19290
19291 2011-05-31 Paul Eggert <eggert@cs.ucla.edu>
19292
19293 * ccl.c (CCL_CODE_RANGE): Allow negative numbers. (Bug#8751)
19294 (CCL_CODE_MIN): New macro.
19295
19296 2011-05-30 Paul Eggert <eggert@cs.ucla.edu>
19297
19298 * alloc.c (lisp_align_malloc): Omit unnecessary val==NULL tests.
19299
19300 * eval.c (Qdebug): Now static.
19301 * lisp.h (Qdebug): Remove decl. This reverts a part of the
19302 2011-04-26T11:26:05Z!dan.colascione@gmail.com that inadvertently undid part of
19303 2011-04-14T06:48:41Z!eggert@cs.ucla.edu.
19304
19305 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
19306
19307 * image.c: Various fixes to ImageMagick code comments.
19308 (Fimagemagick_types): Doc fix.
19309
19310 2011-05-29 Paul Eggert <eggert@cs.ucla.edu>
19311
19312 Minor fixes prompted by GCC 4.6.0 warnings.
19313
19314 * xselect.c (converted_selections, conversion_fail_tag): Now static.
19315
19316 * emacs.c [HAVE_X_WINDOWS]: Include "xterm.h".
19317 (x_clipboard_manager_save_all): Move extern decl to ...
19318 * xterm.h: ... here, so that it can be checked for consistency.
19319
19320 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
19321
19322 * xselect.c (x_clipboard_manager_save_frame)
19323 (x_clipboard_manager_save_all): New functions.
19324 (Fx_clipboard_manager_save): Lisp function deleted.
19325
19326 * emacs.c (Fkill_emacs): Call x_clipboard_manager_save_all.
19327 * frame.c (delete_frame): Call x_clipboard_manager_save_frame.
19328
19329 * xterm.h: Update prototype.
19330
19331 2011-05-28 William Xu <william.xwl@gmail.com>
19332
19333 * nsterm.m (ns_term_shutdown): Synchronize user defaults before
19334 exiting (Bug#8239).
19335
19336 2011-05-28 Jim Meyering <meyering@redhat.com>
19337
19338 Avoid a sign-extension bug in crypto_hash_function.
19339 * fns.c (to_uchar): Define.
19340 (crypto_hash_function): Use it to convert some newly-signed
19341 variables to unsigned, to avoid sign-extension bugs. For example,
19342 without this change, (md5 "truc") would evaluate to
19343 45723a2aff78ff4fff7fff1114760e62 rather than the expected
19344 45723a2af3788c4ff17f8d1114760e62. Reported by Antoine Levitt in
19345 https://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00883.html.
19346
19347 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
19348
19349 Integer overflow fixes.
19350
19351 * dbusbind.c: Serial number integer overflow fixes.
19352 (CHECK_DBUS_SERIAL_GET_SERIAL): New macro.
19353 (Fdbus_call_method_asynchronously, xd_read_message_1): Use a float
19354 to hold a serial number that is too large for a fixnum.
19355 (Fdbus_method_return_internal, Fdbus_method_error_internal):
19356 Check for serial numbers out of range. Decode any serial number
19357 that was so large that it became a float. (Bug#8722)
19358
19359 * dbusbind.c: Use XFASTINT rather than XUINT, and check for nonneg.
19360 (Fdbus_call_method, Fdbus_call_method_asynchronously):
19361 Use XFASTINT rather than XUINT when numbers are nonnegative.
19362 (xd_append_arg, Fdbus_method_return_internal):
19363 (Fdbus_method_error_internal): Likewise. Also, for unsigned
19364 arguments, check that Lisp number is nonnegative, rather than
19365 silently wrapping negative numbers around. (Bug#8722)
19366 (xd_read_message_1): Don't assume dbus_uint32_t can fit in int.
19367 (Bug#8722)
19368
19369 * data.c (arith_driver, Flsh): Avoid unnecessary casts to EMACS_UINT.
19370
19371 * ccl.c (ccl_driver): Redo slightly to avoid the need for 'unsigned'.
19372
19373 ccl: Add integer overflow checks.
19374 * ccl.c (CCL_CODE_MAX, GET_CCL_RANGE, GET_CCL_CODE, GET_CCL_INT):
19375 (IN_INT_RANGE): New macros.
19376 (ccl_driver): Use them to check for integer overflow when
19377 decoding a CCL program. Many of the new checks are whether XINT (x)
19378 fits in int; it doesn't always, on 64-bit hosts. The new version
19379 doesn't catch all possible integer overflows, but it's an
19380 improvement. (Bug#8719)
19381
19382 * alloc.c (make_event_array): Use XINT, not XUINT.
19383 There's no need for unsigned here.
19384
19385 * mem-limits.h (EXCEEDS_LISP_PTR) [!USE_LSB_TAG]: EMACS_UINT -> uintptr_t
19386 This follows up to the 2011-05-06 change that substituted uintptr_t
19387 for EMACS_INT. This case wasn't caught back then.
19388
19389 Rework Fformat to avoid integer overflow issues.
19390 * editfns.c: Include <float.h> unconditionally, as it's everywhere
19391 now (part of C89). Include <verify.h>.
19392 (MAX_10_EXP, CONVERTED_BYTE_SIZE): Remove; no longer needed.
19393 (pWIDE, pWIDElen, signed_wide, unsigned_wide): New defns.
19394 (Fformat): Avoid the prepass trying to compute sizes; it was only
19395 approximate and thus did not catch overflow reliably. Instead, walk
19396 through the format just once, formatting and computing sizes as we go,
19397 checking for integer overflow at every step, and allocating a larger
19398 buffer as needed. Keep track separately whether the format is
19399 multibyte. Keep only the most-recently calculated precision, rather
19400 than them all. Record whether each argument has been converted to
19401 string. Use EMACS_INT, not int, for byte and char and arg counts.
19402 Support field widths and precisions larger than INT_MAX. Avoid
19403 sprintf's undefined behavior with conversion specifications such as %#d
19404 and %.0c. Fix bug with strchr succeeding on '\0' when looking for
19405 flags. Fix bug with (format "%c" 256.0). Avoid integer overflow when
19406 formatting out-of-range floating point numbers with int
19407 formats. (Bug#8668)
19408
19409 * lisp.h (FIXNUM_OVERFLOW_P): Work even if arg is a NaN.
19410
19411 * data.c: Avoid integer truncation in expressions involving floats.
19412 * data.c: Include <intprops.h>.
19413 (arith_driver): When there's an integer overflow in an expression
19414 involving floating point, convert the integers to floating point
19415 so that the resulting value does not suffer from catastrophic
19416 integer truncation. For example, on a 64-bit host (* 4
19417 most-negative-fixnum 0.5) should yield about -4.6e+18, not zero.
19418 Do not rely on undefined behavior after integer overflow.
19419
19420 merge count_size_as_multibyte, parse_str_to_multibyte
19421 * character.c, character.h (count_size_as_multibyte):
19422 Rename from parse_str_to_multibyte; all uses changed.
19423 Check for integer overflow.
19424 * insdel.c, lisp.h (count_size_as_multibyte): Remove,
19425 since it's now a duplicate of the other. This is more of
19426 a character than a buffer op, so better that it's in character.c.
19427 * fns.c, print.c: Adjust to above changes.
19428
19429 2011-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
19430
19431 * xselect.c (x_convert_selection): Yet another int/Lisp_Object mixup.
19432
19433 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
19434
19435 * xselect.c: Fix minor problems prompted by GCC 4.6.0 warnings.
19436 (x_handle_selection_request, frame_for_x_selection): Remove unused vars.
19437 (x_clipboard_manager_save): Now static.
19438 (Fx_clipboard_manager_save): Rename local to avoid shadowing.
19439
19440 * fns.c: Fix minor problems prompted by GCC 4.6.0 warnings.
19441 (crypto_hash_function): Now static.
19442 Fix pointer signedness problems. Avoid unnecessary initializations.
19443
19444 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
19445
19446 * termhooks.h (Vselection_alist): Make it terminal-local.
19447
19448 * terminal.c (create_terminal): Initialize it.
19449
19450 * xselect.c: Support for clipboard managers.
19451 (Vselection_alist): Move to termhooks.h as terminal-local var.
19452 (LOCAL_SELECTION): New macro.
19453 (x_atom_to_symbol): Handle x_display_info_for_display fail case.
19454 (symbol_to_x_atom): Remove gratuitous arg.
19455 (x_handle_selection_request, lisp_data_to_selection_data)
19456 (x_get_foreign_selection, Fx_register_dnd_atom): Callers changed.
19457 (x_own_selection, x_get_local_selection, x_convert_selection):
19458 New arg, specifying work frame. Use terminal-local Vselection_alist.
19459 (some_frame_on_display): Delete unused function.
19460 (Fx_own_selection_internal, Fx_get_selection_internal)
19461 (Fx_disown_selection_internal, Fx_selection_owner_p)
19462 (Fx_selection_exists_p): New optional frame arg.
19463 (frame_for_x_selection, Fx_clipboard_manager_save): New functions.
19464 (x_handle_selection_clear): Don't treat other terminals with the
19465 same keyboard specially. Use the terminal-local Vselection_alist.
19466 (x_clear_frame_selections): Use Frun_hook_with_args.
19467
19468 * xterm.c (x_term_init): Intern ATOM and CLIPBOARD_MANAGER atoms.
19469
19470 * xterm.h: Add support for those atoms.
19471
19472 2011-05-26 Chong Yidong <cyd@stupidchicken.com>
19473
19474 * xselect.c: ICCCM-compliant handling of MULTIPLE targets.
19475 (converted_selections, conversion_fail_tag): New global variables.
19476 (x_selection_request_lisp_error): Free the above.
19477 (x_get_local_selection): Remove unnecessary code.
19478 (x_reply_selection_request): Args changed; handle arbitrary array
19479 of converted selections stored in converted_selections.
19480 Separate the XChangeProperty and SelectionNotify steps.
19481 (x_handle_selection_request): Rewrite to handle MULTIPLE target.
19482 (x_convert_selection): New function.
19483 (x_handle_selection_event): Simplify.
19484 (x_get_foreign_selection): Don't ignore incoming requests while
19485 waiting for an answer; this will fail when we implement
19486 SAVE_TARGETS, and seems unnecessary anyway.
19487 (selection_data_to_lisp_data): Recognize ATOM_PAIR type.
19488 (Vx_sent_selection_functions): Doc fix.
19489
19490 2011-05-26 Leo Liu <sdl.web@gmail.com>
19491
19492 * editfns.c (Ftranspose_regions): Allow empty regions. (Bug#8699)
19493
19494 2011-05-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19495
19496 * dispextern.h (struct glyph_row): New member fringe_bitmap_periodic_p.
19497
19498 * dispnew.c (shift_glyph_matrix, scrolling_window): Mark scrolled row
19499 for fringe update if it has periodic bitmap.
19500 (row_equal_p): Also compare left_fringe_offset, right_fringe_offset,
19501 and fringe_bitmap_periodic_p.
19502
19503 * fringe.c (get_fringe_bitmap_data): New function.
19504 (draw_fringe_bitmap_1, update_window_fringes): Use it.
19505 (update_window_fringes): Record periodicity of fringe bitmap in glyph
19506 row. Mark glyph row for fringe update if periodicity changed.
19507
19508 * xdisp.c (try_window_reusing_current_matrix): Don't mark scrolled row
19509 for fringe update unless it has periodic bitmap.
19510
19511 2011-05-25 Kenichi Handa <handa@m17n.org>
19512
19513 * xdisp.c (get_next_display_element): Set correct it->face_id for
19514 a static composition.
19515
19516 2011-05-24 Leo Liu <sdl.web@gmail.com>
19517
19518 * deps.mk (fns.o):
19519 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha1.h.
19520
19521 * fns.c (crypto_hash_function, Fsha1): New function.
19522 (Fmd5): Use crypto_hash_function.
19523 (syms_of_fns): Add Ssha1.
19524
19525 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
19526
19527 * gnutls.c: Remove unused macros.
19528 (fn_gnutls_transport_set_lowat, fn_gnutls_transport_set_pull_function):
19529 (fn_gnutls_transport_set_push_function) [!WINDOWSNT]:
19530 Remove macros that are defined and never used.
19531 Caught by gcc -Wunused-macros (GCC 4.6.0, Fedora 14).
19532
19533 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
19534
19535 * xselect.c (syms_of_xselect): Remove unused symbol SAVE_TARGETS.
19536 (Fx_get_selection_internal): Minor cleanup.
19537 (Fx_own_selection_internal): Rename arguments for consistency with
19538 select.el.
19539
19540 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
19541
19542 * xselect.c (QSAVE_TARGETS): New static var, to fix build failure.
19543
19544 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
19545
19546 * xselect.c (syms_of_xselect): Include character.h; use DEFSYM.
19547
19548 2011-05-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19549
19550 * dispnew.c (scrolling_window): Don't exclude the case that the
19551 last enabled row in the desired matrix touches the bottom boundary.
19552
19553 2011-05-21 Glenn Morris <rgm@gnu.org>
19554
19555 * Makefile.in ($(etc)/DOC): Make second command line even shorter.
19556 (SOME_MACHINE_OBJECTS): Replace FONT_OBJ by its maximal expansion,
19557 and add some more files.
19558
19559 2011-05-20 Eli Zaretskii <eliz@gnu.org>
19560
19561 * callproc.c (Fcall_process) [MSDOS]: Fix arguments to
19562 report_file_error introduced by the change from 2011-05-07.
19563
19564 2011-05-20 Paul Eggert <eggert@cs.ucla.edu>
19565
19566 * systime.h (Time): Define only if emacs is defined.
19567 This is to allow ../lib-src/profile.c to be compiled on FreeBSD,
19568 where the include path doesn't have X11/X.h by default. See
19569 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00561.html>.
19570
19571 2011-05-20 Kenichi Handa <handa@m17n.org>
19572
19573 * composite.c (find_automatic_composition): Fix previous change.
19574
19575 2011-05-20 Glenn Morris <rgm@gnu.org>
19576
19577 * lisp.mk: New file, split from Makefile.in.
19578 * Makefile.in (lisp): Move to separate file, inserted by @lisp_frag@.
19579 (shortlisp): Remove.
19580 ($(etc)/DOC): Edit lisp.mk rather than using $shortlisp.
19581
19582 2011-05-19 Glenn Morris <rgm@gnu.org>
19583
19584 * Makefile.in (MSDOS_SUPPORT_REAL, MSDOS_SUPPORT, NS_SUPPORT)
19585 (REAL_MOUSE_SUPPORT, GPM_MOUSE_SUPPORT, MOUSE_SUPPORT, TOOLTIP_SUPPORT)
19586 (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT, WINDOW_SUPPORT): Remove.
19587 (lisp): Set the order to that of loadup.el.
19588 (shortlisp): Make it a copy of $lisp.
19589 (SOME_MACHINE_LISP): Remove.
19590 ($(etc)/DOC): Depend just on $lisp, not $SOME_MACHINE_LISP too.
19591 Use just $shortlisp, not $SOME_MACHINE_LISP too.
19592
19593 2011-05-18 Kenichi Handa <handa@m17n.org>
19594
19595 * composite.c (CHAR_COMPOSABLE_P): Add more check for efficiency.
19596 (BACKWARD_CHAR): Wrap the arg STOP by parenthesis.
19597 (find_automatic_composition): Mostly rewrite for efficiency.
19598
19599 2011-05-18 Juanma Barranquero <lekktu@gmail.com>
19600
19601 * makefile.w32-in: Update dependencies.
19602
19603 2011-05-18 Christoph Scholtes <cschol2112@googlemail.com>
19604
19605 * menu.c: Include limits.h (fixes the MS-Windows build broken by
19606 2011-06-18T18:49:19Z!cyd@stupidchicken.com).
19607
19608 2011-05-18 Paul Eggert <eggert@cs.ucla.edu>
19609
19610 Fix some integer overflow issues, such as string length overflow.
19611
19612 * insdel.c (count_size_as_multibyte): Check for string overflow.
19613
19614 * character.c (lisp_string_width): Check for string overflow.
19615 Use EMACS_INT, not int, for string indexes and lengths; in
19616 particular, 2nd arg is now EMACS_INT, not int. Do not crash if
19617 the resulting string length overflows an EMACS_INT; instead,
19618 report a string overflow if no precision given. When checking for
19619 precision exhaustion, use a check that cannot possibly have
19620 integer overflow. (Bug#8675)
19621 * character.h (lisp_string_width): Adjust to new signature.
19622
19623 * alloc.c (string_overflow): New function.
19624 (Fmake_string): Use it. This doesn't change behavior, but saves
19625 a few bytes and will simplify future changes.
19626 * character.c (string_escape_byte8): Likewise.
19627 * lisp.h (string_overflow): New decl.
19628
19629 Fixups, following up to the user-interface timestamp change.
19630 * nsterm.m (last_mouse_movement_time, ns_mouse_position): Use Time
19631 for UI timestamps, instead of unsigned long.
19632 * msdos.c (mouse_get_pos): Likewise.
19633 * w32inevt.c (movement_time, w32_console_mouse_position): Likewise.
19634 * w32gui.h (Time): Define by including "systime.h" rather than by
19635 declaring it ourselves. (Bug#8664)
19636
19637 * dispextern.h (struct image): Don't assume time_t <= unsigned long.
19638 * image.c (clear_image_cache): Likewise.
19639
19640 * term.c (term_mouse_position): Don't assume time_t wraparound.
19641
19642 Be more systematic about user-interface timestamps.
19643 Before, the code sometimes used 'Time', sometimes 'unsigned long',
19644 and sometimes 'EMACS_UINT', to represent these timestamps.
19645 This change causes it to use 'Time' uniformly, as that's what X uses.
19646 This makes the code easier to follow, and makes it easier to catch
19647 integer overflow bugs such as Bug#8664.
19648 * frame.c (Fmouse_position, Fmouse_pixel_position):
19649 Use Time, not unsigned long, for user-interface timestamps.
19650 * keyboard.c (last_event_timestamp, kbd_buffer_get_event): Likewise.
19651 (button_down_time, make_lispy_position, make_lispy_movement): Likewise.
19652 * keyboard.h (last_event_timestamp): Likewise.
19653 * menu.c (Fx_popup_menu) [!HAVE_X_WINDOWS]: Likewise.
19654 * menu.h (xmenu_show): Likewise.
19655 * term.c (term_mouse_position): Likewise.
19656 * termhooks.h (struct input_event.timestamp): Likewise.
19657 (struct terminal.mouse_position_hook): Likewise.
19658 * xmenu.c (create_and_show_popup_menu, xmenu_show): Likewise.
19659 * xterm.c (XTmouse_position, x_scroll_bar_report_motion): Likewise.
19660 * systime.h (Time): New decl. Pull it in from <X11/X.h> if
19661 HAVE_X_WINDOWS, otherwise define it as unsigned long, which is
19662 what it was before.
19663 * menu.h, termhooks.h: Include "systime.h", for Time.
19664
19665 * keyboard.c (make_lispy_event): Fix problem in integer overflow.
19666 Don't assume that the difference between two unsigned long values
19667 can fit into an integer. At this point, we know button_down_time
19668 <= event->timestamp, so the difference must be nonnegative, so
19669 there's no need to cast the result if double-click-time is
19670 nonnegative, as it should be; check that it's nonnegative, just in
19671 case. This bug is triggered when events are more than 2**31 ms
19672 apart (about 25 days). (Bug#8664)
19673
19674 * xselect.c (last_event_timestamp): Remove duplicate decl.
19675 (x_own_selection): Remove needless cast to unsigned long.
19676
19677 * xmenu.c (set_frame_menubar): Use int, not EMACS_UINT, for indexes
19678 that always fit in int. Use a sentinel instead of a counter, to
19679 avoid a temp and to allay GCC's concerns about possible int overflow.
19680 * frame.h (struct frame): Use int for menu_bar_items_used
19681 instead of EMACS_INT, since it always fits in int.
19682
19683 * menu.c (grow_menu_items): Check for int overflow.
19684
19685 * xmenu.c (set_frame_menubar): Don't mishandle vectors with no nils.
19686
19687 * xterm.c: Use EMACS_INT for Emacs modifiers, and int for X modifiers.
19688 Before, the code was not consistent. These values cannot exceed
19689 2**31 - 1 so there's no need to make them unsigned.
19690 (x_x_to_emacs_modifiers): Accept int and return EMACS_INT.
19691 (x_emacs_to_x_modifiers): Accept EMACS_INT and return int.
19692 (x_x_to_emacs_modifiers, x_emacs_to_x_modifiers): Reject non-integers
19693 as modifiers.
19694 * xterm.h (x_x_to_emacs_modifiers): Adjust to signature change.
19695
19696 * lisp.h (XINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_INT.
19697 (XUINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_UINT.
19698 Otherwise, GCC 4.6.0 warns about printf (pI, XINT (...)),
19699 presumably because the widths might not match.
19700
19701 * window.c (size_window): Avoid needless test at loop start.
19702
19703 2011-05-18 Courtney Bane <emacs-bugs-7626@cbane.org> (tiny change)
19704
19705 * term.c (Fresume_tty): Restore hooks before reinitializing (bug#8687).
19706
19707 2011-05-12 Drew Adams <drew.adams@oracle.com>
19708
19709 * textprop.c (Fprevious_single_char_property_change): Doc fix (bug#8655).
19710
19711 2011-05-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19712
19713 * w32term.c (w32_draw_fringe_bitmap): Rename local vars `left' and
19714 `width' to `bar_area_x' and `bar_area_width', respectively.
19715 (x_scroll_run): Take account of fringe background extension.
19716
19717 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
19718 Rename local vars `left' and `width' to `bar_area_x' and
19719 `bar_area_width', respectively.
19720 (x_scroll_run) [USE_TOOLKIT_SCROLL_BARS]: Take account of fringe
19721 background extension.
19722
19723 2011-05-10 Jim Meyering <meyering@redhat.com>
19724
19725 * xdisp.c (x_intersect_rectangles): Fix typo "the the -> the".
19726
19727 2011-05-10 Juanma Barranquero <lekktu@gmail.com>
19728
19729 * image.c (Finit_image_library): Return t for built-in image types,
19730 like pbm and xbm. (Bug#8640)
19731
19732 2011-05-09 Andreas Schwab <schwab@linux-m68k.org>
19733
19734 * w32menu.c (set_frame_menubar): Fix submenu allocation.
19735
19736 2011-05-07 Eli Zaretskii <eliz@gnu.org>
19737
19738 * w32console.c (Fset_screen_color): Doc fix.
19739 (Fget_screen_color): New function.
19740 (syms_of_ntterm): Defsubr it.
19741
19742 * callproc.c (call_process_cleanup) [MSDOS]: Don't close and
19743 unlink the temporary file if Fcall_process didn't create it in the
19744 first place.
19745 (Fcall_process) [MSDOS]: Don't create tempfile if stdout of the
19746 child process will be redirected to a file specified with `:file'.
19747 Don't try to re-open tempfile in that case, and set fd[0] to -1 as
19748 cue to call_process_cleanup not to close that handle.
19749
19750 2011-05-07 Ben Key <bkey76@gmail.com>
19751
19752 * makefile.w32-in: The bootstrap-temacs rule now makes use of
19753 one of two shell specific rules, either bootstrap-temacs-CMD or
19754 bootstrap-temacs-SH. The bootstrap-temacs-SH rule is identical
19755 to the previous implementation of the bootstrap-temacs rule.
19756 The bootstrap-temacs-CMD rule is similar to the previous
19757 implementation of the bootstrap-temacs rule except that it
19758 makes use of the ESC_CFLAGS variable instead of the CFLAGS
19759 variable.
19760
19761 These changes, along with some changes to nt/configure.bat,
19762 nt/gmake.defs, and nt/nmake.defs, are required to extend my
19763 earlier fix to add support for --cflags and --ldflags options
19764 that include quotes so that it works whether make uses cmd or
19765 sh as the shell.
19766
19767 2011-05-06 Michael Albinus <michael.albinus@gmx.de>
19768
19769 * dbusbind.c (QCdbus_type_unix_fd): Declare static.
19770 (xd_remove_watch): Don't check QCdbus_type_unix_fd for SYMBOLP, it
19771 is a constant.
19772 (Fdbus_init_bus, xd_read_queued_messages): Bus can be a symbol or
19773 a string. Handle both cases.
19774 (Fdbus_call_method_asynchronously, Fdbus_register_signal)
19775 (Fdbus_register_method): Use Qinvalid_function.
19776
19777 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
19778
19779 * makefile.w32-in: Update dependencies.
19780 (LISP_H): Add inttypes.h and stdin.h.
19781 (PROCESS_H): Add unistd.h.
19782
19783 2011-05-06 Eli Zaretskii <eliz@gnu.org>
19784
19785 * lread.c: Include limits.h (fixes the MS-Windows build broken by
19786 2011-05-06T07:13:19Z!eggert@cs.ucla.edu).
19787
19788 2011-05-06 Paul Eggert <eggert@cs.ucla.edu>
19789
19790 * image.c (Finit_image_library) [!HAVE_NTGUI]: Omit unused local.
19791
19792 * term.c (vfatal): Remove stray call to va_end.
19793 It's not needed and the C Standard doesn't allow it here anyway.
19794
19795 Use C99's va_copy to avoid undefined behavior on x86-64 GNU/Linux.
19796 * eval.c (verror): doprnt a copy of ap, not the original. (Bug#8545)
19797
19798 * eval.c (verror): OK to create a string of up to MOST_POSITIVE_FIXNUM
19799 bytes.
19800
19801 * term.c: Don't include <stdarg.h>, as <lisp.h> does that.
19802
19803 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
19804
19805 * process.c (Fformat_network_address): Fix typo: args2 -> *args2.
19806
19807 * xmenu.c (set_frame_menubar): Fix typo: int * -> int (3 times).
19808
19809 * coding.c (detect_coding_charset): Fix typo: * 2 -> *4 (Bug#8601).
19810
19811 * charset.h (struct charset.code_space): Now has 15 elements, not 16.
19812 * charset.c (Fdefine_charset_internal): Don't initialize
19813 charset.code_space[15]. The value was garbage, on hosts with
19814 32-bit int (Bug#8600).
19815
19816 * lread.c (read_integer): Be more consistent with string-to-number.
19817 Use string_to_number to do the actual conversion; this avoids
19818 rounding errors and fixes some other screwups. Without this fix,
19819 for example, #x1fffffffffffffff was misread as -2305843009213693952.
19820 (digit_to_number): Move earlier, for benefit of read_integer.
19821 Return -1 if the digit is out of range for the base, -2 if it is
19822 not a digit in any supported base. (Bug#8602)
19823
19824 * doprnt.c (doprnt): Support arbitrary pI values, such as "I64".
19825
19826 * dispnew.c (scrolling_window): Return 1 if we scrolled,
19827 to match comment at start of function. This also removes a
19828 GCC warning about overflow in a 32+64-bit port.
19829
19830 * lisp.h (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Simplify.
19831
19832 * dbusbind.c: Do not use XPNTR on a value that may be an integer.
19833 Reported by Stefan Monnier in
19834 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00919.html>.
19835 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
19836 Use SYMBOLP-guarded XSYMBOL, not XPNTR.
19837
19838 * lisp.h (EMACS_INTPTR): Remove. All uses changed to intptr_t.
19839 (EMACS_UINTPTR): Likewise, with uintptr_t.
19840
19841 * lisp.h: Prefer 64-bit EMACS_INT if available.
19842 (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Define to 64-bit
19843 on 32-bit hosts that have 64-bit int, so that they can access
19844 large files.
19845 However, temporarily disable this change unless the temporary
19846 symbol WIDE_EMACS_INT is defined.
19847
19848 * lread.c, process.c: Do not include <inttypes.h>; lisp.h does it now.
19849
19850 Prefer intptr_t/uintptr_t for integers the same widths as pointers.
19851 This removes an assumption that EMACS_INT and long are the same
19852 width as pointers. The assumption is true for Emacs porting targets
19853 now, but we want to make other targets possible.
19854 * lisp.h: Include <inttypes.h>, for INTPTR_MAX, UINTPTR_MAX.
19855 (EMACS_INTPTR, EMACS_UINTPTR): New macros.
19856 In the rest of the code, change types of integers that hold casted
19857 pointers to EMACS_INTPTR and EMACS_UINTPTR, systematically
19858 replacing EMACS_INT, long, EMACS_UINT, and unsigned long.
19859 (XTYPE): Don't cast arg to EMACS_UINT; normally is not needed.
19860 (XSET): Cast type of XTYPE arg to EMACS_INTPTR; it is needed here.
19861 No need to cast type when ORing.
19862 (XPNTR): Return a value of type EMACS_INTPTR or EMACS_UINTPTR.
19863 * alloc.c (lisp_align_malloc): Remove a no-longer-needed cast.
19864 * doc.c (store_function_docstring): Use EMACS_INTPTR, so as not to
19865 assume EMACS_INT is the same width as char *.
19866 * gtkutil.c (xg_gtk_scroll_destroy, xg_tool_bar_button_cb):
19867 (xg_tool_bar_callback, xg_tool_bar_help_callback, xg_make_tool_item):
19868 Remove no-longer-needed casts.
19869 (xg_create_scroll_bar, xg_tool_bar_button_cb, xg_tool_bar_callback):
19870 (xg_tool_bar_help_callback, xg_make_tool_item):
19871 Use EMACS_INTPTR to hold an integer
19872 that will be cast to void *; this can avoid a GCC warning
19873 if EMACS_INT is not the same width as void *.
19874 * menu.c (find_and_call_menu_selection): Remove no-longer-needed cast.
19875 * xdisp.c (display_echo_area_1, resize_mini_window_1):
19876 (current_message_1, set_message_1):
19877 Use a local to convert to proper width without a cast.
19878 * xmenu.c (dialog_selection_callback): Likewise.
19879
19880 * sysdep.c (get_random): Don't assume EMACS_INT is no wider than long.
19881 Also, don't assume VALBITS / RAND_BITS is less than 5,
19882 and don't rely on undefined behavior when shifting a 1 left into
19883 the sign bit.
19884 * lisp.h (get_random): Change signature to match.
19885
19886 * lread.c (hash_string): Use size_t, not int, for hash computation.
19887 Normally we prefer signed values; but hashing is special, because
19888 it's better to use unsigned division on hash table sizes so that
19889 the remainder is nonnegative. Also, size_t is the natural width
19890 for hashing into memory. The previous code used 'int', which doesn't
19891 retain enough info to hash well into very large tables.
19892 (oblookup, oblookup_last_bucket_number, Funintern): Likewise.
19893
19894 * dbusbind.c: Don't possibly lose pointer info when converting.
19895 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
19896 Use XPNTR rather than XHASH, so that the high-order bits of
19897 the pointer aren't lost when converting through void *.
19898
19899 * eval.c (Fautoload): Don't double-shift a pointer.
19900
19901 * fns.c (Frandom): Let EMACS_UINT be wider than unsigned long.
19902
19903 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
19904
19905 * gnutls.c (DEF_GNUTLS_FN):
19906 * image.c (DEF_IMGLIB_FN): Make function pointers static.
19907
19908 2011-05-05 Andreas Schwab <schwab@linux-m68k.org>
19909
19910 * lread.c (lisp_file_lexically_bound_p): Stop scanning at end
19911 marker. (Bug#8610)
19912
19913 2011-05-05 Eli Zaretskii <eliz@gnu.org>
19914
19915 * w32heap.c (allocate_heap) [USE_LISP_UNION_TYPE || USE_LSB_TAG]:
19916 New version that can reserve upto 2GB of heap space.
19917
19918 2011-05-05 Chong Yidong <cyd@stupidchicken.com>
19919
19920 * nsfns.m (Fns_read_file_name): Doc fix (Bug#8534).
19921
19922 2011-05-05 Teodor Zlatanov <tzz@lifelogs.com>
19923
19924 * gnutls.c (fn_gnutls_certificate_set_x509_key_file): Add alias to
19925 `gnutls_certificate_set_x509_key_file'.
19926
19927 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
19928
19929 * makefile.w32-in ($(BLD)/image.$(O), $(BLD)/process.$(O)):
19930 Update dependencies.
19931
19932 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
19933
19934 * gnutls.h (emacs_gnutls_write, emacs_gnutls_read):
19935 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
19936 Remove unused parameter `fildes'.
19937 * process.c (read_process_output, send_process): Don't pass it.
19938
19939 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
19940
19941 Fix previous change: the library cache is defined in w32.c.
19942 * image.c (CACHE_IMAGE_TYPE) [!HAVE_NTGUI]: Define to noop.
19943 (Finit_image_library): Wrap Vlibrary_cache on "#ifdef HAVE_NTGUI".
19944
19945 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
19946
19947 Implement dynamic loading of GnuTLS on Windows.
19948
19949 * gnutls.h (GNUTLS_EMACS_ERROR_NOT_LOADED): New macro.
19950 (emacs_gnutls_write, emacs_gnutls_read): Mark as extern.
19951 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
19952 Declare.
19953
19954 * gnutls.c (Qgnutls_dll): Define.
19955 (DEF_GNUTLS_FN, LOAD_GNUTLS_FN): New macros.
19956 (gnutls_*): Declare function pointers.
19957 (init_gnutls_functions): New function to initialize function pointers.
19958 (emacs_gnutls_handshake, Fgnutls_error_string, Fgnutls_deinit)
19959 (emacs_gnutls_global_init, Fgnutls_bye): Use function pointers.
19960 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
19961 Wrappers for gnutls_record_check_pending and gnutls_transport_set_errno.
19962 (emacs_gnutls_write, emacs_gnutls_read)
19963 (emacs_gnutls_handle_error, Fgnutls_error_fatalp)
19964 (Fgnutls_available_p): New function.
19965 (Fgnutls_boot): Call Fgnutls_available_p. Use function pointers.
19966 (syms_of_gnutls) <Qgnutls_dll>: Initialize and staticpro it.
19967 (syms_of_gnutls) <Sgnutls_available_p>: defsubr it.
19968
19969 * image.c: Include w32.h.
19970 (Vimage_type_cache): Delete.
19971 (syms_of_image) <Vimage_type_cache>: Don't initialize and staticpro it.
19972 (CACHE_IMAGE_TYPE, Finit_image_library): Use Vlibrary_cache instead.
19973 (w32_delayed_load): Move to w32.c.
19974
19975 * w32.h (VlibraryCache, QCloaded_from, w32_delayed_load): Declare.
19976
19977 * w32.c (QCloaded_from, Vlibrary_cache): Define.
19978 (w32_delayed_load): Move from image.c. When loading a library, record
19979 its filename in the :loaded-from property of the library id.
19980 (globals_of_w32) <QCloaded_from, Vlibrary_cache>:
19981 Initialize and staticpro them.
19982 (emacs_gnutls_pull, emacs_gnutls_push): Call emacs_gnutls_* functions.
19983
19984 * process.c: Include lisp.h before w32.h, not after.
19985 (wait_reading_process_output): Call emacs_gnutls_record_check_pending
19986 instead of gnutls_record_check_pending.
19987
19988 * callproc.c, emacs.c: Include lisp.h before w32.h, not after.
19989
19990 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
19991
19992 * gnutls.c (Fgnutls_boot): Support :keylist and :crlfiles options
19993 instead of :keyfiles. Give GnuTLS the keylist and the CRL lists
19994 as passed in.
19995
19996 2011-05-03 Jan Djärv <jan.h.d@swipnet.se>
19997
19998 * xterm.c (x_set_frame_alpha): Do not set property on anything
19999 else than FRAME_X_OUTER_WINDOW (Bug#8608).
20000
20001 2011-05-02 Juanma Barranquero <lekktu@gmail.com>
20002
20003 * sysdep.c (get_tty_size) [WINDOWSNT]: Implement. (Bug#8596)
20004
20005 2011-05-02 Juanma Barranquero <lekktu@gmail.com>
20006
20007 * gnutls.c (Qgnutls_log_level, Qgnutls_code, Qgnutls_anon)
20008 (Qgnutls_x509pki, Qgnutls_e_interrupted, Qgnutls_e_again)
20009 (Qgnutls_e_invalid_session, Qgnutls_e_not_ready_for_handshake)
20010 (gnutls_global_initialized, Qgnutls_bootprop_priority)
20011 (Qgnutls_bootprop_trustfiles, Qgnutls_bootprop_keyfiles)
20012 (Qgnutls_bootprop_callbacks, Qgnutls_bootprop_loglevel)
20013 (Qgnutls_bootprop_hostname, Qgnutls_bootprop_verify_flags)
20014 (Qgnutls_bootprop_verify_error, Qgnutls_bootprop_verify_hostname_error)
20015 (Qgnutls_bootprop_callbacks_verify): Make static.
20016
20017 2011-05-01 Andreas Schwab <schwab@linux-m68k.org>
20018
20019 * callproc.c: Indentation fixup.
20020
20021 * sysdep.c (wait_for_termination_1): Make static.
20022 (wait_for_termination, interruptible_wait_for_termination):
20023 Move after wait_for_termination_1.
20024
20025 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
20026
20027 * sysdep.c (interruptible_wait_for_termination): New function
20028 which is like wait_for_termination, but allows keyboard
20029 interruptions.
20030
20031 * callproc.c (Fcall_process): Add (:file "file") as an option for
20032 the STDOUT buffer.
20033 (Fcall_process_region): Ditto.
20034
20035 2011-04-30 Eli Zaretskii <eliz@gnu.org>
20036
20037 * dosfns.c (Fint86, Fdos_memget, Fdos_memput): Use `ASIZE (FOO)'
20038 rather than `XVECTOR (FOO)->size'.
20039
20040 * process.c: Remove HAVE_INTTYPES_H condition from inclusion of
20041 inttypes.h, as a gnulib replacement is used if it not available in
20042 system headers.
20043
20044 2011-04-21 Eli Zaretskii <eliz@gnu.org>
20045
20046 Lift the MOST_POSITIVE_FIXNUM/4 limitation on visited files.
20047 * fileio.c (Finsert_file_contents): Don't limit file size to 1/4
20048 of MOST_POSITIVE_FIXNUM. (Bug#8528)
20049
20050 * coding.c (coding_alloc_by_realloc): Error out if destination
20051 will grow beyond MOST_POSITIVE_FIXNUM.
20052 (decode_coding_emacs_mule): Abort if there isn't enough place in
20053 charbuf for the composition carryover bytes. Reserve an extra
20054 space for up to 2 characters produced in a loop.
20055 (decode_coding_iso_2022): Abort if there isn't enough place in
20056 charbuf for the composition carryover bytes.
20057
20058 2011-04-21 Eli Zaretskii <eliz@gnu.org>
20059
20060 * doprnt.c (doprnt) [!HAVE_LONG_LONG_INT]: Error out instead of
20061 aborting when %lld or %lll format is passed.
20062 [!HAVE_UNSIGNED_LONG_LONG_INT]: Error out instead of aborting when
20063 %llo or %llx format is passed. (Bug#8545)
20064
20065 * window.c (window_scroll_line_based): Use a marker instead of
20066 simple variables to record original value of point. (Bug#7952)
20067
20068 * doprnt.c (doprnt): Fix the case where a multibyte sequence
20069 produced by %s or %c overflows available buffer space. (Bug#8545)
20070
20071 2011-04-28 Paul Eggert <eggert@cs.ucla.edu>
20072
20073 * doprnt.c (doprnt): Omit useless test; int overflow check (Bug#8545).
20074 (SIZE_MAX): Move defn after all includes, as they might #define it.
20075
20076 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
20077
20078 * w32.c (init_environment): Warn about defaulting HOME to C:\.
20079
20080 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
20081
20082 * keyboard.c (Qdelayed_warnings_hook): Define.
20083 (command_loop_1): Run `delayed-warnings-hook'
20084 if Vdelayed_warnings_list is non-nil.
20085 (syms_of_keyboard) <delayed-warnings-hook>: DEFSYM it.
20086 (syms_of_keyboard) <delayed-warnings-list>: DEFVAR_LISP it.
20087
20088 2011-04-28 Eli Zaretskii <eliz@gnu.org>
20089
20090 * doprnt.c (doprnt): Don't return value smaller than the buffer
20091 size if the message was truncated. (Bug#8545).
20092
20093 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
20094
20095 * w32fns.c (Fx_change_window_property, Fx_delete_window_property)
20096 (Fx_window_property): #if-0 the whole functions, not just the bodies.
20097
20098 2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
20099
20100 * doprnt.c (doprnt): Support "ll" length modifier, for long long.
20101
20102 2011-04-27 Juanma Barranquero <lekktu@gmail.com>
20103
20104 * makefile.w32-in: Update dependencies.
20105
20106 2011-04-27 Eli Zaretskii <eliz@gnu.org>
20107
20108 Improve `doprnt' and its usage. (Bug#8545)
20109 * doprnt.c (doprnt): Make sure `format' is never accessed beyond
20110 `format_end'. Remove support for %l as a conversion specifier.
20111 Don't use xrealloc. Improve diagnostics when the %l size modifier
20112 is used. Update the commentary.
20113
20114 * eval.c (verror): Simplify calculation of size_t.
20115
20116 * coding.c (Ffind_operation_coding_system): Fix diagnostic error
20117 messages.
20118
20119 2011-04-27 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
20120
20121 * buffer.c (init_buffer) [USE_MMAP_FOR_BUFFERS]: Adjust to aliasing
20122 change.
20123
20124 2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
20125
20126 * nsmenu.m: Replace all uses of XVECTOR with ASIZE and AREF.
20127 This makes this file independent of the recent pseudovector change.
20128
20129 2011-04-26 Paul Eggert <eggert@cs.ucla.edu>
20130
20131 * keyboard.c (handle_user_signal): Fix pointer signedness problem.
20132
20133 * gnutls.c (emacs_gnutls_handle_error): Remove unused local.
20134 (Fgnutls_boot): gnutls_certificate_verify_peers2 wants unsigned *.
20135 Remove unused local.
20136 (emacs_gnutls_write): Don't use uninitialized rtnval if nbyte <= 0.
20137
20138 * lisp.h: Fix a problem with aliasing and vector headers. (Bug#8546)
20139 GCC 4.6.0 optimizes based on type-based alias analysis.
20140 For example, if b is of type struct buffer * and v of type struct
20141 Lisp_Vector *, then gcc -O2 was incorrectly assuming that &b->size
20142 != &v->size, and therefore "v->size = 1; b->size = 2; return
20143 v->size;" must therefore return 1. This assumption is incorrect
20144 for Emacs, since it type-puns struct Lisp_Vector * with many other
20145 types. To fix this problem, this patch adds a new type struct
20146 vectorlike_header that documents the constraints on layout of vectors
20147 and pseudovectors, and helps optimizing compilers not get fooled
20148 by Emacs's type punning. It also adds the macros XSETTYPED_PVECTYPE
20149 XSETTYPED_PSEUDOVECTOR, TYPED_PSEUDOVECTORP, for similar reasons.
20150 * lisp.h (XSETTYPED_PVECTYPE): New macro, specifying the name of
20151 the size member.
20152 (XSETPVECTYPE): Rewrite in terms of new macro.
20153 (XSETPVECTYPESIZE): New macro, specifying both type and size.
20154 This is a bit clearer, and further avoids the possibility of
20155 undesirable aliasing.
20156 (XSETTYPED_PSEUDOVECTOR): New macro, specifying the size.
20157 (XSETPSEUDOVECTOR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR.
20158 (XSETSUBR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR and XSIZE,
20159 since Lisp_Subr is a special case (no "next" field).
20160 (ASIZE): Now uses header.size rather than size.
20161 All previous uses of XVECTOR (foo)->size replaced to use this macro,
20162 to avoid the hassle of writing XVECTOR (foo)->header.size.
20163 (struct vectorlike_header): New type.
20164 (TYPED_PSEUDOVECTORP): New macro, also specifying the C type of the
20165 object, to help avoid aliasing.
20166 (PSEUDOVECTORP): Rewrite in terms of TYPED_PSEUDOVECTORP.
20167 (SUBRP): Likewise, since Lisp_Subr is a special case.
20168 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table):
20169 (struct Lisp_Sub_Char_Table, struct Lisp_Bool_Vector):
20170 (struct Lisp_Hash_Table): Combine first two members into a single
20171 struct vectorlike_header member. All uses of "size" and "next" members
20172 changed to be "header.size" and "header.next".
20173 * buffer.h (struct buffer): Likewise.
20174 * font.h (struct font_spec, struct font_entity, struct font): Likewise.
20175 * frame.h (struct frame): Likewise.
20176 * process.h (struct Lisp_Process): Likewise.
20177 * termhooks.h (struct terminal): Likewise.
20178 * window.c (struct save_window_data, struct saved_window): Likewise.
20179 * window.h (struct window): Likewise.
20180 * alloc.c (allocate_buffer, Fmake_bool_vector, allocate_pseudovector):
20181 Use XSETPVECTYPESIZE, not XSETPVECTYPE, to avoid aliasing problems.
20182 * buffer.c (init_buffer_once): Likewise.
20183 * lread.c (defsubr): Use XSETTYPED_PVECTYPE, since Lisp_Subr is a
20184 special case.
20185 * process.c (Fformat_network_address): Use local var for size,
20186 for brevity.
20187
20188 * bytecode.c (exec_byte_code): Don't use XVECTOR before CHECK_VECTOR.
20189
20190 Make the Lisp reader and string-to-float more consistent (Bug#8525)
20191 * data.c (atof): Remove decl; no longer used or needed.
20192 (digit_to_number): Move to lread.c.
20193 (Fstring_to_number): Use new string_to_number function, to be
20194 consistent with how the Lisp reader treats infinities and NaNs.
20195 Do not assume that floating-point numbers represent EMACS_INT
20196 without losing information; this is not true on most 64-bit hosts.
20197 Avoid double-rounding errors, by insisting on integers when
20198 parsing non-base-10 numbers, as the documentation specifies.
20199 * lisp.h (string_to_number): New decl, replacing ...
20200 (isfloat_string): Remove.
20201 * lread.c: Include <inttypes.h>, for uintmax_t and strtoumax.
20202 (read1): Do not accept +. and -. as integers; this
20203 appears to have been a coding error. Similarly, do not accept
20204 strings like +-1e0 as floating point numbers. Do not report
20205 overflow for integer overflows unless the base is not 10 which
20206 means we have no simple and reliable way to continue.
20207 Break out the floating-point parsing into a new
20208 function string_to_number, so that Fstring_to_number parses
20209 floating point numbers consistently with the Lisp reader.
20210 (digit_to_number): Move here from data.c. Make it static inline.
20211 (E_CHAR, EXP_INT): Remove, replacing with ...
20212 (E_EXP): New macro, to solve the "1.0e+" problem mentioned below.
20213 (string_to_number): New function, replacing isfloat_string.
20214 This function checks for valid syntax and produces the resulting
20215 Lisp float number too. Rework it so that string-to-number
20216 no longer mishandles examples like "1.0e+". Use strtoumax,
20217 so that overflow for non-base-10 numbers is reported only when
20218 there's no portable and simple way to convert to floating point.
20219
20220 * textprop.c (set_text_properties_1): Rewrite for clarity,
20221 and to avoid GCC warning about integer overflow.
20222
20223 * intervals.h (struct interval): Use EMACS_INT for members
20224 where EMACS_UINT might cause problems. See
20225 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html>.
20226 (CHECK_TOTAL_LENGTH): Remove cast to EMACS_INT; no longer needed.
20227 * intervals.c (interval_deletion_adjustment): Now returns EMACS_INT.
20228 All uses changed.
20229 (offset_intervals): Tell GCC not to worry about length overflow
20230 when negating a negative length.
20231
20232 * alloc.c (overrun_check_malloc, overrun_check_realloc): Now static.
20233 (overrun_check_free): Likewise.
20234
20235 * alloc.c (SDATA_SIZE) [!GC_CHECK_STRING_BYTES]: Avoid runtime check
20236 in the common case where SDATA_DATA_OFFSET is a multiple of Emacs
20237 word size.
20238
20239 * gnutls.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
20240 (gnutls_make_error): Rename local to avoid shadowing.
20241 (gnutls_emacs_global_deinit): ifdef out; not used.
20242 (Fgnutls_boot): Use const for pointer to readonly storage.
20243 Comment out unused local. Fix pointer signedness problems.
20244
20245 * lread.c (openp): Don't stuff size_t into an 'int'.
20246 Use <= on length, not < on length + 1, to avoid GCC 4.6.0 warning
20247 about possible signed overflow.
20248
20249 * gtkutil.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
20250 (GDK_KEY_g): Don't define if already defined.
20251 (xg_prepare_tooltip): Avoid pointer signedness problem.
20252 (xg_set_toolkit_scroll_bar_thumb): Redo to avoid two casts.
20253
20254 * process.c (Fnetwork_interface_info): Avoid left-shift undefined
20255 behavior with 1 << 31. GCC 4.6.0 warns about this on 32-bit hosts.
20256
20257 * xfns.c (Fx_window_property): Simplify a bit,
20258 to make a bit faster and to avoid GCC 4.6.0 warning.
20259 * xselect.c (x_get_window_property, x_handle_dnd_message): Likewise.
20260
20261 * fns.c (internal_equal): Don't assume size_t fits in int.
20262
20263 * alloc.c (compact_small_strings): Tighten assertion a little.
20264
20265 Replace pEd with more-general pI, and fix some printf arg casts.
20266 * lisp.h (pI): New macro, generalizing old pEd macro to other
20267 conversion specifiers. For example, use "...%"pI"d..." rather
20268 than "...%"pEd"...".
20269 (pEd): Remove. All uses replaced with similar uses of pI.
20270 * m/amdx86-64.h, m/ia64.h, m/ibms390x.h: Likewise.
20271 * alloc.c (check_pure_size): Don't overflow by converting size to int.
20272 * bidi.c (bidi_dump_cached_states): Use pI to avoid cast.
20273 * data.c (Fnumber_to_string): Use pI instead of if-then-else-abort.
20274 * dbusbind.c (xd_append_arg): Use pI to avoid cast.
20275 (Fdbus_method_return_internal, Fdbus_method_error_internal): Likewise.
20276 * font.c (font_unparse_xlfd): Avoid potential buffer overrun on
20277 64-bit hosts.
20278 (font_unparse_xlfd, font_unparse_fcname): Use pI to avoid casts.
20279 * keyboard.c (record_char, modify_event_symbol): Use pI to avoid casts.
20280 * print.c (safe_debug_print, print_object): Likewise.
20281 (print_object): Don't overflow by converting EMACS_INT or EMACS_UINT
20282 to int.
20283 Use pI instead of if-then-else-abort. Use %p to avoid casts,
20284 avoiding the 0 flag, which is not portable.
20285 * process.c (Fmake_network_process): Use pI to avoid cast.
20286 * region-cache.c (pp_cache): Likewise.
20287 * xdisp.c (decode_mode_spec): Likewise.
20288 * xrdb.c (x_load_resources) [USE_MOTIF]: Use pI to avoid undefined
20289 behavior on 64-bit hosts with printf arg.
20290 * xselect.c (x_queue_event): Use %p to avoid casts, avoiding 0 flag.
20291 (x_stop_queuing_selection_requests): Likewise.
20292 (x_get_window_property): Don't truncate byte count to an 'int'
20293 when tracing.
20294
20295 * frame.c (frame_name_fnn_p): Get rid of strtol, which isn't right
20296 here, since it parses constructs like leading '-' and spaces,
20297 which are not wanted; and it overflows with large numbers.
20298 Instead, simply match F[0-9]+, which is what is wanted anyway.
20299
20300 * alloc.c: Remove unportable assumptions about struct layout.
20301 (SDATA_SELECTOR, SDATA_DATA_OFFSET): New macros.
20302 (SDATA_OF_STRING, SDATA_SIZE, allocate_string_data):
20303 (allocate_vectorlike, make_pure_vector): Use the new macros,
20304 plus offsetof, to remove unportable assumptions about struct layout.
20305 These assumptions hold on all porting targets that I know of, but
20306 they are not guaranteed, they're easy to remove, and removing them
20307 makes further changes easier.
20308
20309 * alloc.c (BLOCK BYTES): Fix typo by changing "ablock" to "ablocks".
20310 This doesn't fix a bug but makes the code clearer.
20311 (string_overrun_cookie): Now const. Use initializers that
20312 don't formally overflow signed char, to avoid warnings.
20313 (allocate_string_data) [GC_CHECK_STRING_OVERRUN]: Fix typo that
20314 can cause Emacs to crash when string overrun checking is enabled.
20315 (allocate_buffer): Don't assume sizeof (struct buffer) is a
20316 multiple of sizeof (EMACS_INT); it need not be, if
20317 alignof(EMACS_INT) < sizeof (EMACS_INT).
20318 (check_sblock, check_string_bytes, check_string_free_list): Protoize.
20319
20320 2011-04-26 Juanma Barranquero <lekktu@gmail.com>
20321
20322 * keyboard.c (QCrtl): Rename from Qrtl. All uses changed.
20323
20324 2011-04-26 Teodor Zlatanov <tzz@lifelogs.com>
20325
20326 * gnutls.c (emacs_gnutls_handshake): Return an error if we're not
20327 supposed to be handshaking. (Bug#8556)
20328 Reported by Paul Eggert <eggert@cs.ucla.edu>.
20329
20330 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
20331
20332 * lisp.h (Qdebug): List symbol.
20333 * eval.c (Qdebug): Restore global linkage.
20334 * keyboard.c (debug-on-event): New variable.
20335 (handle_user_signal): Break into debugger when debug-on-event
20336 matches the current signal symbol.
20337
20338 2011-04-25 Dan Nicolaescu <dann@ics.uci.edu>
20339
20340 * alloc.c (check_sblock, check_string_bytes)
20341 (check_string_free_list): Convert to standard C.
20342
20343 2011-04-25 Teodor Zlatanov <tzz@lifelogs.com>
20344
20345 * w32.c (emacs_gnutls_push): Fix typo.
20346
20347 2011-04-25 Eli Zaretskii <eliz@gnu.org>
20348
20349 * gnutls.c (emacs_gnutls_handshake): Avoid compiler warnings about
20350 "cast to pointer from integer of different size".
20351
20352 Improve doprnt and its use in verror. (Bug#8545)
20353 * doprnt.c (doprnt): Document the set of format control sequences
20354 supported by the function. Use SAFE_ALLOCA instead of always
20355 using `alloca'.
20356
20357 * eval.c (verror): Don't limit the buffer size at size_max-1, that
20358 is one byte too soon. Don't use xrealloc; instead xfree and
20359 xmalloc anew.
20360
20361 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
20362
20363 * gnutls.h: Add GNUTLS_STAGE_CALLBACKS enum to denote we're in the
20364 callbacks stage.
20365
20366 * gnutls.c: Renamed global_initialized to
20367 gnutls_global_initialized. Added internals for the
20368 :verify-hostname-error, :verify-error, and :verify-flags
20369 parameters of `gnutls-boot' and documented those parameters in the
20370 docstring. Start callback support.
20371 (emacs_gnutls_handshake): Add Woe32 support. Retry handshake
20372 unless a fatal error occurred. Call gnutls_alert_send_appropriate
20373 on error. Return error code.
20374 (emacs_gnutls_write): Call emacs_gnutls_handle_error.
20375 (emacs_gnutls_read): Likewise.
20376 (Fgnutls_boot): Return handshake error code.
20377 (emacs_gnutls_handle_error): New function.
20378 (wsaerror_to_errno): Likewise.
20379
20380 * w32.h (emacs_gnutls_pull): Add prototype.
20381 (emacs_gnutls_push): Likewise.
20382
20383 * w32.c (emacs_gnutls_pull): New function for GnuTLS on Woe32.
20384 (emacs_gnutls_push): Likewise.
20385
20386 2011-04-24 Claudio Bley <claudio.bley@gmail.com> (tiny change)
20387
20388 * process.c (wait_reading_process_output): Check if GnuTLS
20389 buffered some data internally if no FDs are set for TLS
20390 connections.
20391
20392 * makefile.w32-in (OBJ2): Add gnutls.$(O).
20393 (LIBS): Link to USER_LIBS.
20394 ($(BLD)/gnutls.$(0)): New target.
20395
20396 2011-04-24 Eli Zaretskii <eliz@gnu.org>
20397
20398 * xdisp.c (handle_single_display_spec): Rename the
20399 display_replaced_before_p argument into display_replaced_p, to
20400 make it consistent with the commentary. Fix typos in the
20401 commentary.
20402
20403 * textprop.c (syms_of_textprop): Remove dead code.
20404 (copy_text_properties): Delete obsolete commentary about an
20405 interface that was deleted long ago. Fix typos in the description
20406 of arguments.
20407
20408 * msdos.c (XMenuActivate, XMenuAddSelection): Adjust argument list
20409 to changes in oldXMenu/XMenu.h from 2011-04-16.
20410 <menu_help_message, prev_menu_help_message>: Constify.
20411 (IT_menu_make_room): menu->help_text is now `const char **';
20412 adjust.
20413
20414 * msdos.h (XMenuActivate, XMenuAddSelection): Adjust prototypes
20415 to changes in oldXMenu/XMenu.h from 2011-04-16.
20416 (struct XMenu): Declare `help_text' `const char **'.
20417
20418 * xfaces.c <Qunspecified>: Make extern again.
20419
20420 * syntax.c: Include sys/types.h before including regex.h, as
20421 required by POSIX.
20422
20423 * doc.c (get_doc_string): Improve the format passed to `error'.
20424
20425 * doprnt.c (doprnt): Improve commentary.
20426
20427 * term.c (init_tty) [MSDOS]: Fix 1st argument to maybe_fatal.
20428
20429 * Makefile.in (TAGS): Depend on $(M_FILE) and $(S_FILE), and scan
20430 them with etags.
20431
20432 * makefile.w32-in (globals.h): Add a dummy recipe, to make any
20433 changes in globals.h immediately force recompilation.
20434 (TAGS): Depend on $(CURDIR)/m/intel386.h and
20435 $(CURDIR)/s/ms-w32.h.
20436 (TAGS-gmake): Scan $(CURDIR)/m/intel386.h and $(CURDIR)/s/ms-w32.h.
20437
20438 * character.c (Fchar_direction): Function deleted.
20439 (syms_of_character): Don't defsubr it.
20440 <char-direction-table>: Deleted.
20441
20442 2011-04-23 Eli Zaretskii <eliz@gnu.org>
20443
20444 Fix doprnt so it could be used again safely in `verror'. (Bug#8435)
20445 * doprnt.c: Include limits.h.
20446 (SIZE_MAX): New macro.
20447 (doprnt): Return a size_t value. 2nd arg is now size_t.
20448 Many local variables are now size_t instead of int or unsigned.
20449 Improve overflow protection. Support `l' modifier for integer
20450 conversions. Support %l conversion. Don't assume an EMACS_INT
20451 argument for integer conversions and for %c.
20452
20453 * lisp.h (doprnt): Restore prototype.
20454
20455 * makefile.w32-in ($(BLD)/callint.$(O)): Depend on
20456 $(SRC)/character.h.
20457
20458 * Makefile.in (base_obj): Add back doprnt.o.
20459
20460 * deps.mk (doprnt.o): Add back prerequisites.
20461 (callint.o): Depend on character.h.
20462
20463 * eval.c (internal_lisp_condition_case): Include the handler
20464 representation in the error message.
20465 (verror): Call doprnt instead of vsnprintf. Fix an off-by-one bug
20466 when breaking from the loop.
20467
20468 * xdisp.c (vmessage): Call doprnt instead of vsnprintf.
20469
20470 * callint.c (Fcall_interactively): When displaying error message
20471 about invalid control letter, pass the character's codepoint, not
20472 a pointer to its multibyte form. Improve display of the character
20473 in octal and display also its hex code.
20474
20475 * character.c (char_string): Use %x to display the (unsigned)
20476 codepoint of an invalid character, to avoid displaying a bogus
20477 negative value.
20478
20479 * font.c (check_otf_features): Pass SDATA of SYMBOL_NAME to
20480 `error', not SYMBOL_NAME itself.
20481
20482 * coding.c (Fencode_sjis_char, Fencode_big5_char): Use %c for
20483 character arguments to `error'.
20484
20485 * charset.c (check_iso_charset_parameter): Fix incorrect argument
20486 to `error' in error message about FINAL_CHAR argument. Make sure
20487 FINAL_CHAR is a character, and use %c when it is passed as
20488 argument to `error'.
20489
20490 2011-04-23 Eli Zaretskii <eliz@gnu.org>
20491
20492 * s/ms-w32.h (localtime): Redirect to sys_localtime.
20493
20494 * w32.c: Include <time.h>.
20495 (sys_localtime): New function.
20496
20497 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
20498
20499 * xdisp.c (init_xdisp): Initialize echo_area_window (Bug#6451).
20500
20501 * buffer.c (syms_of_buffer): Doc fix (Bug#6902).
20502
20503 2011-04-23 Samuel Thibault <sthibault@debian.org> (tiny change)
20504
20505 * sysdep.c (wait_for_termination): On GNU Hurd, kill returns -1 on
20506 zombies (Bug#8467).
20507
20508 2011-04-19 Eli Zaretskii <eliz@gnu.org>
20509
20510 * syntax.h (SETUP_SYNTAX_TABLE_FOR_OBJECT): Fix setting of
20511 gl_state.e_property when gl_state.object is Qt.
20512
20513 * insdel.c (make_gap_larger): Remove limitation of buffer size
20514 to <= INT_MAX.
20515
20516 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
20517
20518 * xdisp.c (lookup_glyphless_char_display)
20519 (produce_glyphless_glyph): Handle cons cell entry in
20520 glyphless-char-display.
20521 (Vglyphless_char_display): Document it.
20522
20523 * term.c (produce_glyphless_glyph): Handle cons cell entry in
20524 glyphless-char-display.
20525
20526 2011-04-17 Chong Yidong <cyd@stupidchicken.com>
20527
20528 * xdisp.c (get_next_display_element): Remove unnecessary ifdefs.
20529
20530 * termhooks.h (FRAME_WINDOW_P): Remove duplicated definitions.
20531
20532 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): Add missing
20533 definition for no-X builds.
20534
20535 2011-04-16 Paul Eggert <eggert@cs.ucla.edu>
20536
20537 Static checks with GCC 4.6.0 and non-default toolkits.
20538
20539 * s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF): Protoize decl.
20540
20541 * process.c (keyboard_bit_set): Define only if SIGIO.
20542 (send_process_trap): Mark it with NO_RETURN if it doesn't return.
20543 (send_process): Repair possible setjmp clobbering.
20544
20545 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Don't pass extra arg to 'fatal'.
20546
20547 * eval.c: Include <stdio.h>, for vsnprintf on non-GNU/Linux hosts.
20548
20549 * data.c (arith_error): Mark with NO_RETURN if it doesn't return.
20550
20551 * alloc.c (bytes_used_when_full, SPARE_MEMORY, BYTES_USED):
20552 Define only if needed.
20553
20554 * sysdep.c (_FILE_OFFSET_BITS): Make this hack even uglier
20555 by pacifying GCC about it. Maybe it's time to retire it?
20556 * xfaces.c (USG, __TIMEVAL__): Likewise.
20557
20558 * dispextern.h (struct redisplay_interface): Rename param
20559 to avoid shadowing.
20560 * termhooks.h (struct terminal): Likewise.
20561 * xterm.c (xembed_send_message): Likewise.
20562
20563 * insdel.c (make_gap_smaller): Define only if
20564 USE_MMAP_FOR_BUFFERS || REL_ALLOC || DOUG_LEA_MALLOC.
20565
20566 * keyboard.c (read_char): Make a var volatile so longjmp won't clobber
20567 it.
20568
20569 * emacs.c (MAX_HEAP_BSS_DIFF, my_edata): Move to where they're used,
20570 so that we aren't warned about unused symbols.
20571
20572 * xfns.c (Fx_file_dialog): Rename local to avoid shadowing.
20573
20574 * xdisp.c (x_produce_glyphs): Mark var as initialized (Bug#8512).
20575
20576 * xfns.c (x_real_positions): Mark locals as initialized.
20577
20578 * xmenu.c (xmenu_show): Don't use uninitialized vars.
20579
20580 * xterm.c: Fix problems found by static analysis with other toolkits.
20581 (toolkit_scroll_bar_interaction): Define and use only if USE_X_TOOLKIT.
20582 (x_dispatch_event): Declare static if USE_GTK, and
20583 define if USE_GTK || USE_X_TOOLKIT.
20584 (SET_SAVED_BUTTON_EVENT): Define only if USE_X_TOOLKIT || USE_GTK.
20585 * xterm.h (x_dispatch_event): Extern only if USE_X_TOOLKIT.
20586 * xterm.c, xterm.h (x_mouse_leave): Bring this function back, but only
20587 if defined HAVE_MENUS && !defined USE_X_TOOLKIT && !defined USE_GTK.
20588
20589 * xmenu.c (menu_help_callback): Pointer type fixes.
20590 Use const pointers when pointing at readonly data. Avoid pointer
20591 signedness clashes.
20592 (FALSE): Remove unused macro.
20593 (update_frame_menubar): Remove unused decl.
20594
20595 * xfns.c (Fx_hide_tip): Move locals to avoid shadowing.
20596
20597 * menu.c (push_submenu_start, push_submenu_end): Do not define unless
20598 USE_X_TOOLKIT || USE_GTK || HAVE_NS || defined HAVE_NTGUI.
20599 (single_menu_item): Rename local to avoid shadowing.
20600
20601 * keyboard.c (make_lispy_event): Remove unused local var.
20602
20603 * frame.c, frame.h (x_get_resource_string): Bring this back, but
20604 only if HAVE_X_WINDOWS && !USE_X_TOOLKIT.
20605
20606 * bitmaps: Change bitmaps from unsigned char back to the X11
20607 compatible char. Avoid the old compiler warnings about
20608 out-of-range initializers by using, for example, '\xab' rather
20609 than 0xab.
20610
20611 * xgselect.c (xgselect_initialize): Check vs interface
20612 even if ! (defined (USE_GTK) || defined (HAVE_GCONF)).
20613
20614 * xmenu.c (xmenu_show): Rename parm to avoid shadowing.
20615
20616 * xterm.c (x_create_toolkit_scroll_bar): Use const * for pointers
20617 to read-only memory.
20618
20619 * fns.c (vector): Remove; this old hack is no longer needed.
20620
20621 * xsmfns.c (create_client_leader_window): Rename shadowing arg.
20622 Remove unused var.
20623 (gdk_x11_set_sm_client_id) [!USE_GTK]: Don't define.
20624
20625 * xrdb.c (x_load_resources): Omit unused local.
20626
20627 * xfns.c (free_frame_menubar, atof): Remove duplicate decls.
20628 (x_window): Rename locals to avoid shadowing.
20629 (USG): Use the kludged USG macro, to pacify gcc.
20630
20631 * xterm.c (x_alloc_nearest_color_for_widget): Remove; unused.
20632 (x_term_init): Remove local to avoid shadowing.
20633
20634 * xfns.c, xterm.c (_XEditResCheckMessages): Protoize decl.
20635
20636 * xdisp.c, dispextern.h (set_vertical_scroll_bar): Now extern if
20637 USE_TOOLKIT_SCROLL_BARS && !USE_GTK, as xterm.c needs it then.
20638
20639 2011-04-16 Eli Zaretskii <eliz@gnu.org>
20640
20641 * gnutls.c (Fgnutls_boot): Don't pass Lisp_Object to `error'.
20642
20643 Fix regex.c, syntax.c and friends for buffers > 2GB.
20644 * syntax.h (struct gl_state_s): Declare character position members
20645 EMACS_INT.
20646
20647 * syntax.c (update_syntax_table): Declare 2nd argument EMACS_INT.
20648
20649 * textprop.c (verify_interval_modification, interval_of):
20650 Declare arguments EMACS_INT.
20651
20652 * intervals.c (adjust_intervals_for_insertion): Declare arguments
20653 EMACS_INT.
20654
20655 * intervals.h (CHECK_TOTAL_LENGTH): Cast to EMACS_INT, not `int'.
20656
20657 * indent.c (Fvertical_motion): Local variable it_start is now
20658 EMACS_INT.
20659
20660 * regex.c (re_match, re_match_2, re_match_2_internal)
20661 (bcmp_translate, regcomp, regexec, print_double_string)
20662 (group_in_compile_stack, re_search, re_search_2, regex_compile)
20663 (re_compile_pattern, re_exec): Declare arguments and local
20664 variables `size_t' and `ssize_t' and return values `regoff_t', as
20665 appropriate.
20666 (POP_FAILURE_REG_OR_COUNT) <pfreg>: Declare `long'.
20667 (CHECK_INFINITE_LOOP) <failure>: Declare `ssize_t'.
20668 <compile_stack_type>: `size' and `avail' are now `size_t'.
20669
20670 * regex.h <regoff_t>: Use ssize_t, not int.
20671 (re_search, re_search_2, re_match, re_match_2): Arguments that
20672 specify buffer/string position and length are now ssize_t and
20673 size_t. Return type is regoff_t.
20674
20675 2011-04-16 Ben Key <bkey76@gmail.com>
20676
20677 * nsfont.m: Fixed bugs in ns_get_family and
20678 ns_descriptor_to_entity that were caused by using free to
20679 deallocate memory blocks that were allocated by xmalloc (via
20680 xstrdup). This caused Emacs to crash when compiled with
20681 XMALLOC_OVERRUN_CHECK defined (when Emacs was configured with
20682 --enable-checking=xmallocoverrun). xfree is now used to
20683 deallocate these memory blocks.
20684
20685 2011-04-15 Paul Eggert <eggert@cs.ucla.edu>
20686
20687 * sysdep.c (emacs_read): Remove unnecessary check vs MAX_RW_COUNT.
20688
20689 emacs_write: Accept and return EMACS_INT for sizes.
20690 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html
20691 et seq.
20692 * gnutls.c, gnutls.h (emacs_gnutls_read, emacs_gnutls_write):
20693 Accept and return EMACS_INT.
20694 (emacs_gnutls_write): Return the number of bytes written on
20695 partial writes.
20696 * sysdep.c, lisp.h (emacs_read, emacs_write): Likewise.
20697 (emacs_read, emacs_write): Remove check for negative size, as the
20698 Emacs source code has been audited now.
20699 * sysdep.c (MAX_RW_COUNT): New macro, to work around kernel bugs.
20700 (emacs_read, emacs_write): Use it.
20701 * process.c (send_process): Adjust to the new signatures of
20702 emacs_write and emacs_gnutls_write. Do not attempt to store
20703 a byte offset into an 'int'; it might overflow.
20704 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00483.html
20705
20706 * sound.c: Don't assume sizes fit in 'int'.
20707 (struct sound_device.period_size, alsa_period_size):
20708 Return EMACS_INT, not int.
20709 (struct sound_device.write, vox_write, alsa_write):
20710 Accept EMACS_INT, not int.
20711 (wav_play, au_play): Use EMACS_INT to store sizes and to
20712 record read return values.
20713
20714 2011-04-15 Ben Key <bkey76@gmail.com>
20715
20716 * keyboard.c (Qundefined): Don't declare static since it is used
20717 in nsfns.m.
20718 * xfaces.c (Qbold, Qexpanded, Qitalic, Qcondensed): Don't declare
20719 static since they are used in nsfont.m.
20720
20721 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
20722
20723 * process.c (Qprocessp): Don't declare static.
20724 * lisp.h (Qprocessp): Declare again.
20725
20726 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
20727
20728 * font.c (Qopentype): Don't make static (used from w32uniscribe.c).
20729
20730 2011-04-14 Paul Eggert <eggert@cs.ucla.edu>
20731
20732 Improve C-level modularity by making more things 'static'.
20733
20734 Don't publish debugger-only interfaces to other modules.
20735 * lisp.h (safe_debug_print, debug_output_compilation_hack):
20736 (verify_bytepos, count_markers): Move decls to the only modules
20737 that need them.
20738 * region-cache.h (pp_cache): Likewise.
20739 * window.h (check_all_windows): Likewise.
20740 * marker.c, print.c, region-cache.c, window.c: Decls moved here.
20741
20742 * sysdep.c (croak): Now static, if
20743 defined TIOCNOTTY || defined USG5 || defined CYGWIN.
20744 * syssignal.h (croak): Declare only if not static.
20745
20746 * alloc.c (refill_memory_reserve): Now static if
20747 !defined REL_ALLOC || defined SYSTEM_MALLOC.
20748 * lisp.h (refill_memory_reserve): Declare only if not static.
20749
20750 * xsettings.c, xsettings.h (xsettings_get_system_normal_font):
20751 Define only if USE_LUCID.
20752
20753 * xrdb.c (x_customization_string, x_rm_string): Now static.
20754
20755 * xmenu.c (x_menu_wait_for_event): Export only if USE_MOTIF.
20756 * xterm.h (x_menu_wait_for_event): Declare only if USE_MOTIF.
20757
20758 * xdisp.c (draw_row_with_mouse_face): Now static.
20759 * dispextern.h (draw_row_with_mouse_fave): Remove decl.
20760
20761 * window.h (check_all_windows): Mark externally visible.
20762
20763 * window.c (window_deletion_count): Now static.
20764
20765 * undo.c: Make symbols static if they're not exported.
20766 (last_undo_buffer, last_boundary_position, pending_boundary):
20767 Now static.
20768
20769 * textprop.c (interval_insert_behind_hooks): Now static.
20770 (interval_insert_in_front_hooks): Likewise.
20771
20772 * term.c: Make symbols static if they're not exported.
20773 (tty_turn_off_highlight, get_tty_terminal, max_frame_cols):
20774 (max_frame_lines, tty_set_terminal_modes):
20775 (tty_reset_terminal_modes, tty_turn_off_highlight):
20776 (get_tty_terminal): Now static.
20777 (term_mouse_moveto): Do not define if HAVE_WINDOW_SYSTEM.
20778 * termhooks.h (term_mouse_moveto): Do not declare if
20779 HAVE_WINDOW_SYSTEM.
20780 * dispextern.h (tty_set_terminal_modes, tty_reset_terminal_modes):
20781 (tty_turn_off_highlight, get_tty_terminal): Remove decls.
20782
20783 * sysdep.c: Make symbols static if they're not exported.
20784 (emacs_get_tty, emacs_set_tty, old_fcntl_flags, old_fcntl_owner):
20785 Now static.
20786 (sigprocmask_set, full_mask): Remove; unused.
20787 (wait_debugging): Mark as visible.
20788 * syssignal.h (SIGFULLMASK, full_mask): Remove decls.
20789 * systty.h (emacs_get_tty, emacs_set_tty): Remove decls.
20790
20791 * syntax.c (syntax_temp): Define only if !__GNUC__.
20792
20793 * sound.c (current_sound_device, current_sound): Now static.
20794
20795 * search.c (searchbufs, searchbuf_head): Now static.
20796
20797 * scroll.c (scroll_cost): Remove; unused.
20798 * dispextern.h (scroll_cost): Remove decl.
20799
20800 * region-cache.h (pp_cache): Mark as externally visible.
20801
20802 * process.c: Make symbols static if they're not exported.
20803 (process_tick, update_tick, create_process, chan_process):
20804 (Vprocess_alist, proc_buffered_char, datagram_access):
20805 (fd_callback_data, send_process_frame, process_sent_to): Now static.
20806 (deactivate_process): Mark defn as static, as well as decl.
20807 * lisp.h (create_process): Remove decl.
20808 * process.h (chan_process, Vprocess_alist): Remove decls.
20809
20810 * print.c: Make symbols static if they're not exported.
20811 (print_depth, new_backquote_output, being_printed, print_buffer):
20812 (print_buffer_size, print_buffer_pos, print_buffer_pos_byte):
20813 (print_interval, print_number_index, initial_stderr_stream):
20814 Now static.
20815 * lisp.h (Fprinc): Remove decl.
20816 (debug_output_compilation_hack): Mark as externally visible.
20817
20818 * sysdep.c (croak): Move decl from here to syssignal.h.
20819 * syssignal.h (croak): Put it here, so the API can be checked when
20820 'croak' is called from dissociate_if_controlling_tty.
20821
20822 * minibuf.c: Make symbols static if they're not exported.
20823 (minibuf_save_list, choose_minibuf_frame): Now static.
20824 * lisp.h (choose_minibuf_frame): Remove decl.
20825
20826 * lisp.h (verify_bytepos, count_markers): Mark as externally visible.
20827
20828 * lread.c: Make symbols static if they're not exported.
20829 (read_objects, initial_obarray, oblookup_last_bucket_number):
20830 Now static.
20831 (make_symbol): Remove; unused.
20832 * lisp.h (initial_obarray, make_symbol): Remove decls.
20833
20834 * keyboard.c: Make symbols static if they're not exported.
20835 (single_kboard, recent_keys_index, total_keys, recent_keys):
20836 (this_command_key_count_reset, raw_keybuf, raw_keybuf_count):
20837 (this_single_command_key_start, echoing, last_auto_save):
20838 (read_key_sequence_cmd, dribble, recursive_edit_unwind):
20839 (command_loop, echo_now, keyboard_init_hook, help_char_p):
20840 (quit_throw_to_read_char, command_loop_2, top_level_1, poll_timer):
20841 (Vlispy_mouse_stem, double_click_count):
20842 Now static.
20843 (force_auto_save_soon): Define only if SIGDANGER.
20844 (ignore_mouse_drag_p): Now static if
20845 !defined HAVE_WINDOW_SYSTEM || defined USE_GTK || defined HAVE_NS.
20846 (print_help): Remove; unused.
20847 (stop_character, last_timer_event): Mark as externally visible.
20848 * keyboard.h (ignore_mouse_drag_p): Declare only if
20849 defined HAVE_WINDOW_SYSTEM && !defined USE_GTK && !defined HAVE_NS.
20850 (echo_now, help_char_p, quit_throw_to_read_char): Remove decls.
20851 * lisp.h (echoing): Remove decl.
20852 (force_auto_save_soon): Declare only if SIGDANGER.
20853 * xdisp.c (redisplay_window): Simplify code, to make it more
20854 obvious that ignore_mouse_drag_p is not accessed if !defined
20855 USE_GTK && !defined HAVE_NS.
20856
20857 * intervals.c: Make symbols static if they're not exported.
20858 (merge_properties_sticky, merge_interval_right, delete_interval):
20859 Now static.
20860 * intervals.h (merge_interval_right, delete_interval): Remove decls.
20861
20862 * insdel.c: Make symbols static if they're not exported.
20863 However, leave prepare_to_modify_buffer alone. It's never
20864 called from outside this function, but that appears to be a bug.
20865 (combine_after_change_list, combine_after_change_buffer):
20866 (adjust_after_replace, signal_before_change): Now static.
20867 (adjust_after_replace_noundo): Remove; unused.
20868 * lisp.h (adjust_after_replace, adjust_after_replace_noundo):
20869 (signal_before_change): Remove decls.
20870
20871 * indent.c (val_compute_motion, val_vmotion): Now static.
20872
20873 * image.c: Make symbols static if they're not exported.
20874 * dispextern.h (x_create_bitmap_from_xpm_data): Do not declare
20875 if USE_GTK.
20876 * image.c (x_create_bitmap_from_xpm_data): Do not define if USE_GTK.
20877 (xpm_color_cache, ct_table, ct_colors_allocated): Now static.
20878
20879 * fringe.c (standard_bitmaps): Now static.
20880 (max_used_fringe_bitmap): Now static, unless HAVE_NS.
20881
20882 * frame.c: Make symbols static if they're not exported.
20883 (x_report_frame_params, make_terminal_frame): Now static.
20884 (get_frame_param): Now static, unless HAVE_NS.
20885 (x_fullscreen_adjust): Define if WINDOWSNT, not if HAVE_WINDOW_SYSTEM.
20886 (x_get_resource_string): Remove; not used.
20887 * frame.h (make_terminal_frame, x_report_frame_params):
20888 (x_get_resource_string); Remove decls.
20889 (x_fullscreen_adjust): Declare only if WINDOWSNT.
20890 * lisp.h (get_frame_param): Declare only if HAVE_NS.
20891
20892 * font.c, fontset.c: Make symbols static if they're not exported.
20893 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): New macro.
20894 (FACE_SUITABLE_FOR_CHAR_P): Use it.
20895 * font.c (font_close_object): Now static.
20896 * font.h (font_close_object): Remove.
20897 * fontset.c (FONTSET_OBJLIST): Remove.
20898 (free_realized_fontset) #if-0 the body, which does nothing.
20899 (face_suitable_for_char_p): #if-0, as it's never called.
20900 * fontset.h (face_suitable_for_char_p): Remove decl.
20901 * xfaces.c (face_at_string_position):
20902 Use FACE_SUITABLE_FOR_ASCII_CHAR_P, not FACE_SUITABLE_FOR_CHAR_P,
20903 since 0 is always ASCII.
20904
20905 * fns.c (weak_hash_tables): Now static.
20906
20907 * fileio.c: Make symbols static if they're not exported.
20908 (auto_saving, auto_save_mode_bits, auto_save_error_occurred):
20909 (Vwrite_region_annotation_buffers): Now static.
20910
20911 * eval.c: Make symbols static if they're not exported.
20912 (backtrace_list, lisp_eval_depth, when_entered_debugger): Now static.
20913 * lisp.h (backtrace_list): Remove decl.
20914
20915 * emacs.c: Make symbols static if they're not exported.
20916 (malloc_state_ptr, malloc_using_checking, syms_of_emacs):
20917 (fatal_error_code, fatal_error_signal_hook, standard_args):
20918 Now static.
20919 (fatal_error_signal): Now static, unless FLOAT_CATCH_SIGKILL.
20920 (DEFINE_DUMMY_FUNCTION): Mark function as externally visible.
20921 (__CTOR_LIST__, __DTOR_LIST__): Now externally visible.
20922 * lisp.h (fatal_error_signal_hook): Remove decl.
20923 (fatal_error_signal): Declare only if FLOAT_CATCH_SIGKILL.
20924
20925 * editfns.c: Move a (normally-unused) function to its only use.
20926 * editfns.c, lisp.h (get_operating_system_release): Remove.
20927 * process.c (init_process) [DARWIN_OS]: Do it inline, as it is not
20928 worth the hassle of breaking this out.
20929
20930 * xterm.c: Make symbols static if they're not exported.
20931 (x_raise_frame, x_lower_frame, x_wm_set_window_state):
20932 (x_wm_set_icon_pixmap, x_initialize, XTread_socket_fake_io_error):
20933 (x_destroy_window, x_delete_display):
20934 Now static.
20935 (x_dispatch_event): Now static if ! (USE_MOTIF || USE_X_TOOLKIT).
20936 (x_mouse_leave): Remove; unused.
20937 * xterm.h (x_display_info_for_name, x_raise_frame, x_lower_frame):
20938 (x_destroy_window, x_wm_set_window_state, x_wm_set_icon_pixmap):
20939 (x_delete_display, x_initialize, x_set_border_pixel, x_screen_planes):
20940 Remove decls.
20941 (x_mouse_leave): Declare only if WINDOWSNT.
20942 (x_dispatch_event): Declare only if USE_MOTIF or USE_X_TOOLKIT.
20943 (xic_create_fontsetname): Declare only if HAVE_X_WINDOWS &&
20944 USE_X_TOOLKIT.
20945
20946 * ftxfont.c: Make symbols static if they're not exported.
20947 (ftxfont_driver): Export only if !defined HAVE_XFT && def8ined
20948 HAVE_FREETYPE.
20949 * font.h (ftxfont_driver): Likewise.
20950
20951 * xfns.c: Make symbols static if they're not exported.
20952 (x_last_font_name, x_display_info_for_name):
20953 (x_set_foreground_color, x_set_background_color, x_set_mouse_color):
20954 (x_set_cursor_color, x_set_border_pixel, x_set_border_color):
20955 (x_set_cursor_type, x_set_icon_type, x_set_icon_name):
20956 (x_set_scroll_bar_foreground, x_set_scroll_bar_background):
20957 (x_explicitly_set_name, x_set_title, xic_defaut_fontset, tip_timer):
20958 (last_show_tip_args): Now static.
20959 (xic_defaut_fontset, xic_create_fontsetname): Define only if
20960 defined HAVE_X_WINDOWS && defined USE_X_TOOLKIT
20961 (x_screen_planes): Remove; unused.
20962 * dispextern.h (x_screen_planes): Remove decl.
20963
20964 * dispnew.c: Make symbols static if they're not exported.
20965 * dispextern.h (redraw_garbaged_frames, scrolling):
20966 (increment_row_positions): Remove.
20967 * dispnew.c (new_glyph_matrix, increment_row_positions, scrolling):
20968 (delayed_size_change, glyph_matrix_count, glyph_pool_count):
20969 Now static.
20970 (redraw_garbaged_frames): Remove; unused.
20971
20972 * xfaces.c: Make symbols static if they're not exported.
20973 * dispextern.h (ascii_face_of_lisp_face, free_realized_face):
20974 Remove decls.
20975 * xterm.h (defined_color): Remove decls.
20976 (x_free_dpy_colors): Declare only if USE_X_TOOLKIT.
20977 * xfaces.c (tty_suppress_bold_inverse_default_colors_p):
20978 (menu_face_changed_default, defined_color, free_realized_face):
20979 (x_free_dpy_colors): Define only if USE_X_TOOLKIT.
20980 (ascii_face_of_lisp_face): Remove; unused.
20981
20982 * xdisp.c: Make symbols static if they're not exported.
20983 * dispextern.h (scratch_glyph_row, window_box_edges):
20984 (glyph_to_pixel_coords, set_cursor_from_row):
20985 (get_next_display_element, set_iterator_to_next):
20986 (highlight_trailing_whitespace, frame_to_window_pixel_xy):
20987 (show_mouse_face): Remove decls
20988 * frame.h (message_buf_print): Likewise.
20989 * lisp.h (pop_message, set_message, check_point_in_composition):
20990 Likewise.
20991 * xterm.h (set_vertical_scroll_bar): Likewise.
20992 * xdisp.c (list_of_error, Vmessage_stack, line_number_displayed):
20993 (message_buf_print, scratch_glyph_row, displayed_buffer):
20994 (set_iterator_to_next, pop_message, set_message, set_cursor_from_row):
20995 (get_next_display_element, show_mouse_face, window_box_edges):
20996 (frame_to_window_pixel_xy, check_point_in_composition):
20997 (set_vertical_scroll_bar, highlight_trailing_whitespace): Now static.
20998 (glyph_to_pixel_coords): Remove; unused.
20999
21000 * dired.c (file_name_completion): Now static.
21001
21002 * dbusbind.c (xd_in_read_queued_messages): Now static.
21003
21004 * lisp.h (circular_list_error, FOREACH): Remove; unused.
21005 * data.c (circular_list_error): Remove.
21006
21007 * commands.h (last_point_position, last_point_position_buffer):
21008 (last_point_position_window): Remove decls.
21009 * keyboard.c: Make these variables static.
21010
21011 * coding.h (coding, code_convert_region, encode_coding_gap):
21012 Remove decls.
21013 * coding.c (Vsjis_coding_system, Vbig5_coding_system):
21014 (iso_code_class, detect_coding, code_convert_region): Now static.
21015 (encode_coding_gap): Remove; unused.
21016
21017 * chartab.c (chartab_chars, chartab_bits): Now static.
21018
21019 * charset.h (charset_iso_8859_1): Remove decl.
21020 * charset.c (charset_iso_8859_1, charset_emacs, map_charset_for_dump):
21021 Now static.
21022
21023 * ccl.h (check_ccl_update, Vccl_program_table): Remove decls.
21024 * ccl.c (Vccl_program_table): Now static.
21025 (check_ccl_update): Remove; unused.
21026
21027 * category.c (SET_CATEGORY_SET, set_category_set): Move here.
21028 * category.h: ... from here.
21029 * category.c (check_category_table, set_category_set): Now static.
21030
21031 * casetab.c (Vascii_upcase_table, Vascii_eqv_table): Now static.
21032 * lisp.h: Remove these decls.
21033
21034 * buffer.c (buffer_count): Remove unused var.
21035
21036 * bidi.c (bidi_dump_cached_states): Mark as externally visible,
21037 so that it's not optimized away.
21038 (bidi_ignore_explicit_marks_for_paragraph_level): Likewise.
21039 * dispextern.h (bidi_dump_cached_states): Remove, since it's
21040 exported only to the debugger.
21041
21042 * atimer.c (alarm_signal_handler, run_all_atimers): Now static.
21043 * atimer.h (run_all_atimers): Remove; not exported.
21044
21045 font.c: Make copy_font_spec and merge_font_spec ordinary C functions.
21046 * font.c (copy_font_spec): Rename from Fcopy_font_spec, since it
21047 was inaccessible from Lisp.
21048 (merge_font_spec): Likewise, renaming from Fmerge_font_spec.
21049 * font.c, font.h, fontset.c, xfaces.c, xfont.c: Change all uses.
21050
21051 alloc.c: Import and export fewer symbols, and remove unused items.
21052 * lisp.h (suppress_checking, die): Declare only if ENABLE_CHECKING
21053 is defined.
21054 (suppress_checking): Add EXTERNALLY_VISIBLE attribute, so that
21055 it's not optimized away by whole-program optimization.
21056 (message_enable_multibyte, free_misc): Remove.
21057 (catchlist, handlerlist, mark_backtrace):
21058 Declare only if BYTE_MARK_STACK.
21059 (mark_byte_stack): Likewise, fixing a ifdef-vs-if typo.
21060 * alloc.c (pure): Export only if VIRT_ADDR_VARIES is defined.
21061 (message_enable_multibyte): Remove decl.
21062 (free_misc, interval_free_list, float_block, float_block_index):
21063 (n_float_blocks, float_free_list, cons_block, cons_block_index):
21064 (cons_free_list, last_marked_index):
21065 Now static.
21066 (suppress_checking, die): Define only if ENABLE_CHECKING is defined.
21067 * eval.c (catchlist, handlerlist): Export only if BYTE_MARK_STACK.
21068 (mark_backtrace): Define only if BYTE_MARK_STACK.
21069 * xdisp.c (message_enable_multibyte): Now static.
21070
21071 Declare Lisp_Object Q* variables to be 'static' if not exported.
21072 This makes it easier for human readers (and static analyzers)
21073 to see whether these variables are used from other modules.
21074 * alloc.c, buffer.c, bytecode.c, callint.c, casetab.c, category.c:
21075 * ccl.c, character.c, charset.c, cmds.c, coding.c, composite.c:
21076 * data.c, dbusbind.c, dired.c, editfns.c, eval.c, fileio.c, fns.c:
21077 * font.c, frame.c, fringe.c, ftfont.c, image.c, keyboard.c, keymap.c:
21078 * lread.c, macros.c, minibuf.c, print.c, process.c, search.c:
21079 * sound.c, syntax.c, textprop.c, window.c, xdisp.c, xfaces.c, xfns.c:
21080 * xmenu.c, xselect.c:
21081 Declare Q* vars static if they are not used in other modules.
21082 * ccl.h, character.h, charset.h, coding.h, composite.h, font.h:
21083 * frame.h, intervals.h, keyboard.h, lisp.h, process.h, syntax.h:
21084 Remove decls of unexported vars.
21085 * keyboard.h (EVENT_HEAD_UNMODIFIED): Remove now-unused macro.
21086
21087 * lisp.h (DEFINE_FUNC): Make sname 'static'.
21088
21089 Make Emacs functions such as Fatom 'static' by default.
21090 This makes it easier for human readers (and static analyzers)
21091 to see whether these functions can be called from other modules.
21092 DEFUN now defines a static function. To make the function external
21093 so that it can be used in other C modules, use the new macro DEFUE.
21094 * lisp.h (Funibyte_char_to_multibyte, Fsyntax_table_p):
21095 (Finit_image_library):
21096 (Feval_region, Fbacktrace, Ffetch_bytecode, Fswitch_to_buffer):
21097 (Ffile_executable_p, Fmake_symbolic_link, Fcommand_execute):
21098 (Fget_process, Fdocumentation_property, Fbyte_code, Ffile_attributes):
21099 Remove decls, since these functions are now static.
21100 (Funintern, Fget_internal_run_time): New decls, since these functions
21101 were already external.
21102
21103 * alloc.c, buffer.c, callint.c, callproc.c, casefiddle.c, casetab.c:
21104 * ccl.c, character.c, chartab.c, cmds.c, coding.c, data.c, dispnew.c:
21105 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, floatfns.c:
21106 * fns.c, font.c, fontset.c, frame.c, image.c, indent.c:
21107 * keyboard.c, keymap.c, lread.c:
21108 * macros.c, marker.c, menu.c, minibuf.c, print.c, process.c, search.c:
21109 * syntax.c, term.c, terminal.c, textprop.c, undo.c:
21110 * window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xsettings.c:
21111 Mark functions with DEFUE instead of DEFUN,
21112 if they are used in other modules.
21113 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): New forward
21114 decls for now-static functions.
21115 * buffer.h (Fdelete_overlay): Remove decl.
21116 * callproc.c (Fgetenv_internal): Mark as internal.
21117 * composite.c (Fremove_list_of_text_properties): Remove decl.
21118 (Fcomposition_get_gstring): New forward static decl.
21119 * composite.h (Fcomposite_get_gstring): Remove decl.
21120 * dired.c (Ffile_attributes): New forward static decl.
21121 * doc.c (Fdocumntation_property): New forward static decl.
21122 * eval.c (Ffetch_bytecode): New forward static decl.
21123 (Funintern): Remove extern decl; now in .h file where it belongs.
21124 * fileio.c (Fmake_symbolic_link): New forward static decl.
21125 * image.c (Finit_image_library): New forward static decl.
21126 * insdel.c (Fcombine_after_change_execute): Make forward decl static.
21127 * intervals.h (Fprevious_property_change):
21128 (Fremove_list_of_text_properties): Remove decls.
21129 * keyboard.c (Fthis_command_keys): Remove decl.
21130 (Fcommand_execute): New forward static decl.
21131 * keymap.c (Flookup_key): New forward static decl.
21132 (Fcopy_keymap): Now static.
21133 * keymap.h (Flookup_key): Remove decl.
21134 * process.c (Fget_process): New forward static decl.
21135 (Fprocess_datagram_address): Mark as internal.
21136 * syntax.c (Fsyntax_table_p): New forward static decl.
21137 (skip_chars): Remove duplicate decl.
21138 * textprop.c (Fprevious_property_change): New forward static decl.
21139 * window.c (Fset_window_fringes, Fset_window_scroll_bars):
21140 Now internal.
21141 (Fset_window_margins, Fset_window_vscroll): New forward static decls.
21142 * window.h (Fset_window_vscroll, Fset_window_margins): Remove decls.
21143
21144 * editfns.c (Fformat): Remove unreachable code.
21145
21146 2011-04-14 Andreas Schwab <schwab@linux-m68k.org>
21147
21148 * fileio.c (Finsert_file_contents): Fix typo in 2005-05-13
21149 change. (Bug#8496)
21150
21151 2011-04-13 Eli Zaretskii <eliz@gnu.org>
21152
21153 * xdisp.c (handle_invisible_prop): Don't call bidi_paragraph_init
21154 when at ZV. (Bug#8487)
21155
21156 2011-04-12 Andreas Schwab <schwab@linux-m68k.org>
21157
21158 * charset.c (Fclear_charset_maps): Use xfree instead of free.
21159 (Bug#8437)
21160 * keyboard.c (parse_tool_bar_item): Likewise.
21161 * sound.c (sound_cleanup, alsa_close): Likewise.
21162 * termcap.c (tgetent): Likewise.
21163 * xfns.c (x_default_font_parameter): Likewise.
21164 * xsettings.c (read_and_apply_settings): Likewise.
21165
21166 * alloc.c (overrun_check_malloc, overrun_check_realloc)
21167 (overrun_check_free): Protoize.
21168
21169 2011-04-12 Paul Eggert <eggert@cs.ucla.edu>
21170
21171 * sysdep.c (emacs_read, emacs_write): Check for negative sizes
21172 since callers should never pass a negative size.
21173 Change the signature to match that of plain 'read' and 'write'; see
21174 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00397.html>.
21175 * lisp.h: Update prototypes of emacs_write and emacs_read.
21176
21177 2011-04-11 Eli Zaretskii <eliz@gnu.org>
21178
21179 * xdisp.c (redisplay_window): Don't try to determine the character
21180 position of the scroll margin if the window start point w->startp
21181 is outside the buffer's accessible region. (Bug#8468)
21182
21183 2011-04-10 Eli Zaretskii <eliz@gnu.org>
21184
21185 Fix write-region and its subroutines for buffers > 2GB.
21186 * fileio.c (a_write, e_write): Modify declaration of arguments and
21187 local variables to support buffers larger than 2GB.
21188 (Fcopy_file): Use EMACS_INT for return value of emacs_read.
21189
21190 * sysdep.c (emacs_write, emacs_read): Use ssize_t for last
21191 argument, local variables, and return value.
21192
21193 * lisp.h: Update prototypes of emacs_write and emacs_read.
21194
21195 * sound.c (vox_write): Use ssize_t for return value of emacs_write.
21196
21197 2011-04-10 Paul Eggert <eggert@cs.ucla.edu>
21198
21199 * xdisp.c (vmessage): Use memchr, not strnlen, which some hosts lack.
21200
21201 Fix more problems found by GCC 4.6.0's static checks.
21202
21203 * xdisp.c (vmessage): Use a better test for character truncation.
21204
21205 * charset.c (load_charset_map): <, not <=, for optimization,
21206 and to avoid potential problems with integer overflow.
21207 * chartab.c (sub_char_table_set_range, char_table_set_range): Likewise.
21208 * casetab.c (set_identity, shuffle): Likewise.
21209 * editfns.c (Fformat): Likewise.
21210 * syntax.c (skip_chars): Likewise.
21211
21212 * xmenu.c (set_frame_menubar): Allocate smaller local vectors.
21213 This also lets GCC 4.6.0 generate slightly better loop code.
21214
21215 * callint.c (Fcall_interactively): <, not <=, for optimization.
21216 (Fcall_interactively): Count the number of arguments produced,
21217 not the number of arguments given. This is simpler and lets GCC
21218 4.6.0 generate slightly better code.
21219
21220 * ftfont.c: Distingish more carefully between FcChar8 and char.
21221 The previous code passed unsigned char * to a functions like
21222 strlen and xstrcasecmp that expect char *, which does not
21223 conform to the C standard.
21224 (get_adstyle_property, ftfont_pattern_entity): Use FcChar8 for
21225 arguments to FcPatternGetString, and explicitly cast FcChar8 * to
21226 char * when the C standard requires it.
21227
21228 * keyboard.c (read_char): Remove unused var.
21229
21230 * eval.c: Port to Windows vsnprintf (Bug#8435).
21231 Include <limits.h>.
21232 (SIZE_MAX): Define if the headers do not.
21233 (verror): Do not give up if vsnprintf returns a negative count.
21234 Instead, grow the buffer. This ports to Windows vsnprintf, which
21235 does not conform to C99. Problem reported by Eli Zaretskii.
21236 Also, simplify the allocation scheme, by avoiding the need for
21237 calling realloc, and removing the ALLOCATED variable.
21238
21239 * eval.c (verror): Initial buffer size is 4000 (not 200) bytes.
21240
21241 Remove invocations of doprnt, as Emacs now uses vsnprintf.
21242 But keep the doprint source code for now, as we might revamp it
21243 and use it again (Bug#8435).
21244 * lisp.h (doprnt): Remove.
21245 * Makefile.in (base_obj): Remove doprnt.o.
21246 * deps.mk (doprnt.o): Remove.
21247
21248 error: Print 32- and 64-bit integers portably (Bug#8435).
21249 Without this change, on typical 64-bit hosts error ("...%d...", N)
21250 was used to print both 32- and 64-bit integers N, which relied on
21251 undefined behavior.
21252 * lisp.h, m/amdx86-64.h, m/ia64.h, m/ibms390x.h (pEd): New macro.
21253 * lisp.h (error, verror): Mark as printf-like functions.
21254 * eval.c (verror): Use vsnprintf, not doprnt, to do the real work.
21255 Report overflow in size calculations when allocating printf buffer.
21256 Do not truncate output string at its first null byte.
21257 * xdisp.c (vmessage): Use vsnprintf, not doprnt, to do the real work.
21258 Truncate the output at a character boundary, since vsnprintf does not
21259 do that.
21260 * charset.c (check_iso_charset_parameter): Convert internal
21261 character to string before calling 'error', since %c now has the
21262 printf meaning.
21263 * coding.c (Fdecode_sjis_char, Fdecode_big5_char): Avoid int
21264 overflow when computing char to be passed to 'error'. Do not
21265 pass Lisp_Object to 'error'; pass the integer instead.
21266 * nsfns.m (Fns_do_applescript): Use int, not long, since it's
21267 formatted with plain %d.
21268
21269 * eval.c (internal_lisp_condition_case): Don't pass spurious arg.
21270
21271 * keyboard.c (access_keymap_keyremap): Print func name, not garbage.
21272
21273 * coding.c (Fdecode_sjis_char): Don't assume CODE fits in int.
21274
21275 * xterm.c (x_catch_errors): Remove duplicate declaration.
21276
21277 * term.c (maybe_fatal): Mark its 3rd arg as a printf format, too.
21278
21279 * xdisp.c, lisp.h (message_nolog): Remove; unused.
21280
21281 2011-04-10 Jim Meyering <meyering@redhat.com>
21282
21283 use ssize_t and size_t for read- and write-like emacs_gnutls_* functions
21284 * gnutls.c (emacs_gnutls_read): Adjust signature to be more read-like:
21285 return ssize_t not "int", and use size_t as the buffer length.
21286 (emacs_gnutls_write): Likewise, and make the buffer pointer "const".
21287 * gnutls.h: Update declarations.
21288 * process.c (read_process_output): Use ssize_t, to match.
21289 (send_process): Likewise.
21290
21291 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
21292
21293 * image.c (Fimagemagick_types): Doc fix, and comment cleanup.
21294
21295 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
21296
21297 * ftfont.c (get_adstyle_property, ftfont_pattern_entity):
21298 Use unsigned char, to match FcChar8 type definition.
21299
21300 * xterm.c (handle_one_xevent):
21301 * xmenu.c (create_and_show_popup_menu):
21302 * xselect.c (x_decline_selection_request)
21303 (x_reply_selection_request): Avoid type-punned deref of X events.
21304
21305 2011-04-09 Eli Zaretskii <eliz@gnu.org>
21306
21307 Fix some uses of `int' instead of EMACS_INT.
21308 * search.c (string_match_1, fast_string_match)
21309 (fast_c_string_match_ignore_case, fast_string_match_ignore_case)
21310 (scan_buffer, find_next_newline_no_quit)
21311 (find_before_next_newline, search_command, Freplace_match)
21312 (Fmatch_data): Make some `int' variables be EMACS_INT.
21313
21314 * xdisp.c (display_count_lines): 3rd argument and return value now
21315 EMACS_INT. All callers changed.
21316 (pint2hrstr): Last argument is now EMACS_INT.
21317
21318 * coding.c (detect_coding_utf_8, detect_coding_emacs_mule)
21319 (detect_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
21320 (detect_coding_ccl, detect_coding_charset, decode_coding_utf_8)
21321 (decode_coding_utf_16, decode_coding_emacs_mule)
21322 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
21323 (decode_coding_ccl, decode_coding_charset)
21324 <consumed_chars, consumed_chars_base>: Declare EMACS_INT.
21325 (decode_coding_iso_2022, decode_coding_emacs_mule)
21326 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
21327 <char_offset, last_offset>: Declare EMACS_INT.
21328 (encode_coding_utf_8, encode_coding_utf_16)
21329 (encode_coding_emacs_mule, encode_invocation_designation)
21330 (encode_designation_at_bol, encode_coding_iso_2022)
21331 (encode_coding_sjis, encode_coding_big5, encode_coding_ccl)
21332 (encode_coding_raw_text, encode_coding_charset) <produced_chars>:
21333 Declare EMACS_INT.
21334 (ASSURE_DESTINATION): Declare more_bytes EMACS_INT.
21335 (encode_invocation_designation): Last argument P_NCHARS is now
21336 EMACS_INT.
21337 (decode_eol): Declare pos_byte, pos, and pos_end EMACS_INT.
21338 (produce_chars): from_nchars and to_nchars are now EMACS_INT.
21339
21340 * coding.h (struct coding_system) <head_ascii>: Declare EMACS_INT.
21341 All users changed.
21342
21343 * ccl.c (Fccl_execute_on_string): Declare some variables
21344 EMACS_INT.
21345
21346 2011-04-08 Samuel Thibault <sthibault@debian.org> (tiny change)
21347
21348 * term.c (init_tty): Fix incorrect ifdef placement (Bug#8450).
21349
21350 2011-03-19 Christoph Scholtes <cschol2112@googlemail.com>
21351
21352 * process.c (Fformat_network_address): Doc fix.
21353
21354 2011-04-08 T.V. Raman <tv.raman.tv@gmail.com> (tiny change)
21355
21356 * xml.c (parse_region): Avoid creating spurious whitespace nodes.
21357
21358 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
21359
21360 * keyboard.c (read_char): Call Lisp function help-form-show,
21361 instead of using internal_with_output_to_temp_buffer.
21362 (Qhelp_form_show): New var.
21363 (syms_of_keyboard): Use DEFSYM macro.
21364
21365 * print.c (internal_with_output_to_temp_buffer): Function deleted.
21366
21367 * lisp.h (internal_with_output_to_temp_buffer): Remove prototype.
21368
21369 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
21370
21371 * process.c (Flist_processes): Remove to Lisp.
21372 (list_processes_1): Delete.
21373
21374 2011-04-06 Eli Zaretskii <eliz@gnu.org>
21375
21376 * msdos.c (careadlinkat, careadlinkatcwd): MS-DOS replacements.
21377
21378 * w32.c (careadlinkat, careadlinkatcwd): New always-fail stubs.
21379
21380 2011-04-06 Paul Eggert <eggert@cs.ucla.edu>
21381
21382 Fix more problems found by GCC 4.6.0's static checks.
21383
21384 * xmenu.c (Fx_popup_dialog): Don't assume string is free of formats.
21385
21386 * menu.c (Fx_popup_menu): Don't assume error_name lacks printf formats.
21387
21388 * lisp.h (message, message_nolog, fatal): Mark as printf-like.
21389
21390 * xdisp.c (vmessage): Mark as a printf-like function.
21391
21392 * term.c (vfatal, maybe_fatal): Mark as printf-like functions.
21393
21394 * sound.c (sound_warning): Don't crash if arg contains a printf format.
21395
21396 * image.c (tiff_error_handler, tiff_warning_handler): Mark as
21397 printf-like functions.
21398 (tiff_load): Add casts to remove these marks before passing them
21399 to system-supplied API.
21400
21401 * eval.c (Fsignal): Remove excess argument to 'fatal'.
21402
21403 * coding.c (EMIT_ONE_BYTE, EMIT_TWO_BYTES): Use unsigned, not int.
21404 This avoids several warnings with gcc -Wstrict-overflow.
21405 (DECODE_COMPOSITION_RULE): If the rule is invalid, goto invalid_code
21406 directly, rather than having caller test rule sign. This avoids
21407 some unnecessary tests.
21408 * composite.h (COMPOSITION_ENCODE_RULE_VALID): New macro.
21409 (COMPOSITION_ENCODE_RULE): Arguments now must be valid. This
21410 affects only one use, in DECODE_COMPOSITION_RULE, which is changed.
21411
21412 * xfont.c (xfont_text_extents): Remove var that was set but not used.
21413 (xfont_open): Avoid unnecessary tests.
21414
21415 * composite.c (composition_gstring_put_cache): Use unsigned integer.
21416
21417 * composite.h, composite.c (composition_gstring_put_cache):
21418 Use EMACS_INT, not int, for length.
21419
21420 * composite.h (COMPOSITION_DECODE_REFS): New macro,
21421 breaking out part of COMPOSITION_DECODE_RULE.
21422 (COMPOSITION_DECODE_RULE): Use it.
21423 * composite.c (get_composition_id): Remove unused local vars,
21424 by using the new macro.
21425
21426 * textprop.c (set_text_properties_1): Change while to do-while,
21427 since the condition is always true at first.
21428
21429 * intervals.c (graft_intervals_into_buffer): Mark var as used.
21430 (interval_deletion_adjustment): Return unsigned value.
21431 All uses changed.
21432
21433 * process.c (list_processes_1, create_pty, read_process_output):
21434 (exec_sentinel): Remove vars that were set but not used.
21435 (create_pty): Remove unnecessary "volatile"s.
21436 (Fnetwork_interface_info): Avoid possibility of int overflow.
21437 (read_process_output): Do adaptive read buffering even if carryover.
21438 (read_process_output): Simplify nbytes computation if buffered.
21439
21440 * bytecode.c (exec_byte_code): Rename local to avoid shadowing.
21441
21442 * syntax.c (scan_words): Remove var that was set but not used.
21443 (update_syntax_table): Use unsigned instead of int.
21444
21445 * lread.c (lisp_file_lexically_bound_p): Use ints rather than endptrs.
21446 (lisp_file_lexically_bound_p, read1): Use unsigned instead of int.
21447 (safe_to_load_p): Make the end-of-loop test the inverse of the in-loop.
21448
21449 * print.c (print_error_message): Avoid int overflow.
21450
21451 * font.c (font_list_entities): Redo for clarity,
21452 so that reader need not know FONT_DPI_INDEX + 1 == FONT_SPACING_INDEX.
21453
21454 * font.c (font_find_for_lface, Ffont_get_glyphs): Remove unused vars.
21455 (font_score): Avoid potential overflow in diff calculation.
21456
21457 * fns.c (substring_both): Remove var that is set but not used.
21458 (sxhash): Redo loop for clarity and to avoid wraparound warning.
21459
21460 * eval.c (funcall_lambda): Rename local to avoid shadowing.
21461
21462 * alloc.c (mark_object_loop_halt, mark_object): Use size_t, not int.
21463 Otherwise, GCC 4.6.0 optimizes the loop check away since the check
21464 can always succeed if overflow has undefined behavior.
21465
21466 * search.c (boyer_moore, wordify): Remove vars set but not used.
21467 (wordify): Omit three unnecessary tests.
21468
21469 * indent.c (MULTIBYTE_BYTES_WIDTH): Don't compute wide_column.
21470 All callers changed. This avoids the need for an unused var.
21471
21472 * casefiddle.c (casify_region): Remove var that is set but not used.
21473
21474 * dired.c (file_name_completion): Remove var that is set but not used.
21475
21476 * fileio.c (Finsert_file_contents): Make EOF condition clearer.
21477
21478 * fileio.c (Finsert_file_contents): Avoid signed integer overflow.
21479 (Finsert_file_contents): Remove unnecessary code checking fd.
21480
21481 * minibuf.c (read_minibuf_noninteractive): Use size_t for sizes.
21482 Check for integer overflow on size calculations.
21483
21484 * buffer.c (Fprevious_overlay_change): Remove var that is set
21485 but not used.
21486
21487 * keyboard.c (menu_bar_items, read_char_minibuf_menu_prompt):
21488 Remove vars that are set but not used.
21489 (timer_check_2): Don't assume timer-list and idle-timer-list are lists.
21490 (timer_check_2): Mark vars as initialized.
21491
21492 * gtkutil.c (xg_get_file_with_chooser): Mark var as initialized.
21493
21494 * image.c (lookup_image): Remove var that is set but not used.
21495 (xbm_load): Use parse_p, for gcc -Werror=unused-but-set-variable.
21496
21497 * fontset.c (Finternal_char_font, Ffontset_info): Remove vars
21498 that are set but not used.
21499
21500 * xfns.c (make_invisible_cursor): Don't return garbage
21501 if XCreateBitmapFromData fails (Bug#8410).
21502
21503 * xselect.c (x_get_local_selection, x_handle_property_notify):
21504 Remove vars that are set but not used.
21505
21506 * xfns.c (x_create_tip_frame): Remove var that is set but not used.
21507 (make_invisible_cursor): Initialize a possibly-uninitialized variable.
21508
21509 * xterm.c (x_scroll_bar_to_input_event) [!USE_GTK]:
21510 Remove var that is set but not used.
21511 (scroll_bar_windows_size): Now size_t, not int.
21512 (x_send_scroll_bar_event): Use size_t, not int, for sizes.
21513 Check for overflow.
21514
21515 * xfaces.c (realize_named_face): Remove vars that are set but not used.
21516 (map_tty_color) [!defined MSDOS]: Likewise.
21517
21518 * term.c (tty_write_glyphs): Use size_t; this avoids overflow warning.
21519
21520 * coding.c: Remove vars that are set but not used.
21521 (DECODE_COMPOSITION_RULE): Remove 2nd arg, which is unused.
21522 All callers changed.
21523 (decode_coding_utf_8, decode_coding_utf_16 decode_coding_emacs_mule):
21524 (decode_coding_iso_2022, encode_coding_sjis, encode_coding_big5):
21525 (decode_coding_charset): Remove vars that are set but not used.
21526
21527 * bytecode.c (Fbyte_code) [!defined BYTE_CODE_SAFE]: Remove var
21528 that is set but not used.
21529
21530 * print.c (print_object): Remove var that is set but not used.
21531
21532 Replace 2 copies of readlink code with 1 gnulib version (Bug#8401).
21533 The gnulib version avoids calling malloc in the usual case,
21534 and on 64-bit hosts doesn't have some arbitrary 32-bit limits.
21535 * fileio.c (Ffile_symlink_p): Use emacs_readlink.
21536 * filelock.c (current_lock_owner): Likewise.
21537 * lisp.h (READLINK_BUFSIZE, emacs_readlink): New function.
21538 * sysdep.c: Include allocator.h, careadlinkat.h.
21539 (emacs_no_realloc_allocator): New static constant.
21540 (emacs_readlink): New function.
21541 * deps.mk (sysdep.o): Depend on ../lib/allocator.h and on
21542 ../lib/careadlinkat.h.
21543
21544 2011-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
21545
21546 * keyboard.c (safe_run_hook_funcall): Fix last change (don't stop at the
21547 first non-nil return value).
21548
21549 2011-04-03 Jan Djärv <jan.h.d@swipnet.se>
21550
21551 * nsterm.m (ns_update_auto_hide_menu_bar): Define MAC_OS_X_VERSION_10_6
21552 if not defined (Bug#8403).
21553
21554 2011-04-02 Juanma Barranquero <lekktu@gmail.com>
21555
21556 * xdisp.c (display_count_lines): Remove parameter `start',
21557 unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
21558 (get_char_face_and_encoding): Remove parameter `multibyte_p',
21559 unused since 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
21560 (fill_stretch_glyph_string): Remove parameters `row' and `area',
21561 unused at least since Kim's GUI unification at 2003-03-16T20:45:46Z!storm@cua.dk
21562 and thereabouts. All callers changed.
21563 (get_per_char_metric): Remove parameter `f', unused since
21564 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
21565
21566 2011-04-02 Jim Meyering <meyering@redhat.com>
21567
21568 do not dereference NULL upon failed strdup
21569 * nsfont.m (ns_descriptor_to_entity): Use xstrdup, not strdup.
21570 (ns_get_family): Likewise.
21571
21572 2011-04-02 Juanma Barranquero <lekktu@gmail.com>
21573
21574 * eval.c (unwind_to_catch) [DEBUG_GCPRO]: Remove redundant assignment.
21575
21576 2011-04-02 Jan Djärv <jan.h.d@swipnet.se>
21577
21578 * nsterm.m (ns_update_auto_hide_menu_bar): Only for OSX 10.6 or
21579 later (Bug#8403).
21580
21581 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
21582
21583 Add lexical binding.
21584
21585 * window.c (Ftemp_output_buffer_show): New fun.
21586 (Fsave_window_excursion):
21587 * print.c (Fwith_output_to_temp_buffer): Move to subr.el.
21588
21589 * lread.c (lisp_file_lexically_bound_p): New function.
21590 (Fload): Bind Qlexical_binding.
21591 (readevalloop): Remove `evalfun' arg.
21592 Bind Qinternal_interpreter_environment.
21593 (Feval_buffer): Bind Qlexical_binding.
21594 (defvar_int, defvar_bool, defvar_lisp_nopro, defvar_kboard):
21595 Mark as dynamic.
21596 (syms_of_lread): Declare `lexical-binding'.
21597
21598 * lisp.h (struct Lisp_Symbol): New field `declared_special'.
21599
21600 * keyboard.c (eval_dyn): New fun.
21601 (menu_item_eval_property): Use it.
21602
21603 * image.c (parse_image_spec): Use Ffunctionp.
21604
21605 * fns.c (concat, mapcar1): Accept byte-code-functions.
21606
21607 * eval.c (Fsetq): Handle lexical vars.
21608 (Fdefun, Fdefmacro, Ffunction): Make closures when needed.
21609 (Fdefconst, Fdefvaralias, Fdefvar): Mark as dynamic.
21610 (FletX, Flet): Obey lexical binding.
21611 (Fcommandp): Handle closures.
21612 (Feval): New `lexical' arg.
21613 (eval_sub): New function extracted from Feval. Use it almost
21614 everywhere where Feval was used. Look up vars in lexical env.
21615 Handle closures.
21616 (Ffunctionp): Move from subr.el.
21617 (Ffuncall): Handle closures.
21618 (apply_lambda): Remove `eval_flags'.
21619 (funcall_lambda): Handle closures and new byte-code-functions.
21620 (Fspecial_variable_p): New function.
21621 (syms_of_eval): Initialize the Vinternal_interpreter_environment var,
21622 but without exporting it to Lisp.
21623
21624 * doc.c (Fdocumentation, store_function_docstring):
21625 * data.c (Finteractive_form): Handle closures.
21626
21627 * callint.c (Fcall_interactively): Preserve lexical-binding mode for
21628 interactive spec.
21629
21630 * bytecode.c (Bstack_ref, Bstack_set, Bstack_set2, BdiscardN):
21631 New byte-codes.
21632 (exec_byte_code): New function extracted from Fbyte_code to handle new
21633 calling convention for byte-code-functions. Add new byte-codes.
21634
21635 * buffer.c (defvar_per_buffer): Set new `declared_special' field.
21636
21637 * alloc.c (Fmake_symbol): Init new `declared_special' field.
21638
21639 2011-03-31 Juanma Barranquero <lekktu@gmail.com>
21640
21641 * xdisp.c (redisplay_internal): Fix prototype.
21642
21643 2011-03-31 Eli Zaretskii <eliz@gnu.org>
21644
21645 * xdisp.c (SCROLL_LIMIT): New macro.
21646 (try_scrolling): Use it when setting scroll_limit.
21647 Limit scrolling to 100 screen lines.
21648 (redisplay_window): Even when falling back on "recentering",
21649 position point in the window according to scroll-conservatively,
21650 scroll-margin, and scroll-*-aggressively variables. (Bug#6671)
21651
21652 (try_scrolling): When point is above the window, allow searching
21653 as far as scroll_max, or one screenful, to compute vertical
21654 distance from PT to the scroll margin position. This prevents
21655 try_scrolling from unnecessarily failing when
21656 scroll-conservatively is set to a value slightly larger than the
21657 window height. Clean up the case of PT below the margin at bottom
21658 of window: scroll_max can no longer be INT_MAX. When aggressive
21659 scrolling is in use, don't let point enter the opposite scroll
21660 margin as result of the scroll.
21661 (syms_of_xdisp) <scroll-conservatively>: Document the
21662 threshold of 100 lines for never-recentering scrolling.
21663
21664 2011-03-31 Juanma Barranquero <lekktu@gmail.com>
21665
21666 * dispextern.h (move_it_by_lines):
21667 * xdisp.c (move_it_by_lines): Remove parameter `need_y_p', unused
21668 since 2000-12-29T14:24:09Z!gerd@gnu.org. All callers changed.
21669 (message_log_check_duplicate): Remove parameters `prev_bol' and
21670 `this_bol', unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
21671 (redisplay_internal): Remove parameter `preserve_echo_area',
21672 unused since 1999-07-21T21:43:52Z!gerd@gnu.org. All callers changed.
21673
21674 * indent.c (Fvertical_motion):
21675 * window.c (window_scroll_pixel_based, Frecenter):
21676 Don't pass `need_y_p' to `move_it_by_lines'.
21677
21678 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
21679
21680 * eval.c (struct backtrace): Don't cheat with negative numbers, but do
21681 steal a few bits to be more compact.
21682 (interactive_p, Fbacktrace, Fbacktrace_frame, mark_backtrace):
21683 Remove unneeded casts.
21684
21685 * bytecode.c (Fbyte_code): CAR and CDR can GC.
21686
21687 2011-03-30 Zachary Kanfer <zkanfer@gmail.com> (tiny change)
21688
21689 * keyboard.c (Fexecute_extended_command): Do log the "suggest key
21690 binding" message (bug#7967).
21691
21692 2011-03-30 Paul Eggert <eggert@cs.ucla.edu>
21693
21694 Fix more problems found by GCC 4.6.0's static checks.
21695
21696 * unexelf.c (unexec) [! (defined _SYSTYPE_SYSV || defined __sgi)]:
21697 Remove unused local var.
21698
21699 * editfns.c (Fmessage_box): Remove unused local var.
21700
21701 * xdisp.c (try_window_reusing_current_matrix, x_produce_glyphs):
21702 (note_mode_line_or_margin_highlight, note_mouse_highlight):
21703 Omit unused local vars.
21704 * window.c (shrink_windows): Omit unused local var.
21705 * menu.c (digest_single_submenu): Omit unused local var.
21706 * dispnew.c (update_window) [PERIODIC_PREEMPTION_CHECKING]:
21707 Omit unused local var.
21708
21709 * keyboard.c (parse_modifiers_uncached, parse_modifiers):
21710 Don't assume string length fits in int.
21711 (keyremap_step, read_key_sequence): Use size_t for sizes.
21712 (read_key_sequence): Don't check last_real_key_start redundantly.
21713
21714 * callproc.c (Fcall_process, Fcall_process_region): Use SAFE_ALLOCA
21715 instead of alloca (Bug#8344).
21716
21717 * eval.c (Fbacktrace): Don't assume nargs fits in int.
21718 (Fbacktrace_frame): Don't assume nframes fits in int.
21719
21720 * syntax.c (scan_sexps_forward): Avoid pointer wraparound.
21721
21722 * xterm.c (x_make_frame_visible, same_x_server): Redo to avoid overflow
21723 concerns.
21724
21725 * term.c (produce_glyphless_glyph): Remove unnecessary test.
21726
21727 * cm.c (calccost): Turn while-do into do-while, for clarity.
21728
21729 * keyboard.c (syms_of_keyboard): Use the same style as later
21730 in this function when indexing through an array. This also
21731 works around GCC bug 48267.
21732
21733 * image.c (tiff_load): Fix off-by-one image count (Bug#8336).
21734
21735 * xselect.c (x_check_property_data): Return correct size (Bug#8335).
21736
21737 * chartab.c (sub_char_table_ref_and_range): Redo for slight
21738 efficiency gain, and to bypass a gcc -Wstrict-overflow warning.
21739
21740 * keyboard.c, keyboard.h (num_input_events): Now size_t.
21741 This avoids undefined behavior on integer overflow, and is a bit
21742 more convenient anyway since it is compared to a size_t variable.
21743
21744 Variadic C functions now count arguments with size_t, not int.
21745 This avoids an unnecessary limitation on 64-bit machines, which
21746 caused (substring ...) to crash on large vectors (Bug#8344).
21747 * lisp.h (struct Lisp_Subr.function.aMANY): Now takes size_t, not int.
21748 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call): Likewise.
21749 All variadic functions and their callers changed accordingly.
21750 (struct gcpro.nvars): Now size_t, not int. All uses changed.
21751 * data.c (arith_driver, float_arith_driver): Likewise.
21752 * editfns.c (general_insert_function): Likewise.
21753 * eval.c (struct backtrace.nargs, interactive_p)
21754 (internal_condition_case_n, run_hook_with_args, apply_lambda)
21755 (funcall_lambda, mark_backtrace): Likewise.
21756 * fns.c (concat): Likewise.
21757 * frame.c (x_set_frame_parameters): Likewise.
21758 * fns.c (get_key_arg): Now accepts and returns size_t, and returns
21759 0 if not found, not -1. All callers changed.
21760
21761 * alloc.c (garbage_collect): Don't assume stack size fits in int.
21762 (stack_copy_size): Now size_t, not int.
21763 (stack_copy, stack_copy_size): Define only if MAX_SAVE_STACK > 0.
21764
21765 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
21766
21767 * coding.c (encode_designation_at_bol): Remove parameter `charbuf_end',
21768 unused since 2002-03-01T01:17:24Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
21769 All callers changed.
21770
21771 * lisp.h (multibyte_char_to_unibyte):
21772 * character.c (multibyte_char_to_unibyte): Remove parameter `rev_tbl',
21773 unused since 2002-03-01T01:16:34Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
21774 * character.h (CHAR_TO_BYTE8):
21775 * cmds.c (internal_self_insert):
21776 * editfns.c (general_insert_function):
21777 * keymap.c (push_key_description):
21778 * search.c (Freplace_match):
21779 * xdisp.c (message_dolog, set_message_1): All callers changed.
21780
21781 2011-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
21782
21783 * keyboard.c (safe_run_hook_funcall): New function.
21784 (safe_run_hooks_1, safe_run_hooks_error, safe_run_hooks): On error,
21785 don't set the hook to nil, but remove the offending function instead.
21786 (Qcommand_hook_internal): Remove, unused.
21787 (syms_of_keyboard): Don't initialize Qcommand_hook_internal nor define
21788 Vcommand_hook_internal.
21789
21790 * eval.c (enum run_hooks_condition): Remove.
21791 (funcall_nil, funcall_not): New functions.
21792 (run_hook_with_args): Call each function through a `funcall' argument.
21793 Remove `cond' argument, now redundant.
21794 (Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success)
21795 (Frun_hook_with_args_until_failure): Adjust accordingly.
21796 (run_hook_wrapped_funcall, Frun_hook_wrapped): New functions.
21797
21798 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
21799
21800 * dispextern.h (string_buffer_position): Remove declaration.
21801
21802 * print.c (strout): Remove parameter `multibyte', unused since
21803 1999-08-21T19:30:21Z!gerd@gnu.org. All callers changed.
21804
21805 * search.c (boyer_moore): Remove parameters `len', `pos' and `lim',
21806 never used since function introduction in 1998-02-08T21:33:56Z!rms@gnu.org.
21807 All callers changed.
21808
21809 * w32.c (_wsa_errlist): Use braces for struct initializers.
21810
21811 * xdisp.c (string_buffer_position_lim): Remove parameter `w',
21812 never used since function introduction in 2001-03-09T18:41:50Z!gerd@gnu.org.
21813 All callers changed.
21814 (string_buffer_position): Likewise. Also, make static (it's never
21815 used outside xdisp.c).
21816 (cursor_row_p): Remove parameter `w', unused since
21817 2000-10-17T16:08:57Z!gerd@gnu.org. All callers changed.
21818 (decode_mode_spec): Remove parameter `precision', introduced during
21819 Gerd Moellmann's rewrite at 1999-07-21T21:43:52Z!gerd@gnu.org, but never used.
21820 All callers changed.
21821
21822 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
21823
21824 * nsterm.m (syms_of_nsterm): Use doc: for ns-auto-hide-menu-bar.
21825
21826 2011-03-27 Anders Lindgren <andlind@gmail.com>
21827
21828 * nsterm.m (ns_menu_bar_is_hidden): New variable.
21829 (ns_constrain_all_frames, ns_menu_bar_should_be_hidden)
21830 (ns_update_auto_hide_menu_bar): New functions.
21831 (ns_update_begin): Call ns_update_auto_hide_menu_bar.
21832 (applicationDidBecomeActive): Call ns_update_auto_hide_menu_bar and
21833 ns_constrain_all_frames.
21834 (constrainFrameRect): Return at once if ns_menu_bar_should_be_hidden.
21835 (syms_of_nsterm): DEFVAR ns-auto-hide-menu-bar, init to Qnil.
21836
21837 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
21838
21839 * nsmenu.m (runDialogAt): Remove argument to timer_check.
21840
21841 2011-03-27 Glenn Morris <rgm@gnu.org>
21842
21843 * syssignal.h: Replace RETSIGTYPE with void.
21844 * atimer.c, data.c, dispnew.c, emacs.c, floatfns.c, keyboard.c:
21845 * keyboard.h, lisp.h, process.c, sysdep.c, xterm.c:
21846 Replace SIGTYPE with void everywhere.
21847 * s/usg5-4-common.h (SIGTYPE): Remove definition.
21848 * s/template.h (SIGTYPE): Remove commented out definition.
21849
21850 2011-03-26 Eli Zaretskii <eliz@gnu.org>
21851
21852 * xdisp.c (redisplay_window): Don't check buffer's clip_changed
21853 flag as a prerequisite for invoking try_scrolling. (Bug#6671)
21854
21855 2011-03-26 Juanma Barranquero <lekktu@gmail.com>
21856
21857 * w32.c (read_unc_volume): Use parameter `henum', instead of
21858 global variable `wget_enum_handle'.
21859
21860 * keymap.c (describe_vector): Remove parameters `indices' and
21861 `char_table_depth', unused since 2002-03-01T01:43:26Z!handa@m17n.org.
21862 (describe_map, Fdescribe_vector): Adjust calls to `describe_vector'.
21863
21864 * keyboard.h (timer_check, show_help_echo): Remove unused parameters.
21865
21866 * keyboard.c (timer_check): Remove parameter `do_it_now',
21867 unused since 1996-04-12T06:01:29Z!rms@gnu.org.
21868 (show_help_echo): Remove parameter `ok_to_overwrite_keystroke_echo',
21869 unused since 2008-04-19T19:30:53Z!monnier@iro.umontreal.ca.
21870
21871 * keyboard.c (read_char):
21872 * w32menu.c (w32_menu_display_help):
21873 * xmenu.c (show_help_event, menu_help_callback):
21874 Adjust calls to `show_help_echo'.
21875
21876 * gtkutil.c (xg_maybe_add_timer):
21877 * keyboard.c (readable_events):
21878 * process.c (wait_reading_process_output):
21879 * xmenu.c (x_menu_wait_for_event): Adjust calls to `timer_check'.
21880
21881 * insdel.c (adjust_markers_gap_motion):
21882 Remove; no-op since 1998-01-02T21:29:48Z!rms@gnu.org.
21883 (gap_left, gap_right): Don't call it.
21884
21885 2011-03-25 Chong Yidong <cyd@stupidchicken.com>
21886
21887 * xdisp.c (handle_fontified_prop): Discard changes to clip_changed
21888 incurred during fontification.
21889
21890 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
21891
21892 * buffer.c (defvar_per_buffer): Remove unused parameter `doc'.
21893 (DEFVAR_PER_BUFFER): Don't pass it.
21894
21895 * dispnew.c (row_equal_p, add_row_entry): Remove unused parameter `w'.
21896 (scrolling_window): Don't pass it.
21897
21898 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
21899
21900 * dispextern.h (glyph_matric): Use #if GLYPH_DEBUG, not #ifdef.
21901
21902 * fileio.c (check_executable) [DOS_NT]: Remove unused variables `len'
21903 and `suffix'.
21904 (Fset_file_selinux_context) [HAVE_LIBSELINUX]: Move here declaration
21905 of variables specific to SELinux and computation of `encoded_absname'.
21906
21907 * image.c (XPutPixel): Remove unused variable `height'.
21908
21909 * keyboard.c (make_lispy_event): Remove unused variable `hpos'.
21910
21911 * unexw32.c (get_section_info): Remove unused variable `section'.
21912
21913 * w32.c (stat): Remove unused variables `drive_root' and `devtype'.
21914 (system_process_attributes): Remove unused variable `sess'.
21915 (sys_read): Remove unused variable `err'.
21916
21917 * w32fns.c (top): Wrap variables with #if GLYPH_DEBUG, not #ifdef.
21918 (w32_wnd_proc): Remove unused variable `isdead'.
21919 (unwind_create_frame): Use #if GLYPH_DEBUG, not #ifdef.
21920 (Fx_server_max_request_size): Remove unused variable `dpyinfo'.
21921 (x_create_tip_frame): Remove unused variable `tem'.
21922
21923 * w32inevt.c (w32_console_read_socket):
21924 Remove unused variable `no_events'.
21925
21926 * w32term.c (x_draw_composite_glyph_string_foreground):
21927 Remove unused variable `width'.
21928
21929 2011-03-24 Juanma Barranquero <lekktu@gmail.com>
21930
21931 * w32term.c (x_set_glyph_string_clipping):
21932 Don't pass uninitialized region to CombineRgn.
21933
21934 2011-03-23 Juanma Barranquero <lekktu@gmail.com>
21935
21936 * w32fns.c (x_set_menu_bar_lines): Remove unused variable `olines'.
21937 (w32_wnd_proc): Pass NULL to Windows API, not uninitialized buffer.
21938 (Fx_close_connection): Remove unused variable `i'.
21939
21940 * w32font.c (w32font_draw): Return number of glyphs.
21941 (w32font_open_internal): Remove unused variable `i'.
21942 (w32font_driver): Add missing initializer.
21943
21944 * w32menu.c (utf8to16): Remove unused variable `utf16'.
21945 (fill_in_menu): Remove unused variable `items_added'.
21946
21947 * w32term.c (last_mouse_press_frame): Remove static global variable.
21948 (w32_clip_to_row): Remove unused variable `f'.
21949 (x_delete_terminal): Remove unused variable `i'.
21950
21951 * w32uniscribe.c (uniscribe_shape): Remove unused variable `nclusters'.
21952 (NOTHING): Remove unused static global variable.
21953 (uniscribe_check_otf): Remove unused variable `table'.
21954 (uniscribe_font_driver): Add missing initializers.
21955
21956 2011-03-23 Julien Danjou <julien@danjou.info>
21957
21958 * term.c (Fsuspend_tty, Fresume_tty):
21959 * minibuf.c (read_minibuf, run_exit_minibuf_hook):
21960 * window.c (temp_output_buffer_show):
21961 * insdel.c (signal_before_change):
21962 * frame.c (Fhandle_switch_frame):
21963 * fileio.c (Fdo_auto_save):
21964 * emacs.c (Fkill_emacs):
21965 * editfns.c (save_excursion_restore):
21966 * cmds.c (internal_self_insert):
21967 * callint.c (Fcall_interactively):
21968 * buffer.c (Fkill_all_local_variables):
21969 * keyboard.c (Fcommand_execute, Fsuspend_emacs, safe_run_hooks_1):
21970 Use Frun_hooks.
21971 (command_loop_1): Use Frun_hooks. Call safe_run_hooks
21972 unconditionally since it does the check itself.
21973
21974 2011-03-23 Paul Eggert <eggert@cs.ucla.edu>
21975
21976 Fix more problems found by GCC 4.5.2's static checks.
21977
21978 * coding.c (encode_coding_raw_text): Avoid unnecessary test
21979 the first time through the loop, since we know p0 < p1 then.
21980 This also avoids a gcc -Wstrict-overflow warning.
21981
21982 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP): Avoid 'int' overflow
21983 leading to a memory leak, possible in functions like
21984 load_charset_map_from_file that can allocate an unbounded number
21985 of objects (Bug#8318).
21986
21987 * xmenu.c (set_frame_menubar): Use EMACS_UINT, not int, for indexes
21988 that could (at least in theory) be that large.
21989
21990 * xdisp.c (message_log_check_duplicate): Return unsigned long, not int.
21991 This is less likely to overflow, and avoids undefined behavior if
21992 overflow does occur. All callers changed. Use strtoul to scan
21993 for the unsigned long integer.
21994 (pint2hrstr): Simplify and tune code slightly.
21995 This also avoids a (bogus) GCC warning with gcc -Wstrict-overflow.
21996
21997 * scroll.c (do_scrolling): Work around GCC bug 48228.
21998 See <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48228>.
21999
22000 * frame.c (Fmodify_frame_parameters): Simplify loop counter.
22001 This also avoids a warning with gcc -Wstrict-overflow.
22002 (validate_x_resource_name): Simplify count usage.
22003 This also avoids a warning with gcc -Wstrict-overflow.
22004
22005 * fileio.c (Fcopy_file): Report error if fchown or fchmod
22006 fail (Bug#8306).
22007
22008 * emacs.c (Fdaemon_initialized): Do not ignore I/O errors (Bug#8303).
22009
22010 * process.c (Fmake_network_process): Use socklen_t, not int,
22011 where POSIX says socklen_t is required in portable programs.
22012 This fixes a porting bug on hosts like 64-bit HP-UX, where
22013 socklen_t is wider than int (Bug#8277).
22014 (Fmake_network_process, server_accept_connection):
22015 (wait_reading_process_output, read_process_output):
22016 Likewise.
22017
22018 * process.c: Rename or move locals to avoid shadowing.
22019 (list_processes_1, Fmake_network_process):
22020 (read_process_output_error_handler, exec_sentinel_error_handler):
22021 Rename or move locals.
22022 (Fmake_network_process): Define label "retry_connect" only if needed.
22023 (Fnetwork_interface_info): Fix pointer signedness.
22024 (process_send_signal): Add cast to avoid pointer signedness problem.
22025 (FIRST_PROC_DESC, IF_NON_BLOCKING_CONNECT): Remove unused macros.
22026 (create_process): Use 'volatile' to avoid vfork clobbering (Bug#8298).
22027
22028 Make tparam.h and terminfo.c consistent.
22029 * cm.c (tputs, tgoto, BC, UP): Remove extern decls.
22030 Include tparam.h instead, since it declares them.
22031 * cm.h (PC): Remove extern decl; tparam.h now does this.
22032 * deps.mk (cm.o, terminfo.o): Depend on tparam.h.
22033 * terminfo.c: Include tparam.h, to check interfaces.
22034 (tparm): Make 1st arg a const pointer in decl. Put it at top level.
22035 (tparam): Adjust signature to match interface in tparam.h;
22036 this removes some undefined behavior. Check that outstring and len
22037 are zero, which they always are with Emacs.
22038 * tparam.h (PC, BC, UP): New extern decls.
22039
22040 * xftfont.c (xftfont_shape): Now static, and defined only if needed.
22041 (xftfont_open): Rename locals to avoid shadowing.
22042
22043 * ftfont.c (ftfont_resolve_generic_family): Fix pointer signedness.
22044 (ftfont_otf_capability, ftfont_shape): Omit decls if not needed.
22045 (OTF_TAG_SYM): Omit macro if not needed.
22046 (ftfont_list): Remove unused local.
22047 (get_adstyle_property, ftfont_pattern_entity):
22048 (ftfont_lookup_cache, ftfont_open, ftfont_anchor_point):
22049 Rename locals to avoid shadowing.
22050
22051 * xfont.c (xfont_list_family): Mark var as initialized.
22052
22053 * xml.c (make_dom): Now static.
22054
22055 * composite.c (composition_compute_stop_pos): Rename local to
22056 avoid shadowing.
22057 (composition_reseat_it): Remove unused locals.
22058 (find_automatic_composition, composition_adjust_point): Likewise.
22059 (composition_update_it): Mark var as initialized.
22060 (find_automatic_composition): Mark vars as initialized,
22061 with a FIXME (Bug#8290).
22062
22063 character.h: Rename locals to avoid shadowing.
22064 * character.h (PREV_CHAR_BOUNDARY, FETCH_STRING_CHAR_ADVANCE):
22065 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE, FETCH_CHAR_ADVANCE):
22066 (FETCH_CHAR_ADVANCE_NO_CHECK, INC_POS, DEC_POS, BUF_INC_POS):
22067 (BUF_DEC_POS): Be more systematic about renaming local temporaries
22068 to avoid shadowing.
22069
22070 * textprop.c (property_change_between_p): Remove; unused.
22071
22072 * intervals.c (interval_start_pos): Now static.
22073
22074 * intervals.h (CHECK_TOTAL_LENGTH): Avoid empty "else".
22075
22076 * atimer.c (start_atimer, append_atimer_lists, set_alarm):
22077 Rename locals to avoid shadowing.
22078
22079 * sound.c (wav_play, au_play, Fplay_sound_internal):
22080 Fix pointer signedness.
22081 (alsa_choose_format): Remove unused local var.
22082 (wav_play): Initialize a variable to 0, to prevent undefined
22083 behavior (Bug#8278).
22084
22085 * region-cache.c (insert_cache_boundary): Redo var to avoid shadowing.
22086
22087 * region-cache.h (pp_cache): New decl, for gcc -Wmissing-prototypes.
22088
22089 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork
22090 clobbering (Bug#8298).
22091 * sysdep.c (sys_subshell): Likewise.
22092 Previously, the sys_subshell 'volatile' was incorrectly IF_LINTted out.
22093
22094 * lisp.h (child_setup): Now NO_RETURN unless DOS_NT.
22095 This should get cleaned up, so that child_setup has the
22096 same signature on all platforms.
22097
22098 * callproc.c (call_process_cleanup): Now static.
22099 (relocate_fd): Rename locals to avoid shadowing.
22100
22101 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
22102
22103 * xterm.c (x_clear_frame): Remove XClearWindow call. This appears
22104 not to be necessary, and produces flickering.
22105
22106 2011-03-20 Glenn Morris <rgm@gnu.org>
22107
22108 * config.in: Remove file.
22109
22110 2011-03-20 Juanma Barranquero <lekktu@gmail.com>
22111
22112 * minibuf.c (Vcompleting_read_function): Don't declare, global variables
22113 are now in src/globals.h.
22114 (syms_of_minibuf): Remove spurious & from previous change.
22115
22116 2011-03-20 Leo Liu <sdl.web@gmail.com>
22117
22118 * minibuf.c (completing-read-function): New variable.
22119 (completing-read-default): Rename from completing-read.
22120 (completing-read): Call completing-read-function.
22121
22122 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
22123
22124 * xfaces.c (Fx_load_color_file):
22125 Read color file from absolute filename (bug#8250).
22126
22127 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
22128
22129 * makefile.w32-in: Update dependencies.
22130
22131 2011-03-17 Eli Zaretskii <eliz@gnu.org>
22132
22133 * makefile.w32-in ($(BLD)/unexw32.$(O)): Depend on $(SRC)/unexec.h.
22134
22135 2011-03-17 Paul Eggert <eggert@cs.ucla.edu>
22136
22137 Fix more problems found by GCC 4.5.2's static checks.
22138
22139 * process.c (make_serial_process_unwind, send_process_trap):
22140 (sigchld_handler): Now static.
22141
22142 * process.c (allocate_pty): Let PTY_ITERATION declare iteration vars.
22143 That way, the code declares only the vars that it needs.
22144 * s/aix4-2.h (PTY_ITERATION): Declare iteration vars.
22145 * s/cygwin.h (PTY_ITERATION): Likewise.
22146 * s/darwin.h (PTY_ITERATION): Likewise.
22147 * s/gnu-linux.h (PTY_ITERATION): Likewise.
22148
22149 * s/irix6-5.h (PTY_OPEN): Declare stb, to loosen coupling.
22150 * process.c (allocate_pty): Don't declare stb unless it's needed.
22151
22152 * bytecode.c (MAYBE_GC): Rewrite so as not to use empty "else".
22153 (CONSTANTLIM): Remove; unused.
22154 (METER_CODE, Bscan_buffer, Bread_char, Bset_mark):
22155 Define only if needed.
22156
22157 * unexelf.c (unexec): Name an expression,
22158 to avoid gcc -Wbad-function-cast warning.
22159 Use a different way to cause a compilation error if anyone uses
22160 n rather than nn, a way that does not involve shadowing.
22161 (ELF_BSS_SECTION_NAME, OLD_PROGRAM_H): Remove; unused.
22162
22163 * deps.mk (unexalpha.o): Remove; unused.
22164
22165 New file unexec.h, the (simple) interface for unexec (Bug#8267).
22166 * unexec.h: New file.
22167 * deps.mk (emacs.o, unexaix.o, unexcw.o, unexcoff.o, unexelf.o):
22168 (unexhp9k800.o, unexmacosx.o, unexsol.o, unexw32.o):
22169 Depend on unexec.h.
22170 * emacs.c [!defined CANNOT_DUMP]: Include unexec.h.
22171 * unexaix.c, unexcoff.c, unexcw.c, unexelf.c, unexhp9k800.c:
22172 * unexmacosx.c, unexsol.c, unexw32.c: Include unexec.h.
22173 Change as necessary to match prototype in unexec.h.
22174
22175 * syntax.c (Fforward_comment, scan_lists): Rename locals to avoid
22176 shadowing.
22177 (back_comment, skip_chars): Mark vars as initialized.
22178
22179 * character.h (FETCH_STRING_CHAR_ADVANCE_NO_CHECK, BUF_INC_POS):
22180 Rename locals to avoid shadowing.
22181
22182 * lread.c (read1): Rewrite so as not to use empty "else".
22183 (Fload, readevalloop, read1): Rename locals to avoid shadowing.
22184
22185 * print.c (Fredirect_debugging_output): Fix pointer signedess.
22186
22187 * lisp.h (debug_output_compilation_hack): Add decl here, to avoid
22188 warning when compiling print.c.
22189
22190 * font.c (font_unparse_fcname): Abort in an "impossible" situation
22191 instead of using an uninitialized var.
22192 (font_sort_entities): Mark var as initialized.
22193
22194 * character.h (FETCH_CHAR_ADVANCE): Rename locals to avoid shadowing.
22195
22196 * font.c (font_unparse_xlfd): Don't mix pointers to variables with
22197 pointers to constants.
22198 (font_parse_fcname): Remove unused vars.
22199 (font_delete_unmatched): Now static.
22200 (font_get_spec): Remove; unused.
22201 (font_style_to_value, font_prop_validate_style, font_unparse_fcname):
22202 (font_update_drivers, Ffont_get_glyphs, font_add_log):
22203 Rename or move locals to avoid shadowing.
22204
22205 * fns.c (require_nesting_list, require_unwind): Now static.
22206 (Ffillarray): Rename locals to avoid shadowing.
22207
22208 * floatfns.c (domain_error2): Define only if needed.
22209 (Ffrexp, Fldexp): Rename locals to avoid shadowing.
22210
22211 * alloc.c (mark_backtrace): Move decl from here ...
22212 * lisp.h: ... to here, so that it can be checked.
22213
22214 * eval.c (call_debugger, do_debug_on_call, grow_specpdl): Now static.
22215 (Fdefvar): Rewrite so as not to use empty "else".
22216 (lisp_indirect_variable): Name an expression,
22217 to avoid gcc -Wbad-function-cast warning.
22218 (Fdefvar): Rename locals to avoid shadowing.
22219
22220 * callint.c (quotify_arg, quotify_args): Now static.
22221 (Fcall_interactively): Rename locals to avoid shadowing.
22222 Use const pointer when appropriate.
22223
22224 * lisp.h (get_system_name, get_operating_system_release):
22225 Move decls here, to check interfaces.
22226 * process.c (get_operating_system_release): Move decl to lisp.h.
22227 * xrdb.c (get_system_name): Likewise.
22228 * editfns.c (init_editfns, Fuser_login_name, Fuser_uid):
22229 (Fuser_real_uid, Fuser_full_name): Remove unnecessary casts,
22230 some of which prompt warnings from gcc -Wbad-function-cast.
22231 (Fformat_time_string, Fencode_time, Finsert_char):
22232 (Ftranslate_region_internal, Fformat):
22233 Rename or remove local vars to avoid shadowing.
22234 (Ftranslate_region_internal): Mark var as initialized.
22235
22236 * doc.c (Fdocumentation, Fsnarf_documentation): Move locals to
22237 avoid shadowing.
22238
22239 * lisp.h (eassert): Check that the argument compiles, even if
22240 ENABLE_CHECKING is not defined.
22241
22242 * data.c (Findirect_variable): Name an expression, to avoid
22243 gcc -Wbad-function-cast warning.
22244 (default_value, arithcompare, arith_driver, arith_error): Now static.
22245 (store_symval_forwarding): Rename local to avoid shadowing.
22246 (Fmake_variable_buffer_local, Fmake_local_variable):
22247 Mark variables as initialized.
22248 (do_blv_forwarding, do_symval_forwarding): Remove; unused.
22249
22250 * alloc.c (check_cons_list): Do not define unless GC_CHECK_CONS_LIST.
22251 (Fmake_vector, Fvector, Fmake_byte_code, Fgarbage_collect):
22252 Rename locals to avoid shadowing.
22253 (mark_stack): Move local variables into the #ifdef region where
22254 they're used.
22255 (BLOCK_INPUT_ALLOC, UNBLOCK_INPUT_ALLOC): Define only if
22256 ! defined SYSTEM_MALLOC && ! defined SYNC_INPUT, as they are not
22257 needed otherwise.
22258 (CHECK_ALLOCATED): Define only if GC_CHECK_MARKED_OBJECTS.
22259 (GC_STRING_CHARS): Remove; not used.
22260 (Fmemory_limit): Cast sbrk's returned value to char *.
22261
22262 * lisp.h (check_cons_list): Declare if GC_CHECK_CONS_LIST; this
22263 avoids undefined behavior in theory.
22264
22265 * regex.c (IF_LINT): Add defn, for benefit of ../lib-src.
22266
22267 Use functions, not macros, for up- and down-casing (Bug#8254).
22268 * buffer.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
22269 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Remove. All callers changed
22270 to use the following functions instead of these macros.
22271 (downcase): Adjust to lack of DOWNCASE_TABLE. Return int, not
22272 EMACS_INT, since callers assume the returned value fits in int.
22273 (upcase1): Likewise, for UPCASE_TABLE.
22274 (uppercasep, lowercasep, upcase): New static inline functions.
22275 * editfns.c (Fchar_equal): Remove no-longer-needed workaround for
22276 the race-condition problem in the old DOWNCASE.
22277
22278 * regex.c (CHARSET_LOOKUP_RANGE_TABLE_RAW, POP_FAILURE_REG_OR_COUNT):
22279 Rename locals to avoid shadowing.
22280 (regex_compile, re_match_2_internal): Move locals to avoid shadowing.
22281 (regex_compile, re_search_2, re_match_2_internal):
22282 Remove unused local vars.
22283 (FREE_VAR): Rewrite so as not to use empty "else",
22284 which gcc can warn about.
22285 (regex_compile, re_match_2_internal): Mark locals as initialized.
22286 (RETALLOC_IF): Define only if needed.
22287 (WORDCHAR_P): Likewise. This one is never needed, but is used
22288 only in a comment talking about a compiler bug, so put inside
22289 the #if 0 of that comment.
22290 (CHARSET_LOOKUP_BITMAP, FAIL_STACK_FULL, RESET_FAIL_STACK):
22291 (PUSH_FAILURE_ELT, BUF_PUSH_3, STOP_ADDR_VSTRING):
22292 Remove; unused.
22293
22294 * search.c (boyer_moore): Rename locals to avoid shadowing.
22295 * character.h (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE):
22296 (PREV_CHAR_BOUNDARY): Likewise.
22297
22298 * search.c (simple_search): Remove unused var.
22299
22300 * dired.c (compile_pattern): Move decl from here ...
22301 * lisp.h: ... to here, so that it can be checked.
22302 (struct re_registers): New forward decl.
22303
22304 * character.h (INC_POS, DEC_POS): Rename locals to avoid shadowing.
22305
22306 * indent.c (MULTIBYTE_BYTES_WIDTH): New args bytes, width.
22307 All uses changed.
22308 (MULTIBYTE_BYTES_WIDTH, scan_for_column, compute_motion):
22309 Rename locals to avoid shadowing.
22310 (Fvertical_motion): Mark locals as initialized.
22311
22312 * casefiddle.c (casify_object, casify_region): Now static.
22313 (casify_region): Mark local as initialized.
22314
22315 * cmds.c (internal_self_insert): Rename local to avoid shadowing.
22316
22317 * lisp.h (GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR, GCPRO6_VAR):
22318 New macros, so that the caller can use some names other than
22319 gcpro1, gcpro2, etc.
22320 (GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6): Reimplement in terms
22321 of the new macros.
22322 (GCPRO1_VAR, UNGCPRO_VAR): Change the meaning of the second
22323 argument, for consistency with GCPRO2_VAR, etc: it is now the
22324 prefix of the variable, not the variable itself. All uses
22325 changed.
22326 * dired.c (directory_files_internal, file_name_completion):
22327 Rename locals to avoid shadowing.
22328
22329 Fix a race condition diagnosed by gcc -Wsequence-point (Bug#8254).
22330 An expression of the form (DOWNCASE (x) == DOWNCASE (y)), found in
22331 dired.c's scmp function, had undefined behavior.
22332 * lisp.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
22333 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Move from here ...
22334 * buffer.h: ... to here, because these macros use current_buffer,
22335 and the new implementation with inline functions needs to have
22336 current_buffer in scope now, rather than later when the macros
22337 are used.
22338 (downcase, upcase1): New static inline functions.
22339 (DOWNCASE, UPCASE1): Reimplement using these functions.
22340 This avoids undefined behavior in expressions like
22341 DOWNCASE (x) == DOWNCASE (y), which previously suffered
22342 from race conditions in accessing the global variables
22343 case_temp1 and case_temp2.
22344 * casetab.c (case_temp1, case_temp2): Remove; no longer needed.
22345 * lisp.h (case_temp1, case_temp2): Remove their decls.
22346 * character.h (ASCII_CHAR_P): Move from here ...
22347 * lisp.h: ... to here, so that the inline functions mentioned
22348 above can use them.
22349
22350 * dired.c (directory_files_internal_unwind): Now static.
22351
22352 * fileio.c (file_name_as_directory, directory_file_name):
22353 (barf_or_query_if_file_exists, auto_save_error, auto_save_1):
22354 Now static.
22355 (file_name_as_directory): Use const pointers when appropriate.
22356 (Fexpand_file_name): Likewise. In particular, newdir might
22357 point at constant storage, so make it a const pointer.
22358 (Fmake_directory_internal, Fread_file_name): Remove unused vars.
22359 (Ffile_selinux_context, Fset_file_selinux_context): Fix pointer
22360 signedness issues.
22361 (Fset_file_times, Finsert_file_contents, auto_save_error):
22362 Rename locals to avoid shadowing.
22363
22364 * minibuf.c (choose_minibuf_frame_1): Now static.
22365 (Ftry_completion, Fall_completions): Rename or remove locals
22366 to avoid shadowing.
22367
22368 * marker.c (bytepos_to_charpos): Remove; unused.
22369
22370 * lisp.h (verify_bytepos, count_markers): New decls,
22371 so that gcc does not warn that these functions aren't declared.
22372
22373 * insdel.c (check_markers, make_gap_larger, make_gap_smaller):
22374 (reset_var_on_error, Fcombine_after_change_execute_1): Now static.
22375 (CHECK_MARKERS): Redo to avoid gcc -Wempty-body diagnostic.
22376 (copy_text): Remove unused local var.
22377
22378 * filelock.c (within_one_second): Now static.
22379 (lock_file_1): Rename local to avoid shadowing.
22380
22381 * buffer.c (fix_overlays_before): Mark locals as initialized.
22382 (fix_start_end_in_overlays): Likewise. This function should be
22383 simplified by using pointers-to-pointers, but that's a different
22384 matter.
22385 (switch_to_buffer_1): Now static.
22386 (Fkill_buffer, record_buffer, Fbury_buffer, Fset_buffer_multibyte):
22387 (report_overlay_modification): Rename locals to avoid shadowing.
22388
22389 * sysdep.c (system_process_attributes): Rename vars to avoid shadowing.
22390 Fix pointer signedness issue.
22391 (sys_subshell): Mark local as volatile if checking for lint,
22392 to suppress a gcc -Wclobbered warning that does not seem to be right.
22393 (MAXPATHLEN): Define only if needed.
22394
22395 * process.c (serial_open, serial_configure): Move decls from here ...
22396 * systty.h: ... to here, so that they can be checked.
22397
22398 * fns.c (get_random, seed_random): Move extern decls from here ...
22399 * lisp.h: ... to here, so that they can be checked.
22400
22401 * sysdep.c (reset_io): Now static.
22402 (wait_for_termination_signal): Remove; unused.
22403
22404 * keymap.c (keymap_parent, keymap_memberp, map_keymap_internal):
22405 (copy_keymap_item, append_key, push_text_char_description):
22406 Now static.
22407 (Fwhere_is_internal): Don't test CONSP (sequences) unnecessarily.
22408 (DENSE_TABLE_SIZE): Remove; unused.
22409 (get_keymap, access_keymap, Fdefine_key, Fwhere_is_internal):
22410 (describe_map_tree):
22411 Rename locals to avoid shadowing.
22412
22413 * keyboard.c: Declare functions static if they are not used elsewhere.
22414 (echo_char, echo_dash, cmd_error, top_level_2):
22415 (poll_for_input, handle_async_input): Now static.
22416 (read_char, kbd_buffer_get_event, make_lispy_position):
22417 (make_lispy_event, make_lispy_movement, apply_modifiers):
22418 (decode_keyboard_code, tty_read_avail_input, menu_bar_items):
22419 (parse_tool_bar_item, read_key_sequence, Fread_key_sequence):
22420 (Fread_key_sequence_vector): Rename locals to avoid shadowing.
22421 (read_key_sequence, read_char): Mark locals as initialized.
22422 (Fexit_recursive_edit, Fabort_recursive_edit): Mark with NO_RETURN.
22423
22424 * keyboard.h (make_ctrl_char): New decl.
22425 (mark_kboards): Move decl here ...
22426 * alloc.c (mark_kboards): ... from here.
22427
22428 * lisp.h (force_auto_save_soon): New decl.
22429
22430 * emacs.c (init_cmdargs): Rename local to avoid shadowing.
22431 (DEFINE_DUMMY_FUNCTION): New macro.
22432 (__do_global_ctors, __do_global_ctors_aux, __do_global_dtors, __main):
22433 Use it.
22434 (main): Add casts to avoid warnings
22435 if GCC considers string literals to be constants.
22436
22437 * lisp.h (fatal_error_signal): Add decl, since it's exported.
22438
22439 * dbusbind.c: Pointer signedness fixes.
22440 (xd_signature, xd_append_arg, xd_initialize):
22441 (Fdbus_call_method, Fdbus_call_method_asynchronously):
22442 (Fdbus_method_return_internal, Fdbus_method_error_internal):
22443 (Fdbus_send_signal, xd_read_message_1, Fdbus_register_service):
22444 (Fdbus_register_signal): Use SSDATA when the context wants char *.
22445
22446 * dbusbind.c (Fdbus_init_bus): Add cast to avoid warning
22447 if GCC considers string literals to be constants.
22448 (Fdbus_register_service, Fdbus_register_method): Remove unused vars.
22449
22450 2011-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
22451
22452 * print.c (PRINT_CIRCLE_CANDIDATE_P): New macro.
22453 (print_preprocess, print_object): New macro to fix last change.
22454
22455 * print.c (print_preprocess): Don't forget font objects.
22456
22457 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
22458
22459 * emacs.c (USAGE3): Doc fixes.
22460
22461 2011-03-15 Andreas Schwab <schwab@linux-m68k.org>
22462
22463 * coding.c (detect_coding_iso_2022): Reorganize code to clarify
22464 structure.
22465
22466 2011-03-14 Juanma Barranquero <lekktu@gmail.com>
22467
22468 * lisp.h (VWindow_system, Qfile_name_history):
22469 * keyboard.h (lispy_function_keys) [WINDOWSNT]:
22470 * w32term.h (w32_system_caret_hwnd, w32_system_caret_height)
22471 (w32_system_caret_x, w32_system_caret_y): Declare extern.
22472
22473 * w32select.c: Don't #include "keyboard.h".
22474 (run_protected): Add extern declaration for waiting_for_input.
22475
22476 * w32.c (Qlocal, noninteractive1, inhibit_window_system):
22477 * w32console.c (detect_input_pending, read_input_pending)
22478 (encode_terminal_code):
22479 * w32fns.c (quit_char, lispy_function_keys, Qtooltip)
22480 (w32_system_caret_hwnd, w32_system_caret_height, w32_system_caret_x)
22481 (w32_system_caret_y, Qfile_name_history):
22482 * w32font.c (w32font_driver, QCantialias, QCotf, QClang):
22483 * w32inevt.c (reinvoke_input_signal, lispy_function_keys):
22484 * w32menu.c (Qmenu_bar, QCtoggle, QCradio, Qoverriding_local_map)
22485 (Qoverriding_terminal_local_map, Qmenu_bar_update_hook):
22486 * w32proc.c (Qlocal, report_file_error):
22487 * w32term.c (Vwindow_system, updating_frame):
22488 * w32uniscribe.c (initialized, uniscribe_font_driver):
22489 Remove unneeded extern declarations.
22490
22491 2011-03-14 Chong Yidong <cyd@stupidchicken.com>
22492
22493 * buffer.c (Fmake_indirect_buffer): Fix incorrect assertions.
22494
22495 2011-03-13 Chong Yidong <cyd@stupidchicken.com>
22496
22497 * buffer.h (BUF_BEGV, BUF_BEGV_BYTE, BUF_ZV, BUF_ZV_BYTE, BUF_PT)
22498 (BUF_PT_BYTE): Rewrite to handle indirect buffers (Bug#8219).
22499 These macros can no longer be used for assignment.
22500
22501 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
22502 Assign struct members directly, instead of using BUF_BEGV etc.
22503 (record_buffer_markers, fetch_buffer_markers): New functions for
22504 recording and fetching special buffer markers.
22505 (set_buffer_internal_1, set_buffer_temp): Use them.
22506
22507 * lread.c (unreadchar): Use SET_BUF_PT_BOTH.
22508
22509 * insdel.c (adjust_point): Use SET_BUF_PT_BOTH.
22510
22511 * intervals.c (temp_set_point_both): Use SET_BUF_PT_BOTH.
22512 (get_local_map): Use SET_BUF_BEGV_BOTH and SET_BUF_ZV_BOTH.
22513
22514 * xdisp.c (hscroll_window_tree):
22515 (reconsider_clip_changes): Use PT instead of BUF_PT.
22516
22517 2011-03-13 Eli Zaretskii <eliz@gnu.org>
22518
22519 * makefile.w32-in ($(BLD)/editfns.$(O)): Depend on
22520 $(EMACS_ROOT)/lib/intprops.h.
22521
22522 2011-03-13 Paul Eggert <eggert@cs.ucla.edu>
22523
22524 Fix more problems found by GCC 4.5.2's static checks.
22525
22526 * gtkutil.c (xg_get_pixbuf_from_pixmap): Add cast from char *
22527 to unsigned char * to avoid compiler diagnostic.
22528 (xg_free_frame_widgets): Make it clear that a local variable is
22529 needed only if USE_GTK_TOOLTIP.
22530 (gdk_window_get_screen): Make it clear that this macro is needed
22531 only if USE_GTK_TOOLTIP.
22532 (int_gtk_range_get_value): New function, which avoids a diagnostic
22533 from gcc -Wbad-function-cast.
22534 (xg_set_toolkit_scroll_bar_thumb): Use it.
22535 (xg_tool_bar_callback, xg_tool_item_stale_p): Rewrite to avoid
22536 diagnostic from gcc -Wbad-function-cast.
22537 (get_utf8_string, xg_get_file_with_chooser):
22538 Rename locals to avoid shadowing.
22539 (create_dialog): Move locals to avoid shadowing.
22540
22541 * xgselect.c (xg_select): Remove unused var.
22542
22543 * image.c (four_corners_best): Mark locals as initialized.
22544 (gif_load): Initialize transparent_p to zero (Bug#8238).
22545 Mark another local as initialized.
22546 (my_png_error, my_error_exit): Mark with NO_RETURN.
22547
22548 * image.c (clear_image_cache): Now static.
22549 (DIM, HAVE_STDLIB_H_1): Remove unused macros.
22550 (xpm_load): Redo to avoid "discards qualifiers" gcc warning.
22551 (x_edge_detection): Remove unnecessary cast that
22552 gcc -Wbad-function-cast diagnoses.
22553 (gif_load): Fix pointer signedness.
22554 (clear_image_cache, xbm_read_bitmap_data, x_detect_edges):
22555 (jpeg_load, gif_load): Rename locals to avoid shadowing.
22556
22557 2011-03-12 Paul Eggert <eggert@cs.ucla.edu>
22558
22559 Improve quality of tests for time stamp overflow.
22560 For example, without this patch (encode-time 0 0 0 1 1
22561 1152921504606846976) returns the obviously-bogus value (-948597
22562 62170) on my RHEL 5.5 x86-64 host. With the patch, it correctly
22563 reports time overflow. See
22564 <http://lists.gnu.org/archive/html/emacs-devel/2011-03/msg00470.html>.
22565 * deps.mk (editfns.o): Depend on ../lib/intprops.h.
22566 * editfns.c: Include limits.h and intprops.h.
22567 (TIME_T_MIN, TIME_T_MAX): New macros.
22568 (time_overflow): Move earlier, to before first use.
22569 (hi_time, lo_time): New functions, for an accurate test for
22570 out-of-range times.
22571 (Fcurrent_time, Fget_internal_run_time, make_time): Use them.
22572 (Fget_internal_run_time): Don't assume time_t fits in int.
22573 (make_time): Use list2 instead of Fcons twice.
22574 (Fdecode_time): More accurate test for out-of-range times.
22575 (check_tm_member): New function.
22576 (Fencode_time): Use it, to test for out-of-range times.
22577 (lisp_time_argument): Don't rely on undefined left-shift and
22578 right-shift behavior when checking for time stamp overflow.
22579
22580 * editfns.c (time_overflow): New function, refactoring common code.
22581 (Fformat_time_string, Fdecode_time, Fencode_time):
22582 (Fcurrent_time_string): Use it.
22583
22584 Move 'make_time' to be next to its inverse 'lisp_time_argument'.
22585 * dired.c (make_time): Move to ...
22586 * editfns.c (make_time): ... here.
22587 * systime.h: Note the move.
22588
22589 2011-03-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22590
22591 * fringe.c (update_window_fringes): Remove unused variables.
22592
22593 * unexmacosx.c (copy_data_segment): Also copy __got section.
22594 (Bug#8223)
22595
22596 2011-03-12 Eli Zaretskii <eliz@gnu.org>
22597
22598 * termcap.c [MSDOS]: Include "msdos.h".
22599 (find_capability, tgetnum, tgetflag, tgetstr, tputs, tgetent):
22600 Constify `char *' arguments and their references according to
22601 prototypes in tparam.h.
22602
22603 * deps.mk (termcap.o): Depend on tparam.h and msdos.h.
22604
22605 * msdos.c (XMenuAddPane): 3rd argument is `const char *' now.
22606 Adapt all references accordingly.
22607
22608 * msdos.h (XMenuAddPane): 3rd argument is `const char *' now.
22609
22610 2011-03-11 Tom Tromey <tromey@redhat.com>
22611
22612 * buffer.c (syms_of_buffer): Remove obsolete comment.
22613
22614 2011-03-11 Eli Zaretskii <eliz@gnu.org>
22615
22616 * termhooks.h (encode_terminal_code): Declare prototype.
22617
22618 * msdos.c (encode_terminal_code): Don't declare prototype.
22619
22620 * term.c (encode_terminal_code): Now external again, used by
22621 w32console.c and msdos.c.
22622
22623 * makefile.w32-in ($(BLD)/term.$(O), ($(BLD)/tparam.$(O)):
22624 Depend on $(SRC)/tparam.h, see 2011-03-11T07:24:21Z!eggert@cs.ucla.edu.
22625
22626 2011-03-11 Paul Eggert <eggert@cs.ucla.edu>
22627
22628 Fix some minor problems found by GCC 4.5.2's static checks.
22629
22630 * fringe.c (update_window_fringes): Mark locals as initialized
22631 (Bug#8227).
22632 (destroy_fringe_bitmap, init_fringe_bitmap): Now static.
22633
22634 * alloc.c (mark_fringe_data): Move decl from here ...
22635 * lisp.h (mark_fringe_data) [HAVE_WINDOW_SYSTEM]: ... to here,
22636 to check its interface.
22637 (init_fringe_once): Do not declare unless HAVE_WINDOW_SYSTEM.
22638
22639 * fontset.c (free_realized_fontset): Now static.
22640 (Fset_fontset_font): Rename local to avoid shadowing.
22641 (fontset_font): Mark local as initialized.
22642 (FONTSET_SPEC, FONTSET_REPERTORY, RFONT_DEF_REPERTORY): Remove; unused.
22643
22644 * xrdb.c: Include "xterm.h", to check x_load_resources's interface.
22645
22646 * xselect.c (x_disown_buffer_selections): Remove; not used.
22647 (TRACE3) [!defined TRACE_SELECTION]: Remove; not used.
22648 (x_own_selection, Fx_disown_selection_internal): Rename locals
22649 to avoid shadowing.
22650 (x_handle_dnd_message): Remove local to avoid shadowing.
22651
22652 * lisp.h (GCPRO1_VAR, UNGCPRO_VAR): New macros,
22653 so that the caller can use some name other than gcpro1.
22654 (GCPRO1, UNGCPRO): Reimplement in terms of the new macros.
22655 * xfns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
22656 (Fx_backspace_delete_keys_p):
22657 Use them to avoid shadowing, and rename vars to avoid shadowing.
22658 (x_decode_color, x_set_name, x_window): Now static.
22659 (Fx_create_frame): Add braces to silence GCC warning.
22660 (Fx_file_dialog, Fx_select_font): Fix pointer signedness.
22661 (x_real_positions, xg_set_icon_from_xpm_data, x_create_tip_frame):
22662 Remove unused locals.
22663 (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
22664 (Fx_backspace_delete_keys_p): Rename locals to avoid shadowing.
22665 Some of these renamings use the new GCPRO1_VAR and UNGCPRO_VAR
22666 macros.
22667
22668 * xterm.h (x_mouse_leave): New decl.
22669
22670 * xterm.c (x_copy_dpy_color, x_focus_on_frame, x_unfocus_frame):
22671 Remove unused functions.
22672 (x_shift_glyphs_for_insert, XTflash, XTring_bell):
22673 (x_calc_absolute_position): Now static.
22674 (XTread_socket): Don't define label "out" unless it's used.
22675 Don't declare local "event" unless it's used.
22676 (x_iconify_frame, x_free_frame_resources): Don't declare locals
22677 unless they are used.
22678 (XEMBED_VERSION, xembed_set_info): Don't define unless needed.
22679 (x_fatal_error_signal): Remove; not used.
22680 (x_draw_image_foreground, redo_mouse_highlight, XTmouse_position):
22681 (x_scroll_bar_report_motion, handle_one_xevent, x_draw_bar_cursor):
22682 (x_error_catcher, x_connection_closed, x_error_handler):
22683 (x_error_quitter, xembed_send_message, x_iconify_frame):
22684 (my_log_handler): Rename locals to avoid shadowing.
22685 (x_delete_glyphs, x_ins_del_lines): Mark with NO_RETURN.
22686 (x_connection_closed): Tell GCC not to suggest NO_RETURN.
22687
22688 * xfaces.c (clear_face_cache, Fx_list_fonts, Fface_font):
22689 Rename or move locals to avoid shadowing.
22690 (tty_defined_color, merge_face_heights): Now static.
22691 (free_realized_faces_for_fontset): Remove; not used.
22692 (Fx_list_fonts): Mark variable that gcc -Wuninitialized
22693 does not deduce is never used uninitialized.
22694 (STRDUPA, LSTRDUPA, FONT_POINT_SIZE_QUANTUM): Remove; not used.
22695 (LFACEP): Define only if XASSERTS, as it's not needed otherwise.
22696
22697 * terminal.c (store_terminal_param): Now static.
22698
22699 * xmenu.c (menu_highlight_callback): Now static.
22700 (set_frame_menubar): Remove unused local.
22701 (xmenu_show): Rename parameter to avoid shadowing.
22702 (xmenu_show, xdialog_show, xmenu_show): Make local pointers "const"
22703 since they might point to immutable storage.
22704 (next_menubar_widget_id): Declare only if USE_X_TOOLKIT,
22705 since it's unused otherwise.
22706
22707 * xdisp.c (produce_glyphless_glyph): Initialize lower_xoff.
22708 Add a FIXME, since the code still doesn't look right. (Bug#8215)
22709 (Fcurrent_bidi_paragraph_direction): Simplify slightly; this
22710 avoids a gcc -Wuninitialized diagnostic.
22711 (display_line, BUILD_COMPOSITE_GLYPH_STRING, draw_glyphs):
22712 (note_mouse_highlight): Mark variables that gcc -Wuninitialized
22713 does not deduce are never used uninitialized.
22714
22715 * lisp.h (IF_LINT): New macro, copied from ../lib-src/emacsclient.c.
22716
22717 * xdisp.c (redisplay_window): Rename local to avoid shadowing.
22718 * window.c (window_loop, size_window):
22719 (run_window_configuration_change_hook, enlarge_window): Likewise.
22720
22721 * window.c (display_buffer): Now static.
22722 (size_window): Mark variables that gcc -Wuninitialized
22723 does not deduce are never used uninitialized.
22724 * window.h (check_all_windows): New decl, to forestall
22725 gcc -Wmissing-prototypes diagnostic.
22726 * dispextern.h (bidi_dump_cached_states): Likewise.
22727
22728 * charset.h (CHECK_CHARSET_GET_CHARSET): Rename locals to avoid
22729 shadowing.
22730 * charset.c (map_charset_for_dump, Fchar_charset): Likewise.
22731 Include <limits.h>.
22732 (Fsort_charsets): Redo min/max calculation to shorten the code a bit
22733 and to avoid gcc -Wuninitialized warning.
22734 (load_charset_map): Mark variables that gcc -Wuninitialized
22735 does not deduce are never used uninitialized.
22736 (load_charset): Abort instead of using uninitialized var (Bug#8229).
22737
22738 * coding.c (coding_set_source, coding_set_destination):
22739 Use "else { /* comment */ }" rather than "else /* comment */;"
22740 for clarity, and to avoid gcc -Wempty-body warning.
22741 (Fdefine_coding_system_internal): Don't redeclare 'i' inside
22742 a block, when the outer 'i' will do.
22743 (decode_coding_utf_8, decode_coding_utf_16, detect_coding_emacs_mule):
22744 (emacs_mule_char, decode_coding_emacs_mule, detect_coding_iso_2022):
22745 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5):
22746 (decode_coding_raw_text, decode_coding_charset, get_translation_table):
22747 (Fdecode_sjis_char, Fdefine_coding_system_internal):
22748 Rename locals to avoid shadowing.
22749 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
22750 * coding.c (emacs_mule_char, encode_invocation_designation):
22751 Now static, since they're not used elsewhere.
22752 (decode_coding_iso_2022): Add "default: abort ();" as a safety check.
22753 (decode_coding_object, encode_coding_object, detect_coding_system):
22754 (decode_coding_emacs_mule): Mark variables that gcc
22755 -Wuninitialized does not deduce are never used uninitialized.
22756 (detect_coding_iso_2022): Initialize a local variable that might
22757 be used uninitialized. Leave a FIXME because it's not clear that
22758 this initialization is needed. (Bug#8211)
22759 (ISO_CODE_LF, ISO_CODE_CR, CODING_ISO_FLAG_EUC_TW_SHIFT):
22760 (ONE_MORE_BYTE_NO_CHECK, UTF_BOM, UTF_16_INVALID_P):
22761 (SHIFT_OUT_OK, ENCODE_CONTROL_SEQUENCE_INTRODUCER):
22762 (ENCODE_DIRECTION_R2L, ENCODE_DIRECTION_L2R):
22763 Remove unused macros.
22764
22765 * category.c (hash_get_category_set): Remove unused local var.
22766 (copy_category_table): Now static, since it's not used elsewhere.
22767 * character.c (string_count_byte8): Likewise.
22768
22769 * ccl.c (CCL_WRITE_STRING, CCL_ENCODE_CHAR, Fccl_execute_on_string):
22770 (Fregister_code_conversion_map): Rename locals to avoid shadowing.
22771
22772 * chartab.c (copy_sub_char_table): Now static, since it's not used
22773 elsewhere.
22774 (sub_char_table_ref_and_range, char_table_ref_and_range):
22775 Rename locals to avoid shadowing.
22776 (ASET_RANGE, GET_SUB_CHAR_TABLE): Remove unused macros.
22777
22778 * bidi.c (bidi_check_type): Now static, since it's not used elsewhere.
22779 (BIDI_BOB): Remove unused macro.
22780
22781 * cm.c (cmgoto): Mark variables that gcc -Wuninitialized does not
22782 deduce are never used uninitialized.
22783 * term.c (encode_terminal_code): Likewise.
22784
22785 * term.c (encode_terminal_code): Now static. Remove unused local.
22786
22787 * tparam.h: New file.
22788 * term.c, tparam.h: Include it.
22789 * deps.mk (term.o, tparam.o): Depend on tparam.h.
22790 * term.c (tputs, tgetent, tgetflag, tgetnum, tparam, tgetstr):
22791 Move these decls to tparam.h, and make them agree with what
22792 is actually in tparam.c. The previous trick of using incompatible
22793 decls in different modules does not conform to the C standard.
22794 All callers of tparam changed to use tparam's actual API.
22795 * tparam.c (tparam1, tparam, tgoto):
22796 Use const pointers where appropriate.
22797
22798 * cm.c (calccost, cmgoto): Use const pointers where appropriate.
22799 * cm.h (struct cm): Likewise.
22800 * dispextern.h (do_line_insertion_deletion_costs): Likewise.
22801 * scroll.c (ins_del_costs, do_line_insertion_deletion_costs): Likewise.
22802 * term.c (tty_ins_del_lines, calculate_costs, struct fkey_table):
22803 (term_get_fkeys_1, append_glyphless_glyph, produce_glyphless_glyph):
22804 (turn_on_face, init_tty): Likewise.
22805 * termchar.h (struct tty_display_info): Likewise.
22806
22807 * term.c (term_mouse_position): Rename local to avoid shadowing.
22808
22809 * alloc.c (mark_ttys): Move decl from here ...
22810 * lisp.h (mark_ttys): ... to here, so that it's checked against defn.
22811
22812 2011-03-11 Andreas Schwab <schwab@linux-m68k.org>
22813
22814 * .gdbinit (pwinx, xbuffer): Fix access to buffer name.
22815
22816 2011-03-09 Juanma Barranquero <lekktu@gmail.com>
22817
22818 * search.c (compile_pattern_1): Remove argument regp, unused since
22819 revid:rms@gnu.org-19941211082627-3x1g1wyqkjmwloig.
22820 (compile_pattern): Don't pass it.
22821
22822 2011-03-08 Jan Djärv <jan.h.d@swipnet.se>
22823
22824 * xterm.h (DEFAULT_GDK_DISPLAY): New define.
22825 (GDK_WINDOW_XID, gtk_widget_get_preferred_size): New defines
22826 for ! HAVE_GTK3.
22827 (GTK_WIDGET_TO_X_WIN): Use GDK_WINDOW_XID.
22828
22829 * xmenu.c (menu_position_func): Call gtk_widget_get_preferred_size.
22830
22831 * gtkutil.c: Include gtkx.h if HAVE_GTK3. If ! HAVE_GTK3, define
22832 gdk_window_get_screen, gdk_window_get_geometry,
22833 gdk_x11_window_lookup_for_display and GDK_KEY_g.
22834 (xg_set_screen): Use DEFAULT_GDK_DISPLAY.
22835 (xg_get_pixbuf_from_pixmap): New function.
22836 (xg_get_pixbuf_from_pix_and_mask): Change parameters from GdkPixmap
22837 to Pixmap, take frame as parameter, remove GdkColormap parameter.
22838 Call xg_get_pixbuf_from_pixmap instead of
22839 gdk_pixbuf_get_from_drawable.
22840 (xg_get_image_for_pixmap): Do not make GdkPixmaps, call
22841 xg_get_pixbuf_from_pix_and_mask with Pixmap parameters instead.
22842 (xg_check_special_colors): Use GtkStyleContext and its functions
22843 for HAVE_GTK3.
22844 (xg_prepare_tooltip, xg_hide_tooltip): Call gdk_window_get_screen.
22845 (xg_prepare_tooltip, create_dialog, menubar_map_cb)
22846 (xg_update_frame_menubar, xg_tool_bar_detach_callback)
22847 (xg_tool_bar_attach_callback, xg_update_tool_bar_sizes):
22848 Call gtk_widget_get_preferred_size.
22849 (xg_frame_resized): gdk_window_get_geometry only takes 5
22850 parameters.
22851 (xg_win_to_widget, xg_event_is_for_menubar):
22852 Call gdk_x11_window_lookup_for_display.
22853 (xg_set_widget_bg): New function.
22854 (delete_cb): New function.
22855 (xg_create_frame_widgets): Connect delete-event to delete_cb.
22856 Call xg_set_widget_bg. Only set background pixmap for ! HAVE_GTK3
22857 (xg_set_background_color): Call xg_set_widget_bg.
22858 (xg_set_frame_icon): Call xg_get_pixbuf_from_pix_and_mask.
22859 (xg_create_scroll_bar): vadj is a GtkAdjustment for HAVE_GTK3.
22860 Only call gtk_range_set_update_policy if ! HAVE_GTK3.
22861 (xg_make_tool_item): Only connect xg_tool_bar_item_expose_callback
22862 if ! HAVE_GTK3.
22863 (update_frame_tool_bar): Call gtk_widget_hide.
22864 (xg_initialize): Use GDK_KEY_g.
22865
22866 * xsmfns.c (gdk_set_sm_client_id): Define to gdk_set_sm_client_id
22867 if ! HAVE_GTK3
22868 (x_session_initialize): Call gdk_x11_set_sm_client_id.
22869
22870 * xterm.c (XFillRectangle): Use cairo routines for HAVE_GTK3.
22871 (x_term_init): Disable Xinput(2) with GDK_CORE_DEVICE_EVENTS.
22872 Load ~/emacs.d/gtkrc only for ! HAVE_GTK3.
22873
22874 2011-03-08 Juanma Barranquero <lekktu@gmail.com>
22875
22876 * w32xfns.c (select_palette): Check success of RealizePalette against
22877 GDI_ERROR, not zero.
22878
22879 See ChangeLog.11 for earlier changes.
22880
22881 ;; Local Variables:
22882 ;; coding: utf-8
22883 ;; End:
22884
22885 Copyright (C) 2011-2013 Free Software Foundation, Inc.
22886
22887 This file is part of GNU Emacs.
22888
22889 GNU Emacs is free software: you can redistribute it and/or modify
22890 it under the terms of the GNU General Public License as published by
22891 the Free Software Foundation, either version 3 of the License, or
22892 (at your option) any later version.
22893
22894 GNU Emacs is distributed in the hope that it will be useful,
22895 but WITHOUT ANY WARRANTY; without even the implied warranty of
22896 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22897 GNU General Public License for more details.
22898
22899 You should have received a copy of the GNU General Public License
22900 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.