FILE's lock is now always .#FILE and may be a regular file.
[bpt/emacs.git] / src / ChangeLog
1 2013-03-05 Paul Eggert <eggert@cs.ucla.edu>
2
3 FILE's lock is now always .#FILE and may be a regular file (Bug#13807).
4 * filelock.c: Include <c-ctype.h>.
5 (MAX_LFINFO): New top-level constant.
6 (lock_info_type): Remove members pid, boot_time. Add members at,
7 dot, colon. Change user member to be the entire buffer, not a
8 pointer. This allows us to handle the case where a foreign
9 pid or boot time exceeds the local range. All uses changed.
10 (LINKS_MIGHT_NOT_WORK): New constant.
11 (FREE_LOCK_INFO): Remove, as the pieces no longer need freeing.
12 (defined_WINDOWSNT): Remove.
13 (MAKE_LOCK_NAME, file_in_lock_file_name):
14 Always use .#FILE (not .#-FILE) for the file lock,
15 even if it is a regular file.
16 (rename_lock_file): New function.
17 (create_lock_file): Use it.
18 (create_lock_file, read_lock_data):
19 Prefer a symbolic link for the lock file, falling back on a
20 regular file if symlinks don't work. Do not try to create
21 symlinks on MS-Windows, due to security hassles. Stick with
22 POSIXish functions (open, read, write, close, fchmod, readlink, symlink,
23 link, rename, unlink, mkstemp) when creating locks, as a GNUish
24 host may be using a Windowsish file system, and cannot use
25 MS-Windows-only system calls. Fall back on mktemp if mkstemp
26 doesn't work. Don't fail merely because of a symlink-contents
27 length limit in the current file system; fall back on regular
28 files. Increase the symlink contents length limit to 8 KiB, this
29 should be big enough for any real use and doesn't crunch the
30 stack.
31 (create_lock_file, lock_file_1, read_lock_data):
32 Simplify allocation of lock file buffers now that they fit in 8 KiB.
33 (lock_file_1): Return error number, not bool. All callers changed.
34 (ELOOP): New macro, if not already defined.
35 (read_lock_data): Return size of lock file contents, not Lisp object.
36 All callers changed. Handle a race condition if some other process
37 replaces a regular-file lock with a symlink lock or vice versa,
38 while we're trying to read the lock.
39 (current_lock_owner): Parse contents more carefully, to help avoid
40 confusing a regular-file lock with some other application's use
41 of the file. Check for lock file contents being too long, or
42 not parsing correctly.
43 (current_lock_owner, lock_file):
44 Allow foreign pid and boot times that exceed the local range.
45 (current_lock_owner, lock_if_free, lock_file):
46 Simplify allocation of lock file contents.
47 * w32.c (sys_rename_replace): New function, containing most of
48 the contents of the old sys_rename.
49 (sys_rename): Use it.
50 (fchmod): New dummy function.
51 * w32.h (sys_rename_replace, fchmod): New decls.
52
53 2013-03-05 Eli Zaretskii <eliz@gnu.org>
54
55 * bidi.c (bidi_resolve_explicit_1): Don't call CHAR_TO_BYTE or
56 bidi_count_bytes, as the callers now arrange for bidi_it->charpos
57 to be in sync with bidi_it->bytepos. Suggested by Dmitry Antipov
58 <dmantipov@yandex.ru>.
59
60 2013-03-05 Paul Eggert <eggert@cs.ucla.edu>
61
62 Fix a build failure on OpenBSD 4.x and MirBSD.
63 * sysdep.c (KERN_PROC, kinfo_proc)
64 [BSD_SYSTEM && (!KERN_PROC || __MirBSD__)]:
65 Define to KERN_PROC2 and kinfo_proc2, for OpenBSD 4.9 and MirBSD.
66 list-system-processes still returns nil, but at least it doesn't crash.
67 Problem reported by Nelson H. F. Beebe in
68 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00021.html>.
69
70 2013-03-05 Dmitry Antipov <dmantipov@yandex.ru>
71
72 * composite.c (get_composition_id, fill_gstring_header):
73 Use make_uninit_vector where appropriate.
74 * font.c (Ffont_get_glyphs, build_style_table): Likewise.
75 * xselect.c (clean_local_selection_data): Likewise.
76
77 2013-03-04 Paul Eggert <eggert@cs.ucla.edu>
78
79 Fix misuse of ImageMagick that caused core dump (Bug#13846).
80 * image.c (imagemagick_load_image): Calculate height and width
81 after flattening the image, not before.
82
83 2013-03-04 Dmitry Antipov <dmantipov@yandex.ru>
84
85 * font.c (Ffont_get_glyphs): Use convenient LGLYPH_NEW.
86 * ftfont.c (ftfont_shape_by_flt): Likewise.
87 * w32uniscribe.c (uniscribe_shape): Likewise.
88
89 2013-03-02 Paul Eggert <eggert@cs.ucla.edu>
90
91 The lock for FILE is now .#FILE or .#-FILE (Bug#13807).
92 The old approach, which fell back on DIR/.#FILE.0 through
93 DIR/.#FILE.9, had race conditions that could not be easily fixed.
94 If DIR/.#FILE is a non-symlink file, Emacs now does not create a
95 lock file for DIR/FILE; that is, DIR/FILE is no longer partly
96 protected by a lock if DIR/.#FILE is a non-symlink file ("partly"
97 because the locking mechanism was never reliable in that case).
98 This patch fixes this and other bugs discovered by a code
99 inspection that was prompted by
100 <http://lists.gnu.org/archive/html/emacs-devel/2013-02/msg00531.html>.
101 Also, this patch switches to .#-FILE (not .#FILE) on MS-Windows,
102 to avoid interoperability problems between the MS-Windows and
103 non-MS-Windows implementations. MS-Windows and non-MS-Windows
104 instances of Emacs now ignore each others' locks.
105 * filelock.c (defined_WINDOWSNT): New constant.
106 (MAKE_LOCK_NAME, fill_in_lock_file_name):
107 Don't create DIR/.#FILE.0 through DIR/.#FILE.9. Instead, create
108 DIR/.#FILE symlinks on non-MS-Windows hosts, and DIR/.#-FILE
109 regular files on MS-Windows hosts.
110 (MAKE_LOCK_NAME, unlock_file, Ffile_locked_p):
111 Use SAFE_ALLOCA to avoid problems with long file names.
112 (MAX_LFINFO): Now a local constant, not a global macro.
113 (IS_LOCK_FILE): Remove.
114 (lock_file_1): Don't inspect errno if symlink call succeeds;
115 that's not portable.
116 (lock_file): Document that this function can return if lock
117 creation fails.
118 (lock_file): Don't access freed storage.
119
120 2013-03-02 Andreas Schwab <schwab@linux-m68k.org>
121
122 * lisp.h (XPNTR) [!USE_LSB_TAG]: Remove extra paren. (Bug#13734)
123
124 2013-03-02 Paul Eggert <eggert@cs.ucla.edu>
125
126 * textprop.c: Use bool for booleans.
127 (validate_interval_range, Fadd_text_properties)
128 (Fremove_text_properties): Prefer bool to int when either works.
129
130 2013-03-02 Eli Zaretskii <eliz@gnu.org>
131
132 * textprop.c (Fadd_text_properties, Fremove_text_properties): If
133 the interval tree changes as a side effect of calling
134 modify_region, re-do processing starting from the call to
135 validate_interval_range. (Bug#13743)
136
137 2013-02-28 Eli Zaretskii <eliz@gnu.org>
138
139 * w32.c (sys_open): Don't reset the flags for FD in fd_info[].
140 (Bug#13546).
141
142 2013-02-27 Eli Zaretskii <eliz@gnu.org>
143
144 * filelock.c (create_lock_file) [WINDOWSNT]: Use _sopen with
145 _SH_DENYRW flag, instead of emacs_open, to deny any other process
146 access to the lock file until it is written and closed.
147 (Bug#13807)
148
149 2013-02-27 Paul Eggert <eggert@cs.ucla.edu>
150
151 * callint.c (Qcall_interactively):
152 * macros.c (Qexecute_kbd_macro):
153 Now static.
154
155 2013-02-26 Bastien Guerry <bzg@gnu.org>
156
157 * window.c (Frecenter): Tiny docstring enhancement.
158
159 2013-02-26 Paul Eggert <eggert@cs.ucla.edu>
160
161 Minor textprop integer cleanup.
162 * intervals.h, textprop.c (add_text_properties_from_list):
163 Return void, not int, since nobody uses the return value.
164 * textprop.c (validate_plist, add_properties, remove_properties)
165 (Fadd_text_properties):
166 Don't assume list length fits in int.
167 (interval_has_all_properties, interval_has_some_properties)
168 (interval_has_some_properties_list, add_properties, remove_properties)
169 (Fadd_text_properties, Fremove_text_properties)
170 (Fremove_list_of_text_properties, text_property_stickiness):
171 Use bool for booleans.
172 (Fadd_text_properties, Fremove_text_properties):
173 (Fremove_list_of_text_properties):
174 Reindent do-while as per GNU style.
175
176 2013-02-25 Eli Zaretskii <eliz@gnu.org>
177
178 Implement CLASH_DETECTION for MS-Windows.
179
180 * filelock.c [WINDOWSNT]: Include w32.h.
181 (MAKE_LOCK_NAME): Don't use 'lock', it clashes with MS runtime
182 function of that name. Up-case the macro arguments.
183 (IS_LOCK_FILE): New macro.
184 (fill_in_lock_file_name): Use IS_LOCK_FILE instead of S_ISLNK.
185 (create_lock_file): New function, with body extracted from
186 lock_file_1.
187 [WINDOWSNT]: Implement lock files by writing a regular file with
188 the lock information as its contents.
189 (read_lock_data): New function, on Posix platforms just calls
190 emacs_readlinkat.
191 [WINDOWSNT]: Read the lock info from the file.
192 (current_lock_owner): Call read_lock_data instead of calling
193 emacs_readlinkat directly.
194 (lock_file) [WINDOWSNT]: Run the file name through
195 dostounix_filename.
196
197 * w32proc.c (sys_kill): Support the case of SIG = 0, in which case
198 just check if the process by that PID exists.
199
200 * w32.c (sys_open): Don't reset the _O_CREAT flag if _O_EXCL is
201 also present, as doing so will fail to error out if the file
202 already exists.
203
204 * makefile.w32-in ($(BLD)/filelock.$(O)): Depend on src/w32.h.
205
206 * textprop.c (Fadd_text_properties, Fremove_text_properties)
207 (Fremove_list_of_text_properties): Skip all of the intervals in
208 the region between START and END that already have resp. don't
209 have the requested properties, not just the first one. Add
210 assertions that the loop afterwards always modifies the
211 properties. (Bug#13743)
212
213 2013-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
214
215 * callint.c (Fcall_interactively): Use the right lexical environment
216 for `interactive' specs (bug#13811).
217 * eval.c (Feval): Accept a lexical environment.
218
219 2013-02-25 Paul Eggert <eggert@cs.ucla.edu>
220
221 Simplify data_start configuration (Bug#13783).
222 This is a followon simplification to the fix for Bug#13650.
223 * Makefile.in (LD_FIRSTFLAG, LIB_GCC, CRT_DIR, LIB_STANDARD)
224 (START_FILES): Remove. All uses removed.
225 (otherobj): Remove $(VMLIMIT_OBJ), as it's now first.
226 (ALLOBJS): Move here from autodeps.mk, and with VMLIMITS_OBJ first.
227 (buildobj.h): Use it.
228 ($(ALLOBJS)): Depend on globals.h.
229 (temacs$(EXEEXT)): Use $(ALLOBJS).
230 * autodeps.mk (ALLOBJS): Move to Makefile.in.
231 * deps.mk (vm-limit.o):
232 * makefile.w32-in ($(BLD)/vm-limit.$(O)):
233 Do not depend on mem-limits.h.
234 * emacs.c (__do_global_ctors, __do_global_ctors_aux)
235 (__do_global_dtors, __CTOR_LIST__, __DTOR_LIST__)
236 [__GNUC__ && !ORDINARY_LINK]: Remove.
237 * mem-limits.h, pre-crt0.c: Remove.
238 * unexaix.c, unexcoff.c: Don't include mem-limits.h.
239 * unexcoff.c (etext): New decl.
240 (make_hdr): Use DATA_START instead of start_of_data.
241 * vm-limit.c: Move most of mem-limits.h's contents here.
242 (data_start): New decl. It's OK if this is approximate,
243 so simplify-away some unnecessary exactness.
244 (POINTER): Remove; all uses removed.
245 (data_space_start): Now char *, to avoid casts.
246 (exceeds_lisp_ptr): New function, replacing the old
247 EXCEEDS_LISP_PTR macro. All uses changed.
248 (check_memory_limits): Simplify and remove casts.
249 (start_of_data) [!CANNOT_DUMP || !SYSTEM_MALLOC]: Remove.
250 (memory_warnings): Use data_start instead of start_of_data.
251
252 2013-02-24 Andreas Schwab <schwab@linux-m68k.org>
253
254 * xdisp.c (set_message): Only check for debug-on-message if STRING
255 is a string. (Bug#13797)
256
257 2013-02-24 Paul Eggert <eggert@cs.ucla.edu>
258
259 Fix regression introduced by July 10 filelock.c patch.
260 * filelock.c (fill_in_lock_file_name): Fix crash caused by the
261 2012-07-10 patch to this file. Reported by Eli Zaretskii in
262 <http://lists.gnu.org/archive/html/emacs-devel/2013-02/msg00533.html>
263 and diagnosed by Andreas Schwab in
264 <http://lists.gnu.org/archive/html/emacs-devel/2013-02/msg00534.html>.
265
266 2013-02-22 Paul Eggert <eggert@cs.ucla.edu>
267
268 Assume C89 or better.
269 * ralloc.c (SIZE, POINTER, NIL):
270 * vm-limit.c (POINTER):
271 Remove, replacing all uses with C89 equivalents. These old
272 symbols were present only for porting to pre-C89 platforms.
273
274 2013-02-22 Claudio Bley <claudio.bley@gmail.com>
275
276 * w32.c (emacs_gnutls_pull): Don't call 'select', and don't loop.
277 This avoids warning messages reported as part of Bug#13546.
278
279 2013-02-21 Ken Brown <kbrown@cornell.edu>
280
281 * sheap.c (report_sheap_usage): Fix arguments of message1_no_log.
282
283 2013-02-20 Stefan Monnier <monnier@iro.umontreal.ca>
284
285 * sheap.c (report_sheap_usage): Prefer message1_nolog.
286
287 * keyboard.c (Qcommand_execute): New var.
288 (command_loop_1, read_char): Use it.
289 (Fcommand_execute): Remove, replace by an Elisp implementation.
290 (syms_of_keyboard): Adjust accordingly.
291
292 2013-02-19 Daniel Colascione <dancol@dancol.org>
293
294 * sheap.c (report_sheap_usage): Use message, not message1, so
295 that we don't try to create a buffer while we're in the middle
296 of dumping Emacs. Explain why.
297
298 2013-02-20 Dmitry Antipov <dmantipov@yandex.ru>
299
300 * search.c (find_newline): Return byte position in bytepos.
301 Adjust comment.
302 (find_next_newline_no_quit, find_before_next_newline):
303 Add bytepos argument.
304 * lisp.h (find_newline, find_next_newline_no_quit)
305 (find_before_next_newline): Adjust prototypes.
306 * bidi.c (bidi_find_paragraph_start):
307 * editfns.c (Fconstrain_to_field, Fline_end_position):
308 * indent.c (compute_motion, vmotion):
309 * xdisp.c (back_to_previous_line_start, forward_to_next_line_start):
310 (get_visually_first_element, move_it_vertically_backward):
311 Adjust users and avoid calls to CHAR_TO_BYTE where appropriate.
312
313 2013-02-19 Eli Zaretskii <eliz@gnu.org>
314
315 * w32proc.c (new_child): Avoid leaking handles if the subprocess
316 resources were not orderly released.
317
318 2013-02-17 Eli Zaretskii <eliz@gnu.org>
319
320 * xdisp.c (x_draw_vertical_border): For a window that is neither
321 the leftmost nor the rightmost, redraw both the left and the right
322 vertical borders. (Bug#13723)
323
324 2013-02-17 Stefan Monnier <monnier@iro.umontreal.ca>
325
326 * xml.c (init_libxml2_functions):
327 * sound.c (sound_warning):
328 * sheap.c (report_sheap_usage):
329 * process.c (wait_reading_process_output):
330 * msdos.c (XMenuActivate):
331 * macros.c (Fstart_kbd_macro, Fend_kbd_macro):
332 * keyboard.c (top_level_1):
333 * editfns.c (Fmessage, Fmessage_box):
334 * callint.c (Fcall_interactively):
335 * fns.c (Fyes_or_no_p): Prefer `message1' over `message'.
336
337 2013-02-17 Jan Djärv <jan.h.d@swipnet.se>
338
339 * xterm.c (syms_of_xterm): Move scroll-bar-adjust-thumb-portion ...
340 * frame.c (syms_of_frame): ... to here.
341
342 2013-02-16 Eli Zaretskii <eliz@gnu.org>
343
344 * w32.c (sys_chown): Remove unused function.
345
346 * w32term.c <input_signal_count>: Declare 'volatile'
347 unconditionally. (Bug#9066)
348
349 * w32.c (set_errno): Reset h_errno and don't set it to any other
350 value. Set errno instead.
351 (check_errno): Reset h_errno.
352 (sys_socket, socket_to_fd, sys_bind, sys_connect)
353 (sys_gethostname, sys_getservbyname, sys_getpeername)
354 (sys_shutdown, sys_setsockopt, sys_listen, sys_getsockname)
355 (sys_accept, sys_recvfrom, sys_sendto, fcntl, sys_read): Don't set
356 h_errno.
357 (sys_gethostbyname): Set h_errno only errors detected.
358
359 2013-02-15 Paul Eggert <eggert@cs.ucla.edu>
360
361 * process.c (h_errno) [!HAVE_H_ERRNO]: Remove unused decl.
362
363 2013-02-15 Eli Zaretskii <eliz@gnu.org>
364
365 * keyboard.c (read_char): Fix calculation of auto-save time out
366 when auto-save-timeout is less than 4. (Bug#13720)
367
368 * w32proc.c (new_child): Free up to 2 slots of dead processes at a
369 time. Improve diagnostics in DebPrint. (Bug#13546)
370
371 * w32.c (sys_socket, sys_bind, sys_connect, sys_gethostname)
372 (sys_gethostbyname, sys_getservbyname, sys_getpeername)
373 (sys_shutdown, sys_setsockopt, sys_listen, sys_getsockname)
374 (sys_accept, sys_recvfrom, sys_sendto, fcntl): In case of failure,
375 make sure errno is set to an appropriate value. (Bug#13546)
376 (socket_to_fd): Add assertion against indexing fd_info[] with a
377 value that is out of bounds.
378 (sys_accept): If fd is negative, do not set up the child_process
379 structure for reading.
380
381 2013-02-15 Dmitry Antipov <dmantipov@yandex.ru>
382
383 * composite.c (fill_gstring_header): Remove useless prototype.
384 Break long line.
385 * lisp.h (message_dolog, compile_pattern): Adjust prototype.
386 * print.c (PRINTDECLARE, print_object):
387 * search.c (compile_pattern, fast_looking_at, search_buffer):
388 (simple_search, boyer_moore, Freplace_match):
389 * xdisp.c (c_string_pos, number_of_chars, message_dolog):
390 (get_overlay_arrow_glyph_row, display_mode_element):
391 (decode_mode_spec_coding, message3):
392 * xfaces.c (face_at_string_position): Use bool for booleans.
393 Adjust comments.
394
395 2013-02-15 Paul Eggert <eggert@cs.ucla.edu>
396
397 Fix AIX port (Bug#13650).
398 * lisp.h (XPNTR) [!USE_LSB_TAG && DATA_SEG_BITS]:
399 Fix bug introduced in 2012-07-27 change. DATA_SEG_BITS, if set,
400 was #undeffed earlier, so it cannot be used as a macro here.
401 Use the constant and not the macro.
402
403 2013-02-15 Eli Zaretskii <eliz@gnu.org>
404
405 * w32proc.c (new_child): If no vacant slots are found in
406 child_procs[], make another pass looking for slots whose process
407 has exited or died. (Bug#13546)
408
409 * w32.c (sys_pipe): When failing due to file descriptors above
410 MAXDESC, set errno to EMFILE.
411 (_sys_read_ahead): Update cp->status when failing to read serial
412 communications input, so that the status doesn't stay at
413 STATUS_READ_IN_PROGRESS. (Bug#13546)
414
415 2013-02-14 Jan Djärv <jan.h.d@swipnet.se>
416
417 * gtkutil.c (tb_size_cb): New function.
418 (xg_create_tool_bar): Connect size-allocate to tb_size_cb (Bug#13512).
419
420 2013-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
421
422 * keyboard.c (active_maps): Fcurrent_active_maps expects a position, not
423 an event.
424
425 2013-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
426
427 * keyboard.c (syms_of_keyboard): Further tweaks of docstring.
428
429 2013-02-13 Dmitry Antipov <dmantipov@yandex.ru>
430
431 * font.c (font_range): Add pos_byte argument. Adjust comment
432 and break long line.
433 * font.h (font_range): Adjust prototype.
434 * composite.c (autocmp_chars): Pass byte position to font_range.
435 Break long line. Remove useless prototype and format comment.
436
437 2013-02-13 Glenn Morris <rgm@gnu.org>
438
439 * keyboard.c (input-decode-map, key-translation-map): Doc fixes.
440
441 2013-02-13 Paul Eggert <eggert@cs.ucla.edu>
442
443 Improve AIX port some more (Bug#13650).
444 With this, it should be as good as it was in 23.3, though it's
445 still pretty bad: the dumped emacs does not run. See Mark Fleishman in
446 http://lists.gnu.org/archive/html/help-gnu-emacs/2011-04/msg00287.html
447 * unexaix.c (start_of_text): Remove.
448 (_data, _text): Declare as char[], not int, as AIX manual suggests.
449 (bias, lnnoptr, text_scnptr, data_scnptr, load_scnptr)
450 (orig_load_scnptr, orig_data_scnptr):
451 Now off_t, not long, since they are file offsets.
452 (make_hdr): Use _data, not start_of_data ().
453 This is the key part of the fix.
454 (make_hdr, unrelocate_symbols): Use off_t for file offsets.
455 (unrelocate_symbols): Cast pointers to intptr_t, not to ulong.
456
457 * pre-crt0.c (data_start): Initialize to 1.
458 This ports to compilers that optimize the external declaration
459 'int x = 0;' as if it were 'int x;' to shrink the executable.
460
461 Improve AIX port (Bug#13650).
462 This doesn't fix the bug, but it makes progress: Emacs builds now.
463 * unexaix.c: Include inttypes.h, stdarg.h.
464 (report_error, report_error_1): Mark as _Noreturn.
465 (report_error): Don't report the wrong errno.
466 (report_error_1): Now varargs. All callers changed.
467 (make_hdr): Use uintptr_t, not unsigned, when converting pointers
468 to unsigned. Don't use ADDR_CORRECT, as it no longer exists.
469 (write_ptr): Use %p to print address rather than %lx and a cast
470 to unsigned long. Grow buffer a bit, to be safer.
471
472 2013-02-13 Eli Zaretskii <eliz@gnu.org>
473
474 * bidi.c (bidi_resolve_neutral): After finding the next
475 non-neutral character, accept NEUTRAL_ON type as well, because
476 directional control characters, such as LRE and RLE, have their
477 type converted to that by bidi_resolve_weak. This avoids aborts
478 when LRE/RLE follows a run of neutrals.
479 (bidi_move_to_visually_next): Assert that return value of
480 bidi_peek_at_next_level is non-negative. Negative values will
481 cause an infloop.
482
483 2013-02-13 Paul Eggert <eggert@cs.ucla.edu>
484
485 Minor getenv-related fixes.
486 * callproc.c (Fcall_process_region) [!DOS_NT]:
487 Avoid unnecessary duplicate call to getenv.
488 * callproc.c (init_callproc):
489 * dispnew.c (init_display):
490 * sysdep.c (sys_subshell):
491 Omit unnecessary cast of getenv or egetenv.
492
493 2013-02-13 Juanma Barranquero <lekktu@gmail.com>
494
495 * makefile.w32-in ($(BLD)/filelock.$(O), $(BLD)/sysdep.$(O)):
496 Update dependencies.
497
498 2013-02-12 Eli Zaretskii <eliz@gnu.org>
499
500 * xdisp.c (redisplay_internal): Don't set w->region_showing to the
501 marker's position.
502 (display_line): Set w->region_showing to the value of
503 it->region_beg_charpos, not to -1. This fixes redisplay
504 optimization when cursor is moved up after M->. (Bug#13623)
505 (Bug#13626)
506 (try_scrolling): Scroll text up more if point is too close to ZV
507 and inside the scroll margin. This makes sure point is moved
508 outside the scroll margin in these cases.
509
510 * window.h (struct window): region_showing can no longer be
511 negative.
512
513 2013-02-11 Paul Eggert <eggert@cs.ucla.edu>
514
515 Tune by using memchr and memrchr.
516 * doc.c (Fsnarf_documentation):
517 * fileio.c (Fsubstitute_in_file_name):
518 * search.c (find_newline, scan_newline):
519 * xdisp.c (pos_visible_p, display_count_lines):
520 Use memchr and memrchr rather than scanning byte-by-byte.
521 * search.c (find_newline): Rename from scan_buffer.
522 Omit first arg TARGET, as it's always '\n'. All callers changed.
523
524 Clean up read_key_sequence a tiny bit more.
525 * keyboard.c (read_char_x_menu_prompt) [HAVE_MENUS]:
526 (read_key_sequence): Remove unused locals.
527
528 2013-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
529
530 Clean up read_key_sequence a bit; reread active keymaps after first event.
531 * keyboard.c (read_char, read_char_x_menu_prompt)
532 (read_char_minibuf_menu_prompt):
533 Replace nmaps+maps with a single `map' arg.
534 (follow_key): Operate on a single map.
535 (active_maps): New function.
536 (test_undefined): Also return true for nil bindings.
537 (read_key_sequence): Use active_maps to replace the arrays of keymaps with
538 a single (composed) keymap. Remember `first_event' to choose the right
539 set of active keymaps. Recompute the set of keymaps after receiving
540 the first event. Remove GOBBLE_FIRST_EVENT.
541 (syms_of_keyboard): Remove inhibit_local_menu_bar_menus.
542 * keyboard.h (read_char): Update declaration.
543 * lread.c (read_filtered_event): Adjust call to read_char.
544
545 2013-02-11 Eli Zaretskii <eliz@gnu.org>
546
547 * xdisp.c (move_it_vertically_backward, move_it_by_lines):
548 Don't use the limitation on backwards movement when lines are truncated
549 in the window. (Bug#13675)
550
551 2013-02-11 Dmitry Antipov <dmantipov@yandex.ru>
552
553 * marker.c (set_marker_internal): If desired position is passed
554 as a marker, avoid call to buf_charpos_to_bytepos.
555 * window.c (Fset_window_point): Omit redundant type checking.
556 (Fset_window_start): Likewise. Format comment.
557 (window_scroll_pixel_based): Use set_marker_restricted_both
558 with character and byte positions obtained from an iterator.
559 (Fset_window_configuration): Use set_marker_restricted_both.
560 * xdisp.c (message_dolog): Likewise.
561
562 2013-02-10 Eli Zaretskii <eliz@gnu.org>
563
564 * xdisp.c (move_it_vertically_backward, move_it_by_lines):
565 When text lines are longer than window's screen lines, don't move back
566 too far. This speeds up some redisplay operations. (Bug#13675)
567
568 2013-02-10 Dmitry Antipov <dmantipov@yandex.ru>
569
570 * syntax.c (scan_sexps_forward): Fix byte position calculation
571 Bug#13664 (a.k.a Bug#13667) introduced with 2013-02-08 change.
572
573 2013-02-10 Paul Eggert <eggert@cs.ucla.edu>
574
575 * fileio.c (Fexpand_file_name): Omit confusing pointer comparison
576 that was not needed.
577
578 2013-02-09 Paul Eggert <eggert@cs.ucla.edu>
579
580 Minor hashing refactoring.
581 * fns.c (SXHASH_REDUCE): Move to lisp.h.
582 (sxhash_float): Return EMACS_UINT, for consistency with the other
583 hash functions.
584 * lisp.h (INTMASK): Now a macro, since SXHASH_REDUCE is now a
585 non-static inline function and therefore can't use static vars.
586 (SXHASH_REDUCE): Move here from fns.c, and make it inline.
587 * profiler.c (hashfn_profiler): Use SXHASH_REDUCE, to be consistent
588 with the other hash functions.
589
590 2013-02-09 Eli Zaretskii <eliz@gnu.org>
591
592 * callproc.c (Fcall_process_region) [WINDOWSNT]: Make sure the
593 XXXXXX part of the temporary file pattern is not downcased even
594 when w32-downcase-file-names is non-nil. (Bug#13661)
595
596 * xdisp.c (decode_mode_spec): Remove handling of %t.
597
598 * msdos.c (careadlinkatcwd): Remove.
599
600 2013-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
601
602 * lread.c (skip_dyn_bytes): New function (bug#12598).
603 (read1): Use it. Use getc instead of READCHAR to read bytes.
604 (load_each_byte): Remove. Update users.
605
606 2013-02-08 Dmitry Antipov <dmantipov@yandex.ru>
607
608 * search.c (scan_buffer): Calculate end byte position just once.
609 (scan_newline): Do not recalculate start_byte.
610 (search_command): Use eassert.
611 * syntax.c (struct lisp_parse_state): New member location_byte.
612 (scan_sexps_forward): Record from_byte and avoid redundant
613 character to byte position calculation ...
614 (Fparse_partial_sexp): ... here. Break too long line.
615
616 2013-02-08 Dmitry Antipov <dmantipov@yandex.ru>
617
618 * lisp.h (make_uninit_vector): New function.
619 * alloc.c (Fvector, Fmake_byte_code):
620 * ccl.c (Fregister_ccl_program):
621 * charset.c (Fdefine_charset_internal, define_charset_internal):
622 * coding.c (make_subsidiaries, Fdefine_coding_system_internal):
623 * composite.c (syms_of_composite):
624 * font.c (Fquery_font, Ffont_info, syms_of_font):
625 * fontset.c (FONT_DEF_NEW, Fset_fontset_font):
626 * ftfont.c (ftfont_shape_by_flt):
627 * indent.c (recompute_width_table):
628 * nsselect.m (clean_local_selection_data):
629 * syntax.c (init_syntax_once):
630 * w32unsubscribe.c (uniscribe_shape):
631 * window.c (Fcurrent_window_configuration):
632 * xfaces.c (Fx_family_fonts):
633 * xselect.c (selection_data_to_lisp_data): Use it.
634
635 2013-02-07 Dmitry Antipov <dmantipov@yandex.ru>
636
637 * coding.c (Fdefine_coding_system_internal): Use AREF where
638 argument is known to be a vector.
639 * fns.c (Flocale_info): Likewise for ASET.
640 * xselect.c (selection_data_to_lisp_data): Likewise for ASET.
641 * w32fns.c (w32_parse_hot_key): Likewise for ASIZE and AREF.
642
643 2013-02-05 Jan Djärv <jan.h.d@swipnet.se>
644
645 * nsmenu.m (update_frame_tool_bar): Check for negative tool bar
646 height.
647
648 * nsterm.h (HAVE_NATIVE_FS): Define if OSX => 10.7.
649 (EmacsView): Add fs_is_native, fsIsNative, isFullscreen and
650 updateCollectionBehaviour.
651
652 * nsterm.m (NEW_STYLE_FS): Remove.
653 (ns_last_use_native_fullscreen): New variable.
654 (x_make_frame_visible): Replace NEW_STYLE_FS with isFullscreen.
655 (x_set_window_size): Do not take title bar and tool bar into account
656 if isFullscreen returns YES.
657 (ns_fullscreen_hook): Replace NEW_STYLE_FS with isFullscreen.
658 (check_native_fs): New function.
659 (ns_select, ns_read_socket): Call check_native_fs if HAVE_NATIVE_FS.
660 (ns_term_init): Remove NEW_STYLE_FS.
661 (updateFrameSize:, windowWillResize:toSize:): Only adjust for title bar
662 and tool bar if isFullscreen returns NO.
663 (windowDidResize:): Replace NEW_STYLE_FS with fsIsNative.
664 (initFrameFromEmacs:): Initialize fs_is_native. Replace NEW_STYLE_FS
665 with HAVE_NATIVE_FS.
666 (window:willUseFullScreenPresentationOptions:): New method.
667 (windowDidEnterFullScreen:): Replace NEW_STYLE_FS with fsIsNative.
668 Hide toolbar if not enabled (Bug#13444).
669 (windowDidExitFullScreen:): Call updateCollectionBehaviour.
670 Restore tool bar if enabled, hide it otherwise (Bug#13444).
671 (fsIsNative, isFullscreen, updateCollectionBehaviour): New methods.
672 (toggleFullScreen:): If fs_is_native, call toggleFullScreen on
673 window. Do no set FRAME_EXTERNAL_TOOL_BAR (f) to 0.
674 Check FRAME_EXTERNAL_TOOL_BAR (f) before restoring
675 FRAME_TOOLBAR_HEIGHT (f). Call updateFrameSize when going non-fs.
676 (syms_of_nsterm): Add ns-use-native-fullscreen.
677
678 2013-02-04 Paul Eggert <eggert@cs.ucla.edu>
679
680 * fileio.c (Qchoose_write_coding_system): Now static.
681
682 2013-02-04 Eli Zaretskii <eliz@gnu.org>
683
684 * xdisp.c (window_buffer_changed): region_showing can be negative,
685 which still means region is being displayed.
686 (redisplay_internal): Resurrect code that forced redisplay of the
687 whole window when showing region and the mark has changed.
688 Record the new mark position to allow redisplay optimizations.
689 (display_line): If it->region_beg_charpos is non-zero, set the
690 window's region_showing member to -1. (Bug#13623) (Bug#13626)
691
692 * window.h (struct window) <region_showing>: Declare ptrdiff_t,
693 not bitfield of 1 bit.
694
695 2013-02-03 Daniel Colascione <dancol@dancol.org>
696
697 * emacs.c: Use execvp, not execv, when DAEMON_MUST_EXEC, so that
698 daemon mode works on cygw32 when Emacs is installed and not just
699 during development.
700
701 2013-02-02 Paul Eggert <eggert@cs.ucla.edu>
702
703 Avoid file time stamp bug on MS-Windows (Bug#13149).
704 * fileio.c (Fwrite_region): Don't use the heuristic on empty files,
705 as FAT32 doesn't update time stamps when truncating them.
706 Also, check that a file time stamp is not a multiple of 100 ns;
707 this should catch all instances of the problem on MS-Windows,
708 as its native file system resolution is 100 ns or worse, and
709 checking for a non-multiple of 100 ns should impose only a small
710 overhead on systems with ns resolution.
711
712 2013-02-02 Eli Zaretskii <eliz@gnu.org>
713
714 Avoid encoding file names on MS-Windows when they need to be run
715 through dostounix_filename.
716 * w32.c (normalize_filename): Accept an additional argument
717 MULTIBYTE; if non-zero, traverse the file name by bytes and don't
718 downcase it even if w32-downcase-file-names is non-nil.
719 (dostounix_filename): Accept an additional argument MULTIBYTE and
720 pass it to normalize_filename.
721 (emacs_root_dir): Adjust.
722
723 * msdos.h (dostounix_filename): Adjust prototype.
724
725 * w32.h (dostounix_filename): Adjust prototype.
726
727 * msdos.c (dostounix_filename): Accept an additional argument and
728 ignore it.
729 (init_environment): Adjust callers of dostounix_filename.
730
731 * fileio.c (Ffile_name_directory, file_name_as_directory)
732 (directory_file_name, Fexpand_file_name)
733 (Fsubstitute_in_file_name): [DOS_NT] Adjust call to
734 dostounix_filename.
735 [WINDOWSNT]: Downcase file names if w32-downcase-file-names is
736 non-nil.
737 (Fsubstitute_in_file_name): [DOS_NT] Don't downcase environment
738 variables, as egetenv is case-insensitive for DOS_NT.
739
740 * dired.c (file_name_completion): Don't call Fdirectory_file_name
741 with an encoded file name.
742
743 * w32proc.c (Fw32_short_file_name, Fw32_long_file_name):
744 Adjust calls to dostounix_filename.
745
746 * w32fns.c (Fx_file_dialog): Adjust call to dostounix_filename.
747
748 * unexw32.c (unexec): Adjust call to dostounix_filename.
749
750 * termcap.c (tgetent) [MSDOS]: Adjust call to dostounix_filename.
751
752 * emacs.c (decode_env_path) [DOS_NT]: Adjust call to
753 dostounix_filename.
754
755 * callproc.c (Fcall_process) [MSDOS]: Adjust call to
756 dostounix_filename.
757
758 * callproc.c (Fcall_process): Make sure program name in PATH and
759 new_argv[0] is encoded, if needed. Otherwise, un-encoded string
760 is passed to exec/spawnve, which fails unless the file-name
761 encoding is UTF-8.
762
763 * w32proc.c (sys_spawnve): Make sure escape_char is initialized,
764 even if w32-quote-process-args is nil.
765
766 2013-02-01 Paul Eggert <eggert@cs.ucla.edu>
767
768 Fix timestamp bug when write-region appends nothing (Bug#13149).
769 * fileio.c (Fwrite_region): When neither O_EXCL nor O_TRUNC is used,
770 the file's time stamp doesn't change if Emacs happens to write nothing
771 to the file, and on a buggy file system this could cause Emacs to
772 incorrectly infer that the file system doesn't have the bug.
773 Avoid this problem by inhibiting the inference in this case.
774
775 2013-02-01 Dmitry Antipov <dmantipov@yandex.ru>
776
777 * window.h (struct window): Convert base_line_number, base_line_pos
778 and column_number_displayed members from Lisp_Object to ptrdiff_t.
779 Convert region_showing member from Lisp_Object to bitfield.
780 Remove sequence_number member. Adjust comments.
781 * window.c (sequence_number): Remove.
782 (make_window): Initialize column_number_displayed.
783 * print.c (print_object): Follow the printed representation of
784 frames and print window pointer to distinguish between windows.
785 (adjust_window_count): Invalidate base_line_pos. Adjust comment.
786 * xdisp.c (wset_base_line_number, wset_base_line_pos)
787 (wset_column_number_displayed, wset_region_showing): Remove.
788 (window_buffer_changed, mode_line_update_needed, redisplay_internal)
789 (try_scrolling, try_cursor_movement, redisplay_window)
790 (try_window_reusing_current_matrix, try_window_id, display_line)
791 (display_mode_lines, decode_mode_spec): Adjust users.
792 * .gdbinit (pwinx): Do not print sequence_number.
793
794 2013-02-01 Paul Eggert <eggert@cs.ucla.edu>
795
796 Use fdopendir, fstatat and readlinkat, for efficiency (Bug#13539).
797 * conf_post.h (GNULIB_SUPPORT_ONLY_AT_FDCWD): Remove.
798 * dired.c: Include <fcntl.h>.
799 (open_directory): New function, which uses open and fdopendir
800 rather than opendir. DOS_NT platforms still use opendir, though.
801 (directory_files_internal, file_name_completion): Use it.
802 (file_attributes): New function, with most of the old Ffile_attributes.
803 (directory_files_internal, Ffile_attributes): Use it.
804 (file_attributes, file_name_completion_stat): First arg is now fd,
805 not dir name. All uses changed. Use fstatat rather than lstat +
806 stat.
807 (file_attributes): Use emacs_readlinkat rather than Ffile_symlink_p.
808 * fileio.c: Include <allocator.h>, <careadlinkat.h>.
809 (emacs_readlinkat): New function, with much of the old
810 Ffile_symlink_p, but with an fd argument for speed.
811 It uses readlinkat rather than careadlinkatcwd, so that it
812 need not assume the working directory.
813 (Ffile_symlink_p): Use it.
814 * filelock.c (current_lock_owner): Use emacs_readlinkat
815 rather than emacs_readlink.
816 * lisp.h (emacs_readlinkat): New decl.
817 (READLINK_BUFSIZE, emacs_readlink): Remove.
818 * sysdep.c: Do not include <allocator.h>, <careadlinkat.h>.
819 (emacs_norealloc_allocator, emacs_readlink): Remove.
820 This stuff is moved to fileio.c.
821 * w32.c (fstatat, readlinkat): New functions.
822 (careadlinkat): Don't check that fd == AT_FDCWD.
823 (careadlinkatcwd): Remove; no longer needed.
824
825 2013-01-31 Glenn Morris <rgm@gnu.org>
826
827 * fileio.c (choose_write_coding_system): Make it callable from Lisp.
828 (Fwrite_region): Update for new choose_write_coding_system args.
829 Move the last piece of choose_write_coding_system here. (Bug#13522)
830 (syms_of_fileio): Add choose-write-coding-system.
831
832 2013-01-30 Eli Zaretskii <eliz@gnu.org>
833
834 * w32.c (sys_open): Zero out the flags for the new file descriptor.
835 (sys_close): Zero out the flags for the file descriptor before
836 closing it. (Bug#13546)
837
838 * w32.c (parse_root, get_volume_info, readdir, read_unc_volume)
839 (logon_network_drive, stat_worker, symlink, chase_symlinks):
840 Use CharNextExA and CharPrevExA to iterate over file names encoded in
841 DBCS. (Bug#13553)
842
843 * w32.c (w32_get_long_filename, init_environment, readlink):
844 Support file names encoded in DBCS codepages.
845 (readlink): Use the current file-name-coding-system, not the ANSI
846 codepage, to decode and handle targets of symlinks.
847
848 2013-01-28 Eli Zaretskii <eliz@gnu.org>
849
850 * w32.c (opendir): Now accepts a 'const char *'.
851
852 2013-01-28 Dmitry Antipov <dmantipov@yandex.ru>
853
854 Remove obsolete redisplay code. See the discussion at
855 http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00576.html.
856 * dispnew.c (preemption_period, preemption_next_check): Remove.
857 (Vredisplay_preemption_period): Likewise.
858 (update_frame, update_single_window, update_window, update_frame_1):
859 Adjust users. Always assume that PERIODIC_PREEMPTION_CHECKING is not
860 used, following the 2012-06-22 change.
861
862 2013-01-25 Eli Zaretskii <eliz@gnu.org>
863
864 * w32notify.c (Fw32notify_add_watch): Doc fix. (Bug#13540)
865
866 2013-01-25 Dmitry Antipov <dmantipov@yandex.ru>
867
868 * font.c (num_fonts): Remove the leftover from old
869 debugging code. Adjust comment style here and there.
870 * insdel.c (insert_1): Remove.
871 * lisp.h (insert_1): Remove prototype.
872 * xdisp.c (message_dolog): Adjust users to call insert_1_both.
873
874 2013-01-25 Eli Zaretskii <eliz@gnu.org>
875
876 * w32.c (max_filename_mbslen): New function.
877 (normalize_filename, readdir): Use it to detect locales where ANSI
878 encoding of file names uses a double-byte character set (DBCS).
879 If a DBCS encoding is used, advance by characters using
880 CharNextExA, instead of incrementing a 'char *' pointer.
881 Use _mbslwr instead of _strlwr. (Bug#13515)
882
883 * w32heap.c (allocate_heap) [!_WIN64]: Decrease the initial
884 request of memory reservation to 1.7GB. (Bug#13065)
885
886 2013-01-25 Andreas Schwab <schwab@linux-m68k.org>
887
888 * coding.c (detect_coding_iso_2022): Move back mis-reordered code
889 at check_extra_latin label. (Bug#13505)
890
891 2013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
892
893 * nsfont.m (ns_escape_name, ns_unescape_name, ns_registry_to_script):
894 Avoid redundant calls to strlen.
895
896 2013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
897
898 Drop async_visible and async_iconified fields of struct frame.
899 This is possible because async input is gone; for details, see
900 http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00734.html.
901 * frame.h (struct frame): Remove async_visible and async_iconified
902 members, convert garbaged to unsigned bitfield. Adjust comments.
903 (FRAME_SAMPLE_VISIBILITY): Remove. Adjust all users.
904 (SET_FRAME_VISIBLE, SET_FRAME_ICONIFIED): New macros.
905 * frame.c, gtkutil.c, term.c, w32fns.c, window.c, xdisp.c:
906 Consistently use SET_FRAME_VISIBLE, SET_FRAME_ICONIFIED,
907 FRAME_VISIBLE_P and FRAME_ICONIFIED_P macros where appropriate.
908 * w32term.c: Ditto.
909 (w32_read_socket): Save iconified state to generate DEICONIFY_EVENT
910 properly. Likewise for obscured.
911 * xterm.c: Ditto.
912 (handle_one_xevent): Save visible state to generate ICONIFY_EVENT
913 properly.
914 * nsterm.m: Ditto.
915 (windowDidDeminiaturize): Generate DEICONIFY_EVENT.
916
917 2013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
918
919 * insdel.c (prepare_to_modify_buffer): Revert last change as suggested
920 in http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00555.html.
921
922 2013-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
923
924 * xdisp.c (message2, message2_nolog): Remove functions.
925 (message3, message3_nolog): Extract nbytes and multibyteness directly
926 from the string. Change all callers.
927 (message3_nolog): Don't set message_enable_multibyte since set_message
928 will reset it anyway.
929 (message1, message1_nolog): Use message3.
930 (vmessage): Use a stack allocated buffer rather than f->message_buf.
931 (with_echo_area_buffer): Remove last two arguments. Update all callers.
932 (set_message): Drop all but the second arg, which has to be a string.
933 (set_message_1): Simplify now that we know that a1 is NULL and the
934 second arg is a string.
935 * frame.h (struct frame): Remove `message_buf' field.
936 Use glyphs_initialized_p instead.
937 (FRAME_MESSAGE_BUF): Remove macro.
938 * w16select.c (Fw16_set_clipboard_data): Prefer message3 to message2.
939 * lisp.h (message2, message2_nolog): Remove declarations.
940 (message3, message3_nolog): Update declarations.
941 * keyboard.c (read_char_minibuf_menu_text)
942 (read_char_minibuf_menu_width): Remove vars.
943 (read_char_minibuf_menu_prompt): Rewrite the menu's construction so as
944 to correctly handle multibyte strings.
945 * frame.c (delete_frame): Don't free message_buf any more.
946 * editfns.c (message_text, message_length): Remove vars.
947 (Fmessage_box): Don't copy the Lisp string's bytes any longer.
948 * fileio.c (auto_save_error): Use message3 instead of message2.
949 * dispnew.c (adjust_frame_message_buffer): Remove function.
950
951 2013-01-23 Eli Zaretskii <eliz@gnu.org>
952
953 * w32term.c (w32fullscreen_hook): Account correctly for the screen
954 real estate used for the tool bar and the menu bar.
955
956 2013-01-23 Dmitry Antipov <dmantipov@yandex.ru>
957
958 * insdel.c (prepare_to_modify_buffer): Force redisplay if
959 hidden buffer is prepared to modification (Bug#13164).
960
961 2013-01-22 Dmitry Antipov <dmantipov@yandex.ru>
962
963 * window.h (struct window): Change window_end_valid member from
964 Lisp_Object to a bitfield. Adjust comments.
965 (wset_window_end_valid): Remove.
966 * window.c (adjust_window_count): Clear window_end_valid.
967 (Fwindow_end): Adjust user. Remove ancient #if 0 code.
968 (Fwindow_line_height, set_window_buffer, Frecenter)
969 (Fsplit_window_internal, Fdelete_other_windows_internal)
970 (Fset_window_fringes, Fset_window_scroll_bars): Adjust users.
971 * dispnew.c (adjust_glyph_matrix, clear_window_matrices): Likewise.
972 * xdisp.c (check_window_end, reconsider_clip_changes)
973 (redisplay_internal, mark_window_display_accurate_1, redisplay_window)
974 (try_window, try_window_reusing_current_matrix, note_mouse_highlight)
975 (find_first_unchanged_at_end_row, try_window_id): Likewise.
976
977 2013-01-22 Dmitry Antipov <dmantipov@yandex.ru>
978
979 * xdisp.c (mark_window_display_accurate): Simplify the loop
980 assuming that the only one of vchild, hchild or buffer window
981 slots is non-nil. Call mark_window_display_accurate_1 for
982 the leaf windows only.
983 (mark_window_display_accurate_1): Always assume leaf window.
984 Adjust comment.
985
986 2013-01-22 Paul Eggert <eggert@cs.ucla.edu>
987
988 * emacs.c (Qkill_emacs_hook): Now static.
989
990 * fileio.c (Finsert_file_contents): Simplify.
991 Remove unnecessary assignments and tests.
992
993 2013-01-21 Eli Zaretskii <eliz@gnu.org>
994
995 * w32.c (acl_set_file): Don't test for errors unless
996 set_file_security returns FALSE. Avoids spurious errors when
997 saving files.
998
999 2013-01-21 Dmitry Antipov <dmantipov@yandex.ru>
1000
1001 * fileio.c (Finsert_file_contents): Revert code introduced at
1002 2013-01-18 in favor of the simpler and generally better fix.
1003 Save stack space by removing 'buffer' and reusing 'read_buf'
1004 where appropriate.
1005
1006 2013-01-19 Paul Eggert <eggert@cs.ucla.edu>
1007
1008 * lisp.h (eabs): Define unconditionally (Bug#13419).
1009 The old "#if !defined (eabs)" was an unnecessary revenant of back
1010 when this macro was called "abs". Document 'eabs' better.
1011
1012 2013-01-19 Glenn Morris <rgm@gnu.org>
1013
1014 * fns.c (Frandom): Doc fix.
1015
1016 2013-01-19 Eli Zaretskii <eliz@gnu.org>
1017
1018 * editfns.c (get_pos_property): Use SAFE_ALLOCA_LISP, to avoid
1019 segfault when there are lots of overlays.
1020
1021 * buffer.c (sort_overlays): Use SAFE_NALLOCA, to avoid segfault
1022 when there are lots of overlays.
1023 See http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00421.html
1024 for the details and a way to reproduce.
1025
1026 2013-01-19 Paul Eggert <eggert@cs.ucla.edu>
1027
1028 * fileio.c: Use O_APPEND to append.
1029 This corresponds better to the natural interpretation of "append",
1030 and avoids the need to open the output file twice, or to invoke
1031 lseek when APPEND is neither nil nor a number.
1032 This relies on POSIX 1003.1-1988 or later, which is OK nowadays.
1033 (Fwrite_region): Simplify. Use O_APPEND instead of opening the
1034 file possibly twice, and lseeking to its end; this avoids the
1035 need to lseek on non-regular files. Do not use O_EXCL and O_TRUNC
1036 at the same time: the combination is never needed and apparently
1037 it doesn't work with DOS_NT.
1038
1039 Fix size bug on DOS_NT introduced by CIFS workaround (Bug#13149).
1040 * fileio.c (Fwrite_region): Use O_BINARY in checking code, too.
1041
1042 Allow floating-point file offsets.
1043 Problem reported by Vitalie Spinu in
1044 <http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00411.html>.
1045 * fileio.c (emacs_lseek): Remove.
1046 (file_offset): New function.
1047 (Finsert_file_contents, Fwrite_region): Use it.
1048
1049 2013-01-19 Chong Yidong <cyd@gnu.org>
1050
1051 * emacs.c (Fkill_emacs): Set waiting_for_input to 0 to avoid
1052 aborting on Fsignal (Bug#13289).
1053
1054 2013-01-19 Eli Zaretskii <eliz@gnu.org>
1055
1056 * w32.c (acl_set_file): Treat ERROR_ACCESS_DENIED from
1057 set_file_security as failure due to insufficient privileges.
1058 Reported by Fabrice Popineau <fabrice.popineau@supelec.fr>.
1059 (fstat): Return owner and group like 'stat' and 'lstat' do.
1060
1061 2013-01-19 Paul Eggert <eggert@cs.ucla.edu>
1062
1063 Work around bug in CIFS and vboxsf file systems (Bug#13149).
1064 The bug was observed on Ubuntu operating inside a virtual machine,
1065 editing files mounted via CIFS or vboxsf from the MS Windows 7 host.
1066 The workaround introduces a race condition on non-buggy hosts,
1067 but it's an unlikely race and anyway there's a nearly identical
1068 nearby race that can't be fixed.
1069 * fileio.c (valid_timestamp_file_system, timestamp_file_system):
1070 New static vars.
1071 (Fwrite_region): Test for file system time stamp bug.
1072 (init_fileio): New function.
1073 * lisp.h (init_fileio): Declare it.
1074 * emacs.c (main): Call it.
1075
1076 * fileio.c (Finsert_file_contents): Simplify new diagnostic
1077 and make it more consistent with other stat-failure diagnostics.
1078
1079 2013-01-18 Dmitry Antipov <dmantipov@yandex.ru>
1080
1081 Fix crash when inserting data from non-regular files.
1082 See http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00406.html
1083 for the error description produced by valgrind.
1084 * fileio.c (read_non_regular): Rename to read_contents.
1085 Free Lisp_Save_Value object used to pass parameters.
1086 (read_non_regular_quit): Rename to read_contents_quit.
1087 (Finsert_file_contents): Redesign internal file reading loop to adjust
1088 gap and end positions after each read and so help make_gap to work
1089 properly. Do not signal an I/O error too early and so do not leave
1090 not yet decoded characters in a buffer, which was the reason of
1091 redisplay crash. Use list2 to build return value. Adjust comments.
1092
1093 2013-01-17 Paul Eggert <eggert@cs.ucla.edu>
1094
1095 Close a race when statting and reading files (Bug#13149).
1096 * fileio.c (Finsert_file_contents): Use open+fstat, not stat+open.
1097 This avoids a race if the file is renamed between stat and open.
1098 This race is not the problem originally noted in Bug#13149;
1099 see <http://bugs.gnu.org/13149#73> and later messages in the thread.
1100
1101 2013-01-17 Dmitry Antipov <dmantipov@yandex.ru>
1102
1103 * lisp.h (toplevel): Add comment about using Lisp_Save_Value
1104 objects, related functions and macros.
1105 (make_save_value): Adjust prototype.
1106 (make_save_pointer): New prototype.
1107 (SAFE_NALLOCA): Fix indentation. Use make_save_pointer.
1108 (SAFE_ALLOCA_LISP): Adjust make_save_value usage.
1109 * alloc.c (format_save_value): Rename to make_save_value.
1110 (make_save_pointer): New function.
1111 (record_xmalloc): Use make_save_pointer.
1112 * dired.c, editfns.c, fileio.c, font.c, gtkutil.c, lread.c:
1113 * nsmenu.m, nsterm.m, xfns.c, xmenu.c, xselect.c, keymap.c:
1114 Change users of make_save_value to make_save_pointer.
1115 Likewise for format_save_value and make_save_value.
1116
1117 2013-01-17 Dmitry Antipov <dmantipov@yandex.ru>
1118
1119 * buffer.h (NARROWED, BUF_NARROWED): Drop unused macros.
1120 (DECODE_POSITION, BUFFER_CHECK_INDIRECTION): Fix indentation.
1121 * buffer.c (toplevel, syms_of_buffer): Drop old commented-out
1122 debugging stubs.
1123
1124 2013-01-15 Paul Eggert <eggert@cs.ucla.edu>
1125
1126 * alloc.c (free_save_value): Now static.
1127
1128 2013-01-15 Dmitry Antipov <dmantipov@yandex.ru>
1129
1130 * keymap.c (map_keymap_internal): Use format_save_value.
1131 (map_keymap_char_table_item): Adjust accordingly.
1132 * fileio.c (non_regular_fd, non_regular_inserted)
1133 (non_regular_nbytes): Remove.
1134 (Finsert_file_contents): Convert trytry to ptrdiff_t.
1135 Use format_save_value to pass parameters to read_non_regular.
1136 (read_non_regular): Use XSAVE_ macros to extract parameters.
1137 Adjust comment.
1138 * xmenu.c (xmenu_show) [!USE_X_TOOLKIT && !USE_GTK]: Use
1139 format_save_value.
1140 (pop_down_menu) [!USE_X_TOOLKIT && !USE_GTK]: Adjust user.
1141
1142 2013-01-15 Dmitry Antipov <dmantipov@yandex.ru>
1143
1144 * lisp.h (XSAVE_POINTER, XSAVE_INTEGER): Change to allow
1145 extraction from any Lisp_Save_Value slot. Add type checking.
1146 * alloc.c, dired.c, editfns.c, fileio.c, ftfont.c, gtkutil.c:
1147 * keymap.c, lread.c, nsterm.h, nsmenu.c, xfns.c, xmenu.c:
1148 * xselect.c: All users changed.
1149
1150 2013-01-15 Dmitry Antipov <dmantipov@yandex.ru>
1151
1152 Some convenient bits to deal with Lisp_Save_Values.
1153 * lisp.h (XSAVE_OBJECT): New macro to extract saved objects.
1154 (allocate_misc): Remove prototype.
1155 (format_save_value): New prototype.
1156 * alloc.c (allocate_misc): Revert back to static.
1157 (format_save_value): New function to build Lisp_Save_Value
1158 object with the specified internal structure.
1159 (make_save_value): Reimplement using format_save_value.
1160 * editfns.c (save_excursion_save): Use format_save_value.
1161 (save_excursion_restore): Use XSAVE_OBJECT.
1162
1163 2013-01-14 Paul Eggert <eggert@cs.ucla.edu>
1164
1165 Avoid needless casts with XSAVE_POINTER.
1166 * alloc.c (mark_object) [GC_MARK_STACK]:
1167 * dired.c (directory_files_internal_unwind):
1168 * fileio.c (do_auto_save_unwind):
1169 * gtkutil.c (pop_down_dialog):
1170 * keymap.c (map_keymap_char_table_item):
1171 * lread.c (load_unwind):
1172 * nsmenu.m (pop_down_menu):
1173 * print.c (print_object) [GC_MARK_STACK]:
1174 * xfns.c (clean_up_file_dialog):
1175 * xmenu.c (cleanup_widget_value_tree):
1176 Omit casts between XSAVE_POINTER and a pointer type.
1177
1178 2013-01-14 Dmitry Antipov <dmantipov@yandex.ru>
1179
1180 Fix compilation with GC_MARK_STACK == GC_USE_GCPROS_AS_BEFORE.
1181 * eval.c (eval_sub): Protect `form' from being GCed before its
1182 car and cdr becomes protected with the backtrace entry.
1183
1184 2013-01-14 Dmitry Antipov <dmantipov@yandex.ru>
1185
1186 Make Lisp_Save_Value more versatile storage for up to four objects.
1187 * lisp.h (toplevel): Enumeration to describe types of saved objects.
1188 (struct Lisp_Save_Value): New layout. Adjust comments.
1189 (XSAVE_POINTER): New macro.
1190 (XSAVE_INTEGER): Likewise.
1191 (allocate_misc): Add prototype.
1192 (free_misc): Likewise.
1193 * alloc.c (allocate_misc): Now global.
1194 (free_misc): Likewise. Adjust comment.
1195 (make_save_value): Use new Lisp_Save_Value layout. Adjust comment.
1196 (free_save_value): Likewise.
1197 (mark_object): Likewise.
1198 * editfns.c (save_excursion_save): Pack everything within
1199 Lisp_Save_Value and so avoid xmalloc.
1200 (save_excursion_restore): Adjust to match new layout. Use free_misc
1201 because we do not allocate extra memory any more. Add eassert.
1202 * print.c (print_object): New code to print Lisp_Save_Value. Do not
1203 rely on valid_lisp_object_p if !GC_MARK_STACK. Adjust comments.
1204 * dired.c, fileio.c, font.c, ftfont.c, gtkutil.c, keymap.c,
1205 * lread.c, nsmenu.m, nsterm.h, xfns.c, xmenu.c, xselect.c:
1206 Use XSAVE_POINTER and XSAVE_INTEGER where appropriate.
1207
1208 2013-01-13 Jan Djärv <jan.h.d@swipnet.se>
1209
1210 * nsfont.m (LCD_SMOOTHING_MARGIN): New define.
1211 (nsfont_draw): Remove disabling of LCD smoothing.
1212 (ns_glyph_metrics): Add LCD_SMOOTHING_MARGIN to bearings to fix
1213 Bug#11484 with LCD smoothing on.
1214
1215 2013-01-13 Paul Eggert <eggert@cs.ucla.edu>
1216
1217 Fix SIGDANGER handlers, for AIX (Bug#13408).
1218 * sysdep.c.c (handle_danger_signal, deliver_danger_signal) [SIGDANGER]:
1219 Move handlers here from emacs.c; they were out of place.
1220
1221 2013-01-11 Jan Djärv <jan.h.d@swipnet.se>
1222
1223 * xterm.c (syms_of_xterm): Adjust documentation for
1224 scroll-bar-adjust-thumb-portion.
1225
1226 2012-12-31 Adam Sjøgren <asjo@koldfront.dk> (tiny change)
1227
1228 * xterm.c (scroll-bar-adjust-thumb-portion): New variable to
1229 determine whether scroll bar thumb size should be adjusted or
1230 not. Use variable for MOTIF.
1231
1232 * gtkutil.c (scroll-bar-adjust-thumb-portion): Use variable for
1233 GTK.
1234
1235 2013-01-13 Jan Djärv <jan.h.d@swipnet.se>
1236
1237 * nsterm.m (keyDown:): Set processingCompose to NO if an emacs key
1238 event is generated.
1239 (doCommandBySelector:): Set processingCompose to NO.
1240
1241 * nsfont.m (ns_findfonts): Add block/unblock_input calls.
1242 Remove check for fkeys count > zero, block/unblock fixes the real bug.
1243 (nsfont_list_family): Add block/unblock_input calls.
1244 (nsfont_open): Move block_input earlier. Add unblock_input before early
1245 return.
1246 (nsfont_draw): Add block/unblock_input calls.
1247
1248 2013-01-12 Dmitry Antipov <dmantipov@yandex.ru>
1249
1250 * indent.c (Fvertical_motion): Remove now-incorrect GCPROs
1251 for old_charpos and old_bytepos.
1252
1253 2013-01-12 Paul Eggert <eggert@cs.ucla.edu>
1254
1255 Fix bug with set-time-zone-rule and LOCALTIME_CACHE (Bug#13415).
1256 * editfns.c (set_time_zone_rule) [LOCALTIME_CACHE]:
1257 Clear tzvalbuf_in_environ if this workaround is in effect.
1258 Problem and fix reported by Kazuhiro Ito.
1259
1260 2013-01-11 Aaron S. Hawley <Aaron.Hawley@vtinfo.com>
1261
1262 * insdel.c (Fcombine_after_change_execute, syms_of_insdel):
1263 Fix ambiguous doc string cross-reference(s).
1264
1265 * keyboard.c (Fcommand_execute, syms_of_keyboard): Fix ambiguous
1266 doc string cross-reference(s).
1267
1268 * window.c (Fwindow_point, syms_of_window): Fix ambiguous doc
1269 string cross-reference(s).
1270
1271 2013-01-11 Dmitry Antipov <dmantipov@yandex.ru>
1272
1273 Avoid unnecessary byte position calculation for the gap movement.
1274 Since all users of move_gap do CHAR_TO_BYTE for other purposes
1275 anyway, all of them should use move_gap_both instead.
1276 * lisp.h (move_gap): Remove prototype.
1277 * insdel.c (move_gap): Remove.
1278 (move_gap_both): Add eassert.
1279 * editfns.c (Ftranspose_regions): Tweak to use move_gap_both.
1280 * xml.c (parse_region): Likewise.
1281
1282 2013-01-11 Paul Eggert <eggert@cs.ucla.edu>
1283
1284 emacsclient -t should not suspend Emacs server (Bug#13387)
1285 * lisp.h, sysdep.c (block_tty_out_signal, unblock_tty_out_signal):
1286 New functions.
1287 * term.c (init_tty): Use them instead of rolling our own code.
1288 * sysdep.c (tcsetpgrp_without_stopping): Likewise. Here, this
1289 switches from 'signal' to 'pthread_sigmask', which is safer in
1290 multithreaded applications.
1291 * term.c (Fresume_tty): Don't bother dissociating if O_IGNORE_CTTY,
1292 which has already arranged for that.
1293 (dissociate_if_controlling_tty): If setsid fails, fall back on TIOCNOTTY.
1294 This is the main part of the bug fix.
1295
1296 2013-01-10 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> (tiny change)
1297
1298 * gtkutil.c (xg_initialize): Add ifdef HAVE_FREETYPE around
1299 x_last_font_name (Bug#13403).
1300
1301 2013-01-10 Dmitry Antipov <dmantipov@yandex.ru>
1302
1303 Omit buffer_slot_type_mismatch and use generic predicates to enforce
1304 the type of per-buffer values where appropriate.
1305 * lisp.h (struct Lisp_Buffer_Objfwd): Rename slottype member to
1306 predicate, which is how it's really used now. Adjust comment.
1307 * buffer.h (buffer_slot_type_mismatch): Remove prototype.
1308 * buffer.c (buffer_slot_type_mismatch): Remove.
1309 (DEFVAR_PER_BUFFER, defvar_per_buffer): Rename type argument to
1310 predicate. Adjust comment.
1311 (syms_of_buffer): Use Qsymbolp for major-mode. Use Qintegerp for
1312 fill-column, left-margin, tab-width, buffer-saved-size,
1313 left-margin-width, right-margin-width, left-fringe-width,
1314 right-fringe-width, scroll-bar-width and buffer-display-count.
1315 Use Qstringp for default-directory, buffer-file-name,
1316 buffer-file-truename and buffer-auto-save-file-name. Use Qfloatp for
1317 scroll-up-aggressively and scroll-down-aggressively. Use Qnumberp for
1318 line-spacing.
1319 * data.c (store_symval_forwarding): Adjust to call the predicate.
1320
1321 2013-01-09 Juanma Barranquero <lekktu@gmail.com>
1322
1323 * w32.c (get_name_and_id, acl_set_file):
1324 * w32term.c (w32fullscreen_hook): Remove unused local variables.
1325
1326 2013-01-09 Dmitry Antipov <dmantipov@yandex.ru>
1327
1328 * lisp.h (make_gap_1): New prototype.
1329 * buffer.h (GAP_BYTES_DFL, GAP_BYTES_MIN): New macros for the special
1330 gap size values.
1331 * editfns.c (Fbuffer_size): Rename from Fbufsize to fit the common
1332 naming convention.
1333 (syms_of_editfns): Adjust defsubr. Drop commented-out obsolete code.
1334 * insdel.c (make_gap_larger): Use GAP_BYTES_DFL. Adjust comment.
1335 (make_gap_smaller): Use GAP_BYTES_MIN. Adjust comment.
1336 (make_gap_1): New function to adjust the gap of any buffer.
1337 * coding.c (coding_alloc_by_making_gap): Use it.
1338 * buffer.c (compact_buffer): Likewise. Use BUF_Z_BYTE, BUF_GAP_SIZE,
1339 GAP_BYTES_DFL and GAP_BYTES_MIN. Adjust comment.
1340
1341 2013-01-08 Juri Linkov <juri@jurta.org>
1342
1343 * xfaces.c (tty_supports_face_attributes_p): Return 0 for the case
1344 of (supports :underline (:style wave)). (Bug#13000)
1345
1346 2013-01-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
1347
1348 * undo.c (Fprimitive_undo): Move to simple.el.
1349 (syms_of_undo): Remove declarations for Sprimitive_undo.
1350
1351 2013-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
1352
1353 * keyboard.c (echo_add_key): Rename from echo_add_char.
1354
1355 2013-01-06 Chong Yidong <cyd@gnu.org>
1356
1357 * keyboard.c (echo_add_char): New function, factored out from
1358 echo_char. Don't add a space if the previous echo string was
1359 empty (Bug#13255).
1360 (echo_char): Use it.
1361 (read_key_sequence): When echoing mock input, ensure that the
1362 trailing dash is properly added.
1363
1364 2013-01-05 Eli Zaretskii <eliz@gnu.org>
1365
1366 * xdisp.c (dump_glyph): Align glyph data better. Use "pD" instead
1367 of a non-portable "t" to print ptrdiff_t values. Allow up to 9
1368 digits for buffer positions, before misalignment starts.
1369 Display "0" for integer "object" field.
1370 (dump_glyph_row): Adapt the header line to changes in dump_glyph.
1371 Display the newline glyph more unambiguously.
1372
1373 2013-01-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1374
1375 * nsterm.m (ns_draw_underwave):
1376 * w32term.c (w32_draw_underwave):
1377 * xterm.c (x_draw_underwave): Make underwave look more triangular
1378 and also degrade gracefully for small fonts. (Bug#13000)
1379
1380 * nsterm.m (ns_draw_text_decoration):
1381 * w32term.c (x_draw_glyph_string):
1382 * xterm.c (x_draw_glyph_string): Don't use previous underline
1383 thickness and position if previous underline type is underwave.
1384
1385 2013-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
1386
1387 * fileio.c (Ffile_acl): Undocument return format.
1388
1389 2013-01-02 Glenn Morris <rgm@gnu.org>
1390
1391 * keymap.c (Fkey_description): Doc fix. (Bug#13323)
1392
1393 2013-01-02 Paul Eggert <eggert@cs.ucla.edu>
1394
1395 Simplify via eabs.
1396 * dired.c (file_name_completion):
1397 * doc.c (get_doc_string):
1398 * floatfns.c (round2):
1399 * font.c (font_score, font_delete_unmatched):
1400 * fringe.c (compute_fringe_widths):
1401 * lread.c (read_list):
1402 * minibuf.c (Ftry_completion):
1403 * term.c (tty_ins_del_lines):
1404 * xterm.c (x_draw_image_foreground, x_draw_image_foreground_1):
1405 Use eabs (x) rather than open-coding it as (x < 0 ? -x : x).
1406
1407 2012-12-31 Eli Zaretskii <eliz@gnu.org>
1408
1409 * w32.c (unsetenv): Set up the string passed to _putenv
1410 correctly.
1411 See http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00863.html
1412 for the bug this caused.
1413
1414 2012-12-30 Paul Eggert <eggert@cs.ucla.edu>
1415
1416 * coding.c (Qmac): Now static.
1417
1418 2012-12-30 Jan Djärv <jan.h.d@swipnet.se>
1419
1420 * gtkutil.c (TOOLBAR_TOP_WIDGET): New macro.
1421 (xg_pack_tool_bar): Use TOOLBAR_TOP_WIDGET, condition out use of
1422 handlebox_widget. Set toolbar_in_hbox to false/true, set
1423 toolbar_is_packed to true.
1424 (xg_update_tool_bar_sizes): Use widget returned by TOOLBAR_TOP_WIDGET.
1425 (update_frame_tool_bar): Check toolbar_is_packed for packing.
1426 Show all on TOOLBAR_TOP_WIDGET.
1427 (free_frame_tool_bar): Check toolbar_is_packed. Use widget returned
1428 by TOOLBAR_TOP_WIDGET.
1429 (xg_change_toolbar_position): Use widget returned by TOOLBAR_TOP_WIDGET.
1430 Check toolbar_is_packed.
1431 (xg_have_tear_offs, tearoff_remove, tearoff_activate): Condition on
1432 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
1433 (xg_have_tear_offs): When ! HAVE_GTK_TEAROFF_MENU_ITEM_NEW, return
1434 false.
1435 (create_menus): Create tearoff only if HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
1436 (xg_update_menubar): Update title only if
1437 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
1438 (xg_update_submenu): Skip tearoff only if
1439 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
1440 (xg_initialize): Initialize xg_detached_menus only if
1441 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
1442
1443 * xterm.h (struct x_output): Surround handlebox_widget with
1444 #ifdef HAVE_GTK_HANDLE_BOX_NEW. toolbar_is_packed is new,
1445 toolbar_in_hbox is bool.
1446
1447 2012-12-30 Andreas Schwab <schwab@linux-m68k.org>
1448
1449 * src/Makefile.in (TEMACS_LDFLAGS2): Remove.
1450 (LIBS_GNUSTEP): Define.
1451 (LIBES): Add $(LIBS_GNUSTEP).
1452 (temacs$(EXEEXT)): Use $(LDFLAGS) instead of $(TEMACS_LDFLAGS2).
1453
1454 2012-12-30 Eli Zaretskii <eliz@gnu.org>
1455
1456 * xdisp.c (set_cursor_from_row): Don't confuse a truncation or
1457 continuation glyph on a TTY with an indication of an empty line.
1458 (Bug#13277)
1459
1460 2012-12-29 Eli Zaretskii <eliz@gnu.org>
1461
1462 * fileio.c (Fset_file_selinux_context, Fset_file_acl): Return t if
1463 file's SELinux context or ACLs successfully set, nil otherwise.
1464 (Bug#13298)
1465 (Fcopy_file) [WINDOWSNT]: Improve diagnostics when CopyFile fails.
1466
1467 * w32proc.c (reader_thread): Avoid passing NULL handles to
1468 SetEvent and WaitForSingleObject.
1469
1470 2012-12-28 Paul Eggert <eggert@cs.ucla.edu>
1471
1472 Port EXTERNALLY_VISIBLE to Clang 3.2.
1473 * conf_post.h (__has_attribute): New macro.
1474 (EXTERNALLY_VISIBLE): Use it. This ports to Clang 3.2.
1475
1476 2012-12-27 Glenn Morris <rgm@gnu.org>
1477
1478 * cygw32.c (Fcygwin_convert_file_name_to_windows)
1479 (Fcygwin_convert_file_name_from_windows): Doc fixes.
1480
1481 2012-12-27 Eli Zaretskii <eliz@gnu.org>
1482
1483 * fileio.c (file_name_as_directory, directory_file_name):
1484 Accept an additional argument MULTIBYTE to indicate whether the input C
1485 came from a multibyte or a unibyte Lisp string; all callers
1486 adjusted. Don't assume the input string is always multibyte.
1487 (Bug#13262)
1488 (Ffile_name_directory) [DOS_NT]: Handle unibyte strings correctly:
1489 don't ENCODE_FILE them, and return a unibyte string if the input
1490 was unibyte.
1491 (Fexpand_file_name): Don't mix unibyte with multibyte strings, and
1492 don't assume the input strings will always be multibyte. If the
1493 input strings are multibyte, decode strings obtained from C
1494 library functions.
1495
1496 2012-12-26 Dmitry Antipov <dmantipov@yandex.ru>
1497
1498 * lisp.h (toplevel): Add two notices to the comment about
1499 defining a new Lisp data type.
1500 * print.c (print_object): If Lisp_Save_Value object's pointer
1501 is the address of a memory area containing Lisp_Objects, try
1502 to print them.
1503 * alloc.c (valid_lisp_object_p): Adjust comment.
1504
1505 2012-12-26 Dmitry Antipov <dmantipov@yandex.ru>
1506
1507 * keyboard.c (record_asynch_buffer_change): Initialize an event
1508 only if it's really needed.
1509 * frame.h (enum output_method): Remove output_mac member since
1510 it's a leftover from the deleted code.
1511 * frame.c (Fframep): Adjust user here ...
1512 * terminal.c (Fterminal_live_p): ... and here.
1513 * coding.c (Qmac): Now here because it's only used to denote
1514 end-of-line encoding type.
1515 (syms_of_coding): DEFSYM it.
1516 * frame.h (Qmac): Remove duplicated declaration.
1517
1518 2012-12-26 Paul Eggert <eggert@cs.ucla.edu>
1519
1520 * window.c (select_window_1): Now static, since it's used only here.
1521
1522 2012-12-25 Eli Zaretskii <eliz@gnu.org>
1523
1524 * window.c (window_body_cols): Subtract display margins from the
1525 window body width on TTYs as well. See
1526 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-12/msg00317.html
1527 for the original report.
1528
1529 2012-12-25 Dmitry Antipov <dmantipov@yandex.ru>
1530
1531 * xdisp.c (redisplay_window): Remove inner local variable
1532 because the outer shadowed one has the same meaning.
1533 * xterm.h (struct x_output): Remove toolbar_detached member since it's
1534 set but never used.
1535 * gtkutil.c (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
1536 (xg_create_tool_bar): Adjust users.
1537
1538 2012-12-24 Dmitry Antipov <dmantipov@yandex.ru>
1539
1540 * buffer.h (BUF_COMPACT): New macro to follow the common style.
1541 * buffer.c (Fget_buffer_create): Use it to set compact field of
1542 struct buffer_text to avoid accessing an uninitialized value
1543 when compact_buffer is called for the first time.
1544 (compact_buffer): Use convenient BUF_COMPACT and BUF_MODIFF.
1545 (Fset_buffer_modified_p): Use buffer_window_count to check
1546 whether the buffer is displayed in some window.
1547 * xdisp.c (message_dolog): Likewise.
1548
1549 2012-12-23 Eli Zaretskii <eliz@gnu.org>
1550
1551 * w32.c (acl_set_file): If setting the file security descriptor
1552 fails, and the new DACL is identical to the existing one, silently
1553 return success. This fixes problems for users backing up their
1554 own files without having the necessary privileges for setting
1555 security descriptors.
1556
1557 * w32proc.c (reader_thread): Do not index fd_info[] with negative
1558 values.
1559 (reader_thread): Exit when cp->status becomes STATUS_READ_ERROR
1560 after WaitForSingleObject returns normally. This expedites reader
1561 thread shutdown when delete_child triggers it.
1562 (reap_subprocess): More accurate commentary for why we call
1563 delete_child only when cp->fd is negative.
1564
1565 * w32.c (sys_close): Do not call delete_child on a subprocess
1566 whose handle is not yet closed. Instead, set its file descriptor
1567 to a negative value, so that reap_subprocess will call
1568 delete_child on that subprocess when its SIGCHLD arrives.
1569 This avoids closing handles used for communications between sys_select
1570 and reader_thread, which doesn't give sys_select a chance to
1571 notice that the process exited and invoke the SIGCHLD handler for
1572 it.
1573
1574 2012-12-23 Jan Djärv <jan.h.d@swipnet.se>
1575
1576 * nsfns.m (Fns_do_applescript): Run event loop until script has
1577 been executed (Bug#12969).
1578 (ns_run_ascript): Chech as_script for nil, set to nil after
1579 executing script.
1580
1581 2012-12-22 Martin Rudalics <rudalics@gmx.at>
1582
1583 * window.c (Fselect_window): Reword doc-string (Bug#13248).
1584
1585 2012-12-22 Eli Zaretskii <eliz@gnu.org>
1586
1587 * w32term.c (w32fullscreen_hook): New function.
1588 (w32_create_terminal): Plug it into the terminal's fullscreen_hook.
1589
1590 2012-12-21 Eli Zaretskii <eliz@gnu.org>
1591
1592 * fileio.c (Finsert_file_contents): Doc fix.
1593
1594 * w32proc.c (new_child, delete_child, find_child_pid): For a
1595 subprocess, consider its slot being in use as long as its process
1596 handle (procinfo.hProcess) is not NULL. This avoids reusing the
1597 slot when a new process is started immediately after killing
1598 another one, without waiting enough time for the first process to
1599 be reaped and resources allocated for it be orderly freed.
1600 (Bug#13086)
1601 Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
1602
1603 2012-12-21 Chong Yidong <cyd@gnu.org>
1604
1605 * buffer.c (Fset_buffer_major_mode): Doc fix (Bug#13231).
1606
1607 * fns.c (Fcompare_strings): Doc fix (Bug#13081).
1608
1609 2012-12-21 Eli Zaretskii <eliz@gnu.org>
1610
1611 * w32.c (get_name_and_id): Always pass NULL as the first argument
1612 of lookup_account_sid. Avoids crashes with UNC file names that
1613 refer to DFS domains, not to specific machine names. (Bug#12621)
1614 Remove now unused argument FNAME; all callers changed.
1615 (get_file_owner_and_group): Remove now unused argument FNAME; all
1616 callers changed.
1617
1618 2012-12-21 Chong Yidong <cyd@gnu.org>
1619
1620 * editfns.c (Finsert_char): Since read-char-by-name now signals an
1621 error for invalid chars, don't check for a nil return value.
1622
1623 2012-12-20 Dmitry Antipov <dmantipov@yandex.ru>
1624
1625 Avoid calls to CHAR_TO_BYTE if byte position is known.
1626 * editfns.c (make_buffer_string_both): Use move_gap_both.
1627 (Fbuffer_string): Use make_buffer_string_both.
1628 * marker.c (buf_charpos_to_bytepos): Convert to eassert.
1629 Adjust comment.
1630 (buf_bytepos_to_charpos): Likewise.
1631 (charpos_to_bytepos): Remove.
1632 * fileio.c (Finsert_file_contents): Use move_gap_both.
1633 * search.c (Freplace_match): Likewise.
1634 * process.c (process_send_region): Likewise. Use convenient
1635 names for byte positions.
1636 * lisp.h (charpos_to_bytepos): Remove prototype.
1637 * indent.c (scan_for_column): Use CHAR_TO_BYTE.
1638 * insdel.c (move_gap): Likewise.
1639
1640 2012-12-20 Paul Eggert <eggert@cs.ucla.edu>
1641
1642 * xdisp.c (redisplay_internal): Remove now-unused local.
1643
1644 2012-12-20 Stefan Monnier <monnier@iro.umontreal.ca>
1645
1646 * xdisp.c (select_frame_for_redisplay, ensure_selected_frame): Remove.
1647 (redisplay_internal): Don't bother selecting the frame to get the
1648 proper value of frame-local variables (bug#13225).
1649
1650 2012-12-20 Dmitry Antipov <dmantipov@yandex.ru>
1651
1652 * textprop.c (set_text_properties_1): Do not allow NULL interval.
1653 Rename 4th argument since it may be buffer or string. Adjust comment.
1654 * intervals.c (graft_intervals_info_buffer): Find an interval here.
1655
1656 2012-12-19 Dmitry Antipov <dmantipov@yandex.ru>
1657
1658 * coding.c (Fdetect_coding_region): Do not check start and end with
1659 CHECK_NUMBER_COERCE_MARKER since validate_region does that itself.
1660 (code_convert_region): Likewise.
1661
1662 2012-12-18 Eli Zaretskii <eliz@gnu.org>
1663
1664 * w32.c (acl_get_file, acl_set_file): Run the file name through
1665 map_w32_filename, and resolve any symlinks in the file name, like
1666 Posix platforms do.
1667 (acl_set_file): Call revert_to_self, if any privileges were
1668 enabled.
1669
1670 2012-12-17 Juanma Barranquero <lekktu@gmail.com>
1671
1672 * makefile.w32-in ($(BLD)/editfns.$(O), $(BLD)/fileio.$(O))
1673 ($(BLD)/w32.$(O)): Update dependencies.
1674
1675 2012-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
1676
1677 * xdisp.c (select_frame_for_redisplay): Use select_window_1 to
1678 propagate redisplay's scrolling (if any) to the right window.
1679 (redisplay_internal): Use ensure_selected_frame.
1680 (display_mode_lines): Complete last fix.
1681 * window.c (select_window_1): New func, extracted from select_window.
1682 (select_window): Use it.
1683 * window.h (select_window_1): Declare.
1684
1685 2012-12-17 Eli Zaretskii <eliz@gnu.org>
1686
1687 Emulate Posix ACL APIs on MS-Windows.
1688 * w32.c: Include sddl.h and sys/acl.h.
1689 (SDDL_REVISION_1): Define if not already defined.
1690 (g_b_init_get_security_descriptor_dacl)
1691 (g_b_init_convert_sd_to_sddl, g_b_init_convert_sddl_to_sd)
1692 (g_b_init_is_valid_security_descriptor)
1693 (g_b_init_set_file_security): New static flags.
1694 (globals_of_w32): Initialize them to zero.
1695 (SetFileSecurity_Name): New string constant.
1696 (SetFileSecurity_Proc, GetSecurityDescriptorDacl_Proc)
1697 (ConvertStringSecurityDescriptorToSecurityDescriptor_Proc)
1698 (ConvertSecurityDescriptorToStringSecurityDescriptor_Proc)
1699 (IsValidSecurityDescriptor_Proc): New typedefs.
1700 (get_file_security, get_security_descriptor_owner)
1701 (get_security_descriptor_group): Set errno to ENOTSUP.
1702 (set_file_security, get_security_descriptor_dacl)
1703 (is_valid_security_descriptor, convert_sd_to_sddl)
1704 (convert_sddl_to_sd, acl_valid, acl_to_text, acl_from_text)
1705 (acl_free, acl_get_file, acl_set_file): New functions.
1706
1707 * fileio.c (Fcopy_file) [WINDOWSNT]: Support copying ACLs.
1708
1709 2012-12-17 Paul Eggert <eggert@cs.ucla.edu>
1710
1711 Don't reraise SIGCHLD, as that can now lose (Bug#13192).
1712 With the 2012-12-03 fix for Bug#12980 in place, an old workaround
1713 for some of that bug's symptoms can now cause Emacs to abort.
1714 Remove the workaround.
1715 * process.c (wait_reading_process_output): Don't reraise SIGCHLD.
1716 The bug that caused SIGCHLD to get lost has been fixed, and the
1717 workaround for it can now cause Emacs to abort.
1718
1719 2012-12-16 Paul Eggert <eggert@cs.ucla.edu>
1720
1721 * sysdep.c (emacs_abort): Bump backtrace size to 40.
1722 Companion to the 2012-09-30 patch. Suggested by Eli Zaretskii in
1723 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00796.html>.
1724
1725 2012-12-16 Romain Francoise <romain@orebokech.com>
1726
1727 * fileio.c (Ffile_acl, Fset_file_acl): New functions.
1728 (Fcopy_file): Change last arg to `preserve_extended_attributes'
1729 and copy ACL entries of file in addition to SELinux context if set.
1730 (syms_of_fileio): Add `file-acl' and `set-file-acl'.
1731
1732 * Makefile.in (LIBACL_LIBS): New macro.
1733 (LIBES): Use it.
1734
1735 2012-12-15 Paul Eggert <eggert@cs.ucla.edu>
1736
1737 * fileio.c (internal_delete_file): Use bool for boolean.
1738
1739 2012-12-15 Eli Zaretskii <eliz@gnu.org>
1740
1741 Fix bug #13079 on MS-Windows with temp files not being deleted.
1742 * w32.h (_child_process): New members input_file and
1743 pending_deletion.
1744 (register_child): First argument is now pid_t.
1745 (record_infile, record_pending_deletion): New prototypes.
1746
1747 * w32proc.c (new_child): Initialize input_file and
1748 pending_deletion members of the child.
1749 (delete_child): Delete the child's temporary input file, if any,
1750 that is pending deletion.
1751 (register_child): First argument is now pid_t.
1752 (record_infile, record_pending_deletion): New functions.
1753 (reap_subprocess): Fix a typo in DebPrint string.
1754 (sys_spawnve, sys_kill): Use pid_t for PID arguments.
1755
1756 * fileio.c (internal_delete_file): Return an int again: non-zero
1757 if delete-file succeeds, zero otherwise.
1758
1759 * lisp.h (internal_delete_file): Adjust prototype.
1760
1761 * callproc.c (Fcall_process): Don't overwrite infile with result
1762 of DECODE_FILE.
1763 [WINDOWSNT] If BUFFER is an integer, i.e. we are launching an
1764 asynchronous subprocess, record the name of the input file name,
1765 if any.
1766 (delete_temp_file) [WINDOWSNT]: If internal_delete_file fails to
1767 delete the file, record it as pending deletion when the subprocess
1768 exits.
1769
1770 2012-12-14 Eli Zaretskii <eliz@gnu.org>
1771
1772 * editfns.c [HAVE_PWD_H]: Include grp.h.
1773
1774 * makefile.w32-in ($(BLD)/editfns.$(O)): Add $(NT_INC)/grp.h.
1775
1776 2012-12-14 Paul Eggert <eggert@cs.ucla.edu>
1777
1778 Fix permissions bugs with setgid directories etc. (Bug#13125)
1779 * dired.c (Ffile_attributes): Return t as the 9th attribute,
1780 to mark it as a placeholder. The old value was often wrong.
1781 The only user of this attribute has been changed to use
1782 file-ownership-preserved-p instead, with its new group arg.
1783 * editfns.c (Fgroup_gid, Fgroup_real_gid): New functions.
1784
1785 2012-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
1786
1787 * xdisp.c (select_frame_for_redisplay, display_mode_lines):
1788 Keep selected_window and selected_frame in sync.
1789
1790 2012-12-14 Eli Zaretskii <eliz@gnu.org>
1791
1792 * w32.c (stat_worker): If w32_stat_get_owner_group is zero, do not
1793 try to get accurate owner and group information from NT file
1794 security APIs. This is to make most callers of 'stat' and
1795 'lstat', which don't need that information, much faster.
1796
1797 * dired.c (Ffile_attributes) [WINDOWSNT]:
1798 Set w32_stat_get_owner_group to a non-zero value, to request accurate
1799 owner and group information from 'lstat'.
1800
1801 2012-12-13 Paul Eggert <eggert@cs.ucla.edu>
1802
1803 * fileio.c (Finsert_file_contents): Don't put tail into head area,
1804 as that confuses set-auto-coding, so insist on the head-read
1805 returning the full 1024 bytes. Let lseek compute the tail offset;
1806 less work for us. Do not ignore I/O errors when reading the tail.
1807
1808 * xdisp.c: Minor style fixes.
1809 (init_iterator): Hoist assignment out of if-expression.
1810 (markpos_of_region): Callers now test for sign, not for -1.
1811
1812 2012-12-13 Dmitry Antipov <dmantipov@yandex.ru>
1813
1814 Minor redisplay optimization when the region length is zero.
1815 * xdisp.c (markpos_of_region): New function.
1816 (init_iterator): Do not highlight the region of zero length.
1817 (redisplay_window): Check whether the region is of non-zero length.
1818 (try_cursor_movement): Allow if the region length is zero.
1819 (try_window_reusing_current_matrix, try_window_id): Likewise.
1820
1821 2012-12-13 Eli Zaretskii <eliz@gnu.org>
1822
1823 * search.c (search_buffer): Check the inverse translations of each
1824 character in pattern when the buffer being searched is unibyte.
1825 (Bug#13084)
1826
1827 2012-12-13 Paul Eggert <eggert@cs.ucla.edu>
1828
1829 * fileio.c (Fvisited_file_modtime): Return (-1 ...) for nonexistent
1830 files, fixing a regression from 24.2.
1831 (Fverify_visited_file_modtime): Don't read uninitialized st.st_size.
1832
1833 2012-12-13 Paul Eggert <eggert@cs.ucla.edu>
1834
1835 * fileio.c (Fcopy_file): Make fstat failure as serious as open failure.
1836 fstat shouldn't fail, and if it does fail copy-file should not proceed.
1837 Remove unnecessary S_ISLNK test, as (contra the comments) this
1838 function can't copy symlinks. Improve quality of error message
1839 when attempting to copy files that are neither regular files nor
1840 directories.
1841
1842 2012-12-12 Dmitry Antipov <dmantipov@yandex.ru>
1843
1844 * dispnew.c (set_window_cursor_after_update): Use clip_to_bounds.
1845 * gtkutil.c (xg_set_toolkit_scroll_bar_thumb):
1846 * window.c (Frecenter):
1847 * xdisp.c (resize_mini_window, hscroll_window_tree, draw_glyphs):
1848 * xterm.c (x_set_toolkit_scroll_bar_thumb): Likewise.
1849
1850 2012-12-12 Daniel Colascione <dancol@dancol.org>
1851
1852 * unexcw.c (fixup_executable): Use posix_fallocate to ensure that
1853 the dumped Emacs is not a sparse file, greatly improving Cygwin
1854 "make bootstrap" performance.
1855
1856 2012-12-11 Michael Albinus <michael.albinus@gmx.de>
1857
1858 * inotify.c (inotify_callback): Generate an Emacs event for every
1859 incoming inotify event.
1860
1861 2012-12-11 Eli Zaretskii <eliz@gnu.org>
1862
1863 * xdisp.c (handle_face_prop): Fix logic of computing
1864 it->start_of_box_run_p.
1865 (append_space_for_newline): If the glyph row is R2L, reset the
1866 iterator's end_of_box_run_p flag before prepending the space glyph.
1867 (extend_face_to_end_of_line): If the glyph row is R2L, reset the
1868 iterator's start_of_box_run_p flag before prepending the stretch.
1869 (append_glyph, produce_image_glyph, append_composite_glyph)
1870 (append_stretch_glyph, append_glyphless_glyph): Reverse the
1871 left_box_line_p and right_box_line_p flags of the glyph for R2L
1872 glyph rows. (Bug#13011)
1873
1874 2012-12-11 Dmitry Antipov <dmantipov@yandex.ru>
1875
1876 * buffer.c (Fset_buffer_multibyte): Do not force redisplay
1877 if changed buffer is not shown in a window.
1878 * insdel.c (prepare_to_modify_buffer): Likewise.
1879 * window.c (replace_buffer_in_windows_safely): Do nothing
1880 if buffer is not shown in a window.
1881 (Fforce_window_update): Likewise if string or buffer argument
1882 is passed.
1883
1884 2012-12-11 Eli Zaretskii <eliz@gnu.org>
1885
1886 * inotify.c (Finotify_add_watch): Rename decoded_file_name to
1887 encoded_file_name, which is what it is.
1888
1889 2012-12-11 Dmitry Antipov <dmantipov@yandex.ru>
1890
1891 Consistently use marker_position and marker_byte_position.
1892 * fringe.c (Ffringe_bitmaps_at_pos):
1893 * indent.c (Fvertical_motion):
1894 * insdel.c (prepare_to_modify_buffer):
1895 * keyboard.c (make_lispy_position):
1896 * window.c (Fwindow_end, Fpos_visible_in_window_p, unshow_buffer)
1897 (window_scroll_pixel_based, displayed_window_lines)
1898 (Fset_window_configuration):
1899 * xdisp.c (message_dolog, with_echo_area_buffer_unwind_data)
1900 (mark_window_display_accurate_1, redisplay_window, decode_mode_spec):
1901 Replace direct access to marker fields with calls
1902 to marker_position and/or marker_byte_position.
1903
1904 2012-12-11 Juanma Barranquero <lekktu@gmail.com>
1905
1906 * makefile.w32-in (SIG2STR_H): New macro.
1907 (SYSWAIT_H, $(BLD)/emacs.$(O), $(BLD)/process.$(O))
1908 ($(BLD)/w32notify.$(O)): Update dependencies.
1909
1910 2012-12-10 Daniel Colascione <dancol@dancol.org>
1911
1912 * w32term.c, keyboard.c: Fix build break in cygw32 by omitting
1913 Windows file notification functionality unless WINDOWSNT.
1914
1915 * w32gui.h (hprevinst, lpCmdLine, nCmdShow): Remove unused
1916 declarations.
1917
1918 * w32fns.c (cache_system_info): Initialize the global hinst
1919 variable here so various initialization calls DTRT.
1920
1921 * unexw32.c (hprevinst, lpCmdLine, nCmdShow): Remove unused variables.
1922 (hinst): Remove unneeded extern declaration.
1923 (_start): Remove initialization of above variables; remove
1924 initialization of hinst, as cache_system_info now does that.
1925
1926 * emacs.c (main): Call cache_system_info early in startup; we
1927 previously weren't calling it in Cygwin builds.
1928
1929 * Makefile.in (ntsource, WINDRES, W32_RES, W#@_RES_LINK):
1930 Teach the autoconf build system how to compile a Windows resource file
1931 and link it to Emacs.
1932
1933 2012-12-10 Dmitry Antipov <dmantipov@yandex.ru>
1934
1935 Per-buffer window counters.
1936 * buffer.h (struct buffer): New member window_count.
1937 (buffer_window_count): New function.
1938 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
1939 Initialize window_count.
1940 (Fkill_buffer): Verify window_count for the buffer being killed.
1941 (modify_overlay): Do not force redisplay if buffer is not shown
1942 in any window.
1943 (init_buffer_once): Initialize window_count for buffer_defaults
1944 and buffer_local_symbols.
1945 * window.h (buffer_shared): Remove declaration.
1946 (wset_buffer): Convert from inline ...
1947 * window.c (wset_buffer): ... to an ordinary function.
1948 (adjust_window_count): New function.
1949 (make_parent_window): Use it.
1950 * xdisp.c (buffer_shared): Remove.
1951 (redisplay_internal, redisplay_window): Adjust users.
1952 (buffer_shared_and_changed): Use per-buffer window counter.
1953
1954 2012-12-10 Eli Zaretskii <eliz@gnu.org>
1955
1956 Support for filesystem notifications on MS-Windows.
1957 * w32proc.c (sys_select): If drain_message_queue returns non-zero,
1958 and this is a TTY frame, signal the caller that keyboard input is
1959 available.
1960
1961 * w32xfns.c (drain_message_queue): Now returns an int: an
1962 indication whether any WM_EMACS_FILENOTIFY messages were found in
1963 the queue.
1964
1965 * w32inevt.c (handle_file_notifications): New function.
1966 (w32_console_read_socket): Call it to process file notifications.
1967
1968 * w32console.c (initialize_w32_display): Record the main thread ID
1969 in dwMainThreadId.
1970
1971 * deps.mk (inotify.o): New dependency list.
1972
1973 * Makefile.in (SOME_MACHINE_OBJECTS): Add w32notify.o.
1974
1975 * w32term.h (WM_EMACS_FILENOTIFY): New custom message.
1976 (WM_EMACS_END): Bump value by 1.
1977 (notification_buffer_in_use, file_notifications)
1978 (notifications_size, notifications_desc): Declare.
1979 (w32_get_watch_object, lispy_file_action, globals_of_w32notify):
1980 Add prototypes.
1981
1982 * w32term.c (lispy_file_action, queue_notifications): New functions.
1983 (syms_of_w32term) <Qadded, Qremoved, Qmodified, Qrenamed_from>
1984 <Qrenamed_to>: New symbols.
1985 (w32_read_socket): Handle the WM_EMACS_FILENOTIFY message.
1986
1987 * w32notify.c: New file, implements file event notifications for
1988 MS-Windows.
1989
1990 * w32fns.c (w32_wnd_proc): Handle the WM_EMACS_FILENOTIFY message
1991 by posting it to the w32_read_socket queue.
1992
1993 * termhooks.h (enum event_kind) [HAVE_NTGUI]: Support FILE_NOTIFY_EVENT.
1994
1995 * makefile.w32-in (OBJ2): Add $(BLD)/w32notify.$(O).
1996 (GLOBAL_SOURCES): Add w32notify.c
1997 ($(BLD)/w32notify.$(O)): New set of dependencies.
1998
1999 * lisp.h (syms_of_w32notify) [WINDOWSNT]: Add prototype.
2000
2001 * keyboard.c (kbd_buffer_get_event) [WINDOWSNT]:
2002 Handle FILE_NOTIFY_EVENT.
2003 (syms_of_keyboard) [HAVE_NTGUI] <Qfile_notify>: New symbol.
2004 (keys_of_keyboard) [WINDOWSNT]: Bind file-notify to
2005 w32notify-handle-event by default.
2006
2007 * emacs.c (main) [WINDOWSNT]: Call globals_of_w32notify and
2008 syms_of_w32notify.
2009
2010 2012-12-10 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2011
2012 Support for filesystem notifications on GNU/Linux via inotify.
2013 * termhooks.h (enum event_kind) [HAVE_INOTIFY]: Add FILE_NOTIFY_EVENT.
2014
2015 * lisp.h (syms_of_inotify) [HAVE_INOTIFY]: Add prototype.
2016
2017 * keyboard.c (Qfile_inotify) [HAVE_INOTIFY]: New variable.
2018 (syms_of_keyboard): DEFSYM it.
2019 (kbd_buffer_get_event) [HAVE_INOTIFY]: Generate FILE_NOTIFY_EVENT.
2020 (make_lispy_event): Support FILE_NOTIFY_EVENT by generating
2021 Qfile_inotify events.
2022 (keys_of_keyboard) [HAVE_INOTIFY]: Bind file-inotify events in
2023 special-event-map to inotify-handle-event.
2024
2025 * emacs.c (main) [HAVE_INOTIFY]: Call syms_of_inotify.
2026
2027 * Makefile.in (base_obj): Add inotify.o.
2028
2029 * inotify.c: New file.
2030
2031 2012-12-10 Jan Djärv <jan.h.d@swipnet.se>
2032
2033 * nsterm.m (fd_handler:): FD_ZERO fds (Bug#13103).
2034
2035 2012-12-10 Fabrice Popineau <fabrice.popineau@gmail.com>
2036
2037 * w32fns.c (cache_system_info): Cast sysinfo_cache.dwPageSize to
2038 DWORD_PTR, for compatibility with 64-bit builds.
2039
2040 * w32.c (_PROCESS_MEMORY_COUNTERS_EX):
2041 (GetProcessWorkingSetSize_Proc, get_process_working_set_size)
2042 (system_process_attributes): Use SIZE_T rather than DWORD, for
2043 compatibility with 64-bit builds.
2044
2045 2012-12-10 Christopher Schmidt <christopher@ch.ristopher.com>
2046
2047 * lread.c (Vload_source_file_function): Doc fix (Bug#11647).
2048
2049 2012-12-10 Eli Zaretskii <eliz@gnu.org>
2050
2051 * indent.c (Fvertical_motion): If a display string will be
2052 displayed on the left or the right margin, don't consider it as a
2053 factor in cursor positioning. (Bug#13108)
2054
2055 2012-12-10 Martin Rudalics <rudalics@gmx.at>
2056
2057 * editfns.c (Fcompare_buffer_substrings): Reword doc-string.
2058
2059 2012-12-10 Paul Eggert <eggert@cs.ucla.edu>
2060
2061 * fileio.c (Fsubstitute_in_file_name): Use ptrdiff_t, not int,
2062 for string length.
2063
2064 2012-12-08 Eli Zaretskii <eliz@gnu.org>
2065
2066 * w32.c (unsetenv): Return 0 if the input string is too long.
2067
2068 2012-12-08 Paul Eggert <eggert@cs.ucla.edu>
2069
2070 Use putenv+unsetenv instead of modifying environ directly (Bug#13070).
2071 * alloc.c (xputenv): New function.
2072 * dbusbind.c (Fdbus_init_bus):
2073 * emacs.c (main):
2074 * xterm.c (x_term_init):
2075 Use xputenv instead of setenv or putenv, to detect memory exhaustion.
2076 * editfns.c (initial_tz): Move static var decl up.
2077 (tzvalbuf_in_environ): New static var.
2078 (init_editfns): Initialize these two static vars.
2079 (Fencode_time): Don't assume arbitrary limit on EMACS_INT width.
2080 Save old TZ value on stack, if it's small.
2081 (Fencode_time, set_time_zone_rule): Don't modify 'environ' directly;
2082 instead, use xputenv+unsetenv to set and restore TZ.
2083 (environbuf): Remove static var. All uses removed.
2084 (Fset_time_zone_rule): Do not save TZ and environ;
2085 no longer needed here.
2086 (set_time_zone_rule_tz1, set_time_zone_rule_tz2) [LOCALTIME_CACHE]:
2087 Move to inside set_time_zone_rule; they don't need file scope any more.
2088 (set_time_zone_rule): Maintain the TZ=value string separately.
2089 (syms_of_editfns): Don't initialize initial_tz;
2090 init_editfns now does it.
2091 * emacs.c (dump_tz) [HAVE_TZSET]: Now const.
2092 * lisp.h (xputenv): New decl.
2093
2094 2012-12-08 Fabrice Popineau <fabrice.popineau@gmail.com>
2095
2096 * w32fns.c (emacs_abort): Don't do arithmetics on void pointers.
2097
2098 2012-12-08 Eli Zaretskii <eliz@gnu.org>
2099
2100 * w32.c (unsetenv, sys_putenv): New functions.
2101
2102 2012-12-08 Chong Yidong <cyd@gnu.org>
2103
2104 * editfns.c (Finsert_char): Make the error message more
2105 informative (Bug#12992).
2106
2107 2012-12-08 Paul Eggert <eggert@cs.ucla.edu>
2108
2109 Simplify get_lim_data.
2110 * vm-limit.c (get_lim_data): Combine RLIMIT_AS and RLIMIT_DATA methods.
2111 Remove USG and vlimit methods; no longer used these days.
2112 Add #error catchall just in case.
2113
2114 Assume POSIX 1003.1-1988 or later for signal.h (Bug#13026).
2115 Exceptions: do not assume SIGCONT, SIGSTOP, SIGTSTP, SIGTTIN,
2116 SIGTTOU, SIGUSR1, SIGUSR2, as Microsoft platforms lack these.
2117 * process.c [subprocesses]: Include <c-ctype.h>, <sig2str.h>.
2118 (deleted_pid_list, Fdelete_process, create_process)
2119 (record_child_status_change, handle_child_signal, deliver_child_signal)
2120 (init_process_emacs, syms_of_process):
2121 Assume SIGCHLD is defined.
2122 (parse_signal): Remove. All uses removed.
2123 (abbr_to_signal): New static function.
2124 (Fsignal_process): Use it to convert signal names to ints.
2125 * sysdep.c (sys_suspend) [!DOS_NT]: Use kill (0, ...) rather than
2126 kill (getpgrp (), ...).
2127 (emacs_sigaction_init): Assume SIGCHLD is defined.
2128 (init_signals): Assume SIGALRM, SIGCHLD, SIGHUP, SIGKILL,
2129 SIGPIPE, and SIGQUIT are defined. Do not worry about SIGCLD any more.
2130 * syssignal.h (EMACS_KILLPG): Remove.
2131 All uses replaced by 'kill' with a negative pid.
2132 (SIGCHLD): Remove definition, as we now assume SIGCHLD.
2133 * w32proc.c (sys_kill): Support negative pids compatibly with POSIX.
2134
2135 2012-12-07 Paul Eggert <eggert@cs.ucla.edu>
2136
2137 * sysdep.c (get_child_status): Abort on internal error (Bug#13086).
2138 This will cause a production Emacs to dump core instead of
2139 infinite-looping.
2140
2141 2012-12-07 Dmitry Antipov <dmantipov@yandex.ru>
2142
2143 * frame.c (make_frame): Do not set window's buffer to t.
2144 * window.c (Fsplit_window_internal): Likewise. Previously it was
2145 used to indicate that the window is being set up. Now we use
2146 set_window_buffer for all new windows, so the condition in ...
2147 (Fset_window_buffer): ... is always true and can be removed.
2148
2149 2012-12-07 Dmitry Antipov <dmantipov@yandex.ru>
2150
2151 Convenient macro to check whether the buffer is hidden.
2152 * buffer.h (BUFFER_HIDDEN_P): New macro.
2153 * frame.c (make_frame): Use it. Adjust comment.
2154 * buffer.c (candidate_buffer): New function.
2155 (Fother_buffer, other_buffer_safely): Use it.
2156
2157 2012-12-06 Eli Zaretskii <eliz@gnu.org>
2158
2159 * w32proc.c (waitpid): Avoid busy-waiting when called with WNOHANG
2160 if the child process is still running. Instead, exit the wait
2161 loop and return zero. (Bug#13086)
2162
2163 2012-12-06 Dmitry Antipov <dmantipov@yandex.ru>
2164
2165 * frame.h (x_char_width, x_char_height): Remove prototypes.
2166 * w32term.h (x_char_width, x_char_height): Likewise.
2167 * xfns.c (x_char_width, x_char_height): Remove.
2168 * w32fns.c (x_char_width, x_char_height): Likewise.
2169 * nsfns.c (x_char_width, x_char_height): Likewise.
2170 * frame.c (Fframe_char_width): Use FRAME_COLUMN_WIDTH for
2171 all window frames.
2172 (Fframe_char_height): Likewise with FRAME_LINE_HEIGHT.
2173 * keyboard.c (command_loop_1): Remove prototype.
2174 (command_loop_2, top_level_1): Add static to match prototype.
2175
2176 2012-12-06 Paul Eggert <eggert@cs.ucla.edu>
2177
2178 Fix a recently-introduced delete-process race condition.
2179 * callproc.c, process.h (record_kill_process):
2180 New function, containing part of the old call_process_kill.
2181 (call_process_kill): Use it.
2182 This does not change call_process_kill's behavior.
2183 * process.c (Fdelete_process): Use record_kill_process to fix a
2184 race condition that could cause Emacs to lose track of a child.
2185
2186 2012-12-06 Dmitry Antipov <dmantipov@yandex.ru>
2187
2188 Avoid code duplication between prev_frame and next_frame.
2189 * frame.c (candidate_frame): New function. Add comment.
2190 (prev_frame, next_frame): Use it. Adjust comment.
2191
2192 2012-12-06 Eli Zaretskii <eliz@gnu.org>
2193
2194 * callproc.c (Fcall_process_region) [!HAVE_MKSTEMP]: If mktemp
2195 fails, signal an error instead of continuing with an empty
2196 string. (Bug#13079)
2197 Encode expanded temp file pattern before passing it to mkstemp or
2198 mktemp.
2199
2200 * fileio.c (file_name_as_directory, directory_file_name) [DOS_NT]:
2201 Encode the file name before passing it to dostounix_filename, in
2202 case it will downcase it (under w32-downcase-file-names).
2203 (Bug#12933)
2204
2205 2012-12-05 Paul Eggert <eggert@cs.ucla.edu>
2206
2207 Minor call-process cleanups.
2208 * callproc.c (Fcall_process): Do record-unwind-protect on MSDOS
2209 at the same time as other platforms, to simplify analysis.
2210 No need for fd0_volatile since we have synch_process_fd.
2211 Avoid needless emacs_close; arg is always negative.
2212
2213 2012-12-04 Andreas Schwab <schwab@linux-m68k.org>
2214
2215 * callproc.c (Fcall_process): Fix specpdl nesting for asynchronous
2216 processes.
2217
2218 2012-12-04 Dmitry Antipov <dmantipov@yandex.ru>
2219
2220 * lisp.h (Mouse_HLInfo): Remove set-but-unused mouse_face_image_state
2221 member. Adjust users. Convert mouse_face_past_end, mouse_face_defer
2222 and mouse_face_hidden members to a bitfields.
2223 * frame.h (struct frame): Remove set-but-not-used space_width member.
2224 (FRAME_SPACE_WIDTH): Remove.
2225 * nsterm.m, w32term.c, xterm.c: Adjust users.
2226 * termchar.h (struct tty_display_info): Remove set-but-unused se_is_so
2227 member. Adjust users. Convert term_initted, delete_in_insert_mode,
2228 costs_set, insert_mode, standout_mode, cursor_hidden and flow_control
2229 members to a bitfields.
2230
2231 2012-12-03 Paul Eggert <eggert@cs.ucla.edu>
2232
2233 Don't let call-process be a zombie factory (Bug#12980).
2234 Fixing this bug required some cleanup of the signal-handling code.
2235 As a side effect, this change also fixes a longstanding rare race
2236 condition whereby Emacs could mistakenly kill unrelated processes,
2237 and it fixes a bug where a second C-g does not kill a recalcitrant
2238 synchronous process in GNU/Linux and similar platforms.
2239 The patch should also fix the last vestiges of Bug#9488,
2240 a bug which has mostly been fixed on the trunk by other changes.
2241 * callproc.c, process.h (synch_process_alive, synch_process_death)
2242 (synch_process_termsig, sync_process_retcode):
2243 Remove. All uses removed, to simplify analysis and so that
2244 less consing is done inside critical sections.
2245 * callproc.c (call_process_exited): Remove. All uses replaced
2246 with !synch_process_pid.
2247 * callproc.c (synch_process_pid, synch_process_fd): New static vars.
2248 These take the role of what used to be in unwind-protect arg.
2249 All uses changed.
2250 (block_child_signal, unblock_child_signal):
2251 New functions, to avoid races that could kill innocent-victim processes.
2252 (call_process_kill, call_process_cleanup, Fcall_process): Use them.
2253 (call_process_kill): Record killed processes as deleted, so that
2254 zombies do not clutter up the system. Do this inside a critical
2255 section, to avoid a race that would allow the clutter.
2256 (call_process_cleanup): Fix code so that the second C-g works again
2257 on common platforms such as GNU/Linux.
2258 (Fcall_process): Create the child process in a critical section,
2259 to fix a race condition. If creating an asynchronous process,
2260 record it as deleted so that zombies do not clutter up the system.
2261 Do unwind-protect for WINDOWSNT too, as that's simpler in the
2262 light of these changes. Omit unnecessary call to emacs_close
2263 before failure, as the unwind-protect code does that.
2264 * callproc.c (call_process_cleanup):
2265 * w32proc.c (waitpid): Simplify now that synch_process_alive is gone.
2266 * process.c (record_deleted_pid): New function, containing
2267 code refactored out of Fdelete_process.
2268 (Fdelete_process): Use it.
2269 (process_status_retrieved): Remove. All callers changed to use
2270 child_status_change.
2271 (record_child_status_change): Remove, folding its contents into ...
2272 (handle_child_signal): ... this signal handler. Now, this
2273 function is purely a handler for SIGCHLD, and is not called after
2274 a synchronous waitpid returns; the synchronous code is moved to
2275 wait_for_termination. There is no need to worry about reaping
2276 more than one child now.
2277 * sysdep.c (get_child_status, child_status_changed): New functions.
2278 (wait_for_termination): Now takes int * status and bool
2279 interruptible arguments, too. Do not record child status change;
2280 that's now the caller's responsibility. All callers changed.
2281 Reimplement in terms of get_child_status.
2282 (wait_for_termination_1, interruptible_wait_for_termination):
2283 Remove. All callers changed to use wait_for_termination.
2284 * syswait.h: Include <stdbool.h>, for bool.
2285 (record_child_status_change, interruptible_wait_for_termination):
2286 Remove decls.
2287 (record_deleted_pid, child_status_changed): New decls.
2288 (wait_for_termination): Adjust to API changes noted above.
2289
2290 * bytecode.c, lisp.h (Qbytecode): Remove.
2291 No longer needed after 2012-11-20 interactive-p changes.
2292
2293 2012-12-03 Eli Zaretskii <eliz@gnu.org>
2294
2295 * xdisp.c (redisplay_window): If the cursor is visible, but inside
2296 the scroll margin, move point outside the margin. (Bug#13055)
2297
2298 2012-12-03 Jan Djärv <jan.h.d@swipnet.se>
2299
2300 * gtkutil.c (my_log_handler): New function.
2301 (xg_set_geometry): Set log handler to my_log_handler (Bug#11177).
2302
2303 2012-12-03 Dmitry Antipov <dmantipov@yandex.ru>
2304
2305 * lisp.h (modify_region): Rename to...
2306 (modify_region_1): ...new prototype.
2307 * textprop.c (modify_region): Now static. Adjust users.
2308 * insdel.c (modify_region): Rename to...
2309 (modify_region_1): ...new function to work with current buffer.
2310 Adjust comment and users. Use true and false for booleans.
2311
2312 2012-12-03 Dmitry Antipov <dmantipov@yandex.ru>
2313
2314 * alloc.c (free_save_value): New function.
2315 (safe_alloca_unwind): Use it.
2316 * lisp.h (free_save_value): New prototype.
2317 * editfns.c (save_excursion_save): Use Lisp_Misc_Save_Value.
2318 Add comment.
2319 (save_excursion_restore): Adjust to match saved data structure.
2320 Use free_save_value to offload some work from GC. Drop obsolete
2321 #if 0 code.
2322
2323 2012-12-03 Chong Yidong <cyd@gnu.org>
2324
2325 * fileio.c (Vauto_save_list_file_name): Doc fix.
2326
2327 2012-12-03 Fabrice Popineau <fabrice.popineau@gmail.com>
2328
2329 * w32fns.c: Remove prototype of atof.
2330 (syspage_mask): Make it DWORD_PTR, for compatibility with 64-bit
2331 builds.
2332 (file_dialog_callback): Make it UINT_PTR.
2333
2334 * w32common.h (syspage_mask): Declare DWORD_PTR, for compatibility
2335 with 64-bit builds.
2336
2337 * w32.c (FILE_DEVICE_FILE_SYSTEM, METHOD_BUFFERED)
2338 (FILE_ANY_ACCESS, CTL_CODE) [_MSC_VER]: Define only if not already
2339 defined.
2340
2341 2012-12-03 Glenn Morris <rgm@gnu.org>
2342
2343 * data.c (Fboundp, Fsymbol_value): Doc fix re lexical-binding.
2344
2345 2012-12-02 Paul Eggert <eggert@cs.ucla.edu>
2346
2347 Fix xpalloc confusion after memory is exhausted.
2348 * alloc.c (xpalloc): Comment fix.
2349 * charset.c (Fdefine_charset_internal): If xpalloc exhausts memory
2350 and signals an error, do not clear charset_table_size, as
2351 charset_table is still valid.
2352 * doprnt.c (evxprintf): Clear *BUF after freeing it.
2353
2354 Use execve to avoid need to munge environ (Bug#13054).
2355 * callproc.c (Fcall_process):
2356 * process.c (create_process):
2357 Don't save and restore environ; no longer needed.
2358 * callproc.c (child_setup):
2359 Use execve, not execvp, to preserve environ.
2360
2361 2012-12-01 Paul Eggert <eggert@cs.ucla.edu>
2362
2363 * xterm.c (x_draw_image_relief): Remove unused locals (Bug#10500).
2364
2365 2012-12-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2366
2367 * xterm.c (x_draw_relief_rect, x_draw_image_relief): Fix relief
2368 display for sliced images (Bug#10500).
2369
2370 * w32term.c (w32_draw_relief_rect, x_draw_image_relief): Likewise.
2371
2372 2012-11-30 Juanma Barranquero <lekktu@gmail.com>
2373
2374 * doc.c (Fdocumentation): Re-add handling of function-documentation,
2375 accidentally removed in 2012-11-09T04:10:16Z!monnier@iro.umontreal.ca (bug#13034).
2376
2377 2012-11-29 Dmitry Antipov <dmantipov@yandex.ru>
2378
2379 * xdisp.c (window_outdated): Remove eassert since it hits
2380 some suspicious corner cases (see Bug#13007 and Bug#13012).
2381 (mode_line_update_needed): New function.
2382 (redisplay_internal, redisplay_window): Use it.
2383 (ensure_selected_frame): New function.
2384 (redisplay_internal, unwind_redisplay): Use it.
2385 (redisplay_internal): Move comment about buffer_shared...
2386 (buffer_shared_and_changed): ...near to its real use.
2387
2388 2012-11-29 Paul Eggert <eggert@cs.ucla.edu>
2389
2390 * callproc.c (Fcall_process): Don't misreport vfork failure.
2391
2392 2012-11-28 Paul Eggert <eggert@cs.ucla.edu>
2393
2394 * callproc.c (Fcall_process): Fix vfork portability problems.
2395 Do not assume that fd[0], count, filefd, and save_environ survive
2396 vfork. Fix bug whereby wrong errno value could be reported for
2397 pipe failure. Some minor cleanups, too, as follows. Move buf and
2398 bufsize to the context where they're needed. Change new_argv to
2399 be of type char **, as this is more convenient and avoids casts.
2400 (CALLPROC_BUFFER_SIZE_MIN, CALLPROC_BUFFER_SIZE_MAX):
2401 Now local constants, not macros.
2402
2403 2012-11-18 Kenichi Handa <handa@gnu.org>
2404
2405 * font.c (font_unparse_xlfd): Fix previous change. Keep "const"
2406 for the variable "f".
2407
2408 2012-11-13 Kenichi Handa <handa@gnu.org>
2409
2410 * font.c (font_unparse_xlfd): Exclude special characters from the
2411 generating XLFD name.
2412
2413 2012-11-27 Paul Eggert <eggert@cs.ucla.edu>
2414
2415 Assume POSIX 1003.1-1988 or later for grp.h, pwd.h.
2416 * dired.c (stat_uname, stat_gname):
2417 * fileio.c (Fexpand_file_name): Remove no-longer-needed casts.
2418
2419 Assume POSIX 1003.1-1988 or later for errno.h (Bug#12968).
2420 * dired.c (directory_files_internal, file_name_completion):
2421 Assume EAGAIN and EINTR are defined.
2422
2423 * fileio.c (Fcopy_file): Assume EISDIR is defined.
2424 * gmalloc.c (ENOMEM, EINVAL): Assume they're defined.
2425 * gnutls.c (emacs_gnutls_write): Assume EAGAIN is defined.
2426 * lread.c (readbyte_from_file): Assume EINTR is defined.
2427 * process.c (wait_reading_process_output, send_process) [subprocesses]:
2428 Assume EIO and EAGAIN are defined.
2429 * unexcoff.c (write_segment): Assume EFAULT is defined.
2430
2431 2012-11-27 Eli Zaretskii <eliz@gnu.org>
2432
2433 * fontset.c (Finternal_char_font): Return nil on non-GUI frames.
2434 (Bug#11964)
2435
2436 * xdisp.c (draw_glyphs): Don't draw in mouse face if mouse
2437 highlighting on the frame was cleared. Prevents assertion
2438 violations when repeatedly clicking on the "Top" link of the
2439 "bread-crumbs" in Info buffers.
2440
2441 2012-11-25 Paul Eggert <eggert@cs.ucla.edu>
2442
2443 * sysdep.c (sys_subshell): Don't assume pid_t fits in int.
2444
2445 2012-11-24 Ken Brown <kbrown@cornell.edu>
2446
2447 * keyboard.c (HAVE_MOUSE):
2448 * frame.c (HAVE_MOUSE): Remove, and rewrite code as if HAVE_MOUSE
2449 were always defined.
2450
2451 2012-11-24 Eli Zaretskii <eliz@gnu.org>
2452
2453 * xdisp.c (set_cursor_from_row): Skip step 2 only if point is not
2454 between bpos_covered and bpos_max. This fixes cursor display when
2455 several display strings follow each other.
2456
2457 * .gdbinit (pgx): If the glyph's object is a string, display the
2458 pointer to string data, rather than the value of the string object
2459 itself (which barfs under CHECK_LISP_OBJECT_TYPE).
2460
2461 * indent.c (Fvertical_motion): If the starting position is covered
2462 by a display string, return to one position before that, to avoid
2463 overshooting it inside move_it_to. (Bug#12930)
2464
2465 2012-11-23 Dmitry Antipov <dmantipov@yandex.ru>
2466
2467 * frame.h (struct frame): Remove display_preempted member
2468 since all users are dead long ago.
2469 * nsterm.h (struct x_output): Use the only dummy member.
2470 * w32menu.c (pending_menu_activation): Remove since not
2471 really used.
2472 (set_frame_menubar): Adjust user.
2473 * w32term.h (struct x_output): Drop outdated #if 0 code.
2474 (struct w32_output): Use bitfields for explicit_parent,
2475 asked_for_visible and menubar_active members.
2476 Drop unused pending_menu_activation member.
2477 * xterm.h (struct x_output): Drop outdated #if 0 code.
2478 Use bitfields for explicit_parent, asked_for_visible,
2479 has_been_visible and net_wm_state_hidden_seen members.
2480
2481 2012-11-23 Eli Zaretskii <eliz@gnu.org>
2482
2483 * makefile.w32-in (globals.h, gl-stamp): Use $(SWITCHCHAR) instead
2484 of a literal "/". (Bug#12955)
2485 (gl-stamp): Invoke fc.exe directly, not through cmd.
2486
2487 2012-11-23 Paul Eggert <eggert@cs.ucla.edu>
2488
2489 Assume POSIX 1003.1-1988 or later for dirent.h (Bug#12958).
2490 * dired.c: Assume HAVE_DIRENT_H.
2491 (NAMLEN): Remove, replacing with ...
2492 (dirent_namelen): New function. All uses changed. Use the GNU macro
2493 _D_EXACT_NAMELEN if available, as it's faster than strlen.
2494 (DIRENTRY): Remove, replacing all uses with 'struct dirent'.
2495 (DIRENTRY_NONEMPTY): Remove. All callers now assume it's nonzero.
2496 * makefile.w32-in (DIR_H): Remove. All uses replaced with
2497 $(NT_INC)/dirent.h.
2498 ($(BLD)/w32.$(O)): Do not depend on $(SRC)/ndir.h.
2499 * ndir.h: Rename to ../nt/inc/dirent.h.
2500 * sysdep.h (closedir) [!HAVE_CLOSEDIR]: Remove.
2501 Do not include <dirent.h>; no longer needed.
2502 * w32.c: Include <dirent.h> rather than "ndir.h".
2503
2504 2012-11-23 Chong Yidong <cyd@gnu.org>
2505
2506 * xftfont.c (xftfont_open): Remove duplicate assignment.
2507
2508 2012-11-22 Dmitry Antipov <dmantipov@yandex.ru>
2509
2510 * alloc.c (Fgarbage_collect): Unblock input after clearing
2511 gc_in_progress to avoid note_mouse_highlight glitch with GC.
2512 * frame.h (FRAME_MOUSE_UPDATE): New macro.
2513 * msdos.c (IT_frame_up_to_date): Use it here...
2514 * w32term.c (w32_frame_up_to_date): ...here...
2515 * xterm.c (XTframe_up_to_date): ...and here...
2516 * nsterm.m (ns_frame_up_to_date): ...but not here.
2517 * lisp.h (Mouse_HLInfo): Remove mouse_face_deferred_gc member.
2518 Adjust users.
2519 * xdisp.c (message2_nolog, message3_nolog, note_mouse_highlight):
2520 Do not check whether GC is in progress.
2521
2522 2012-11-22 Dmitry Antipov <dmantipov@yandex.ru>
2523
2524 * xdisp.c (window_buffer_changed): New function.
2525 (update_menu_bar, update_tool_bar): Use it to
2526 simplify large 'if' statements.
2527 (redisplay_internal): Generalize commonly used
2528 'tail' and 'frame' local variables.
2529
2530 2012-11-22 Eli Zaretskii <eliz@gnu.org>
2531
2532 * w32.c (getcwd): Fix the 2nd argument type, to prevent conflicts
2533 with Windows system header.
2534
2535 2012-11-21 Paul Eggert <eggert@cs.ucla.edu>
2536
2537 Assume POSIX 1003.1-1988 or later for unistd.h (Bug#12945).
2538 * alloc.c: Assume unistd.h exists.
2539 * fileio.c (Fexpand_file_name) [DOS_NT]: Use getcwd, not getwd.
2540 * sysdep.c (get_current_dir_name): Assume getcwd exists.
2541 (getwd) [USG]: Remove; no longer needed.
2542 (sys_subshell) [DOS_NT]: Use getcwd, not getwd.
2543 * w32.c (getcwd): Rename from getwd, and switch to getcwd's API.
2544 * w32.h (getcwd): Remove decl.
2545
2546 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
2547
2548 * xdisp.c (fast_set_selected_frame): Rename from update_tool_bar_unwind.
2549 Make it set selected_window as well.
2550 (update_tool_bar): Use it.
2551
2552 2012-11-21 Ken Brown <kbrown@cornell.edu>
2553
2554 * emacs.c (main): Set the G_SLICE environment variable for all
2555 Cygwin builds, not just GTK builds. See
2556 https://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00368.html.
2557
2558 2012-11-21 Eli Zaretskii <eliz@gnu.org>
2559
2560 * w32.c (FILE_DEVICE_FILE_SYSTEM, METHOD_BUFFERED)
2561 (FILE_ANY_ACCESS, CTL_CODE, FSCTL_GET_REPARSE_POINT) [_MSC_VER]:
2562 Define for the MSVC compiler.
2563
2564 * w32term.h (EnumSystemLocalesW) [_MSC_VER]: Add a missing semi-colon.
2565
2566 * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
2567 (Fexpand_file_name) [DOS_NT]: Pass encoded file name to
2568 dostounix_filename. Prevents crashes down the road, because
2569 dostounix_filename assumes it gets a unibyte string.
2570 Reported by Michel de Ruiter <michel@sentient.nl>, see
2571 http://lists.gnu.org/archive/html/help-emacs-windows/2012-11/msg00017.html
2572
2573 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
2574
2575 Conflate Qnil and Qunbound for `symbol-function'.
2576 * alloc.c (Fmake_symbol): Initialize `function' to Qnil.
2577 * lread.c (init_obarray): Set `function' fields to Qnil.
2578 * eval.c (Fcommandp): Ignore Qunbound.
2579 (Fautoload, eval_sub, Fapply, Ffuncall, Fmacroexpand):
2580 * data.c (Ffset, Ffboundp, indirect_function, Findirect_function):
2581 Test NILP rather than Qunbound.
2582 (Ffmakunbound): Set to Qnil.
2583 (Fsymbol_function): Never signal an error.
2584 (Finteractive_form): Ignore Qunbound.
2585
2586 2012-11-20 Paul Eggert <eggert@cs.ucla.edu>
2587
2588 * eval.c (interactive_p): Remove no-longer-used decl.
2589
2590 2012-11-20 Dmitry Antipov <dmantipov@yandex.ru>
2591
2592 * xdisp.c (buffer_shared): Adjust comment.
2593 (buffer_shared_and_changed): New function.
2594 (prepare_menu_bars, redisplay_internal): Use it to
2595 decide whether all windows or frames should be updated.
2596 (window_outdated): New function.
2597 (text_outside_line_unchanged_p, redisplay_window): Use it.
2598 (redisplay_internal): Likewise. Fix indentation.
2599
2600 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
2601
2602 * eval.c (Finteractive_p, Fcalled_interactively_p, interactive_p): Remove.
2603 (syms_of_eval): Remove corresponding defsubr.
2604 * bytecode.c (exec_byte_code): `interactive-p' is now a Lisp function.
2605
2606 2012-11-19 Daniel Colascione <dancol@dancol.org>
2607
2608 * w32fns.c (Fx_file_dialog):
2609 (Fx_file_dialog): Accomodate rename of cygwin_convert_path* to
2610 cygwin_convert_file_name*.
2611
2612 * cygw32.c (Fcygwin_convert_path_to_windows, syms_of_cygw32):
2613 Rename cygwin_convert_path* to cygwin_convert_file_name*.
2614
2615 2012-11-18 Paul Eggert <eggert@cs.ucla.edu>
2616
2617 * nsterm.m (ns_select): Send SIGIO only to self, not to process group.
2618
2619 2012-11-18 Eli Zaretskii <eliz@gnu.org>
2620
2621 * w32select.c: Include w32common.h before w32term.h, so that
2622 windows.h gets included before w32term.h uses some of its
2623 features, see below.
2624
2625 * w32term.h (LOCALE_ENUMPROCA, LOCALE_ENUMPROCW) [_MSC_VER]:
2626 New typedefs.
2627 (EnumSystemLocalesA, EnumSystemLocalesW) [_MSC_VER]:
2628 New prototypes.
2629 (EnumSystemLocales) [_MSC_VER]: Define if undefined. (Bug#12878)
2630
2631 2012-11-18 Jan Djärv <jan.h.d@swipnet.se>
2632
2633 * nsterm.m (hold_event): Set send_appdefined to YES (Bug#12834).
2634 (ns_select): Return at once if events are held (Bug#12834).
2635
2636 2012-11-18 enami tsugutomo <tsugutomo.enami@jp.sony.com>
2637
2638 * unexelf.c (ELFSIZE) [__NetBSD__ && _LP64]: Set to 64.
2639 Needed following 2012-10-20 change. (Bug#12902)
2640
2641 2012-11-18 Juanma Barranquero <lekktu@gmail.com>
2642
2643 * w32proc.c (waitpid): Remove unused label get_result.
2644
2645 2012-11-17 Juanma Barranquero <lekktu@gmail.com>
2646
2647 * makefile.w32-in (SYSWAIT_H): New macro.
2648 ($(BLD)/callproc.$(O), $(BLD)/w32proc.$(O), $(BLD)/process.$(O))
2649 ($(BLD)/sysdep.$(O)): Update dependencies.
2650
2651 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
2652
2653 Assume POSIX 1003.1-1988 or later for fcntl.h (Bug#12881).
2654 * callproc.c (relocate_fd): Assume F_DUPFD.
2655 * emacs.c, term.c (O_RDWR): Remove.
2656 * keyboard.c (tty_read_avail_input): Use O_NONBLOCK rather than
2657 O_NDELAY, since O_NONBLOCK is the standard name for this flag.
2658 * nsterm.m: Assume <fcntl.h> exists.
2659 * process.c (NON_BLOCKING_CONNECT, allocate_pty, create_process)
2660 (create_pty, Fmake_network_process, server_accept_connection)
2661 (wait_reading_process_output, init_process_emacs):
2662 Assume O_NONBLOCK.
2663 (wait_reading_process_output): Put in a special case for WINDOWSNT
2664 to mimick the older behavior where it had O_NDELAY but not O_NONBLOCK.
2665 It's not clear this is needed, but it's a more-conservative change.
2666 (create_process): Assume FD_CLOEXEC.
2667 (create_process, create_pty): Assume O_NOCTTY.
2668 * sysdep.c (init_sys_modes, reset_sys_modes): Assume F_SETFL.
2669 (reset_sys_modes): Use O_NONBLOCK rather than O_NDELAY.
2670 Omit if not DOS_NT, since F_GETFL is not defined there.
2671 (serial_open): Assume O_NONBLOCK and O_NOCTTY.
2672 * term.c: Include <fcntl.h>, for flags like O_NOCTTY.
2673 (O_NOCTTY): Remove.
2674 (init_tty): Assume O_IGNORE_CTTY is defined to 0 on platforms that
2675 lack it, since gnulib guarantees this.
2676 * w32.c (fcntl): Test for O_NONBLOCK rather than O_NDELAY.
2677
2678 2012-11-17 Eli Zaretskii <eliz@gnu.org>
2679
2680 * w32.c (faccessat): Pretend that directories have the execute bit
2681 set. Emacs expects that, e.g., in files.el:cd-absolute.
2682
2683 * w32proc.c (create_child): Don't clip the PID of the child
2684 process to fit into an Emacs integer, as this is no longer a
2685 restriction.
2686 (waitpid): Rename from sys_wait. Emulate a Posix 'waitpid' by
2687 reaping only the process specified by PID argument, if that is
2688 positive. Use PID instead of dead_child to know which process to
2689 reap. Wait for the child to die only if WNOHANG is not in
2690 OPTIONS.
2691 (sys_select): Don't set dead_child.
2692
2693 * sysdep.c (wait_for_termination_1): Remove the WINDOWSNT portion,
2694 as it is no longer needed.
2695
2696 * process.c (waitpid, WUNTRACED) [!WNOHANG]: Remove definitions,
2697 no longer needed.
2698 (record_child_status_change): Remove the setting of
2699 record_at_most_one_child for the !WNOHANG case.
2700
2701 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
2702
2703 Fix problems in ns port found by static checking.
2704 * nsterm.m: Include <pthread.h>, for pthread_mutex_lock etc.
2705 (hold_event, setPosition:portion:whole:): Send SIGIO only to self,
2706 not to process group.
2707 (ns_select): Use emacs_write, not write, as that's more robust
2708 in the presence of signals.
2709 (fd_handler:): Check for read errors.
2710
2711 2012-11-16 Glenn Morris <rgm@gnu.org>
2712
2713 * editfns.c (Fmessage): Mention message-log-max. (Bug#12849)
2714
2715 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
2716
2717 * eval.c (Finteractive_p): Revert lexbind-merge mishap.
2718
2719 2012-11-16 Eli Zaretskii <eliz@gnu.org>
2720
2721 * w32proc.c (timer_loop): Make sure SuspendThread and ResumeThread
2722 use the same value of thread handle.
2723 (start_timer_thread): If the timer thread exited (due to error),
2724 clean up by closing the two handles it used. Duplicate the caller
2725 thread's handle here, so it gets duplicated only once, when
2726 launching the timer thread. Set priority of the timer thread, not
2727 the caller thread.
2728 (getitimer): Don't duplicate the caller thread's handle here.
2729 (Bug#12832)
2730
2731 2012-11-16 Jan Djärv <jan.h.d@swipnet.se>
2732
2733 * nsterm.m (hold_event): Send SIGIO to make sure ns_read_socket is
2734 called (Bug#12834).
2735
2736 2012-11-16 Paul Eggert <eggert@cs.ucla.edu>
2737
2738 Remove no-longer-used pty_max_bytes variable.
2739 * process.c (pty_max_bytes): Remove; unused.
2740 (send_process): Do not set it.
2741
2742 2012-11-15 Juanma Barranquero <lekktu@gmail.com>
2743
2744 * makefile.w32-in ($(BLD)/dispnew.$(O), $(BLD)/emacs.$(O)):
2745 Update dependencies.
2746
2747 2012-11-15 Paul Eggert <eggert@cs.ucla.edu>
2748
2749 * eval.c (mark_backtrace) [BYTE_MARK_STACK]: Remove stray '*'.
2750 This follows up on the 2012-09-29 patch that removed indirection
2751 for the 'function' field. Reported by Sergey Vinokurov in
2752 <http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00263.html>.
2753
2754 2012-11-14 Eli Zaretskii <eliz@gnu.org>
2755
2756 * w32.c (faccessat): Rename from sys_faccessat. (No need to use a
2757 different name, as the MS runtime does not have such a function,
2758 and probably never will.) All callers changed. Ignore DIRFD
2759 value if PATH is an absolute file name, to match Posix spec
2760 better. If AT_SYMLINK_NOFOLLOW is set in FLAGS, don't resolve
2761 symlinks.
2762
2763 2012-11-14 Dmitry Antipov <dmantipov@yandex.ru>
2764
2765 * xdisp.c (echo_area_display, redisplay_internal):
2766 Omit redundant check whether frame_garbaged is set.
2767
2768 2012-11-14 Paul Eggert <eggert@cs.ucla.edu>
2769
2770 Use faccessat, not access, when checking file permissions (Bug#12632).
2771 This fixes a bug that has been present in Emacs since its creation.
2772 It was reported by Chris Torek in 1983 even before GNU Emacs existed,
2773 which must set some sort of record. (Torek's bug report was against
2774 a predecessor of GNU Emacs, but GNU Emacs happened to have the
2775 same common flaw.) See Torek's Usenet posting
2776 "setuid/setgid programs & Emacs" Article-I.D.: sri-arpa.858
2777 Posted: Fri Apr 8 14:18:56 1983.
2778 * Makefile.in (LIB_EACCESS): New macro.
2779 (LIBES): Use it.
2780 * callproc.c (init_callproc):
2781 * charset.c (init_charset):
2782 * fileio.c (check_existing, check_executable, check_writable)
2783 (Ffile_readable_p):
2784 * lread.c (openp, load_path_check):
2785 * process.c (allocate_pty):
2786 * xrdb.c (file_p):
2787 Use effective UID when checking permissions, not real UID.
2788 * callproc.c (init_callproc):
2789 * charset.c (init_charset):
2790 * lread.c (load_path_check, init_lread):
2791 Test whether directories are accessible, not merely whether they exist.
2792 * conf_post.h (GNULIB_SUPPORT_ONLY_AT_FDCWD): New macro.
2793 * fileio.c (check_existing, check_executable, check_writable)
2794 (Ffile_readable_p):
2795 Use symbolic names instead of integers for the flags, as they're
2796 portable now.
2797 (check_writable): New arg AMODE. All uses changed.
2798 Set errno on failure.
2799 (Ffile_readable_p): Use faccessat, not stat + open + close.
2800 (Ffile_writable_p): No need to call check_existing + check_writable.
2801 Just call check_writable and then look at errno. This saves a syscall.
2802 dir should never be nil; replace an unnecessary runtime check
2803 with an eassert. When checking the parent directory of a nonexistent
2804 file, check that the directory is searchable as well as writable, as
2805 we can't create files in unsearchable directories.
2806 (file_directory_p): New function, which uses 'stat' on most platforms
2807 but faccessat with D_OK (for efficiency) if WINDOWSNT.
2808 (Ffile_directory_p, Fset_file_times): Use it.
2809 (file_accessible_directory_p): New function, which uses a single
2810 syscall for efficiency.
2811 (Ffile_accessible_directory_p): Use it.
2812 * xrdb.c (file_p): Use file_directory_p.
2813 * lisp.h (file_directory_p, file_accessible_directory_p): New decls.
2814 * lread.c (openp): When opening a file, use fstat rather than
2815 stat, as that avoids a permissions race. When not opening a file,
2816 use file_directory_p rather than stat.
2817 (dir_warning): First arg is now a usage string, not a format.
2818 Use errno. All uses changed.
2819 * nsterm.m (ns_term_init): Remove unnecessary call to file-readable
2820 that merely introduced a race.
2821 * process.c, sysdep.c, term.c: All uses of '#ifdef O_NONBLOCK'
2822 changed to '#if O_NONBLOCK', to accommodate gnulib O_* style,
2823 and similarly for the other O_* flags.
2824 * w32.c (sys_faccessat): Rename from sys_access and switch to
2825 faccessat's API. All uses changed.
2826 * xrdb.c: Do not include <sys/stat.h>; no longer needed.
2827 (magic_db): Rename from magic_file_p.
2828 (magic_db, search_magic_path): Return an XrmDatabase rather than a
2829 char *, so that we don't have to test for file existence
2830 separately from opening the file for reading. This removes a race
2831 fixes a permission-checking problem, and simplifies the code.
2832 All uses changed.
2833 (file_p): Remove; no longer needed.
2834
2835 2012-11-13 Dmitry Antipov <dmantipov@yandex.ru>
2836
2837 Omit glyphs initialization at startup.
2838 * dispnew.c (glyphs_initialized_initially_p): Remove.
2839 (adjust_frame_glyphs_initially): Likewise. Adjust users.
2840 (Fredraw_frame): Move actual code from here...
2841 (redraw_frame): ...to here. Add eassert. Adjust comment.
2842 (Fredraw_display): Use redraw_frame.
2843 * xdisp.c (clear_garbaged_frames): Likewise.
2844
2845 2012-11-13 Eli Zaretskii <eliz@gnu.org>
2846
2847 * xdisp.c (decode_mode_spec): Limit the value of WIDTH argument
2848 passed to pint2str and pint2hrstr to be at most the size of the
2849 frame's decode_mode_spec_buffer. This avoids crashes with very
2850 large values of FIELD_WIDTH argument to decode_mode_spec.
2851 (Bug#12867)
2852
2853 2012-11-13 Paul Eggert <eggert@cs.ucla.edu>
2854
2855 Fix a race with verify-visited-file-modtime (Bug#12863).
2856 Since at least 1991 Emacs has ignored an mtime difference of no
2857 more than one second, but my guess is that this was to work around
2858 file system bugs that were fixed long ago. Since the race is
2859 causing problems now, let's remove that code.
2860 * fileio.c (Fverify_visited_file_modtime): Do not accept a file
2861 whose time stamp is off by no more than a second. Insist that the
2862 file time stamps match exactly.
2863
2864 2012-11-12 Dmitry Antipov <dmantipov@yandex.ru>
2865
2866 * frame.h (struct frame): Convert external_tool_bar member to
2867 1-bit unsigned bitfield.
2868 * termhooks.h (struct terminal): Remove mouse_moved member since
2869 all users are long dead. Adjust comment on mouse_position_hook.
2870
2871 2012-11-12 Dmitry Antipov <dmantipov@yandex.ru>
2872
2873 Simplify by using FOR_EACH_FRAME here and there.
2874 * frame.c (next_frame, prev_frame, other_visible_frames)
2875 (delete_frame, visible-frame-list): Use FOR_EACH_FRAME.
2876 * w32term.c (x_window_to_scroll_bar): Likewise.
2877 * window.c (window_list): Likewise.
2878 * xdisp.c (x_consider_frame_title): Likewise.
2879 * xfaces.c ( Fdisplay_supports_face_attributes_p): Likewise.
2880 * xfns.c (x_window_to_frame, x_any_window_to_frame)
2881 (x_menubar_window_to_frame, x_top_window_to_frame): Likewise.
2882 * xmenu.c (menubar_id_to_frame): Likewise.
2883 * xselect.c (frame_for_x_selection): Likewise.
2884 * xterm.c (x_frame_of_widget, x_window_to_scroll_bar)
2885 (x_window_to_menu_bar): Likewise.
2886 * w32fns.c (x_window_to_frame): Likewise. Adjust comment.
2887
2888 2012-11-12 Paul Eggert <eggert@cs.ucla.edu>
2889
2890 * data.c (Qdefalias_fset_function): Now static.
2891
2892 Another tweak to vectorlike_header change.
2893 * alloc.c (struct Lisp_Vectorlike_Free, NEXT_IN_FREE_LIST):
2894 Remove, and replace all uses with ...
2895 (next_in_free_list, set_next_in_free_list):
2896 New functions, which respect C's aliasing rules better.
2897
2898 2012-11-11 Paul Eggert <eggert@cs.ucla.edu>
2899
2900 * window.c (list4i): Rename from 'quad'. All uses changed.
2901 Needed because <sys/types.h> defines 'quad' on Solaris 10.
2902
2903 2012-11-11 Juanma Barranquero <lekktu@gmail.com>
2904
2905 * xdisp.c (start_hourglass) [HAVE_NTGUI]: Add block to silence
2906 warning about mixing declarations and code in ISO C90.
2907
2908 2012-11-10 Martin Rudalics <rudalics@gmx.at>
2909
2910 * window.c (Fsplit_window_internal): Set combination limit of
2911 new parent window to t iff Vwindow_combination_limit is t;
2912 fixing a regression introduced with the change from 2012-09-22.
2913 (Fset_window_combination_limit): Fix doc-string.
2914
2915 2012-11-10 Eli Zaretskii <eliz@gnu.org>
2916
2917 * xdisp.c (try_scrolling): Fix correction of aggressive-scroll
2918 amount when the scroll margins are too large. When scrolling
2919 backwards in the buffer, give up if cannot reach point or the
2920 scroll margin within a reasonable number of screen lines.
2921 Fixes point position in window under scroll-up/down-aggressively when
2922 point is positioned many lines beyond the window top/bottom.
2923 (Bug#12811)
2924
2925 * ralloc.c (relinquish): If real_morecore fails to return memory
2926 to the system, don't crash; instead, leave the last heap
2927 unchanged and return. (Bug#12774)
2928
2929 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
2930
2931 * lisp.h (AUTOLOADP): New macro.
2932 * eval.c (Fautoload): Don't attach to loadhist, call Fdefalias instead.
2933 * data.c (Ffset): Remove special ad-advice-info handling.
2934 (Fdefalias): Handle autoload definitions and new Qdefalias_fset_function.
2935 (Fsubr_arity): CSE.
2936 (Finteractive_form): Simplify.
2937 (Fquo): Don't insist on having at least 2 arguments.
2938 (Qdefalias_fset_function): New var.
2939
2940 2012-11-09 Jan Djärv <jan.h.d@swipnet.se>
2941
2942 * image.c (xpm_make_color_table_h): Change to hashtest_equal.
2943
2944 * nsfont.m (Qcondensed, Qexpanded): New variables.
2945 (ns_descriptor_to_entity): Restore Qcondensed, Qexpanded setting.
2946 (syms_of_nsfont): Defsym Qcondensed, Qexpanded.
2947
2948 2012-11-09 Dmitry Antipov <dmantipov@yandex.ru>
2949
2950 Fix recently introduced crash on MS-Windows (Bug#12839).
2951 * w32term.h (struct scroll_bar): Use convenient header.
2952 (SCROLL_BAR_VEC_SIZE): Remove.
2953 * w32term.c (x_scroll_bar_create): Use VECSIZE.
2954
2955 2012-11-09 Dmitry Antipov <dmantipov@yandex.ru>
2956
2957 Tweak last vectorlike_header change.
2958 * alloc.c (struct Lisp_Vectorlike_Free): Special type to represent
2959 vectorlike object on the free list. This is introduced to avoid
2960 some (but not all) pointer casting and aliasing problems, see
2961 http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00105.html.
2962 * .gdbinit (pvectype, pvecsize): New commands to examine vectorlike
2963 objects.
2964 (xvectype, xvecsize): Use them to examine Lisp_Object values.
2965
2966 2012-11-09 Jan Djärv <jan.h.d@swipnet.se>
2967
2968 * nsfont.m (ns_descriptor_to_entity): Qcondensed and Qexpanded has
2969 been removed, so remove them here also.
2970
2971 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
2972
2973 * doc.c (Fdocumentation): Handle new property
2974 dynamic-docstring-function to replace the old ad-advice-info.
2975
2976 2012-11-09 Paul Eggert <eggert@cs.ucla.edu>
2977
2978 * fns.c (Qeql, hashtest_eq): Now static.
2979
2980 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
2981
2982 * lisp.h (XHASH): Redefine to be imperfect and fit in a Lisp int.
2983 * fns.c (hashfn_eq, hashfn_eql, sxhash):
2984 * profiler.c (hashfn_profiler): Don't use XUINT on non-integers.
2985 * buffer.c (compare_overlays): Use XLI rather than XHASH.
2986
2987 2012-11-08 Paul Eggert <eggert@cs.ucla.edu>
2988
2989 Use same hash function for hashfn_profiler as for hash_string etc.
2990 * fns.c (SXHASH_COMBINE): Remove. All uses replaced by sxhash_combine.
2991 * lisp.h (sxhash_combine): New inline function, with the contents
2992 of the old SXHASH_COMBINE.
2993 * profiler.c (hashfn_profiler): Use it, instead of having a
2994 special hash function containing a comparison that always yields 1.
2995
2996 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
2997
2998 * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic)
2999 (Qultra_condensed, Qextra_condensed, Qcondensed, Qsemi_condensed)
3000 (Qsemi_expanded, Qextra_expanded, Qexpanded, Qultra_expanded):
3001 Remove unused vars.
3002
3003 2012-11-08 Jan Djärv <jan.h.d@swipnet.se>
3004
3005 * image.c (xpm_make_color_table_h): Fix compiler error because
3006 make_hash_table changed.
3007
3008 2012-11-08 Thomas Kappler <tkappler@gmail.com> (tiny change)
3009
3010 * nsfont.m (ns_findfonts): Handle empty matchingDescs (Bug#11541).
3011
3012 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
3013
3014 Use ad-hoc comparison function for the profiler's hash-tables.
3015 * profiler.c (Qprofiler_backtrace_equal, hashtest_profiler): New vars.
3016 (make_log): Use them.
3017 (handle_profiler_signal): Don't inhibit quit any longer since we don't
3018 call Fequal any more.
3019 (Ffunction_equal): New function.
3020 (cmpfn_profiler, hashfn_profiler): New functions.
3021 (syms_of_profiler): Initialize them.
3022 * lisp.h (struct hash_table_test): New struct.
3023 (struct Lisp_Hash_Table): Use it.
3024 * alloc.c (mark_object): Mark hash_table_test fields of hash tables.
3025 * fns.c (make_hash_table): Take a struct to describe the test.
3026 (cmpfn_eql, cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
3027 (hashfn_equal, hashfn_user_defined): Adjust to new calling convention.
3028 (hash_lookup, hash_remove_from_table): Move assertion checking of
3029 hashfn result here. Check hash-equality before calling cmpfn.
3030 (Fmake_hash_table): Adjust call to make_hash_table.
3031 (hashtest_eq, hashtest_eql, hashtest_equal): New structs.
3032 (syms_of_fns): Initialize them.
3033 * emacs.c (main): Move syms_of_fns earlier.
3034 * xterm.c (syms_of_xterm):
3035 * category.c (hash_get_category_set): Adjust call to make_hash_table.
3036 * print.c (print_object): Adjust to new hash-table struct.
3037 * composite.c (composition_gstring_put_cache): Adjust to new hashfn.
3038
3039 2012-11-08 Eli Zaretskii <eliz@gnu.org>
3040
3041 * w32fns.c (modifier_set): Fix handling of Scroll Lock when the
3042 value of w32-scroll-lock-modifier is neither nil nor one of the
3043 known key modifiers. (Bug#12806)
3044
3045 2012-11-08 Dmitry Antipov <dmantipov@yandex.ru>
3046
3047 Shrink struct vectorlike_header to the only size field.
3048 * lisp.h (enum pvec_type): Avoid explicit enum member values.
3049 Adjust comment.
3050 (enum More_Lisp_Bits): Change PSEUDOVECTOR_SIZE_BITS and
3051 PVEC_TYPE_MASK to arrange new bitfield in the vector header.
3052 (PSEUDOVECTOR_REST_BITS, PSEUDOVECTOR_REST_MASK): New members.
3053 (PSEUDOVECTOR_AREA_BITS): New member used to extract subtype
3054 information from the vector header. Adjust comment.
3055 (XSETPVECTYPE, XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR)
3056 (PSEUDOVECTOR_TYPEP, DEFUN): Adjust to match new vector header
3057 layout.
3058 (XSETSUBR, SUBRP): Adjust to match new Lisp_Subr layout.
3059 (struct vectorlike_header): Remove next member. Adjust comment.
3060 (struct Lisp_Subr): Add convenient header. Adjust comment.
3061 (allocate_pseudovector): Adjust prototype.
3062 * alloc.c (mark_glyph_matrix, mark_face_cache, allocate_string)
3063 (sweep_string, lisp_malloc): Remove useless prototypes.
3064 (enum mem_type): Adjust comment.
3065 (NEXT_IN_FREE_LIST): New macro.
3066 (SETUP_ON_FREE_LIST): Adjust XSETPVECTYPESIZE usage.
3067 (Fmake_bool_vector): Likewise.
3068 (struct large_vector): New type to represent allocation unit for
3069 the vectors with the memory footprint more than VBLOOCK_BYTES_MAX.
3070 (large_vectors): Change type to struct large_vector.
3071 (allocate_vector_from_block): Simplify.
3072 (PSEUDOVECTOR_NBYTES): Replace with...
3073 (vector_nbytes): ...new function. Adjust users.
3074 (sweep_vectors): Adjust processing of large vectors.
3075 (allocate_vectorlike): Likewise.
3076 (allocate_pseudovector): Change type of 3rd arg to enum pvec_type.
3077 Add easserts. Adjust XSETPVECTYPESIZE usage.
3078 (allocate_buffer): Use BUFFER_PVEC_INIT.
3079 (live_vector_p): Adjust to match large vector.
3080 * buffer.c (init_buffer_once): Use BUFFER_PVEC_INIT.
3081 * buffer.h (struct buffer): Add next member.
3082 (BUFFER_LISP_SIZE, BUFFER_REST_SIZE, BUFFER_PVEC_INIT):
3083 New macros.
3084 (FOR_EACH_BUFFER): Adjust to match struct buffer change.
3085 * fns.c (internal_equal): Adjust to match enum pvec_type change.
3086 (copy_hash_table): Adjust to match vector header change.
3087 * lread.c (defsubr): Use XSETPVECTYPE.
3088 * .gdbinit (xpr, xbacktrace): Adjust to match vector header change.
3089 (xvectype): Likewise. Print PVEC_NORMAL_VECTOR for regular vectors.
3090 (xvecsize): New command.
3091
3092 2012-11-08 Dmitry Antipov <dmantipov@yandex.ru>
3093
3094 * keyboard.c (event_to_kboard): Do not dereference
3095 frame_or_window field of SELECTION_REQUEST_EVENT
3096 and SELECTION_CLEAR_EVENT events (Bug#12814).
3097 * xterm.h (struct selection_input_event): Adjust comment.
3098
3099 2012-11-07 Eli Zaretskii <eliz@gnu.org>
3100
3101 * w32fns.c (modifier_set): Don't report modifiers from toggle key,
3102 such as Scroll Lock, if the respective keys are treated as
3103 function keys, not as modifiers. This avoids destroying non-ASCII
3104 keyboard input when Scroll Lock is toggled ON. (Bug#12806)
3105
3106 2012-11-07 Dmitry Antipov <dmantipov@yandex.ru>
3107
3108 * xfns.c (Fx_wm_set_size_hint): Use check_x_frame. Adjust docstring.
3109
3110 2012-11-06 Paul Eggert <eggert@cs.ucla.edu>
3111
3112 Restore some duplicate definitions (Bug#12814).
3113 This undoes part of the 2012-11-03 changes. Some people build
3114 with plain -g rather than with -g3, and they need the duplicate
3115 definitions for .gdbinit to work; see <http://bugs.gnu.org/12814#26>.
3116 * lisp.h (GCTYPEBITS, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK):
3117 Define as macros, as well as as enums or as constants.
3118
3119 2012-11-06 Jan Djärv <jan.h.d@swipnet.se>
3120
3121 * nsterm.m (convert_ns_to_X_keysym, keyDown:): Add NSNumericPadKeyMask
3122 to keypad keys (Bug#12816).
3123
3124 2012-11-06 Paul Eggert <eggert@cs.ucla.edu>
3125
3126 Minor adjustments of recently-changed frame functions.
3127 * buffer.c (Fbuffer_list): Omit CHECK_FRAME, since arg is already
3128 known to be a frame (we're in the FRAMEP branch).
3129 * lisp.h (Qframep): Remove decl. frame.h declares this.
3130 * window.c (quad): Args are of type EMACS_INT, not ptrdiff_t,
3131 since they're meant for Lisp fixnum values.
3132
3133 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
3134
3135 * window.c (Fwindow_combination_limit): Revert to the only
3136 required argument and adjust docstring as suggested in
3137 http://lists.gnu.org/archive/html/emacs-diffs/2012-11/msg01082.html
3138 by Martin Rudalics <rudalics@gmx.at>.
3139
3140 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
3141
3142 Widely used frame validity and checking functions.
3143 * frame.h (decode_live_frame, decode_any_frame): Add prototypes.
3144 * frame.c (decode_live_frame, decode_any_frame): New functions.
3145 (delete_frame, Fredirect_frame_focus, Fframe_parameters)
3146 (Fframe_parameter, Fframe_char_height, Fframe_char_width)
3147 (Fframe_pixel_height, Fframe_pixel_width, Ftool_bar_pixel_width)
3148 (Fframe_pointer_visible_p): Use decode_any_frame.
3149 (Fmake_frame_visible, Fmake_frame_invisible, Ficonify_frame)
3150 (Fraise_frame, Flower_frame, Fmodify_frame_parameters)
3151 (Fset_frame_height, Fset_frame_width): Use decode_live_frame.
3152 (Fframe_focus): Likewise. Allow zero number of arguments.
3153 Adjust docstring.
3154 (frame_buffer_list, frame_buffer_predicate): Remove.
3155 * lisp.h (frame_buffer_predicate): Remove prototype.
3156 * buffer.c (Fother_buffer): Use decode_any_frame.
3157 * xdisp.c (Ftool_bar_lines_needed): Likewise.
3158 * xfaces.c (Fcolor_gray_p, Fcolor_supported_p): Likewise.
3159 * font.c (Ffont_face_attributes, Ffont_family_list, Fopen_font)
3160 (Fclose_font, Ffont_info): Use decode_live_frame.
3161 * fontset.c (check_fontset_name): Likewise.
3162 * terminal.c (Fframe_terminal): Likewise.
3163 * w32fns.c (check_x_frame): Likewise.
3164 * window.c (Fminibuffer_window, Fwindow_at)
3165 (Fcurrent_window_configuration): Likewise.
3166 (Frun_window_configuration_change_hook, Fwindow_resize_apply):
3167 Likewise. Allow zero number of arguments. Adjust docstring.
3168 * dispnew.c (Fredraw_frame): Likewise.
3169 * xfaces.c (frame_or_selected_frame): Remove.
3170 (Fx_list_fonts, Finternal_get_lisp_face_attribute, Fface_font)
3171 (Finternal_lisp_face_equal_p, Finternal_lisp_face_empty_p)
3172 (Fframe_face_alist): Use decode_live_frame.
3173 * xfns.c (check_x_frame): Likewise.
3174
3175 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
3176
3177 * window.c (quad): New function.
3178 (Fwindow_edges, Fwindow_pixel_edges, Fwindow_inside_edges)
3179 (Fwindow_absolute_pixel_edges, Fwindow_inside_absolute_pixel_edges)
3180 (Fwindow_inside_pixel_edges, Fpos_visible_in_window_p)
3181 (Fwindow_line_height): Use it.
3182 (Fwindow_fringes): Use list3.
3183 (Fwindow_scroll_bars): Use list4.
3184 (Fwindow_frame, Fwindow_top_child, Fwindow_left_child)
3185 (Fwindow_combination_limit): Allow zero number of arguments.
3186
3187 2012-11-05 Eli Zaretskii <eliz@gnu.org>
3188
3189 * makefile.w32-in ($(BLD)/w32fns.$(O)): Depend on $(NT_INC)/unistd.h.
3190
3191 * w32fns.c: Include unistd.h, to avoid compiler warnings on Cygwin.
3192 (emacs_abort) [CYGWIN]: Don't call _open_osfhandle; instead, use
3193 file descriptor 2 for standard error. (Bug#12805)
3194
3195 2012-11-05 Chong Yidong <cyd@gnu.org>
3196
3197 * process.c (wait_reading_process_output): Revert previous change.
3198
3199 2012-11-05 Paul Eggert <eggert@cs.ucla.edu>
3200
3201 Assume at least POSIX.1-1988 for getpgrp, setpgid, setsid (Bug#12800).
3202 This removes code that has been obsolete since around 1990.
3203 * callproc.c (Fcall_process):
3204 * emacs.c (main):
3205 * process.c (create_process):
3206 * term.c (dissociate_if_controlling_tty):
3207 Assume setsid exists.
3208 * callproc.c (child_setup): Assume setpgid exists and behaves as
3209 per POSIX.1-1988 or later.
3210 * conf_post.h (setpgid) [!HAVE_SETPGID]: Remove.
3211 * emacs.c (shut_down_emacs):
3212 * sysdep.c (sys_suspend, init_foreground_group):
3213 Assume getpgrp behaves as per POSIX.1-1998 or later.
3214 * msdos.c (setpgrp): Remove.
3215 (tcgetpgrp, setpgid, setsid): New functions.
3216 * systty.h (EMACS_GETPGRP): Remove. All callers now use getpgrp.
3217 * term.c (no_controlling_tty): Remove; unused.
3218 * w32proc.c (setpgrp): Remove.
3219 (setsid, tcgetpgrp): New functions.
3220
3221 Simplify by assuming __fpending.
3222 * dispnew.c: Include <fpending.h>, not <stdio_ext.h>.
3223 (update_frame_1): Use __fpending, not PENDING_OUTPUT_COUNT.
3224 Do not assume that __fpending's result fits in int.
3225
3226 2012-11-04 Paul Eggert <eggert@cs.ucla.edu>
3227
3228 Remove EMACS_OUTQSIZE+sleep hack.
3229 * dispnew.c (update_frame_1): Remove hack for terminals slower
3230 than 2400 bps, which throttled Emacs by having it sleep.
3231 This code hasn't worked since at least 2007, when the multi-tty stuff
3232 was added, and anyway those old terminals are long dead.
3233 * systty.h (EMACS_OUTQSIZE): Remove; unused. The macro isn't used even
3234 without the dispnew.c change, as dispnew.c doesn't include systty.h.
3235
3236 Fix data-loss with --version (Bug#9574).
3237 * emacs.c (close_output_streams): Use strerror, not emacs_strerror,
3238 as we can't assume that emacs_strerror is initialized, and strerror
3239 is good enough here.
3240 (main): Invoke atexit earlier, to catch earlier instances of
3241 sending data to stdout and exiting, e.g., "emacs --version >/dev/full".
3242
3243 2012-11-04 Michael Marchionna <tralfaz@pacbell.net>
3244
3245 * nsterm.m: Add NSClearLineFunctionKey and keypad keys (Bug#8680).
3246 (keyDown): Remap keypad keys to X11 virtual key codes.
3247
3248 2012-11-03 Paul Eggert <eggert@cs.ucla.edu>
3249
3250 Fix data-loss with --batch (Bug#9574).
3251 * emacs.c: Include <close-stream.h>.
3252 (close_output_streams): New function.
3253 (main): Pass it to atexit, so that Emacs closes stdout and stderr
3254 and handles errors appropriately.
3255 (Fkill_emacs): Don't worry about flushing, as close_output_stream
3256 does that now.
3257
3258 Fix a race condition that causes Emacs to mess up glib (Bug#8855).
3259 The symptom is a diagnostic "GLib-WARNING **: In call to
3260 g_spawn_sync(), exit status of a child process was requested but
3261 SIGCHLD action was set to SIG_IGN and ECHILD was received by
3262 waitpid(), so exit status can't be returned." The diagnostic
3263 is partly wrong, as the SIGCHLD action is not set to SIG_IGN.
3264 The real bug is a race condition between Emacs and glib: Emacs
3265 does a waitpid (-1, ...) and reaps glib's subprocess by mistake,
3266 so that glib can't find it. Work around the bug by invoking
3267 waitpid only on subprocesses that Emacs itself creates.
3268 * process.c (create_process, record_child_status_change):
3269 Don't use special value -1 in pid field, as the caller now must
3270 know the pid rather than having the callee infer it.
3271 The inference was sometimes incorrect anyway, due to another race.
3272 (create_process): Set new 'alive' member if child is created.
3273 (process_status_retrieved): New function.
3274 (record_child_status_change): Use it.
3275 Accept negative 1st argument, which means to wait for the
3276 processes that Emacs already knows about. Move special-case code
3277 for DOS_NT (which lacks WNOHANG) here, from caller. Keep track of
3278 processes that have already been waited for, by testing and
3279 clearing new 'alive' member.
3280 (CAN_HANDLE_MULTIPLE_CHILDREN): Remove, as record_child_status_change
3281 now does this internally.
3282 (handle_child_signal): Let record_child_status_change do all
3283 the work, since we do not want to reap all exited child processes,
3284 only the child processes that Emacs itself created.
3285 * process.h (Lisp_Process): New boolean member 'alive'.
3286
3287 Omit duplicate definitions no longer needed with gcc -g3.
3288 * lisp.h (GCTYPEBITS, GCALIGNMENT, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG)
3289 (VALMASK, MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM):
3290 Define only as macros. There's no longer any need to also define
3291 these symbols as enums or as constants, since we now assume
3292 gcc -g3 when debugging.
3293
3294 2012-11-03 Eli Zaretskii <eliz@gnu.org>
3295
3296 * lisp.mk: Adjust comments to the fact that term/internal is now
3297 loaded from loadup.el.
3298
3299 * msdos.c (msdos_abort): Rename from emacs_abort, and make static.
3300 (msdos_fatal_signal): New function.
3301 (XMenuActivate): Adjust the call to kbd_buffer_events_waiting to
3302 its argument list.
3303
3304 * conf_post.h (_GL_EXECINFO_INLINE) [MSDOS]: Define to "inline"
3305 for GCC versions before 4.
3306 (emacs_raise): Define to call msdos_fatal_signal.
3307
3308 * xdisp.c (init_from_display_pos): Fix initialization of the bidi
3309 iterator when starting in the middle of a display or overlay
3310 string. (Bug#12745)
3311
3312 2012-11-03 Chong Yidong <cyd@gnu.org>
3313
3314 * process.c (wait_reading_process_output): Clean up the last
3315 change.
3316
3317 2012-11-03 Jim Paris <jim@jtan.com> (tiny change)
3318
3319 * process.c (wait_reading_process_output): Avoid a race condition
3320 with SIGIO delivery (Bug#11536).
3321
3322 2012-11-03 Chong Yidong <cyd@gnu.org>
3323
3324 * buffer.c (cursor_type): Untabify docstring.
3325
3326 2012-11-03 Dmitry Antipov <dmantipov@yandex.ru>
3327
3328 * frame.h (struct frame): Drop can_have_scroll_bars member
3329 which is meaningless for a long time. Adjust comments.
3330 (FRAME_CAN_HAVE_SCROLL_BARS): Remove.
3331 * frame.c, nsfns.m, term.c, w32fns.c, xfns.c: Adjust users.
3332
3333 2012-11-03 Dmitry Antipov <dmantipov@yandex.ru>
3334
3335 * window.c (decode_next_window_args): Update window arg after
3336 calling decode_live_window and so fix crash reported at
3337 http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00035.html
3338 by Juanma Barranquero <lekktu@gmail.com>.
3339 (Fwindow_body_width, Fwindow_body_height): Simplify a bit.
3340 * font.c (Ffont_at): Likewise.
3341
3342 2012-11-01 Jan Djärv <jan.h.d@swipnet.se>
3343
3344 * widget.c (resize_cb): New function.
3345 (EmacsFrameRealize): Add resize_cb as event handler (Bug#12733).
3346 (EmacsFrameResize): Check if all is up to date before changing frame
3347 size.
3348
3349 2012-11-02 Eli Zaretskii <eliz@gnu.org>
3350
3351 Implement backtrace output for fatal errors on MS-Windows.
3352 * w32fns.c (CaptureStackBackTrace_proc): New typedef.
3353 (BACKTRACE_LIMIT_MAX): New macro.
3354 (w32_backtrace): New function.
3355 (emacs_abort): Use w32_backtrace when the user chooses not to
3356 attach a debugger. Update the text of the abort dialog.
3357
3358 2012-11-02 Dmitry Antipov <dmantipov@yandex.ru>
3359
3360 Window-related stuff cleanup here and there.
3361 * dispnew.c (Finternal_show_cursor, Finternal_show_cursor_p):
3362 Use decode_any_window.
3363 * fringe.c (Ffringe_bitmaps_at_pos): Likewise.
3364 * xdisp.c (Fformat_mode_line): Likewise.
3365 * font.c (Ffont_at): Use decode_live_window.
3366 * indent.c (Fcompute_motion, Fvertical_motion): Likewise.
3367 * window.c (decode_next_window_args): Likewise.
3368 (decode_any_window): Remove static.
3369 * window.h (decode_any_window): Add prototype.
3370 * lisp.h (CHECK_VALID_WINDOW, CHECK_LIVE_WINDOW): Move from here...
3371 * window.h: ...to here, redefine via WINDOW_VALID_P and WINDOW_LIVE_P,
3372 respectively.
3373
3374 2012-11-02 Dmitry Antipov <dmantipov@yandex.ru>
3375
3376 Remove pad from struct input_event.
3377 * termhooks.h (struct input_event): Remove padding field.
3378 Adjust comment.
3379 * keyboard.c (event_to_kboard): Simplify because frame_or_window
3380 member is never cons for a long time. Adjust comment.
3381 (mark_kboards): Adjust because SELECTION_REQUEST_EVENT and
3382 SELECTION_CLEAR_EVENT has no Lisp_Objects to mark. Add comment.
3383 * xterm.c (handle_one_xevent): Do not initialize frame_or_window
3384 field of SELECTION_REQUEST_EVENT and SELECTION_CLEAR_EVENT.
3385
3386 2012-11-01 Eli Zaretskii <eliz@gnu.org>
3387
3388 * w32proc.c (getpgrp, setpgid): New functions. (Bug#12776)
3389
3390 2012-10-31 Paul Eggert <eggert@cs.ucla.edu>
3391
3392 Fix crash when using Emacs as commit editor for git (Bug#12697).
3393 * callproc.c (setpgrp): Remove macro, as we now use setpgid
3394 and it is configured in conf_post.h.
3395 (Fcall_process): Don't invoke both setsid and setpgid; the former
3396 is enough, if it exists.
3397 * callproc.c (Fcall_process, child_setup):
3398 * process.c (create_process): Use setpgid.
3399 * conf_post.h (setpgid) [!HAVE_SETPGID]: New macro, which substitutes
3400 for the real thing.
3401 * dispnew.c (init_display): Initialize the foreground group
3402 if we are running a tty display.
3403 * emacs.c (main): Do not worry about setpgrp; init_display does it now.
3404 * lisp.h (init_foreground_group): New decl.
3405 * sysdep.c (inherited_pgroup): New static var.
3406 (init_foreground_group, tcsetpgrp_without_stopping)
3407 (narrow_foreground_group, widen_foreground_group): New functions.
3408 (init_sys_modes): Narrow foreground group.
3409 (reset_sys_modes): Widen foreground group.
3410
3411 2012-10-31 Michael Albinus <michael.albinus@gmx.de>
3412
3413 * dbusbind.c: Fix cut'n'waste error. Use HAVE_DBUS_VALIDATE_INTERFACE.
3414
3415 2012-10-31 Martin Rudalics <rudalics@gmx.at>
3416
3417 * minibuf.c (read_minibuf): Restore current buffer since
3418 choose_minibuf_frame calling Fset_frame_selected_window may
3419 change it (Bug#12766).
3420
3421 2012-10-30 Jan Djärv <jan.h.d@swipnet.se>
3422
3423 * frame.c (Fframe_pixel_height): Fix documentation (Bug#12733).
3424
3425 2012-10-30 Kenichi Handa <handa@gnu.org>
3426
3427 * font.c (Ffont_at): If WINDOW is specified and it is not
3428 displaying the current buffer, signal an error.
3429
3430 2012-10-29 Daniel Colascione <dancol@dancol.org>
3431
3432 * cygw32.h, cygw32.c (Qutf_16le, from_unicode, to_unicode):
3433 In preparation for fixing bug#12739, move these functions from
3434 here...
3435
3436 * coding.h, coding.c: ... to here, and compile them only when
3437 WINDOWSNT or CYGWIN. Moving these functions out of cygw32 proper
3438 lets us write cygw32-agnostic code for the HAVE_NTGUI case.
3439
3440 2012-10-28 Eli Zaretskii <eliz@gnu.org>
3441
3442 * w32proc.c (TIMER_TICKS_PER_SEC): New macro.
3443 (timer_loop, getitimer, setitimer): Use it instead of
3444 CLOCKS_PER_SEC, which is no longer pertinent, since we don't use
3445 'clock'.
3446 (w32_get_timer_time): Use 10*TIMER_TICKS_PER_SEC instead of a
3447 literal 10000.
3448
3449 2012-10-28 Jan Djärv <jan.h.d@swipnet.se>
3450
3451 * nsterm.m (NO_APPDEFINED_DATA): New define.
3452 (last_appdefined_event_data): New variable
3453 (last_appdefined_event): Remove.
3454 (ns_select): Initialize t from last_appdefined_event_data instead
3455 of [last_appdefined_event data1].
3456 (sendEvent:): Save [theEvent data1] to last_appdefined_event_data,
3457 remove last_appdefined_event (Bug#12698).
3458
3459 2012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
3460
3461 * frame.c (x_set_font): Catch internal error.
3462
3463 2012-10-27 Eli Zaretskii <eliz@gnu.org>
3464
3465 Avoid overflow in w32 implementation of interval timers.
3466 When possible, for ITIMER_PROF count only times the main thread
3467 actually executes.
3468 * w32proc.c <struct itimer_data>: 'expire' and 'reload' are now
3469 'volatile ULONGLONG' types. All the other data which was
3470 previously clock_t is now ULONGLONG. 'terminate' is 'volatile int'.
3471 (GetThreadTimes_Proc): New typedef.
3472 (w32_get_timer_time): New function, returns a suitable time value
3473 for the timer.
3474 (timer_loop): Enter critical section when accessing ULONGLONG
3475 values of the itimer_data struct, as these accesses are no longer
3476 atomic. Call 'w32_get_timer_time' instead of 'clock'.
3477 Remove unused variable.
3478 (init_timers): Initialize s_pfn_Get_Thread_Times.
3479 (start_timer_thread): Don't assign itimer->caller_thread here.
3480 (getitimer): Assign itimer->caller_thread here.
3481 (setitimer): Always call getitimer to get the value of ticks_now.
3482 (sys_spawnve): Avoid compiler warning about format mismatch.
3483
3484 2012-10-26 Eli Zaretskii <eliz@gnu.org>
3485
3486 * w32fns.c (w32_wnd_proc) <WM_MOUSEMOVE>: Don't enable tracking of
3487 mouse movement events if the menu bar is active. This avoids
3488 producing a busy "hour-glass" cursor by Windows if the mouse
3489 pointer is positioned over a tooltip shown for some menu item.
3490
3491 2012-10-25 Paul Eggert <eggert@cs.ucla.edu>
3492
3493 Don't assume process IDs fit in int.
3494 * emacs.c (shut_down_emacs) [!DOS_NT]:
3495 * sysdep.c (sys_suspend) [SIGTSTP && !MSDOS]:
3496 * term.c (dissociate_if_controlling_tty) [!DOS_NT]:
3497 Use pid_t, not int, to store process IDs, as 'int'
3498 is not wide enough on a few platforms (e.g., AIX and IRIX).
3499
3500 2012-10-23 Kenichi Handa <handa@gnu.org>
3501
3502 The following change is to make face-font-rescale-alist work
3503 correctly for non-ASCII fonts.
3504
3505 * font.c (font_open_entity): Don't handle Vface_font_rescale_alist.
3506 (font_open_for_lface): Handle Vface_font_rescale_alist.
3507
3508 2012-10-23 Chong Yidong <cyd@gnu.org>
3509
3510 * xfaces.c (Vfont_list_limit): Move unused variable to faces.el.
3511
3512 2012-10-21 Jan Djärv <jan.h.d@swipnet.se>
3513
3514 * nsfont.m (nsfont_open, ns_glyph_metrics): Force integer advancement
3515 for screen font.
3516 (nsfont_draw): Turn off LCD-smoothing (Bug#11484).
3517
3518 * xterm.c (x_focus_changed): Check if daemonp when sending focus in
3519 event (Bug#12681).
3520
3521 2012-10-21 Glenn Morris <rgm@gnu.org>
3522
3523 * lisp.mk (lisp): Add cp51932.el and eucjp-ms.el.
3524
3525 2012-10-20 Paul Eggert <eggert@cs.ucla.edu>
3526
3527 Port to OpenBSD 5.1.
3528 * frame.c (Fmouse_position, Fmouse_pixel_position):
3529 * xdisp.c (produce_stretch_glyph):
3530 Declare local vars only when they're needed.
3531 This is clearer and avoids a warning on OpenBSD about unused vars.
3532 * frame.h (FRAME_WINDOW_P): Always evaluate its argument.
3533 This is safer, and avoids OpenBSD warnings about unused vars.
3534 * keyboard.c (record_menu_key): Remove unnecessary decl.
3535 (poll_timer): Define only if POLL_FOR_INPUT is defined.
3536 * unexelf.c (ELFSIZE) [!ElfW]: Do not define if already defined,
3537 as our definition clashes with OpenBSD's.
3538 * xfaces.c (load_face_colors, check_lface_attrs)
3539 (get_lface_attributes_no_remap, get_lface_attributes)
3540 (lface_fully_specified_p, x_supports_face_attributes_p)
3541 (tty_supports_face_attributes_p, face_fontset, realize_face)
3542 (realize_x_face, realize_tty_face):
3543 Declare parameters to be Lisp_Object[LFACE_VECTOR_SIZE], not
3544 merely Lisp_Object *. This is more informative and avoids
3545 a warning on OpenBSD about accessing beyond an object's size.
3546
3547 2012-10-20 Chong Yidong <cyd@gnu.org>
3548
3549 * lread.c (Fload): Doc fix (Bug#12592).
3550
3551 2012-10-19 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
3552
3553 * font.c (Ffont_at): Fix previous change.
3554
3555 2012-10-19 Eli Zaretskii <eliz@gnu.org>
3556
3557 * puresize.h (BASE_PURESIZE): Bump the base value to 1700000.
3558 See http://lists.gnu.org/archive/html/emacs-devel/2012-10/msg00593.html
3559 for the reasons.
3560
3561 * alloc.c (NSTATICS): Decrease to 0x800.
3562
3563 2012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
3564
3565 * fns.c (Fnreverse): Include the problem element when signaling an
3566 error (bug#12677).
3567
3568 2012-10-18 Jan Djärv <jan.h.d@swipnet.se>
3569
3570 * nsterm.m (ns_select): Check writefds before call to
3571 FD_ISSET (Bug#12668).
3572
3573 2012-10-18 Daniel Colascione <dancol@dancol.org>
3574
3575 * alloc.c (NSTATICS): Increase from 0x650 to 0x1000
3576 (staticpro): If we run out of staticpro slots, die with an
3577 informative error instead of just calling emacs_abort.
3578
3579 2012-10-18 Martin Rudalics <rudalics@gmx.at>
3580
3581 Fix two flaws reported by Dmitry Antipov.
3582 * window.c (Ftemp_output_buffer_show): Remove.
3583 (Fwindow_vscroll, Fset_window_vscroll): Use decode_live_window.
3584 (syms_of_window): Remove defsubr for Stemp_output_buffer_show.
3585
3586 2012-10-17 Eli Zaretskii <eliz@gnu.org>
3587
3588 * makefile.w32-in ($(BLD)/w32.$(O)):
3589 ($(BLD)/vm-limit.$(O)):
3590 ($(BLD)/term.$(O)):
3591 ($(BLD)/unexw32.$(O)):
3592 ($(BLD)/fileio.$(O)):
3593 ($(BLD)/dispnew.$(O)): Update dependencies.
3594
3595 * w32term.h (w32_initialize_display_info, initialize_w32_display):
3596 Add prototypes.
3597
3598 * w32proc.c: Include ctype.h.
3599
3600 * w32.h (init_environment, check_windows_init_file)
3601 (syms_of_ntproc, syms_of_ntterm, dostounix_filename)
3602 (unixtodos_filename, init_winsock, srandom, random, sys_pipe)
3603 (set_process_dir, sys_spawnve, register_child, sys_sleep, getwd)
3604 (sys_link): Add prototypes.
3605
3606 * w32.c: Include w32select.h.
3607 (sys_access, e_malloc, sys_select): Add prototypes.
3608 (emacs_gnutls_pull): 'timeout' is now EMACS_TIME, not struct timeval.
3609
3610 * vm-limit.c [WINDOWSNT]: Include w32heap.h.
3611
3612 * unexw32.c: Include lisp.h and w32.h.
3613
3614 * term.c [WINDOWSNT]: Include w32term.h.
3615
3616 * process.c [WINDOWSNT]: Add prototype of sys_select.
3617
3618 * fileio.c [WINDOWSNT]: Include w32.h.
3619
3620 * dispnew.c [WINDOWSNT]: Include w32.h.
3621
3622 * cygw32.c (Fcygwin_convert_path_to_windows)
3623 (Fcygwin_convert_path_from_windows): Use EQ to compare 2
3624 Lisp_Object values. (Bug#12661)
3625
3626 * w32fns.c (w32_msg_pump): Use XIL instead of casting an integer
3627 to Lisp_Object. (Bug#12661)
3628
3629 2012-10-17 Kenichi Handa <handa@gnu.org>
3630
3631 * xdisp.c (reseat_1): Make the information stored in it->cmp_it
3632 invalidate.
3633
3634 2012-10-17 Dmitry Antipov <dmantipov@yandex.ru>
3635
3636 * buffer.c (Fkill_buffer): When unchaining the marker,
3637 reset its buffer pointer to NULL (Bug#12652).
3638
3639 2012-10-17 Dmitry Antipov <dmantipov@yandex.ru>
3640
3641 Do not verify indirection counters of killed buffers (Bug#12579).
3642 * buffer.h (BUFFER_CHECK_INDIRECTION): New macro.
3643 * buffer.c (compact_buffer, set_buffer_internal_1): Use it.
3644
3645 2012-10-16 Dmitry Antipov <dmantipov@yandex.ru>
3646
3647 * alloc.c (Fmake_byte_code): Fix typo in comment.
3648 * print.c (print_interval): Define as static to match prototype.
3649 * indent.c (disptab_matches_widthtab, recompute_width_table):
3650 Convert to eassert.
3651
3652 2012-10-16 Dmitry Antipov <dmantipov@yandex.ru>
3653
3654 * editfns.c (get_system_name): Remove.
3655 * lisp.h (get_system_name): Remove prototype.
3656 * xrdb.c (getenv, getpwuid, getpwnam): Remove prototypes.
3657 (get_environ_db): Use Vsystem_name. Avoid call to strlen.
3658
3659 2012-10-15 Daniel Colascione <dancol@dancol.org>
3660
3661 * dbusbind.c: Add comment explaining reason for previous change.
3662
3663 2012-10-15 Martin Rudalics <rudalics@gmx.at>
3664
3665 * window.c (Fwindow_end): Rewrite check whether cached position
3666 can be used (Bug#12600).
3667 (resize_frame_windows, grow_mini_window, shrink_mini_window):
3668 Set windows_or_buffers_changed.
3669
3670 2012-10-15 Daniel Colascione <dancol@dancol.org>
3671
3672 * dbusbind.c: Fix cygw32 build break when compiling with dbus
3673 enabled by undefining the symbol "interface", which the platform
3674 headers define to something incompatible.
3675
3676 2012-10-14 Daniel Colascione <dancol@dancol.org>
3677
3678 * image.c (init_tiff_functions, init_imagemagick_functions)
3679 (init_svg_functions): Fix cygw32 build break by using these
3680 functions only when WINDOWSNT _and_ HAVE_NTGUI.
3681
3682 2012-10-14 Jan Djärv <jan.h.d@swipnet.se>
3683
3684 * nsterm.m (ns_select): Count fd:s in writefs also (Bug#12422).
3685
3686 2012-10-13 Jan Djärv <jan.h.d@swipnet.se>
3687
3688 * gtkutil.c (xg_set_widget_bg): Divide by 65535 (Bug#12612).
3689
3690 2012-10-13 HANATAKA, Shinya <bogytech@gmail.com> (tiny change)
3691
3692 * coding.c (detect_coding): Set coding->id before calling
3693 this->detector.
3694
3695 2012-10-13 Andreas Schwab <schwab@linux-m68k.org>
3696
3697 * fileio.c: Formatting fixes.
3698
3699 2012-10-13 Paul Eggert <eggert@cs.ucla.edu>
3700
3701 Fix some stat-related races.
3702 * fileio.c (Fwrite_region): Avoid race condition if a file is
3703 removed or renamed by some other process immediately after Emacs
3704 writes it but before Emacs stats it. Do not assume that stat (or
3705 fstat) succeeds.
3706 * image.c (slurp_file): Resolve the file name with fopen + fstat
3707 rather than stat + fopen.
3708 (pbm_read_file) [0]: Remove unused code with stat race.
3709 * process.c (allocate_pty) [HAVE_PTYS && !PTY_ITERATION && !PTY_OPEN]:
3710 Remove ineffective code with stat race.
3711
3712 2012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
3713
3714 * doc.c (get_doc_string): Don't signal an error if the file is missing.
3715
3716 2012-10-12 Jan Djärv <jan.h.d@swipnet.se>
3717
3718 * nsterm.m (hold_event_q): New static variable.
3719 (EV_TRAILER, sendScrollEventAtLoc:fromEvent:): Call hold_event if
3720 ! q_event_ptr.
3721 (hold_event): New function.
3722 (ns_read_socket): If hold_event_q have events, store them and
3723 return (Bug#12384).
3724 (setPosition:portion:whole:): Send SIGIO to ourselves if apploopnr
3725 is zero (Bug#12384).
3726
3727 2012-10-12 Juanma Barranquero <lekktu@gmail.com>
3728
3729 * makefile.w32-in ($(BLD)/w32select.$(O)): Update dependencies.
3730
3731 2012-10-12 Eli Zaretskii <eliz@gnu.org>
3732
3733 * makefile.w32-in ($(BLD)/fileio.$(O)): Add sys/file.h.
3734
3735 * fileio.c (check_existing): New function.
3736 (make_temp_name, Ffile_exists_p, Ffile_writable_p): Call it
3737 instead of calling 'stat', when what's needed is to check whether
3738 a file exists. This avoids expensive system calls on MS-Windows.
3739 (Bug#12587)
3740
3741 * w32.c (init_environment): Call 'check_existing' instead of 'stat'.
3742
3743 * lread.c (openp) [WINDOWSNT]: Call 'access' instead of 'stat' to
3744 determine whether a file exists and is not a directory.
3745
3746 * lisp.h (check_existing): Add prototype.
3747
3748 2012-10-12 Jan Djärv <jan.h.d@swipnet.se>
3749
3750 * nsfont.m (nsfont_open): Remove font cache, it is not GC correct.
3751
3752 2012-10-12 Glenn Morris <rgm@gnu.org>
3753
3754 * buffer.c (Fset_buffer): Doc fix. (Bug#12624)
3755
3756 2012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
3757
3758 * buffer.c (Fkill_buffer): Null out the overlay list(s) as well.
3759
3760 * eval.c (Fautoload): Remember previous autoload status in load-history.
3761
3762 2012-10-11 Paul Eggert <eggert@cs.ucla.edu>
3763
3764 lread.c, macros.c, marker.c, menu.c, minibuf.c: Use bool for booleans.
3765 * lread.c (load_each_byte, new_backquote_flag, readchar)
3766 (read_filtered_event, lisp_file_lexically_bound_p)
3767 (safe_to_load_version, Fload, complete_filename_p, openp)
3768 (build_load_history, readevalloop, read_escape, read1)
3769 (string_to_number, read_vector, read_list):
3770 * macros.c (Fstart_kbd_macro):
3771 * marker.c (CONSIDER):
3772 * menu.c (parse_single_submenu, digest_single_submenu)
3773 (find_and_return_menu_selection, Fx_popup_menu):
3774 * minibuf.c (read_minibuf_noninteractive, read_minibuf)
3775 (Ftry_completion):
3776 * nsmenu.m (ns_update_menubar, runMenuAt:forFrame:keymaps:):
3777 (ns_menu_show):
3778 * xmenu.c (set_frame_menubar, create_and_show_popup_menu)
3779 (xmenu_show, xdialog_show):
3780 Use bool for booleans.
3781 * lread.c (safe_to_load_version): Rename from safe_to_load_p,
3782 as it's not a predicate. All uses changed. Omit unnecessary
3783 buffer termination.
3784
3785 2012-10-11 Dmitry Antipov <dmantipov@yandex.ru>
3786
3787 * editfns.c (save_excursion_save): Use nil if mark points to nowhere.
3788 (save_excursion_restore): Do not restore mark if it was not saved.
3789
3790 2012-10-11 Paul Eggert <eggert@cs.ucla.edu>
3791
3792 * marker.c (cached_modiff): EMACS_INT, not int.
3793
3794 * w32select.c (waiting_for_input): Declare by including "keyboard.h"
3795 instead of having a wrong decl.
3796 * nsmenu.m (waiting_for_input): Remove wrong decl.
3797
3798 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
3799
3800 keyboard.c, keymap.c: Use bool for booleans.
3801 * dispnew.c (sit_for): Distinguish between 3-way display_option
3802 and boolean do_display.
3803 * keyboard.c (single_kboard, this_command_key_count_reset)
3804 (waiting_for_input, echoing, immediate_quit, input_pending)
3805 (interrupt_input, interrupts_deferred, pop_kboard)
3806 (temporarily_switch_to_single_kboard, ignore_mouse_drag_p)
3807 (command_loop_1, adjust_point_for_property)
3808 (safe_run_hooks_error, input_polling_used, read_char):
3809 (help_char_p, readable_events, kbd_buffer_events_waiting)
3810 (kbd_buffer_get_event, timer_check_2, make_lispy_event)
3811 (lucid_event_type_list_p, get_input_pending):
3812 (gobble_input, menu_separator_name_p, menu_bar_item)
3813 (parse_menu_item, parse_tool_bar_item, read_char_x_menu_prompt)
3814 (read_char_minibuf_menu_prompt, access_keymap_keyremap)
3815 (keyremap_step, test_undefined, read_key_sequence)
3816 (detect_input_pending, detect_input_pending_ignore_squeezables)
3817 (detect_input_pending_run_timers, requeued_events_pending_p)
3818 (quit_throw_to_read_char, Fset_input_interrupt_mode):
3819 * keymap.c (get_keymap, keymap_parent, keymap_memberp)
3820 (access_keymap_1, access_keymap, map_keymap, get_keyelt)
3821 (Fdefine_key, Flookup_key, struct accessible_keymaps_data)
3822 (accessible_keymaps_1, Fkey_description, push_key_description):
3823 (shadow_lookup, struct where_is_internal_data)
3824 (where_is_internal, Fwhere_is_internal, where_is_internal_1)
3825 (Fdescribe_buffer_bindings, describe_map_tree, struct describe_map_elt)
3826 (describe_map, describe_vector):
3827 * menu.c (single_menu_item):
3828 * nsmenu.m (ns_update_menubar):
3829 * process.c (wait_reading_process_output):
3830 * search.c (scan_buffer, scan_newline):
3831 Use bool for boolean.
3832 * keyboard.c (timers_run, swallow_events)
3833 (detect_input_pending_run_timers):
3834 * process.c (wait_reading_process_output):
3835 Use unsigned for counter where wraparound-on-overflow is desired,
3836 since unsigned is guaranteed to have that behavior and signed is not.
3837 (read_char): Use ptrdiff_t for string length.
3838 (get_input_pending): Remove first argument, since it was always
3839 the same pointer-to-int (now pointer-to-boolean) &input_pending,
3840 and behave as if it had that value. Return new value of
3841 input_pending. All callers changed.
3842 * keyboard.h (struct kboard): Use unsigned : 1 for boolean member
3843 immediate_echo. Use ptrdiff_t for echo_after_prompt, since it's
3844 a string length.
3845 * keymap.c (push_key_description): Omit last arg, which was always 1.
3846 All callers changed.
3847
3848 * regex.c (immediate_quit) [emacs]: Remove duplicate decl.
3849
3850 2012-10-10 Juanma Barranquero <lekktu@gmail.com>
3851
3852 * makefile.w32-in ($(BLD)/dispnew.$(O), $(BLD)/indent.$(O))
3853 ($(BLD)/term.$(O)): Update dependencies.
3854
3855 2012-10-10 Dmitry Antipov <dmantipov@yandex.ru>
3856
3857 * alloc.c (mark_object): Use meaningful PVEC_NORMAL_VECTOR.
3858 * lisp.h (enum pvec_type): Adjust comments and omit explicit
3859 initializer for PVEC_NORMAL_VECTOR.
3860
3861 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
3862
3863 Clean out old termopts cruft.
3864 * termopts.h (flow_control, meta_key): Remove unused decls.
3865 * dispnew.c, indent.c, nsterm.m, term.c, xsettings.c, xsmfns.c:
3866 Don't include termopts.h.
3867
3868 2012-10-10 Dmitry Antipov <dmantipov@yandex.ru>
3869
3870 * alloc.c (gc_sweep): Use pointer-to-a-pointer loop for buffers.
3871
3872 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
3873
3874 * commands.h (immediate_quit): Remove duplicate decl.
3875
3876 2012-10-09 Jan Djärv <jan.h.d@swipnet.se>
3877
3878 * nsfont.m (Vfonts_in_cache): Remove, not needed as font.c handles
3879 caching.
3880 (nsfont_open): Remove setting of Vfonts_in_cache.
3881 (syms_of_nsfont): Remove initialization of Vfonts_in_cache.
3882
3883 2012-10-09 Eli Zaretskii <eliz@gnu.org>
3884
3885 * w32fns.c (w32_last_error): Change the return value to DWORD, to
3886 match what GetLastError returns. Explain why the function is
3887 needed.
3888
3889 * frame.c (delete_frame): Rename local variable 'tooltip_frame' to
3890 'is_tooltip_frame', to avoid confusion with its global namesake.
3891
3892 2012-10-08 Daniel Colascione <dancol@dancol.org>
3893
3894 * xdisp.c (start_hourglass): Call w32_note_current_window when
3895 HAVE_NTGUI, not just WINDOWSNT, resolving a problem in the cygw32
3896 build that caused Emacs to display the hourglass cursor forever.
3897
3898 * w32fns.c (Fx_display_color_cells): Instead of using NCOLORS,
3899 which is broken under remote desktop, calculate the number of
3900 colors available for a display based on the display's number of
3901 planes and number of bits per pixel per plane. (bug#10397).
3902
3903 2012-10-08 Jan Djärv <jan.h.d@swipnet.se>
3904
3905 * nsfont.m (Vfonts_in_cache): New variable.
3906 (nsfont_open): Use unsignedLongLongValue for cache in case wide ints
3907 are used. Add cached fonts to Vfonts_in_cache.
3908 (syms_of_nsfont): Initialize and staticpro Vfonts_in_cache.
3909
3910 2012-10-08 Juanma Barranquero <lekktu@gmail.com>
3911
3912 * makefile.w32-in (LOCAL_FLAGS): Don't define HAVE_NTGUI, it's now
3913 in nt/config.nt.
3914 (FONT_H): Define after FRAME_H.
3915 ($(BLD)/emacs.$(O), $(BLD)/process.$(O), $(BLD)/w32heap.$(O)):
3916 Update dependencies.
3917
3918 * w32term.c: Remove leftover declaration of keyboard_codepage.
3919
3920 2012-10-08 Eli Zaretskii <eliz@gnu.org>
3921
3922 * makefile.w32-in (FONT_H): Add $(FRAME_H).
3923 (W32TERM_H): Add $(ATIMER_H) and $(FRAME_H).
3924 ($(BLD)/emacs.$(O), $(BLD)/w32console.$(O)): Update dependencies.
3925 (GLOBAL_SOURCES): Add cygw32.c.
3926 ($(BLD)/unexw32.$(O)):
3927 ($(BLD)/w32.$(O)):
3928 ($(BLD)/w32console.$(O)):
3929 ($(BLD)/w32fns.$(O)):
3930 ($(BLD)/w32heap.$(O)):
3931 ($(BLD)/w32menu.$(O)):
3932 ($(BLD)/w32proc.$(O)): Add w32common.h.
3933
3934 * w32fns.c (w32_color_map_lookup, x_to_w32_color): Argument is now
3935 'const char *'.
3936 (x_to_w32_color): Don't modify the argument, modify a copy instead.
3937
3938 2012-10-08 Daniel Colascione <dancol@dancol.org>
3939
3940 * w32term.h (WM_EMACS_BRINGTOTOP, WM_EMACS_INPUT_READY)
3941 (WM_EMACS_END): Change WM_EMACS_BRINGTOTOP from 22 to 21 to close
3942 accidental message numbering hole. Change other messages to
3943 match.
3944
3945 * w32select.h (HAVE_W32SELECT): Remove.
3946
3947 * w32select.c, w32proc.c, w32menu.c, w32console.c, w32.c: Include
3948 w32common.h instead of w32heap.h.
3949
3950 * w32heap.h (ROUND_UP, ROUND_DOWN, get_page_size)
3951 (get_allocation_unit, get_processor_type, get_w32_major_version)
3952 (get_w32_minor_version, sysinfo_cache, osinfo_cache)
3953 (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
3954 (OS_NT, os_subtype, cache_system_info): Move declarations to
3955 w32common.
3956
3957 * w32heap.c: Include w32common.h.
3958 (sysinfo_cache, syspage_mask, osinfo_cache, w32_major_version)
3959 (w32_minor_version, w32_build_number, w32_subtype):
3960 Remove duplicate definitions.
3961
3962 * w32fns.c: Include w32common.h; include w32heap.h only in
3963 WINDOWSNT.
3964
3965 (Fx_file_dialog): Clarify comment on GetOpenFileName structure.
3966 Use `report_file_error' instead of `error' in order to better
3967 inform users of what went wrong. Increase NTGUI_UNICODE file
3968 dialog box file name length to 32k, the maximum allowed by the NT
3969 kernel.
3970
3971 * w32common.h: New file.
3972 (ROUND_UP, ROUND_DOWN, get_page_size)
3973 (get_allocation_unit, get_processor_type, get_w32_major_version)
3974 (get_w32_minor_version, sysinfo_cache, osinfo_cache)
3975 (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
3976 (OS_NT, os_subtype, cache_system_info): Move here.
3977
3978 * unexw32.c, unexcw.c: Include w32common.h.
3979
3980 * emacs.c (main): Use (defined (WINDOWSNT) || defined
3981 HAVE_NTGUI) instead of removed HAVE_W32SELECT to decide whether
3982 to call syms_of_w32select.
3983
3984 * cygw32.h: Remove obsolete EXFUN declarations.
3985
3986 * cygw32.c (Qutf_16_le): Rename to Qutf_16le.
3987
3988 * Makefile.in (SOME_MACHINE_OBJECTS): Reverse accidental removal
3989 of w32inevt.o from SOME_MACHINE_OBJECTS.
3990
3991 2012-10-08 Daniel Colascione <dancol@dancol.org>
3992
3993 * image.c: Permanent fix for JPEG compilation issue --- limit
3994 jpeglib `boolean' redefinition to Cygwin builds.
3995
3996 2012-10-08 Eli Zaretskii <eliz@gnu.org>
3997
3998 * image.c (CHECK_LIB_AVAILABLE): Remove, no longer used.
3999
4000 * emacs.c (DAEMON_MUST_EXEC) [HAVE_NTGUI]: Define this only on
4001 Cygwin.
4002
4003 2012-10-08 Daniel Colascione <dancol@dancol.org>
4004
4005 * xfaces.c, xdisp.c, window.c, w32xfns.c, w32term.h, w32term.c,
4006 w32select.h w32select.c, w32proc.c, w32menu.c, w32inevt.c,
4007 w32help.c, w32font.c, w32font.c, w32fns.c, w32console.c, w32.h,
4008 w32.c, unexw32.c, termhooks.h, process.c, menu.c, keyboard.h,
4009 keyboard.c, image.c, frame.h, frame.c, fontset.c, font.h, font.c,
4010 emacs.c, dispextern.h, cygw32.h, cygw32.c, conf_post.h,
4011 Makefile.in: use HAVE_NTGUI for W32 GUI and WINDOWSNT for the
4012 operating system. defined(HAVE_NTGUI) && !defined(WINDOWSNT) is
4013 now a supported configuration.
4014
4015 * Makefile.in: consolidate image variables into LIBIMAGE; add
4016 W32_OBJ and W32_LIBS. Compile new files.
4017
4018 * conf_post.h:
4019 (_DebPrint) declare tracing facility for W32 debugging. We need
4020 to unify tracing later.
4021
4022 (NTGUI_UNICODE) Define when compiling for Cygwin to allow the
4023 unconditional use of W32 Unicode functions. Cygwin runs only on
4024 100% Unicode operating systems.
4025
4026 * cygw32.c: New file. Define Cygwin-specific facilities.
4027 (Fcygwin_convert_path_to_windows)
4028 (Fcygwin_convert_path_from_windows): New user functions for
4029 accessing Cygwin path-munging routines.
4030
4031 * cygw32.h: New file.
4032 (WCSDATA, to_unicode, from_unicode): Define facilities for storing
4033 UTF-16LE strings temporarily inside non-Lisp-visible string
4034 objects.
4035
4036 (w32_strerror): Just what it says on the tin.
4037
4038 * emacs.c: Make the NS fork-then-exec code for daemon-launching
4039 also run for Cygwin; both systems have the same problem with using
4040 GUI facilities in a forked child. Also call syms_of_cygw32,
4041 syms_of_w32select in correct places.
4042
4043 (DAEMON_MUST_EXEC): new macro defined to signal that a platform
4044 needs fork-then-exec for daemon launching.
4045
4046 * font.h: Include frame.h.
4047
4048 * image.c: Use the image library cache machinery only when we're
4049 compiling for native WINDOWSNT; Cygwin can use shared libraries
4050 like any other Unixlike system.
4051
4052 * keyboard.c: Clarify a comment regarding the input loop.
4053
4054 * menu.c: When NTGUI_UNICODE is defined, use Unicode menu
4055 functions directly instead of trying to detect at runtime that our
4056 host operating system supports them. We make this change for two
4057 reasons: Cygwin lacks support for the multibyte character
4058 conversion functions used by the legacy menu code, and Cygwin
4059 never needs to rely on non-Unicode APIs.
4060
4061 * unexw32.c (hinst): Declare extern.
4062
4063 * w32.c: Change header order;
4064 (w32_strerror): Move to w32fns.c because we need it for
4065 non-WINDOWSNT builds.
4066
4067 * w32.h: Add #error macro to make sure we don't include w32.h for
4068 Cygwin builds. Remove w32select declarations.
4069
4070 * w32console.c (w32_sys_ring_bell, Fset_message_beep): Move to
4071 w32fns.c. w32console.c is WINDOWSNT-only.
4072
4073 * w32fns.c: Include cygw32.h or w32.h depending on CYGWIN; more
4074 NTGUI_UNICODE tweaks. (See above.) Change _snprintf to the more
4075 POSIXy alternative.
4076 (faked_key, sysinfo_cache, osinfo_cahce, syspage_mask)
4077 (w32_major_version, w32_minor_version, w32_build_number)
4078 (os_subtype, sound_type): Define here
4079 (w32_defined_color): Make color parameter const for consistency
4080 with other _defined_color functions.
4081 (w32_createwindow): Unconditionally call w32_init_class instead of
4082 doing so only when hprevinst is non-NULL. Plumbing hprevinst
4083 through the code is complex and unnecessary because class
4084 registration is practically free.
4085 (w32_name_of_message): New EMACSDEBUG-only function.
4086 (Fset_message_beep): Move here
4087 (Fx_open_connection): Require that the display name for Windows be
4088 "w32" for consistency, emacsclient disambiguation, and maybe, one
4089 day, multi-window-system support.
4090 (file_dialog_callback): NTGUI_UNICODE changes; encode and decode
4091 Cygwin files for W32 GUI facilities, since these clearly don't
4092 expect Cygwin names.
4093 (_DebPrint): Define.
4094 (w32_strerror, w32_console_toggle_lock_key, w32_kbd_mods_to_emacs)
4095 (w32_kbd_patch_key, w32_sys_ring_bell): Move here.
4096 (Ssystem_move_file_to_trash): Define only for native WINDOWSNT.
4097 (w32_last_error): Remove.
4098
4099 * w32font.c: Define _strlwr to strlwr for non-WINDOWSNT builds.
4100
4101 * w32heap.c (syspage_mask): Declare here.
4102 (cache_system_info): Remove.
4103
4104 * w32inevt.c (faked_key): Define globally, not statically.
4105 (w32_kbd_mods_to_emacs, w32_kbd_patch_key, faked_key)
4106 (w32_console_toggle_lock_key): Move to w32fns.c.
4107
4108 * w32menu.c: Include setjmp.h. NTGUI_UNICODE changes throughout.
4109
4110 * w32proc.c (_DebPrint): Move to w32fns.c.
4111 * w32select.c: Include string.h, stdio.h for Cygwin.
4112 * w32select.h: New File.
4113
4114 * w32term.c: Include io.h for non-CYGWIN builds; needed for
4115 get_osfhandle.
4116 (w32_message_fd): New variable. Under Cygwin, holds the file
4117 descriptor the system used to tell us about pending thread
4118 messages.
4119
4120 (w32_init_term): Remove incorrect calls to fcntl and init_sigio
4121 that prevented compilation under non-WINDOWSNT systems.
4122
4123 (w32_initialize): Open /dev/windows and assign it to
4124 w32_message_fd. Provide w32 feature.
4125
4126 * w32term.h: Include frame.h, atimer.h. Declare various frame functions.
4127 (WM_EMACS_INPUT_READY): add.
4128 (prepend_msg, w32_message_fd): Declare globally.
4129
4130 * w32xfns.c:
4131 (keyboard_handle): Use only when WINDOWSNT.
4132 (notify_msg_ready): New function. Posts a message to the main
4133 thread's message queue under CYGWIN, which wakes up the main
4134 thread from select(2) by making the /dev/windows file descriptor
4135 ready. Under WINDOWSNT, it sets an event the same way the old
4136 code did.
4137
4138 (post, prepend_msg): Actually call notify_msg_ready instead of
4139 setting the input event directly.
4140
4141 2012-10-07 Eli Zaretskii <eliz@gnu.org>
4142
4143 * ralloc.c (relinquish): If a heap is ready to be relinquished,
4144 but it still has blocs in it, don't return it to the system,
4145 instead of aborting. (Bug#12402)
4146
4147 2012-10-07 Jan Djärv <jan.h.d@swipnet.se>
4148
4149 * nsterm.m (ns_dumpglyphs_image): Only draw slice of image (Bug#12506).
4150
4151 * nsterm.m (ns_update_auto_hide_menu_bar): Remove defintion of
4152 MAC_OS_X_VERSION_10_6.
4153 (syms_of_nsterm): Remove comment about Panther and above for
4154 ns-antialias-text.
4155 * nsterm.h (MAC_OS_X_VERSION_10_3, onTiger): Remove.
4156 (EmacsApp): Remove check for >= MAC_OS_X_VERSION_10_4.
4157 (struct nsfont_info): Remove check for >= MAC_OS_X_VERSION_10_3.
4158
4159 * nsselect.m (ns_string_from_pasteboard): Remove check for >=
4160 MAC_OS_X_VERSION_10_4.
4161
4162 * nsmenu.m (fillWithWidgetValue:): Remove code for <
4163 MAC_OS_X_VERSION_10_2.
4164
4165 * nsimage.m (setPixmapData, getPixelAtX, setAlphaAtX): Remove onTiger.
4166
4167 * nsfns.m (Fns_list_services): Remove comment and check for OSX < 10.4.
4168 (ns_do_applescript): Remove check for >= MAC_OS_X_VERSION_10_4.
4169
4170 * nsterm.m (ns_in_resize): Remove (Bug#12479).
4171 (ns_resize_handle_rect, mouseDown, mouseUp, mouseDragged): Remove.
4172 (ns_clear_frame, sendEvent, windowDidResize, drawRect:):
4173 Remove ns_in_resize check.
4174 (ns_clear_frame_area): Remove resize handle code.
4175
4176 * nsfns.m (ns_in_resize): Remove.
4177 (x_set_icon_name, ns_set_name, ns_set_name_as_filename):
4178 Remove ns_in_resize check.
4179
4180 2012-10-07 Paul Eggert <eggert@cs.ucla.edu>
4181
4182 Improve sys_siglist detection.
4183 * sysdep.c (sys_siglist, init_signals): Use _sys_siglist if it's
4184 defined as a macro, as is done in Solaris.
4185 (sys_siglist_entries): New macro.
4186 (save_strsignal): Use it.
4187 * syssignal.h (safe_strsignal): Now ATTRIBUTE_CONST, to pacify
4188 GCC 4.7.2 on Fedora 17 with the fixed sys_siglist detection.
4189
4190 2012-10-06 Jan Djärv <jan.h.d@swipnet.se>
4191
4192 * nsfns.m (Fx_create_frame): Call x_default_parameter with
4193 fullscreen/Fullscreen.
4194
4195 * nsterm.h (EmacsView): Rename tbar_height to tibar_height.
4196 tobar_height is new.
4197
4198 * nsterm.m (x_make_frame_visible): Check for fullscreen.
4199 (ns_fullscreen_hook): Activate old style fullscreen with a timer.
4200 (ns_term_init): Set activateIgnoringOtherApps if old style fullscreen.
4201 (windowDidResize:): Check for correct window if old style fullscreen.
4202 Capitalize word in comment. Remove incorrect comment.
4203 (initFrameFromEmacs:): tbar_height renamed tibar_height.
4204 (windowDidEnterFullScreen:): Toggle toolbar for fullscreen to fix
4205 error in drawing background.
4206 (toggleFullScreen:): Remove comment. Rearrange calls.
4207 Set toolbar values to zero, save old height in tobar_height.
4208 Restore tool bar height when leaving fullscreen.
4209 (canBecomeMainWindow): New function.
4210
4211 2012-10-06 Paul Eggert <eggert@cs.ucla.edu>
4212
4213 * keyboard.c (read_char): Remove unnecessary 'volatile's and label.
4214
4215 2012-10-05 Eli Zaretskii <eliz@gnu.org>
4216
4217 * w32proc.c (stop_timer_thread): Fix declaration of 'err'.
4218
4219 * w32.c (utime): Open the file with FILE_FLAG_BACKUP_SEMANTICS, so
4220 that time stamps of directories could also be changed.
4221 Don't request the too broad GENERIC_WRITE, only the more restrictive
4222 FILE_WRITE_ATTRIBUTES access rights.
4223
4224 * fileio.c (Fset_file_times): Special-case ignoring errors for
4225 directories only on MSDOS, not on MS-Windows.
4226
4227 2012-10-05 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
4228
4229 * minibuf.c (Fcompleting_read): Doc fix. (Bug#12555)
4230
4231 2012-10-04 Eli Zaretskii <eliz@gnu.org>
4232
4233 * w32.c (utime): Test for INVALID_HANDLE_VALUE, not for NULL, to
4234 see whether CreateFile failed.
4235
4236 2012-10-04 Paul Eggert <eggert@cs.ucla.edu>
4237
4238 * profiler.c (handle_profiler_signal): Inhibit pending signals too,
4239 to avoid similar races.
4240 * keyboard.c (pending_signals): Now bool, not int.
4241
4242 Port timers to OpenBSD, plus check for timer failures.
4243 OpenBSD problem reported by Han Boetes.
4244 * profiler.c (setup_cpu_timer): Check for failure of timer_settime
4245 and/or setitimer.
4246 (Fprofiler_cpu_stop): Don't assume HAVE_SETITIMER.
4247 * syssignal.h (HAVE_ITIMERSPEC): New macro. This is for platforms
4248 like OpenBSD, which has timer_settime but does not declare it.
4249 OpenBSD does not define SIGEV_SIGNAL, so use that when deciding
4250 whether to use itimerspec-related primitives. All uses of
4251 HAVE_TIMER_SETTIME replaced with HAVE_ITIMERSPEC.
4252
4253 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
4254
4255 * profiler.c (handle_profiler_signal): Fix a malloc race
4256 that caused Emacs to hang on Fedora 17 when profiling Lisp.
4257
4258 2012-10-02 Jan Djärv <jan.h.d@swipnet.se>
4259
4260 * nsterm.m (windowDidEnterFullScreen): Remove fprintf.
4261
4262 2012-10-02 Eli Zaretskii <eliz@gnu.org>
4263
4264 * w32proc.c (sys_wait): Declare 'signame' 'const char *', to be
4265 consistent with the change in return value of 'safe_strsignal'.
4266
4267 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
4268
4269 Prefer plain 'static' to 'static inline' (Bug#12541).
4270 * bidi.c (bidi_get_type, bidi_check_type, bidi_get_category)
4271 (bidi_set_sor_type, bidi_push_embedding_level)
4272 (bidi_pop_embedding_level, bidi_remember_char, bidi_copy_it)
4273 (bidi_cache_reset, bidi_cache_shrink, bidi_cache_fetch_state)
4274 (bidi_cache_search, bidi_cache_ensure_space)
4275 (bidi_cache_iterator_state, bidi_cache_find)
4276 (bidi_peek_at_next_level, bidi_set_paragraph_end)
4277 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
4278 (bidi_explicit_dir_char, bidi_resolve_neutral_1):
4279 Now 'static', not 'static inline'.
4280
4281 Count overruns when profiling; change units to ns.
4282 * profiler.c (handle_profiler_signal): Count sampling intervals, not ms.
4283 Give extra weight to samples after overruns, to attempt to count
4284 the time more accurately.
4285 (setup_cpu_timer): Change sampling interval units from ms to ns, since
4286 the underlying primitives nominally do ns.
4287 (Fprofiler_cpu_start): Document the change. Mention that
4288 the sampling intervals are only approximate.
4289
4290 2012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
4291
4292 * frame.c (Fmake_terminal_frame): Prefer safer CONSP over !NILP.
4293
4294 * coding.h (ENCODE_FILE, DECODE_FILE, DECODE_SYSTEM): Remove special
4295 case for the special 0 coding-system.
4296
4297 * buffer.c (Fset_buffer_multibyte): Signal an error instead of widening.
4298 (Fmake_overlay): Remove redundant tests.
4299 (fix_start_end_in_overlays): Remove redundant recentering.
4300
4301 2012-10-02 Juanma Barranquero <lekktu@gmail.com>
4302
4303 * makefile.w32-in ($(BLD)/alloc.$(O), $(BLD)/gmalloc.$(O)):
4304 Update dependencies.
4305
4306 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
4307
4308 Fix a malloc race condition involving strsignal.
4309 A signal can arrive in the middle of a malloc, and Emacs's signal
4310 handler can invoke strsignal, which can invoke malloc, which is
4311 not portable. This race condition bug makes Emacs hang on GNU/Linux.
4312 Fix it by altering the signal handler so that it does not invoke
4313 strsignal.
4314 * emacs.c (shut_down_emacs): Use safe_strsignal, not strsignal.
4315 * process.c (status_message): Use const pointer, in case strsignal
4316 is #defined to safe_strsignal.
4317 * sysdep.c (sys_siglist, init_signals): Always define and
4318 initialize a substitute sys_siglist if the system does not define
4319 one, even if HAVE_STRSIGNAL.
4320 (safe_strsignal): Rename from strsignal. Always define,
4321 using sys_siglist. Return a const pointer.
4322 * syssignal.h (safe_strsignal): New decl.
4323 (strsignal) [!HAVE_STRSIGNAL]: Define in terms of safe_strsignal.
4324
4325 2012-10-01 Eli Zaretskii <eliz@gnu.org>
4326
4327 * w32proc.c (timer_loop): Fix code that waits for timer
4328 expiration, to avoid high CPU usage.
4329
4330 2012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
4331
4332 * fns.c (check_hash_table, get_key_arg, maybe_resize_hash_table)
4333 (sweep_weak_table): Remove redundant prototypes.
4334
4335 2012-10-01 Fabrice Popineau <fabrice.popineau@gmail.com>
4336
4337 * emacs.c: Move the inclusion of TERM_HEADER after including
4338 windows.h on WINDOWSNT. This avoids compilation problems with
4339 MSVC.
4340
4341 2012-10-01 Eli Zaretskii <eliz@gnu.org>
4342
4343 * unexw32.c (OFFSET_TO_RVA, RVA_TO_OFFSET)
4344 (RVA_TO_SECTION_OFFSET): Encode all macro arguments in parentheses.
4345 (RVA_TO_PTR): Cast the result of RVA_TO_OFFSET to 'unsigned char *',
4346 as the previous version used 'void *'.
4347
4348 * ralloc.c (ROUNDUP): Fix last change.
4349 (MEM_ROUNDUP): Don't cast MEM_ALIGN, it is already of type
4350 'size_t'.
4351
4352 * w32proc.c <disable_itimers>: New static flag.
4353 (init_timers): Initialize it to zero, after creating the critical
4354 sections used by the timer threads.
4355 (term_timers): Set to 1 before deleting the critical sections.
4356 (getitimer, setitimer): If disable_itimers is non-zero, return an
4357 error indication without doing anything. Reported by Fabrice
4358 Popineau <fabrice.popineau@supelec.fr> as part of bug#12544.
4359 (alarm) [HAVE_SETITIMER]: Be more conformant to the expected
4360 return results.
4361 [!HAVE_SETITIMER]: Behave as the previous version that didn't
4362 support timers.
4363
4364 * emacs.c (shut_down_emacs) [WINDOWSNT]: Move the call to
4365 term_ntproc after all the other bookkeeping, to get timers working
4366 as long as possible.
4367
4368 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
4369
4370 * xdisp.c (syms_of_xdisp): Default message-log-max to 1000, not 100.
4371 Suggested by Juri Linkov in
4372 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00821.html>.
4373
4374 Prefer plain 'static' to 'static inline' (Bug#12541).
4375 With static functions, modern compilers inline pretty well by
4376 themselves; advice from programmers often hurts as much as it helps.
4377 On my host (x86-64, Fedora 17, GCC 4.7.2, default 'configure'),
4378 this change shrinks the text size of the Emacs executable by 1.1%
4379 without affecting CPU significantly in my benchmark.
4380 * alloc.c (mem_find, live_string_p, live_cons_p, live_symbol_p)
4381 (live_float_p, live_misc_p, live_vector_p, live_buffer_p)
4382 (mark_maybe_object, mark_maybe_pointer, bounded_number):
4383 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
4384 (bset_auto_fill_function, bset_auto_save_file_format)
4385 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
4386 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
4387 (bset_cache_long_line_scans, bset_case_fold_search)
4388 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
4389 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
4390 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
4391 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
4392 (bset_header_line_format, bset_indicate_buffer_boundaries)
4393 (bset_indicate_empty_lines, bset_invisibility_spec)
4394 (bset_left_fringe_width, bset_major_mode, bset_mark)
4395 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
4396 (bset_name, bset_overwrite_mode, bset_pt_marker)
4397 (bset_right_fringe_width, bset_save_length)
4398 (bset_scroll_bar_width, bset_scroll_down_aggressively)
4399 (bset_scroll_up_aggressively, bset_selective_display)
4400 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
4401 (bset_word_wrap, bset_zv_marker, set_buffer_overlays_before)
4402 (set_buffer_overlays_after):
4403 * category.c (bset_category_table):
4404 * charset.c (read_hex):
4405 * coding.c (produce_composition, produce_charset)
4406 (handle_composition_annotation, handle_charset_annotation)
4407 (char_encodable_p):
4408 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers)
4409 (assign_row, set_frame_matrix_frame, make_current)
4410 (add_row_entry):
4411 * eval.c (set_specpdl_symbol, set_specpdl_old_value):
4412 * fns.c (maybe_resize_hash_table):
4413 * frame.c (fset_buffer_predicate, fset_minibuffer_window):
4414 * gmalloc.c (register_heapinfo):
4415 * image.c (lookup_image_type):
4416 * intervals.c (set_interval_object, set_interval_left)
4417 (set_interval_right, copy_interval_parent, rotate_right)
4418 (rotate_left, balance_possible_root_interval):
4419 * keyboard.c (kset_echo_string, kset_kbd_queue)
4420 (kset_keyboard_translate_table, kset_last_prefix_arg)
4421 (kset_last_repeatable_command, kset_local_function_key_map)
4422 (kset_overriding_terminal_local_map, kset_real_last_command)
4423 (kset_system_key_syms, clear_event, set_prop):
4424 * lread.c (digit_to_number):
4425 * marker.c (attach_marker, live_buffer, set_marker_internal):
4426 * nsterm.m (ns_compute_glyph_string_overhangs):
4427 * process.c (pset_buffer, pset_command)
4428 (pset_decode_coding_system, pset_decoding_buf)
4429 (pset_encode_coding_system, pset_encoding_buf, pset_filter)
4430 (pset_log, pset_mark, pset_name, pset_plist, pset_sentinel)
4431 (pset_status, pset_tty_name, pset_type, pset_write_queue):
4432 * syntax.c (bset_syntax_table, dec_bytepos):
4433 * terminal.c (tset_param_alist):
4434 * textprop.c (interval_has_some_properties)
4435 (interval_has_some_properties_list):
4436 * window.c (wset_combination_limit, wset_dedicated)
4437 (wset_display_table, wset_hchild, wset_left_fringe_width)
4438 (wset_left_margin_cols, wset_new_normal, wset_new_total)
4439 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
4440 (wset_right_fringe_width, wset_right_margin_cols)
4441 (wset_scroll_bar_width, wset_start, wset_temslot, wset_vchild)
4442 (wset_vertical_scroll_bar_type, wset_window_parameters):
4443 * xdisp.c (wset_base_line_number, wset_base_line_pos)
4444 (wset_column_number_displayed, wset_region_showing)
4445 (window_box_edges, run_window_scroll_functions)
4446 (append_glyph_string_lists, prepend_glyph_string_lists)
4447 (append_glyph_string, set_glyph_string_background_width)
4448 (append_glyph, append_composite_glyph)
4449 (take_vertical_position_into_account):
4450 * xfaces.c (x_create_gc, x_free_gc, merge_face_vectors)
4451 (face_attr_equal_p, lface_equal_p, hash_string_case_insensitive)
4452 (lface_hash, lface_same_font_attributes_p, lookup_face):
4453 * xml.c (libxml2_loaded_p):
4454 * xterm.c (x_set_mode_line_face_gc, x_set_glyph_string_gc)
4455 (x_set_glyph_string_clipping, x_clear_glyph_string_rect):
4456 Now 'static', not 'static inline'.
4457
4458 * bidi.c: Tune.
4459 (bidi_copy_it): Do the whole copy with a single memcpy.
4460 (bidi_char_at_pos): Merge the two STRING_CHAR calls into one.
4461
4462 Revert the FOLLOW-SYMLINKS change for file-attributes.
4463 Doing it right would require several changes to Tramp, and there's
4464 not enough time to get that tested before the freeze today.
4465 * dired.c (directory_files_internal, Ffile_attributes):
4466 Undo last change.
4467
4468 * frame.c (x_report_frame_params): Port better to wider ints.
4469 Do not assume that EMACS_UINT is the same width as uprintmax_t,
4470 or that pointers can be printed in 15 decimal digits.
4471 Avoid GCC warnings if EMACS_UINT is wider than a pointer.
4472
4473 2012-09-30 Fabrice Popineau <fabrice.popineau@supelec.fr>
4474
4475 Support x64 build on MS-Windows.
4476 * w32term.h (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK): Define for x64.
4477 (SET_SCROLL_BAR_W32_WINDOW): Cast ID to intptr_t, for
4478 compatibility with x64.
4479 (x_get_focus_frame): Add prototype.
4480
4481 * w32term.c (w32_draw_underwave): Don't use GCC extensions for
4482 defining an XRectangle structure.
4483
4484 * w32proc.c (RVA_TO_PTR, w32_executable_type): Fix pointer
4485 arithmetics for compatibility with x64.
4486
4487 * w32menu.c (add_menu_item): Use UINT_PTR instead of UINT, for
4488 compatibility with x64.
4489
4490 * w32heap.h: Adjust prototypes and declarations.
4491
4492 * w32heap.c (RVA_TO_PTR, allocate_heap, sbrk, init_heap)
4493 (round_heap): Use DWORD_PTR, ptrdiff_t and size_t instead of
4494 DWORD, long, and unsigned long, for compatibility with x64.
4495 (allocate_heap) [_WIN64]: Reserve 32GB of memory.
4496 (sbrk): Argument is now of type ptrdiff_t.
4497
4498 * w32fns.c (HMONITOR): Condition declaration on _WIN32_WINNT being
4499 less than 0x0500.
4500 (w32_msg_pump): Use WPARAM type for 'result'.
4501
4502 * w32.c (init_environment, get_emacs_configuration): Support AMD64
4503 architecture.
4504 (init_ntproc): Cast arguments of _open_osfhandle to intptr_t, for
4505 compatibility with x64.
4506
4507 * vm-limit.c (lim_data): Now size_t.
4508 (check_memory_limits): Adjust prototypes of real_morecore and
4509 __morecore to receive argument of type ptrdiff_t. Use size_t for
4510 five_percent and data_size.
4511
4512 * unexw32.c: Use DWORD_PTR instead of DWORD for file-scope
4513 variables, for compatibility with x64.
4514 (rva_to_section, offset_to_section, relocate_offset)
4515 (OFFSET_TO_RVA, RVA_TO_OFFSET, RVA_TO_SECTION_OFFSET)
4516 (PTR_TO_RVA, RVA_TO_PTR, OFFSET_TO_PTR, get_section_info)
4517 (copy_executable_and_dump_data): Use DWORD_PTR instead of DWORD
4518 for compatibility with x64.
4519
4520 * sysdep.c (STDERR_FILENO): Define if not already defined.
4521
4522 * ralloc.c (real_morecore): Argument type is now ptrdiff_t.
4523 (__morecore): Argument type is now ptrdiff_t.
4524 (ROUNDUP, MEM_ROUNDUP): Use size_t instead of 'unsigned long'.
4525 (relinquish): Use ptrdiff_t type for 'excess'.
4526 (r_alloc_sbrk): Argument type is now ptrdiff_t.
4527
4528 * makefile.w32-in (HEAPSIZE): Get value from EMACS_HEAPSIZE.
4529 (bootstrap-temacs-CMD, bootstrap-temacs-SH): Use $(EMACS_PURESIZE)
4530 instead of a literal number.
4531
4532 * gmalloc.c [WINDOWSNT]: Include w32heap.h.
4533 (min): Define only if not already defined.
4534
4535 * frame.c (x_report_frame_params): Use EMACS_UINT for the return
4536 value of FRAME_X_WINDOW, to fit a 64-bit pointer on 64-bit Windows
4537 hosts.
4538
4539 * image.c (x_bitmap_pixmap): Return ptrdiff_t, not int, since
4540 'bitmaps' is a pointer.
4541
4542 * dispextern.h (x_bitmap_pixmap): Adjust prototype.
4543
4544 * alloc.c (gdb_make_enums_visible): Now conditional on __GNUC__.
4545
4546 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
4547
4548 file-attributes has a new optional arg FOLLOW-SYMLINKS.
4549 * dired.c (directory_files_internal, Ffile_attributes):
4550 New arg follow_symlinks. All uses changed.
4551
4552 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
4553
4554 * .gdbinit (xbacktrace): Adjust to recent "struct backtrace" change.
4555
4556 2012-09-30 Eli Zaretskii <eliz@gnu.org>
4557
4558 Support atimers and CPU profiler via profile.c on MS-Windows.
4559 * w32proc.c (sig_mask, crit_sig): New static variables.
4560 (sys_signal): Support SIGALRM and SIGPROF.
4561 (sigemptyset, sigaddset, sigfillset, sigprocmask)
4562 (pthread_sigmask, setpgrp): Move here from w32.c. sigaddset,
4563 sigfillset, and sigprocmask are no longer no-ops.
4564 (sigismember): New function.
4565 (struct itimer_data): New definition.
4566 (ticks_now, real_itimer, prof_itimer, clocks_min, crit_real)
4567 (crit_prof): New static variables.
4568 (MAX_SINGLE_SLEEP): New definition.
4569 (timer_loop, stop_timer_thread, term_timers, init_timers)
4570 (start_timer_thread, getitimer, setitimer): New functions.
4571 (alarm): No longer a no-op, calls setitimer.
4572
4573 * w32.c (term_ntproc): Call term_timers.
4574 (init_ntproc): Make sure all signals are unblocked at startup, to
4575 erase any traces of dumping. Call init_timers.
4576
4577 * w32fns.c (hourglass_timer, HOURGLASS_ID): Remove.
4578 Windows-specific code to display the hourglass mouse pointer is no
4579 longer used.
4580 (w32_wnd_proc): Remove code that handled the WM_TIMER message due
4581 to hourglass timer expiration.
4582 (start_hourglass, cancel_hourglass, DEFAULT_HOURGLASS_DELAY):
4583 Remove, no longer used.
4584 (w32_note_current_window, show_hourglass, hide_hourglass):
4585 New functions, in support of hourglass cursor display similar to other
4586 window systems.
4587 (syms_of_w32fns): Don't initialize hourglass_timer.
4588
4589 * xdisp.c (start_hourglass, cancel_hourglass): Now used on
4590 WINDOWSNT as well.
4591 (start_hourglass) [WINDOWSNT]: Call w32_note_current_window.
4592
4593 * w32.h (init_timers, term_timers): Add prototypes.
4594
4595 2012-09-30 Kenichi Handa <handa@gnu.org>
4596
4597 * coding.c (decode_coding_ccl, encode_coding_ccl): Pay attention
4598 to the buffer relocation which may be caused by ccl_driver.
4599
4600 2012-09-30 Jan Djärv <jan.h.d@swipnet.se>
4601
4602 * xfns.c (Fx_file_dialog): Update comment.
4603
4604 * w32fns.c (Fx_file_dialog): Update comment.
4605
4606 * nsfns.m (Fns_read_file_name): Add argument DIR_ONLY_P.
4607 Initialize panel name field if OSX >= 10.6.
4608
4609 * fileio.c (Fnext_read_file_uses_dialog_p): Add HAVE_NS.
4610
4611 * nsfns.m (ns_frame_parm_handlers): Add x_set_fullscreen.
4612
4613 * nsterm.m (NEW_STYLE_FS): New define.
4614 (ns_fullscreen_hook, windowWillEnterFullScreen)
4615 (windowDidEnterFullScreen, windowWillExitFullScreen)
4616 (windowDidExitFullScreen, toggleFullScreen, handleFS)
4617 (setFSValue): New functions.
4618 (EmacsFSWindow): New implementation.
4619 (canBecomeKeyWindow): New function for EmacsFSWindow.
4620 (ns_create_terminal): Set fullscreen_hook to ns_fullscreen_hook.
4621 (dealloc): Release nonfs_window if in fullscreen.
4622 (updateFrameSize:): Call windowDidMove to update top/left.
4623 (windowWillResize:toSize:): Check if frame is still maximized.
4624 (initFrameFromEmacs:): Initialize fs_state, fs_before_fs,
4625 next_maximized, maximized_width, maximized_height and nonfs_window.
4626 Call setCollectionBehavior if NEW_STYLE_FS. Initialize bwidth and
4627 tbar_height.
4628 (windowWillUseStandardFrame:defaultFrame:): Update frame parameter
4629 fullscreen. Set maximized_width/height. Act on next_maximized.
4630
4631 * nsterm.h (MAC_OS_X_VERSION_10_7, MAC_OS_X_VERSION_10_8): New.
4632 (EmacsView): Add variables for fullscreen.
4633 (handleFS, setFSValue, toggleFullScreen): New in EmacsView.
4634 (EmacsFSWindow): New interface for fullscreen.
4635
4636 2012-09-30 Juanma Barranquero <lekktu@gmail.com>
4637
4638 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
4639
4640 2012-09-30 Chong Yidong <cyd@gnu.org>
4641
4642 * fns.c (Frandom): Doc fix.
4643
4644 2012-09-30 Martin Rudalics <rudalics@gmx.at>
4645
4646 * window.c (Vwindow_combination_limit): New default value.
4647 (Qwindow_size): New symbol replacing Qtemp_buffer_resize.
4648
4649 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
4650
4651 * syssignal.h (PROFILER_CPU_SUPPORT): Don't define if PROFILING.
4652 Suggested by Eli Zaretskii in
4653 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00811.html>.
4654
4655 2012-09-30 Eli Zaretskii <eliz@gnu.org>
4656
4657 * profiler.c (Fprofiler_cpu_stop): Use timer_settime only if
4658 HAVE_TIMER_SETTIME is defined.
4659
4660 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
4661
4662 Profiler improvements: more-accurate timers, overflow checks.
4663 * profiler.c: Don't include stdio.h, limits.h, sys/time.h,
4664 signal.h, setjmp.h. Include systime.h instead.
4665 (saturated_add): New function.
4666 (record_backtrace, current_sample_interval): Use EMACS_INT, not size_t.
4667 (record_backtrace, handle_profiler_signal): Saturate on fixnum overflow.
4668 (profiler_timer, profiler_timer_ok) [HAVE_TIMER_SETTIME]:
4669 New static vars.
4670 (enum profiler_cpu_running): New enum.
4671 (profiler_cpu_running): Now of that enum type, not bool.
4672 All uses changed to store the new value.
4673 (handle_profiler_signal): Rename from sigprof_handler_1,
4674 for consistency with other handlers. Do not check whether
4675 cpu_log is a hash-table if garbage collecting, since it
4676 doesn't matter in that case.
4677 (deliver_profiler_signal): Rename from sigprof_handler,
4678 for consistency with other handlers.
4679 (setup_cpu_timer): New function, with much of what used to be in
4680 Fprofiler_cpu_start. Check for out-of-range argument.
4681 Prefer timer_settime if available, and prefer
4682 thread cputime clocks, then process cputime clocks, then
4683 monotonic clocks, to the old realtime clock. Use make_timeval
4684 to round more-correctly when falling back to setitimer.
4685 (Fprofiler_cpu_start): Use it.
4686 (Fprofiler_cpu_stop): Prefer timer_settime if available.
4687 Don't assume that passing NULL as the 2nd argument of setitimer
4688 is the same as passing a pointer to all-zero storage.
4689 Ignore SIGPROF afterwards.
4690 (malloc_probe): Saturate at MOST_POSITIVE_FIXNUM.
4691 * sysdep.c (emacs_sigaction_init): Also mask out SIGPROF in
4692 non-fatal signal handlers. Ignore SIGPROF on startup.
4693 * syssignal.h (PROFILER_CPU_SUPPORT): Define this macro here, not
4694 in profiler.c, since sysdep.c now uses it.
4695
4696 * sysdep.c (handle_fatal_signal): Bump backtrace size to 40.
4697 Suggested by Eli Zaretskii in
4698 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00796.html>.
4699
4700 2012-09-29 Juanma Barranquero <lekktu@gmail.com>
4701
4702 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
4703
4704 2012-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
4705
4706 * lisp.h (struct backtrace): Remove indirection for `function' field.
4707 * xdisp.c (redisplay_internal):
4708 * profiler.c (record_backtrace, sigprof_handler_1):
4709 * alloc.c (Fgarbage_collect):
4710 * eval.c (interactive_p, Fsignal, eval_sub, Ffuncall, Fbacktrace)
4711 (Fbacktrace_frame): Adjust accordingly.
4712
4713 2012-09-28 Glenn Morris <rgm@gnu.org>
4714
4715 * eval.c (Frun_hook_with_args, Frun_hook_with_args_until_success)
4716 (Frun_hook_with_args_until_failure): Doc fixes.
4717
4718 2012-09-28 Eli Zaretskii <eliz@gnu.org>
4719
4720 * xdisp.c (syms_of_xdisp) <Qredisplay_internal>: Rename from
4721 Qautomatic_redisplay and change the symbol name. All users changed.
4722
4723 2012-09-28 Tomohiro Matsuyama <tomo@cx4a.org>
4724
4725 * profiler.c (sigprof_handler): Fix race condition.
4726
4727 2012-09-28 Glenn Morris <rgm@gnu.org>
4728
4729 * lread.c (lisp_file_lexically_bound_p): Handle #! lines. (Bug#12528)
4730
4731 2012-09-27 Paul Eggert <eggert@cs.ucla.edu>
4732
4733 Check more robustly for timer_settime.
4734 * Makefile.in (LIB_TIMER_TIME): New macro.
4735 (LIBES): Add it.
4736 * atimer.c (alarm_timer, alarm_timer_ok, set_alarm, init_atimer):
4737 Use HAVE_TIMER_SETTIME, not SIGEV_SIGNAL, to decide whether to
4738 call timer_settime.
4739
4740 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
4741
4742 * profiler.c (Fprofiler_cpu_start): Remove unnecessary flag SA_SIGINFO.
4743
4744 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
4745
4746 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
4747
4748 2012-09-26 Paul Eggert <eggert@cs.ucla.edu>
4749
4750 * character.h (MAYBE_UNIFY_CHAR): Remove.
4751 * charset.c, charset.h (maybe_unify_char): Now static.
4752 * charset.c (decode_char): Use maybe_unify_char, not MAYBE_UNIFY_CHAR.
4753 Since this stuff is now private to charset.c, there's no need for
4754 a public macro and no need to inline by hand.
4755
4756 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
4757 Stefan Monnier <monnier@iro.umontreal.ca>
4758 Juanma Barranquero <lekktu@gmail.com>
4759
4760 * profiler.c: New file.
4761 * Makefile.in (base_obj): Add profiler.o.
4762 * makefile.w32-in (OBJ2, GLOBAL_SOURCES): Add profiler.c.
4763 ($(BLD)/profiler.$(O)): New target.
4764 * emacs.c (main): Call syms_of_profiler.
4765 * alloc.c (Qautomatic_gc): New constant.
4766 (MALLOC_PROBE): New macro.
4767 (xmalloc, xzalloc, xrealloc, lisp_malloc, lisp_align_malloc): Use it.
4768 (total_bytes_of_live_objects): New function.
4769 (Fgarbage_collect): Use it. Record itself in backtrace_list.
4770 Call malloc_probe for the memory profiler.
4771 (syms_of_alloc): Define Qautomatic_gc.
4772 * eval.c (eval_sub, Ffuncall): Reorder assignments to avoid
4773 race condition.
4774 (struct backtrace): Move definition...
4775 * lisp.h (struct backtrace): ..here.
4776 (Qautomatic_gc, profiler_memory_running): Declare vars.
4777 (malloc_probe, syms_of_profiler): Declare functions.
4778 * xdisp.c (Qautomatic_redisplay): New constant.
4779 (redisplay_internal): Record itself in backtrace_list.
4780 (syms_of_xdisp): Define Qautomatic_redisplay.
4781
4782 2012-09-25 Eli Zaretskii <eliz@gnu.org>
4783 2012-09-25 Juanma Barranquero <lekktu@gmail.com>
4784
4785 * makefile.w32-in ($(BLD)/callproc.$(O)): Update dependencies.
4786
4787 2012-09-25 Paul Eggert <eggert@cs.ucla.edu>
4788
4789 Prefer POSIX timers if available.
4790 They avoid a race if the timer is too close to the current time.
4791 * atimer.c (alarm_timer, alarm_timer_ok) [SIGEV_SIGNAL]: New static vars.
4792 (set_alarm) [SIGEV_SIGNAL]: Use POSIX timers if available.
4793 (init_atimer) [SIGEV_SIGNAL]: Initialize them.
4794
4795 2012-09-25 Eli Zaretskii <eliz@gnu.org>
4796
4797 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY): Make it an alias of
4798 CHAR_STRING_ADVANCE.
4799 (STRING_CHAR_ADVANCE_NO_UNIFY): Make it an alias of
4800 STRING_CHAR_ADVANCE.
4801
4802 2012-09-25 Juanma Barranquero <lekktu@gmail.com>
4803
4804 Move Vlibrary_cache to emacs.c and reset before dumping.
4805
4806 * lisp.h (reset_image_types): Declare.
4807 [WINDOWSNT] (Vlibrary_cache): Declare.
4808
4809 * image.c (reset_image_types): New function.
4810
4811 * emacs.c [WINDOWSNT] (Vlibrary_cache): Move from w32.c.
4812 (syms_of_emacs) [WINDOWSNT] <Vlibrary_cache>: Initialize and staticpro.
4813 (Fdump_emacs): Reset Vlibrary_cache and image_types.
4814
4815 * w32.c (Vlibrary_cache): Do not define; moved to emacs.c
4816 (globals_of_w32) <Vlibrary_cache>: Do not initialize.
4817
4818 * w32.h (Vlibrary_cache): Do not declare.
4819
4820 2012-09-25 Eli Zaretskii <eliz@gnu.org>
4821
4822 * w32proc.c (sys_signal): Handle all signals defined by the
4823 MS-Windows runtime, not just SIGCHLD. Actually install the signal
4824 handlers for signals supported by Windows. Don't override
4825 term_ntproc as the handler for SIGABRT.
4826 (sigaction): Rewrite to call sys_signal instead of duplicating its
4827 code.
4828 (sys_kill): Improve commentary.
4829
4830 * w32.c (term_ntproc): Accept (and ignore) one argument, for
4831 consistency with a signature of a signal handler. All callers
4832 changed.
4833 (init_ntproc): Accept an argument DUMPING. If dumping, don't
4834 install term_ntproc as a signal handler for SIGABRT, as that
4835 should be done by the dumped Emacs.
4836
4837 * w32.h (init_ntproc, term_ntproc): Adjust prototypes.
4838
4839 * w32select.c (term_w32select): Protect against repeated
4840 invocation by setting clipboard_owner to NULL after calling
4841 DestroyWindow.
4842
4843 * emacs.c (shut_down_emacs, main): Adapt the calls to init_ntproc
4844 and term_ntproc to their modified signatures.
4845
4846 * character.c (char_string, string_char): Remove calls to
4847 MAYBE_UNIFY_CHAR. See the discussion starting at
4848 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00433.html
4849 for the details.
4850
4851 2012-09-25 Chong Yidong <cyd@gnu.org>
4852
4853 * xdisp.c (mode_line_inverse_video): Delete obsolete variable.
4854
4855 2012-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
4856
4857 * bytecode.c (exec_byte_code): Signal an error instead of aborting,
4858 when encountering an unknown bytecode.
4859
4860 2012-09-24 Paul Eggert <eggert@cs.ucla.edu>
4861
4862 image.c, indent.c: Use bool for booleans.
4863 * dispextern.h (struct image_type): Members valid_p, load, init
4864 now return bool, not int. All uses changed.
4865 * image.c: Omit unnecessary static decls.
4866 (x_create_bitmap_mask, x_build_heuristic_mask):
4867 Return void, not int, since callers don't care about the return value.
4868 (x_create_bitmap_mask, define_image_type, valid_image_p)
4869 (struct image_keyword, parse_image_spec, image_spec_value)
4870 (check_image_size, image_background)
4871 (image_background_transparent, x_clear_image_1)
4872 (postprocess_image, lookup_image, x_check_image_size)
4873 (x_create_x_image_and_pixmap, xbm_image_p)
4874 (Create_Pixmap_From_Bitmap_Data, xbm_read_bitmap_data)
4875 (xbm_load_image, xbm_file_p, xbm_load, xpm_lookup_color)
4876 (init_xpm_functions, xpm_valid_color_symbols_p, xpm_image_p)
4877 (xpm_load, xpm_load_image, lookup_rgb_color, lookup_pixel_color)
4878 (x_to_xcolors, x_build_heuristic_mask, pbm_image_p, pbm_load)
4879 (png_image_p, init_png_functions, png_load_body, png_load)
4880 (jpeg_image_p, init_jpeg_functions, jpeg_load_body, jpeg_load)
4881 (tiff_image_p, init_tiff_functions, tiff_load, gif_image_p)
4882 (init_gif_functions, gif_load, imagemagick_image_p)
4883 (imagemagick_load_image, imagemagick_load, svg_image_p)
4884 (init_svg_functions, svg_load, svg_load_image, gs_image_p)
4885 (gs_load):
4886 * nsimage.m (ns_load_image):
4887 * nsterm.m (ns_defined_color):
4888 * xfaces.c (tty_lookup_color, tty_defined_color, defined_color):
4889 * xfns.c (x_defined_color):
4890 * xterm.c (x_alloc_lighter_color_for_widget)
4891 (x_alloc_nearest_color_1, x_alloc_nearest_color)
4892 (x_alloc_lighter_color):
4893 * indent.c (disptab_matches_widthtab, current_column)
4894 (scan_for_column, string_display_width, indented_beyond_p)
4895 (compute_motion, vmotion, Fvertical_motion):
4896 Use bool for booleans.
4897
4898 2012-09-24 Chong Yidong <cyd@gnu.org>
4899
4900 * chartab.c (Fset_char_table_default): Obsolete function removed.
4901
4902 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
4903
4904 Move pid_t related decls out of lisp.h.
4905 * lisp.h, syswait.h (record_child_status_change, wait_for_termination)
4906 (interruptible_wait_for_termination):
4907 Move these decls from lisp.h to syswait.h, since they use pid_t.
4908 Needed on FreeBSD; see Herbert J. Skuhra in
4909 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00571.html>.
4910 * callproc.c: Include syswait.h.
4911
4912 gnutls.c, gtkutil.c: Use bool for boolean.
4913 * gnutls.c (gnutls_global_initialized, init_gnutls_functions)
4914 (emacs_gnutls_handle_error):
4915 * gtkutil.c (xg_check_special_colors, xg_prepare_tooltip)
4916 (xg_hide_tooltip, xg_create_frame_widgets)
4917 (create_dialog, xg_uses_old_file_dialog)
4918 (xg_get_file_with_chooser, xg_get_file_with_selection)
4919 (xg_get_file_name, xg_have_tear_offs, create_menus, xg_create_widget)
4920 (xg_item_label_same_p, xg_update_menubar)
4921 (xg_modify_menubar_widgets, xg_event_is_for_menubar)
4922 (xg_ignore_gtk_scrollbar, xg_set_toolkit_scroll_bar_thumb)
4923 (xg_event_is_for_scrollbar, xg_pack_tool_bar, xg_make_tool_item)
4924 (is_box_type, xg_tool_item_stale_p, xg_update_tool_bar_sizes)
4925 (update_frame_tool_bar, free_frame_tool_bar):
4926 * gtkutil.c, w32term.c, xterm.c (x_wm_set_size_hint):
4927 * nsmenu.m (ns_update_menubar):
4928 * nsmenu.m, w32menu.c, xmenu.c (set_frame_menubar):
4929 * xfns.c (Fx_show_tip) [USE_GTK]:
4930 Use bool for boolean.
4931 * gtkutil.c (xg_update_frame_menubar):
4932 * xmenu.c (update_frame_menubar):
4933 Return void, not int, since caller ignores return value.
4934 * gtkutil.c (xg_change_toolbar_position):
4935 Return void, not 1.
4936
4937 2012-09-23 Juanma Barranquero <lekktu@gmail.com>
4938
4939 * makefile.w32-in (BLOCKINPUT_H): Remove.
4940 (SYSSIGNAL_H): New macro.
4941 ($(BLD)/alloc.$(O), $(BLD)/atimer.$(O), $(BLD)/buffer.$(O))
4942 ($(BLD)/callproc.$(O), $(BLD)/data.$(O), $(BLD)/dired.$(O))
4943 ($(BLD)/dispnew.$(O), $(BLD)/editfns.$(O), $(BLD)/emacs.$(O))
4944 ($(BLD)/eval.$(O), $(BLD)/fileio.$(O), $(BLD)/floatfns.$(O))
4945 ($(BLD)/fns.$(O), $(BLD)/fontset.$(O), $(BLD)/frame.$(O))
4946 ($(BLD)/fringe.$(O), $(BLD)/image.$(O), $(BLD)/insdel.$(O))
4947 ($(BLD)/keyboard.$(O), $(BLD)/keymap.$(O), $(BLD)/lread.$(O))
4948 ($(BLD)/menu.$(O), $(BLD)/w32inevt.$(O), $(BLD)/w32proc.$(O))
4949 ($(BLD)/print.$(O), $(BLD)/process.$(O), $(BLD)/ralloc.$(O))
4950 ($(BLD)/search.$(O), $(BLD)/sound.$(O), $(BLD)/sysdep.$(O))
4951 ($(BLD)/term.$(O), $(BLD)/window.$(O), $(BLD)/xdisp.$(O))
4952 ($(BLD)/xfaces.$(O), $(BLD)/w32fns.$(O), $(BLD)/w32menu.$(O))
4953 ($(BLD)/w32term.$(O), $(BLD)/w32select.$(O), $(BLD)/w32reg.$(O))
4954 ($(BLD)/w32xfns.$(O)): Update dependencies.
4955
4956 2012-09-23 Eli Zaretskii <eliz@gnu.org>
4957
4958 * .gdbinit: Set breakpoint on terminate_due_to_signal, not on
4959 fatal_error_backtrace.
4960
4961 * w32proc.c (sys_kill): Undo last change: don't do anything when
4962 invoked to deliver SIGABRT to our own process. This is now
4963 handled by emacs_raise.
4964
4965 2012-09-23 Juanma Barranquero <lekktu@gmail.com>
4966
4967 * w32term.c (w32_read_socket): Remove leftover reference to
4968 interrupt_input_pending.
4969
4970 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
4971
4972 Do not use SA_NODEFER.
4973 Problem reported by Dani Moncayo in
4974 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00557.html>.
4975 * alloc.c (die):
4976 * sysdep.c (emacs_abort): Do not reset signal handler.
4977 * emacs.c (terminate_due_to_signal): Reset signal handler here.
4978 * sysdep.c (init_signals): Do not use SA_NODEFER. It wasn't
4979 wanted even on POSIXish hosts, and it doesn't work on Windows.
4980
4981 2012-09-23 Jan Djärv <jan.h.d@swipnet.se>
4982
4983 * xterm.c (x_term_init): Call fixup_locale before and after calling
4984 gtk_init (Bug#12392).
4985
4986 2012-09-23 Chong Yidong <cyd@gnu.org>
4987
4988 * w32.c (w32_delayed_load): Remove LIBRARIES argument; always use
4989 Vdynamic_library_alist.
4990
4991 * gnutls.c (init_gnutls_functions): Caller changed; remove arg.
4992 (Fgnutls_available_p): Caller changed.
4993
4994 * xml.c (init_libxml2_functions, Flibxml_parse_html_region)
4995 (Flibxml_parse_xml_region): Likewise.
4996
4997 * dispextern.h (struct image_type): Remove arg from init function.
4998
4999 * image.c (Finit_image_library, lookup_image_type)
5000 (define_image_type): Remove now-unneeded second arg.
5001 (init_xpm_functions, init_png_functions, init_jpeg_functions)
5002 (init_tiff_functions, init_gif_functions, init_svg_functions):
5003 Arglist and w32_delayed_load calling convention changed.
5004 (gs_type): Remove init_gs_functions; there is no such function.
5005 (valid_image_p, make_image): Fix caller to lookup_image_type.
5006
5007 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
5008
5009 Simplify and avoid signal-handling races (Bug#12471).
5010 * alloc.c (die):
5011 * sysdep.c (emacs_abort) [HAVE_NTGUI]:
5012 Avoid recursive loop if there's a fatal error in the function itself.
5013 * atimer.c (pending_atimers):
5014 * blockinput.h: Don't include "atimer.h"; no longer needed.
5015 (interrupt_input_pending): Remove. All uses removed.
5016 pending_signals now counts both atimers and ordinary interrupts.
5017 This is less racy than having three separate pending-signal flags.
5018 (block_input, unblock_input, totally_unblock_input, unblock_input_to)
5019 (input_blocked_p):
5020 Rename from their upper-case counterparts BLOCK_INPUT,
5021 UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT, UNBLOCK_INPUT_TO,
5022 INPUT_BLOCKED_P, and turn into functions. All uses changed.
5023 This makes it easier to access volatile variables more accurately.
5024 (BLOCK_INPUT_RESIGNAL): Remove. All uses replaced by unblock_input ().
5025 (input_blocked_p): Prefer this to 'interrupt_input_blocked', as
5026 that's more reliable if the code is buggy and sets
5027 interrupt_input_blocked to a negative value. All uses changed.
5028 * atimer.c (deliver_alarm_signal):
5029 Remove. No need to deliver this to the parent; any thread can
5030 handle this signal now. All uses replaced by underlying handler.
5031 * atimer.c (turn_on_atimers):
5032 * dispnew.c (handle_window_change_signal):
5033 * emacs.c (handle_danger_signal):
5034 * keyboard.c (kbd_buffer_get_event):
5035 Don't reestablish signal handler; not needed with sigaction.
5036 * blockinput.h (UNBLOCK_INPUT_TO, TOTALLY_UNBLOCK_INPUT)
5037 (UNBLOCK_INPUT_TO):
5038 Rework to avoid unnecessary accesses to volatile variables.
5039 (UNBLOCK_INPUT_TO): Now a function.
5040 (totally_unblock_input, unblock_input): New decls.
5041 * data.c (handle_arith_signal, deliver_arith_signal): Move to sysdep.c
5042 (init_data): Remove. Necessary stuff now done in init_signal.
5043 * emacs.c, xdisp.c: Include "atimer.h", since we invoke atimer functions.
5044 * emacs.c (handle_fatal_signal, deliver_fatal_signal): Move to sysdep.c.
5045 (fatal_error_code): Remove; no longer needed.
5046 (terminate_due_to_signal): Rename from fatal_error_backtrace, since
5047 it doesn't always backtrace. All uses changed. No need to reset
5048 signal to default, since sigaction and/or die does that for us now.
5049 Use emacs_raise (FOO), not kill (getpid (), FOO).
5050 (main): Check more-accurately whether we're dumping.
5051 Move fatal-error setup to sysdep.c
5052 * floatfns.c: Do not include "syssignal.h"; no longer needed.
5053 * gtkutil.c (xg_get_file_name, xg_get_font):
5054 Remove no-longer-needed signal-mask manipulation.
5055 * keyboard.c, process.c (POLL_FOR_INPUT):
5056 Don't depend on USE_ASYNC_EVENTS, a symbol that is never defined.
5057 * keyboard.c (read_avail_input): Remove.
5058 All uses replaced by gobble_input.
5059 (Ftop_level): Use TOTALLY_UNBLOCK_INPUT rather than open code.
5060 (kbd_buffer_store_event_hold, gobble_input):
5061 (record_asynch_buffer_change) [USABLE_SIGIO]:
5062 (store_user_signal_events):
5063 No need to mess with signal mask.
5064 (gobble_input): If blocking input and there are terminals, simply
5065 set pending_signals to 1 and return. All hooks changed to not
5066 worry about whether input is blocked.
5067 (process_pending_signals): Clear pending_signals before processing
5068 them, in case a signal comes in while we're processing.
5069 By convention callers now test pending_signals before calling us.
5070 (UNBLOCK_INPUT_TO, unblock_input, totally_unblock_input):
5071 New functions, to support changes to blockinput.h.
5072 (handle_input_available_signal): Now extern.
5073 (reinvoke_input_signal): Remove. All uses replaced by
5074 handle_async_input.
5075 (quit_count): Now volatile, since a signal handler uses it.
5076 (handle_interrupt): Now takes bool IN_SIGNAL_HANDLER as arg.
5077 All callers changed. Block SIGINT only if not already blocked.
5078 Clear sigmask reliably, even if Fsignal returns, which it can.
5079 Omit unnecessary accesses to volatile var.
5080 (quit_throw_to_read_char): No need to restore sigmask.
5081 * keyboard.c (gobble_input, handle_user_signal):
5082 * process.c (wait_reading_process_output):
5083 Call signal-handling code rather than killing ourselves.
5084 * lisp.h: Include <float.h>, for...
5085 (IEEE_FLOATING_POINT): New macro, moved here to avoid duplication.
5086 (pending_signals): Now volatile.
5087 (syms_of_data): Now const if IEEE floating point.
5088 (handle_input_available_signal) [USABLE_SIGIO]:
5089 (terminate_due_to_signal, record_child_status_change): New decls.
5090 * process.c (create_process): Avoid disaster if memory is exhausted
5091 while we're processing a vfork, by tightening the critical section
5092 around the vfork.
5093 (send_process_frame, process_sent_to, handle_pipe_signal)
5094 (deliver_pipe_signal): Remove. No longer needed, as Emacs now
5095 ignores SIGPIPE.
5096 (send_process): No need for setjmp/longjmp any more, since the
5097 SIGPIPE stuff is now gone. Instead, report an error if errno
5098 is EPIPE.
5099 (record_child_status_change): Now extern. PID and W are now args.
5100 Return void, not bool. All callers changed.
5101 * sysdep.c (wait_debugging) [(BSD_SYSTEM || HPUX) && !defined (__GNU__)]:
5102 Remove. All uses removed. This bug should be fixed now in a
5103 different way.
5104 (wait_for_termination_1): Use waitpid rather than sigsuspend,
5105 and record the child status change directly. This avoids the
5106 need to futz with the signal mask.
5107 (process_fatal_action): Move here from emacs.c.
5108 (emacs_sigaction_flags): New function, containing
5109 much of what used to be in emacs_sigaction_init.
5110 (emacs_sigaction_init): Use it. Block nonfatal system signals that are
5111 caught by emacs, to make races less likely.
5112 (deliver_process_signal): Rename from handle_on_main_thread.
5113 All uses changed.
5114 (BACKTRACE_LIMIT_MAX): Now at top level.
5115 (thread_backtrace_buffer, threadback_backtrace_pointers):
5116 New static vars.
5117 (deliver_thread_signal, deliver_fatal_thread_signal):
5118 New functions, for more-accurate delivery of thread-specific signals.
5119 (handle_fatal_signal, deliver_fatal_signal): Move here from emacs.c.
5120 (deliver_arith_signal): Handle in this thread, not
5121 in the main thread, since it's triggered by this thread.
5122 (maybe_fatal_sig): New function.
5123 (init_signals): New arg DUMPING so that we can be more accurate
5124 about whether we're dumping. Caller changed.
5125 Treat thread-specific signals differently from process-general signals.
5126 Block all signals while handling fatal error; that's safer.
5127 xsignal from SIGFPE only on non-IEEE hosts, treating it as fatal
5128 on IEEE hosts.
5129 When batch, ignore SIGHUP, SIGINT, SIGTERM if they were already ignored.
5130 Ignore SIGPIPE unless batch.
5131 (emacs_backtrace): Output backtrace for the appropriate thread,
5132 which is not necessarily the main thread.
5133 * syssignal.h: Include <stdbool.h>.
5134 (emacs_raise): New macro.
5135 * xterm.c (x_connection_signal): Remove; no longer needed
5136 now that we use sigaction.
5137 (x_connection_closed): No need to mess with sigmask now.
5138 (x_initialize): No need to reset SIGPIPE handler here, since
5139 init_signals does this for us now.
5140
5141 2012-09-23 Jan Djärv <jan.h.d@swipnet.se>
5142
5143 * nsterm.m (ns_dumpglyphs_image): dr is a new rect to draw image into,
5144 background rect may be larger (Bug#12245).
5145
5146 2012-09-23 Chong Yidong <cyd@gnu.org>
5147
5148 * keyboard.c (timer_check): Avoid quitting during Fcopy_sequence.
5149
5150 2012-09-22 Paul Eggert <eggert@cs.ucla.edu>
5151
5152 * .gdbinit: Just stop at fatal_error_backtrace.
5153 See Stefan Monnier's request in
5154 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00549.html>.
5155 Remove no-longer-used query of system type.
5156
5157 2012-09-22 Chong Yidong <cyd@gnu.org>
5158
5159 * search.c (Freplace_match): Doc fix (Bug#12325).
5160
5161 * minibuf.c (Finternal_complete_buffer): Doc fix (Bug#12391).
5162
5163 * editfns.c (Fline_beginning_position): Doc fix (Bug#12416).
5164 (Fline_end_position): Doc fix.
5165
5166 * cmds.c (Fforward_char, Fbackward_char): Doc fix (Bug#12414).
5167
5168 2012-09-22 Chong Yidong <cyd@gnu.org>
5169
5170 * dispextern.h (struct image_type): Add new slot, storing a type
5171 initialization function.
5172
5173 * image.c (define_image_type): Call the image initializer function
5174 if it is defined. Arguments and return value changed.
5175 (valid_image_p, make_image): Callers changed.
5176 (xbm_type, xpm_type, pbm_type, png_type, jpeg_type, tiff_type)
5177 (gif_type, imagemagick_type, svg_type, gs_type):
5178 Add initialization functions.
5179 (Finit_image_library): Call lookup_image_type.
5180 (CHECK_LIB_AVAILABLE): Macro deleted.
5181 (lookup_image_type): Call define_image_type here, rather than via
5182 Finit_image_library, and without using CHECK_LIB_AVAILABLE.
5183 (syms_of_image): Move define_image_type calls for xbm_type and
5184 pbm_type to lookup_image_type.
5185
5186 2012-09-22 Eli Zaretskii <eliz@gnu.org>
5187
5188 * keyboard.c (timer_check_2): Move calculation of 'timers' and
5189 'idle_timers' from here ...
5190 (timer_check): ... to here. Use Fcopy_sequence to copy the timer
5191 lists, to avoid infloops when the timer does something stupid,
5192 like reinvoke itself with the same or smaller time-out.
5193 (Bug#12447)
5194
5195 2012-09-22 Martin Rudalics <rudalics@gmx.at>
5196
5197 * window.c (Fsplit_window_internal): Handle only Qt value of
5198 Vwindow_combination_limit separately.
5199 (Qtemp_buffer_resize): New symbol.
5200 (Vwindow_combination_limit): New default value.
5201 Rewrite doc-string.
5202
5203 2012-09-22 Eli Zaretskii <eliz@gnu.org>
5204
5205 * xdisp.c (next_overlay_string): Initialize it->end_charpos for
5206 the new overlay string. (Bug#10159)
5207
5208 2012-09-22 Paul Eggert <eggert@cs.ucla.edu>
5209
5210 * emacs.c (shut_down_emacs): Don't assume stderr is buffered,
5211 or that fprintf is async-signal-safe. POSIX doesn't require
5212 either assumption.
5213
5214 2012-09-22 Chong Yidong <cyd@gnu.org>
5215
5216 * buffer.c (Fset_buffer_modified_p): Handle indirect buffers
5217 (Bug#8207).
5218
5219 2012-09-22 Kenichi Handa <handa@gnu.org>
5220
5221 * composite.c (composition_reseat_it): Handle the case that a
5222 grapheme cluster is not covered by a single font (Bug#12352).
5223
5224 2012-09-21 Chong Yidong <cyd@gnu.org>
5225
5226 * image.c (define_image_type): Avoid adding duplicate types to
5227 image_types (Bug#12463). Suggested by Jörg Walter.
5228
5229 2012-09-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5230
5231 * unexmacosx.c: Define LC_DATA_IN_CODE if not defined.
5232 (print_load_command_name): Add case LC_DATA_IN_CODE.
5233 (dump_it) [LC_DATA_IN_CODE]: Call copy_linkedit_data.
5234
5235 2012-09-21 Glenn Morris <rgm@gnu.org>
5236
5237 * eval.c (Frun_hook_with_args_until_success)
5238 (Frun_hook_with_args_until_failure): Doc fixes. (Bug#12393)
5239
5240 2012-09-21 Andreas Schwab <schwab@linux-m68k.org>
5241
5242 * fileio.c (Ffile_selinux_context): Only call freecon when
5243 lgetfilecon succeeded.
5244 (Fset_file_selinux_context): Likewise. (Bug#12444)
5245
5246 2012-09-21 Eli Zaretskii <eliz@gnu.org>
5247
5248 * xdisp.c (try_window_reusing_current_matrix): Under bidi
5249 reordering, locate the cursor by calling set_cursor_from_row; if
5250 that fails, clear the desired glyph matrix before returning a
5251 failure indication to the caller. Fixes leaving garbled display
5252 when fast scrolling with a down-key. (Bug#12403)
5253 (compute_stop_pos_backwards): Fix a typo that caused crashes while
5254 scrolling through multibyte text.
5255
5256 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
5257
5258 * alloc.c (mark_object) <PVEC_WINDOW>: Mark prev/next_buffers *after*
5259 calling mark_vectorlike since that's the one that marks the window.
5260 (mark_discard_killed_buffers): Mark the final cdr.
5261 * window.h (struct window): Move prev/next_buffers to the
5262 non-standard fields.
5263 * window.c (make_window): Initialize prev/next_buffers manually.
5264
5265 2012-09-20 Paul Eggert <eggert@cs.ucla.edu>
5266
5267 Omit unused arg EXPECTED from socket hooks.
5268 * keyboard.c (gobble_input, read_avail_input, tty_read_avail_input):
5269 * nsterm.m (ns_term_init):
5270 * termhooks.h (struct terminal.read_socket_hook):
5271 * w32inevt.c (w32_console_read_socket):
5272 * w32term.c (w32_read_socket):
5273 * xterm.c (XTread_socket):
5274 Omit unused arg EXPECTED. All callers changed.
5275 (store_user_signal_events): Return void, not int, since callers no
5276 longer care about the return value. All uses changed.
5277
5278 2012-09-20 Juanma Barranquero <lekktu@gmail.com>
5279
5280 * w32gui.h (XParseGeometry): Do not declare.
5281
5282 2012-09-19 Paul Eggert <eggert@cs.ucla.edu>
5283
5284 * w32inevt.c (w32_console_read_socket): Return -1 on failure, not 0.
5285 Ignore 'expected'. See Eli Zaretskii in
5286 <http://bugs.gnu.org/12471#8> (last line).
5287
5288 * frame.c (read_integer): Remove. All uses replaced by strtol/strtoul.
5289 (XParseGeometry): Now static. Substitute extremal values for
5290 values that are out of range.
5291
5292 2012-09-19 Jan Djärv <jan.h.d@swipnet.se>
5293
5294 * w32xfns.c (read_integer, XParseGeometry): Move to frame.c.
5295
5296 * nsfns.m (XParseGeometry): Remove.
5297 (Fx_create_frame): Call x_set_offset to correctly interpret
5298 top_pos in geometry.
5299
5300 * frame.c (read_integer, XParseGeometry): Move from w32xfns.c.
5301 (Fx_parse_geometry): If there is a space in string, call
5302 Qns_parse_geometry, otherwise do as on other terms (Bug#12368).
5303
5304 2012-09-17 Eli Zaretskii <eliz@gnu.org>
5305
5306 * search.c (scan_buffer): Use character positions in calls to
5307 region_cache_forward and region_cache_backward, not byte
5308 positions. (Bug#12196)
5309
5310 * w32term.c (w32_read_socket): Set pending_signals to 1, like
5311 xterm.c does. Reported by Daniel Colascione <dancol@dancol.org>.
5312
5313 * ralloc.c (r_alloc_init) [!SYSTEM_MALLOC]: Initialize
5314 __malloc_extra_blocks to 32 instead of 64, like alloc.c did in
5315 emacs_blocked_malloc, now deleted.
5316
5317 2012-09-17 Paul Eggert <eggert@cs.ucla.edu>
5318
5319 Remove no-longer-needed Solaris 2.4 vfork bug workaround.
5320 The workaround was for improving performance on Solaris 2.4, but
5321 is getting in the way now. Emacs will still work if someone is
5322 still running Solaris 2.4 in a museum somewhere; Sun dropped
5323 support for Solaris 2.4 in 2003.
5324 * callproc.c (Fcall_process) [HAVE_WORKING_VFORK]:
5325 * process.c (create_process) [HAVE_WORKING_VFORK]:
5326 Omit now-unnecessary workaround for the Solaris 2.4 vfork bug,
5327 since Emacs no longer uses vfork on that platform.
5328
5329 2012-09-17 Glenn Morris <rgm@gnu.org>
5330
5331 * emacs.c: Use COPYRIGHT.
5332
5333 2012-09-16 Paul Eggert <eggert@cs.ucla.edu>
5334
5335 Remove configure's --without-sync-input option (Bug#12450).
5336 When auditing signal-handling in preparation for cleaning it up,
5337 I found that SYNC_INPUT has race conditions and would be a real
5338 pain to fix. Since it's an undocumented and deprecated
5339 configure-time option, now seems like a good time to remove it.
5340 Also see <http://bugs.gnu.org/11080#16>.
5341 * alloc.c (_bytes_used, __malloc_extra_blocks, _malloc_internal)
5342 (_free_internal) [!DOUG_LEA_MALLOC]: Remove decls.
5343 (alloc_mutex) [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
5344 (malloc_hysteresis):
5345 (check_depth) [XMALLOC_OVERRUN_CHECK]:
5346 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT):
5347 (__malloc_hook, __realloc_hook, __free_hook, BYTES_USED)
5348 (dont_register_blocks, bytes_used_when_reconsidered)
5349 (bytes_used_when_full, emacs_blocked_free, emacs_blocked_malloc)
5350 (emacs_blocked_realloc, reset_malloc_hooks, uninterrupt_malloc):
5351 [!SYSTEM_MALLOC && !SYNC_INPUT]:
5352 Remove. All uses removed.
5353 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): Use a different
5354 implementation, one that depends on whether the new macro
5355 XMALLOC_BLOCK_INPUT_CHECK is defined, not on whether SYNC_INPUT
5356 is defined.
5357 * atimer.c (run_timers, handle_alarm_signal):
5358 * keyboard.c (pending_signal, poll_for_input_1, poll_for_input)
5359 (handle_async_input, process_pending_signals)
5360 (handle_input_available_signal, init_keyboard):
5361 * nsterm.m (ns_read_socket):
5362 * process.c (wait_reading_process_output):
5363 * regex.c (immediate_quit, IMMEDIATE_QUIT_CHECK):
5364 * sysdep.c (emacs_sigaction_init) [SA_RESTART]:
5365 (emacs_write):
5366 * xterm.c (XTread_socket):
5367 Assume SYNC_INPUT.
5368 * conf_post.h (SA_RESTART) [IRIX6_5]: Do not #undef.
5369 * eval.c (handling_signal): Remove. All uses removed.
5370 * lisp.h (ELSE_PENDING_SIGNALS): Remove.
5371 All uses replaced with the SYNC_INPUT version.
5372 (reset_malloc_hooks, uninterrupt_malloc, handling_signal):
5373 Remove decls.
5374 * sysdep.c, syssignal.h (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
5375 Now static.
5376
5377 * font.c (Ffont_shape_gstring): Remove unused local.
5378
5379 2012-09-16 Glenn Morris <rgm@gnu.org>
5380
5381 * Makefile.in (clean): No longer run nextstep's clean.
5382
5383 * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Remove variables.
5384 (ns_frag): Remove.
5385 (ns-app): Move here from ns.mk, and simplify.
5386 (clean): Simplify nextstep entry.
5387 * ns.mk: Remove file.
5388
5389 2012-09-17 Kenichi Handa <handa@gnu.org>
5390
5391 * font.c (Ffont_shape_gstring): Fix previous change; GLYPHs may
5392 not covert the last few charactes.
5393
5394 2012-09-16 Kenichi Handa <handa@gnu.org>
5395
5396 * font.c (Ffont_shape_gstring): Don't adjust grapheme cluster
5397 here, but just check the validity of glyphs in the glyph-string.
5398
5399 2012-09-16 Martin Rudalics <rudalics@gmx.at>
5400
5401 * window.c (Fwindow_parameter, Fset_window_parameter):
5402 Accept any window as argument (Bug#12452).
5403
5404 2012-09-16 Jan Djärv <jan.h.d@swipnet.se>
5405
5406 * nsfns.m (Fx_open_connection): Move initialization of ns_*_types
5407 to ns_term_init to avoid memory leak.
5408
5409 * nsterm.m (ns_update_begin): Initialize bp after lcokFocus, use
5410 explicit retain/release.
5411 (ns_term_init): Only allow one display. Initialize outerpool and
5412 ns_*_types.
5413
5414 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
5415
5416 Port _setjmp fix to POSIXish hosts as well as Microsoft.
5417 * image.c (_setjmp) [!HAVE__SETJMP]: Restore definition, as
5418 it's needed on POSIXish hosts that lack _setjmp. Attempt to solve
5419 the Microsoft problem in a different way, by altering ../nt/config.nt.
5420
5421 2012-09-15 Eli Zaretskii <eliz@gnu.org>
5422
5423 * w32xfns.c:
5424 * w32uniscribe.c:
5425 * w32term.c:
5426 * w32select.c:
5427 * w32reg.c:
5428 * w32proc.c:
5429 * w32menu.c:
5430 * w32inevt.c:
5431 * w32heap.c:
5432 * w32font.c:
5433 * w32fns.c:
5434 * w32console.c:
5435 * w32.c:
5436 * w16select.c: Remove inclusion of setjmp.h, as it is now included
5437 by lisp.h. This completes removal of setjmp.h inclusion
5438 erroneously announced in the previous commit. (Bug#12446)
5439
5440 * lisp.h [!HAVE__SETJMP, !HAVE_SIGSETJMP]: Make the commentary
5441 more accurate.
5442
5443 * image.c (_setjmp) [!HAVE__SETJMP]: Define only if 'setjmp' is
5444 not defined as a macro. The latter happens on MS-Windows.
5445 (Bug#12446)
5446
5447 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
5448
5449 Port better to POSIX hosts lacking _setjmp (Bug#12446).
5450 * lisp.h: Include <setjmp.h> here, since we use its symbols here.
5451 Some instances of '#include <setjmp.h>' removed, if the
5452 only reason for the instance was because "lisp.h" was included.
5453 (sys_jmp_buf, sys_setjmp, sys_longjmp): New symbols.
5454 Unless otherwise specified, replace all uses of jmp_buf, _setjmp,
5455 and _longjmp with the new symbols. Emacs already uses _setjmp if
5456 available, so this change affects only POSIXish hosts that have
5457 sigsetjmp but not _setjmp, such as some versions of Solaris and
5458 Unixware. (Also, POSIX-2008 marks _setjmp as obsolescent.)
5459 * image.c (_setjmp, _longjmp) [HAVE_PNG && !HAVE__SETJMP]: New macros.
5460 (png_load_body) [HAVE_PNG]:
5461 (PNG_LONGJMP) [HAVE_PNG && PNG_LIBPNG_VER < 10500]:
5462 (PNG_JMPBUF) [HAVE_PNG && PNG_LIBPNG_VER >= 10500]:
5463 Use _setjmp and _longjmp rather than sys_setjmp and sys_longjmp,
5464 since PNG requires jmp_buf. This is the only exception to the
5465 general rule that we now use sys_setjmp and sys_longjmp.
5466 This exception is OK since this code does not change the signal
5467 mask or longjmp out of a signal handler.
5468
5469 2012-09-14 Paul Eggert <eggert@cs.ucla.edu>
5470
5471 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
5472 Include "syssignal.h", for 'main_thread'.
5473
5474 2012-09-14 Dmitry Antipov <dmantipov@yandex.ru>
5475
5476 Avoid out-of-range marker position (Bug#12426).
5477 * insdel.c (replace_range, replace_range_2):
5478 Adjust markers before overlays, as suggested by comments.
5479 (insert_1_both, insert_from_buffer_1, adjust_after_replace):
5480 Remove redundant check before calling offset_intervals.
5481
5482 2012-09-14 Martin Rudalics <rudalics@gmx.at>
5483
5484 * xdisp.c (Fformat_mode_line): Unconditionally save/restore
5485 current buffer (Bug#12387).
5486
5487 2012-09-14 Juanma Barranquero <lekktu@gmail.com>
5488
5489 * makefile.w32-in ($(BLD)/alloc.$(O)): Update dependencies.
5490
5491 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
5492
5493 Use a more backwards-compatible timer format (Bug#12430).
5494 * keyboard.c (decode_timer): Get PSECS from the 8th (origin-0)
5495 vector element, not from the 4th, since PSECS is now at the end.
5496 (Fcurrent_idle_time): Doc fix.
5497
5498 2012-09-13 Dmitry Antipov <dmantipov@yandex.ru>
5499
5500 Function to mark objects and remove killed buffers at once.
5501 * alloc.c (discard_killed_buffers): Rename to ...
5502 (mark_discard_killed buffers) ... new name. Add marking
5503 of remaining objects. Fix comment. Adjust users.
5504 (mark_object): Do not touch frame buffer lists here.
5505 * frame.c (delete_frame): Reset frame buffer lists here.
5506
5507 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
5508
5509 Better workaround for GNOME bug when --enable-gcc-warnings.
5510 * emacsgtkfixed.c (G_STATIC_ASSERT): Remove, undoing last change.
5511 Instead, disable -Wunused-local-typedefs. See Dmitry Antipov in
5512 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00335.html>.
5513
5514 Simplify SIGIO usage (Bug#12408).
5515 The code that dealt with SIGIO was crufty and confusing, e.g., it
5516 played tricks like "#undef SIGIO" but these tricks were not used
5517 consistently. Simplify mostly by not #undeffing standard symbols,
5518 e.g., use "defined USABLE_SIGIO" (our symbol, which we can define
5519 or not as we please) rather than "defined SIGIO" (standard symbol
5520 that we probably shouldn't #undef).
5521 * conf_post.h [USG5_4]: Do not include <sys/wait.h> here.
5522 Modules that need it can include it.
5523 [USG5_4 && emacs]: Likewise, do not include the streams stuff here.
5524 * dispextern.h (ignore_sigio): New decl.
5525 * emacs.c (shut_down_emacs): Invoke unrequest_sigio
5526 unconditionally, since it's now a no-op if !USABLE_SIGIO.
5527 * emacs.c (shut_down_emacs):
5528 * keyboard.c (kbd_buffer_store_event_hold):
5529 Use ignore_sigio rather than invoking 'signal' directly.
5530 * keyboard.c (USABLE_FIONREAD && USG5_4): Include <sys/filio.h>,
5531 for FIONREAD.
5532 (FIONREAD, SIGIO): Do not #undef.
5533 (tty_read_avail_input): Use #error rather than a syntax error.
5534 * process.c [USG5_4]: Include <sys/stream.h> and <sys/stropts.h>,
5535 for I_PIPE, used by SETUP_SLAVE_PTY.
5536 (DATAGRAM_SOCKETS): Simplify defn, based on USABLE_FIONREAD.
5537 * sysdep.c (croak): Remove; no longer needed. This bit of
5538 temporary code, with Fred N. Fish's comment that it's temporary,
5539 has been in Emacs since at least 1992!
5540 (init_sigio, reset_sigio, request_sigio, unrequest_sigio):
5541 Arrange for them to be no-ops in all cases when ! USABLE_SIGIO.
5542 * syssignal.h (croak): Remove decl.
5543 (SIGIO, SIGPOO, SIGAIO, SIGPTY): Do not #undef; that's too fragile.
5544 * systty.h [!NO_TERMIO]: Do not include <termio.h>; no longer needed
5545 now that we're termios-only.
5546 (FIONREAD, ASYNC) [BROKEN_FIONREAD]: Do not #undef.
5547 * term.c (dissociate_if_controlling_tty): Use #error rather than
5548 a run-time error.
5549
5550 Work around GCC and GNOME bugs when --enable-gcc-warnings.
5551 * emacsgtkfixed.c (G_STATIC_ASSERT): Redefine to use 'verify',
5552 to work around GNOME bug 683906.
5553 * image.c (jpeg_load_body) [HAVE_JPEG && lint]: Pacify gcc -Wclobber.
5554 (struct my_jpeg_error_mgr) [HAVE_JPEG && lint]: New member fp.
5555 This works around GCC bug 54561.
5556
5557 2012-09-12 Paul Eggert <eggert@cs.ucla.edu>
5558
5559 More fixes for 'volatile' and setjmp/longjmp.
5560 * eval.c (Fdefvar, Fcondition_case): Remove unnecessary 'volatile's.
5561 * image.c (struct png_load_context) [HAVE_PNG]: New type.
5562 (png_load_body) [HAVE_PNG]:
5563 (jpeg_load_body) [HAVE_JPEG]:
5564 New function, with most of the old parent function's body.
5565 (png_load) [HAVE_PNG]:
5566 (jpeg_load) [HAVE_JPEG]:
5567 Invoke the new function, to avoid longjmp munging our locals.
5568 (struct my_jpeg_error_mgr) [HAVE_JPEG]: New members cinfo, failure_code.
5569 (my_error_exit) [HAVE_JPEG]: Don't trust 'setjmp' to return 2 when
5570 longjmp is passed 2, as the C standard doesn't guarantee this.
5571 Instead, store the failure code into mgr->failure_code.
5572
5573 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
5574
5575 * keyboard.c (read_char, requeued_events_pending_p, Finput_pending_p)
5576 (Fdiscard_input, quit_throw_to_read_char, init_keyboard)
5577 (syms_of_keyboard): Remove support for unread-command-char.
5578
5579 2012-09-12 Eli Zaretskii <eliz@gnu.org>
5580
5581 * w32proc.c (sys_kill): If PID is our process ID and the signal is
5582 SIGABRT, call emacs_abort. Avoids silently exiting upon assertion
5583 violation. (Bug#12426)
5584
5585 2012-09-12 Paul Eggert <eggert@cs.ucla.edu>
5586
5587 * image.c (jpeg_memory_src): Don't assume string len fits in unsigned.
5588
5589 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
5590
5591 * eval.c: Add `inhibit-debugger'.
5592 (Qinhibit_debugger): New symbol.
5593 (call_debugger): Bind it instead of Qdebug_on_error.
5594 (maybe_call_debugger): Test Vinhibit_debugger.
5595 (syms_of_eval): Define inhibit-debugger.
5596 * xdisp.c (set_message): Don't bind Qinhibit_debug_on_message.
5597 (syms_of_xdisp): Remove inhibit-debug-on-message.
5598
5599 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
5600
5601 Avoid _setjmp/_longjmp problems with local nonvolatile variables.
5602 If a nonvolatile local variable is written before a _longjmp to
5603 the frame containing the variable, and is read after the _longjmp,
5604 the value read is indeterminate. Some local variables of type
5605 'struct handler' and 'struct catchtag' are used in this way, so
5606 mark each of their slots as volatile if the slot can be set before
5607 _longjmp and read afterwards.
5608 * lisp.h (struct handler): var and chosen_clause are now volatile.
5609 (struct catchtag): val, next, and pdlcount are now volatile.
5610
5611 * bidi.c (bidi_push_it, bidi_pop_it):
5612 * fns.c (copy_hash_table):
5613 * image.c (define_image_type):
5614 * keyboard.c (kbd_buffer_store_event_hold):
5615 * process.c (Fprocess_send_eof):
5616 * xfaces.c (x_create_gc) [HAVE_NS]:
5617 * xgselect.c (xg_select):
5618 Prefer assignment to memcpy when either will do.
5619
5620 * alloc.c (discard_killed_buffers): Tune and simplify a bit.
5621 Use pointer-to-a-pointer to simplify and avoid a NILP check each
5622 time an item is removed. No need to mark this function 'inline';
5623 the compiler knows better than we do.
5624
5625 2012-09-11 Jan Djärv <jan.h.d@swipnet.se>
5626
5627 * nsterm.m (ns_judge_scroll_bars): Pass NO to updateFrameSize.
5628 (updateFrameSize:): Add delay parameter to updateFrameSize, send it
5629 to change_frame_size (Bug#12388).
5630 (windowDidResize:): Pass YES to updateFrameSize.
5631
5632 * nsterm.h: Add delay parameter to updateFrameSize.
5633
5634 2012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
5635
5636 Discard killed buffers from deleted window and frame objects.
5637 This reduces an amount of references to killed buffers and
5638 helps GC to reclaim them faster.
5639 * alloc.c (discard_killed_buffers): New function.
5640 (mark_object): Use it for deleted windows and frames.
5641 (mark_object): If symbol's value is set up for a killed buffer
5642 or deleted frame, restore its global binding.
5643 * data.c (swap_in_global_binding): Add GC notice.
5644 (swap_in_symval_forwarding): Use convenient set_blv_where.
5645 * window.c (wset_next_buffers, wset_prev_buffers): Move ...
5646 * window.h: ... to here.
5647
5648 2012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
5649
5650 Convenient macro to check whether the buffer is live.
5651 * buffer.h (BUFFER_LIVE_P): New macro.
5652 * alloc.c, buffer.c, editfns.c, insdel.c, lread.c, marker.c:
5653 * minibuf.c, print.c, process.c, window.c, xdisp.c: Use it.
5654
5655 2012-09-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5656
5657 * xdisp.c (right_overwritten, right_overwriting): Also handle gstring
5658 composition cases (Bug#12364).
5659
5660 * xterm.c (x_draw_glyph_string): Avoid overwriting inverted left
5661 overhang of succeeding glyphs overlapping box cursor.
5662
5663 * w32term.c (x_draw_glyph_string): Likewise.
5664
5665 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
5666
5667 Simplify, document, and port floating-point (Bug#12381).
5668 The porting part of this patch fixes bugs on non-IEEE platforms
5669 with frexp, ldexp, logb.
5670 * data.c, lisp.h (Qdomain_error, Qsingularity_error, Qunderflow_error):
5671 Now static.
5672 * floatfns.c: Simplify discussion of functions that Emacs doesn't
5673 support, by removing commented-out code and briefly listing the
5674 C89 functions excluded. The commented-out stuff was confusing
5675 maintenance, e.g., we thought we needed cbrt but it was commented out.
5676 (logb): Remove decl; no longer needed.
5677 (isfinite): New macro, if not already supplied.
5678 (isnan): Don't replace any existing macro.
5679 (Ffrexp, Fldexp): Define even if !HAVE_COPYSIGN, as frexp and ldexp
5680 are present on all C89 platforms.
5681 (Ffrexp): Do not special-case zero, as frexp does the right thing
5682 for that case.
5683 (Flogb): Do not use logb, as it doesn't have the desired meaning
5684 on hosts that use non-base-2 floating point. Instead, stick with
5685 frexp, which is C89 anyway. Do not pass an infinity or a NaN to
5686 frexp, to avoid getting an unspecified result.
5687
5688 * xdisp.c (Qinhibit_debug_on_message): Now static.
5689
5690 2012-09-10 Jan Djärv <jan.h.d@swipnet.se>
5691
5692 * nsterm.m (ns_update_begin): Set clip path to whole view by using
5693 NSBezierPath (Bug#12131).
5694
5695 2012-09-10 Chong Yidong <cyd@gnu.org>
5696
5697 * fns.c (Fdelq, Fdelete): Doc fix.
5698
5699 2012-09-10 Paul Eggert <eggert@cs.ucla.edu>
5700
5701 * lisp.h (XSETINT, XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL)
5702 (XSETFLOAT, XSETMISC): Parenthesize macro bodies.
5703
5704 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
5705
5706 * lisp.h (make_lisp_ptr): New macro to replace XSET.
5707 (XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL, XSETFLOAT, XSETMISC):
5708 Use it.
5709
5710 2012-09-09 Eli Zaretskii <eliz@gnu.org>
5711
5712 * fringe.c (draw_fringe_bitmap_1): Don't reduce the width of the
5713 left fringe if the window has a left margin. This avoids leaving
5714 traces of the cursor because its leftmost pixel is not drawn over.
5715
5716 * dispnew.c (update_window_line): When the left margin area of a
5717 screen line is updated, set the redraw_fringe_bitmaps_p flag of
5718 that screen line. (Bug#12277)
5719
5720 2012-09-09 Paul Eggert <eggert@cs.ucla.edu>
5721
5722 Assume C89 or later for math functions (Bug#12381).
5723 This simplifies the code, and makes it a bit smaller and faster,
5724 and (most important) makes it easier to clean up signal handling
5725 since we can stop worring about floating-point exceptions in
5726 library code. That was a problem before C89, but the problem
5727 went away many years ago on all practical Emacs targets.
5728 * data.c, image.c, lread.c, print.c:
5729 Don't include <math.h>; no longer needed.
5730 * data.c, floatfns.c (IEEE_FLOATING_POINT): Don't worry that it
5731 might be autoconfigured, as that never happens.
5732 * data.c (fmod):
5733 * doprnt.c (DBL_MAX_10_EXP):
5734 * print.c (DBL_DIG):
5735 Remove. C89 or later always defines these.
5736 * floatfns.c (HAVE_MATHERR, FLOAT_CHECK_ERRNO, FLOAT_CHECK_DOMAIN)
5737 (in_float, float_error_arg, float_error_arg2, float_error_fn_name)
5738 (arith_error, domain_error, domain_error2):
5739 Remove all this pre-C89 cruft. Do not include <errno.h> as that's
5740 no longer needed -- we simply return what C returns. All uses removed.
5741 (IN_FLOAT, IN_FLOAT2): Remove. All uses replaced with
5742 the wrapped code.
5743 (FLOAT_TO_INT, FLOAT_TO_INT2, range_error, range_error2):
5744 Remove. All uses expanded, as these macros are no longer used
5745 more than once and are now more trouble than they're worth.
5746 (Ftan): Use tan, not sin / cos.
5747 (Flogb): Assume C89 frexp.
5748 (fmod_float): Assume C89 fmod.
5749 (matherr) [HAVE_MATHERR]: Remove; no longer needed.
5750 (init_floatfns): Remove. All uses removed.
5751
5752 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
5753
5754 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Take back
5755 compositeToPoint for OSX < 10.6 (Bug#12390).
5756
5757 2012-09-08 Paul Eggert <eggert@cs.ucla.edu>
5758
5759 * floatfns.c (Ftan): Use tan (x), not (sin (x) / cos (x)).
5760 This produces more-accurate results.
5761
5762 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
5763
5764 * nsterm.m (updateFrameSize): Call setFrame: on the view when size
5765 changes (Bug#12088).
5766
5767 2012-09-08 Chong Yidong <cyd@gnu.org>
5768
5769 * syntax.c (Fstring_to_syntax): Doc fix.
5770
5771 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
5772
5773 * nsterm.m (ns_clip_to_row): Remove code that deals with drawing fringe
5774 in the internal border.
5775 (x_set_window_size): Remove static variables and their usage.
5776 (ns_redraw_scroll_bars): Fix NSTRACE arg.
5777 (ns_after_update_window_line, ns_draw_fringe_bitmap):
5778 Remove fringe/internal border adjustment (Bug#11052).
5779 (ns_draw_fringe_bitmap): Make code more like other terms (xterm.c).
5780 (ns_draw_window_cursor): Remove fringe/internal border adjustment.
5781 (ns_fix_rect_ibw): Remove.
5782 (ns_get_glyph_string_clip_rect): Remove call to ns_fix_rect_ibw.
5783 (ns_dumpglyphs_box_or_relief): Ditto.
5784 (ns_maybe_dumpglyphs_background): Remove fringe/internal border
5785 adjustment.
5786 (ns_dumpglyphs_image): Ditto.
5787 (ns_dumpglyphs_stretch): Fix coding style. Remove fringe/internal
5788 border adjustment.
5789 (ns_set_vertical_scroll_bar): Remove variables barOnVeryLeft/Right and
5790 their usage. Add fringe_extended_p and its use as in other terms.
5791 (ns_judge_scroll_bars): Code style fix. Call updateFrameSize if
5792 scroll bar was removed.
5793 (updateFrameSize): New function.
5794 (windowDidResize): Move code to updateFrameSize and call it.
5795
5796 * nsterm.h (EmacsView): Add updateFrameSize.
5797
5798 2012-09-07 Chong Yidong <cyd@gnu.org>
5799
5800 * textprop.c (Fget_text_property): Minor doc fix (Bug#12323).
5801
5802 * data.c (Flocal_variable_if_set_p): Doc fix (Bug#10713).
5803
5804 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
5805
5806 More signal-handler cleanup (Bug#12327).
5807 * emacs.c (main): Convert three 'signal' calls to 'sigaction' calls.
5808 Problem introduced when merging patches. Noted by Eli Zaretskii in
5809 <http://bugs.gnu.org/12327#67>.
5810 * floatfns.c: Comment fix.
5811 * lisp.h (force_auto_save_soon): Declare regardless of SIGDANGER.
5812 SIGDANGER might not be in scope so "#ifdef SIGDANGER" is not right,
5813 and anyway the declaration is harmless even if SIGDANGER is not defined.
5814 * syssignal.h (SIGIO): Also #undef if (! defined FIONREAD ||
5815 defined BROKEN_FIONREAD). systty.h formerly did this, but other
5816 source files not surprisingly expected syssignal.h to define, or
5817 not define, SIGIO, and it's cleaner to do it that way, for consistency.
5818 Include <sys/ioctl.h>, for FIONREAD.
5819 * systty.h (SIGIO): Do not #undef here; it's now syssignal.h's job.
5820 This eliminates a problem whereby other files mysteriously had
5821 to include "syssignal.h" before including "systty.h" if they
5822 wanted to use "#ifdef SIGIO".
5823
5824 2012-09-07 Eli Zaretskii <eliz@gnu.org>
5825
5826 * w32proc.c (sigaction): New function, emulates Posix 'sigaction'.
5827
5828 * w32.c (sigemptyset): Empty the set.
5829 (sigsetmask, sigmask, sigblock, sigunblock): Remove unused functions.
5830
5831 * alloc.c [ENABLE_CHECKING]: Include signal.h, since we need SIGABRT.
5832
5833 2012-09-07 Dmitry Antipov <dmantipov@yandex.ru>
5834
5835 * alloc.c (mark_buffer): Revert unsafe marking optimization.
5836 (mark_object): Likewise for frame objects.
5837
5838 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
5839
5840 * syssignal.h (handle_on_main_thread): Always declare,
5841 even if FORWARD_SIGNAL_TO_MAIN_THREAD is not defined.
5842 This ports to platforms without HAVE_PTHREAD.
5843
5844 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
5845
5846 Signal-handler cleanup (Bug#12327).
5847 Emacs's signal handlers were written in the old 4.2BSD style with
5848 sigblock and sigmask and so forth, and this led to some
5849 inefficiencies and confusion. Rewrite these to use
5850 pthread_sigmask etc. without copying signal sets around. Also,
5851 get rid of the confusing macros 'SIGNAL_THREAD_CHECK' and
5852 'signal', and instead use functions that do not attempt to take
5853 over the system name space. This patch causes Emacs's text
5854 segment to shrink by 0.7% on my platform, Fedora 17 x86-64.
5855 * alloc.c, emacsgtkfixed.c, nsfns.m, widget.c, xmenu.c:
5856 Do not include <signal.h> or "syssignal.h", as these
5857 modules do not use signals.
5858 * atimer.c, callproc.c, data.c, dispnew.c, emacs.c, floatfns.c:
5859 * gtkutil.c, keyboard.c, process.c, sound.c, sysdep.c, term.c, xterm.c:
5860 Do not include <signal.h>, as "syssignal.h" does that for us now.
5861 * atimer.c (sigmask_atimers): New function.
5862 (block_atimers, unblock_atimers): New functions,
5863 replacing the old macros BLOCK_ATIMERS and UNBLOCK_ATIMERS.
5864 All uses replaced.
5865 * conf_post.h [SIGNAL_H_AHB]: Do not include <signal.h>;
5866 no longer needed here.
5867 * emacs.c (main): Inspect existing signal handler with sigaction,
5868 so that there's no need to block and unblock SIGHUP.
5869 * sysdep.c (struct save_signal): New member 'action', replacing
5870 old member 'handler'.
5871 (save_signal_handlers, restore_signal_handlers):
5872 Use sigaction instead of 'signal' to save and restore.
5873 (get_set_sighandler, set_sighandler) [!WINDOWSNT]:
5874 New function. All users of 'signal' modified to use set_sighandler
5875 if they're writeonly, and to use sys_signal if they're read+write.
5876 (emacs_sigaction_init, forwarded_signal): New functions.
5877 (sys_signal): Remove. All uses replaced by calls to sigaction
5878 and emacs_sigaction_init, or by direct calls to 'signal'.
5879 (sys_sigmask) [!__GNUC__]: Remove; no longer needed.
5880 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove;
5881 all uses replaced by pthread_sigmask etc. calls.
5882 * syssignal.h: Include <signal.h>.
5883 (emacs_sigaction_init, forwarded_signal): New decls.
5884 (SIGMASKTYPE): Remove. All uses replaced by its definiens, sigset_t.
5885 (SIGEMPTYMASK): Remove; all uses replaced by its definiens, empty_mask.
5886 (sigmask, sys_sigmask): Remove; no longer needed.
5887 (sigpause): Remove. All uses replaced by its definiens, sigsuspend.
5888 (sigblock, sigunblock, sigfree):
5889 (sigsetmask) [!defined sigsetmask]:
5890 Remove. All uses replaced by pthread_sigmask.
5891 (signal): Remove. Its remaining uses (with SIG_DFL and SIG_IGN)
5892 no longer need to be replaced, and its typical old uses
5893 are now done via emacs_sigaction_init and sigaction.
5894 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove decls.
5895 (sys_sigdel): Remove; unused.
5896 (NSIG): Remove a FIXME; the code's fine. Remove an unnecessary ifdef.
5897
5898 2012-09-06 Eli Zaretskii <eliz@gnu.org>
5899
5900 * process.c (CAN_HANDLE_MULTIPLE_CHILDREN): Fix a typo that broke
5901 SIGCHLD handling on systems that don't have WNOHANG. (Bug#12327)
5902
5903 2012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
5904
5905 Explicitly mark buffer_defaults and buffer_local_symbols.
5906 * alloc.c (Fgarbage_collect): Mark buffer_defaults and
5907 mark_local_symbols here.
5908 (mark_object): If GC_CHECK_MARKED_OBJECTS, simplify checking
5909 since special buffers aren't marked here any more.
5910 (allocate_buffer): Chain new buffer with all_buffers here...
5911 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): ...and
5912 not here.
5913 (Vbuffer_defaults, Vbuffer_local_symbols): Remove.
5914 (syms_of_buffer): Remove staticpro of the above.
5915 (init_buffer_once): Set names for buffer_defaults and
5916 buffer_local_symbols.
5917
5918 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
5919
5920 Use bool for booleans in font-related modules.
5921 * font.c (font_intern_prop, font_style_to_value)
5922 (font_style_symbolic, font_parse_xlfd, font_parse_fcname)
5923 (generate_otf_features, font_check_otf_features, font_check_otf)
5924 (font_match_p, font_list_entities, font_at):
5925 * fontset.c (fontset_id_valid_p, reorder_font_vector
5926 (fontset_find_font, Fset_fontset_font)
5927 (face_suitable_for_char_p) [0]:
5928 * ftfont.c (fc_initialized, ftfont_get_open_type_spec)
5929 (ftfont_open, ftfont_text_extents, ftfont_check_otf):
5930 (m17n_flt_initialized, ftfont_shape_by_flt):
5931 * ftxfont.c (ftxfont_draw_bitmap, ftxfont_draw):
5932 * nsfont.m (nsfont_draw):
5933 * w32font.c (w32font_draw):
5934 * w32term.c (x_draw_glyphless_glyph_string_foreground):
5935 Use bool for booleans.
5936 * font.h: Adjust to above API changes.
5937 (struct font, struct font_driver, struct font_driver_list):
5938 Use bool for booleans.
5939 (struct font): Remove useless member encoding_type.
5940 All users removed.
5941 * fontset.c, xftfont.c: Omit unnecessary static decls.
5942
5943 2012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
5944
5945 * alloc.c (mark_object): Revert window marking code
5946 since it's unsafe for the Fset_window_configuration.
5947
5948 2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
5949
5950 Fix race conditions with signal handlers and errno (Bug#12327).
5951 Be more systematic about preserving errno whenever a signal
5952 handler returns, even if it's not in the main thread. Do this by
5953 renaming signal handlers to distinguish between signal delivery
5954 and signal handling. All uses changed.
5955 * atimer.c (deliver_alarm_signal): Rename from alarm_signal_handler.
5956 * data.c (deliver_arith_signal): Rename from arith_error.
5957 * dispnew.c (deliver_window_change_signal): Rename from
5958 window_change_signal.
5959 * emacs.c (deliver_error_signal): Rename from fatal_error_signal.
5960 (deliver_danger_signal) [SIGDANGER]: Rename from memory_warning_signal.
5961 * keyboard.c (deliver_input_available_signal): Rename from
5962 input_available_signal.
5963 (deliver_user_signal): Rename from handle_user_signal.
5964 (deliver_interrupt_signal): Rename from interrupt_signal.
5965 * process.c (deliver_pipe_signal): Rename from send_process_trap.
5966 (deliver_child_signal): Rename from sigchld_handler.
5967 * atimer.c (handle_alarm_signal):
5968 * data.c (handle_arith_signal):
5969 * dispnew.c (handle_window_change_signal):
5970 * emacs.c (handle_fatal_signal, handle_danger_signal):
5971 * keyboard.c (handle_input_available_signal):
5972 * keyboard.c (handle_user_signal, handle_interrupt_signal):
5973 * process.c (handle_pipe_signal, handle_child_signal):
5974 New functions, with the actual signal-handling code taken from the
5975 original respective signal handlers, sans the sporadic attempts to
5976 preserve errno, since that's now done by handle_on_main_thread.
5977 * atimer.c (alarm_signal_handler): Remove unnecessary decl.
5978 * emacs.c, floatfns.c, lisp.h: Remove unused FLOAT_CATCH_SIGKILL cruft.
5979 * emacs.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
5980 Move to sysdep.c.
5981 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
5982 Move initialization of main_thread to sysdep.c's init_signals.
5983 * process.c (waitpid) [!WNOHANG]: #define to wait; that's good enough for
5984 our usage, and simplifies the mainline code.
5985 (record_child_status_change): New static function, as a helper
5986 for handle_child_signal, and with most of the old child handler's
5987 contents.
5988 (CAN_HANDLE_MULTIPLE_CHILDREN): New constant.
5989 (handle_child_signal): Use the above.
5990 * sysdep.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
5991 Moved here from emacs.c.
5992 (init_signals) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it;
5993 code moved here from emacs.c's main function.
5994 * sysdep.c, syssignal.h (handle_on_main_thread): New function,
5995 replacing the old SIGNAL_THREAD_CHECK. All uses changed.
5996 This lets callers save and restore errno properly.
5997
5998 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
5999
6000 Remove redundant or unused things here and there.
6001 * lisp.h (CYCLE_CHECK, CHAR_TABLE_TRANSLATE): Remove.
6002 * conf_post.h (RE_TRANSLATE): Use char_table_translate.
6003 * editfns.c (Fcompare_buffer_substrings): Likewise.
6004 * frame.h (struct terminal, struct font_driver_list):
6005 Remove redundant declarations.
6006 * window.h (Qleft, Qright): Likewise.
6007
6008 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
6009
6010 Do not mark objects from deleted buffers, windows and frames.
6011 * alloc.c (mark_buffer): Mark just the buffer if it is dead.
6012 (mark_object): Likewise for windows and frames.
6013
6014 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
6015
6016 * alloc.c (valid_lisp_object_p): Treat killed buffers,
6017 buffer_defaults and buffer_local_symbols as valid objects.
6018 Return special value to denote them.
6019
6020 2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
6021
6022 * fileio.c, filelock.c, floatfns.c, fns.c: Use bool for boolean.
6023 * fileio.c (auto_saving, auto_save_error_occurred, make_temp_name)
6024 (Fexpand_file_name, barf_or_query_if_file_exists, Fcopy_file)
6025 (file_name_absolute_p, Fsubstitute_in_file_name):
6026 (check_executable, check_writable, Ffile_accessible_directory_p)
6027 (Fset_file_selinux_context, Fdefault_file_modes)
6028 (Finsert_file_contents, choose_write_coding_system)
6029 (Fwrite_region, build_annotations, a_write, e_write)
6030 (Fdo_auto_save):
6031 * filelock.c (boot_time_initialized, get_boot_time)
6032 (get_boot_time_1, lock_file_1, within_one_second):
6033 * floatfns.c (in_float):
6034 * fns.c (concat, internal_equal, Frequire, base64_encode_1)
6035 (base64_decode_1, cmpfn_eql, cmpfn_user_defined)
6036 (sweep_weak_table, sweep_weak_hash_tables, secure_hash):
6037 * lisp.h (struct Lisp_Hash_Table.cmpfn):
6038 * window.c (compare_window_configurations):
6039 Use bool for booleans.
6040 * fileio.c (auto_saving_dir_umask, auto_saving_mode_bits)
6041 (Fdefault_file_modes): Now mode_t, not int, for modes.
6042 (Fdo_auto_save): Set a boolean to 1 rather than using ++.
6043 (internal_delete_file): Now returns void, not a (boolean) int,
6044 since nobody was looking at the return value.
6045 * lisp.h, window.h: Adjust to above API changes.
6046
6047 * xdisp.c (set_message): Simplify and reindent last change.
6048
6049 2012-09-05 Juanma Barranquero <lekktu@gmail.com>
6050
6051 * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies.
6052
6053 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
6054
6055 * eval.c (call_debugger): Make the function non-static so that we
6056 can call it from set_message.
6057
6058 * xdisp.c (set_message): Implement the new variable `debug-on-message'.
6059 (syms_of_xdisp): Defvar it and `inhibit-debug-on-message'.
6060
6061 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
6062
6063 Give more-useful info on a fatal error (Bug#12328).
6064 * alloc.c [ENABLE_CHECKING]: Do not include <execinfo.h>.
6065 (die) [ENABLE_CHECKING]: Call fatal_error_backtrace instead
6066 of doing the work ourselves.
6067 * emacs.c (fatal_error_signal): Let fatal_error_backtrace
6068 do most of the work.
6069 (fatal_error_backtrace): New function, taken from the guts
6070 of the old fatal_error_signal, but with a new option to output
6071 a backtrace.
6072 (shut_down_emacs) [!DOS_NT]: Use strsignal to give more-useful
6073 info about the signal than just its number.
6074 * lisp.h (fatal_error_backtrace, emacs_backtrace): New decls.
6075 * sysdep.c: Include <execinfo.h>
6076 (emacs_backtrace): New function, taken partly from the previous
6077 code of the 'die' function.
6078 (emacs_abort): Call fatal_error_backtrace rather than abort.
6079
6080 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
6081
6082 * lread.c (readevalloop): Call internal-macroexpand-for-load to perform
6083 eager (load-time) macro-expansion.
6084 * lisp.mk (lisp): Add macroexp.
6085
6086 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
6087
6088 Simplify redefinition of 'abort' (Bug#12316).
6089 Do not try to redefine the 'abort' function. Instead, redo
6090 the code so that it calls 'emacs_abort' rather than 'abort'.
6091 This removes the need for the NO_ABORT configure-time macro
6092 and makes it easier to change the abort code to do a backtrace.
6093 * .gdbinit: Just stop at emacs_abort, not at w32_abort or abort.
6094 * emacs.c (abort) [!DOS_NT && !NO_ABORT]:
6095 Remove; sysdep.c's emacs_abort now takes its place.
6096 * lisp.h (emacs_abort): New decl. All calls from Emacs code to
6097 'abort' changed to use 'emacs_abort'.
6098 * msdos.c (dos_abort) [defined abort]: Remove; not used.
6099 (abort) [!defined abort]: Rename to ...
6100 (emacs_abort): ... new name.
6101 * sysdep.c (emacs_abort) [!HAVE_NTGUI]: New function, taking
6102 the place of the old 'abort' in emacs.c.
6103 * w32.c, w32fns.c (abort): Do not #undef.
6104 * w32.c (emacs_abort): Rename from w32_abort.
6105
6106 2012-09-04 Eli Zaretskii <eliz@gnu.org>
6107
6108 * w32uniscribe.c (uniscribe_shape): Reverse the sign of
6109 offsets[j].dv, since the y axis of the screen coordinates points
6110 down, while the y axis of the font definition coordinates points
6111 up. This fixes display of Arabic diacritics such as KASRA and
6112 KASRATAN. (Bug#11860)
6113
6114 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
6115
6116 Be more systematic about _setjmp vs setjmp.
6117 * alloc.c (test_setjmp, mark_stack):
6118 * image.c (PNG_LONGJMP) [PNG_LIBPNG_VER < 10500]:
6119 (PNG_JMPBUF) [! (PNG_LIBPNG_VER < 10500)]:
6120 (png_load, my_error_exit, jpeg_load):
6121 * process.c (send_process_trap, send_process):
6122 Uniformly prefer _setjmp and _longjmp to setjmp and longjmp.
6123 The underscored versions are up to 30x faster on some hosts.
6124 Formerly, the code used setjmp+longjmp sometimes and
6125 _setjmp+_longjmp at other times, with no particular reason to
6126 prefer setjmp+longjmp.
6127
6128 2012-09-03 Paul Eggert <eggert@cs.ucla.edu>
6129
6130 Fix minor problem found by static checking.
6131 * buffer.c (Fdelete_all_overlays): Return nil.
6132
6133 2012-09-03 Martin Rudalics <rudalics@gmx.at>
6134
6135 * buffer.c (Fdelete_all_overlays): New function.
6136
6137 2012-09-03 Chong Yidong <cyd@gnu.org>
6138
6139 * gtkutil.c: Add extern decl for Qxft.
6140
6141 2012-09-02 Paul Eggert <eggert@cs.ucla.edu>
6142
6143 * emacs.c, eval.c: Use bool for boolean.
6144 * emacs.c (initialized, inhibit_window_system, running_asynch_code):
6145 (malloc_using_checking) [DOUG_LEA_MALLOC]:
6146 (display_arg) [HAVE_X_WINDOWS || HAVE_NS]:
6147 (noninteractive, no_site_lisp, fatal_error_in_progress, argmatch)
6148 (main, decode_env_path, Fdaemon_initialized):
6149 * eval.c (call_debugger, Finteractive_p, interactive_p):
6150 (unwind_to_catch, Fsignal, wants_debugger, skip_debugger)
6151 (maybe_call_debugger, Fbacktrace):
6152 * process.c (read_process_output, exec_sentinel):
6153 Use bool for booleans.
6154 * emacs.c (shut_down_emacs): Omit unused boolean argument NO_X.
6155 All callers changed.
6156 * eval.c (interactive_p): Omit always-true boolean argument
6157 EXCLUDE_SUBRS_P. All callers changed.
6158 * dispextern.h, lisp.h: Reflect above API changes.
6159 * firstfile.c (dummy): Use the address of 'main', whose signature
6160 won't change, instead of the address of 'initialize', whose
6161 signature just changed from int to bool.
6162 * lisp.h (fatal_error_in_progress): New decl of boolean, moved here ...
6163 * msdos.c (fatal_error_in_progress): ... from here.
6164 * xdisp.c (redisplaying_p): Now a boolean. Set it to 1 instead
6165 of incrementing it.
6166 (redisplay_internal, unwind_redisplay): Simply clear
6167 REDISPLAYING_P when unwinding, instead of saving its previous,
6168 always-false value and then restoring it.
6169
6170 Clean up some extern decls.
6171 Mostly, this hoists extern decls out of .c files and into .h files.
6172 That way, we're more likely to catch errors if the interfaces change.
6173 * alloc.c [USE_GTK]: Include "gtkutil.h" so that we need not
6174 declare xg_mark_data.
6175 * dispextern.h (x_frame_parm_handlers):
6176 * font.h (Qxft):
6177 * lisp.h (Qlexical_binding, Qinternal_interpreter_environment)
6178 (Qextra_light, Qlight, Qsemi_light, Qsemi_bold, Qbold, Qextra_bold)
6179 (Qultra_bold, Qoblique, Qitalic):
6180 Move extern decl here from .c file.
6181 * alloc.c (xg_mark_data) [USE_GTK]:
6182 * doc.c (Qclosure):
6183 * eval.c (Qlexical_binding):
6184 * fns.c (time) [!HAVE_UNISTD_H]:
6185 * gtkutil.c (Qxft, Qnormal, Qextra_light, Qlight, Qsemi_light)
6186 (Qsemi_bold, Qbold, Qextra_bold, Qultra_bold, Qoblique, Qitalic):
6187 * image.c (Vlibrary_cache, QCloaded_from) [HAVE_NTGUI]:
6188 * lread.c (Qinternal_interpreter_environment):
6189 * minibuf.c (Qbuffer):
6190 * process.c (QCfamily, QCfilter):
6191 * widget.c (free_frame_faces):
6192 * xfaces.c (free_frame_menubar) [USE_X_TOOLKIT]:
6193 * xfont.c (x_clear_errors):
6194 * xterm.c (x_frame_parm_handlers):
6195 Remove now-redundant extern decls.
6196 * keyboard.c, keyboard.h (ignore_mouse_drag_p) [USE_GTK || HAVE_NS]:
6197 * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic):
6198 Now static.
6199 * xfaces.c: Remove unnecessary static decls.
6200 * xterm.c (updating_frame): Remove decl of nonexistent object.
6201
6202 * Makefile.in (gl-stamp): Don't scan $(SOME_MACHINE_OBJECTS)
6203 when building globals.h, as the objects that are not built on
6204 this host are not needed to compile C files on this host.
6205
6206 2012-09-02 Jan Djärv <jan.h.d@swipnet.se>
6207
6208 * gtkutil.h: Remove prototype for x_wm_set_size_hint.
6209
6210 * frame.h: Add missing prototype for x_wm_set_size_hint.
6211
6212 2012-09-02 Paul Eggert <eggert@cs.ucla.edu>
6213
6214 * doc.c, editfns.c, insdel.c, intervals.c: Use bool for boolean.
6215 * doc.c (read_bytecode_char, get_doc_string, reread_doc_file)
6216 (Fdocumentation, Fdocumentation_property, Fsnarf_documentation)
6217 (Fsubstitute_command_keys):
6218 * editfns.c (region_limit, find_field, Fconstrain_to_field)
6219 (save_excursion_save, save_excursion_restore)
6220 (disassemble_lisp_time, decode_time_components, emacs_nmemftime)
6221 (format_time_string, general_insert_function)
6222 (make_buffer_string, make_buffer_string_both)
6223 (Fsubst_char_in_region, Ftranslate_region_internal, Fformat):
6224 * insdel.c (check_markers, gap_left, adjust_markers_for_insert)
6225 (copy_text, insert_1, insert_1_both, insert_from_string)
6226 (insert_from_string_before_markers, insert_from_string_1)
6227 (insert_from_buffer, insert_from_buffer_1, replace_range)
6228 (replace_range_2, del_range_1, del_range_byte, del_range_both)
6229 (del_range_2, modify_region):
6230 * intervals.c (intervals_equal, balance_possible_root_interval)
6231 (adjust_intervals_for_insertion, merge_properties_sticky)
6232 (graft_intervals_into_buffer, lookup_char_property)
6233 (adjust_for_invis_intang, set_point_both)
6234 (get_property_and_range, compare_string_intervals)
6235 (set_intervals_multibyte_1, set_intervals_multibyte):
6236 * keyboard.c (decode_timer):
6237 Use bool for boolean.
6238 * intervals.h, lisp.h, systime.h: Reflect above API changes.
6239 * editfns.c (struct info): Use 1-bit unsigned bitfields for booleans.
6240
6241 2012-09-02 Chong Yidong <cyd@gnu.org>
6242
6243 * keymap.c (push_key_description): Print M-TAB as C-M-i
6244 (Bug#11758).
6245
6246 2012-09-02 Juanma Barranquero <lekktu@gmail.com>
6247
6248 * makefile.w32-in (CCL_H, W32FONT_H): New macros.
6249 (ATIMER_H, FONT_H, $(BLD)/alloc.$(O), $(BLD)/callproc.$(O))
6250 ($(BLD)/editfns.$(O), $(BLD)/ccl.$(O), $(BLD)/chartab.$(O))
6251 ($(BLD)/coding.$(O), $(BLD)/sysdep.$(O), $(BLD)/fontset.$(O))
6252 ($(BLD)/sysdep.$(O), $(BLD)/w32fns.$(O), $(BLD)/keyboard.$(O))
6253 ($(BLD)/w32term.$(O), $(BLD)/w32menu.$(O), $(BLD)/process.$(O))
6254 ($(BLD)/w32font.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
6255
6256 2012-09-01 Eli Zaretskii <eliz@gnu.org>
6257
6258 * w32uniscribe.c (uniscribe_shape): Handle correctly the case of
6259 more than one grapheme cluster passed to the shaper: compute the
6260 offset adjustment values separately for each cluster. (Bug#11860)
6261
6262 * image.c: Restore mistakenly removed inclusion of w32.h. Without
6263 it, GCC doesn't see prototypes of w32_delayed_load, and complains
6264 about implicit conversions from integer to pointer.
6265
6266 2012-09-01 Daniel Colascione <dancol@dancol.org>
6267
6268 * w32fns.c (x_display_info_for_name): Prevent crash if w32 window
6269 system used too early.
6270
6271 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
6272
6273 Better seed support for (random).
6274 * emacs.c (main): Call init_random.
6275 * fns.c (Frandom): Set the seed from a string argument, if given.
6276 Remove long-obsolete Gentzel cruft.
6277 * lisp.h, sysdep.c (seed_random): Now takes address and size, not long.
6278 (init_random): New function.
6279
6280 2012-09-01 Daniel Colascione <dancol@dancol.org>
6281
6282 * xterm.h: Add header guards. Declare x_menubar_window_to_frame.
6283 Remove x_set_frame_alpha, x_bitmap_icon, x_make_frame_visible,
6284 x_make_frame_invisible, x_iconify_frame, x_free_frame_resources,
6285 x_wm_set_size_hint, x_query_colors, x_real_positions,
6286 x_set_menu_bar_lines, x_char_width, x_char_height, x_sync,
6287 x_set_tool_bar_lines, x_activate_menubar, and free_frame_menubar,
6288 all of which have been moved to common code.
6289
6290 * xfaces.c: Include TERM_HEADER instead of listing all possible
6291 window-system headers.
6292
6293 * w32xfns.c (x_sync): Correct definition of x_sync (a no-op here)
6294 to match header.
6295
6296 * w32term.h (FRAME_X_WINDOW): Use FRAME_W32_WINDOW instead of
6297 directly accessing frame internals.
6298
6299 * w32font.h: Include font.h. Define syms_of_w32font and
6300 globals_of_w32font.
6301
6302 * process.c: Include TERM_HEADER instead of listing all possible
6303 window-system headers.
6304
6305 * nsterm.h: Remove declarations now in frame.h.
6306 Define FRAME_X_SCREEN, FRAME_X_VISUAL.
6307
6308 * menu.c: Include TERM_HEADER instead of listing all possible
6309 window-system headers.
6310
6311 * keyboard.h: Declare ignore_mouse_drag_p whenever we have a
6312 window system.
6313
6314 * keyboard.c: Include TERM_HEADER instead of listing all possible
6315 window-system headers.
6316
6317 * image.c: Include TERM_HEADER instead of listing all possible
6318 window-system headers. Declare Vlibrary_cache when compiling for
6319 Windows.
6320
6321 * gtkutil.h (xg_list_node_): Include xterm.h to pick up needed
6322 window system declarations.
6323
6324 * frame.h: Move common functions here: set_frame_menubar,
6325 x_set_window_size, x_sync, x_get_focus_frame,
6326 x_set_mouse_position, x_set_mouse_pixel_position,
6327 x_make_frame_visible, x_make_frame_invisible, x_iconify_frame,
6328 x_char_width, x_char_height, x_pixel_width, x_pixel_height,
6329 x_set_frame_alpha, x_set_menu_bar_lines, x_set_tool_bar_lines,
6330 x_activate_menubar, x_real_positions, x_bitmap_icon,
6331 x_set_menu_bar_lines, free_frame_menubar, x_free_frame_resources,
6332 and x_query_colors.
6333
6334 * frame.c: Include TERM_HEADER instead of listing all possible
6335 window-system headers.
6336
6337 * font.c: Include TERM_HEADER instead of listing all possible
6338 window-system headers.
6339
6340 * emacs.c: Include TERM_HEADER.
6341
6342 * dispnew.c: Include TERM_HEADER instead of listing all possible
6343 window-system headers.
6344
6345 * ccl.h: Include character.h.
6346
6347 * Makefile.in: Define WINDOW_SYSTEM_OBJ to hold objects needed for
6348 the current window system; include in list of objects to link into
6349 Emacs.
6350
6351 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
6352
6353 Remove mark_ttys function and fix tty_display_info initialization.
6354 * lisp.h (mark_ttys): Remove prototype.
6355 * alloc.c (Fgarbage_collect): Remove redundant (and the only) call
6356 to mark_ttys because all possible values of 'top_frame' slot are
6357 the frames which are reachable from Vframe_list.
6358 * term.c (mark_ttys): Remove.
6359 (init_tty): Safely initialize 'top_frame' slot with Qnil.
6360
6361 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
6362
6363 Change struct frame bitfields from unsigned char to unsigned.
6364 * frame.h (struct frame): Change type of 'display_preempted',
6365 'visible', 'iconified', 'has_minibuffer', 'wants_modeline',
6366 'auto_raise', 'auto_lower', 'no_split', 'explicit_name',
6367 'window_sizes_changed', 'mouse_moved' and 'pointer_invisible'
6368 bitfields from unsigned char to unsigned.
6369
6370 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
6371
6372 Remove unused member of struct x_output and struct w32_output.
6373 * xterm.h (struct x_output): Remove unused field 'needs_exposure'.
6374 * w32term.h (struct w32_output): Likewise.
6375
6376 2012-08-30 Jan Djärv <jan.h.d@swipnet.se>
6377
6378 * gtkutil.c (x_wm_set_size_hint): Use 1 col for base_width so it
6379 does not become zero (Bug#12234).
6380
6381 2012-08-30 Paul Eggert <eggert@cs.ucla.edu>
6382
6383 * dispnew.c (update_frame_1): Pacify gcc -Wstrict-overflow
6384 for GCC 4.7.1 x86-64.
6385
6386 2012-08-30 Glenn Morris <rgm@gnu.org>
6387
6388 * lread.c (init_lread): For out-of-tree builds, only add the
6389 source directory's site-lisp dir to the load-path if it exists,
6390 consistent with in-tree builds. (Bug#12302)
6391
6392 2012-08-28 Jan Djärv <jan.h.d@swipnet.se>
6393
6394 * nsmenu.m (initWithContentRect:styleMask:backing:defer:): Initialize
6395 button_values to NULL. Call setStykeMask so dialogs get a close button.
6396 (windowShouldClose:): Set window_closed.
6397 (dealloc): New member, free button_values.
6398 (process_dialog:): Make member function. Remove window argument,
6399 replace window with self. Count buttons and allocate and store values
6400 in button_values.
6401 (addButton:value:row:): value is int with the name tag. Call setTag
6402 with tag. Remove return self, declare return value as void.
6403 (addString:row:): Remove return self, declare return value as void.
6404 (addSplit): Remove return self, declare return value as void.
6405 (clicked:): Remove return self, declare return value as void.
6406 Set dialog_return to button_values[seltag]. Code formatting change.
6407 (initFromContents:isQuestion:): Adjust call to process_dialog.
6408 Code formatting change.
6409 (timeout_handler:): Set timer_fired to YES.
6410 (runDialogAt:): Set timer_fired to NO.
6411 Handle click on close button as quit.
6412
6413 * nsterm.h (EmacsDialogPanel): Make timer_fired BOOL.
6414 Add window_closed and button_values. Add void as return value for
6415 add(Button|String|Split). addButton takes int instead of Lisp_Object.
6416 Add process_dialog as new member.
6417
6418 2012-08-28 Eli Zaretskii <eliz@gnu.org>
6419
6420 * ralloc.c (free_bloc): Don't dereference a 'heap' structure if it
6421 is not one of the heaps we manage. (Bug#12242)
6422
6423 2012-08-28 Glenn Morris <rgm@gnu.org>
6424
6425 * eval.c (Fcalled_interactively_p): Doc fix. (Bug#11747)
6426
6427 2012-08-28 Martin Rudalics <rudalics@gmx.at>
6428
6429 * window.c (Fset_window_configuration): Remove handling of
6430 auto-buffer-name window parameter. Install revision of reverted
6431 fix.
6432
6433 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
6434
6435 Do not allow to set major mode for a dead buffer.
6436 * buffer.c (Fset_buffer_major_mode): Signal an error
6437 if the buffer is dead.
6438 (Fother_buffer, other_buffer_safely): Remove redundant
6439 nested declaration.
6440
6441 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
6442
6443 Always use set_buffer_if_live to restore original buffer at unwind.
6444 * buffer.h (record_unwind_current_buffer): New function.
6445 * bytecode.c, dispnew.c, editfns.c, fileio.c, fns.c, insdel.c:
6446 * keyboard.c, keymap.c, minibuf.c, print.c, process.c, textprop.c:
6447 * undo.c, window.c: Adjust users.
6448 * buffer.c (set_buffer_if_live): Fix comment.
6449
6450 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
6451
6452 Fix usage of set_buffer_internal.
6453 * buffer.h (set_buffer_internal): Make it BUFFER_INLINE.
6454 * buffer.c (set_buffer_if_live): Use set_buffer_internal.
6455 * coding.c (decode_coding): Omit redundant test.
6456 * fileio.c (decide_coding_unwind): Likewise.
6457 * fns.c (secure_hash): Likewise.
6458 * insdel.c (modify_region): Likewise.
6459 * keyboard.c (command_loop_1): Likewise.
6460 * print.c (PRINTFINISH): Likewise.
6461 * xdisp.c (run_window_scroll_functions): Use set_buffer_internal.
6462
6463 2012-08-27 Paul Eggert <eggert@cs.ucla.edu>
6464
6465 * dispnew.c: Use bool for boolean.
6466 (frame_garbaged, display_completed, delayed_size_change)
6467 (fonts_changed_p, add_window_display_history)
6468 (add_frame_display_history, verify_row_hash)
6469 (adjust_glyph_matrix, clear_window_matrices, glyph_row_slice_p)
6470 (row_equal_p, realloc_glyph_pool)
6471 (allocate_matrices_for_frame_redisplay)
6472 (showing_window_margins_p)
6473 (adjust_frame_glyphs_for_frame_redisplay)
6474 (build_frame_matrix_from_leaf_window, make_current)
6475 (mirrored_line_dance, mirror_line_dance, update_frame)
6476 (update_window_tree, update_single_window)
6477 (check_current_matrix_flags, update_window, update_text_area)
6478 (update_window_line, set_window_update_flags, scrolling_window)
6479 (update_frame_1, scrolling, buffer_posn_from_coords)
6480 (do_pending_window_change, change_frame_size)
6481 (change_frame_size_1, sit_for):
6482 Use bool for boolean.
6483 (clear_glyph_matrix_rows): Rename from enable_glyph_matrix_rows,
6484 and remove last int (actually boolean) argument, which was always 0.
6485 All callers changed.
6486 * dispextern.h, frame.h, lisp.h: Reflect above API changes.
6487 * dispextern.h (struct composition_it): Use bool for boolean.
6488 (struct glyph_matrix): Don't assume buffer sizes can fit in 'int'.
6489 (struct bidi_it): Use unsigned:1, not int, for boolean prev_was_pdf.
6490 * dired.c (file_name_completion):
6491 Use bool for boolean. (This was missed in an earlier change.)
6492
6493 2012-08-27 Martin Rudalics <rudalics@gmx.at>
6494
6495 * window.c (Fset_window_configuration): Revert first part of
6496 last change.
6497
6498 2012-08-27 Jan Djärv <jan.h.d@swipnet.se>
6499
6500 * nsterm.h (NSPanel): New class variable dialog_return.
6501
6502 * nsmenu.m (initWithContentRect:styleMask:backing:defer:):
6503 Initialize dialog_return.
6504 (windowShouldClose:): Use stop instead of stopModalWithCode.
6505 (clicked:): Ditto, and also set dialog_return (Bug#12258).
6506 (timeout_handler:): Use stop instead of abortModal. Send a dummy
6507 event.
6508 (runDialogAt:): Make ret Lisp_Object. Set it from dialog_return when
6509 modal loop returns.
6510
6511 2012-08-27 Paul Eggert <eggert@cs.ucla.edu>
6512
6513 * composite.c, data.c, dbusbind.c, dired.c: Use bool for booleans.
6514 * composite.c (find_composition, composition_gstring_p)
6515 (composition_reseat_it, find_automatic_composition):
6516 * data.c (let_shadows_buffer_binding_p)
6517 (let_shadows_global_binding_p, set_internal, make_blv)
6518 (Fmake_variable_buffer_local, Fmake_local_variable)
6519 (Fmake_variable_frame_local, arithcompare, cons_to_unsigned)
6520 (cons_to_signed, arith_driver):
6521 * dbusbind.c (xd_in_read_queued_messages):
6522 * dired.c (directory_files_internal, file_name_completion):
6523 Use bool for booleans.
6524 * dired.c (file_name_completion):
6525 * process.h (fd_callback):
6526 Omit int (actually boolean) argument. It wasn't being used.
6527 All uses changed.
6528 * composite.h, lisp.h: Reflect above API changes.
6529
6530 * cmds.c, coding.c: Use bool for booleans.
6531 * cmds.c (move_point, Fself_insert_command):
6532 * coding.h (struct composition status, struct coding_system):
6533 * coding.c (detect_coding_utf_8, encode_coding_utf_8)
6534 (detect_coding_utf_16, encode_coding_utf_16, detect_coding_emacs_mule)
6535 (emacs_mule_char, decode_coding_emacs_mule)
6536 (encode_coding_emacs_mule, detect_coding_iso_2022)
6537 (decode_coding_iso_2022, encode_invocation_designation)
6538 (encode_designation_at_bol, encode_coding_iso_2022)
6539 (detect_coding_sjis, detect_coding_big5, decode_coding_sjis)
6540 (decode_coding_big5, encode_coding_sjis, encode_coding_big5)
6541 (detect_coding_ccl, encode_coding_ccl, decode_coding_raw_text)
6542 (encode_coding_raw_text, detect_coding_charset)
6543 (decode_coding_charset, encode_coding_charset, detect_eol)
6544 (detect_coding, get_translation_table, produce_chars)
6545 (consume_chars, reused_workbuf_in_use)
6546 (make_conversion_work_buffer, code_conversion_save)
6547 (decode_coding_object, encode_coding_object)
6548 (detect_coding_system, char_encodable_p)
6549 (Funencodable_char_position, code_convert_region)
6550 (code_convert_string, code_convert_string_norecord)
6551 (Fset_coding_system_priority):
6552 * fileio.c (Finsert_file_contents):
6553 Use bool for booleans.
6554 * coding.h, lisp.h: Reflect above API changes.
6555 * coding.c: Remove unnecessary static function decls.
6556 (detect_coding): Use unsigned, not signed, to copy an unsigned field.
6557 (decode_coding, encode_coding, decode_coding_gap): Return 'void',
6558 not a boolean 'int', since callers never look at the return value.
6559 (ALLOC_CONVERSION_WORK_AREA): Assume caller returns 'void', not 'int'.
6560 * coding.h (decoding_buffer_size, encoding_buffer_size)
6561 (emacs_mule_string_char): Remove unused extern decls.
6562 (struct iso_2022_spec, struct coding_system):
6563 Use 'unsigned int : 1' for boolean fields, since there's more than one.
6564 (struct emacs_mule_spec): Remove unused field 'full_support'.
6565 All initializations removed.
6566 * cmds.c (internal_self_insert): Don't assume EMACS_INT fits in 'int'.
6567
6568 2012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
6569
6570 Fix spare memory change (Bug#12286).
6571 * alloc.c (mark_maybe_pointer): Handle MEM_TYPE_SPARE.
6572 (valid_lisp_object_p): Likewise.
6573
6574 2012-08-27 Martin Rudalics <rudalics@gmx.at>
6575
6576 * window.c (Fset_window_configuration): Record any window's old
6577 buffer if it's replaced (see Bug#8789). If the new current
6578 buffer doesn't appear in the selected window, go to its old
6579 point (Bug#12208).
6580
6581 2012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
6582
6583 Special MEM_TYPE_SPARE to denote reserved memory.
6584 * alloc.c (enum mem_type): New memory type.
6585 (refill_memory_reserve): Use new type for spare memory.
6586 This prevents live_cons_p and live_string_p from incorrect
6587 detection of uninitialized objects from spare memory as live.
6588
6589 2012-08-26 Paul Eggert <eggert@cs.ucla.edu>
6590
6591 Spelling fixes.
6592 * Makefile.in (.PHONY): versioclean -> versionclean.
6593
6594 Remove unused external symbols.
6595 * data.c (Qcons, Qfloat, Qmisc, Qstring, Qvector):
6596 * window.c (Qwindow_valid_p, decode_valid_window):
6597 Now static, not extern.
6598 * data.c (Qinterval): Remove; unused.
6599 (syms_of_data): Do not define 'interval'.
6600 * lisp.h (Qinteger, Qstring, Qmisc, Qvector, Qfloat, Qcons):
6601 * window.h (decode_valid_window):
6602 Remove decls.
6603
6604 * character.c, charset.c, chartab.c: Use bool for booleans.
6605 * character.c (lisp_string_width, string_count_byte8)
6606 (string_escape_byte8):
6607 * charset.c (charset_map_loaded, load_charset_map, read_hex):
6608 (load_charset_map_from_file, map_charset_chars)
6609 (Fdefine_charset_internal, define_charset_internal)
6610 (Fdeclare_equiv_charset, find_charsets_in_text)
6611 (Ffind_charset_region, char_charset, Fiso_charset):
6612 * chartab.c (sub_char_table_ref, sub_char_table_ref_and_range)
6613 (sub_char_table_set, sub_char_table_set_range)
6614 (char_table_set_range, optimize_sub_char_table)
6615 (map_sub_char_table):
6616 Use bool for boolean.
6617 * character.c (str_to_unibyte): Omit last boolean argument; it was
6618 always 0. All callers changed.
6619 * character.h, charset.h: Adjust to match previous changes.
6620 * character.h (char_printable_p): Remove decl of nonexistent function.
6621 * charset.h (struct charset): Members code_linear_p, iso_chars_96,
6622 ascii_compatible_p, supplementary_p, compact_codes_p, unified_p
6623 are all boolean, so make them single-bit bitfields.
6624
6625 * lisp.h (ASET): Remove attempt to detect side effects.
6626 It was meant to be temporary and it often doesn't work,
6627 because when IDX has side effects the behavior of IDX==IDX
6628 is undefined. See Stefan Monnier in
6629 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00762.html>.
6630
6631 2012-08-26 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
6632
6633 * lisp.h (functionp): New function (extracted from Ffunctionp).
6634 (FUNCTIONP): Use it.
6635 * eval.c (Ffunctionp): Use it.
6636
6637 2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
6638
6639 * xgselect.c (xg_select): Use auto storage for the GPollFD buffer
6640 as that's faster and simpler than static storage. Don't bother
6641 with the g_main_context_query overhead if g_main_context_pending
6642 says no events are pending.
6643 (gfds, gfds_size): Remove these static vars.
6644 (xgselect_initialize): Remove; no longer needed.
6645 All uses and decls removed.
6646
6647 * emacs.c (fatal_error_signal_hook): Remove.
6648 All uses removed. This leftover from old code was always 0.
6649
6650 * casefiddle.c, casetab.c, category.c: Use bool for boolean.
6651 * casefiddle.c (casify_object, casify_region):
6652 * casetab.c (set_case_table):
6653 * category.c, category.h (word_boundary_p):
6654 * category.h (CHAR_HAS_CATEGORY):
6655 Use bool for booleans, instead of int.
6656
6657 2012-08-25 Eli Zaretskii <eliz@gnu.org>
6658
6659 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on $(GNU_LIB)/execinfo.h.
6660
6661 2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
6662
6663 On assertion failure, print backtrace if available.
6664 * alloc.c [ENABLE_CHECKING]: Include <execinfo.h>.
6665 (die) [ENABLE_CHECKING]: Print a backtrace if available.
6666 * Makefile.in (LIB_EXECINFO): New macro.
6667 (LIBES): Use it.
6668
6669 * bytecode.c, callint.c, callproc.c: Use bool for boolean.
6670 * bytecode.c (exec_byte_code):
6671 * callint.c (check_mark, Fcall_interactively):
6672 * callproc.c (Fcall_process, add_env, child_setup, getenv_internal_1)
6673 (getenv_internal, sync_process_alive, call_process_exited):
6674 * lisp.h (USE_SAFE_ALLOCA):
6675 Use bool for booleans, instead of int.
6676 * lisp.h, process.h: Adjust prototypes to match above changes.
6677 * callint.c (Fcall_interactively): Don't assume the mark's
6678 offset fits in 'int'.
6679
6680 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
6681
6682 * buffer.c, buffer.h: Use bool for boolean.
6683 * buffer.c (reset_buffer_local_variables)
6684 (buffer_lisp_local_variables, Fset_buffer_modified_p)
6685 (Frestore_buffer_modified_p, Fset_buffer_multibyte):
6686 (overlays_at, overlays_in, mouse_face_overlay_overlaps)
6687 (overlay_touches_p, overlay_strings, Foverlay_put)
6688 (report_overlay_modification, call_overlay_mod_hooks):
6689 (mmap_enlarge, mmap_set_vars):
6690 * buffer.h (buffer_has_overlays, uppercasep, lowercasep):
6691 Use bool for booleans, instead of int.
6692 * buffer.c (compact_buffer, mmap_free_1): Return void, not int,
6693 since the 1-or-0 return value is always ignored anyway.
6694 (mmap_initialized_p):
6695 * buffer.h (struct buffer_text.inhibit_shrinking): Now bool, not int.
6696 * buffer.h, lisp.h: Adjust prototypes to match above changes.
6697
6698 2012-08-23 Paul Eggert <eggert@cs.ucla.edu>
6699
6700 * bidi.c: Use bool for boolean.
6701 This is a bit more readable, and makes the text segment of bidi.o
6702 0.4% smaller on my platform (GCC 4.7.1 x86-64, Fedora 15).
6703 Presumably it's faster too.
6704 (bidi_initialized, bidi_ignore_explicit_marks_for_paragraph_level):
6705 Now bool.
6706 (bidi_cache_find_level_change, bidi_cache_iterator_state)
6707 (bidi_unshelve_cache, bidi_init_it, bidi_count_bytes)
6708 (bidi_char_at_pos, bidi_fetch_char, bidi_paragraph_init)
6709 (bidi_explicit_dir_char, bidi_level_of_next_char)
6710 (bidi_find_other_level_edge, bidi_move_to_visually_next):
6711 Use bool for booleans, instead of int.
6712 * dispextern.h (bidi_init_it, bidi_paragraph_init)
6713 (bidi_unshelve_cache): Adjust decls to match code.
6714
6715 2012-08-23 Martin Rudalics <rudalics@gmx.at>
6716
6717 * keyboard.c (Fposn_at_x_y): Do not allow internal window as
6718 argument.
6719
6720 2012-08-23 Paul Eggert <eggert@cs.ucla.edu>
6721
6722 * atimer.c, atimer.h (turn_on_atimers): Use bool for boolean.
6723 * atimer.h: Include <stdbool.h>.
6724
6725 2012-08-22 Dan Nicolaescu <dann@gnu.org>
6726
6727 * frame.h (FRAME_W32_P, FRAME_MSDOS_P, FRAME_NS_P): Change to
6728 compile time tests instead of run time tests on systems that do
6729 not use them.
6730 (FRAME_MAC_P): Remove leftover from deleted code.
6731 * frame.c (syms_of_frame): Remove leftover from deleted code.
6732
6733 2012-08-22 Jan Djärv <jan.h.d@swipnet.se>
6734
6735 * nsterm.m (insertText:): Don't clear modifiers if code is space.
6736
6737 2012-08-22 Paul Eggert <eggert@cs.ucla.edu>
6738
6739 * fontset.c (FONTSET_ADD): Return void, not Lisp_Object.
6740 Otherwise, the compiler complains about (A?B:C) where B is void
6741 and C is Lisp_Object. This fixes an incompatibility with Sun C 5.12.
6742 (fontset_add): Return void, for FONTSET_ADD.
6743
6744 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
6745
6746 * alloc.c: Use bool for booleans.
6747 (gc_in_progress, abort_on_gc)
6748 (setjmp_tested_p) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
6749 (dont_register_blocks) [GC_MALLOC_CHECK]:
6750 (suppress_checking) [ENABLE_CHECKING]: Now bool, not int.
6751 (check_string_bytes, make_specified_string, memory_full)
6752 (live_string_p, live_cons_p, live_symbol_p, live_float_p)
6753 (live_misc_p, live_vector_p, live_buffer_p, mark_maybe_object)
6754 (mark_stack, valid_pointer_p, make_pure_string)
6755 (Fgarbage_collect, survives_gc_p, gc_sweep):
6756 Use bool for booleans, instead of int.
6757 (test_setjmp) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
6758 Remove unused local.
6759 * alloc.c (PURE_POINTER_P):
6760 * lisp.h (STRING_MULTIBYTE): Document that it returns a boolean.
6761 * editfns.c (Fformat):
6762 * fileio.c (Fexpand_file_name, Fsubstitute_in_file_name)
6763 (Fdo_auto_save):
6764 * fns.c (sweep_weak_table):
6765 * lisp.h (suppress_checking, push_message, survives_gc_p)
6766 (make_pure_string, gc_in_progress, abort_on_gc):
6767 * lread.c (readchar, read1):
6768 * print.c (Fprin1_to_string):
6769 * xdisp.c (push_message):
6770 Use bool for booleans affected directly or indirectly by
6771 alloc.c's changes.
6772
6773 Make recently-introduced setters macros.
6774 * fontset.c (set_fontset_id, set_fontset_name, set_fontset_ascii)
6775 (set_fontset_base, set_fontset_frame, set_fontset_nofont_face)
6776 (set_fontset_default, set_fontset_fallback): Rename from their
6777 upper-case counterparts, and make them functions rather than macros.
6778 This is more consistent with the other recently-introduced setters.
6779 These don't need to be inline, since they're local.
6780
6781 2012-08-21 Jan Djärv <jan.h.d@swipnet.se>
6782
6783 * nsterm.m (fd_handler:): Alloc and release a NSAutoreleasePool in
6784 the loop (Bug#12247).
6785
6786 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
6787
6788 * lisp.h (vcopy): Use memcpy rather than our own loop.
6789 This fixes a performance regression introduced by the recent
6790 addition of vcopy. This means 'vcopy' will need to be modified
6791 for a copying collector, but that's OK. Also, tighten the
6792 checking in the assertion.
6793
6794 2012-08-21 Eli Zaretskii <eliz@gnu.org>
6795
6796 * w32uniscribe.c (uniscribe_shape): Fix producing gstring
6797 components for RTL text (Bug#11860). Adjust X-OFFSET of each
6798 non-base glyph for the width of the base character, according to
6799 what x_draw_composite_glyph_string_foreground expects.
6800 Generate WADJUST value according to composition_gstring_width's
6801 expectations, to produce correct width of the composed character.
6802 Reverse the sign of the DU offset produced by ScriptPlace.
6803
6804 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
6805
6806 * dbusbind.c (xd_remove_watch): Do not assume C99 comments.
6807
6808 2012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
6809
6810 Avoid direct writes to contents member of struct Lisp_Vector.
6811 * lisp.h (vcopy): New function to copy data into vector.
6812 * dispnew.c (Fframe_or_buffer_changed_p): Use AREF and ASET.
6813 * fns.c (Ffillarray): Use ASET.
6814 * keyboard.c (timer_check_2): Use AREF and ASET.
6815 (append_tool_bar_item, Frecent_keys): Use vcopy.
6816 * lread.c (read_vector): Use ASET.
6817 * msdos.c (Frecent_doskeys): Use vcopy.
6818 * xface.c (Finternal_copy_lisp_face): Use vcopy.
6819 (Finternal_merge_in_global_face): Use ASET and vcopy.
6820 * xfont.c (xfont_list_pattern): Likewise.
6821
6822 2012-08-21 Martin Rudalics <rudalics@gmx.at>
6823
6824 * window.c (Fwindow_point): For the selected window always return
6825 the position of its buffer's point.
6826 (Fset_window_point): For the selected window always go in its
6827 buffer to the specified position.
6828
6829 2012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
6830
6831 Setter macros for fontsets.
6832 * fontset.c (SET_FONTSET_ID, SET_FONTSET_NAME, SET_FONTSET_ASCII)
6833 (SET_FONTSET_BASE, SET_FONTSET_FRAME, SET_FONTSET_NOFONT_FACE)
6834 (SET_FONTSET_DEFAULT, SET_FONTSET_FALLBACK): New macros.
6835 Adjust users.
6836
6837 2012-08-20 Glenn Morris <rgm@gnu.org>
6838
6839 * Makefile.in (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
6840 Don't assume that `ln -f' works.
6841
6842 2012-08-20 Eli Zaretskii <eliz@gnu.org>
6843
6844 * .gdbinit: Use "set $dummy = ..." to avoid warnings from GDB 7.5
6845 and later about non-assignments with no effect. See discussion at
6846 http://sourceware.org/ml/gdb-patches/2012-08/msg00518.html for
6847 details.
6848
6849 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
6850
6851 Inline setter functions for Lisp_Objects slots of struct specbinding.
6852 * eval.c (set_specpdl_symbol, set_specpdl_old_value): New functions.
6853 Adjust users.
6854
6855 2012-08-20 Martin Rudalics <rudalics@gmx.at>
6856
6857 * window.c (select_window): Always make selected window's buffer
6858 current.
6859
6860 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
6861
6862 Use AREF and ASET for docstrings of category tables.
6863 * category.h (CATEGORY_DOCSTRING): Use AREF.
6864 (SET_CATEGORY_DOCSTRING): Use ASET.
6865 * category.c (Fdefine_category): Use SET_CATEGORY_DOCSTRING.
6866
6867 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
6868
6869 Inline setter functions for hash table members.
6870 * lisp.h (set_hash_key, set_hash_value, set_hash_next)
6871 (set_hash_hash, set_hash_index): Rename with _slot suffix.
6872 (set_hash_key_and_value, set_hash_index, set_hash_next)
6873 (set_hash_hash): New functions.
6874 * charset.c, fns.c: Adjust users.
6875
6876 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
6877
6878 Inline getter and setter functions for per-buffer values.
6879 * buffer.h (per_buffer_default, set_per_buffer_default)
6880 (per_buffer_value, set_per_buffer_value): New functions.
6881 (PER_BUFFER_VALUE, PER_BUFFER_DEFAULT): Remove.
6882 * buffer.c, data.c: Adjust users.
6883
6884 2012-08-20 Juanma Barranquero <lekktu@gmail.com>
6885
6886 * makefile.w32-in ($(BLD)/vm-limit.$(O)): Update dependencies.
6887
6888 2012-08-19 Paul Eggert <eggert@cs.ucla.edu>
6889
6890 Rely on <config.h> + <unistd.h> to declare 'environ',
6891 as gnulib does this if the system doesn't.
6892 * callproc.c, editfns.c, process.c (environ) [!USE_CRT_DLL]:
6893 Remove declaration. MS-Windows declares it on stdlib.h which is
6894 included by conf_post.h.
6895 * emacs.c (environ) [DOUG_LEA_MALLOC]:
6896 * vm-limit.c (environ) [ORDINARY_LINK]: Remove decl.
6897 * vm-limit.c: Include <unistd.h>, for 'environ'.
6898
6899 * unexaix.c, unexcoff.c: Include "mem-limits.h".
6900 (start_of_data): Remove decl; mem-limits.h provides it.
6901
6902 * xdisp.c (handle_invisible_prop): Make it a bit faster
6903 and avoid a gcc -Wmaybe-uninitialized diagnostic.
6904
6905 2012-08-19 Chong Yidong <cyd@gnu.org>
6906
6907 * xdisp.c (handle_invisible_prop): Fix ellipses at overlay string
6908 ends (Bug#3874).
6909
6910 2012-08-19 Andreas Schwab <schwab@linux-m68k.org>
6911
6912 * .gdbinit: Use call instead of set when calling a function in the
6913 inferior.
6914
6915 * data.c (set_internal): Don't use set_blv_found.
6916 (Fkill_local_variable): Likewise.
6917
6918 2012-08-18 Alp Aker <alp.tekin.aker@gmail.com>
6919
6920 * nsfont.m (ns_ascii_average_width): Ensure the string
6921 ascii_printable is initialized with a null-terminated character
6922 array. Otherwise, it can contain undesired extra characters.
6923
6924 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
6925
6926 port new setting code to Sun C 5.8 2005/10/13
6927 * chartab.c, lisp.h (char_table_set, char_table_set_range):
6928 Return void, not Lisp_Object. Otherwise, the compiler
6929 complains about (A?B:C) where B is void and C is Lisp_Object
6930 when compiling CHAR_TABLE_SET, due to the recent change to
6931 the API of sub_char_table_set_contents.
6932
6933 2012-08-18 Chong Yidong <cyd@gnu.org>
6934
6935 * xdisp.c (handle_invisible_prop): Obey TEXT_PROP_MEANS_INVISIBLE
6936 for the string case (Bug#3874).
6937
6938 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
6939
6940 * buffer.h (BSET): Remove (Bug#12215).
6941 Replace all uses with calls to new setter functions.
6942 (bset_bidi_paragraph_direction, bset_case_canon_table)
6943 (bset_case_eqv_table, bset_directory, bset_display_count)
6944 (bset_display_time, bset_downcase_table)
6945 (bset_enable_multibyte_characters, bset_filename, bset_keymap)
6946 (bset_last_selected_window, bset_local_var_alist)
6947 (bset_mark_active, bset_point_before_scroll, bset_read_only)
6948 (bset_truncate_lines, bset_undo_list, bset_upcase_table)
6949 (bset_width_table):
6950 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
6951 (bset_auto_fill_function, bset_auto_save_file_format)
6952 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
6953 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
6954 (bset_cache_long_line_scans, bset_case_fold_search)
6955 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
6956 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
6957 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
6958 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
6959 (bset_header_line_format, bset_indicate_buffer_boundaries)
6960 (bset_indicate_empty_lines, bset_invisibility_spec)
6961 (bset_left_fringe_width, bset_major_mode, bset_mark)
6962 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
6963 (bset_name, bset_overwrite_mode, bset_pt_marker)
6964 (bset_right_fringe_width, bset_save_length)
6965 (bset_scroll_bar_width, bset_scroll_down_aggressively)
6966 (bset_scroll_up_aggressively, bset_selective_display)
6967 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
6968 (bset_word_wrap, bset_zv_marker):
6969 * category.c (bset_category_table):
6970 * syntax.c (bset_syntax_table):
6971 New setter functions.
6972
6973 * process.h (PSET): Remove (Bug#12215).
6974 Replace all uses with calls to new setter functions.
6975 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
6976 (PROCESS_INLINE): New macro.
6977 (pset_childp): New setter function.
6978 (pset_gnutls_cred_type) [HAVE_GNUTLS]: New setter function.
6979 * process.c (PROCESS_INLINE):
6980 Define to EXTERN_INLINE, so that the corresponding functions
6981 are compiled into code.
6982 (pset_buffer, pset_command, pset_decode_coding_system)
6983 (pset_decoding_buf, pset_encode_coding_system)
6984 (pset_encoding_buf, pset_filter, pset_log, pset_mark, pset_name)
6985 (pset_plist, pset_sentinel, pset_status, pset_tty_name)
6986 (pset_type, pset_write_queue): New setter functions.
6987
6988 * window.h (WSET): Remove (Bug#12215).
6989 Replace all uses with calls to new setter functions.
6990 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
6991 (WINDOW_INLINE): New macro.
6992 (wset_buffer, wset_frame, wset_left_col, wset_next, wset_prev)
6993 (wset_redisplay_end_trigger, wset_top_line, wset_total_cols)
6994 (wset_total_lines, wset_vertical_scroll_bar)
6995 (wset_window_end_pos, wset_window_end_valid)
6996 (wset_window_end_vpos): New setter functions.
6997 * window.c (WINDOW_INLINE):
6998 Define to EXTERN_INLINE, so that the corresponding functions
6999 are compiled into code.
7000 (wset_combination_limit, wset_dedicated, wset_display_table)
7001 (wset_hchild, wset_left_fringe_width, wset_left_margin_cols)
7002 (wset_new_normal, wset_new_total, wset_next_buffers)
7003 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
7004 (wset_prev_buffers, wset_right_fringe_width)
7005 (wset_right_margin_cols, wset_scroll_bar_width, wset_start)
7006 (wset_temslot, wset_vchild, wset_vertical_scroll_bar_type)
7007 (wset_window_parameters):
7008 * xdisp.c (wset_base_line_number, wset_base_line_pos)
7009 (wset_column_number_displayed, wset_region_showing):
7010 New setter functions.
7011
7012 * termhooks.h (TSET): Remove (Bug#12215).
7013 Replace all uses with calls to new setter functions.
7014 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
7015 (TERMHOOKS_INLINE): New macro.
7016 (tset_charset_list, tset_selection_alist): New setter functions.
7017 * terminal.c (TERMHOOKS_INLINE):
7018 Define to EXTERN_INLINE, so that the corresponding functions
7019 are compiled into code.
7020 (tset_param_alist): New setter function.
7021
7022 2012-08-17 Paul Eggert <eggert@cs.ucla.edu>
7023
7024 * keyboard.h (KSET): Remove (Bug#12215).
7025 Replace all uses with calls to new setter functions.
7026 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
7027 (KEYBOARD_INLINE): New macro.
7028 (kset_default_minibuffer_frame, kset_defining_kbd_macro)
7029 (kset_input_decode_map, kset_last_command, kset_last_kbd_macro)
7030 (kset_prefix_arg, kset_system_key_alist, kset_window_system):
7031 New setter functions.
7032 * keyboard.c (KEYBOARD_INLINE):
7033 Define to EXTERN_INLINE, so that the corresponding functions
7034 are compiled into code.
7035 (kset_echo_string, kset_kbd_queue)
7036 (kset_keyboard_translate_table, kset_last_prefix_arg)
7037 (kset_last_repeatable_command, kset_local_function_key_map)
7038 (kset_overriding_terminal_local_map, kset_real_last_command)
7039 (kset_system_key_syms): New setter functions.
7040
7041 * frame.h (FSET): Remove (Bug#12215).
7042 Replace all uses with calls to new setter functions.
7043 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
7044 (FRAME_INLINE): New macro.
7045 (fset_buffer_list, fset_buried_buffer_list, fset_condemned_scroll_bars)
7046 (fset_current_tool_bar_string, fset_desired_tool_bar_string)
7047 (fset_face_alist, fset_focus_frame, fset_icon_name, fset_menu_bar_items)
7048 (fset_menu_bar_vector, fset_menu_bar_window, fset_name)
7049 (fset_param_alist, fset_root_window, fset_scroll_bars)
7050 (fset_selected_window, fset_title, fset_tool_bar_items)
7051 (fset_tool_bar_position, fset_tool_bar_window): New functions.
7052 * frame.c (FRAME_INLINE):
7053 Define to EXTERN_INLINE, so that the corresponding functions
7054 are compiled into code.
7055 (fset_buffer_predicate, fset_minibuffer_window): New setter functions.
7056
7057 A few more naming-convention fixes for getters and setters.
7058 * buffer.c (set_buffer_overlays_before): Move here from buffer.h,
7059 and rename from buffer_overlays_set_before.
7060 (set_buffer_overlays_after): Move here from buffer.h, and rename
7061 from buffer_overlays_set_after.
7062 * buffer.h (buffer_intervals): Rename from buffer_get_intervals.
7063 All uses changed.
7064 (set_buffer_intervals): Rename from buffer_set_intervals.
7065 * intervals.c (set_interval_object): Move here from intervals.h,
7066 and rename from interval_set_object.
7067 (set_interval_left): Move here from intervals.h, and rename from
7068 interval_set_left.
7069 (set_interval_right): Move here from intervals.h, and rename from
7070 interval_set_right.
7071 (copy_interval_parent): Move here from intervals.h, and rename from
7072 interval_copy_parent.
7073 * intervals.h (set_interval_parent): Rename from interval_set_parent.
7074 (set_interval_plist): Rename from interval_set_plist.
7075 Return void, not Lisp_Object, since no caller uses the result.
7076 * lisp.h (string_intervals): Rename from string_get_intervals.
7077 (set_string_intervals): Rename from string_set_intervals.
7078
7079 * lisp.h (set_char_table_extras): Rename from char_table_set_extras.
7080 (set_char_table_contents): Rename from char_table_set_contents.
7081 (set_sub_char_table_contents): Rename from sub_char_table_set_contents.
7082 All uses changed. See the end of
7083 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00549.html>.
7084
7085 * lisp.h (CSET): Remove (Bug#12215).
7086 (set_char_table_ascii, set_char_table_defalt, set_char_table_parent)
7087 (set_char_table_purpose): New functions,
7088 replacing CSET. All uses changed. For example, replace
7089 "CSET (XCHAR_TABLE (char_table), parent, parent);" with
7090 "set_char_table_parent (char_table, parent);".
7091 The old version was confusing because it used the same name
7092 'parent' for two different things.
7093
7094 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
7095
7096 Functions to get and set Lisp_Object fields of buffer-local variables.
7097 * lisp.h (blv_found, set_blv_found, blv_value, set_blv_value)
7098 (set_blv_where, set_blv_defcell, set_blv_valcell): New functions.
7099 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): Remove.
7100 * data.c, eval.c, frame.c: Adjust users.
7101
7102 2012-08-17 Chong Yidong <cyd@gnu.org>
7103
7104 * xfaces.c (merge_face_vectors): If the target font specfies a
7105 font spec, make the font's attributes take precedence over
7106 directly-specified attributes.
7107 (merge_face_ref): Recognize :font.
7108
7109 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
7110
7111 Do not use memcpy for copying intervals.
7112 * intervals.c (reproduce_interval): New function.
7113 (reproduce_tree, reproduce_tree_obj): Use it.
7114 (reproduce_tree_obj): Remove prototype.
7115
7116 2012-08-17 Paul Eggert <eggert@cs.ucla.edu>
7117
7118 * lisp.h (duration_to_sec_usec): Remove unused decl.
7119
7120 2012-08-17 Alp Aker <alp.tekin.aker@gmail.com>
7121
7122 * nsfont.m (ns_ascii_average_width): Send initWithFormat selector
7123 to an allocated instance of NSString, not to the class itself.
7124
7125 2012-08-17 Juanma Barranquero <lekktu@gmail.com>
7126
7127 * makefile.w32-in (C_CTYPE_H): New macro.
7128 (LISP_H, $(BLD)/ccl.$(O), $(BLD)/doc.$(O), $(BLD)/w32console.$(O)):
7129 ($(BLD)/fontset.$(O), $(BLD)/frame.$(O), $(BLD)/composite.$(O)):
7130 ($(BLD)/sysdep.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
7131
7132 2012-08-16 Paul Eggert <eggert@cs.ucla.edu>
7133
7134 Use ASCII tests for character types.
7135 * category.c, dispnew.c, doprnt.c, editfns.c, syntax.c, term.c:
7136 * xfns.c, xterm.c:
7137 Don't include <ctype.h>; was not needed.
7138 * charset.c, doc.c, fileio.c, font.c, frame.c, gtkutil.c, image.c:
7139 * sysdep.c, xfaces.c:
7140 Include <c-ctype.h> instead of <ctype.h>.
7141 * nsterm.m: Include <c-ctype.h>.
7142 * charset.c (read_hex):
7143 * doc.c (Fsnarf_documentation):
7144 * fileio.c (IS_DRIVE) [WINDOWSNT]:
7145 (DRIVE_LETTER) [DOS_NT]:
7146 (Ffile_name_directory, Fexpand_file_name)
7147 (Fsubstitute_in_file_name):
7148 * font.c (font_parse_xlfd, font_parse_fcname):
7149 * frame.c (x_set_font_backend):
7150 * gtkutil.c (xg_get_font):
7151 * image.c (xbm_scan, xpm_scan, pbm_scan_number):
7152 * nsimage.m (hexchar):
7153 * nsterm.m (ns_xlfd_to_fontname):
7154 * sysdep.c (system_process_attributes):
7155 * xfaces.c (hash_string_case_insensitive):
7156 Use C-locale tests instead of locale-specific tests for character
7157 types, since we want the ASCII interpretation here, not the
7158 interpretation suitable for whatever happens to be the current locale.
7159
7160 2012-08-16 Martin Rudalics <rudalics@gmx.at>
7161
7162 Consistently check windows for validity/liveness
7163 (Bug#11984, Bug#12025, Bug#12026).
7164 * lisp.h (CHECK_VALID_WINDOW): New macro.
7165 * window.c (decode_window): Rename to decode_live_window.
7166 (decode_valid_window, Fwindow_valid_p): New functions.
7167 (Fwindow_frame, Fframe_root_window, Fwindow_minibuffer_p)
7168 (Fframe_first_window, Fframe_selected_window, Fwindow_parent)
7169 (Fwindow_top_child, Fwindow_left_child, Fwindow_next_sibling)
7170 (Fwindow_prev_sibling, Fwindow_combination_limit)
7171 (Fset_window_combination_limit, Fwindow_use_time)
7172 (Fwindow_total_height, Fwindow_total_width, Fwindow_new_total)
7173 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_left_column)
7174 (Fwindow_top_line, Fwindow_body_height, Fwindow_body_width)
7175 (Fwindow_hscroll, Fset_window_hscroll)
7176 (Fwindow_redisplay_end_trigger)
7177 (Fset_window_redisplay_end_trigger, Fwindow_edges)
7178 (Fwindow_pixel_edges, Fwindow_absolute_pixel_edges)
7179 (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
7180 (Fcoordinates_in_window_p, Fwindow_point, Fwindow_start)
7181 (Fwindow_end, Fset_window_point, Fset_window_start)
7182 (Fpos_visible_in_window_p, Fwindow_line_height)
7183 (Fwindow_dedicated_p, Fset_window_dedicated_p)
7184 (Fwindow_prev_buffers, Fset_window_prev_buffers)
7185 (Fwindow_next_buffers, Fwindow_parameters, Fwindow_parameter)
7186 (Fset_window_parameter, Fwindow_display_table)
7187 (Fset_window_display_table, Fdelete_other_windows_internal)
7188 (Fset_window_buffer, Fset_window_new_total)
7189 (Fset_window_new_normal, Fdelete_window_internal)
7190 (Fwindow_text_height, Fset_window_margins, Fwindow_margins)
7191 (Fset_window_fringes, Fwindow_fringes, Fset_window_scroll_bars)
7192 (Fwindow_scroll_bars): Check whether argument window is a valid or
7193 live window. Update doc-strings.
7194 (syms_of_window): New symbol Qwindow_valid_p.
7195 * keyboard.c (Fposn_at_x_y): Check whether argument
7196 frame_or_window denotes a valid window.
7197
7198 2012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
7199
7200 Fix previous char table change.
7201 * lisp.h (CHAR_TABLE_SET): Use sub_char_table_set_contents.
7202 * chartab.c (optimize_sub_char_table): Likewise.
7203
7204 2012-08-16 Chong Yidong <cyd@gnu.org>
7205
7206 * gtkutil.c (xg_get_font): Demand an Xft font (Bug#3228).
7207
7208 * xfont.c (xfont_open):
7209 * xftfont.c (xftfont_open): Set the font's max_width field.
7210
7211 * nsfont.m (nsfont_open): Similar to the Xft backend, set
7212 min_width to space_width and average_width to the average over
7213 printable ASCII characters.
7214 (ns_char_width): Code cleanup.
7215 (ns_ascii_average_width): New utility function.
7216
7217 * font.h (struct font): Update comments.
7218
7219 2012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
7220
7221 Simple interface to set Lisp_Object fields of character tables.
7222 * lisp.h (CSET): New macro.
7223 (char_table_set_extras, char_table_set_contents)
7224 (sub_char_table_set_contents): New function.
7225 * casetab.c, category.c, chartab.c, fns.c, fontset.c, search.c:
7226 * syntax.c: Adjust users.
7227
7228 2012-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
7229
7230 * eval.c (eval_sub): Bind lexical-binding.
7231 * lread.c (Qlexical_binding): Make non-static.
7232
7233 2012-08-15 Jan Djärv <jan.h.d@swipnet.se>
7234
7235 * nsmenu.m (popupSession): Remove.
7236 (pop_down_menu): Remove endModalSession.
7237 (timeout_handler:): New method.
7238 (runDialogAt:): Get next timeout. Start a NSTimer with that timeout.
7239 Call runModalForWindow. Check timer_fired when it returns.
7240 If not set, cancel timer and break out of loop.
7241 Otherwise loop again, with a new timeout.
7242
7243 * nsterm.m: Include fcntl.h if present.
7244 (fd_entry, t_readfds, inNsSelect): Remove.
7245 (select_writefds, select_valid, select_timeout, selfds)
7246 (select_mutex, apploopnr): Add.
7247 (EV_TRAILER): Call kbd_buffer_store_event_hold only if q_event_ptr.
7248 Otherwise call kbd_buffer_store_event.
7249 (ns_send_appdefined): Remove release of fd_entry.
7250 (ns_read_socket): Always send appdefined. Remove inNsSelect check.
7251 Increment and decrement apploopnr.
7252 (ns_select): If no file descriptors, just do a NSTimer.
7253 Otherwise copy read/write masks and start select thread (fd_handler).
7254 Start main loop and wait for application defined event.
7255 Inform select thread to stop selecting after main loop is exited.
7256 (ns_term_init): Create selfds pipe and set non-blocking.
7257 Initialize select_mutex. Start the select thread (fd_handler).
7258 (fd_handler:): Loop forever, wait for info from the main thread
7259 to either start or stop selecting. When select returns, send
7260 and appdefined event.
7261 (sendScrollEventAtLoc:fromEvent:): Check if q_event_ptr is set.
7262 If not call kbd_buffer_store_event.
7263
7264 * nsterm.h (EmacsApp): fd_handler takes id argument.
7265 (EmacsDialogPanel): Add timer_fired and timeout_handler.
7266
7267 * gtkutil.c (xg_mark_data): Use FRAME_X_P.
7268
7269 2012-08-15 Eli Zaretskii <eliz@gnu.org>
7270
7271 * region-cache.c (move_cache_gap): Update gap_len using the actual
7272 growth of the boundaries array. Do not change cache_len.
7273 (Bug#12196)
7274
7275 2012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
7276
7277 Generalize and cleanup font subsystem checks.
7278 * font.h (FONT_DEBUG, font_assert): Remove.
7279 * font.c, fontset.c, w32font.c, xfont.c, xftfont.c:
7280 Change font_assert to eassert. Use eassert where appropriate.
7281
7282 2012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
7283
7284 * gtkutil.c (xg_get_font): Use pango_units_to_double.
7285
7286 2012-08-15 Chong Yidong <cyd@gnu.org>
7287
7288 * gtkutil.c (xg_get_font): Rename from xg_get_font_name.
7289 When using the new font chooser, use gtk_font_chooser_get_font_desc to
7290 extract the font descriptor instead of just the font name.
7291 In that case, return a font spec instead of a string.
7292 (x_last_font_name): Move to this file from xfns.c.
7293
7294 * xfns.c (Fx_select_font): The return value can also be a font
7295 spec. Move x_last_font_name management to gtkutil.c.
7296
7297 * xfaces.c: Make font weight and style symbols non-static.
7298
7299 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
7300
7301 * minibuf.c (read_minibuf): Ignore caller's inhibit-read-only
7302 (bug#12117).
7303
7304 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
7305
7306 * alloc.c (Fgarbage_collect): Use plural form consistently.
7307
7308 2012-08-14 Eli Zaretskii <eliz@gnu.org>
7309
7310 * keyboard.c (command_loop_1): Reset ignore_mouse_drag_p flag each
7311 iteration through the command loop. Fixes a problem whereby mouse
7312 movements are ignored until the first mouse click.
7313
7314 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
7315
7316 Use bool, not int, for Lisp booleans.
7317 This is more natural, and on my platform (GCC 4.7.1 x86-64) it
7318 makes Emacs a bit smaller and presumably a bit faster.
7319 * lisp.h: Include <stdbool.h>.
7320 (struct Lisp_Boolfwd, defvar_bool):
7321 * lread.c (defvar_bool): Use bool, not int, for Lisp booleans.
7322 * regex.c [!emacs]: Include <stdbool.h>.
7323 (false, true): Remove; <stdbool.h> does this for us now.
7324
7325 2012-08-14 Chong Yidong <cyd@gnu.org>
7326
7327 * character.c (Fcharacterp): Doc fix (Bug#12076).
7328
7329 * data.c (Findirect_variable): Doc fix (Bug#11040).
7330
7331 * chartab.c (Fmap_char_table): Doc fix (Bug#12061).
7332
7333 * editfns.c (Fformat): Doc fix (Bug#12059).
7334 (Fsave_current_buffer): Doc fix (Bug#11542).
7335
7336 2012-08-14 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
7337
7338 * keyboard.c (access_keymap_keyremap): Accept anonymous functions
7339 (bug#12022).
7340
7341 2012-08-14 Martin Rudalics <rudalics@gmx.at>
7342
7343 * frame.c (make_frame_without_minibuffer, make_minibuffer_frame)
7344 (delete_frame, Fmake_frame_invisible, Ficonify_frame):
7345 * minibuf.c (choose_minibuf_frame, read_minibuf):
7346 * w32fns.c (x_create_tip_frame):
7347 * xfns.c (x_create_tip_frame): Call set_window_buffer instead of
7348 Fset_window_buffer (Bug#11984, Bug#12025, Bug#12026).
7349
7350 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
7351
7352 * intervals.c (offset_intervals): Remove obsolete comment.
7353
7354 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
7355
7356 * gtkutil.c (find_rtl_image, update_frame_tool_bar): Use NILP.
7357
7358 2012-08-14 Gergely Risko <gergely@risko.hu>
7359
7360 * coding.c (decode_coding): Record buffer modification before
7361 disabling undo_list (Bug#11773).
7362
7363 2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
7364
7365 Revert and cleanup some recent overlay changes.
7366 * buffer.h (enum overlay_type): Remove.
7367 (buffer_get_overlays, buffer_set_overlays): Likewise.
7368 (buffer_set_overlays_before, buffer_set_overlays_after):
7369 New function. Adjust users.
7370 (unchain_both): Add eassert.
7371
7372 2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
7373
7374 * gtkutil.c (update_frame_tool_bar): Use EQ where appropriate.
7375
7376 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
7377
7378 * gtkutil.c (xg_mark_data): Don't assume C99.
7379
7380 2012-08-13 Jan Djärv <jan.h.d@swipnet.se>
7381
7382 * gtkutil.c (xg_frame_tb_info): New struct.
7383 (TB_INFO_KEY): New define.
7384 (xg_free_frame_widgets): Free xg_frame_tb_info for frame if present.
7385 (xg_mark_data): Mark Lisp_Objects in xg_frame_tb_info.
7386 (xg_create_tool_bar): Allocate and initialize a xg_frame_tb_info
7387 if not present.
7388 (update_frame_tool_bar): Return early if data in xg_frame_tb_info
7389 is up to date. Otherwise store new data.
7390 (free_frame_tool_bar): Free xg_frame_tb_info if present.
7391
7392 2012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
7393
7394 Use KSET for write access to Lisp_Object members of struct kboard.
7395 * keyboard.h (KSET): New macro.
7396 * callint.c, category.c, frame.c, keyboard.c, keyboard.h, macros.c:
7397 * msdos.c, nsfns.m, nsterm.m, term.c, w32fns.c, w32term.c, xfns.c:
7398 * xterm.c: Adjust users.
7399
7400 2012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
7401
7402 Use BSET for write access to Lisp_Object members of struct buffer.
7403 * buffer.h (BSET): New macro.
7404 * buffer.c, casetab.c, cmds.c, coding.c, data.c, editfns.c:
7405 * fileio.c, frame.c, indent.c, insdel.c, intervals.c, keymap.c:
7406 * minibuf.c, print.c, process.c, syntax.c, undo.c, w32fns.c:
7407 * window.c, xdisp.c, xfns.c: Adjust users.
7408
7409 2012-08-11 BT Templeton <bpt@hcoop.net> (tiny change)
7410
7411 * lread.c (syms_of_lread): Initialize Vlexical_binding.
7412
7413 2012-08-11 Jan Djärv <jan.h.d@swipnet.se>
7414
7415 * nsterm.m (not_in_argv): New function.
7416 (application:openFile, application:openTempFile:):
7417 (application:openFileWithoutUI:, application:openFiles:): Open file
7418 if not_in_argv returns non-zero (bug#12171).
7419
7420 * gtkutil.c (gtk_font_chooser_dialog_new, GTK_FONT_CHOOSER)
7421 (gtk_font_chooser_set_font, gtk_font_chooser_get_font):
7422 Define for Gtk+ versions less than 3.2.
7423 (xg_get_font_name): Use those functions/macros here.
7424 Reported by Frans Oilinki <moilinki@gmail.com>.
7425
7426 2012-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7427
7428 * unexmacosx.c (copy_data_segment): Copy initialized data in
7429 statically linked libraries from input file rather than memory.
7430
7431 * unexmacosx.c (print_load_command_name): Add cases LC_MAIN,
7432 LC_SOURCE_VERSION, and LC_DYLIB_CODE_SIGN_DRS.
7433 (dump_it) [LC_DYLIB_CODE_SIGN_DRS]: Call copy_linkedit_data.
7434
7435 2012-08-10 Glenn Morris <rgm@gnu.org>
7436
7437 * conf_post.h (IF_LINT, lint_assume): Move here from lisp.h.
7438 * lisp.h (IF_LINT, lint_assume): Move to conf_post.h.
7439
7440 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
7441
7442 Fix last change to allow compilation with low optimization levels.
7443 * intervals.c (INTERVALS_INLINE): Define to EXTERN_INLINE.
7444 Reported by Jan Djärv <jan.h.d@swipnet.se>.
7445
7446 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
7447
7448 Use common inline syntax in intervals.h.
7449 * intervals.h (INTERVALS_INLINE): New macro.
7450 Change all users from LISP_INLINE.
7451
7452 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
7453
7454 Define Qnone once for all platforms.
7455 * frame.c (Qnone): Define here.
7456 (syms_of_frame): DEFSYM it.
7457 * lisp.h (Qnone): New declaration.
7458 * nsfns.m, nsterm.h, nsterm.m, w32fns.c, w32font.c:
7459 * xfns.c: Remove duplication. Adjust users.
7460
7461 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
7462
7463 Remove unused macros from intervals.h.
7464 * intervals.h (MERGE_INSERTIONS, DISPLAY_INVISIBLE_GLYPH): Remove.
7465 * intervals.c: Adjust comment.
7466
7467 2012-08-10 Eli Zaretskii <eliz@gnu.org>
7468
7469 * w32fns.c <w32_unicode_gui>: New static variable.
7470 (globals_of_w32fns): Initialize it according to os_subtype.
7471 (w32_init_class, w32_msg_pump, w32_wnd_proc): Use it instead of
7472 testing os_subtype.
7473
7474 2012-08-10 Joakim Hårsman <joakim.harsman@gmail.com> (tiny change)
7475 Eli Zaretskii <eliz@gnu.org>
7476
7477 Fix bug #10299 with Unicode characters sent by customized
7478 keyboards created by MSKLC.
7479 * w32fns.c (INIT_WINDOW_CLASS): New macro.
7480 (w32_init_class): Use it to initialize the Emacs class with either
7481 ANSI or Unicode API calls.
7482 (w32_msg_pump): Call GetMessageW and DispatchMessageW on NT and
7483 later.
7484 (w32_wnd_proc): If the character code sent by WM_CHAR or
7485 WM_SYSCHAR is above 255, post a WM_UNICHAR message, not the
7486 original message. Call DefWindowProcW on NT and later.
7487
7488 2012-08-10 Glenn Morris <rgm@gnu.org>
7489
7490 * Makefile.in (config_h): Fix conf_post.h out-of-tree build location.
7491
7492 * lisp.h (DIRECTORY_SEP): Let configure set it.
7493
7494 2012-08-09 Dmitry Antipov <dmantipov@yandex.ru>
7495
7496 Use TSET for write access to Lisp_Object slots of struct terminal.
7497 * termhooks.h (TSET): New macro.
7498 * coding.c, terminal.c, xselect.c: Adjust users.
7499
7500 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
7501
7502 * xdisp.c (safe_eval_handler): Remove prototype. Receive args describing
7503 the failing expression, include them in the error message.
7504 * eval.c (internal_condition_case_n): Pass nargs and args to hfun.
7505 * lisp.h (internal_condition_case_n): Update declaration.
7506
7507 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
7508
7509 Inline functions to examine and change buffer overlays.
7510 * buffer.c (unchain_both): New function.
7511 * buffer.h (buffer_get_overlays, buffer_set_overlays):
7512 (buffer_has_overlays): New function.
7513 (enum overlay_type): New enum.
7514 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c:
7515 * insdel.c, intervals.c, print.c, xdisp.c: Adjust users.
7516
7517 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
7518
7519 Inline functions to examine and change buffer intervals.
7520 * alloc.c (mark_interval_tree): Remove.
7521 (MARK_INTERVAL_TREE): Simplify.
7522 (UNMARK_BALANCE_INTERVALS): Remove. Adjust users.
7523 * intervals.c (buffer_balance_intervals): New function.
7524 (graft_intervals_into_buffer): Adjust indentation.
7525 (set_intervals_multibyte): Simplify.
7526 * buffer.h (BUF_INTERVALS): Remove.
7527 (buffer_get_intervals, buffer_set_intervals): New function.
7528 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c, insdel.c:
7529 * intervals.c, textprop.c: Adjust users.
7530
7531 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
7532
7533 Inline functions to examine and change string intervals.
7534 * lisp.h (STRING_INTERVALS, STRING_SET_INTERVALS): Remove.
7535 (string_get_intervals, string_set_intervals): New function.
7536 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
7537 * lread.c, print.c, textprop.c: Adjust users.
7538
7539 2012-08-08 Glenn Morris <rgm@gnu.org>
7540
7541 * lisp.mk (lisp): Remove language/persian.elc.
7542
7543 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
7544
7545 Cleanup intervals.
7546 * intervals.h (NULL_INTERVAL, DEFAULT_INTERVAL): Remove.
7547 (NULL_INTERVAL_P): Likewise. Adjust users.
7548 (FRONT_STICKY_P, END_NONSTICKY_P, FRONT_NONSTICKY_P):
7549 Adjust comment. Move under #if 0.
7550 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
7551 * print.c, syntax.c, textprop.c, xdisp.c: Adjust users.
7552
7553 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
7554
7555 Check total length of intervals with eassert.
7556 * intervals.h (CHECK_TOTAL_LENGTH): Remove.
7557 * intervals.c: Change all users to eassert.
7558
7559 2012-08-07 Eli Zaretskii <eliz@gnu.org>
7560
7561 * .gdbinit (xframe, xwindow, nextcons, xcar, xcdr, xlist):
7562 Rename fields to match removal of FGET and WGET and disuse of
7563 INTERNAL_FIELD in Lisp_Cons.
7564
7565 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
7566
7567 Revert and cleanup Lisp_Cons, Lisp_Misc and Lisp_Symbol things.
7568 * lisp.h (struct Lisp_Symbol): Change xname to meaningful
7569 name since all xname users are fixed long time ago. Do not
7570 use INTERNAL_FIELD.
7571 (set_symbol_name, set_symbol_function, set_symbol_plist):
7572 (set_symbol_next, set_overlay_plist): New function.
7573 (struct Lisp_Cons): Do not use INTERNAL_FIELD.
7574 (struct Lisp_Overlay): Likewise.
7575 (CVAR, MVAR, SVAR): Remove.
7576 * alloc.c, buffer.c, buffer.h, bytecode.c, cmds.c, data.c:
7577 * doc.c, eval.c, fns.c, keyboard.c, lread.c, nsselect.m:
7578 * xterm.c: Adjust users.
7579 * .gdbinit: Change to use name field of struct Lisp_Symbol
7580 where appropriate.
7581
7582 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
7583
7584 Basic functions to set Lisp_Object and pointer slots of intervals.
7585 * intervals.h (interval_set_parent, interval_set_object):
7586 (interval_set_left, interval_set_right, interval_set_plist):
7587 (interval_copy_parent): New function.
7588 (SET_INTERVAL_OBJECT, SET_INTERVAL_PARENT, INTERVAL_PTR_SIZE): Remove.
7589 (RESET_INTERVAL, COPY_INTERVAL_CACHE, MERGE_INTERVAL_CACHE):
7590 Adjust indentation.
7591 (INTERVAL_SIZE): Remove. Adjust users.
7592 * alloc.c, intervals.c, lread.c, textprop.c: Use new functions.
7593
7594 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
7595
7596 Drop PGET and revert read access to Lisp_Objects slots of Lisp_Process.
7597 * process.h (PGET): Remove.
7598 (struct Lisp_Process): Do not use INTERNAL_FIELD.
7599 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
7600
7601 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
7602
7603 Drop WGET and revert read access to Lisp_Objects slots of struct window.
7604 * window.h (WGET): Remove.
7605 (struct window): Do not use INTERNAL_FIELD.
7606 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
7607 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
7608 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
7609 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
7610 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
7611 Adjust users.
7612
7613 2012-08-07 Chong Yidong <cyd@gnu.org>
7614
7615 * window.c (Fwindow_edges, Fwindow_pixel_edges)
7616 (Fwindow_absolute_pixel_edges, Fdelete_other_windows_internal)
7617 (Fdelete_window_internal): Signal an error if the window is not on
7618 a live frame (Bug#12025).
7619
7620 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
7621
7622 Drop FGET and revert read access to Lisp_Objects slots of struct frame.
7623 * frame.h (FGET): Remove.
7624 (struct frame): Do not use INTERNAL_FIELD.
7625 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
7626 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
7627 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
7628 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
7629
7630 2012-08-06 Juanma Barranquero <lekktu@gmail.com>
7631
7632 * w32.c: Silence compiler warnings.
7633 (map_w32_filename): Remove unused variable `is_fat'.
7634 (chase_symlinks): Add parentheses around expression.
7635
7636 2012-08-06 Glenn Morris <rgm@gnu.org>
7637
7638 * sysdep.c: Respect BROKEN_GETWD.
7639
7640 * dispnew.c (GNU_LIBRARY_PENDING_OUTPUT_COUNT, PENDING_OUTPUT_COUNT):
7641 Let configure handle it.
7642 (stdio_ext.h) [DISPNEW_NEEDS_STDIO_EXT]: Include it.
7643
7644 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7645
7646 Use GCALIGNMENT where appropriate.
7647 * alloc.c (XMALLOC_HEADER_ALIGNMENT, roundup_size):
7648 (union aligned_Lisp_Symbol, union aligned_Lisp_Misc):
7649 (mark_maybe_pointer, pure_alloc): Change to use GCALIGNMENT.
7650
7651 2012-08-06 Eli Zaretskii <eliz@gnu.org>
7652
7653 * w32menu.c (set_frame_menubar, initialize_frame_menubar):
7654 Don't use FRAME_MENU_BAR_ITEMS as an lvalue.
7655
7656 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
7657
7658 * buffer.h (struct buffer): Revert `indirections' to a simple int;
7659 that should be sufficient for everyone.
7660
7661 2012-08-06 Jan Djärv <jan.h.d@swipnet.se>
7662
7663 * keyboard.c (timer_check_2): Add break so timer_check returns next
7664 timeout.
7665
7666 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7667
7668 Fix Windows build errors introduced after converting to WGET and WSET.
7669 * w32term.c (w32_set_vertical_scroll_bar): Change to use WSET.
7670 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
7671
7672 2012-08-06 Jan Djärv <jan.h.d@swipnet.se>
7673
7674 * nsterm.m (ns_frame_rehighlight): Use FSET.
7675
7676 * nsmenu.m (ns_update_menubar): Use FSET.
7677
7678 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7679
7680 Separate read and write access to Lisp_Object slots of Lisp_Process.
7681 * process.h (PGET, PSET): New macros similar to AREF and ASET.
7682 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
7683
7684 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7685
7686 Separate read and write access to Lisp_Object slots of struct window.
7687 * window.h (WGET, WSET): New macros similar to AREF and ASET.
7688 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
7689 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
7690 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
7691 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
7692 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
7693 Adjust users.
7694
7695 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7696
7697 Fix Windows build errors introduced after converting to FGET and FSET.
7698 * w32term.c (x_frame_rehighlight, x_scroll_bar_create):
7699 (w32_condemn_scroll_bars, w32_redeem_scroll_bar):
7700 (w32_judge_scroll_bars): Change to use FSET.
7701 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
7702
7703 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7704
7705 Fix replacement typo.
7706 * window.c (replace_window): Set root_window instead of
7707 selected_window. This fixes a total window subsystem
7708 malfunction reported by Bastien Guerry <bzg@gnu.org>.
7709
7710 2012-08-06 Glenn Morris <rgm@gnu.org>
7711
7712 * lisp.mk (lisp): Add language/persian.elc.
7713
7714 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7715
7716 Separate read and write access to Lisp_Object slots of struct frame.
7717 * frame.h (FGET, FSET): New macros similar to AREF and ASET.
7718 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
7719 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
7720 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
7721 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
7722
7723 2012-08-05 Andreas Schwab <schwab@linux-m68k.org>
7724
7725 * emacs.c (decode_env_path): Only use defaulted if WINDOWSNT.
7726
7727 2012-08-05 Dmitry Antipov <dmantipov@yandex.ru>
7728
7729 Generalize common compile-time constants.
7730 * lisp.h (header_size, bool_header_size, word_size): Now here.
7731 (struct Lisp_Vector): Add comment.
7732 (struct Lisp_Bool_Vector): Move up to define handy constants.
7733 (VECSIZE, PSEUDOVECSIZE): Simplify.
7734 (SAFE_ALLOCA_LISP): Use new constant. Adjust indentation.
7735 * buffer.c, buffer.h, bytecode.c, callint.c, eval.c, fns.c:
7736 * font.c, fontset.c, keyboard.c, keymap.c, macros.c, menu.c:
7737 * msdos.c, w32menu.c, w32term.h, window.c, xdisp.c, xfaces.c:
7738 * xfont.c, xmenu.c: Use word_size where appropriate.
7739
7740 2012-08-05 Lawrence Mitchell <wence@gmx.li>
7741
7742 * search.c (Freplace_match): Treat \? in the replacement text
7743 literally (Bug#8161).
7744
7745 2012-08-05 Chong Yidong <cyd@gnu.org>
7746
7747 * term.c (Vsuspend_tty_functions, Vresume_tty_functions):
7748 * frame.c (Vdelete_frame_functions):
7749 * emacs.c (Vkill_emacs_hook): Doc fix.
7750
7751 2012-08-04 Eli Zaretskii <eliz@gnu.org>
7752
7753 * xfns.c (x_set_menu_bar_lines): Fix compilation error in
7754 --with-x-toolkit=no builds.
7755 Reported by Carsten Mattner <carstenmattner@gmail.com>.
7756
7757 2012-08-04 Chong Yidong <cyd@gnu.org>
7758
7759 * syntax.c (Fmodify_syntax_entry): Doc fix.
7760
7761 2012-08-04 Eli Zaretskii <eliz@gnu.org>
7762
7763 Fix startup warnings about ../site-lisp on MS-Windows. (Bug#11959)
7764 * w32.c (init_environment): Change the default values of many
7765 environment variables in dflt_envvars[] to NULL, to avoid pushing
7766 them into environment when they were not already defined.
7767 Remove the code that deletes site-lisp subdirectories from the default
7768 value of EMACSLOADPATH, as it is no longer needed.
7769 (check_windows_init_file): Now external, not static.
7770 Use Vload_path as is, without adding anything, as this function is now
7771 called when Vload_path is already set up.
7772
7773 * w32.h (check_windows_init_file): Add prototype.
7774
7775 * emacs.c (init_cmdargs) [WINDOWSNT]: When running from the build
7776 directory, ignore the /*/i386/ tail in Vinvocation_directory, for
7777 compatibility with Posix platforms.
7778 (main): Move the call to check_windows_init_file to here from
7779 w32.c.
7780 (decode_env_path) [WINDOWSNT]: Expand the %emacs_dir%/ prefix, if
7781 any, in the DEFALT argument into the root of the Emacs build or
7782 installation tree, as appropriate.
7783
7784 * callproc.c (init_callproc_1): Call decode_env_path instead of
7785 doing its equivalent by hand.
7786 (init_callproc): Replace DOS_NT condition with MSDOS, thus letting
7787 the code that sets Vexec_path run on MS-Windows.
7788
7789 * lread.c (init_lread): Add comments to #ifdef's.
7790
7791 * msdos.c (dos_set_window_size, IT_update_begin)
7792 (IT_frame_up_to_date, IT_set_frame_parameters): Use FVAR and WVAR
7793 instead of direct references.
7794
7795 2012-08-04 Paul Eggert <eggert@cs.ucla.edu>
7796
7797 Export DEFAULT_REHASH_* to GDB.
7798 * lisp.h (DEFAULT_REHASH_THRESHOLD, DEFAULT_REHASH_SIZE):
7799 Now constants, not macros.
7800
7801 2012-08-03 Paul Eggert <eggert@cs.ucla.edu>
7802
7803 Remove unnecessary casts involving pointers.
7804 These casts are no longer needed now that we assume C89 or later,
7805 since they involve casting to or from void *.
7806 * alloc.c (make_pure_string, make_pure_c_string, pure_cons)
7807 (make_pure_float, make_pure_vector):
7808 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP):
7809 * macros.c (Fstart_kbd_macro):
7810 * menu.c (find_and_return_menu_selection):
7811 * minibuf.c (read_minibuf_noninteractive):
7812 * sysdep.c (closedir):
7813 * xdisp.c (x_produce_glyphs):
7814 * xfaces.c (compare_fonts_by_sort_order):
7815 * xfns.c (x_real_positions, select_visual):
7816 * xselect.c (x_stop_queuing_selection_requests)
7817 (x_get_window_property, x_get_window_property_as_lisp_data):
7818 * xterm.c (x_set_frame_alpha, x_find_modifier_meanings):
7819 Remove unnecessary pointer casts.
7820 * alloc.c (record_xmalloc): New function.
7821 * lisp.h (record_xmalloc): New decl.
7822 (SAFE_ALLOCA): Now takes just one arg -- the size -- and acts
7823 more like a function. This is because the pointer cast is not
7824 needed. All uses changed.
7825 * print.c (print_string, print_error_message): Avoid length recalc.
7826
7827 Improve fix for macroexp crash with debugging (Bug#12118).
7828 * lisp.h (ASET) [ENABLE_CHECKING]: Pay attention to
7829 ARRAY_MARK_FLAG when checking subscripts, because ASET is
7830 not supposed to be invoked from the garbage collector.
7831 See Andreas Schwab in <http://bugs.gnu.org/12118#25>.
7832 (gc_aset): New function, which is like ASET but can be
7833 used in the garbage collector.
7834 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
7835 (set_hash_index): Use it instead of ASET.
7836
7837 2012-08-03 Eli Zaretskii <eliz@gnu.org>
7838
7839 Support symlinks on latest versions of MS-Windows.
7840 * w32.c: Include winioctl.h and aclapi.h.
7841 (is_symlink, chase_symlinks, enable_privilege, restore_privilege)
7842 (revert_to_self): Forward declarations of static functions.
7843 <static BOOL g_b_init_get_security_info>:
7844 <g_b_init_create_symbolic_link>: New static flags.
7845 (globals_of_w32): Initialize them to zero.
7846 (GetSecurityInfo_Proc, CreateSymbolicLink_Proc): New typedefs.
7847 (map_w32_filename): Improve commentary. Simplify switch.
7848 (SYMBOLIC_LINK_FLAG_DIRECTORY): Define if not defined in system
7849 headers (most versions of MinGW w32api don't).
7850 (get_security_info, create_symbolic_link)
7851 (get_file_security_desc_by_handle, is_symlink, chase_symlinks):
7852 New functions.
7853 (sys_access, sys_chmod): Call 'chase_symlinks' to resolve symlinks
7854 in the argument file name.
7855 (sys_access): Call unc_volume_file_attributes only if
7856 GetFileAttributes fails with network-related error codes.
7857 (sys_rename): Diagnose renaming of a symlink when the user doesn't
7858 have the required privileges.
7859 (get_file_security_desc_by_name): Rename from
7860 get_file_security_desc.
7861 (stat_worker): New function, with most of the guts of 'stat', and
7862 with addition of handling of symlinks and support for 'lstat'.
7863 If possible, get file's attributes and security information by
7864 handle, not by name. Produce S_IFLNK bit for symlinks, when
7865 called from 'lstat'.
7866 (stat, lstat): New functions, call 'stat_worker'.
7867 (symlink, readlink, careadlinkat): Rewritten to create and resolve
7868 symlinks when the underlying filesystem supports them.
7869
7870 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
7871
7872 Fix macroexp crash on Windows with debugging (Bug#12118).
7873 * lisp.h (ASET) [ENABLE_CHECKING]: Ignore ARRAY_MARK_FLAG when
7874 checking subscripts; problem introduced with the recent
7875 "ASET (a, i, v)" rather than "AREF (a, i) = v" patch.
7876 (ARRAY_MARK_FLAG): Now a macro as well as a constant,
7877 since it's used in non-static inline functions now.
7878
7879 * xfaces.c (face_at_buffer_position, face_for_overlay_string):
7880 Don't assume buffer size fits in 'int'. Remove unused local.
7881
7882 Use C99-style 'extern inline' if available.
7883 * buffer.h (BUFFER_INLINE):
7884 * category.h (CATEGORY_INLINE):
7885 * character.h (CHARACTER_INLINE):
7886 * charset.h (CHARSET_INLINE):
7887 * composite.h (COMPOSITE_INLINE):
7888 * dispextern.h (DISPEXTERN_INLINE):
7889 * lisp.h (LISP_INLINE):
7890 * systime.h (SYSTIME_INLINE):
7891 New macro, replacing 'static inline' in this header.
7892 * buffer.h, category.h, character.h, charset.h, composite.h:
7893 * dispextern.h, lisp.h, systime.h:
7894 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
7895 * alloc.c (LISP_INLINE):
7896 * buffer.c (BUFFER_INLINE):
7897 * category.c (CATEGORY_INLINE):
7898 * character.c (CHARACTER_INLINE):
7899 * charset.c (CHARSET_INLINE):
7900 * composite.c (COMPOSITE_INLINE):
7901 * dispnew.c (DISPEXTERN_INLINE):
7902 * sysdep.c (SYSTIME_INLINE):
7903 Define to EXTERN_INLINE, so that the corresponding functions
7904 are compiled into code.
7905 * conf_post.h (INLINE, EXTERN_INLINE, INLINE_HEADER_BEGIN)
7906 (INLINE_HEADER_END): New macros.
7907 * lisp.h (PSEUDOVECTOR_FLAG): Now a macro as well as a constant,
7908 since it's used in non-static inline functions now.
7909 (VALMASK) [!USE_LSB_TAG]: Likewise.
7910
7911 2012-08-02 Glenn Morris <rgm@gnu.org>
7912
7913 * s/: Remove empty directory.
7914
7915 * s/ms-w32.h: Move to ../nt/inc.
7916 * makefile.w32-in (TAGS, TAGS-gmake, MS_W32_H):
7917 Update for new ms-w32.h location.
7918
7919 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
7920
7921 Port to Solaris 8.
7922 * syswait.h (WRETCODE): Remove, consistently with ../configure.ac.
7923
7924 2012-08-02 Glenn Morris <rgm@gnu.org>
7925
7926 * nsterm.m (ns_exec_path, ns_load_path): Use SEPCHAR rather than
7927 hard-coding the path separator.
7928
7929 2012-08-01 Paul Eggert <eggert@cs.ucla.edu>
7930
7931 Use "ASET (a, i, v)" rather than "AREF (a, i) = v".
7932 This how ASET and AREF are supposed to work, and makes
7933 it easier to think about future improvements. See
7934 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00026.html>.
7935 * charset.h (set_charset_attr): New function.
7936 All lvalue-style uses of CHARSET_DECODER etc. changed to use it.
7937 * lisp.h (ASET): Rewrite so as not to use AREF in an lvalue style.
7938 (aref_addr): New function. All uses of &AREF(...) changed.
7939 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
7940 (set_hash_index): New functions. All lvalue-style uses of
7941 HASH_KEY etc. changed.
7942 * keyboard.c (set_prop): New function. All lvalue-style uses
7943 of PROP changed.
7944
7945 2012-08-01 Alp Aker <alp.tekin.aker@gmail.com>
7946
7947 * nsterm.m (ns_set_vertical_scroll_bar, ns_redeem_scroll_bar)
7948 (EmacsWindow-accessibilityAttributeValue, EmacsScroller-initFrame:)
7949 (EmacsScroller-dealloc): Adjust to use WVAR. (Bug#12114)
7950 * nsfns.m (ns_set_name_as_filename): Likewise.
7951 * nsmenu.m (ns_update_menubar): Likewise.
7952 * nsselect.m (symbol_to_nsstring): Adjust to use SVAR.
7953
7954 2012-08-01 Eli Zaretskii <eliz@gnu.org>
7955
7956 * .gdbinit (xcar, xcdr, xlist, xwindow, nextcons, xprintsym):
7957 Adapt to latest changes in field names of the corresponding Lisp
7958 objects.
7959
7960 * xdisp.c (try_window_id): Use WVAR in IF_DEBUG code.
7961
7962 2012-08-01 Glenn Morris <rgm@gnu.org>
7963
7964 * s/msdos.h: Remove file.
7965 * conf_post.h [MSDOS]: New section, moved from s/msdos.h.
7966 * Makefile.in (S_FILE): Remove.
7967 (config_h): Remove S_FILE.
7968
7969 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
7970
7971 * s/ms-w32.h (DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP):
7972 Remove; moved to nt/config.nt.
7973
7974 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
7975
7976 Use INTERNAL_FIELD for conses and overlays.
7977 * lisp.h (struct Lisp_Cons): Use INTERNAL_FIELD.
7978 Remove obsolete comment.
7979 (MVAR): New macro.
7980 (struct Lisp_Overlay): Use INTERNAL_FIELD.
7981 * alloc.c, buffer.c, buffer.h, fns.c: Adjust users.
7982
7983 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
7984
7985 Use INTERNAL_FIELD for symbols.
7986 * lisp.h (SVAR): New macro. Adjust users.
7987 * alloc.c, bytecode.c, cmds.c, data.c, doc.c, eval.c:
7988 * fns.c, keyboard.c, lread.c, xterm.c: Users changed.
7989
7990 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
7991
7992 Use INTERNAL_FIELD for processes.
7993 * process.h (PVAR): New macro. Adjust style.
7994 (struct Lisp_Process): Change Lisp_Object members to INTERNAL_FIELD.
7995 * print.c, process.c, sysdep.c, w32.c, xdisp.c: Users changed.
7996
7997 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
7998
7999 Use INTERNAL_FIELD for windows.
8000 * window.h (WVAR): New macro.
8001 (struct window): Change Lisp_Object members to INTERNAL_FIELD.
8002 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
8003 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
8004 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, nsterm.m, print.c:
8005 * textprop.c, w32fns.c, w32menu.c, w32term.c, window.c, xdisp.c:
8006 * xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
8007
8008 2012-08-01 Paul Eggert <eggert@cs.ucla.edu>
8009
8010 * coding.h (CODING_ATTR_FLUSHING): Remove; unused and wouldn't work.
8011
8012 2012-08-01 Glenn Morris <rgm@gnu.org>
8013
8014 * lisp.h (IS_DIRECTORY_SEP, IS_DEVICE_SEP, IS_ANY_SEP):
8015 Move to configure.ac.
8016
8017 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
8018
8019 * makefile.w32-in (CONFIG_H): Update dependencies.
8020 (CONF_POST_H): New macro.
8021
8022 * s/ms-w32.h (SEPCHAR, NULL_DEVICE): Remove; moved to nt/config.nt.
8023
8024 2012-07-31 Glenn Morris <rgm@gnu.org>
8025
8026 * Makefile.in (S_FILE): No longer set by configure.
8027
8028 * conf_post.h (config_opsysfile): Move earlier, so that WINDOWSNT
8029 is available.
8030 (alloca.h) [WINDOWSNT]: Don't include it on MS Windows.
8031
8032 * process.h (NULL_DEVICE):
8033 * emacs.c (SEPCHAR):
8034 * editfns.c (USER_FULL_NAME): Let configure set them.
8035
8036 * s/README, s/template.h: Remove files.
8037
8038 * conf_post.h [HPUX]: Undefine HAVE_RANDOM and HAVE_RINT.
8039
8040 * conf_post.h (AMPERSAND_FULL_NAME, subprocesses):
8041 Move to configure.ac.
8042
8043 2012-07-31 Eli Zaretskii <eliz@gnu.org>
8044
8045 * .gdbinit (xframe): Adapt to introduction of FVAR and the
8046 resulting renaming of 'struct frame' members.
8047
8048 * w32menu.c (w32_menu_show): Revert bogus introduction of FVAR.
8049
8050 * fontset.c (dump_fontset): Fix compilation with ENABLE_CHECKING
8051 after introduction of FVAR.
8052
8053 2012-07-31 Jan Djärv <jan.h.d@swipnet.se>
8054
8055 * nsmenu.m (update_frame_tool_bar): Change key from NSObject* to id.
8056
8057 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Use drawInRect
8058 instead of compositeToPoint.
8059 (applicationShouldTerminate): Pass NS String literal to NSRunAlertPanel.
8060
8061 * nsfns.m, nsmenu.m, nsterm.m: Adopt to struct frame/FVAR changes.
8062
8063 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
8064
8065 Generalize INTERNAL_FIELD between buffers, keyboards and frames.
8066 * lisp.h (INTERNAL_FIELD): New macro.
8067 * buffer.h (BUFFER_INTERNAL_FIELD): Remove.
8068 (BVAR): Change to use INTERNAL_FIELD.
8069 * keyboard.h (KBOARD_INTERNAL_FIELD): Likewise.
8070 (KVAR): Change to use INTERNAL_FIELD.
8071 * frame.h (FVAR): New macro.
8072 (struct frame): Use INTERNAL_FIELD for all Lisp_Object fields.
8073 * alloc.c, buffer.c, data.c, dispnew.c, dosfns.c, eval.c, frame.c:
8074 * fringe.c, gtkutil.c, minibuf.c, nsfns.m, nsterm.m, print.c:
8075 * term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
8076 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
8077
8078 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
8079
8080 Miscellaneous fixes for non-default X toolkits.
8081 * xfns.c (Fx_file_dialog): Change to SSDATA to avoid warnings.
8082 * xterm.c (x_frame_of_widget): Remove redundant prototype.
8083 Move under #ifdef USE_LUCID.
8084 (x_create_toolkit_scroll_bar): Adjust scroll_bar_name
8085 definition and usage to avoid warnings.
8086
8087 2012-07-31 Jan Djärv <jan.h.d@swipnet.se>
8088
8089 * nsterm.m (openFiles): Fix previous checkin.
8090
8091 2012-07-31 Paul Eggert <eggert@cs.ucla.edu>
8092
8093 * indent.c (compute_motion): Remove unused local.
8094
8095 2012-07-31 Glenn Morris <rgm@gnu.org>
8096
8097 * s/usg5-4-common.h (wait3, WRETCODE): Let configure set them.
8098
8099 * conf_post.h [USG5_4]:
8100 Move remaining contents of s/usg5-4-common.h here.
8101 * s/usg5-4-common.h: Remove file.
8102
8103 * conf_post.h [IRIX6_5]: Move remaining contents of s/irix6-5.h here.
8104 * s/irix6-5.h: Remove file.
8105
8106 * conf_post.h [DARWIN_OS]: Move remaining contents of s/darwin.h here.
8107 * s/darwin.h: Remove file.
8108
8109 * conf_post.h [HPUX]: Move random, srandom here from s/hpux10-20.h.
8110 * s/hpux10-20.h: Remove file, which is now empty.
8111
8112 2012-07-30 Glenn Morris <rgm@gnu.org>
8113
8114 * conf_post.h: New, split from configure.ac's AH_BOTTOM.
8115 * Makefile.in (config_h): Add conf_post.h.
8116 * makefile.w32-in (CONFIG_H): Add conf_post.h.
8117
8118 2012-07-30 Jan Djärv <jan.h.d@swipnet.se>
8119
8120 * nsterm.m (ns_do_open_file): New variable.
8121 (ns_term_init): Set ns_do_open_file to YES after run returns.
8122 (openFile, openTempFile, openFileWithoutUI, openFiles):
8123 Open files only if ns_do_open_file.
8124
8125 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
8126
8127 * lisp.h (SWITCH_ENUM_CAST): Remove. All uses removed.
8128 This no-op macro hasn't been needed for many years.
8129 * src/regex.c (SWITCH_ENUM_CAST) [!emacs]: Likewise.
8130
8131 Export DIRECTORY_SEP, TYPEMASK, VALMASK to GDB.
8132 * alloc.c (gdb_make_enums_visible) [USE_LSB_TAG]: Add lsb_bits.
8133 * lisp.h (enum lsb_bits) [USE_LSB_TAG]: New enum, for
8134 gdb_make_enums_visible.
8135 (TYPEMASK, VALMASK) [USE_LSB_TAGS]: Now enum constants, not macros.
8136 (DIRECTORY_SEP): Now a constant, not a macro.
8137
8138 2012-07-30 Eli Zaretskii <eliz@gnu.org>
8139
8140 * w32fns.c (w32_wnd_proc): Pass w32_keyboard_codepage to
8141 w32_kbd_patch_key as the 2nd arg. (Bug#12082)
8142
8143 * w32term.c <w32_keyboard_codepage>: Renamed from
8144 keyboard_codepage and now external. All users changed.
8145
8146 * w32term.h: Add declaration of w32_keyboard_codepage.
8147
8148 * w32inevt.c (w32_kbd_patch_key): Accept an additional argument --
8149 the codepage to translate keys to Unicode. If this argument is
8150 -1, use the value returned by GetConsoleCP. All callers changed.
8151
8152 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
8153
8154 Update .PHONY listings in makefiles.
8155 * Makefile.in (.PHONY): Add all, mostlyclean, clean,
8156 bootstrap-clean, distclean, maintainer-clean, versioclean,
8157 extraclean, frc.
8158
8159 * lisp.h (STRING_BYTES_BOUND): Cast entire result to ptrdiff_t.
8160 This is a bit clearer. Fix some commentary typos.
8161
8162 2012-07-30 Glenn Morris <rgm@gnu.org>
8163
8164 * s/netbsd.h: Let configure include signal.h if needed.
8165 Remove file, which is now empty.
8166
8167 * s/usg5-4-common.h (_longjmp, _setjmp, TIOCSIGSEND):
8168 Let configure set them.
8169 * s/irix6-5.h (_longjmp, _setjmp, TIOCSIGSEND):
8170 No more need to undefine.
8171
8172 2012-07-30 Andreas Schwab <schwab@linux-m68k.org>
8173
8174 * keymap.c (Fkey_description): Don't remove 0x80 bit from
8175 non-single-byte char when adding meta modifier. (Bug#12090)
8176
8177 2012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
8178
8179 Convert safe_call to use variable number of arguments.
8180 * xdisp.c (safe_call): Convert to use varargs. Adjust users.
8181 (safe_call2): Fix comment.
8182 * lisp.h (safe_call): Adjust prototype.
8183 * coding.c (encode_coding_object): Change to use safe_call2.
8184 * xfaces.c (merge_face_heights): Change to use safe_call1.
8185
8186 2012-07-30 Glenn Morris <rgm@gnu.org>
8187
8188 * s/aix4-2.h (sigmask): No need to undefine it, since syssignal.h
8189 does that unconditionally. Remove file, which is now empty.
8190
8191 * s/freebsd.h, s/gnu-linux.h, s/sol2-6.h, s/unixware.h:
8192 Remove empty files.
8193
8194 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
8195
8196 Export to GDB most of lisp.h's remaining object-like macros.
8197 * lisp.h (min, max): Move earlier, because they're used earlier now.
8198 (INTMASK, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK)
8199 (CHAR_TABLE_STANDARD_SLOTS, CHARTAB_SIZE_BITS_0)
8200 (CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2, CHARTAB_SIZE_BITS_3)
8201 (DEFAULT_HASH_SIZE, COMPILED_ARGLIST, COMPILED_BYTECODE)
8202 (COMPILED_CONSTANTS, COMPILED_STACK_DEPTH, COMPILED_DOC_STRING)
8203 (COMPILED_INTERACTIVE, CHAR_ALT, CHAR_SUPER, CHAR_HYPER, CHAR_SHIFT)
8204 (CHAR_CTL, CHAR_META, CHAR_MODIFIER_MASK, CHARACTERBITS)
8205 (MANY, UNEVALLED, FLOAT_TO_STRING_BUFSIZE, MAX_ALLOCA):
8206 Now constants, for GDB. They need not be macros.
8207 (MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM, STRING_BYTES_BOUND):
8208 Now constants, for GDB, as well as macros, for static initializers.
8209 (CHAR_TABLE_STANDARD_SLOTS, CHAR_TABLE_EXTRA_SLOTS):
8210 Move to after the definition of struct Lisp_Char_Table,
8211 since the former now needs that type defined.
8212 (enum CHARTAB_SIZE_BITS, enum CHAR_TABLE_STANDARD_SLOTS)
8213 (enum DEFAULT_HASH_SIZE, enum Lisp_Compiled, enum char_bits)
8214 (enum maxargs, enum FLOAT_TO_STRING_BUFSIZE, enum MAX_ALLOCA):
8215 New enums, for gdb_make_enums_visible.
8216 (GLYPH_MODE_LINE_FACE): Remove; unused.
8217 * alloc.c (STRING_BYTES_MAX): Now a constant, not a macro.
8218 (gdb_make_enums_visible): Add enum CHARTAB_SIZE_BITS, enum
8219 CHAR_TABLE_STANDARD_SLOTS, enum char_bits, enum DEFAULT_HASH_SIZE,
8220 enum FLOAT_TO_STRING_BUFSIZE, enum Lisp_Bits, enum Lisp_Compiled,
8221 enum maxargs, enum MAX_ALLOCA.
8222 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): Remove.
8223 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Remove;
8224 no longer needed, now that they are done in lisp.h.
8225
8226 2012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
8227
8228 Cleanup string bytes checking.
8229 * alloc.c (GC_STRING_BYTES, CHECK_STRING_BYTES): Remove. Convert
8230 all users to STRING_BYTES or string_bytes if GC_CHECK_STRING_BYTES.
8231 (check_string_bytes): Define to empty if not GC_CHECK_STRING_BYTES.
8232 (check_sblock, compact_small_strings): Simplify.
8233
8234 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
8235
8236 * lisp.h (LISP_INT_TAG, LISP_INT1_TAG, LISP_STRING_TAG): Remove.
8237 These macros are confusing and no longer need to be defined, as
8238 the enum values now suffice. All uses replaced with definiens.
8239 (Lisp_Int1, Lisp_String): Define directly; this is clearer.
8240
8241 2012-07-29 Juanma Barranquero <lekktu@gmail.com>
8242
8243 * makefile.w32-in (LISP_H, $(BLD)/emacs.$(O), $(BLD)/w32inevt.$(O))
8244 ($(BLD)/w32console.$(O)): Update dependencies.
8245
8246 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
8247
8248 Remove HIDE_LISP_IMPLEMENTATION and cleanup cons free list check.
8249 * lisp.h (HIDE_LISP_IMPLEMENTATION): Remove as useless for a long
8250 time. Adjust users.
8251 (CHECK_CONS_LIST): Remove. Convert all users to check_cons_list.
8252
8253 2012-07-29 Jan Djärv <jan.h.d@swipnet.se>
8254
8255 * lread.c (init_lread): Remove if-statement in ifdef HAVE_NS before
8256 setting sitelisp (Bug#12010).
8257
8258 2012-07-29 Eli Zaretskii <eliz@gnu.org>
8259
8260 * w32heap.h (OS_9X): Rename from OS_WINDOWS_95.
8261
8262 * w32heap.c (cache_system_info):
8263 * w32.c (sys_rename):
8264 * w32proc.c (find_child_console, sys_kill): All users changed.
8265
8266 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
8267
8268 * alloc.c (Fgarbage_collect): Indent as per usual Emacs style.
8269
8270 2012-07-29 Eli Zaretskii <eliz@gnu.org>
8271
8272 * makefile.w32-in (LISP_H): Add $(NT_INC)/stdalign.h.
8273
8274 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
8275
8276 Cleanup statistics calculation in Fgarbage_collect.
8277 * alloc.c (Fgarbage_collect): Rename t1 to meaningful start.
8278 Fix zombies percentage calculation. Simplify elapsed time calculation.
8279
8280 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
8281
8282 Generalize marker debugging code under MARKER_DEBUG and use eassert.
8283 * insdel.c (CHECK_MARKERS, check_markers_debug_flag): Remove.
8284 (gap_left, gap_right, adjust_markers_for_delete, insert_1_both)
8285 (insert_from_string_1, insert_from_gap, insert_from_buffer_1)
8286 (replace_range, replace_range_2, del_range_2): Change to eassert.
8287 * marker.c (byte_char_debug_check): Adjust style.
8288
8289 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
8290
8291 Don't use the abbreviation "win" to refer to Windows (Bug#10421).
8292 * regex.c (MAX_BUF_SIZE): Remove some incorrect and
8293 long-ago-commented-out code that talks about "WIN32".
8294 * w32heap.h (OS_WINDOWS_95): Rename from OS_WIN95.
8295 All uses changed.
8296
8297 2012-07-28 Paul Eggert <eggert@cs.ucla.edu>
8298
8299 Use Gnulib stdalign module (Bug#9772, Bug#9960).
8300 * alloc.c (XMALLOC_BASE_ALIGNMENT, GC_POINTER_ALIGNMENT, pure_alloc):
8301 Simplify by using alignof.
8302 (pure_alloc) [! USE_LSB_TAG]: Don't over-align EMACS_INT values.
8303 * lisp.h: Include <stdalign.h>.
8304 (GCALIGNMENT): New macro and constant.
8305 (DECL_ALIGN): Remove. All uses replaced by alignas (GCALIGNMENT).
8306 (USE_LSB_TAG): ifdef on alignas, not on DECL_ALIGN.
8307 (stdalign): New macro, if not already defined.
8308
8309 2012-07-28 Eli Zaretskii <eliz@gnu.org>
8310
8311 Fix non-ASCII input in non-GUI frames on MS-Windows. (Bug#12055)
8312 * w32inevt.c: Include w32inevt.h.
8313 (w32_read_console_input): New inline function, calls either
8314 ReadConsoleInputA or ReadConsoleInputW, depending on the value of
8315 w32_console_unicode_input.
8316 (fill_queue): Call w32_read_console_input instead of ReadConsoleInput.
8317 (w32_kbd_patch_key, key_event): Use the codepage returned by
8318 GetConsoleCP, rather than the ANSI codepage returned by GetLocaleInfo.
8319 (key_event): use uChar.UnicodeChar only if
8320 w32_console_unicode_input is non-zero.
8321
8322 * w32console.c: Include w32heap.h.
8323 <w32_console_unicode_input>: New global variable.
8324 (initialize_w32_display): Set w32_console_unicode_input to 1 on NT
8325 family of Windows, zero otherwise.
8326
8327 * w32inevt.h: Declare w32_console_unicode_input.
8328
8329 * xdisp.c (init_iterator): Don't reference tip_frame in a build
8330 --without-x. (Bug#11742)
8331
8332 2012-07-27 Paul Eggert <eggert@cs.ucla.edu>
8333
8334 Adjust GDB to reflect pvec_type changes (Bug#12036).
8335 * .gdbinit (xvectype, xpr, xbacktrace): Adjust to reflect the
8336 2012-07-04 changes to pseudovector representation.
8337 Problem reported by Eli Zaretskii in <http://bugs.gnu.org/12036#30>.
8338
8339 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
8340
8341 * dbusbind.c (XD_DBUS_VALIDATE_BUS_ADDRESS): Canonicalize session
8342 bus address.
8343 (xd_close_bus, Fdbus_init_bus): Handle reference counter properly.
8344
8345 2012-07-27 Eli Zaretskii <eliz@gnu.org>
8346
8347 * alloc.c (listn): Fix the order the arguments are consed onto the
8348 list.
8349
8350 * lisp.h (enum constype): Use CONSTYPE_HEAP and CONSTYPE_PURE for
8351 enumeration constants, as PURE and HEAP are too general, and clash
8352 with other headers and sources, such as gmalloc.c and the
8353 MS-Windows system headers. All users changed.
8354
8355 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
8356
8357 Revert last save_excursion_save and save_excursion_restore changes.
8358 * alloc.c, editfns.c, marker.c, lisp.h: Revert.
8359 Lots of crashes reported by Chong Yidong <cyd@gnu.org>.
8360
8361 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
8362
8363 Fix recently-introduced typos in Windows port.
8364 Reported by Martin Rudalics <rudalics@gmx.at>.
8365 * w32.c (init_environment): Replace comma with semicolon.
8366 * w32fns.c (syms_of_w32fns): Add missing parenthesis.
8367
8368 2012-07-27 Paul Eggert <eggert@cs.ucla.edu>
8369
8370 Improve GDB symbol export (Bug#12036).
8371 * .gdbinit (xgetptr, xgetint, xgettype): Set $bugfix in different
8372 arms of an 'if', not using conditional expressions; otherwise GDB
8373 complains about the types in the unevaluated arm when the argument
8374 is an integer literal.
8375 (xgetint): Simplify expression.
8376 * alloc.c (gdb_make_enums_visible): New constant. This ports to
8377 GCC 3.4.2 the export of symbols to GDB. Problem reported by Eli
8378 Zaretskii in <http://bugs.gnu.org/12036#13>.
8379 * lisp.h (PUBLISH_TO_GDB): Remove. All uses removed. No longer
8380 needed now that we have gdb_make_enums_visible.
8381 (enum CHECK_LISP_OBJECT_TYPE, enum Lisp_Bits, enum More_Lisp_Bits)
8382 (enum enum_USE_LSB_TAG):
8383 New enum types, packaging up enums that need to be exported to GDB.
8384
8385 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
8386
8387 Utility function to make a list from specified amount of objects.
8388 * lisp.h (enum constype): New datatype.
8389 (listn): New prototype.
8390 * alloc.c (listn): New function.
8391 (Fmemory_use_count, syms_of_alloc): Use it.
8392 * buffer.c (syms_of_buffer): Likewise.
8393 * callint.c (syms_of_callint): Likewise.
8394 * charset.c (define_charset_internal): Likewise.
8395 * coding.c (syms_of_coding): Likewise.
8396 * keymap.c (syms_of_keymap): Likewise.
8397 * search.c (syms_of_search): Likewise.
8398 * syntax.c (syms_of_syntax): Likewise.
8399 * w32.c (init_environment): Likewise.
8400 * w32fns.c (Fw32_battery_status, syms_of_w32fns): Likewise.
8401 * xdisp.c (syms_of_xdisp): Likewise.
8402 * xfns.c (syms_of_xfns): Likewise.
8403
8404 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
8405
8406 Fast save_excursion_save and save_excursion_restore.
8407 * lisp.h (struct Lisp_Excursion): New data type.
8408 (PVEC_EXCURSION): New pseudovector type.
8409 (XEXCURSION, XSETEXCURSION, EXCURSIONP): Convenient macros
8410 to deal with it. Adjust comments.
8411 (init_marker, attach_marker): New prototype.
8412 (unchain_marker): Adjust prototype.
8413 * marker.c (attach_marker): Change to global.
8414 (init_marker): New function.
8415 * alloc.c (Fmake_marker, build_marker): Use it.
8416 (build_marker): More easserts.
8417 (mark_object): Handle struct Lisp_Excursion.
8418 * editfns.c (save_excursion_save, save_excursion_restore):
8419 Reimplement to use struct Lisp_Excursion. Add comments.
8420
8421 2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
8422
8423 Fix export of symbols to GDB (Bug#12036).
8424 * alloc.c (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL)
8425 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Move these here from
8426 emacs.c, as this is a more-suitable home. Had this been done earlier
8427 the fix for 12036 would have avoided some of the problems noted in
8428 <http://bugs.gnu.org/12036#13> by Eli Zaretskii, as the scope problems
8429 would have been more obvious.
8430 * emacs.c: Do not include <verify.h>; no longer needed.
8431 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS)
8432 (gdb_GCTYPEBITS, gdb_USE_LSB_TAG)
8433 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
8434 Remove; now done in lisp.h.
8435 * lisp.h (PUBLISH_TO_GDB): New macro.
8436 (GCTYPEBITS, USE_LSB_TAG, CHECK_LISP_OBJECT_TYPE, enum pvec_type)
8437 (DATA_SEG_BITS): Use it.
8438 (GCTYPEBITS, USE_LSB_TAG): Now also an enum, for GDB.
8439 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Now just an enum, for GDB.
8440 * mem-limits.h (EXCEEDS_LISP_PTR): Redo so that DATA_SEG_BITS need
8441 not be usable in #if. This simplifies things.
8442
8443 2012-07-26 Juanma Barranquero <lekktu@gmail.com>
8444
8445 * makefile.w32-in ($(BLD)/emacs.$(O)): Update dependencies.
8446
8447 2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
8448
8449 Simplify export of symbols to GDB (Bug#12036).
8450 * .gdbinit (xgetptr, xgetint, xgettype): Don't use "set $bugfix =
8451 $bugfix.i", as this doesn't work (with GDB 7.4.1, anyway).
8452 (xgetptr, xgetint, xgettype, xcoding, xcharset, xprintbytestr):
8453 Adjust to changes in lisp.h and emacs.c, by using
8454 CHECK_LISP_OBJECT_TYPE rather than gdb_use_struct, VALMASK instead
8455 of $valmask, DATA_SEG_BITS instead of gdb_data_seg_bits,
8456 INTTYPEBITS instead of gdb_gctypebits - 1, USE_LSB_TAG instead of
8457 gdb_use_lsb, (1 << GCTYPEBITS) - 1 instead of $tagmask, VALBITS
8458 instead of gdb_valbits.
8459 (xvectype, xvector, xpr, xprintstr, xbacktrace): Similarly, use
8460 PSEUDOVECTOR_FLAG instead of PVEC_FLAG, and ARRAY_MARK_FLAG
8461 instead of gdb_array_mark_flag.
8462 (xboolvector): Get size from $->size, not $->header.size.
8463 Use BOOL_VECTOR_BITS_PER_CHAR rather than mystery constants.
8464 (xreload, hook-run, hookpost-run): Remove.
8465 * emacs.c: Include <verify.h>.
8466 (gdb_use_lsb, gdb_use_struct, gdb_valbits, gdb_gctypebits)
8467 (gdb_data_seg_bits, PVEC_FLAG, gdb_array_mark_flag, gdb_pvec_type):
8468 Remove.
8469 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS, gdb_GCTYPEBITS)
8470 (gdb_USE_LSB_TAG): New enum constants.
8471 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
8472 Also define these as enum constants, so they're visible to GDB.
8473 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): New macros.
8474 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Also define these
8475 as constants, so they're visible to GDB.
8476 * lisp.h (VALBITS, INTTYPEBITS, FIXNUM_BITS, PSEUDOVECTOR_SIZE_BITS)
8477 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK, BOOL_VECTOR_BITS_PER_CHAR):
8478 Now enum constants, not macros, so they're visible to GDB.
8479 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Default to 0, as this is
8480 more convenient now. All uses changed.
8481 (VALMASK) [USE_LSB_TAG]: Also define in this case.
8482 * mem-limits.h (EXCEEDS_LISP_PTR): Adjust to DATA_SEG_BITS change.
8483
8484 2012-07-26 Dmitry Antipov <dmantipov@yandex.ru>
8485
8486 Explicitly free restriction data that are not needed anymore.
8487 * editfns.c (save_restriction_restore): Free restriction data.
8488
8489 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
8490
8491 * eval.c (Fautoload_do_load): Rename from do_autoload, export to Lisp,
8492 add argument, tune behavior, and adjust all callers.
8493
8494 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
8495
8496 Use typedef for EMACS_INT, EMACS_UINT.
8497 * lisp.h, s/ms-w32.h (EMACS_INT, EMACS_UINT): Use typedefs rather
8498 than macros. This simplifies debugging in the usual case, since
8499 it lets GDB show addresses as 'EMACS_INT *' rather than 'long int *'
8500 and it allows expressions involving EMACS_INT casts.
8501 * .gdbinit (xreload): Simplify by using EMACS_INT cast.
8502
8503 2012-07-25 Jan Djärv <jan.h.d@swipnet.se>
8504
8505 * nsterm.m (ns_read_socket): Return early if there is a modal
8506 window (Bug#12043).
8507
8508 2012-07-25 Martin Rudalics <rudalics@gmx.at>
8509
8510 * frame.c (Fredirect_frame_focus): In doc-string don't mention
8511 that FOCUS-FRAME can be omitted.
8512
8513 2012-07-25 Dmitry Antipov <dmantipov@yandex.ru>
8514
8515 Adjust buffer text indirection counters at the end of Fkill_buffer.
8516 * buffer.c (Fkill_buffer): Adjust indirection counters when the
8517 buffer is definitely dead. This should really fix an issue reported
8518 by Christoph Scholtes again. (Bug#12007).
8519 (init_buffer_once): Initialize indirection counters of
8520 buffer_defaults and buffer_local_symbols (for sanity and safety).
8521
8522 2012-07-24 Eli Zaretskii <eliz@gnu.org>
8523
8524 * xdisp.c (init_iterator): Don't compute dimensions of truncation
8525 and continuation glyphs on tooltip frames, leave them at zero.
8526 Avoids continued lines in tooltips. (Bug#11832)
8527
8528 2012-07-24 Dmitry Antipov <dmantipov@yandex.ru>
8529
8530 Simplify copy_overlay.
8531 * buffer.c (copy_overlay): Simplify. Use build_marker.
8532 * lisp.h (struct Lisp_Overlay): Restore comment with minor tweaks.
8533
8534 2012-07-23 Eli Zaretskii <eliz@gnu.org>
8535
8536 * print.c (print_object): Don't crash when a frame's name is nil
8537 or invalid. (Bug#12025)
8538
8539 * window.c (decode_any_window): Disable CHECK_LIVE_FRAME test, as
8540 it signals an error when a tooltip frame is being created.
8541
8542 2012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
8543
8544 Cleanup miscellaneous objects allocation and initialization.
8545 * alloc.c (allocate_misc): Change to static. Add argument to
8546 specify the subtype. Adjust comment and users.
8547 (build_overlay): New function.
8548 * buffer.c (copy_overlays, Fmake_overlay): Use it.
8549 * lisp.h (struct Lisp_Overlay): Remove obsolete comment.
8550 (allocate_misc): Remove prototype.
8551 (build_overlay): Add prototype.
8552
8553 2012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
8554
8555 Swap buffer text indirection counters in Fbuffer_swap_text.
8556 * buffer.c (Fbuffer_swap_text): Swap indirections too.
8557 This avoids crash reported by Christoph Scholtes at
8558 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00785.html.
8559
8560 2012-07-22 Jan Djärv <jan.h.d@swipnet.se>
8561
8562 * nsmenu.m (Popdown_data): New struct.
8563 (pop_down_menu): p->pointer is Popdown_data. Release the pool and
8564 free Popdown_data.
8565 (ns_popup_dialog): Use NSAutoreleasePool and pass it to pop_down_menu.
8566 (initWithContentRect): Make imgView and contentView non-static
8567 and autorelease them. Also autorelease img and matrix (Bug#12005).
8568 (dealloc): Remove (Bug#12005).
8569
8570 2012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
8571
8572 Adjust consing_since_gc when objects are explicitly freed.
8573 * alloc.c (GC_DEFAULT_THRESHOLD): New macro.
8574 (Fgarbage_collect): Use it. Change minimum to 1/10 of default.
8575 (free_cons, free_misc): Subtract object size from consing_since_gc.
8576
8577 2012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
8578
8579 Simplify and cleanup markers positioning code.
8580 * marker.c (attach_marker): More useful eassert.
8581 (live_buffer, set_marker_internal): New function.
8582 (Fset_marker, set_marker_restricted): Use set_marker_internal.
8583 (set_marker_both, set_marker_restricted_both): Use live_buffer.
8584
8585 2012-07-22 Paul Eggert <eggert@cs.ucla.edu>
8586
8587 * buffer.h (struct buffer.indirections): Now ptrdiff_t, not int,
8588 as it's limited by the amount of memory, not by INT_MAX.
8589
8590 2012-07-21 Eli Zaretskii <eliz@gnu.org>
8591
8592 * keyboard.c (keys_of_keyboard): Bind language-change to 'ignore'
8593 in special-event-map. See the discussion at
8594 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00417.html
8595 for the reasons.
8596
8597 * w32menu.c (add_menu_item): Cast to ULONG_PTR when assigning
8598 info.dwItemData. Fixes crashes on 64-bit Windows.
8599 Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
8600
8601 2012-07-21 Jan Djärv <jan.h.d@swipnet.se>
8602
8603 * nsterm.m (accessibilityAttributeValue): New function. (Bug#11134).
8604 (conversationIdentifier): Return value is NSInteger.
8605 * nsterm.m (accessibilityAttributeValue): Surround with NS_IMPL_COCOA.
8606
8607 2012-07-21 Chong Yidong <cyd@gnu.org>
8608
8609 * window.c (decode_any_window): Signal an error if the window is
8610 on a dead frame (Bug#11984).
8611
8612 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
8613
8614 Add indirection counting to speed up Fkill_buffer.
8615 * buffer.h (struct buffer): New member.
8616 * buffer.c (Fget_buffer_create): Set indirection counter to 0.
8617 (Fmake_indirect_buffer): Set indirection counter to -1, increment
8618 base buffer indirection counter.
8619 (compact_buffer): If ENABLE_CHECKING, verify indirection counters.
8620 (Fkill_buffer): Adjust indirection counters as needed, don't walk
8621 through buffer list if indirection counter is 0.
8622
8623 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
8624
8625 Extend the value returned by Fgarbage_collect with heap statistics.
8626 * alloc.c (Qheap): New symbol.
8627 (syms_of_alloc): DEFSYM it.
8628 (Fgarbage_collect): If DOUG_LEA_MALLOC, add mallinfo data.
8629 (Fmemory_free): Remove.
8630 (syms_of_alloc): Don't defsubr it.
8631 * buffer.c (Fcompact_buffer): Remove.
8632 (syms_of_buffer): Don't defsubr it.
8633
8634 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
8635
8636 Make maybe_gc inline.
8637 Verify that inlining is always possible (GCC 4.7.1, -O3 -Winline).
8638 * lisp.h (consing_since_gc, gc_relative_threshold)
8639 (memory_full_cons_threshold): Revert declaration.
8640 (maybe_gc): Remove prototype, define as inline.
8641 * alloc.c: Remove old commented-out code.
8642 (consing_since_gc, gc_relative_threshold)
8643 (memory_full_cons_threshold): Revert to global.
8644 (maybe_gc): Remove.
8645
8646 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
8647
8648 Simple wrapper for make_unibyte_string, adjust font_open_by_name.
8649 * lisp.h (build_unibyte_string): New function.
8650 * dosfns.c, fileio.c, fns.c, ftfont.c, process.c:
8651 * sysdep.c, w32fns.c, xfns.c: Use it.
8652 * font.c (font_open_by_name): Change 2nd and 3rd args to the only arg
8653 of type Lisp_Object to avoid redundant calls to make_unibyte_string.
8654 Adjust users accordingly.
8655 * font.h (font_open_by_name): Adjust prototype.
8656
8657 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
8658
8659 Cleanup calls to Fgarbage_collect.
8660 * lisp.h (maybe_gc): New prototype.
8661 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
8662 Remove declarations.
8663 * alloc.c (maybe_gc): New function.
8664 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
8665 Make them static.
8666 * bytecode.c (MAYBE_GC): Use maybe_gc.
8667 * eval.c (eval_sub, Ffuncall): Likewise.
8668 * keyboard.c (read_char): Likewise. Adjust call to maybe_gc
8669 to avoid dependency from auto-save feature.
8670
8671 2012-07-19 Paul Eggert <eggert@cs.ucla.edu>
8672
8673 * buffer.h (FOR_EACH_BUFFER): Rename from 'for_each_buffer'.
8674 (FOR_EACH_PER_BUFFER_OBJECT_AT): Rename from
8675 'for_each_per_buffer_object_at'.
8676 All uses changed. It's better to use upper-case for macros that
8677 cannot be implemented as functions, to give the reader a clue
8678 that they're special.
8679
8680 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
8681
8682 * alloc.c (Fgarbage_collect): Tweak docstring.
8683
8684 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
8685
8686 Tweak the value returned from Fgarbage_collect again.
8687 * alloc.c (Fgarbage_collect): New return value, as confirmed in
8688 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00418.html.
8689 Adjust documentation.
8690 (total_vector_bytes): Rename to total_vector_slots, adjust
8691 accounting.
8692 (total_free_vector_bytes): Rename to total_free_vector_slots,
8693 adjust accounting.
8694 (Qstring_bytes, Qvector_slots): New symbols.
8695 (syms_of_alloc): DEFSYM them.
8696
8697 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
8698
8699 Buffer compaction primitive which may be used from Lisp.
8700 * buffer.c (compact_buffer, Fcompact_buffer): New function.
8701 (syms_of_buffer): Register Fcompact_buffer.
8702 * alloc.c (Fgarbage_collect): Use compact_buffer.
8703 * buffer.h (compact_buffer): New prototype.
8704 (struct buffer_text): New member.
8705
8706 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
8707
8708 New macro to iterate over all buffers, miscellaneous cleanups.
8709 * lisp.h (all_buffers): Remove declaration.
8710 * buffer.h (all_buffers): Add declaration, with comment.
8711 (for_each_buffer): New macro.
8712 * alloc.c (Fgarbage_collect, mark_object): Use it.
8713 * buffer.c (Fkill_buffer, Fbuffer_swap_text, Fset_buffer_multibyte)
8714 (init_buffer): Likewise.
8715 * data.c (Fset_default): Likewise.
8716 * coding.c (code_conversion_restore): Remove redundant check
8717 for dead buffer.
8718 * buffer.c (Fkill_buffer): Likewise. Remove obsolete comment.
8719
8720 2012-07-18 Andreas Schwab <schwab@linux-m68k.org>
8721
8722 Fix bug that created negative-length intervals.
8723 * intervals.c (merge_interval_right, merge_interval_left):
8724 Do not zero out this interval if it is absorbed by its children,
8725 as this interval's total length doesn't change in that case. See
8726 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00403.html>.
8727
8728 2012-07-18 Paul Eggert <eggert@cs.ucla.edu>
8729
8730 * alloc.c (Fmake_bool_vector): Fix off-by-8 bug
8731 when invoking (make-bool-vector N t) and N is a positive
8732 multiple of 8 -- the last 8 bits were mistakenly cleared.
8733
8734 Remove some struct layout assumptions in bool vectors.
8735 * alloc.c (bool_header_size): New constant.
8736 (header_size, word_size): Move earlier, as they're now used earlier.
8737 Use 'word_size' in a few more places, where it's appropriate.
8738 (Fmake_bool_vector, sweep_vectors): Don't assume that there is no
8739 padding before the data member of a bool vector.
8740 (sweep_vectors): Use PSEUDOVECTOR_TYPEP, in an eassert, rather
8741 than doing the check by hand with an abort ().
8742
8743 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
8744
8745 * eval.c (Fdefvar): Don't check constants since we only set the var if
8746 it's not yet defined anyway (bug#11904).
8747
8748 * lisp.h (last_undo_boundary): Declare new var.
8749 * keyboard.c (command_loop_1): Set it.
8750 * cmds.c (Fself_insert_command): Use it to only remove boundaries that
8751 were auto-added by the command loop (bug#11774).
8752
8753 2012-07-18 Andreas Schwab <schwab@linux-m68k.org>
8754
8755 * w32font.c (Qsymbol): Remove local definition.
8756 (syms_of_w32font): Don't DEFSYM it.
8757
8758 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
8759
8760 Fix sweep_vectors to handle large bool vectors correctly.
8761 * alloc.c (sweep_vectors): Account total_vector_bytes for
8762 bool vectors larger than VBLOCK_BYTES_MAX.
8763
8764 2012-07-18 Chong Yidong <cyd@gnu.org>
8765
8766 * frame.c (x_set_frame_parameters): Revert bogus change introduced
8767 in 2012-05-25 commit by Paul Eggert (Bug#11738).
8768
8769 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
8770
8771 Return more descriptive data from Fgarbage_collect.
8772 Suggested by Stefan Monnier in
8773 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00369.html.
8774 * alloc.c (bounded_number): New function.
8775 (total_buffers, total_vectors): New variable.
8776 (total_string_size): Rename to total_string_bytes, adjust users.
8777 (total_vector_size): Rename to total_vector_bytes, adjust users.
8778 (sweep_vectors): Account total_vectors and total_vector_bytes.
8779 (Fgarbage_collect): New return value. Adjust documentation.
8780 (gc_sweep): Account total_buffers.
8781 (Fmemory_free, Fmemory_use_counts): Use bounded_number.
8782 (VECTOR_SIZE): Remove.
8783 * data.c (Qfloat, Qvector, Qsymbol, Qstring, Qcons): Make global.
8784 (Qinterval, Qmisc): New symbols.
8785 (syms_of_data): Initialize them.
8786 * lisp.h (Qinterval, Qsymbol, Qstring, Qmisc, Qvector, Qfloat)
8787 (Qcons, Qbuffer): New declarations.
8788
8789 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
8790
8791 * alloc.c (Fmemory_free): Account for memory-free's own storage.
8792 Round up, not down. Improve doc.
8793
8794 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
8795
8796 Restore old code in allocate_string_data to avoid Faset breakage.
8797 Reported by Julien Danjou <julien@danjou.info> in
8798 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00371.html.
8799 * alloc.c (allocate_string_data): Restore old code with minor
8800 adjustments, fix comment to explain this subtle issue.
8801
8802 2012-07-17 Eli Zaretskii <eliz@gnu.org>
8803
8804 Remove FILE_SYSTEM_CASE.
8805 * s/msdos.h (FILE_SYSTEM_CASE): Don't define.
8806
8807 * fileio.c (FILE_SYSTEM_CASE): Don't define.
8808 (Ffile_name_directory, Fexpand_file_name): Don't use FILE_SYSTEM_CASE.
8809 Fixes problems on MS-DOS with Vtemp_file_name_pattern when
8810 call-process-region passes it through expand-file-name.
8811
8812 * dired.c (file_name_completion): Don't use FILE_SYSTEM_CASE.
8813
8814 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
8815
8816 Fix crash when creating indirect buffer (Bug#11917)
8817 * buffer.c (buffer_lisp_local_variables): Add argument CLONE.
8818 Don't handle unbound variables specially if non-zero.
8819 (Fbuffer_local_variables): Pass zero.
8820 (clone_per_buffer_values): Pass non-zero.
8821
8822 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
8823
8824 * gnutls.c (emacs_gnutls_handshake): Revert last change. Add QUIT
8825 to make the loop interruptible.
8826
8827 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
8828
8829 * gnutls.c (emacs_gnutls_handshake): Only retry if
8830 GNUTLS_E_INTERRUPTED.
8831
8832 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
8833
8834 Cleanup and convert miscellaneous checks to eassert.
8835 * alloc.c (mark_interval): Fix comment, partially rephrase
8836 old comment from intervals.h (see below).
8837 * intervals.c (find_interval, adjust_intervals_for_insertion)
8838 (delete_interval, adjust_intervals_for_deletion)
8839 (graft_intervals_into_buffer, temp_set_point_both, copy_intervals):
8840 Convert to eassert.
8841 (adjust_intervals_for_insertion, make_new_interval):
8842 Remove obsolete and unused code.
8843 * intervals.h (struct interval): Remove obsolete comment.
8844 * textprotp.c (erase_properties): Remove unused code.
8845 (Fadd_text_properties, set_text_properties_1, Fremove_text_properties)
8846 (Fremove_list_of_text_properties): Convert to eassert.
8847
8848 2012-07-17 Chong Yidong <cyd@gnu.org>
8849
8850 * editfns.c (Finsert_char): Doc fix.
8851
8852 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
8853
8854 Fix previous change to make Fmemory_free always accurate.
8855 * alloc.c (make_interval): Update total_free_intervals.
8856 (make_float): Likewise for total_free_floats.
8857 (free_cons, Fcons): Likewise for total_free_conses.
8858 (SETUP_ON_FREE_LIST, allocate_vector_from_block):
8859 Likewise for total_free_vector_bytes.
8860 (Fmake_symbol): Likewise for total_free_symbols.
8861 (bytes_free): Remove.
8862
8863 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
8864
8865 Simple free memory accounting feature.
8866 * alloc.c (bytes_free, total_free_vector_bytes): New variable.
8867 (sweep_vectors): Accumulate size of free vectors.
8868 (Fgarbage_collect): Setup bytes_free.
8869 (Fmemory_free): New function.
8870 (syms_of_alloc): Register it.
8871
8872 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
8873
8874 Cleanup overlays checking.
8875 * buffer.h (OVERLAY_VALID): Remove as useless synonym of OVERLAYP.
8876 * buffer.c (overlay_touches_p, recenter_overlay_lists): Change to
8877 eassert and OVERLAYP.
8878 (sort_overlays): Change to use OVERLAYP.
8879
8880 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
8881
8882 * editfns.c (Finsert_char): Make it interactive, and make the
8883 second arg optional. Copy interactive spec and docstring from
8884 ucs-insert.
8885
8886 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
8887
8888 * floatfns.c (Fabs): Do not wrap fabs inside IN_FLOAT (Bug#11913).
8889 Unlike the other wrapped functions, fabs has an unspecified
8890 effect on errno.
8891
8892 2012-07-16 Jan Djärv <jan.h.d@swipnet.se>
8893
8894 * nsterm.m (keyDown): Interpret flags without left/right bits
8895 as the left key (Bug#11670).
8896
8897 2012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
8898
8899 Remove empty and useless init functions.
8900 * lisp.h (init_character_once, init_fns, init_image)
8901 (init_filelock, init_sound): Remove prototype.
8902 * character.c (init_character_once): Remove.
8903 * filelock.c (init_filelock): Likewise.
8904 * fns.c (init_fns): Likewise.
8905 * image.c (init_image): Likewise.
8906 * sound.c (init_sound): Likewise.
8907 * emacs.c (main): Adjust accordingly.
8908
8909 2012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
8910
8911 * gtkutil.h: Tiny cleanups.
8912 (use_old_gtk_file_dialog): Remove useless declaration.
8913 (xg_uses_old_file_dialog): Add suggested const attribute.
8914
8915 2012-07-15 Eli Zaretskii <eliz@gnu.org>
8916
8917 * bidi.c (MAX_STRONG_CHAR_SEARCH): New macro.
8918 (bidi_paragraph_init): Use it to limit search forward for a strong
8919 directional character in abnormally large paragraphs full of
8920 neutral or weak characters. (Bug#11943)
8921
8922 2012-07-15 Stefano Facchini <stefano.facchini@gmail.com> (tiny change)
8923
8924 * gtkutil.c (xg_create_tool_bar): Apply "primary-toolbar" style to
8925 the toolbar (Bug#9451).
8926 (xg_make_tool_item): Give the widget event box a transparent
8927 background.
8928
8929 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
8930
8931 Cleanup basic allocation variables and functions.
8932 * alloc.c (ignore_warnings, init_intervals, init_float)
8933 (init_cons, init_symbol, init_marker): Remove.
8934 (interval_block_index): Initialize to INTERVAL_BLOCK_SIZE.
8935 (float_block_index): Initialize to FLOAT_BLOCK_SIZE.
8936 (cons_block_index): Initialize to CONS_BLOCK_SIZE.
8937 (symbol_block_size): Initialize to SYMBOL_BLOCK_SIZE.
8938 (marker_block_index): Initialize to MARKER_BLOCK_SIZE.
8939 (staticidx, init_alloc_once, init_strings, free_ablock):
8940 Remove redundant initialization.
8941 * fns.c (init_weak_hash_tables): Remove.
8942 * lisp.h (init_weak_hash_tables): Remove prototype.
8943
8944 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
8945
8946 Use zero_vector where appropriate.
8947 * alloc.c (zero_vector): Define as Lisp_Object. Adjust users
8948 accordingly.
8949 * lisp.h (zero_vector): New declaration.
8950 * font.c (null_vector): Remove.
8951 (syms_of_font): Remove initialization and staticpro.
8952 (font_list_entities, font_find_for_lface): Change to use zero_vector.
8953 * keymap.c (Faccessible_keymaps): Likewise.
8954
8955 2012-07-15 Leo Liu <sdl.web@gmail.com>
8956
8957 * fringe.c: Fix typo in comments.
8958
8959 2012-07-14 Leo Liu <sdl.web@gmail.com>
8960
8961 * fringe.c: Add a new bitmap exclamation-mark.
8962
8963 2012-07-14 Eli Zaretskii <eliz@gnu.org>
8964
8965 * gmalloc.c (GMALLOC_INHIBIT_VALLOC): Don't reference.
8966
8967 * s/msdos.h (BSD_SYSTEM, DATA_START, GC_SETJMP_WORKS, HAVE_MOUSE)
8968 (HAVE_MENUS): Don't define, defined by editing config.in with
8969 msdos/sed2v2.inp.
8970 (GMALLOC_INHIBIT_VALLOC): Don't define.
8971 (MODE_LINE_BINARY_TEXT): Remove, not used anymore.
8972
8973 2012-07-14 Juanma Barranquero <lekktu@gmail.com>
8974
8975 * s/ms-w32.h (GC_SETJMP_WORKS, GC_MARK_STACK): Set in nt/config.nt.
8976
8977 2012-07-14 Glenn Morris <rgm@gnu.org>
8978
8979 * s/aix4-2.h, s/freebsd.h, s/gnu-linux.h, s/hpux10-20.h:
8980 * s/irix6-5.h, s/netbsd.h, s/sol2-6.h, s/unixware.h:
8981 Let configure set GC_SETJMP_WORKS, GC_MARK_STACK.
8982
8983 2012-07-13 Glenn Morris <rgm@gnu.org>
8984
8985 * s/gnu-linux.h (GC_MARK_SECONDARY_STACK): Let configure set it.
8986
8987 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Let configure set it.
8988 * s/irix6-5.h (SETUP_SLAVE_PTY): No more need to unset it.
8989
8990 2012-07-13 Jan Djärv <jan.h.d@swipnet.se>
8991
8992 * nsterm.m (uRect): Only define if NS_IMPL_GNUSTEP.
8993 (x_free_frame_resources): Pass x_free_frame_resources to NSTRACE.
8994 (ns_lisp_to_color, ns_string_to_lispmod, ns_term_init)
8995 (ns_term_shutdown, requestService, initFrameFromEmacs): Use SSDATA
8996 where appropriate.
8997 (ns_exec_path, ns_load_path, changeFont): Put () around assignment used
8998 as boolean expression.
8999 (x_set_window_size): Remove unused variable toolbar.
9000 (ns_get_color_default, ns_mod_to_lisp): Remove.
9001 (ns_mouse_position): Remove unused variables xchar and ychar.
9002 (ns_compute_glyph_string_overhangs): Remove unused variable face.
9003 (ns_set_vertical_scroll_bar): Remove unused variable count.
9004 (ns_delete_terminal): Remove unused variable i.
9005 (ns_term_init): Remove unused variables r, g and b.
9006 (mouseDown): Remove unused variable window.
9007 (windowDidResize): Move definition of theWindow inside NS_IMPL_GNUSTEP.
9008 (initFrameFromEmacs): Remove unused variable vbextra.
9009 (mouseEntered): Remove unused variables p and dpyinfo.
9010 (mouseExited): Remove unused variables p and r.
9011 (ns_define_frame_cursor, ns_clear_frame_area)
9012 (ns_draw_window_cursor, ns_initialize_display_info): Make static.
9013 (menuDown): Assign [sender tag] to variable and cast the variable.
9014
9015 * nsterm.h (menuDown): Add id as type to argument sender.
9016 (ns_display_info_for_name): Add Lisp_Object argument.
9017 (ns_term_init): Add Lisp_Object argument.
9018 (ns_map_event_to_object): Add void argument.
9019 (ns_string_from_pasteboard, ns_string_to_pasteboard): Add correct
9020 prototype with arguments and only declare if __OBJC__.
9021 (nxatoms_of_nsselect): Add void argument.
9022 (ns_lisp_to_cursor_type): Add Lisp_Object argument.
9023 (ns_alloc_autorelease_pool): Add void argument.
9024 (ns_release_autorelease_pool): Add void* argument.
9025 (ns_get_defaults_value): Add const char* argument.
9026
9027 * nsmenu.m (ns_update_menubar, ns_menu_show, process_dialog)
9028 (initFromContents): Use SSDATA where appropriate.
9029 (ns_update_menubar): Add braces to ambigous if-else.
9030 (initWithTitle): Put () around assignment in if statement.
9031 (ns_menu_show): Remove unused variables window and keymap.
9032 (update_frame_tool_bar): Remove unused variable selected_p.
9033 (initWithContentRect): Remove unused variable this_cmd_name.
9034
9035 * nsimage.m (ns_load_image, allocInitFromFile): Use SSDATA where
9036 appropriate.
9037 (setXBMColor): Remove unused variable len.
9038 (setPixmapData): Put () around assignment in loop statement.
9039
9040 * nsfont.m (ns_get_family, ns_lang_to_script, ns_otf_to_script)
9041 (ns_registry_to_script, ns_get_req_script, nsfont_open): Use SSDATA
9042 where appropriate.
9043 (ns_get_covering_families, ns_findfonts, nsfont_list_family): Put ()
9044 around assignment in loop statement.
9045 (nsfont_open): Remove unused variable i.
9046 (nsfont_open): Remove unused variable len.
9047 (nsfont_draw): Remove unused variable cs.
9048
9049 * nsfns.m (x_set_icon_name, ns_set_name_internal)
9050 (ns_set_name_as_filename, ns_implicitly_set_icon_type)
9051 (x_set_icon_type, ns_lisp_to_cursor_type, Fns_read_file_name)
9052 (Fns_get_resource, Fns_set_resource, Fx_open_connection)
9053 (Fns_font_name, Fns_perform_service)
9054 (Fns_convert_utf8_nfd_to_nfc, ns_do_applescript)
9055 (Fns_do_applescript, Fx_show_tip): Use SSDATA where appropriate.
9056 (ns_set_name): Remove unused variable view.
9057 (x_set_menu_bar_lines): Remove unused variable olines.
9058 (x_set_tool_bar_lines): Remove unused variable root_window.
9059 (Fns_list_colors): Put () around assignment in while statement.
9060 (Fns_perform_service): Remove unused variable len.
9061 (Fns_display_usable_bounds): Remove unused variable top.
9062 (syms_of_nsfns): Remove unused variable i.
9063
9064 * nsmenu.m (ns_update_menubar): Exchange place of argument 2 and 3 to
9065 memcpy (Bug#11907).
9066
9067 2012-07-13 Kalle Kankare <kalle.kankare@iki.fi> (tiny change)
9068
9069 * image.c (Fimagemagick_types): Initialize ex with GetExceptionInfo
9070 and free it with DestroyExceptionInfo (Bug#11558).
9071
9072 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
9073
9074 * s/ms-w32.h (FIRST_PTY_LETTER, HAVE_SOCKETS): Move to nt/config.nt.
9075 (HAVE_ATTRIBUTE_ALIGNED, HAVE_C99_STRTOLD, HAVE___BUILTIN_UNWIND_INIT):
9076 Set here, not in nt/config.nt.
9077
9078 2012-07-13 Eli Zaretskii <eliz@gnu.org>
9079
9080 * xdisp.c (move_it_in_display_line_to): On GUI terminals, allow
9081 cursor overflow into the last glyph on display line when the right
9082 fringe is off. (Bug#11832)
9083
9084 2012-07-13 Paul Eggert <eggert@cs.ucla.edu>
9085
9086 * xdisp.c (produce_special_glyphs): Now static.
9087 * dispextern.h (produce_special_glyphs): Remove decl.
9088
9089 2012-07-13 Glenn Morris <rgm@gnu.org>
9090
9091 * s/bsd-common.h, s/cygwin.h: Remove empty files.
9092 * s/freebsd.h, s/netbsd.h: Do not include bsd-common.h.
9093
9094 * s/usg5-4-common.h (USG, USG5):
9095 * s/template.h (USG5, USG, HPUX, BSD4_2, BSD_SYSTEM):
9096 * s/sol2-6.h (SOLARIS2):
9097 * s/irix6-5.h (IRIX6_5):
9098 * s/hpux10-20.h (USG, USG5, HPUX):
9099 * s/gnu-linux.h (USG, GNU_LINUX):
9100 * s/freebsd.h (BSD_SYSTEM):
9101 * s/darwin.h (BSD4_2, BSD_SYSTEM, DARWIN_OS):
9102 * s/cygwin.h (CYGWIN):
9103 * s/bsd-common.h (BSD_SYSTEM, BSD4_2):
9104 * s/aix4-2.h (USG, USG5, _AIX): Move "system type" macros to configure.
9105
9106 2012-07-13 BT Templeton <bpt@hcoop.net> (tiny change)
9107
9108 * nsfont.m (ns_charset_covers): Don't abort if no bitmap (Bug#11853).
9109
9110 2012-07-13 Glenn Morris <rgm@gnu.org>
9111
9112 * s/usg5-4-common.h (NSIG_MINIMUM): Let configure set it.
9113
9114 * s/gnu-linux.h, s/irix6-5.h: Let configure set ULIMIT_BREAK_VALUE.
9115
9116 * process.c (init_process_emacs): Replace MIN_PTY_KERNEL_VERSION.
9117 * s/darwin.h (MIN_PTY_KERNEL_VERSION): Remove single-use macro.
9118
9119 2012-07-12 Glenn Morris <rgm@gnu.org>
9120
9121 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Move to configure.
9122
9123 * process.c (init_process_emacs): Rename from init_process.
9124 The old name is also the name of a Mach system call.
9125 * lisp.h, emacs.c: Update for this name change.
9126 * nsgui.h, sysselect.h, s/darwin.h: Remove workaround that is no
9127 longer needed.
9128
9129 2012-07-12 Eli Zaretskii <eliz@gnu.org>
9130
9131 * xdisp.c (insert_left_trunc_glyphs): Fix incorrect size in
9132 memmove call that removes glyphs covered by the left truncation
9133 glyph. Improve commentary.
9134 (display_line): Fix display of continuation glyphs on GUI frames
9135 when the right fringe is turned off and variable-size fonts are
9136 used in the window. Move the code that appends a stretch glyph to
9137 produce_special_glyphs, so that it could be used for truncation
9138 and continuation glyphs alike.
9139 (produce_special_glyphs) [HAVE_WINDOW_SYSTEM]: Produce a stretch
9140 glyph of a suitably computed width, to align the special glyphs at
9141 the window margin. Code moved from display_line. (Bug#11832)
9142
9143 2012-07-12 Glenn Morris <rgm@gnu.org>
9144
9145 * s/aix4-2.h, s/hpux10-20.h: Let configure set NO_EDITRES.
9146
9147 * s/gnu-linux.h, s/hpux10-20.h:
9148 Do not unconditionally define HAVE_XRMSETDATABASE.
9149
9150 * s/gnu-linux.h (UNIX98_PTYS): Let configure set it.
9151
9152 2012-07-12 Paul Eggert <eggert@cs.ucla.edu>
9153
9154 Fix typos that broke OS X build.
9155 Reported by Randal L. Schwartz in
9156 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00225.html>.
9157 * nsterm.m (ns_timeout): Add missing local decl.
9158 (ns_get_color): snprintf -> sprintf, to fix typo.
9159
9160 2012-07-12 Glenn Morris <rgm@gnu.org>
9161
9162 * src/s/aix4-2.h, src/s/cygwin.h, src/s/darwin.h:
9163 * src/s/gnu-linux.h, src/s/hpux10-20.h, src/s/irix6-5.h:
9164 * src/s/sol2-6.h, src/s/unixware.h, src/s/usg5-4-common.h:
9165 Move PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF to configure.
9166
9167 * s/cygwin.h, s/darwin.h, s/gnu-linux.h, s/irix6-5.h:
9168 Move PTY_OPEN to configure.
9169
9170 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
9171 * s/gnu-linux.h, s/hpux10-20.h, s/irix6-5.h, s/template.h:
9172 * s/usg5-4-common.h: Move FIRST_PTY_LETTER, PTY_ITERATION to configure.
9173
9174 2012-07-12 Dmitry Antipov <dmantipov@yandex.ru>
9175
9176 Use empty_unibyte_string where applicable.
9177 * keyboard.c (parse_tool_bar_item): Use empty_unibyte_string.
9178 * lread.c (read1): Likewise.
9179 * xsettings.c (syms_of_xsettings): Likewise.
9180
9181 2012-07-12 Glenn Morris <rgm@gnu.org>
9182
9183 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC):
9184 * s/freebsd.h (BROKEN_PTY_READ_AFTER_EAGAIN):
9185 * s/irix6-5.h (SETPGRP_RELEASES_CTTY, PREFER_VSUSP):
9186 * s/hpux10-20.h (RUN_TIME_REMAP):
9187 * s/bsd-common.h (TABDLY): Move to configure.
9188
9189 * s/hpux10-20.h, s/sol2-6.h: Move XOS_NEEDS_TIME_H to configure.
9190
9191 * s/bsd-common.h, s/darwin.h: Move TAB3 to configure.
9192
9193 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
9194 (BROKEN_SIGPOLL, BROKEN_GET_CURRENT_DIR_NAME): Let configure set them.
9195
9196 * s/darwin.h (NO_ABORT, NO_MATHERR): Let configure set them.
9197
9198 * s/bsd-common.h, s/cygwin.h, s/gnu-linux.h, s/irix6-5.h:
9199 * s/template.h: Move NARROWPROTO to configure.
9200
9201 2012-07-11 Glenn Morris <rgm@gnu.org>
9202
9203 * s/gnu-linux.h, s/sol2-6.h: No longer define POSIX,
9204 unused since 2011-01-17 change to systty.h.
9205
9206 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h, s/gnu-linux.h:
9207 * s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
9208 Move HAVE_PTYS and HAVE_SOCKETS to configure.
9209
9210 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
9211
9212 * s/sol2-6.h (HAVE_LIBKSTAT): Remove. (Bug#11914)
9213
9214 2012-07-11 Glenn Morris <rgm@gnu.org>
9215
9216 * s/darwin.h, s/gnu-linux.h, s/template.h:
9217 Move INTERRUPT_INPUT to configure.
9218
9219 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
9220
9221 Minor adjustments to interning code.
9222 * lisp.h (intern, intern_c_string): Redefine as static inline
9223 wrappers for intern_1 and intern_c_string_1, respectively.
9224 (intern_1, intern_c_string_1): Rename prototypes.
9225 * lread.c (intern_1, intern_c_string_1, oblookup):
9226 Simplify Vobarray checking.
9227 * font.c (font_intern_prop): Likewise. Adjust comment.
9228 * w32font.c (intern_font_name): Likewise.
9229
9230 2012-07-11 Andreas Schwab <schwab@linux-m68k.org>
9231
9232 * gnutls.c (Fgnutls_boot): Properly parse :keylist argument.
9233
9234 * coding.c (Fdefine_coding_system_internal): Use XCAR/XCDR instead
9235 of Fcar/Fcdr if possible.
9236 * font.c (check_otf_features): Likewise.
9237 * fontset.c (Fnew_fontset): Likewise.
9238 * gnutls.c (Fgnutls_boot): Likewise.
9239 * minibuf.c (read_minibuf): Likewise.
9240 * msdos.c (IT_set_frame_parameters): Likewise.
9241 * xmenu.c (Fx_popup_dialog): Likewise.
9242 * w32menu.c (Fx_popup_dialog): Likewise.
9243
9244 2012-07-11 Glenn Morris <rgm@gnu.org>
9245
9246 * s/bsd-common.h, s/cygwin.h: No need to undefine INTERRUPT_INPUT,
9247 since nothing has defined it on these platforms.
9248
9249 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/gnu-linux.h:
9250 * s/irix6-5.h: Move SIGNALS_VIA_CHARACTERS to configure.
9251
9252 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
9253 * s/gnu-linux.h, s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
9254 Move CLASH_DETECTION to configure.
9255
9256 * s/gnu.h: Remove file, which is now empty.
9257
9258 * s/gnu.h, s/gnu-linux.h:
9259 Move GNU_LIBRARY_PENDING_OUTPUT_COUNT to configure.
9260
9261 2012-07-11 John Wiegley <johnw@newartisans.com>
9262
9263 * alloc.c (mark_memory): Guard the "no_address_safety_analysis"
9264 function attribute, so we only use it if it exists in the
9265 compiler.
9266
9267 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
9268
9269 Avoid call to strlen in fast_c_string_match_ignore_case.
9270 * search.c (fast_c_string_match_ignore_case): Change to use
9271 length argument. Adjust users accordingly.
9272 * lisp.h (fast_c_string_match_ignore_case): Adjust prototype.
9273
9274 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
9275
9276 Assume mkdir, rmdir.
9277 * sysdep.c (mkdir) [!HAVE_MKDIR]: Remove.
9278 * sysdep.c (rmdir) [!HAVE_RMDIR]: Remove.
9279
9280 Assume rename.
9281 * sysdep.c (rename) [!HAVE_RENAME]: Remove.
9282
9283 Assume perror.
9284 * s/hpux10-20.h (HAVE_PERROR): Remove.
9285 * sysdep.c (perror) [HPUX && !HAVE_PERROR]:
9286 Remove dummy definition, as this problem was obsolete long ago.
9287
9288 Assume strerror.
9289 * sysdep.c (strerror) [!HAVE_STRERROR && !WINDOWSNT]: Remove.
9290
9291 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
9292
9293 Avoid calls to strlen in font processing functions.
9294 * font.c (font_parse_name, font_parse_xlfd, font_parse_fcname)
9295 (font_open_by_name): Change to use length argument.
9296 Adjust users accordingly.
9297 * font.h (font_open_by_name, font_parse_xlfd, font_unparse_xlfd):
9298 Adjust prototypes.
9299 * xfont.c (xfont_decode_coding_xlfd, font_unparse_xlfd):
9300 Change to return ptrdiff_t.
9301 (xfont_list_pattern, xfont_match): Use length returned by
9302 xfont_decode_coding_xlfd.
9303 * xfns.c (x_default_font_parameter): Omit useless xstrdup.
9304
9305 2012-07-11 Glenn Morris <rgm@gnu.org>
9306
9307 * s/darwin.h, s/freebsd.h, s/netbsd.h:
9308 Move DONT_REOPEN_PTY to configure.
9309
9310 * sound.c (DEFAULT_SOUND_DEVICE) [!WINDOWSNT]:
9311 * s/netbsd.h (DEFAULT_SOUND_DEVICE): Let configure set it.
9312
9313 2012-07-10 Paul Eggert <eggert@cs.ucla.edu>
9314
9315 Remove "#define unix" that is no longer needed (Bug#11905).
9316 * s/aix4-2.h (unix): Remove; no longer needed.
9317
9318 EMACS_TIME simplification (Bug#11875).
9319 This replaces macros (which typically do not work in GDB)
9320 with functions, typedefs and enums, making the code easier to debug.
9321 The functional style also makes code easier to read and maintain.
9322 * systime.h: Include <sys/time.h> on all hosts, not just if
9323 WINDOWSNT, since 'struct timeval' is needed in general.
9324 (EMACS_TIME): Now a typedef, not a macro.
9325 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): Now constants,
9326 not macros.
9327 (EMACS_SECS, EMACS_NSECS, EMACS_TIME_SIGN, EMACS_TIME_VALID_P)
9328 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE, EMACS_TIME_EQ)
9329 (EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE, EMACS_TIME_LT)
9330 (EMACS_TIME_LE): Now functions, not macros.
9331 (EMACS_SET_SECS, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS)
9332 (EMACS_SET_USECS, EMACS_SET_SECS_USECS): Remove these macros,
9333 which are not functions. All uses rewritten to use:
9334 (make_emacs_time): New function.
9335 (EMACS_SECS_ADDR, EMACS_SET_INVALID_TIME, EMACS_GET_TIME)
9336 (EMACS_ADD_TIME, EMACS_SUB_TIME): Remove these macros, which are
9337 not functions. All uses rewritten to use the following, respectively:
9338 (emacs_secs_addr, invalid_emacs_time, get_emacs_time)
9339 (add_emacs_time, sub_emacs_time): New functions.
9340 * atimer.c: Don't include <sys/time.h>, as "systime.h" does this.
9341 * fileio.c (Fcopy_file):
9342 * xterm.c (XTflash): Get the current time closer to when it's used.
9343 * makefile.w32-in ($(BLD)/atimer.$(O)): Update dependencies.
9344
9345 * bytecode.c (targets): Suppress -Woverride-init warnings.
9346
9347 Simplify by avoiding confusing use of strncpy etc.
9348 * doc.c (Fsnarf_documentation):
9349 * fileio.c (Ffile_name_directory, Fsubstitute_in_file_name):
9350 * frame.c (Fmake_terminal_frame):
9351 * gtkutil.c (get_utf8_string):
9352 * lread.c (openp):
9353 * nsmenu.m (ns_update_menubar):
9354 * regex.c (regerror):
9355 Prefer memcpy to strncpy and strncat when either will do.
9356 * fileio.c (Fsubstitute_in_file_name):
9357 * keyboard.c (MULTI_LETTER_MOD, parse_modifiers_uncached)
9358 (menu_separator_name_p):
9359 * nsmenu.m (ns_update_menubar):
9360 Prefer memcmp to strncmp when either will do.
9361 * nsterm.m: Include <ftoastr.h>.
9362 (ns_get_color):
9363 * s/gnu-linux.h, s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF):
9364 Prefer snprintf to strncpy.
9365 * nsterm.m (ns_term_init):
9366 * widget.c (set_frame_size) [0]: Prefer xstrdup to xmalloc + strncpy.
9367 * nsterm.m (ns_term_init):
9368 Avoid the need for strncpy, by using build_string or
9369 make_unibyte_string directly. Use dtoastr, not snprintf.
9370 * process.c (Fmake_network_process): Diagnose service names that
9371 are too long, rather than silently truncating them or creating
9372 non-null-terminated names.
9373 (Fnetwork_interface_info): Likewise, for interface names.
9374 * sysdep.c (system_process_attributes) [GNU_LINUX]:
9375 Prefer sprintf to strncat.
9376 * xdisp.c (debug_method_add) [GLYPH_DEBUG]:
9377 Prefer vsnprintf to vsprintf + strncpy.
9378
9379 2012-07-10 Glenn Morris <rgm@gnu.org>
9380
9381 * dispnew.c (PENDING_OUTPUT_COUNT) [!__GNU_LIBRARY__]:
9382 Clarify fallback case.
9383
9384 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
9385
9386 Use XCAR and XCDR instead of Fcar and Fcdr where possible.
9387 * callint.c, coding.c, doc.c, editfns.c, eval.c, font.c, fontset.c,
9388 * frame.c, gnutls.c, minibuf.c, msdos.c, textprop.c, w32fns.c,
9389 * w32menu.c, window.c, xmenu.c: Change to use XCAR and XCDR
9390 where argument type is known to be a Lisp_Cons.
9391
9392 2012-07-10 Tom Tromey <tromey@redhat.com>
9393
9394 * bytecode.c (BYTE_CODE_THREADED): New macro.
9395 (BYTE_CODES): New macro. Replaces all old byte-code defines.
9396 (enum byte_code_op): New type.
9397 (CASE, NEXT, FIRST, CASE_DEFAULT, CASE_ABORT): New macros.
9398 (exec_byte_code): Use them. Use token threading when applicable.
9399
9400 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
9401
9402 Optimize pure C strings initialization.
9403 * lisp.h (make_pure_string): Fix prototype.
9404 (build_pure_c_string): New function, defined as static inline. This
9405 provides a better opportunity to optimize away calls to strlen when
9406 the function is called with compile-time constant argument.
9407 * alloc.c (make_pure_c_string): Fix comment. Change to add nchars
9408 argument, adjust users accordingly. Use build_pure_c_string where
9409 appropriate.
9410 * buffer.c, coding.c, data.c, dbusbind.c, fileio.c, fontset.c, frame.c,
9411 * keyboard.c, keymap.c, lread.c, search.c, syntax.c, w32fns.c, xdisp.c,
9412 * xfaces.c, xfns.c, xterm.c: Use build_pure_c_string where appropriate.
9413
9414 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
9415
9416 Avoid calls to strlen in miscellaneous functions.
9417 * buffer.c (init_buffer): Use precalculated len, adjust if needed.
9418 * font.c (Ffont_xlfd_name): Likewise. Change to call make_string.
9419 * lread.c (openp): Likewise.
9420
9421 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
9422
9423 Avoid calls to strlen in path processing functions.
9424 * fileio.c (file_name_as_directory): Add comment. Change to add
9425 srclen argument and return the length of result. Adjust users
9426 accordingly.
9427 (directory_file_name): Fix comment. Change to add srclen argument,
9428 swap 1st and 2nd arguments to obey the common convention.
9429 Adjust users accordingly.
9430 * filelock.c (fill_in_lock_file_name): Avoid calls to strlen.
9431
9432 2012-07-10 Glenn Morris <rgm@gnu.org>
9433
9434 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/netbsd.h, s/unixware.h:
9435 Move PENDING_OUTPUT_COUNT definition to configure.
9436
9437 * s/irix6-5.h (DATA_START, DATA_SEG_BITS):
9438 * s/hpux10-20.h (DATA_SEG_BITS, DATA_START):
9439 * s/gnu.h (DATA_START): Move definitions to configure.
9440
9441 * s/irix6-5.h (SETUP_SLAVE_PTY, PTY_NAME_SPRINTF): Drop ifdef guards.
9442 We include usg5-4-common.h, which defines them both.
9443
9444 * s/gnu.h: Don't include fcntl.h (every file in Emacs that uses
9445 O_RDONLY already includes it).
9446
9447 Stop ns builds setting the EMACSLOADPATH environment variable.
9448 * nsterm.m (ns_load_path): Rename from ns_init_paths.
9449 Now it does not set EMACSLOADPATH, just returns the load-path string.
9450 * nsterm.h: Update accordingly.
9451 * lread.c [HAVE_NS]: Include nsterm.h.
9452 (init_lread) [HAVE_NS]: Use ns_load_path.
9453 * emacs.c (main) [HAVE_NS]: No longer call ns_init_paths.
9454
9455 2012-07-09 Glenn Morris <rgm@gnu.org>
9456
9457 * s/gnu.h (SIGNALS_VIA_CHARACTERS): No need to define it here,
9458 since the included bsd-common.h does so.
9459
9460 Stop ns builds setting the EMACSPATH environment variable.
9461 * nsterm.m (ns_exec_path): New function, split from ns_init_paths.
9462 (ns_init_paths): Do not set EMACSPATH.
9463 * nsterm.h (ns_exec_path): Add it.
9464 * callproc.c (init_callproc_1, init_callproc) [HAVE_NS]:
9465 Use ns_exec_path.
9466
9467 * nsterm.m, nsterm.h (ns_etc_directory): Fix type, empty return.
9468
9469 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
9470
9471 * process.c (wait_reading_process_output): 'waitchannels' was unset
9472 when read_kbd || !NILP (wait_for_cell); fix this.
9473
9474 Add GCC-style 'const' attribute to functions that can use it.
9475 * character.h (char_resolve_modifier_mask):
9476 * keyboard.h (make_ctrl_char):
9477 * lisp.h (multibyte_char_to_unibyte, multibyte_char_to_unibyte_safe)
9478 (init_character_once, next_almost_prime, init_fns, init_image)
9479 (flush_pending_output, init_sound):
9480 * mem-limits.h (start_of_data):
9481 * menu.h (finish_menu_items):
9482 Add ATTRIBUTE_CONST.
9483 * emacs.c (DEFINE_DUMMY_FUNCTION):
9484 Declare the dummy function with ATTRIBUTE_CONST.
9485 * lisp.h (Fbyteorder, Fmax_char, Fidentity):
9486 Add decls with ATTRIBUTE_CONST.
9487
9488 Minor improvements to make_formatted_string.
9489 * alloc.c (make_formatted_string): Prefer int to ptrdiff_t
9490 where int is good enough, as vsprintf returns an int.
9491 * lisp.h (make_formatted_string): Add ATTRIBUTE_FORMAT_PRINTF.
9492
9493 2012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
9494
9495 Use make_formatted_string to avoid double length calculation.
9496 * lisp.h (make_formatted_string): New prototype.
9497 * alloc.c (make_formatted_string): New function.
9498 * buffer.c (Fgenerate_new_buffer_name): Use it.
9499 * dbusbind.c (syms_of_dbusbind): Likewise.
9500 * editfns.c (Fcurrent_time_zone): Likewise.
9501 * filelock.c (get_boot_time): Likewise.
9502 * frame.c (make_terminal_frame, set_term_frame_name)
9503 (x_report_frame_params): Likewise.
9504 * image.c (gs_load): Likewise.
9505 * minibuf.c (get_minibuffer): Likewise.
9506 * msdos.c (dos_set_window_size): Likewise.
9507 * process.c (make_process): Likewise.
9508 * xdisp.c (ensure_echo_area_buffers): Likewise.
9509 * xsettings.c (apply_xft_settings): Likewise.
9510
9511 2012-07-09 Glenn Morris <rgm@gnu.org>
9512
9513 Stop ns builds polluting the environment with EMACSDATA, EMACSDOC.
9514 * nsterm.m (ns_etc_directory): New function, split from ns_init_paths.
9515 (ns_init_paths): Do not set EMACSDATA, EMACSDOC.
9516 * nsterm.h (ns_etc_directory): Add it.
9517 * callproc.c [HAVE_NS]: Include nsterm.h.
9518 (init_callproc_1, init_callproc) [HAVE_NS]: Use ns_etc_directory.
9519
9520 2012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
9521
9522 Move marker debugging code under MARKER_DEBUG.
9523 * marker.c (MARKER_DEBUG): Move marker debugging code under
9524 #ifdef MARKER_DEBUG because byte_char_debug_check is too slow
9525 for bootstrap with --enable-checking (~3x slowdown reported
9526 by Juanma Barranquero <lekktu@gmail.com>).
9527 (verify_bytepos): Move under #ifdef MARKER_DEBUG.
9528
9529 2012-07-08 Paul Eggert <eggert@cs.ucla.edu>
9530
9531 * systime.h (EMACS_SUB_TIME): Clarify behavior with unsigned time_t.
9532 See <http://bugs.gnu.org/11825#29>.
9533
9534 2012-07-08 Eli Zaretskii <eliz@gnu.org>
9535
9536 * xdisp.c (fill_glyphless_glyph_string): If the face of the glyph
9537 has no font, use the frame's font. (Bug#11813)
9538 (display_line): Add commentary about displaying truncation glyphs
9539 on GUI frames.
9540 (produce_special_glyphs): Move here from term.c.
9541
9542 * term.c (produce_special_glyphs): Move to xdisp.c.
9543
9544 * dispextern.h (produce_special_glyphs): Move prototype to xdisp.c
9545 section.
9546
9547 2012-07-07 Andreas Schwab <schwab@linux-m68k.org>
9548
9549 * xdisp.c (display_line): Avoid warning about implicit declaration
9550 of FRAME_FONT.
9551
9552 * frame.c (get_frame_param): Define only if HAVE_WINDOW_SYSTEM.
9553
9554 * lisp.h: Remove empty conditional.
9555
9556 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
9557
9558 * lread.c (load_path_check): Now static.
9559
9560 Fix some minor --with-ns problems found by static checking.
9561 * frame.c (Ftool_bar_pixel_width) [!FRAME_TOOLBAR_WIDTH]:
9562 (x_set_font) [!HAVE_X_WINDOWS]:
9563 * image.c (xpm_load_image) [HAVE_NS]:
9564 (x_to_xcolors) [!HAVE_X_WINDOWS && !HAVE_NTGUI]:
9565 (x_disable_image) [!HAVE_NS && !HAVE_NTGUI]:
9566 Remove unused local.
9567 (Fx_parse_geometry) [HAVE_NS]: Don't return garbage.
9568 (xpm_load_image) [HAVE_NS && !HAVE_XPM]: Remove unused label.
9569 * image.c (x_create_bitmap_from_file) [HAVE_NS]:
9570 (xpm_load_image, xpm_load) [HAVE_NS && !HAVE_XPM]:
9571 * nsselect.m (symbol_to_nsstring, ns_string_to_pasteboard_internal):
9572 * xfaces.c (Fx_load_color_file) [!HAVE_X_WINDOWS]:
9573 Fix pointer signedness problem.
9574 * xfaces.c (FRAME_X_FONT_TABLE):
9575 * xterm.h (FRAME_X_FONT_TABLE): Remove unused, incompatible macros.
9576
9577 2012-07-07 Glenn Morris <rgm@gnu.org>
9578
9579 * lread.c (load_path_check): New function, split from init_lread.
9580 (init_lread): Reorganize. Motivation:
9581 If EMACSLOADPATH is set, check/warn about that rather than the
9582 defaults, which we are not going to use. Hence we can remove
9583 the turn_off_warning and WINDOWSNT || HAVE_NS tests.
9584 Don't warn if site-lisp directories are missing.
9585 If not installed, start from a blank load-path, since
9586 PATH_LOADSEARCH refers to the eventual installation directories.
9587
9588 2012-07-07 Eli Zaretskii <eliz@gnu.org>
9589
9590 Support truncation and continuation glyphs on GUI frames, when
9591 fringes are disabled. (Bug#11832)
9592 * xdisp.c (init_iterator): Get dimensions of truncation and
9593 continuation glyphs even if on GUI frames.
9594 Adjust it->last_visible_x on GUI frames when the left or right fringes,
9595 or both, are absent.
9596 (start_display, move_it_in_display_line_to): Handle the case of a
9597 GUI frame without a fringe to display continuation or truncation
9598 glyphs.
9599 (insert_left_trunc_glyphs): Support GUI frames: make sure
9600 truncation glyphs overwrite enough glyphs from the current line to
9601 have sufficient space in pixels.
9602 (display_line): Support truncation and continuation glyphs on GUI
9603 frames. If some spare pixels are left on the line after inserting
9604 the truncation glyphs, fill that space with a stretch glyph of a
9605 suitably computed width.
9606
9607 * term.c (produce_special_glyphs): Call PRODUCE_GLYPHS, not
9608 produce_glyphs, to support GUI sessions.
9609
9610 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
9611
9612 * sysdep.c (ULLONG_MAX): Define if not already defined (Bug#11781).
9613
9614 * sysdep.c (list_system_processes): Port to NetBSD-current (Bug#11797).
9615
9616 Do not require float-time's arg to fit in time_t (Bug#11825).
9617 This works better on hosts where time_t is unsigned, and where
9618 float-time is applied to the (negative) difference between two times.
9619 * editfns.c (decode_time_components): Last arg is now double *,
9620 not int *, and means to store all the result as a double, without
9621 worrying about whether the seconds part fits in time_t.
9622 All callers changed.
9623 (lisp_time_argument): Remove last int * arg, as it's no longer needed.
9624 All callers changed.
9625 (Ffloat_time): Do not fail merely because the specified time falls
9626 outside of time_t range.
9627
9628 2012-07-07 Glenn Morris <rgm@gnu.org>
9629
9630 * s/darwin.h (HAVE_RES_INIT, HAVE_LIBRESOLV):
9631 * s/hpux10-20.h (HAVE_RINT, HAVE_RANDOM):
9632 * s/unixware.h (HAVE_GETWD): Move undefs to configure (effectively).
9633
9634 2012-07-07 Juanma Barranquero <lekktu@gmail.com>
9635
9636 * makefile.w32-in (DISPEXTERN_H, $(BLD)/regex.$(O)):
9637 Update dependencies.
9638
9639 * s/ms-w32.h [_MSC_VER]: Remove strcasecmp, strncasecmp.
9640
9641 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
9642
9643 Use c_strcasecmp for ASCII case-insensitive comparison (Bug#11786).
9644 * dispextern.h, nsfns.m, nsterm.m: Include <c-strcase.h>.
9645 * dispextern.h (xstrcasecmp): Rewrite using c_strcasecmp.
9646 * nsfns.m (x_get_string_resource): Use c_strncasecmp, not strncasecmp.
9647 * nsterm.m (ns_default): Use c_strcasecmp, not strcasecmp.
9648 * xfaces.c (xstrcasecmp) [!HAVE_STRCASECMP]: Remove.
9649
9650 * xfont.c (compare_font_names): Redo to omit the need for casts.
9651
9652 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
9653
9654 * xfns.c (Fx_change_window_property): Doc fix.
9655 * w32fns.c (Fx_change_window_property): Doc fix.
9656
9657 * w32fns.c (Fx_window_property): Accept the same arguments as the
9658 X Windows version. Doc fix.
9659 * xfns.c (Fx_window_property): Doc fix. (Bug#11870)
9660
9661 2012-07-06 Juanma Barranquero <lekktu@gmail.com>
9662 Eli Zaretskii <eliz@gnu.org>
9663
9664 * s/ms-w32.h: Settings not specific to Windows moved to nt/config.nt.
9665 Windows-specific code from nt/config.nt moved here.
9666 Obsolete settings removed.
9667
9668 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
9669
9670 * process.c: Avoid unnecessary calls to gettime.
9671 (wait_reading_process_output): Don't get the time of day
9672 when gobbling data immediately and not waiting, as there's no need
9673 for it in that case. This removes a FIXME.
9674
9675 2012-07-06 Jan Djärv <jan.h.d@swipnet.se>
9676
9677 * gtkutil.c (xg_event_is_for_scrollbar): Assign gwin when HAVE_GTK3
9678 is defined (Bug#11768).
9679
9680 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
9681
9682 Fix marker debugging code.
9683 * marker.c (byte_char_debug_check): Do not perform the check
9684 if buffer is not multibyte.
9685 (buf_charpos_to_bytepos, buf_bytepos_to_charpos):
9686 Call byte_char_debug_check with correct arguments.
9687
9688 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
9689
9690 Compile marker debugging code only if ENABLE_CHECKING is defined.
9691 * marker.c (byte_char_debug_check, count_markers):
9692 Use only if ENABLE_CHECKING is defined.
9693 (byte_debug_flag): Remove.
9694 (CONSIDER, buf_charpos_to_bytepos, buf_bytepos_to_charpos):
9695 Always call byte_char_debug_check if ENABLE_CHECKING is defined.
9696
9697 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
9698
9699 Avoid code repetition in marker-related functions.
9700 * marker.c (attach_marker): New function.
9701 (Fset_marker, set_marker_restricted, set_marker_both)
9702 (set_marker_restricted_both): Use it.
9703 (Fset_marker, set_marker_restricted, Fbuffer_has_markers_at):
9704 Consistently rename charno to charpos.
9705 (marker_position): Add eassert.
9706 (marker_byte_position): Convert to eassert.
9707
9708 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
9709
9710 Simplify list operations in unchain_overlay and unchain_marker.
9711 * buffer.c (unchain_overlay): Simplify. Add comment.
9712 * marker.c (unchain_marker): Simplify. Fix comments.
9713
9714 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
9715
9716 Introduce fast path for the widely used marker operation.
9717 * alloc.c (build_marker): New function.
9718 * lisp.h (build_marker): New prototype.
9719 * buffer.c (clone_per_buffer_values, Fmake_indirect_buffer): Use it.
9720 * composite.c (autocmp_chars): Likewise.
9721 * editfns.c (buildmark): Remove.
9722 (Fpoint_marker, Fpoint_min_marker, Fpoint_max_marker)
9723 (save_restriction_save): Use build_marker.
9724 * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos): Likewise.
9725 * window.c (save_window_save): Likewise.
9726
9727 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
9728
9729 Do not use Fdelete_overlay in delete_all_overlays
9730 to avoid redundant calls to unchain_overlay.
9731 * buffer.c (drop_overlay): New function.
9732 (delete_all_overlays, Fdelete_overlay): Use it.
9733 * minibuf.c (get_minibuffer): Fix comment.
9734
9735 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
9736
9737 Port to OpenBSD 5.1 amd64.
9738 * sysdep.c [BSD_SYSTEM]: Include <sys/param.h> before <sys/sysctl.h>.
9739 This is needed for OpenBSD, and should be harmless on all BSD systems.
9740 Also, include <sys/sysctl.h>, as it should be available on all
9741 BSD_SYSTEM hosts given that we're already calling sysctl in that case.
9742 (list_system_processes) [__OpenBSD__]: Use DARWIN_OS style mib, but
9743 use p_pid member, not kp_proc.pid.
9744
9745 2012-07-06 Glenn Morris <rgm@gnu.org>
9746
9747 * Makefile.in (emacs$(EXEEXT)): Don't check for load-path shadows.
9748
9749 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
9750
9751 More xmalloc and related cleanup.
9752 * alloc.c, bidi.c, buffer.c, buffer.h, bytecode.c, callint.c:
9753 * callproc.c, charset.c, coding.c, composite.c, data.c, dispnew.c:
9754 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, fns.c:
9755 * font.c, fontset.c, frame.c, fringe.c, ftfont.c, ftxfont.c, gmalloc.c:
9756 * gtkutil.c, image.c, keyboard.c, keymap.c, lread.c, macros.c, menu.c:
9757 * nsfns.m, nsfont.m, nsmenu.m, nsterm.m, print.c, process.c, ralloc.c:
9758 * regex.c, region-cache.c, scroll.c, search.c, sound.c, syntax.c:
9759 * sysdep.c, term.c, termcap.c, unexmacosx.c, window.c, xdisp.c:
9760 * xfaces.c, xfns.c, xftfont.c, xgselect.c, xmenu.c, xrdb.c, xselect.c:
9761 * xterm.c:
9762 Omit needless casts involving void * pointers and allocation.
9763 Prefer "P = xmalloc (sizeof *P)" to "P = xmalloc (sizeof (TYPE_OF_P))",
9764 as the former is more robust if P's type is changed.
9765 Prefer xzalloc to xmalloc + memset 0.
9766 Simplify malloc-or-realloc to realloc.
9767 Don't worry about xmalloc returning a null pointer.
9768 Prefer xstrdup to xmalloc + strcpy.
9769 * editfns.c (Fmessage_box): Grow message_text by at least 80 when
9770 growing it.
9771 * keyboard.c (apply_modifiers_uncached): Prefer local array to
9772 alloca of a constant.
9773
9774 2012-07-05 Eli Zaretskii <eliz@gnu.org>
9775
9776 * xdisp.c (display_line): Fix horizontal pixel coordinates when
9777 hscroll is larger than the line width. Fixes long and futile
9778 looping inside extend_face_to_end_of_line (on a TTY) producing
9779 glyphs that are not needed and thrown away.
9780
9781 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
9782
9783 * marker.c (set_marker_restricted_both): Simplify by using
9784 clip_to_bounds.
9785
9786 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
9787
9788 * editfns.c (region_limit): Simplify by using clip_to_bounds.
9789
9790 2012-07-05 Jan Djärv <jan.h.d@swipnet.se>
9791
9792 * gtkutil.c (gtk_scrollbar_new, gtk_box_new): Define when HAVE_GTK3 is
9793 not defined (Bug#11768).
9794 (xg_create_frame_widgets): Use gtk_plug_new_for_display (Bug#11768).
9795 (xg_create_frame_widgets, create_dialog, xg_get_file_with_chooser)
9796 (make_widget_for_menu_item, xg_make_tool_item): Use gtk_box_new
9797 followed by gtk_box_set_homogeneous (Bug#11768).
9798 (xg_update_menu_item): Use GTK_IS_BOX (Bug#11768).
9799 (update_theme_scrollbar_width, xg_create_scroll_bar):
9800 Use gtk_scrollbar_new (Bug#11768).
9801 (xg_event_is_for_scrollbar): Use Gdk Device functions for HAVE_GTK3.
9802 (is_box_type): New function (Bug#11768).
9803 (xg_tool_item_stale_p): Call is_box_type.
9804 (xg_initialize): Get settings by calling gtk_settings_get_for_screen
9805 with default display (Bug#11768).
9806
9807 2012-07-05 Eli Zaretskii <eliz@gnu.org>
9808
9809 * xdisp.c (window_hscroll_limited): New function.
9810 (pos_visible_p, init_iterator): Use it to avoid overflow of pixel
9811 coordinates when window's hscroll is set to insanely large
9812 values. (Bug#11857)
9813
9814 2012-07-05 Juanma Barranquero <lekktu@gmail.com>
9815
9816 * makefile.w32-in ($(BLD)/dired.$(O), $(BLD)/fileio.$(O)): Fix typo.
9817 ($(BLD)/terminal.$(O), $(BLD)/syntax.$(O)): Update dependencies.
9818
9819 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
9820
9821 Cleanup xmalloc.
9822 * lisp.h (xzalloc): New prototype. Omit needless casts.
9823 * alloc.c (xzalloc): New function. Omit needless casts.
9824 * charset.c: Omit needless casts. Convert all calls to
9825 xmalloc with following memset to xzalloc.
9826 * dispnew.c: Likewise.
9827 * fringe.c: Likewise.
9828 * image.c: Likewise.
9829 * sound.c: Likewise.
9830 * term.c: Likewise.
9831 * w32fns.c: Likewise.
9832 * w32font.c: Likewise.
9833 * w32term.c: Likewise.
9834 * xfaces.c: Likewise.
9835 * xfns.c: Likewise.
9836 * xterm.c: Likewise.
9837 * atimer.c: Omit needless casts.
9838 * buffer.c: Likewise.
9839 * callproc.c: Likewise.
9840 * ccl.c: Likewise.
9841 * coding.c: Likewise.
9842 * composite.c: Likewise.
9843 * doc.c: Likewise.
9844 * doprnt.c: Likewise.
9845 * editfns.c: Likewise.
9846 * emacs.c: Likewise.
9847 * eval.c: Likewise.
9848 * filelock.c: Likewise.
9849 * fns.c: Likewise.
9850 * gtkutil.c: Likewise.
9851 * keyboard.c: Likewise.
9852 * lisp.h: Likewise.
9853 * lread.c: Likewise.
9854 * minibuf.c: Likewise.
9855 * msdos.c: Likewise.
9856 * print.c: Likewise.
9857 * process.c: Likewise.
9858 * region-cache.c: Likewise.
9859 * search.c: Likewise.
9860 * sysdep.c: Likewise.
9861 * termcap.c: Likewise.
9862 * terminal.c: Likewise.
9863 * tparam.c: Likewise.
9864 * w16select.c: Likewise.
9865 * w32.c: Likewise.
9866 * w32reg.c: Likewise.
9867 * w32select.c: Likewise.
9868 * w32uniscribe.c: Likewise.
9869 * widget.c: Likewise.
9870 * xdisp.c: Likewise.
9871 * xmenu.c: Likewise.
9872 * xrdb.c: Likewise.
9873 * xselect.c: Likewise.
9874
9875 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
9876
9877 * fileio.c (time_error_value): Check the right error number.
9878 Problem reported by Troels Nielsen in
9879 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00095.html>.
9880
9881 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
9882
9883 * window.c (set_window_hscroll): Revert the 100000 hscroll limit.
9884 This should be fixed in a better way; see Eli Zaretskii in
9885 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00088.html>.
9886 (HSCROLL_MAX): Remove; this is now internal to set_window_hscroll.
9887
9888 * fileio.c (time_error_value): Rename from special_mtime.
9889 The old name's problems were noted by Eli Zaretskii in
9890 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00087.html>.
9891
9892 * emacs.c (gdb_pvec_type): Change it back to enum pvec_type.
9893 This variable's comment says Emacs needs at least one GDB-visible
9894 symbol of type enum pvec_type, to work around GDB problems.
9895 The symbol's value doesn't matter.
9896
9897 * alloc.c (PSEUDOVECTOR_NBYTES): Remove stray ';'
9898 that causes compilation to fail on pre-C99 compilers.
9899
9900 2012-07-04 Juanma Barranquero <lekktu@gmail.com>
9901
9902 * s/ms-w32.h (LISP_FLOAT_TYPE, HAVE_MEMCMP, HAVE_MEMCPY)
9903 (HAVE_MEMMOVE, HAVE_MEMSET): Don't set, obsolete.
9904
9905 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
9906
9907 * buffer.c (init_buffer_once): Fix initialization of
9908 headers for buffer_defaults and buffer_local_symbols.
9909 Reported by Juanma Barranquero <lekktu@gmail.com>.
9910
9911 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
9912
9913 Turn VECTOR_FREE_LIST_FLAG into PVEC_FREE.
9914 * lisp.h (enum pvec_type): Use fewer bits.
9915 (PSEUDOVECTOR_SIZE_BITS): New constant.
9916 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK): Use it.
9917 (XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR, DEFUN): Adapt code to
9918 change in pvec_type.
9919 (PSEUDOVECTOR_TYPEP): New macro.
9920 (TYPED_PSEUDOVECTORP): Use it.
9921 * fns.c (internal_equal): Adapt code to extract pvectype.
9922 * emacs.c (gdb_pvec_type): Update type.
9923 * alloc.c (PSEUDOVECTOR_NBYTES): New macro.
9924 (VECTOR_FREE_LIST_SIZE_MASK): Remove (=> PSEUDOVECTOR_SIZE_MASK).
9925 (VECTOR_FREE_LIST_FLAG): Remove (=> PVEC_FREE).
9926 (SETUP_ON_FREE_LIST): Use XSETPVECTYPESIZE.
9927 (sweep_vectors): Use it. Use local var `total_bytes' instead of
9928 abusing vector->header.next.nbytes.
9929 (live_vector_p): Use PVEC_TYPE.
9930 (mark_object): Adapt code to extract pvectype. Use switch.
9931
9932 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
9933
9934 * doprnt.c (doprnt): Don't assume string length fits in 'int'.
9935 Tighten new eassert a bit.
9936
9937 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
9938
9939 Fix compilation with --enable-gcc-warnings and -O1
9940 optimization level.
9941 * doprnt.c (doprnt): Change type of tem to int, initialize
9942 to avoid compiler warning. Add eassert.
9943 * search.c (simple_search): Initialize match_byte to avoid
9944 compiler warning. Add eassert.
9945
9946 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
9947
9948 Avoid weird behavior with large horizontal scrolls.
9949 Without this change, for example, large hscroll values would
9950 mess up Emacs's display on Fedora 15 x86, presumably due to
9951 overflows in int calculations in the display code.
9952 Also, if buffers had long lines, Emacs would freeze.
9953 * window.c (HSCROLL_MAX): Reduce to 100000, and make it visible to GDB.
9954 (set_window_hscroll): New function, containing the old guts of
9955 Fset_window_hscroll. Return the clipped value.
9956 (Fset_window_hscroll, Fscroll_left, Fscroll_right): Use it.
9957 This avoids the need to check against PTRDIFF_MAX.
9958
9959 * buffer.c (Fgenerate_new_buffer_name): Fix sprintf format mismatch.
9960
9961 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
9962
9963 * buffer.c (Fgenerate_new_buffer_name): Fix type mismatch.
9964
9965 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
9966
9967 * regex.c: Suppress GCC warning on RHEL 6. (Bug#11207)
9968 Conditionalize the pragmas on GCC 4.5 or later, not GCC 4.3 or later,
9969 since GCC 4.4.6 issues a bogus warning for them.
9970
9971 Fix bugs in file timestamp newness comparisons.
9972 * fileio.c (Ffile_newer_than_file_p):
9973 * lread.c (Fload): Use full timestamp resolution of files,
9974 not just the 1-second resolution, so that files that are only
9975 slightly newer still count as newer.
9976 * fileio.c (Ffile_newer_than_file_p): Don't assume file
9977 timestamps fit in 'int'; this fixes a Y2038 bug on most hosts.
9978
9979 2012-07-03 Paul Eggert <eggert@cs.ucla.edu>
9980
9981 * fileio.c: Improve handling of file time marker. (Bug#11852)
9982 (special_mtime): New function.
9983 (Finsert_file_contents, Fverify_visited_file_modtime):
9984 Use it to set special mtime values consistently.
9985
9986 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
9987
9988 * fileio.c (Finsert_file_contents): Properly handle st_mtime
9989 marker for non-existing file. (Bug#11852)
9990
9991 2012-07-03 Glenn Morris <rgm@gnu.org>
9992
9993 * lisp.h (Fread_file_name): Restore EXFUN (it's not a normal DEFUN
9994 and did not make it into globals.h).
9995
9996 2012-07-03 Tom Tromey <tromey@redhat.com>
9997
9998 * window.c (Fset_window_margins, Fset_window_fringes)
9999 (Fset_window_scroll_bars, Fset_window_vscroll): No longer static.
10000 * textprop.c (Fprevious_property_change): No longer static.
10001 * syntax.c (Fsyntax_table_p): No longer static.
10002 * process.c (Fget_process, Fprocess_datagram_address): No longer
10003 static.
10004 * keymap.c (Flookup_key, Fcopy_keymap): No longer static.
10005 * keyboard.c (Fcommand_execute): No longer static.
10006 Remove EXFUN.
10007 * insdel.c (Fcombine_after_change_execute): No longer static.
10008 * image.c (Finit_image_library): No longer static.
10009 * fileio.c (Fmake_symbolic_link): No longer static.
10010 * eval.c (Ffetch_bytecode): No longer static.
10011 * editfns.c (Fuser_full_name): No longer static.
10012 * doc.c (Fdocumentation_property, Fsnarf_documentation):
10013 No longer static.
10014 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): No longer
10015 static.
10016 * dired.c (Ffile_attributes): No longer static.
10017 * composite.c (Fcomposition_get_gstring): No longer static.
10018 * callproc.c (Fgetenv_internal): No longer static.
10019
10020 * ccl.h: Remove EXFUNs.
10021 * buffer.h: Remove EXFUNs.
10022 * dispextern.h: Remove EXFUNs.
10023 * intervals.h: Remove EXFUNs.
10024 * fontset.h: Remove EXFUN.
10025 * font.h: Remove EXFUNs.
10026 * dosfns.c (system_process_attributes): Remove EXFUN.
10027 * keymap.h: Remove EXFUNs.
10028 * lisp.h: Remove EXFUNs.
10029 * w32term.h: Remove EXFUNs.
10030 * window.h: Remove EXFUNs.
10031 * xsettings.h: Remove EXFUN.
10032 * xterm.h: Remove EXFUN.
10033
10034 2012-07-03 Glenn Morris <rgm@gnu.org>
10035
10036 * lisp.h (Frandom): Make it visible to C.
10037 * buffer.c (Fgenerate_new_buffer_name): Speed up finding a new
10038 buffer for invisible buffers. (Bug#1229)
10039
10040 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
10041
10042 Fix block vector allocation code to allow VECTOR_BLOCK_SIZE
10043 values which aren't power of 2.
10044 * alloc.c (VECTOR_FREE_LIST_SIZE_MASK): New macro.
10045 Verify its value and the value of VECTOR_BLOCK_SIZE. Adjust users
10046 accordingly.
10047
10048 2012-07-03 Stefan Monnier <monnier@iro.umontreal.ca>
10049
10050 * lisp.h (Lisp_Misc, Lisp_Fwd): Move around to group better.
10051
10052 * alloc.c (mark_object): Revert part of last patch to use `switch'.
10053
10054 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
10055
10056 * alloc.c (allocate_vector_block): Remove redundant
10057 calls to mallopt if DOUG_LEA_MALLOC is defined.
10058 (allocate_vectorlike): If DOUG_LEA_MALLOC is defined,
10059 avoid calls to mallopt if zero_vector is returned.
10060
10061 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
10062
10063 * alloc.c (check_string_bytes): If GC_CHECK_STRING_BYTES
10064 is enabled, avoid dereferencing NULL current_sblock if
10065 running undumped.
10066
10067 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
10068
10069 Cleanup basic buffer management.
10070 * buffer.h (struct buffer): Change layout to use generic vector
10071 marking code. Fix some comments. Change type of 'clip_changed'
10072 to bitfield. Remove unused #ifndef old.
10073 (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER): Remove.
10074 (GET_OVERLAYS_AT): Fix indentation.
10075 (for_each_per_buffer_object_at): New macro.
10076 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
10077 (Fbuffer_local_variables): Use it.
10078 (init_buffer_once, syms_of_buffer): Remove unused #ifndef old.
10079 * alloc.c (allocate_buffer): Adjust to match new layout of
10080 struct buffer. Fix comment.
10081 (mark_overlay): New function.
10082 (mark_buffer): Use it. Use mark_vectorlike to mark normal
10083 Lisp area of struct buffer.
10084 (mark_object): Use it. Adjust marking of misc objects
10085 and related comments.
10086
10087 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
10088
10089 * alloc.c (mark_object): Remove "#ifdef GC_CHECK_MARKED_OBJECTS"
10090 wrapper that is not needed because the wrapped code is a no-op (zero
10091 machine instructions) when GC_CHECK_MARKED_OBJECTS is not defined.
10092 This avoids a -Wunused-macros diagnostic with GCC 4.7.1 x86-64.
10093
10094 2012-07-02 Dmitry Antipov <dmantipov@yandex.ru>
10095
10096 * alloc.c (mark_buffer): Simplify. Remove prototype.
10097 (mark_object): Add comment. Reorganize marking of vector-like
10098 objects. Use CHECK_LIVE for all vector-like objects except buffers
10099 and subroutines when GC_CHECK_MARKED_OBJECTS is defined.
10100 Avoid redundant calls to mark_vectorlike for bool vectors.
10101
10102 2012-06-30 Glenn Morris <rgm@gnu.org>
10103
10104 * nsterm.m (ns_init_paths): Ignore site-lisp if --no-site-lisp.
10105
10106 * epaths.in (PATH_SITELOADSEARCH): New.
10107 * lread.c (init_lread): Use PATH_SITELOADSEARCH.
10108 This is rather than relying on --enable-locallisppath elements
10109 having "site-lisp" in their names. (Bug#10208#25, 11658)
10110
10111 2012-06-30 Eli Zaretskii <eliz@gnu.org>
10112
10113 * w32proc.c (sys_select): Accept and ignore one more argument.
10114
10115 * w32.c (emacs_gnutls_pull): Call select with one more argument.
10116
10117 * sysselect.h [DOS_NT]: Don't include sys/select.h.
10118 (pselect) [!MS_DOS]: Redirect to sys_select.
10119
10120 * sysdep.c: Don't include dos.h and dosfns.h.
10121
10122 * process.c (sys_select):
10123 * msdos.c (sys_select): Accept one more argument and ignore it.
10124
10125 * msdos.c (event_timestamp, sys_select): Use gnulib's gettime;
10126 adapt data types and code to that.
10127
10128 * dosfns.c:
10129 * msdos.c (gettime, settime): Define away the prototypes in dos.h,
10130 which clashes with the gnulib function of the same name.
10131
10132 2012-06-30 Andreas Schwab <schwab@linux-m68k.org>
10133
10134 * font.c (font_style_to_value, font_style_symbolic)
10135 (font_prop_validate_style): Add type checks for values in
10136 font_style_table.
10137
10138 * lisp.h (CHECK_RANGED_INTEGER): Make value to check the first
10139 argument.
10140 * character.c, charset.c, menu.c, process.c, window.c: Adjust all
10141 uses.
10142
10143 2012-06-29 Eli Zaretskii <eliz@gnu.org>
10144
10145 * xdisp.c (try_window_id): Undo last change.
10146
10147 * w32.c (getwd): Adjust commentary about startup_dir.
10148 (init_environment): Always call sys_access, even in non-MSVC
10149 builds. Don't chdir to the directory of the Emacs executable.
10150 This undoes code from 1997 which was justified by the need to
10151 "avoid conflicts when removing and renaming directories". But its
10152 downside was that every relative file name was being interpreted
10153 relative to the directory of the Emacs executable, which can never
10154 be TRT. In particular, it broke sys_access when called with
10155 relative file names.
10156 (sys_access): Map GetLastError to errno.
10157
10158 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
10159
10160 * window.h (struct window): Change type of 'fringes_outside_margins'
10161 to bitfield. Fix comment. Adjust users accordingly.
10162 (struct window): Change type of 'window_end_bytepos' to ptrdiff_t.
10163 Adjust comment.
10164 * xdisp.c (try_window_id): Change type of 'first_vpos' and 'vpos'
10165 to ptrdiff_t.
10166
10167 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
10168
10169 * gnutls.c (emacs_gnutls_handshake):
10170 Add QUIT to make the loop interruptible.
10171
10172 2012-06-29 Glenn Morris <rgm@gnu.org>
10173
10174 * charset.c (init_charset): Make lack of etc/charsets fatal.
10175
10176 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
10177
10178 * editfns.c (region_limit): Fix type mismatch.
10179
10180 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
10181
10182 * nsfns.m: Fix GLYPH_DEBUG usage assuming that it may be
10183 undefined. Convert from xassert to eassert.
10184 * nsmenu.m: Convert from xassert to eassert.
10185 * nsterm.m: Likewise.
10186
10187 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
10188
10189 * editfns.c (region_limit): Clip to narrowing (bug#11770).
10190
10191 2012-06-28 Paul Eggert <eggert@cs.ucla.edu>
10192
10193 Avoid integer overflow on scroll-left and scroll-right.
10194 * window.c (HSCROLL_MAX): New macro.
10195 (Fscroll_left, Fscroll_right): Avoid undefined behavior on integer
10196 overflow when requested scroll falls outside ptrdiff_t range.
10197
10198 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
10199
10200 * window.h (struct window): Change type of 'hscroll',
10201 'min_hscroll' and 'last_point' from Lisp_Object to ptrdiff_t,
10202 'last_modified' and 'last_overlay_modified' to EMACS_INT.
10203 Adjust users accordingly.
10204 * xdisp.c (try_cursor_movement): Replace type check with eassert.
10205 * window.c (Fscroll_left, Fscroll_right): Change type of 'hscroll'
10206 from EMACS_INT to ptrdiff_t.
10207 (make_window): Omit redundant initialization.
10208
10209 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
10210
10211 * makefile.w32-in ($(BLD)/regex.$(O)): Update dependencies.
10212
10213 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
10214
10215 * window.h (struct window): Change type of 'use_time' and
10216 'sequence_number' from Lisp_Object to int.
10217 * frame.c (make_frame): Adjust users accordingly.
10218 * print.c (print_object): Likewise.
10219 * window.c (select_window, Fwindow_use_time, make_parent_window)
10220 (make_window): Likewise.
10221
10222 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
10223
10224 * dispextern.h (GLYPH_DEBUG): Now defined in config.h if
10225 enabled with --enable-checking=[all,glyphs] configure option.
10226 Fix GLYPH_DEBUG usage assuming that it may be undefined,
10227 adjust comments accordingly.
10228 * dispnew.c: Fix GLYPH_DEBUG usage assuming that it may be
10229 undefined, adjust comments accordingly.
10230 * image.c: Likewise.
10231 * scroll.c: Likewise.
10232 * w32fns.c: Likewise.
10233 * w32term.c: Likewise.
10234 * xdisp.c: Likewise.
10235 * xfaces.c: Likewise.
10236 * xfns.c: Likewise.
10237 * xterm.c: Likewise.
10238
10239 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
10240
10241 Generalize run-time debugging checks.
10242 * dispextern.h (XASSERTS): Remove.
10243 * fontset.c (xassert): Remove.
10244 Convert from xassert to eassert.
10245 * alloc.c: Convert from xassert to eassert.
10246 * bidi.c: Likewise.
10247 * dispnew.c: Likewise.
10248 * fns.c: Likewise.
10249 * fringe.c: Likewise.
10250 * ftfont.c: Likewise.
10251 * gtkutil.c: Likewise.
10252 * image.c: Likewise.
10253 * keyboard.c: Likewise.
10254 * menu.c: Likewise.
10255 * process.c: Likewise.
10256 * scroll.c: Likewise.
10257 * sound.c: Likewise.
10258 * term.c: Likewise.
10259 * w32console.c: Likewise.
10260 * w32fns.c: Likewise.
10261 * w32term.c: Likewise.
10262 * window.c: Likewise.
10263 * xdisp.c: Likewise.
10264 * xfaces.c: Likewise.
10265 * xfns.c: Likewise.
10266 * xselect.c: Likewise.
10267 * xterm.c: Likewise.
10268
10269 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
10270
10271 * fns.c (maybe_resize_hash_table): Output message when growing the
10272 purify-hashtable.
10273
10274 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
10275
10276 * alloc.c (allocate_string_data): Remove dead code.
10277 * xsettings.c (XSETTINGS_FONT_NAME): Move under HAVE_XFT to
10278 avoid GCC warning about unused macro.
10279
10280 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
10281
10282 * alloc.c (allocate_string): Omit intervals initialization.
10283 * alloc.c (make_uninit_multibyte_string): Initialize intervals
10284 as in make_pure_string and make_pure_c_string.
10285
10286 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
10287
10288 * alloc.c (allocate_string): Fix last change.
10289
10290 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
10291
10292 * alloc.c (allocate_string): Remove two redundant calls
10293 to memset, add explicit initialization where appropriate.
10294
10295 2012-06-27 Glenn Morris <rgm@gnu.org>
10296
10297 * lisp.mk (lisp): Remove paths.elc.
10298
10299 2012-06-27 Chong Yidong <cyd@gnu.org>
10300
10301 * doc.c (Fsubstitute_command_keys): Fix punctuation.
10302
10303 2012-06-26 John Wiegley <johnw@newartisans.com>
10304
10305 * unexmacosx.c (copy_data_segment): Add two section names used
10306 on Mac OS X Lion: __mod_init_func and __mod_term_func.
10307
10308 * alloc.c (mark_memory): Do not check with -faddress-sanitizer
10309 when building with Clang.
10310
10311 2012-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
10312
10313 * eval.c (Fapply): Allow calling it with a single argument.
10314
10315 2012-06-26 Eli Zaretskii <eliz@gnu.org>
10316
10317 * s/ms-w32.h (strcasecmp, strncasecmp) [_MSC_VER]: Redirect to
10318 _stricmp and _strnicmp.
10319 (HAVE_STRCASECMP, HAVE_STRNCASECMP): Define to 1.
10320
10321 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
10322
10323 * alloc.c (allocate_window): Zero out non-Lisp part of newly
10324 allocated window.
10325 (allocate_process): Likewise for new process.
10326 (allocate_terminal): Change to use offsetof.
10327 (allocate_frame): Likewise.
10328 * frame.c (make_frame): Omit redundant initialization.
10329 * window.c (make_parent_window): Use memset.
10330 (make_window): Omit redundant initialization.
10331 * process.c (make_process): Omit redundant initialization.
10332 * terminal.c (create_terminal): Likewise.
10333
10334 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
10335
10336 * term.c (delete_tty): Remove redundant call to memset.
10337
10338 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
10339
10340 * alloc.c: Remove build_string.
10341 * lisp.h: Define build_string as static inline. This provides
10342 a better opportunity to optimize away calls to strlen when the
10343 function is called with compile-time constant argument.
10344 * image.c (imagemagick_error): Convert to build_string.
10345 * w32proc.c (sys_spawnve): Likewise.
10346 * xterm.c (x_term_init): Likewise.
10347
10348 2012-06-26 Paul Eggert <eggert@cs.ucla.edu>
10349
10350 Use sprintf return value instead of invoking strlen on result.
10351 In the old days this wasn't portable, since some sprintf
10352 implementations returned char *. But they died out years ago and
10353 Emacs already assumes sprintf returns int.
10354 Similarly for float_to_string.
10355 This patch speeds up (number-to-string 1000) by 3% on Fedora 15 x86-64.
10356 * ccl.c (ccl_driver):
10357 * character.c (string_escape_byte8):
10358 * data.c (Fnumber_to_string):
10359 * doprnt.c (doprnt):
10360 * print.c (print_object):
10361 * xdisp.c (message_dolog):
10362 * xfns.c (syms_of_xfns):
10363 Use sprintf or float_to_string result to avoid need to call strlen.
10364 * data.c (Fnumber_to_string):
10365 Use make_unibyte_string, since the string must be ASCII.
10366 * lisp.h, print.c (float_to_string): Now returns int length.
10367 * term.c (produce_glyphless_glyph):
10368 Use sprintf result rather than recomputing it.
10369
10370 Clean out last vestiges of the old HAVE_CONFIG_H stuff.
10371 * Makefile.in (ALL_CFLAGS):
10372 * makefile.w32-in (LOCAL_FLAGS): Remove -DHAVE_CONFIG_H.
10373 * gmalloc.c, regex.c: Include <config.h> unconditionally.
10374
10375 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
10376
10377 * dispextern.h (xstrcasecmp): Define to library function
10378 strcasecmp if available.
10379 * xfaces.c: Do not use xstrcasecmp if strcasecmp is available.
10380
10381 2012-06-25 Andreas Schwab <schwab@linux-m68k.org>
10382
10383 * keyboard.c (menu_bar_items, menu_bar_item, read_key_sequence):
10384 Avoid comma operator.
10385 * menu.c (push_submenu_start, push_submenu_end)
10386 (push_left_right_boundary, push_menu_pane): Likewise.
10387 * msdos.c (dos_rawgetc): Likewise.
10388
10389 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
10390
10391 * xfns.c (xic_create_fontsetname): Remove redundant calls
10392 to memset.
10393
10394 2012-06-25 Paul Eggert <eggert@cs.ucla.edu>
10395
10396 * gtkutil.c (get_utf8_string): Remove redundant assignment.
10397 sprintf already null-terminates its output.
10398
10399 * xfns.c (x_window): Remove redundant cast.
10400
10401 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
10402
10403 * xmenu.c (xmenu_show, xdialog_show): Explicit cast from
10404 `const char *' to `char *' to avoid compiler warning.
10405
10406 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
10407
10408 * xterm.c (x_term_init): Build proper-sized _XSETTINGS_Snnn string
10409 instead of truncating it to 63 (admittedly a generous limit).
10410
10411 * process.c: Fix spelling and caps in comments.
10412
10413 2012-06-24 Dan Nicolaescu <dann@ics.uci.edu>
10414
10415 * emacs.c (setpgrp): Remove definition, unused.
10416 * sysdep.c (setpgrp): Remove definition, not used in this file.
10417
10418 2012-06-24 Juanma Barranquero <lekktu@gmail.com>
10419
10420 * makefile.w32-in: Update dependencies.
10421
10422 2012-06-24 Eli Zaretskii <eliz@gnu.org>
10423
10424 * makefile.w32-in (TIMESPEC_H): Remove nt/inc/sys/time.h.
10425 (SYSTIME_H): Add nt/inc/sys/time.h.
10426
10427 * systime.h [WINDOWSNT]: Include sys/time.h.
10428
10429 * s/ms-w32.h (struct timespec): Definition moved from
10430 nt/inc/sys/time.h. Suggested by Paul Eggert <eggert@cs.ucla.edu>.
10431
10432 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
10433
10434 Switch from NO_RETURN to C11's _Noreturn (Bug#11750).
10435 * buffer.h (buffer_slot_type_mismatch):
10436 * data.c (arith_error) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
10437 * eval.c (unwind_to_catch):
10438 * image.c (my_png_error, my_error_exit):
10439 * keyboard.c (quit_throw_to_read_char, user_error)
10440 (Fexit_recursive_edit, Fabort_recursive_edit):
10441 * lisp.h (die, args_out_of_range, args_out_of_range_3)
10442 (wrong_type_argument, buffer_overflow, __executable_start)
10443 (memory_full, buffer_memory_full, string_overflow, Fthrow)
10444 (xsignal, xsignal0, xsignal1, xsignal2, xsignal3, signal_error)
10445 (error, verror, nsberror, report_file_error, Ftop_level, Fkill_emacs)
10446 (fatal):
10447 (child_setup) [!DOS_NT]:
10448 * lread.c (end_of_file_error, invalid_syntax):
10449 * process.c (send_process_trap) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
10450 * puresize.h (pure_write_error):
10451 * search.c (matcher_overflow):
10452 * sound.c (sound_perror, alsa_sound_perror):
10453 * sysdep.c, syssignal.h (croak):
10454 * term.c (maybe_fatal, vfatal):
10455 * textprop.c (text_read_only):
10456 * undo.c (user_error):
10457 * unexmacosx.c (unexec_error):
10458 * xterm.c (x_ins_del_lines, x_delete_glyphs):
10459 Use _Noreturn rather than NO_RETURN.
10460 No need for separate decl merely because of _Noreturn.
10461 * sound.c (sound_warning, parse_sound):
10462 Remove unnecessary forward decls.
10463
10464 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
10465
10466 Fix bug when time_t is unsigned and as wide as intmax_t (Bug#9000).
10467 * lisp.h (WAIT_READING_MAX): New macro.
10468 * dispnew.c (Fsleep_for, sit_for):
10469 * keyboard.c (kbd_buffer_get_event):
10470 * process.c (Faccept_process_output):
10471 Use it to avoid bogus compiler warnings with obsolescent GCC versions.
10472 This improves on the previous patch, which introduced a bug
10473 when time_t is unsigned and as wide as intmax_t.
10474 See <http://bugs.gnu.org/9000#51>.
10475
10476 2012-06-23 Eli Zaretskii <eliz@gnu.org>
10477
10478 * dispnew.c (sit_for, Fsleep_for):
10479 * keyboard.c (kbd_buffer_get_event):
10480 * process.c (Faccept_process_output): Avoid compiler warnings when
10481 comparing a 32-bit time_t with a 64-bit INTMAX_MAX.
10482
10483 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
10484
10485 * makefile.w32-in: Update dependencies.
10486
10487 * w32.c (ltime): Add return type and declare static.
10488 (w32_get_internal_run_time): Remove usused variable `time_100ns'.
10489
10490 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
10491
10492 * sysdep.c [__FreeBSD__]: Fix more recently-introduced typos.
10493 Privately reported by Herbert J. Skuhra.
10494 (make_lisp_timeval) [__FreeBSD__]: Rename from TIMELIST.
10495 All uses changed.
10496 (system_process_attributes) [__FreeBSD__]: Invoke make_lisp_time,
10497 not make_lisp_timeval, when the argument is of type EMACS_TIME.
10498
10499 2012-06-23 Eli Zaretskii <eliz@gnu.org>
10500
10501 * w32proc.c (Fw32_get_locale_info): Fix an off-by-one error in
10502 last argument of make_unibyte_string.
10503
10504 * keyboard.c (kbd_buffer_get_event): Include the codepage and the
10505 language ID in the event parameters.
10506
10507 * w32term.c (w32_read_socket): Put the new keyboard codepage into
10508 event.code, not the obscure "character set ID".
10509
10510 2012-06-23 Chong Yidong <cyd@gnu.org>
10511
10512 * xmenu.c (x_menu_wait_for_event): Adapt GTK3 to new xg_select.
10513
10514 2012-06-23 Eli Zaretskii <eliz@gnu.org>
10515
10516 Fix the MS-Windows build broken by 2012-06-22T21:17:42Z!eggert@cs.ucla.edu.
10517 * w32.c (fdutimens): New function.
10518
10519 * w32proc.c (sys_select): Adapt to change in the EMACS_TIME type.
10520
10521 * s/ms-w32.h (pselect): Redirect to sys_select.
10522
10523 * sysselect.h [WINDOWSNT]: Don't include sys/select.h.
10524
10525 * ralloc.c (r_alloc_inhibit_buffer_relocation): Fix stupid thinko
10526 in the logic of incrementing and decrementing the value of
10527 use_relocatable_buffers.
10528
10529 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
10530
10531 * sysdep.c [__FreeBSD__]: Fix recently-introduced typos.
10532 Privately reported by Herbert J. Skuhra.
10533 [__FreeBSD__]: Remove "*/" typo after "#include".
10534 (timeval_to_EMACS_TIME) [__FreeBSD__]: New static function.
10535 (TIMEVAL) [__FreeBSD__]: Now a static function rather than a macro.
10536 (TIMEVAL, system_process_attributes) [__FreeBSD__]:
10537 Don't assume EMACS_TIME and struct timeval are the same type.
10538
10539 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
10540
10541 Support higher-resolution time stamps (Bug#9000).
10542 The time stamps are only nanosecond-resolution at the C level,
10543 since that's the best that any real-world system supports now.
10544 But they are picosecond-resolution at the Lisp level, as that's
10545 easy, and leaves room for future OS improvements.
10546
10547 * Makefile.in (LIB_CLOCK_GETTIME): New macro.
10548 (LIBES): Use it.
10549
10550 * alloc.c (Fgarbage_collect): Port to higher-res time stamps.
10551 Don't get current time unless it's needed.
10552
10553 * atimer.c: Include <sys/time.h> unconditionally, since gnulib
10554 now provides it if it's absent.
10555 (start_atimer): Port to higher-res time stamps.
10556 Check for time stamp overflow. Don't get current time more
10557 often than is needed.
10558
10559 * buffer.h (struct buffer): Buffer modtime now has high resolution.
10560 Include systime.h, not time.h.
10561 (NONEXISTENT_MODTIME_NSECS, UNKNOWN_MODTIME_NSECS): New macros.
10562
10563 * dired.c: Include stat-time.h.
10564 (Ffile-attributes): File times now have higher resolution.
10565
10566 * dispextern.h [HAVE_WINDOW_SYSTEM]: Include systime.h.
10567 (struct image): Timestamp now has higher resolution.
10568
10569 * dispnew.c (PERIODIC_PREEMPTION_CHECKING): Remove, as Emacs always
10570 has at least microseconds now. All uses removed.
10571 (update_frame, update_single_window, update_window, update_frame_1)
10572 (Fsleep_for, sit_for): Port to higher-resolution time stamps.
10573 (duration_to_sec_usec): Remove; no longer needed.
10574
10575 * editfns.c (time_overflow): Now extern.
10576 (Fcurrent_time, Fget_internal_run_time, make_time, lisp_time_argument)
10577 (float-time, Fformat_time_string, Fcurrent_time_string)
10578 (Fcurrent_time_zone): Accept and generate higher-resolution
10579 time stamps.
10580 (make_time_tail, make_lisp_time, dissassemble_lisp_time)
10581 (decode_time_components, lisp_seconds_argument): New functions.
10582 (make_time): Now static.
10583 (lisp_time_argument): Now returns EMACS_TIME. New arg ppsec.
10584 Report an error if the time is invalid, rather than having the caller
10585 do that.
10586
10587 * fileio.c: Include <stat-time.h>
10588 (Fcopy_file): Copy higher-resolution time stamps.
10589 Prefer to set the time stamp via a file descriptor if that works.
10590 (Fset_file_times, Finsert_file_contents, Fwrite_region)
10591 (Fverify_visited_file_modtime, Fclear_visited_file_modtime)
10592 (Fvisited_file_modtime, Fset_visited_file_modtime):
10593 Support higher-resolution time stamps.
10594
10595 * fns.c (Frandom): Use nanoseconds, not microseconds, for seed.
10596
10597 * gtkutil.c (xg_maybe_add_timer): Port to higher-res time stamps.
10598
10599 * image.c (prepare_image_for_display, clear_image_cache)
10600 (lookup_image): Port to higer-resolution time stamps.
10601
10602 * keyboard.c (start_polling, bind_polling_period):
10603 Check for time stamp overflow.
10604 (read_char, kbd_buffer_get_event, timer_start_idle)
10605 (timer_stop_idle, timer_resume_idle, timer_check_2, timer_check)
10606 (Fcurrent_idle_time, init_keyboard, set_waiting_for_input):
10607 Port to higher-resolution time stamps. Do not assume time_t is signed.
10608 (decode_timer): New function. Timers are now vectors of length 9,
10609 not 8, to accommodate the picosecond component.
10610 (timer_check_2): Use it.
10611
10612 * nsterm.m (select_timeout, timeval_subtract): Remove.
10613 (ns_timeout): Use Emacs's facilities for time stamp arithmetic,
10614 as they're a bit more accurate and handle overflow better.
10615 (ns_select): Change prototype to be compatible with pselect.
10616 (ns_select, ns_term_shutdown): Port to ns-resolution time stamps.
10617 * nsterm.h (ns_select): Adjust prototype.
10618
10619 * msdos.c (EMACS_TIME_ZERO_OR_NEG_P): Remove, as it assumes
10620 us-resolution time stamps.
10621 (sys_select): Use the new EMACS_TIME_SIGN macro instead.
10622
10623 * lread.c (read_filtered_event): Port to ns-resolution time stamps.
10624
10625 * lisp.h (time_overflow): New decl.
10626 (wait_reading_process_output): First arg is now intmax_t, not int,
10627 to accommodate larger waits.
10628
10629 * process.h (struct Lisp_Process.read_output_delay):
10630 Now counts nanoseconds, not microseconds.
10631 * process.c (ADAPTIVE_READ_BUFFERING): Don't worry about
10632 EMACS_HAS_USECS.
10633 (READ_OUTPUT_DELAY_INCREMENT, Faccept_process_output)
10634 (wait_reading_process_output):
10635 Port to ns-resolution time stamps.
10636 (Faccept_process_output, wait_reading_process_output):
10637 Check for time stamp overflow. Do not assume time_t is signed.
10638 (select_wrapper): Remove; we now use pselect.
10639 (Fprocess_attributes): Now generates ns-resolution time stamps.
10640
10641 * sysdep.c: Include utimens.h. Don't include utime.h
10642 or worry about struct utimbuf; gnulib does that for us now.
10643 (gettimeofday): Remove; gnulib provides a substitute.
10644 (make_timeval): New function.
10645 (set_file_times): Now sets ns-resolution time stamps.
10646 New arg FD; all uses changed.
10647 (time_from_jiffies, ltime_from_jiffies, get_up_time)
10648 (system_process_attributes):
10649 Now returns ns-resolution time stamp. All uses changed.
10650 Check for time stamp overflow.
10651
10652 * sysselect.h: Don't depend on HAVE_SYS_SELECT_H; gnulib
10653 provides a substitute now.
10654
10655 * systime.h: Include timespec.h rather than sys/time.h and time.h,
10656 since it guarantees struct timespec.
10657 (EMACS_TIME): Now struct timespec, so that we can support
10658 ns-resolution time stamps.
10659 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): New macros.
10660 (EMACS_HAS_USECS): Remove; Emacs always has sub-second time stamps now.
10661 (EMACS_USECS): Remove.
10662 (EMACS_SET_USECS): The underlying time stamp now has ns resolution,
10663 so multiply the arg by 1000 before storing it.
10664 (EMACS_NSECS, EMACS_SECS_ADDR, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS):
10665 New macros.
10666 (EMACS_GET_TIME, EMACS_ADD_TIME, EMACS_SUB_TIME):
10667 Port to ns-resolution time stamps.
10668 (EMACS_TIME_NEG_P): Remove; replaced by....
10669 (EMACS_TIME_SIGN): New macro.
10670 (EMACS_SET_INVALID_TIME, EMACS_TIME_VALID_P)
10671 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE): New macros.
10672 (set_file_times, make_time, lisp_time_argument): Adjust signature.
10673 (make_timeval, make_lisp_time, decode_time_components): New decls.
10674 (EMACS_TIME_CMP): Remove; no longer used. Plus, it was buggy, in
10675 that it mishandled time_t overflow. You can't compare by subtracting!
10676 (EMACS_TIME_EQ, EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE)
10677 (EMACS_TIME_LT, EMACS_TIME_LE): Rewrite in terms of timespec_cmp.
10678
10679 * term.c: Include <sys/time.h>.
10680 (timeval_to_Time): New function, for proper overflow wraparound.
10681 (term_mouse_position, term_mouse_click): Use it.
10682
10683 * undo.c (record_first_change): Support higher-resolution time stamps
10684 in the undo buffer.
10685 (Fprimitive_undo): Use them when restoring time stamps.
10686
10687 * w32.c (ltime, U64_TO_LISP_TIME, process_times, emacs_gnutls_pull)
10688 (w32_get_internal_run_time):
10689 Port to higher-resolution Emacs time stamps.
10690 (ltime): Now accepts single 64-bit integer, as that's more convenient
10691 for callers.
10692
10693 * xdisp.c (start_hourglass): Port to ns-resolution time stamps.
10694
10695 * xgselect.c, xgselect.h (xg_select): Add sigmask argument,
10696 for compatibility with pselect. Support ns-resolution time stamps.
10697
10698 * xmenu.c (x_menu_wait_for_event): Support ns-resolution time stamps.
10699
10700 * xselect.c (wait_for_property_change, x_get_foreign_selection):
10701 Check for time stamp overflow, and support ns-resolution time stamps.
10702
10703 * xterm.c: Don't include sys/time.h; gnulib does that for us now.
10704 Don't worry about whether HAVE_TIMEVAL and HAVE_SELECT are set.
10705 (timeval_subtract): Remove; no longer needed.
10706 (XTflash, XTring_bell, x_wait_for_event):
10707 Port to ns-resolution time stamps. Don't assume time_t is signed.
10708
10709 2012-06-22 Chong Yidong <cyd@gnu.org>
10710
10711 * xdisp.c (x_consider_frame_title): Revert last change.
10712
10713 2012-06-22 Eli Zaretskii <eliz@gnu.org>
10714
10715 * alloc.c (NSTATICS): Enlarge to 0x650. Otherwise, Emacs compiled
10716 with -DENABLE_CHECKING -DXASSERTS -DGLYPH_DEBUG=1 -DBYTE_CODE_METER
10717 aborts in staticpro during startup. (Without -DBYTE_CODE_METER,
10718 staticidx goes up to 1597 out of 1600 = 0x640.)
10719
10720 2012-06-20 Paul Eggert <eggert@cs.ucla.edu>
10721
10722 * fileio.c (Fdefault_file_modes): Block input while fiddling with umask.
10723 Otherwise, the umask might be mistakenly 0 while handling input signals.
10724
10725 2012-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
10726
10727 * minibuf.c (Fread_string): Bind minibuffer-completion-table.
10728
10729 2012-06-19 Dmitry Antipov <dmantipov@yandex.ru>
10730
10731 * alloc.c, bytecode.c, ccl.c, coding.c, composite.c, data.c, dosfns.c:
10732 * font.c, image.c, keyboard.c, lread.c, menu.c, minibuf.c, msdos.c:
10733 * print.c, syntax.c, window.c, xmenu.c, xselect.c: Replace direct
10734 access to `contents' member of Lisp_Vector objects with AREF and ASET
10735 where appropriate.
10736
10737 2012-06-19 Chong Yidong <cyd@gnu.org>
10738
10739 * frame.c (delete_frame): When selecting a frame on a different
10740 text terminal, do not alter the terminal's top-frame.
10741
10742 * xdisp.c (format_mode_line_unwind_data): Record the target
10743 frame's selected window and its terminal's top-frame.
10744 (unwind_format_mode_line): Restore them.
10745 (x_consider_frame_title, display_mode_line, Fformat_mode_line):
10746 Callers changed.
10747 (x_consider_frame_title): Do not condition on HAVE_WINDOW_SYSTEM,
10748 since tty frames can be explicitly named.
10749 (prepare_menu_bars): Likewise.
10750
10751 * term.c (Ftty_top_frame): New function.
10752
10753 2012-06-18 Paul Eggert <eggert@cs.ucla.edu>
10754
10755 Port byte-code-meter to modern targets.
10756 * bytecode.c (METER_CODE) [BYTE_CODE_METER]: Don't assume
10757 !CHECK_LISP_OBJECT_TYPE && !USE_LSB_TAG. Problem with
10758 CHECK_LISP_OBJECT_TYPE reported by Dmitry Antipov in
10759 <http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00282.html>.
10760 (METER_1, METER_2): Simplify.
10761
10762 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
10763
10764 * data.c (Fdefalias): Return `symbol' (bug#11686).
10765
10766 2012-06-18 Martin Rudalics <rudalics@gmx.at>
10767
10768 * buffer.c (Fkill_buffer): Don't throw an error when the buffer
10769 gets killed during executing of this function (Bug#11665).
10770 Try to always return Qt when the buffer has been actually killed.
10771 (Vkill_buffer_query_functions): In doc-string say that functions
10772 run by this hook should not change the current buffer.
10773
10774 2012-06-18 Paul Eggert <eggert@cs.ucla.edu>
10775
10776 Fix recently-introduced process.c problems found by static checking.
10777 * process.c (write_queue_push, write_queue_pop, send_process):
10778 Use ptrdiff_t, not int or EMACS_INT, for buffer lengths and offsets.
10779 (write_queue_pop): Fix pointer signedness problem.
10780 (send_process): Remove unused local.
10781
10782 2012-06-17 Chong Yidong <cyd@gnu.org>
10783
10784 * xdisp.c (redisplay_internal): No need to redisplay terminal
10785 frames that are not on top.
10786
10787 2012-06-17 Troels Nielsen <bn.troels@gmail.com>
10788
10789 * process.c (make_process): Initialize write_queue.
10790 (write_queue_push, write_queue_pop): New functions.
10791 (send_process): Use them to maintain correct ordering of process
10792 writes (Bug#10815).
10793
10794 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
10795
10796 * lisp.h (eassert): Assume C89 or later.
10797 This removes the need for CHECK.
10798 (CHECK): Remove. Its comments about always evaluating its
10799 argument were confusing, as 'eassert' typically does not evaluate
10800 its argument.
10801
10802 * coding.c (produce_chars): Use ptrdiff_t, not int.
10803
10804 * xterm.c (x_draw_underwave): Check for integer overflow.
10805 This pacifies gcc 4.7.0 -Wunsafe-loop-optimizations on x86-64.
10806
10807 2012-06-17 Jan Djärv <jan.h.d@swipnet.se>
10808
10809 * nsterm.m (x_free_frame_resources): Move xfree so freed memory isn't
10810 referenced (Bug#11583).
10811
10812 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
10813
10814 Implement wave-style variant of underlining.
10815 * dispextern.h (face_underline_type): New enum.
10816 (face): Add field for underline type.
10817 * nsterm.m (ns_draw_underwave): New function.
10818 (ns_draw_text_decoration): Use it.
10819 * w32term.c (w32_restore_glyph_string_clip, w32_draw_underwave):
10820 New functions.
10821 (x_draw_glyph_string): Use them.
10822 * xfaces.c (Qline, Qwave): New Lisp objects.
10823 (check_lface_attrs, merge_face_ref)
10824 (Finternal_set_lisp_face_attribute, realize_x_face):
10825 Handle wave-style underline face attributes.
10826 * xterm.c (x_draw_underwave): New function.
10827 (x_draw_glyph_string): Use it.
10828
10829 2012-06-16 Juanma Barranquero <lekktu@gmail.com>
10830
10831 * makefile.w32-in ($(BLD)/emacs.$(O), $(BLD)/fringe.$(O))
10832 ($(BLD)/xml.$(O), $(BLD)/intervals.$(O), $(BLD)/macros.$(O))
10833 ($(BLD)/minibuf.$(O), $(BLD)/regex.$(O), $(BLD)/region-cache.$(O))
10834 ($(BLD)/textprop.$(O), $(BLD)/undo.$(O), $(BLD)/window.$(O))
10835 ($(BLD)/w32select.$(O)): Update dependencies.
10836
10837 2012-06-16 Andreas Schwab <schwab@linux-m68k.org>
10838
10839 * buffer.h (FETCH_MULTIBYTE_CHAR): Define as inline.
10840 (BUF_FETCH_MULTIBYTE_CHAR): Likewise.
10841 * character.c (_fetch_multibyte_char_p): Remove.
10842 * alloc.c: Include "character.h" before "buffer.h".
10843 * bidi.c: Likewise.
10844 * buffer.c: Likewise.
10845 * bytecode.c: Likewise.
10846 * callint.c: Likewise.
10847 * callproc.c: Likewise.
10848 * casefiddle.c: Likewise.
10849 * casetab.c: Likewise.
10850 * category.c: Likewise.
10851 * cmds.c: Likewise.
10852 * coding.c: Likewise.
10853 * composite.c: Likewise.
10854 * dired.c: Likewise.
10855 * dispnew.c: Likewise.
10856 * doc.c: Likewise.
10857 * dosfns.c: Likewise.
10858 * editfns.c: Likewise.
10859 * emacs.c: Likewise.
10860 * fileio.c: Likewise.
10861 * filelock.c: Likewise.
10862 * font.c: Likewise.
10863 * fontset.c: Likewise.
10864 * fringe.c: Likewise.
10865 * indent.c: Likewise.
10866 * insdel.c: Likewise.
10867 * intervals.c: Likewise.
10868 * keyboard.c: Likewise.
10869 * keymap.c: Likewise.
10870 * lread.c: Likewise.
10871 * macros.c: Likewise.
10872 * marker.c: Likewise.
10873 * minibuf.c: Likewise.
10874 * nsfns.m: Likewise.
10875 * nsmenu.m: Likewise.
10876 * print.c: Likewise.
10877 * process.c: Likewise.
10878 * regex.c: Likewise.
10879 * region-cache.c: Likewise.
10880 * search.c: Likewise.
10881 * syntax.c: Likewise.
10882 * term.c: Likewise.
10883 * textprop.c: Likewise.
10884 * undo.c: Likewise.
10885 * unexsol.c: Likewise.
10886 * w16select.c: Likewise.
10887 * w32fns.c: Likewise.
10888 * w32menu.c: Likewise.
10889 * window.c: Likewise.
10890 * xdisp.c: Likewise.
10891 * xfns.c: Likewise.
10892 * xmenu.c: Likewise.
10893 * xml.c: Likewise.
10894 * xselect.c: Likewise.
10895
10896 2012-06-16 Eli Zaretskii <eliz@gnu.org>
10897
10898 * xdisp.c (set_cursor_from_row): Don't dereference glyphs_end.
10899 If all the glyphs of the glyph row came from strings, and we have no
10900 cursor positioning clues, put the cursor on the first glyph of the
10901 row.
10902 (handle_face_prop): Use chunk-relative overlay string index when
10903 indexing into it->string_overlays array. (Bug#11653)
10904 (set_cursor_from_row): Use the leftmost glyph as GLYPH_BEFORE, not
10905 the rightmost. (Bug#11720)
10906
10907 2012-06-16 Andreas Schwab <schwab@linux-m68k.org>
10908
10909 * category.h (CHAR_HAS_CATEGORY): Define as inline.
10910 (CATEGORY_MEMBER): Enforce 1/0 value.
10911 * category.c (_temp_category_set): Remove.
10912
10913 2012-06-16 Eli Zaretskii <eliz@gnu.org>
10914
10915 * window.c (Fdelete_other_windows_internal)
10916 (Fdelete_window_internal): Don't access frame's mouse highlight
10917 info of the initial frame. (Bug#11677)
10918
10919 2012-06-14 Paul Eggert <eggert@cs.ucla.edu>
10920
10921 * .gdbinit (xgetint): Fix recently-introduced paren typo.
10922 Assume USE_2_TAGS_FOR_INTS.
10923 (xreload): Adjust $tagmask width to match recent lisp.h change.
10924
10925 Simplify lisp.h in minor ways that should not affect code.
10926 * lisp.h (USE_2_TAGS_FOR_INTS): Remove, as it was always defined.
10927 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P)
10928 (LISP_INT1_TAG, enum Lisp_Type, XINT, XUINT, make_number):
10929 Simplify under the assumption that USE_2_TAGS_FOR_INTS is defined.
10930 (INTTYPEBITS): New macro, for clarity.
10931 (INTMASK, MOST_POSITIVE_FIXNUM): Use it.
10932 (LISP_INT1_TAG, LISP_STRING_TAG, LISP_INT_TAG_P):
10933 Simplify now that USE_LSB_TAG is always defined.
10934 (TYPEMASK, XINT) [USE_LSB_TAG]: Remove unnecessary cast.
10935 (make_number) [!USE_LSB_TAG]: Use INTMASK; that's simpler.
10936
10937 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
10938
10939 * makefile.w32-in ($(BLD)/data.$(O)): Update dependencies.
10940
10941 2012-06-13 Glenn Morris <rgm@gnu.org>
10942
10943 * s/bsd-common.h (BSD4_3):
10944 * s/usg5-4-common.h (USG5_4): No longer define; unused.
10945
10946 2012-06-13 Andreas Schwab <schwab@linux-m68k.org>
10947
10948 * lisp.h (Lisp_Object) [CHECK_LISP_OBJECT_TYPE]: Define as struct
10949 instead of union.
10950 (XLI, XIL): Define.
10951 (XHASH, XTYPE, XINT, XUINT, make_number, XSET, XPNTR, XUNTAG):
10952 Use them.
10953 * emacs.c (gdb_use_struct): Rename from gdb_use_union.
10954 * .gdbinit: Check gdb_use_struct instead of gdb_use_union.
10955 * alloc.c (widen_to_Lisp_Object): Remove.
10956 (mark_memory): Use XIL instead of widen_to_Lisp_Object.
10957 * frame.c (delete_frame): Remove outdated comment.
10958 * w32fns.c (Fw32_register_hot_key): Use XLI instead of checking
10959 USE_LISP_UNION_TYPE.
10960 (Fw32_unregister_hot_key): Likewise.
10961 (Fw32_toggle_lock_key): Likewise.
10962 * w32menu.c (add_menu_item): Likewise.
10963 (w32_menu_display_help): Use XIL instead of checking
10964 USE_LISP_UNION_TYPE.
10965 * w32heap.c (allocate_heap): Don't check USE_LISP_UNION_TYPE.
10966 (init_heap): Likewise.
10967 * w32term.c (w32_read_socket): Update comment.
10968
10969 2012-06-13 Glenn Morris <rgm@gnu.org>
10970
10971 * s/usg5-4-common.h, src/s/unixware.h:
10972 Remove define/undef of HAVE_SYSV_SIGPAUSE (not used since 2010-05-04).
10973
10974 * s/gnu.h (POSIX_SIGNALS): Remove (not used since 2010-05-04).
10975
10976 2012-06-13 Paul Eggert <eggert@cs.ucla.edu>
10977
10978 USE_LISP_UNION_TYPE + USE_LSB_TAG cleanup (Bug#11604)
10979 * alloc.c (make_number) [!defined make_number]:
10980 Remove, as lisp.h always defines this now.
10981 (mark_maybe_pointer): Simplify since USE_LSB_TAG is always defined now.
10982 (roundup_size): Verify that it is a power of 2.
10983 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
10984 * ftfont.c (ftfont_driver): Use LISP_INITIALLY_ZERO.
10985 * lisp.h (USE_LSB_TAG): Allow the builder to compile with
10986 -DUSE_LSB_TAG=0, to override the automatically-selected default.
10987 USE_LSB_TAG now is always defined to be either 0 or 1.
10988 All uses changed.
10989 (union Lisp_Object): Don't worry about WORDS_BIGENDIAN; the
10990 code works fine either way, and efficiency is not a concern here,
10991 as the union type is for debugging, not for production.
10992 (LISP_MAKE_RVALUE, make_number) [USE_LISP_UNION_TYPE]:
10993 Use an inline function on all platforms when using the union type,
10994 since this is simpler and 'static inline' can be used portably
10995 within Emacs now.
10996 (LISP_INITIALLY_ZERO): New macro.
10997 (XFASTINT, XSETFASTINT) [USE_LISP_UNION_TYPE]: Remove.
10998 (XSET) [USE_LISP_UNION_TYPE]: Don't overparenthesize.
10999
11000 2012-06-12 Glenn Morris <rgm@gnu.org>
11001
11002 * s/gnu-kfreebsd.h, s/hpux11.h, s/openbsd.h, s/sol2-10.h: Remove files.
11003
11004 * s/gnu-linux.h (HAVE_PROCFS): Move to configure.
11005
11006 * s/hpux10-20.h, s/openbsd.h, s/usg5-4-common.h:
11007 Move BROKEN_SIGIO to configure.
11008
11009 * s/bsd-common.h, s/darwin.h, s/gnu-kfreebsd.h, s/hpux10-20.h:
11010 Move NO_TERMIO to configure.
11011
11012 2012-06-12 Chong Yidong <cyd@gnu.org>
11013
11014 * image.c (imagemagick_load_image): Use MagickFlattenImage if
11015 MagickMergeImageLayers is undefined. Use pixel pusher loop if
11016 MagickExportImagePixels is undefined.
11017
11018 2012-06-12 Paul Eggert <eggert@cs.ucla.edu>
11019
11020 * image.c (imagemagick_load_image): Remove unused label.
11021
11022 2012-06-11 Glenn Morris <rgm@gnu.org>
11023
11024 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
11025 * s/gnu-kfreebsd.h, s/gnu-linux.h, s/gnu.h, s/hpux10-20.h:
11026 * s/irix6-5.h, s/ms-w32.h, s/msdos.h, s/template.h:
11027 * s/usg5-4-common.h: Move SYSTEM_TYPE to configure.
11028
11029 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
11030
11031 * alloc.c (make_byte_code): New function.
11032 (Fmake_byte_code): Use it. Don't purify here.
11033 * lread.c (read1): Use it as well to avoid extra allocation.
11034
11035 2012-06-11 Chong Yidong <cyd@gnu.org>
11036
11037 * image.c (imagemagick_load_image): Implement transparency.
11038
11039 2012-06-10 Andreas Schwab <schwab@linux-m68k.org>
11040
11041 * regex.c (at_begline_loc_p): Also recognize `(?N:' and correctly
11042 account for preceding backslashes. (Bug#11663)
11043
11044 2012-06-09 Chong Yidong <cyd@gnu.org>
11045
11046 * term.c: Support italics in capable terminals (Bug#9652).
11047 (no_color_bit): Replace unused NC_BLINK with NC_ITALIC.
11048 (turn_on_face): Output using TS_enter_italic_mode if available.
11049 Don't handle unused blinking and alt-charset cases.
11050 (turn_off_face): Handle italic case; discard unused tty_blinking_p
11051 and tty_alt_charset_p cases.
11052 (tty_capable_p, init_tty): Support italics.
11053
11054 * termchar.h (struct tty_display_info): Add field for italics.
11055 Remove unused blink field.
11056
11057 * xfaces.c (tty_supports_face_attributes_p, realize_tty_face):
11058 Handle slant.
11059
11060 * dispextern.h: Replace unused TTY_CAP_BLINK with TTY_CAP_ITALIC.
11061 (struct face): Remove unused fields tty_dim_p, tty_blinking_p, and
11062 tty_alt_charset_p. Add tty_italic_p.
11063
11064 2012-06-09 Michael Albinus <michael.albinus@gmx.de>
11065
11066 * dbusbind.c (XD_BASIC_DBUS_TYPE): Use dbus_type_is_valid and
11067 dbus_type_is_basic if available.
11068 (xd_extract_signed, xd_extract_unsigned): Rename from
11069 extract_signed and extract_unsigned, respectively. Adapt callers.
11070
11071 2012-06-09 Chong Yidong <cyd@gnu.org>
11072
11073 * xfaces.c (face_for_overlay_string): Handle face remapping (Bug#2066).
11074
11075 * fringe.c (Fset_fringe_bitmap_face): Handle the noninteractive
11076 case (Bug#9752).
11077
11078 2012-06-08 Paul Eggert <eggert@cs.ucla.edu>
11079
11080 * xdisp.c (vmessage): Treat frame message as multibyte.
11081 Without this change, (let ((§ 1)) (make-variable-buffer-local '§))
11082 would generate the diagnostic "Making \302\247 buffer-local while
11083 let-bound!".
11084
11085 2012-06-08 Eli Zaretskii <eliz@gnu.org>
11086
11087 * dispnew.c (showing_window_margins_p): Undo last change, which
11088 was done due to an inadvertent commit.
11089 (adjust_frame_glyphs_for_frame_redisplay): Do call
11090 showing_window_margins_p.
11091
11092 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
11093
11094 * eval.c (Fmake_var_non_special): New primitive.
11095 (syms_of_eval): Defsubr it.
11096 * lread.c (syms_of_lread): Mark `values' as lexically scoped.
11097
11098 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
11099
11100 * dispnew.c (showing_window_margins_p): Wrap in #if 0 to prevent unused
11101 function warning (the only call is inside #if 0 since 2012-06-08T08:44:45Z!eliz@gnu.org).
11102
11103 2012-06-08 Eli Zaretskii <eliz@gnu.org>
11104
11105 * alloc.c (allocate_vectorlike): Fix last change.
11106
11107 2012-06-08 Dmitry Antipov <dmantipov@yandex.ru>
11108
11109 Block-based vector allocation of small vectors.
11110 * lisp.h (struct vectorlike_header): New field `nbytes',
11111 adjust comment accordingly.
11112 * alloc.c (enum mem_type): New type `MEM_TYPE_VECTOR_BLOCK'
11113 to denote vector blocks. Adjust users (live_vector_p,
11114 mark_maybe_pointer, valid_lisp_object_p) accordingly.
11115 (COMMON_MULTIPLE): Move outside #if USE_LSB_TAG.
11116 (VECTOR_BLOCK_SIZE, vroundup, VECTOR_BLOCK_BYTES),
11117 (VBLOCK_BYTES_MIN, VBLOCK_BYTES_MAX, VECTOR_MAX_FREE_LIST_INDEX),
11118 (VECTOR_FREE_LIST_FLAG, ADVANCE, VINDEX, SETUP_ON_FREE_LIST),
11119 (VECTOR_SIZE, VECTOR_IN_BLOCK): New macros.
11120 (roundup_size): New constant.
11121 (struct vector_block): New data type.
11122 (vector_blocks, vector_free_lists, zero_vector): New variables.
11123 (all_vectors): Rename to `large_vectors'.
11124 (allocate_vector_from_block, init_vectors, allocate_vector_from_block)
11125 (sweep_vectors): New functions.
11126 (allocate_vectorlike): Return `zero_vector' as the only vector of
11127 0 items. Allocate new vector from block if vector size is less than
11128 or equal to VBLOCK_BYTES_MAX.
11129 (Fgarbage_collect): Move all vector sweeping code to sweep_vectors.
11130 (init_alloc_once): Add call to init_vectors.
11131
11132 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
11133
11134 * eval.c (Fmacroexpand): Stop if the macro returns the same form.
11135
11136 2012-06-07 Paul Eggert <eggert@cs.ucla.edu>
11137
11138 * doprnt.c (doprnt): Truncate multibyte char correctly.
11139 Without this change, doprnt (buf, 2, "%s", FORMAT_END, AP)
11140 would mishandle a string argument "Xc" if X was a multibyte
11141 character of length 2: it would truncate after X's first byte
11142 rather than including all of X.
11143
11144 2012-06-06 Chong Yidong <cyd@gnu.org>
11145
11146 * buffer.c (word_wrap): Doc fix.
11147
11148 2012-06-04 Paul Eggert <eggert@cs.ucla.edu>
11149
11150 * xdisp.c (note_mode_line_or_margin_highlight): Pacify gcc -Wall.
11151
11152 2012-06-03 Glenn Morris <rgm@gnu.org>
11153
11154 * xdisp.c (tool-bar-style): Doc fix.
11155
11156 2012-06-03 Ulrich Müller <ulm@gentoo.org>
11157
11158 * Makefile.in (PAXCTL): Define.
11159 (temacs$(EXEEXT)): Disable memory randomization for the temacs
11160 binary via PaX flags if the paxctl utility is available.
11161 (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
11162 Restore PaX flags to their default. (Bug#11398)
11163
11164 2012-06-03 Chong Yidong <cyd@gnu.org>
11165
11166 * xdisp.c (decode_mode_spec_coding): Display a space for a unibyte
11167 buffer (Bug#11226).
11168
11169 2012-06-03 Chong Yidong <cyd@gnu.org>
11170
11171 * xdisp.c (calc_pixel_width_or_height): Use Fbuffer_local_value.
11172 (note_mode_line_or_margin_highlight): If there is no help echo,
11173 use mode-line-default-help-echo. Handle the case where the mouse
11174 position is past the end of the mode line string.
11175
11176 * buffer.c (buffer_local_value_1): New function, split from
11177 Fbuffer_local_value; can return Qunbound.
11178 (Fbuffer_local_value): Use it.
11179 (Vmode_line_format): Docstring tweaks.
11180
11181 2012-06-02 Paul Eggert <eggert@cs.ucla.edu>
11182
11183 * sysdep.c (system_process_attributes): Improve comment.
11184
11185 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
11186
11187 * keyboard.c: Export real-this-command to Elisp.
11188 (syms_of_keyboard): Rename real_this_command to Vreal_this_command
11189 and DEFVAR it. Update all users.
11190
11191 2012-06-02 Paul Eggert <eggert@cs.ucla.edu>
11192
11193 * minibuf.c (Fassoc_string): Remove duplicate declaration.
11194
11195 * sysdep.c (system_process_attributes) [SOLARIS2 && HAVE_PROCFS]:
11196 Convert pctcpu and pctmem to Lisp float properly.
11197 Let the compiler fold better, as 100.0/0x8000 is exact.
11198
11199 2012-06-02 Andreas Schwab <schwab@linux-m68k.org>
11200
11201 * alloc.c (CONS_BLOCK_SIZE): Account for padding at the end of
11202 cons_block.
11203
11204 2012-06-01 Paul Eggert <eggert@cs.ucla.edu>
11205
11206 * xfns.c (x_set_tool_bar_lines) [USE_GTK]: Adjust to bitfield change.
11207
11208 2012-06-01 Dmitry Antipov <dmantipov@yandex.ru>
11209
11210 For a 'struct window', replace some Lisp_Object fields to
11211 bitfields where appropriate, remove unused fields.
11212 * window.h (struct window): Remove unused 'last_mark_x' and
11213 'last_mark_y' fields. Rename 'mini_p' field to 'mini',
11214 change its type from Lisp_Object to bitfield.
11215 Change type of 'force_start', 'optional_new_start',
11216 'last_had_star', 'update_mode_line' and 'start_at_line_beg'
11217 fields from Lisp_Object to bitfield. Adjust users accordingly.
11218
11219 2012-05-31 Paul Eggert <eggert@cs.ucla.edu>
11220
11221 Pacify gcc -Wdouble-precision when using Xaw.
11222 * xterm.c (xaw_jump_callback, x_set_toolkit_scroll_bar_thumb)
11223 [HAVE_X_WINDOWS && USE_TOOLKIT_SCROLL_BARS && !USE_MOTIF && !USE_GTK]:
11224 Use 'float' consistently, rather than 'float' in most places
11225 and 'double' in a couple of places.
11226
11227 2012-05-31 Eli Zaretskii <eliz@gnu.org>
11228
11229 * xdisp.c (handle_stop): Detect whether we have overlay strings
11230 loaded by testing it->current.overlay_string_index to be
11231 non-negative, instead of checking whether n_overlay_strings is
11232 positive. (Bug#11587)
11233
11234 2012-05-31 Chong Yidong <cyd@gnu.org>
11235
11236 * keymap.c (describe_map_tree): Revert 2011-07-07 change (Bug#1169).
11237
11238 * doc.c (Fsubstitute_command_keys): Doc fix.
11239
11240 2012-05-31 Eli Zaretskii <eliz@gnu.org>
11241
11242 * search.c (search_buffer): Remove calls to
11243 r_alloc_inhibit_buffer_relocation, as it is now called by
11244 maybe_unify_char, which was the cause of relocation of buffer text
11245 in bug#11519.
11246
11247 2012-05-31 Eli Zaretskii <eliz@gnu.org>
11248
11249 * charset.c (maybe_unify_char): Inhibit relocation of buffer text
11250 for the duration of call to load_charset, to avoid problems with
11251 callers of maybe_unify_char that access buffer text through C
11252 pointers.
11253
11254 * ralloc.c (r_alloc_inhibit_buffer_relocation): Increment and
11255 decrement the inhibition flag, instead of just setting or
11256 resetting it.
11257
11258 2012-05-31 Paul Eggert <eggert@cs.ucla.edu>
11259
11260 Remove obsolete '#define static' cruft.
11261 * s/hpux10-20.h (_FILE_OFFSET_BITS): Don't #undef.
11262 This #undef was "temporary" in 2000; it is no longer needed
11263 now that '#define static' has gone away.
11264 * xfns.c, xterm.h (gray_bitmap_width, gray_bitmap_height)
11265 (gray_bitmap_bits): Remove; no longer needed.
11266 All uses replaced with definiens.
11267 * xterm.c: Include "bitmaps/gray.xbm".
11268
11269 2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
11270
11271 Clean up __executable_start, monstartup when --enable-profiling.
11272 The following changes affect the code only when profiling.
11273 * dispnew.c (__executable_start): Rename from safe_bcopy.
11274 Define only on platforms that need it.
11275 * emacs.c: Include <sys/gmon.h> when profiling.
11276 (_mcleanup): Remove decl, since <sys/gmon.h> does it now.
11277 (__executable_start): Remove decl, since lisp.h does it now.
11278 (safe_bcopy): Remove decl; no longer has that name.
11279 (main): Coalesce #if into single bit of code, for simplicity.
11280 Cast pointers to uintptr_t, since standard libraries want integers
11281 and not pointers.
11282 * lisp.h (__executable_start): New decl.
11283
11284 2012-05-31 Glenn Morris <rgm@gnu.org>
11285
11286 * image.c (Fimagemagick_types): Doc fix.
11287
11288 2012-05-30 Jim Meyering <meyering@redhat.com>
11289
11290 * callproc.c (Fcall_process_region): Include directory component
11291 in mkstemp error message (Bug#11586).
11292
11293 2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
11294
11295 * alloc.c, lisp.h (make_pure_vector): Now static.
11296
11297 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
11298
11299 * eval.c (Fdefun, Fdefmacro, Vmacro_declaration_function):
11300 Move to byte-run.el.
11301 (Fautoload): Do the hash-doc more carefully.
11302 * data.c (Fdefalias): Purify definition, except for keymaps.
11303 (Qdefun): Move from eval.c.
11304 * lisp.h (Qdefun): Remove.
11305 * lread.c (read1): Tiny simplification.
11306
11307 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
11308
11309 Do not create empty overlays with the evaporate property (Bug#9642).
11310 * buffer.c (Fmove_overlay): Reinstate the earlier fix for
11311 Bug#9642, but explicitly check that the buffer the overlay would
11312 be moved to is live and rearrange lines to make sure that errors
11313 will not put the overlay in an inconsistent state.
11314 (Fdelete_overlay): Cosmetics.
11315
11316 2012-05-28 Eli Zaretskii <eliz@gnu.org>
11317
11318 * w32term.c (my_bring_window_to_top): New function.
11319 (x_raise_frame): Use handle returned by DeferWindowPos, which
11320 could be different from the original one.
11321 Call my_bring_window_to_top instead of my_set_foreground_window.
11322 (Bug#11513)
11323
11324 * w32fns.c (w32_wnd_proc): Accept and process WM_EMACS_BRINGTOTOP
11325 by calling BringWindowToTop.
11326
11327 * w32term.h (WM_EMACS_BRINGTOTOP): New message.
11328 (WM_EMACS_END): Increase by one.
11329
11330 2012-05-28 Paul Eggert <eggert@cs.ucla.edu>
11331
11332 * bidi.c (bidi_mirror_char): Put eassert before conversion to int.
11333 This avoids undefined behavior that might cause the eassert
11334 to not catch an out-of-range value.
11335
11336 2012-05-28 Juanma Barranquero <lekktu@gmail.com>
11337
11338 * makefile.w32-in ($(BLD)/w32inevt.$(O), $(BLD)/w32console.$(O)):
11339 Update dependencies.
11340
11341 2012-05-27 Eli Zaretskii <eliz@gnu.org>
11342
11343 * bidi.c (bidi_mirror_char): Fix last change.
11344
11345 2012-05-27 Andreas Schwab <schwab@linux-m68k.org>
11346
11347 * unexmacosx.c (copy_data_segment): Truncate after 16 characters
11348 when referring to sectname field in printf format.
11349
11350 2012-05-27 Paul Eggert <eggert@cs.ucla.edu>
11351
11352 * lisp.h [REL_ALLOC]: Omit duplicate prototypes.
11353 Only r_alloc_inhibit_buffer_relocation needed to be added;
11354 the others were already declared.
11355
11356 * bidi.c (bidi_mirror_char): Don't possibly truncate the integer
11357 before checking whether it's out of range. Put the check inside
11358 eassert. See
11359 <http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00485.html>.
11360
11361 2012-05-27 Ken Brown <kbrown@cornell.edu>
11362
11363 * callproc.c (Fcall_process): Restore a line that was accidentally
11364 commented out in the 2011-02-13 change (bug#11547).
11365
11366 2012-05-27 Eli Zaretskii <eliz@gnu.org>
11367
11368 * lisp.h [REL_ALLOC]: Add prototypes for external functions
11369 defined on ralloc.c.
11370
11371 * buffer.c [REL_ALLOC]: Remove prototypes of
11372 r_alloc_reset_variable, r_alloc, r_re_alloc, and r_alloc_free,
11373 they are now on lisp.h.
11374
11375 * ralloc.c (r_alloc_inhibit_buffer_relocation): New function.
11376
11377 * search.c (search_buffer): Use it to inhibit relocation of buffer
11378 text while re_search_2 is doing its job, because re_search_2 is
11379 passed C pointers to buffer text. (Bug#11519)
11380
11381 * msdos.c (internal_terminal_init) <Vwindow_system_version>:
11382 Update value to 24.
11383
11384 * xdisp.c (move_it_to): Under MOVE_TO_Y, when restoring iterator
11385 state after an additional call to move_it_in_display_line_to, keep
11386 the values of it->max_ascent and it->max_descent found for the
11387 entire line.
11388 (pos_visible_p): Revert the comparison against bottom_y to what it
11389 was in revid eliz@gnu.org-20120513182235-4p6386j761ld0nwb.
11390 (Bug#11464)
11391
11392 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
11393
11394 Fix coding-related core dumps with gcc -ftrapv.
11395 The code was computing A - B, where A and B are pointers, and B is
11396 random garbage. This can lead to core dumps on platforms that
11397 have special pointer registers, and it also leads to core dumps on
11398 x86-64 when compiled with gcc -ftrapv. The fix is to compute
11399 A - B only when B is initialized properly.
11400 * coding.c (coding_set_source, coding_set_destination): Return void.
11401 (coding_change_source, coding_change_destinations): New functions,
11402 with the old behaviors of coding_set_source and coding_set_destination.
11403 All callers that need an offset changed to use these new functions.
11404
11405 2012-05-26 Glenn Morris <rgm@gnu.org>
11406
11407 * nsterm.m (ns_init_paths): Don't mess with INFOPATH. (Bug#2791)
11408
11409 2012-05-26 Eli Zaretskii <eliz@gnu.org>
11410
11411 Extend mouse support on W32 text-mode console.
11412 * xdisp.c (draw_row_with_mouse_face):
11413 Call tty_draw_row_with_mouse_face for WINDOWSNT as well.
11414
11415 * w32console.c: Include window.h.
11416 (w32con_write_glyphs_with_face, tty_draw_row_with_mouse_face):
11417 New functions.
11418 (initialize_w32_display): Initialize mouse-highlight data.
11419
11420 * w32inevt.c: Include termchar.h and window.h.
11421 (do_mouse_event): Support mouse-autoselect-window. When the mouse
11422 moves, call note_mouse_highlight. If help_echo changed, call
11423 gen_help_event to produce help-echo message in the echo area.
11424 Call clear_mouse_face if mouse_face_hidden is set in the mouse
11425 highlight info.
11426
11427 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
11428
11429 * lread.c (read1): Simplify slightly to avoid an overflow warning
11430 with GCC 4.7.0 on x86-64.
11431
11432 2012-05-26 Eli Zaretskii <eliz@gnu.org>
11433
11434 * bidi.c (bidi_mirror_char): Revert last change: an int is
11435 definitely wide enough here.
11436
11437 2012-05-25 Paul Eggert <eggert@cs.ucla.edu>
11438
11439 Fix integer width and related bugs (Bug#9874).
11440 * alloc.c (pure_bytes_used_lisp, pure_bytes_used_non_lisp):
11441 (allocate_vectorlike, buffer_memory_full, struct sdata, SDATA_SIZE)
11442 (string_bytes, check_sblock, allocate_string_data):
11443 (compact_small_strings, Fmake_bool_vector, make_string)
11444 (make_unibyte_string, make_multibyte_string)
11445 (make_string_from_bytes, make_specified_string)
11446 (allocate_vectorlike, Fmake_vector, find_string_data_in_pure)
11447 (make_pure_string, make_pure_c_string, make_pure_vector, Fpurecopy)
11448 (mark_vectorlike):
11449 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11450 (allocate_pseudovector):
11451 Use int, not EMACS_INT, where int is wide enough.
11452 (inhibit_garbage_collection, Fgarbage_collect):
11453 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11454 * bidi.c (bidi_mirror_char): Use EMACS_INT, not int, where
11455 int might not be wide enough.
11456 (bidi_cache_search, bidi_cache_find, bidi_init_it)
11457 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
11458 (bidi_at_paragraph_end, bidi_find_paragraph_start)
11459 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
11460 (bidi_level_of_next_char, bidi_move_to_visually_next):
11461 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11462 * buffer.c (copy_overlays, Fgenerate_new_buffer_name)
11463 (Fkill_buffer, Fset_buffer_major_mode)
11464 (advance_to_char_boundary, Fbuffer_swap_text)
11465 (Fset_buffer_multibyte, overlays_at, overlays_in)
11466 (overlay_touches_p, struct sortvec, record_overlay_string)
11467 (overlay_strings, recenter_overlay_lists)
11468 (adjust_overlays_for_insert, adjust_overlays_for_delete)
11469 (fix_start_end_in_overlays, fix_overlays_before, modify_overlay)
11470 (Fmove_overlay, Fnext_overlay_change, Fprevious_overlay_change)
11471 (Foverlay_recenter, last_overlay_modification_hooks_used)
11472 (report_overlay_modification, evaporate_overlays, enlarge_buffer_text):
11473 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11474 (validate_region): Omit unnecessary test for b <= e,
11475 since that's guaranteed by the previous test.
11476 (adjust_overlays_for_delete): Avoid pos + length overflow.
11477 (Fmove_overlay, Fdelete_overlay, add_overlay_mod_hooklist)
11478 (report_overlay_modification):
11479 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11480 (Foverlays_at, Fnext_overlay_change, Fprevious_overlay_change):
11481 Omit pointer cast, which isn't needed anyway, and doesn't work
11482 after the EMACS_INT -> ptrdiff_t change.
11483 (Fmove_overlay): Clip BEG and END to ptrdiff_t to avoid overflow.
11484 * buffer.h: Adjust decls to match defn changes elsewhere.
11485 (struct buffer_text, struct buffer):
11486 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11487 Use EMACS_INT, not int, where int might not be wide enough.
11488 * bytecode.c (unmark_byte_stack, exec_byte_code): Use ptrdiff_t,
11489 not int, to avoid needless 32-bit limit on 64-bit hosts.
11490 (exec_byte_code): Use tighter memory-full test, one that checks
11491 for alloca overflow. Don't compute the address of the object just
11492 before an array, as that's not portable. Use EMACS_INT, not
11493 ptrdiff_t or int, where ptrdiff_t or int might not be wide enough.
11494 * callint.c (Fcall_interactively):
11495 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11496 * callproc.c (call_process_kill, Fcall_process):
11497 Don't assume pid_t fits into an Emacs fixnum.
11498 (call_process_cleanup, Fcall_process, child_setup):
11499 Don't assume pid_t fits into int.
11500 (call_process_cleanup, Fcall_process, delete_temp_file)
11501 (Fcall_process_region):
11502 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11503 (Fcall_process): Simplify handling of volatile integers.
11504 Use int, not EMACS_INT, where int will do.
11505 * casefiddle.c (casify_object, casify_region, operate_on_word)
11506 (Fupcase_word, Fdowncase_word, Fcapitalize_word):
11507 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11508 (casify_object): Avoid integer overflow when overallocating buffer.
11509 * casetab.c (set_identity, shuffle): Prefer int to unsigned when
11510 either works. Use lint_assume to convince GCC 4.6.1 that it's OK.
11511 * category.c (Fchar_category_set): Don't assume fixnum fits in int.
11512 * category.h (CATEGORYP): Don't assume arg is nonnegative.
11513 * ccl.c (GET_CCL_INT): Remove; no longer needed, since the
11514 integers are now checked earlier. All uses replaced with XINT.
11515 (ccl_driver):
11516 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11517 For CCL_MapSingle, check that content and value are in int range.
11518 (ccl_driver, Fregister_code_conversion_map):
11519 Check that Vcode_version_map_vector is a vector.
11520 (resolve_symbol_ccl_program): Check that vector header is in range.
11521 Always copy the vector, so that we can check its contents reliably
11522 now rather than having to recheck each instruction as it's being
11523 executed. Check that vector words fit in 'int'.
11524 (ccl_get_compiled_code, Fregister_ccl_program)
11525 (Fregister_code_conversion_map): Use ptrdiff_t, not int, for
11526 program indexes, to avoid needless 32-bit limit on 64-bit hosts.
11527 (Fccl_execute, Fccl_execute_on_string): Check that initial reg
11528 contents are in range.
11529 (Fccl_execute_on_string): Check that status is in range.
11530 * ccl.h (struct ccl_program.idx): Now ptrdiff_t, not int.
11531 * character.c (char_resolve_modifier_mask, Fchar_resolve_modifiers):
11532 Accept and return EMACS_INT, not int, because callers can pass values
11533 out of 'int' range.
11534 (c_string_width, strwidth, lisp_string_width, chars_in_text)
11535 (multibyte_chars_in_text, parse_str_as_multibyte)
11536 (str_as_multibyte, count_size_as_multibyte, str_to_multibyte)
11537 (str_as_unibyte, str_to_unibyte, string_count_byte8)
11538 (string_escape_byte8, Fget_byte):
11539 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11540 (Funibyte_string): Use CHECK_RANGED_INTEGER, not CHECK_NATNUM, to
11541 avoid mishandling large integers.
11542 * character.h: Adjust decls to match defn changes elsewhere.
11543 * charset.c (load_charset_map_from_file, find_charsets_in_text)
11544 (Ffind_charset_region):
11545 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11546 (load_charset_map_from_file): Redo idx calculation to avoid overflow.
11547 (load_charset_map_from_vector, Fdefine_charset_internal):
11548 Don't assume fixnum fits in int.
11549 (load_charset_map_from_vector, Fmap_charset_chars):
11550 Remove now-unnecessary CHECK_NATNUMs.
11551 (Fdefine_charset_internal): Check ranges here, more carefully.
11552 Don't rely on undefined behavior with signed left shift overflow.
11553 Don't assume unsigned int fits into fixnum, or that fixnum fits
11554 into unsigned int. Don't require max_code to be a valid fixnum;
11555 that's not true for gb10830 4-byte on a 32-bit host. Allow
11556 invalid_code to be a cons, for the same reason. Require code_offset
11557 to be a character. Avoid int overflow if max_char is close
11558 to INT_MAX.
11559 (CODE_POINT_TO_INDEX): On 32-bit hosts, return int, not unsigned;
11560 this is intended anyway and avoids some undefined behavior.
11561 (load_charset_map): Pass unsigned, not int, as 2nd arg of
11562 INDEX_TO_CODE_POINT, as that's what it expects.
11563 (Funify_charset, encode_char): Don't stuff unsigned vals into int vars.
11564 * charset.h (DECODE_CHAR): Return int, not unsigned;
11565 this is what was intended anyway, and it avoids undefined behavior.
11566 (CHARSET_OFFSET): Remove unused macro, instead of fixing its
11567 integer-overflow issues.
11568 (ENCODE_CHAR): Return unsigned on all hosts, not just on 32-bit hosts.
11569 Formerly, it returned EMACS_INT on 64-bit hosts in the common case
11570 where the argument is EMACS_INT, and this behavior is not intended.
11571 * chartab.c (Fmake_char_table, Fset_char_table_range)
11572 (uniprop_get_decoder, uniprop_get_encoder):
11573 Don't assume fixnum fits in int.
11574 * cmds.c (move_point): New function, that does the gist of
11575 Fforward_char and Fbackward_char, but does so while checking
11576 for integer overflow more accurately.
11577 (Fforward_char, Fbackward_char): Use it.
11578 (Fforward_line, Fend_of_line, internal_self_insert)
11579 (internal_self_insert):
11580 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11581 Fix a FIXME, by checking for integer overflow when calculating
11582 target_clm and actual_clm.
11583 * coding.c (detect_coding_XXX, encode_coding_XXX, CODING_DECODE_CHAR)
11584 (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET, CODING_CHAR_CHARSET_P)
11585 (ASSURE_DESTINATION, coding_alloc_by_realloc)
11586 (coding_alloc_by_making_gap, alloc_destination)
11587 (detect_coding_utf_8, encode_coding_utf_8, decode_coding_utf_16)
11588 (encode_coding_utf_16, detect_coding_emacs_mule)
11589 (decode_coding_emacs_mule, encode_coding_emacs_mule)
11590 (detect_coding_iso_2022, decode_coding_iso_2022)
11591 (encode_invocation_designation, encode_designation_at_bol)
11592 (encode_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
11593 (decode_coding_sjis, decode_coding_big5, encode_coding_sjis)
11594 (encode_coding_big5, detect_coding_ccl, decode_coding_ccl)
11595 (encode_coding_ccl, encode_coding_raw_text)
11596 (detect_coding_charset, decode_coding_charset)
11597 (encode_coding_charset, detect_eol, decode_eol, produce_chars)
11598 (produce_composition, produce_charset, produce_annotation)
11599 (decode_coding, handle_composition_annotation)
11600 (handle_charset_annotation, consume_chars, decode_coding_gap)
11601 (decode_coding_object, encode_coding_object, detect_coding_system)
11602 (Ffind_coding_systems_region_internal, Fcheck_coding_systems_region)
11603 (code_convert_region, code_convert_string)
11604 (Fdefine_coding_system_internal)
11605 (coding_set_source, coding_set_destination):
11606 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11607 (setup_iso_safe_charsets, consume_chars, Funencodable_char_position)
11608 (Fdefine_coding_system_internal):
11609 Don't assume fixnums fit in int.
11610 (decode_coding_gap, decode_coding_object, encode_coding_object)
11611 (Fread_coding_system, Fdetect_coding_region)
11612 (Funencodable_char_position, Fcheck_coding_systems_region)
11613 (get_translation, handle_composition_annotation, consume_chars):
11614 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11615 (consume_chars): Rewrite to not calculate an address outside buffer.
11616 (Ffind_operation_coding_system): NATNUMP can eval its arg twice.
11617 Don't access memory outside of the args array.
11618 (Fdefine_coding_system_internal): Check for charset-id overflow.
11619 (ENCODE_ISO_CHARACTER): Use unsigned, not int, to store the unsigned
11620 result of ENCODE_CHAR.
11621 * coding.h: Adjust decls to match defn changes elsewhere.
11622 (struct coding_system):
11623 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11624 * composite.c (get_composition_id, find_composition)
11625 (run_composition_function, update_compositions)
11626 (compose_text, composition_gstring_put_cache)
11627 (composition_gstring_p, composition_gstring_width)
11628 (fill_gstring_header, fill_gstring_body, autocmp_chars)
11629 (composition_compute_stop_pos, composition_reseat_it)
11630 (composition_update_it, struct position_record)
11631 (find_automatic_composition, composition_adjust_point)
11632 (Fcomposition_get_gstring, Ffind_composition_internal):
11633 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11634 (update_compositions):
11635 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11636 * composite.h: Adjust decls to match defn changes elsewhere.
11637 (struct composition):
11638 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11639 * data.c (let_shadows_buffer_binding_p, let_shadows_global_binding_p):
11640 Do not attempt to compute the address of the object just before a
11641 buffer; this is not portable.
11642 (Faref, Faset):
11643 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11644 (Faset): Use int, not EMACS_INT, where int is wide enough.
11645 (Fstring_to_number): Don't assume fixnums fit in int.
11646 (Frem): Don't assume arg is nonnegative.
11647 * dbusbind.c (xd_append_arg): Check for integers out of range.
11648 (Fdbus_call_method): Don't overflow the timeout int.
11649 (extract_signed, extract_unsigned): New functions.
11650 (XD_CHECK_DBUS_SERIAL): Remove; superseded by extract_unsigned.
11651 (xd_get_connection_references): Return ptrdiff_t, not int.
11652 All uses changed.
11653 (xd_signature, xd_append_arg, xd_retrieve_arg, Fdbus_message_internal)
11654 (xd_read_message_1):
11655 Use int, not unsigned, where the dbus API uses int.
11656 (Fdbus_message_internal): Don't overflow mtype.
11657 (syms_of_dbusbind): Allocate right-sized buffer for integers.
11658 * dired.c (directory_files_internal, file_name_completion, scmp)
11659 (file_name_completion_stat):
11660 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11661 (file_name_completion): Don't overflow matchcount.
11662 (file_name_completion_stat): Use SAFE_ALLOCA, not alloca.
11663 * dispextern.h: Adjust decls to match defn changes elsewhere.
11664 (struct text_pos, struct glyph, struct bidi_saved_info)
11665 (struct bidi_string_data, struct bidi_it, struct composition_it)
11666 (struct it):
11667 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11668 (struct display_pos, struct composition_it, struct it):
11669 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11670 * dispnew.c (increment_matrix_positions)
11671 (increment_row_positions, mode_line_string)
11672 (marginal_area_string):
11673 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11674 (change_frame_size_1, Fredisplay, Fframe_or_buffer_changed_p):
11675 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11676 (duration_to_sec_usec): New function, to check for overflow better.
11677 (Fsleep_for, sit_for): Use it.
11678 * doc.c (get_doc_string, store_function_docstring):
11679 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11680 (get_doc_string, Fsnarf_documentation):
11681 Use int, not EMACS_INT, where int is wide enough.
11682 (get_doc_string):
11683 Use SAFE_ALLOCA, not alloca.
11684 Check for overflow when converting EMACS_INT to off_t.
11685 * doprnt.c (doprnt):
11686 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11687 * editfns.c (init_editfns, Fuser_uid, Fuser_real_uid):
11688 Don't assume uid_t fits into fixnum.
11689 (buildmark, Fgoto_char, overlays_around, find_field, Fdelete_field)
11690 (Ffield_string, Ffield_string_no_properties, Ffield_beginning)
11691 (Ffield_end, Fconstrain_to_field, Fline_beginning_position)
11692 (Fline_end_position, Fprevious_char, Fchar_after, Fchar_before)
11693 (general_insert_function)
11694 (Finsert_char, make_buffer_string, make_buffer_string_both)
11695 (update_buffer_properties, Fbuffer_substring)
11696 (Fbuffer_substring_no_properties, Fcompare_buffer_substrings)
11697 (Fsubst_char_in_region, check_translation)
11698 (Ftranslate_region_internal, save_restriction_restore, Fformat)
11699 (transpose_markers, Ftranspose_regions):
11700 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11701 (clip_to_bounds): Move to lisp.h as an inline function).
11702 (Fconstrain_to_field): Don't assume integers are nonnegative.
11703 (Fline_beginning_position, Fsave_excursion, Fsave_current_buffer):
11704 (Fsubst_char_in_region, Fsave_restriction):
11705 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11706 (Femacs_pid): Don't assume pid_t fits into fixnum.
11707 (lo_time): Use int, not EMACS_INT, when int suffices.
11708 (lisp_time_argument): Check for usec out of range.
11709 (Fencode_time): Don't assume fixnum fits in int.
11710 (Fuser_login_name, Fuser_full_name): Signal an error
11711 if a uid argument is out of range, rather than relying on
11712 undefined behavior.
11713 (Fformat_time_string): Remove now-unnecessary check.
11714 lisp_time_argument checks for out-of-range usec now.
11715 Use ptrdiff_t, not size_t, where ptrdiff_t will do.
11716 * emacs.c (gdb_valbits, gdb_gctypebits): Now int, not EMACS_INT.
11717 (gdb_data_seg_bits): Now uintptr_t, not EMACS_INT.
11718 (PVEC_FLAG, gdb_array_mark_flag): Now ptrdiff_t, not EMACS_INT.
11719 (init_cmdargs, Fdump_emacs):
11720 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11721 (Fkill_emacs): Don't assume fixnum fits in int; instead, take just
11722 the bottom (typically) 32 bits of the fixnum.
11723 * eval.c (specpdl_size, call_debugger):
11724 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11725 (when_entered_debugger, Fbacktrace_debug):
11726 Don't assume fixnum can fit in int.
11727 (Fdefvaralias, Fdefvar): Do not attempt to compute the address of
11728 the object just before a buffer; this is not portable.
11729 (FletX, Flet, Funwind_protect, do_autoload, Feval, funcall_lambda)
11730 (grow_specpdl, unbind_to):
11731 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11732 (Fapply, apply_lambda): Don't assume ptrdiff_t can hold fixnum.
11733 (grow_specpdl): Simplify allocation by using xpalloc.
11734 (Fprog1, Fprog2): Don't assume list length fits in int. Simplify.
11735 * fileio.c (Ffind_file_name_handler, Fcopy_file, Frename_file)
11736 (Finsert_file_contents, Fwrite_region, Fdo_auto_save):
11737 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11738 (Ffind_file_name_handler, non_regular_inserted, Finsert_file_contents)
11739 (a_write, e_write):
11740 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11741 (Fcopy_file, non_regular_nbytes, read_non_regular)
11742 (Finsert_file_contents):
11743 Use int, not EMACS_INT, where int is wide enough.
11744 (READ_BUF_SIZE): Verify that it fits in int.
11745 (Finsert_file_contents): Check that counts are in proper range,
11746 rather than assuming fixnums fit into ptrdiff_t etc.
11747 Don't assume fixnums fit into int.
11748 * floatfns.c (Fexpt): Avoid undefined signed * signed overflow.
11749 * fns.c (Fcompare_strings, Fstring_lessp, struct textprop_rec, concat)
11750 (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
11751 (string_char_to_byte, string_byte_to_char)
11752 (string_make_multibyte, string_to_multibyte)
11753 (string_make_unibyte, Fstring_as_unibyte, Fstring_as_multibyte)
11754 (Fstring_to_unibyte, Fsubstring, Fsubstring_no_properties)
11755 (substring_both, Fdelete, internal_equal, Ffillarray)
11756 (Fclear_string, mapcar1)
11757 (Fbase64_encode_region, Fbase64_encode_string, base64_encode_1)
11758 (Fbase64_decode_region, Fbase64_decode_string, base64_decode_1)
11759 (larger_vector, make_hash_table, maybe_resize_hash_table)
11760 (hash_lookup, hash_remove_from_table, hash_clear, sweep_weak_table)
11761 (Fmaphash, secure_hash):
11762 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11763 (concat): Check for string index and length overflow.
11764 (Fmapconcat): Don't assume fixnums fit into ptrdiff_t.
11765 (Frequire):
11766 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11767 (larger_vector): New API (vec, incr_min, size_max) replaces old
11768 one (vec, new_size, init). This catches size overflow.
11769 INIT was removed because it was always Qnil.
11770 All callers changed.
11771 (INDEX_SIZE_BOUND): New macro, which calculates more precisely
11772 the upper bound on a hash table index size.
11773 (make_hash_table, maybe_resize_hash_table): Use it.
11774 (secure_hash): Computer start_byte and end_byte only after
11775 they're known to be in ptrdiff_t range.
11776 * font.c (font_intern_prop, font_at, font_range, Ffont_shape_gstring)
11777 (Ffont_get_glyphs, Ffont_at):
11778 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11779 (font_style_to_value, font_prop_validate_style, font_expand_wildcards)
11780 (Flist_fonts, Fopen_font):
11781 Don't assume fixnum can fit in int.
11782 (check_gstring): Don't assume index can fit in int.
11783 (font_match_p): Check that fixnum is a character, not a nonnegative
11784 fixnum, since the later code needs to stuff it into an int.
11785 (font_find_for_lface): Use SAFE_ALLOCA_LISP, not alloca.
11786 (font_fill_lglyph_metrics): Use unsigned, not EMACS_INT, to avoid
11787 conversion overflow issues.
11788 (Fopen_font): Check for integer out of range.
11789 (Ffont_get_glyphs): Don't assume index can fit in int.
11790 * font.h: Adjust decls to match defn changes elsewhere.
11791 * fontset.c (reorder_font_vector): Redo score calculation to avoid
11792 integer overflow.
11793 (num_auto_fontsets, fontset_from_font): Use ptrdiff_t, not
11794 printmax_t, where ptrdiff_t is wide enough.
11795 (Finternal_char_font):
11796 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11797 * frame.c (Fset_mouse_position, Fset_mouse_pixel_position)
11798 (Fset_frame_height, Fset_frame_width, Fset_frame_size)
11799 (Fset_frame_position, x_set_frame_parameters)
11800 (x_set_line_spacing, x_set_border_width)
11801 (x_set_internal_border_width, x_set_alpha, x_figure_window_size):
11802 Check that fixnums are in proper range for system types.
11803 (frame_name_fnn_p, Fframe_parameter, Fmodify_frame_parameters):
11804 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11805 (Fmodify_frame_parameters): Don't assume fixnum fits in int.
11806 Use SAFE_ALLOCA_LISP, not alloca.
11807 * frame.h (struct frame): Use intptr_t, not EMACS_INT, where
11808 intptr_t is wide enough.
11809 * fringe.c (lookup_fringe_bitmap, get_logical_fringe_bitmap)
11810 (Fdefine_fringe_bitmap): Don't assume fixnum fits in int.
11811 (Ffringe_bitmaps_at_pos): Don't assume index fits in int.
11812 Check for fixnum out of range.
11813 * ftfont.c (ftfont_list): Don't assume index fits in int.
11814 Check that fixnums are in proper range for system types.
11815 (ftfont_shape_by_flt):
11816 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11817 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
11818 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11819 (Fgnutls_error_fatalp, Fgnutls_error_string, Fgnutls_boot):
11820 Check that fixnums are in proper range for system types.
11821 * gnutls.h: Adjust decls to match defn changes elsewhere.
11822 * gtkutil.c (xg_dialog_run):
11823 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11824 (update_frame_tool_bar):
11825 Check that fixnums are in proper range for system types.
11826 * image.c (parse_image_spec): Redo count calculation to avoid overflow.
11827 (lookup_image): Check that fixnums are in range for system types.
11828 * indent.c (last_known_column, last_known_column_point):
11829 (current_column_bol_cache):
11830 (skip_invisible, current_column, check_display_width):
11831 (check_display_width, scan_for_column, current_column_1)
11832 (Findent_to, Fcurrent_indentation, position_indentation)
11833 (indented_beyond_p, Fmove_to_column, compute_motion):
11834 (Fcompute_motion, Fvertical_motion):
11835 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11836 (last_known_column_modified): Use EMACS_INT, not int.
11837 (check_display_width):
11838 (Fcompute_motion):
11839 Check that fixnums and floats are in proper range for system types.
11840 (compute_motion): Don't assume index or fixnum fits in int.
11841 (compute_motion, Fcompute_motion):
11842 Use int, not EMACS_INT, when it is wide enough.
11843 (vmotion): Omit local var start_hpos that is always 0; that way
11844 we don't need to worry about overflow in expressions involving it.
11845 * indent.h: Adjust decls to match defn changes elsewhere.
11846 (struct position):
11847 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11848 Use int, not EMACS_INT, where int is wide enough.
11849 Remove unused members ovstring_chars_done and tab_offset;
11850 all uses removed.
11851 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
11852 (adjust_markers_for_delete, adjust_markers_for_insert, adjust_point)
11853 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
11854 (make_gap, copy_text, insert, insert_and_inherit)
11855 (insert_before_markers, insert_before_markers_and_inherit)
11856 (insert_1, count_combining_before, count_combining_after)
11857 (insert_1_both, insert_from_string)
11858 (insert_from_string_before_markers, insert_from_string_1)
11859 (insert_from_gap, insert_from_buffer, insert_from_buffer_1)
11860 (adjust_after_replace, adjust_after_insert, replace_range)
11861 (replace_range_2, del_range, del_range_1, del_range_byte)
11862 (del_range_both, del_range_2, modify_region)
11863 (prepare_to_modify_buffer, signal_before_change)
11864 (signal_after_change, Fcombine_after_change_execute):
11865 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11866 * intervals.c (traverse_intervals, rotate_right, rotate_left)
11867 (balance_an_interval, split_interval_right, split_interval_left)
11868 (find_interval, next_interval, update_interval)
11869 (adjust_intervals_for_insertion, delete_node, delete_interval)
11870 (interval_deletion_adjustment, adjust_intervals_for_deletion)
11871 (static_offset_intervals, offset_intervals)
11872 (merge_interval_right, merge_interval_left, make_new_interval)
11873 (graft_intervals_into_buffer, temp_set_point_both)
11874 (temp_set_point, set_point, adjust_for_invis_intang)
11875 (set_point_both, move_if_not_intangible, get_property_and_range)
11876 (get_local_map, copy_intervals, copy_intervals_to_string)
11877 (compare_string_intervals, set_intervals_multibyte_1):
11878 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11879 * intervals.h: Adjust decls to match defn changes elsewhere.
11880 (struct interval):
11881 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11882 * keyboard.c (this_command_key_count, this_single_command_key_start)
11883 (before_command_key_count, before_command_echo_length, echo_now)
11884 (echo_length, recursive_edit_1, Frecursive_edit, Ftrack_mouse)
11885 (command_loop_1, safe_run_hooks, read_char, timer_check_2)
11886 (menu_item_eval_property, read_key_sequence, Fread_key_sequence)
11887 (Fread_key_sequence_vector, Fexecute_extended_command, Fsuspend_emacs):
11888 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11889 (last_non_minibuf_size, last_point_position, echo_truncate)
11890 (command_loop_1, adjust_point_for_property, read_char, gen_help_event)
11891 (make_lispy_position, make_lispy_event, parse_modifiers_uncached)
11892 (parse_modifiers, modify_event_symbol, Fexecute_extended_command)
11893 (stuff_buffered_input):
11894 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11895 (last_auto_save, command_loop_1, read_char):
11896 Use EMACS_INT, not int, to avoid integer overflow.
11897 (record_char): Avoid overflow in total_keys computation.
11898 (parse_modifiers_uncached): Redo index calculation to avoid overflow.
11899 * keyboard.h: Adjust decls to match defn changes elsewhere.
11900 * keymap.c (Fdefine_key, Fcurrent_active_maps, accessible_keymaps_1)
11901 (Fkey_description, Fdescribe_vector, Flookup_key):
11902 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11903 (click_position): New function, to check that positions are in range.
11904 (Fcurrent_active_maps):
11905 (describe_command):
11906 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11907 (Faccessible_keymaps, Fkey_description):
11908 (preferred_sequence_p):
11909 Don't assume fixnum can fit into int.
11910 (Fkey_description): Use SAFE_ALLOCA_LISP, not alloca.
11911 Check for integer overflow in size calculations.
11912 (Ftext_char_description): Use CHECK_CHARACTER, not CHECK_NUMBER, to
11913 avoid mishandling large integers.
11914 * lisp.h: Adjust decls to match defn changes elsewhere.
11915 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, struct Lisp_String)
11916 (struct vectorlike_header, struct Lisp_Subr, struct Lisp_Hash_Table)
11917 (struct Lisp_Marker):
11918 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11919 (clip_to_bounds): Now an inline function, moved here from editfns.c.
11920 (GLYPH_CODE_P): Check for overflow in system types, subsuming the
11921 need for GLYPH_CODE_CHAR_VALID_P and doing proper checking ourselves.
11922 All callers changed.
11923 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE):
11924 Assume the arg has valid form, since it always does.
11925 (TYPE_RANGED_INTEGERP): Avoid bug when checking against a wide
11926 unsigned integer system type.
11927 (CHECK_RANGED_INTEGER, CHECK_TYPE_RANGED_INTEGER): New macros.
11928 (struct catchtag, specpdl_size, SPECPDL_INDEX, USE_SAFE_ALLOCA):
11929 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11930 (struct catchtag): Use EMACS_INT, not int, since it may be a fixnum.
11931 (duration_to_sec_usec): New decl.
11932 * lread.c (read_from_string_index, read_from_string_index_byte)
11933 (read_from_string_limit, readchar, unreadchar, openp)
11934 (read_internal_start, read1, oblookup):
11935 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11936 (Fload, readevalloop, Feval_buffer, Feval_region):
11937 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11938 (openp): Check for out-of-range argument to 'access'.
11939 (read1): Use int, not EMACS_INT, where int is wide enough.
11940 Don't assume fixnum fits into int.
11941 Fix off-by-one error that can read outside a buffer.
11942 (read_filtered_event): Use duration_to_sec_usec
11943 to do proper overflow checking on durations.
11944 * macros.c (Fstart_kbd_macro): Use xpalloc to check for overflow
11945 in size calculation.
11946 (Fexecute_kbd_macro):
11947 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11948 * marker.c (cached_charpos, cached_bytepos, CONSIDER)
11949 (byte_char_debug_check, buf_charpos_to_bytepos, verify_bytepos)
11950 (buf_bytepos_to_charpos, Fset_marker, set_marker_restricted)
11951 (set_marker_both, set_marker_restricted_both, marker_position)
11952 (marker_byte_position, Fbuffer_has_markers_at):
11953 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11954 (Fset_marker, set_marker_restricted): Don't assume fixnum fits in int.
11955 * menu.c (ensure_menu_items): Rename from grow_menu_items.
11956 It now merely ensures that the menu is large enough, without
11957 necessarily growing it, as this avoids some integer overflow issues.
11958 All callers changed.
11959 (keymap_panes, parse_single_submenu, Fx_popup_menu):
11960 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11961 (parse_single_submenu, Fx_popup_menu): Don't assume fixnum fits in int.
11962 Use SAFE_ALLOCA_LISP, not alloca.
11963 (find_and_return_menu_selection): Avoid unnecessary casts of pointers
11964 to EMACS_INT. Check that fixnums are in proper range for system types.
11965 * minibuf.c (minibuf_prompt_width, string_to_object)
11966 (Fminibuffer_contents, Fminibuffer_contents_no_properties)
11967 (Fminibuffer_completion_contents, Ftry_completion, Fall_completions):
11968 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11969 (get_minibuffer, read_minibuf_unwind):
11970 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11971 (read_minibuf): Omit unnecessary arg BACKUP_N, which is always nil;
11972 this simplifies overflow checking. All callers changed.
11973 (read_minibuf, Fread_buffer, Ftry_completion, Fall_completions)
11974 (Ftest_completion):
11975 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11976 * nsfns.m (check_ns_display_info): Don't assume fixnum fits in long.
11977 (x_set_menu_bar_lines, x_set_tool_bar_lines, Fx_create_frame):
11978 Check that fixnums are in proper range for system types.
11979 (Fx_create_frame, Fx_show_tip):
11980 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11981 * nsfont.m (ns_findfonts, nsfont_list_family):
11982 Don't assume fixnum fits in long.
11983 * nsmenu.m (ns_update_menubar, ns_menu_show, ns_popup_dialog):
11984 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11985 (ns_update_menubar): Use intptr_t, not EMACS_INT, when intptr_t is
11986 wide enough.
11987 * nsselect.m (ns_get_local_selection, clean_local_selection_data):
11988 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11989 * print.c (print_buffer_size, print_buffer_pos, print_buffer_pos_byte)
11990 (PRINTDECLARE, PRINTPREPARE):
11991 (strout, print_string):
11992 (print, print_preprocess, print_check_string_charset_prop)
11993 (print_object):
11994 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11995 (PRINTDECLARE):
11996 (temp_output_buffer_setup, Fprin1_to_string, print_object):
11997 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11998 (PRINTPREPARE): Use int, not ptrdiff_t, where int is wide enough.
11999 (printchar, strout): Use xpalloc to catch size calculation overflow.
12000 (Fexternal_debugging_output): Don't overflow EMACS_INT->int conversion.
12001 (print_error_message): Use SAFE_ALLOCA, not alloca.
12002 (print_object): Use int, not EMACS_INT, where int is wide enough.
12003 (print_depth, new_backquote_output, print_number_index):
12004 Use ptrdiff_t, not int, where int might not be wide enough.
12005 * process.c (Fdelete_process): Don't assume pid fits into EMACS_INT.
12006 (Fset_process_window_size, Fformat_network_address)
12007 (get_lisp_to_sockaddr_size, set_socket_option, Fmake_network_process)
12008 (sigchld_handler):
12009 Check that fixnums are in proper range for system types.
12010 (Fsignal_process): Simplify by avoiding a goto.
12011 Check for process-ids out of pid_t range rather than relying on
12012 undefined behavior.
12013 (process_tick, update_tick): Use EMACS_INT, not int.
12014 (Fformat_network_address, read_process_output, send_process)
12015 (Fprocess_send_region, status_notify):
12016 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12017 (Fformat_network_address, Fmake_serial_process, Fmake_network_process)
12018 (wait_reading_process_output, read_process_output, exec_sentinel):
12019 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12020 (conv_lisp_to_sockaddr): Don't assume fixnums fit into int.
12021 (Faccept_process_output): Use duration_to_sec_usec to do proper
12022 overflow checking on durations.
12023 (emacs_get_tty_pgrp, Fprocess_running_child_p, process_send_signal):
12024 Don't assume pid_t fits in int.
12025 * process.h (struct Lisp_Process): Members tick and update_tick
12026 are now of type EMACS_INT, not int.
12027 * puresize.h (PURESIZE_RATIO): Shrink this to 8/6 on 32-bit hosts
12028 configured --with-wide-int.
12029 * scroll.c (calculate_scrolling, calculate_direct_scrolling)
12030 (line_ins_del): Use int, not EMACS_INT, where int is wide enough.
12031 * search.c (looking_at_1, string_match_1):
12032 (fast_string_match, fast_c_string_match_ignore_case)
12033 (fast_string_match_ignore_case, fast_looking_at, scan_buffer)
12034 (scan_newline, find_before_next_newline, search_command)
12035 (trivial_regexp_p, search_buffer, simple_search, boyer_moore)
12036 (set_search_regs, wordify):
12037 (Freplace_match):
12038 (Fmatch_data):
12039 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12040 (string_match_1, search_buffer, set_search_regs):
12041 (Fmatch_data):
12042 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12043 (wordify): Check for overflow in size calculation.
12044 (Freplace_match): Avoid potential buffer overflow in search_regs.start.
12045 (Fset_match_data): Don't assume fixnum fits in ptrdiff_t.
12046 Check that fixnums are in proper range for system types.
12047 * sound.c (struct sound_device)
12048 (wav_play, au_play, vox_write, alsa_period_size, alsa_write):
12049 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12050 (Fplay_sound_internal):
12051 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12052 * syntax.c (struct lisp_parse_state, find_start_modiff)
12053 (Finternal_describe_syntax_value, scan_lists, scan_sexps_forward):
12054 (Fparse_partial_sexp):
12055 Don't assume fixnums can fit in int.
12056 (struct lisp_parse_state, find_start_pos, find_start_value)
12057 (find_start_value_byte, find_start_begv)
12058 (update_syntax_table, char_quoted, dec_bytepos)
12059 (find_defun_start, prev_char_comend_first, back_comment):
12060 (scan_words, skip_chars, skip_syntaxes, forw_comment, Fforward_comment)
12061 (scan_lists, Fbackward_prefix_chars, scan_sexps_forward):
12062 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12063 (Finternal_describe_syntax_value): Check that match_lisp is a
12064 character, not an integer, since the code stuffs it into int.
12065 (scan_words, scan_sexps_forward):
12066 Check that fixnums are in proper range for system types.
12067 (Fforward_word):
12068 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12069 (scan_sexps_forward):
12070 Use CHARACTERP, not INTEGERP, since the value must fit into int.
12071 (Fparse_partial_sexp): Fix doc; element 8 is not ignored.
12072 * syntax.h: Adjust decls to match defn changes elsewhere.
12073 (struct gl_state_s):
12074 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12075 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Use PTRDIFF_MAX, not
12076 MOST_POSITIVE_FIXNUM.
12077 * sysdep.c (wait_for_termination_1, wait_for_termination)
12078 (interruptible_wait_for_termination, mkdir):
12079 Don't assume pid_t fits in int; on 64-bit AIX pid_t is 64-bit.
12080 (emacs_read, emacs_write):
12081 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12082 (system_process_attributes): Don't assume uid_t, gid_t, EMACS_INT,
12083 and double all fit in int.
12084 * term.c (set_tty_color_mode):
12085 Check that fixnums are in proper range for system types.
12086 * termhooks.h (struct input_event):
12087 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12088 * textprop.c (validate_interval_range, interval_of)
12089 (Fadd_text_properties, set_text_properties_1)
12090 (Fremove_text_properties, Fremove_list_of_text_properties)
12091 (Ftext_property_any, Ftext_property_not_all)
12092 (copy_text_properties, text_property_list, extend_property_ranges)
12093 (verify_interval_modification):
12094 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12095 (Fnext_single_char_property_change)
12096 (Fprevious_single_char_property_change):
12097 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12098 (copy_text_properties):
12099 Check for integer overflow in index calculation.
12100 * undo.c (last_boundary_position, record_point, record_insert)
12101 (record_delete, record_marker_adjustment, record_change)
12102 (record_property_change):
12103 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12104 (truncate_undo_list, Fprimitive_undo): Don't assume fixnum fits in int.
12105 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12106 * w32fns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
12107 (Fx_hide_tip, Fx_file_dialog):
12108 * w32menu.c (set_frame_menubar):
12109 Use ptrdiff_t, not int, for consistency with rest of code.
12110 * window.c (window_scroll_preserve_hpos, window_scroll_preserve_vpos)
12111 (select_window, Fdelete_other_windows_internal)
12112 (window_scroll_pixel_based, window_scroll_line_based)
12113 (Frecenter, Fset_window_configuration):
12114 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12115 (Fset_window_hscroll, run_window_configuration_change_hook)
12116 (set_window_buffer, temp_output_buffer_show, scroll_command)
12117 (Fscroll_other_window, Frecenter):
12118 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12119 (Fwindow_line_height, window_scroll, Fscroll_left, Fscroll_right):
12120 Don't assume fixnum fits in int.
12121 (Fset_window_scroll_bars):
12122 Check that fixnums are in proper range for system types.
12123 * xdisp.c (help_echo_pos, pos_visible_p, string_pos_nchars_ahead)
12124 (string_pos, c_string_pos, number_of_chars, init_iterator)
12125 (in_ellipses_for_invisible_text_p, init_from_display_pos)
12126 (compute_stop_pos, next_overlay_change, compute_display_string_pos)
12127 (compute_display_string_end, handle_face_prop)
12128 (face_before_or_after_it_pos, handle_invisible_prop)
12129 (handle_display_prop, handle_display_spec, handle_single_display_spec)
12130 (display_prop_intangible_p, string_buffer_position_lim)
12131 (string_buffer_position, handle_composition_prop, load_overlay_strings)
12132 (get_overlay_strings_1, get_overlay_strings)
12133 (iterate_out_of_display_property, forward_to_next_line_start)
12134 (back_to_previous_visible_line_start, reseat, reseat_to_string)
12135 (get_next_display_element, set_iterator_to_next)
12136 (get_visually_first_element, compute_stop_pos_backwards)
12137 (handle_stop_backwards, next_element_from_buffer)
12138 (move_it_in_display_line_to, move_it_in_display_line)
12139 (move_it_to, move_it_vertically_backward, move_it_by_lines)
12140 (add_to_log, message_dolog, message_log_check_duplicate)
12141 (message2, message2_nolog, message3, message3_nolog
12142 (with_echo_area_buffer, display_echo_area_1, resize_mini_window_1)
12143 (current_message_1, truncate_echo_area, truncate_message_1)
12144 (set_message, set_message_1, store_mode_line_noprop)
12145 (hscroll_window_tree, debug_delta, debug_delta_bytes, debug_end_vpos)
12146 (text_outside_line_unchanged_p, check_point_in_composition)
12147 (reconsider_clip_changes)
12148 (redisplay_internal, set_cursor_from_row, try_scrolling)
12149 (try_cursor_movement, set_vertical_scroll_bar, redisplay_window)
12150 (redisplay_window, find_last_unchanged_at_beg_row)
12151 (find_first_unchanged_at_end_row, row_containing_pos, try_window_id)
12152 (trailing_whitespace_p, find_row_edges, display_line)
12153 (RECORD_MAX_MIN_POS, Fcurrent_bidi_paragraph_direction)
12154 (display_mode_element, store_mode_line_string)
12155 (pint2str, pint2hrstr, decode_mode_spec)
12156 (display_count_lines, display_string, draw_glyphs)
12157 (x_produce_glyphs, x_insert_glyphs)
12158 (rows_from_pos_range, mouse_face_from_buffer_pos)
12159 (fast_find_string_pos, mouse_face_from_string_pos)
12160 (note_mode_line_or_margin_highlight, note_mouse_highlight):
12161 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12162 (safe_call, init_from_display_pos, handle_fontified_prop)
12163 (handle_single_display_spec, load_overlay_strings)
12164 (with_echo_area_buffer, setup_echo_area_for_printing)
12165 (display_echo_area, echo_area_display)
12166 (x_consider_frame_title, prepare_menu_bars, update_menu_bar)
12167 (update_tool_bar, hscroll_window_tree, redisplay_internal)
12168 (redisplay_window, dump_glyph_row, display_mode_line)
12169 (Fformat_mode_line, decode_mode_spec, on_hot_spot_p):
12170 (handle_display_spec, display_prop_string_p):
12171 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12172 (handle_single_display_spec, build_desired_tool_bar_string)
12173 (redisplay_tool_bar, scroll_window_tree, Fdump_glyph_matrix)
12174 (get_specified_cursor_type):
12175 Check that fixnums are in proper range for system types.
12176 (struct overlay_entry, resize_mini_window, Fdump_glyph_row)
12177 (Flookup_image_map):
12178 Don't assume fixnums fit in int.
12179 (compare_overlay_entries):
12180 Avoid mishandling comparisons due to subtraction overflow.
12181 (load_overlay_strings): Use SAFE_NALLOCA, not alloca.
12182 (last_escape_glyph_face_id, last_glyphless_glyph_face_id):
12183 (handle_tool_bar_click):
12184 Use int, not unsigned, since we prefer signed and the signedness
12185 doesn't matter here.
12186 (get_next_display_element, next_element_from_display_vector):
12187 Use int, not EMACS_INT, when int is wide enough.
12188 (start_hourglass): Use duration_to_sec_usec to do proper
12189 overflow checking on durations.
12190 * xfaces.c (Fbitmap_spec_p):
12191 Check that fixnums are in proper range for system types.
12192 (compare_fonts_by_sort_order):
12193 Avoid mishandling comparisons due to subtraction overflow.
12194 (Fx_family_fonts, realize_basic_faces):
12195 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12196 (Fx_family_fonts):
12197 Don't assume fixnum fits in int.
12198 Use SAFE_ALLOCA_LISP, not alloca.
12199 (merge_face_heights): Remove unnecessary cast to EMACS_INT.
12200 (Finternal_make_lisp_face): Don't allocate more than MAX_FACE_ID.
12201 (face_at_buffer_position, face_for_overlay_string)
12202 (face_at_string_position):
12203 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12204 (merge_faces): Use int, not EMACS_INT, where int is wide enough.
12205 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines, x_icon_verify)
12206 (Fx_show_tip):
12207 Check that fixnums are in proper range for system types.
12208 (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
12209 (Fx_hide_tip, Fx_file_dialog, Fx_select_font):
12210 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12211 (Fx_change_window_property): Don't assume fixnums fit in int.
12212 * xfont.c (xfont_chars_supported):
12213 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12214 * xmenu.c (Fx_popup_dialog, set_frame_menubar)
12215 (create_and_show_popup_menu, create_and_show_dialog, xmenu_show):
12216 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12217 * xml.c (parse_region):
12218 * xrdb.c (magic_file_p):
12219 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12220 * xselect.c (TRACE1): Don't assume pid_t promotes to int.
12221 (x_get_local_selection, x_reply_selection_request)
12222 (x_handle_selection_request, wait_for_property_change):
12223 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12224 (selection_data_to_lisp_data): Use short, not EMACS_INT, where
12225 short is wide enough.
12226 (x_send_client_event): Don't assume fixnum fits in int.
12227 * xterm.c (x_x_to_emacs_modifiers):
12228 Don't assume EMACS_INT overflows nicely into int.
12229 (x_emacs_to_x_modifiers): Use EMACS_INT, not int, because values
12230 may come from Lisp.
12231 (handle_one_xevent): NATNUMP can eval its arg twice.
12232 (x_connection_closed):
12233 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12234 * xterm.h: Adjust decls to match defn changes elsewhere.
12235 (struct scroll_bar): Use struct vectorlike_header
12236 rather than rolling our own approximation.
12237 (SCROLL_BAR_VEC_SIZE): Remove; not used.
12238
12239 2012-05-25 Glenn Morris <rgm@gnu.org>
12240
12241 * lisp.mk (lisp): Update for more files being compiled now.
12242
12243 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
12244
12245 * lread.c: Remove `read_pure' which makes no difference.
12246 (read_pure): Remove var.
12247 (unreadpure): Remove function.
12248 (readevalloop): Don't call read_list with -1 flag.
12249 (read1, read_vector): Don't test read_pure any more.
12250 (read_list): Simplify.
12251
12252 * fileio.c, character.h: Minor style tweaks.
12253
12254 2012-05-24 Dmitry Antipov <dmantipov@yandex.ru>
12255
12256 * window.h (clip_changed): Remove useless declaration.
12257
12258 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
12259
12260 * makefile.w32-in: Follow-up to 2012-05-22T16:20:27Z!eggert@cs.ucla.edu.
12261 (TAGS, TAGS-gmake, CONFIG_H): Remove further references to m/intel386.h.
12262
12263 2012-05-22 Paul Eggert <eggert@cs.ucla.edu>
12264
12265 Remove src/m/*.
12266 This directory predates autoconf and is no longer needed nowadays.
12267 Move its few remaining bits of functionality to where they're needed.
12268 * m/README, m/alpha.h, m/amdx86-64.h, m/ia64.h, m/ibmrs6000.h:
12269 * m/ibms390x.h, m/intel386.h, m/m68k.h, m/macppc.h, m/sparc.h:
12270 * m/template.h: Remove.
12271 * Makefile.in (M_FILE): Remove. All uses removed.
12272 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS):
12273 * lisp.h (USE_LSB_TAG):
12274 * mem-limits.h (EXCEEDS_LISP_PTR):
12275 Use VAL_MAX, not VALBITS, in #if.
12276 * lisp.h (EMACS_INT_MAX): New macro, useful in #if.
12277 (EMACS_UINT): Define unconditionally now.
12278 (BITS_PER_CHAR, BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG)
12279 (BITS_PER_EMACS_INT): New constants, replacing
12280 what used to be in config.h, but not useful in #if.
12281 (GCTYPEBITS, VALBITS): Define unconditionally, since m/* files don't
12282 define them any more.
12283 (VAL_MAX): New macro.
12284 (VALMASK): Use it.
12285 * puresize.h (PURESIZE_RATIO): Use EMACS_INT_MAX, not
12286 BITS_PER_EMACS_INT, in #if.
12287 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
12288 (BROKEN_SIGPOLL): Move here from m/ibmrs6000.h, which was removed.
12289 * s/gnu-linux.h (ULIMIT_BREAK_VALUE) [__i386__]:
12290 * s/ms-w32.h (DATA_START):
12291 Move here from removed file m/intel386.h.
12292 * s/gnu.h (NLIST_STRUCT): Remove undef; 'configure' does this.
12293 * s/irix6-5.h (_LP64): Remove; lisp.h no longer needs this.
12294
12295 2012-05-21 Paul Eggert <eggert@cs.ucla.edu>
12296
12297 Assume C89 or later.
12298 * alloc.c, buffer.c, lisp.h: Replace POINTER_TYPE with void.
12299 * alloc.c (overrun_check_malloc, overrun_check_realloc, xmalloc)
12300 (xrealloc):
12301 * buffer.c (mmap_free_1, mmap_enlarge): Omit needless casts.
12302 * editfns.c, fns.c, gmalloc.c, insdel.c, sysdep.c, termcap.c (NULL):
12303 * textprop.c, tparam.c (NULL): Remove.
12304 * ralloc.c, vm-limit.c (POINTER): Assume void * works.
12305 * regex.c (SIGN_EXTEND_CHAR): Assume signed char works.
12306 * regex.h (_RE_ARGS): Remove. All uses rewritten to use prototypes.
12307 * unexelf.c (ElfBitsW): Assume c89 preprocessor or better.
12308 * xterm.c (input_signal_count): Assume volatile works.
12309
12310 2012-05-21 Ken Brown <kbrown@cornell.edu>
12311
12312 * xgselect.c (xg_select): Fix first argument in call to 'select'
12313 (bug#11508).
12314
12315 2012-05-20 Ken Brown <kbrown@cornell.edu>
12316
12317 * gmalloc.c (_free_internal_nolock, _realloc_internal_nolock)
12318 [CYGWIN]: Cast ptr to (char *) before comparing to _heapbase.
12319
12320 2012-05-19 Ken Brown <kbrown@cornell.edu>
12321
12322 * xfns.c (x_in_use): Remove `static' qualifier.
12323 * xterm.h (x_in_use): Declare.
12324 * xgselect.c: Include xterm.h.
12325 (xg_select): Test `x_in_use' instead of `inhibit_window_system'
12326 and `display_arg' (bug#9754).
12327
12328 2012-05-19 Paul Eggert <eggert@cs.ucla.edu>
12329
12330 * s/ms-w32.h (HAVE_GETDOMAINNAME): Remove; not needed.
12331
12332 * m/vax.h: Remove; no longer needed since HAVE_FTIME is being removed.
12333 * s/ms-w32.h (HAVE_FTIME): Remove; not needed.
12334
12335 2012-05-18 Eli Zaretskii <eliz@gnu.org>
12336
12337 Fix compilation with -DGLYPH_DEBUG=1 on MS-Windows.
12338
12339 * w32term.c [GLYPH_DEBUG]: Add prototype for x_check_font.
12340 (x_check_font) [GLYPH_DEBUG]: New function, copied from xterm.c.
12341
12342 * w32fns.c (unwind_create_frame) [GLYPH_DEBUG]: Fix broken
12343 reference to image_cache->refcount.
12344 (x_create_tip_frame): Fix broken use of FRAME_IMAGE_CACHE.
12345
12346 2012-05-17 Juri Linkov <juri@jurta.org>
12347
12348 * search.c (Fword_search_regexp, Fword_search_backward)
12349 (Fword_search_forward, Fword_search_backward_lax)
12350 (Fword_search_forward_lax): Move functions to isearch.el
12351 (bug#10145, bug#11381).
12352
12353 2012-05-16 Paul Eggert <eggert@cs.ucla.edu>
12354
12355 * xgselect.c (xg_select): Just invoke 'select' if -nw (Bug#9754).
12356
12357 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
12358
12359 * lread.c (init_obarray): Declare Qt and Qnil as special.
12360
12361 2012-05-14 Glenn Morris <rgm@gnu.org>
12362
12363 * nsterm.m (ns_init_paths): Fix typo ("libexec" not "lib-exec").
12364 Put "libexec" before "bin", for the sake of init_callproc_1.
12365
12366 2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
12367
12368 * keyboard.c (kbd_buffer_get_event) [!HAVE_DBUS]: Omit unused local.
12369
12370 * unexaix.c: Port to more-recent AIX compilers.
12371 (report_error, report_error_1, make_hdr, copy_sym)
12372 (mark_x, adjust_lnnoptrs, unrelocate_symbols):
12373 Make arguments const char *, not char *, to avoid violations of C
12374 standard and to fix some AIX warnings reported by Gilles Pion.
12375
12376 2012-05-14 Eli Zaretskii <eliz@gnu.org>
12377
12378 * xdisp.c (handle_stop): Don't call get_overlay_strings_1 if we
12379 already have overlays loaded.
12380 (handle_single_display_spec): Before returning without displaying
12381 fringe bitmap, synchronize the bidi iterator with the main display
12382 iterator, by calling iterate_out_of_display_property.
12383 (iterate_out_of_display_property): Detect buffer iteration by
12384 testing that it->string is a Lisp string.
12385 (get_next_display_element): When the current object is exhausted,
12386 and there's something on it->stack, call set_iterator_to_next to
12387 proceed with what's on the stack, instead of returning zero.
12388 (set_iterator_to_next): If called at the end of a Lisp string,
12389 proceed to consider_string_end without incrementing string
12390 position. Don't increment display vector index past the end of
12391 the display vector. (Bug#11417)
12392 (pos_visible_p): Don't report a position visible when move_it_to
12393 stopped at the last line of window, which happens to be scanned
12394 backwards by the bidi iteration. (Bug#11464)
12395
12396 2012-05-14 Eli Zaretskii <eliz@gnu.org>
12397
12398 * xdisp.c (handle_single_display_spec): Return 1 for left-margin
12399 and right-margin display specs even if the spec is invalid or we
12400 are on a TTY, and thus unable to display on the fringes.
12401 That's because the text with the property will not be displayed anyway,
12402 so we need to signal to the caller that this is a "replacing"
12403 display spec. This fixes display when the spec is invalid or we
12404 are on a TTY.
12405
12406 2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
12407
12408 * unexaix.c (make_hdr): Fix typo in prototype.
12409 This bug broke the build on AIX. Problem reported by Gilles Pion.
12410
12411 2012-05-14 Michael Albinus <michael.albinus@gmx.de>
12412
12413 * keyboard.c (kbd_buffer_get_event): Read special events also in
12414 batch mode. (Bug#11415)
12415
12416 2012-05-12 Glenn Morris <rgm@gnu.org>
12417
12418 * ns.mk: Update for ns_appbindir no longer having trailing "/".
12419
12420 2012-05-12 Eli Zaretskii <eliz@gnu.org>
12421
12422 * lisp.mk (lisp): Add newcomment.elc.
12423
12424 2012-05-12 Glenn Morris <rgm@gnu.org>
12425
12426 * Makefile.in (MKDIR_P): New, set by configure.
12427 * ns.mk (${ns_appdir}, ${ns_appbindir}Emacs): Use $MKDIR_P.
12428
12429 2012-05-11 Paul Eggert <eggert@cs.ucla.edu>
12430
12431 Remove unused function hourglass_started.
12432 * dispextern.h (hourglass_started):
12433 * w32fns.c (hourglass_started):
12434 * xdisp.c (hourglass_started): Remove.
12435
12436 2012-05-10 Juanma Barranquero <lekktu@gmail.com>
12437
12438 * makefile.w32-in ($(BLD)/gmalloc.$(O), $(BLD)/w32menu.$(O)):
12439 Update dependencies.
12440
12441 2012-05-10 Paul Eggert <eggert@cs.ucla.edu>
12442
12443 * xgselect.c (xg_select): Put maxfds+1 into a var.
12444 This is slightly clearer, and pacifies Ubuntu 12.04 gcc.
12445
12446 * sound.c (DEFAULT_ALSA_SOUND_DEVICE): Define only if HAVE_ALSA.
12447
12448 2012-05-10 Dave Abrahams <dave@boostpro.com>
12449
12450 * filelock.c (syms_of_filelock): New boolean create-lockfiles.
12451 (lock_file): If create_lockfiles is 0, do nothing. (Bug#11227)
12452
12453 2012-05-09 Michael Albinus <michael.albinus@gmx.de>
12454
12455 * dbusbind.c (xd_registered_buses): New internal Lisp object.
12456 Rename all occurrences of Vdbus_registered_buses to xd_registered_buses.
12457 (syms_of_dbusbind): Remove declaration of Vdbus_registered_buses.
12458 Initialize xd_registered_buses.
12459
12460 2012-05-09 Paul Eggert <eggert@cs.ucla.edu>
12461
12462 Untag more efficiently if USE_LSB_TAG.
12463 This is based on a proposal by YAMAMOTO Mitsuharu in
12464 <http://lists.gnu.org/archive/html/emacs-devel/2008-01/msg01876.html>.
12465 For an admittedly artificial (nth 8000 longlist) benchmark on
12466 Fedora 15 x86-64, this yields a 25% CPU speedup. Also, it shrinks
12467 Emacs's overall text size by 1%.
12468 * lisp.h (XUNTAG): New macro.
12469 (XCONS, XVECTOR, XSTRING, XSYMBOL, XFLOAT, XMISC, XPROCESS, XWINDOW)
12470 (XTERMINAL, XSUBR, XBUFFER, XCHAR_TABLE, XSUB_CHAR_TABLE, XBOOL_VECTOR)
12471 (XSETTYPED_PSEUDOVECTOR, XHASH_TABLE, TYPED_PSEUDOVECTORP): Use it.
12472 * eval.c (Fautoload):
12473 * font.h (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT):
12474 * frame.h (XFRAME): Use XUNTAG.
12475
12476 Port recent dbusbind.c changes to 32-bit --with-wide-int.
12477 * dbusbind.c (xd_append_arg, xd_retrieve_arg, Fdbus_message_internal):
12478 Remove unportable assumptions about print widths of types like
12479 dbus_uint32_t.
12480 (xd_get_connection_address, Fdbus_init_bus): Cast Emacs integer to
12481 intptr_t when converting between pointer and integer, to avoid GCC
12482 warnings about wrong width.
12483
12484 2012-05-09 Eli Zaretskii <eliz@gnu.org>
12485
12486 * w32proc.c (new_child): Force Windows to reserve only 64KB of
12487 stack for each reader_thread, instead of defaulting to 8MB
12488 determined by the linker. This avoids failures in creating
12489 subprocesses on Windows 7, see the discussion in this thread:
12490 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00119.html.
12491
12492 2012-05-07 Jérémy Compostella <jeremy.compostella@gmail.com>
12493
12494 Fix up display of the *Minibuf-0* buffer in the mini window.
12495 * keyboard.c (read_char): Don't clear the echo area if there's no
12496 message to clear.
12497 * xdisp.c (redisplay_internal): Redisplay the mini window (with the
12498 contents of *Minibuf-0*) if there's no message displayed in its stead.
12499
12500 2012-05-07 Michael Albinus <michael.albinus@gmx.de>
12501
12502 * dbusbind.c (XD_DEBUG_MESSAGE): Don't print message twice in
12503 batch mode.
12504
12505 2012-05-06 Chong Yidong <cyd@gnu.org>
12506
12507 * lisp.mk (lisp): Update.
12508
12509 2012-05-05 Jim Meyering <meyering@redhat.com>
12510
12511 * w32font.c (fill_in_logfont): NUL-terminate a string (Bug#11372).
12512
12513 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
12514
12515 * data.c (PUT_ERROR): New macro.
12516 (syms_of_data): Use it. Add new error type `user-error'.
12517 * undo.c (user_error): New function.
12518 (Fprimitive_undo): Use it.
12519 * print.c (print_error_message): Adjust print style for `user-error'.
12520 * keyboard.c (user_error): New function.
12521 (Fexit_recursive_edit, Fabort_recursive_edit): Use it.
12522
12523 2012-05-03 Paul Eggert <eggert@cs.ucla.edu>
12524
12525 Do not limit current-time-string to years 1000..9999.
12526 * editfns.c (TM_YEAR_IN_ASCTIME_RANGE): Remove.
12527 (Fcurrent_time_string): Support any year that is supported by the
12528 underlying localtime representation. Don't use asctime, as it
12529 has undefined behavior for years outside the range -999..9999.
12530
12531 2012-05-02 Paul Eggert <eggert@cs.ucla.edu>
12532
12533 Fix race conditions involving setenv, gmtime, localtime, asctime.
12534 Without this fix, interrupts could mess up code that uses these
12535 nonreentrant functions, since setting TZ invalidates existing
12536 tm_zone or tzname values, and since most of these functions return
12537 pointers to static storage.
12538 * editfns.c (format_time_string, Fdecode_time, Fencode_time)
12539 (Fcurrent_time_string, Fcurrent_time_zone, Fset_time_zone_rule):
12540 Grow the critical sections to include not just invoking
12541 localtime/gmtime, but also accessing these functions' results
12542 including their tm_zone values if any, and any related TZ setting.
12543 (format_time_string): Last arg is now struct tm *, not struct tm **,
12544 so that the struct tm is saved in the critical section.
12545 All callers changed. Simplify allocation of initial buffer, partly
12546 motivated by the fact that memory allocation needs to be outside
12547 the critical section.
12548
12549 2012-05-02 Dmitry Antipov <dmantipov@yandex.ru>
12550
12551 * intervals.c (adjust_intervals_for_insertion): Initialize `newi'
12552 with RESET_INTERVAL.
12553
12554 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
12555 Remove duplicated buffer name initialization.
12556
12557 2012-05-02 Jim Meyering <jim@meyering.net>
12558
12559 * xterm.c (x_term_init): Use memcpy instead of strncpy (Bug#11373).
12560
12561 * xfns.c (x_window): Use xstrdup (Bug#11375).
12562
12563 2012-05-02 Eli Zaretskii <eliz@gnu.org>
12564
12565 * xdisp.c (pos_visible_p): If already at a newline from the
12566 display string before the 'while' loop, don't walk back the glyphs
12567 from it3.glyph_row. Solves assertion violation when the display
12568 string begins with a newline (egg.el). (Bug#11367)
12569
12570 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
12571
12572 * keyboard.c (Fexecute_extended_command, Vsuggest_key_bindings):
12573 Move to simple.el.
12574
12575 2012-05-01 Glenn Morris <rgm@gnu.org>
12576
12577 * syssignal.h: Remove reference to BROKEN_SIGINFO (last used in
12578 s/ptx4.h), BROKEN_SIGTSTP (last used in m/ustation.h, m/dpx2.h),
12579 and BROKEN_SIGURG (was in s/gnu-linux.h prior to 2008-02-10).
12580 All were removed before 23.1.
12581
12582 * dispnew.c: Remove HAVE_LIBNCURSES test;
12583 it is always true on relevant platforms.
12584
12585 * Makefile.in (LD_SWITCH_X_SITE_RPATH):
12586 Rename from LD_SWITCH_X_SITE_AUX_RPATH.
12587
12588 * Makefile.in (LD_SWITCH_X_SITE_AUX): Remove; no longer used.
12589
12590 2012-04-30 Andreas Schwab <schwab@linux-m68k.org>
12591
12592 * .gdbinit (xpr): Remove checks for no longer existing misc types.
12593 (xintfwd, xboolfwd, xobjfwd, xbufobjfwd, xkbobjfwd, xbuflocal):
12594 Remove.
12595
12596 2012-04-28 Paul Eggert <eggert@cs.ucla.edu>
12597
12598 Do not avoid creating empty evaporating overlays (Bug#9642).
12599 * buffer.c (Fmove_overlay): Revert the change of 2012-04-23.
12600 That is, do not delete an evaporating overlay if it becomes
12601 empty after its bounds are adjusted to fit within its buffer.
12602 This fix caused other problems, and I'm reverting it until we get
12603 to the bottom of them.
12604
12605 2012-04-27 Chong Yidong <cyd@gnu.org>
12606
12607 * xselect.c (x_convert_selection): Initialize a pointer (Bug#11315).
12608
12609 2012-04-27 Eli Zaretskii <eliz@gnu.org>
12610
12611 * xdisp.c (pos_visible_p): If the window start position is beyond
12612 ZV, start the display from buffer beginning. Prevents assertion
12613 violation in init_iterator when the minibuffer window is scrolled
12614 via the scroll bar.
12615
12616 * window.c (window_scroll_pixel_based): Likewise.
12617
12618 2012-04-27 Chong Yidong <cyd@gnu.org>
12619
12620 * keymap.c (where_is_internal): Doc fix (Bug#10872).
12621
12622 2012-04-27 Glenn Morris <rgm@gnu.org>
12623
12624 * fileio.c (Fcopy_file, Fset_file_selinux_context):
12625 Ignore ENOTSUP failures from setfilecon functions. (Bug#11245)
12626
12627 2012-04-27 Eli Zaretskii <eliz@gnu.org>
12628
12629 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers):
12630 Don't overrun array limits of glyph row's used[] array. (Bug#11288)
12631
12632 2012-04-26 Eli Zaretskii <eliz@gnu.org>
12633
12634 * xdisp.c (IT_DISPLAYING_WHITESPACE): In addition to the loaded
12635 display element, check also the underlying string or buffer
12636 character. (Bug#11341)
12637
12638 * w32menu.c: Include w32heap.h.
12639 (add_menu_item): If the call to AppendMenuW (via
12640 unicode_append_menu) fails, disable Unicode menus only if we are
12641 running on Windows 9X/Me.
12642
12643 2012-04-24 Andreas Schwab <schwab@linux-m68k.org>
12644
12645 * .gdbinit (xpr): Handle USE_2_TAGS_FOR_INTS.
12646 (xgetint): Add missing shift for LSB tags.
12647
12648 2012-04-24 Martin Rudalics <rudalics@gmx.at>
12649
12650 * keyboard.c (read_char): Don't wipe echo area for select window
12651 events: These might get delayed via `mouse-autoselect-window'
12652 (Bug#11304).
12653
12654 2012-04-24 Juanma Barranquero <lekktu@gmail.com>
12655
12656 * gnutls.c (init_gnutls_functions): Protect against (unlikely)
12657 manipulation of :loaded-from data.
12658
12659 2012-04-23 Juanma Barranquero <lekktu@gmail.com>
12660
12661 * gnutls.c (init_gnutls_functions): The value of :loaded-from is
12662 now a cons (bug#11311).
12663
12664 2012-04-23 Paul Eggert <eggert@cs.ucla.edu>
12665
12666 Do not create empty overlays with the evaporate property (Bug#9642).
12667 * buffer.c (Fmove_overlay): Delete an evaporating overlay
12668 if it becomes empty after its bounds are adjusted to fit within
12669 its buffer. Without this fix, in a nonempty buffer (let ((o
12670 (make-overlay 1 2))) (overlay-put o 'evaporate t) (move-overlay o 0 1))
12671 yields an empty overlay that has the evaporate property, which is
12672 not supposed to happen.
12673
12674 Fix minor GTK3 problems found by static checking.
12675 * emacsgtkfixed.c (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
12676 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
12677 (struct _EmacsFixedClass, emacs_fixed_get_type):
12678 Move decls here from emacsgtkfixed.h, since they needn't be public.
12679 (emacs_fixed_get_type): Now static.
12680 (emacs_fixed_class_init): Omit unused local.
12681 (emacs_fixed_child_type): Remove; unused.
12682 * emacsgtkfixed.h (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
12683 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
12684 (struct _EmacsFixedClass): Move to emacsgtkfixed.c.
12685 (EMACS_FIXED_CLASS, EMACS_IS_FIXED, EMACS_IS_FIXED_CLASS)
12686 (EMACS_FIXED_GET_CLASS): Remove; unused.
12687 * gtkutil.c (xg_create_frame_widgets) [!HAVE_GTK3]: Omit unused local.
12688
12689 * keyboard.c (handle_async_input): Define only if SYNC_INPUT || SIGIO.
12690 Problem reported by Juanma Barranquero for Windows -Wunused-function.
12691
12692 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
12693
12694 Modernize and clean up gmalloc.c to assume C89 (Bug#9119).
12695 * gmalloc.c (_MALLOC_INTERNAL, _MALLOC_H, _PP, __ptr_t)
12696 (__malloc_size_t, __malloc_ptrdiff_t):
12697 Remove. All uses removed, replaced by the definiens if needed,
12698 since we can assume C89 or better now.
12699 Include <stdint.h>, for PTRDIFF_MAX, uintptr_t.
12700 (protect_malloc_state, align, get_contiguous_space)
12701 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
12702 (malloc_atfork_handler_child, malloc_enable_thread)
12703 (malloc_initialize_1, __malloc_initialize, morecore_nolock)
12704 (_malloc_internal_nolock, _malloc_internal, malloc, _malloc)
12705 (_free, _realloc, _free_internal_nolock, _free_internal, free, cfree)
12706 (special_realloc, _realloc_internal_nolock, _realloc_internal)
12707 (realloc, calloc, __default_morecore, memalign, valloc, checkhdr)
12708 (freehook, mallochook, reallochook, mabort, mcheck, mprobe):
12709 Define using prototypes, not old style.
12710 (align, _malloc_internal_nolock, _free_internal_nolock, memalign):
12711 Don't assume ptrdiff_t and uintptr_t are no wider than unsigned long.
12712 (align): Don't assume that signed integer overflow wraps around.
12713 Omit unused local var.
12714 (malloc_initialize_1, morecore_nolock, _malloc_internal_nolock)
12715 (_free_internal_nolock, memalign, mallochook, reallochook):
12716 Omit no-longer-needed casts.
12717 (valloc): Use getpagesize, not __getpagesize.
12718 (MAGICWORD, MAGICFREE): Now randomish size_t values, not 32-bit.
12719 (struct hdr): The 'magic' member is now size_t, not unsigned long.
12720
12721 * dbusbind.c (XD_DBUS_VALIDATE_OBJECT): Define only if needed.
12722
12723 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
12724
12725 Move functions from C to Lisp. Make non-blocking method calls
12726 the default. Implement further D-Bus standard interfaces.
12727
12728 * dbusbind.c (DBUS_NUM_MESSAGE_TYPES): Declare.
12729 (QCdbus_request_name_allow_replacement)
12730 (QCdbus_request_name_replace_existing)
12731 (QCdbus_request_name_do_not_queue)
12732 (QCdbus_request_name_reply_primary_owner)
12733 (QCdbus_request_name_reply_in_queue)
12734 (QCdbus_request_name_reply_exists)
12735 (QCdbus_request_name_reply_already_owner): Move to dbus.el.
12736 (QCdbus_registered_serial, QCdbus_registered_method)
12737 (QCdbus_registered_signal): New Lisp objects.
12738 (XD_DEBUG_MESSAGE): Use sizeof.
12739 (XD_MESSAGE_TYPE_TO_STRING, XD_OBJECT_TO_STRING)
12740 (XD_DBUS_VALIDATE_BUS_ADDRESS, XD_DBUS_VALIDATE_OBJECT)
12741 (XD_DBUS_VALIDATE_BUS_NAME, XD_DBUS_VALIDATE_PATH)
12742 (XD_DBUS_VALIDATE_INTERFACE, XD_DBUS_VALIDATE_MEMBER): New macros.
12743 (XD_CHECK_DBUS_SERIAL): Rename from CHECK_DBUS_SERIAL_GET_SERIAL.
12744 (xd_signature, xd_append_arg): Allow float for integer types.
12745 (xd_get_connection_references): New function.
12746 (xd_get_connection_address): Rename from xd_initialize.
12747 Return cached address.
12748 (xd_remove_watch): Do not unset $DBUS_SESSION_BUS_ADDRESS.
12749 (xd_close_bus): Rename from Fdbus_close_bus. Not needed on Lisp
12750 level.
12751 (Fdbus_init_bus): New optional arg PRIVATE. Cache address.
12752 Return number of refcounts.
12753 (Fdbus_get_unique_name): Make stronger parameter check.
12754 (Fdbus_message_internal): New defun.
12755 (Fdbus_call_method, Fdbus_call_method_asynchronously)
12756 (Fdbus_method_return_internal, Fdbus_method_error_internal)
12757 (Fdbus_send_signal, Fdbus_register_service)
12758 (Fdbus_register_signal, Fdbus_register_method): Move to dbus.el.
12759 (xd_read_message_1): Obey new structure of Vdbus_registered_objects.
12760 (xd_read_queued_messages): Obey new structure of Vdbus_registered_buses.
12761 (Vdbus_compiled_version, Vdbus_runtime_version)
12762 (Vdbus_message_type_invalid, Vdbus_message_type_method_call)
12763 (Vdbus_message_type_method_return, Vdbus_message_type_error)
12764 (Vdbus_message_type_signal): New defvars.
12765 (Vdbus_registered_buses, Vdbus_registered_objects_table):
12766 Adapt docstring.
12767
12768 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
12769
12770 Fix GC_MALLOC_CHECK debugging output on 64-bit hosts.
12771 * alloc.c (emacs_blocked_malloc) [GC_MALLOC_CHECK]:
12772 Do not assume ptrdiff_t is the same width as 'int'.
12773
12774 * alloc.c: Handle unusual debugging option combinations.
12775 (GC_CHECK_MARKED_OBJECTS): Undef if ! GC_MARK_STACK,
12776 since the two debugging options are incompatible.
12777 (GC_MALLOC_CHECK): Similarly, undef if GC_CHECK_MARKED_OBJECTS
12778 is defined.
12779 (mem_init, mem_insert, mem_insert_fixup):
12780 Define if GC_MARK_STACK || GC_MALLOC_CHECK.
12781 (NEED_MEM_INSERT): Remove; no longer needed.
12782
12783 2012-04-22 Leo Liu <sdl.web@gmail.com>
12784
12785 * sysdep.c (list_system_processes): Support Darwin (Bug#5725).
12786
12787 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
12788
12789 * sysdep.c [__FreeBSD__]: Minor cleanups.
12790 (list_system_processes, system_process_attributes) [__FreeBSD__]:
12791 Use Emacs indenting style more consistently. Avoid some casts.
12792 Use 'double' consistently rather than mixing 'float' and 'double'.
12793
12794 2012-04-21 Eduard Wiebe <usenet@pusto.de>
12795
12796 * sysdep.c (list_system_processes, system_process_attributes):
12797 Add implementation for FreeBSD (Bug#5243).
12798
12799 2012-04-21 Andreas Schwab <schwab@linux-m68k.org>
12800
12801 * lisp.mk (lisp): Update.
12802
12803 2012-04-20 Paul Eggert <eggert@cs.ucla.edu>
12804
12805 * keyboard.c (process_pending_signals): Define only if SYNC_INPUT.
12806 It is never used otherwise.
12807
12808 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
12809
12810 * print.c (print_preprocess): Only check print_depth if print-circle
12811 is nil.
12812 (print_object): Check for cycles even when print-circle is nil and
12813 print-gensym is t, but only check print_depth if print-circle is nil.
12814
12815 2012-04-20 Chong Yidong <cyd@gnu.org>
12816
12817 * process.c (wait_reading_process_output): If EIO occurs on a pty,
12818 set the status to "failed" and ensure that sentinel is run.
12819
12820 2012-04-20 Glenn Morris <rgm@gnu.org>
12821
12822 * process.c (Fset_process_inherit_coding_system_flag)
12823 (Fset_process_query_on_exit_flag): Doc fix (mention return value).
12824 (Fmake_network_process, Fmake_serial_process): Doc fix.
12825
12826 2012-04-20 Eli Zaretskii <eliz@gnu.org>
12827
12828 * xdisp.c (string_buffer_position_lim): Limit starting position to
12829 BEGV.
12830 (set_cursor_from_row): If called for a mode-line or header-line
12831 row, return zero immediately.
12832 (try_cursor_movement): If inside continuation line, don't back up
12833 farther than the first row after the header line, if any.
12834 Don't consider the header-line row as "partially visible", even if
12835 MATRIX_ROW_PARTIALLY_VISIBLE_P returns non-zero. (Bug#11261)
12836
12837 2012-04-20 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
12838
12839 * lread.c (lisp_file_lexically_bound_p): Fix hang at ";-*-\n"
12840 (bug#11238).
12841
12842 2012-04-20 Teodor Zlatanov <tzz@lifelogs.com>
12843 2012-04-18 Paul Eggert <eggert@cs.ucla.edu>
12844
12845 configure: new option --enable-gcc-warnings (Bug#11207)
12846 * Makefile.in (C_WARNINGS_SWITCH): Remove.
12847 (WARN_CFLAGS, WERROR_CFLAGS): New macros.
12848 (ALL_CFLAGS): Use new macros rather than old.
12849 * process.c: Ignore -Wstrict-overflow to work around GCC bug 52904.
12850 * regex.c: Ignore -Wstrict-overflow. If !emacs, also ignore
12851 -Wunused-but-set-variable, -Wunused-function, -Wunused-macros,
12852 -Wunused-result, -Wunused-variable. This should go away once
12853 the Emacs and Gnulib regex code is merged.
12854 (xmalloc, xrealloc): Now static.
12855
12856 2012-04-17 Paul Eggert <eggert@cs.ucla.edu>
12857
12858 * dired.c (Fsystem_groups): Remove unused local.
12859
12860 2012-04-17 Glenn Morris <rgm@gnu.org>
12861
12862 * dired.c (Fsystem_users): Doc fix.
12863
12864 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
12865
12866 * dired.c (Fsystem_users, Fsystem_groups): New functions. (Bug#7900)
12867 (syms_of_dired): Add them.
12868
12869 2012-04-16 Paul Eggert <eggert@cs.ucla.edu>
12870
12871 Fix minor alloc.c problems found by static checking.
12872 * alloc.c (_malloc_internal, _free_internal) [!DOUG_LEA_MALLOC]:
12873 New extern decls, to avoid calling undeclared functions.
12874 (dont_register_blocks): Define if ((!SYSTEM_MALLOC && !SYNC_INPUT)
12875 && GC_MALLOC_CHECK), not if ((GC_MARK_STACK || defined
12876 GC_MALLOC_CHECK) && GC_MALLOC_CHECK), to match when it's used.
12877 (NEED_MEM_INSERT): New macro.
12878 (mem_insert, mem_insert_fixup) [!NEED_MEM_INSERT]: Remove; unused.
12879 Remove one incorrect comment and fix another.
12880
12881 Fix minor ralloc.c problems found by static checking.
12882 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
12883 * ralloc.c (ALIGNED, ROUND_TO_PAGE, HEAP_PTR_SIZE)
12884 (r_alloc_size_in_use, r_alloc_freeze, r_alloc_thaw): Remove; unused.
12885 (r_alloc_sbrk): Now static.
12886
12887 Improve ralloc.c interface checking.
12888 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
12889 * buffer.c (ralloc_reset_variable, r_alloc, r_re_alloc)
12890 (r_alloc_free) [REL_ALLOC]: Move decls from here ...
12891 * lisp.h (r_alloc, r_alloc_free, r_re_alloc, r_alloc_reset_variable)
12892 [REL_ALLOC]: ... to here, to check interface.
12893 * m/ia64.h (r_alloc, r_alloc_free) [REL_ALLOC && !_MALLOC_INTERNAL]:
12894 Remove decls. This fixes an "It stinks!".
12895
12896 * alloc.c (which_symbols): Fix alignment issue / type clash.
12897
12898 2012-04-15 Andreas Schwab <schwab@linux-m68k.org>
12899
12900 * lisp.h (struct Lisp_Symbol): Remove explicit padding.
12901 (struct Lisp_Misc_Any): Likewise.
12902 (struct Lisp_Free): Likewise.
12903 * alloc.c (union aligned_Lisp_Symbol): Define.
12904 (SYMBOL_BLOCK_SIZE, struct symbol_block): Use union
12905 aligned_Lisp_Symbol instead of struct Lisp_Symbol.
12906 (union aligned_Lisp_Misc): Define.
12907 (MARKER_BLOCK_SIZE, struct marker_block): Use union
12908 aligned_Lisp_Misc instead of union Lisp_Misc.
12909 (Fmake_symbol, allocate_misc, gc_sweep): Adjust.
12910
12911 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
12912
12913 Make GC_MAKE_GCPROS_NOOPS the default (Bug#9926).
12914 * lisp.h (GC_MARK_STACK): Default to GC_MAKE_GCPROS_NOOPS.
12915 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/gnu.h, s/irix6-5.h, s/msdos.h:
12916 * s/netbsd.h, s/sol2-6.h:
12917 Remove definition of GC_MARK_STACK, since the default now works.
12918 * s/aix4-2.h, s/hpux10-20.h, s/unixware.h:
12919 Define GC_MARK_STACK to GC_USE_GCPROS_AS_BEFORE, since that's
12920 no longer the default.
12921 * s/gnu-linux.h (GC_MARK_STACK): Adjust to change in default.
12922
12923 2012-04-14 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
12924
12925 * lread.c (lisp_file_lexically_bound_p):
12926 Fix hang at ";-*-\n" (bug#11238).
12927
12928 2012-04-14 Eli Zaretskii <eliz@gnu.org>
12929
12930 * xdisp.c (find_last_unchanged_at_beg_row): Don't consider a row
12931 "unchanged" if its end.pos is beyond ZV. (Bug#11199)
12932
12933 2012-04-14 Jan Djärv <jan.h.d@swipnet.se>
12934
12935 * nsterm.m (constrainFrameRect): Always constrain when there is only
12936 one screen (Bug#10962).
12937
12938 2012-04-13 Ken Brown <kbrown@cornell.edu>
12939
12940 * s/cygwin.h (PTY_OPEN): Don't try to close a bogus file descriptor.
12941
12942 2012-04-13 Reuben Thomas <rrt@sc3d.org>
12943
12944 * indent.c (Fmove_to_column): Change interactive spec (Bug#739).
12945
12946 2012-04-11 Daniel Colascione <dancol@dancol.org>
12947
12948 * s/cygwin.h: The vfork the #define in cygwin.h was protecting
12949 against is gone. It's better to use vfork now so that when Cygwin
12950 gains a new, working vfork, we use it automatically (bug#10398).
12951
12952 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
12953
12954 * window.c (save_window_save): Obey window-point-insertion-type.
12955
12956 2012-04-11 Glenn Morris <rgm@gnu.org>
12957
12958 * Makefile.in (GNUSTEP_CFLAGS): Rename from C_SWITCH_X_SYSTEM.
12959
12960 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
12961
12962 * alloc.c (lisp_align_malloc): Remove unneeded prototype.
12963
12964 2012-04-10 Jason S. Cornez <jcornez@ravenpack.com> (tiny change)
12965
12966 * keyboard.c: Override inhibit-quit after the third C-g (bug#6585).
12967 (force_quit_count): New var.
12968 (handle_interrupt): Use it.
12969
12970 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
12971
12972 * w32.c (w32_delayed_load): Record the full path of the library
12973 being loaded (bug#10424).
12974
12975 2012-04-09 Glenn Morris <rgm@gnu.org>
12976
12977 * doc.c (Fsnarf_documentation): Check variables, functions are bound,
12978 not just in the obarray, before snarfing them. (Bug#11036)
12979
12980 * Makefile.in ($(leimdir)/leim-list.el):
12981 Pass EMACS rather than BUILT_EMACS.
12982
12983 2012-04-09 Teodor Zlatanov <tzz@lifelogs.com>
12984
12985 * process.c (make_process):
12986 * process.h: Add integer `gnutls_handshakes_tried' member to
12987 process struct.
12988
12989 * gnutls.h: Add `GNUTLS_EMACS_HANDSHAKES_LIMIT' upper limit.
12990 Add convenience `GNUTLS_LOG2i' macro.
12991
12992 * gnutls.c (gnutls_log_function2i): Convenience log function.
12993 (emacs_gnutls_read): Use new log functions,
12994 `gnutls_handshakes_tried' process member, and
12995 `GNUTLS_EMACS_HANDSHAKES_LIMIT' to limit the number of handshake
12996 attempts per process (connection).
12997
12998 2012-04-09 Chong Yidong <cyd@gnu.org>
12999
13000 * eval.c (Fuser_variable_p, user_variable_p_eh)
13001 (lisp_indirect_variable): Functions deleted.
13002 (Fdefvar): Caller changed.
13003
13004 * callint.c (Finteractive, Fcall_interactively):
13005 * minibuf.c (Fread_variable): Callers changed.
13006
13007 2012-04-09 Eli Zaretskii <eliz@gnu.org>
13008
13009 * xdisp.c (set_cursor_from_row): If the display string appears in
13010 the buffer at position that is closer to point than the position
13011 after the display string, display the cursor on the first glyph of
13012 the display string. Fixes cursor display when a 'display' text
13013 property immediately follows invisible text. (Bug#11094)
13014
13015 2012-04-09 Paul Eggert <eggert@cs.ucla.edu>
13016
13017 composite.c: use 'double' consistently
13018 * composite.c (get_composition_id): Use 'double' consistently
13019 instead of converting 'float' to 'double' and vice versa; this is
13020 easier to understand and avoids a GCC warning.
13021
13022 2012-04-09 Glenn Morris <rgm@gnu.org>
13023
13024 * Makefile.in: Generate leim-list with bootstrap-emacs, in
13025 preparation for dumping it with emacs. (Bug#4789)
13026 (leimdir): New variable.
13027 ($(leimdir)/leim-list.el): New rule.
13028 (emacs$(EXEEXT)): Depend on leim-list.el.
13029
13030 * buffer.c (Qucs_set_table_for_input): Remove. (Bug#9821)
13031 (Fget_buffer_create): Don't call Qucs_set_table_for_input.
13032 (init_buffer_once, syms_of_buffer): Remove Qucs_set_table_for_input.
13033
13034 2012-04-08 Andreas Schwab <schwab@linux-m68k.org>
13035
13036 * lisp.h (struct Lisp_Symbol): Add explicit padding to ensure
13037 proper alignment.
13038
13039 2012-04-07 Juanma Barranquero <lekktu@gmail.com>
13040
13041 * xml.c (init_libxml2_functions) [WINDOWSNT]:
13042 Remove unused local variable.
13043
13044 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
13045
13046 Avoid unnecessary pointer scanning in garbage collection (Bug#10780).
13047 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS): New macro.
13048 (mark_memory): Mark Lisp_Objects only if pointers might hide in
13049 objects, as mark_maybe_pointer will catch them otherwise.
13050 (GC_LISP_OBJECT_ALIGNMENT): Remove; no longer needed.
13051 * s/gnu-linux.h (GC_LISP_OBJECT_ALIGNMENT) [__mc68000__]: Likewise.
13052
13053 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
13054
13055 Fix typo that broke non-Windows builds.
13056 * xml.c (libxml2_loaded_p) [!!WINDOWSNT]: 'inine' -> 'inline'.
13057
13058 2012-04-07 Eli Zaretskii <eliz@gnu.org>
13059
13060 Support building on MS-Windows with libxml2.
13061
13062 * makefile.w32-in (OBJ2): Add xml.$(O).
13063 (GLOBAL_SOURCES): Add xml.c.
13064 ($(BLD)/xml.$(O)): New dependency list.
13065
13066 * xml.c (DEF_XML2_FN, LOAD_XML2_FN) [WINDOWSNT]: New macros.
13067 (fn_htmlReadMemory, fn_xmlReadMemory, fn_xmlDocGetRootElement)
13068 (fn_xmlFreeDoc, fn_xmlCleanupParser, fn_xmlCheckVersion)
13069 [!WINDOWSNT]: New macros.
13070 (init_libxml2_functions, libxml2_loaded_p): New functions.
13071 (parse_region): Call fn_xmlCheckVersion instead of using the macro
13072 LIBXML_TEST_VERSION. Call libxml2 functions via the fn_* macros.
13073 (xml_cleanup_parser): New function, export for fn_xmlCleanupParser.
13074 Calls xmlCleanupParser only if libxml2 was loaded (or statically
13075 linked in).
13076 (Flibxml_parse_html_region, Flibxml_parse_xml_region):
13077 Call init_libxml2_functions before calling libxml2 functions.
13078 (syms_of_xml) <Qlibxml2_dll>: DEFSYM it.
13079
13080 * emacs.c: Don't include libxml/parser.h.
13081 (shut_down_emacs): Call xml_cleanup_parser, instead of calling
13082 xmlCleanupParser directly.
13083
13084 * lisp.h [HAVE_LIBXML2]: Add prototype for xml_cleanup_parser.
13085
13086 2012-04-07 Eli Zaretskii <eliz@gnu.org>
13087
13088 * indent.c (Fvertical_motion): If there is a display string at
13089 point, use it.vpos to compute how many lines to backtrack after
13090 move_it_to point. (Bug#11133)
13091
13092 2012-04-06 Eli Zaretskii <eliz@gnu.org>
13093
13094 * buffer.h (FETCH_CHAR, FETCH_MULTIBYTE_CHAR):
13095 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH): Add comments
13096 about subtle differences between FETCH_CHAR* and STRING_CHAR*
13097 macros related to unification of CJK characters. For the details,
13098 see the discussion following the message here:
13099 http://debbugs.gnu.org/cgi/bugreport.cgi?bug=11073#14.
13100
13101 2012-04-04 Chong Yidong <cyd@gnu.org>
13102
13103 * keyboard.c (Vdelayed_warnings_list): Doc fix.
13104
13105 2012-04-01 Eli Zaretskii <eliz@gnu.org>
13106
13107 * w32menu.c (simple_dialog_show, add_menu_item): Use SAFE_ALLOCA
13108 instead of alloca. (Bug#11138)
13109
13110 2012-04-01 Andreas Schwab <schwab@linux-m68k.org>
13111
13112 * w32menu.c (is_simple_dialog): Properly check lisp types.
13113 (Bug#11141)
13114
13115 2012-03-31 Eli Zaretskii <eliz@gnu.org>
13116
13117 * xdisp.c (move_it_by_lines): When DVPOS is positive, and the
13118 position we get to after a call to move_it_to fails the
13119 IS_POS_VALID_AFTER_MOVE_P test, move to the next buffer position
13120 only if we wind up in a string from display property. (Bug#11063)
13121
13122 * window.c (Fdelete_other_windows_internal): Invalidate the row
13123 and column information about mouse highlight, so that redisplay
13124 restores it after reallocating the glyph matrices. (Bug#7464)
13125
13126 * xdisp.c (set_cursor_from_row): If `cursor' property on a display
13127 string comes from a `display' text property, use the buffer
13128 position of that property as if we actually saw that position in
13129 the row's glyphs.
13130 (move_it_by_lines): Remove the assertion that
13131 "it->current_x == 0 && it->hpos == 0" which can be legitimately
13132 violated when there's a before-string at the beginning of a line.
13133 (Bug#11063)
13134
13135 2012-03-30 Eli Zaretskii <eliz@gnu.org>
13136
13137 * xdisp.c (append_space_for_newline): If the default face was
13138 remapped, use the remapped face for the appended newline.
13139 (extend_face_to_end_of_line): Use the remapped default face for
13140 extending the face to the end of the line.
13141 (display_line): Call extend_face_to_end_of_line when the default
13142 face was remapped. (Bug#11068)
13143
13144 2012-03-29 Eli Zaretskii <eliz@gnu.org>
13145
13146 * s/ms-w32.h: Discourage from defining HAVE_GETCWD.
13147
13148 2012-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
13149
13150 * keyboard.c (safe_run_hooks_error): Don't unquote strings.
13151
13152 2012-03-27 Glenn Morris <rgm@gnu.org>
13153
13154 * search.c (Fword_search_backward_lax, Fword_search_forward_lax):
13155 Doc fixes.
13156
13157 2012-03-26 Kenichi Handa <handa@m17n.org>
13158
13159 * dispextern.h (struct glyph): Fix previous change. Change the
13160 bit length of glyphless.ch to 25 (Bug#11082).
13161
13162 2012-03-26 Chong Yidong <cyd@gnu.org>
13163
13164 * keyboard.c (Vselection_inhibit_update_commands): New variable.
13165 (command_loop_1): Use it; inhibit selection update for
13166 handle-select-window too (Bug#8996).
13167
13168 2012-03-25 Fabrice Popineau <fabrice.popineau@supelec.fr>
13169
13170 * w32heap.c (_heap_init, _heap_term): Remove dead MSVC-specific code.
13171
13172 2012-03-25 Kenichi Handa <handa@m17n.org>
13173
13174 * dispextern.h (struct glyph): Change the bit length of
13175 glyphless.ch to 22 to make the member glyphless fit in 32 bits.
13176
13177 2012-03-24 Eli Zaretskii <eliz@gnu.org>
13178
13179 * s/ms-w32.h (tzname): Include time.h before redirecting to
13180 _tzname. Fixes the MSVC build. (Bug#9960)
13181
13182 2012-03-24 Andreas Schwab <schwab@linux-m68k.org>
13183
13184 * xdisp.c (produce_glyphless_glyph): Limit length of acronym to 6
13185 characters.
13186
13187 * xterm.c (XTread_socket): Only modify handling_signal if
13188 !SYNC_INPUT. (Bug#11080)
13189
13190 2012-03-23 Eli Zaretskii <eliz@gnu.org>
13191
13192 * bidi.c (bidi_fetch_char): Use STRING_CHAR_AND_LENGTH instead of
13193 FETCH_MULTIBYTE_CHAR followed by CHAR_BYTES. Prevents crashes
13194 when fetching a multibyte character consumes more bytes than
13195 CHAR_BYTES returns, due to unification of CJK characters in
13196 string_char. (Bug#11073)
13197
13198 2012-03-23 Troels Nielsen <bn.troels@gmail.com> (tiny change)
13199
13200 * process.c (wait_reading_process_output): Handle pty disconnect
13201 by refraining from sending oneself a SIGCHLD (bug#10933).
13202
13203 2012-03-22 Chong Yidong <cyd@gnu.org>
13204
13205 * dispextern.h (struct it): New member string_from_prefix_prop_p.
13206
13207 * xdisp.c (push_prefix_prop): Rename from push_display_prop.
13208 Mark string as coming from a prefix property.
13209 (handle_face_prop): Use default face for prefix strings (Bug#4281).
13210 (pop_it, reseat_1): Save and restore string_from_prefix_prop_p.
13211
13212 2012-03-21 Chong Yidong <cyd@gnu.org>
13213
13214 * xfaces.c (Vface_remapping_alist): Doc fix.
13215
13216 2012-03-20 Eli Zaretskii <eliz@gnu.org>
13217
13218 * w32proc.c (Fw32_set_console_codepage)
13219 (Fw32_set_console_output_codepage, Fw32_get_codepage_charset):
13220 Doc fixes.
13221
13222 2012-03-20 Chong Yidong <cyd@gnu.org>
13223
13224 * dispnew.c (Fredisplay, Vredisplay_preemption_period): Update doc
13225 to reflect default non-nil value of redisplay-dont-pause.
13226
13227 2012-03-19 Kenichi Handa <handa@m17n.org>
13228
13229 * ftfont.c (ftfont_drive_otf): Mask bits of character code to make
13230 it fit in a valid range (Bug#11003).
13231
13232 2012-03-18 Eli Zaretskii <eliz@gnu.org>
13233
13234 * xdisp.c (cursor_row_p): Even if the glyph row ends in a string
13235 that is not from display property, accept the row as a "cursor
13236 row" if one of the string's character has a non-nil `cursor'
13237 property. Fixes cursor positioning when there are newlines in
13238 overlay strings, e.g. in icomplete.el. (Bug#11035)
13239
13240 2012-03-12 Paul Eggert <eggert@cs.ucla.edu>
13241
13242 * buffer.c (compare_overlays): Don't assume args differ (Bug#6830).
13243
13244 2012-03-12 Chong Yidong <cyd@gnu.org>
13245
13246 * eval.c (inhibit_lisp_code): Rename from
13247 inhibit_window_configuration_change_hook; move from window.c.
13248
13249 * xfns.c (unwind_create_frame_1, Fx_create_frame):
13250 * window.c (run_window_configuration_change_hook)
13251 (syms_of_window): Callers changed.
13252
13253 2012-03-11 Chong Yidong <cyd@gnu.org>
13254
13255 * keymap.c (Fkey_description): Doc fix (Bug#9700).
13256
13257 * editfns.c (Fconstrain_to_field): Doc fix (Bug#9452).
13258
13259 2012-03-10 Chong Yidong <cyd@gnu.org>
13260
13261 * frame.c (other_visible_frames): Don't assume the selected frame
13262 is visible (Bug#10955).
13263
13264 2012-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
13265
13266 * buffer.c (compare_overlays): Avoid qsort's instability (bug#6830).
13267
13268 2012-03-08 Jan Djärv <jan.h.d@swipnet.se>
13269
13270 * gtkutil.c (x_wm_set_size_hint): Use one row in call to
13271 FRAME_TEXT_LINES_TO_PIXEL_HEIGHT so base_height is greater than
13272 zero (Bug#10954).
13273
13274 2012-03-03 Glenn Morris <rgm@gnu.org>
13275
13276 * alloc.c (Fgarbage_collect, misc-objects-consed): Doc fixes.
13277
13278 2012-03-02 Eli Zaretskii <eliz@gnu.org>
13279
13280 * xdisp.c (try_window_reusing_current_matrix): Don't move cursor
13281 position past the first glyph_row that ends at ZV. (Bug#10902)
13282 (redisplay_window, next_element_from_string): Fix typos in
13283 comments.
13284 (redisplay_window): Pass to move_it_vertically the margin in
13285 pixels, not in screen lines.
13286
13287 2012-03-02 Glenn Morris <rgm@gnu.org>
13288
13289 * buffer.c (buffer-list-update-hook): Doc fix.
13290
13291 2012-02-29 Eli Zaretskii <eliz@gnu.org>
13292
13293 * xdisp.c (get_overlay_strings_1): Under bidi redisplay, call
13294 push_it before setting up the iterator for the first overlay
13295 string, even if we have an empty string loaded.
13296 (next_overlay_string): If there's an empty string on the iterator
13297 stack, pop the stack. (Bug#10903)
13298
13299 2012-02-25 Paul Eggert <eggert@cs.ucla.edu>
13300
13301 Generalize fix for crash due to non-contiguous EMACS_INT (Bug#10780).
13302 Suggested by Stefan Monnier in
13303 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00692.html>.
13304 * alloc.c (widen_to_Lisp_Object): New static function.
13305 (mark_memory): Also mark Lisp_Objects by fetching pointer words
13306 and widening them to Lisp_Objects. This would work even if
13307 USE_LSB_TAG is defined and wide integers are used, which might
13308 happen in a future version of Emacs.
13309
13310 2012-02-25 Chong Yidong <cyd@gnu.org>
13311
13312 * fileio.c (Ffile_selinux_context, Fset_file_selinux_context):
13313 Doc fix.
13314
13315 * xselect.c (Fx_selection_exists_p): Doc fix.
13316 (x_clipboard_manager_save_all): Print an informative message
13317 before saving to clipboard manager.
13318
13319 2012-02-24 Chong Yidong <cyd@gnu.org>
13320
13321 * keyboard.c (process_special_events): Handle all X selection
13322 requests in kbd_buffer, not just the next one (Bug#8869).
13323
13324 2012-02-23 Chong Yidong <cyd@gnu.org>
13325
13326 * xfns.c (Fx_create_frame): Avoid window-configuration-change-hook
13327 call when setting menu-bar-lines and tool-bar-lines parameters.
13328 (unwind_create_frame_1): New helper function.
13329
13330 * window.c (inhibit_window_configuration_change_hook): New var.
13331 (run_window_configuration_change_hook): Obey it.
13332 (syms_of_window): Initialize it.
13333
13334 2012-02-22 Chong Yidong <cyd@gnu.org>
13335
13336 * xterm.c (x_draw_image_relief): Add missing type check for
13337 Vtool_bar_button_margin (Bug#10743).
13338
13339 2012-02-21 Chong Yidong <cyd@gnu.org>
13340
13341 * fileio.c (Vfile_name_handler_alist): Doc fix.
13342
13343 * buffer.c (Fget_file_buffer): Protect against invalid file
13344 handler return value.
13345
13346 2012-02-20 Paul Eggert <eggert@cs.ucla.edu>
13347
13348 * .gdbinit (xreload): Don't assume EMACS_INT fits in 'long'
13349 when computing $valmask.
13350
13351 Fix crash due to non-contiguous EMACS_INT (Bug#10780).
13352 * lisp.h (VALBITS): Move definition up, so that USE_LSB_TAG can use it.
13353 (USE_LSB_TAG): Do not define if UINTPTR_MAX >> VALBITS == 0.
13354 It's useless in that case, and it can cause problems on hosts
13355 that allocate halves of EMACS_INT values separately.
13356 Reported by Dan Horák. Diagnosed by Andreas Schwab in
13357 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=10780#30>.
13358 * mem-limits.h (EXCEEDS_LISP_PTR): Define to 0 on hosts where
13359 UINTPTR_MAX >> VALBITS == 0. This is required by the above change;
13360 it avoids undefined behavior on hosts where shifting right by more
13361 than the word width has undefined behavior.
13362
13363 2012-02-19 Chong Yidong <cyd@gnu.org>
13364
13365 * fileio.c (Ffile_name_directory, Ffile_name_nondirectory)
13366 (Funhandled_file_name_directory, Ffile_name_as_directory)
13367 (Fdirectory_file_name, Fexpand_file_name)
13368 (Fsubstitute_in_file_name): Protect against invalid file handler
13369 return values (Bug#10845).
13370
13371 2012-02-18 Eli Zaretskii <eliz@gnu.org>
13372
13373 * .gdbinit (pitx): Fix incorrect references to fields of the
13374 iterator stack.
13375
13376 2012-02-17 Chong Yidong <cyd@gnu.org>
13377
13378 * syntax.c (Fscan_lists): Doc fix (Bug#10833).
13379
13380 2012-02-15 Paul Eggert <eggert@cs.ucla.edu>
13381
13382 * image.c (MAX_IMAGE_SIZE): Increase from 6.0 to 10.0; see
13383 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00540.html>.
13384
13385 2012-02-15 Chong Yidong <cyd@gnu.org>
13386
13387 * eval.c (Fdefvar, Fdefconst): Doc fix; note that the variable is
13388 marked as special. Also, starting docstrings with * is obsolete.
13389
13390 2012-02-13 Andreas Schwab <schwab@linux-m68k.org>
13391
13392 * gnutls.c (emacs_gnutls_write): Fix last change.
13393
13394 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
13395
13396 * gnutls.c (emacs_gnutls_write): Set errno appropriately for
13397 send_process.
13398
13399 2012-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
13400
13401 * keymap.c (Fsingle_key_description): Handle char ranges.
13402
13403 2012-02-12 Chong Yidong <cyd@gnu.org>
13404
13405 * xdisp.c (handle_stop): Avoid assigning -1 to it->face_id here,
13406 as that creates a dangerous corner case.
13407
13408 * window.c (Fdelete_window_internal): Invalidate the mouse
13409 highlight (Bug#9904).
13410
13411 2012-02-12 Glenn Morris <rgm@gnu.org>
13412
13413 * xselect.c (Fx_own_selection_internal)
13414 (Fx_get_selection_internal, Fx_disown_selection_internal)
13415 (Fx_selection_owner_p, Fx_selection_exists_p): Doc fixes.
13416 * nsselect.m (Fx_own_selection_internal)
13417 (Fx_disown_selection_internal, Fx_selection_exists_p)
13418 (Fx_selection_owner_p, Fx_get_selection_internal):
13419 Sync docs and argument specs with the xselect.c versions.
13420
13421 2012-02-11 Lars Ingebrigtsen <larsi@gnus.org>
13422
13423 * gnutls.c (emacs_gnutls_write): Don't infloop if sendto fails.
13424
13425 2012-02-11 Eli Zaretskii <eliz@gnu.org>
13426
13427 * w32select.c (Fx_selection_exists_p): Sync doc string and
13428 argument list with xselect.c. (Bug#10783)
13429
13430 * w16select.c (Fx_selection_exists_p): Sync doc string and
13431 argument list with xselect.c. (Bug#10783)
13432
13433 2012-02-10 Glenn Morris <rgm@gnu.org>
13434
13435 * fns.c (Fsecure_hash): Doc fix.
13436
13437 2012-02-09 Kenichi Handa <handa@m17n.org>
13438
13439 * coding.c (produce_chars): Fix updating of src_end (Bug#10701).
13440
13441 2012-02-07 Chong Yidong <cyd@gnu.org>
13442
13443 * buffer.c (Fbuffer_local_variables)
13444 (buffer_lisp_local_variables): Handle unbound vars correctly;
13445 don't let Qunbound leak into Lisp.
13446
13447 2012-02-07 Glenn Morris <rgm@gnu.org>
13448
13449 * image.c (Fimagemagick_types): Doc fix.
13450
13451 * image.c (imagemagick-render-type): Change it from a lisp object
13452 to an integer. Move the doc here from the lisp manual.
13453 Treat all values not equal to 0 the same.
13454
13455 2012-02-06 Chong Yidong <cyd@gnu.org>
13456
13457 * doc.c (store_function_docstring): Avoid applying docstring of
13458 alias to base function (Bug#2603).
13459
13460 2012-02-04 Andreas Schwab <schwab@linux-m68k.org>
13461
13462 * .gdbinit (pp1, pv1): Remove redundant defines.
13463 (pr): Use pp.
13464
13465 2012-02-04 Chong Yidong <cyd@gnu.org>
13466
13467 * nsterm.m: Declare a global (Bug#10694).
13468
13469 2012-02-04 Eli Zaretskii <eliz@gnu.org>
13470
13471 * w32.c (get_emacs_configuration_options):
13472 Include --enable-checking, if specified, in the return value.
13473
13474 2012-02-04 Martin Rudalics <rudalics@gmx.at>
13475
13476 * dispnew.c (change_frame_size_1): Calculate new_frame_total_cols
13477 after rounding frame sizes. (Bug#9723)
13478
13479 2012-02-04 Eli Zaretskii <eliz@gnu.org>
13480
13481 * keyboard.c (adjust_point_for_property): Don't position point
13482 before BEGV. (Bug#10696)
13483
13484 2012-02-03 Paul Eggert <eggert@cs.ucla.edu>
13485
13486 Handle overflow when computing char display width (Bug#9496).
13487 * character.c (char_width): Return EMACS_INT, not int.
13488 (char_width, c_string_width): Check for overflow when
13489 computing the width; this is possible now that individual
13490 characters can have unbounded width. Problem introduced
13491 by merge from Emacs 23 on 2012-01-19.
13492
13493 2012-02-02 Michael Albinus <michael.albinus@gmx.de>
13494
13495 * dbusbind.c (Fdbus_register_method): Mention the return value
13496 :ignore in the docstring.
13497
13498 2012-02-02 Glenn Morris <rgm@gnu.org>
13499
13500 * callproc.c (Fcall_process, Fcall_process_region): Doc fix.
13501
13502 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
13503 Unconditionally set to t. (Bug#10673)
13504 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
13505 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
13506 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Doc fix.
13507
13508 2012-02-02 Kenichi Handa <handa@m17n.org>
13509
13510 (x_produce_glyphs): Cancel previous change. If cmp->glyph_len is
13511 0, do not call append_composite_glyph.
13512
13513 2012-02-02 Kenichi Handa <handa@m17n.org>
13514
13515 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING): Initialize first_s to
13516 NULL (Bug#6988).
13517 (x_produce_glyphs): If the component of a composition is a null
13518 string, set it->pixel_width to 1 to avoid zero-width glyph.
13519
13520 2012-02-01 Eli Zaretskii <eliz@gnu.org>
13521
13522 * ralloc.c (resize_bloc, r_alloc_sbrk): Don't call memmove if its
13523 first 2 arguments are identical. This makes inserting large
13524 output from a subprocess an order of magnitude faster on
13525 MS-Windows, where all sbrk'ed memory is always contiguous.
13526
13527 2012-01-31 Glenn Morris <rgm@gnu.org>
13528
13529 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
13530 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
13531 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Sync docs.
13532
13533 2012-01-29 Glenn Morris <rgm@gnu.org>
13534
13535 * gnutls.c (syms_of_gnutls): More doc (from etc/NEWS).
13536
13537 2012-01-28 Samuel Thibault <sthibault@debian.org> (tiny change)
13538
13539 * s/gnu.h: Define POSIX_SIGNALS (Bug#10552).
13540
13541 2012-01-28 Chong Yidong <cyd@gnu.org>
13542
13543 * minibuf.c (syms_of_minibuf): Doc fix (Bug#10550).
13544
13545 2012-01-26 Chong Yidong <cyd@gnu.org>
13546
13547 * keyboard.c (Vecho_keystrokes): Document zero value (Bug#10503).
13548
13549 * search.c (Fsearch_forward, Fsearch_backward): Document negative
13550 repeat counts (Bug#10507).
13551
13552 2012-01-26 Glenn Morris <rgm@gnu.org>
13553
13554 * lread.c (syms_of_lread): Doc fix.
13555
13556 2012-01-25 HIROSHI OOTA <nil@mad.dog.cx> (tiny change)
13557
13558 * coding.c (encode_designation_at_bol): Change return value to
13559 EMACS_INT.
13560
13561 2012-01-25 Chong Yidong <cyd@gnu.org>
13562
13563 * eval.c (Fuser_variable_p): Doc fix; mention custom-variable-p.
13564
13565 2012-01-21 Chong Yidong <cyd@gnu.org>
13566
13567 * floatfns.c (Fcopysign): Make the second argument non-optional,
13568 since nil is not allowed anyway.
13569
13570 2012-01-21 Andreas Schwab <schwab@linux-m68k.org>
13571
13572 * process.c (read_process_output): Use p instead of XPROCESS (proc).
13573 (send_process): Likewise.
13574
13575 2012-01-19 Martin Rudalics <rudalics@gmx.at>
13576
13577 * window.c (save_window_save, Fcurrent_window_configuration)
13578 (Vwindow_persistent_parameters): Do not use Qstate.
13579 Rewrite doc-strings.
13580
13581 2012-01-19 Kenichi Handa <handa@m17n.org>
13582
13583 * character.c (char_width): New function.
13584 (Fchar_width, c_string_width, lisp_string_width):
13585 Use char_width (Bug#9496).
13586
13587 2012-01-16 Martin Rudalics <rudalics@gmx.at>
13588
13589 * window.c (Vwindow_persistent_parameters): New variable.
13590 (Fset_window_configuration, save_window_save): Handle persistent
13591 window parameters.
13592
13593 2012-01-14 Eli Zaretskii <eliz@gnu.org>
13594
13595 * w32fns.c (signal_user_input): Don't do a QUIT, to avoid
13596 thrashing the stack of the thread. (Bug#9087)
13597
13598 2012-01-12 Paul Eggert <eggert@cs.ucla.edu>
13599
13600 * xdisp.c (rows_from_pos_range): Add parens as per gcc -Wparentheses.
13601
13602 2012-01-11 Eli Zaretskii <eliz@gnu.org>
13603
13604 * xdisp.c (rows_from_pos_range): Handle the case where the
13605 highlight ends on a newline. (Bug#10464)
13606 (mouse_face_from_buffer_pos): Fix off-by-one error in calculating
13607 he end column for display of highlight that ends on a newline
13608 before a R2L line.
13609
13610 2012-01-11 Glenn Morris <rgm@gnu.org>
13611
13612 * lread.c (init_lread): If no-site-lisp, remove site-lisp dirs
13613 from load-path also when installation-directory is nil. (Bug#10208)
13614
13615 2012-01-10 Glenn Morris <rgm@gnu.org>
13616
13617 * emacs.c (syms_of_emacs) <installation-directory>: Doc fix.
13618
13619 * epaths.in (PATH_LOADSEARCH, PATH_EXEC, PATH_DATA, PATH_DOC):
13620 Update template values to be closer to their typical values these days.
13621
13622 2012-01-09 Eli Zaretskii <eliz@gnu.org>
13623
13624 * xdisp.c (rows_from_pos_range): Accept additional argument
13625 DISP_STRING, and accept any glyph in a row whose object is that
13626 string as eligible for mouse highlight. Fixes mouse highlight of
13627 display strings from overlays. (Bug#10464)
13628
13629 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
13630
13631 emacs: fix an auto-save permissions race condition (Bug#10400)
13632 * fileio.c (auto_saving_dir_umask): New static var.
13633 (Fmake_directory_internal): Use it.
13634 (do_auto_save_make_dir): Set it, instead of invoking chmod after
13635 creating the directory. The old code temporarily assigns
13636 too-generous permissions to the directory.
13637 (do_auto_save_eh): Clear it.
13638 (Fdo_auto_save): Catch all errors, not just file errors, so
13639 that the var is always cleared.
13640
13641 2012-01-07 Eli Zaretskii <eliz@gnu.org>
13642
13643 * search.c (scan_buffer): Pass character positions to
13644 know_region_cache, not byte positions. (Bug#6540)
13645
13646 2012-01-07 LynX <_LynX@bk.ru> (tiny change)
13647
13648 * w32.c (sys_rename): Report EXDEV when rename of a directory
13649 fails because the target is on another logical disk. (Bug#10284)
13650
13651 2012-01-07 David Benjamin <davidben@mit.edu> (tiny change)
13652
13653 * xterm.c (x_embed_request_focus): New function.
13654
13655 * xterm.h: Add prototype.
13656
13657 * xfns.c (Fx_focus_frame): Use it for embedded frames (Bug#9977).
13658
13659 2012-01-05 Glenn Morris <rgm@gnu.org>
13660
13661 * emacs.c (emacs_copyright): Update short copyright year to 2012.
13662
13663 2012-01-01 Eli Zaretskii <eliz@gnu.org>
13664
13665 * gnutls.c (init_gnutls_functions): Load gnutls_check_version.
13666 Load gnutls_transport_set_lowat only if GnuTLS version is below
13667 2.11.1.
13668 (emacs_gnutls_handshake): Call gnutls_transport_set_lowat only for
13669 GnuTLS versions below 2.11.1.
13670
13671 2011-12-31 Antoine Levitt <antoine.levitt@gmail.com>
13672
13673 * xdisp.c (syms_of_xdisp) <window-scroll-functions>: Add warning
13674 to the doc string advising against its use for altering the way
13675 windows are scrolled.
13676
13677 2011-12-28 Kenichi Handa <handa@m17n.org>
13678
13679 * coding.c (Fdefine_coding_system_internal): Make an utf-8 base
13680 coding-system ASCII compatible only when it does not produce BOM
13681 on encoding (Bug#10383).
13682
13683 2011-12-26 Jan Djärv <jan.h.d@swipnet.se>
13684
13685 * xmenu.c (x_menu_wait_for_event): Use xg_select for Gtk3 so menus
13686 can scroll.
13687 (create_and_show_popup_menu): Always use menu_position_func for
13688 Gtk3 (Bug#10361).
13689
13690 2011-12-24 Andreas Schwab <schwab@linux-m68k.org>
13691
13692 * callint.c (Fcall_interactively): Don't truncate prompt string.
13693
13694 2011-12-23 Eli Zaretskii <eliz@gnu.org>
13695
13696 * xdisp.c (handle_invisible_prop): Handle correctly an invisible
13697 property that ends at ZV, so that the bidi iteration could be
13698 resumed from there (after widening). (Bug#10360)
13699
13700 2011-12-22 Jan Djärv <jan.h.d@swipnet.se>
13701
13702 * nsfont.m (ns_spec_to_descriptor): Do not autorelease fdesc.
13703
13704 2011-12-21 Jan Djärv <jan.h.d@swipnet.se>
13705
13706 * nsterm.m (x_free_frame_resources):
13707 Release f->output_data.ns->miniimage.
13708 (ns_index_color): Fix indentation. Do not retain
13709 color_table->colors[i].
13710
13711 * nsmenu.m (ns_update_menubar): Call free_menubar_widget_value_tree
13712 before returning.
13713
13714 * nsfns.m (x_set_background_color): Assign return value from
13715 ns_index_color to face-background instead of NSColor*.
13716 (ns_implicitly_set_icon_type): Fix indentation.
13717 Change assignment in for loop to comparison.
13718
13719 * emacs.c (ns_pool): New variable.
13720 (main): Assign ns_pool.
13721 (Fkill_emacs): Call ns_release_autorelease_pool.
13722
13723 * nsfont.m (ns_spec_to_descriptor): Fix indentation,
13724 autorelease fdesc, release fdAttrs and tdict.
13725 (ns_get_covering_families): Release charset.
13726 (ns_findfonts): Release NSFontDescriptor created with new.
13727 (ns_uni_to_glyphs): Fix indentation.
13728 (setString): Release attrStr before assigning new value.
13729
13730 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
13731
13732 * nsmenu.m (NSMenuDidBeginTrackingNotification): Declare if OSX < 10.5
13733 and NS_IMPL_COCOA.
13734 (trackingNotification): Surround with ifdef NS_IMPL_COCOA.
13735 (syms_of_nsmenu): Set trackingMenu to 1 if not NS_IMPL_COCOA.
13736
13737 2011-12-18 David Reitter <reitter@cmu.edu>
13738
13739 * nsterm.m (ns_term_init): Subscribe for notifications
13740 NSMenuDidBeginTrackingNotification and NSMenuDidEndTrackingNotification
13741 to method trackingNotification in EmacsMenu.
13742
13743 * nsmenu.m (trackingMenu): New variable.
13744 (trackingNotification): New method (from Aquamacs).
13745 (menuNeedsUpdate): Expand comment and return if trackingMenu is 0,
13746 from Aquamacs (Bug#7030).
13747
13748 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
13749
13750 * nsselect.m (CUT_BUFFER_SUPPORT): Remove define.
13751 (symbol_to_nsstring): Fix indentation.
13752 (ns_symbol_to_pb): New function.
13753 (Fns_get_selection_internal): Rename from Fns_get_cut_buffer_internal.
13754 (Fns_rotate_cut_buffers_internal): Remove.
13755 (Fns_store_selection_internal): Rename from
13756 Fns_store_cut_buffer_internal.
13757 (ns_get_foreign_selection, Fx_own_selection_internal)
13758 (Fx_disown_selection_internal, Fx_selection_exists_p)
13759 (Fns_get_selection_internal, Fns_store_selection_internal):
13760 Use ns_symbol_to_pb and check if return value is nil.
13761 (syms_of_nsselect): Remove ifdef CUT_BUFFER_SUPPORT. Remove defsubr
13762 Sns_rotate_cut_buffers_internal. Sns_get_cut_buffer_internal
13763 renamed to Sns_get_selection_internal, Sns_store_cut_buffer_internal
13764 renamed to Sns_store_selection_internal.
13765 (ns_handle_selection_request): Move code to Fx_own_selection_internal
13766 and remove this function.
13767 (ns_handle_selection_clear): Remove, never used.
13768 (Fx_own_selection_internal): Move code from ns_handle_selection_request
13769 here.
13770
13771 2011-12-17 Ken Brown <kbrown@cornell.edu>
13772
13773 * fileio.c (check_writable) [CYGWIN]: Return non-zero if UID or
13774 GID is unknown (Bug#10257).
13775
13776 2011-12-17 Paul Eggert <eggert@cs.ucla.edu>
13777
13778 * s/gnu-linux.h: Fix mark_memory typo (Bug#10286).
13779 (GC_MARK_SECONDARY_STACK): Omit removed 3rd arg to mark_memory,
13780 which caused a build failure on GNU/Linux IA-64. This problem was
13781 introduced by my 2011-10-07 patch.
13782
13783 2011-12-15 Juri Linkov <juri@jurta.org>
13784
13785 * image.c (imagemagick_error): New function. (Bug#10112)
13786 (imagemagick_load_image): Comment out `MagickSetResolution' call.
13787 Use `imagemagick_error' where ImageMagick functions return
13788 `MagickFalse'.
13789 (Fimagemagick_types): Add `Fnreverse' to return the list in the
13790 proper order.
13791
13792 2011-12-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13793
13794 * xftfont.c (xftfont_draw): Use the font metrics of s->font to
13795 fill background (Bug#8992).
13796
13797 2011-12-13 Martin Rudalics <rudalics@gmx.at>
13798
13799 * window.c (Vwindow_combination_resize)
13800 (Vwindow_combination_limit): Use t instead of non-nil in
13801 doc-strings.
13802 (Vrecenter_redisplay): Add first sentence of doc-string on
13803 separate line.
13804 (Frecenter): Fix doc-string typo.
13805
13806 2011-12-11 Kenichi Handa <handa@m17n.org>
13807
13808 * coding.c (Funencodable_char_position): Pay attention to the
13809 buffer text relocation (Bug#9389).
13810
13811 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
13812
13813 * xterm.c (x_term_init): Move call to gdk_window_add_filter before
13814 gtk_init (Bug#10100).
13815
13816 2011-12-10 Eli Zaretskii <eliz@gnu.org>
13817
13818 * xdisp.c (RECORD_MAX_MIN_POS): Use IT->cmp_it.charpos only if
13819 IT->string is nil. (Bug#10263)
13820
13821 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
13822
13823 * nsterm.h (x_free_frame_resources): Declare.
13824
13825 * nsfns.m (ns_get_defaults_value): New function (Bug#10103).
13826 (Fns_get_resource, x_get_string_resource): Call ns_get_defaults_value.
13827
13828 * nsterm.h (ns_get_defaults_value): Declare.
13829
13830 * nsterm.m (ns_default): Call ns_get_defaults_value.
13831
13832 2011-12-09 Eli Zaretskii <eliz@gnu.org>
13833
13834 * xdisp.c (try_scrolling): Don't set scroll_down_p if dy is zero.
13835 (Bug#10170)
13836
13837 2011-12-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13838
13839 * unexelf.c (unexec) [NS_IMPL_GNUSTEP]: Take account of the case
13840 that where the value of an _OBJC_* symbol points to is in the .bss
13841 section (Bug#10240).
13842
13843 2011-12-08 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
13844
13845 * coding.c (encode_coding_ccl): Check (charbuf < charbuf_end)
13846 after the loop to call ccl_driver at least once (Bug#8619).
13847
13848 2011-12-08 Kenichi Handa <handa@m17n.org>
13849
13850 * ftfont.c (get_adstyle_property): Fix previous change
13851 (Bug#10233).
13852
13853 2011-12-07 Juanma Barranquero <lekktu@gmail.com>
13854
13855 * w32.c (init_environment): If no_site_lisp, remove site-lisp
13856 dirs from the default value of EMACSLOADPATH (bug#10208).
13857
13858 2011-12-07 Glenn Morris <rgm@gnu.org>
13859
13860 * lread.c (init_lread): If no_site_lisp, exclude site-lisp/ in
13861 installation and source directories as well. (Bug#10208)
13862
13863 2011-12-06 Chong Yidong <cyd@gnu.org>
13864
13865 * minibuf.c (Fread_from_minibuffer): Doc fix (Bug#10228).
13866
13867 2011-12-06 Glenn Morris <rgm@gnu.org>
13868
13869 * process.c (start_process_unwind): Treat any pid <= 0, except -2,
13870 as an error, not just -1. (Bug#10217)
13871
13872 2011-12-05 Chong Yidong <cyd@gnu.org>
13873
13874 * keyboard.c (process_special_events): New function.
13875 (swallow_events, Finput_pending_p): Use it (Bug#10195).
13876
13877 2011-12-05 Paul Eggert <eggert@cs.ucla.edu>
13878
13879 * coding.c (encode_designation_at_bol): Don't use uninitialized
13880 local variable (Bug#9318).
13881
13882 2011-12-05 Kenichi Handa <handa@m17n.org>
13883
13884 * ftfont.c (get_adstyle_property): If the font is not BDF nor PCF,
13885 return Qnil (Bug#8046, Bug#10193).
13886
13887 2011-12-05 Kenichi Handa <handa@m17n.org>
13888
13889 * coding.c (encode_designation_at_bol): New args charbuf_end and
13890 dst. Return the number of produced bytes. Callers changed.
13891 (coding_set_source): Return how many bytes coding->source was
13892 relocated.
13893 (coding_set_destination): Return how many bytes
13894 coding->destination was relocated.
13895 (CODING_DECODE_CHAR, CODING_ENCODE_CHAR, CODING_CHAR_CHARSET)
13896 (CODING_CHAR_CHARSET_P): Adjust for the avove changes.
13897
13898 2011-12-05 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
13899
13900 * coding.c (CODING_CHAR_CHARSET_P): New macro.
13901 (encode_coding_emacs_mule, encode_coding_iso_2022): Use the above
13902 macro (Bug#9318).
13903
13904 2011-12-05 Andreas Schwab <schwab@linux-m68k.org>
13905
13906 The following changes are to fix Bug#9318.
13907
13908 * coding.c (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET): New macros.
13909 (encode_coding_emacs_mule, ENCODE_ISO_CHARACTER)
13910 (encode_coding_iso_2022, encode_coding_sjis)
13911 (encode_coding_big5, encode_coding_charset): Use the above macros.
13912
13913 2011-12-05 Juanma Barranquero <lekktu@gmail.com>
13914
13915 * lisp.h (process_quit_flag): Fix external declaration.
13916
13917 2011-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
13918
13919 Don't macro-inline non-performance-critical code.
13920 * eval.c (process_quit_flag): New function.
13921 * lisp.h (QUIT): Use it.
13922
13923 2011-12-04 Jan Djärv <jan.h.d@swipnet.se>
13924
13925 * nsfns.m (get_geometry_from_preferences): New function.
13926 (Fx_create_frame): Call get_geometry_from_preferences (Bug#10103).
13927
13928 2011-12-04 Andreas Schwab <schwab@linux-m68k.org>
13929
13930 * emacs.c (Qkill_emacs): Define.
13931 (syms_of_emacs): Initialize it.
13932 * keyboard.c (interrupt_signal): Don't call Fkill_emacs here, set
13933 Qquit_flag to `kill-emacs' instead.
13934 (quit_throw_to_read_char): Add parameter `from_signal'.
13935 All callers changed. Call Fkill_emacs if requested and safe.
13936 * lisp.h (QUIT): Call Fkill_emacs if requested.
13937
13938 2011-12-03 Jan Djärv <jan.h.d@swipnet.se>
13939
13940 * widget.c (update_wm_hints): Return if wmshell is null.
13941 (widget_update_wm_size_hints): New function.
13942
13943 * widget.h (widget_update_wm_size_hints): Declare.
13944
13945 * xterm.c (x_wm_set_size_hint): If USE_X_TOOLKIT, call
13946 widget_update_wm_size_hints (Bug#10104).
13947
13948 2011-12-03 Eli Zaretskii <eliz@gnu.org>
13949
13950 * xdisp.c (handle_invisible_prop): If the invisible text ends just
13951 before a newline, prepare the bidi iterator for consuming the
13952 newline, and keep the current paragraph direction. (Bug#10183)
13953 (redisplay_window): Don't let `margin' become negative. (Bug#10192)
13954
13955 2011-12-02 Juri Linkov <juri@jurta.org>
13956
13957 * search.c (Fword_search_regexp): New Lisp function created from
13958 `wordify'. Change type of arg `lax' from `int' to `Lisp_Object'.
13959 (Fword_search_backward, Fword_search_forward)
13960 (Fword_search_backward_lax, Fword_search_forward_lax):
13961 Use `Fword_search_regexp' instead of `wordify'. Doc fix.
13962 (syms_of_search): Define `Sword_search_regexp'. (Bug#10145)
13963
13964 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
13965
13966 * fileio.c (Finsert_file_contents): Move after-change-function call
13967 to before the "handled:" label, since all "goto handled" appear in
13968 cases where the *-change-functions have already been properly called
13969 (bug#10117).
13970
13971 2011-12-01 Andreas Schwab <schwab@linux-m68k.org>
13972
13973 * keyboard.c (interrupt_signal): Don't call kill-emacs when
13974 waiting for input. (Bug#10169)
13975
13976 2011-11-30 Eli Zaretskii <eliz@gnu.org>
13977
13978 * dispnew.c (adjust_glyph_matrix): Remove the assertion that
13979 verifies glyph row's hash code--we have just reallocated the
13980 glyphs, so their contents can be complete garbage. (Bug#10164)
13981
13982 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
13983
13984 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Add missing check.
13985
13986 2011-11-30 Eli Zaretskii <eliz@gnu.org>
13987
13988 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Ensure ROW's
13989 attributes are tested _before_ calling verify_row_hash, to protect
13990 against GCC re-ordering of the tests. (Bug#10164)
13991
13992 2011-11-29 Jan Djärv <jan.h.d@swipnet.se>
13993
13994 * xterm.h (struct x_output): net_wm_state_hidden_seen is new.
13995
13996 * xterm.c (handle_one_xevent): Only set async_visible and friends
13997 if net_wm_state_hidden_seen is non-zero (Bug#10002)
13998 (get_current_wm_state): Set net_wm_state_hidden_seen to 1 if
13999 _NET_WM_STATE_HIDDEN is in NET_WM_STATE.
14000
14001 2011-11-28 Paul Eggert <eggert@cs.ucla.edu>
14002
14003 Remove GCPRO-related macros that exist only to avoid shadowing locals.
14004 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR)
14005 (GCPRO6_VAR, UNGCPRO_VAR): Remove. See
14006 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
14007 All uses changed to use GCPRO1 etc.
14008 (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6, UNGCPRO):
14009 Revert to old implementation (i.e., before 2011-03-11).
14010
14011 2011-11-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14012
14013 * dispnew.c (scrolling_window): Truncate overlaps in copy destination
14014 of scroll runs so as to avoid assigning disabled bogus rows and
14015 unnecessary graphics copy operations.
14016
14017 2011-11-27 Eli Zaretskii <eliz@gnu.org>
14018
14019 * s/ms-w32.h (utimbuf) [_MSC_VER]: Don't define.
14020 (snprintf) [_MSC_VER]: Redirect to _snprintf.
14021 (strtoll) [_MSC_VER]: Redirect to _strtoi64.
14022 (malloc, free, realloc, calloc): Redirect to e_* only when
14023 compiling Emacs.
14024
14025 * lisp.h (GCTYPEBITS): Move before first use.
14026 (ALIGN_GCTYPEBITS) [_MSC_VER]: Define.
14027 (DECL_ALIGN) [_MSC_VER]: Use it, as MSVC doesn't like bit ops in
14028 this macro definition.
14029
14030 * s/ms-w32.h (tzname): Redirect to _tzname for all values of
14031 _MSC_VER.
14032
14033 2011-11-27 Jan Djärv <jan.h.d@swipnet.se>
14034
14035 * gtkutil.c (xg_create_frame_widgets):
14036 Call gtk_window_set_has_resize_grip (FALSE) if that function is
14037 present with Gtk+ 2.0.
14038
14039 2011-11-26 Paul Eggert <eggert@cs.ucla.edu>
14040
14041 * fileio.c (Finsert_file_contents): Undo previous change; see
14042 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
14043
14044 2011-11-26 Paul Eggert <eggert@cs.ucla.edu>
14045
14046 Rename locals to avoid shadowing.
14047 * fileio.c (Finsert_file_contents):
14048 Rename inner 'gcpro1' to 'inner_gcpro1' to avoid shadowing.
14049 * process.c (wait_reading_process_output):
14050 Rename inner 'proc' to 'p' to avoid shadowing.
14051 Indent for consistency with usual Emacs style.
14052
14053 2011-11-25 Eli Zaretskii <eliz@gnu.org>
14054
14055 * xdisp.c (redisplay_window): If cursor row is not fully visible
14056 after recentering, and scroll-conservatively is set to a large
14057 number, scroll window by a few more lines to make the cursor fully
14058 visible and out of scroll-margin. (Bug#10105)
14059 (start_display): Don't move to the next line if the display should
14060 start at a newline that is part of a display vector or an overlay
14061 string. (Bug#10119)
14062
14063 2011-11-24 Juri Linkov <juri@jurta.org>
14064
14065 * image.c (imagemagick_load_image): Move `MagickSetResolution' down
14066 after the `MagickPingImage' call. (Bug#10112)
14067
14068 2011-11-23 Chong Yidong <cyd@gnu.org>
14069
14070 * window.c (Fcoordinates_in_window_p): Accept only live windows.
14071
14072 2011-11-23 Martin Rudalics <rudalics@gmx.at>
14073
14074 * buffer.c (Fkill_buffer): Run replace_buffer_in_windows before
14075 making another buffer current. (Bug#10114)
14076
14077 2011-11-23 Glenn Morris <rgm@gnu.org>
14078
14079 * font.c (font_find_for_lface) [HAVE_NS]: Ignore case. (Bug#2526)
14080
14081 2011-11-23 Chong Yidong <cyd@gnu.org>
14082
14083 * xdisp.c (compute_stop_pos): Check validity of end_charpos before
14084 using it (Bug#5984).
14085
14086 2011-11-22 Eli Zaretskii <eliz@gnu.org>
14087
14088 * dispnew.c (adjust_glyph_matrix): Don't verify hash code of mode-
14089 and header-lines, as they don't have one computed for them.
14090 (Bug#10098)
14091
14092 * .gdbinit (prow): Make displayed values more self-explaining.
14093 Add row's hash code.
14094
14095 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
14096
14097 * process.c (wait_reading_process_output): Fix asynchrounous
14098 GnuTLS socket handling on some versions of the GnuTLS library.
14099 (wait_reading_process_output): Add comment and URL.
14100
14101 2011-11-21 Jan Djärv <jan.h.d@swipnet.se>
14102
14103 * xterm.c (x_clear_frame): Reinstate the XClearWindow call.
14104
14105 2011-11-21 Chong Yidong <cyd@gnu.org>
14106
14107 * window.c (Fnext_window, Fprevious_window): Doc fix.
14108
14109 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
14110
14111 * window.c (get_phys_cursor_glyph): Fix Lisp_Object/int mixup.
14112
14113 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
14114
14115 * nsfont.m (syms_of_nsfont) <ns-reg-to-script>: Fix typo.
14116
14117 2011-11-20 Martin Rudalics <rudalics@gmx.at>
14118
14119 * window.c (Fset_window_combination_limit): Rename argument
14120 STATUS to LIMIT.
14121 (Vwindow_combination_limit): Remove "status" from doc-string.
14122
14123 2011-11-20 Andreas Schwab <schwab@linux-m68k.org>
14124
14125 * m/ibms390.h: Remove.
14126 * m/ibms390x.h: Don't include "ibms390.h".
14127
14128 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
14129
14130 * fileio.c (Finsert_file_contents): Add missing gcpro1 variable.
14131 Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
14132
14133 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
14134
14135 * casetab.c (Fset_case_table):
14136 * charset.c (Fcharset_after): Fix typos.
14137
14138 2011-11-20 Paul Eggert <eggert@cs.ucla.edu>
14139
14140 Standardize on VIRT_ADDR_VARIES behavior (Bug#10042).
14141 Otherwise, valgrind does not work on some platforms.
14142 Problem reported by Andreas Schwab in
14143 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00081.html>.
14144 * puresize.h (pure, PURE_P): Always behave as if VIRT_ADDR_VARIES
14145 is set, removing the need for VIRT_ADDRESS_VARIES.
14146 (PURE_P): Use a more-efficient implementation that needs just one
14147 comparison, not two: on x86-64 with GCC 4.6.2, this cut down the
14148 number of instructions from 6 (xorl, cmpq, jge, xorl, cmpq, setge)
14149 to 4 (xorl, subq, cmpq, setbe).
14150 * alloc.c (pure): Always extern now, since that's the
14151 VIRT_ADDR_VARIES behavior.
14152 (PURE_POINTER_P): Use a single comparison, not two, for
14153 consistency with the new puresize.h.
14154 * lisp.h (PNTR_COMPARISON_TYPE): Remove; no longer needed.
14155 * m/ibms390.h, m/intel386.h, m/template.h, s/cygwin.h, s/hpux10-20.h:
14156 Remove VIRT_ADDR_VARIES no longer needed.
14157
14158 2011-11-19 Eli Zaretskii <eliz@gnu.org>
14159
14160 * xdisp.c (x_write_glyphs, draw_phys_cursor_glyph)
14161 (erase_phys_cursor, update_window_cursor, show_mouse_face)
14162 (cursor_in_mouse_face_p): If the cursor position is out of bounds,
14163 behave as if the cursor position were at the window margin.
14164
14165 * window.c (get_phys_cursor_glyph): If the window is hscrolled,
14166 and the cursor position is out of bounds, behave as if the cursor
14167 position were at the window margin. (Bug#10075)
14168
14169 2011-11-18 Chong Yidong <cyd@gnu.org>
14170
14171 * window.c (Fwindow_combination_limit): Make first argument
14172 non-optional, since it is meaningless for live windows like the
14173 selected window.
14174
14175 2011-11-18 Dmitry Antipov <dmantipov@yandex.ru>
14176
14177 * keymap.c (Fwhere_is_internal): Add missing RETURN_UNGCPROs.
14178
14179 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
14180
14181 * intervals.c: Fix grafting over the whole buffer (bug#10071).
14182 (graft_intervals_into_buffer): Simplify.
14183
14184 2011-11-18 Eli Zaretskii <eliz@gnu.org>
14185
14186 * dispnew.c (swap_glyph_pointers): Swap the used[] arrays and the
14187 hash values of the two rows.
14188 (copy_row_except_pointers): Preserve the used[] arrays and the
14189 hash values of the two rows. (Bug#10035)
14190 (add_row_entry): Add xassert to verify that ROW's hash code is valid.
14191
14192 * xdisp.c (row_hash): New function, body extracted from
14193 compute_line_metrics.
14194 (compute_line_metrics): Call row_hash, instead of computing the
14195 hash code inline.
14196
14197 * dispnew.c (verify_row_hash): Call row_hash for computing the
14198 hash code of a row, instead of duplicating code from xdisp.c.
14199
14200 * dispextern.h (row_hash): Add prototype.
14201
14202 2011-11-18 Tassilo Horn <tassilo@member.fsf.org>
14203
14204 * frame.c (delete_frame): Don't delete the terminal when the last
14205 X frame is closed if emacs is built with GTK toolkit.
14206
14207 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
14208
14209 * window.c (syms_of_window) <window-combination-resize>: Fix typo.
14210
14211 2011-11-17 Martin Rudalics <rudalics@gmx.at>
14212
14213 * window.c (Vwindow_splits): Rename to
14214 Vwindow_combination_resize. Suggested by Juri Linkov.
14215 (Fsplit_window_internal): Use Vwindow_combination_resize instead
14216 of Vwindow_splits.
14217
14218 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
14219
14220 * nsfns.m (Fns_font_name):
14221 * window.c (syms_of_window) <window-combination-limit>: Fix typos.
14222
14223 2011-11-16 Martin Rudalics <rudalics@gmx.at>
14224
14225 * window.h (window): Rename slot "nest" to "combination_limit".
14226 * window.c (Fwindow_nest): Rename to Fwindow_combination_limit.
14227 (Fset_window_nest): Rename to Fset_window_combination_limit.
14228 (Vwindow_nest): Rename to Vwindow_combination_limit.
14229 (recombine_windows, make_parent_window, make_window)
14230 (Fsplit_window_internal, saved_window)
14231 (Fset_window_configuration, save_window_save): Rename all
14232 occurrences of window_nest to window_combination_limit.
14233
14234 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
14235
14236 * image.c (imagemagick_load_image): Fix typo.
14237
14238 2011-11-14 Eli Zaretskii <eliz@gnu.org>
14239
14240 * xdisp.c (display_line): Move the call to
14241 highlight_trailing_whitespace before the call to
14242 compute_line_metrics, since the latter needs to see the final
14243 faces of all the glyphs to compute ROW's hash value.
14244 Fixes assertion violations in row_equal_p. (Bug#10035)
14245
14246 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
14247
14248 * w32proc.c (reader_thread): Don't check pending input if cp->fd < 0,
14249 just return (bug#10044).
14250
14251 2011-11-12 Eli Zaretskii <eliz@gnu.org>
14252
14253 * makefile.w32-in (HEAPSIZE): New variable, allows to build temacs
14254 with user-defined heap size. Bump the default size of the temacs
14255 heap to 27MB, to avoid memory warning when running temacs.
14256 ($(TEMACS)): Use HEAPSIZE instead of a hardcoded value.
14257
14258 * dispnew.c (scrolling_window): Fix incorrect indices in accessing
14259 current_matrix and desired_matrix. (Bug#9990)
14260 (verify_row_hash) [XASSERTS]: New function.
14261 (adjust_glyph_matrix, row_equal_p): Use it in xassert to verify
14262 that the hash value of glyph rows is correct.
14263
14264 2011-11-12 Martin Rudalics <rudalics@gmx.at>
14265
14266 * window.h (window): Remove splits slot.
14267 * window.c (Fwindow_splits, Fset_window_splits): Remove.
14268 (Fdelete_other_windows_internal, make_parent_window)
14269 (make_window, Fsplit_window_internal, Fdelete_window_internal)
14270 (Fset_window_configuration, save_window_save): Don't deal with
14271 split status of windows.
14272 (saved_window): Remove splits slot.
14273 (Vwindow_splits): Rewrite doc-string.
14274
14275 2011-11-11 Jan Djärv <jan.h.d@swipnet.se>
14276
14277 * xfns.c (unwind_create_frame):
14278 * nsfns.m (unwind_create_frame):
14279 * w32fns.c (unwind_create_frame): Use Fmemq to check if frame is in
14280 Vframe_list (Bug#9999).
14281
14282 2011-11-11 Dmitry Antipov <dmantipov@yandex.ru>
14283
14284 * xdisp.c (syms_of_xdisp): Remove duplicated definition of Qtext.
14285
14286 2011-11-11 Kenichi Handa <handa@m17n.org>
14287
14288 * callproc.c (Fcall_process): Set the member dst_multibyte of
14289 process_coding.
14290
14291 2011-11-11 Johan Bockgård <bojohan@gnu.org>
14292
14293 * xdisp.c (fill_composite_glyph_string): Always set s->face, to
14294 avoid a crash (bug#9496).
14295
14296 2011-11-09 Chong Yidong <cyd@gnu.org>
14297
14298 * window.c (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
14299 (Fwindow_inside_absolute_pixel_edges): Only allow live windows.
14300
14301 2011-11-08 Paul Eggert <eggert@cs.ucla.edu>
14302
14303 * s/gnu.h (GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS (Bug#9926).
14304
14305 2011-11-08 Paul Eggert <eggert@cs.ucla.edu>
14306
14307 Avoid some portability problems by eschewing 'extern inline' functions.
14308 The trivial performance wins aren't worth the portability hassles; see
14309 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>
14310 et seq.
14311 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
14312 (window_box_width, window_box_left, window_box_left_offset)
14313 (window_box_right, window_box_right_offset): Undo previous change,
14314 by removing the "extern"s.
14315 * intervals.c (adjust_intervals_for_insertion)
14316 (adjust_intervals_for_deletion): Undo previous change,
14317 making these static again.
14318 (offset_intervals, temp_set_point_both, temp_set_point)
14319 (copy_intervals_to_string): No longer inline.
14320 * xdisp.c (window_text_bottom_y, window_box_width)
14321 (window_box_height, window_box_left_offset)
14322 (window_box_right_offset, window_box_left, window_box_right)
14323 (window_box): No longer inline.
14324
14325 2011-11-08 Chong Yidong <cyd@gnu.org>
14326
14327 * window.c (Fwindow_left_column, Fwindow_top_line): Doc fix.
14328 (Fwindow_body_height, Fwindow_body_width): Move from Lisp.
14329 Signal an error if not a live window.
14330 (Fwindow_total_width, Fwindow_total_height): Move from Lisp.
14331 (Fwindow_total_size, Fwindow_body_size): Move to Lisp.
14332
14333 2011-11-07 Juanma Barranquero <lekktu@gmail.com>
14334
14335 * lisp.h (syms_of_abbrev): Remove declaration.
14336 Reported by CHENG Gao <chenggao@royau.me>.
14337
14338 2011-11-07 Eli Zaretskii <eliz@gnu.org>
14339
14340 * w32.c (check_windows_init_file): Don't look for term/w32-win.el
14341 if Vpurify_flag is non-nil. Fixes a crash when running w32 build
14342 of temacs in GUI mode.
14343
14344 2011-11-07 Martin Rudalics <rudalics@gmx.at>
14345
14346 * window.h: Declare delete_all_child_windows instead of
14347 delete_all_subwindows.
14348 * window.c (Fwindow_nest, Fset_window_nest)
14349 (Fset_window_new_total, Fset_window_new_normal)
14350 (Fwindow_resize_apply): Don't use term subwindow in doc-strings.
14351 (delete_all_subwindows): Rename to delete_all_child_windows.
14352 (Fdelete_other_windows_internal, Fset_window_configuration):
14353 Call delete_all_child_windows instead of delete_all_subwindows.
14354 * frame.c (delete_frame): Call delete_all_child_windows instead
14355 of delete_all_subwindows.
14356
14357 2011-11-07 Paul Eggert <eggert@cs.ucla.edu>
14358
14359 * alloc.c (DEADP): New macro, for porting to GNU/Hurd (Bug#9926).
14360 This is also needed for porting to any host where GC_MARK_STACK is
14361 not GC_MAKE_GCPROS_NOOPS.
14362 (which_symbols): Use it.
14363
14364 2011-11-07 Kenichi Handa <handa@m17n.org>
14365
14366 * coding.c (coding_set_destination): Check coding->src_pos only
14367 when coding->src_object is a buffer (bug#9910).
14368
14369 * process.c (send_process): Set the member src_multibyte of coding
14370 to 0 (bug#9911) when sending a unibyte text.
14371
14372 * callproc.c (Fcall_process): Set the member src_multibyte of
14373 process_coding to 0 (bug#9912).
14374
14375 2011-11-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14376
14377 * xmenu.c (cleanup_widget_value_tree): New function.
14378 (xmenu_show, xdialog_show): Use it in record_unwind_protect instead of
14379 calling free_menubar_widget_value_tree directly (Bug#9830).
14380
14381 2011-11-06 Paul Eggert <eggert@cs.ucla.edu>
14382
14383 Fix some portability problems with 'inline'.
14384 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
14385 (window_box_width, window_box_left, window_box_left_offset)
14386 (window_box_right, window_box_right_offset): Declare extern.
14387 Otherwise, these inline functions do not conform to C99 and
14388 are miscompiled by Microsoft compilers. Reported by Eli Zaretskii in
14389 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>.
14390 * intervals.c (adjust_intervals_for_insertion)
14391 (adjust_intervals_for_deletion): Now extern, because otherwise the
14392 extern inline functions 'offset_intervals' couldn't refer to it.
14393 (static_offset_intervals): Remove.
14394 (offset_intervals): Rewrite using the old contents of
14395 static_offset_intervals. The old version didn't conform to C99
14396 because an extern inline function contained a reference to an
14397 identifier with static linkage.
14398
14399 2011-11-06 Andreas Schwab <schwab@linux-m68k.org>
14400
14401 * keyboard.c (interrupt_signal): Don't call kill-emacs while in
14402 GC.
14403
14404 2011-11-06 Eli Zaretskii <eliz@gnu.org>
14405
14406 * xdisp.c (init_iterator, reseat_to_string): Don't set the
14407 iterator's bidi_p flag if Vpurify_flag is non-nil. (Bug#9963)
14408 (Fcurrent_bidi_paragraph_direction): If Vpurify_flag is non-nil,
14409 return Qleft_to_right.
14410
14411 2011-11-06 Chong Yidong <cyd@gnu.org>
14412
14413 * window.c (Fwindow_live_p, Fwindow_frame, Fframe_root_window)
14414 (Fminibuffer_window, Fwindow_buffer, Fwindow_splits)
14415 (Fset_window_splits, Fwindow_nest, Fset_window_nest)
14416 (Fwindow_use_time, Fwindow_total_size, Fwindow_normal_size)
14417 (Fwindow_new_normal, Fwindow_left_column, Fwindow_top_line)
14418 (Fwindow_margins, Fwindow_fringes, Fwindow_scroll_bars)
14419 (Fwindow_vscroll): Doc fix.
14420 (Fwindow_top_child, Fwindow_left_child): Eliminate a nil default
14421 argument, since it makes no sense to pass a live window and for
14422 consistency with window-child.
14423
14424 2011-11-05 Christoph Scholtes <cschol2112@googlemail.com>
14425
14426 * makefile.w32-in ($(TEMACS), (gl-stamp)): Use $(THISDIR) to
14427 support MSVC.
14428
14429 2011-11-05 Jason Rumney <jasonr@gnu.org>
14430
14431 * w32font.c (font_matches_spec): Filter out non-Japanese kana fonts.
14432 (add_font_entity_to_list): Filter out non-Japanese Shift-JIS
14433 fonts (Bug#6029).
14434 (add_font_entity_to_list): Fix logic errors in mixed boolean and
14435 bitwise arithmetic preventing use of unicode-sip and non-truetype
14436 opentype fonts.
14437
14438 2011-11-05 Eli Zaretskii <eliz@gnu.org>
14439
14440 * s/ms-w32.h (fstat, stat, utime): Move redirections to
14441 "emacs"-only part.
14442
14443 * w32fns.c (x_create_tip_frame, Fx_create_frame): Rearrange
14444 initialization code to keep similarity to xfns.c after changes
14445 from 2011-11-05.
14446
14447 2011-11-05 Jan Djärv <jan.h.d@swipnet.se>
14448
14449 * nsfns.m: Declare image_cache_refcount if GLYPH_DEBUG.
14450 (unwind_create_frame): New function (Bug#9943).
14451 (Fx_create_frame): Restructure code to be more similar to the one in
14452 xfns.c. Call record_unwind_protect with unwind_create_frame (Bug#9943).
14453 Initialize image_cache_refcount if GLYPH_DEBUG (Bug#9943).
14454 Move terminal->reference_count++ just before making the frame official
14455 (Bug#9943).
14456
14457 * nsterm.m (x_free_frame_resources): New function.
14458 (x_destroy_window): Move code to x_free_frame_resources.
14459
14460 * xfns.c (unwind_create_frame): Fix comment.
14461 (Fx_create_frame, x_create_tip_frame):
14462 Move terminal->reference_count++ just before making the frame
14463 official. Move initialization of image_cache_refcount and
14464 dpyinfo_refcount before calling init_frame_faces (Bug#9943).
14465
14466 2011-11-05 Eli Zaretskii <eliz@gnu.org>
14467
14468 Support MSVC build with newer versions of Visual Studio.
14469 * makefile.w32-in (TAGS-gmake): Don't use $(patsubst ...), as
14470 Nmake barfs on that. Use $(OBJ*_c) variables instead, defined on
14471 nt/gmake.defs.
14472
14473 * lisp.h (ENUM_BF): New macro, for enumerated types in bitfields,
14474 which are not supported by MSVC.
14475 (Lisp_Symbol, Lisp_Misc_Any, Lisp_Marker, Lisp_Misc_Overlay)
14476 (Lisp_Save_Value, Lisp_Free): Use ENUM_BF for enumerated types in
14477 bitfields.
14478 (Lisp_Object) [USE_LISP_UNION_TYPE]: Use ENUM_BF for enumerated
14479 types in bitfields.
14480 (DEFUN) [_MSC_VER]: Define in a different way for MSVC.
14481
14482 * w32fns.c [_MSC_VER]: DECLARE_HANDLE for any MSVC version.
14483
14484 2011-11-05 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
14485
14486 Support MSVC build with newer versions of Visual Studio.
14487 * w32.c: Don't include w32api.h for MSVC.
14488 (init_environment) [_MSC_VER]: Call sys_access, not _access.
14489
14490 * s/ms-w32.h <sigset_t, ssize_t> [_MSC_VER]: Typedefs for MSVC.
14491 [_MSC_VER]: Include sys/timeb.h, sys/stat.h, and signal.h.
14492 (fstat, stat, utime) [_MSC_VER]: Redirect to their sys_* cousins.
14493 (malloc, free, realloc, calloc) [_MSC_VER]: Always redirect to the
14494 e_* cousins.
14495 (alloca) [_MSC_VER]: Define to _alloca.
14496
14497 * lisp.h (DECL_ALIGN) [_MSC_VER]: Define for MSVC.
14498
14499 * regex.c <re_char> [_MSC_VER]: A separate definition for MSVC.
14500
14501 2011-11-04 Eli Zaretskii <eliz@gnu.org>
14502
14503 * xdisp.c (note_mouse_highlight): If either of
14504 previous/next-single-property-change returns nil, treat that as
14505 the beginning or the end of the buffer. (Bug#9955)
14506
14507 2011-11-04 Jan Djärv <jan.h.d@swipnet.se>
14508
14509 * gtkutil.c (xg_make_tool_item): Add callbacks if one of wimage or
14510 label is not null (Bug#9951).
14511 (xg_tool_item_stale_p): Handle the fact that wimage and/or wlbl
14512 may be NULL.
14513
14514 2011-11-04 Eli Zaretskii <eliz@gnu.org>
14515
14516 * window.c (Fwindow_body_size): Mention in the doc string that the
14517 return value is in frame's canonical units. (Bug#9949)
14518
14519 2011-11-03 Eli Zaretskii <eliz@gnu.org>
14520
14521 * xdisp.c (note_mouse_highlight): Initialize `area'. (Bug#9947)
14522
14523 * w32fns.c (unwind_create_frame): If needed, free the glyph
14524 matrices of the partially constructed frame. (Bug#9943)
14525 * xfns.c (unwind_create_frame): Likewise.
14526
14527 2011-11-01 Eli Zaretskii <eliz@gnu.org>
14528
14529 * xdisp.c (mouse_face_from_buffer_pos): Fix a typo in a comment.
14530 Don't stop backward scan on the continuation glyph, even though
14531 its CHARPOS is positive.
14532 (mouse_face_from_buffer_pos, note_mouse_highlight):
14533 Rename cover_string to disp_string.
14534
14535 2011-11-01 Martin Rudalics <rudalics@gmx.at>
14536
14537 * window.c (temp_output_buffer_show): Don't use
14538 Vtemp_buffer_show_specifiers.
14539 (Vtemp_buffer_show_specifiers): Remove unused variable.
14540
14541 2011-10-30 Eli Zaretskii <eliz@gnu.org>
14542
14543 * xdisp.c (try_cursor_movement): Make sure ROW isn't decremented
14544 past the beginning of the current glyph matrix.
14545
14546 2011-10-30 Adam Sjøgren <asjo@koldfront.dk> (tiny change)
14547
14548 * xterm.c: Include X11/Xproto.h if HAVE_GTK3.
14549 (x_error_handler): Ignore BadMatch for X_SetInputFocus for
14550 HAVE_GTK3 (Bug#9869).
14551
14552 * gtkutil.c (xg_win_to_widget, xg_event_is_for_menubar): Initialize
14553 type to GDK_NOTHING so valgrind does not complain (Bug#9901).
14554
14555 * xterm.h (x_display_info): Add Xatom_net_wm_state_hidden (Bug#9893).
14556
14557 * xterm.c: Declare x_handle_net_wm_state to return int.
14558 (handle_one_xevent): Check if we are iconified but don't have
14559 _NET_WM_STATE_HIDDEN. If do, treat as deiconify (Bug#9893).
14560 (get_current_wm_state): Return non-zero if not hidden,
14561 check for _NET_WM_STATE_HIDDEN (Bug#9893).
14562 (do_ewmh_fullscreen): Ignore return value from get_current_wm_state.
14563 (x_handle_net_wm_state): Return what get_current_wm_state returns.
14564 (x_term_init): Initialize dpyinfo->Xatom_net_wm_state_hidden.
14565
14566 2011-10-29 Paul Eggert <eggert@cs.ucla.edu>
14567
14568 * alloc.c (which_symbols): Declare EXTERNALLY_VISIBLE,
14569 so that this new function doesn't get optimized away by a
14570 whole-program optimizer. Make the 2nd arg EMACS_INT, not int.
14571
14572 2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
14573
14574 * frame.h (MOUSE_HL_INFO): Remove excess parens.
14575
14576 2011-10-29 Eli Zaretskii <eliz@gnu.org>
14577
14578 Fix the `xbytecode' command.
14579 * .gdbinit (xprintbytestr): New command.
14580 (xwhichsymbols): Rename from `which'; all callers changed.
14581 (xbytecode): Print the byte-code string as well.
14582
14583 2011-10-29 Kim Storm <storm@cua.dk>
14584
14585 * alloc.c (which_symbols): New function.
14586
14587 2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
14588
14589 * minibuf.c (read_minibuf_noninteractive): Allow reading empty
14590 line. (Bug#9903)
14591
14592 2011-10-29 Glenn Morris <rgm@gnu.org>
14593
14594 * process.c (wait_reading_process_output): Revert 2009-08-30 change.
14595 Not clear what it was for, and it causes various bugs. (Bug#9839)
14596
14597 2011-10-28 Eli Zaretskii <eliz@gnu.org>
14598
14599 * xdisp.c (note_mouse_highlight): Initialize `part', to avoid a
14600 possible random value that matches one of those tested as
14601 condition to clear the mouse face.
14602
14603 2011-10-28 Chong Yidong <cyd@gnu.org>
14604
14605 * xdisp.c (note_mouse_highlight): Fix use of uninitialized var.
14606
14607 2011-10-28 Dan Nicolaescu <dann@ics.uci.edu>
14608
14609 * window.c (make_window): Initialize phys_cursor_on_p.
14610
14611 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
14612
14613 * lisp.h (struct Lisp_Symbol): Update comments.
14614
14615 2011-10-28 Juanma Barranquero <lekktu@gmail.com>
14616
14617 * w32font.c (w32_load_unicows_or_gdi32): Add missing return.
14618
14619 2011-10-28 Eli Zaretskii <eliz@gnu.org>
14620
14621 Fix Emacs on Windows 9X (bug#8562). Thanks to oslsachem
14622 <oslsachem@gmail.com> for helping to debug this.
14623
14624 * w32font.c (g_b_init_is_w9x, g_b_init_get_outline_metrics_w)
14625 (g_b_init_get_text_metrics_w, g_b_init_get_glyph_outline_w)
14626 (g_b_init_get_glyph_outline_w): New static variables.
14627 (GetOutlineTextMetricsW_Proc, GetTextMetricsW_Proc)
14628 (GetGlyphOutlineW_Proc): New typedefs.
14629 (w32_load_unicows_or_gdi32, get_outline_metrics_w)
14630 (get_text_metrics_w, get_glyph_outline_w, globals_of_w32font):
14631 New functions.
14632 (w32font_open_internal, compute_metrics):
14633 Call get_outline_metrics_w, get_text_metrics_w, and get_glyph_outline_w
14634 instead of calling the "wide" APIs directly.
14635
14636 * emacs.c (main) [HAVE_NTGUI]: Call globals_of_w32font.
14637
14638 * w32.h (syms_of_w32font): Add prototype.
14639
14640 2011-10-27 Juanma Barranquero <lekktu@gmail.com>
14641
14642 * window.c (Fframe_root_window, Fframe_first_window, Fwindow_end)
14643 (Fframe_selected_window, Ftemp_output_buffer_show, Fnext_window)
14644 (Fdelete_window_internal, Fwindow_parameters): Fix typos in docstrings.
14645 (Fmove_to_window_line): Doc fix.
14646
14647 2011-10-27 Chong Yidong <cyd@gnu.org>
14648
14649 * process.c (make_process): Set gnutls_state to NULL.
14650
14651 * gnutls.c (emacs_gnutls_deinit): Deinit the gnutls_state if it is
14652 non-NULL, regardless of GNUTLS_INITSTAGE.
14653 (Fgnutls_boot): Cleanups. Call emacs_gnutls_deinit if we signal
14654 an error. Set process slots as soon as we allocate them.
14655
14656 * gnutls.h (GNUTLS_LOG, GNUTLS_LOG2): Fix macros.
14657
14658 2011-10-27 Chong Yidong <cyd@gnu.org>
14659
14660 * gnutls.c (emacs_gnutls_deinit): New function.
14661 Deallocate credentials structures as well as calling gnutls_deinit.
14662 (Fgnutls_deinit, Fgnutls_boot): Use it.
14663
14664 * process.c (make_process): Initialize GnuTLS credentials to NULL.
14665 (deactivate_process): Call emacs_gnutls_deinit.
14666
14667 2011-10-27 Juanma Barranquero <lekktu@gmail.com>
14668
14669 * image.c (x_create_x_image_and_pixmap):
14670 * w32.c (sys_rename, w32_delayed_load):
14671 * w32font.c (fill_in_logfont):
14672 * w32reg.c (x_get_string_resource): Silence compiler warnings.
14673
14674 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
14675
14676 * w32fns.c (w32_default_color_map): New function,
14677 extracted from Fw32_default_color_map.
14678 (Fw32_default_color_map, Fx_open_connection): Use it. (Bug#9785)
14679
14680 2011-10-25 Paul Eggert <eggert@cs.ucla.edu>
14681
14682 * dispextern.h (Fcontrolling_tty_p): New decl (Bug#6649 part 2).
14683
14684 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
14685
14686 * keyboard.c (test_undefined): New function (bug#9751).
14687 (read_key_sequence): Use it to detect when a key is bound to `undefined'.
14688
14689 2011-10-25 Enami Tsugutomo <tsugutomo.enami@jp.sony.com>
14690
14691 * sysdep.c (init_sys_modes): Fix the check for the controlling
14692 terminal (Bug#6649).
14693
14694 2011-10-20 Eli Zaretskii <eliz@gnu.org>
14695
14696 * dispextern.h (struct bidi_it): New member next_en_type.
14697
14698 * bidi.c (bidi_line_init): Initialize the next_en_type member.
14699 (bidi_resolve_explicit_1): When next_en_pos is valid for the
14700 current character, check also for next_en_type being WEAK_EN.
14701 (bidi_resolve_weak): Don't enter the expensive loop if the current
14702 position is before next_en_pos. Record the bidi type of the first
14703 non-ET, non-BN character we find, in addition to its position.
14704 (bidi_level_of_next_char): Invalidate next_en_type when
14705 next_en_pos is over-stepped.
14706
14707 2011-10-20 Paul Eggert <eggert@cs.ucla.edu>
14708
14709 Time zone name fixes for non-ASCII locales (Bug#641, Bug#9794)
14710 * editfns.c: Rewrite current-time-zone so that it invokes
14711 the equivalent of (format-time-string "%Z") to get the time zone name.
14712 This fixes a bug when the time zone name contains characters that
14713 need converting from the system time locale to Emacs internal format.
14714 This fixes a shortcoming that I introduced in my 1999-10-19 patch:
14715 that patch fixed format-time-string to do the conversion, but
14716 I forgot to fix current-time-zone.
14717 (format_time_string): New function, containing most of
14718 what Fformat_time_string used to contain.
14719 (Fformat_time_string): Rewrite in terms of format_time_string.
14720 This doesn't change this function's behavior.
14721 (current-time-zone): Rewrite to use format_time_string.
14722 This fixes the bug reported by Michael Schierl in
14723 <http://lists.gnu.org/archive/html/emacs-devel/2007-06/msg00334.html>.
14724 Jason Rumney's 2007-06-07 change worked around this bug, but
14725 didn't fix it.
14726 * systime.h (tzname, timezone): Remove no-longer-used declarations.
14727
14728 2011-10-19 Eli Zaretskii <eliz@gnu.org>
14729
14730 * xdisp.c (start_display): If the character at POS is displayed
14731 via a display vector, reset IT->current.dpvec_index to zero.
14732 (try_window_reusing_current_matrix): If a line ends in a display
14733 vector or the next line starts in a display vector, continue
14734 redrawing the window even though the character position of
14735 start_row was reached.
14736 (Bug#9771, part 2)
14737
14738 2011-10-18 Chong Yidong <cyd@gnu.org>
14739
14740 * xdisp.c (get_next_display_element): Handle U+2010 and U+2011
14741 with nobreak-char-display too.
14742
14743 2011-10-18 Eli Zaretskii <eliz@gnu.org>
14744
14745 Fix part 3 of bug#9771.
14746 * bidi.c (bidi_line_init): Initialize next_en_pos to zero, not -1.
14747 (bidi_resolve_neutral): Don't enter the expensive loop looking for
14748 non-neutral characters if the current character is a paragraph
14749 separator (a.k.a. Newline). This avoids running the same
14750 expensive loop twice, once when we consume the preceding newline
14751 and the other time when the line actually needs to be displayed.
14752 Avoid the loop when we see neutrals on the base embedding level
14753 following a character whose directionality is the same as the
14754 paragraph's. This avoids running the expensive loop when a line
14755 ends in a long sequence of neutrals, like control characters.
14756 Add assertion against STRONG_AL type. Slightly rearrange code
14757 that determines the type of a neutral given the first non-neutral
14758 that follows it.
14759 (bidi_level_of_next_char): Set next_en_pos to zero when
14760 invalidating its info.
14761
14762 2011-10-17 Eli Zaretskii <eliz@gnu.org>
14763
14764 * xdisp.c (push_display_prop): Determine whether to record string
14765 or buffer position by IT->string, not by IT->method. Allow
14766 GET_FROM_DISPLAY_VECTOR as IT->method on entry. (Bug#9771, part 4)
14767 (move_it_vertically_backward): Don't look for character position
14768 immediately after the newline when in a continuation line.
14769 (Bug#9771, part 1)
14770
14771 2011-10-15 Martin Rudalics <rudalics@gmx.at>
14772
14773 * window.c (coordinates_in_window): Rewrite and delabelize
14774 vertical border check. (Bug#5357) (Bug#9618)
14775
14776 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
14777
14778 * xterm.c (frame_highlight, frame_unhighlight): Ignore unexplained
14779 errors in XSetWindowBorder (bug#9310).
14780
14781 2011-10-13 Dmitry Antipov <dmantipov@yandex.ru>
14782
14783 * editfns.c (Fset_time_zone_rule): Replace free with xfree to
14784 avoid crash when xmalloc overrun checking is enabled.
14785
14786 2011-10-13 Eli Zaretskii <eliz@gnu.org>
14787
14788 * xdisp.c (Fcurrent_bidi_paragraph_direction): Initialize
14789 itb.paragraph_dir to NEUTRAL_DIR. Fixes an occasional incorrect
14790 cursor motion with <left> and <right> arrow keys.
14791
14792 * bidi.c (bidi_init_it): Don't initialize paragraph_dir here, as
14793 some callers set that themselves.
14794
14795 2011-10-12 Eli Zaretskii <eliz@gnu.org>
14796
14797 * xdisp.c (find_row_edges): Handle the case where ROW comes from a
14798 display string and the previous row comes from the same string and
14799 is empty. (Bug#9739) (Bug#9738)
14800
14801 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
14802
14803 * doc.c (get_doc_string): Encode file name (bug#9735).
14804
14805 2011-10-12 Eli Zaretskii <eliz@gnu.org>
14806
14807 * bidi.c (bidi_level_of_next_char):
14808 * xdisp.c (get_visually_first_element): Remove old incorrect
14809 comments regarding the Unicode Line Separator character.
14810
14811 * bidi.c (bidi_init_it): Initialize paragraph_dir to NEUTRAL_DIR.
14812
14813 2011-10-12 Dmitry Antipov <dmantipov@yandex.ru>
14814
14815 * alloc.c (Fgc_status): Do not access beyond zombies array
14816 boundary if nzombies > MAX_ZOMBIES.
14817 * alloc.c (dump_zombies): Add missing format specifier.
14818
14819 2011-10-12 Paul Eggert <eggert@cs.ucla.edu>
14820
14821 * xdisp.c (set_cursor_from_row): Simplify conditionals,
14822 to pacify GCC 4.6.1 x86-64 with -O2 -Wstrict-overflow.
14823
14824 * lread.c (read_escape): Allow hex escapes as large as ?\xfffffff.
14825 Some packages use them to denote characters with modifiers.
14826
14827 2011-10-11 Andreas Schwab <schwab@linux-m68k.org>
14828
14829 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR)
14830 (GCPRO5_VAR, GCPRO6_VAR, UNGCPRO_VAR): Add whitespace to avoid
14831 matching a pp-number. Rename parameter var to var1.
14832
14833 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
14834
14835 * minibuf.c (Finternal_complete_buffer): Fix last change (bug#9709).
14836
14837 2011-10-08 Glenn Morris <rgm@gnu.org>
14838
14839 * callint.c (Fcall_interactively): Give a more explicit error for the
14840 'c' case with a non-character input. (Bug#8479)
14841
14842 2011-10-08 Eli Zaretskii <eliz@gnu.org>
14843
14844 * xdisp.c (hscroll_window_tree): Support hscroll in right-to-left
14845 lines.
14846 (set_cursor_from_row): Fix cursor positioning in mixed L2R+R2L
14847 lines that are hscrolled on the left.
14848
14849 * dispnew.c (buffer_posn_from_coords): Account for a possible
14850 presence of header-line. (Bug#4426)
14851
14852 2011-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
14853
14854 * buffer.c (syms_of_buffer) <enable-multibyte-characters>:
14855 Don't advertise functionality which we discourage or doesn't work.
14856
14857 2011-10-07 Paul Eggert <eggert@cs.ucla.edu>
14858
14859 * alloc.c (GC_LISP_OBJECT_ALIGNMENT): Use offsetof, not __alignof__
14860 or sizeof. __alignof__ gives the wrong answer on Fedora x86-64
14861 with GCC 4.6.1 when configured with CC='gcc -m32' --with-wide-int;
14862 this makes Emacs dump core during garbage collection on rare
14863 occasions. sizeof is obviously inferior to offsetof here, so
14864 stick with offsetof.
14865 (GC_POINTER_ALIGNMENT): New macro.
14866 (mark_memory): Omit 3rd (offset) arg; caller changed.
14867 Don't assume EMACS_INT alignment is the same as pointer alignment.
14868
14869 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
14870
14871 * keyboard.c (read_key_sequence_remapped): New var.
14872 (read_key_sequence): Compute remapping in the right buffer.
14873 (command_loop_1): Use read_key_sequence's remapping directly.
14874
14875 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
14876
14877 * dired.c (file_name_completion): Don't expand file name.
14878 (Ffile_name_completion, Ffile_name_all_completions): Expand file name
14879 before checking file name handler.
14880
14881 * minibuf.c (Finternal_complete_buffer): Only show internal buffers if
14882 they've been requested explicitly (bug#9591).
14883
14884 2011-10-01 Andreas Schwab <schwab@linux-m68k.org>
14885
14886 * keymap.c (Fsingle_key_description): Use make_specified_string
14887 instead of build_string to build string from push_key_description.
14888 (Bug#5193)
14889
14890 2011-09-30 Paul Eggert <eggert@cs.ucla.edu>
14891
14892 * buffer.h (struct buffer): Use time_t, not int, for a time stamp.
14893 This fixes a Y2038 bug on 64-bit hosts.
14894 * buffer.c (reset_buffer):
14895 * fileio.c (Fdo_auto_save, Fset_buffer_auto_saved)
14896 (Fclear_buffer_auto_save_failure):
14897 Use 0, not -1, to represent an unset failure time, since time_t
14898 might not be signed.
14899
14900 Remove dependency on glibc malloc internals.
14901 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
14902 Move back here from lisp.h, but with their new implementations.
14903 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
14904 (XMALLOC_OVERRUN_SIZE_SIZE): Move these new lisp.h macros here.
14905 * charset.c (charset_table_init): New static var.
14906 (syms_of_charset): Use it instead of xmalloc. This removes a
14907 dependency on glibc malloc internals. See Eli Zaretskii's comment in
14908 <http://lists.gnu.org/archive/html/emacs-devel/2011-09/msg00815.html>.
14909 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
14910 Move back to alloc.c.
14911 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
14912 (XMALLOC_OVERRUN_SIZE_SIZE): Move to alloc.c.
14913
14914 2011-09-30 Jan Djärv <jan.h.d@swipnet.se>
14915
14916 * nsterm.m (windowDidResize): Call x_set_window_size only when
14917 ns_in_resize is true. Otherwise set pixelwidth/height and
14918 call change_frame_size (Bug#9628).
14919
14920 2011-09-30 Paul Eggert <eggert@cs.ucla.edu>
14921
14922 Port --enable-checking=all to Fedora 14 x86-64.
14923 * charset.c (syms_of_charset): Also account for glibc malloc's
14924 internal overhead when calculating the initial malloc maximum.
14925
14926 Port --enable-checking=all to Fedora 14 x86.
14927 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
14928 Move to lisp.h.
14929 (xmalloc_put_size, xmalloc_get_size, overrun_check_malloc)
14930 (overrun_check_realloc, overrun_check_free):
14931 Use XMALLOC_OVERRUN_SIZE_SIZE, not sizeof (size_t).
14932 That way, xmalloc returns a properly-aligned pointer even if
14933 XMALLOC_OVERRUN_CHECK is defined. The old debugging code happened
14934 to align OK on typical 64-bit hosts, but not on Fedora 14 x86.
14935 * charset.c (syms_of_charset): Take XMALLOC_OVERRUN_CHECK_OVERHEAD
14936 into account when calculating the initial malloc maximum.
14937 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
14938 Move here from alloc.c, so that charset.c can use it too.
14939 Properly align; the old code wasn't right for common 32-bit hosts
14940 when configured with --enable-checking=all.
14941 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
14942 (XMALLOC_OVERRUN_SIZE_SIZE): New macros.
14943
14944 2011-09-29 Eli Zaretskii <eliz@gnu.org>
14945
14946 * sysdep.c (snprintf) [!EOVERFLOW]: If EOVERFLOW is not defined,
14947 use EDOM.
14948
14949 2011-09-28 Eli Zaretskii <eliz@gnu.org>
14950
14951 * xdisp.c (compute_display_string_end): If there's no display
14952 string at CHARPOS, return -1.
14953
14954 * bidi.c (bidi_fetch_char): When compute_display_string_end
14955 returns a negative value, treat the character as a normal
14956 character not covered by a display string. (Bug#9624)
14957
14958 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
14959
14960 * lread.c (Fread_from_string): Fix typo in docstring.
14961
14962 2011-09-27 Eli Zaretskii <eliz@gnu.org>
14963
14964 * xdisp.c (handle_invisible_prop): If invisible text ends on a
14965 newline, reseat the iterator instead of bidi-iterating there one
14966 character at a time. (Bug#9610)
14967 (BUFFER_POS_REACHED_P, move_it_in_display_line_to): Bail when past
14968 TO_CHARPOS if the bidi iterator is at base embedding level.
14969
14970 2011-09-27 Andreas Schwab <schwab@linux-m68k.org>
14971
14972 * lread.c (readevalloop): Use correct code for NBSP.
14973 (read1): Likewise. (Bug#9608)
14974
14975 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
14976
14977 * dbusbind.c (Fdbus_register_signal): When service is not
14978 registered, use nil in Vdbus_registered_objects_table. (Bug#9581)
14979
14980 2011-09-25 Glenn Morris <rgm@gnu.org>
14981
14982 * buffer.c (truncate-lines): Doc fix.
14983
14984 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
14985
14986 * window.c (Fwindow_prev_buffers, Fset_window_prev_buffers)
14987 (Fset_window_next_buffers): Doc fix.
14988
14989 2011-09-24 Glenn Morris <rgm@gnu.org>
14990
14991 * minibuf.c (read_minibuf): Disable line truncation. (Bug#5715)
14992
14993 2011-09-24 Paul Eggert <eggert@cs.ucla.edu>
14994
14995 Fix minor problems found by static checking.
14996 * xdisp.c (string_from_display_spec): Don't assume vecsize fits in int.
14997 * indent.c (Fvertical_motion): Fix == vs = typo.
14998
14999 2011-09-24 Eli Zaretskii <eliz@gnu.org>
15000
15001 * dispnew.c (syms_of_display) <redisplay-dont-pause>:
15002 Default value is now t. Doc fix.
15003
15004 * indent.c (Fvertical_motion): Compute and apply the overshoot
15005 logic when moving up, not only when moving down. Fix the
15006 confusing name and values of the it_overshoot_expected variable;
15007 logic changes accordingly. (Bug#9254) (Bug#9549)
15008
15009 * xdisp.c (pos_visible_p): Produce correct pixel coordinates when
15010 CHARPOS is covered by a display string which includes newlines.
15011 (move_it_vertically_backward): Avoid inflooping when START_CHARPOS
15012 is covered by a display string with embedded newlines.
15013
15014 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
15015
15016 * dbusbind.c (Fdbus_register_signal): Add match rule to
15017 Vdbus_registered_objects_table. (Bug#9581)
15018 (Fdbus_register_method, Vdbus_registered_objects_table):
15019 Fix docstring.
15020
15021 2011-09-24 Jim Meyering <meyering@redhat.com>
15022
15023 do not ignore write error for any output size
15024 The previous change was incomplete.
15025 While it makes emacs --batch detect the vast majority of stdout
15026 write failures, errors were still ignored whenever the output size is
15027 k * (BUFSIZ+1) - 4. E.g., on a system with BUFSIZ of 4096,
15028 $ emacs --batch --eval '(print (format "%4093d" 0))' > /dev/full \
15029 && echo FAIL: ignored write error
15030 FAIL: ignored write error
15031 $ emacs --batch --eval '(print (format "%20481d" 0))' > /dev/full \
15032 && echo FAIL: ignored write error
15033 FAIL: ignored write error
15034 * emacs.c (Fkill_emacs): Also test ferror. (Bug#9574)
15035
15036 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
15037
15038 * emacs.c (Fkill_emacs): In noninteractive mode exit
15039 non-successfully if a write error occurred on stdout. (Bug#9574)
15040
15041 2011-09-21 Eli Zaretskii <eliz@gnu.org>
15042
15043 * xdisp.c (pop_it): Allow it->object that is a cons cell to pass
15044 the xassert test.
15045
15046 * dispextern.h (struct it): Update the comment documenting what
15047 can it->OBJECT be.
15048
15049 2011-09-20 Eli Zaretskii <eliz@gnu.org>
15050
15051 * xdisp.c (set_cursor_from_row): If the row ends in a newline from
15052 a display string, extend search for cursor position to end of row.
15053 (find_row_edges): If the row ends in a newline from a display
15054 string, increment its MATRIX_ROW_END_CHARPOS by one. (Bug#9549)
15055 Handle the case of a display string with multiple newlines.
15056 (Fcurrent_bidi_paragraph_direction): Fix search for previous
15057 non-empty line. Fixes confusing cursor motion with arrow keys at
15058 the beginning of a line that starts with whitespace.
15059
15060 2011-09-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
15061
15062 * lread.c (Fread_from_string): Document what FINAL-STRING-INDEX is
15063 (bug#9493).
15064
15065 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
15066
15067 * xfns.c (Fx_create_frame): Handle the bitmapIcon resource as
15068 boolean (Bug#9154).
15069
15070 2011-09-18 Eli Zaretskii <eliz@gnu.org>
15071
15072 * xdisp.c (display_line): Record maximum and minimum buffer
15073 positions even if no glyphs were produced (e.g., by a zero-width
15074 stretch). Fixes bug#9530 on a TTY. Under word-wrap, don't record
15075 buffer positions that will be removed from the glyph row because
15076 they don't fit.
15077 (produce_stretch_glyph): Fix a bug in :align-to on a TTY when the
15078 column is beyond frame width: don't subtract 1 "pixel" when
15079 computing width of the stretch.
15080 (reseat_at_next_visible_line_start): Undo the change made on
15081 2011-09-17 that saved paragraph information and restored it after
15082 the call to `reseat'. (Bug#9545)
15083
15084 2011-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15085
15086 * xdisp.c (expose_window): Save original value of phys_cursor_on_p
15087 and turn window cursor on if cleared (Bug#9415).
15088
15089 2011-09-18 Andreas Schwab <schwab@linux-m68k.org>
15090
15091 * search.c (boyer_moore): Take unibyte characters from pattern
15092 literally. (Bug#9458)
15093
15094 2011-09-18 Eli Zaretskii <eliz@gnu.org>
15095
15096 * xdisp.c (reseat_at_next_visible_line_start): Fix last change.
15097
15098 2011-09-18 Paul Eggert <eggert@cs.ucla.edu>
15099
15100 Fix minor problem found by static checking.
15101 * xdisp.c (reseat_at_next_visible_line_start): Mark locals as
15102 initialized, to pacify gcc -Wuninitialized.
15103
15104 * fileio.c: Report proper errno when syscall falls.
15105 (Finsert_file_contents): Save and restore errno,
15106 so that report_file_error outputs the correct diagnostic.
15107 (Fwrite_region) [CLASH_DETECTION]: Likewise.
15108
15109 2011-09-18 Eli Zaretskii <eliz@gnu.org>
15110
15111 * .gdbinit (pgx): Fix references to fields of `struct glyph'.
15112
15113 2011-09-17 Eli Zaretskii <eliz@gnu.org>
15114
15115 * xdisp.c (produce_stretch_glyph): Another fix for changes made on
15116 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9530)
15117
15118 2011-09-17 Eli Zaretskii <eliz@gnu.org>
15119
15120 * xdisp.c (reseat_at_next_visible_line_start): Keep information
15121 about the current paragraph and restore it after the call to reseat.
15122
15123 * bidi.c (MAX_PARAGRAPH_SEARCH): New macro.
15124 (bidi_find_paragraph_start): Search back for paragraph beginning
15125 at most MAX_PARAGRAPH_SEARCH lines; if not found, return BEGV_BYTE.
15126 (bidi_move_to_visually_next): Only trigger paragraph-related
15127 computations when the last character is a newline or at EOB, not
15128 just any NEUTRAL_B. (Bug#9470)
15129
15130 * xdisp.c (set_cursor_from_row): Don't invoke special treatment of
15131 truncated lines if point is covered by a display string. (Bug#9524)
15132
15133 2011-09-16 Paul Eggert <eggert@cs.ucla.edu>
15134
15135 * xselect.c: Relax test for outgoing X longs (Bug#9498).
15136 (cons_to_x_long): New function.
15137 (lisp_data_to_selection_data): Use it. Correct the test for
15138 short-versus-long data; it was negated. Break out of vector
15139 loop, for efficiency, when a long datum is discovered.
15140
15141 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
15142
15143 * eval.c (Fquote): Document its non-consing behavior (bug#9482).
15144
15145 2011-09-16 Eli Zaretskii <eliz@gnu.org>
15146
15147 * image.c (tiff_handler): Work around a bug in MinGW GCC 3.x (see
15148 GCC PR/17406) by declaring this function with external scope.
15149
15150 2011-09-15 Paul Eggert <eggert@cs.ucla.edu>
15151
15152 * editfns.c (Fformat): Fix bug in text-property fix (Bug#9514).
15153 Don't mishandle (length (format "%%")) and (format "%4000s%%" "").
15154
15155 2011-09-15 Andreas Schwab <schwab@linux-m68k.org>
15156
15157 * editfns.c (Fformat): Correctly handle text properties on "%%".
15158
15159 2011-09-15 Eli Zaretskii <eliz@gnu.org>
15160
15161 * xterm.c (x_draw_composite_glyph_string_foreground):
15162 * w32term.c (x_draw_composite_glyph_string_foreground):
15163 * term.c (encode_terminal_code):
15164 * composite.c (composition_update_it, get_composition_id):
15165 * xdisp.c (get_next_display_element)
15166 (fill_composite_glyph_string): Add comments about special meaning
15167 of TAB characters in a composition.
15168
15169 2011-09-15 Paul Eggert <eggert@cs.ucla.edu>
15170
15171 * editfns.c (Fformat): Fix off-by-1 bug for "%%b" (Bug#9514).
15172 This occurs when processing a multibyte format.
15173 Problem reported by Wolfgang Jenker.
15174
15175 2011-09-15 Johan Bockgård <bojohan@gnu.org>
15176
15177 * xdisp.c (try_cursor_movement): Only check for exact match if
15178 cursor hpos found by set_cursor_from_row is valid. (Bug#9495)
15179
15180 2011-09-14 Paul Eggert <eggert@cs.ucla.edu>
15181
15182 Remove unused external symbols.
15183 * dispextern.h (calc_pixel_width_or_height): Remove decl.
15184 * xdisp.c (calc_pixel_width_or_height): Now static.
15185 * doprnt.c (exprintf) [! (HAVE_X_WINDOWS && USE_X_TOOLKIT)]: Remove.
15186 * indent.c (check_display_width):
15187 * w32term.c: Fix comment to match code.
15188 * xterm.c, xterm.h (x_catching_errors): Remove.
15189
15190 2011-09-14 Paul Eggert <eggert@cs.ucla.edu>
15191
15192 * xselect.c: Use signed conversions more consistently (Bug#9498).
15193 (selection_data_to_lisp_data): Assume incoming selection data are
15194 signed integers, not unsigned. This is to be consistent with
15195 outgoing selection data, which was modified to use signed integers
15196 in as part of the fix to Bug#9196 in response to Jan D.'s comment
15197 in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9196#32> that X11
15198 expects long, not unsigned long.
15199
15200 2011-09-14 Eli Zaretskii <eliz@gnu.org>
15201
15202 * xdisp.c (try_window_reusing_current_matrix): Fix incorrect
15203 computation of loop end. Reported by Johan Bockgård
15204 <bojohan@gnu.org>.
15205
15206 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
15207
15208 * frame.c (Fother_visible_frames_p): Function deleted.
15209
15210 2011-09-12 Eli Zaretskii <eliz@gnu.org>
15211
15212 * indent.c (compute_motion): Process display vector front to back
15213 rather than the other way around. (Bug#2496)
15214
15215 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
15216
15217 * fileio.c (Finsert_file_contents): Don't assume beg_offset is 0.
15218
15219 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
15220
15221 * minibuf.c (Fread_from_minibuffer): Doc fix.
15222
15223 2011-09-11 Eli Zaretskii <eliz@gnu.org>
15224
15225 * xdisp.c (produce_stretch_glyph): Fix a typo made in changes from
15226 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9475)
15227
15228 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
15229
15230 * fileio.c (Fvisited_file_modtime): Document `(-1 65535)' as a
15231 value for non-existent files.
15232
15233 2011-09-11 Eli Zaretskii <eliz@gnu.org>
15234
15235 * fileio.c (Finsert_file_contents): If the file cannot be opened,
15236 set its "size" to -1. This will set the modtime_size field of
15237 the corresponding buffer to -1, which is what
15238 verify-visited-file-modtime expects for files that do not exist.
15239 (Bug#9139)
15240
15241 2011-09-11 Paul Eggert <eggert@cs.ucla.edu>
15242
15243 * keymap.h (KEY_DESCRIPTION_SIZE, push_key_description): Move decls
15244 here ...
15245 * lisp.h: ... from here. push_key_description is no longer
15246 defined in keyboard.c, so its declaration should not be in
15247 lisp.h's "Defined in keyboard.c" section, and KEY_DESCRIPTION_SIZE
15248 logically belongs with push_key_description.
15249
15250 2011-09-10 Paul Eggert <eggert@cs.ucla.edu>
15251
15252 * buffer.h: Include <sys/types.h> instead of <time.h>.
15253 Otherwise, off_t wasn't defined on FreeBSD 9.0-BETA2 i386.
15254 Problem reported by Herbert J. Skuhra.
15255
15256 2011-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
15257
15258 * xml.c (parse_region): Make the parsing work for
15259 non-comment-starting XML files again (bug#9144).
15260
15261 2011-09-10 Andreas Schwab <schwab@linux-m68k.org>
15262
15263 * image.c (gif_load): Fix calculation of bottom and right corner.
15264 (Bug#9468)
15265
15266 2011-09-10 Eli Zaretskii <eliz@gnu.org>
15267
15268 * xdisp.c (MAX_DISP_SCAN): Decrease to 250. Prevents sluggish
15269 redisplay in small windows.
15270
15271 2011-09-09 Eli Zaretskii <eliz@gnu.org>
15272
15273 * frame.c (x_report_frame_params): Cast to avoid compiler warnings.
15274
15275 2011-09-08 Martin Rudalics <rudalics@gmx.at>
15276
15277 * window.c (Fset_window_prev_buffers, Fset_window_next_buffers):
15278 Operate on live windows only.
15279
15280 2011-09-08 Juanma Barranquero <lekktu@gmail.com>
15281
15282 * emacs.c (my_heap_start): #ifdef to avoid warnings when unused.
15283
15284 2011-09-07 Eli Zaretskii <eliz@gnu.org>
15285
15286 * xdisp.c (move_it_in_display_line_to): Call RESTORE_IT on ppos_it
15287 only under bidi iteration.
15288
15289 2011-09-07 Jan Djärv <jan.h.d@swipnet.se>
15290
15291 * gtkutil.c (xg_make_tool_item): Insert comment about eventbox.
15292
15293 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
15294
15295 isnan: Fix porting problem to Solaris 10 with bundled gcc.
15296 Without this fix, the command to link temacs failed due to an
15297 undefined symbol __builtin_isnan. This is because
15298 /usr/include/iso/math_c99.h #defines isnan(x) to
15299 __builtin_isnan(x), but the bundled gcc, which identifies itself
15300 as gcc 3.4.3 (csl-sol210-3_4-branch+sol_rpath), does not have
15301 a __builtin_isnan.
15302 * floatfns.c (isnan): #undef, and then #define to a clone of
15303 what's in data.c.
15304 (Fisnan): Always define, since it's always available now.
15305 (syms_of_floatfns): Always define isnan at the Lisp level.
15306
15307 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
15308
15309 * Makefile.in (gl-stamp): move-if-change now in build-aux (Bug#9169).
15310
15311 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
15312
15313 * fileio.c: Fix bugs with large file offsets (Bug#9428).
15314 The previous code assumed that file offsets (off_t values) fit in
15315 EMACS_INT variables, which is not true on typical 32-bit hosts.
15316 The code messed up by falsely reporting buffer overflow in cases
15317 such as (insert-file-contents "big" nil 1 2) into an empty buffer
15318 when "big" contains more than 2**29 bytes, even though this
15319 inserts just one byte and does not overflow the buffer.
15320 (Finsert_file_contents): Store file offsets as off_t
15321 values, not as EMACS_INT values. Check for overflow when
15322 converting between EMACS_INT and off_t. When checking for
15323 buffer overflow or for overlap, take the offsets into account.
15324 Don't use EMACS_INT for small values where int suffices.
15325 When checking for overlap, fix a typo: ZV was used where
15326 ZV_BYTE was intended.
15327 (Fwrite_region): Don't assume off_t fits into 'long'.
15328 * buffer.h (struct buffer.modtime_size): Now off_t, not EMACS_INT.
15329
15330 2011-09-05 Michael Albinus <michael.albinus@gmx.de>
15331
15332 * dbusbind.c (xd_signature_cat): Rename from signature_cat.
15333
15334 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
15335
15336 sprintf-related integer and memory overflow issues (Bug#9412).
15337
15338 * doprnt.c (doprnt): Support printing ptrdiff_t and intmax_t values.
15339 (esprintf, exprintf, evxprintf): New functions.
15340 * keyboard.c (command_loop_level): Now EMACS_INT, not int.
15341 (cmd_error): Kbd macro iterations count is now EMACS_INT, not int.
15342 (modify_event_symbol): Do not assume that the length of
15343 name_alist_or_stem is safe to alloca and fits in int.
15344 (Fexecute_extended_command): Likewise for function name and binding.
15345 (Frecursion_depth): Wrap around reliably on integer overflow.
15346 * keymap.c (push_key_description): First arg is now EMACS_INT, not int,
15347 since some callers pass EMACS_INT values.
15348 (Fsingle_key_description): Don't crash if symbol name contains more
15349 than MAX_ALLOCA bytes.
15350 * minibuf.c (minibuf_level): Now EMACS_INT, not int.
15351 (get_minibuffer): Arg is now EMACS_INT, not int.
15352 * lisp.h (get_minibuffer, push_key_description): Reflect API changes.
15353 (esprintf, exprintf, evxprintf): New decls.
15354 * window.h (command_loop_level, minibuf_level): Reflect API changes.
15355
15356 * dbusbind.c (signature_cat): New function.
15357 (xd_signature, Fdbus_register_signal):
15358 Do not overrun buffer; instead, report string overflow.
15359
15360 * dispnew.c (add_window_display_history): Don't overrun buffer.
15361 Truncate instead; this is OK since it's just a log.
15362
15363 * editfns.c (Fcurrent_time_zone): Don't overrun buffer
15364 even if the time zone offset is outlandishly large.
15365 Don't mishandle offset == INT_MIN.
15366
15367 * emacs.c (main) [NS_IMPL_COCOA]: Don't overrun buffer
15368 when creating daemon; the previous buffer-overflow check was incorrect.
15369
15370 * eval.c (verror): Simplify by rewriting in terms of evxprintf,
15371 which has the guts of the old verror function.
15372
15373 * filelock.c (lock_file_1, lock_file): Don't blindly alloca long name;
15374 use SAFE_ALLOCA instead. Use esprintf to avoid int-overflow issues.
15375
15376 * font.c: Include <float.h>, for DBL_MAX_10_EXP.
15377 (font_unparse_xlfd): Don't blindly alloca long strings.
15378 Don't assume XINT result fits in int, or that XFLOAT_DATA * 10
15379 fits in int, when using sprintf. Use single snprintf to count
15380 length of string rather than counting it via multiple sprintfs;
15381 that's simpler and more reliable.
15382 (font_unparse_fcname): Use it to avoid sprintf buffer overrun.
15383 (generate_otf_features) [0 && HAVE_LIBOTF]: Use esprintf, not
15384 sprintf, in case result does not fit in int.
15385
15386 * fontset.c (num_auto_fontsets): Now printmax_t, not int.
15387 (fontset_from_font): Print it.
15388
15389 * frame.c (tty_frame_count): Now printmax_t, not int.
15390 (make_terminal_frame, set_term_frame_name): Print it.
15391 (x_report_frame_params): In X, window IDs are unsigned long,
15392 not signed long, so print them as unsigned.
15393 (validate_x_resource_name): Check for implausibly long names,
15394 and don't assume name length fits in 'int'.
15395 (x_get_resource_string): Don't blindly alloca invocation name;
15396 use SAFE_ALLOCA. Use esprintf, not sprintf, in case result does
15397 not fit in int.
15398
15399 * gtkutil.c: Include <float.h>, for DBL_MAX_10_EXP.
15400 (xg_check_special_colors, xg_set_geometry):
15401 Make sprintf buffers a bit bigger, to avoid potential buffer overrun.
15402
15403 * lread.c (dir_warning): Don't blindly alloca buffer; use SAFE_ALLOCA.
15404 Use esprintf, not sprintf, in case result does not fit in int.
15405
15406 * macros.c (executing_kbd_macro_iterations): Now EMACS_INT, not int.
15407 (Fend_kbd_macro): Don't mishandle MOST_NEGATIVE_FIXNUM by treating
15408 it as a large positive number.
15409 (Fexecute_kbd_macro): Don't assume repeat count fits in int.
15410 * macros.h (executing_kbd_macro_iterations): Now EMACS_INT, not int.
15411
15412 * nsterm.m ((NSSize)windowWillResize): Use esprintf, not sprintf,
15413 in case result does not fit in int.
15414
15415 * print.c (float_to_string): Detect width overflow more reliably.
15416 (print_object): Make sprintf buffer a bit bigger, to avoid potential
15417 buffer overrun. Don't assume list length fits in 'int'. Treat
15418 print length of 0 as 0, not as infinity; to be consistent with other
15419 uses of print length in this function. Don't overflow print length
15420 index. Don't assume hash table size fits in 'long', or that
15421 vectorlike size fits in 'unsigned long'.
15422
15423 * process.c (make_process): Use printmax_t, not int, to format
15424 process-name gensyms.
15425
15426 * sysdep.c (snprintf) [! HAVE_SNPRINTF]: New function.
15427
15428 * term.c (produce_glyphless_glyph): Make sprintf buffer a bit bigger
15429 to avoid potential buffer overrun.
15430
15431 * xfaces.c (x_update_menu_appearance): Don't overrun buffer
15432 if X resource line is longer than 512 bytes.
15433
15434 * xfns.c (x_window): Make sprintf buffer a bit bigger
15435 to avoid potential buffer overrun.
15436
15437 * xterm.c (x_io_error_quitter): Don't overrun sprintf buffer.
15438
15439 * xterm.h (x_check_errors): Add ATTRIBUTE_FORMAT_PRINTF.
15440
15441 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
15442
15443 Integer overflow fixes for scrolling, etc.
15444 Without these, Emacs silently mishandles large integers sometimes.
15445 For example, "C-u 4294967297 M-x recenter" was treated as if
15446 it were "C-u 1 M-x recenter" on a typical 64-bit host.
15447
15448 * xdisp.c (try_window_id): Check Emacs fixnum range before
15449 converting to 'int'.
15450
15451 * window.c (window_scroll_line_based, Frecenter):
15452 Check that an Emacs fixnum is in range before assigning it to 'int'.
15453 (Frecenter, Fmove_to_window_line): Use EMACS_INT, not int, for
15454 values converted from Emacs fixnums.
15455 (Frecenter): Don't wrap around a line count if it is out of 'int'
15456 range; instead, treat it as an extreme value.
15457 (Fset_window_configuration, compare_window_configurations):
15458 Use ptrdiff_t, not int, for index that might exceed 2 GiB.
15459
15460 * search.c (Freplace_match): Use ptrdiff_t, not int, for indexes
15461 that can exceed INT_MAX. Check that EMACS_INT value is in range
15462 before assigning it to the (possibly-narrower) index.
15463 (match_limit): Don't assume that a fixnum can fit in 'int'.
15464
15465 * print.c (print_object): Use ptrdiff_t, not int, for index that can
15466 exceed INT_MAX.
15467
15468 * indent.c (position_indentation): Now takes ptrdiff_t, not int.
15469 (Fvertical_motion): Don't wrap around LINES values that don't fit
15470 in 'int'. Instead, treat them as extreme values. This is good
15471 enough for windows, which can't have more than INT_MAX lines anyway.
15472
15473 2011-09-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
15474
15475 * Require libxml/parser.h to avoid compilation warning.
15476
15477 * emacs.c (shut_down_emacs): Call xmlCleanupParser on shutdown.
15478
15479 * xml.c (parse_region): Don't call xmlCleanupParser after parsing,
15480 since this reportedly can destroy thread storage.
15481
15482 2011-08-30 Chong Yidong <cyd@stupidchicken.com>
15483
15484 * syntax.c (find_defun_start): Update all cache variables if
15485 exiting early (Bug#9401).
15486
15487 2011-08-30 Eli Zaretskii <eliz@gnu.org>
15488
15489 * image.c (x_bitmap_pixmap): Cast to int to avoid compiler warnings.
15490
15491 * xdisp.c (produce_stretch_glyph): No longer static, compiled also
15492 when HAVE_WINDOW_SYSTEM is not defined. Support both GUI and TTY
15493 frames. Call tty_append_glyph in the TTY case. (Bug#9402)
15494
15495 * term.c (tty_append_glyph): New function.
15496 (produce_stretch_glyph): Static function and its prototype deleted.
15497
15498 * dispextern.h (produce_stretch_glyph, tty_append_glyph):
15499 Add prototypes.
15500
15501 2011-08-29 Paul Eggert <eggert@cs.ucla.edu>
15502
15503 * image.c (parse_image_spec): Check for nonnegative, not for positive,
15504 when checking :margin (Bug#9390).
15505 (IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR):
15506 Rename from IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR,
15507 so that the name doesn't mislead. All uses changed.
15508
15509 2011-08-28 Johan Bockgård <bojohan@gnu.org>
15510
15511 * term.c (init_tty) [HAVE_GPM]: Move mouse settings after
15512 set_tty_hooks.
15513
15514 2011-08-27 Eli Zaretskii <eliz@gnu.org>
15515
15516 * xdisp.c (move_it_to): Don't bail out early when reaching
15517 position beyond to_charpos, if we are scanning backwards.
15518 (move_it_vertically_backward): When DY == 0, make sure we get to
15519 the first character in the line after the newline.
15520
15521 2011-08-27 Paul Eggert <eggert@cs.ucla.edu>
15522
15523 * ccl.c: Improve and simplify overflow checking (Bug#9196).
15524 (ccl_driver): Do not generate an out-of-range pointer.
15525 (Fccl_execute_on_string): Remove unnecessary check for
15526 integer overflow, noted by Stefan Monnier in
15527 <http://lists.gnu.org/archive/html/emacs-devel/2011-08/msg00979.html>.
15528 Remove a FIXME that didn't need fixing.
15529 Simplify the newly-introduced buffer reallocation code.
15530
15531 2011-08-27 Juanma Barranquero <lekktu@gmail.com>
15532
15533 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on lib/verify.h.
15534
15535 2011-08-26 Paul Eggert <eggert@cs.ucla.edu>
15536
15537 Integer and memory overflow issues (Bug#9196).
15538
15539 * doc.c (get_doc_string): Rework so that
15540 get_doc_string_buffer_size is the actual buffer size, rather than
15541 being 1 less than the actual buffer size; this makes xpalloc more
15542 convenient.
15543
15544 * image.c (x_allocate_bitmap_record, cache_image):
15545 * xselect.c (Fx_register_dnd_atom):
15546 Simplify previous changes by using xpalloc.
15547
15548 * buffer.c (overlay_str_len): Now ptrdiff_t, not EMACS_INT,
15549 since either will do and ptrdiff_t is convenient with xpalloc.
15550
15551 * charset.c (charset_table_size)
15552 (struct charset_sort_data.priority): Now ptrdiff_t.
15553 (charset_compare): Don't overflow if priorities differ greatly.
15554 (Fsort_charsets): Don't assume list length fits in int.
15555 Check for size-calculation overflow when allocating sort data.
15556 (syms_of_charset): Allocate an initial charset table that is
15557 just under 64 KiB, to avoid problems with glibc malloc and mmap.
15558
15559 * cmds.c (internal_self_insert): Check for size-calculation overflow.
15560
15561 * composite.h (struct composition.glyph_len): Now int, not unsigned.
15562 The actual value is always <= INT_MAX, and leaving it unsigned made
15563 overflow checking harder.
15564
15565 * dispextern.h (struct glyph_matrix.rows_allocated)
15566 (struct face_cache.size): Now ptrdiff_t, for convenience in use
15567 with xpalloc. The values are still always <= INT_MAX.
15568
15569 * indent.c (compute_motion): Adjust to region_cache_forward sig change.
15570
15571 * lisp.h (xnmalloc, xnrealloc, xpalloc): New decls.
15572 (SAFE_NALLOCA): New macro.
15573
15574 * region-cache.c (struct boundary.pos, find_cache_boundary)
15575 (move_cache_gap, insert_cache_boundary, delete_cache_boundaries)
15576 (set_cache_region, invalidate_region_cache)
15577 (revalidate_region_cache, know_region_cache, region_cache_forward)
15578 (region_cache_backward, pp_cache):
15579 Use ptrdiff_t, not EMACS_INT, since either will do. This is needed
15580 so that ptrdiff_t * can be passed to xpalloc.
15581 (struct region_cache): Similarly, for gap_start, gap_len, cache_len,
15582 beg_unchanged, end_unchanged, buffer_beg, buffer_end members.
15583 (pp_cache): Don't assume cache_len fits in int.
15584 * region-cache.h: Adjust extern decls to match.
15585
15586 * search.c (scan_buffer, Freplace_match): Use ptrdiff_t, not
15587 EMACS_INT, since either will do, for xpalloc.
15588
15589 * alloc.c: Include verify.h, and check that int fits in ptrdiff_t.
15590 (xnmalloc, xnrealloc, xpalloc): New functions.
15591
15592 * bidi.c (bidi_shelve_header_size): New constant.
15593 (bidi_cache_ensure_space, bidi_shelve_cache): Use it.
15594 (bidi_cache_ensure_space): Avoid integer overflow when allocating.
15595
15596 * bidi.c (bidi_cache_shrink):
15597 * buffer.c (overlays_at, overlays_in, record_overlay_string)
15598 (overlay_strings):
15599 Don't update size of array until after memory allocation succeeds,
15600 because xmalloc/xrealloc may not return.
15601 (struct sortstrlist.bytes): Now ptrdiff_t, as EMACS_INT doesn't help
15602 now that we have proper integer overflow checking.
15603 (record_overlay_string, overlay_strings): Catch overflows when
15604 calculating size of overlay_str_buf.
15605
15606 * callproc.c (Fcall_process): Check for size overflow when
15607 calculating size of args2.
15608 (child_setup): Avoid overflow by using size_t rather than ptrdiff_t.
15609 Normally we prefer signed values, but sticking with ptrdiff_t would
15610 require adding more-complicated checks.
15611
15612 * ccl.c (Fccl_execute_on_string): Check for memory overflow.
15613 Use ptrdiff_t rather than EMACS_INT where ptrdiff_t will do.
15614 Redo buffer-overflow calculations to avoid integer overflow.
15615 Add a FIXME comment where memory seems to be over-allocated.
15616
15617 * character.c (Fstring): Check for size-calculation overflow.
15618
15619 * coding.c (produce_chars): Redo buffer-overflow calculations to avoid
15620 unnecessary integer overflow. Check for size overflow.
15621 (encode_coding_object): Don't update size until xmalloc succeeds.
15622
15623 * composite.c (get_composition_id): Check for overflow in glyph
15624 length calculations.
15625
15626 Integer and memory overflow fixes for display code.
15627 * dispextern.h (struct glyph_pool.nglyphs): Now ptrdiff_t, not int.
15628 * dispnew.c (adjust_glyph_matrix, realloc_glyph_pool)
15629 (scrolling_window): Check for overflow in size calculations.
15630 (line_draw_cost, realloc_glyph_pool, add_row_entry):
15631 Don't assume glyph table len fits in int.
15632 (struct row_entry.bucket, row_entry_pool_size, row_entry_idx)
15633 (row_table_size): Now ptrdiff_t, not int.
15634 (scrolling_window): Avoid overflow in size calculations.
15635 Don't update size until allocation succeeds.
15636 * fns.c (concat): Check for overflow in size calculations.
15637 (next_almost_prime): Verify NEXT_ALMOST_PRIME_LIMIT.
15638 * lisp.h (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
15639 (NEXT_ALMOST_PRIME_LIMIT): New constant.
15640
15641 * doc.c (get_doc_string_buffer_size): Now ptrdiff_t, not int.
15642 (get_doc_string): Check for size calculation overflow.
15643 Don't update size until allocation succeeds.
15644 (get_doc_string, Fsubstitute_command_keys): Use ptrdiff_t, not
15645 EMACS_INT, where ptrdiff_t will do.
15646 (Fsubstitute_command_keys): Check for string overflow.
15647
15648 * editfns.c (set_time_zone_rule): Don't assume environment length
15649 fits in int.
15650 (message_length): Now ptrdiff_t, not int.
15651 (Fmessage_box): Don't update size until allocation succeeds.
15652 Don't assume message length fits in int.
15653 (Fformat): Use ptrdiff_t, not EMACS_INT, where ptrdiff_t will do.
15654
15655 * emacs.c (main): Do not reallocate argv, since there is a null at
15656 the end that can be overwritten, and this way there's no need to
15657 worry about size-calculation overflow.
15658 (sort_args): Check for size-calculation overflow.
15659
15660 * eval.c (init_eval_once, grow_specpdl): Don't update size until
15661 alloc succeeds.
15662 (call_debugger, grow_specpdl): Redo calculations to avoid overflow.
15663
15664 * frame.c (set_menu_bar_lines, x_set_frame_parameters)
15665 (x_set_scroll_bar_width, x_figure_window_size):
15666 Check for integer overflow.
15667 (x_set_alpha): Do not assume XINT fits in int.
15668
15669 * frame.h (struct frame): Use int, not EMACS_INT, where int works.
15670 This is for the members text_lines, text_cols, total_lines, total_cols,
15671 where the system imposes an 'int' limit.
15672
15673 * fringe.c (Fdefine_fringe_bitmap):
15674 Don't update size until alloc works.
15675
15676 * ftfont.c (ftfont_get_open_type_spec, setup_otf_gstring)
15677 (ftfont_shape_by_flt): Check for integer overflow in size calculations.
15678
15679 * gtkutil.c (get_utf8_string, xg_store_widget_in_map):
15680 Check for size-calculation overflow.
15681 (get_utf8_string): Use ptrdiff_t, not size_t, where either will
15682 do, as we prefer signed integers.
15683 (id_to_widget.max_size, id_to_widget.used)
15684 (xg_store_widget_in_map, xg_remove_widget_from_map)
15685 (xg_get_widget_from_map, xg_get_scroll_id_for_window)
15686 (xg_remove_scroll_bar, xg_update_scrollbar_pos):
15687 Use and return ptrdiff_t, not int.
15688 (xg_gtk_scroll_destroy): Don't assume ptrdiff_t fits in int.
15689 * gtkutil.h: Change prototypes to match the above.
15690
15691 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): Remove; these
15692 are duplicate now that they've been promoted to lisp.h.
15693 (x_allocate_bitmap_record, x_alloc_image_color)
15694 (make_image_cache, cache_image, xpm_load):
15695 Don't update size until alloc is done.
15696 (xpm_load, lookup_rgb_color, lookup_pixel_color, x_to_xcolors)
15697 (x_detect_edges):
15698 Check for size calculation overflow.
15699 (ct_colors_allocated_max): New constant.
15700 (x_to_xcolors, x_detect_edges): Reorder multiplicands to avoid
15701 overflow.
15702
15703 * keyboard.c (read_char, menu_bar_items, tool_bar_items)
15704 (read_char_x_menu_prompt, read_char_minibuf_menu_width)
15705 (read_char_minibuf_menu_prompt, follow_key, read_key_sequence):
15706 Use ptrdiff_t, not int, to count maps.
15707 (read_char_minibuf_menu_prompt): Check for overflow in size
15708 calculations. Don't update size until allocation succeeds.
15709 Redo calculations to avoid overflow.
15710 * keyboard.h: Change prototypes to match the above.
15711
15712 * keymap.c (cmm_size, current_minor_maps): Use ptrdiff_t, not int,
15713 to count maps.
15714 (current_minor_maps): Check for size calculation overflow.
15715 * keymap.h: Change prototypes to match the above.
15716
15717 * lread.c (read1, init_obarray): Don't update size until alloc done.
15718
15719 * macros.c (Fstart_kbd_macro): Don't update size until alloc done.
15720 (store_kbd_macro_char): Reorder multiplicands to avoid overflow.
15721
15722 * nsterm.h (struct ns_color_table.size, struct ns_color_table.avail):
15723 Now ptrdiff_t, not int.
15724 * nsterm.m (ns_index_color): Use ptrdiff_t, not int, for table indexes.
15725 (ns_draw_fringe_bitmap): Rewrite to avoid overflow.
15726
15727 * process.c (Fnetwork_interface_list): Check for overflow
15728 in size calculation.
15729
15730 * region-cache.c (move_cache_gap): Check for size calculation overflow.
15731
15732 * scroll.c (do_line_insertion_deletion_costs): Check for size calc
15733 overflow. Don't bother calling xmalloc when xrealloc will do.
15734
15735 * search.c (Freplace_match): Check for size calculation overflow.
15736 (Fset_match_data): Don't assume list lengths fit in 'int'.
15737
15738 * sysdep.c (system_process_attributes): Use ptrdiff_t, not int,
15739 for command line length. Do not attempt to address one before the
15740 beginning of an array, as that's not portable.
15741
15742 * term.c (max_frame_lines): Remove; unused.
15743 (encode_terminal_src_size, encode_terminal_dst_size): Now ptrdiff_t,
15744 not int.
15745 (encode_terminal_code, calculate_costs): Check for size
15746 calculation overflow.
15747 (encode_terminal_code): Use ptrdiff_t, not int, to record glyph
15748 table lengths and related sizes. Don't update size until alloc
15749 done. Redo calculations to avoid overflow.
15750 (calculate_costs): Don't bother calling xmalloc when xrealloc will do.
15751
15752 * termcap.c (tgetent): Use ptrdiff_t, not int, to record results of
15753 subtracting pointers.
15754 (gobble_line): Check for overflow more carefully. Don't update size
15755 until alloc done.
15756
15757 * tparam.c (tparam1): Use ptrdiff_t, not int, for sizes.
15758 Don't update size until alloc done.
15759 Redo size calculations to avoid overflow.
15760 Check for size calculation overflow.
15761 (main) [DEBUG]: Fix typo in invoking tparam1.
15762
15763 * xdisp.c (store_mode_line_noprop_char, x_consider_frame_title):
15764 Use ptrdiff_t, not int, for sizes.
15765 (store_mode_line_noprop_char): Don't update size until alloc done.
15766
15767 * xfaces.c (lface_id_to_name_size, Finternal_make_lisp_face):
15768 Use ptrdiff_t, not int, for sizes.
15769 (Finternal_make_lisp_face, cache_face):
15770 Check for size calculation overflow.
15771 (cache_face): Treat size calculation overflows as if they were
15772 memory exhaustion (the usual treatment), rather than aborting.
15773
15774 * xfns.c (x_encode_text, x_set_name_internal)
15775 (Fx_change_window_property): Use ptrdiff_t, not int, to count
15776 sizes, since they can exceed INT_MAX in size. Check for size
15777 calculation overflow.
15778
15779 * xgselect.c (gfds_size): Now ptrdiff_t, for convenience with xpalloc.
15780 (xg_select): Check for size calculation overflow.
15781 Don't update size until alloc done.
15782
15783 * xrdb.c (get_environ_db): Don't assume path length fits in int,
15784 as sprintf is limited to int lengths.
15785
15786 * xselect.c (X_LONG_SIZE, X_SHRT_MAX, X_SHRT_MIN, X_LONG_MAX)
15787 (X_LONG_MIN): New macros.
15788 Use them to make the following changes clearer.
15789 (MAX_SELECTION_QUANTUM): Make the other bounds on this value clearer.
15790 This change doesn't affect the value now, but it may help remind
15791 future maintainers not to raise the value too much later.
15792 (SELECTION_QUANTUM): Remove, replacing with ...
15793 (selection_quantum): ... new function, which avoids overflow.
15794 All uses changed.
15795 (struct selection_data.size): Now ptrdiff_t, not int, to avoid
15796 assumption that selection length fits in 'int'.
15797 (x_reply_selection_request, x_handle_selection_request)
15798 (x_get_window_property, receive_incremental_selection)
15799 (x_get_window_property_as_lisp_data, selection_data_to_lisp_data)
15800 (lisp_data_to_selection_data, clean_local_selection_data):
15801 Use ptrdiff_t, not int, to record length of selection.
15802 (x_reply_selection_request, x_get_window_property)
15803 (receive_incremental_selection, x_property_data_to_lisp):
15804 Redo calculations to avoid overflow.
15805 (x_reply_selection_request): When sending hint, ceiling it at
15806 X_LONG_MAX rather than relying on wraparound overflow to send
15807 something.
15808 (x_get_window_property, receive_incremental_selection)
15809 (lisp_data_to_selection_data, x_property_data_to_lisp):
15810 Check for size-calculation overflow.
15811 (x_get_window_property, receive_incremental_selection)
15812 (lisp_data_to_selection_data, Fx_register_dnd_atom):
15813 Don't store size until memory allocation succeeds.
15814 (x_get_window_property): Plug memory leak on memory exhaustion.
15815 Don't double-block input; malloc is safe here. Don't assume 2**34
15816 - 4 fits in unsigned long. Add an xassert to check
15817 XGetWindowProperty overflow. Be more careful about overflow
15818 calculations, and distinguish size from memory overflow better.
15819 (receive_incremental_selection): When tracing, don't assume
15820 unsigned int is less than INT_MAX.
15821 (x_selection_data_to_lisp_data): Remove unnecessary (and in theory
15822 harmful) conversions of unsigned short to int.
15823 (lisp_data_to_selection_data): Don't assume that integers
15824 in the range -65535 through -1 fit in an X unsigned short.
15825 Don't assume that ULONG_MAX == X_ULONG_MAX. Don't store into
15826 result parameters unless successful. Rely on cons_to_unsigned
15827 to report problems with elements; the old code wasn't right anyway.
15828 (x_check_property_data): Check for int overflow; we cannot use
15829 a wider type due to X limits.
15830 (x_handle_dnd_message): Use unsigned int, to avoid int overflow.
15831
15832 * xsmfns.c (smc_save_yourself_CB): Check for size calc overflow.
15833
15834 * xterm.c (x_color_cells, x_send_scrollbar_event, handle_one_xevent)
15835 (x_term_init): Check for size calculation overflow.
15836 (x_color_cells): Don't store size until memory allocation succeeds.
15837 (handle_one_xevent): Use ptrdiff_t, not int, for byte counts.
15838 Don't assume alloca size is less than MAX_ALLOCA.
15839 (x_term_init): Don't assume length fits in int (sprintf is limited
15840 to int size).
15841
15842 Use ptrdiff_t for composition IDs.
15843 * character.c (lisp_string_width):
15844 * composite.c (composition_table_size, n_compositions)
15845 (get_composition_id, composition_gstring_from_id):
15846 * dispextern.h (struct glyph_string.cmp_id, struct composition_it.id):
15847 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING):
15848 * window.c (Frecenter):
15849 Use ptrdiff_t, not int, for composition IDs.
15850 * composite.c (get_composition_id): Check for integer overflow.
15851 * composite.h: Adjust prototypes to match the above changes.
15852
15853 Use ptrdiff_t for hash table indexes.
15854 * category.c (hash_get_category_set):
15855 * ccl.c (ccl_driver):
15856 * charset.h (struct charset.hash_index, CHECK_CHARSET_GET_ID):
15857 * coding.c (coding_system_charset_list, detect_coding_system):
15858 * coding.h (struct coding_system.id):
15859 * composite.c (get_composition_id, gstring_lookup_cache):
15860 * fns.c (hash_lookup, hash_put, Fgethash, Fputhash):
15861 * image.c (xpm_get_color_table_h):
15862 * lisp.h (hash_lookup, hash_put):
15863 * minibuf.c (Ftest_completion):
15864 Use ptrdiff_t for hash table indexes, not int (which is too
15865 narrow, on 64-bit hosts) or EMACS_INT (which is too wide, on
15866 32-bit --with-wide-int hosts).
15867
15868 * charset.c (Fdefine_charset_internal): Check for integer overflow.
15869 Add a FIXME comment about memory leaks.
15870 (syms_of_charset): Don't assume xmalloc returns.
15871
15872 Don't assume that stated character widths fit in int.
15873 * character.c (Fchar_width, c_string_width, lisp_string_width):
15874 * character.h (CHAR_WIDTH):
15875 * indent.c (MULTIBYTE_BYTES_WIDTH):
15876 Use sanitize_char_width to avoid undefined and/or bad behavior
15877 with outlandish widths.
15878 * character.h (sanitize_tab_width): Rename from sanitize_width,
15879 now that we have two such functions. All uses changed.
15880 (sanitize_char_width): New inline function.
15881
15882 Don't assume that tab-width fits in int.
15883 * character.h (sanitize_width): New inline function.
15884 (SANE_TAB_WIDTH): New macro.
15885 (ASCII_CHAR_WIDTH): Use it.
15886 * indent.c (sane_tab_width): Remove. All uses replaced by
15887 SANE_TAB_WIDTH (current_buffer).
15888 * xdisp.c (init_iterator): Use SANE_TAB_WIDTH.
15889
15890 * fileio.c: Integer overflow issues with file modes.
15891 (Fset_file_modes, auto_save_1): Don't assume EMACS_INT fits in int.
15892
15893 * charset.c (read_hex): New arg OVERFLOW. All uses changed.
15894 Remove unreachable code.
15895 (read_hex, load_charset_map_from_file): Check for integer overflow.
15896
15897 * xterm.c: Don't go over XClientMessageEvent limit.
15898 (scroll_bar_windows_size): Now ptrdiff_t, as we prefer signed.
15899 (x_send_scroll_bar_event): Likewise. Check that the size does not
15900 exceed limits imposed by XClientMessageEvent, as well as the usual
15901 ptrdiff_t and size_t limits.
15902
15903 * keyboard.c: Overflow, signedness and related fixes.
15904 (make_lispy_movement): Use same integer type in forward decl
15905 that is used in the definition.
15906 (read_key_sequence, keyremap_step):
15907 Change bufsize argument back to int, undoing my 2011-03-30 change.
15908 We prefer signed types, and int is wide enough here.
15909 (parse_tool_bar_item): Don't assume tool_bar_max_label_size is less
15910 than TYPE_MAXIMUM (EMACS_INT) / 2. Don't let the label size grow
15911 larger than STRING_BYTES_BOUND. Use ptrdiff_t for Emacs string
15912 length, not size_t. Use ptrdiff_t for index, not int.
15913 (keyremap_step, read_key_sequence): Redo bufsize check to avoid
15914 possibility of integer overflow.
15915
15916 Overflow, signedness and related fixes for images.
15917
15918 * dispextern.h (struct it.stack[0].u.image.image_id)
15919 (struct_it.image_id, struct image.id, struct image_cache.size)
15920 (struct image_cache.used, struct image_cache.ref_count):
15921 * gtkutil.c (update_frame_tool_bar):
15922 * image.c (x_reference_bitmap, Fimage_size, Fimage_mask_p)
15923 (Fimage_metadata, free_image_cache, clear_image_cache, lookup_image)
15924 (cache_image, mark_image_cache, x_kill_gs_process, Flookup_image):
15925 * nsmenu.m (update_frame_tool_bar):
15926 * xdisp.c (calc_pixel_width_or_height):
15927 * xfns.c (image_cache_refcount):
15928 Image IDs are now ptrdiff_t, not int, to avoid arbitrary limits
15929 on typical 64-bit hosts.
15930
15931 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
15932 (x_bitmap_pixmap, x_create_x_image_and_pixmap):
15933 Omit unnecessary casts to int.
15934 (parse_image_spec): Check that integers fall into 'int' range
15935 when the callers expect that.
15936 (image_ascent): Redo ascent calculation to avoid int overflow.
15937 (clear_image_cache): Avoid overflow when sqrt (INT_MAX) < nimages.
15938 (lookup_image): Remove unnecessary tests.
15939 (xbm_image_p): Locals are now of int, not EMACS_INT,
15940 since parse_image_check makes sure they fit into int.
15941 (png_load, gif_load, svg_load_image):
15942 Prefer int to unsigned where either will do.
15943 (tiff_handler): New function, combining the cores of the
15944 old tiff_error_handler and tiff_warning_handler.
15945 This function is rewritten to use vsnprintf and thereby avoid
15946 stack buffer overflows. It uses only the features of vsnprintf
15947 that are common to both POSIX and native Microsoft.
15948 (tiff_error_handler, tiff_warning_handler): Use it.
15949 (tiff_load, gif_load, imagemagick_load_image):
15950 Don't assume :index value fits in 'int'.
15951 (gif_load): Omit unnecessary cast to double, and avoid double-rounding.
15952 (imagemagick_load_image): Check that crop parameters fit into
15953 the integer types that MagickCropImage accepts. Don't assume
15954 Vimagemagick_render_type has a nonnegative value. Don't assume
15955 size_t fits in 'long'.
15956 (gs_load): Use printmax_t to print the widest integers possible.
15957 Check for integer overflow when computing image height and width.
15958
15959 2011-08-26 Eli Zaretskii <eliz@gnu.org>
15960
15961 * xdisp.c (redisplay_window): Don't force window start if point
15962 will be invisible in the resulting window. (Bug#9324)
15963
15964 2011-08-25 Eli Zaretskii <eliz@gnu.org>
15965
15966 * xdisp.c (compute_display_string_pos): Return 2 in DISP_PROP when
15967 the display spec is of the form `(space ...)'.
15968 (handle_display_spec): Return the value returned by
15969 handle_single_display_spec, not just 1 or zero.
15970 (handle_single_display_spec): If the display spec is of the form
15971 `(space ...)', and specifies display in the text area, return 2
15972 rather than 1.
15973 (try_cursor_movement): Check for the need to scroll more
15974 accurately, and prefer exact match for point under bidi.
15975 Don't advance `row' beyond the last row of the window.
15976
15977 * dispextern.h (struct bidi_it): Rename the disp_prop_p member
15978 into disp_prop; all users changed.
15979
15980 * bidi.c (bidi_fetch_char): If compute_display_string_pos returns
15981 DISP_PROP = 2, substitute the u+2029 PARAGRAPH SEPARATOR character
15982 for the text covered by the display property.
15983
15984 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
15985
15986 * buffer.c (Fbury_buffer_internal): Rename from Funrecord_buffer.
15987 Change return value to nil.
15988 (Frecord_buffer): Delete unused function.
15989
15990 2011-08-24 Eli Zaretskii <eliz@gnu.org>
15991
15992 * xdisp.c (Fcurrent_bidi_paragraph_direction): For unibyte
15993 buffers, return left-to-right.
15994 (set_cursor_from_row): Consider candidate row a win if its glyph
15995 represents a newline and point is on that newline. Fixes cursor
15996 positioning on the newline at EOL of R2L text within L2R
15997 paragraph, and vice versa.
15998 (try_cursor_movement): Check continued rows, in addition to
15999 continuation rows. Fixes unwarranted scroll when point enters a
16000 continued line of R2L text within an L2R paragraph, or vice versa.
16001 (cursor_row_p): Consider the case of point being equal to
16002 MATRIX_ROW_END_CHARPOS. Prevents cursor being stuck when moving
16003 from the end of a short line to the beginning of a continued line
16004 of R2L text within L2R paragraph.
16005 (RECORD_MAX_MIN_POS): For max_pos, use IT_CHARPOS even for
16006 composed characters.
16007
16008 * bidi.c (bidi_check_type): Use xassert.
16009 (bidi_cache_iterator_state): Update the disp_pos and disp_prop_p
16010 members.
16011
16012 2011-08-23 Eli Zaretskii <eliz@gnu.org>
16013
16014 * bidi.c (bidi_get_type): Abort if we get zero as the bidi type of
16015 a character.
16016
16017 2011-08-23 Chong Yidong <cyd@stupidchicken.com>
16018
16019 * nsfont.m (ns_otf_to_script): Fix typo.
16020
16021 2011-08-22 Kenichi Handa <handa@m17n.org>
16022
16023 * chartab.c (Fset_char_table_extra_slot): Do not inhibit setting a
16024 extra slot even if the purpose is char-code-property-table.
16025
16026 2011-08-23 Eli Zaretskii <eliz@gnu.org>
16027
16028 * xdisp.c (redisplay_window): When computing centering_position,
16029 account for the height of the header line. (Bug#8874)
16030
16031 * dispnew.c (buffer_posn_from_coords): Use buf_charpos_to_bytepos
16032 instead of CHAR_TO_BYTE. Fixes a crash when a completion
16033 candidate is selected by the mouse, and that candidate has a
16034 composed character under the mouse.
16035
16036 * xdisp.c (x_produce_glyphs): Set it->nglyphs to 1. Fixes pixel
16037 coordinates reported by pos-visible-in-window-p for a composed
16038 character in column zero.
16039
16040 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
16041
16042 * cmds.c (Fself_insert_command): Mention post-self-insert-hook.
16043
16044 2011-08-22 Eli Zaretskii <eliz@gnu.org>
16045
16046 * xdisp.c (BUFFER_POS_REACHED_P): If this is a composition,
16047 consider it a hit if to_charpos is anywhere in the range of the
16048 composed buffer positions.
16049
16050 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
16051
16052 * image.c (gif_load): Don't assume that each subimage has the same
16053 dimensions as the base image. Handle disposal method that is
16054 "undefined" by the gif spec (Bug#9335).
16055
16056 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
16057
16058 * eval.c (Fsignal): Handle `debug' symbol in error handler (Bug#9329).
16059 (Fcondition_case): Document `debug' symbol in error handler.
16060
16061 2011-08-19 Eli Zaretskii <eliz@gnu.org>
16062
16063 * xfaces.c (face_at_buffer_position): Avoid repeated evaluation of
16064 face ID by FACE_FROM_ID, and avoid a crash when mouse is moved
16065 from an Org mode buffer to a Speedbar frame.
16066
16067 * xdisp.c (RECORD_MAX_MIN_POS): If the display element comes from
16068 a composition, take its buffer position from IT->cmp_it.charpos.
16069 Fixes cursor positioning at the beginning of a line that begins
16070 with a composed character.
16071
16072 2011-08-18 Eli Zaretskii <eliz@gnu.org>
16073
16074 * bidi.c (bidi_get_type): If bidi_type_table reports zero as the
16075 character bidirectional type, use STRONG_L instead. Fixes crashes
16076 in a buffer produced by `describe-categories'.
16077
16078 * dispextern.h (struct bidi_it): Move disp_pos and disp_prop_p
16079 members before the level stack, so they would be saved and
16080 restored when copying iterator state. Fixes incorrect reordering
16081 around TABs covered by display properties.
16082
16083 2011-08-18 Andreas Schwab <schwab@linux-m68k.org>
16084
16085 * process.c (Fnetwork_interface_list): Correctly determine buffer size.
16086
16087 2011-08-17 Chong Yidong <cyd@stupidchicken.com>
16088
16089 * eval.c (internal_condition_case, internal_condition_case_1)
16090 (internal_condition_case_2, internal_condition_case_n):
16091 Remove unnecessary aborts (Bug#9081).
16092
16093 2011-08-17 Eli Zaretskii <eliz@gnu.org>
16094
16095 * lread.c (Fload) [DOS_NT]: If `openp' returns -2, but the file
16096 has no `load' handler, try opening the file locally. (Bug#9311)
16097
16098 2011-08-16 Ken Brown <kbrown@cornell.edu>
16099
16100 * gmalloc.c: Expand comment.
16101
16102 2011-08-16 Eli Zaretskii <eliz@gnu.org>
16103
16104 * xdisp.c (set_cursor_from_row): Don't accept a previous candidate
16105 if it fails the cursor_row_p test. Fixes cursor positioning at ZV.
16106
16107 2011-08-16 Ken Brown <kbrown@cornell.edu>
16108
16109 Fix memory allocation problems in Cygwin build (Bug#9273).
16110
16111 * unexcw.c ( __malloc_initialized): Declare external variable.
16112 (fixup_executable): Force the dumped emacs to reinitialize malloc.
16113
16114 * gmalloc.c [CYGWIN] (bss_sbrk_heapbase, bss_sbrk_heapinfo):
16115 New variables.
16116 (malloc_initialize_1) [CYGWIN]: Prepare for reinitializing the
16117 dumped emacs.
16118 (_free_internal_nolock) [CYGWIN]: Ignore requests to free storage
16119 in the static heap.
16120 [CYGWIN] (special_realloc): New function.
16121 (_realloc_internal_nolock) [CYGWIN]: Use the new function on
16122 requests to realloc storage in the static heap.
16123
16124 2011-08-15 Paul Eggert <eggert@cs.ucla.edu>
16125
16126 * bidi.c (bidi_initialize): Remove unused local.
16127
16128 2011-08-15 Eli Zaretskii <eliz@gnu.org>
16129
16130 * bidimirror.h:
16131 * biditype.h: Remove file.
16132 * makefile.w32-in ($(BLD)/bidi.$(O)):
16133 * deps.mk (bidi.o): Remove biditype.h and bidimirror.h.
16134
16135 * dispextern.h: Fix a typo in the comment to bidi_type_t.
16136
16137 * chartab.c: Improve commentary for the uniprop_table API.
16138
16139 * bidi.c (bidi_paragraph_init): Support zero value of
16140 bidi_ignore_explicit_marks_for_paragraph_level.
16141 (bidi_initialize): Use uniprop_table instead of including
16142 biditype.h and bidimirror.h.
16143
16144 * xdisp.c (move_it_in_display_line_to): Don't reset pixel
16145 coordinates of the iterator when restoring from ppos_it.
16146 (Bug#9296)
16147
16148 2011-08-14 Kenichi Handa <handa@m17n.org>
16149
16150 * process.c (create_process): Call setup_process_coding_systems
16151 after the pid of the process is set to -1 (Bug#8162).
16152
16153 2011-08-14 Eli Zaretskii <eliz@gnu.org>
16154
16155 * xdisp.c (move_it_in_display_line_to): Don't invoke
16156 IT_RESET_X_ASCENT_DESCENT when iterator position was restored from
16157 ppos_it. Fixes vertical cursor motion when line beginning is
16158 covered by an image. (Bug#9296)
16159
16160 2011-08-14 Jan Djärv <jan.h.d@swipnet.se>
16161
16162 * nsterm.h (ns_run_ascript): Declare.
16163 (NSAPP_DATA2_RUNASSCRIPT): Define.
16164
16165 * nsfns.m (as_script, as_result, as_status): New static variables.
16166 (ns_run_ascript): New function.
16167 (Fns_do_applescript): Set variables as_*. Make an NSApplicationDefined
16168 event with data2 set to NSAPP_DATA2_RUNASSCRIPT, post it and then start
16169 the event loop. Get status from as_status (Bug#7276).
16170
16171 * nsterm.m (sendEvent): If event is NSApplicationDefined and
16172 data2 is NSAPP_DATA2_RUNASSCRIPT, call ns_run_ascript and then exit
16173 the event loop (Bug#7276).
16174
16175 2011-08-14 Andreas Schwab <schwab@linux-m68k.org>
16176
16177 * gnutls.c (QCgnutls_bootprop_priority)
16178 (QCgnutls_bootprop_trustfiles, QCgnutls_bootprop_keylist)
16179 (QCgnutls_bootprop_crlfiles, QCgnutls_bootprop_callbacks)
16180 (QCgnutls_bootprop_loglevel, QCgnutls_bootprop_hostname)
16181 (QCgnutls_bootprop_min_prime_bits, QCgnutls_bootprop_verify_flags)
16182 (QCgnutls_bootprop_verify_hostname_error)
16183 (QCgnutls_bootprop_callbacks_verify): Rename from
16184 Qgnutls_bootprop_..., all uses changed.
16185
16186 * xfaces.c (QCignore_defface): Rename from Qignore_defface, all
16187 uses changed.
16188
16189 2011-08-14 Paul Eggert <eggert@cs.ucla.edu>
16190
16191 * xfaces.c (Qframe_set_background_mode): Now static.
16192 * dispextern.h (Qframe_set_background_mode): Remove decl.
16193
16194 * process.c (Fnetwork_interface_info): Declare local only if needed.
16195
16196 2011-08-13 Jan Djärv <jan.h.d@swipnet.se>
16197
16198 * process.c: Include ifaddrs.h and net/if_dl.h if available (Bug#8477).
16199 (Fnetwork_interface_list): Allocate in increments of bytes instead
16200 of sizeof (struct ifreq). Iterate over ifconf.ifc_req by counting
16201 bytes (Bug#8477). Count bytes correctly when ifr_addr is a struct
16202 sockaddr.
16203 (struct ifflag_def): notrailers is smart on OSX.
16204 (Fnetwork_interface_info): Handle case when ifr_flags is negative.
16205 Get hardware address with getifaddrs if available.
16206
16207 2011-08-12 Eli Zaretskii <eliz@gnu.org>
16208
16209 * xdisp.c (iterate_out_of_display_property): xassert that
16210 IT->position is set to within IT->object's boundaries. Break from
16211 the loop as soon as EOB is reached; avoids infloops in redisplay
16212 when IT->position is set up wrongly due to some bug.
16213 Set IT->current to match the bidi iterator unconditionally.
16214 (push_display_prop): Allow GET_FROM_STRING as IT->method on
16215 entry. Force push_it to save on the stack the current
16216 buffer/string position, to be restored by pop_it. Fix flags in
16217 the iterator structure wrt the object coming from a display
16218 property, as `line-prefix' and `wrap-prefix' are not ``replacing''
16219 properties. (Bug#9284)
16220
16221 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
16222
16223 * fontset.c (fontset_get_font_group): Add proper type checks.
16224 (Bug#9172)
16225
16226 2011-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16227
16228 * unexmacosx.c (print_load_command_name): Add cases LC_FUNCTION_STARTS
16229 and LC_VERSION_MIN_MACOSX.
16230 (copy_linkedit_data) [LC_FUNCTION_STARTS]: New function.
16231 (dump_it) [LC_FUNCTION_STARTS]: Use it.
16232
16233 2011-08-08 Eli Zaretskii <eliz@gnu.org>
16234
16235 * xdisp.c (forward_to_next_line_start): Allow to use the
16236 no-display-properties-and-no-overlays under bidi display.
16237 Set disp_pos in the bidi iterator to avoid searches for display
16238 properties and overlays.
16239
16240 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
16241
16242 * editfns.c (Fset_time_zone_rule): Document relationship with the
16243 setenv function.
16244
16245 * ftfont.c (ftfont_pattern_entity): Copy the extras argument to
16246 the font entity extracted from the cache (Bug#8109).
16247
16248 2011-08-07 Chong Yidong <cyd@stupidchicken.com>
16249
16250 * composite.c (autocmp_chars): Don't reset point. That is done by
16251 restore_point_unwind (Bug#5984).
16252
16253 2011-08-07 Juri Linkov <juri@jurta.org>
16254
16255 * editfns.c (Fformat_time_string): Doc fix, add tag `usage:'
16256 to show the arg `TIME' instead of `TIMEVAL'.
16257
16258 2011-08-06 Eli Zaretskii <eliz@gnu.org>
16259
16260 * xdisp.c (set_cursor_from_row): Fix cursor positioning when a
16261 display property strides EOL and includes a newline, as in
16262 longlines-mode. (Bug#9254)
16263 (move_it_in_display_line_to): Fix vertical-motion in a buffer with
16264 word-wrap under bidirectional display. (Bug#9224)
16265
16266 * bidi.c (bidi_unshelve_cache): Don't reset the cache if JUST_FREE
16267 is non-zero, even if the data buffer is NULL. Fixes a crash in
16268 vertical-motion with longlines-mode. (Bug#9254)
16269
16270 2011-08-05 Eli Zaretskii <eliz@gnu.org>
16271
16272 * bidi.c <bidi_cache_total_alloc>: Now static.
16273 (bidi_initialize): Initialize bidi_cache_total_alloc.
16274
16275 * xdisp.c (display_line): Release buffer allocated for shelved bidi
16276 cache. (Bug#9221)
16277
16278 * bidi.c (bidi_shelve_cache, bidi_unshelve_cache): Track total
16279 amount allocated this far in `bidi_cache_total_alloc'.
16280 (bidi_unshelve_cache): Accept an additional argument JUST_FREE; if
16281 non-zero, only free the data buffer without restoring the cache
16282 contents. All callers changed.
16283
16284 * dispextern.h (bidi_unshelve_cache): Update prototype.
16285
16286 * xdisp.c (SAVE_IT, pos_visible_p, move_it_in_display_line_to)
16287 (move_it_in_display_line, move_it_to)
16288 (move_it_vertically_backward, move_it_by_lines): Replace the call
16289 to xfree to an equivalent call to bidi_unshelve_cache.
16290 (move_it_in_display_line_to): Fix logic of returning
16291 MOVE_POS_MATCH_OR_ZV in the bidi case. (Bug#9224)
16292
16293 2011-08-05 Eli Zaretskii <eliz@gnu.org>
16294
16295 * xdisp.c (set_cursor_from_row): Prefer the candidate glyph that
16296 came from a string character with a `cursor' property. (Bug#9229)
16297
16298 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
16299
16300 * Makefile.in (LIB_PTHREAD): New variable.
16301 (LIBES): Add LIB_PTHREAD (Bug#9216).
16302
16303 * alloc.c, emacs.c, gmalloc.c, gtkutil.c, keyboard.c, syssignal.h:
16304 Rename HAVE_GTK_AND_PTHREAD to HAVE_PTHREAD (Bug#9216).
16305
16306 2011-08-04 Andreas Schwab <schwab@linux-m68k.org>
16307
16308 * regex.c (re_iswctype): Remove some redundant boolean conversions.
16309
16310 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
16311
16312 * xterm.c (x_find_topmost_parent): New function.
16313 (x_set_frame_alpha): Find topmost parent window with
16314 x_find_topmost_parent and set the property there also (bug#9181).
16315 (handle_one_xevent): Call x_set_frame_alpha on ReparentNotify.
16316
16317 2011-08-04 Paul Eggert <eggert@cs.ucla.edu>
16318
16319 * callproc.c (Fcall_process): Avoid vfork clobbering
16320 the local vars buffer, coding_systems, current_dir.
16321
16322 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
16323
16324 * keymap.c (Fmake_composed_keymap): Move to subr.el.
16325
16326 2011-08-03 Paul Eggert <eggert@cs.ucla.edu>
16327
16328 * fontset.c (dump_fontset) [FONTSET_DEBUG]: Declare EXTERNALLY_VISIBLE
16329 so that it is not optimized away.
16330
16331 * xdisp.c (compute_display_string_pos): Remove unused local.
16332
16333 2011-08-02 Eli Zaretskii <eliz@gnu.org>
16334
16335 Fix slow cursor motion and scrolling in large buffers with
16336 selective display, like Org Mode buffers. (Bug#9218)
16337
16338 * dispextern.h (struct bidi_it): New member disp_prop_p.
16339
16340 * xdisp.c: Remove one-slot cache of display string positions.
16341 (compute_display_string_pos): Accept an additional argument
16342 DISP_PROP_P; callers changed. Scan at most 5K characters forward
16343 for a display string or property. If found, set DISP_PROP_P
16344 non-zero.
16345
16346 * bidi.c (bidi_fetch_char): Accept an additional argument
16347 DISP_PROP_P, and pass it to compute_display_string_pos.
16348 Only handle text covered by a display string if DISP_PROP_P is returned
16349 non-zero. All callers of bidi_fetch_char changed.
16350
16351 2011-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
16352
16353 * keymap.c (Fdefine_key): Fix Lisp_Object/int mixup; apply some CSE.
16354
16355 2010-12-03 Don March <don@ohspite.net>
16356
16357 * keymap.c (Fdefine_key): Fix non-prefix key error message when
16358 last character M-[char] is translated to ESC [char] (bug#7541).
16359
16360 2011-08-02 Kenichi Handa <handa@m17n.org>
16361
16362 * lisp.h (uniprop_table): Extern it.
16363
16364 * chartab.c (uniprop_table): Make it non-static.
16365
16366 2011-08-01 Eli Zaretskii <eliz@gnu.org>
16367
16368 * xdisp.c (forward_to_next_line_start): Accept additional argument
16369 BIDI_IT_PREV, and store into it the state of the bidi iterator had
16370 on the newline.
16371 (reseat_at_next_visible_line_start): Use the bidi iterator state
16372 returned by forward_to_next_line_start to restore the state of
16373 it->bidi_it after backing up to previous newline. (Bug#9212)
16374
16375 2011-07-30 Andreas Schwab <schwab@linux-m68k.org>
16376
16377 * regex.c (re_comp): Protoize.
16378 (re_exec): Fix return type.
16379 (regexec): Fix type of `ret'. (Bug#9203)
16380
16381 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
16382
16383 * image.c (check_image_size): Use 1024x1024 if unknown frame (Bug#9189).
16384 This is needed if max-image-size is a floating-point number.
16385
16386 2011-07-28 Andreas Schwab <schwab@linux-m68k.org>
16387
16388 * print.c (print_object): Print empty symbol as ##.
16389
16390 * lread.c (read1): Read ## as empty symbol.
16391
16392 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
16393
16394 * nsfns.m (x_set_foreground_color): Set f->foreground_pixel when
16395 setting frame foreground color (Bug#9175).
16396 (x_set_background_color): Likewise.
16397
16398 * nsmenu.m (-setText): Size tooltip dimensions precisely to
16399 contents (Bug#9176).
16400 (EmacsTooltip -init): Remove bezels and add shadows to
16401 tooltip windows.
16402
16403 * nsterm.m (ns_dumpglyphs_stretch): Avoid overwriting left fringe
16404 or scroll bar (Bug#8470).
16405
16406 * nsfont.m (nsfont_open): Remove assignment to voffset and
16407 unnecessary vars hshink, expand, hd, full_height, min_height.
16408 (nsfont_draw): Use s->ybase as baseline for glyph drawing (Bug#8913).
16409
16410 * nsterm.h (nsfont_info): Remove voffset field.
16411
16412 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
16413
16414 Implement strike-through and overline on NextStep (Bug#8863).
16415
16416 * nsfont.m (nsfont_open): Use underline position provided by font,
16417 instead of hard-coded value of 2.
16418 (nsfont_draw): Call ns_draw_text_decoration instead.
16419
16420 * nsterm.h: Add declaration for ns_draw_text_decoration.
16421
16422 * nsterm.m (ns_draw_text_decoration): New function for drawing
16423 underline, overline, and strike-through.
16424 (ns_dumpglyphs_image, ns_dumpglyphs_stretch): Add call to
16425 ns_draw_text_decoration. Change treatment of cursor drawing to
16426 accommodate underlining, etc.
16427
16428 2011-07-28 Eli Zaretskii <eliz@gnu.org>
16429
16430 * buffer.c (init_buffer_once): Set bidi-display-reordering to t by
16431 default.
16432
16433 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
16434
16435 * alloc.c (memory_full) [!SYNC_INPUT]: Fix signal-related race.
16436 Without this fix, if a signal arrives just after memory fills up,
16437 'malloc' might be invoked reentrantly.
16438
16439 * image.c (x_check_image_size) [!HAVE_X_WINDOWS]: Return 1.
16440 In other words, assume that every image size is allowed, on non-X
16441 hosts. This assumption is probably wrong, but it lets Emacs compile.
16442
16443 2011-07-28 Andreas Schwab <schwab@linux-m68k.org>
16444
16445 * regex.c (re_iswctype): Convert return values to boolean.
16446
16447 2011-07-28 Eli Zaretskii <eliz@fencepost.gnu.org>
16448
16449 * xdisp.c (compute_display_string_pos): Don't use cached display
16450 string position if the buffer had its restriction changed.
16451 (Bug#9184)
16452
16453 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
16454
16455 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
16456
16457 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
16458
16459 Integer signedness and overflow and related fixes. (Bug#9079)
16460
16461 * bidi.c: Integer size and overflow fixes.
16462 (bidi_cache_size, bidi_cache_idx, bidi_cache_last_idx)
16463 (bidi_cache_start, bidi_cache_fetch_state, bidi_cache_search)
16464 (bidi_cache_find_level_change, bidi_cache_ensure_space)
16465 (bidi_cache_iterator_state, bidi_cache_find, bidi_cache_start_stack)
16466 (bidi_find_other_level_edge):
16467 Use ptrdiff_t instead of EMACS_INT where either will do.
16468 This works better on 32-bit hosts configured --with-wide-int.
16469 (bidi_cache_ensure_space): Check for size-calculation overflow.
16470 Use % rather than repeated addition, for better worst-case speed.
16471 Don't set bidi_cache_size until after xrealloc returns, because it
16472 might not return.
16473 (bidi_dump_cached_states): Use ptrdiff_t, not int, to avoid overflow.
16474 (bidi_cache_ensure_space): Also check that the bidi cache size
16475 does not exceed that of the largest Lisp string or buffer. See Eli
16476 Zaretskii in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#29>.
16477
16478 * alloc.c (__malloc_size_t): Remove.
16479 All uses replaced by size_t. See Andreas Schwab's note
16480 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#8>.
16481
16482 * image.c: Improve checking for integer overflow.
16483 (check_image_size): Assume that f is nonnull, since
16484 it is always nonnull in practice. This is one less thing to
16485 worry about when checking for integer overflow later.
16486 (x_check_image_size): New function, which checks for integer
16487 overflow issues inside X.
16488 (x_create_x_image_and_pixmap, xbm_read_bitmap_data): Use it.
16489 This removes the need for a memory_full check.
16490 (xbm_image_p): Rewrite to avoid integer multiplication overflow.
16491 (Create_Pixmap_From_Bitmap_Data, xbm_load): Use x_check_image_size.
16492 (xbm_read_bitmap_data): Change locals back to 'int', since
16493 their values must fit in 'int'.
16494 (xpm_load_image, png_load, tiff_load):
16495 Invoke x_create_x_image_and_pixmap earlier,
16496 to avoid much needless work if the image is too large.
16497 (tiff_load): Treat overly large images as if
16498 x_create_x_image_and_pixmap failed, not as malloc failures.
16499 (gs_load): Use x_check_image_size.
16500
16501 * gtkutil.c: Omit integer casts.
16502 (xg_get_pixbuf_from_pixmap): Remove unnecessary cast.
16503 (xg_set_toolkit_scroll_bar_thumb): Rewrite to avoid need for cast.
16504
16505 * image.c (png_load): Don't assume height * row_bytes fits in 'int'.
16506
16507 * xfaces.c (Fbitmap_spec_p): Fix integer overflow bug.
16508 Without this fix, (bitmap-spec-p '(34359738368 1 "x"))
16509 would wrongly return t on a 64-bit host.
16510
16511 * dispnew.c (init_display): Use *_RANGE_OVERFLOW macros.
16512 The plain *_OVERFLOW macros run afoul of GCC bug 49705
16513 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49705>
16514 and therefore cause GCC to emit a bogus diagnostic in some cases.
16515
16516 * image.c: Integer signedness and overflow and related fixes.
16517 This is not an exhaustive set of fixes, but it's time to
16518 record what I've got.
16519 (lookup_pixel_color, check_image_size): Remove redundant decls.
16520 (check_image_size): Don't assume that arbitrary EMACS_INT values
16521 fit in 'int', or that arbitrary 'double' values fit in 'int'.
16522 (x_alloc_image_color, x_create_x_image_and_pixmap, png_load)
16523 (tiff_load, imagemagick_load_image):
16524 Check for overflow in size calculations.
16525 (x_create_x_image_and_pixmap): Remove unnecessary test for
16526 xmalloc returning NULL; that can't happen.
16527 (xbm_read_bitmap_data): Don't assume sizes fit into 'int'.
16528 (xpm_color_bucket): Use better integer hashing function.
16529 (xpm_cache_color): Don't possibly over-allocate memory.
16530 (struct png_memory_storage, tiff_memory_source, tiff_seek_in_memory)
16531 (gif_memory_source):
16532 Use ptrdiff_t, not int or size_t, to record sizes.
16533 (png_load): Don't assume values greater than 2**31 fit in 'int'.
16534 (our_stdio_fill_input_buffer): Prefer ptrdiff_t to size_t when
16535 either works, as we prefer signed integers.
16536 (tiff_read_from_memory, tiff_write_from_memory):
16537 Return tsize_t, not size_t, since that's what the TIFF API wants.
16538 (tiff_read_from_memory): Don't fail simply because the read would
16539 go past EOF; instead, return a short read.
16540 (tiff_load): Omit no-longer-needed casts.
16541 (Fimagemagick_types): Don't assume size fits into 'int'.
16542
16543 Improve hashing quality when configured --with-wide-int.
16544 * fns.c (hash_string): New function, taken from sxhash_string.
16545 Do not discard information about ASCII character case; this
16546 discarding is no longer needed.
16547 (sxhash-string): Use it. Change sig to match it. Caller changed.
16548 * lisp.h: Declare it.
16549 * lread.c (hash_string): Remove, since we now use fns.c's version.
16550 The fns.c version returns a wider integer if --with-wide-int is
16551 specified, so this should help the quality of the hashing a bit.
16552
16553 * emacs.c: Integer overflow minor fix.
16554 (heap_bss_diff): Now uprintmax_t, not unsigned long. All used changed.
16555 Define only if GNU_LINUX.
16556 (main, Fdump_emacs): Set and use heap_bss_diff only if GNU_LINUX.
16557
16558 * dispnew.c: Integer signedness and overflow fixes.
16559 Remove unnecessary forward decls, that were a maintenance hassle.
16560 (history_tick): Now uprintmax_t, so it's more likely to avoid overflow.
16561 All uses changed.
16562 (adjust_glyph_matrix, realloc_glyph_pool, adjust_frame_message_buffer)
16563 (scrolling_window): Use ptrdiff_t, not int, for byte count.
16564 (prepare_desired_row, line_draw_cost):
16565 Use int, not unsigned, where either works.
16566 (save_current_matrix, restore_current_matrix):
16567 Use ptrdiff_t, not size_t, where either works.
16568 (init_display): Check for overflow more accurately, and without
16569 relying on undefined behavior.
16570
16571 * editfns.c (pWIDE, pWIDElen, signed_wide, unsigned_wide):
16572 Remove, replacing with the new symbols in lisp.h. All uses changed.
16573 * fileio.c (make_temp_name):
16574 * filelock.c (lock_file_1, lock_file):
16575 * xdisp.c (message_dolog):
16576 Don't assume PRIdMAX etc. works; this isn't portable to pre-C99 hosts.
16577 Use pMd etc. instead.
16578 * lisp.h (printmax_t, uprintmax_t, pMd, pMu): New types and macros,
16579 replacing the pWIDE etc. symbols removed from editfns.c.
16580
16581 * keyboard.h (num_input_events): Now uintmax_t.
16582 This is (very slightly) less likely to mess up due to wraparound.
16583 All uses changed.
16584
16585 * buffer.c: Integer signedness fixes.
16586 (alloc_buffer_text, enlarge_buffer_text):
16587 Use ptrdiff_t rather than size_t when either will do, as we prefer
16588 signed integers.
16589
16590 * alloc.c: Integer signedness and overflow fixes.
16591 Do not impose an arbitrary 32-bit limit on malloc sizes when debugging.
16592 (__malloc_size_t): Default to size_t, not to int.
16593 (pure_size, pure_bytes_used_before_overflow, stack_copy_size)
16594 (Fgarbage_collect, mark_object_loop_halt, mark_object):
16595 Prefer ptrdiff_t to size_t when either would do, as we prefer
16596 signed integers.
16597 (XMALLOC_OVERRUN_CHECK_OVERHEAD): New macro.
16598 (xmalloc_overrun_check_header, xmalloc_overrun_check_trailer):
16599 Now const. Initialize with values that are in range even if char
16600 is signed.
16601 (XMALLOC_PUT_SIZE, XMALLOC_GET_SIZE): Remove, replacing with ...
16602 (xmalloc_put_size, xmalloc_get_size): New functions. All uses changed.
16603 These functions do the right thing with sizes > 2**32.
16604 (check_depth): Now ptrdiff_t, not int.
16605 (overrun_check_malloc, overrun_check_realloc, overrun_check_free):
16606 Adjust to new way of storing sizes. Check for size overflow bugs
16607 in rest of code.
16608 (STRING_BYTES_MAX): Adjust to new overheads. The old code was
16609 slightly wrong anyway, as it missed one instance of
16610 XMALLOC_OVERRUN_CHECK_OVERHEAD.
16611 (refill_memory_reserve): Omit needless cast to size_t.
16612 (mark_object_loop_halt): Mark as externally visible.
16613
16614 * xselect.c: Integer signedness and overflow fixes.
16615 (Fx_register_dnd_atom, x_handle_dnd_message):
16616 Use ptrdiff_t, not size_t, since we prefer signed.
16617 (Fx_register_dnd_atom): Check for ptrdiff_t (and size_t) overflow.
16618 * xterm.h (struct x_display_info): Use ptrdiff_t, not size_t, for
16619 x_dnd_atoms_size and x_dnd_atoms_length.
16620
16621 * doprnt.c: Prefer signed to unsigned when either works.
16622 * eval.c (verror):
16623 * doprnt.c (doprnt):
16624 * lisp.h (doprnt):
16625 * xdisp.c (vmessage):
16626 Use ptrdiff_t, not size_t, when using or implementing doprnt,
16627 since the sizes cannot exceed ptrdiff_t bounds anyway, and we
16628 prefer signed arithmetic to avoid comparison confusion.
16629 * doprnt.c (doprnt): Avoid a "+ 1" that can't overflow,
16630 but is a bit tricky.
16631
16632 Assume freestanding C89 headers, string.h, stdlib.h.
16633 * data.c, doprnt.c, floatfns.c, print.c:
16634 Include float.h unconditionally.
16635 * gmalloc.c: Assume C89-at-least behavior for preprocessor,
16636 limits.h, stddef.h, string.h. Use memset instead of 'flood'.
16637 * regex.c: Likewise for stddef.h, string.h.
16638 (ISASCII): Remove; can assume it returns 1 now. All uses removed.
16639 * s/aix4-2.h (HAVE_STRING_H): Remove obsolete undef.
16640 * s/ms-w32.h (HAVE_LIMITS_H, HAVE_STRING_H, HAVE_STDLIB_H)
16641 (STDC_HEADERS): Remove obsolete defines.
16642 * sysdep.c: Include limits.h unconditionally.
16643
16644 Assume support for memcmp, memcpy, memmove, memset.
16645 * lisp.h, sysdep.c (memcmp, memcpy, memmove, memset):
16646 * regex.c (memcmp, memcpy):
16647 Remove; we assume C89 now.
16648
16649 * gmalloc.c (memcpy, memset, memmove): Remove; we assume C89 now.
16650 (__malloc_safe_bcopy): Remove; no longer needed.
16651
16652 * lisp.h (struct vectorlike_header, struct Lisp_Subr): Signed sizes.
16653 Use EMACS_INT, not EMACS_UINT, for sizes. The code works equally
16654 well either way, and we prefer signed to unsigned.
16655
16656 2011-07-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
16657
16658 * gnutls.c (emacs_gnutls_read): Don't message anything if the peer
16659 closes the connection while we're reading (bug#9182).
16660
16661 2011-07-25 Jan Djärv <jan.h.d@swipnet.se>
16662
16663 * nsmenu.m (ns_popup_dialog): Add an "ok" button if no buttons
16664 are specified (Bug#9168).
16665
16666 2011-07-25 Paul Eggert <eggert@cs.ucla.edu>
16667
16668 * bidi.c (bidi_dump_cached_states): Fix printf format mismatch.
16669 Found by GCC static checking and --with-wide-int on a 32-bit host.
16670
16671 2011-07-25 Eli Zaretskii <eliz@gnu.org>
16672
16673 * xdisp.c (compute_display_string_pos): Fix logic of caching
16674 previous display string position. Initialize cached_prev_pos to
16675 -1. Fixes slow-down at the beginning of a buffer.
16676
16677 2011-07-24 Eli Zaretskii <eliz@gnu.org>
16678
16679 * xfaces.c (check_lface_attrs) [HAVE_WINDOW_SYSTEM]: Allow `nil'
16680 for attrs[LFACE_FONTSET_INDEX].
16681
16682 2011-07-23 Paul Eggert <eggert@cs.ucla.edu>
16683
16684 * xml.c (parse_region): Remove unused local
16685 that was recently introduced.
16686
16687 2011-07-23 Eli Zaretskii <eliz@gnu.org>
16688
16689 * xfns.c (unwind_create_frame) [GLYPH_DEBUG]: Adapt to changes in
16690 2008-02-22T17:42:09Z!monnier@iro.umontreal.ca.
16691
16692 * xdisp.c (move_it_in_display_line_to): Record the best matching
16693 position for TO_CHARPOS while scanning the line, and restore it on
16694 exit if none of the characters scanned was an exact match.
16695 Fixes vertical-motion and pos-visible-in-window-p under bidi redisplay
16696 when exact match is impossible due to invisible text, and the
16697 lines are truncated.
16698
16699 2011-07-23 Jan Djärv <jan.h.d@swipnet.se>
16700
16701 * nsterm.m (initFrameFromEmacs): Set NSTitledWindowMask in styleMask
16702 for OSX >= 10.7.
16703
16704 2011-07-22 Eli Zaretskii <eliz@gnu.org>
16705
16706 Fix a significant slow-down of cursor motion with C-n, C-p,
16707 C-f/C-b, and C-v/M-v that couldn't keep up with keyboard
16708 auto-repeat under bidi redisplay in fontified buffers.
16709 * xdisp.c (compute_stop_pos_backwards): New function.
16710 (next_element_from_buffer): Call compute_stop_pos_backwards to
16711 find a suitable prev_stop when we find ourselves before
16712 base_level_stop.
16713 (reseat): Don't look for prev_stop, as that could mean a very long
16714 run.
16715 <cached_disp_pos, cached_disp_buffer, cached_disp_modiff>
16716 <cached_disp_overlay_modiff>: Cache for last found display string
16717 position.
16718 (compute_display_string_pos): Return the cached position if asked
16719 about the same buffer in the same area of character positions, and
16720 the buffer wasn't changed since the time the display string
16721 position was cached.
16722
16723 2011-07-22 Eli Zaretskii <eliz@gnu.org>
16724
16725 * xdisp.c (rows_from_pos_range): Don't ignore glyphs whose object
16726 is an integer, which is important for empty lines. (Bug#9149)
16727
16728 2011-07-22 Chong Yidong <cyd@stupidchicken.com>
16729
16730 * frame.c (Fmodify_frame_parameters): In tty case, update the
16731 default face if necessary (Bug#4238).
16732
16733 2011-07-21 Chong Yidong <cyd@stupidchicken.com>
16734
16735 * editfns.c (Fstring_to_char): No need to explain what a character
16736 is in the docstring (Bug#6576).
16737
16738 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
16739
16740 * xml.c (parse_region): Make sure we always return a tree.
16741
16742 2011-07-20 HAMANO Kiyoto <khiker.mail@gmail.com>
16743
16744 * xml.c (parse_region): If a document contains only comments,
16745 return that, too.
16746
16747 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
16748
16749 * xml.c (make_dom): Return comments, too.
16750
16751 2011-07-19 Paul Eggert <eggert@cs.ucla.edu>
16752
16753 Port to OpenBSD.
16754 See http://lists.gnu.org/archive/html/emacs-devel/2011-07/msg00688.html
16755 and the surrounding thread.
16756 * minibuf.c (read_minibuf_noninteractive): Rewrite to use getchar
16757 rather than fgets, and retry after EINTR. Otherwise, 'emacs
16758 --batch -f byte-compile-file' fails on OpenBSD if an inactivity
16759 timer goes off.
16760 * s/openbsd.h (BROKEN_SIGIO): Define.
16761 * unexelf.c (unexec) [__OpenBSD__]:
16762 Don't update the .mdebug section of the Alpha COFF symbol table.
16763
16764 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
16765
16766 * lread.c (syms_of_lread): Clarify when `lexical-binding' is used
16767 (bug#8460).
16768
16769 2011-07-18 Paul Eggert <eggert@cs.ucla.edu>
16770
16771 * fileio.c (Fcopy_file) [!MSDOS]: Tighten created file's mask.
16772 This fixes some race conditions on the permissions of any newly
16773 created file.
16774
16775 * alloc.c (valid_pointer_p): Use pipe, not open.
16776 This fixes some permissions issues when debugging.
16777
16778 * fileio.c (Fcopy_file): Adjust mode if fchown fails. (Bug#9002)
16779 If fchown fails to set both uid and gid, try to set just gid,
16780 as that is sometimes allowed. Adjust the file's mode to eliminate
16781 setuid or setgid bits that are inappropriate if fchown fails.
16782
16783 2011-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
16784
16785 * xdisp.c (next_element_from_string, next_element_from_buffer): Use EQ
16786 to compare Lisp_Objects.
16787 * gnutls.c (syms_of_gnutls): Rename Vgnutls_log_level to
16788 global_gnutls_log_level, don't mistake it for a Lisp_Object.
16789 (init_gnutls_functions, emacs_gnutls_handle_error): Fix up uses.
16790
16791 2011-07-17 Andreas Schwab <schwab@linux-m68k.org>
16792
16793 * lread.c (read_integer): Unread even EOF character.
16794 (read1): Likewise. Properly record start position of symbol.
16795
16796 * lread.c (read1): Read `#:' as empty uninterned symbol if no
16797 symbol character follows.
16798
16799 2011-07-17 Paul Eggert <eggert@cs.ucla.edu>
16800
16801 * fileio.c (Fcopy_file): Pacify gcc re fchown. (Bug#9002)
16802 This works around a problem with the previous change to Fcopy_file.
16803 Recent glibc declares fchown with __attribute__((warn_unused_result)),
16804 and without this change, GCC might complain about discarding
16805 fchown's return value.
16806
16807 2011-07-16 Juanma Barranquero <lekktu@gmail.com>
16808
16809 * makefile.w32-in (GLOBAL_SOURCES): Add gnutls.c (followup to bug#9059).
16810
16811 2011-07-16 Paul Eggert <eggert@cs.ucla.edu>
16812
16813 * fileio.c (Fcopy_file): Don't diagnose fchown failures. (Bug#9002)
16814
16815 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
16816
16817 * gnutls.c (syms_of_gnutls): Define `gnutls-log-level' here, since
16818 it's used from the C level.
16819
16820 * process.c: Use the same condition for POLL_FOR_INPUT in both
16821 keyboard.c and process.c (bug#1858).
16822
16823 2011-07-09 Lawrence Mitchell <wence@gmx.li>
16824
16825 * gnutls.c (Qgnutls_bootprop_min_prime_bits): New variable.
16826 (Fgnutls_boot): Use it.
16827
16828 2011-07-15 Andreas Schwab <schwab@linux-m68k.org>
16829
16830 * doc.c (Fsubstitute_command_keys): Revert last change.
16831
16832 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
16833
16834 * doc.c (Fsubstitute_command_keys): Clarify that \= really only
16835 quotes the next character, and doesn't affect other longer
16836 sequences (bug#8935).
16837
16838 * lread.c (syms_of_lread): Clarify that is isn't only
16839 `eval-buffer' and `eval-defun' that's affected by
16840 `lexical-binding' (bug#8460).
16841
16842 2011-07-15 Eli Zaretskii <eliz@gnu.org>
16843
16844 * xdisp.c (move_it_in_display_line_to): Fix vertical motion with
16845 bidi redisplay when a line includes both an image and is truncated.
16846
16847 2011-07-14 Paul Eggert <eggert@cs.ucla.edu>
16848
16849 Fix minor problems found by static checking.
16850 * bidi.c (bidi_cache_size): Now EMACS_INT, not size_t.
16851 (elsz): Now a signed constant, not a size_t var. We prefer signed
16852 types to unsigned, to avoid integer comparison confusion. Without
16853 this change, GCC 4.6.1 with -Wunsafe-loop-optimizations complains
16854 "cannot optimize loop, the loop counter may overflow", a symptom
16855 of the confusion.
16856 * indent.c (Fvertical_motion): Mark locals as initialized.
16857 * xdisp.c (reseat_to_string): Fix pointer signedness issue.
16858
16859 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
16860
16861 * search.c (Fre_search_backward): Mention `case-fold-search' in
16862 all the re_search_* functions (bug#8138).
16863
16864 * keyboard.c (Fopen_dribble_file): Document when the file is
16865 closed (bug#8056).
16866
16867 2011-07-14 Eli Zaretskii <eliz@gnu.org>
16868
16869 * bidi.c (bidi_dump_cached_states): Fix format of displaying
16870 bidi_cache_idx.
16871
16872 Support bidi reordering of display and overlay strings.
16873 * xdisp.c (compute_display_string_pos)
16874 (compute_display_string_end): Accept additional argument STRING.
16875 (init_iterator, reseat_1): Initialize bidi_it->string.s to NULL.
16876 (reseat_to_string): Initialize bidi_it->string.s and
16877 bidi_it->string.schars.
16878 (Fcurrent_bidi_paragraph_direction): Initialize itb.string.s to
16879 NULL (avoids a crash in bidi_paragraph_init).
16880 Initialize itb.string.lstring.
16881 (init_iterator): Call bidi_init_it only of a valid
16882 buffer position was specified. Initialize paragraph_embedding to
16883 L2R.
16884 (reseat_to_string): Initialize the bidi iterator.
16885 (display_string): If we need to ignore text properties of
16886 LISP_STRING, set IT->stop_charpos to IT->end_charpos. (The
16887 original value of -1 will not work with bidi.)
16888 (compute_display_string_pos): First arg is now struct
16889 `text_pos *'; all callers changed. Support display properties on
16890 Lisp strings.
16891 (compute_display_string_end): Support display properties on Lisp
16892 strings.
16893 (init_iterator, reseat_1, reseat_to_string): Initialize the
16894 string.bufpos member to 0 (zero, for compatibility with IT_CHARPOS
16895 when iterating on a string not from display properties).
16896 (compute_display_string_pos, compute_display_string_end):
16897 Fix calculation of the object to scan. Fixes an error when using
16898 arrow keys.
16899 (next_element_from_buffer): Don't abort when IT_CHARPOS is before
16900 base_level_stop; instead, set base_level_stop to BEGV.
16901 Fixes crashes in vertical-motion.
16902 (next_element_from_buffer): Improve commentary for when
16903 the iterator is before prev_stop.
16904 (init_iterator): Initialize bidi_p from the default value of
16905 bidi-display-reordering, not from buffer-local value. Use the
16906 buffer-local value only if initializing for buffer iteration.
16907 (handle_invisible_prop): Support invisible properties on strings
16908 that are being bidi-reordered.
16909 (set_iterator_to_next): Support bidi reordering of C strings and
16910 Lisp strings.
16911 (next_element_from_string): Support bidi reordering of Lisp
16912 strings.
16913 (handle_stop_backwards): Support Lisp strings as well.
16914 (display_string): Support display of R2L glyph rows.
16915 Use IT_STRING_CHARPOS when displaying from a Lisp string.
16916 (init_iterator): Don't initialize it->bidi_p for strings
16917 here.
16918 (reseat_to_string): Initialize it->bidi_p for strings here.
16919 (next_element_from_string, next_element_from_c_string)
16920 (next_element_from_buffer): Add xassert's for correspondence
16921 between IT's object being iterated and it->bidi_it.string
16922 structure.
16923 (face_before_or_after_it_pos): Support bidi iteration.
16924 (next_element_from_c_string): Handle the case of the first string
16925 character that is not the first one in the visual order.
16926 (get_visually_first_element): New function, refactored from common
16927 parts of next_element_from_buffer, next_element_from_string, and
16928 next_element_from_c_string.
16929 (tool_bar_lines_needed, redisplay_tool_bar)
16930 (display_menu_bar): Force left-to-right direction. Add a FIXME
16931 comment for making that be controlled by a user option.
16932 (push_it, pop_it): Save and restore the state of the
16933 bidi iterator. Save and restore the bidi_p flag.
16934 (pop_it): Iterate out of display property for string iteration as
16935 well.
16936 (iterate_out_of_display_property): Support iteration over strings.
16937 (handle_single_display_spec): Set up it->bidi_it for iteration
16938 over a display string, and call bidi_init_it.
16939 (handle_single_display_spec, next_overlay_string)
16940 (get_overlay_strings_1, push_display_prop): Set up the bidi
16941 iterator for displaying display or overlay strings.
16942 (forward_to_next_line_start): Don't use the shortcut if
16943 bidi-iterating.
16944 (back_to_previous_visible_line_start): If handle_display_prop
16945 pushed the iterator stack, restore the internal state of the bidi
16946 iterator by calling bidi_pop_it same number of times.
16947 (reseat_at_next_visible_line_start): If ON_NEWLINE_P is non-zero,
16948 and we are bidi-iterating, don't decrement the iterator position;
16949 instead, set the first_elt flag in the bidi iterator, to produce
16950 the same effect.
16951 (reseat_1): Remove redundant setting of string_from_display_prop_p.
16952 (push_display_prop): xassert that we are iterating a buffer.
16953 (push_it, pop_it): Save and restore paragraph_embedding member.
16954 (handle_single_display_spec, next_overlay_string)
16955 (get_overlay_strings_1, reseat_1, reseat_to_string)
16956 (push_display_prop): Set up the `unibyte' member of bidi_it.string
16957 correctly. Don't assume unibyte strings are not bidi-reordered.
16958 (compute_display_string_pos)
16959 (compute_display_string_end): Fix handling the case of C string.
16960 (push_it, pop_it): Save and restore from_disp_prop_p.
16961 (handle_single_display_spec, push_display_prop): Set the
16962 from_disp_prop_p flag.
16963 (get_overlay_strings_1): Reset the from_disp_prop_p flag.
16964 (pop_it): Call iterate_out_of_display_property only if we are
16965 popping after iteration over a string that came from a display
16966 property. Fix a typo in popping stretch info. Add an assertion
16967 for verifying that the iterator position is in sync with the bidi
16968 iterator.
16969 (handle_single_display_spec, get_overlay_strings_1)
16970 (push_display_prop): Fix initialization of paragraph direction for
16971 string when that of the parent object is not yet determined.
16972 (reseat_1): Call bidi_init_it to resync the bidi
16973 iterator with IT's position. (Bug#7616)
16974 (find_row_edges): If ROW->start.pos gives position
16975 smaller than min_pos, use it as ROW->minpos. (Bug#7616)
16976 (handle_stop, back_to_previous_visible_line_start, reseat_1):
16977 Reset the from_disp_prop_p flag.
16978 (SAVE_IT, RESTORE_IT): New macros.
16979 (pos_visible_p, face_before_or_after_it_pos)
16980 (back_to_previous_visible_line_start)
16981 (move_it_in_display_line_to, move_it_in_display_line)
16982 (move_it_to, move_it_vertically_backward, move_it_by_lines)
16983 (try_scrolling, redisplay_window, display_line): Use them when
16984 saving a temporary copy of the iterator and restoring it back.
16985 (back_to_previous_visible_line_start, reseat_1)
16986 (init_iterator): Empty the bidi cache "stack".
16987 (move_it_in_display_line_to): If iterator ended up at
16988 EOL, but we never saw any buffer positions smaller than
16989 to_charpos, return MOVE_POS_MATCH_OR_ZV. Fixes vertical cursor
16990 motion in bidi-reordered lines.
16991 (move_it_in_display_line_to): Record prev_method and prev_pos
16992 immediately before the call to set_iterator_to_next. Fixes cursor
16993 motion in bidi-reordered lines with stretch glyphs and strings
16994 displayed in margins. (Bug#8133) (Bug#8867)
16995 Return MOVE_POS_MATCH_OR_ZV only if iterator position is past
16996 TO_CHARPOS.
16997 (pos_visible_p): Support positions in bidi-reordered lines.
16998 Save and restore bidi cache.
16999
17000 * bidi.c (bidi_level_of_next_char): clen should be EMACS_NT, not int.
17001 (bidi_paragraph_info): Delete unused struct.
17002 (bidi_cache_idx, bidi_cache_last_idx): Declare EMACS_INT.
17003 (bidi_cache_start): New variable.
17004 (bidi_cache_reset): Reset bidi_cache_idx to bidi_cache_start, not
17005 to zero.
17006 (bidi_cache_fetch_state, bidi_cache_search)
17007 (bidi_cache_find_level_change, bidi_cache_iterator_state)
17008 (bidi_cache_find, bidi_peek_at_next_level)
17009 (bidi_level_of_next_char, bidi_find_other_level_edge)
17010 (bidi_move_to_visually_next): Compare cache index with
17011 bidi_cache_start rather than with zero.
17012 (bidi_fetch_char): Accept new argument STRING; all callers
17013 changed. Support iteration over a string. Support strings with
17014 display properties. Support unibyte strings. Fix the type of
17015 `len' according to what STRING_CHAR_AND_LENGTH expects.
17016 (bidi_paragraph_init, bidi_resolve_explicit_1)
17017 (bidi_resolve_explicit, bidi_resolve_weak)
17018 (bidi_level_of_next_char, bidi_move_to_visually_next):
17019 Support iteration over a string.
17020 (bidi_set_sor_type, bidi_resolve_explicit_1)
17021 (bidi_resolve_explicit, bidi_type_of_next_char): ignore_bn_limit
17022 can now be zero (for strings); special values 0 and -1 were
17023 changed to -1 and -2, respectively.
17024 (bidi_char_at_pos): New function.
17025 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak):
17026 Call it instead of FETCH_MULTIBYTE_CHAR.
17027 (bidi_move_to_visually_next): Abort if charpos or bytepos were not
17028 initialized to valid values.
17029 (bidi_init_it): Don't initialize charpos and bytepos with invalid
17030 values.
17031 (bidi_level_of_next_char): Allow the sentinel "position" to pass
17032 the test for valid cached positions. Fix the logic for looking up
17033 the sentinel state in the cache. GCPRO the Lisp string we are
17034 iterating.
17035 (bidi_push_it, bidi_pop_it): New functions.
17036 (bidi_initialize): Initialize the bidi cache start stack pointer.
17037 (bidi_cache_ensure_space): New function, refactored from part of
17038 bidi_cache_iterator_state. Don't assume the required size is just
17039 one BIDI_CACHE_CHUNK away.
17040 (bidi_cache_start_stack, bidi_push_it): Use IT_STACK_SIZE.
17041 (bidi_count_bytes, bidi_char_at_pos): New functions.
17042 (bidi_cache_search): Don't assume bidi_cache_last_idx is
17043 always valid if bidi_cache_idx is valid.
17044 (bidi_cache_find_level_change): xassert that bidi_cache_last_idx
17045 is valid if it's going to be used.
17046 (bidi_shelve_cache, bidi_unshelve_cache): New functions.
17047 (bidi_cache_fetch_state, bidi_cache_search)
17048 (bidi_cache_find_level_change, bidi_cache_ensure_space)
17049 (bidi_cache_iterator_state, bidi_cache_find)
17050 (bidi_find_other_level_edge, bidi_cache_start_stack):
17051 All variables related to cache indices are now EMACS_INT.
17052
17053 * dispextern.h (struct bidi_string_data): New structure.
17054 (struct bidi_it): New member `string'. Make flag members be 1-bit
17055 fields, and put them last in the struct.
17056 (compute_display_string_pos, compute_display_string_end):
17057 Update prototypes.
17058 (bidi_push_it, bidi_pop_it): Add prototypes.
17059 (struct iterator_stack_entry): New members bidi_p,
17060 paragraph_embedding, and from_disp_prop_p.
17061 (struct it): Member bidi_p is now a bit field 1 bit wide.
17062 (bidi_shelve_cache, bidi_unshelve_cache):
17063 Declare prototypes.
17064
17065 * .gdbinit (xvectype, xvector, xcompiled, xchartable, xboolvector)
17066 (xpr, xfont, xbacktrace): Use "header.size" when accessing vectors
17067 and vector-like objects.
17068
17069 * dispnew.c (buffer_posn_from_coords): Save and restore the bidi
17070 cache around display iteration.
17071
17072 * window.c (Fwindow_end, window_scroll_pixel_based)
17073 (displayed_window_lines, Frecenter): Save and restore the bidi
17074 cache around display iteration.
17075
17076 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
17077
17078 * editfns.c (Fdelete_region): Clarify the use of the named
17079 parameters (bug#6788).
17080
17081 2011-07-14 Martin Rudalics <rudalics@gmx.at>
17082
17083 * indent.c (Fvertical_motion): Set and restore w->pointm when
17084 saving and restoring the window's buffer (Bug#9006).
17085
17086 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
17087
17088 * editfns.c (Fstring_to_char): Clarify just what is returned
17089 (bug#6576). Text by Eli Zaretskii.
17090
17091 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
17092
17093 * gnutls.c (init_gnutls_functions): Honor gnutls_log_level (bug#9059).
17094
17095 2011-07-13 Eli Zaretskii <eliz@gnu.org>
17096
17097 * buffer.c (mmap_find): Fix a typo.
17098
17099 2011-07-13 Johan Bockgård <bojohan@gnu.org>
17100
17101 Fix execution of x selection hooks.
17102 * xselect.c (Qx_lost_selection_functions)
17103 (Qx_sent_selection_functions): New vars.
17104 (syms_of_xselect): DEFSYM them.
17105 (x_handle_selection_request): Pass Qx_sent_selection_functions
17106 rather than Vx_sent_selection_functions to Frun_hook_with_args.
17107 (x_handle_selection_clear,x_clear_frame_selections):
17108 Pass Qx_lost_selection_functions rather than
17109 Vx_lost_selection_functions to Frun_hook_with_args.
17110
17111 2011-07-13 Paul Eggert <eggert@cs.ucla.edu>
17112
17113 * buffer.c (Fget_buffer_create): Initialize inhibit_shrinking.
17114 The old code sometimes used this field without initializing it.
17115
17116 * alloc.c (gc_sweep): Don't read past end of array.
17117 In theory, the old code could also have corrupted Emacs internals,
17118 though it'd be very unlikely.
17119
17120 2011-07-12 Andreas Schwab <schwab@linux-m68k.org>
17121
17122 * character.c (Fcharacterp): Don't advertise optional ignored
17123 argument. (Bug#4026)
17124
17125 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
17126
17127 * keymap.c (syms_of_keymap): Clarify that "modifier" is "modifier
17128 key" (bug#4257).
17129
17130 * window.c (Fset_window_start): Doc fix (bug#4199).
17131 (Fset_window_hscroll): Ditto.
17132
17133 2011-07-12 Paul Eggert <eggert@cs.ucla.edu>
17134
17135 Fix minor new problems caught by GCC 4.6.1.
17136 * term.c (init_tty): Remove unused local.
17137 * xsettings.c (store_monospaced_changed): Define this function only
17138 if (defined HAVE_GSETTINGS || defined HAVE_GCONF), as it's
17139 not used otherwise.
17140
17141 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
17142
17143 * xdisp.c (Vresize_mini_windows): Minor doc fix (Bug#3300).
17144
17145 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
17146
17147 * xdisp.c (syms_of_xdisp): Make it explicit that the mini-windows
17148 are the mini-buffer and the echo area (bug#3320).
17149
17150 * term.c (init_tty): Remove support for supdup, c10 and perq
17151 terminals, which are no longer supported (bug#1482).
17152
17153 2011-07-10 Johan Bockgård <bojohan@gnu.org>
17154
17155 * xdisp.c (Ftool_bar_lines_needed): Fix WINDOWP check.
17156
17157 2011-07-10 Jan Djärv <jan.h.d@swipnet.se>
17158
17159 * xmenu.c (menu_highlight_callback): Only pass frame to show_help_event
17160 for non-popups (Bug#3642).
17161
17162 2011-07-10 Andreas Schwab <schwab@linux-m68k.org>
17163
17164 * alloc.c (reset_malloc_hooks): Protoize.
17165 * buffer.c (mmap_init, mmap_find, mmap_free_1, mmap_enlarge)
17166 (mmap_set_vars, mmap_alloc, mmap_free, mmap_realloc): Likewise.
17167 * cm.c (losecursor): Likewise.
17168 * data.c (fmod): Likewise.
17169 * dispnew.c (swap_glyphs_in_rows): Likewise.
17170 * emacs.c (memory_warning_signal): Likewise.
17171 * floatfns.c (float_error): Likewise.
17172 * font.c (check_gstring, check_otf_features, otf_tag_symbol)
17173 (otf_open, font_otf_capability, generate_otf_features)
17174 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
17175 Likewise.
17176 * image.c (pbm_read_file): Likewise.
17177 * indent.c (string_display_width): Likewise.
17178 * intervals.c (check_for_interval, search_for_interval)
17179 (inc_interval_count, count_intervals, root_interval)
17180 (adjust_intervals_for_insertion, make_new_interval): Likewise.
17181 * lread.c (defalias): Likewise.
17182 * ralloc.c (r_alloc_check): Likewise.
17183 * regex.c (set_image_of_range_1, set_image_of_range)
17184 (regex_grow_registers): Likewise.
17185 * sysdep.c (strerror): Likewise.
17186 * termcap.c (valid_filename_p, tprint, main): Likewise.
17187 * tparam.c (main): Likewise.
17188 * unexhp9k800.c (run_time_remap, save_data_space)
17189 (update_file_ptrs, read_header, write_header, calculate_checksum)
17190 (copy_file, copy_rest, display_header): Likewise.
17191 * widget.c (mark_shell_size_user_specified, create_frame_gcs):
17192 Likewise.
17193 * xdisp.c (check_it): Likewise.
17194 * xfaces.c (register_color, unregister_color, unregister_colors):
17195 Likewise.
17196 * xfns.c (print_fontset_result): Likewise.
17197 * xrdb.c (member, fatal, main): Likewise.
17198
17199 2011-07-10 Paul Eggert <eggert@cs.ucla.edu>
17200
17201 Fix minor problems found by static checking (Bug#9031).
17202 * chartab.c (char_table_set_range, map_sub_char_table):
17203 Remove unused locals.
17204 (uniprop_table): Now static.
17205 * composite.c (_work_char): Remove unused static var.
17206
17207 2011-07-09 Juanma Barranquero <lekktu@gmail.com>
17208
17209 * chartab.c (uniprop_table_uncompress): Remove unused local variable.
17210
17211 2011-07-09 Jan Djärv <jan.h.d@swipnet.se>
17212
17213 * gtkutil.c (qttip_cb): Remove code without function.
17214
17215 2011-07-09 Eli Zaretskii <eliz@gnu.org>
17216
17217 * w32.c (pthread_sigmask): New stub.
17218
17219 2011-07-08 Paul Eggert <eggert@cs.ucla.edu>
17220
17221 Use pthread_sigmask, not sigprocmask (Bug#9010).
17222 sigprocmask is portable only for single-threaded applications, and
17223 Emacs can be multi-threaded when it uses GTK.
17224 * Makefile.in (LIB_PTHREAD_SIGMASK): New macro.
17225 (LIBES): Use it.
17226 * callproc.c (Fcall_process):
17227 * process.c (create_process):
17228 * sysdep.c (sys_sigblock, sys_sigunblock, sys_sigsetmask):
17229 Use pthread_sigmask, not sigprocmask.
17230
17231 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
17232
17233 * gtkutil.c (qttip_cb): Set line wrap to FALSE for tooltip widget.
17234 (xg_prepare_tooltip): Revert text in x->ttip_lbl, margins was
17235 wrong (Bug#8591).
17236
17237 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
17238
17239 * gtkutil.c (xg_prepare_tooltip): Fix indentation and comment.
17240 Put text in x->ttip_lbl instead of gtk_tooltip_set_text (Bug#8591).
17241 (xg_hide_tooltip): Fix comment.
17242
17243 * nsterm.m (initFrameFromEmacs): Don't use ns_return_types
17244 in registerServicesMenuSendTypes.
17245 (validRequestorForSendType): Don't check ns_return_types.
17246
17247 * nsfns.m (Fx_open_connection): Put NSStringPboardType into
17248 ns_return_type.
17249
17250 2011-07-08 Jason Rumney <jasonr@gnu.org>
17251
17252 * w32term.c (x_make_frame_visible): Use SH_SHOWNORMAL rather than
17253 SH_SHOW for hidden windows (Bug#5482).
17254
17255 * w32fns.c (w32_wnd_proc) [WM_TIMER, WM_SET_CURSOR]: Avoid using
17256 frame struct members of non-existent frames (Bug#6284).
17257
17258 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
17259
17260 * nsterm.m (keyDown): Call to wantsToDelayTextChangeNotifications and
17261 variable firstTime not needed on OSX >= 10.6.
17262 (setPosition): setFloatValue:knobProportion: is deprecated on OSX
17263 >= 10.5. Use setKnobProportion, setDoubleValue.
17264
17265 * nsterm.h (MAC_OS_X_VERSION_10_3, MAC_OS_X_VERSION_10_4)
17266 (MAC_OS_X_VERSION_10_5): Define if not defined.
17267 (EmacsView, EmacsTooltip): Implements NSWindowDelegate on OSX >= 10.6.
17268 (EmacsMenu): Implements NSMenuDelegate on OSX >= 10.6.
17269 (EmacsToolbar): Implements NSToolbarDelegate on OSX >= 10.6.
17270
17271 * nsselect.m (ns_string_from_pasteboard): Don't use deprecated methods
17272 cString and lossyCString on OSX >= 10.4.
17273
17274 * nsmenu.m (fillWithWidgetValue): Don't use deprecated method
17275 sizeToFit on OSX >= 10.2.
17276
17277 * nsimage.m (allocInitFromFile): Don't use deprecated method
17278 bestRepresentationForDevice on OSX >= 10.6.
17279
17280 * nsfns.m (check_ns_display_info): Cast to long and use %ld in error
17281 to avoid warning.
17282
17283 * emacs.c: Declare unexec_init_emacs_zone.
17284
17285 * nsgui.h: Fix compiler warning about gnulib redefining verify.
17286
17287 * nsselect.m (ns_get_local_selection): Change to extern (Bug#8842).
17288
17289 * nsmenu.m (ns_update_menubar): Remove useless setDelegate call
17290 on svcsMenu (Bug#8842).
17291
17292 * nsfns.m (Fx_open_connection): Remove NSStringPboardType from
17293 ns_return_types.
17294 (Fns_list_services): Just return Qnil on 10.6, code not working there.
17295
17296 * nsterm.m (QUTF8_STRING): Declare.
17297 (initFrameFromEmacs): Call registerServicesMenuSendTypes.
17298 (validRequestorForSendType): Return type is (id).
17299 Change indexOfObjectIdenticalTo to indexOfObject.
17300 Check if we have local selection before returning self (Bug#8842).
17301 (writeSelectionToPasteboard): Put local selection into paste board
17302 if we have a local selection (Bug#8842).
17303 (syms_of_nsterm): DEFSYM QUTF8_STRING.
17304
17305 * nsterm.h (MAC_OS_X_VERSION_10_6): Define here instead of nsterm.m.
17306 (ns_get_local_selection): Declare.
17307
17308 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
17309
17310 * keymap.c (describe_map_tree): Don't insert a double newline at
17311 the end of the buffer (bug#1169) and return whether we inserted
17312 something.
17313
17314 * callint.c (Fcall_interactively): Change "reading args" to
17315 "providing args" to try to clarify what it does (bug#1010).
17316
17317 2011-07-07 Kenichi Handa <handa@m17n.org>
17318
17319 * composite.c (composition_compute_stop_pos): Ignore a static
17320 composition starting before CHARPOS (Bug#8915).
17321
17322 * xdisp.c (handle_composition_prop): Likewise.
17323
17324 2011-07-07 Eli Zaretskii <eliz@gnu.org>
17325
17326 * term.c (produce_glyphs) <xassert>: Allow IT_GLYPHLESS in it->what.
17327 (Bug#9015)
17328
17329 2011-07-07 Kenichi Handa <handa@m17n.org>
17330
17331 * character.h (unicode_category_t): New enum type.
17332
17333 * chartab.c (uniprop_decoder_t, uniprop_encoder_t): New types.
17334 (Qchar_code_property_table): New variable.
17335 (UNIPROP_TABLE_P, UNIPROP_GET_DECODER)
17336 (UNIPROP_COMPRESSED_FORM_P): New macros.
17337 (char_table_ascii): Uncompress the compressed values.
17338 (sub_char_table_ref): New arg is_uniprop. Callers changed.
17339 Uncompress the compressed values.
17340 (sub_char_table_ref_and_range): Likewise.
17341 (char_table_ref_and_range): Uncompress the compressed values.
17342 (sub_char_table_set): New arg is_uniprop. Callers changed.
17343 Uncompress the compressed values.
17344 (sub_char_table_set_range): Args changed. Callers changed.
17345 (char_table_set_range): Adjuted for the above change.
17346 (map_sub_char_table): Delete args default_val and parent. Add arg
17347 top. Give decoded values to a Lisp function.
17348 (map_char_table): Adjust for the above change. Give decoded
17349 values to a Lisp function. Gcpro more variables.
17350 (uniprop_table_uncompress)
17351 (uniprop_decode_value_run_length): New functions.
17352 (uniprop_decoder, uniprop_decoder_count): New variables.
17353 (uniprop_get_decoder, uniprop_encode_value_character)
17354 (uniprop_encode_value_run_length, uniprop_encode_value_numeric):
17355 New functions.
17356 (uniprop_encoder, uniprop_encoder_count): New variables.
17357 (uniprop_get_encoder, uniprop_table)
17358 (Funicode_property_table_internal, Fget_unicode_property_internal)
17359 (Fput_unicode_property_internal): New functions.
17360 (syms_of_chartab): DEFSYM Qchar_code_property_table, defsubr
17361 Sunicode_property_table_internal, Sget_unicode_property_internal,
17362 and Sput_unicode_property_internal. Defvar_lisp
17363 char-code-property-alist.
17364
17365 * composite.c (CHAR_COMPOSABLE_P): Adjust for the change of
17366 Vunicode_category_table.
17367
17368 * font.c (font_range): Adjust for the change of
17369 Vunicode_category_table.
17370
17371 2011-07-07 Dan Nicolaescu <dann@ics.uci.edu>
17372
17373 * m/iris4d.h: Remove file, move contents ...
17374 * s/irix6-5.h: ... here.
17375
17376 2011-07-06 Paul Eggert <eggert@cs.ucla.edu>
17377
17378 Remove unportable assumption about struct layout (Bug#8884).
17379 * alloc.c (mark_buffer):
17380 * buffer.c (reset_buffer_local_variables, Fbuffer_local_variables)
17381 (clone_per_buffer_values): Don't assume that
17382 sizeof (struct buffer) is a multiple of sizeof (Lisp_Object).
17383 This isn't true in general, and it's particularly not true
17384 if Emacs is configured with --with-wide-int.
17385 * buffer.h (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER):
17386 New macros, used in the buffer.c change.
17387
17388 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
17389
17390 * xsettings.c: Use both GConf and GSettings if both are available.
17391 (store_config_changed_event): Add comment.
17392 (dpyinfo_valid, store_font_name_changed, map_tool_bar_style)
17393 (store_tool_bar_style_changed): New functions.
17394 (store_monospaced_changed): Add comment. Call dpyinfo_valid.
17395 (struct xsettings): Move font inside HAVE_XFT.
17396 (GSETTINGS_TOOL_BAR_STYLE, GSETTINGS_FONT_NAME): New defines.
17397 (GSETTINGS_MONO_FONT): Rename from SYSTEM_MONO_FONT.
17398 Move inside HAVE_XFT.
17399 (something_changed_gsettingsCB): Rename from something_changedCB.
17400 Check for changes in GSETTINGS_TOOL_BAR_STYLE and GSETTINGS_FONT_NAME
17401 also.
17402 (GCONF_TOOL_BAR_STYLE, GCONF_FONT_NAME): New defines.
17403 (GCONF_MONO_FONT): Rename from SYSTEM_MONO_FONT. Move inside HAVE_XFT.
17404 (something_changed_gconfCB): Rename from something_changedCB.
17405 Check for changes in GCONF_TOOL_BAR_STYLE and GCONF_FONT_NAME also.
17406 (parse_settings): Move check for font inside HAVE_XFT.
17407 (read_settings, apply_xft_settings): Add comment.
17408 (read_and_apply_settings): Add comment. Call map_tool_bar_style and
17409 store_tool_bar_style_changed. Move check for font inside HAVE_XFT and
17410 call store_font_name_changed.
17411 (xft_settings_event): Add comment.
17412 (init_gsettings): Add comment. Get values for GSETTINGS_TOOL_BAR_STYLE
17413 and GSETTINGS_FONT_NAME. Move check for fonts within HAVE_XFT.
17414 (init_gconf): Add comment. Get values for GCONF_TOOL_BAR_STYLE
17415 and GCONF_FONT_NAME. Move check for fonts within HAVE_XFT.
17416 (xsettings_initialize): Call init_gsettings last.
17417 (xsettings_get_system_font, xsettings_get_system_normal_font):
17418 Add comment.
17419
17420 2011-07-05 Paul Eggert <eggert@cs.ucla.edu>
17421
17422 Random fixes. E.g., (random) never returned negative values.
17423 * fns.c (Frandom): Use GET_EMACS_TIME for random seed, and add the
17424 subseconds part to the entropy, as that's a bit more random.
17425 Prefer signed to unsigned, since the signedness doesn't matter and
17426 in general we prefer signed. When given a limit, use a
17427 denominator equal to INTMASK + 1, not to VALMASK + 1, because the
17428 latter isn't right if USE_2_TAGS_FOR_INTS.
17429 * sysdep.c (get_random): Return a value in the range 0..INTMASK,
17430 not 0..VALMASK. Don't discard "excess" bits that random () returns.
17431
17432 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
17433
17434 * textprop.c (text_property_stickiness):
17435 Obey Vtext_property_default_nonsticky.
17436 (syms_of_textprop): Add `display' to Vtext_property_default_nonsticky.
17437 * w32fns.c (syms_of_w32fns):
17438 * xfns.c (syms_of_xfns): Don't Add `display' since it's there by default.
17439
17440 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
17441
17442 * fileio.c (barf_or_query_if_file_exists): Use S_ISDIR.
17443 This is more efficient than Ffile_directory_p and avoids a minor race.
17444
17445 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
17446
17447 * buffer.c (Foverlay_put): Say what the return value is
17448 (bug#7835).
17449
17450 * fileio.c (barf_or_query_if_file_exists): Check first if the file
17451 is a directory before asking whether to use the file name
17452 (bug#7564).
17453 (barf_or_query_if_file_exists): Make the "File is a directory"
17454 error be more correct.
17455
17456 * fns.c (Frequire): Remove the mention of the .gz files, since
17457 that's installation-specific, but keep the mention of
17458 `get-load-suffixes'.
17459
17460 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
17461
17462 * editfns.c (Fformat_time_string): Don't assume strlen fits in int.
17463 Report string overflow if the output is too long.
17464
17465 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
17466
17467 * gnutls.c (Fgnutls_boot): Don't mention :verify-error.
17468 (syms_of_gnutls): Remove duplicate DEFSYM for
17469 Qgnutls_bootprop_verify_hostname_error, an error for
17470 Qgnutls_bootprop_verify_error (which is no longer used).
17471
17472 * eval.c (find_handler_clause): Remove parameters `sig' and `data',
17473 unused since 2011-01-26T20:02:07Z!monnier@iro.umontreal.ca. All callers changed.
17474 Also (re)move comments that are misplaced or no longer relevant.
17475
17476 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
17477
17478 * callint.c (Finteractive): Clarify the meaning of "@" (bug#8813).
17479
17480 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
17481
17482 * xfaces.c (Finternal_merge_in_global_face): Modify the foreground
17483 and background color parameters if they have been changed.
17484
17485 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
17486
17487 * editfns.c (Fformat): Clarify the - and 0 flags (bug#6659).
17488
17489 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
17490
17491 * xsettings.c (SYSTEM_FONT): Define only when used.
17492 No need to define when HAVE_GSETTINGS || !HAVE_XFT.
17493
17494 * keymap.c (access_keymap_1): Now static.
17495
17496 2011-07-02 Chong Yidong <cyd@stupidchicken.com>
17497
17498 * keyboard.c (command_loop_1): If a down-mouse event is unbound,
17499 leave any prefix arg for the up event (Bug#1586).
17500
17501 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
17502
17503 * lread.c (syms_of_lread): Mention single symbols defined by
17504 `defvar' or `defconst' (bug#7154).
17505
17506 * fns.c (Frequire): Mention .el.gz files (bug#7314).
17507 (Frequire): Mention get-load-suffixes.
17508
17509 2011-07-02 Martin Rudalics <rudalics@gmx.at>
17510
17511 * window.h (window): Remove clone_number slot.
17512 * window.c (Fwindow_clone_number, Fset_window_clone_number):
17513 Remove.
17514 (make_parent_window, make_window, saved_window)
17515 (Fset_window_configuration, save_window_save): Don't deal with
17516 clone numbers.
17517 * buffer.c (Qclone_number): Remove declaration.
17518 (sort_overlays, overlay_strings): Don't deal with clone numbers.
17519
17520 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
17521
17522 Add multiple inheritance to keymaps.
17523 * keymap.c (Fmake_composed_keymap): New function.
17524 (Fset_keymap_parent): Simplify.
17525 (fix_submap_inheritance): Remove.
17526 (access_keymap_1): New function extracted from access_keymap to handle
17527 embedded parents and handle lists of maps.
17528 (access_keymap): Use it.
17529 (Fkeymap_prompt, map_keymap_internal, map_keymap, store_in_keymap)
17530 (Fcopy_keymap): Handle embedded parents.
17531 (Fcommand_remapping, define_as_prefix): Simplify.
17532 (Fkey_binding): Simplify.
17533 (syms_of_keymap): Move minibuffer-local-completion-map,
17534 minibuffer-local-filename-completion-map,
17535 minibuffer-local-must-match-map, and
17536 minibuffer-local-filename-must-match-map to Elisp.
17537 (syms_of_keymap): Defsubr make-composed-keymap.
17538 * keyboard.c (menu_bar_items): Use map_keymap_canonical.
17539 (parse_menu_item): Trivial simplification.
17540
17541 2011-07-01 Glenn Morris <rgm@gnu.org>
17542
17543 * Makefile.in (SETTINGS_LIBS): Fix typo.
17544
17545 2011-07-01 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
17546
17547 * coding.c (Fencode_coding_string): Record the last coding system
17548 used, as the function doc string says (bug#8738).
17549
17550 2011-07-01 Jan Djärv <jan.h.d@swipnet.se>
17551
17552 * xsettings.c (store_monospaced_changed): Take new font as arg and
17553 check for change against current_mono_font.
17554 (EMACS_TYPE_SETTINGS): Remove this and related defines.
17555 (emacs_settings_constructor, emacs_settings_get_property)
17556 (emacs_settings_set_property, emacs_settings_class_init)
17557 (emacs_settings_init, gsettings_obj): Remove.
17558 (something_changedCB): New function for HAVE_GSETTINGS.
17559 (something_changedCB): HAVE_GCONF: Call store_monospaced_changed
17560 with value as argument.
17561 (init_gsettings): Check that GSETTINGS_SCHEMA exists before calling
17562 g_settings_new (Bug#8967). Do not create gsettings_obj.
17563 Remove calls to g_settings_bind. Connect something_changedCB to
17564 "changed".
17565
17566 * xgselect.c: Add defined (HAVE_GSETTINGS).
17567 (xgselect_initialize): Ditto.
17568
17569 * process.c: Add defined (HAVE_GSETTINGS) for xgselect.h
17570 (wait_reading_process_output): Add defined (HAVE_GSETTINGS) for
17571 xg_select.
17572
17573 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
17574
17575 * eval.c (struct backtrace): Simplify and port the data structure.
17576 Do not assume that "int nargs : BITS_PER_INT - 2;" produces a
17577 signed bit field, as this assumption is not portable and it makes
17578 Emacs crash when compiled with Sun C 5.8 on sparc. Do not use
17579 "char debug_on_exit : 1" as this is not portable either; instead,
17580 use the portable "unsigned int debug_on_exit : 1". Remove unused
17581 member evalargs. Remove obsolete comments about cc bombing out.
17582
17583 2011-06-30 Jan Djärv <jan.h.d@swipnet.se>
17584
17585 * xsettings.c: Include glib-object.h, gio/gio.h if HAVE_GSETTINGS.
17586 Let HAVE_GSETTINGS override HAVE_GCONF.
17587 (store_monospaced_changed): New function.
17588 (EMACS_SETTINGS): A new type derived from GObject to handle
17589 GSettings notifications.
17590 (emacs_settings_constructor, emacs_settings_get_property)
17591 (emacs_settings_set_property, emacs_settings_class_init):
17592 New functions.
17593 (gsettings_client, gsettings_obj): New variables.
17594 (GSETTINGS_SCHEMA): New define.
17595 (something_changedCB): Call store_monospaced_changed.
17596 (init_gsettings): New function.
17597 (xsettings_initialize): Call init_gsettings.
17598 (syms_of_xsettings): Initialize gsettings_client, gsettings_obj
17599 to NULL.
17600
17601 * Makefile.in (SETTINGS_CFLAGS, SETTINGS_LIBS): Rename from
17602 GCONF_CFLAGS/LIBS.
17603
17604 2011-06-29 Martin Rudalics <rudalics@gmx.at>
17605
17606 * window.c (resize_root_window, grow_mini_window)
17607 (shrink_mini_window): Rename Qresize_root_window to
17608 Qwindow_resize_root_window and Qresize_root_window_vertically to
17609 Qwindow_resize_root_window_vertically.
17610
17611 2011-06-28 Paul Eggert <eggert@cs.ucla.edu>
17612
17613 * gnutls.c (Qgnutls_bootprop_verify_error): Remove unused var.
17614
17615 2011-06-27 Juanma Barranquero <lekktu@gmail.com>
17616
17617 * makefile.w32-in: Redesign dependencies so they reflect more
17618 clearly which files are directly included by each source file,
17619 and not through other includes.
17620
17621 2011-06-27 Martin Rudalics <rudalics@gmx.at>
17622
17623 * buffer.c (Qclone_number): Declare static and DEFSYM it.
17624 (sort_overlays, overlay_strings): When an overlay's clone number
17625 matches the window's clone number process the overlay even if
17626 the overlay's window property doesn't match the current window.
17627
17628 * window.c (Fwindow_vchild): Rename to Fwindow_top_child.
17629 (Fwindow_hchild): Rename to Fwindow_left_child.
17630 (Fwindow_next): Rename to Fwindow_next_sibling.
17631 (Fwindow_prev): Rename to Fwindow_prev_sibling.
17632 (resize_window_check): Rename to window_resize_check.
17633 (resize_window_apply): Rename to window_resize_apply.
17634 (Fresize_window_apply): Rename to Fwindow_resize_apply.
17635 (Fdelete_other_windows_internal, resize_frame_windows)
17636 (Fsplit_window_internal, Fdelete_window_internal)
17637 (grow_mini_window, shrink_mini_window)
17638 (Fresize_mini_window_internal): Fix callers accordingly.
17639
17640 2011-06-26 Jan Djärv <jan.h.d@swipnet.se>
17641
17642 * emacsgtkfixed.h: State that this is only used with Gtk+3.
17643 (emacs_fixed_set_min_size): Remove.
17644 (emacs_fixed_new): Take frame as argument.
17645
17646 * emacsgtkfixed.c: State that this is only used with Gtk+3.
17647 (_EmacsFixedPrivate): Remove minwidth/height.
17648 Add struct frame *f.
17649 (emacs_fixed_init): Initialize priv->f.
17650 (get_parent_class, emacs_fixed_set_min_size): Remove.
17651 (emacs_fixed_new): Set priv->f to argument.
17652 (emacs_fixed_get_preferred_width)
17653 (emacs_fixed_get_preferred_height): Use min_width/height from
17654 frames size_hint to set minimum and natural (Bug#8919).
17655 (XSetWMSizeHints, XSetWMNormalHints): Override these functions
17656 and use min_width/height from frames size_hint to set
17657 min_width/height (Bug#8919).
17658
17659 * gtkutil.c (xg_create_frame_widgets): Pass f to emacs_fixed_new.
17660 (x_wm_set_size_hint): Remove call to emacs_fixed_set_min_size.
17661 Fix indentation.
17662
17663 2011-06-26 Eli Zaretskii <eliz@gnu.org>
17664
17665 * bidi.c (bidi_paragraph_init): Test for ZV_BYTE before calling
17666 bidi_at_paragraph_end, since fast_looking_at doesn't like to be
17667 called at ZV.
17668
17669 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
17670
17671 * process.c (wait_reading_process_output): Bypass select if
17672 waiting for a cell while ignoring keyboard input, and input is
17673 pending. Suggested by Jan Djärv (Bug#8869).
17674
17675 2011-06-25 Paul Eggert <eggert@cs.ucla.edu>
17676
17677 Use gnulib's dup2 module instead of rolling our own.
17678 * sysdep.c (dup2) [!HAVE_DUP2]: Remove; gnulib now does this.
17679
17680 2011-06-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17681
17682 * dispnew.c (scrolling_window): Before scrolling, turn off a
17683 mouse-highlight in the window being scrolled.
17684
17685 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
17686
17687 Move DEFSYM to lisp.h and use everywhere.
17688
17689 * character.h (DEFSYM): Move declaration...
17690 * lisp.h (DEFSYM): ...here.
17691
17692 * gnutls.c:
17693 * minibuf.c:
17694 * w32menu.c:
17695 * w32proc.c:
17696 * w32select.c: Don't include character.h.
17697
17698 * alloc.c (syms_of_alloc):
17699 * buffer.c (syms_of_buffer):
17700 * bytecode.c (syms_of_bytecode):
17701 * callint.c (syms_of_callint):
17702 * casefiddle.c (syms_of_casefiddle):
17703 * casetab.c (init_casetab_once):
17704 * category.c (init_category_once, syms_of_category):
17705 * ccl.c (syms_of_ccl):
17706 * cmds.c (syms_of_cmds):
17707 * composite.c (syms_of_composite):
17708 * dbusbind.c (syms_of_dbusbind):
17709 * dired.c (syms_of_dired):
17710 * dispnew.c (syms_of_display):
17711 * doc.c (syms_of_doc):
17712 * editfns.c (syms_of_editfns):
17713 * emacs.c (syms_of_emacs):
17714 * eval.c (syms_of_eval):
17715 * fileio.c (syms_of_fileio):
17716 * fns.c (syms_of_fns):
17717 * frame.c (syms_of_frame):
17718 * fringe.c (syms_of_fringe):
17719 * insdel.c (syms_of_insdel):
17720 * keymap.c (syms_of_keymap):
17721 * lread.c (init_obarray, syms_of_lread):
17722 * macros.c (syms_of_macros):
17723 * msdos.c (syms_of_msdos):
17724 * print.c (syms_of_print):
17725 * process.c (syms_of_process):
17726 * search.c (syms_of_search):
17727 * sound.c (syms_of_sound):
17728 * syntax.c (init_syntax_once, syms_of_syntax):
17729 * terminal.c (syms_of_terminal):
17730 * textprop.c (syms_of_textprop):
17731 * undo.c (syms_of_undo):
17732 * w32.c (globals_of_w32):
17733 * window.c (syms_of_window):
17734 * xdisp.c (syms_of_xdisp):
17735 * xfaces.c (syms_of_xfaces):
17736 * xfns.c (syms_of_xfns):
17737 * xmenu.c (syms_of_xmenu):
17738 * xsettings.c (syms_of_xsettings):
17739 * xterm.c (syms_of_xterm): Use DEFSYM.
17740
17741 2011-06-24 Teodor Zlatanov <tzz@lifelogs.com>
17742
17743 * gnutls.c (syms_of_gnutls): Use the DEFSYM macro from character.h.
17744
17745 2011-06-23 Paul Eggert <eggert@cs.ucla.edu>
17746
17747 Integer and buffer overflow fixes (Bug#8873).
17748
17749 * print.c (printchar, strout): Check for string overflow.
17750 (PRINTPREPARE, printchar, strout):
17751 Don't set size unless allocation succeeds.
17752
17753 * minibuf.c (read_minibuf_noninteractive): Use ptrdiff_t, not int,
17754 for sizes. Check for string overflow more accurately.
17755 Simplify newline removal at end; this suppresses a GCC 4.6.0 warning.
17756
17757 * macros.c: Integer and buffer overflow fixes.
17758 * keyboard.h (struct keyboard.kbd_macro_bufsize):
17759 * macros.c (Fstart_kbd_macro, store_kbd_macro_char):
17760 Use ptrdiff_t, not int, for sizes.
17761 Don't increment bufsize until after realloc succeeds.
17762 Check for size-calculation overflow.
17763 (Fstart_kbd_macro): Use EMACS_INT, not int, for XINT result.
17764
17765 * lisp.h (DEFVAR_KBOARD): Use offsetof instead of char * finagling.
17766
17767 * lread.c: Integer overflow fixes.
17768 (read_integer): Radix is now EMACS_INT, not int,
17769 to improve quality of diagnostics for out-of-range radices.
17770 Calculate buffer size correctly for out-of-range radices.
17771 (read1): Check for integer overflow in radices, and in
17772 read-circle numbers.
17773 (read_escape): Avoid int overflow.
17774 (Fload, openp, read_buffer_size, read1)
17775 (substitute_object_recurse, read_vector, read_list, map_obarray):
17776 Use ptrdiff_t, not int, for sizes.
17777 (read1): Use EMACS_INT, not int, for sizes.
17778 Check for size overflow.
17779
17780 * image.c (cache_image): Check for size arithmetic overflow.
17781
17782 * lread.c: Integer overflow issues.
17783 (saved_doc_string_size, saved_doc_string_length)
17784 (prev_saved_doc_string_size, prev_saved_doc_string_length):
17785 Now ptrdiff_t, not int.
17786 (read1): Don't assume doc string length fits in int. Check for
17787 out-of-range doc string lengths.
17788 (read_list): Don't assume file position fits in int.
17789 (read_escape): Check for hex character overflow.
17790
17791 2011-06-22 Leo Liu <sdl.web@gmail.com>
17792
17793 * minibuf.c (Fcompleting_read_default, Vcompleting_read_function):
17794 Move to minibuffer.el.
17795
17796 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
17797
17798 Fixes for GLYPH_DEBUG found by GCC 4.6.0 static checking.
17799 The following patches are for when GLYPH_DEBUG && !XASSERT.
17800 * dispextern.h (trace_redisplay_p, dump_glyph_string):
17801 * dispnew.c (flush_stdout):
17802 * xdisp.c (dump_glyph_row, dump_glyph_matrix, dump_glyph):
17803 Mark as externally visible.
17804 * dispnew.c (check_window_matrix_pointers): Now static.
17805 * dispnew.c (window_to_frame_vpos):
17806 * xfns.c (unwind_create_frame):
17807 * xterm.c (x_check_font): Remove unused local.
17808 * scroll.c (CHECK_BOUNDS):
17809 * xfaces.c (cache_fache): Rename local to avoid shadowing.
17810 * xfns.c, w32fns.c (image_cache_refcount, dpyinfo_refcount): Now static.
17811 * xdisp.c (check_window_end): Now a no-op if !XASSERTS.
17812 (debug_first_unchanged_at_end_vpos, debug_last_unchanged_at_beg_vpos)
17813 (debug_dvpos, debug_dy, debug_delta, debug_delta_bytes, debug_end_vpos):
17814 Now static.
17815 (debug_method_add): Use va_list and vsprintf rather than relying
17816 on undefined behavior with wrong number of arguments.
17817 (dump_glyph, dump_glyph_row, Fdump_glyph_matrix):
17818 Don't assume ptrdiff_t and EMACS_INT are the same width as int.
17819 In this code, it's OK to assume C99 behavior for ptrdiff_t formats
17820 since we're not interested in debugging glyphs with old libraries.
17821 * xfaces.c (cache_face): Move debugging code earlier; this pacifies
17822 GCC 4.6.0's static checking.
17823
17824 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
17825
17826 Integer overflow and signedness fixes (Bug#8873).
17827 A few related buffer overrun fixes, too.
17828
17829 * font.c (font_score): Use EMACS_INT, not int, to store XINT value.
17830
17831 * dispextern.h (struct face.stipple):
17832 * image.c (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
17833 (x_bitmap_mask, x_allocate_bitmap_record)
17834 (x_create_bitmap_from_data, x_create_bitmap_from_file)
17835 (x_destroy_bitmap, x_destroy_all_bitmaps, x_create_bitmap_mask)
17836 (x_create_bitmap_from_xpm_data):
17837 * nsterm.h (struct ns_display_info.bitmaps_size, .bitmaps_last):
17838 * w32term.h (struct w32_display_info.icon_bitmap_id, .bitmaps_size)
17839 (.bitmaps_last):
17840 * xfaces.c (load_pixmap):
17841 * xterm.c (x_bitmap_icon, x_wm_set_icon_pixmap):
17842 * xterm.h (struct x_display_info.icon_bitmap_id, .bitmaps_size)
17843 (.bitmaps_last, struct x_output.icon_bitmap):
17844 Use ptrdiff_t, not int, for bitmap indexes.
17845 (x_allocate_bitmap_record): Check for size overflow.
17846 * dispextern.h, lisp.h: Adjust to API changes elsewhere.
17847
17848 Use ptrdiff_t, not int, for overlay counts.
17849 * buffer.h (overlays_at, sort_overlays, GET_OVERLAYS_AT):
17850 * editfns.c (overlays_around, get_pos_property):
17851 * textprop.c (get_char_property_and_overlay):
17852 * xdisp.c (next_overlay_change, note_mouse_highlight):
17853 * xfaces.c (face_at_buffer_position):
17854 * buffer.c (OVERLAY_COUNT_MAX): New macro.
17855 (overlays_at, overlays_in, sort_overlays, Foverlays_at)
17856 (Fnext_overlay_change, Fprevious_overlay_change)
17857 (mouse_face_overlay_overlaps, Foverlays_in):
17858 Use ptrdiff_t, not int, for sizes.
17859 (overlays_at, overlays_in): Check for size-calculation overflow.
17860
17861 * xterm.c (xim_initialize, same_x_server): Strlen may not fit in int.
17862
17863 * xsmfns.c (smc_save_yourself_CB, x_session_initialize): Avoid strlen.
17864 (x_session_initialize): Do not assume string length fits in int.
17865
17866 * xsettings.c (apply_xft_settings): Fix potential buffer overrun.
17867 This is unlikely, but can occur if DPI is outlandish.
17868
17869 * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
17870 * xselect.c (Fx_get_atom_name): Avoid need for strlen.
17871
17872 * xrdb.c: Don't assume strlen fits in int; avoid some strlens.
17873 * xrdb.c (magic_file_p, search_magic_path):
17874 Omit last arg SUFFIX; it was always 0. All callers changed.
17875 (magic_file_p): Use ptrdiff_t, not int. Check for size overflow.
17876
17877 * xfont.c (xfont_match): Avoid need for strlen.
17878
17879 * xfns.c: Don't assume strlen fits in int.
17880 (xic_create_fontsetname, x_window): Use ptrdiff_t, not int.
17881
17882 * xdisp.c (message_log_check_duplicate): Return intmax_t,
17883 not unsigned long, as we prefer signed integers. All callers changed.
17884 Detect integer overflow in repeat count.
17885 (message_dolog): Don't assume print length fits in 39 bytes.
17886 (display_mode_element): Don't assume strlen fits in int.
17887
17888 * termcap.c: Don't assume sizes fit in int and never overflow.
17889 (struct termcap_buffer, tgetent): Use ptrdiff_t, not int, for sizes.
17890 (gobble_line): Check for size-calculation overflow.
17891
17892 * minibuf.c (Fread_buffer):
17893 * lread.c (intern, intern_c_string):
17894 * image.c (xpm_scan) [HAVE_NS && !HAVE_XPM]:
17895 Don't assume string length fits in int.
17896
17897 * keyboard.c (parse_tool_bar_item):
17898 * gtkutil.c (style_changed_cb): Avoid need for strlen.
17899
17900 * font.c: Don't assume string length fits in int.
17901 (font_parse_xlfd, font_parse_fcname, font_unparse_fcname):
17902 Use ptrdiff_t, not int.
17903 (font_intern_prop): Don't assume string length fits in int.
17904 Don't assume integer property fits in fixnum.
17905 * font.h (font_intern_prop): 2nd arg is now ptrdiff_t, not int.
17906
17907 * filelock.c: Fix some buffer overrun and integer overflow issues.
17908 (get_boot_time): Don't assume gzip command string fits in 100 bytes.
17909 Reformulate so as not to need the command string.
17910 Invoke gzip -cd rather than gunzip, as it's more portable.
17911 (lock_info_type, lock_file_1, lock_file):
17912 Don't assume pid_t and time_t fit in unsigned long.
17913 (LOCK_PID_MAX): Remove; we now use more-reliable bounds.
17914 (current_lock_owner): Prefer signed type for sizes.
17915 Use memcpy, not strncpy, where memcpy is what is really wanted.
17916 Don't assume (via atoi) that time_t and pid_t fit in int.
17917 Check for time_t and/or pid_t out of range, e.g., via a network share.
17918 Don't alloca where an auto var works fine.
17919
17920 * fileio.c: Fix some integer overflow issues.
17921 (file_name_as_directory, Fexpand_file_name, Fsubstitute_in_file_name):
17922 Don't assume string length fits in int.
17923 (directory_file_name): Don't assume string length fits in long.
17924 (make_temp_name): Don't assume pid fits in int, or that its print
17925 length is less than 20.
17926
17927 * data.c (Fsubr_name): Rewrite to avoid a strlen call.
17928
17929 * coding.c (make_subsidiaries): Don't assume string length fits in int.
17930
17931 * callproc.c (child_setup): Rewrite to avoid two strlen calls.
17932
17933 * process.c (Fformat_network_address): Use EMACS_INT, not EMACS_UINT.
17934 We prefer signed integers, even for size calculations.
17935
17936 * emacs.c: Don't assume string length fits in 'int'.
17937 (DEFINE_DUMMY_FUNCTION, sort_args): Use ptrdiff_t, not int.
17938 (main): Don't invoke strlen when not needed.
17939
17940 * dbusbind.c (XD_ERROR): Don't arbitrarily truncate string.
17941 (XD_DEBUG_MESSAGE): Don't waste a byte.
17942
17943 * callproc.c (getenv_internal_1, getenv_internal)
17944 (Fgetenv_internal):
17945 * buffer.c (init_buffer): Don't assume string length fits in 'int'.
17946
17947 * lread.c (invalid_syntax): Omit length argument.
17948 All uses changed. This doesn't fix a bug, but it simplifies the
17949 code away from its former Hollerith-constant appearance, and it's
17950 one less 'int' to worry about when looking at integer-overflow issues.
17951 (string_to_number): Simplify 2011-04-26 change by invoking xsignal1.
17952
17953 * lisp.h (DEFUN): Remove bogus use of sizeof (struct Lisp_Subr).
17954 This didn't break anything, but it didn't help either.
17955 It's confusing to put a bogus integer in a place where the actual
17956 value does not matter.
17957 (LIST_END_P): Remove unused macro and its bogus comment.
17958 (make_fixnum_or_float): Remove unnecessary cast to EMACS_INT.
17959
17960 * lisp.h (union Lisp_Object.i): EMACS_INT, not EMACS_UINT.
17961 This is for consistency with the ordinary, non-USE_LISP_UNION_TYPE,
17962 implementation.
17963 (struct Lisp_Bool_Vector.size): EMACS_INT, not EMACS_UINT.
17964 We prefer signed types, and the value cannot exceed the EMACS_INT
17965 range anyway (because otherwise the length would not be representable).
17966 (XSET) [USE_LISP_UNION_TYPE]: Use uintptr_t and intptr_t,
17967 not EMACS_UINT and EMACS_INT, when converting pointer to integer.
17968 This avoids a GCC warning when WIDE_EMACS_INT.
17969
17970 * indent.c (sane_tab_width): New function.
17971 (current_column, scan_for_column, Findent_to, position_indentation)
17972 (compute_motion): Use it. This is just for clarity.
17973 (Fcompute_motion): Don't assume hscroll and tab offset fit in int.
17974
17975 * image.c (xbm_image_p): Don't assume stated width, height fit in int.
17976
17977 * lisp.h (lint_assume): New macro.
17978 * composite.c (composition_gstring_put_cache):
17979 * ftfont.c (ftfont_shape_by_flt): Use it to pacify GCC 4.6.0.
17980
17981 * editfns.c, insdel.c:
17982 Omit unnecessary forward decls, to simplify future changes.
17983
17984 * ftfont.c (ftfont_shape_by_flt): Use signed integers for lengths.
17985
17986 * font.c (Ffont_shape_gstring): Don't assume glyph len fits in 'int'.
17987
17988 * fns.c (Ffillarray): Don't assume bool vector size fits in 'int'.
17989 Use much-faster test for byte-length change.
17990 Don't assume string byte-length fits in 'int'.
17991 Check that character arg fits in 'int'.
17992 (mapcar1): Declare byte as byte, for clarity.
17993
17994 * alloc.c (Fmake_bool_vector): Avoid unnecessary multiplication.
17995
17996 * fns.c (concat): Catch string overflow earlier.
17997 Do not rely on integer wraparound.
17998
17999 * dispextern.h (struct it.overlay_strings_charpos)
18000 (struct it.selective): Now EMACS_INT, not int.
18001 * xdisp.c (forward_to_next_line_start)
18002 (back_to_previous_visible_line_start)
18003 (reseat_at_next_visible_line_start, next_element_from_buffer):
18004 Don't arbitrarily truncate the value of 'selective' to int.
18005
18006 * xdisp.c (init_iterator): Use XINT, not XFASTINT; it might be < 0.
18007
18008 * composite.c: Don't truncate sizes to 'int'.
18009 (composition_gstring_p, composition_reseat_it)
18010 (composition_adjust_point): Use EMACS_INT, not int.
18011 (get_composition_id, composition_gstring_put_cache): Use EMACS_INT,
18012 not EMACS_UINT, for indexes.
18013
18014 * category.h (CATEGORY_SET_P): Remove unnecessary cast to EMACS_INT.
18015
18016 * buffer.c: Include <verify.h>.
18017 (struct sortvec.priority, struct sortstr.priority):
18018 Now EMACS_INT, not int.
18019 (compare_overlays, cmp_for_strings): Avoid subtraction overflow.
18020 (struct sortstr.size, record_overlay_string)
18021 (struct sortstrlist.size, struct sortlist.used):
18022 Don't truncate size to int.
18023 (record_overlay_string): Check for size-calculation overflow.
18024 (init_buffer_once): Check at compile-time, not run-time.
18025
18026 2011-06-22 Jim Meyering <meyering@redhat.com>
18027
18028 Don't leak an XBM-image-sized buffer
18029 * image.c (xbm_load): Free the image buffer after using it.
18030
18031 2011-06-21 Paul Eggert <eggert@cs.ucla.edu>
18032
18033 Port to Sun C.
18034 * composite.c (find_automatic_composition): Omit needless 'return 0;'
18035 that Sun C diagnosed.
18036 * fns.c (secure_hash): Fix pointer signedness issue.
18037 * intervals.c (static_offset_intervals): New function.
18038 (offset_intervals): Use it.
18039
18040 2011-06-21 Leo Liu <sdl.web@gmail.com>
18041
18042 * deps.mk (fns.o):
18043 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha256.h and
18044 sha512.h.
18045
18046 * fns.c (secure_hash): Rename from crypto_hash_function and change
18047 the first arg to accept symbols.
18048 (Fsecure_hash): New primitive.
18049 (syms_of_fns): New symbols.
18050
18051 2011-06-20 Deniz Dogan <deniz@dogan.se>
18052
18053 * process.c (Fset_process_buffer): Clarify return value in
18054 docstring.
18055
18056 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
18057
18058 * dispnew.c (add_window_display_history): Use BVAR.
18059
18060 * xdisp.c (debug_method_add): Use BVAR.
18061 (check_window_end, dump_glyph_matrix, dump_glyph)
18062 (dump_glyph_row, dump_glyph_string): Convert arglist to ANSI C.
18063
18064 * xfaces.c (check_lface_attrs, check_lface, dump_realized_face):
18065 Likewise.
18066
18067 * xfns.c (Fx_create_frame, x_create_tip_frame): Delay image cache
18068 check till after the cache is created in init_frame_faces.
18069
18070 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
18071
18072 * fns.c (Fsafe_length): Yet another int/Lisp_Object mixup.
18073
18074 2011-06-16 Paul Eggert <eggert@cs.ucla.edu>
18075
18076 * lisp.h: Include <limits.h>, for INT_MAX, LONG_MAX, LLONG_MAX.
18077 Without this, prin1 mishandles Lisp_Misc_Save_Value printing on
18078 hosts with pre-C99 libraries, because pD is wrongly defined to "t".
18079
18080 Improve buffer-overflow checking (Bug#8873).
18081 * fileio.c (Finsert_file_contents):
18082 * insdel.c (insert_from_buffer_1, replace_range, replace_range_2):
18083 Remove the old (too-loose) buffer overflow checks.
18084 They weren't needed, since make_gap checks for buffer overflow.
18085 * insdel.c (make_gap_larger): Catch buffer overflows that were missed.
18086 The old code merely checked for Emacs fixnum overflow, and relied
18087 on undefined (wraparound) behavior. The new code avoids undefined
18088 behavior, and also checks for ptrdiff_t and/or size_t overflow.
18089
18090 * editfns.c (Finsert_char): Don't dump core with very negative counts.
18091 Tune. Don't use wider integers than needed. Don't use alloca.
18092 Use a bigger 'string' buffer. Rewrite to avoid 'n > 0' test.
18093
18094 * insdel.c (replace_range): Fix buf overflow when insbytes < outgoing.
18095
18096 * insdel.c, lisp.h (buffer_overflow): New function.
18097 (insert_from_buffer_1, replace_range, replace_range_2):
18098 * insdel.c (make_gap_larger):
18099 * editfns.c (Finsert_char):
18100 * fileio.c (Finsert_file_contents): Use it, to normalize wording.
18101
18102 * buffer.h (BUF_BYTES_MAX): Cast to ptrdiff_t so that it's signed.
18103
18104 2011-06-15 Paul Eggert <eggert@cs.ucla.edu>
18105
18106 Integer overflow and signedness fixes (Bug#8873, Bug#8828).
18107
18108 * ccl.c (ASCENDING_ORDER): New macro, to work around GCC bug 43772.
18109 (GET_CCL_RANGE, IN_INT_RANGE): Use it.
18110
18111 * fileio.c: Don't assume EMACS_INT fits in off_t.
18112 (emacs_lseek): New static function.
18113 (Finsert_file_contents, Fwrite_region): Use it.
18114 Use SEEK_SET, SEEK_CUR, SEEK_END as appropriate.
18115
18116 * fns.c (Fload_average): Don't assume 100 * load average fits in int.
18117
18118 * fns.c: Don't overflow int when computing a list length.
18119 * fns.c (QUIT_COUNT_HEURISTIC): New constant.
18120 (Flength, Fsafe_length): Use EMACS_INT, not int, to avoid unwanted
18121 truncation on 64-bit hosts. Check for QUIT every
18122 QUIT_COUNT_HEURISTIC entries rather than every other entry; that's
18123 faster and is responsive enough.
18124 (Flength): Report an error instead of overflowing an integer.
18125 (Fsafe_length): Return a float if the value is not representable
18126 as a fixnum. This shouldn't happen except in contrived situations.
18127 (Fnthcdr, Fsort): Don't assume list length fits in int.
18128 (Fcopy_sequence): Don't assume vector length fits in int.
18129
18130 * alloc.c: Check that resized vectors' lengths fit in fixnums.
18131 (header_size, word_size): New constants.
18132 (allocate_vectorlike): Don't check size overflow here.
18133 (allocate_vector): Check it here instead, since this is the only
18134 caller of allocate_vectorlike that could cause overflow.
18135 Check that the new vector's length is representable as a fixnum.
18136
18137 * fns.c (next_almost_prime): Don't return a multiple of 3 or 5.
18138 The previous code was bogus. For example, next_almost_prime (32)
18139 returned 39, which is undesirable as it is a multiple of 3; and
18140 next_almost_prime (24) returned 25, which is a multiple of 5 so
18141 why was the code bothering to check for multiples of 7?
18142
18143 * bytecode.c (exec_byte_code): Use ptrdiff_t, not int, for vector length.
18144
18145 * eval.c, doprnt.c (SIZE_MAX): Remove; inttypes.h defines this now.
18146
18147 Variadic C functions now count arguments with ptrdiff_t.
18148 This partly undoes my 2011-03-30 change, which replaced int with size_t.
18149 Back then I didn't know that the Emacs coding style prefers signed int.
18150 Also, in the meantime I found a few more instances where arguments
18151 were being counted with int, which may truncate counts on 64-bit
18152 machines, or EMACS_INT, which may be unnecessarily wide.
18153 * lisp.h (struct Lisp_Subr.function.aMANY)
18154 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call):
18155 Arg counts are now ptrdiff_t, not size_t.
18156 All variadic functions and their callers changed accordingly.
18157 (struct gcpro.nvars): Now size_t, not size_t. All uses changed.
18158 * bytecode.c (exec_byte_code): Check maxdepth for overflow,
18159 to avoid potential buffer overrun. Don't assume arg counts fit in 'int'.
18160 * callint.c (Fcall_interactively): Check arg count for overflow,
18161 to avoid potential buffer overrun. Use signed char, not 'int',
18162 for 'varies' array, so that we needn't bother to check its size
18163 calculation for overflow.
18164 * editfns.c (Fformat): Use ptrdiff_t, not EMACS_INT, to count args.
18165 * eval.c (apply_lambda):
18166 * fns.c (Fmapconcat): Use XFASTINT, not XINT, to get args length.
18167 (struct textprop_rec.argnum): Now ptrdiff_t, not int. All uses changed.
18168 (mapconcat): Use ptrdiff_t, not int and EMACS_INT, to count args.
18169
18170 * callint.c (Fcall_interactively): Don't use index var as event count.
18171
18172 * vm-limit.c (check_memory_limits): Fix incorrect extern function decls.
18173 * mem-limits.h (SIZE): Remove; no longer used.
18174
18175 * xterm.c (x_alloc_nearest_color_1): Prefer int to long when int works.
18176
18177 Remove unnecessary casts.
18178 * xterm.c (x_term_init):
18179 * xfns.c (x_set_border_pixel):
18180 * widget.c (create_frame_gcs): Remove casts to unsigned long etc.
18181 These aren't needed now that we assume ANSI C.
18182
18183 * sound.c (Fplay_sound_internal): Remove cast to unsigned long.
18184 It's more likely to cause problems (due to unsigned overflow)
18185 than to cure them.
18186
18187 * dired.c (Ffile_attributes): Don't use 32-bit hack on 64-bit hosts.
18188
18189 * unexelf.c (unexec): Don't assume BSS addr fits in unsigned.
18190
18191 * xterm.c (handle_one_xevent): Omit unnecessary casts to unsigned.
18192
18193 * keyboard.c (modify_event_symbol): Don't limit alist len to UINT_MAX.
18194
18195 * lisp.h (CHAR_TABLE_SET): Omit now-redundant test.
18196
18197 * lread.c (Fload): Don't compare a possibly-garbage time_t value.
18198
18199 GLYPH_CODE_FACE returns EMACS_INT, not int.
18200 * dispextern.h (merge_faces):
18201 * xfaces.c (merge_faces):
18202 * xdisp.c (get_next_display_element, next_element_from_display_vector):
18203 Don't assume EMACS_INT fits in int.
18204
18205 * character.h (CHAR_VALID_P): Remove unused parameter.
18206 * fontset.c, lisp.h, xdisp.c: All uses changed.
18207
18208 * editfns.c (Ftranslate_region_internal): Omit redundant test.
18209
18210 * fns.c (concat): Minor tuning based on overflow analysis.
18211 This doesn't fix any bugs. Use int to hold character, instead
18212 of constantly refetching from Emacs object. Use XFASTINT, not
18213 XINT, for value known to be a character. Don't bother comparing
18214 a single byte to 0400, as it's always less.
18215
18216 * floatfns.c (Fexpt):
18217 * fileio.c (make_temp_name): Omit unnecessary cast to unsigned.
18218
18219 * editfns.c (Ftranslate_region_internal): Use int, not EMACS_INT
18220 for characters.
18221
18222 * doc.c (get_doc_string): Omit (unsigned)c that mishandled negatives.
18223
18224 * data.c (Faset): If ARRAY is a string, check that NEWELT is a char.
18225 Without this fix, on a 64-bit host (aset S 0 4294967386) would
18226 incorrectly succeed when S was a string, because 4294967386 was
18227 truncated before it was used.
18228
18229 * chartab.c (Fchar_table_range): Use CHARACTERP to check range.
18230 Otherwise, an out-of-range integer could cause undefined behavior
18231 on a 64-bit host.
18232
18233 * composite.c: Use int, not EMACS_INT, for characters.
18234 (fill_gstring_body, composition_compute_stop_pos): Use int, not
18235 EMACS_INT, for values that are known to be in character range.
18236 This doesn't fix any bugs but is the usual style inside Emacs and
18237 may generate better code on 32-bit machines.
18238
18239 Make sure a 64-bit char is never passed to ENCODE_CHAR.
18240 This is for reasons similar to the recent CHAR_STRING fix.
18241 * charset.c (Fencode_char): Check that character arg is actually
18242 a character. Pass an int to ENCODE_CHAR.
18243 * charset.h (ENCODE_CHAR): Verify that the character argument is no
18244 wider than 'int', as a compile-time check to prevent future regressions
18245 in this area.
18246
18247 * character.c (char_string): Remove unnecessary casts.
18248
18249 Make sure a 64-bit char is never passed to CHAR_STRING.
18250 Otherwise, CHAR_STRING would do the wrong thing on a 64-bit platform,
18251 by silently ignoring the top 32 bits, allowing some values
18252 that were far too large to be valid characters.
18253 * character.h: Include <verify.h>.
18254 (CHAR_STRING, CHAR_STRING_ADVANCE): Verify that the character
18255 arguments are no wider than unsigned, as a compile-time check
18256 to prevent future regressions in this area.
18257 * data.c (Faset):
18258 * editfns.c (Fchar_to_string, general_insert_function, Finsert_char)
18259 (Fsubst_char_in_region):
18260 * fns.c (concat):
18261 * xdisp.c (decode_mode_spec_coding):
18262 Adjust to CHAR_STRING's new requirement.
18263 * editfns.c (Finsert_char, Fsubst_char_in_region):
18264 * fns.c (concat): Check that character args are actually
18265 characters. Without this test, these functions did the wrong
18266 thing with wildly out-of-range values on 64-bit hosts.
18267
18268 Remove incorrect casts to 'unsigned' that lose info on 64-bit hosts.
18269 These casts should not be needed on 32-bit hosts, either.
18270 * keyboard.c (read_char):
18271 * lread.c (Fload): Remove casts to unsigned.
18272
18273 * lisp.h (UNSIGNED_CMP): New macro.
18274 This fixes comparison bugs on 64-bit hosts.
18275 (ASCII_CHAR_P): Use it.
18276 * casefiddle.c (casify_object):
18277 * character.h (ASCII_BYTE_P, CHAR_VALID_P)
18278 (SINGLE_BYTE_CHAR_P, CHAR_STRING):
18279 * composite.h (COMPOSITION_ENCODE_RULE_VALID):
18280 * dispextern.h (FACE_FROM_ID):
18281 * keyboard.c (read_char): Use UNSIGNED_CMP.
18282
18283 * xmenu.c (dialog_selection_callback) [!USE_GTK]: Cast to intptr_t,
18284 not to EMACS_INT, to avoid GCC warning.
18285
18286 * xfns.c (x_set_scroll_bar_default_width): Remove unused 'int' locals.
18287
18288 * buffer.h (PTR_BYTE_POS, BUF_PTR_BYTE_POS): Remove harmful cast.
18289 The cast incorrectly truncated 64-bit byte offsets to 32 bits, and
18290 isn't needed on 32-bit machines.
18291
18292 * buffer.c (Fgenerate_new_buffer_name):
18293 Use EMACS_INT for count, not int.
18294 (advance_to_char_boundary): Return EMACS_INT, not int.
18295
18296 * data.c (Qcompiled_function): Now static.
18297
18298 * window.c (window_body_lines): Now static.
18299
18300 * image.c (gif_load): Rename local to avoid shadowing.
18301
18302 * lisp.h (SAFE_ALLOCA_LISP): Check for integer overflow.
18303 (struct Lisp_Save_Value): Use ptrdiff_t, not int, for 'integer' member.
18304 * alloc.c (make_save_value): Integer argument is now of type
18305 ptrdiff_t, not int.
18306 (mark_object): Use ptrdiff_t, not int.
18307 * lisp.h (pD): New macro.
18308 * print.c (print_object): Use it.
18309
18310 * alloc.c: Use EMACS_INT, not int, to count objects.
18311 (total_conses, total_markers, total_symbols, total_vector_size)
18312 (total_free_conses, total_free_markers, total_free_symbols)
18313 (total_free_floats, total_floats, total_free_intervals)
18314 (total_intervals, total_strings, total_free_strings):
18315 Now EMACS_INT, not int. All uses changed.
18316 (Fgarbage_collect): Compute overall total using a double, so that
18317 integer overflow is less likely to be a problem. Check for overflow
18318 when converting back to an integer.
18319 (n_interval_blocks, n_string_blocks, n_float_blocks, n_cons_blocks)
18320 (n_vectors, n_symbol_blocks, n_marker_blocks): Remove.
18321 These were 'int' variables that could overflow on 64-bit hosts;
18322 they were never used, so remove them instead of repairing them.
18323 (nzombies, ngcs, max_live, max_zombies): Now EMACS_INT, not 'int'.
18324 (inhibit_garbage_collection): Set gc_cons_threshold to max value.
18325 Previously, this ceilinged at INT_MAX, but that doesn't work on
18326 64-bit machines.
18327 (allocate_pseudovector): Don't use EMACS_INT when int would do.
18328
18329 * alloc.c (Fmake_bool_vector): Don't assume vector size fits in int.
18330 (allocate_vectorlike): Check for ptrdiff_t overflow.
18331 (mark_vectorlike, mark_char_table, mark_object): Avoid EMACS_UINT
18332 when a (possibly-narrower) signed value would do just as well.
18333 We prefer using signed arithmetic, to avoid comparison confusion.
18334
18335 * alloc.c: Catch some string size overflows that we were missing.
18336 (XMALLOC_OVERRUN_CHECK_SIZE) [!XMALLOC_OVERRUN_CHECK]: Define to 0,
18337 for convenience in STRING_BYTES_MAX.
18338 (STRING_BYTES_MAX): New macro, superseding the old one in lisp.h.
18339 The definition here is exact; the one in lisp.h was approximate.
18340 (allocate_string_data): Check for string overflow. This catches
18341 some instances we weren't catching before. Also, it catches
18342 size_t overflow on (unusual) hosts where SIZE_MAX <= min
18343 (PTRDIFF_MAX, MOST_POSITIVE_FIXNUM), e.g., when size_t is 32 bits
18344 and ptrdiff_t and EMACS_INT are both 64 bits.
18345
18346 * character.c, coding.c, doprnt.c, editfns.c, eval.c:
18347 All uses of STRING_BYTES_MAX replaced by STRING_BYTES_BOUND.
18348 * lisp.h (STRING_BYTES_BOUND): Rename from STRING_BYTES_MAX.
18349
18350 * character.c (string_escape_byte8): Fix nbytes/nchars typo.
18351
18352 * alloc.c (Fmake_string): Check for out-of-range init.
18353
18354 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
18355
18356 * eval.c (Fdefvaralias): Also mark the target as variable-special-p.
18357
18358 2011-06-14 Jan Djärv <jan.h.d@swipnet.se>
18359
18360 * xfns.c (x_set_scroll_bar_default_width): Remove argument to
18361 xg_get_default_scrollbar_width.
18362
18363 * gtkutil.c: Include emacsgtkfixed.h if HAVE_GTK3.
18364 (int_gtk_range_get_value): Move to the scroll bar part of the file.
18365 (style_changed_cb): Call update_theme_scrollbar_width and call
18366 x_set_scroll_bar_default_width and xg_frame_set_char_size for
18367 all frames (Bug#8505).
18368 (xg_create_frame_widgets): Call emacs_fixed_new if HAVE_GTK3 (Bug#8505).
18369 Call gtk_window_set_resizable if HAVE_GTK3.
18370 (x_wm_set_size_hint): Call emacs_fixed_set_min_size with min width
18371 and height if HAVE_GTK3 (Bug#8505).
18372 (scroll_bar_width_for_theme): New variable.
18373 (update_theme_scrollbar_width): New function.
18374 (xg_get_default_scrollbar_width): Move code to
18375 update_theme_scrollbar_width, just return scroll_bar_width_for_theme.
18376 (xg_initialize): Call update_theme_scrollbar_width.
18377
18378 * gtkutil.h (xg_get_default_scrollbar_width): Remove argument.
18379
18380 * emacsgtkfixed.c, emacsgtkfixed.h: New files.
18381
18382 2011-06-12 Martin Rudalics <rudalics@gmx.at>
18383
18384 * frame.c (make_frame): Call other_buffer_safely instead of
18385 other_buffer.
18386
18387 * window.c (temp_output_buffer_show): Call display_buffer with
18388 second argument Vtemp_buffer_show_specifiers and reset latter
18389 immediately after the call.
18390 (Vtemp_buffer_show_specifiers): New variable.
18391 (auto_window_vscroll_p, next_screen_context_lines)
18392 (Vscroll_preserve_screen_position): Remove leading asterisks from
18393 doc-strings.
18394
18395 2011-06-12 Paul Eggert <eggert@cs.ucla.edu>
18396
18397 Fix minor problems found by GCC 4.6.0 static checking.
18398 * buffer.c (Qclone_number): Remove for now, as it's unused.
18399 (record_buffer, Funrecord_buffer): Rename local to avoid shadowing.
18400 (record_buffer): Remove unused local.
18401 * frame.c (other_visible_frames, frame_buffer_list): Now static.
18402 (set_frame_buffer_list): Remove; unused.
18403 * frame.h (other_visible_frames): Remove decl.
18404 * keyboard.h (menu_items_inuse): Declare only if USE_GTK || USE_MOTIF.
18405 * lisp.h (frame_buffer_list, set_frame_buffer_list): Remove decls.
18406 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor): Declare only
18407 if HAVE_GPM.
18408 * menu.c (menu_items_inuse): Now static unless USE_GTK || USE_MOTIF.
18409 * process.c (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
18410 Define only if HAVE_GPM.
18411 * widget.c (EmacsFrameResize, emacsFrameClassRec): Now static.
18412 (update_hints_inhibit): Remove; never set. All uses removed.
18413 * widgetprv.h (emacsFrameClassRec): Remove decl.
18414 * window.c (delete_deletable_window): Now returns void, since it
18415 wasn't returning anything.
18416 (compare_window_configurations): Remove unused locals.
18417 * xfns.c (x_set_scroll_bar_default_width): Remove unused locals.
18418 * xmenu.c (x_menu_set_in_use): Define only if USE_GTK || USE_MOTIF.
18419 (dialog_selection_callback) [!USE_GTK]: Prefer intptr_t for integers
18420 the same widths as pointers. This follows up on the 2011-05-06 patch.
18421 * xterm.c (x_alloc_lighter_color_for_widget): Define only if USE_LUCID.
18422 * xterm.h: Likewise.
18423 (x_menu_set_in_use): Declare only if USE_GTK || USE_MOTIF.
18424
18425 2011-06-12 Juanma Barranquero <lekktu@gmail.com>
18426
18427 * makefile.w32-in: Update dependencies.
18428 (LISP_H): Add lib/intprops.h.
18429
18430 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
18431
18432 * image.c (gif_load): Add animation frame delay to the metadata.
18433 (syms_of_image): Use DEFSYM. New symbol `delay'.
18434
18435 2011-06-11 Martin Rudalics <rudalics@gmx.at>
18436
18437 * window.c (delete_deletable_window): Re-add.
18438 (Fset_window_configuration): Rewrite to handle dead buffers and
18439 consequently deletable windows.
18440 (window_tree, Fwindow_tree): Remove. Supply functionality in
18441 window.el.
18442 (compare_window_configurations): Simplify code.
18443
18444 2011-06-11 Andreas Schwab <schwab@linux-m68k.org>
18445
18446 * image.c (imagemagick_load_image): Fix type mismatch.
18447 (Fimagemagick_types): Likewise.
18448
18449 * window.h (replace_buffer_in_windows): Declare.
18450
18451 2011-06-11 Martin Rudalics <rudalics@gmx.at>
18452
18453 * buffer.c: New Lisp objects Qbuffer_list_update_hook and
18454 Qclone_number. Remove external declaration of Qdelete_window.
18455 (Fbuffer_list): Rewrite doc-string. Minor restructuring of
18456 code.
18457 (Fget_buffer_create, Fmake_indirect_buffer, Frename_buffer):
18458 Run Qbuffer_list_update_hook if allowed.
18459 (Fother_buffer): Rewrite doc-string. Major rewrite for new
18460 buffer list implementation.
18461 (other_buffer_safely): New function.
18462 (Fkill_buffer): Replace call to replace_buffer_in_all_windows by
18463 calls to replace_buffer_in_windows and
18464 replace_buffer_in_windows_safely. Run Qbuffer_list_update_hook
18465 if allowed.
18466 (record_buffer): Inhibit quitting and rewrite using quittable
18467 functions. Run Qbuffer_list_update_hook if allowed.
18468 (Frecord_buffer, Funrecord_buffer): New functions.
18469 (switch_to_buffer_1, Fswitch_to_buffer): Remove.
18470 Move switch-to-buffer to window.el.
18471 (bury-buffer): Move to window.el.
18472 (Vbuffer_list_update_hook): New variable.
18473
18474 * lisp.h (other_buffer_safely): Add prototype in buffer.c
18475 section.
18476
18477 * window.h (resize_frame_windows): Move up in code.
18478 (Fwindow_frame): Remove EXFUN.
18479 (replace_buffer_in_all_windows): Remove prototype.
18480 (replace_buffer_in_windows_safely): Add prototype.
18481
18482 * window.c: Declare Qdelete_window static again. Move down
18483 declaration of select_count.
18484 (Fnext_window, Fprevious_window): Rewrite doc-strings.
18485 (Fother_window): Move to window.el.
18486 (window_loop): Remove DELETE_BUFFER_WINDOWS and UNSHOW_BUFFER
18487 cases. Add REPLACE_BUFFER_IN_WINDOWS_SAFELY case.
18488 (Fdelete_windows_on, Freplace_buffer_in_windows): Move to
18489 window.el.
18490 (replace_buffer_in_windows): Implement by calling
18491 Qreplace_buffer_in_windows.
18492 (replace_buffer_in_all_windows): Remove with some functionality
18493 moved into replace_buffer_in_windows_safely.
18494 (replace_buffer_in_windows_safely): New function.
18495 (select_window_norecord, select_frame_norecord): Move in front
18496 of run_window_configuration_change_hook. Remove now obsolete
18497 declarations.
18498 (Fset_window_buffer): Rewrite doc-string.
18499 Call Qrecord_window_buffer.
18500 (keys_of_window): Move binding for other-window to window.el.
18501
18502 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
18503
18504 * dispextern.h (struct image): Replace data member, whose int_val
18505 and ptr_val fields were not used by anything, with a single
18506 lisp_val object.
18507
18508 * image.c (Fimage_metadata, make_image, mark_image, tiff_load)
18509 (gif_clear_image, gif_load, imagemagick_load_image)
18510 (gs_clear_image, gs_load): Callers changed.
18511
18512 2011-06-10 Paul Eggert <eggert@cs.ucla.edu>
18513
18514 * buffer.h: Include <time.h>, for time_t.
18515 Needed to build on FreeBSD 8.2. Problem reported by Herbert J. Skuhra.
18516
18517 Fix minor problems found by static checking.
18518
18519 * image.c (PixelGetMagickColor): Declare if ImageMagick headers don't.
18520
18521 Make identifiers static if they are not used in other modules.
18522 * data.c (Qcompiled_function, Qframe, Qvector):
18523 * image.c (QimageMagick, Qsvg):
18524 * minibuf.c (Qmetadata):
18525 * window.c (resize_window_check, resize_root_window): Now static.
18526 * window.h (resize_window_check, resize_root_window): Remove decls.
18527
18528 * window.c (window_deletion_count, delete_deletable_window):
18529 Remove; unused.
18530 (window_body_lines): Now static.
18531 (Fdelete_other_windows_internal): Mark vars as initialized.
18532 Make sure 'resize_failed' is initialized.
18533 (run_window_configuration_change_hook): Rename local to avoid shadowing.
18534 (resize_window_apply): Remove unused local.
18535 * window.h (delete_deletable_window): Remove decl.
18536
18537 * image.c (gif_load, svg_load_image): Rename locals to avoid shadowing.
18538 (imagemagick_load_image): Fix pointer signedness problem by changing
18539 last arg from unsigned char * to char *. All uses changed.
18540 Also, fix a local for similar reasons.
18541 Remove unused locals. Remove locals to avoid shadowing.
18542 (fn_rsvg_handle_free): Remove; unused.
18543 (svg_load, svg_load_image): Fix pointer signedness problem.
18544 (imagemagick_load_image): Don't use garbage pointer image_wand.
18545
18546 * ftfont.c (ftfont_get_metrics, ftfont_drive_otf): Remove unused locals.
18547
18548 2011-06-10 Chong Yidong <cyd@stupidchicken.com>
18549
18550 * image.c (gif_load): Fix omitted cast error introduced by
18551 2011-06-06 change.
18552
18553 2011-06-10 Martin Rudalics <rudalics@gmx.at>
18554
18555 * window.h (resize_proportionally, orig_total_lines)
18556 (orig_top_line): Remove from window structure.
18557 (set_window_height, set_window_width, change_window_heights)
18558 (Fdelete_window): Remove prototypes.
18559 (resize_frame_windows): Remove duplicate declaration.
18560
18561 2011-06-10 Eli Zaretskii <eliz@gnu.org>
18562
18563 * window.h (resize_frame_windows, resize_window_check)
18564 (delete_deletable_window, resize_root_window)
18565 (resize_frame_windows): Declare prototypes.
18566
18567 * window.c (resize_window_apply): Make definition be "static" to
18568 match the prototype.
18569
18570 2011-06-10 Martin Rudalics <rudalics@gmx.at>
18571
18572 * window.c: Remove declarations of Qwindow_size_fixed,
18573 window_min_size_1, window_min_size_2, window_min_size,
18574 size_window, window_fixed_size_p, enlarge_window, delete_window.
18575 Remove static from declaration of Qdelete_window, it's
18576 temporarily needed by Fbury_buffer.
18577 (replace_window): Don't assign orig_top_line and
18578 orig_total_lines.
18579 (Fdelete_window, delete_window): Remove. Window deletion is
18580 handled by window.el.
18581 (window_loop): Remove DELETE_OTHER_WINDOWS case.
18582 Replace Fdelete_window calls with calls to Qdelete_window.
18583 (Fdelete_other_windows): Remove. Deleting other windows is
18584 handled by window.el.
18585 (window_fixed_size_p): Remove. Fixed-sizeness of windows is
18586 handled in window.el.
18587 (window_min_size_2, window_min_size_1, window_min_size): Remove.
18588 Window minimum sizes are handled in window.el.
18589 (shrink_windows, size_window, set_window_height)
18590 (set_window_width, change_window_heights, window_height)
18591 (window_width, CURBEG, CURSIZE, enlarge_window)
18592 (adjust_window_trailing_edge, Fadjust_window_trailing_edge)
18593 (Fenlarge_window, Fshrink_window): Remove. Window resizing is
18594 handled in window.el.
18595 (make_dummy_parent): Rename to make_parent_window and give it a
18596 second argument horflag.
18597 (make_window): Don't set resize_proportionally any more.
18598 (Fsplit_window): Remove. Windows are split in window.el.
18599 (save_restore_action, save_restore_orig_size)
18600 (shrink_window_lowest_first, save_restore_orig_size): Remove.
18601 Resize mini windows in window.el.
18602 (grow_mini_window, shrink_mini_window): Implement by calling
18603 Qresize_root_window_vertically, resize_window_check and
18604 resize_window_apply.
18605 (saved_window, Fset_window_configuration, save_window_save):
18606 Do not handle orig_top_line, orig_total_lines, and
18607 resize_proportionally.
18608 (window_min_height, window_min_width): Move to window.el.
18609 (keys_of_window): Move bindings for delete-other-windows,
18610 split-window, delete-window and enlarge-window to window.el.
18611
18612 * buffer.c: Temporarily extern Qdelete_window.
18613 (Fbury_buffer): Temporarily call Qdelete_window instead of
18614 Fdelete_window (Fbury_buffer will move to window.el soon).
18615
18616 * frame.c (set_menu_bar_lines_1): Remove code handling
18617 orig_top_line and orig_total_lines.
18618
18619 * dispnew.c (adjust_frame_glyphs_initially): Don't use
18620 set_window_height but set heights directly.
18621 (change_frame_size_1): Use resize_frame_windows.
18622
18623 * xdisp.c (init_xdisp): Don't use set_window_height but set
18624 heights directly.
18625
18626 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines):
18627 Use resize_frame_windows instead of change_window_heights and run
18628 run_window_configuration_change_hook.
18629
18630 * w32fns.c (x_set_tool_bar_lines): Use resize_frame_windows
18631 instead of change_window_heights and run
18632 run_window_configuration_change_hook.
18633
18634 2011-06-09 Martin Rudalics <rudalics@gmx.at>
18635
18636 * window.c (replace_window): Rename second argument REPLACEMENT to
18637 NEW. New third argument SETFLAG. Rewrite.
18638 (delete_window, make_dummy_parent): Call replace_window with
18639 third argument 1.
18640 (window_list_1): Move down in code.
18641 (run_window_configuration_change_hook): Move set_buffer part
18642 before select_frame_norecord part in order to unwind correctly.
18643 Rename count1 to count.
18644 (recombine_windows, delete_deletable_window, resize_root_window)
18645 (Fdelete_other_windows_internal)
18646 (Frun_window_configuration_change_hook, make_parent_window)
18647 (resize_window_check, resize_window_apply, Fresize_window_apply)
18648 (resize_frame_windows, Fsplit_window_internal)
18649 (Fdelete_window_internal, Fresize_mini_window_internal):
18650 New functions.
18651 (syms_of_window): New variables Vwindow_splits and Vwindow_nest.
18652
18653 2011-06-08 Martin Rudalics <rudalics@gmx.at>
18654
18655 * window.h (window): Add some new members to window structure -
18656 normal_lines, normal_cols, new_total, new_normal, clone_number,
18657 splits, nest, prev_buffers, next_buffers.
18658 (WINDOW_TOTAL_SIZE): Move here from window.c.
18659 (MIN_SAFE_WINDOW_WIDTH, MIN_SAFE_WINDOW_HEIGHT): Define here.
18660
18661 * window.c (Fwindow_height, Fwindow_width, Fwindow_full_width_p):
18662 Remove.
18663 (make_dummy_parent): Set new members of windows structure.
18664 (make_window): Move down in code. Handle new members of window
18665 structure.
18666 (Fwindow_clone_number, Fwindow_splits, Fset_window_splits)
18667 (Fwindow_nest, Fset_window_nest, Fwindow_new_total)
18668 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_prev_buffers)
18669 (Fset_window_prev_buffers, Fwindow_next_buffers)
18670 (Fset_window_next_buffers, Fset_window_clone_number):
18671 New functions.
18672 (Fwindow_hscroll, Fwindow_at, Fwindow_point, Fwindow_start)
18673 (Fwindow_end, Fwindow_line_height, Fset_window_dedicated_p):
18674 Doc-string fixes.
18675 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter):
18676 Argument WINDOW can be now internal window too.
18677 (Fwindow_use_time): Move up in code.
18678 (Fget_buffer_window): Rename argument FRAME to ALL-FRAMES.
18679 Rewrite doc-string.
18680 (Fset_window_configuration, saved_window)
18681 (Fcurrent_window_configuration, save_window_save): Handle new
18682 members of window structure.
18683 (WINDOW_TOTAL_SIZE, MIN_SAFE_WINDOW_WIDTH)
18684 (MIN_SAFE_WINDOW_HEIGHT): Move to window.h.
18685 (syms_of_window): New Lisp objects Qrecord_window_buffer,
18686 Qwindow_deletable_p, Qdelete_window, Qreplace_buffer_in_windows,
18687 Qget_mru_window, Qresize_root_window,
18688 Qresize_root_window_vertically, Qsafe, Qabove, Qbelow,
18689 Qauto_buffer_name; staticpro them.
18690
18691 2011-06-07 Martin Rudalics <rudalics@gmx.at>
18692
18693 * window.c (Fwindow_total_size, Fwindow_left_column)
18694 (Fwindow_top_line, window_body_lines, Fwindow_body_size)
18695 (Fwindow_list_1): New functions.
18696 (window_box_text_cols): Replace with window_body_cols.
18697 (Fwindow_width, Fscroll_left, Fscroll_right):
18698 Use window_body_cols instead of window_box_text_cols.
18699 (delete_window, Fset_window_configuration):
18700 Call delete_all_subwindows with window as argument.
18701 (delete_all_subwindows): Take a window as argument and not a
18702 structure. Rewrite.
18703 (window_loop): Remove handling of GET_LRU_WINDOW and
18704 GET_LARGEST_WINDOW.
18705 (Fget_lru_window, Fget_largest_window): Move to window.el.
18706
18707 * window.h: Extern window_body_cols instead of
18708 window_box_text_cols. delete_all_subwindows now takes a
18709 Lisp_Object as argument.
18710
18711 * indent.c (compute_motion, Fcompute_motion):
18712 Use window_body_cols instead of window_box_text_cols.
18713
18714 * frame.c (delete_frame): Call delete_all_subwindows with root
18715 window as argument.
18716
18717 2011-06-07 Daniel Colascione <dan.colascione@gmail.com>
18718
18719 * fns.c (Fputhash): Document return value.
18720
18721 2011-06-06 Chong Yidong <cyd@stupidchicken.com>
18722
18723 * image.c (gif_load): Implement gif89a spec "no disposal" method.
18724
18725 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
18726
18727 Cons<->int and similar integer overflow fixes (Bug#8794).
18728
18729 Check for overflow when converting integer to cons and back.
18730 * charset.c (Fdefine_charset_internal, Fdecode_char):
18731 Use cons_to_unsigned to catch overflow.
18732 (Fencode_char): Use INTEGER_TO_CONS.
18733 * composite.h (LGLYPH_CODE): Use cons_to_unsigned.
18734 (LGLYPH_SET_CODE): Use INTEGER_TO_CONS.
18735 * data.c (long_to_cons, cons_to_long): Remove.
18736 (cons_to_unsigned, cons_to_signed): New functions.
18737 These signal an error for invalid or out-of-range values.
18738 * dired.c (Ffile_attributes): Use INTEGER_TO_CONS.
18739 * fileio.c (Fset_visited_file_modtime): Use CONS_TO_INTEGER.
18740 * font.c (Ffont_variation_glyphs):
18741 * fontset.c (Finternal_char_font): Use INTEGER_TO_CONS.
18742 * lisp.h: Include <intprops.h>.
18743 (INTEGER_TO_CONS, CONS_TO_INTEGER): New macros.
18744 (cons_to_signed, cons_to_unsigned): New decls.
18745 (long_to_cons, cons_to_long): Remove decls.
18746 * undo.c (record_first_change): Use INTEGER_TO_CONS.
18747 (Fprimitive_undo): Use CONS_TO_INTEGER.
18748 * xfns.c (Fx_window_property): Likewise.
18749 * xselect.c: Include <limits.h>.
18750 (x_own_selection, selection_data_to_lisp_data):
18751 Use INTEGER_TO_CONS.
18752 (x_handle_selection_request, x_handle_selection_clear)
18753 (x_get_foreign_selection, Fx_disown_selection_internal)
18754 (Fx_get_atom_name, x_send_client_event): Use CONS_TO_INTEGER.
18755 (lisp_data_to_selection_data): Use cons_to_unsigned.
18756 (x_fill_property_data): Use cons_to_signed.
18757 Report values out of range.
18758
18759 Check for buffer and string overflow more precisely.
18760 * buffer.h (BUF_BYTES_MAX): New macro.
18761 * lisp.h (STRING_BYTES_MAX): New macro.
18762 * alloc.c (Fmake_string):
18763 * character.c (string_escape_byte8):
18764 * coding.c (coding_alloc_by_realloc):
18765 * doprnt.c (doprnt):
18766 * editfns.c (Fformat):
18767 * eval.c (verror):
18768 Use STRING_BYTES_MAX, not MOST_POSITIVE_FIXNUM,
18769 since they may not be the same number.
18770 * editfns.c (Finsert_char):
18771 * fileio.c (Finsert_file_contents):
18772 Likewise for BUF_BYTES_MAX.
18773
18774 * image.c: Use ptrdiff_t, not int, for sizes.
18775 (slurp_file): Switch from int to ptrdiff_t.
18776 All uses changed.
18777 (slurp_file): Check that file size fits in both size_t (for
18778 malloc) and ptrdiff_t (for sanity and safety).
18779
18780 * fileio.c (Fverify_visited_file_modtime): Avoid time overflow
18781 if b->modtime has its maximal value.
18782
18783 * dired.c (Ffile_attributes): Don't assume EMACS_INT has >32 bits.
18784
18785 Don't assume time_t can fit into int.
18786 * buffer.h (struct buffer.modtime): Now time_t, not int.
18787 * fileio.c (Fvisited_file_modtime): No need for time_t cast now.
18788 * undo.c (Fprimitive_undo): Use time_t, not int, for time_t value.
18789
18790 Minor fixes for signed vs unsigned integers.
18791 * character.h (MAYBE_UNIFY_CHAR):
18792 * charset.c (maybe_unify_char):
18793 * keyboard.c (read_char, reorder_modifiers):
18794 XINT -> XFASTINT, since the integer must be nonnegative.
18795 * ftfont.c (ftfont_spec_pattern):
18796 * keymap.c (access_keymap, silly_event_symbol_error):
18797 XUINT -> XFASTINT, since the integer must be nonnegative.
18798 (Fsingle_key_description, preferred_sequence_p): XUINT -> XINT,
18799 since it makes no difference and we prefer signed.
18800 * keyboard.c (record_char): Use XUINT when all the neighbors do.
18801 (access_keymap): NATNUMP -> INTEGERP, since the integer must be
18802 nonnegative.
18803
18804 2011-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
18805
18806 * window.h (Fwindow_frame): Declare.
18807
18808 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
18809
18810 * alloc.c: Simplify handling of large-request failures (Bug#8800).
18811 (SPARE_MEMORY): Always define.
18812 (LARGE_REQUEST): Remove.
18813 (memory_full): Use SPARE_MEMORY rather than LARGE_REQUEST.
18814
18815 2011-06-06 Martin Rudalics <rudalics@gmx.at>
18816
18817 * lisp.h: Move EXFUNS for Fframe_root_window,
18818 Fframe_first_window and Fset_frame_selected_window to window.h.
18819
18820 * window.h: Move EXFUNS for Fframe_root_window,
18821 Fframe_first_window and Fset_frame_selected_window here from
18822 lisp.h.
18823
18824 * frame.c (Fwindow_frame, Fframe_first_window)
18825 (Fframe_root_window, Fframe_selected_window)
18826 (Fset_frame_selected_window): Move to window.c.
18827 (Factive_minibuffer_window): Move to minibuf.c.
18828 (Fother_visible_frames_p): New function.
18829
18830 * minibuf.c (Factive_minibuffer_window): Move here from frame.c.
18831
18832 * window.c (decode_window, decode_any_window): Move up in code.
18833 (Fwindowp, Fwindow_live_p): Rewrite doc-strings.
18834 (inhibit_frame_unsplittable): Remove unused variable.
18835 (Fwindow_buffer): Move up and rewrite doc-string.
18836 (Fwindow_parent, Fwindow_vchild, Fwindow_hchild, Fwindow_next)
18837 (Fwindow_prev): New functions.
18838 (Fwindow_frame): Move here from frame.c. Accept any window as
18839 argument.
18840 (Fframe_root_window, Fframe_first_window)
18841 (Fframe_selected_window): Move here from frame.c. Accept frame
18842 or arbitrary window as argument. Update doc-strings.
18843 (Fminibuffer_window): Move up in code.
18844 (Fwindow_minibuffer_p): Move up in code and simplify.
18845 (Fset_frame_selected_window): Move here from frame.c.
18846 Marginal rewrite.
18847 (Fselected_window, select_window, Fselect_window): Move up in
18848 code. Minor doc-string fixes.
18849
18850 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
18851
18852 * alloc.c (memory_full) [SYSTEM_MALLOC]: Port to MacOS (Bug#8800).
18853 Do not assume that spare memory exists; that assumption is valid
18854 only if SYSTEM_MALLOC.
18855 (LARGE_REQUEST): New macro, so that the issue of large requests
18856 is separated from the issue of spare memory.
18857
18858 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
18859
18860 * editfns.c (Fformat): Correctly handle zero flag with hexadecimal
18861 format. (Bug#8806)
18862
18863 * gtkutil.c (xg_get_default_scrollbar_width): Avoid warning.
18864
18865 * xfns.c (x_set_scroll_bar_default_width): Move declarations
18866 before statements.
18867
18868 2011-06-05 Jan Djärv <jan.h.d@swipnet.se>
18869
18870 * gtkutil.c (xg_get_default_scrollbar_width): New function.
18871
18872 * gtkutil.h: Declare xg_get_default_scrollbar_width.
18873
18874 * xfns.c (x_set_scroll_bar_default_width): If USE_GTK, get
18875 min width by calling x_set_scroll_bar_default_width (Bug#8505).
18876
18877 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
18878
18879 * xdisp.c (single_display_spec_intangible_p): Remove declaration.
18880
18881 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
18882
18883 * xselect.c (x_clipboard_manager_save): Remove redundant arg.
18884 (x_clipboard_manager_save): Add return value.
18885 (x_clipboard_manager_error_1, x_clipboard_manager_error_2):
18886 New error handlers.
18887 (x_clipboard_manager_save_frame, x_clipboard_manager_save_all):
18888 Obey Vx_select_enable_clipboard_manager. Catch errors in
18889 x_clipboard_manager_save (Bug#8779).
18890 (Vx_select_enable_clipboard_manager): New variable.
18891 (x_get_foreign_selection): Reduce scope of x_catch_errors (Bug#8790).
18892
18893 2011-06-04 Dan Nicolaescu <dann@ics.uci.edu>
18894
18895 * emacs.c (main): Warn when starting a GTK emacs in daemon mode.
18896
18897 2011-06-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18898
18899 * fringe.c (update_window_fringes): Don't update overlay arrow bitmap
18900 in the current matrix if keep_current_p is non-zero.
18901
18902 2011-06-04 Eli Zaretskii <eliz@gnu.org>
18903
18904 * bidi.c (bidi_level_of_next_char): Fix last change.
18905
18906 2011-06-03 Eli Zaretskii <eliz@gnu.org>
18907
18908 Support bidi reordering of text covered by display properties.
18909
18910 * bidi.c (bidi_copy_it): Use offsetof instead of emulating it.
18911 (bidi_fetch_char, bidi_fetch_char_advance): New functions.
18912 (bidi_cache_search, bidi_cache_iterator_state)
18913 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
18914 (bidi_level_of_next_char, bidi_move_to_visually_next):
18915 Support character positions inside a run of characters covered by a
18916 display string.
18917 (bidi_paragraph_init, bidi_resolve_explicit_1)
18918 (bidi_level_of_next_char): Call bidi_fetch_char and
18919 bidi_fetch_char_advance instead of FETCH_CHAR and
18920 FETCH_CHAR_ADVANCE.
18921 (bidi_init_it): Initialize new members.
18922 (LRE_CHAR, RLE_CHAR, PDF_CHAR, LRO_CHAR, RLO_CHAR): Remove macro
18923 definitions.
18924 (bidi_explicit_dir_char): Lookup character type in bidi_type_table,
18925 instead of using explicit *_CHAR codes.
18926 (bidi_resolve_explicit, bidi_resolve_weak):
18927 Use FETCH_MULTIBYTE_CHAR instead of FETCH_CHAR, as reordering of
18928 bidirectional text is supported only in multibyte buffers.
18929 (bidi_init_it): Accept additional argument FRAME_WINDOW_P and use
18930 it to initialize the frame_window_p member of struct bidi_it.
18931 (bidi_cache_iterator_state, bidi_resolve_explicit_1)
18932 (bidi_resolve_explicit, bidi_resolve_weak)
18933 (bidi_level_of_next_char, bidi_move_to_visually_next): Abort if
18934 bidi_it->nchars is non-positive.
18935 (bidi_level_of_next_char): Don't try to lookup the cache for the
18936 next/previous character if nothing is cached there yet, or if we
18937 were just reseat()'ed to a new position.
18938
18939 * xdisp.c (set_cursor_from_row): Set start and stop points
18940 according to the row's direction when priming the loop that looks
18941 for the glyph on which to display cursor.
18942 (single_display_spec_intangible_p): Function deleted.
18943 (display_prop_intangible_p): Reimplement to call
18944 handle_display_spec instead of single_display_spec_intangible_p.
18945 Accept 3 additional arguments needed by handle_display_spec.
18946 This fixes incorrect cursor motion across display property with complex
18947 values: lists, `(when COND...)' forms, etc.
18948 (single_display_spec_string_p): Support property values that are
18949 lists with the argument STRING its top-level element.
18950 (display_prop_string_p): Fix the condition for processing a
18951 property that is a list to be consistent with handle_display_spec.
18952 (handle_display_spec): New function, refactored from the
18953 last portion of handle_display_prop.
18954 (compute_display_string_pos): Accept additional argument
18955 FRAME_WINDOW_P. Call handle_display_spec to determine whether the
18956 value of a `display' property is a "replacing spec".
18957 (handle_single_display_spec): Accept 2 additional arguments BUFPOS
18958 and FRAME_WINDOW_P. If IT is NULL, don't set up the iterator from
18959 the display property, but just return a value indicating whether
18960 the display property will replace the characters it covers.
18961 (Fcurrent_bidi_paragraph_direction): Initialize the nchars and
18962 frame_window_p members of struct bidi_it.
18963 (compute_display_string_pos, compute_display_string_end):
18964 New functions.
18965 (push_it): Accept second argument POSITION, where pop_it should
18966 jump to continue iteration.
18967 (reseat_1): Initialize bidi_it.disp_pos.
18968
18969 * keyboard.c (adjust_point_for_property): Adjust the call to
18970 display_prop_intangible_p to its new signature.
18971
18972 * dispextern.h (struct bidi_it): New member frame_window_p.
18973 (bidi_init_it): Update prototypes.
18974 (display_prop_intangible_p): Update prototype.
18975 (compute_display_string_pos, compute_display_string_end):
18976 Declare prototypes.
18977 (struct bidi_it): New members nchars and disp_pos. ch_len is now
18978 EMACS_INT.
18979
18980 2011-06-02 Paul Eggert <eggert@cs.ucla.edu>
18981
18982 Malloc failure behavior now depends on size of allocation.
18983 * alloc.c (buffer_memory_full, memory_full): New arg NBYTES.
18984 * lisp.h: Change signatures accordingly.
18985 * alloc.c, buffer.c, editfns.c, menu.c, minibuf.c, xterm.c:
18986 All callers changed. (Bug#8762)
18987
18988 * gnutls.c: Use Emacs's memory allocators.
18989 Without this change, the gnutls library would invoke malloc etc.
18990 directly, which causes problems on non-SYNC_INPUT hosts, and which
18991 runs afoul of improving memory_full behavior. (Bug#8761)
18992 (fn_gnutls_global_set_mem_functions): New macro or function pointer.
18993 (emacs_gnutls_global_init): Use it to specify xmalloc, xrealloc,
18994 xfree instead of the default malloc, realloc, free.
18995 (Fgnutls_boot): No need to check for memory allocation failure,
18996 since xmalloc does that for us.
18997
18998 Remove arbitrary limit of 2**31 entries in hash tables. (Bug#8771)
18999 * category.c (hash_get_category_set):
19000 * ccl.c (ccl_driver):
19001 * charset.c (Fdefine_charset_internal):
19002 * charset.h (struct charset.hash_index):
19003 * composite.c (get_composition_id, gstring_lookup_cache)
19004 (composition_gstring_put_cache):
19005 * composite.h (struct composition.hash_index):
19006 * dispextern.h (struct image.hash):
19007 * fns.c (next_almost_prime, larger_vector, cmpfn_eql)
19008 (cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
19009 (hashfn_equal, hashfn_user_defined, make_hash_table)
19010 (maybe_resize_hash_table, hash_lookup, hash_put)
19011 (hash_remove_from_table, hash_clear, sweep_weak_table, SXHASH_COMBINE)
19012 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector)
19013 (Fsxhash, Fgethash, Fputhash, Fmaphash):
19014 * image.c (make_image, search_image_cache, lookup_image)
19015 (xpm_put_color_table_h):
19016 * lisp.h (struct Lisp_Hash_Table):
19017 * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
19018 * print.c (print): Use 'EMACS_UINT' and 'EMACS_INT'
19019 for hashes and hash indexes, instead of 'unsigned' and 'int'.
19020 * alloc.c (allocate_vectorlike):
19021 Check for overflow in vector size calculations.
19022 * ccl.c (ccl_driver):
19023 Check for overflow when converting EMACS_INT to int.
19024 * fns.c, image.c: Remove unnecessary static decls that would otherwise
19025 need to be updated by these changes.
19026 * fns.c (make_hash_table, maybe_resize_hash_table):
19027 Check for integer overflow with large hash tables.
19028 (make_hash_table, maybe_resize_hash_table, Fmake_hash_table):
19029 Prefer the faster XFLOAT_DATA to XFLOATINT where either will do.
19030 (SXHASH_REDUCE): New macro.
19031 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector):
19032 Use it instead of discarding useful hash info with large hash values.
19033 (sxhash_float): New function.
19034 (sxhash): Use it. No more need for "& INTMASK" due to above changes.
19035 * lisp.h (FIXNUM_BITS): New macro, useful for SXHASH_REDUCE etc.
19036 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
19037 Rewrite to use FIXNUM_BITS, as this simplifies things.
19038 (next_almost_prime, larger_vector, sxhash, hash_lookup, hash_put):
19039 Adjust signatures to match updated version of code.
19040 (consing_since_gc): Now EMACS_INT, since a single hash table can
19041 use more than INT_MAX bytes.
19042
19043 2011-06-01 Dan Nicolaescu <dann@ics.uci.edu>
19044
19045 Make it possible to build with GCC-4.6+ -O2 -flto.
19046
19047 * emacs.c (__malloc_initialize_hook): Mark as EXTERNALLY_VISIBLE.
19048
19049 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
19050
19051 * minibuf.c (get_minibuffer, read_minibuf_unwind):
19052 Call minibuffer-inactive-mode.
19053
19054 2011-05-31 Juanma Barranquero <lekktu@gmail.com>
19055
19056 * makefile.w32-in ($(BLD)/data.$(O), $(BLD)/editfns.$(O)):
19057 Update dependencies.
19058
19059 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
19060
19061 * data.c (init_data): Remove code for UTS, this system is not
19062 supported anymore.
19063
19064 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
19065
19066 Don't force ./temacs to start in terminal mode.
19067
19068 * frame.c (make_initial_frame): Initialize faces in all cases, not
19069 only when CANNOT_DUMP is defined.
19070 * dispnew.c (init_display): Remove CANNOT_DUMP condition.
19071
19072 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
19073
19074 * dispnew.c (add_window_display_history): Use const for the string
19075 pointer. Remove declaration, not needed.
19076
19077 2011-05-31 Paul Eggert <eggert@cs.ucla.edu>
19078
19079 Use 'inline', not 'INLINE'.
19080 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00914.html>
19081 * alloc.c, fontset.c (INLINE): Remove.
19082 * alloc.c, bidi.c, charset.c, coding.c, dispnew.c, fns.c, image.c:
19083 * intervals.c, keyboard.c, process.c, syntax.c, textprop.c, w32term.c:
19084 * xdisp.c, xfaces.c, xterm.c: Replace all uses of INLINE with inline.
19085 * gmalloc.c (register_heapinfo): Use inline unconditionally.
19086 * lisp.h (LISP_MAKE_RVALUE): Use inline, not __inline__.
19087
19088 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
19089
19090 Make it possible to run ./temacs.
19091
19092 * callproc.c (set_initial_environment): Remove CANNOT_DUMP code,
19093 syms_of_callproc does the same thing. Remove test for
19094 "initialized", do it in the caller.
19095 * emacs.c (main): Avoid calling set_initial_environment when dumping.
19096
19097 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
19098
19099 * minibuf.c (Finternal_complete_buffer): Return `category' metadata.
19100 (read_minibuf): Use get_minibuffer.
19101 (syms_of_minibuf): Use DEFSYM.
19102 (Qmetadata): New var.
19103 * data.c (Qbuffer): Don't make it static.
19104 (syms_of_data): Use DEFSYM.
19105
19106 2011-05-31 Paul Eggert <eggert@cs.ucla.edu>
19107
19108 * ccl.c (CCL_CODE_RANGE): Allow negative numbers. (Bug#8751)
19109 (CCL_CODE_MIN): New macro.
19110
19111 2011-05-30 Paul Eggert <eggert@cs.ucla.edu>
19112
19113 * alloc.c (lisp_align_malloc): Omit unnecessary val==NULL tests.
19114
19115 * eval.c (Qdebug): Now static.
19116 * lisp.h (Qdebug): Remove decl. This reverts a part of the
19117 2011-04-26T11:26:05Z!dan.colascione@gmail.com that inadvertently undid part of
19118 2011-04-14T06:48:41Z!eggert@cs.ucla.edu.
19119
19120 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
19121
19122 * image.c: Various fixes to ImageMagick code comments.
19123 (Fimagemagick_types): Doc fix.
19124
19125 2011-05-29 Paul Eggert <eggert@cs.ucla.edu>
19126
19127 Minor fixes prompted by GCC 4.6.0 warnings.
19128
19129 * xselect.c (converted_selections, conversion_fail_tag): Now static.
19130
19131 * emacs.c [HAVE_X_WINDOWS]: Include "xterm.h".
19132 (x_clipboard_manager_save_all): Move extern decl to ...
19133 * xterm.h: ... here, so that it can be checked for consistency.
19134
19135 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
19136
19137 * xselect.c (x_clipboard_manager_save_frame)
19138 (x_clipboard_manager_save_all): New functions.
19139 (Fx_clipboard_manager_save): Lisp function deleted.
19140
19141 * emacs.c (Fkill_emacs): Call x_clipboard_manager_save_all.
19142 * frame.c (delete_frame): Call x_clipboard_manager_save_frame.
19143
19144 * xterm.h: Update prototype.
19145
19146 2011-05-28 William Xu <william.xwl@gmail.com>
19147
19148 * nsterm.m (ns_term_shutdown): Synchronize user defaults before
19149 exiting (Bug#8239).
19150
19151 2011-05-28 Jim Meyering <meyering@redhat.com>
19152
19153 Avoid a sign-extension bug in crypto_hash_function.
19154 * fns.c (to_uchar): Define.
19155 (crypto_hash_function): Use it to convert some newly-signed
19156 variables to unsigned, to avoid sign-extension bugs. For example,
19157 without this change, (md5 "truc") would evaluate to
19158 45723a2aff78ff4fff7fff1114760e62 rather than the expected
19159 45723a2af3788c4ff17f8d1114760e62. Reported by Antoine Levitt in
19160 https://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00883.html.
19161
19162 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
19163
19164 Integer overflow fixes.
19165
19166 * dbusbind.c: Serial number integer overflow fixes.
19167 (CHECK_DBUS_SERIAL_GET_SERIAL): New macro.
19168 (Fdbus_call_method_asynchronously, xd_read_message_1): Use a float
19169 to hold a serial number that is too large for a fixnum.
19170 (Fdbus_method_return_internal, Fdbus_method_error_internal):
19171 Check for serial numbers out of range. Decode any serial number
19172 that was so large that it became a float. (Bug#8722)
19173
19174 * dbusbind.c: Use XFASTINT rather than XUINT, and check for nonneg.
19175 (Fdbus_call_method, Fdbus_call_method_asynchronously):
19176 Use XFASTINT rather than XUINT when numbers are nonnegative.
19177 (xd_append_arg, Fdbus_method_return_internal):
19178 (Fdbus_method_error_internal): Likewise. Also, for unsigned
19179 arguments, check that Lisp number is nonnegative, rather than
19180 silently wrapping negative numbers around. (Bug#8722)
19181 (xd_read_message_1): Don't assume dbus_uint32_t can fit in int.
19182 (Bug#8722)
19183
19184 * data.c (arith_driver, Flsh): Avoid unnecessary casts to EMACS_UINT.
19185
19186 * ccl.c (ccl_driver): Redo slightly to avoid the need for 'unsigned'.
19187
19188 ccl: Add integer overflow checks.
19189 * ccl.c (CCL_CODE_MAX, GET_CCL_RANGE, GET_CCL_CODE, GET_CCL_INT):
19190 (IN_INT_RANGE): New macros.
19191 (ccl_driver): Use them to check for integer overflow when
19192 decoding a CCL program. Many of the new checks are whether XINT (x)
19193 fits in int; it doesn't always, on 64-bit hosts. The new version
19194 doesn't catch all possible integer overflows, but it's an
19195 improvement. (Bug#8719)
19196
19197 * alloc.c (make_event_array): Use XINT, not XUINT.
19198 There's no need for unsigned here.
19199
19200 * mem-limits.h (EXCEEDS_LISP_PTR) [!USE_LSB_TAG]: EMACS_UINT -> uintptr_t
19201 This follows up to the 2011-05-06 change that substituted uintptr_t
19202 for EMACS_INT. This case wasn't caught back then.
19203
19204 Rework Fformat to avoid integer overflow issues.
19205 * editfns.c: Include <float.h> unconditionally, as it's everywhere
19206 now (part of C89). Include <verify.h>.
19207 (MAX_10_EXP, CONVERTED_BYTE_SIZE): Remove; no longer needed.
19208 (pWIDE, pWIDElen, signed_wide, unsigned_wide): New defns.
19209 (Fformat): Avoid the prepass trying to compute sizes; it was only
19210 approximate and thus did not catch overflow reliably. Instead, walk
19211 through the format just once, formatting and computing sizes as we go,
19212 checking for integer overflow at every step, and allocating a larger
19213 buffer as needed. Keep track separately whether the format is
19214 multibyte. Keep only the most-recently calculated precision, rather
19215 than them all. Record whether each argument has been converted to
19216 string. Use EMACS_INT, not int, for byte and char and arg counts.
19217 Support field widths and precisions larger than INT_MAX. Avoid
19218 sprintf's undefined behavior with conversion specifications such as %#d
19219 and %.0c. Fix bug with strchr succeeding on '\0' when looking for
19220 flags. Fix bug with (format "%c" 256.0). Avoid integer overflow when
19221 formatting out-of-range floating point numbers with int
19222 formats. (Bug#8668)
19223
19224 * lisp.h (FIXNUM_OVERFLOW_P): Work even if arg is a NaN.
19225
19226 * data.c: Avoid integer truncation in expressions involving floats.
19227 * data.c: Include <intprops.h>.
19228 (arith_driver): When there's an integer overflow in an expression
19229 involving floating point, convert the integers to floating point
19230 so that the resulting value does not suffer from catastrophic
19231 integer truncation. For example, on a 64-bit host (* 4
19232 most-negative-fixnum 0.5) should yield about -4.6e+18, not zero.
19233 Do not rely on undefined behavior after integer overflow.
19234
19235 merge count_size_as_multibyte, parse_str_to_multibyte
19236 * character.c, character.h (count_size_as_multibyte):
19237 Rename from parse_str_to_multibyte; all uses changed.
19238 Check for integer overflow.
19239 * insdel.c, lisp.h (count_size_as_multibyte): Remove,
19240 since it's now a duplicate of the other. This is more of
19241 a character than a buffer op, so better that it's in character.c.
19242 * fns.c, print.c: Adjust to above changes.
19243
19244 2011-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
19245
19246 * xselect.c (x_convert_selection): Yet another int/Lisp_Object mixup.
19247
19248 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
19249
19250 * xselect.c: Fix minor problems prompted by GCC 4.6.0 warnings.
19251 (x_handle_selection_request, frame_for_x_selection): Remove unused vars.
19252 (x_clipboard_manager_save): Now static.
19253 (Fx_clipboard_manager_save): Rename local to avoid shadowing.
19254
19255 * fns.c: Fix minor problems prompted by GCC 4.6.0 warnings.
19256 (crypto_hash_function): Now static.
19257 Fix pointer signedness problems. Avoid unnecessary initializations.
19258
19259 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
19260
19261 * termhooks.h (Vselection_alist): Make it terminal-local.
19262
19263 * terminal.c (create_terminal): Initialize it.
19264
19265 * xselect.c: Support for clipboard managers.
19266 (Vselection_alist): Move to termhooks.h as terminal-local var.
19267 (LOCAL_SELECTION): New macro.
19268 (x_atom_to_symbol): Handle x_display_info_for_display fail case.
19269 (symbol_to_x_atom): Remove gratuitous arg.
19270 (x_handle_selection_request, lisp_data_to_selection_data)
19271 (x_get_foreign_selection, Fx_register_dnd_atom): Callers changed.
19272 (x_own_selection, x_get_local_selection, x_convert_selection):
19273 New arg, specifying work frame. Use terminal-local Vselection_alist.
19274 (some_frame_on_display): Delete unused function.
19275 (Fx_own_selection_internal, Fx_get_selection_internal)
19276 (Fx_disown_selection_internal, Fx_selection_owner_p)
19277 (Fx_selection_exists_p): New optional frame arg.
19278 (frame_for_x_selection, Fx_clipboard_manager_save): New functions.
19279 (x_handle_selection_clear): Don't treat other terminals with the
19280 same keyboard specially. Use the terminal-local Vselection_alist.
19281 (x_clear_frame_selections): Use Frun_hook_with_args.
19282
19283 * xterm.c (x_term_init): Intern ATOM and CLIPBOARD_MANAGER atoms.
19284
19285 * xterm.h: Add support for those atoms.
19286
19287 2011-05-26 Chong Yidong <cyd@stupidchicken.com>
19288
19289 * xselect.c: ICCCM-compliant handling of MULTIPLE targets.
19290 (converted_selections, conversion_fail_tag): New global variables.
19291 (x_selection_request_lisp_error): Free the above.
19292 (x_get_local_selection): Remove unnecessary code.
19293 (x_reply_selection_request): Args changed; handle arbitrary array
19294 of converted selections stored in converted_selections.
19295 Separate the XChangeProperty and SelectionNotify steps.
19296 (x_handle_selection_request): Rewrite to handle MULTIPLE target.
19297 (x_convert_selection): New function.
19298 (x_handle_selection_event): Simplify.
19299 (x_get_foreign_selection): Don't ignore incoming requests while
19300 waiting for an answer; this will fail when we implement
19301 SAVE_TARGETS, and seems unnecessary anyway.
19302 (selection_data_to_lisp_data): Recognize ATOM_PAIR type.
19303 (Vx_sent_selection_functions): Doc fix.
19304
19305 2011-05-26 Leo Liu <sdl.web@gmail.com>
19306
19307 * editfns.c (Ftranspose_regions): Allow empty regions. (Bug#8699)
19308
19309 2011-05-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19310
19311 * dispextern.h (struct glyph_row): New member fringe_bitmap_periodic_p.
19312
19313 * dispnew.c (shift_glyph_matrix, scrolling_window): Mark scrolled row
19314 for fringe update if it has periodic bitmap.
19315 (row_equal_p): Also compare left_fringe_offset, right_fringe_offset,
19316 and fringe_bitmap_periodic_p.
19317
19318 * fringe.c (get_fringe_bitmap_data): New function.
19319 (draw_fringe_bitmap_1, update_window_fringes): Use it.
19320 (update_window_fringes): Record periodicity of fringe bitmap in glyph
19321 row. Mark glyph row for fringe update if periodicity changed.
19322
19323 * xdisp.c (try_window_reusing_current_matrix): Don't mark scrolled row
19324 for fringe update unless it has periodic bitmap.
19325
19326 2011-05-25 Kenichi Handa <handa@m17n.org>
19327
19328 * xdisp.c (get_next_display_element): Set correct it->face_id for
19329 a static composition.
19330
19331 2011-05-24 Leo Liu <sdl.web@gmail.com>
19332
19333 * deps.mk (fns.o):
19334 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha1.h.
19335
19336 * fns.c (crypto_hash_function, Fsha1): New function.
19337 (Fmd5): Use crypto_hash_function.
19338 (syms_of_fns): Add Ssha1.
19339
19340 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
19341
19342 * gnutls.c: Remove unused macros.
19343 (fn_gnutls_transport_set_lowat, fn_gnutls_transport_set_pull_function):
19344 (fn_gnutls_transport_set_push_function) [!WINDOWSNT]:
19345 Remove macros that are defined and never used.
19346 Caught by gcc -Wunused-macros (GCC 4.6.0, Fedora 14).
19347
19348 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
19349
19350 * xselect.c (syms_of_xselect): Remove unused symbol SAVE_TARGETS.
19351 (Fx_get_selection_internal): Minor cleanup.
19352 (Fx_own_selection_internal): Rename arguments for consistency with
19353 select.el.
19354
19355 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
19356
19357 * xselect.c (QSAVE_TARGETS): New static var, to fix build failure.
19358
19359 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
19360
19361 * xselect.c (syms_of_xselect): Include character.h; use DEFSYM.
19362
19363 2011-05-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19364
19365 * dispnew.c (scrolling_window): Don't exclude the case that the
19366 last enabled row in the desired matrix touches the bottom boundary.
19367
19368 2011-05-21 Glenn Morris <rgm@gnu.org>
19369
19370 * Makefile.in ($(etc)/DOC): Make second command line even shorter.
19371 (SOME_MACHINE_OBJECTS): Replace FONT_OBJ by its maximal expansion,
19372 and add some more files.
19373
19374 2011-05-20 Eli Zaretskii <eliz@gnu.org>
19375
19376 * callproc.c (Fcall_process) [MSDOS]: Fix arguments to
19377 report_file_error introduced by the change from 2011-05-07.
19378
19379 2011-05-20 Paul Eggert <eggert@cs.ucla.edu>
19380
19381 * systime.h (Time): Define only if emacs is defined.
19382 This is to allow ../lib-src/profile.c to be compiled on FreeBSD,
19383 where the include path doesn't have X11/X.h by default. See
19384 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00561.html>.
19385
19386 2011-05-20 Kenichi Handa <handa@m17n.org>
19387
19388 * composite.c (find_automatic_composition): Fix previous change.
19389
19390 2011-05-20 Glenn Morris <rgm@gnu.org>
19391
19392 * lisp.mk: New file, split from Makefile.in.
19393 * Makefile.in (lisp): Move to separate file, inserted by @lisp_frag@.
19394 (shortlisp): Remove.
19395 ($(etc)/DOC): Edit lisp.mk rather than using $shortlisp.
19396
19397 2011-05-19 Glenn Morris <rgm@gnu.org>
19398
19399 * Makefile.in (MSDOS_SUPPORT_REAL, MSDOS_SUPPORT, NS_SUPPORT)
19400 (REAL_MOUSE_SUPPORT, GPM_MOUSE_SUPPORT, MOUSE_SUPPORT, TOOLTIP_SUPPORT)
19401 (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT, WINDOW_SUPPORT): Remove.
19402 (lisp): Set the order to that of loadup.el.
19403 (shortlisp): Make it a copy of $lisp.
19404 (SOME_MACHINE_LISP): Remove.
19405 ($(etc)/DOC): Depend just on $lisp, not $SOME_MACHINE_LISP too.
19406 Use just $shortlisp, not $SOME_MACHINE_LISP too.
19407
19408 2011-05-18 Kenichi Handa <handa@m17n.org>
19409
19410 * composite.c (CHAR_COMPOSABLE_P): Add more check for efficiency.
19411 (BACKWARD_CHAR): Wrap the arg STOP by parenthesis.
19412 (find_automatic_composition): Mostly rewrite for efficiency.
19413
19414 2011-05-18 Juanma Barranquero <lekktu@gmail.com>
19415
19416 * makefile.w32-in: Update dependencies.
19417
19418 2011-05-18 Christoph Scholtes <cschol2112@googlemail.com>
19419
19420 * menu.c: Include limits.h (fixes the MS-Windows build broken by
19421 2011-06-18T18:49:19Z!cyd@stupidchicken.com).
19422
19423 2011-05-18 Paul Eggert <eggert@cs.ucla.edu>
19424
19425 Fix some integer overflow issues, such as string length overflow.
19426
19427 * insdel.c (count_size_as_multibyte): Check for string overflow.
19428
19429 * character.c (lisp_string_width): Check for string overflow.
19430 Use EMACS_INT, not int, for string indexes and lengths; in
19431 particular, 2nd arg is now EMACS_INT, not int. Do not crash if
19432 the resulting string length overflows an EMACS_INT; instead,
19433 report a string overflow if no precision given. When checking for
19434 precision exhaustion, use a check that cannot possibly have
19435 integer overflow. (Bug#8675)
19436 * character.h (lisp_string_width): Adjust to new signature.
19437
19438 * alloc.c (string_overflow): New function.
19439 (Fmake_string): Use it. This doesn't change behavior, but saves
19440 a few bytes and will simplify future changes.
19441 * character.c (string_escape_byte8): Likewise.
19442 * lisp.h (string_overflow): New decl.
19443
19444 Fixups, following up to the user-interface timestamp change.
19445 * nsterm.m (last_mouse_movement_time, ns_mouse_position): Use Time
19446 for UI timestamps, instead of unsigned long.
19447 * msdos.c (mouse_get_pos): Likewise.
19448 * w32inevt.c (movement_time, w32_console_mouse_position): Likewise.
19449 * w32gui.h (Time): Define by including "systime.h" rather than by
19450 declaring it ourselves. (Bug#8664)
19451
19452 * dispextern.h (struct image): Don't assume time_t <= unsigned long.
19453 * image.c (clear_image_cache): Likewise.
19454
19455 * term.c (term_mouse_position): Don't assume time_t wraparound.
19456
19457 Be more systematic about user-interface timestamps.
19458 Before, the code sometimes used 'Time', sometimes 'unsigned long',
19459 and sometimes 'EMACS_UINT', to represent these timestamps.
19460 This change causes it to use 'Time' uniformly, as that's what X uses.
19461 This makes the code easier to follow, and makes it easier to catch
19462 integer overflow bugs such as Bug#8664.
19463 * frame.c (Fmouse_position, Fmouse_pixel_position):
19464 Use Time, not unsigned long, for user-interface timestamps.
19465 * keyboard.c (last_event_timestamp, kbd_buffer_get_event): Likewise.
19466 (button_down_time, make_lispy_position, make_lispy_movement): Likewise.
19467 * keyboard.h (last_event_timestamp): Likewise.
19468 * menu.c (Fx_popup_menu) [!HAVE_X_WINDOWS]: Likewise.
19469 * menu.h (xmenu_show): Likewise.
19470 * term.c (term_mouse_position): Likewise.
19471 * termhooks.h (struct input_event.timestamp): Likewise.
19472 (struct terminal.mouse_position_hook): Likewise.
19473 * xmenu.c (create_and_show_popup_menu, xmenu_show): Likewise.
19474 * xterm.c (XTmouse_position, x_scroll_bar_report_motion): Likewise.
19475 * systime.h (Time): New decl. Pull it in from <X11/X.h> if
19476 HAVE_X_WINDOWS, otherwise define it as unsigned long, which is
19477 what it was before.
19478 * menu.h, termhooks.h: Include "systime.h", for Time.
19479
19480 * keyboard.c (make_lispy_event): Fix problem in integer overflow.
19481 Don't assume that the difference between two unsigned long values
19482 can fit into an integer. At this point, we know button_down_time
19483 <= event->timestamp, so the difference must be nonnegative, so
19484 there's no need to cast the result if double-click-time is
19485 nonnegative, as it should be; check that it's nonnegative, just in
19486 case. This bug is triggered when events are more than 2**31 ms
19487 apart (about 25 days). (Bug#8664)
19488
19489 * xselect.c (last_event_timestamp): Remove duplicate decl.
19490 (x_own_selection): Remove needless cast to unsigned long.
19491
19492 * xmenu.c (set_frame_menubar): Use int, not EMACS_UINT, for indexes
19493 that always fit in int. Use a sentinel instead of a counter, to
19494 avoid a temp and to allay GCC's concerns about possible int overflow.
19495 * frame.h (struct frame): Use int for menu_bar_items_used
19496 instead of EMACS_INT, since it always fits in int.
19497
19498 * menu.c (grow_menu_items): Check for int overflow.
19499
19500 * xmenu.c (set_frame_menubar): Don't mishandle vectors with no nils.
19501
19502 * xterm.c: Use EMACS_INT for Emacs modifiers, and int for X modifiers.
19503 Before, the code was not consistent. These values cannot exceed
19504 2**31 - 1 so there's no need to make them unsigned.
19505 (x_x_to_emacs_modifiers): Accept int and return EMACS_INT.
19506 (x_emacs_to_x_modifiers): Accept EMACS_INT and return int.
19507 (x_x_to_emacs_modifiers, x_emacs_to_x_modifiers): Reject non-integers
19508 as modifiers.
19509 * xterm.h (x_x_to_emacs_modifiers): Adjust to signature change.
19510
19511 * lisp.h (XINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_INT.
19512 (XUINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_UINT.
19513 Otherwise, GCC 4.6.0 warns about printf (pI, XINT (...)),
19514 presumably because the widths might not match.
19515
19516 * window.c (size_window): Avoid needless test at loop start.
19517
19518 2011-05-18 Courtney Bane <emacs-bugs-7626@cbane.org> (tiny change)
19519
19520 * term.c (Fresume_tty): Restore hooks before reinitializing (bug#8687).
19521
19522 2011-05-12 Drew Adams <drew.adams@oracle.com>
19523
19524 * textprop.c (Fprevious_single_char_property_change): Doc fix (bug#8655).
19525
19526 2011-05-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19527
19528 * w32term.c (w32_draw_fringe_bitmap): Rename local vars `left' and
19529 `width' to `bar_area_x' and `bar_area_width', respectively.
19530 (x_scroll_run): Take account of fringe background extension.
19531
19532 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
19533 Rename local vars `left' and `width' to `bar_area_x' and
19534 `bar_area_width', respectively.
19535 (x_scroll_run) [USE_TOOLKIT_SCROLL_BARS]: Take account of fringe
19536 background extension.
19537
19538 2011-05-10 Jim Meyering <meyering@redhat.com>
19539
19540 * xdisp.c (x_intersect_rectangles): Fix typo "the the -> the".
19541
19542 2011-05-10 Juanma Barranquero <lekktu@gmail.com>
19543
19544 * image.c (Finit_image_library): Return t for built-in image types,
19545 like pbm and xbm. (Bug#8640)
19546
19547 2011-05-09 Andreas Schwab <schwab@linux-m68k.org>
19548
19549 * w32menu.c (set_frame_menubar): Fix submenu allocation.
19550
19551 2011-05-07 Eli Zaretskii <eliz@gnu.org>
19552
19553 * w32console.c (Fset_screen_color): Doc fix.
19554 (Fget_screen_color): New function.
19555 (syms_of_ntterm): Defsubr it.
19556
19557 * callproc.c (call_process_cleanup) [MSDOS]: Don't close and
19558 unlink the temporary file if Fcall_process didn't create it in the
19559 first place.
19560 (Fcall_process) [MSDOS]: Don't create tempfile if stdout of the
19561 child process will be redirected to a file specified with `:file'.
19562 Don't try to re-open tempfile in that case, and set fd[0] to -1 as
19563 cue to call_process_cleanup not to close that handle.
19564
19565 2011-05-07 Ben Key <bkey76@gmail.com>
19566
19567 * makefile.w32-in: The bootstrap-temacs rule now makes use of
19568 one of two shell specific rules, either bootstrap-temacs-CMD or
19569 bootstrap-temacs-SH. The bootstrap-temacs-SH rule is identical
19570 to the previous implementation of the bootstrap-temacs rule.
19571 The bootstrap-temacs-CMD rule is similar to the previous
19572 implementation of the bootstrap-temacs rule except that it
19573 makes use of the ESC_CFLAGS variable instead of the CFLAGS
19574 variable.
19575
19576 These changes, along with some changes to nt/configure.bat,
19577 nt/gmake.defs, and nt/nmake.defs, are required to extend my
19578 earlier fix to add support for --cflags and --ldflags options
19579 that include quotes so that it works whether make uses cmd or
19580 sh as the shell.
19581
19582 2011-05-06 Michael Albinus <michael.albinus@gmx.de>
19583
19584 * dbusbind.c (QCdbus_type_unix_fd): Declare static.
19585 (xd_remove_watch): Don't check QCdbus_type_unix_fd for SYMBOLP, it
19586 is a constant.
19587 (Fdbus_init_bus, xd_read_queued_messages): Bus can be a symbol or
19588 a string. Handle both cases.
19589 (Fdbus_call_method_asynchronously, Fdbus_register_signal)
19590 (Fdbus_register_method): Use Qinvalid_function.
19591
19592 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
19593
19594 * makefile.w32-in: Update dependencies.
19595 (LISP_H): Add inttypes.h and stdin.h.
19596 (PROCESS_H): Add unistd.h.
19597
19598 2011-05-06 Eli Zaretskii <eliz@gnu.org>
19599
19600 * lread.c: Include limits.h (fixes the MS-Windows build broken by
19601 2011-05-06T07:13:19Z!eggert@cs.ucla.edu).
19602
19603 2011-05-06 Paul Eggert <eggert@cs.ucla.edu>
19604
19605 * image.c (Finit_image_library) [!HAVE_NTGUI]: Omit unused local.
19606
19607 * term.c (vfatal): Remove stray call to va_end.
19608 It's not needed and the C Standard doesn't allow it here anyway.
19609
19610 Use C99's va_copy to avoid undefined behavior on x86-64 GNU/Linux.
19611 * eval.c (verror): doprnt a copy of ap, not the original. (Bug#8545)
19612
19613 * eval.c (verror): OK to create a string of up to MOST_POSITIVE_FIXNUM
19614 bytes.
19615
19616 * term.c: Don't include <stdarg.h>, as <lisp.h> does that.
19617
19618 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
19619
19620 * process.c (Fformat_network_address): Fix typo: args2 -> *args2.
19621
19622 * xmenu.c (set_frame_menubar): Fix typo: int * -> int (3 times).
19623
19624 * coding.c (detect_coding_charset): Fix typo: * 2 -> *4 (Bug#8601).
19625
19626 * charset.h (struct charset.code_space): Now has 15 elements, not 16.
19627 * charset.c (Fdefine_charset_internal): Don't initialize
19628 charset.code_space[15]. The value was garbage, on hosts with
19629 32-bit int (Bug#8600).
19630
19631 * lread.c (read_integer): Be more consistent with string-to-number.
19632 Use string_to_number to do the actual conversion; this avoids
19633 rounding errors and fixes some other screwups. Without this fix,
19634 for example, #x1fffffffffffffff was misread as -2305843009213693952.
19635 (digit_to_number): Move earlier, for benefit of read_integer.
19636 Return -1 if the digit is out of range for the base, -2 if it is
19637 not a digit in any supported base. (Bug#8602)
19638
19639 * doprnt.c (doprnt): Support arbitrary pI values, such as "I64".
19640
19641 * dispnew.c (scrolling_window): Return 1 if we scrolled,
19642 to match comment at start of function. This also removes a
19643 GCC warning about overflow in a 32+64-bit port.
19644
19645 * lisp.h (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Simplify.
19646
19647 * dbusbind.c: Do not use XPNTR on a value that may be an integer.
19648 Reported by Stefan Monnier in
19649 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00919.html>.
19650 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
19651 Use SYMBOLP-guarded XSYMBOL, not XPNTR.
19652
19653 * lisp.h (EMACS_INTPTR): Remove. All uses changed to intptr_t.
19654 (EMACS_UINTPTR): Likewise, with uintptr_t.
19655
19656 * lisp.h: Prefer 64-bit EMACS_INT if available.
19657 (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Define to 64-bit
19658 on 32-bit hosts that have 64-bit int, so that they can access
19659 large files.
19660 However, temporarily disable this change unless the temporary
19661 symbol WIDE_EMACS_INT is defined.
19662
19663 * lread.c, process.c: Do not include <inttypes.h>; lisp.h does it now.
19664
19665 Prefer intptr_t/uintptr_t for integers the same widths as pointers.
19666 This removes an assumption that EMACS_INT and long are the same
19667 width as pointers. The assumption is true for Emacs porting targets
19668 now, but we want to make other targets possible.
19669 * lisp.h: Include <inttypes.h>, for INTPTR_MAX, UINTPTR_MAX.
19670 (EMACS_INTPTR, EMACS_UINTPTR): New macros.
19671 In the rest of the code, change types of integers that hold casted
19672 pointers to EMACS_INTPTR and EMACS_UINTPTR, systematically
19673 replacing EMACS_INT, long, EMACS_UINT, and unsigned long.
19674 (XTYPE): Don't cast arg to EMACS_UINT; normally is not needed.
19675 (XSET): Cast type of XTYPE arg to EMACS_INTPTR; it is needed here.
19676 No need to cast type when ORing.
19677 (XPNTR): Return a value of type EMACS_INTPTR or EMACS_UINTPTR.
19678 * alloc.c (lisp_align_malloc): Remove a no-longer-needed cast.
19679 * doc.c (store_function_docstring): Use EMACS_INTPTR, so as not to
19680 assume EMACS_INT is the same width as char *.
19681 * gtkutil.c (xg_gtk_scroll_destroy, xg_tool_bar_button_cb):
19682 (xg_tool_bar_callback, xg_tool_bar_help_callback, xg_make_tool_item):
19683 Remove no-longer-needed casts.
19684 (xg_create_scroll_bar, xg_tool_bar_button_cb, xg_tool_bar_callback):
19685 (xg_tool_bar_help_callback, xg_make_tool_item):
19686 Use EMACS_INTPTR to hold an integer
19687 that will be cast to void *; this can avoid a GCC warning
19688 if EMACS_INT is not the same width as void *.
19689 * menu.c (find_and_call_menu_selection): Remove no-longer-needed cast.
19690 * xdisp.c (display_echo_area_1, resize_mini_window_1):
19691 (current_message_1, set_message_1):
19692 Use a local to convert to proper width without a cast.
19693 * xmenu.c (dialog_selection_callback): Likewise.
19694
19695 * sysdep.c (get_random): Don't assume EMACS_INT is no wider than long.
19696 Also, don't assume VALBITS / RAND_BITS is less than 5,
19697 and don't rely on undefined behavior when shifting a 1 left into
19698 the sign bit.
19699 * lisp.h (get_random): Change signature to match.
19700
19701 * lread.c (hash_string): Use size_t, not int, for hash computation.
19702 Normally we prefer signed values; but hashing is special, because
19703 it's better to use unsigned division on hash table sizes so that
19704 the remainder is nonnegative. Also, size_t is the natural width
19705 for hashing into memory. The previous code used 'int', which doesn't
19706 retain enough info to hash well into very large tables.
19707 (oblookup, oblookup_last_bucket_number, Funintern): Likewise.
19708
19709 * dbusbind.c: Don't possibly lose pointer info when converting.
19710 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
19711 Use XPNTR rather than XHASH, so that the high-order bits of
19712 the pointer aren't lost when converting through void *.
19713
19714 * eval.c (Fautoload): Don't double-shift a pointer.
19715
19716 * fns.c (Frandom): Let EMACS_UINT be wider than unsigned long.
19717
19718 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
19719
19720 * gnutls.c (DEF_GNUTLS_FN):
19721 * image.c (DEF_IMGLIB_FN): Make function pointers static.
19722
19723 2011-05-05 Andreas Schwab <schwab@linux-m68k.org>
19724
19725 * lread.c (lisp_file_lexically_bound_p): Stop scanning at end
19726 marker. (Bug#8610)
19727
19728 2011-05-05 Eli Zaretskii <eliz@gnu.org>
19729
19730 * w32heap.c (allocate_heap) [USE_LISP_UNION_TYPE || USE_LSB_TAG]:
19731 New version that can reserve upto 2GB of heap space.
19732
19733 2011-05-05 Chong Yidong <cyd@stupidchicken.com>
19734
19735 * nsfns.m (Fns_read_file_name): Doc fix (Bug#8534).
19736
19737 2011-05-05 Teodor Zlatanov <tzz@lifelogs.com>
19738
19739 * gnutls.c (fn_gnutls_certificate_set_x509_key_file): Add alias to
19740 `gnutls_certificate_set_x509_key_file'.
19741
19742 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
19743
19744 * makefile.w32-in ($(BLD)/image.$(O), $(BLD)/process.$(O)):
19745 Update dependencies.
19746
19747 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
19748
19749 * gnutls.h (emacs_gnutls_write, emacs_gnutls_read):
19750 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
19751 Remove unused parameter `fildes'.
19752 * process.c (read_process_output, send_process): Don't pass it.
19753
19754 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
19755
19756 Fix previous change: the library cache is defined in w32.c.
19757 * image.c (CACHE_IMAGE_TYPE) [!HAVE_NTGUI]: Define to noop.
19758 (Finit_image_library): Wrap Vlibrary_cache on "#ifdef HAVE_NTGUI".
19759
19760 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
19761
19762 Implement dynamic loading of GnuTLS on Windows.
19763
19764 * gnutls.h (GNUTLS_EMACS_ERROR_NOT_LOADED): New macro.
19765 (emacs_gnutls_write, emacs_gnutls_read): Mark as extern.
19766 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
19767 Declare.
19768
19769 * gnutls.c (Qgnutls_dll): Define.
19770 (DEF_GNUTLS_FN, LOAD_GNUTLS_FN): New macros.
19771 (gnutls_*): Declare function pointers.
19772 (init_gnutls_functions): New function to initialize function pointers.
19773 (emacs_gnutls_handshake, Fgnutls_error_string, Fgnutls_deinit)
19774 (emacs_gnutls_global_init, Fgnutls_bye): Use function pointers.
19775 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
19776 Wrappers for gnutls_record_check_pending and gnutls_transport_set_errno.
19777 (emacs_gnutls_write, emacs_gnutls_read)
19778 (emacs_gnutls_handle_error, Fgnutls_error_fatalp)
19779 (Fgnutls_available_p): New function.
19780 (Fgnutls_boot): Call Fgnutls_available_p. Use function pointers.
19781 (syms_of_gnutls) <Qgnutls_dll>: Initialize and staticpro it.
19782 (syms_of_gnutls) <Sgnutls_available_p>: defsubr it.
19783
19784 * image.c: Include w32.h.
19785 (Vimage_type_cache): Delete.
19786 (syms_of_image) <Vimage_type_cache>: Don't initialize and staticpro it.
19787 (CACHE_IMAGE_TYPE, Finit_image_library): Use Vlibrary_cache instead.
19788 (w32_delayed_load): Move to w32.c.
19789
19790 * w32.h (VlibraryCache, QCloaded_from, w32_delayed_load): Declare.
19791
19792 * w32.c (QCloaded_from, Vlibrary_cache): Define.
19793 (w32_delayed_load): Move from image.c. When loading a library, record
19794 its filename in the :loaded-from property of the library id.
19795 (globals_of_w32) <QCloaded_from, Vlibrary_cache>:
19796 Initialize and staticpro them.
19797 (emacs_gnutls_pull, emacs_gnutls_push): Call emacs_gnutls_* functions.
19798
19799 * process.c: Include lisp.h before w32.h, not after.
19800 (wait_reading_process_output): Call emacs_gnutls_record_check_pending
19801 instead of gnutls_record_check_pending.
19802
19803 * callproc.c, emacs.c: Include lisp.h before w32.h, not after.
19804
19805 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
19806
19807 * gnutls.c (Fgnutls_boot): Support :keylist and :crlfiles options
19808 instead of :keyfiles. Give GnuTLS the keylist and the CRL lists
19809 as passed in.
19810
19811 2011-05-03 Jan Djärv <jan.h.d@swipnet.se>
19812
19813 * xterm.c (x_set_frame_alpha): Do not set property on anything
19814 else than FRAME_X_OUTER_WINDOW (Bug#8608).
19815
19816 2011-05-02 Juanma Barranquero <lekktu@gmail.com>
19817
19818 * sysdep.c (get_tty_size) [WINDOWSNT]: Implement. (Bug#8596)
19819
19820 2011-05-02 Juanma Barranquero <lekktu@gmail.com>
19821
19822 * gnutls.c (Qgnutls_log_level, Qgnutls_code, Qgnutls_anon)
19823 (Qgnutls_x509pki, Qgnutls_e_interrupted, Qgnutls_e_again)
19824 (Qgnutls_e_invalid_session, Qgnutls_e_not_ready_for_handshake)
19825 (gnutls_global_initialized, Qgnutls_bootprop_priority)
19826 (Qgnutls_bootprop_trustfiles, Qgnutls_bootprop_keyfiles)
19827 (Qgnutls_bootprop_callbacks, Qgnutls_bootprop_loglevel)
19828 (Qgnutls_bootprop_hostname, Qgnutls_bootprop_verify_flags)
19829 (Qgnutls_bootprop_verify_error, Qgnutls_bootprop_verify_hostname_error)
19830 (Qgnutls_bootprop_callbacks_verify): Make static.
19831
19832 2011-05-01 Andreas Schwab <schwab@linux-m68k.org>
19833
19834 * callproc.c: Indentation fixup.
19835
19836 * sysdep.c (wait_for_termination_1): Make static.
19837 (wait_for_termination, interruptible_wait_for_termination):
19838 Move after wait_for_termination_1.
19839
19840 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
19841
19842 * sysdep.c (interruptible_wait_for_termination): New function
19843 which is like wait_for_termination, but allows keyboard
19844 interruptions.
19845
19846 * callproc.c (Fcall_process): Add (:file "file") as an option for
19847 the STDOUT buffer.
19848 (Fcall_process_region): Ditto.
19849
19850 2011-04-30 Eli Zaretskii <eliz@gnu.org>
19851
19852 * dosfns.c (Fint86, Fdos_memget, Fdos_memput): Use `ASIZE (FOO)'
19853 rather than `XVECTOR (FOO)->size'.
19854
19855 * process.c: Remove HAVE_INTTYPES_H condition from inclusion of
19856 inttypes.h, as a gnulib replacement is used if it not available in
19857 system headers.
19858
19859 2011-04-21 Eli Zaretskii <eliz@gnu.org>
19860
19861 Lift the MOST_POSITIVE_FIXNUM/4 limitation on visited files.
19862 * fileio.c (Finsert_file_contents): Don't limit file size to 1/4
19863 of MOST_POSITIVE_FIXNUM. (Bug#8528)
19864
19865 * coding.c (coding_alloc_by_realloc): Error out if destination
19866 will grow beyond MOST_POSITIVE_FIXNUM.
19867 (decode_coding_emacs_mule): Abort if there isn't enough place in
19868 charbuf for the composition carryover bytes. Reserve an extra
19869 space for up to 2 characters produced in a loop.
19870 (decode_coding_iso_2022): Abort if there isn't enough place in
19871 charbuf for the composition carryover bytes.
19872
19873 2011-04-21 Eli Zaretskii <eliz@gnu.org>
19874
19875 * doprnt.c (doprnt) [!HAVE_LONG_LONG_INT]: Error out instead of
19876 aborting when %lld or %lll format is passed.
19877 [!HAVE_UNSIGNED_LONG_LONG_INT]: Error out instead of aborting when
19878 %llo or %llx format is passed. (Bug#8545)
19879
19880 * window.c (window_scroll_line_based): Use a marker instead of
19881 simple variables to record original value of point. (Bug#7952)
19882
19883 * doprnt.c (doprnt): Fix the case where a multibyte sequence
19884 produced by %s or %c overflows available buffer space. (Bug#8545)
19885
19886 2011-04-28 Paul Eggert <eggert@cs.ucla.edu>
19887
19888 * doprnt.c (doprnt): Omit useless test; int overflow check (Bug#8545).
19889 (SIZE_MAX): Move defn after all includes, as they might #define it.
19890
19891 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
19892
19893 * w32.c (init_environment): Warn about defaulting HOME to C:\.
19894
19895 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
19896
19897 * keyboard.c (Qdelayed_warnings_hook): Define.
19898 (command_loop_1): Run `delayed-warnings-hook'
19899 if Vdelayed_warnings_list is non-nil.
19900 (syms_of_keyboard) <delayed-warnings-hook>: DEFSYM it.
19901 (syms_of_keyboard) <delayed-warnings-list>: DEFVAR_LISP it.
19902
19903 2011-04-28 Eli Zaretskii <eliz@gnu.org>
19904
19905 * doprnt.c (doprnt): Don't return value smaller than the buffer
19906 size if the message was truncated. (Bug#8545).
19907
19908 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
19909
19910 * w32fns.c (Fx_change_window_property, Fx_delete_window_property)
19911 (Fx_window_property): #if-0 the whole functions, not just the bodies.
19912
19913 2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
19914
19915 * doprnt.c (doprnt): Support "ll" length modifier, for long long.
19916
19917 2011-04-27 Juanma Barranquero <lekktu@gmail.com>
19918
19919 * makefile.w32-in: Update dependencies.
19920
19921 2011-04-27 Eli Zaretskii <eliz@gnu.org>
19922
19923 Improve `doprnt' and its usage. (Bug#8545)
19924 * doprnt.c (doprnt): Make sure `format' is never accessed beyond
19925 `format_end'. Remove support for %l as a conversion specifier.
19926 Don't use xrealloc. Improve diagnostics when the %l size modifier
19927 is used. Update the commentary.
19928
19929 * eval.c (verror): Simplify calculation of size_t.
19930
19931 * coding.c (Ffind_operation_coding_system): Fix diagnostic error
19932 messages.
19933
19934 2011-04-27 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
19935
19936 * buffer.c (init_buffer) [USE_MMAP_FOR_BUFFERS]: Adjust to aliasing
19937 change.
19938
19939 2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
19940
19941 * nsmenu.m: Replace all uses of XVECTOR with ASIZE and AREF.
19942 This makes this file independent of the recent pseudovector change.
19943
19944 2011-04-26 Paul Eggert <eggert@cs.ucla.edu>
19945
19946 * keyboard.c (handle_user_signal): Fix pointer signedness problem.
19947
19948 * gnutls.c (emacs_gnutls_handle_error): Remove unused local.
19949 (Fgnutls_boot): gnutls_certificate_verify_peers2 wants unsigned *.
19950 Remove unused local.
19951 (emacs_gnutls_write): Don't use uninitialized rtnval if nbyte <= 0.
19952
19953 * lisp.h: Fix a problem with aliasing and vector headers. (Bug#8546)
19954 GCC 4.6.0 optimizes based on type-based alias analysis.
19955 For example, if b is of type struct buffer * and v of type struct
19956 Lisp_Vector *, then gcc -O2 was incorrectly assuming that &b->size
19957 != &v->size, and therefore "v->size = 1; b->size = 2; return
19958 v->size;" must therefore return 1. This assumption is incorrect
19959 for Emacs, since it type-puns struct Lisp_Vector * with many other
19960 types. To fix this problem, this patch adds a new type struct
19961 vectorlike_header that documents the constraints on layout of vectors
19962 and pseudovectors, and helps optimizing compilers not get fooled
19963 by Emacs's type punning. It also adds the macros XSETTYPED_PVECTYPE
19964 XSETTYPED_PSEUDOVECTOR, TYPED_PSEUDOVECTORP, for similar reasons.
19965 * lisp.h (XSETTYPED_PVECTYPE): New macro, specifying the name of
19966 the size member.
19967 (XSETPVECTYPE): Rewrite in terms of new macro.
19968 (XSETPVECTYPESIZE): New macro, specifying both type and size.
19969 This is a bit clearer, and further avoids the possibility of
19970 undesirable aliasing.
19971 (XSETTYPED_PSEUDOVECTOR): New macro, specifying the size.
19972 (XSETPSEUDOVECTOR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR.
19973 (XSETSUBR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR and XSIZE,
19974 since Lisp_Subr is a special case (no "next" field).
19975 (ASIZE): Now uses header.size rather than size.
19976 All previous uses of XVECTOR (foo)->size replaced to use this macro,
19977 to avoid the hassle of writing XVECTOR (foo)->header.size.
19978 (struct vectorlike_header): New type.
19979 (TYPED_PSEUDOVECTORP): New macro, also specifying the C type of the
19980 object, to help avoid aliasing.
19981 (PSEUDOVECTORP): Rewrite in terms of TYPED_PSEUDOVECTORP.
19982 (SUBRP): Likewise, since Lisp_Subr is a special case.
19983 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table):
19984 (struct Lisp_Sub_Char_Table, struct Lisp_Bool_Vector):
19985 (struct Lisp_Hash_Table): Combine first two members into a single
19986 struct vectorlike_header member. All uses of "size" and "next" members
19987 changed to be "header.size" and "header.next".
19988 * buffer.h (struct buffer): Likewise.
19989 * font.h (struct font_spec, struct font_entity, struct font): Likewise.
19990 * frame.h (struct frame): Likewise.
19991 * process.h (struct Lisp_Process): Likewise.
19992 * termhooks.h (struct terminal): Likewise.
19993 * window.c (struct save_window_data, struct saved_window): Likewise.
19994 * window.h (struct window): Likewise.
19995 * alloc.c (allocate_buffer, Fmake_bool_vector, allocate_pseudovector):
19996 Use XSETPVECTYPESIZE, not XSETPVECTYPE, to avoid aliasing problems.
19997 * buffer.c (init_buffer_once): Likewise.
19998 * lread.c (defsubr): Use XSETTYPED_PVECTYPE, since Lisp_Subr is a
19999 special case.
20000 * process.c (Fformat_network_address): Use local var for size,
20001 for brevity.
20002
20003 * bytecode.c (exec_byte_code): Don't use XVECTOR before CHECK_VECTOR.
20004
20005 Make the Lisp reader and string-to-float more consistent (Bug#8525)
20006 * data.c (atof): Remove decl; no longer used or needed.
20007 (digit_to_number): Move to lread.c.
20008 (Fstring_to_number): Use new string_to_number function, to be
20009 consistent with how the Lisp reader treats infinities and NaNs.
20010 Do not assume that floating-point numbers represent EMACS_INT
20011 without losing information; this is not true on most 64-bit hosts.
20012 Avoid double-rounding errors, by insisting on integers when
20013 parsing non-base-10 numbers, as the documentation specifies.
20014 * lisp.h (string_to_number): New decl, replacing ...
20015 (isfloat_string): Remove.
20016 * lread.c: Include <inttypes.h>, for uintmax_t and strtoumax.
20017 (read1): Do not accept +. and -. as integers; this
20018 appears to have been a coding error. Similarly, do not accept
20019 strings like +-1e0 as floating point numbers. Do not report
20020 overflow for integer overflows unless the base is not 10 which
20021 means we have no simple and reliable way to continue.
20022 Break out the floating-point parsing into a new
20023 function string_to_number, so that Fstring_to_number parses
20024 floating point numbers consistently with the Lisp reader.
20025 (digit_to_number): Move here from data.c. Make it static inline.
20026 (E_CHAR, EXP_INT): Remove, replacing with ...
20027 (E_EXP): New macro, to solve the "1.0e+" problem mentioned below.
20028 (string_to_number): New function, replacing isfloat_string.
20029 This function checks for valid syntax and produces the resulting
20030 Lisp float number too. Rework it so that string-to-number
20031 no longer mishandles examples like "1.0e+". Use strtoumax,
20032 so that overflow for non-base-10 numbers is reported only when
20033 there's no portable and simple way to convert to floating point.
20034
20035 * textprop.c (set_text_properties_1): Rewrite for clarity,
20036 and to avoid GCC warning about integer overflow.
20037
20038 * intervals.h (struct interval): Use EMACS_INT for members
20039 where EMACS_UINT might cause problems. See
20040 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html>.
20041 (CHECK_TOTAL_LENGTH): Remove cast to EMACS_INT; no longer needed.
20042 * intervals.c (interval_deletion_adjustment): Now returns EMACS_INT.
20043 All uses changed.
20044 (offset_intervals): Tell GCC not to worry about length overflow
20045 when negating a negative length.
20046
20047 * alloc.c (overrun_check_malloc, overrun_check_realloc): Now static.
20048 (overrun_check_free): Likewise.
20049
20050 * alloc.c (SDATA_SIZE) [!GC_CHECK_STRING_BYTES]: Avoid runtime check
20051 in the common case where SDATA_DATA_OFFSET is a multiple of Emacs
20052 word size.
20053
20054 * gnutls.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
20055 (gnutls_make_error): Rename local to avoid shadowing.
20056 (gnutls_emacs_global_deinit): ifdef out; not used.
20057 (Fgnutls_boot): Use const for pointer to readonly storage.
20058 Comment out unused local. Fix pointer signedness problems.
20059
20060 * lread.c (openp): Don't stuff size_t into an 'int'.
20061 Use <= on length, not < on length + 1, to avoid GCC 4.6.0 warning
20062 about possible signed overflow.
20063
20064 * gtkutil.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
20065 (GDK_KEY_g): Don't define if already defined.
20066 (xg_prepare_tooltip): Avoid pointer signedness problem.
20067 (xg_set_toolkit_scroll_bar_thumb): Redo to avoid two casts.
20068
20069 * process.c (Fnetwork_interface_info): Avoid left-shift undefined
20070 behavior with 1 << 31. GCC 4.6.0 warns about this on 32-bit hosts.
20071
20072 * xfns.c (Fx_window_property): Simplify a bit,
20073 to make a bit faster and to avoid GCC 4.6.0 warning.
20074 * xselect.c (x_get_window_property, x_handle_dnd_message): Likewise.
20075
20076 * fns.c (internal_equal): Don't assume size_t fits in int.
20077
20078 * alloc.c (compact_small_strings): Tighten assertion a little.
20079
20080 Replace pEd with more-general pI, and fix some printf arg casts.
20081 * lisp.h (pI): New macro, generalizing old pEd macro to other
20082 conversion specifiers. For example, use "...%"pI"d..." rather
20083 than "...%"pEd"...".
20084 (pEd): Remove. All uses replaced with similar uses of pI.
20085 * m/amdx86-64.h, m/ia64.h, m/ibms390x.h: Likewise.
20086 * alloc.c (check_pure_size): Don't overflow by converting size to int.
20087 * bidi.c (bidi_dump_cached_states): Use pI to avoid cast.
20088 * data.c (Fnumber_to_string): Use pI instead of if-then-else-abort.
20089 * dbusbind.c (xd_append_arg): Use pI to avoid cast.
20090 (Fdbus_method_return_internal, Fdbus_method_error_internal): Likewise.
20091 * font.c (font_unparse_xlfd): Avoid potential buffer overrun on
20092 64-bit hosts.
20093 (font_unparse_xlfd, font_unparse_fcname): Use pI to avoid casts.
20094 * keyboard.c (record_char, modify_event_symbol): Use pI to avoid casts.
20095 * print.c (safe_debug_print, print_object): Likewise.
20096 (print_object): Don't overflow by converting EMACS_INT or EMACS_UINT
20097 to int.
20098 Use pI instead of if-then-else-abort. Use %p to avoid casts,
20099 avoiding the 0 flag, which is not portable.
20100 * process.c (Fmake_network_process): Use pI to avoid cast.
20101 * region-cache.c (pp_cache): Likewise.
20102 * xdisp.c (decode_mode_spec): Likewise.
20103 * xrdb.c (x_load_resources) [USE_MOTIF]: Use pI to avoid undefined
20104 behavior on 64-bit hosts with printf arg.
20105 * xselect.c (x_queue_event): Use %p to avoid casts, avoiding 0 flag.
20106 (x_stop_queuing_selection_requests): Likewise.
20107 (x_get_window_property): Don't truncate byte count to an 'int'
20108 when tracing.
20109
20110 * frame.c (frame_name_fnn_p): Get rid of strtol, which isn't right
20111 here, since it parses constructs like leading '-' and spaces,
20112 which are not wanted; and it overflows with large numbers.
20113 Instead, simply match F[0-9]+, which is what is wanted anyway.
20114
20115 * alloc.c: Remove unportable assumptions about struct layout.
20116 (SDATA_SELECTOR, SDATA_DATA_OFFSET): New macros.
20117 (SDATA_OF_STRING, SDATA_SIZE, allocate_string_data):
20118 (allocate_vectorlike, make_pure_vector): Use the new macros,
20119 plus offsetof, to remove unportable assumptions about struct layout.
20120 These assumptions hold on all porting targets that I know of, but
20121 they are not guaranteed, they're easy to remove, and removing them
20122 makes further changes easier.
20123
20124 * alloc.c (BLOCK BYTES): Fix typo by changing "ablock" to "ablocks".
20125 This doesn't fix a bug but makes the code clearer.
20126 (string_overrun_cookie): Now const. Use initializers that
20127 don't formally overflow signed char, to avoid warnings.
20128 (allocate_string_data) [GC_CHECK_STRING_OVERRUN]: Fix typo that
20129 can cause Emacs to crash when string overrun checking is enabled.
20130 (allocate_buffer): Don't assume sizeof (struct buffer) is a
20131 multiple of sizeof (EMACS_INT); it need not be, if
20132 alignof(EMACS_INT) < sizeof (EMACS_INT).
20133 (check_sblock, check_string_bytes, check_string_free_list): Protoize.
20134
20135 2011-04-26 Juanma Barranquero <lekktu@gmail.com>
20136
20137 * keyboard.c (QCrtl): Rename from Qrtl. All uses changed.
20138
20139 2011-04-26 Teodor Zlatanov <tzz@lifelogs.com>
20140
20141 * gnutls.c (emacs_gnutls_handshake): Return an error if we're not
20142 supposed to be handshaking. (Bug#8556)
20143 Reported by Paul Eggert <eggert@cs.ucla.edu>.
20144
20145 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
20146
20147 * lisp.h (Qdebug): List symbol.
20148 * eval.c (Qdebug): Restore global linkage.
20149 * keyboard.c (debug-on-event): New variable.
20150 (handle_user_signal): Break into debugger when debug-on-event
20151 matches the current signal symbol.
20152
20153 2011-04-25 Dan Nicolaescu <dann@ics.uci.edu>
20154
20155 * alloc.c (check_sblock, check_string_bytes)
20156 (check_string_free_list): Convert to standard C.
20157
20158 2011-04-25 Teodor Zlatanov <tzz@lifelogs.com>
20159
20160 * w32.c (emacs_gnutls_push): Fix typo.
20161
20162 2011-04-25 Eli Zaretskii <eliz@gnu.org>
20163
20164 * gnutls.c (emacs_gnutls_handshake): Avoid compiler warnings about
20165 "cast to pointer from integer of different size".
20166
20167 Improve doprnt and its use in verror. (Bug#8545)
20168 * doprnt.c (doprnt): Document the set of format control sequences
20169 supported by the function. Use SAFE_ALLOCA instead of always
20170 using `alloca'.
20171
20172 * eval.c (verror): Don't limit the buffer size at size_max-1, that
20173 is one byte too soon. Don't use xrealloc; instead xfree and
20174 xmalloc anew.
20175
20176 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
20177
20178 * gnutls.h: Add GNUTLS_STAGE_CALLBACKS enum to denote we're in the
20179 callbacks stage.
20180
20181 * gnutls.c: Renamed global_initialized to
20182 gnutls_global_initialized. Added internals for the
20183 :verify-hostname-error, :verify-error, and :verify-flags
20184 parameters of `gnutls-boot' and documented those parameters in the
20185 docstring. Start callback support.
20186 (emacs_gnutls_handshake): Add Woe32 support. Retry handshake
20187 unless a fatal error occurred. Call gnutls_alert_send_appropriate
20188 on error. Return error code.
20189 (emacs_gnutls_write): Call emacs_gnutls_handle_error.
20190 (emacs_gnutls_read): Likewise.
20191 (Fgnutls_boot): Return handshake error code.
20192 (emacs_gnutls_handle_error): New function.
20193 (wsaerror_to_errno): Likewise.
20194
20195 * w32.h (emacs_gnutls_pull): Add prototype.
20196 (emacs_gnutls_push): Likewise.
20197
20198 * w32.c (emacs_gnutls_pull): New function for GnuTLS on Woe32.
20199 (emacs_gnutls_push): Likewise.
20200
20201 2011-04-24 Claudio Bley <claudio.bley@gmail.com> (tiny change)
20202
20203 * process.c (wait_reading_process_output): Check if GnuTLS
20204 buffered some data internally if no FDs are set for TLS
20205 connections.
20206
20207 * makefile.w32-in (OBJ2): Add gnutls.$(O).
20208 (LIBS): Link to USER_LIBS.
20209 ($(BLD)/gnutls.$(0)): New target.
20210
20211 2011-04-24 Eli Zaretskii <eliz@gnu.org>
20212
20213 * xdisp.c (handle_single_display_spec): Rename the
20214 display_replaced_before_p argument into display_replaced_p, to
20215 make it consistent with the commentary. Fix typos in the
20216 commentary.
20217
20218 * textprop.c (syms_of_textprop): Remove dead code.
20219 (copy_text_properties): Delete obsolete commentary about an
20220 interface that was deleted long ago. Fix typos in the description
20221 of arguments.
20222
20223 * msdos.c (XMenuActivate, XMenuAddSelection): Adjust argument list
20224 to changes in oldXMenu/XMenu.h from 2011-04-16.
20225 <menu_help_message, prev_menu_help_message>: Constify.
20226 (IT_menu_make_room): menu->help_text is now `const char **';
20227 adjust.
20228
20229 * msdos.h (XMenuActivate, XMenuAddSelection): Adjust prototypes
20230 to changes in oldXMenu/XMenu.h from 2011-04-16.
20231 (struct XMenu): Declare `help_text' `const char **'.
20232
20233 * xfaces.c <Qunspecified>: Make extern again.
20234
20235 * syntax.c: Include sys/types.h before including regex.h, as
20236 required by POSIX.
20237
20238 * doc.c (get_doc_string): Improve the format passed to `error'.
20239
20240 * doprnt.c (doprnt): Improve commentary.
20241
20242 * term.c (init_tty) [MSDOS]: Fix 1st argument to maybe_fatal.
20243
20244 * Makefile.in (TAGS): Depend on $(M_FILE) and $(S_FILE), and scan
20245 them with etags.
20246
20247 * makefile.w32-in (globals.h): Add a dummy recipe, to make any
20248 changes in globals.h immediately force recompilation.
20249 (TAGS): Depend on $(CURDIR)/m/intel386.h and
20250 $(CURDIR)/s/ms-w32.h.
20251 (TAGS-gmake): Scan $(CURDIR)/m/intel386.h and $(CURDIR)/s/ms-w32.h.
20252
20253 * character.c (Fchar_direction): Function deleted.
20254 (syms_of_character): Don't defsubr it.
20255 <char-direction-table>: Deleted.
20256
20257 2011-04-23 Eli Zaretskii <eliz@gnu.org>
20258
20259 Fix doprnt so it could be used again safely in `verror'. (Bug#8435)
20260 * doprnt.c: Include limits.h.
20261 (SIZE_MAX): New macro.
20262 (doprnt): Return a size_t value. 2nd arg is now size_t.
20263 Many local variables are now size_t instead of int or unsigned.
20264 Improve overflow protection. Support `l' modifier for integer
20265 conversions. Support %l conversion. Don't assume an EMACS_INT
20266 argument for integer conversions and for %c.
20267
20268 * lisp.h (doprnt): Restore prototype.
20269
20270 * makefile.w32-in ($(BLD)/callint.$(O)): Depend on
20271 $(SRC)/character.h.
20272
20273 * Makefile.in (base_obj): Add back doprnt.o.
20274
20275 * deps.mk (doprnt.o): Add back prerequisites.
20276 (callint.o): Depend on character.h.
20277
20278 * eval.c (internal_lisp_condition_case): Include the handler
20279 representation in the error message.
20280 (verror): Call doprnt instead of vsnprintf. Fix an off-by-one bug
20281 when breaking from the loop.
20282
20283 * xdisp.c (vmessage): Call doprnt instead of vsnprintf.
20284
20285 * callint.c (Fcall_interactively): When displaying error message
20286 about invalid control letter, pass the character's codepoint, not
20287 a pointer to its multibyte form. Improve display of the character
20288 in octal and display also its hex code.
20289
20290 * character.c (char_string): Use %x to display the (unsigned)
20291 codepoint of an invalid character, to avoid displaying a bogus
20292 negative value.
20293
20294 * font.c (check_otf_features): Pass SDATA of SYMBOL_NAME to
20295 `error', not SYMBOL_NAME itself.
20296
20297 * coding.c (Fencode_sjis_char, Fencode_big5_char): Use %c for
20298 character arguments to `error'.
20299
20300 * charset.c (check_iso_charset_parameter): Fix incorrect argument
20301 to `error' in error message about FINAL_CHAR argument. Make sure
20302 FINAL_CHAR is a character, and use %c when it is passed as
20303 argument to `error'.
20304
20305 2011-04-23 Eli Zaretskii <eliz@gnu.org>
20306
20307 * s/ms-w32.h (localtime): Redirect to sys_localtime.
20308
20309 * w32.c: Include <time.h>.
20310 (sys_localtime): New function.
20311
20312 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
20313
20314 * xdisp.c (init_xdisp): Initialize echo_area_window (Bug#6451).
20315
20316 * buffer.c (syms_of_buffer): Doc fix (Bug#6902).
20317
20318 2011-04-23 Samuel Thibault <sthibault@debian.org> (tiny change)
20319
20320 * sysdep.c (wait_for_termination): On GNU Hurd, kill returns -1 on
20321 zombies (Bug#8467).
20322
20323 2011-04-19 Eli Zaretskii <eliz@gnu.org>
20324
20325 * syntax.h (SETUP_SYNTAX_TABLE_FOR_OBJECT): Fix setting of
20326 gl_state.e_property when gl_state.object is Qt.
20327
20328 * insdel.c (make_gap_larger): Remove limitation of buffer size
20329 to <= INT_MAX.
20330
20331 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
20332
20333 * xdisp.c (lookup_glyphless_char_display)
20334 (produce_glyphless_glyph): Handle cons cell entry in
20335 glyphless-char-display.
20336 (Vglyphless_char_display): Document it.
20337
20338 * term.c (produce_glyphless_glyph): Handle cons cell entry in
20339 glyphless-char-display.
20340
20341 2011-04-17 Chong Yidong <cyd@stupidchicken.com>
20342
20343 * xdisp.c (get_next_display_element): Remove unnecessary ifdefs.
20344
20345 * termhooks.h (FRAME_WINDOW_P): Remove duplicated definitions.
20346
20347 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): Add missing
20348 definition for no-X builds.
20349
20350 2011-04-16 Paul Eggert <eggert@cs.ucla.edu>
20351
20352 Static checks with GCC 4.6.0 and non-default toolkits.
20353
20354 * s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF): Protoize decl.
20355
20356 * process.c (keyboard_bit_set): Define only if SIGIO.
20357 (send_process_trap): Mark it with NO_RETURN if it doesn't return.
20358 (send_process): Repair possible setjmp clobbering.
20359
20360 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Don't pass extra arg to 'fatal'.
20361
20362 * eval.c: Include <stdio.h>, for vsnprintf on non-GNU/Linux hosts.
20363
20364 * data.c (arith_error): Mark with NO_RETURN if it doesn't return.
20365
20366 * alloc.c (bytes_used_when_full, SPARE_MEMORY, BYTES_USED):
20367 Define only if needed.
20368
20369 * sysdep.c (_FILE_OFFSET_BITS): Make this hack even uglier
20370 by pacifying GCC about it. Maybe it's time to retire it?
20371 * xfaces.c (USG, __TIMEVAL__): Likewise.
20372
20373 * dispextern.h (struct redisplay_interface): Rename param
20374 to avoid shadowing.
20375 * termhooks.h (struct terminal): Likewise.
20376 * xterm.c (xembed_send_message): Likewise.
20377
20378 * insdel.c (make_gap_smaller): Define only if
20379 USE_MMAP_FOR_BUFFERS || REL_ALLOC || DOUG_LEA_MALLOC.
20380
20381 * keyboard.c (read_char): Make a var volatile so longjmp won't clobber
20382 it.
20383
20384 * emacs.c (MAX_HEAP_BSS_DIFF, my_edata): Move to where they're used,
20385 so that we aren't warned about unused symbols.
20386
20387 * xfns.c (Fx_file_dialog): Rename local to avoid shadowing.
20388
20389 * xdisp.c (x_produce_glyphs): Mark var as initialized (Bug#8512).
20390
20391 * xfns.c (x_real_positions): Mark locals as initialized.
20392
20393 * xmenu.c (xmenu_show): Don't use uninitialized vars.
20394
20395 * xterm.c: Fix problems found by static analysis with other toolkits.
20396 (toolkit_scroll_bar_interaction): Define and use only if USE_X_TOOLKIT.
20397 (x_dispatch_event): Declare static if USE_GTK, and
20398 define if USE_GTK || USE_X_TOOLKIT.
20399 (SET_SAVED_BUTTON_EVENT): Define only if USE_X_TOOLKIT || USE_GTK.
20400 * xterm.h (x_dispatch_event): Extern only if USE_X_TOOLKIT.
20401 * xterm.c, xterm.h (x_mouse_leave): Bring this function back, but only
20402 if defined HAVE_MENUS && !defined USE_X_TOOLKIT && !defined USE_GTK.
20403
20404 * xmenu.c (menu_help_callback): Pointer type fixes.
20405 Use const pointers when pointing at readonly data. Avoid pointer
20406 signedness clashes.
20407 (FALSE): Remove unused macro.
20408 (update_frame_menubar): Remove unused decl.
20409
20410 * xfns.c (Fx_hide_tip): Move locals to avoid shadowing.
20411
20412 * menu.c (push_submenu_start, push_submenu_end): Do not define unless
20413 USE_X_TOOLKIT || USE_GTK || HAVE_NS || defined HAVE_NTGUI.
20414 (single_menu_item): Rename local to avoid shadowing.
20415
20416 * keyboard.c (make_lispy_event): Remove unused local var.
20417
20418 * frame.c, frame.h (x_get_resource_string): Bring this back, but
20419 only if HAVE_X_WINDOWS && !USE_X_TOOLKIT.
20420
20421 * bitmaps: Change bitmaps from unsigned char back to the X11
20422 compatible char. Avoid the old compiler warnings about
20423 out-of-range initializers by using, for example, '\xab' rather
20424 than 0xab.
20425
20426 * xgselect.c (xgselect_initialize): Check vs interface
20427 even if ! (defined (USE_GTK) || defined (HAVE_GCONF)).
20428
20429 * xmenu.c (xmenu_show): Rename parm to avoid shadowing.
20430
20431 * xterm.c (x_create_toolkit_scroll_bar): Use const * for pointers
20432 to read-only memory.
20433
20434 * fns.c (vector): Remove; this old hack is no longer needed.
20435
20436 * xsmfns.c (create_client_leader_window): Rename shadowing arg.
20437 Remove unused var.
20438 (gdk_x11_set_sm_client_id) [!USE_GTK]: Don't define.
20439
20440 * xrdb.c (x_load_resources): Omit unused local.
20441
20442 * xfns.c (free_frame_menubar, atof): Remove duplicate decls.
20443 (x_window): Rename locals to avoid shadowing.
20444 (USG): Use the kludged USG macro, to pacify gcc.
20445
20446 * xterm.c (x_alloc_nearest_color_for_widget): Remove; unused.
20447 (x_term_init): Remove local to avoid shadowing.
20448
20449 * xfns.c, xterm.c (_XEditResCheckMessages): Protoize decl.
20450
20451 * xdisp.c, dispextern.h (set_vertical_scroll_bar): Now extern if
20452 USE_TOOLKIT_SCROLL_BARS && !USE_GTK, as xterm.c needs it then.
20453
20454 2011-04-16 Eli Zaretskii <eliz@gnu.org>
20455
20456 * gnutls.c (Fgnutls_boot): Don't pass Lisp_Object to `error'.
20457
20458 Fix regex.c, syntax.c and friends for buffers > 2GB.
20459 * syntax.h (struct gl_state_s): Declare character position members
20460 EMACS_INT.
20461
20462 * syntax.c (update_syntax_table): Declare 2nd argument EMACS_INT.
20463
20464 * textprop.c (verify_interval_modification, interval_of):
20465 Declare arguments EMACS_INT.
20466
20467 * intervals.c (adjust_intervals_for_insertion): Declare arguments
20468 EMACS_INT.
20469
20470 * intervals.h (CHECK_TOTAL_LENGTH): Cast to EMACS_INT, not `int'.
20471
20472 * indent.c (Fvertical_motion): Local variable it_start is now
20473 EMACS_INT.
20474
20475 * regex.c (re_match, re_match_2, re_match_2_internal)
20476 (bcmp_translate, regcomp, regexec, print_double_string)
20477 (group_in_compile_stack, re_search, re_search_2, regex_compile)
20478 (re_compile_pattern, re_exec): Declare arguments and local
20479 variables `size_t' and `ssize_t' and return values `regoff_t', as
20480 appropriate.
20481 (POP_FAILURE_REG_OR_COUNT) <pfreg>: Declare `long'.
20482 (CHECK_INFINITE_LOOP) <failure>: Declare `ssize_t'.
20483 <compile_stack_type>: `size' and `avail' are now `size_t'.
20484
20485 * regex.h <regoff_t>: Use ssize_t, not int.
20486 (re_search, re_search_2, re_match, re_match_2): Arguments that
20487 specify buffer/string position and length are now ssize_t and
20488 size_t. Return type is regoff_t.
20489
20490 2011-04-16 Ben Key <bkey76@gmail.com>
20491
20492 * nsfont.m: Fixed bugs in ns_get_family and
20493 ns_descriptor_to_entity that were caused by using free to
20494 deallocate memory blocks that were allocated by xmalloc (via
20495 xstrdup). This caused Emacs to crash when compiled with
20496 XMALLOC_OVERRUN_CHECK defined (when Emacs was configured with
20497 --enable-checking=xmallocoverrun). xfree is now used to
20498 deallocate these memory blocks.
20499
20500 2011-04-15 Paul Eggert <eggert@cs.ucla.edu>
20501
20502 * sysdep.c (emacs_read): Remove unnecessary check vs MAX_RW_COUNT.
20503
20504 emacs_write: Accept and return EMACS_INT for sizes.
20505 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html
20506 et seq.
20507 * gnutls.c, gnutls.h (emacs_gnutls_read, emacs_gnutls_write):
20508 Accept and return EMACS_INT.
20509 (emacs_gnutls_write): Return the number of bytes written on
20510 partial writes.
20511 * sysdep.c, lisp.h (emacs_read, emacs_write): Likewise.
20512 (emacs_read, emacs_write): Remove check for negative size, as the
20513 Emacs source code has been audited now.
20514 * sysdep.c (MAX_RW_COUNT): New macro, to work around kernel bugs.
20515 (emacs_read, emacs_write): Use it.
20516 * process.c (send_process): Adjust to the new signatures of
20517 emacs_write and emacs_gnutls_write. Do not attempt to store
20518 a byte offset into an 'int'; it might overflow.
20519 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00483.html
20520
20521 * sound.c: Don't assume sizes fit in 'int'.
20522 (struct sound_device.period_size, alsa_period_size):
20523 Return EMACS_INT, not int.
20524 (struct sound_device.write, vox_write, alsa_write):
20525 Accept EMACS_INT, not int.
20526 (wav_play, au_play): Use EMACS_INT to store sizes and to
20527 record read return values.
20528
20529 2011-04-15 Ben Key <bkey76@gmail.com>
20530
20531 * keyboard.c (Qundefined): Don't declare static since it is used
20532 in nsfns.m.
20533 * xfaces.c (Qbold, Qexpanded, Qitalic, Qcondensed): Don't declare
20534 static since they are used in nsfont.m.
20535
20536 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
20537
20538 * process.c (Qprocessp): Don't declare static.
20539 * lisp.h (Qprocessp): Declare again.
20540
20541 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
20542
20543 * font.c (Qopentype): Don't make static (used from w32uniscribe.c).
20544
20545 2011-04-14 Paul Eggert <eggert@cs.ucla.edu>
20546
20547 Improve C-level modularity by making more things 'static'.
20548
20549 Don't publish debugger-only interfaces to other modules.
20550 * lisp.h (safe_debug_print, debug_output_compilation_hack):
20551 (verify_bytepos, count_markers): Move decls to the only modules
20552 that need them.
20553 * region-cache.h (pp_cache): Likewise.
20554 * window.h (check_all_windows): Likewise.
20555 * marker.c, print.c, region-cache.c, window.c: Decls moved here.
20556
20557 * sysdep.c (croak): Now static, if
20558 defined TIOCNOTTY || defined USG5 || defined CYGWIN.
20559 * syssignal.h (croak): Declare only if not static.
20560
20561 * alloc.c (refill_memory_reserve): Now static if
20562 !defined REL_ALLOC || defined SYSTEM_MALLOC.
20563 * lisp.h (refill_memory_reserve): Declare only if not static.
20564
20565 * xsettings.c, xsettings.h (xsettings_get_system_normal_font):
20566 Define only if USE_LUCID.
20567
20568 * xrdb.c (x_customization_string, x_rm_string): Now static.
20569
20570 * xmenu.c (x_menu_wait_for_event): Export only if USE_MOTIF.
20571 * xterm.h (x_menu_wait_for_event): Declare only if USE_MOTIF.
20572
20573 * xdisp.c (draw_row_with_mouse_face): Now static.
20574 * dispextern.h (draw_row_with_mouse_fave): Remove decl.
20575
20576 * window.h (check_all_windows): Mark externally visible.
20577
20578 * window.c (window_deletion_count): Now static.
20579
20580 * undo.c: Make symbols static if they're not exported.
20581 (last_undo_buffer, last_boundary_position, pending_boundary):
20582 Now static.
20583
20584 * textprop.c (interval_insert_behind_hooks): Now static.
20585 (interval_insert_in_front_hooks): Likewise.
20586
20587 * term.c: Make symbols static if they're not exported.
20588 (tty_turn_off_highlight, get_tty_terminal, max_frame_cols):
20589 (max_frame_lines, tty_set_terminal_modes):
20590 (tty_reset_terminal_modes, tty_turn_off_highlight):
20591 (get_tty_terminal): Now static.
20592 (term_mouse_moveto): Do not define if HAVE_WINDOW_SYSTEM.
20593 * termhooks.h (term_mouse_moveto): Do not declare if
20594 HAVE_WINDOW_SYSTEM.
20595 * dispextern.h (tty_set_terminal_modes, tty_reset_terminal_modes):
20596 (tty_turn_off_highlight, get_tty_terminal): Remove decls.
20597
20598 * sysdep.c: Make symbols static if they're not exported.
20599 (emacs_get_tty, emacs_set_tty, old_fcntl_flags, old_fcntl_owner):
20600 Now static.
20601 (sigprocmask_set, full_mask): Remove; unused.
20602 (wait_debugging): Mark as visible.
20603 * syssignal.h (SIGFULLMASK, full_mask): Remove decls.
20604 * systty.h (emacs_get_tty, emacs_set_tty): Remove decls.
20605
20606 * syntax.c (syntax_temp): Define only if !__GNUC__.
20607
20608 * sound.c (current_sound_device, current_sound): Now static.
20609
20610 * search.c (searchbufs, searchbuf_head): Now static.
20611
20612 * scroll.c (scroll_cost): Remove; unused.
20613 * dispextern.h (scroll_cost): Remove decl.
20614
20615 * region-cache.h (pp_cache): Mark as externally visible.
20616
20617 * process.c: Make symbols static if they're not exported.
20618 (process_tick, update_tick, create_process, chan_process):
20619 (Vprocess_alist, proc_buffered_char, datagram_access):
20620 (fd_callback_data, send_process_frame, process_sent_to): Now static.
20621 (deactivate_process): Mark defn as static, as well as decl.
20622 * lisp.h (create_process): Remove decl.
20623 * process.h (chan_process, Vprocess_alist): Remove decls.
20624
20625 * print.c: Make symbols static if they're not exported.
20626 (print_depth, new_backquote_output, being_printed, print_buffer):
20627 (print_buffer_size, print_buffer_pos, print_buffer_pos_byte):
20628 (print_interval, print_number_index, initial_stderr_stream):
20629 Now static.
20630 * lisp.h (Fprinc): Remove decl.
20631 (debug_output_compilation_hack): Mark as externally visible.
20632
20633 * sysdep.c (croak): Move decl from here to syssignal.h.
20634 * syssignal.h (croak): Put it here, so the API can be checked when
20635 'croak' is called from dissociate_if_controlling_tty.
20636
20637 * minibuf.c: Make symbols static if they're not exported.
20638 (minibuf_save_list, choose_minibuf_frame): Now static.
20639 * lisp.h (choose_minibuf_frame): Remove decl.
20640
20641 * lisp.h (verify_bytepos, count_markers): Mark as externally visible.
20642
20643 * lread.c: Make symbols static if they're not exported.
20644 (read_objects, initial_obarray, oblookup_last_bucket_number):
20645 Now static.
20646 (make_symbol): Remove; unused.
20647 * lisp.h (initial_obarray, make_symbol): Remove decls.
20648
20649 * keyboard.c: Make symbols static if they're not exported.
20650 (single_kboard, recent_keys_index, total_keys, recent_keys):
20651 (this_command_key_count_reset, raw_keybuf, raw_keybuf_count):
20652 (this_single_command_key_start, echoing, last_auto_save):
20653 (read_key_sequence_cmd, dribble, recursive_edit_unwind):
20654 (command_loop, echo_now, keyboard_init_hook, help_char_p):
20655 (quit_throw_to_read_char, command_loop_2, top_level_1, poll_timer):
20656 (Vlispy_mouse_stem, double_click_count):
20657 Now static.
20658 (force_auto_save_soon): Define only if SIGDANGER.
20659 (ignore_mouse_drag_p): Now static if
20660 !defined HAVE_WINDOW_SYSTEM || defined USE_GTK || defined HAVE_NS.
20661 (print_help): Remove; unused.
20662 (stop_character, last_timer_event): Mark as externally visible.
20663 * keyboard.h (ignore_mouse_drag_p): Declare only if
20664 defined HAVE_WINDOW_SYSTEM && !defined USE_GTK && !defined HAVE_NS.
20665 (echo_now, help_char_p, quit_throw_to_read_char): Remove decls.
20666 * lisp.h (echoing): Remove decl.
20667 (force_auto_save_soon): Declare only if SIGDANGER.
20668 * xdisp.c (redisplay_window): Simplify code, to make it more
20669 obvious that ignore_mouse_drag_p is not accessed if !defined
20670 USE_GTK && !defined HAVE_NS.
20671
20672 * intervals.c: Make symbols static if they're not exported.
20673 (merge_properties_sticky, merge_interval_right, delete_interval):
20674 Now static.
20675 * intervals.h (merge_interval_right, delete_interval): Remove decls.
20676
20677 * insdel.c: Make symbols static if they're not exported.
20678 However, leave prepare_to_modify_buffer alone. It's never
20679 called from outside this function, but that appears to be a bug.
20680 (combine_after_change_list, combine_after_change_buffer):
20681 (adjust_after_replace, signal_before_change): Now static.
20682 (adjust_after_replace_noundo): Remove; unused.
20683 * lisp.h (adjust_after_replace, adjust_after_replace_noundo):
20684 (signal_before_change): Remove decls.
20685
20686 * indent.c (val_compute_motion, val_vmotion): Now static.
20687
20688 * image.c: Make symbols static if they're not exported.
20689 * dispextern.h (x_create_bitmap_from_xpm_data): Do not declare
20690 if USE_GTK.
20691 * image.c (x_create_bitmap_from_xpm_data): Do not define if USE_GTK.
20692 (xpm_color_cache, ct_table, ct_colors_allocated): Now static.
20693
20694 * fringe.c (standard_bitmaps): Now static.
20695 (max_used_fringe_bitmap): Now static, unless HAVE_NS.
20696
20697 * frame.c: Make symbols static if they're not exported.
20698 (x_report_frame_params, make_terminal_frame): Now static.
20699 (get_frame_param): Now static, unless HAVE_NS.
20700 (x_fullscreen_adjust): Define if WINDOWSNT, not if HAVE_WINDOW_SYSTEM.
20701 (x_get_resource_string): Remove; not used.
20702 * frame.h (make_terminal_frame, x_report_frame_params):
20703 (x_get_resource_string); Remove decls.
20704 (x_fullscreen_adjust): Declare only if WINDOWSNT.
20705 * lisp.h (get_frame_param): Declare only if HAVE_NS.
20706
20707 * font.c, fontset.c: Make symbols static if they're not exported.
20708 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): New macro.
20709 (FACE_SUITABLE_FOR_CHAR_P): Use it.
20710 * font.c (font_close_object): Now static.
20711 * font.h (font_close_object): Remove.
20712 * fontset.c (FONTSET_OBJLIST): Remove.
20713 (free_realized_fontset) #if-0 the body, which does nothing.
20714 (face_suitable_for_char_p): #if-0, as it's never called.
20715 * fontset.h (face_suitable_for_char_p): Remove decl.
20716 * xfaces.c (face_at_string_position):
20717 Use FACE_SUITABLE_FOR_ASCII_CHAR_P, not FACE_SUITABLE_FOR_CHAR_P,
20718 since 0 is always ASCII.
20719
20720 * fns.c (weak_hash_tables): Now static.
20721
20722 * fileio.c: Make symbols static if they're not exported.
20723 (auto_saving, auto_save_mode_bits, auto_save_error_occurred):
20724 (Vwrite_region_annotation_buffers): Now static.
20725
20726 * eval.c: Make symbols static if they're not exported.
20727 (backtrace_list, lisp_eval_depth, when_entered_debugger): Now static.
20728 * lisp.h (backtrace_list): Remove decl.
20729
20730 * emacs.c: Make symbols static if they're not exported.
20731 (malloc_state_ptr, malloc_using_checking, syms_of_emacs):
20732 (fatal_error_code, fatal_error_signal_hook, standard_args):
20733 Now static.
20734 (fatal_error_signal): Now static, unless FLOAT_CATCH_SIGKILL.
20735 (DEFINE_DUMMY_FUNCTION): Mark function as externally visible.
20736 (__CTOR_LIST__, __DTOR_LIST__): Now externally visible.
20737 * lisp.h (fatal_error_signal_hook): Remove decl.
20738 (fatal_error_signal): Declare only if FLOAT_CATCH_SIGKILL.
20739
20740 * editfns.c: Move a (normally-unused) function to its only use.
20741 * editfns.c, lisp.h (get_operating_system_release): Remove.
20742 * process.c (init_process) [DARWIN_OS]: Do it inline, as it is not
20743 worth the hassle of breaking this out.
20744
20745 * xterm.c: Make symbols static if they're not exported.
20746 (x_raise_frame, x_lower_frame, x_wm_set_window_state):
20747 (x_wm_set_icon_pixmap, x_initialize, XTread_socket_fake_io_error):
20748 (x_destroy_window, x_delete_display):
20749 Now static.
20750 (x_dispatch_event): Now static if ! (USE_MOTIF || USE_X_TOOLKIT).
20751 (x_mouse_leave): Remove; unused.
20752 * xterm.h (x_display_info_for_name, x_raise_frame, x_lower_frame):
20753 (x_destroy_window, x_wm_set_window_state, x_wm_set_icon_pixmap):
20754 (x_delete_display, x_initialize, x_set_border_pixel, x_screen_planes):
20755 Remove decls.
20756 (x_mouse_leave): Declare only if WINDOWSNT.
20757 (x_dispatch_event): Declare only if USE_MOTIF or USE_X_TOOLKIT.
20758 (xic_create_fontsetname): Declare only if HAVE_X_WINDOWS &&
20759 USE_X_TOOLKIT.
20760
20761 * ftxfont.c: Make symbols static if they're not exported.
20762 (ftxfont_driver): Export only if !defined HAVE_XFT && def8ined
20763 HAVE_FREETYPE.
20764 * font.h (ftxfont_driver): Likewise.
20765
20766 * xfns.c: Make symbols static if they're not exported.
20767 (x_last_font_name, x_display_info_for_name):
20768 (x_set_foreground_color, x_set_background_color, x_set_mouse_color):
20769 (x_set_cursor_color, x_set_border_pixel, x_set_border_color):
20770 (x_set_cursor_type, x_set_icon_type, x_set_icon_name):
20771 (x_set_scroll_bar_foreground, x_set_scroll_bar_background):
20772 (x_explicitly_set_name, x_set_title, xic_defaut_fontset, tip_timer):
20773 (last_show_tip_args): Now static.
20774 (xic_defaut_fontset, xic_create_fontsetname): Define only if
20775 defined HAVE_X_WINDOWS && defined USE_X_TOOLKIT
20776 (x_screen_planes): Remove; unused.
20777 * dispextern.h (x_screen_planes): Remove decl.
20778
20779 * dispnew.c: Make symbols static if they're not exported.
20780 * dispextern.h (redraw_garbaged_frames, scrolling):
20781 (increment_row_positions): Remove.
20782 * dispnew.c (new_glyph_matrix, increment_row_positions, scrolling):
20783 (delayed_size_change, glyph_matrix_count, glyph_pool_count):
20784 Now static.
20785 (redraw_garbaged_frames): Remove; unused.
20786
20787 * xfaces.c: Make symbols static if they're not exported.
20788 * dispextern.h (ascii_face_of_lisp_face, free_realized_face):
20789 Remove decls.
20790 * xterm.h (defined_color): Remove decls.
20791 (x_free_dpy_colors): Declare only if USE_X_TOOLKIT.
20792 * xfaces.c (tty_suppress_bold_inverse_default_colors_p):
20793 (menu_face_changed_default, defined_color, free_realized_face):
20794 (x_free_dpy_colors): Define only if USE_X_TOOLKIT.
20795 (ascii_face_of_lisp_face): Remove; unused.
20796
20797 * xdisp.c: Make symbols static if they're not exported.
20798 * dispextern.h (scratch_glyph_row, window_box_edges):
20799 (glyph_to_pixel_coords, set_cursor_from_row):
20800 (get_next_display_element, set_iterator_to_next):
20801 (highlight_trailing_whitespace, frame_to_window_pixel_xy):
20802 (show_mouse_face): Remove decls
20803 * frame.h (message_buf_print): Likewise.
20804 * lisp.h (pop_message, set_message, check_point_in_composition):
20805 Likewise.
20806 * xterm.h (set_vertical_scroll_bar): Likewise.
20807 * xdisp.c (list_of_error, Vmessage_stack, line_number_displayed):
20808 (message_buf_print, scratch_glyph_row, displayed_buffer):
20809 (set_iterator_to_next, pop_message, set_message, set_cursor_from_row):
20810 (get_next_display_element, show_mouse_face, window_box_edges):
20811 (frame_to_window_pixel_xy, check_point_in_composition):
20812 (set_vertical_scroll_bar, highlight_trailing_whitespace): Now static.
20813 (glyph_to_pixel_coords): Remove; unused.
20814
20815 * dired.c (file_name_completion): Now static.
20816
20817 * dbusbind.c (xd_in_read_queued_messages): Now static.
20818
20819 * lisp.h (circular_list_error, FOREACH): Remove; unused.
20820 * data.c (circular_list_error): Remove.
20821
20822 * commands.h (last_point_position, last_point_position_buffer):
20823 (last_point_position_window): Remove decls.
20824 * keyboard.c: Make these variables static.
20825
20826 * coding.h (coding, code_convert_region, encode_coding_gap):
20827 Remove decls.
20828 * coding.c (Vsjis_coding_system, Vbig5_coding_system):
20829 (iso_code_class, detect_coding, code_convert_region): Now static.
20830 (encode_coding_gap): Remove; unused.
20831
20832 * chartab.c (chartab_chars, chartab_bits): Now static.
20833
20834 * charset.h (charset_iso_8859_1): Remove decl.
20835 * charset.c (charset_iso_8859_1, charset_emacs, map_charset_for_dump):
20836 Now static.
20837
20838 * ccl.h (check_ccl_update, Vccl_program_table): Remove decls.
20839 * ccl.c (Vccl_program_table): Now static.
20840 (check_ccl_update): Remove; unused.
20841
20842 * category.c (SET_CATEGORY_SET, set_category_set): Move here.
20843 * category.h: ... from here.
20844 * category.c (check_category_table, set_category_set): Now static.
20845
20846 * casetab.c (Vascii_upcase_table, Vascii_eqv_table): Now static.
20847 * lisp.h: Remove these decls.
20848
20849 * buffer.c (buffer_count): Remove unused var.
20850
20851 * bidi.c (bidi_dump_cached_states): Mark as externally visible,
20852 so that it's not optimized away.
20853 (bidi_ignore_explicit_marks_for_paragraph_level): Likewise.
20854 * dispextern.h (bidi_dump_cached_states): Remove, since it's
20855 exported only to the debugger.
20856
20857 * atimer.c (alarm_signal_handler, run_all_atimers): Now static.
20858 * atimer.h (run_all_atimers): Remove; not exported.
20859
20860 font.c: Make copy_font_spec and merge_font_spec ordinary C functions.
20861 * font.c (copy_font_spec): Rename from Fcopy_font_spec, since it
20862 was inaccessible from Lisp.
20863 (merge_font_spec): Likewise, renaming from Fmerge_font_spec.
20864 * font.c, font.h, fontset.c, xfaces.c, xfont.c: Change all uses.
20865
20866 alloc.c: Import and export fewer symbols, and remove unused items.
20867 * lisp.h (suppress_checking, die): Declare only if ENABLE_CHECKING
20868 is defined.
20869 (suppress_checking): Add EXTERNALLY_VISIBLE attribute, so that
20870 it's not optimized away by whole-program optimization.
20871 (message_enable_multibyte, free_misc): Remove.
20872 (catchlist, handlerlist, mark_backtrace):
20873 Declare only if BYTE_MARK_STACK.
20874 (mark_byte_stack): Likewise, fixing a ifdef-vs-if typo.
20875 * alloc.c (pure): Export only if VIRT_ADDR_VARIES is defined.
20876 (message_enable_multibyte): Remove decl.
20877 (free_misc, interval_free_list, float_block, float_block_index):
20878 (n_float_blocks, float_free_list, cons_block, cons_block_index):
20879 (cons_free_list, last_marked_index):
20880 Now static.
20881 (suppress_checking, die): Define only if ENABLE_CHECKING is defined.
20882 * eval.c (catchlist, handlerlist): Export only if BYTE_MARK_STACK.
20883 (mark_backtrace): Define only if BYTE_MARK_STACK.
20884 * xdisp.c (message_enable_multibyte): Now static.
20885
20886 Declare Lisp_Object Q* variables to be 'static' if not exported.
20887 This makes it easier for human readers (and static analyzers)
20888 to see whether these variables are used from other modules.
20889 * alloc.c, buffer.c, bytecode.c, callint.c, casetab.c, category.c:
20890 * ccl.c, character.c, charset.c, cmds.c, coding.c, composite.c:
20891 * data.c, dbusbind.c, dired.c, editfns.c, eval.c, fileio.c, fns.c:
20892 * font.c, frame.c, fringe.c, ftfont.c, image.c, keyboard.c, keymap.c:
20893 * lread.c, macros.c, minibuf.c, print.c, process.c, search.c:
20894 * sound.c, syntax.c, textprop.c, window.c, xdisp.c, xfaces.c, xfns.c:
20895 * xmenu.c, xselect.c:
20896 Declare Q* vars static if they are not used in other modules.
20897 * ccl.h, character.h, charset.h, coding.h, composite.h, font.h:
20898 * frame.h, intervals.h, keyboard.h, lisp.h, process.h, syntax.h:
20899 Remove decls of unexported vars.
20900 * keyboard.h (EVENT_HEAD_UNMODIFIED): Remove now-unused macro.
20901
20902 * lisp.h (DEFINE_FUNC): Make sname 'static'.
20903
20904 Make Emacs functions such as Fatom 'static' by default.
20905 This makes it easier for human readers (and static analyzers)
20906 to see whether these functions can be called from other modules.
20907 DEFUN now defines a static function. To make the function external
20908 so that it can be used in other C modules, use the new macro DEFUE.
20909 * lisp.h (Funibyte_char_to_multibyte, Fsyntax_table_p):
20910 (Finit_image_library):
20911 (Feval_region, Fbacktrace, Ffetch_bytecode, Fswitch_to_buffer):
20912 (Ffile_executable_p, Fmake_symbolic_link, Fcommand_execute):
20913 (Fget_process, Fdocumentation_property, Fbyte_code, Ffile_attributes):
20914 Remove decls, since these functions are now static.
20915 (Funintern, Fget_internal_run_time): New decls, since these functions
20916 were already external.
20917
20918 * alloc.c, buffer.c, callint.c, callproc.c, casefiddle.c, casetab.c:
20919 * ccl.c, character.c, chartab.c, cmds.c, coding.c, data.c, dispnew.c:
20920 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, floatfns.c:
20921 * fns.c, font.c, fontset.c, frame.c, image.c, indent.c:
20922 * keyboard.c, keymap.c, lread.c:
20923 * macros.c, marker.c, menu.c, minibuf.c, print.c, process.c, search.c:
20924 * syntax.c, term.c, terminal.c, textprop.c, undo.c:
20925 * window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xsettings.c:
20926 Mark functions with DEFUE instead of DEFUN,
20927 if they are used in other modules.
20928 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): New forward
20929 decls for now-static functions.
20930 * buffer.h (Fdelete_overlay): Remove decl.
20931 * callproc.c (Fgetenv_internal): Mark as internal.
20932 * composite.c (Fremove_list_of_text_properties): Remove decl.
20933 (Fcomposition_get_gstring): New forward static decl.
20934 * composite.h (Fcomposite_get_gstring): Remove decl.
20935 * dired.c (Ffile_attributes): New forward static decl.
20936 * doc.c (Fdocumntation_property): New forward static decl.
20937 * eval.c (Ffetch_bytecode): New forward static decl.
20938 (Funintern): Remove extern decl; now in .h file where it belongs.
20939 * fileio.c (Fmake_symbolic_link): New forward static decl.
20940 * image.c (Finit_image_library): New forward static decl.
20941 * insdel.c (Fcombine_after_change_execute): Make forward decl static.
20942 * intervals.h (Fprevious_property_change):
20943 (Fremove_list_of_text_properties): Remove decls.
20944 * keyboard.c (Fthis_command_keys): Remove decl.
20945 (Fcommand_execute): New forward static decl.
20946 * keymap.c (Flookup_key): New forward static decl.
20947 (Fcopy_keymap): Now static.
20948 * keymap.h (Flookup_key): Remove decl.
20949 * process.c (Fget_process): New forward static decl.
20950 (Fprocess_datagram_address): Mark as internal.
20951 * syntax.c (Fsyntax_table_p): New forward static decl.
20952 (skip_chars): Remove duplicate decl.
20953 * textprop.c (Fprevious_property_change): New forward static decl.
20954 * window.c (Fset_window_fringes, Fset_window_scroll_bars):
20955 Now internal.
20956 (Fset_window_margins, Fset_window_vscroll): New forward static decls.
20957 * window.h (Fset_window_vscroll, Fset_window_margins): Remove decls.
20958
20959 * editfns.c (Fformat): Remove unreachable code.
20960
20961 2011-04-14 Andreas Schwab <schwab@linux-m68k.org>
20962
20963 * fileio.c (Finsert_file_contents): Fix typo in 2005-05-13
20964 change. (Bug#8496)
20965
20966 2011-04-13 Eli Zaretskii <eliz@gnu.org>
20967
20968 * xdisp.c (handle_invisible_prop): Don't call bidi_paragraph_init
20969 when at ZV. (Bug#8487)
20970
20971 2011-04-12 Andreas Schwab <schwab@linux-m68k.org>
20972
20973 * charset.c (Fclear_charset_maps): Use xfree instead of free.
20974 (Bug#8437)
20975 * keyboard.c (parse_tool_bar_item): Likewise.
20976 * sound.c (sound_cleanup, alsa_close): Likewise.
20977 * termcap.c (tgetent): Likewise.
20978 * xfns.c (x_default_font_parameter): Likewise.
20979 * xsettings.c (read_and_apply_settings): Likewise.
20980
20981 * alloc.c (overrun_check_malloc, overrun_check_realloc)
20982 (overrun_check_free): Protoize.
20983
20984 2011-04-12 Paul Eggert <eggert@cs.ucla.edu>
20985
20986 * sysdep.c (emacs_read, emacs_write): Check for negative sizes
20987 since callers should never pass a negative size.
20988 Change the signature to match that of plain 'read' and 'write'; see
20989 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00397.html>.
20990 * lisp.h: Update prototypes of emacs_write and emacs_read.
20991
20992 2011-04-11 Eli Zaretskii <eliz@gnu.org>
20993
20994 * xdisp.c (redisplay_window): Don't try to determine the character
20995 position of the scroll margin if the window start point w->startp
20996 is outside the buffer's accessible region. (Bug#8468)
20997
20998 2011-04-10 Eli Zaretskii <eliz@gnu.org>
20999
21000 Fix write-region and its subroutines for buffers > 2GB.
21001 * fileio.c (a_write, e_write): Modify declaration of arguments and
21002 local variables to support buffers larger than 2GB.
21003 (Fcopy_file): Use EMACS_INT for return value of emacs_read.
21004
21005 * sysdep.c (emacs_write, emacs_read): Use ssize_t for last
21006 argument, local variables, and return value.
21007
21008 * lisp.h: Update prototypes of emacs_write and emacs_read.
21009
21010 * sound.c (vox_write): Use ssize_t for return value of emacs_write.
21011
21012 2011-04-10 Paul Eggert <eggert@cs.ucla.edu>
21013
21014 * xdisp.c (vmessage): Use memchr, not strnlen, which some hosts lack.
21015
21016 Fix more problems found by GCC 4.6.0's static checks.
21017
21018 * xdisp.c (vmessage): Use a better test for character truncation.
21019
21020 * charset.c (load_charset_map): <, not <=, for optimization,
21021 and to avoid potential problems with integer overflow.
21022 * chartab.c (sub_char_table_set_range, char_table_set_range): Likewise.
21023 * casetab.c (set_identity, shuffle): Likewise.
21024 * editfns.c (Fformat): Likewise.
21025 * syntax.c (skip_chars): Likewise.
21026
21027 * xmenu.c (set_frame_menubar): Allocate smaller local vectors.
21028 This also lets GCC 4.6.0 generate slightly better loop code.
21029
21030 * callint.c (Fcall_interactively): <, not <=, for optimization.
21031 (Fcall_interactively): Count the number of arguments produced,
21032 not the number of arguments given. This is simpler and lets GCC
21033 4.6.0 generate slightly better code.
21034
21035 * ftfont.c: Distingish more carefully between FcChar8 and char.
21036 The previous code passed unsigned char * to a functions like
21037 strlen and xstrcasecmp that expect char *, which does not
21038 conform to the C standard.
21039 (get_adstyle_property, ftfont_pattern_entity): Use FcChar8 for
21040 arguments to FcPatternGetString, and explicitly cast FcChar8 * to
21041 char * when the C standard requires it.
21042
21043 * keyboard.c (read_char): Remove unused var.
21044
21045 * eval.c: Port to Windows vsnprintf (Bug#8435).
21046 Include <limits.h>.
21047 (SIZE_MAX): Define if the headers do not.
21048 (verror): Do not give up if vsnprintf returns a negative count.
21049 Instead, grow the buffer. This ports to Windows vsnprintf, which
21050 does not conform to C99. Problem reported by Eli Zaretskii.
21051 Also, simplify the allocation scheme, by avoiding the need for
21052 calling realloc, and removing the ALLOCATED variable.
21053
21054 * eval.c (verror): Initial buffer size is 4000 (not 200) bytes.
21055
21056 Remove invocations of doprnt, as Emacs now uses vsnprintf.
21057 But keep the doprint source code for now, as we might revamp it
21058 and use it again (Bug#8435).
21059 * lisp.h (doprnt): Remove.
21060 * Makefile.in (base_obj): Remove doprnt.o.
21061 * deps.mk (doprnt.o): Remove.
21062
21063 error: Print 32- and 64-bit integers portably (Bug#8435).
21064 Without this change, on typical 64-bit hosts error ("...%d...", N)
21065 was used to print both 32- and 64-bit integers N, which relied on
21066 undefined behavior.
21067 * lisp.h, m/amdx86-64.h, m/ia64.h, m/ibms390x.h (pEd): New macro.
21068 * lisp.h (error, verror): Mark as printf-like functions.
21069 * eval.c (verror): Use vsnprintf, not doprnt, to do the real work.
21070 Report overflow in size calculations when allocating printf buffer.
21071 Do not truncate output string at its first null byte.
21072 * xdisp.c (vmessage): Use vsnprintf, not doprnt, to do the real work.
21073 Truncate the output at a character boundary, since vsnprintf does not
21074 do that.
21075 * charset.c (check_iso_charset_parameter): Convert internal
21076 character to string before calling 'error', since %c now has the
21077 printf meaning.
21078 * coding.c (Fdecode_sjis_char, Fdecode_big5_char): Avoid int
21079 overflow when computing char to be passed to 'error'. Do not
21080 pass Lisp_Object to 'error'; pass the integer instead.
21081 * nsfns.m (Fns_do_applescript): Use int, not long, since it's
21082 formatted with plain %d.
21083
21084 * eval.c (internal_lisp_condition_case): Don't pass spurious arg.
21085
21086 * keyboard.c (access_keymap_keyremap): Print func name, not garbage.
21087
21088 * coding.c (Fdecode_sjis_char): Don't assume CODE fits in int.
21089
21090 * xterm.c (x_catch_errors): Remove duplicate declaration.
21091
21092 * term.c (maybe_fatal): Mark its 3rd arg as a printf format, too.
21093
21094 * xdisp.c, lisp.h (message_nolog): Remove; unused.
21095
21096 2011-04-10 Jim Meyering <meyering@redhat.com>
21097
21098 use ssize_t and size_t for read- and write-like emacs_gnutls_* functions
21099 * gnutls.c (emacs_gnutls_read): Adjust signature to be more read-like:
21100 return ssize_t not "int", and use size_t as the buffer length.
21101 (emacs_gnutls_write): Likewise, and make the buffer pointer "const".
21102 * gnutls.h: Update declarations.
21103 * process.c (read_process_output): Use ssize_t, to match.
21104 (send_process): Likewise.
21105
21106 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
21107
21108 * image.c (Fimagemagick_types): Doc fix, and comment cleanup.
21109
21110 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
21111
21112 * ftfont.c (get_adstyle_property, ftfont_pattern_entity):
21113 Use unsigned char, to match FcChar8 type definition.
21114
21115 * xterm.c (handle_one_xevent):
21116 * xmenu.c (create_and_show_popup_menu):
21117 * xselect.c (x_decline_selection_request)
21118 (x_reply_selection_request): Avoid type-punned deref of X events.
21119
21120 2011-04-09 Eli Zaretskii <eliz@gnu.org>
21121
21122 Fix some uses of `int' instead of EMACS_INT.
21123 * search.c (string_match_1, fast_string_match)
21124 (fast_c_string_match_ignore_case, fast_string_match_ignore_case)
21125 (scan_buffer, find_next_newline_no_quit)
21126 (find_before_next_newline, search_command, Freplace_match)
21127 (Fmatch_data): Make some `int' variables be EMACS_INT.
21128
21129 * xdisp.c (display_count_lines): 3rd argument and return value now
21130 EMACS_INT. All callers changed.
21131 (pint2hrstr): Last argument is now EMACS_INT.
21132
21133 * coding.c (detect_coding_utf_8, detect_coding_emacs_mule)
21134 (detect_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
21135 (detect_coding_ccl, detect_coding_charset, decode_coding_utf_8)
21136 (decode_coding_utf_16, decode_coding_emacs_mule)
21137 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
21138 (decode_coding_ccl, decode_coding_charset)
21139 <consumed_chars, consumed_chars_base>: Declare EMACS_INT.
21140 (decode_coding_iso_2022, decode_coding_emacs_mule)
21141 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
21142 <char_offset, last_offset>: Declare EMACS_INT.
21143 (encode_coding_utf_8, encode_coding_utf_16)
21144 (encode_coding_emacs_mule, encode_invocation_designation)
21145 (encode_designation_at_bol, encode_coding_iso_2022)
21146 (encode_coding_sjis, encode_coding_big5, encode_coding_ccl)
21147 (encode_coding_raw_text, encode_coding_charset) <produced_chars>:
21148 Declare EMACS_INT.
21149 (ASSURE_DESTINATION): Declare more_bytes EMACS_INT.
21150 (encode_invocation_designation): Last argument P_NCHARS is now
21151 EMACS_INT.
21152 (decode_eol): Declare pos_byte, pos, and pos_end EMACS_INT.
21153 (produce_chars): from_nchars and to_nchars are now EMACS_INT.
21154
21155 * coding.h (struct coding_system) <head_ascii>: Declare EMACS_INT.
21156 All users changed.
21157
21158 * ccl.c (Fccl_execute_on_string): Declare some variables
21159 EMACS_INT.
21160
21161 2011-04-08 Samuel Thibault <sthibault@debian.org> (tiny change)
21162
21163 * term.c (init_tty): Fix incorrect ifdef placement (Bug#8450).
21164
21165 2011-03-19 Christoph Scholtes <cschol2112@googlemail.com>
21166
21167 * process.c (Fformat_network_address): Doc fix.
21168
21169 2011-04-08 T.V. Raman <tv.raman.tv@gmail.com> (tiny change)
21170
21171 * xml.c (parse_region): Avoid creating spurious whitespace nodes.
21172
21173 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
21174
21175 * keyboard.c (read_char): Call Lisp function help-form-show,
21176 instead of using internal_with_output_to_temp_buffer.
21177 (Qhelp_form_show): New var.
21178 (syms_of_keyboard): Use DEFSYM macro.
21179
21180 * print.c (internal_with_output_to_temp_buffer): Function deleted.
21181
21182 * lisp.h (internal_with_output_to_temp_buffer): Remove prototype.
21183
21184 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
21185
21186 * process.c (Flist_processes): Remove to Lisp.
21187 (list_processes_1): Delete.
21188
21189 2011-04-06 Eli Zaretskii <eliz@gnu.org>
21190
21191 * msdos.c (careadlinkat, careadlinkatcwd): MS-DOS replacements.
21192
21193 * w32.c (careadlinkat, careadlinkatcwd): New always-fail stubs.
21194
21195 2011-04-06 Paul Eggert <eggert@cs.ucla.edu>
21196
21197 Fix more problems found by GCC 4.6.0's static checks.
21198
21199 * xmenu.c (Fx_popup_dialog): Don't assume string is free of formats.
21200
21201 * menu.c (Fx_popup_menu): Don't assume error_name lacks printf formats.
21202
21203 * lisp.h (message, message_nolog, fatal): Mark as printf-like.
21204
21205 * xdisp.c (vmessage): Mark as a printf-like function.
21206
21207 * term.c (vfatal, maybe_fatal): Mark as printf-like functions.
21208
21209 * sound.c (sound_warning): Don't crash if arg contains a printf format.
21210
21211 * image.c (tiff_error_handler, tiff_warning_handler): Mark as
21212 printf-like functions.
21213 (tiff_load): Add casts to remove these marks before passing them
21214 to system-supplied API.
21215
21216 * eval.c (Fsignal): Remove excess argument to 'fatal'.
21217
21218 * coding.c (EMIT_ONE_BYTE, EMIT_TWO_BYTES): Use unsigned, not int.
21219 This avoids several warnings with gcc -Wstrict-overflow.
21220 (DECODE_COMPOSITION_RULE): If the rule is invalid, goto invalid_code
21221 directly, rather than having caller test rule sign. This avoids
21222 some unnecessary tests.
21223 * composite.h (COMPOSITION_ENCODE_RULE_VALID): New macro.
21224 (COMPOSITION_ENCODE_RULE): Arguments now must be valid. This
21225 affects only one use, in DECODE_COMPOSITION_RULE, which is changed.
21226
21227 * xfont.c (xfont_text_extents): Remove var that was set but not used.
21228 (xfont_open): Avoid unnecessary tests.
21229
21230 * composite.c (composition_gstring_put_cache): Use unsigned integer.
21231
21232 * composite.h, composite.c (composition_gstring_put_cache):
21233 Use EMACS_INT, not int, for length.
21234
21235 * composite.h (COMPOSITION_DECODE_REFS): New macro,
21236 breaking out part of COMPOSITION_DECODE_RULE.
21237 (COMPOSITION_DECODE_RULE): Use it.
21238 * composite.c (get_composition_id): Remove unused local vars,
21239 by using the new macro.
21240
21241 * textprop.c (set_text_properties_1): Change while to do-while,
21242 since the condition is always true at first.
21243
21244 * intervals.c (graft_intervals_into_buffer): Mark var as used.
21245 (interval_deletion_adjustment): Return unsigned value.
21246 All uses changed.
21247
21248 * process.c (list_processes_1, create_pty, read_process_output):
21249 (exec_sentinel): Remove vars that were set but not used.
21250 (create_pty): Remove unnecessary "volatile"s.
21251 (Fnetwork_interface_info): Avoid possibility of int overflow.
21252 (read_process_output): Do adaptive read buffering even if carryover.
21253 (read_process_output): Simplify nbytes computation if buffered.
21254
21255 * bytecode.c (exec_byte_code): Rename local to avoid shadowing.
21256
21257 * syntax.c (scan_words): Remove var that was set but not used.
21258 (update_syntax_table): Use unsigned instead of int.
21259
21260 * lread.c (lisp_file_lexically_bound_p): Use ints rather than endptrs.
21261 (lisp_file_lexically_bound_p, read1): Use unsigned instead of int.
21262 (safe_to_load_p): Make the end-of-loop test the inverse of the in-loop.
21263
21264 * print.c (print_error_message): Avoid int overflow.
21265
21266 * font.c (font_list_entities): Redo for clarity,
21267 so that reader need not know FONT_DPI_INDEX + 1 == FONT_SPACING_INDEX.
21268
21269 * font.c (font_find_for_lface, Ffont_get_glyphs): Remove unused vars.
21270 (font_score): Avoid potential overflow in diff calculation.
21271
21272 * fns.c (substring_both): Remove var that is set but not used.
21273 (sxhash): Redo loop for clarity and to avoid wraparound warning.
21274
21275 * eval.c (funcall_lambda): Rename local to avoid shadowing.
21276
21277 * alloc.c (mark_object_loop_halt, mark_object): Use size_t, not int.
21278 Otherwise, GCC 4.6.0 optimizes the loop check away since the check
21279 can always succeed if overflow has undefined behavior.
21280
21281 * search.c (boyer_moore, wordify): Remove vars set but not used.
21282 (wordify): Omit three unnecessary tests.
21283
21284 * indent.c (MULTIBYTE_BYTES_WIDTH): Don't compute wide_column.
21285 All callers changed. This avoids the need for an unused var.
21286
21287 * casefiddle.c (casify_region): Remove var that is set but not used.
21288
21289 * dired.c (file_name_completion): Remove var that is set but not used.
21290
21291 * fileio.c (Finsert_file_contents): Make EOF condition clearer.
21292
21293 * fileio.c (Finsert_file_contents): Avoid signed integer overflow.
21294 (Finsert_file_contents): Remove unnecessary code checking fd.
21295
21296 * minibuf.c (read_minibuf_noninteractive): Use size_t for sizes.
21297 Check for integer overflow on size calculations.
21298
21299 * buffer.c (Fprevious_overlay_change): Remove var that is set
21300 but not used.
21301
21302 * keyboard.c (menu_bar_items, read_char_minibuf_menu_prompt):
21303 Remove vars that are set but not used.
21304 (timer_check_2): Don't assume timer-list and idle-timer-list are lists.
21305 (timer_check_2): Mark vars as initialized.
21306
21307 * gtkutil.c (xg_get_file_with_chooser): Mark var as initialized.
21308
21309 * image.c (lookup_image): Remove var that is set but not used.
21310 (xbm_load): Use parse_p, for gcc -Werror=unused-but-set-variable.
21311
21312 * fontset.c (Finternal_char_font, Ffontset_info): Remove vars
21313 that are set but not used.
21314
21315 * xfns.c (make_invisible_cursor): Don't return garbage
21316 if XCreateBitmapFromData fails (Bug#8410).
21317
21318 * xselect.c (x_get_local_selection, x_handle_property_notify):
21319 Remove vars that are set but not used.
21320
21321 * xfns.c (x_create_tip_frame): Remove var that is set but not used.
21322 (make_invisible_cursor): Initialize a possibly-uninitialized variable.
21323
21324 * xterm.c (x_scroll_bar_to_input_event) [!USE_GTK]:
21325 Remove var that is set but not used.
21326 (scroll_bar_windows_size): Now size_t, not int.
21327 (x_send_scroll_bar_event): Use size_t, not int, for sizes.
21328 Check for overflow.
21329
21330 * xfaces.c (realize_named_face): Remove vars that are set but not used.
21331 (map_tty_color) [!defined MSDOS]: Likewise.
21332
21333 * term.c (tty_write_glyphs): Use size_t; this avoids overflow warning.
21334
21335 * coding.c: Remove vars that are set but not used.
21336 (DECODE_COMPOSITION_RULE): Remove 2nd arg, which is unused.
21337 All callers changed.
21338 (decode_coding_utf_8, decode_coding_utf_16 decode_coding_emacs_mule):
21339 (decode_coding_iso_2022, encode_coding_sjis, encode_coding_big5):
21340 (decode_coding_charset): Remove vars that are set but not used.
21341
21342 * bytecode.c (Fbyte_code) [!defined BYTE_CODE_SAFE]: Remove var
21343 that is set but not used.
21344
21345 * print.c (print_object): Remove var that is set but not used.
21346
21347 Replace 2 copies of readlink code with 1 gnulib version (Bug#8401).
21348 The gnulib version avoids calling malloc in the usual case,
21349 and on 64-bit hosts doesn't have some arbitrary 32-bit limits.
21350 * fileio.c (Ffile_symlink_p): Use emacs_readlink.
21351 * filelock.c (current_lock_owner): Likewise.
21352 * lisp.h (READLINK_BUFSIZE, emacs_readlink): New function.
21353 * sysdep.c: Include allocator.h, careadlinkat.h.
21354 (emacs_no_realloc_allocator): New static constant.
21355 (emacs_readlink): New function.
21356 * deps.mk (sysdep.o): Depend on ../lib/allocator.h and on
21357 ../lib/careadlinkat.h.
21358
21359 2011-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
21360
21361 * keyboard.c (safe_run_hook_funcall): Fix last change (don't stop at the
21362 first non-nil return value).
21363
21364 2011-04-03 Jan Djärv <jan.h.d@swipnet.se>
21365
21366 * nsterm.m (ns_update_auto_hide_menu_bar): Define MAC_OS_X_VERSION_10_6
21367 if not defined (Bug#8403).
21368
21369 2011-04-02 Juanma Barranquero <lekktu@gmail.com>
21370
21371 * xdisp.c (display_count_lines): Remove parameter `start',
21372 unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
21373 (get_char_face_and_encoding): Remove parameter `multibyte_p',
21374 unused since 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
21375 (fill_stretch_glyph_string): Remove parameters `row' and `area',
21376 unused at least since Kim's GUI unification at 2003-03-16T20:45:46Z!storm@cua.dk
21377 and thereabouts. All callers changed.
21378 (get_per_char_metric): Remove parameter `f', unused since
21379 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
21380
21381 2011-04-02 Jim Meyering <meyering@redhat.com>
21382
21383 do not dereference NULL upon failed strdup
21384 * nsfont.m (ns_descriptor_to_entity): Use xstrdup, not strdup.
21385 (ns_get_family): Likewise.
21386
21387 2011-04-02 Juanma Barranquero <lekktu@gmail.com>
21388
21389 * eval.c (unwind_to_catch) [DEBUG_GCPRO]: Remove redundant assignment.
21390
21391 2011-04-02 Jan Djärv <jan.h.d@swipnet.se>
21392
21393 * nsterm.m (ns_update_auto_hide_menu_bar): Only for OSX 10.6 or
21394 later (Bug#8403).
21395
21396 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
21397
21398 Add lexical binding.
21399
21400 * window.c (Ftemp_output_buffer_show): New fun.
21401 (Fsave_window_excursion):
21402 * print.c (Fwith_output_to_temp_buffer): Move to subr.el.
21403
21404 * lread.c (lisp_file_lexically_bound_p): New function.
21405 (Fload): Bind Qlexical_binding.
21406 (readevalloop): Remove `evalfun' arg.
21407 Bind Qinternal_interpreter_environment.
21408 (Feval_buffer): Bind Qlexical_binding.
21409 (defvar_int, defvar_bool, defvar_lisp_nopro, defvar_kboard):
21410 Mark as dynamic.
21411 (syms_of_lread): Declare `lexical-binding'.
21412
21413 * lisp.h (struct Lisp_Symbol): New field `declared_special'.
21414
21415 * keyboard.c (eval_dyn): New fun.
21416 (menu_item_eval_property): Use it.
21417
21418 * image.c (parse_image_spec): Use Ffunctionp.
21419
21420 * fns.c (concat, mapcar1): Accept byte-code-functions.
21421
21422 * eval.c (Fsetq): Handle lexical vars.
21423 (Fdefun, Fdefmacro, Ffunction): Make closures when needed.
21424 (Fdefconst, Fdefvaralias, Fdefvar): Mark as dynamic.
21425 (FletX, Flet): Obey lexical binding.
21426 (Fcommandp): Handle closures.
21427 (Feval): New `lexical' arg.
21428 (eval_sub): New function extracted from Feval. Use it almost
21429 everywhere where Feval was used. Look up vars in lexical env.
21430 Handle closures.
21431 (Ffunctionp): Move from subr.el.
21432 (Ffuncall): Handle closures.
21433 (apply_lambda): Remove `eval_flags'.
21434 (funcall_lambda): Handle closures and new byte-code-functions.
21435 (Fspecial_variable_p): New function.
21436 (syms_of_eval): Initialize the Vinternal_interpreter_environment var,
21437 but without exporting it to Lisp.
21438
21439 * doc.c (Fdocumentation, store_function_docstring):
21440 * data.c (Finteractive_form): Handle closures.
21441
21442 * callint.c (Fcall_interactively): Preserve lexical-binding mode for
21443 interactive spec.
21444
21445 * bytecode.c (Bstack_ref, Bstack_set, Bstack_set2, BdiscardN):
21446 New byte-codes.
21447 (exec_byte_code): New function extracted from Fbyte_code to handle new
21448 calling convention for byte-code-functions. Add new byte-codes.
21449
21450 * buffer.c (defvar_per_buffer): Set new `declared_special' field.
21451
21452 * alloc.c (Fmake_symbol): Init new `declared_special' field.
21453
21454 2011-03-31 Juanma Barranquero <lekktu@gmail.com>
21455
21456 * xdisp.c (redisplay_internal): Fix prototype.
21457
21458 2011-03-31 Eli Zaretskii <eliz@gnu.org>
21459
21460 * xdisp.c (SCROLL_LIMIT): New macro.
21461 (try_scrolling): Use it when setting scroll_limit.
21462 Limit scrolling to 100 screen lines.
21463 (redisplay_window): Even when falling back on "recentering",
21464 position point in the window according to scroll-conservatively,
21465 scroll-margin, and scroll-*-aggressively variables. (Bug#6671)
21466
21467 (try_scrolling): When point is above the window, allow searching
21468 as far as scroll_max, or one screenful, to compute vertical
21469 distance from PT to the scroll margin position. This prevents
21470 try_scrolling from unnecessarily failing when
21471 scroll-conservatively is set to a value slightly larger than the
21472 window height. Clean up the case of PT below the margin at bottom
21473 of window: scroll_max can no longer be INT_MAX. When aggressive
21474 scrolling is in use, don't let point enter the opposite scroll
21475 margin as result of the scroll.
21476 (syms_of_xdisp) <scroll-conservatively>: Document the
21477 threshold of 100 lines for never-recentering scrolling.
21478
21479 2011-03-31 Juanma Barranquero <lekktu@gmail.com>
21480
21481 * dispextern.h (move_it_by_lines):
21482 * xdisp.c (move_it_by_lines): Remove parameter `need_y_p', unused
21483 since 2000-12-29T14:24:09Z!gerd@gnu.org. All callers changed.
21484 (message_log_check_duplicate): Remove parameters `prev_bol' and
21485 `this_bol', unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
21486 (redisplay_internal): Remove parameter `preserve_echo_area',
21487 unused since 1999-07-21T21:43:52Z!gerd@gnu.org. All callers changed.
21488
21489 * indent.c (Fvertical_motion):
21490 * window.c (window_scroll_pixel_based, Frecenter):
21491 Don't pass `need_y_p' to `move_it_by_lines'.
21492
21493 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
21494
21495 * eval.c (struct backtrace): Don't cheat with negative numbers, but do
21496 steal a few bits to be more compact.
21497 (interactive_p, Fbacktrace, Fbacktrace_frame, mark_backtrace):
21498 Remove unneeded casts.
21499
21500 * bytecode.c (Fbyte_code): CAR and CDR can GC.
21501
21502 2011-03-30 Zachary Kanfer <zkanfer@gmail.com> (tiny change)
21503
21504 * keyboard.c (Fexecute_extended_command): Do log the "suggest key
21505 binding" message (bug#7967).
21506
21507 2011-03-30 Paul Eggert <eggert@cs.ucla.edu>
21508
21509 Fix more problems found by GCC 4.6.0's static checks.
21510
21511 * unexelf.c (unexec) [! (defined _SYSTYPE_SYSV || defined __sgi)]:
21512 Remove unused local var.
21513
21514 * editfns.c (Fmessage_box): Remove unused local var.
21515
21516 * xdisp.c (try_window_reusing_current_matrix, x_produce_glyphs):
21517 (note_mode_line_or_margin_highlight, note_mouse_highlight):
21518 Omit unused local vars.
21519 * window.c (shrink_windows): Omit unused local var.
21520 * menu.c (digest_single_submenu): Omit unused local var.
21521 * dispnew.c (update_window) [PERIODIC_PREEMPTION_CHECKING]:
21522 Omit unused local var.
21523
21524 * keyboard.c (parse_modifiers_uncached, parse_modifiers):
21525 Don't assume string length fits in int.
21526 (keyremap_step, read_key_sequence): Use size_t for sizes.
21527 (read_key_sequence): Don't check last_real_key_start redundantly.
21528
21529 * callproc.c (Fcall_process, Fcall_process_region): Use SAFE_ALLOCA
21530 instead of alloca (Bug#8344).
21531
21532 * eval.c (Fbacktrace): Don't assume nargs fits in int.
21533 (Fbacktrace_frame): Don't assume nframes fits in int.
21534
21535 * syntax.c (scan_sexps_forward): Avoid pointer wraparound.
21536
21537 * xterm.c (x_make_frame_visible, same_x_server): Redo to avoid overflow
21538 concerns.
21539
21540 * term.c (produce_glyphless_glyph): Remove unnecessary test.
21541
21542 * cm.c (calccost): Turn while-do into do-while, for clarity.
21543
21544 * keyboard.c (syms_of_keyboard): Use the same style as later
21545 in this function when indexing through an array. This also
21546 works around GCC bug 48267.
21547
21548 * image.c (tiff_load): Fix off-by-one image count (Bug#8336).
21549
21550 * xselect.c (x_check_property_data): Return correct size (Bug#8335).
21551
21552 * chartab.c (sub_char_table_ref_and_range): Redo for slight
21553 efficiency gain, and to bypass a gcc -Wstrict-overflow warning.
21554
21555 * keyboard.c, keyboard.h (num_input_events): Now size_t.
21556 This avoids undefined behavior on integer overflow, and is a bit
21557 more convenient anyway since it is compared to a size_t variable.
21558
21559 Variadic C functions now count arguments with size_t, not int.
21560 This avoids an unnecessary limitation on 64-bit machines, which
21561 caused (substring ...) to crash on large vectors (Bug#8344).
21562 * lisp.h (struct Lisp_Subr.function.aMANY): Now takes size_t, not int.
21563 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call): Likewise.
21564 All variadic functions and their callers changed accordingly.
21565 (struct gcpro.nvars): Now size_t, not int. All uses changed.
21566 * data.c (arith_driver, float_arith_driver): Likewise.
21567 * editfns.c (general_insert_function): Likewise.
21568 * eval.c (struct backtrace.nargs, interactive_p)
21569 (internal_condition_case_n, run_hook_with_args, apply_lambda)
21570 (funcall_lambda, mark_backtrace): Likewise.
21571 * fns.c (concat): Likewise.
21572 * frame.c (x_set_frame_parameters): Likewise.
21573 * fns.c (get_key_arg): Now accepts and returns size_t, and returns
21574 0 if not found, not -1. All callers changed.
21575
21576 * alloc.c (garbage_collect): Don't assume stack size fits in int.
21577 (stack_copy_size): Now size_t, not int.
21578 (stack_copy, stack_copy_size): Define only if MAX_SAVE_STACK > 0.
21579
21580 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
21581
21582 * coding.c (encode_designation_at_bol): Remove parameter `charbuf_end',
21583 unused since 2002-03-01T01:17:24Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
21584 All callers changed.
21585
21586 * lisp.h (multibyte_char_to_unibyte):
21587 * character.c (multibyte_char_to_unibyte): Remove parameter `rev_tbl',
21588 unused since 2002-03-01T01:16:34Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
21589 * character.h (CHAR_TO_BYTE8):
21590 * cmds.c (internal_self_insert):
21591 * editfns.c (general_insert_function):
21592 * keymap.c (push_key_description):
21593 * search.c (Freplace_match):
21594 * xdisp.c (message_dolog, set_message_1): All callers changed.
21595
21596 2011-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
21597
21598 * keyboard.c (safe_run_hook_funcall): New function.
21599 (safe_run_hooks_1, safe_run_hooks_error, safe_run_hooks): On error,
21600 don't set the hook to nil, but remove the offending function instead.
21601 (Qcommand_hook_internal): Remove, unused.
21602 (syms_of_keyboard): Don't initialize Qcommand_hook_internal nor define
21603 Vcommand_hook_internal.
21604
21605 * eval.c (enum run_hooks_condition): Remove.
21606 (funcall_nil, funcall_not): New functions.
21607 (run_hook_with_args): Call each function through a `funcall' argument.
21608 Remove `cond' argument, now redundant.
21609 (Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success)
21610 (Frun_hook_with_args_until_failure): Adjust accordingly.
21611 (run_hook_wrapped_funcall, Frun_hook_wrapped): New functions.
21612
21613 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
21614
21615 * dispextern.h (string_buffer_position): Remove declaration.
21616
21617 * print.c (strout): Remove parameter `multibyte', unused since
21618 1999-08-21T19:30:21Z!gerd@gnu.org. All callers changed.
21619
21620 * search.c (boyer_moore): Remove parameters `len', `pos' and `lim',
21621 never used since function introduction in 1998-02-08T21:33:56Z!rms@gnu.org.
21622 All callers changed.
21623
21624 * w32.c (_wsa_errlist): Use braces for struct initializers.
21625
21626 * xdisp.c (string_buffer_position_lim): Remove parameter `w',
21627 never used since function introduction in 2001-03-09T18:41:50Z!gerd@gnu.org.
21628 All callers changed.
21629 (string_buffer_position): Likewise. Also, make static (it's never
21630 used outside xdisp.c).
21631 (cursor_row_p): Remove parameter `w', unused since
21632 2000-10-17T16:08:57Z!gerd@gnu.org. All callers changed.
21633 (decode_mode_spec): Remove parameter `precision', introduced during
21634 Gerd Moellmann's rewrite at 1999-07-21T21:43:52Z!gerd@gnu.org, but never used.
21635 All callers changed.
21636
21637 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
21638
21639 * nsterm.m (syms_of_nsterm): Use doc: for ns-auto-hide-menu-bar.
21640
21641 2011-03-27 Anders Lindgren <andlind@gmail.com>
21642
21643 * nsterm.m (ns_menu_bar_is_hidden): New variable.
21644 (ns_constrain_all_frames, ns_menu_bar_should_be_hidden)
21645 (ns_update_auto_hide_menu_bar): New functions.
21646 (ns_update_begin): Call ns_update_auto_hide_menu_bar.
21647 (applicationDidBecomeActive): Call ns_update_auto_hide_menu_bar and
21648 ns_constrain_all_frames.
21649 (constrainFrameRect): Return at once if ns_menu_bar_should_be_hidden.
21650 (syms_of_nsterm): DEFVAR ns-auto-hide-menu-bar, init to Qnil.
21651
21652 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
21653
21654 * nsmenu.m (runDialogAt): Remove argument to timer_check.
21655
21656 2011-03-27 Glenn Morris <rgm@gnu.org>
21657
21658 * syssignal.h: Replace RETSIGTYPE with void.
21659 * atimer.c, data.c, dispnew.c, emacs.c, floatfns.c, keyboard.c:
21660 * keyboard.h, lisp.h, process.c, sysdep.c, xterm.c:
21661 Replace SIGTYPE with void everywhere.
21662 * s/usg5-4-common.h (SIGTYPE): Remove definition.
21663 * s/template.h (SIGTYPE): Remove commented out definition.
21664
21665 2011-03-26 Eli Zaretskii <eliz@gnu.org>
21666
21667 * xdisp.c (redisplay_window): Don't check buffer's clip_changed
21668 flag as a prerequisite for invoking try_scrolling. (Bug#6671)
21669
21670 2011-03-26 Juanma Barranquero <lekktu@gmail.com>
21671
21672 * w32.c (read_unc_volume): Use parameter `henum', instead of
21673 global variable `wget_enum_handle'.
21674
21675 * keymap.c (describe_vector): Remove parameters `indices' and
21676 `char_table_depth', unused since 2002-03-01T01:43:26Z!handa@m17n.org.
21677 (describe_map, Fdescribe_vector): Adjust calls to `describe_vector'.
21678
21679 * keyboard.h (timer_check, show_help_echo): Remove unused parameters.
21680
21681 * keyboard.c (timer_check): Remove parameter `do_it_now',
21682 unused since 1996-04-12T06:01:29Z!rms@gnu.org.
21683 (show_help_echo): Remove parameter `ok_to_overwrite_keystroke_echo',
21684 unused since 2008-04-19T19:30:53Z!monnier@iro.umontreal.ca.
21685
21686 * keyboard.c (read_char):
21687 * w32menu.c (w32_menu_display_help):
21688 * xmenu.c (show_help_event, menu_help_callback):
21689 Adjust calls to `show_help_echo'.
21690
21691 * gtkutil.c (xg_maybe_add_timer):
21692 * keyboard.c (readable_events):
21693 * process.c (wait_reading_process_output):
21694 * xmenu.c (x_menu_wait_for_event): Adjust calls to `timer_check'.
21695
21696 * insdel.c (adjust_markers_gap_motion):
21697 Remove; no-op since 1998-01-02T21:29:48Z!rms@gnu.org.
21698 (gap_left, gap_right): Don't call it.
21699
21700 2011-03-25 Chong Yidong <cyd@stupidchicken.com>
21701
21702 * xdisp.c (handle_fontified_prop): Discard changes to clip_changed
21703 incurred during fontification.
21704
21705 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
21706
21707 * buffer.c (defvar_per_buffer): Remove unused parameter `doc'.
21708 (DEFVAR_PER_BUFFER): Don't pass it.
21709
21710 * dispnew.c (row_equal_p, add_row_entry): Remove unused parameter `w'.
21711 (scrolling_window): Don't pass it.
21712
21713 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
21714
21715 * dispextern.h (glyph_matric): Use #if GLYPH_DEBUG, not #ifdef.
21716
21717 * fileio.c (check_executable) [DOS_NT]: Remove unused variables `len'
21718 and `suffix'.
21719 (Fset_file_selinux_context) [HAVE_LIBSELINUX]: Move here declaration
21720 of variables specific to SELinux and computation of `encoded_absname'.
21721
21722 * image.c (XPutPixel): Remove unused variable `height'.
21723
21724 * keyboard.c (make_lispy_event): Remove unused variable `hpos'.
21725
21726 * unexw32.c (get_section_info): Remove unused variable `section'.
21727
21728 * w32.c (stat): Remove unused variables `drive_root' and `devtype'.
21729 (system_process_attributes): Remove unused variable `sess'.
21730 (sys_read): Remove unused variable `err'.
21731
21732 * w32fns.c (top): Wrap variables with #if GLYPH_DEBUG, not #ifdef.
21733 (w32_wnd_proc): Remove unused variable `isdead'.
21734 (unwind_create_frame): Use #if GLYPH_DEBUG, not #ifdef.
21735 (Fx_server_max_request_size): Remove unused variable `dpyinfo'.
21736 (x_create_tip_frame): Remove unused variable `tem'.
21737
21738 * w32inevt.c (w32_console_read_socket):
21739 Remove unused variable `no_events'.
21740
21741 * w32term.c (x_draw_composite_glyph_string_foreground):
21742 Remove unused variable `width'.
21743
21744 2011-03-24 Juanma Barranquero <lekktu@gmail.com>
21745
21746 * w32term.c (x_set_glyph_string_clipping):
21747 Don't pass uninitialized region to CombineRgn.
21748
21749 2011-03-23 Juanma Barranquero <lekktu@gmail.com>
21750
21751 * w32fns.c (x_set_menu_bar_lines): Remove unused variable `olines'.
21752 (w32_wnd_proc): Pass NULL to Windows API, not uninitialized buffer.
21753 (Fx_close_connection): Remove unused variable `i'.
21754
21755 * w32font.c (w32font_draw): Return number of glyphs.
21756 (w32font_open_internal): Remove unused variable `i'.
21757 (w32font_driver): Add missing initializer.
21758
21759 * w32menu.c (utf8to16): Remove unused variable `utf16'.
21760 (fill_in_menu): Remove unused variable `items_added'.
21761
21762 * w32term.c (last_mouse_press_frame): Remove static global variable.
21763 (w32_clip_to_row): Remove unused variable `f'.
21764 (x_delete_terminal): Remove unused variable `i'.
21765
21766 * w32uniscribe.c (uniscribe_shape): Remove unused variable `nclusters'.
21767 (NOTHING): Remove unused static global variable.
21768 (uniscribe_check_otf): Remove unused variable `table'.
21769 (uniscribe_font_driver): Add missing initializers.
21770
21771 2011-03-23 Julien Danjou <julien@danjou.info>
21772
21773 * term.c (Fsuspend_tty, Fresume_tty):
21774 * minibuf.c (read_minibuf, run_exit_minibuf_hook):
21775 * window.c (temp_output_buffer_show):
21776 * insdel.c (signal_before_change):
21777 * frame.c (Fhandle_switch_frame):
21778 * fileio.c (Fdo_auto_save):
21779 * emacs.c (Fkill_emacs):
21780 * editfns.c (save_excursion_restore):
21781 * cmds.c (internal_self_insert):
21782 * callint.c (Fcall_interactively):
21783 * buffer.c (Fkill_all_local_variables):
21784 * keyboard.c (Fcommand_execute, Fsuspend_emacs, safe_run_hooks_1):
21785 Use Frun_hooks.
21786 (command_loop_1): Use Frun_hooks. Call safe_run_hooks
21787 unconditionally since it does the check itself.
21788
21789 2011-03-23 Paul Eggert <eggert@cs.ucla.edu>
21790
21791 Fix more problems found by GCC 4.5.2's static checks.
21792
21793 * coding.c (encode_coding_raw_text): Avoid unnecessary test
21794 the first time through the loop, since we know p0 < p1 then.
21795 This also avoids a gcc -Wstrict-overflow warning.
21796
21797 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP): Avoid 'int' overflow
21798 leading to a memory leak, possible in functions like
21799 load_charset_map_from_file that can allocate an unbounded number
21800 of objects (Bug#8318).
21801
21802 * xmenu.c (set_frame_menubar): Use EMACS_UINT, not int, for indexes
21803 that could (at least in theory) be that large.
21804
21805 * xdisp.c (message_log_check_duplicate): Return unsigned long, not int.
21806 This is less likely to overflow, and avoids undefined behavior if
21807 overflow does occur. All callers changed. Use strtoul to scan
21808 for the unsigned long integer.
21809 (pint2hrstr): Simplify and tune code slightly.
21810 This also avoids a (bogus) GCC warning with gcc -Wstrict-overflow.
21811
21812 * scroll.c (do_scrolling): Work around GCC bug 48228.
21813 See <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48228>.
21814
21815 * frame.c (Fmodify_frame_parameters): Simplify loop counter.
21816 This also avoids a warning with gcc -Wstrict-overflow.
21817 (validate_x_resource_name): Simplify count usage.
21818 This also avoids a warning with gcc -Wstrict-overflow.
21819
21820 * fileio.c (Fcopy_file): Report error if fchown or fchmod
21821 fail (Bug#8306).
21822
21823 * emacs.c (Fdaemon_initialized): Do not ignore I/O errors (Bug#8303).
21824
21825 * process.c (Fmake_network_process): Use socklen_t, not int,
21826 where POSIX says socklen_t is required in portable programs.
21827 This fixes a porting bug on hosts like 64-bit HP-UX, where
21828 socklen_t is wider than int (Bug#8277).
21829 (Fmake_network_process, server_accept_connection):
21830 (wait_reading_process_output, read_process_output):
21831 Likewise.
21832
21833 * process.c: Rename or move locals to avoid shadowing.
21834 (list_processes_1, Fmake_network_process):
21835 (read_process_output_error_handler, exec_sentinel_error_handler):
21836 Rename or move locals.
21837 (Fmake_network_process): Define label "retry_connect" only if needed.
21838 (Fnetwork_interface_info): Fix pointer signedness.
21839 (process_send_signal): Add cast to avoid pointer signedness problem.
21840 (FIRST_PROC_DESC, IF_NON_BLOCKING_CONNECT): Remove unused macros.
21841 (create_process): Use 'volatile' to avoid vfork clobbering (Bug#8298).
21842
21843 Make tparam.h and terminfo.c consistent.
21844 * cm.c (tputs, tgoto, BC, UP): Remove extern decls.
21845 Include tparam.h instead, since it declares them.
21846 * cm.h (PC): Remove extern decl; tparam.h now does this.
21847 * deps.mk (cm.o, terminfo.o): Depend on tparam.h.
21848 * terminfo.c: Include tparam.h, to check interfaces.
21849 (tparm): Make 1st arg a const pointer in decl. Put it at top level.
21850 (tparam): Adjust signature to match interface in tparam.h;
21851 this removes some undefined behavior. Check that outstring and len
21852 are zero, which they always are with Emacs.
21853 * tparam.h (PC, BC, UP): New extern decls.
21854
21855 * xftfont.c (xftfont_shape): Now static, and defined only if needed.
21856 (xftfont_open): Rename locals to avoid shadowing.
21857
21858 * ftfont.c (ftfont_resolve_generic_family): Fix pointer signedness.
21859 (ftfont_otf_capability, ftfont_shape): Omit decls if not needed.
21860 (OTF_TAG_SYM): Omit macro if not needed.
21861 (ftfont_list): Remove unused local.
21862 (get_adstyle_property, ftfont_pattern_entity):
21863 (ftfont_lookup_cache, ftfont_open, ftfont_anchor_point):
21864 Rename locals to avoid shadowing.
21865
21866 * xfont.c (xfont_list_family): Mark var as initialized.
21867
21868 * xml.c (make_dom): Now static.
21869
21870 * composite.c (composition_compute_stop_pos): Rename local to
21871 avoid shadowing.
21872 (composition_reseat_it): Remove unused locals.
21873 (find_automatic_composition, composition_adjust_point): Likewise.
21874 (composition_update_it): Mark var as initialized.
21875 (find_automatic_composition): Mark vars as initialized,
21876 with a FIXME (Bug#8290).
21877
21878 character.h: Rename locals to avoid shadowing.
21879 * character.h (PREV_CHAR_BOUNDARY, FETCH_STRING_CHAR_ADVANCE):
21880 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE, FETCH_CHAR_ADVANCE):
21881 (FETCH_CHAR_ADVANCE_NO_CHECK, INC_POS, DEC_POS, BUF_INC_POS):
21882 (BUF_DEC_POS): Be more systematic about renaming local temporaries
21883 to avoid shadowing.
21884
21885 * textprop.c (property_change_between_p): Remove; unused.
21886
21887 * intervals.c (interval_start_pos): Now static.
21888
21889 * intervals.h (CHECK_TOTAL_LENGTH): Avoid empty "else".
21890
21891 * atimer.c (start_atimer, append_atimer_lists, set_alarm):
21892 Rename locals to avoid shadowing.
21893
21894 * sound.c (wav_play, au_play, Fplay_sound_internal):
21895 Fix pointer signedness.
21896 (alsa_choose_format): Remove unused local var.
21897 (wav_play): Initialize a variable to 0, to prevent undefined
21898 behavior (Bug#8278).
21899
21900 * region-cache.c (insert_cache_boundary): Redo var to avoid shadowing.
21901
21902 * region-cache.h (pp_cache): New decl, for gcc -Wmissing-prototypes.
21903
21904 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork
21905 clobbering (Bug#8298).
21906 * sysdep.c (sys_subshell): Likewise.
21907 Previously, the sys_subshell 'volatile' was incorrectly IF_LINTted out.
21908
21909 * lisp.h (child_setup): Now NO_RETURN unless DOS_NT.
21910 This should get cleaned up, so that child_setup has the
21911 same signature on all platforms.
21912
21913 * callproc.c (call_process_cleanup): Now static.
21914 (relocate_fd): Rename locals to avoid shadowing.
21915
21916 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
21917
21918 * xterm.c (x_clear_frame): Remove XClearWindow call. This appears
21919 not to be necessary, and produces flickering.
21920
21921 2011-03-20 Glenn Morris <rgm@gnu.org>
21922
21923 * config.in: Remove file.
21924
21925 2011-03-20 Juanma Barranquero <lekktu@gmail.com>
21926
21927 * minibuf.c (Vcompleting_read_function): Don't declare, global variables
21928 are now in src/globals.h.
21929 (syms_of_minibuf): Remove spurious & from previous change.
21930
21931 2011-03-20 Leo Liu <sdl.web@gmail.com>
21932
21933 * minibuf.c (completing-read-function): New variable.
21934 (completing-read-default): Rename from completing-read.
21935 (completing-read): Call completing-read-function.
21936
21937 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
21938
21939 * xfaces.c (Fx_load_color_file):
21940 Read color file from absolute filename (bug#8250).
21941
21942 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
21943
21944 * makefile.w32-in: Update dependencies.
21945
21946 2011-03-17 Eli Zaretskii <eliz@gnu.org>
21947
21948 * makefile.w32-in ($(BLD)/unexw32.$(O)): Depend on $(SRC)/unexec.h.
21949
21950 2011-03-17 Paul Eggert <eggert@cs.ucla.edu>
21951
21952 Fix more problems found by GCC 4.5.2's static checks.
21953
21954 * process.c (make_serial_process_unwind, send_process_trap):
21955 (sigchld_handler): Now static.
21956
21957 * process.c (allocate_pty): Let PTY_ITERATION declare iteration vars.
21958 That way, the code declares only the vars that it needs.
21959 * s/aix4-2.h (PTY_ITERATION): Declare iteration vars.
21960 * s/cygwin.h (PTY_ITERATION): Likewise.
21961 * s/darwin.h (PTY_ITERATION): Likewise.
21962 * s/gnu-linux.h (PTY_ITERATION): Likewise.
21963
21964 * s/irix6-5.h (PTY_OPEN): Declare stb, to loosen coupling.
21965 * process.c (allocate_pty): Don't declare stb unless it's needed.
21966
21967 * bytecode.c (MAYBE_GC): Rewrite so as not to use empty "else".
21968 (CONSTANTLIM): Remove; unused.
21969 (METER_CODE, Bscan_buffer, Bread_char, Bset_mark):
21970 Define only if needed.
21971
21972 * unexelf.c (unexec): Name an expression,
21973 to avoid gcc -Wbad-function-cast warning.
21974 Use a different way to cause a compilation error if anyone uses
21975 n rather than nn, a way that does not involve shadowing.
21976 (ELF_BSS_SECTION_NAME, OLD_PROGRAM_H): Remove; unused.
21977
21978 * deps.mk (unexalpha.o): Remove; unused.
21979
21980 New file unexec.h, the (simple) interface for unexec (Bug#8267).
21981 * unexec.h: New file.
21982 * deps.mk (emacs.o, unexaix.o, unexcw.o, unexcoff.o, unexelf.o):
21983 (unexhp9k800.o, unexmacosx.o, unexsol.o, unexw32.o):
21984 Depend on unexec.h.
21985 * emacs.c [!defined CANNOT_DUMP]: Include unexec.h.
21986 * unexaix.c, unexcoff.c, unexcw.c, unexelf.c, unexhp9k800.c:
21987 * unexmacosx.c, unexsol.c, unexw32.c: Include unexec.h.
21988 Change as necessary to match prototype in unexec.h.
21989
21990 * syntax.c (Fforward_comment, scan_lists): Rename locals to avoid
21991 shadowing.
21992 (back_comment, skip_chars): Mark vars as initialized.
21993
21994 * character.h (FETCH_STRING_CHAR_ADVANCE_NO_CHECK, BUF_INC_POS):
21995 Rename locals to avoid shadowing.
21996
21997 * lread.c (read1): Rewrite so as not to use empty "else".
21998 (Fload, readevalloop, read1): Rename locals to avoid shadowing.
21999
22000 * print.c (Fredirect_debugging_output): Fix pointer signedess.
22001
22002 * lisp.h (debug_output_compilation_hack): Add decl here, to avoid
22003 warning when compiling print.c.
22004
22005 * font.c (font_unparse_fcname): Abort in an "impossible" situation
22006 instead of using an uninitialized var.
22007 (font_sort_entities): Mark var as initialized.
22008
22009 * character.h (FETCH_CHAR_ADVANCE): Rename locals to avoid shadowing.
22010
22011 * font.c (font_unparse_xlfd): Don't mix pointers to variables with
22012 pointers to constants.
22013 (font_parse_fcname): Remove unused vars.
22014 (font_delete_unmatched): Now static.
22015 (font_get_spec): Remove; unused.
22016 (font_style_to_value, font_prop_validate_style, font_unparse_fcname):
22017 (font_update_drivers, Ffont_get_glyphs, font_add_log):
22018 Rename or move locals to avoid shadowing.
22019
22020 * fns.c (require_nesting_list, require_unwind): Now static.
22021 (Ffillarray): Rename locals to avoid shadowing.
22022
22023 * floatfns.c (domain_error2): Define only if needed.
22024 (Ffrexp, Fldexp): Rename locals to avoid shadowing.
22025
22026 * alloc.c (mark_backtrace): Move decl from here ...
22027 * lisp.h: ... to here, so that it can be checked.
22028
22029 * eval.c (call_debugger, do_debug_on_call, grow_specpdl): Now static.
22030 (Fdefvar): Rewrite so as not to use empty "else".
22031 (lisp_indirect_variable): Name an expression,
22032 to avoid gcc -Wbad-function-cast warning.
22033 (Fdefvar): Rename locals to avoid shadowing.
22034
22035 * callint.c (quotify_arg, quotify_args): Now static.
22036 (Fcall_interactively): Rename locals to avoid shadowing.
22037 Use const pointer when appropriate.
22038
22039 * lisp.h (get_system_name, get_operating_system_release):
22040 Move decls here, to check interfaces.
22041 * process.c (get_operating_system_release): Move decl to lisp.h.
22042 * xrdb.c (get_system_name): Likewise.
22043 * editfns.c (init_editfns, Fuser_login_name, Fuser_uid):
22044 (Fuser_real_uid, Fuser_full_name): Remove unnecessary casts,
22045 some of which prompt warnings from gcc -Wbad-function-cast.
22046 (Fformat_time_string, Fencode_time, Finsert_char):
22047 (Ftranslate_region_internal, Fformat):
22048 Rename or remove local vars to avoid shadowing.
22049 (Ftranslate_region_internal): Mark var as initialized.
22050
22051 * doc.c (Fdocumentation, Fsnarf_documentation): Move locals to
22052 avoid shadowing.
22053
22054 * lisp.h (eassert): Check that the argument compiles, even if
22055 ENABLE_CHECKING is not defined.
22056
22057 * data.c (Findirect_variable): Name an expression, to avoid
22058 gcc -Wbad-function-cast warning.
22059 (default_value, arithcompare, arith_driver, arith_error): Now static.
22060 (store_symval_forwarding): Rename local to avoid shadowing.
22061 (Fmake_variable_buffer_local, Fmake_local_variable):
22062 Mark variables as initialized.
22063 (do_blv_forwarding, do_symval_forwarding): Remove; unused.
22064
22065 * alloc.c (check_cons_list): Do not define unless GC_CHECK_CONS_LIST.
22066 (Fmake_vector, Fvector, Fmake_byte_code, Fgarbage_collect):
22067 Rename locals to avoid shadowing.
22068 (mark_stack): Move local variables into the #ifdef region where
22069 they're used.
22070 (BLOCK_INPUT_ALLOC, UNBLOCK_INPUT_ALLOC): Define only if
22071 ! defined SYSTEM_MALLOC && ! defined SYNC_INPUT, as they are not
22072 needed otherwise.
22073 (CHECK_ALLOCATED): Define only if GC_CHECK_MARKED_OBJECTS.
22074 (GC_STRING_CHARS): Remove; not used.
22075 (Fmemory_limit): Cast sbrk's returned value to char *.
22076
22077 * lisp.h (check_cons_list): Declare if GC_CHECK_CONS_LIST; this
22078 avoids undefined behavior in theory.
22079
22080 * regex.c (IF_LINT): Add defn, for benefit of ../lib-src.
22081
22082 Use functions, not macros, for up- and down-casing (Bug#8254).
22083 * buffer.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
22084 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Remove. All callers changed
22085 to use the following functions instead of these macros.
22086 (downcase): Adjust to lack of DOWNCASE_TABLE. Return int, not
22087 EMACS_INT, since callers assume the returned value fits in int.
22088 (upcase1): Likewise, for UPCASE_TABLE.
22089 (uppercasep, lowercasep, upcase): New static inline functions.
22090 * editfns.c (Fchar_equal): Remove no-longer-needed workaround for
22091 the race-condition problem in the old DOWNCASE.
22092
22093 * regex.c (CHARSET_LOOKUP_RANGE_TABLE_RAW, POP_FAILURE_REG_OR_COUNT):
22094 Rename locals to avoid shadowing.
22095 (regex_compile, re_match_2_internal): Move locals to avoid shadowing.
22096 (regex_compile, re_search_2, re_match_2_internal):
22097 Remove unused local vars.
22098 (FREE_VAR): Rewrite so as not to use empty "else",
22099 which gcc can warn about.
22100 (regex_compile, re_match_2_internal): Mark locals as initialized.
22101 (RETALLOC_IF): Define only if needed.
22102 (WORDCHAR_P): Likewise. This one is never needed, but is used
22103 only in a comment talking about a compiler bug, so put inside
22104 the #if 0 of that comment.
22105 (CHARSET_LOOKUP_BITMAP, FAIL_STACK_FULL, RESET_FAIL_STACK):
22106 (PUSH_FAILURE_ELT, BUF_PUSH_3, STOP_ADDR_VSTRING):
22107 Remove; unused.
22108
22109 * search.c (boyer_moore): Rename locals to avoid shadowing.
22110 * character.h (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE):
22111 (PREV_CHAR_BOUNDARY): Likewise.
22112
22113 * search.c (simple_search): Remove unused var.
22114
22115 * dired.c (compile_pattern): Move decl from here ...
22116 * lisp.h: ... to here, so that it can be checked.
22117 (struct re_registers): New forward decl.
22118
22119 * character.h (INC_POS, DEC_POS): Rename locals to avoid shadowing.
22120
22121 * indent.c (MULTIBYTE_BYTES_WIDTH): New args bytes, width.
22122 All uses changed.
22123 (MULTIBYTE_BYTES_WIDTH, scan_for_column, compute_motion):
22124 Rename locals to avoid shadowing.
22125 (Fvertical_motion): Mark locals as initialized.
22126
22127 * casefiddle.c (casify_object, casify_region): Now static.
22128 (casify_region): Mark local as initialized.
22129
22130 * cmds.c (internal_self_insert): Rename local to avoid shadowing.
22131
22132 * lisp.h (GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR, GCPRO6_VAR):
22133 New macros, so that the caller can use some names other than
22134 gcpro1, gcpro2, etc.
22135 (GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6): Reimplement in terms
22136 of the new macros.
22137 (GCPRO1_VAR, UNGCPRO_VAR): Change the meaning of the second
22138 argument, for consistency with GCPRO2_VAR, etc: it is now the
22139 prefix of the variable, not the variable itself. All uses
22140 changed.
22141 * dired.c (directory_files_internal, file_name_completion):
22142 Rename locals to avoid shadowing.
22143
22144 Fix a race condition diagnosed by gcc -Wsequence-point (Bug#8254).
22145 An expression of the form (DOWNCASE (x) == DOWNCASE (y)), found in
22146 dired.c's scmp function, had undefined behavior.
22147 * lisp.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
22148 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Move from here ...
22149 * buffer.h: ... to here, because these macros use current_buffer,
22150 and the new implementation with inline functions needs to have
22151 current_buffer in scope now, rather than later when the macros
22152 are used.
22153 (downcase, upcase1): New static inline functions.
22154 (DOWNCASE, UPCASE1): Reimplement using these functions.
22155 This avoids undefined behavior in expressions like
22156 DOWNCASE (x) == DOWNCASE (y), which previously suffered
22157 from race conditions in accessing the global variables
22158 case_temp1 and case_temp2.
22159 * casetab.c (case_temp1, case_temp2): Remove; no longer needed.
22160 * lisp.h (case_temp1, case_temp2): Remove their decls.
22161 * character.h (ASCII_CHAR_P): Move from here ...
22162 * lisp.h: ... to here, so that the inline functions mentioned
22163 above can use them.
22164
22165 * dired.c (directory_files_internal_unwind): Now static.
22166
22167 * fileio.c (file_name_as_directory, directory_file_name):
22168 (barf_or_query_if_file_exists, auto_save_error, auto_save_1):
22169 Now static.
22170 (file_name_as_directory): Use const pointers when appropriate.
22171 (Fexpand_file_name): Likewise. In particular, newdir might
22172 point at constant storage, so make it a const pointer.
22173 (Fmake_directory_internal, Fread_file_name): Remove unused vars.
22174 (Ffile_selinux_context, Fset_file_selinux_context): Fix pointer
22175 signedness issues.
22176 (Fset_file_times, Finsert_file_contents, auto_save_error):
22177 Rename locals to avoid shadowing.
22178
22179 * minibuf.c (choose_minibuf_frame_1): Now static.
22180 (Ftry_completion, Fall_completions): Rename or remove locals
22181 to avoid shadowing.
22182
22183 * marker.c (bytepos_to_charpos): Remove; unused.
22184
22185 * lisp.h (verify_bytepos, count_markers): New decls,
22186 so that gcc does not warn that these functions aren't declared.
22187
22188 * insdel.c (check_markers, make_gap_larger, make_gap_smaller):
22189 (reset_var_on_error, Fcombine_after_change_execute_1): Now static.
22190 (CHECK_MARKERS): Redo to avoid gcc -Wempty-body diagnostic.
22191 (copy_text): Remove unused local var.
22192
22193 * filelock.c (within_one_second): Now static.
22194 (lock_file_1): Rename local to avoid shadowing.
22195
22196 * buffer.c (fix_overlays_before): Mark locals as initialized.
22197 (fix_start_end_in_overlays): Likewise. This function should be
22198 simplified by using pointers-to-pointers, but that's a different
22199 matter.
22200 (switch_to_buffer_1): Now static.
22201 (Fkill_buffer, record_buffer, Fbury_buffer, Fset_buffer_multibyte):
22202 (report_overlay_modification): Rename locals to avoid shadowing.
22203
22204 * sysdep.c (system_process_attributes): Rename vars to avoid shadowing.
22205 Fix pointer signedness issue.
22206 (sys_subshell): Mark local as volatile if checking for lint,
22207 to suppress a gcc -Wclobbered warning that does not seem to be right.
22208 (MAXPATHLEN): Define only if needed.
22209
22210 * process.c (serial_open, serial_configure): Move decls from here ...
22211 * systty.h: ... to here, so that they can be checked.
22212
22213 * fns.c (get_random, seed_random): Move extern decls from here ...
22214 * lisp.h: ... to here, so that they can be checked.
22215
22216 * sysdep.c (reset_io): Now static.
22217 (wait_for_termination_signal): Remove; unused.
22218
22219 * keymap.c (keymap_parent, keymap_memberp, map_keymap_internal):
22220 (copy_keymap_item, append_key, push_text_char_description):
22221 Now static.
22222 (Fwhere_is_internal): Don't test CONSP (sequences) unnecessarily.
22223 (DENSE_TABLE_SIZE): Remove; unused.
22224 (get_keymap, access_keymap, Fdefine_key, Fwhere_is_internal):
22225 (describe_map_tree):
22226 Rename locals to avoid shadowing.
22227
22228 * keyboard.c: Declare functions static if they are not used elsewhere.
22229 (echo_char, echo_dash, cmd_error, top_level_2):
22230 (poll_for_input, handle_async_input): Now static.
22231 (read_char, kbd_buffer_get_event, make_lispy_position):
22232 (make_lispy_event, make_lispy_movement, apply_modifiers):
22233 (decode_keyboard_code, tty_read_avail_input, menu_bar_items):
22234 (parse_tool_bar_item, read_key_sequence, Fread_key_sequence):
22235 (Fread_key_sequence_vector): Rename locals to avoid shadowing.
22236 (read_key_sequence, read_char): Mark locals as initialized.
22237 (Fexit_recursive_edit, Fabort_recursive_edit): Mark with NO_RETURN.
22238
22239 * keyboard.h (make_ctrl_char): New decl.
22240 (mark_kboards): Move decl here ...
22241 * alloc.c (mark_kboards): ... from here.
22242
22243 * lisp.h (force_auto_save_soon): New decl.
22244
22245 * emacs.c (init_cmdargs): Rename local to avoid shadowing.
22246 (DEFINE_DUMMY_FUNCTION): New macro.
22247 (__do_global_ctors, __do_global_ctors_aux, __do_global_dtors, __main):
22248 Use it.
22249 (main): Add casts to avoid warnings
22250 if GCC considers string literals to be constants.
22251
22252 * lisp.h (fatal_error_signal): Add decl, since it's exported.
22253
22254 * dbusbind.c: Pointer signedness fixes.
22255 (xd_signature, xd_append_arg, xd_initialize):
22256 (Fdbus_call_method, Fdbus_call_method_asynchronously):
22257 (Fdbus_method_return_internal, Fdbus_method_error_internal):
22258 (Fdbus_send_signal, xd_read_message_1, Fdbus_register_service):
22259 (Fdbus_register_signal): Use SSDATA when the context wants char *.
22260
22261 * dbusbind.c (Fdbus_init_bus): Add cast to avoid warning
22262 if GCC considers string literals to be constants.
22263 (Fdbus_register_service, Fdbus_register_method): Remove unused vars.
22264
22265 2011-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
22266
22267 * print.c (PRINT_CIRCLE_CANDIDATE_P): New macro.
22268 (print_preprocess, print_object): New macro to fix last change.
22269
22270 * print.c (print_preprocess): Don't forget font objects.
22271
22272 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
22273
22274 * emacs.c (USAGE3): Doc fixes.
22275
22276 2011-03-15 Andreas Schwab <schwab@linux-m68k.org>
22277
22278 * coding.c (detect_coding_iso_2022): Reorganize code to clarify
22279 structure.
22280
22281 2011-03-14 Juanma Barranquero <lekktu@gmail.com>
22282
22283 * lisp.h (VWindow_system, Qfile_name_history):
22284 * keyboard.h (lispy_function_keys) [WINDOWSNT]:
22285 * w32term.h (w32_system_caret_hwnd, w32_system_caret_height)
22286 (w32_system_caret_x, w32_system_caret_y): Declare extern.
22287
22288 * w32select.c: Don't #include "keyboard.h".
22289 (run_protected): Add extern declaration for waiting_for_input.
22290
22291 * w32.c (Qlocal, noninteractive1, inhibit_window_system):
22292 * w32console.c (detect_input_pending, read_input_pending)
22293 (encode_terminal_code):
22294 * w32fns.c (quit_char, lispy_function_keys, Qtooltip)
22295 (w32_system_caret_hwnd, w32_system_caret_height, w32_system_caret_x)
22296 (w32_system_caret_y, Qfile_name_history):
22297 * w32font.c (w32font_driver, QCantialias, QCotf, QClang):
22298 * w32inevt.c (reinvoke_input_signal, lispy_function_keys):
22299 * w32menu.c (Qmenu_bar, QCtoggle, QCradio, Qoverriding_local_map)
22300 (Qoverriding_terminal_local_map, Qmenu_bar_update_hook):
22301 * w32proc.c (Qlocal, report_file_error):
22302 * w32term.c (Vwindow_system, updating_frame):
22303 * w32uniscribe.c (initialized, uniscribe_font_driver):
22304 Remove unneeded extern declarations.
22305
22306 2011-03-14 Chong Yidong <cyd@stupidchicken.com>
22307
22308 * buffer.c (Fmake_indirect_buffer): Fix incorrect assertions.
22309
22310 2011-03-13 Chong Yidong <cyd@stupidchicken.com>
22311
22312 * buffer.h (BUF_BEGV, BUF_BEGV_BYTE, BUF_ZV, BUF_ZV_BYTE, BUF_PT)
22313 (BUF_PT_BYTE): Rewrite to handle indirect buffers (Bug#8219).
22314 These macros can no longer be used for assignment.
22315
22316 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
22317 Assign struct members directly, instead of using BUF_BEGV etc.
22318 (record_buffer_markers, fetch_buffer_markers): New functions for
22319 recording and fetching special buffer markers.
22320 (set_buffer_internal_1, set_buffer_temp): Use them.
22321
22322 * lread.c (unreadchar): Use SET_BUF_PT_BOTH.
22323
22324 * insdel.c (adjust_point): Use SET_BUF_PT_BOTH.
22325
22326 * intervals.c (temp_set_point_both): Use SET_BUF_PT_BOTH.
22327 (get_local_map): Use SET_BUF_BEGV_BOTH and SET_BUF_ZV_BOTH.
22328
22329 * xdisp.c (hscroll_window_tree):
22330 (reconsider_clip_changes): Use PT instead of BUF_PT.
22331
22332 2011-03-13 Eli Zaretskii <eliz@gnu.org>
22333
22334 * makefile.w32-in ($(BLD)/editfns.$(O)): Depend on
22335 $(EMACS_ROOT)/lib/intprops.h.
22336
22337 2011-03-13 Paul Eggert <eggert@cs.ucla.edu>
22338
22339 Fix more problems found by GCC 4.5.2's static checks.
22340
22341 * gtkutil.c (xg_get_pixbuf_from_pixmap): Add cast from char *
22342 to unsigned char * to avoid compiler diagnostic.
22343 (xg_free_frame_widgets): Make it clear that a local variable is
22344 needed only if USE_GTK_TOOLTIP.
22345 (gdk_window_get_screen): Make it clear that this macro is needed
22346 only if USE_GTK_TOOLTIP.
22347 (int_gtk_range_get_value): New function, which avoids a diagnostic
22348 from gcc -Wbad-function-cast.
22349 (xg_set_toolkit_scroll_bar_thumb): Use it.
22350 (xg_tool_bar_callback, xg_tool_item_stale_p): Rewrite to avoid
22351 diagnostic from gcc -Wbad-function-cast.
22352 (get_utf8_string, xg_get_file_with_chooser):
22353 Rename locals to avoid shadowing.
22354 (create_dialog): Move locals to avoid shadowing.
22355
22356 * xgselect.c (xg_select): Remove unused var.
22357
22358 * image.c (four_corners_best): Mark locals as initialized.
22359 (gif_load): Initialize transparent_p to zero (Bug#8238).
22360 Mark another local as initialized.
22361 (my_png_error, my_error_exit): Mark with NO_RETURN.
22362
22363 * image.c (clear_image_cache): Now static.
22364 (DIM, HAVE_STDLIB_H_1): Remove unused macros.
22365 (xpm_load): Redo to avoid "discards qualifiers" gcc warning.
22366 (x_edge_detection): Remove unnecessary cast that
22367 gcc -Wbad-function-cast diagnoses.
22368 (gif_load): Fix pointer signedness.
22369 (clear_image_cache, xbm_read_bitmap_data, x_detect_edges):
22370 (jpeg_load, gif_load): Rename locals to avoid shadowing.
22371
22372 2011-03-12 Paul Eggert <eggert@cs.ucla.edu>
22373
22374 Improve quality of tests for time stamp overflow.
22375 For example, without this patch (encode-time 0 0 0 1 1
22376 1152921504606846976) returns the obviously-bogus value (-948597
22377 62170) on my RHEL 5.5 x86-64 host. With the patch, it correctly
22378 reports time overflow. See
22379 <http://lists.gnu.org/archive/html/emacs-devel/2011-03/msg00470.html>.
22380 * deps.mk (editfns.o): Depend on ../lib/intprops.h.
22381 * editfns.c: Include limits.h and intprops.h.
22382 (TIME_T_MIN, TIME_T_MAX): New macros.
22383 (time_overflow): Move earlier, to before first use.
22384 (hi_time, lo_time): New functions, for an accurate test for
22385 out-of-range times.
22386 (Fcurrent_time, Fget_internal_run_time, make_time): Use them.
22387 (Fget_internal_run_time): Don't assume time_t fits in int.
22388 (make_time): Use list2 instead of Fcons twice.
22389 (Fdecode_time): More accurate test for out-of-range times.
22390 (check_tm_member): New function.
22391 (Fencode_time): Use it, to test for out-of-range times.
22392 (lisp_time_argument): Don't rely on undefined left-shift and
22393 right-shift behavior when checking for time stamp overflow.
22394
22395 * editfns.c (time_overflow): New function, refactoring common code.
22396 (Fformat_time_string, Fdecode_time, Fencode_time):
22397 (Fcurrent_time_string): Use it.
22398
22399 Move 'make_time' to be next to its inverse 'lisp_time_argument'.
22400 * dired.c (make_time): Move to ...
22401 * editfns.c (make_time): ... here.
22402 * systime.h: Note the move.
22403
22404 2011-03-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22405
22406 * fringe.c (update_window_fringes): Remove unused variables.
22407
22408 * unexmacosx.c (copy_data_segment): Also copy __got section.
22409 (Bug#8223)
22410
22411 2011-03-12 Eli Zaretskii <eliz@gnu.org>
22412
22413 * termcap.c [MSDOS]: Include "msdos.h".
22414 (find_capability, tgetnum, tgetflag, tgetstr, tputs, tgetent):
22415 Constify `char *' arguments and their references according to
22416 prototypes in tparam.h.
22417
22418 * deps.mk (termcap.o): Depend on tparam.h and msdos.h.
22419
22420 * msdos.c (XMenuAddPane): 3rd argument is `const char *' now.
22421 Adapt all references accordingly.
22422
22423 * msdos.h (XMenuAddPane): 3rd argument is `const char *' now.
22424
22425 2011-03-11 Tom Tromey <tromey@redhat.com>
22426
22427 * buffer.c (syms_of_buffer): Remove obsolete comment.
22428
22429 2011-03-11 Eli Zaretskii <eliz@gnu.org>
22430
22431 * termhooks.h (encode_terminal_code): Declare prototype.
22432
22433 * msdos.c (encode_terminal_code): Don't declare prototype.
22434
22435 * term.c (encode_terminal_code): Now external again, used by
22436 w32console.c and msdos.c.
22437
22438 * makefile.w32-in ($(BLD)/term.$(O), ($(BLD)/tparam.$(O)):
22439 Depend on $(SRC)/tparam.h, see 2011-03-11T07:24:21Z!eggert@cs.ucla.edu.
22440
22441 2011-03-11 Paul Eggert <eggert@cs.ucla.edu>
22442
22443 Fix some minor problems found by GCC 4.5.2's static checks.
22444
22445 * fringe.c (update_window_fringes): Mark locals as initialized
22446 (Bug#8227).
22447 (destroy_fringe_bitmap, init_fringe_bitmap): Now static.
22448
22449 * alloc.c (mark_fringe_data): Move decl from here ...
22450 * lisp.h (mark_fringe_data) [HAVE_WINDOW_SYSTEM]: ... to here,
22451 to check its interface.
22452 (init_fringe_once): Do not declare unless HAVE_WINDOW_SYSTEM.
22453
22454 * fontset.c (free_realized_fontset): Now static.
22455 (Fset_fontset_font): Rename local to avoid shadowing.
22456 (fontset_font): Mark local as initialized.
22457 (FONTSET_SPEC, FONTSET_REPERTORY, RFONT_DEF_REPERTORY): Remove; unused.
22458
22459 * xrdb.c: Include "xterm.h", to check x_load_resources's interface.
22460
22461 * xselect.c (x_disown_buffer_selections): Remove; not used.
22462 (TRACE3) [!defined TRACE_SELECTION]: Remove; not used.
22463 (x_own_selection, Fx_disown_selection_internal): Rename locals
22464 to avoid shadowing.
22465 (x_handle_dnd_message): Remove local to avoid shadowing.
22466
22467 * lisp.h (GCPRO1_VAR, UNGCPRO_VAR): New macros,
22468 so that the caller can use some name other than gcpro1.
22469 (GCPRO1, UNGCPRO): Reimplement in terms of the new macros.
22470 * xfns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
22471 (Fx_backspace_delete_keys_p):
22472 Use them to avoid shadowing, and rename vars to avoid shadowing.
22473 (x_decode_color, x_set_name, x_window): Now static.
22474 (Fx_create_frame): Add braces to silence GCC warning.
22475 (Fx_file_dialog, Fx_select_font): Fix pointer signedness.
22476 (x_real_positions, xg_set_icon_from_xpm_data, x_create_tip_frame):
22477 Remove unused locals.
22478 (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
22479 (Fx_backspace_delete_keys_p): Rename locals to avoid shadowing.
22480 Some of these renamings use the new GCPRO1_VAR and UNGCPRO_VAR
22481 macros.
22482
22483 * xterm.h (x_mouse_leave): New decl.
22484
22485 * xterm.c (x_copy_dpy_color, x_focus_on_frame, x_unfocus_frame):
22486 Remove unused functions.
22487 (x_shift_glyphs_for_insert, XTflash, XTring_bell):
22488 (x_calc_absolute_position): Now static.
22489 (XTread_socket): Don't define label "out" unless it's used.
22490 Don't declare local "event" unless it's used.
22491 (x_iconify_frame, x_free_frame_resources): Don't declare locals
22492 unless they are used.
22493 (XEMBED_VERSION, xembed_set_info): Don't define unless needed.
22494 (x_fatal_error_signal): Remove; not used.
22495 (x_draw_image_foreground, redo_mouse_highlight, XTmouse_position):
22496 (x_scroll_bar_report_motion, handle_one_xevent, x_draw_bar_cursor):
22497 (x_error_catcher, x_connection_closed, x_error_handler):
22498 (x_error_quitter, xembed_send_message, x_iconify_frame):
22499 (my_log_handler): Rename locals to avoid shadowing.
22500 (x_delete_glyphs, x_ins_del_lines): Mark with NO_RETURN.
22501 (x_connection_closed): Tell GCC not to suggest NO_RETURN.
22502
22503 * xfaces.c (clear_face_cache, Fx_list_fonts, Fface_font):
22504 Rename or move locals to avoid shadowing.
22505 (tty_defined_color, merge_face_heights): Now static.
22506 (free_realized_faces_for_fontset): Remove; not used.
22507 (Fx_list_fonts): Mark variable that gcc -Wuninitialized
22508 does not deduce is never used uninitialized.
22509 (STRDUPA, LSTRDUPA, FONT_POINT_SIZE_QUANTUM): Remove; not used.
22510 (LFACEP): Define only if XASSERTS, as it's not needed otherwise.
22511
22512 * terminal.c (store_terminal_param): Now static.
22513
22514 * xmenu.c (menu_highlight_callback): Now static.
22515 (set_frame_menubar): Remove unused local.
22516 (xmenu_show): Rename parameter to avoid shadowing.
22517 (xmenu_show, xdialog_show, xmenu_show): Make local pointers "const"
22518 since they might point to immutable storage.
22519 (next_menubar_widget_id): Declare only if USE_X_TOOLKIT,
22520 since it's unused otherwise.
22521
22522 * xdisp.c (produce_glyphless_glyph): Initialize lower_xoff.
22523 Add a FIXME, since the code still doesn't look right. (Bug#8215)
22524 (Fcurrent_bidi_paragraph_direction): Simplify slightly; this
22525 avoids a gcc -Wuninitialized diagnostic.
22526 (display_line, BUILD_COMPOSITE_GLYPH_STRING, draw_glyphs):
22527 (note_mouse_highlight): Mark variables that gcc -Wuninitialized
22528 does not deduce are never used uninitialized.
22529
22530 * lisp.h (IF_LINT): New macro, copied from ../lib-src/emacsclient.c.
22531
22532 * xdisp.c (redisplay_window): Rename local to avoid shadowing.
22533 * window.c (window_loop, size_window):
22534 (run_window_configuration_change_hook, enlarge_window): Likewise.
22535
22536 * window.c (display_buffer): Now static.
22537 (size_window): Mark variables that gcc -Wuninitialized
22538 does not deduce are never used uninitialized.
22539 * window.h (check_all_windows): New decl, to forestall
22540 gcc -Wmissing-prototypes diagnostic.
22541 * dispextern.h (bidi_dump_cached_states): Likewise.
22542
22543 * charset.h (CHECK_CHARSET_GET_CHARSET): Rename locals to avoid
22544 shadowing.
22545 * charset.c (map_charset_for_dump, Fchar_charset): Likewise.
22546 Include <limits.h>.
22547 (Fsort_charsets): Redo min/max calculation to shorten the code a bit
22548 and to avoid gcc -Wuninitialized warning.
22549 (load_charset_map): Mark variables that gcc -Wuninitialized
22550 does not deduce are never used uninitialized.
22551 (load_charset): Abort instead of using uninitialized var (Bug#8229).
22552
22553 * coding.c (coding_set_source, coding_set_destination):
22554 Use "else { /* comment */ }" rather than "else /* comment */;"
22555 for clarity, and to avoid gcc -Wempty-body warning.
22556 (Fdefine_coding_system_internal): Don't redeclare 'i' inside
22557 a block, when the outer 'i' will do.
22558 (decode_coding_utf_8, decode_coding_utf_16, detect_coding_emacs_mule):
22559 (emacs_mule_char, decode_coding_emacs_mule, detect_coding_iso_2022):
22560 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5):
22561 (decode_coding_raw_text, decode_coding_charset, get_translation_table):
22562 (Fdecode_sjis_char, Fdefine_coding_system_internal):
22563 Rename locals to avoid shadowing.
22564 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
22565 * coding.c (emacs_mule_char, encode_invocation_designation):
22566 Now static, since they're not used elsewhere.
22567 (decode_coding_iso_2022): Add "default: abort ();" as a safety check.
22568 (decode_coding_object, encode_coding_object, detect_coding_system):
22569 (decode_coding_emacs_mule): Mark variables that gcc
22570 -Wuninitialized does not deduce are never used uninitialized.
22571 (detect_coding_iso_2022): Initialize a local variable that might
22572 be used uninitialized. Leave a FIXME because it's not clear that
22573 this initialization is needed. (Bug#8211)
22574 (ISO_CODE_LF, ISO_CODE_CR, CODING_ISO_FLAG_EUC_TW_SHIFT):
22575 (ONE_MORE_BYTE_NO_CHECK, UTF_BOM, UTF_16_INVALID_P):
22576 (SHIFT_OUT_OK, ENCODE_CONTROL_SEQUENCE_INTRODUCER):
22577 (ENCODE_DIRECTION_R2L, ENCODE_DIRECTION_L2R):
22578 Remove unused macros.
22579
22580 * category.c (hash_get_category_set): Remove unused local var.
22581 (copy_category_table): Now static, since it's not used elsewhere.
22582 * character.c (string_count_byte8): Likewise.
22583
22584 * ccl.c (CCL_WRITE_STRING, CCL_ENCODE_CHAR, Fccl_execute_on_string):
22585 (Fregister_code_conversion_map): Rename locals to avoid shadowing.
22586
22587 * chartab.c (copy_sub_char_table): Now static, since it's not used
22588 elsewhere.
22589 (sub_char_table_ref_and_range, char_table_ref_and_range):
22590 Rename locals to avoid shadowing.
22591 (ASET_RANGE, GET_SUB_CHAR_TABLE): Remove unused macros.
22592
22593 * bidi.c (bidi_check_type): Now static, since it's not used elsewhere.
22594 (BIDI_BOB): Remove unused macro.
22595
22596 * cm.c (cmgoto): Mark variables that gcc -Wuninitialized does not
22597 deduce are never used uninitialized.
22598 * term.c (encode_terminal_code): Likewise.
22599
22600 * term.c (encode_terminal_code): Now static. Remove unused local.
22601
22602 * tparam.h: New file.
22603 * term.c, tparam.h: Include it.
22604 * deps.mk (term.o, tparam.o): Depend on tparam.h.
22605 * term.c (tputs, tgetent, tgetflag, tgetnum, tparam, tgetstr):
22606 Move these decls to tparam.h, and make them agree with what
22607 is actually in tparam.c. The previous trick of using incompatible
22608 decls in different modules does not conform to the C standard.
22609 All callers of tparam changed to use tparam's actual API.
22610 * tparam.c (tparam1, tparam, tgoto):
22611 Use const pointers where appropriate.
22612
22613 * cm.c (calccost, cmgoto): Use const pointers where appropriate.
22614 * cm.h (struct cm): Likewise.
22615 * dispextern.h (do_line_insertion_deletion_costs): Likewise.
22616 * scroll.c (ins_del_costs, do_line_insertion_deletion_costs): Likewise.
22617 * term.c (tty_ins_del_lines, calculate_costs, struct fkey_table):
22618 (term_get_fkeys_1, append_glyphless_glyph, produce_glyphless_glyph):
22619 (turn_on_face, init_tty): Likewise.
22620 * termchar.h (struct tty_display_info): Likewise.
22621
22622 * term.c (term_mouse_position): Rename local to avoid shadowing.
22623
22624 * alloc.c (mark_ttys): Move decl from here ...
22625 * lisp.h (mark_ttys): ... to here, so that it's checked against defn.
22626
22627 2011-03-11 Andreas Schwab <schwab@linux-m68k.org>
22628
22629 * .gdbinit (pwinx, xbuffer): Fix access to buffer name.
22630
22631 2011-03-09 Juanma Barranquero <lekktu@gmail.com>
22632
22633 * search.c (compile_pattern_1): Remove argument regp, unused since
22634 revid:rms@gnu.org-19941211082627-3x1g1wyqkjmwloig.
22635 (compile_pattern): Don't pass it.
22636
22637 2011-03-08 Jan Djärv <jan.h.d@swipnet.se>
22638
22639 * xterm.h (DEFAULT_GDK_DISPLAY): New define.
22640 (GDK_WINDOW_XID, gtk_widget_get_preferred_size): New defines
22641 for ! HAVE_GTK3.
22642 (GTK_WIDGET_TO_X_WIN): Use GDK_WINDOW_XID.
22643
22644 * xmenu.c (menu_position_func): Call gtk_widget_get_preferred_size.
22645
22646 * gtkutil.c: Include gtkx.h if HAVE_GTK3. If ! HAVE_GTK3, define
22647 gdk_window_get_screen, gdk_window_get_geometry,
22648 gdk_x11_window_lookup_for_display and GDK_KEY_g.
22649 (xg_set_screen): Use DEFAULT_GDK_DISPLAY.
22650 (xg_get_pixbuf_from_pixmap): New function.
22651 (xg_get_pixbuf_from_pix_and_mask): Change parameters from GdkPixmap
22652 to Pixmap, take frame as parameter, remove GdkColormap parameter.
22653 Call xg_get_pixbuf_from_pixmap instead of
22654 gdk_pixbuf_get_from_drawable.
22655 (xg_get_image_for_pixmap): Do not make GdkPixmaps, call
22656 xg_get_pixbuf_from_pix_and_mask with Pixmap parameters instead.
22657 (xg_check_special_colors): Use GtkStyleContext and its functions
22658 for HAVE_GTK3.
22659 (xg_prepare_tooltip, xg_hide_tooltip): Call gdk_window_get_screen.
22660 (xg_prepare_tooltip, create_dialog, menubar_map_cb)
22661 (xg_update_frame_menubar, xg_tool_bar_detach_callback)
22662 (xg_tool_bar_attach_callback, xg_update_tool_bar_sizes):
22663 Call gtk_widget_get_preferred_size.
22664 (xg_frame_resized): gdk_window_get_geometry only takes 5
22665 parameters.
22666 (xg_win_to_widget, xg_event_is_for_menubar):
22667 Call gdk_x11_window_lookup_for_display.
22668 (xg_set_widget_bg): New function.
22669 (delete_cb): New function.
22670 (xg_create_frame_widgets): Connect delete-event to delete_cb.
22671 Call xg_set_widget_bg. Only set background pixmap for ! HAVE_GTK3
22672 (xg_set_background_color): Call xg_set_widget_bg.
22673 (xg_set_frame_icon): Call xg_get_pixbuf_from_pix_and_mask.
22674 (xg_create_scroll_bar): vadj is a GtkAdjustment for HAVE_GTK3.
22675 Only call gtk_range_set_update_policy if ! HAVE_GTK3.
22676 (xg_make_tool_item): Only connect xg_tool_bar_item_expose_callback
22677 if ! HAVE_GTK3.
22678 (update_frame_tool_bar): Call gtk_widget_hide.
22679 (xg_initialize): Use GDK_KEY_g.
22680
22681 * xsmfns.c (gdk_set_sm_client_id): Define to gdk_set_sm_client_id
22682 if ! HAVE_GTK3
22683 (x_session_initialize): Call gdk_x11_set_sm_client_id.
22684
22685 * xterm.c (XFillRectangle): Use cairo routines for HAVE_GTK3.
22686 (x_term_init): Disable Xinput(2) with GDK_CORE_DEVICE_EVENTS.
22687 Load ~/emacs.d/gtkrc only for ! HAVE_GTK3.
22688
22689 2011-03-08 Juanma Barranquero <lekktu@gmail.com>
22690
22691 * w32xfns.c (select_palette): Check success of RealizePalette against
22692 GDI_ERROR, not zero.
22693
22694 See ChangeLog.11 for earlier changes.
22695
22696 ;; Local Variables:
22697 ;; coding: utf-8
22698 ;; End:
22699
22700 Copyright (C) 2011-2013 Free Software Foundation, Inc.
22701
22702 This file is part of GNU Emacs.
22703
22704 GNU Emacs is free software: you can redistribute it and/or modify
22705 it under the terms of the GNU General Public License as published by
22706 the Free Software Foundation, either version 3 of the License, or
22707 (at your option) any later version.
22708
22709 GNU Emacs is distributed in the hope that it will be useful,
22710 but WITHOUT ANY WARRANTY; without even the implied warranty of
22711 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22712 GNU General Public License for more details.
22713
22714 You should have received a copy of the GNU General Public License
22715 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.