Fix bug #13879 with raw-text encoding of msdos.c.
[bpt/emacs.git] / src / ChangeLog
1 2013-03-06 Eli Zaretskii <eliz@gnu.org>
2
3 * msdos.c: Change encoding to cp850. (Bug#13879)
4 (fr_keyboard, it_keyboard, dk_keyboard): Update keyboard layouts.
5
6 2013-03-06 Dmitry Antipov <dmantipov@yandex.ru>
7
8 Coding system support cleanup and minor refactoring.
9 * coding.h (enum coding_result_code): Remove
10 CODING_RESULT_INCONSISTENT_EOL and CODING_RESULT_INSUFFICIENT_MEM.
11 (toplevel): Remove unused CODING_MODE_INHIBIT_INCONSISTENT_EOL.
12 (CODING_MODE_LAST_BLOCK, CODING_MODE_SELECTIVE_DISPLAY)
13 (CODING_MODE_DIRECTION, CODING_MODE_FIXED_DESTINATION)
14 (CODING_MODE_SAFE_ENCODING): Rearrange bit values.
15 (decode_coding_region, encode_coding_region, decode_coding_string):
16 Remove unused compatibility macros.
17 * coding.c (Qinconsistent_eol, Qinsufficient_memory): Remove.
18 (record_conversion_result): Adjust user.
19 (syms_of_coding): Likewise.
20 (ALLOC_CONVERSION_WORK_AREA): Use SAFE_ALLOCA.
21 (decode_coding, encode_coding): Add USE_SAFE_ALLOCA and SAFE_FREE.
22 (decode_coding_object): Simplify since xrealloc never returns NULL.
23 Add eassert.
24
25 2013-03-06 Paul Eggert <eggert@cs.ucla.edu>
26
27 Fix a build failure on OpenBSD 4.x and MirBSD (Bug#13881).
28 * sysdep.c (list_system_processes)
29 [BSD_SYSTEM && !DARWIN_OS && !__FreeBSD__]:
30 Make it a stub in this case; otherwise the build might fail,
31 and this code hasn't been tested on such hosts anyway.
32 Problem reported by Nelson H. F. Beebe in
33 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00021.html>
34 and analyzed by Jérémie Courrèges-Anglas in
35 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00062.html>.
36
37 2013-03-06 Dmitry Antipov <dmantipov@yandex.ru>
38
39 * lisp.h (find_next_newline_no_quit): Rename to find_next_newline.
40 * xdisp.c (back_to_previous_line_start, forward_to_next_line_start)
41 (get_visually_first_element, move_it_vertically_backward): Ajust users.
42 * bidi.c (bidi_find_paragraph_start): Likewise.
43 * indent.c (vmotion): Likewise.
44
45 2013-03-05 Paul Eggert <eggert@cs.ucla.edu>
46
47 FILE's lock is now always .#FILE and may be a regular file (Bug#13807).
48 * filelock.c: Include <c-ctype.h>.
49 (MAX_LFINFO): New top-level constant.
50 (lock_info_type): Remove members pid, boot_time. Add members at,
51 dot, colon. Change user member to be the entire buffer, not a
52 pointer. This allows us to handle the case where a foreign
53 pid or boot time exceeds the local range. All uses changed.
54 (LINKS_MIGHT_NOT_WORK): New constant.
55 (FREE_LOCK_INFO): Remove, as the pieces no longer need freeing.
56 (defined_WINDOWSNT): Remove.
57 (MAKE_LOCK_NAME, file_in_lock_file_name):
58 Always use .#FILE (not .#-FILE) for the file lock,
59 even if it is a regular file.
60 (rename_lock_file): New function.
61 (create_lock_file): Use it.
62 (create_lock_file, read_lock_data):
63 Prefer a symbolic link for the lock file, falling back on a
64 regular file if symlinks don't work. Do not try to create
65 symlinks on MS-Windows, due to security hassles. Stick with
66 POSIXish functions (open, read, write, close, fchmod, readlink, symlink,
67 link, rename, unlink, mkstemp) when creating locks, as a GNUish
68 host may be using a Windowsish file system, and cannot use
69 MS-Windows-only system calls. Fall back on mktemp if mkstemp
70 doesn't work. Don't fail merely because of a symlink-contents
71 length limit in the current file system; fall back on regular
72 files. Increase the symlink contents length limit to 8 KiB, this
73 should be big enough for any real use and doesn't crunch the
74 stack.
75 (create_lock_file, lock_file_1, read_lock_data):
76 Simplify allocation of lock file buffers now that they fit in 8 KiB.
77 (lock_file_1): Return error number, not bool. All callers changed.
78 (ELOOP): New macro, if not already defined.
79 (read_lock_data): Return size of lock file contents, not Lisp object.
80 All callers changed. Handle a race condition if some other process
81 replaces a regular-file lock with a symlink lock or vice versa,
82 while we're trying to read the lock.
83 (current_lock_owner): Parse contents more carefully, to help avoid
84 confusing a regular-file lock with some other application's use
85 of the file. Check for lock file contents being too long, or
86 not parsing correctly.
87 (current_lock_owner, lock_file):
88 Allow foreign pid and boot times that exceed the local range.
89 (current_lock_owner, lock_if_free, lock_file):
90 Simplify allocation of lock file contents.
91 * w32.c (sys_rename_replace): New function, containing most of
92 the contents of the old sys_rename.
93 (sys_rename): Use it.
94 (fchmod): New dummy function.
95 * w32.h (sys_rename_replace, fchmod): New decls.
96
97 2013-03-05 Eli Zaretskii <eliz@gnu.org>
98
99 * bidi.c (bidi_resolve_explicit_1): Don't call CHAR_TO_BYTE or
100 bidi_count_bytes, as the callers now arrange for bidi_it->charpos
101 to be in sync with bidi_it->bytepos. Suggested by Dmitry Antipov
102 <dmantipov@yandex.ru>.
103
104 2013-03-05 Dmitry Antipov <dmantipov@yandex.ru>
105
106 * composite.c (get_composition_id, fill_gstring_header):
107 Use make_uninit_vector where appropriate.
108 * font.c (Ffont_get_glyphs, build_style_table): Likewise.
109 * xselect.c (clean_local_selection_data): Likewise.
110
111 2013-03-04 Paul Eggert <eggert@cs.ucla.edu>
112
113 Fix misuse of ImageMagick that caused core dump (Bug#13846).
114 * image.c (imagemagick_load_image): Calculate height and width
115 after flattening the image, not before.
116
117 2013-03-04 Dmitry Antipov <dmantipov@yandex.ru>
118
119 * font.c (Ffont_get_glyphs): Use convenient LGLYPH_NEW.
120 * ftfont.c (ftfont_shape_by_flt): Likewise.
121 * w32uniscribe.c (uniscribe_shape): Likewise.
122
123 2013-03-02 Paul Eggert <eggert@cs.ucla.edu>
124
125 The lock for FILE is now .#FILE or .#-FILE (Bug#13807).
126 The old approach, which fell back on DIR/.#FILE.0 through
127 DIR/.#FILE.9, had race conditions that could not be easily fixed.
128 If DIR/.#FILE is a non-symlink file, Emacs now does not create a
129 lock file for DIR/FILE; that is, DIR/FILE is no longer partly
130 protected by a lock if DIR/.#FILE is a non-symlink file ("partly"
131 because the locking mechanism was never reliable in that case).
132 This patch fixes this and other bugs discovered by a code
133 inspection that was prompted by
134 <http://lists.gnu.org/archive/html/emacs-devel/2013-02/msg00531.html>.
135 Also, this patch switches to .#-FILE (not .#FILE) on MS-Windows,
136 to avoid interoperability problems between the MS-Windows and
137 non-MS-Windows implementations. MS-Windows and non-MS-Windows
138 instances of Emacs now ignore each others' locks.
139 * filelock.c (defined_WINDOWSNT): New constant.
140 (MAKE_LOCK_NAME, fill_in_lock_file_name):
141 Don't create DIR/.#FILE.0 through DIR/.#FILE.9. Instead, create
142 DIR/.#FILE symlinks on non-MS-Windows hosts, and DIR/.#-FILE
143 regular files on MS-Windows hosts.
144 (MAKE_LOCK_NAME, unlock_file, Ffile_locked_p):
145 Use SAFE_ALLOCA to avoid problems with long file names.
146 (MAX_LFINFO): Now a local constant, not a global macro.
147 (IS_LOCK_FILE): Remove.
148 (lock_file_1): Don't inspect errno if symlink call succeeds;
149 that's not portable.
150 (lock_file): Document that this function can return if lock
151 creation fails.
152 (lock_file): Don't access freed storage.
153
154 2013-03-02 Andreas Schwab <schwab@linux-m68k.org>
155
156 * lisp.h (XPNTR) [!USE_LSB_TAG]: Remove extra paren. (Bug#13734)
157
158 2013-03-02 Paul Eggert <eggert@cs.ucla.edu>
159
160 * textprop.c: Use bool for booleans.
161 (validate_interval_range, Fadd_text_properties)
162 (Fremove_text_properties): Prefer bool to int when either works.
163
164 2013-03-02 Eli Zaretskii <eliz@gnu.org>
165
166 * textprop.c (Fadd_text_properties, Fremove_text_properties): If
167 the interval tree changes as a side effect of calling
168 modify_region, re-do processing starting from the call to
169 validate_interval_range. (Bug#13743)
170
171 2013-02-28 Eli Zaretskii <eliz@gnu.org>
172
173 * w32.c (sys_open): Don't reset the flags for FD in fd_info[].
174 (Bug#13546).
175
176 2013-02-27 Eli Zaretskii <eliz@gnu.org>
177
178 * filelock.c (create_lock_file) [WINDOWSNT]: Use _sopen with
179 _SH_DENYRW flag, instead of emacs_open, to deny any other process
180 access to the lock file until it is written and closed.
181 (Bug#13807)
182
183 2013-02-27 Paul Eggert <eggert@cs.ucla.edu>
184
185 * callint.c (Qcall_interactively):
186 * macros.c (Qexecute_kbd_macro):
187 Now static.
188
189 2013-02-26 Bastien Guerry <bzg@gnu.org>
190
191 * window.c (Frecenter): Tiny docstring enhancement.
192
193 2013-02-26 Paul Eggert <eggert@cs.ucla.edu>
194
195 Minor textprop integer cleanup.
196 * intervals.h, textprop.c (add_text_properties_from_list):
197 Return void, not int, since nobody uses the return value.
198 * textprop.c (validate_plist, add_properties, remove_properties)
199 (Fadd_text_properties):
200 Don't assume list length fits in int.
201 (interval_has_all_properties, interval_has_some_properties)
202 (interval_has_some_properties_list, add_properties, remove_properties)
203 (Fadd_text_properties, Fremove_text_properties)
204 (Fremove_list_of_text_properties, text_property_stickiness):
205 Use bool for booleans.
206 (Fadd_text_properties, Fremove_text_properties):
207 (Fremove_list_of_text_properties):
208 Reindent do-while as per GNU style.
209
210 2013-02-25 Eli Zaretskii <eliz@gnu.org>
211
212 Implement CLASH_DETECTION for MS-Windows.
213
214 * filelock.c [WINDOWSNT]: Include w32.h.
215 (MAKE_LOCK_NAME): Don't use 'lock', it clashes with MS runtime
216 function of that name. Up-case the macro arguments.
217 (IS_LOCK_FILE): New macro.
218 (fill_in_lock_file_name): Use IS_LOCK_FILE instead of S_ISLNK.
219 (create_lock_file): New function, with body extracted from
220 lock_file_1.
221 [WINDOWSNT]: Implement lock files by writing a regular file with
222 the lock information as its contents.
223 (read_lock_data): New function, on Posix platforms just calls
224 emacs_readlinkat.
225 [WINDOWSNT]: Read the lock info from the file.
226 (current_lock_owner): Call read_lock_data instead of calling
227 emacs_readlinkat directly.
228 (lock_file) [WINDOWSNT]: Run the file name through
229 dostounix_filename.
230
231 * w32proc.c (sys_kill): Support the case of SIG = 0, in which case
232 just check if the process by that PID exists.
233
234 * w32.c (sys_open): Don't reset the _O_CREAT flag if _O_EXCL is
235 also present, as doing so will fail to error out if the file
236 already exists.
237
238 * makefile.w32-in ($(BLD)/filelock.$(O)): Depend on src/w32.h.
239
240 * textprop.c (Fadd_text_properties, Fremove_text_properties)
241 (Fremove_list_of_text_properties): Skip all of the intervals in
242 the region between START and END that already have resp. don't
243 have the requested properties, not just the first one. Add
244 assertions that the loop afterwards always modifies the
245 properties. (Bug#13743)
246
247 2013-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
248
249 * callint.c (Fcall_interactively): Use the right lexical environment
250 for `interactive' specs (bug#13811).
251 * eval.c (Feval): Accept a lexical environment.
252
253 2013-02-25 Paul Eggert <eggert@cs.ucla.edu>
254
255 Simplify data_start configuration (Bug#13783).
256 This is a followon simplification to the fix for Bug#13650.
257 * Makefile.in (LD_FIRSTFLAG, LIB_GCC, CRT_DIR, LIB_STANDARD)
258 (START_FILES): Remove. All uses removed.
259 (otherobj): Remove $(VMLIMIT_OBJ), as it's now first.
260 (ALLOBJS): Move here from autodeps.mk, and with VMLIMITS_OBJ first.
261 (buildobj.h): Use it.
262 ($(ALLOBJS)): Depend on globals.h.
263 (temacs$(EXEEXT)): Use $(ALLOBJS).
264 * autodeps.mk (ALLOBJS): Move to Makefile.in.
265 * deps.mk (vm-limit.o):
266 * makefile.w32-in ($(BLD)/vm-limit.$(O)):
267 Do not depend on mem-limits.h.
268 * emacs.c (__do_global_ctors, __do_global_ctors_aux)
269 (__do_global_dtors, __CTOR_LIST__, __DTOR_LIST__)
270 [__GNUC__ && !ORDINARY_LINK]: Remove.
271 * mem-limits.h, pre-crt0.c: Remove.
272 * unexaix.c, unexcoff.c: Don't include mem-limits.h.
273 * unexcoff.c (etext): New decl.
274 (make_hdr): Use DATA_START instead of start_of_data.
275 * vm-limit.c: Move most of mem-limits.h's contents here.
276 (data_start): New decl. It's OK if this is approximate,
277 so simplify-away some unnecessary exactness.
278 (POINTER): Remove; all uses removed.
279 (data_space_start): Now char *, to avoid casts.
280 (exceeds_lisp_ptr): New function, replacing the old
281 EXCEEDS_LISP_PTR macro. All uses changed.
282 (check_memory_limits): Simplify and remove casts.
283 (start_of_data) [!CANNOT_DUMP || !SYSTEM_MALLOC]: Remove.
284 (memory_warnings): Use data_start instead of start_of_data.
285
286 2013-02-24 Andreas Schwab <schwab@linux-m68k.org>
287
288 * xdisp.c (set_message): Only check for debug-on-message if STRING
289 is a string. (Bug#13797)
290
291 2013-02-24 Paul Eggert <eggert@cs.ucla.edu>
292
293 Fix regression introduced by July 10 filelock.c patch.
294 * filelock.c (fill_in_lock_file_name): Fix crash caused by the
295 2012-07-10 patch to this file. Reported by Eli Zaretskii in
296 <http://lists.gnu.org/archive/html/emacs-devel/2013-02/msg00533.html>
297 and diagnosed by Andreas Schwab in
298 <http://lists.gnu.org/archive/html/emacs-devel/2013-02/msg00534.html>.
299
300 2013-02-22 Paul Eggert <eggert@cs.ucla.edu>
301
302 Assume C89 or better.
303 * ralloc.c (SIZE, POINTER, NIL):
304 * vm-limit.c (POINTER):
305 Remove, replacing all uses with C89 equivalents. These old
306 symbols were present only for porting to pre-C89 platforms.
307
308 2013-02-22 Claudio Bley <claudio.bley@gmail.com>
309
310 * w32.c (emacs_gnutls_pull): Don't call 'select', and don't loop.
311 This avoids warning messages reported as part of Bug#13546.
312
313 2013-02-21 Ken Brown <kbrown@cornell.edu>
314
315 * sheap.c (report_sheap_usage): Fix arguments of message1_no_log.
316
317 2013-02-20 Stefan Monnier <monnier@iro.umontreal.ca>
318
319 * sheap.c (report_sheap_usage): Prefer message1_nolog.
320
321 * keyboard.c (Qcommand_execute): New var.
322 (command_loop_1, read_char): Use it.
323 (Fcommand_execute): Remove, replace by an Elisp implementation.
324 (syms_of_keyboard): Adjust accordingly.
325
326 2013-02-19 Daniel Colascione <dancol@dancol.org>
327
328 * sheap.c (report_sheap_usage): Use message, not message1, so
329 that we don't try to create a buffer while we're in the middle
330 of dumping Emacs. Explain why.
331
332 2013-02-20 Dmitry Antipov <dmantipov@yandex.ru>
333
334 * search.c (find_newline): Return byte position in bytepos.
335 Adjust comment.
336 (find_next_newline_no_quit, find_before_next_newline):
337 Add bytepos argument.
338 * lisp.h (find_newline, find_next_newline_no_quit)
339 (find_before_next_newline): Adjust prototypes.
340 * bidi.c (bidi_find_paragraph_start):
341 * editfns.c (Fconstrain_to_field, Fline_end_position):
342 * indent.c (compute_motion, vmotion):
343 * xdisp.c (back_to_previous_line_start, forward_to_next_line_start):
344 (get_visually_first_element, move_it_vertically_backward):
345 Adjust users and avoid calls to CHAR_TO_BYTE where appropriate.
346
347 2013-02-19 Eli Zaretskii <eliz@gnu.org>
348
349 * w32proc.c (new_child): Avoid leaking handles if the subprocess
350 resources were not orderly released.
351
352 2013-02-17 Eli Zaretskii <eliz@gnu.org>
353
354 * xdisp.c (x_draw_vertical_border): For a window that is neither
355 the leftmost nor the rightmost, redraw both the left and the right
356 vertical borders. (Bug#13723)
357
358 2013-02-17 Stefan Monnier <monnier@iro.umontreal.ca>
359
360 * xml.c (init_libxml2_functions):
361 * sound.c (sound_warning):
362 * sheap.c (report_sheap_usage):
363 * process.c (wait_reading_process_output):
364 * msdos.c (XMenuActivate):
365 * macros.c (Fstart_kbd_macro, Fend_kbd_macro):
366 * keyboard.c (top_level_1):
367 * editfns.c (Fmessage, Fmessage_box):
368 * callint.c (Fcall_interactively):
369 * fns.c (Fyes_or_no_p): Prefer `message1' over `message'.
370
371 2013-02-17 Jan Djärv <jan.h.d@swipnet.se>
372
373 * xterm.c (syms_of_xterm): Move scroll-bar-adjust-thumb-portion ...
374 * frame.c (syms_of_frame): ... to here.
375
376 2013-02-16 Eli Zaretskii <eliz@gnu.org>
377
378 * w32.c (sys_chown): Remove unused function.
379
380 * w32term.c <input_signal_count>: Declare 'volatile'
381 unconditionally. (Bug#9066)
382
383 * w32.c (set_errno): Reset h_errno and don't set it to any other
384 value. Set errno instead.
385 (check_errno): Reset h_errno.
386 (sys_socket, socket_to_fd, sys_bind, sys_connect)
387 (sys_gethostname, sys_getservbyname, sys_getpeername)
388 (sys_shutdown, sys_setsockopt, sys_listen, sys_getsockname)
389 (sys_accept, sys_recvfrom, sys_sendto, fcntl, sys_read): Don't set
390 h_errno.
391 (sys_gethostbyname): Set h_errno only errors detected.
392
393 2013-02-15 Paul Eggert <eggert@cs.ucla.edu>
394
395 * process.c (h_errno) [!HAVE_H_ERRNO]: Remove unused decl.
396
397 2013-02-15 Eli Zaretskii <eliz@gnu.org>
398
399 * keyboard.c (read_char): Fix calculation of auto-save time out
400 when auto-save-timeout is less than 4. (Bug#13720)
401
402 * w32proc.c (new_child): Free up to 2 slots of dead processes at a
403 time. Improve diagnostics in DebPrint. (Bug#13546)
404
405 * w32.c (sys_socket, sys_bind, sys_connect, sys_gethostname)
406 (sys_gethostbyname, sys_getservbyname, sys_getpeername)
407 (sys_shutdown, sys_setsockopt, sys_listen, sys_getsockname)
408 (sys_accept, sys_recvfrom, sys_sendto, fcntl): In case of failure,
409 make sure errno is set to an appropriate value. (Bug#13546)
410 (socket_to_fd): Add assertion against indexing fd_info[] with a
411 value that is out of bounds.
412 (sys_accept): If fd is negative, do not set up the child_process
413 structure for reading.
414
415 2013-02-15 Dmitry Antipov <dmantipov@yandex.ru>
416
417 * composite.c (fill_gstring_header): Remove useless prototype.
418 Break long line.
419 * lisp.h (message_dolog, compile_pattern): Adjust prototype.
420 * print.c (PRINTDECLARE, print_object):
421 * search.c (compile_pattern, fast_looking_at, search_buffer):
422 (simple_search, boyer_moore, Freplace_match):
423 * xdisp.c (c_string_pos, number_of_chars, message_dolog):
424 (get_overlay_arrow_glyph_row, display_mode_element):
425 (decode_mode_spec_coding, message3):
426 * xfaces.c (face_at_string_position): Use bool for booleans.
427 Adjust comments.
428
429 2013-02-15 Paul Eggert <eggert@cs.ucla.edu>
430
431 Fix AIX port (Bug#13650).
432 * lisp.h (XPNTR) [!USE_LSB_TAG && DATA_SEG_BITS]:
433 Fix bug introduced in 2012-07-27 change. DATA_SEG_BITS, if set,
434 was #undeffed earlier, so it cannot be used as a macro here.
435 Use the constant and not the macro.
436
437 2013-02-15 Eli Zaretskii <eliz@gnu.org>
438
439 * w32proc.c (new_child): If no vacant slots are found in
440 child_procs[], make another pass looking for slots whose process
441 has exited or died. (Bug#13546)
442
443 * w32.c (sys_pipe): When failing due to file descriptors above
444 MAXDESC, set errno to EMFILE.
445 (_sys_read_ahead): Update cp->status when failing to read serial
446 communications input, so that the status doesn't stay at
447 STATUS_READ_IN_PROGRESS. (Bug#13546)
448
449 2013-02-14 Jan Djärv <jan.h.d@swipnet.se>
450
451 * gtkutil.c (tb_size_cb): New function.
452 (xg_create_tool_bar): Connect size-allocate to tb_size_cb (Bug#13512).
453
454 2013-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
455
456 * keyboard.c (active_maps): Fcurrent_active_maps expects a position, not
457 an event.
458
459 2013-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
460
461 * keyboard.c (syms_of_keyboard): Further tweaks of docstring.
462
463 2013-02-13 Dmitry Antipov <dmantipov@yandex.ru>
464
465 * font.c (font_range): Add pos_byte argument. Adjust comment
466 and break long line.
467 * font.h (font_range): Adjust prototype.
468 * composite.c (autocmp_chars): Pass byte position to font_range.
469 Break long line. Remove useless prototype and format comment.
470
471 2013-02-13 Glenn Morris <rgm@gnu.org>
472
473 * keyboard.c (input-decode-map, key-translation-map): Doc fixes.
474
475 2013-02-13 Paul Eggert <eggert@cs.ucla.edu>
476
477 Improve AIX port some more (Bug#13650).
478 With this, it should be as good as it was in 23.3, though it's
479 still pretty bad: the dumped emacs does not run. See Mark Fleishman in
480 http://lists.gnu.org/archive/html/help-gnu-emacs/2011-04/msg00287.html
481 * unexaix.c (start_of_text): Remove.
482 (_data, _text): Declare as char[], not int, as AIX manual suggests.
483 (bias, lnnoptr, text_scnptr, data_scnptr, load_scnptr)
484 (orig_load_scnptr, orig_data_scnptr):
485 Now off_t, not long, since they are file offsets.
486 (make_hdr): Use _data, not start_of_data ().
487 This is the key part of the fix.
488 (make_hdr, unrelocate_symbols): Use off_t for file offsets.
489 (unrelocate_symbols): Cast pointers to intptr_t, not to ulong.
490
491 * pre-crt0.c (data_start): Initialize to 1.
492 This ports to compilers that optimize the external declaration
493 'int x = 0;' as if it were 'int x;' to shrink the executable.
494
495 Improve AIX port (Bug#13650).
496 This doesn't fix the bug, but it makes progress: Emacs builds now.
497 * unexaix.c: Include inttypes.h, stdarg.h.
498 (report_error, report_error_1): Mark as _Noreturn.
499 (report_error): Don't report the wrong errno.
500 (report_error_1): Now varargs. All callers changed.
501 (make_hdr): Use uintptr_t, not unsigned, when converting pointers
502 to unsigned. Don't use ADDR_CORRECT, as it no longer exists.
503 (write_ptr): Use %p to print address rather than %lx and a cast
504 to unsigned long. Grow buffer a bit, to be safer.
505
506 2013-02-13 Eli Zaretskii <eliz@gnu.org>
507
508 * bidi.c (bidi_resolve_neutral): After finding the next
509 non-neutral character, accept NEUTRAL_ON type as well, because
510 directional control characters, such as LRE and RLE, have their
511 type converted to that by bidi_resolve_weak. This avoids aborts
512 when LRE/RLE follows a run of neutrals.
513 (bidi_move_to_visually_next): Assert that return value of
514 bidi_peek_at_next_level is non-negative. Negative values will
515 cause an infloop.
516
517 2013-02-13 Paul Eggert <eggert@cs.ucla.edu>
518
519 Minor getenv-related fixes.
520 * callproc.c (Fcall_process_region) [!DOS_NT]:
521 Avoid unnecessary duplicate call to getenv.
522 * callproc.c (init_callproc):
523 * dispnew.c (init_display):
524 * sysdep.c (sys_subshell):
525 Omit unnecessary cast of getenv or egetenv.
526
527 2013-02-13 Juanma Barranquero <lekktu@gmail.com>
528
529 * makefile.w32-in ($(BLD)/filelock.$(O), $(BLD)/sysdep.$(O)):
530 Update dependencies.
531
532 2013-02-12 Eli Zaretskii <eliz@gnu.org>
533
534 * xdisp.c (redisplay_internal): Don't set w->region_showing to the
535 marker's position.
536 (display_line): Set w->region_showing to the value of
537 it->region_beg_charpos, not to -1. This fixes redisplay
538 optimization when cursor is moved up after M->. (Bug#13623)
539 (Bug#13626)
540 (try_scrolling): Scroll text up more if point is too close to ZV
541 and inside the scroll margin. This makes sure point is moved
542 outside the scroll margin in these cases.
543
544 * window.h (struct window): region_showing can no longer be
545 negative.
546
547 2013-02-11 Paul Eggert <eggert@cs.ucla.edu>
548
549 Tune by using memchr and memrchr.
550 * doc.c (Fsnarf_documentation):
551 * fileio.c (Fsubstitute_in_file_name):
552 * search.c (find_newline, scan_newline):
553 * xdisp.c (pos_visible_p, display_count_lines):
554 Use memchr and memrchr rather than scanning byte-by-byte.
555 * search.c (find_newline): Rename from scan_buffer.
556 Omit first arg TARGET, as it's always '\n'. All callers changed.
557
558 Clean up read_key_sequence a tiny bit more.
559 * keyboard.c (read_char_x_menu_prompt) [HAVE_MENUS]:
560 (read_key_sequence): Remove unused locals.
561
562 2013-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
563
564 Clean up read_key_sequence a bit; reread active keymaps after first event.
565 * keyboard.c (read_char, read_char_x_menu_prompt)
566 (read_char_minibuf_menu_prompt):
567 Replace nmaps+maps with a single `map' arg.
568 (follow_key): Operate on a single map.
569 (active_maps): New function.
570 (test_undefined): Also return true for nil bindings.
571 (read_key_sequence): Use active_maps to replace the arrays of keymaps with
572 a single (composed) keymap. Remember `first_event' to choose the right
573 set of active keymaps. Recompute the set of keymaps after receiving
574 the first event. Remove GOBBLE_FIRST_EVENT.
575 (syms_of_keyboard): Remove inhibit_local_menu_bar_menus.
576 * keyboard.h (read_char): Update declaration.
577 * lread.c (read_filtered_event): Adjust call to read_char.
578
579 2013-02-11 Eli Zaretskii <eliz@gnu.org>
580
581 * xdisp.c (move_it_vertically_backward, move_it_by_lines):
582 Don't use the limitation on backwards movement when lines are truncated
583 in the window. (Bug#13675)
584
585 2013-02-11 Dmitry Antipov <dmantipov@yandex.ru>
586
587 * marker.c (set_marker_internal): If desired position is passed
588 as a marker, avoid call to buf_charpos_to_bytepos.
589 * window.c (Fset_window_point): Omit redundant type checking.
590 (Fset_window_start): Likewise. Format comment.
591 (window_scroll_pixel_based): Use set_marker_restricted_both
592 with character and byte positions obtained from an iterator.
593 (Fset_window_configuration): Use set_marker_restricted_both.
594 * xdisp.c (message_dolog): Likewise.
595
596 2013-02-10 Eli Zaretskii <eliz@gnu.org>
597
598 * xdisp.c (move_it_vertically_backward, move_it_by_lines):
599 When text lines are longer than window's screen lines, don't move back
600 too far. This speeds up some redisplay operations. (Bug#13675)
601
602 2013-02-10 Dmitry Antipov <dmantipov@yandex.ru>
603
604 * syntax.c (scan_sexps_forward): Fix byte position calculation
605 Bug#13664 (a.k.a Bug#13667) introduced with 2013-02-08 change.
606
607 2013-02-10 Paul Eggert <eggert@cs.ucla.edu>
608
609 * fileio.c (Fexpand_file_name): Omit confusing pointer comparison
610 that was not needed.
611
612 2013-02-09 Paul Eggert <eggert@cs.ucla.edu>
613
614 Minor hashing refactoring.
615 * fns.c (SXHASH_REDUCE): Move to lisp.h.
616 (sxhash_float): Return EMACS_UINT, for consistency with the other
617 hash functions.
618 * lisp.h (INTMASK): Now a macro, since SXHASH_REDUCE is now a
619 non-static inline function and therefore can't use static vars.
620 (SXHASH_REDUCE): Move here from fns.c, and make it inline.
621 * profiler.c (hashfn_profiler): Use SXHASH_REDUCE, to be consistent
622 with the other hash functions.
623
624 2013-02-09 Eli Zaretskii <eliz@gnu.org>
625
626 * callproc.c (Fcall_process_region) [WINDOWSNT]: Make sure the
627 XXXXXX part of the temporary file pattern is not downcased even
628 when w32-downcase-file-names is non-nil. (Bug#13661)
629
630 * xdisp.c (decode_mode_spec): Remove handling of %t.
631
632 * msdos.c (careadlinkatcwd): Remove.
633
634 2013-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
635
636 * lread.c (skip_dyn_bytes): New function (bug#12598).
637 (read1): Use it. Use getc instead of READCHAR to read bytes.
638 (load_each_byte): Remove. Update users.
639
640 2013-02-08 Dmitry Antipov <dmantipov@yandex.ru>
641
642 * search.c (scan_buffer): Calculate end byte position just once.
643 (scan_newline): Do not recalculate start_byte.
644 (search_command): Use eassert.
645 * syntax.c (struct lisp_parse_state): New member location_byte.
646 (scan_sexps_forward): Record from_byte and avoid redundant
647 character to byte position calculation ...
648 (Fparse_partial_sexp): ... here. Break too long line.
649
650 2013-02-08 Dmitry Antipov <dmantipov@yandex.ru>
651
652 * lisp.h (make_uninit_vector): New function.
653 * alloc.c (Fvector, Fmake_byte_code):
654 * ccl.c (Fregister_ccl_program):
655 * charset.c (Fdefine_charset_internal, define_charset_internal):
656 * coding.c (make_subsidiaries, Fdefine_coding_system_internal):
657 * composite.c (syms_of_composite):
658 * font.c (Fquery_font, Ffont_info, syms_of_font):
659 * fontset.c (FONT_DEF_NEW, Fset_fontset_font):
660 * ftfont.c (ftfont_shape_by_flt):
661 * indent.c (recompute_width_table):
662 * nsselect.m (clean_local_selection_data):
663 * syntax.c (init_syntax_once):
664 * w32unsubscribe.c (uniscribe_shape):
665 * window.c (Fcurrent_window_configuration):
666 * xfaces.c (Fx_family_fonts):
667 * xselect.c (selection_data_to_lisp_data): Use it.
668
669 2013-02-07 Dmitry Antipov <dmantipov@yandex.ru>
670
671 * coding.c (Fdefine_coding_system_internal): Use AREF where
672 argument is known to be a vector.
673 * fns.c (Flocale_info): Likewise for ASET.
674 * xselect.c (selection_data_to_lisp_data): Likewise for ASET.
675 * w32fns.c (w32_parse_hot_key): Likewise for ASIZE and AREF.
676
677 2013-02-05 Jan Djärv <jan.h.d@swipnet.se>
678
679 * nsmenu.m (update_frame_tool_bar): Check for negative tool bar
680 height.
681
682 * nsterm.h (HAVE_NATIVE_FS): Define if OSX => 10.7.
683 (EmacsView): Add fs_is_native, fsIsNative, isFullscreen and
684 updateCollectionBehaviour.
685
686 * nsterm.m (NEW_STYLE_FS): Remove.
687 (ns_last_use_native_fullscreen): New variable.
688 (x_make_frame_visible): Replace NEW_STYLE_FS with isFullscreen.
689 (x_set_window_size): Do not take title bar and tool bar into account
690 if isFullscreen returns YES.
691 (ns_fullscreen_hook): Replace NEW_STYLE_FS with isFullscreen.
692 (check_native_fs): New function.
693 (ns_select, ns_read_socket): Call check_native_fs if HAVE_NATIVE_FS.
694 (ns_term_init): Remove NEW_STYLE_FS.
695 (updateFrameSize:, windowWillResize:toSize:): Only adjust for title bar
696 and tool bar if isFullscreen returns NO.
697 (windowDidResize:): Replace NEW_STYLE_FS with fsIsNative.
698 (initFrameFromEmacs:): Initialize fs_is_native. Replace NEW_STYLE_FS
699 with HAVE_NATIVE_FS.
700 (window:willUseFullScreenPresentationOptions:): New method.
701 (windowDidEnterFullScreen:): Replace NEW_STYLE_FS with fsIsNative.
702 Hide toolbar if not enabled (Bug#13444).
703 (windowDidExitFullScreen:): Call updateCollectionBehaviour.
704 Restore tool bar if enabled, hide it otherwise (Bug#13444).
705 (fsIsNative, isFullscreen, updateCollectionBehaviour): New methods.
706 (toggleFullScreen:): If fs_is_native, call toggleFullScreen on
707 window. Do no set FRAME_EXTERNAL_TOOL_BAR (f) to 0.
708 Check FRAME_EXTERNAL_TOOL_BAR (f) before restoring
709 FRAME_TOOLBAR_HEIGHT (f). Call updateFrameSize when going non-fs.
710 (syms_of_nsterm): Add ns-use-native-fullscreen.
711
712 2013-02-04 Paul Eggert <eggert@cs.ucla.edu>
713
714 * fileio.c (Qchoose_write_coding_system): Now static.
715
716 2013-02-04 Eli Zaretskii <eliz@gnu.org>
717
718 * xdisp.c (window_buffer_changed): region_showing can be negative,
719 which still means region is being displayed.
720 (redisplay_internal): Resurrect code that forced redisplay of the
721 whole window when showing region and the mark has changed.
722 Record the new mark position to allow redisplay optimizations.
723 (display_line): If it->region_beg_charpos is non-zero, set the
724 window's region_showing member to -1. (Bug#13623) (Bug#13626)
725
726 * window.h (struct window) <region_showing>: Declare ptrdiff_t,
727 not bitfield of 1 bit.
728
729 2013-02-03 Daniel Colascione <dancol@dancol.org>
730
731 * emacs.c: Use execvp, not execv, when DAEMON_MUST_EXEC, so that
732 daemon mode works on cygw32 when Emacs is installed and not just
733 during development.
734
735 2013-02-02 Paul Eggert <eggert@cs.ucla.edu>
736
737 Avoid file time stamp bug on MS-Windows (Bug#13149).
738 * fileio.c (Fwrite_region): Don't use the heuristic on empty files,
739 as FAT32 doesn't update time stamps when truncating them.
740 Also, check that a file time stamp is not a multiple of 100 ns;
741 this should catch all instances of the problem on MS-Windows,
742 as its native file system resolution is 100 ns or worse, and
743 checking for a non-multiple of 100 ns should impose only a small
744 overhead on systems with ns resolution.
745
746 2013-02-02 Eli Zaretskii <eliz@gnu.org>
747
748 Avoid encoding file names on MS-Windows when they need to be run
749 through dostounix_filename.
750 * w32.c (normalize_filename): Accept an additional argument
751 MULTIBYTE; if non-zero, traverse the file name by bytes and don't
752 downcase it even if w32-downcase-file-names is non-nil.
753 (dostounix_filename): Accept an additional argument MULTIBYTE and
754 pass it to normalize_filename.
755 (emacs_root_dir): Adjust.
756
757 * msdos.h (dostounix_filename): Adjust prototype.
758
759 * w32.h (dostounix_filename): Adjust prototype.
760
761 * msdos.c (dostounix_filename): Accept an additional argument and
762 ignore it.
763 (init_environment): Adjust callers of dostounix_filename.
764
765 * fileio.c (Ffile_name_directory, file_name_as_directory)
766 (directory_file_name, Fexpand_file_name)
767 (Fsubstitute_in_file_name): [DOS_NT] Adjust call to
768 dostounix_filename.
769 [WINDOWSNT]: Downcase file names if w32-downcase-file-names is
770 non-nil.
771 (Fsubstitute_in_file_name): [DOS_NT] Don't downcase environment
772 variables, as egetenv is case-insensitive for DOS_NT.
773
774 * dired.c (file_name_completion): Don't call Fdirectory_file_name
775 with an encoded file name.
776
777 * w32proc.c (Fw32_short_file_name, Fw32_long_file_name):
778 Adjust calls to dostounix_filename.
779
780 * w32fns.c (Fx_file_dialog): Adjust call to dostounix_filename.
781
782 * unexw32.c (unexec): Adjust call to dostounix_filename.
783
784 * termcap.c (tgetent) [MSDOS]: Adjust call to dostounix_filename.
785
786 * emacs.c (decode_env_path) [DOS_NT]: Adjust call to
787 dostounix_filename.
788
789 * callproc.c (Fcall_process) [MSDOS]: Adjust call to
790 dostounix_filename.
791
792 * callproc.c (Fcall_process): Make sure program name in PATH and
793 new_argv[0] is encoded, if needed. Otherwise, un-encoded string
794 is passed to exec/spawnve, which fails unless the file-name
795 encoding is UTF-8.
796
797 * w32proc.c (sys_spawnve): Make sure escape_char is initialized,
798 even if w32-quote-process-args is nil.
799
800 2013-02-01 Paul Eggert <eggert@cs.ucla.edu>
801
802 Fix timestamp bug when write-region appends nothing (Bug#13149).
803 * fileio.c (Fwrite_region): When neither O_EXCL nor O_TRUNC is used,
804 the file's time stamp doesn't change if Emacs happens to write nothing
805 to the file, and on a buggy file system this could cause Emacs to
806 incorrectly infer that the file system doesn't have the bug.
807 Avoid this problem by inhibiting the inference in this case.
808
809 2013-02-01 Dmitry Antipov <dmantipov@yandex.ru>
810
811 * window.h (struct window): Convert base_line_number, base_line_pos
812 and column_number_displayed members from Lisp_Object to ptrdiff_t.
813 Convert region_showing member from Lisp_Object to bitfield.
814 Remove sequence_number member. Adjust comments.
815 * window.c (sequence_number): Remove.
816 (make_window): Initialize column_number_displayed.
817 * print.c (print_object): Follow the printed representation of
818 frames and print window pointer to distinguish between windows.
819 (adjust_window_count): Invalidate base_line_pos. Adjust comment.
820 * xdisp.c (wset_base_line_number, wset_base_line_pos)
821 (wset_column_number_displayed, wset_region_showing): Remove.
822 (window_buffer_changed, mode_line_update_needed, redisplay_internal)
823 (try_scrolling, try_cursor_movement, redisplay_window)
824 (try_window_reusing_current_matrix, try_window_id, display_line)
825 (display_mode_lines, decode_mode_spec): Adjust users.
826 * .gdbinit (pwinx): Do not print sequence_number.
827
828 2013-02-01 Paul Eggert <eggert@cs.ucla.edu>
829
830 Use fdopendir, fstatat and readlinkat, for efficiency (Bug#13539).
831 * conf_post.h (GNULIB_SUPPORT_ONLY_AT_FDCWD): Remove.
832 * dired.c: Include <fcntl.h>.
833 (open_directory): New function, which uses open and fdopendir
834 rather than opendir. DOS_NT platforms still use opendir, though.
835 (directory_files_internal, file_name_completion): Use it.
836 (file_attributes): New function, with most of the old Ffile_attributes.
837 (directory_files_internal, Ffile_attributes): Use it.
838 (file_attributes, file_name_completion_stat): First arg is now fd,
839 not dir name. All uses changed. Use fstatat rather than lstat +
840 stat.
841 (file_attributes): Use emacs_readlinkat rather than Ffile_symlink_p.
842 * fileio.c: Include <allocator.h>, <careadlinkat.h>.
843 (emacs_readlinkat): New function, with much of the old
844 Ffile_symlink_p, but with an fd argument for speed.
845 It uses readlinkat rather than careadlinkatcwd, so that it
846 need not assume the working directory.
847 (Ffile_symlink_p): Use it.
848 * filelock.c (current_lock_owner): Use emacs_readlinkat
849 rather than emacs_readlink.
850 * lisp.h (emacs_readlinkat): New decl.
851 (READLINK_BUFSIZE, emacs_readlink): Remove.
852 * sysdep.c: Do not include <allocator.h>, <careadlinkat.h>.
853 (emacs_norealloc_allocator, emacs_readlink): Remove.
854 This stuff is moved to fileio.c.
855 * w32.c (fstatat, readlinkat): New functions.
856 (careadlinkat): Don't check that fd == AT_FDCWD.
857 (careadlinkatcwd): Remove; no longer needed.
858
859 2013-01-31 Glenn Morris <rgm@gnu.org>
860
861 * fileio.c (choose_write_coding_system): Make it callable from Lisp.
862 (Fwrite_region): Update for new choose_write_coding_system args.
863 Move the last piece of choose_write_coding_system here. (Bug#13522)
864 (syms_of_fileio): Add choose-write-coding-system.
865
866 2013-01-30 Eli Zaretskii <eliz@gnu.org>
867
868 * w32.c (sys_open): Zero out the flags for the new file descriptor.
869 (sys_close): Zero out the flags for the file descriptor before
870 closing it. (Bug#13546)
871
872 * w32.c (parse_root, get_volume_info, readdir, read_unc_volume)
873 (logon_network_drive, stat_worker, symlink, chase_symlinks):
874 Use CharNextExA and CharPrevExA to iterate over file names encoded in
875 DBCS. (Bug#13553)
876
877 * w32.c (w32_get_long_filename, init_environment, readlink):
878 Support file names encoded in DBCS codepages.
879 (readlink): Use the current file-name-coding-system, not the ANSI
880 codepage, to decode and handle targets of symlinks.
881
882 2013-01-28 Eli Zaretskii <eliz@gnu.org>
883
884 * w32.c (opendir): Now accepts a 'const char *'.
885
886 2013-01-28 Dmitry Antipov <dmantipov@yandex.ru>
887
888 Remove obsolete redisplay code. See the discussion at
889 http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00576.html.
890 * dispnew.c (preemption_period, preemption_next_check): Remove.
891 (Vredisplay_preemption_period): Likewise.
892 (update_frame, update_single_window, update_window, update_frame_1):
893 Adjust users. Always assume that PERIODIC_PREEMPTION_CHECKING is not
894 used, following the 2012-06-22 change.
895
896 2013-01-25 Eli Zaretskii <eliz@gnu.org>
897
898 * w32notify.c (Fw32notify_add_watch): Doc fix. (Bug#13540)
899
900 2013-01-25 Dmitry Antipov <dmantipov@yandex.ru>
901
902 * font.c (num_fonts): Remove the leftover from old
903 debugging code. Adjust comment style here and there.
904 * insdel.c (insert_1): Remove.
905 * lisp.h (insert_1): Remove prototype.
906 * xdisp.c (message_dolog): Adjust users to call insert_1_both.
907
908 2013-01-25 Eli Zaretskii <eliz@gnu.org>
909
910 * w32.c (max_filename_mbslen): New function.
911 (normalize_filename, readdir): Use it to detect locales where ANSI
912 encoding of file names uses a double-byte character set (DBCS).
913 If a DBCS encoding is used, advance by characters using
914 CharNextExA, instead of incrementing a 'char *' pointer.
915 Use _mbslwr instead of _strlwr. (Bug#13515)
916
917 * w32heap.c (allocate_heap) [!_WIN64]: Decrease the initial
918 request of memory reservation to 1.7GB. (Bug#13065)
919
920 2013-01-25 Andreas Schwab <schwab@linux-m68k.org>
921
922 * coding.c (detect_coding_iso_2022): Move back mis-reordered code
923 at check_extra_latin label. (Bug#13505)
924
925 2013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
926
927 * nsfont.m (ns_escape_name, ns_unescape_name, ns_registry_to_script):
928 Avoid redundant calls to strlen.
929
930 2013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
931
932 Drop async_visible and async_iconified fields of struct frame.
933 This is possible because async input is gone; for details, see
934 http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00734.html.
935 * frame.h (struct frame): Remove async_visible and async_iconified
936 members, convert garbaged to unsigned bitfield. Adjust comments.
937 (FRAME_SAMPLE_VISIBILITY): Remove. Adjust all users.
938 (SET_FRAME_VISIBLE, SET_FRAME_ICONIFIED): New macros.
939 * frame.c, gtkutil.c, term.c, w32fns.c, window.c, xdisp.c:
940 Consistently use SET_FRAME_VISIBLE, SET_FRAME_ICONIFIED,
941 FRAME_VISIBLE_P and FRAME_ICONIFIED_P macros where appropriate.
942 * w32term.c: Ditto.
943 (w32_read_socket): Save iconified state to generate DEICONIFY_EVENT
944 properly. Likewise for obscured.
945 * xterm.c: Ditto.
946 (handle_one_xevent): Save visible state to generate ICONIFY_EVENT
947 properly.
948 * nsterm.m: Ditto.
949 (windowDidDeminiaturize): Generate DEICONIFY_EVENT.
950
951 2013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
952
953 * insdel.c (prepare_to_modify_buffer): Revert last change as suggested
954 in http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00555.html.
955
956 2013-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
957
958 * xdisp.c (message2, message2_nolog): Remove functions.
959 (message3, message3_nolog): Extract nbytes and multibyteness directly
960 from the string. Change all callers.
961 (message3_nolog): Don't set message_enable_multibyte since set_message
962 will reset it anyway.
963 (message1, message1_nolog): Use message3.
964 (vmessage): Use a stack allocated buffer rather than f->message_buf.
965 (with_echo_area_buffer): Remove last two arguments. Update all callers.
966 (set_message): Drop all but the second arg, which has to be a string.
967 (set_message_1): Simplify now that we know that a1 is NULL and the
968 second arg is a string.
969 * frame.h (struct frame): Remove `message_buf' field.
970 Use glyphs_initialized_p instead.
971 (FRAME_MESSAGE_BUF): Remove macro.
972 * w16select.c (Fw16_set_clipboard_data): Prefer message3 to message2.
973 * lisp.h (message2, message2_nolog): Remove declarations.
974 (message3, message3_nolog): Update declarations.
975 * keyboard.c (read_char_minibuf_menu_text)
976 (read_char_minibuf_menu_width): Remove vars.
977 (read_char_minibuf_menu_prompt): Rewrite the menu's construction so as
978 to correctly handle multibyte strings.
979 * frame.c (delete_frame): Don't free message_buf any more.
980 * editfns.c (message_text, message_length): Remove vars.
981 (Fmessage_box): Don't copy the Lisp string's bytes any longer.
982 * fileio.c (auto_save_error): Use message3 instead of message2.
983 * dispnew.c (adjust_frame_message_buffer): Remove function.
984
985 2013-01-23 Eli Zaretskii <eliz@gnu.org>
986
987 * w32term.c (w32fullscreen_hook): Account correctly for the screen
988 real estate used for the tool bar and the menu bar.
989
990 2013-01-23 Dmitry Antipov <dmantipov@yandex.ru>
991
992 * insdel.c (prepare_to_modify_buffer): Force redisplay if
993 hidden buffer is prepared to modification (Bug#13164).
994
995 2013-01-22 Dmitry Antipov <dmantipov@yandex.ru>
996
997 * window.h (struct window): Change window_end_valid member from
998 Lisp_Object to a bitfield. Adjust comments.
999 (wset_window_end_valid): Remove.
1000 * window.c (adjust_window_count): Clear window_end_valid.
1001 (Fwindow_end): Adjust user. Remove ancient #if 0 code.
1002 (Fwindow_line_height, set_window_buffer, Frecenter)
1003 (Fsplit_window_internal, Fdelete_other_windows_internal)
1004 (Fset_window_fringes, Fset_window_scroll_bars): Adjust users.
1005 * dispnew.c (adjust_glyph_matrix, clear_window_matrices): Likewise.
1006 * xdisp.c (check_window_end, reconsider_clip_changes)
1007 (redisplay_internal, mark_window_display_accurate_1, redisplay_window)
1008 (try_window, try_window_reusing_current_matrix, note_mouse_highlight)
1009 (find_first_unchanged_at_end_row, try_window_id): Likewise.
1010
1011 2013-01-22 Dmitry Antipov <dmantipov@yandex.ru>
1012
1013 * xdisp.c (mark_window_display_accurate): Simplify the loop
1014 assuming that the only one of vchild, hchild or buffer window
1015 slots is non-nil. Call mark_window_display_accurate_1 for
1016 the leaf windows only.
1017 (mark_window_display_accurate_1): Always assume leaf window.
1018 Adjust comment.
1019
1020 2013-01-22 Paul Eggert <eggert@cs.ucla.edu>
1021
1022 * emacs.c (Qkill_emacs_hook): Now static.
1023
1024 * fileio.c (Finsert_file_contents): Simplify.
1025 Remove unnecessary assignments and tests.
1026
1027 2013-01-21 Eli Zaretskii <eliz@gnu.org>
1028
1029 * w32.c (acl_set_file): Don't test for errors unless
1030 set_file_security returns FALSE. Avoids spurious errors when
1031 saving files.
1032
1033 2013-01-21 Dmitry Antipov <dmantipov@yandex.ru>
1034
1035 * fileio.c (Finsert_file_contents): Revert code introduced at
1036 2013-01-18 in favor of the simpler and generally better fix.
1037 Save stack space by removing 'buffer' and reusing 'read_buf'
1038 where appropriate.
1039
1040 2013-01-19 Paul Eggert <eggert@cs.ucla.edu>
1041
1042 * lisp.h (eabs): Define unconditionally (Bug#13419).
1043 The old "#if !defined (eabs)" was an unnecessary revenant of back
1044 when this macro was called "abs". Document 'eabs' better.
1045
1046 2013-01-19 Glenn Morris <rgm@gnu.org>
1047
1048 * fns.c (Frandom): Doc fix.
1049
1050 2013-01-19 Eli Zaretskii <eliz@gnu.org>
1051
1052 * editfns.c (get_pos_property): Use SAFE_ALLOCA_LISP, to avoid
1053 segfault when there are lots of overlays.
1054
1055 * buffer.c (sort_overlays): Use SAFE_NALLOCA, to avoid segfault
1056 when there are lots of overlays.
1057 See http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00421.html
1058 for the details and a way to reproduce.
1059
1060 2013-01-19 Paul Eggert <eggert@cs.ucla.edu>
1061
1062 * fileio.c: Use O_APPEND to append.
1063 This corresponds better to the natural interpretation of "append",
1064 and avoids the need to open the output file twice, or to invoke
1065 lseek when APPEND is neither nil nor a number.
1066 This relies on POSIX 1003.1-1988 or later, which is OK nowadays.
1067 (Fwrite_region): Simplify. Use O_APPEND instead of opening the
1068 file possibly twice, and lseeking to its end; this avoids the
1069 need to lseek on non-regular files. Do not use O_EXCL and O_TRUNC
1070 at the same time: the combination is never needed and apparently
1071 it doesn't work with DOS_NT.
1072
1073 Fix size bug on DOS_NT introduced by CIFS workaround (Bug#13149).
1074 * fileio.c (Fwrite_region): Use O_BINARY in checking code, too.
1075
1076 Allow floating-point file offsets.
1077 Problem reported by Vitalie Spinu in
1078 <http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00411.html>.
1079 * fileio.c (emacs_lseek): Remove.
1080 (file_offset): New function.
1081 (Finsert_file_contents, Fwrite_region): Use it.
1082
1083 2013-01-19 Chong Yidong <cyd@gnu.org>
1084
1085 * emacs.c (Fkill_emacs): Set waiting_for_input to 0 to avoid
1086 aborting on Fsignal (Bug#13289).
1087
1088 2013-01-19 Eli Zaretskii <eliz@gnu.org>
1089
1090 * w32.c (acl_set_file): Treat ERROR_ACCESS_DENIED from
1091 set_file_security as failure due to insufficient privileges.
1092 Reported by Fabrice Popineau <fabrice.popineau@supelec.fr>.
1093 (fstat): Return owner and group like 'stat' and 'lstat' do.
1094
1095 2013-01-19 Paul Eggert <eggert@cs.ucla.edu>
1096
1097 Work around bug in CIFS and vboxsf file systems (Bug#13149).
1098 The bug was observed on Ubuntu operating inside a virtual machine,
1099 editing files mounted via CIFS or vboxsf from the MS Windows 7 host.
1100 The workaround introduces a race condition on non-buggy hosts,
1101 but it's an unlikely race and anyway there's a nearly identical
1102 nearby race that can't be fixed.
1103 * fileio.c (valid_timestamp_file_system, timestamp_file_system):
1104 New static vars.
1105 (Fwrite_region): Test for file system time stamp bug.
1106 (init_fileio): New function.
1107 * lisp.h (init_fileio): Declare it.
1108 * emacs.c (main): Call it.
1109
1110 * fileio.c (Finsert_file_contents): Simplify new diagnostic
1111 and make it more consistent with other stat-failure diagnostics.
1112
1113 2013-01-18 Dmitry Antipov <dmantipov@yandex.ru>
1114
1115 Fix crash when inserting data from non-regular files.
1116 See http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00406.html
1117 for the error description produced by valgrind.
1118 * fileio.c (read_non_regular): Rename to read_contents.
1119 Free Lisp_Save_Value object used to pass parameters.
1120 (read_non_regular_quit): Rename to read_contents_quit.
1121 (Finsert_file_contents): Redesign internal file reading loop to adjust
1122 gap and end positions after each read and so help make_gap to work
1123 properly. Do not signal an I/O error too early and so do not leave
1124 not yet decoded characters in a buffer, which was the reason of
1125 redisplay crash. Use list2 to build return value. Adjust comments.
1126
1127 2013-01-17 Paul Eggert <eggert@cs.ucla.edu>
1128
1129 Close a race when statting and reading files (Bug#13149).
1130 * fileio.c (Finsert_file_contents): Use open+fstat, not stat+open.
1131 This avoids a race if the file is renamed between stat and open.
1132 This race is not the problem originally noted in Bug#13149;
1133 see <http://bugs.gnu.org/13149#73> and later messages in the thread.
1134
1135 2013-01-17 Dmitry Antipov <dmantipov@yandex.ru>
1136
1137 * lisp.h (toplevel): Add comment about using Lisp_Save_Value
1138 objects, related functions and macros.
1139 (make_save_value): Adjust prototype.
1140 (make_save_pointer): New prototype.
1141 (SAFE_NALLOCA): Fix indentation. Use make_save_pointer.
1142 (SAFE_ALLOCA_LISP): Adjust make_save_value usage.
1143 * alloc.c (format_save_value): Rename to make_save_value.
1144 (make_save_pointer): New function.
1145 (record_xmalloc): Use make_save_pointer.
1146 * dired.c, editfns.c, fileio.c, font.c, gtkutil.c, lread.c:
1147 * nsmenu.m, nsterm.m, xfns.c, xmenu.c, xselect.c, keymap.c:
1148 Change users of make_save_value to make_save_pointer.
1149 Likewise for format_save_value and make_save_value.
1150
1151 2013-01-17 Dmitry Antipov <dmantipov@yandex.ru>
1152
1153 * buffer.h (NARROWED, BUF_NARROWED): Drop unused macros.
1154 (DECODE_POSITION, BUFFER_CHECK_INDIRECTION): Fix indentation.
1155 * buffer.c (toplevel, syms_of_buffer): Drop old commented-out
1156 debugging stubs.
1157
1158 2013-01-15 Paul Eggert <eggert@cs.ucla.edu>
1159
1160 * alloc.c (free_save_value): Now static.
1161
1162 2013-01-15 Dmitry Antipov <dmantipov@yandex.ru>
1163
1164 * keymap.c (map_keymap_internal): Use format_save_value.
1165 (map_keymap_char_table_item): Adjust accordingly.
1166 * fileio.c (non_regular_fd, non_regular_inserted)
1167 (non_regular_nbytes): Remove.
1168 (Finsert_file_contents): Convert trytry to ptrdiff_t.
1169 Use format_save_value to pass parameters to read_non_regular.
1170 (read_non_regular): Use XSAVE_ macros to extract parameters.
1171 Adjust comment.
1172 * xmenu.c (xmenu_show) [!USE_X_TOOLKIT && !USE_GTK]: Use
1173 format_save_value.
1174 (pop_down_menu) [!USE_X_TOOLKIT && !USE_GTK]: Adjust user.
1175
1176 2013-01-15 Dmitry Antipov <dmantipov@yandex.ru>
1177
1178 * lisp.h (XSAVE_POINTER, XSAVE_INTEGER): Change to allow
1179 extraction from any Lisp_Save_Value slot. Add type checking.
1180 * alloc.c, dired.c, editfns.c, fileio.c, ftfont.c, gtkutil.c:
1181 * keymap.c, lread.c, nsterm.h, nsmenu.c, xfns.c, xmenu.c:
1182 * xselect.c: All users changed.
1183
1184 2013-01-15 Dmitry Antipov <dmantipov@yandex.ru>
1185
1186 Some convenient bits to deal with Lisp_Save_Values.
1187 * lisp.h (XSAVE_OBJECT): New macro to extract saved objects.
1188 (allocate_misc): Remove prototype.
1189 (format_save_value): New prototype.
1190 * alloc.c (allocate_misc): Revert back to static.
1191 (format_save_value): New function to build Lisp_Save_Value
1192 object with the specified internal structure.
1193 (make_save_value): Reimplement using format_save_value.
1194 * editfns.c (save_excursion_save): Use format_save_value.
1195 (save_excursion_restore): Use XSAVE_OBJECT.
1196
1197 2013-01-14 Paul Eggert <eggert@cs.ucla.edu>
1198
1199 Avoid needless casts with XSAVE_POINTER.
1200 * alloc.c (mark_object) [GC_MARK_STACK]:
1201 * dired.c (directory_files_internal_unwind):
1202 * fileio.c (do_auto_save_unwind):
1203 * gtkutil.c (pop_down_dialog):
1204 * keymap.c (map_keymap_char_table_item):
1205 * lread.c (load_unwind):
1206 * nsmenu.m (pop_down_menu):
1207 * print.c (print_object) [GC_MARK_STACK]:
1208 * xfns.c (clean_up_file_dialog):
1209 * xmenu.c (cleanup_widget_value_tree):
1210 Omit casts between XSAVE_POINTER and a pointer type.
1211
1212 2013-01-14 Dmitry Antipov <dmantipov@yandex.ru>
1213
1214 Fix compilation with GC_MARK_STACK == GC_USE_GCPROS_AS_BEFORE.
1215 * eval.c (eval_sub): Protect `form' from being GCed before its
1216 car and cdr becomes protected with the backtrace entry.
1217
1218 2013-01-14 Dmitry Antipov <dmantipov@yandex.ru>
1219
1220 Make Lisp_Save_Value more versatile storage for up to four objects.
1221 * lisp.h (toplevel): Enumeration to describe types of saved objects.
1222 (struct Lisp_Save_Value): New layout. Adjust comments.
1223 (XSAVE_POINTER): New macro.
1224 (XSAVE_INTEGER): Likewise.
1225 (allocate_misc): Add prototype.
1226 (free_misc): Likewise.
1227 * alloc.c (allocate_misc): Now global.
1228 (free_misc): Likewise. Adjust comment.
1229 (make_save_value): Use new Lisp_Save_Value layout. Adjust comment.
1230 (free_save_value): Likewise.
1231 (mark_object): Likewise.
1232 * editfns.c (save_excursion_save): Pack everything within
1233 Lisp_Save_Value and so avoid xmalloc.
1234 (save_excursion_restore): Adjust to match new layout. Use free_misc
1235 because we do not allocate extra memory any more. Add eassert.
1236 * print.c (print_object): New code to print Lisp_Save_Value. Do not
1237 rely on valid_lisp_object_p if !GC_MARK_STACK. Adjust comments.
1238 * dired.c, fileio.c, font.c, ftfont.c, gtkutil.c, keymap.c,
1239 * lread.c, nsmenu.m, nsterm.h, xfns.c, xmenu.c, xselect.c:
1240 Use XSAVE_POINTER and XSAVE_INTEGER where appropriate.
1241
1242 2013-01-13 Jan Djärv <jan.h.d@swipnet.se>
1243
1244 * nsfont.m (LCD_SMOOTHING_MARGIN): New define.
1245 (nsfont_draw): Remove disabling of LCD smoothing.
1246 (ns_glyph_metrics): Add LCD_SMOOTHING_MARGIN to bearings to fix
1247 Bug#11484 with LCD smoothing on.
1248
1249 2013-01-13 Paul Eggert <eggert@cs.ucla.edu>
1250
1251 Fix SIGDANGER handlers, for AIX (Bug#13408).
1252 * sysdep.c.c (handle_danger_signal, deliver_danger_signal) [SIGDANGER]:
1253 Move handlers here from emacs.c; they were out of place.
1254
1255 2013-01-11 Jan Djärv <jan.h.d@swipnet.se>
1256
1257 * xterm.c (syms_of_xterm): Adjust documentation for
1258 scroll-bar-adjust-thumb-portion.
1259
1260 2012-12-31 Adam Sjøgren <asjo@koldfront.dk> (tiny change)
1261
1262 * xterm.c (scroll-bar-adjust-thumb-portion): New variable to
1263 determine whether scroll bar thumb size should be adjusted or
1264 not. Use variable for MOTIF.
1265
1266 * gtkutil.c (scroll-bar-adjust-thumb-portion): Use variable for
1267 GTK.
1268
1269 2013-01-13 Jan Djärv <jan.h.d@swipnet.se>
1270
1271 * nsterm.m (keyDown:): Set processingCompose to NO if an emacs key
1272 event is generated.
1273 (doCommandBySelector:): Set processingCompose to NO.
1274
1275 * nsfont.m (ns_findfonts): Add block/unblock_input calls.
1276 Remove check for fkeys count > zero, block/unblock fixes the real bug.
1277 (nsfont_list_family): Add block/unblock_input calls.
1278 (nsfont_open): Move block_input earlier. Add unblock_input before early
1279 return.
1280 (nsfont_draw): Add block/unblock_input calls.
1281
1282 2013-01-12 Dmitry Antipov <dmantipov@yandex.ru>
1283
1284 * indent.c (Fvertical_motion): Remove now-incorrect GCPROs
1285 for old_charpos and old_bytepos.
1286
1287 2013-01-12 Paul Eggert <eggert@cs.ucla.edu>
1288
1289 Fix bug with set-time-zone-rule and LOCALTIME_CACHE (Bug#13415).
1290 * editfns.c (set_time_zone_rule) [LOCALTIME_CACHE]:
1291 Clear tzvalbuf_in_environ if this workaround is in effect.
1292 Problem and fix reported by Kazuhiro Ito.
1293
1294 2013-01-11 Aaron S. Hawley <Aaron.Hawley@vtinfo.com>
1295
1296 * insdel.c (Fcombine_after_change_execute, syms_of_insdel):
1297 Fix ambiguous doc string cross-reference(s).
1298
1299 * keyboard.c (Fcommand_execute, syms_of_keyboard): Fix ambiguous
1300 doc string cross-reference(s).
1301
1302 * window.c (Fwindow_point, syms_of_window): Fix ambiguous doc
1303 string cross-reference(s).
1304
1305 2013-01-11 Dmitry Antipov <dmantipov@yandex.ru>
1306
1307 Avoid unnecessary byte position calculation for the gap movement.
1308 Since all users of move_gap do CHAR_TO_BYTE for other purposes
1309 anyway, all of them should use move_gap_both instead.
1310 * lisp.h (move_gap): Remove prototype.
1311 * insdel.c (move_gap): Remove.
1312 (move_gap_both): Add eassert.
1313 * editfns.c (Ftranspose_regions): Tweak to use move_gap_both.
1314 * xml.c (parse_region): Likewise.
1315
1316 2013-01-11 Paul Eggert <eggert@cs.ucla.edu>
1317
1318 emacsclient -t should not suspend Emacs server (Bug#13387)
1319 * lisp.h, sysdep.c (block_tty_out_signal, unblock_tty_out_signal):
1320 New functions.
1321 * term.c (init_tty): Use them instead of rolling our own code.
1322 * sysdep.c (tcsetpgrp_without_stopping): Likewise. Here, this
1323 switches from 'signal' to 'pthread_sigmask', which is safer in
1324 multithreaded applications.
1325 * term.c (Fresume_tty): Don't bother dissociating if O_IGNORE_CTTY,
1326 which has already arranged for that.
1327 (dissociate_if_controlling_tty): If setsid fails, fall back on TIOCNOTTY.
1328 This is the main part of the bug fix.
1329
1330 2013-01-10 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> (tiny change)
1331
1332 * gtkutil.c (xg_initialize): Add ifdef HAVE_FREETYPE around
1333 x_last_font_name (Bug#13403).
1334
1335 2013-01-10 Dmitry Antipov <dmantipov@yandex.ru>
1336
1337 Omit buffer_slot_type_mismatch and use generic predicates to enforce
1338 the type of per-buffer values where appropriate.
1339 * lisp.h (struct Lisp_Buffer_Objfwd): Rename slottype member to
1340 predicate, which is how it's really used now. Adjust comment.
1341 * buffer.h (buffer_slot_type_mismatch): Remove prototype.
1342 * buffer.c (buffer_slot_type_mismatch): Remove.
1343 (DEFVAR_PER_BUFFER, defvar_per_buffer): Rename type argument to
1344 predicate. Adjust comment.
1345 (syms_of_buffer): Use Qsymbolp for major-mode. Use Qintegerp for
1346 fill-column, left-margin, tab-width, buffer-saved-size,
1347 left-margin-width, right-margin-width, left-fringe-width,
1348 right-fringe-width, scroll-bar-width and buffer-display-count.
1349 Use Qstringp for default-directory, buffer-file-name,
1350 buffer-file-truename and buffer-auto-save-file-name. Use Qfloatp for
1351 scroll-up-aggressively and scroll-down-aggressively. Use Qnumberp for
1352 line-spacing.
1353 * data.c (store_symval_forwarding): Adjust to call the predicate.
1354
1355 2013-01-09 Juanma Barranquero <lekktu@gmail.com>
1356
1357 * w32.c (get_name_and_id, acl_set_file):
1358 * w32term.c (w32fullscreen_hook): Remove unused local variables.
1359
1360 2013-01-09 Dmitry Antipov <dmantipov@yandex.ru>
1361
1362 * lisp.h (make_gap_1): New prototype.
1363 * buffer.h (GAP_BYTES_DFL, GAP_BYTES_MIN): New macros for the special
1364 gap size values.
1365 * editfns.c (Fbuffer_size): Rename from Fbufsize to fit the common
1366 naming convention.
1367 (syms_of_editfns): Adjust defsubr. Drop commented-out obsolete code.
1368 * insdel.c (make_gap_larger): Use GAP_BYTES_DFL. Adjust comment.
1369 (make_gap_smaller): Use GAP_BYTES_MIN. Adjust comment.
1370 (make_gap_1): New function to adjust the gap of any buffer.
1371 * coding.c (coding_alloc_by_making_gap): Use it.
1372 * buffer.c (compact_buffer): Likewise. Use BUF_Z_BYTE, BUF_GAP_SIZE,
1373 GAP_BYTES_DFL and GAP_BYTES_MIN. Adjust comment.
1374
1375 2013-01-08 Juri Linkov <juri@jurta.org>
1376
1377 * xfaces.c (tty_supports_face_attributes_p): Return 0 for the case
1378 of (supports :underline (:style wave)). (Bug#13000)
1379
1380 2013-01-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
1381
1382 * undo.c (Fprimitive_undo): Move to simple.el.
1383 (syms_of_undo): Remove declarations for Sprimitive_undo.
1384
1385 2013-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
1386
1387 * keyboard.c (echo_add_key): Rename from echo_add_char.
1388
1389 2013-01-06 Chong Yidong <cyd@gnu.org>
1390
1391 * keyboard.c (echo_add_char): New function, factored out from
1392 echo_char. Don't add a space if the previous echo string was
1393 empty (Bug#13255).
1394 (echo_char): Use it.
1395 (read_key_sequence): When echoing mock input, ensure that the
1396 trailing dash is properly added.
1397
1398 2013-01-05 Eli Zaretskii <eliz@gnu.org>
1399
1400 * xdisp.c (dump_glyph): Align glyph data better. Use "pD" instead
1401 of a non-portable "t" to print ptrdiff_t values. Allow up to 9
1402 digits for buffer positions, before misalignment starts.
1403 Display "0" for integer "object" field.
1404 (dump_glyph_row): Adapt the header line to changes in dump_glyph.
1405 Display the newline glyph more unambiguously.
1406
1407 2013-01-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1408
1409 * nsterm.m (ns_draw_underwave):
1410 * w32term.c (w32_draw_underwave):
1411 * xterm.c (x_draw_underwave): Make underwave look more triangular
1412 and also degrade gracefully for small fonts. (Bug#13000)
1413
1414 * nsterm.m (ns_draw_text_decoration):
1415 * w32term.c (x_draw_glyph_string):
1416 * xterm.c (x_draw_glyph_string): Don't use previous underline
1417 thickness and position if previous underline type is underwave.
1418
1419 2013-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
1420
1421 * fileio.c (Ffile_acl): Undocument return format.
1422
1423 2013-01-02 Glenn Morris <rgm@gnu.org>
1424
1425 * keymap.c (Fkey_description): Doc fix. (Bug#13323)
1426
1427 2013-01-02 Paul Eggert <eggert@cs.ucla.edu>
1428
1429 Simplify via eabs.
1430 * dired.c (file_name_completion):
1431 * doc.c (get_doc_string):
1432 * floatfns.c (round2):
1433 * font.c (font_score, font_delete_unmatched):
1434 * fringe.c (compute_fringe_widths):
1435 * lread.c (read_list):
1436 * minibuf.c (Ftry_completion):
1437 * term.c (tty_ins_del_lines):
1438 * xterm.c (x_draw_image_foreground, x_draw_image_foreground_1):
1439 Use eabs (x) rather than open-coding it as (x < 0 ? -x : x).
1440
1441 2012-12-31 Eli Zaretskii <eliz@gnu.org>
1442
1443 * w32.c (unsetenv): Set up the string passed to _putenv
1444 correctly.
1445 See http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00863.html
1446 for the bug this caused.
1447
1448 2012-12-30 Paul Eggert <eggert@cs.ucla.edu>
1449
1450 * coding.c (Qmac): Now static.
1451
1452 2012-12-30 Jan Djärv <jan.h.d@swipnet.se>
1453
1454 * gtkutil.c (TOOLBAR_TOP_WIDGET): New macro.
1455 (xg_pack_tool_bar): Use TOOLBAR_TOP_WIDGET, condition out use of
1456 handlebox_widget. Set toolbar_in_hbox to false/true, set
1457 toolbar_is_packed to true.
1458 (xg_update_tool_bar_sizes): Use widget returned by TOOLBAR_TOP_WIDGET.
1459 (update_frame_tool_bar): Check toolbar_is_packed for packing.
1460 Show all on TOOLBAR_TOP_WIDGET.
1461 (free_frame_tool_bar): Check toolbar_is_packed. Use widget returned
1462 by TOOLBAR_TOP_WIDGET.
1463 (xg_change_toolbar_position): Use widget returned by TOOLBAR_TOP_WIDGET.
1464 Check toolbar_is_packed.
1465 (xg_have_tear_offs, tearoff_remove, tearoff_activate): Condition on
1466 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
1467 (xg_have_tear_offs): When ! HAVE_GTK_TEAROFF_MENU_ITEM_NEW, return
1468 false.
1469 (create_menus): Create tearoff only if HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
1470 (xg_update_menubar): Update title only if
1471 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
1472 (xg_update_submenu): Skip tearoff only if
1473 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
1474 (xg_initialize): Initialize xg_detached_menus only if
1475 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
1476
1477 * xterm.h (struct x_output): Surround handlebox_widget with
1478 #ifdef HAVE_GTK_HANDLE_BOX_NEW. toolbar_is_packed is new,
1479 toolbar_in_hbox is bool.
1480
1481 2012-12-30 Andreas Schwab <schwab@linux-m68k.org>
1482
1483 * src/Makefile.in (TEMACS_LDFLAGS2): Remove.
1484 (LIBS_GNUSTEP): Define.
1485 (LIBES): Add $(LIBS_GNUSTEP).
1486 (temacs$(EXEEXT)): Use $(LDFLAGS) instead of $(TEMACS_LDFLAGS2).
1487
1488 2012-12-30 Eli Zaretskii <eliz@gnu.org>
1489
1490 * xdisp.c (set_cursor_from_row): Don't confuse a truncation or
1491 continuation glyph on a TTY with an indication of an empty line.
1492 (Bug#13277)
1493
1494 2012-12-29 Eli Zaretskii <eliz@gnu.org>
1495
1496 * fileio.c (Fset_file_selinux_context, Fset_file_acl): Return t if
1497 file's SELinux context or ACLs successfully set, nil otherwise.
1498 (Bug#13298)
1499 (Fcopy_file) [WINDOWSNT]: Improve diagnostics when CopyFile fails.
1500
1501 * w32proc.c (reader_thread): Avoid passing NULL handles to
1502 SetEvent and WaitForSingleObject.
1503
1504 2012-12-28 Paul Eggert <eggert@cs.ucla.edu>
1505
1506 Port EXTERNALLY_VISIBLE to Clang 3.2.
1507 * conf_post.h (__has_attribute): New macro.
1508 (EXTERNALLY_VISIBLE): Use it. This ports to Clang 3.2.
1509
1510 2012-12-27 Glenn Morris <rgm@gnu.org>
1511
1512 * cygw32.c (Fcygwin_convert_file_name_to_windows)
1513 (Fcygwin_convert_file_name_from_windows): Doc fixes.
1514
1515 2012-12-27 Eli Zaretskii <eliz@gnu.org>
1516
1517 * fileio.c (file_name_as_directory, directory_file_name):
1518 Accept an additional argument MULTIBYTE to indicate whether the input C
1519 came from a multibyte or a unibyte Lisp string; all callers
1520 adjusted. Don't assume the input string is always multibyte.
1521 (Bug#13262)
1522 (Ffile_name_directory) [DOS_NT]: Handle unibyte strings correctly:
1523 don't ENCODE_FILE them, and return a unibyte string if the input
1524 was unibyte.
1525 (Fexpand_file_name): Don't mix unibyte with multibyte strings, and
1526 don't assume the input strings will always be multibyte. If the
1527 input strings are multibyte, decode strings obtained from C
1528 library functions.
1529
1530 2012-12-26 Dmitry Antipov <dmantipov@yandex.ru>
1531
1532 * lisp.h (toplevel): Add two notices to the comment about
1533 defining a new Lisp data type.
1534 * print.c (print_object): If Lisp_Save_Value object's pointer
1535 is the address of a memory area containing Lisp_Objects, try
1536 to print them.
1537 * alloc.c (valid_lisp_object_p): Adjust comment.
1538
1539 2012-12-26 Dmitry Antipov <dmantipov@yandex.ru>
1540
1541 * keyboard.c (record_asynch_buffer_change): Initialize an event
1542 only if it's really needed.
1543 * frame.h (enum output_method): Remove output_mac member since
1544 it's a leftover from the deleted code.
1545 * frame.c (Fframep): Adjust user here ...
1546 * terminal.c (Fterminal_live_p): ... and here.
1547 * coding.c (Qmac): Now here because it's only used to denote
1548 end-of-line encoding type.
1549 (syms_of_coding): DEFSYM it.
1550 * frame.h (Qmac): Remove duplicated declaration.
1551
1552 2012-12-26 Paul Eggert <eggert@cs.ucla.edu>
1553
1554 * window.c (select_window_1): Now static, since it's used only here.
1555
1556 2012-12-25 Eli Zaretskii <eliz@gnu.org>
1557
1558 * window.c (window_body_cols): Subtract display margins from the
1559 window body width on TTYs as well. See
1560 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-12/msg00317.html
1561 for the original report.
1562
1563 2012-12-25 Dmitry Antipov <dmantipov@yandex.ru>
1564
1565 * xdisp.c (redisplay_window): Remove inner local variable
1566 because the outer shadowed one has the same meaning.
1567 * xterm.h (struct x_output): Remove toolbar_detached member since it's
1568 set but never used.
1569 * gtkutil.c (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
1570 (xg_create_tool_bar): Adjust users.
1571
1572 2012-12-24 Dmitry Antipov <dmantipov@yandex.ru>
1573
1574 * buffer.h (BUF_COMPACT): New macro to follow the common style.
1575 * buffer.c (Fget_buffer_create): Use it to set compact field of
1576 struct buffer_text to avoid accessing an uninitialized value
1577 when compact_buffer is called for the first time.
1578 (compact_buffer): Use convenient BUF_COMPACT and BUF_MODIFF.
1579 (Fset_buffer_modified_p): Use buffer_window_count to check
1580 whether the buffer is displayed in some window.
1581 * xdisp.c (message_dolog): Likewise.
1582
1583 2012-12-23 Eli Zaretskii <eliz@gnu.org>
1584
1585 * w32.c (acl_set_file): If setting the file security descriptor
1586 fails, and the new DACL is identical to the existing one, silently
1587 return success. This fixes problems for users backing up their
1588 own files without having the necessary privileges for setting
1589 security descriptors.
1590
1591 * w32proc.c (reader_thread): Do not index fd_info[] with negative
1592 values.
1593 (reader_thread): Exit when cp->status becomes STATUS_READ_ERROR
1594 after WaitForSingleObject returns normally. This expedites reader
1595 thread shutdown when delete_child triggers it.
1596 (reap_subprocess): More accurate commentary for why we call
1597 delete_child only when cp->fd is negative.
1598
1599 * w32.c (sys_close): Do not call delete_child on a subprocess
1600 whose handle is not yet closed. Instead, set its file descriptor
1601 to a negative value, so that reap_subprocess will call
1602 delete_child on that subprocess when its SIGCHLD arrives.
1603 This avoids closing handles used for communications between sys_select
1604 and reader_thread, which doesn't give sys_select a chance to
1605 notice that the process exited and invoke the SIGCHLD handler for
1606 it.
1607
1608 2012-12-23 Jan Djärv <jan.h.d@swipnet.se>
1609
1610 * nsfns.m (Fns_do_applescript): Run event loop until script has
1611 been executed (Bug#12969).
1612 (ns_run_ascript): Chech as_script for nil, set to nil after
1613 executing script.
1614
1615 2012-12-22 Martin Rudalics <rudalics@gmx.at>
1616
1617 * window.c (Fselect_window): Reword doc-string (Bug#13248).
1618
1619 2012-12-22 Eli Zaretskii <eliz@gnu.org>
1620
1621 * w32term.c (w32fullscreen_hook): New function.
1622 (w32_create_terminal): Plug it into the terminal's fullscreen_hook.
1623
1624 2012-12-21 Eli Zaretskii <eliz@gnu.org>
1625
1626 * fileio.c (Finsert_file_contents): Doc fix.
1627
1628 * w32proc.c (new_child, delete_child, find_child_pid): For a
1629 subprocess, consider its slot being in use as long as its process
1630 handle (procinfo.hProcess) is not NULL. This avoids reusing the
1631 slot when a new process is started immediately after killing
1632 another one, without waiting enough time for the first process to
1633 be reaped and resources allocated for it be orderly freed.
1634 (Bug#13086)
1635 Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
1636
1637 2012-12-21 Chong Yidong <cyd@gnu.org>
1638
1639 * buffer.c (Fset_buffer_major_mode): Doc fix (Bug#13231).
1640
1641 * fns.c (Fcompare_strings): Doc fix (Bug#13081).
1642
1643 2012-12-21 Eli Zaretskii <eliz@gnu.org>
1644
1645 * w32.c (get_name_and_id): Always pass NULL as the first argument
1646 of lookup_account_sid. Avoids crashes with UNC file names that
1647 refer to DFS domains, not to specific machine names. (Bug#12621)
1648 Remove now unused argument FNAME; all callers changed.
1649 (get_file_owner_and_group): Remove now unused argument FNAME; all
1650 callers changed.
1651
1652 2012-12-21 Chong Yidong <cyd@gnu.org>
1653
1654 * editfns.c (Finsert_char): Since read-char-by-name now signals an
1655 error for invalid chars, don't check for a nil return value.
1656
1657 2012-12-20 Dmitry Antipov <dmantipov@yandex.ru>
1658
1659 Avoid calls to CHAR_TO_BYTE if byte position is known.
1660 * editfns.c (make_buffer_string_both): Use move_gap_both.
1661 (Fbuffer_string): Use make_buffer_string_both.
1662 * marker.c (buf_charpos_to_bytepos): Convert to eassert.
1663 Adjust comment.
1664 (buf_bytepos_to_charpos): Likewise.
1665 (charpos_to_bytepos): Remove.
1666 * fileio.c (Finsert_file_contents): Use move_gap_both.
1667 * search.c (Freplace_match): Likewise.
1668 * process.c (process_send_region): Likewise. Use convenient
1669 names for byte positions.
1670 * lisp.h (charpos_to_bytepos): Remove prototype.
1671 * indent.c (scan_for_column): Use CHAR_TO_BYTE.
1672 * insdel.c (move_gap): Likewise.
1673
1674 2012-12-20 Paul Eggert <eggert@cs.ucla.edu>
1675
1676 * xdisp.c (redisplay_internal): Remove now-unused local.
1677
1678 2012-12-20 Stefan Monnier <monnier@iro.umontreal.ca>
1679
1680 * xdisp.c (select_frame_for_redisplay, ensure_selected_frame): Remove.
1681 (redisplay_internal): Don't bother selecting the frame to get the
1682 proper value of frame-local variables (bug#13225).
1683
1684 2012-12-20 Dmitry Antipov <dmantipov@yandex.ru>
1685
1686 * textprop.c (set_text_properties_1): Do not allow NULL interval.
1687 Rename 4th argument since it may be buffer or string. Adjust comment.
1688 * intervals.c (graft_intervals_info_buffer): Find an interval here.
1689
1690 2012-12-19 Dmitry Antipov <dmantipov@yandex.ru>
1691
1692 * coding.c (Fdetect_coding_region): Do not check start and end with
1693 CHECK_NUMBER_COERCE_MARKER since validate_region does that itself.
1694 (code_convert_region): Likewise.
1695
1696 2012-12-18 Eli Zaretskii <eliz@gnu.org>
1697
1698 * w32.c (acl_get_file, acl_set_file): Run the file name through
1699 map_w32_filename, and resolve any symlinks in the file name, like
1700 Posix platforms do.
1701 (acl_set_file): Call revert_to_self, if any privileges were
1702 enabled.
1703
1704 2012-12-17 Juanma Barranquero <lekktu@gmail.com>
1705
1706 * makefile.w32-in ($(BLD)/editfns.$(O), $(BLD)/fileio.$(O))
1707 ($(BLD)/w32.$(O)): Update dependencies.
1708
1709 2012-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
1710
1711 * xdisp.c (select_frame_for_redisplay): Use select_window_1 to
1712 propagate redisplay's scrolling (if any) to the right window.
1713 (redisplay_internal): Use ensure_selected_frame.
1714 (display_mode_lines): Complete last fix.
1715 * window.c (select_window_1): New func, extracted from select_window.
1716 (select_window): Use it.
1717 * window.h (select_window_1): Declare.
1718
1719 2012-12-17 Eli Zaretskii <eliz@gnu.org>
1720
1721 Emulate Posix ACL APIs on MS-Windows.
1722 * w32.c: Include sddl.h and sys/acl.h.
1723 (SDDL_REVISION_1): Define if not already defined.
1724 (g_b_init_get_security_descriptor_dacl)
1725 (g_b_init_convert_sd_to_sddl, g_b_init_convert_sddl_to_sd)
1726 (g_b_init_is_valid_security_descriptor)
1727 (g_b_init_set_file_security): New static flags.
1728 (globals_of_w32): Initialize them to zero.
1729 (SetFileSecurity_Name): New string constant.
1730 (SetFileSecurity_Proc, GetSecurityDescriptorDacl_Proc)
1731 (ConvertStringSecurityDescriptorToSecurityDescriptor_Proc)
1732 (ConvertSecurityDescriptorToStringSecurityDescriptor_Proc)
1733 (IsValidSecurityDescriptor_Proc): New typedefs.
1734 (get_file_security, get_security_descriptor_owner)
1735 (get_security_descriptor_group): Set errno to ENOTSUP.
1736 (set_file_security, get_security_descriptor_dacl)
1737 (is_valid_security_descriptor, convert_sd_to_sddl)
1738 (convert_sddl_to_sd, acl_valid, acl_to_text, acl_from_text)
1739 (acl_free, acl_get_file, acl_set_file): New functions.
1740
1741 * fileio.c (Fcopy_file) [WINDOWSNT]: Support copying ACLs.
1742
1743 2012-12-17 Paul Eggert <eggert@cs.ucla.edu>
1744
1745 Don't reraise SIGCHLD, as that can now lose (Bug#13192).
1746 With the 2012-12-03 fix for Bug#12980 in place, an old workaround
1747 for some of that bug's symptoms can now cause Emacs to abort.
1748 Remove the workaround.
1749 * process.c (wait_reading_process_output): Don't reraise SIGCHLD.
1750 The bug that caused SIGCHLD to get lost has been fixed, and the
1751 workaround for it can now cause Emacs to abort.
1752
1753 2012-12-16 Paul Eggert <eggert@cs.ucla.edu>
1754
1755 * sysdep.c (emacs_abort): Bump backtrace size to 40.
1756 Companion to the 2012-09-30 patch. Suggested by Eli Zaretskii in
1757 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00796.html>.
1758
1759 2012-12-16 Romain Francoise <romain@orebokech.com>
1760
1761 * fileio.c (Ffile_acl, Fset_file_acl): New functions.
1762 (Fcopy_file): Change last arg to `preserve_extended_attributes'
1763 and copy ACL entries of file in addition to SELinux context if set.
1764 (syms_of_fileio): Add `file-acl' and `set-file-acl'.
1765
1766 * Makefile.in (LIBACL_LIBS): New macro.
1767 (LIBES): Use it.
1768
1769 2012-12-15 Paul Eggert <eggert@cs.ucla.edu>
1770
1771 * fileio.c (internal_delete_file): Use bool for boolean.
1772
1773 2012-12-15 Eli Zaretskii <eliz@gnu.org>
1774
1775 Fix bug #13079 on MS-Windows with temp files not being deleted.
1776 * w32.h (_child_process): New members input_file and
1777 pending_deletion.
1778 (register_child): First argument is now pid_t.
1779 (record_infile, record_pending_deletion): New prototypes.
1780
1781 * w32proc.c (new_child): Initialize input_file and
1782 pending_deletion members of the child.
1783 (delete_child): Delete the child's temporary input file, if any,
1784 that is pending deletion.
1785 (register_child): First argument is now pid_t.
1786 (record_infile, record_pending_deletion): New functions.
1787 (reap_subprocess): Fix a typo in DebPrint string.
1788 (sys_spawnve, sys_kill): Use pid_t for PID arguments.
1789
1790 * fileio.c (internal_delete_file): Return an int again: non-zero
1791 if delete-file succeeds, zero otherwise.
1792
1793 * lisp.h (internal_delete_file): Adjust prototype.
1794
1795 * callproc.c (Fcall_process): Don't overwrite infile with result
1796 of DECODE_FILE.
1797 [WINDOWSNT] If BUFFER is an integer, i.e. we are launching an
1798 asynchronous subprocess, record the name of the input file name,
1799 if any.
1800 (delete_temp_file) [WINDOWSNT]: If internal_delete_file fails to
1801 delete the file, record it as pending deletion when the subprocess
1802 exits.
1803
1804 2012-12-14 Eli Zaretskii <eliz@gnu.org>
1805
1806 * editfns.c [HAVE_PWD_H]: Include grp.h.
1807
1808 * makefile.w32-in ($(BLD)/editfns.$(O)): Add $(NT_INC)/grp.h.
1809
1810 2012-12-14 Paul Eggert <eggert@cs.ucla.edu>
1811
1812 Fix permissions bugs with setgid directories etc. (Bug#13125)
1813 * dired.c (Ffile_attributes): Return t as the 9th attribute,
1814 to mark it as a placeholder. The old value was often wrong.
1815 The only user of this attribute has been changed to use
1816 file-ownership-preserved-p instead, with its new group arg.
1817 * editfns.c (Fgroup_gid, Fgroup_real_gid): New functions.
1818
1819 2012-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
1820
1821 * xdisp.c (select_frame_for_redisplay, display_mode_lines):
1822 Keep selected_window and selected_frame in sync.
1823
1824 2012-12-14 Eli Zaretskii <eliz@gnu.org>
1825
1826 * w32.c (stat_worker): If w32_stat_get_owner_group is zero, do not
1827 try to get accurate owner and group information from NT file
1828 security APIs. This is to make most callers of 'stat' and
1829 'lstat', which don't need that information, much faster.
1830
1831 * dired.c (Ffile_attributes) [WINDOWSNT]:
1832 Set w32_stat_get_owner_group to a non-zero value, to request accurate
1833 owner and group information from 'lstat'.
1834
1835 2012-12-13 Paul Eggert <eggert@cs.ucla.edu>
1836
1837 * fileio.c (Finsert_file_contents): Don't put tail into head area,
1838 as that confuses set-auto-coding, so insist on the head-read
1839 returning the full 1024 bytes. Let lseek compute the tail offset;
1840 less work for us. Do not ignore I/O errors when reading the tail.
1841
1842 * xdisp.c: Minor style fixes.
1843 (init_iterator): Hoist assignment out of if-expression.
1844 (markpos_of_region): Callers now test for sign, not for -1.
1845
1846 2012-12-13 Dmitry Antipov <dmantipov@yandex.ru>
1847
1848 Minor redisplay optimization when the region length is zero.
1849 * xdisp.c (markpos_of_region): New function.
1850 (init_iterator): Do not highlight the region of zero length.
1851 (redisplay_window): Check whether the region is of non-zero length.
1852 (try_cursor_movement): Allow if the region length is zero.
1853 (try_window_reusing_current_matrix, try_window_id): Likewise.
1854
1855 2012-12-13 Eli Zaretskii <eliz@gnu.org>
1856
1857 * search.c (search_buffer): Check the inverse translations of each
1858 character in pattern when the buffer being searched is unibyte.
1859 (Bug#13084)
1860
1861 2012-12-13 Paul Eggert <eggert@cs.ucla.edu>
1862
1863 * fileio.c (Fvisited_file_modtime): Return (-1 ...) for nonexistent
1864 files, fixing a regression from 24.2.
1865 (Fverify_visited_file_modtime): Don't read uninitialized st.st_size.
1866
1867 2012-12-13 Paul Eggert <eggert@cs.ucla.edu>
1868
1869 * fileio.c (Fcopy_file): Make fstat failure as serious as open failure.
1870 fstat shouldn't fail, and if it does fail copy-file should not proceed.
1871 Remove unnecessary S_ISLNK test, as (contra the comments) this
1872 function can't copy symlinks. Improve quality of error message
1873 when attempting to copy files that are neither regular files nor
1874 directories.
1875
1876 2012-12-12 Dmitry Antipov <dmantipov@yandex.ru>
1877
1878 * dispnew.c (set_window_cursor_after_update): Use clip_to_bounds.
1879 * gtkutil.c (xg_set_toolkit_scroll_bar_thumb):
1880 * window.c (Frecenter):
1881 * xdisp.c (resize_mini_window, hscroll_window_tree, draw_glyphs):
1882 * xterm.c (x_set_toolkit_scroll_bar_thumb): Likewise.
1883
1884 2012-12-12 Daniel Colascione <dancol@dancol.org>
1885
1886 * unexcw.c (fixup_executable): Use posix_fallocate to ensure that
1887 the dumped Emacs is not a sparse file, greatly improving Cygwin
1888 "make bootstrap" performance.
1889
1890 2012-12-11 Michael Albinus <michael.albinus@gmx.de>
1891
1892 * inotify.c (inotify_callback): Generate an Emacs event for every
1893 incoming inotify event.
1894
1895 2012-12-11 Eli Zaretskii <eliz@gnu.org>
1896
1897 * xdisp.c (handle_face_prop): Fix logic of computing
1898 it->start_of_box_run_p.
1899 (append_space_for_newline): If the glyph row is R2L, reset the
1900 iterator's end_of_box_run_p flag before prepending the space glyph.
1901 (extend_face_to_end_of_line): If the glyph row is R2L, reset the
1902 iterator's start_of_box_run_p flag before prepending the stretch.
1903 (append_glyph, produce_image_glyph, append_composite_glyph)
1904 (append_stretch_glyph, append_glyphless_glyph): Reverse the
1905 left_box_line_p and right_box_line_p flags of the glyph for R2L
1906 glyph rows. (Bug#13011)
1907
1908 2012-12-11 Dmitry Antipov <dmantipov@yandex.ru>
1909
1910 * buffer.c (Fset_buffer_multibyte): Do not force redisplay
1911 if changed buffer is not shown in a window.
1912 * insdel.c (prepare_to_modify_buffer): Likewise.
1913 * window.c (replace_buffer_in_windows_safely): Do nothing
1914 if buffer is not shown in a window.
1915 (Fforce_window_update): Likewise if string or buffer argument
1916 is passed.
1917
1918 2012-12-11 Eli Zaretskii <eliz@gnu.org>
1919
1920 * inotify.c (Finotify_add_watch): Rename decoded_file_name to
1921 encoded_file_name, which is what it is.
1922
1923 2012-12-11 Dmitry Antipov <dmantipov@yandex.ru>
1924
1925 Consistently use marker_position and marker_byte_position.
1926 * fringe.c (Ffringe_bitmaps_at_pos):
1927 * indent.c (Fvertical_motion):
1928 * insdel.c (prepare_to_modify_buffer):
1929 * keyboard.c (make_lispy_position):
1930 * window.c (Fwindow_end, Fpos_visible_in_window_p, unshow_buffer)
1931 (window_scroll_pixel_based, displayed_window_lines)
1932 (Fset_window_configuration):
1933 * xdisp.c (message_dolog, with_echo_area_buffer_unwind_data)
1934 (mark_window_display_accurate_1, redisplay_window, decode_mode_spec):
1935 Replace direct access to marker fields with calls
1936 to marker_position and/or marker_byte_position.
1937
1938 2012-12-11 Juanma Barranquero <lekktu@gmail.com>
1939
1940 * makefile.w32-in (SIG2STR_H): New macro.
1941 (SYSWAIT_H, $(BLD)/emacs.$(O), $(BLD)/process.$(O))
1942 ($(BLD)/w32notify.$(O)): Update dependencies.
1943
1944 2012-12-10 Daniel Colascione <dancol@dancol.org>
1945
1946 * w32term.c, keyboard.c: Fix build break in cygw32 by omitting
1947 Windows file notification functionality unless WINDOWSNT.
1948
1949 * w32gui.h (hprevinst, lpCmdLine, nCmdShow): Remove unused
1950 declarations.
1951
1952 * w32fns.c (cache_system_info): Initialize the global hinst
1953 variable here so various initialization calls DTRT.
1954
1955 * unexw32.c (hprevinst, lpCmdLine, nCmdShow): Remove unused variables.
1956 (hinst): Remove unneeded extern declaration.
1957 (_start): Remove initialization of above variables; remove
1958 initialization of hinst, as cache_system_info now does that.
1959
1960 * emacs.c (main): Call cache_system_info early in startup; we
1961 previously weren't calling it in Cygwin builds.
1962
1963 * Makefile.in (ntsource, WINDRES, W32_RES, W#@_RES_LINK):
1964 Teach the autoconf build system how to compile a Windows resource file
1965 and link it to Emacs.
1966
1967 2012-12-10 Dmitry Antipov <dmantipov@yandex.ru>
1968
1969 Per-buffer window counters.
1970 * buffer.h (struct buffer): New member window_count.
1971 (buffer_window_count): New function.
1972 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
1973 Initialize window_count.
1974 (Fkill_buffer): Verify window_count for the buffer being killed.
1975 (modify_overlay): Do not force redisplay if buffer is not shown
1976 in any window.
1977 (init_buffer_once): Initialize window_count for buffer_defaults
1978 and buffer_local_symbols.
1979 * window.h (buffer_shared): Remove declaration.
1980 (wset_buffer): Convert from inline ...
1981 * window.c (wset_buffer): ... to an ordinary function.
1982 (adjust_window_count): New function.
1983 (make_parent_window): Use it.
1984 * xdisp.c (buffer_shared): Remove.
1985 (redisplay_internal, redisplay_window): Adjust users.
1986 (buffer_shared_and_changed): Use per-buffer window counter.
1987
1988 2012-12-10 Eli Zaretskii <eliz@gnu.org>
1989
1990 Support for filesystem notifications on MS-Windows.
1991 * w32proc.c (sys_select): If drain_message_queue returns non-zero,
1992 and this is a TTY frame, signal the caller that keyboard input is
1993 available.
1994
1995 * w32xfns.c (drain_message_queue): Now returns an int: an
1996 indication whether any WM_EMACS_FILENOTIFY messages were found in
1997 the queue.
1998
1999 * w32inevt.c (handle_file_notifications): New function.
2000 (w32_console_read_socket): Call it to process file notifications.
2001
2002 * w32console.c (initialize_w32_display): Record the main thread ID
2003 in dwMainThreadId.
2004
2005 * deps.mk (inotify.o): New dependency list.
2006
2007 * Makefile.in (SOME_MACHINE_OBJECTS): Add w32notify.o.
2008
2009 * w32term.h (WM_EMACS_FILENOTIFY): New custom message.
2010 (WM_EMACS_END): Bump value by 1.
2011 (notification_buffer_in_use, file_notifications)
2012 (notifications_size, notifications_desc): Declare.
2013 (w32_get_watch_object, lispy_file_action, globals_of_w32notify):
2014 Add prototypes.
2015
2016 * w32term.c (lispy_file_action, queue_notifications): New functions.
2017 (syms_of_w32term) <Qadded, Qremoved, Qmodified, Qrenamed_from>
2018 <Qrenamed_to>: New symbols.
2019 (w32_read_socket): Handle the WM_EMACS_FILENOTIFY message.
2020
2021 * w32notify.c: New file, implements file event notifications for
2022 MS-Windows.
2023
2024 * w32fns.c (w32_wnd_proc): Handle the WM_EMACS_FILENOTIFY message
2025 by posting it to the w32_read_socket queue.
2026
2027 * termhooks.h (enum event_kind) [HAVE_NTGUI]: Support FILE_NOTIFY_EVENT.
2028
2029 * makefile.w32-in (OBJ2): Add $(BLD)/w32notify.$(O).
2030 (GLOBAL_SOURCES): Add w32notify.c
2031 ($(BLD)/w32notify.$(O)): New set of dependencies.
2032
2033 * lisp.h (syms_of_w32notify) [WINDOWSNT]: Add prototype.
2034
2035 * keyboard.c (kbd_buffer_get_event) [WINDOWSNT]:
2036 Handle FILE_NOTIFY_EVENT.
2037 (syms_of_keyboard) [HAVE_NTGUI] <Qfile_notify>: New symbol.
2038 (keys_of_keyboard) [WINDOWSNT]: Bind file-notify to
2039 w32notify-handle-event by default.
2040
2041 * emacs.c (main) [WINDOWSNT]: Call globals_of_w32notify and
2042 syms_of_w32notify.
2043
2044 2012-12-10 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2045
2046 Support for filesystem notifications on GNU/Linux via inotify.
2047 * termhooks.h (enum event_kind) [HAVE_INOTIFY]: Add FILE_NOTIFY_EVENT.
2048
2049 * lisp.h (syms_of_inotify) [HAVE_INOTIFY]: Add prototype.
2050
2051 * keyboard.c (Qfile_inotify) [HAVE_INOTIFY]: New variable.
2052 (syms_of_keyboard): DEFSYM it.
2053 (kbd_buffer_get_event) [HAVE_INOTIFY]: Generate FILE_NOTIFY_EVENT.
2054 (make_lispy_event): Support FILE_NOTIFY_EVENT by generating
2055 Qfile_inotify events.
2056 (keys_of_keyboard) [HAVE_INOTIFY]: Bind file-inotify events in
2057 special-event-map to inotify-handle-event.
2058
2059 * emacs.c (main) [HAVE_INOTIFY]: Call syms_of_inotify.
2060
2061 * Makefile.in (base_obj): Add inotify.o.
2062
2063 * inotify.c: New file.
2064
2065 2012-12-10 Jan Djärv <jan.h.d@swipnet.se>
2066
2067 * nsterm.m (fd_handler:): FD_ZERO fds (Bug#13103).
2068
2069 2012-12-10 Fabrice Popineau <fabrice.popineau@gmail.com>
2070
2071 * w32fns.c (cache_system_info): Cast sysinfo_cache.dwPageSize to
2072 DWORD_PTR, for compatibility with 64-bit builds.
2073
2074 * w32.c (_PROCESS_MEMORY_COUNTERS_EX):
2075 (GetProcessWorkingSetSize_Proc, get_process_working_set_size)
2076 (system_process_attributes): Use SIZE_T rather than DWORD, for
2077 compatibility with 64-bit builds.
2078
2079 2012-12-10 Christopher Schmidt <christopher@ch.ristopher.com>
2080
2081 * lread.c (Vload_source_file_function): Doc fix (Bug#11647).
2082
2083 2012-12-10 Eli Zaretskii <eliz@gnu.org>
2084
2085 * indent.c (Fvertical_motion): If a display string will be
2086 displayed on the left or the right margin, don't consider it as a
2087 factor in cursor positioning. (Bug#13108)
2088
2089 2012-12-10 Martin Rudalics <rudalics@gmx.at>
2090
2091 * editfns.c (Fcompare_buffer_substrings): Reword doc-string.
2092
2093 2012-12-10 Paul Eggert <eggert@cs.ucla.edu>
2094
2095 * fileio.c (Fsubstitute_in_file_name): Use ptrdiff_t, not int,
2096 for string length.
2097
2098 2012-12-08 Eli Zaretskii <eliz@gnu.org>
2099
2100 * w32.c (unsetenv): Return 0 if the input string is too long.
2101
2102 2012-12-08 Paul Eggert <eggert@cs.ucla.edu>
2103
2104 Use putenv+unsetenv instead of modifying environ directly (Bug#13070).
2105 * alloc.c (xputenv): New function.
2106 * dbusbind.c (Fdbus_init_bus):
2107 * emacs.c (main):
2108 * xterm.c (x_term_init):
2109 Use xputenv instead of setenv or putenv, to detect memory exhaustion.
2110 * editfns.c (initial_tz): Move static var decl up.
2111 (tzvalbuf_in_environ): New static var.
2112 (init_editfns): Initialize these two static vars.
2113 (Fencode_time): Don't assume arbitrary limit on EMACS_INT width.
2114 Save old TZ value on stack, if it's small.
2115 (Fencode_time, set_time_zone_rule): Don't modify 'environ' directly;
2116 instead, use xputenv+unsetenv to set and restore TZ.
2117 (environbuf): Remove static var. All uses removed.
2118 (Fset_time_zone_rule): Do not save TZ and environ;
2119 no longer needed here.
2120 (set_time_zone_rule_tz1, set_time_zone_rule_tz2) [LOCALTIME_CACHE]:
2121 Move to inside set_time_zone_rule; they don't need file scope any more.
2122 (set_time_zone_rule): Maintain the TZ=value string separately.
2123 (syms_of_editfns): Don't initialize initial_tz;
2124 init_editfns now does it.
2125 * emacs.c (dump_tz) [HAVE_TZSET]: Now const.
2126 * lisp.h (xputenv): New decl.
2127
2128 2012-12-08 Fabrice Popineau <fabrice.popineau@gmail.com>
2129
2130 * w32fns.c (emacs_abort): Don't do arithmetics on void pointers.
2131
2132 2012-12-08 Eli Zaretskii <eliz@gnu.org>
2133
2134 * w32.c (unsetenv, sys_putenv): New functions.
2135
2136 2012-12-08 Chong Yidong <cyd@gnu.org>
2137
2138 * editfns.c (Finsert_char): Make the error message more
2139 informative (Bug#12992).
2140
2141 2012-12-08 Paul Eggert <eggert@cs.ucla.edu>
2142
2143 Simplify get_lim_data.
2144 * vm-limit.c (get_lim_data): Combine RLIMIT_AS and RLIMIT_DATA methods.
2145 Remove USG and vlimit methods; no longer used these days.
2146 Add #error catchall just in case.
2147
2148 Assume POSIX 1003.1-1988 or later for signal.h (Bug#13026).
2149 Exceptions: do not assume SIGCONT, SIGSTOP, SIGTSTP, SIGTTIN,
2150 SIGTTOU, SIGUSR1, SIGUSR2, as Microsoft platforms lack these.
2151 * process.c [subprocesses]: Include <c-ctype.h>, <sig2str.h>.
2152 (deleted_pid_list, Fdelete_process, create_process)
2153 (record_child_status_change, handle_child_signal, deliver_child_signal)
2154 (init_process_emacs, syms_of_process):
2155 Assume SIGCHLD is defined.
2156 (parse_signal): Remove. All uses removed.
2157 (abbr_to_signal): New static function.
2158 (Fsignal_process): Use it to convert signal names to ints.
2159 * sysdep.c (sys_suspend) [!DOS_NT]: Use kill (0, ...) rather than
2160 kill (getpgrp (), ...).
2161 (emacs_sigaction_init): Assume SIGCHLD is defined.
2162 (init_signals): Assume SIGALRM, SIGCHLD, SIGHUP, SIGKILL,
2163 SIGPIPE, and SIGQUIT are defined. Do not worry about SIGCLD any more.
2164 * syssignal.h (EMACS_KILLPG): Remove.
2165 All uses replaced by 'kill' with a negative pid.
2166 (SIGCHLD): Remove definition, as we now assume SIGCHLD.
2167 * w32proc.c (sys_kill): Support negative pids compatibly with POSIX.
2168
2169 2012-12-07 Paul Eggert <eggert@cs.ucla.edu>
2170
2171 * sysdep.c (get_child_status): Abort on internal error (Bug#13086).
2172 This will cause a production Emacs to dump core instead of
2173 infinite-looping.
2174
2175 2012-12-07 Dmitry Antipov <dmantipov@yandex.ru>
2176
2177 * frame.c (make_frame): Do not set window's buffer to t.
2178 * window.c (Fsplit_window_internal): Likewise. Previously it was
2179 used to indicate that the window is being set up. Now we use
2180 set_window_buffer for all new windows, so the condition in ...
2181 (Fset_window_buffer): ... is always true and can be removed.
2182
2183 2012-12-07 Dmitry Antipov <dmantipov@yandex.ru>
2184
2185 Convenient macro to check whether the buffer is hidden.
2186 * buffer.h (BUFFER_HIDDEN_P): New macro.
2187 * frame.c (make_frame): Use it. Adjust comment.
2188 * buffer.c (candidate_buffer): New function.
2189 (Fother_buffer, other_buffer_safely): Use it.
2190
2191 2012-12-06 Eli Zaretskii <eliz@gnu.org>
2192
2193 * w32proc.c (waitpid): Avoid busy-waiting when called with WNOHANG
2194 if the child process is still running. Instead, exit the wait
2195 loop and return zero. (Bug#13086)
2196
2197 2012-12-06 Dmitry Antipov <dmantipov@yandex.ru>
2198
2199 * frame.h (x_char_width, x_char_height): Remove prototypes.
2200 * w32term.h (x_char_width, x_char_height): Likewise.
2201 * xfns.c (x_char_width, x_char_height): Remove.
2202 * w32fns.c (x_char_width, x_char_height): Likewise.
2203 * nsfns.c (x_char_width, x_char_height): Likewise.
2204 * frame.c (Fframe_char_width): Use FRAME_COLUMN_WIDTH for
2205 all window frames.
2206 (Fframe_char_height): Likewise with FRAME_LINE_HEIGHT.
2207 * keyboard.c (command_loop_1): Remove prototype.
2208 (command_loop_2, top_level_1): Add static to match prototype.
2209
2210 2012-12-06 Paul Eggert <eggert@cs.ucla.edu>
2211
2212 Fix a recently-introduced delete-process race condition.
2213 * callproc.c, process.h (record_kill_process):
2214 New function, containing part of the old call_process_kill.
2215 (call_process_kill): Use it.
2216 This does not change call_process_kill's behavior.
2217 * process.c (Fdelete_process): Use record_kill_process to fix a
2218 race condition that could cause Emacs to lose track of a child.
2219
2220 2012-12-06 Dmitry Antipov <dmantipov@yandex.ru>
2221
2222 Avoid code duplication between prev_frame and next_frame.
2223 * frame.c (candidate_frame): New function. Add comment.
2224 (prev_frame, next_frame): Use it. Adjust comment.
2225
2226 2012-12-06 Eli Zaretskii <eliz@gnu.org>
2227
2228 * callproc.c (Fcall_process_region) [!HAVE_MKSTEMP]: If mktemp
2229 fails, signal an error instead of continuing with an empty
2230 string. (Bug#13079)
2231 Encode expanded temp file pattern before passing it to mkstemp or
2232 mktemp.
2233
2234 * fileio.c (file_name_as_directory, directory_file_name) [DOS_NT]:
2235 Encode the file name before passing it to dostounix_filename, in
2236 case it will downcase it (under w32-downcase-file-names).
2237 (Bug#12933)
2238
2239 2012-12-05 Paul Eggert <eggert@cs.ucla.edu>
2240
2241 Minor call-process cleanups.
2242 * callproc.c (Fcall_process): Do record-unwind-protect on MSDOS
2243 at the same time as other platforms, to simplify analysis.
2244 No need for fd0_volatile since we have synch_process_fd.
2245 Avoid needless emacs_close; arg is always negative.
2246
2247 2012-12-04 Andreas Schwab <schwab@linux-m68k.org>
2248
2249 * callproc.c (Fcall_process): Fix specpdl nesting for asynchronous
2250 processes.
2251
2252 2012-12-04 Dmitry Antipov <dmantipov@yandex.ru>
2253
2254 * lisp.h (Mouse_HLInfo): Remove set-but-unused mouse_face_image_state
2255 member. Adjust users. Convert mouse_face_past_end, mouse_face_defer
2256 and mouse_face_hidden members to a bitfields.
2257 * frame.h (struct frame): Remove set-but-not-used space_width member.
2258 (FRAME_SPACE_WIDTH): Remove.
2259 * nsterm.m, w32term.c, xterm.c: Adjust users.
2260 * termchar.h (struct tty_display_info): Remove set-but-unused se_is_so
2261 member. Adjust users. Convert term_initted, delete_in_insert_mode,
2262 costs_set, insert_mode, standout_mode, cursor_hidden and flow_control
2263 members to a bitfields.
2264
2265 2012-12-03 Paul Eggert <eggert@cs.ucla.edu>
2266
2267 Don't let call-process be a zombie factory (Bug#12980).
2268 Fixing this bug required some cleanup of the signal-handling code.
2269 As a side effect, this change also fixes a longstanding rare race
2270 condition whereby Emacs could mistakenly kill unrelated processes,
2271 and it fixes a bug where a second C-g does not kill a recalcitrant
2272 synchronous process in GNU/Linux and similar platforms.
2273 The patch should also fix the last vestiges of Bug#9488,
2274 a bug which has mostly been fixed on the trunk by other changes.
2275 * callproc.c, process.h (synch_process_alive, synch_process_death)
2276 (synch_process_termsig, sync_process_retcode):
2277 Remove. All uses removed, to simplify analysis and so that
2278 less consing is done inside critical sections.
2279 * callproc.c (call_process_exited): Remove. All uses replaced
2280 with !synch_process_pid.
2281 * callproc.c (synch_process_pid, synch_process_fd): New static vars.
2282 These take the role of what used to be in unwind-protect arg.
2283 All uses changed.
2284 (block_child_signal, unblock_child_signal):
2285 New functions, to avoid races that could kill innocent-victim processes.
2286 (call_process_kill, call_process_cleanup, Fcall_process): Use them.
2287 (call_process_kill): Record killed processes as deleted, so that
2288 zombies do not clutter up the system. Do this inside a critical
2289 section, to avoid a race that would allow the clutter.
2290 (call_process_cleanup): Fix code so that the second C-g works again
2291 on common platforms such as GNU/Linux.
2292 (Fcall_process): Create the child process in a critical section,
2293 to fix a race condition. If creating an asynchronous process,
2294 record it as deleted so that zombies do not clutter up the system.
2295 Do unwind-protect for WINDOWSNT too, as that's simpler in the
2296 light of these changes. Omit unnecessary call to emacs_close
2297 before failure, as the unwind-protect code does that.
2298 * callproc.c (call_process_cleanup):
2299 * w32proc.c (waitpid): Simplify now that synch_process_alive is gone.
2300 * process.c (record_deleted_pid): New function, containing
2301 code refactored out of Fdelete_process.
2302 (Fdelete_process): Use it.
2303 (process_status_retrieved): Remove. All callers changed to use
2304 child_status_change.
2305 (record_child_status_change): Remove, folding its contents into ...
2306 (handle_child_signal): ... this signal handler. Now, this
2307 function is purely a handler for SIGCHLD, and is not called after
2308 a synchronous waitpid returns; the synchronous code is moved to
2309 wait_for_termination. There is no need to worry about reaping
2310 more than one child now.
2311 * sysdep.c (get_child_status, child_status_changed): New functions.
2312 (wait_for_termination): Now takes int * status and bool
2313 interruptible arguments, too. Do not record child status change;
2314 that's now the caller's responsibility. All callers changed.
2315 Reimplement in terms of get_child_status.
2316 (wait_for_termination_1, interruptible_wait_for_termination):
2317 Remove. All callers changed to use wait_for_termination.
2318 * syswait.h: Include <stdbool.h>, for bool.
2319 (record_child_status_change, interruptible_wait_for_termination):
2320 Remove decls.
2321 (record_deleted_pid, child_status_changed): New decls.
2322 (wait_for_termination): Adjust to API changes noted above.
2323
2324 * bytecode.c, lisp.h (Qbytecode): Remove.
2325 No longer needed after 2012-11-20 interactive-p changes.
2326
2327 2012-12-03 Eli Zaretskii <eliz@gnu.org>
2328
2329 * xdisp.c (redisplay_window): If the cursor is visible, but inside
2330 the scroll margin, move point outside the margin. (Bug#13055)
2331
2332 2012-12-03 Jan Djärv <jan.h.d@swipnet.se>
2333
2334 * gtkutil.c (my_log_handler): New function.
2335 (xg_set_geometry): Set log handler to my_log_handler (Bug#11177).
2336
2337 2012-12-03 Dmitry Antipov <dmantipov@yandex.ru>
2338
2339 * lisp.h (modify_region): Rename to...
2340 (modify_region_1): ...new prototype.
2341 * textprop.c (modify_region): Now static. Adjust users.
2342 * insdel.c (modify_region): Rename to...
2343 (modify_region_1): ...new function to work with current buffer.
2344 Adjust comment and users. Use true and false for booleans.
2345
2346 2012-12-03 Dmitry Antipov <dmantipov@yandex.ru>
2347
2348 * alloc.c (free_save_value): New function.
2349 (safe_alloca_unwind): Use it.
2350 * lisp.h (free_save_value): New prototype.
2351 * editfns.c (save_excursion_save): Use Lisp_Misc_Save_Value.
2352 Add comment.
2353 (save_excursion_restore): Adjust to match saved data structure.
2354 Use free_save_value to offload some work from GC. Drop obsolete
2355 #if 0 code.
2356
2357 2012-12-03 Chong Yidong <cyd@gnu.org>
2358
2359 * fileio.c (Vauto_save_list_file_name): Doc fix.
2360
2361 2012-12-03 Fabrice Popineau <fabrice.popineau@gmail.com>
2362
2363 * w32fns.c: Remove prototype of atof.
2364 (syspage_mask): Make it DWORD_PTR, for compatibility with 64-bit
2365 builds.
2366 (file_dialog_callback): Make it UINT_PTR.
2367
2368 * w32common.h (syspage_mask): Declare DWORD_PTR, for compatibility
2369 with 64-bit builds.
2370
2371 * w32.c (FILE_DEVICE_FILE_SYSTEM, METHOD_BUFFERED)
2372 (FILE_ANY_ACCESS, CTL_CODE) [_MSC_VER]: Define only if not already
2373 defined.
2374
2375 2012-12-03 Glenn Morris <rgm@gnu.org>
2376
2377 * data.c (Fboundp, Fsymbol_value): Doc fix re lexical-binding.
2378
2379 2012-12-02 Paul Eggert <eggert@cs.ucla.edu>
2380
2381 Fix xpalloc confusion after memory is exhausted.
2382 * alloc.c (xpalloc): Comment fix.
2383 * charset.c (Fdefine_charset_internal): If xpalloc exhausts memory
2384 and signals an error, do not clear charset_table_size, as
2385 charset_table is still valid.
2386 * doprnt.c (evxprintf): Clear *BUF after freeing it.
2387
2388 Use execve to avoid need to munge environ (Bug#13054).
2389 * callproc.c (Fcall_process):
2390 * process.c (create_process):
2391 Don't save and restore environ; no longer needed.
2392 * callproc.c (child_setup):
2393 Use execve, not execvp, to preserve environ.
2394
2395 2012-12-01 Paul Eggert <eggert@cs.ucla.edu>
2396
2397 * xterm.c (x_draw_image_relief): Remove unused locals (Bug#10500).
2398
2399 2012-12-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2400
2401 * xterm.c (x_draw_relief_rect, x_draw_image_relief): Fix relief
2402 display for sliced images (Bug#10500).
2403
2404 * w32term.c (w32_draw_relief_rect, x_draw_image_relief): Likewise.
2405
2406 2012-11-30 Juanma Barranquero <lekktu@gmail.com>
2407
2408 * doc.c (Fdocumentation): Re-add handling of function-documentation,
2409 accidentally removed in 2012-11-09T04:10:16Z!monnier@iro.umontreal.ca (bug#13034).
2410
2411 2012-11-29 Dmitry Antipov <dmantipov@yandex.ru>
2412
2413 * xdisp.c (window_outdated): Remove eassert since it hits
2414 some suspicious corner cases (see Bug#13007 and Bug#13012).
2415 (mode_line_update_needed): New function.
2416 (redisplay_internal, redisplay_window): Use it.
2417 (ensure_selected_frame): New function.
2418 (redisplay_internal, unwind_redisplay): Use it.
2419 (redisplay_internal): Move comment about buffer_shared...
2420 (buffer_shared_and_changed): ...near to its real use.
2421
2422 2012-11-29 Paul Eggert <eggert@cs.ucla.edu>
2423
2424 * callproc.c (Fcall_process): Don't misreport vfork failure.
2425
2426 2012-11-28 Paul Eggert <eggert@cs.ucla.edu>
2427
2428 * callproc.c (Fcall_process): Fix vfork portability problems.
2429 Do not assume that fd[0], count, filefd, and save_environ survive
2430 vfork. Fix bug whereby wrong errno value could be reported for
2431 pipe failure. Some minor cleanups, too, as follows. Move buf and
2432 bufsize to the context where they're needed. Change new_argv to
2433 be of type char **, as this is more convenient and avoids casts.
2434 (CALLPROC_BUFFER_SIZE_MIN, CALLPROC_BUFFER_SIZE_MAX):
2435 Now local constants, not macros.
2436
2437 2012-11-18 Kenichi Handa <handa@gnu.org>
2438
2439 * font.c (font_unparse_xlfd): Fix previous change. Keep "const"
2440 for the variable "f".
2441
2442 2012-11-13 Kenichi Handa <handa@gnu.org>
2443
2444 * font.c (font_unparse_xlfd): Exclude special characters from the
2445 generating XLFD name.
2446
2447 2012-11-27 Paul Eggert <eggert@cs.ucla.edu>
2448
2449 Assume POSIX 1003.1-1988 or later for grp.h, pwd.h.
2450 * dired.c (stat_uname, stat_gname):
2451 * fileio.c (Fexpand_file_name): Remove no-longer-needed casts.
2452
2453 Assume POSIX 1003.1-1988 or later for errno.h (Bug#12968).
2454 * dired.c (directory_files_internal, file_name_completion):
2455 Assume EAGAIN and EINTR are defined.
2456
2457 * fileio.c (Fcopy_file): Assume EISDIR is defined.
2458 * gmalloc.c (ENOMEM, EINVAL): Assume they're defined.
2459 * gnutls.c (emacs_gnutls_write): Assume EAGAIN is defined.
2460 * lread.c (readbyte_from_file): Assume EINTR is defined.
2461 * process.c (wait_reading_process_output, send_process) [subprocesses]:
2462 Assume EIO and EAGAIN are defined.
2463 * unexcoff.c (write_segment): Assume EFAULT is defined.
2464
2465 2012-11-27 Eli Zaretskii <eliz@gnu.org>
2466
2467 * fontset.c (Finternal_char_font): Return nil on non-GUI frames.
2468 (Bug#11964)
2469
2470 * xdisp.c (draw_glyphs): Don't draw in mouse face if mouse
2471 highlighting on the frame was cleared. Prevents assertion
2472 violations when repeatedly clicking on the "Top" link of the
2473 "bread-crumbs" in Info buffers.
2474
2475 2012-11-25 Paul Eggert <eggert@cs.ucla.edu>
2476
2477 * sysdep.c (sys_subshell): Don't assume pid_t fits in int.
2478
2479 2012-11-24 Ken Brown <kbrown@cornell.edu>
2480
2481 * keyboard.c (HAVE_MOUSE):
2482 * frame.c (HAVE_MOUSE): Remove, and rewrite code as if HAVE_MOUSE
2483 were always defined.
2484
2485 2012-11-24 Eli Zaretskii <eliz@gnu.org>
2486
2487 * xdisp.c (set_cursor_from_row): Skip step 2 only if point is not
2488 between bpos_covered and bpos_max. This fixes cursor display when
2489 several display strings follow each other.
2490
2491 * .gdbinit (pgx): If the glyph's object is a string, display the
2492 pointer to string data, rather than the value of the string object
2493 itself (which barfs under CHECK_LISP_OBJECT_TYPE).
2494
2495 * indent.c (Fvertical_motion): If the starting position is covered
2496 by a display string, return to one position before that, to avoid
2497 overshooting it inside move_it_to. (Bug#12930)
2498
2499 2012-11-23 Dmitry Antipov <dmantipov@yandex.ru>
2500
2501 * frame.h (struct frame): Remove display_preempted member
2502 since all users are dead long ago.
2503 * nsterm.h (struct x_output): Use the only dummy member.
2504 * w32menu.c (pending_menu_activation): Remove since not
2505 really used.
2506 (set_frame_menubar): Adjust user.
2507 * w32term.h (struct x_output): Drop outdated #if 0 code.
2508 (struct w32_output): Use bitfields for explicit_parent,
2509 asked_for_visible and menubar_active members.
2510 Drop unused pending_menu_activation member.
2511 * xterm.h (struct x_output): Drop outdated #if 0 code.
2512 Use bitfields for explicit_parent, asked_for_visible,
2513 has_been_visible and net_wm_state_hidden_seen members.
2514
2515 2012-11-23 Eli Zaretskii <eliz@gnu.org>
2516
2517 * makefile.w32-in (globals.h, gl-stamp): Use $(SWITCHCHAR) instead
2518 of a literal "/". (Bug#12955)
2519 (gl-stamp): Invoke fc.exe directly, not through cmd.
2520
2521 2012-11-23 Paul Eggert <eggert@cs.ucla.edu>
2522
2523 Assume POSIX 1003.1-1988 or later for dirent.h (Bug#12958).
2524 * dired.c: Assume HAVE_DIRENT_H.
2525 (NAMLEN): Remove, replacing with ...
2526 (dirent_namelen): New function. All uses changed. Use the GNU macro
2527 _D_EXACT_NAMELEN if available, as it's faster than strlen.
2528 (DIRENTRY): Remove, replacing all uses with 'struct dirent'.
2529 (DIRENTRY_NONEMPTY): Remove. All callers now assume it's nonzero.
2530 * makefile.w32-in (DIR_H): Remove. All uses replaced with
2531 $(NT_INC)/dirent.h.
2532 ($(BLD)/w32.$(O)): Do not depend on $(SRC)/ndir.h.
2533 * ndir.h: Rename to ../nt/inc/dirent.h.
2534 * sysdep.h (closedir) [!HAVE_CLOSEDIR]: Remove.
2535 Do not include <dirent.h>; no longer needed.
2536 * w32.c: Include <dirent.h> rather than "ndir.h".
2537
2538 2012-11-23 Chong Yidong <cyd@gnu.org>
2539
2540 * xftfont.c (xftfont_open): Remove duplicate assignment.
2541
2542 2012-11-22 Dmitry Antipov <dmantipov@yandex.ru>
2543
2544 * alloc.c (Fgarbage_collect): Unblock input after clearing
2545 gc_in_progress to avoid note_mouse_highlight glitch with GC.
2546 * frame.h (FRAME_MOUSE_UPDATE): New macro.
2547 * msdos.c (IT_frame_up_to_date): Use it here...
2548 * w32term.c (w32_frame_up_to_date): ...here...
2549 * xterm.c (XTframe_up_to_date): ...and here...
2550 * nsterm.m (ns_frame_up_to_date): ...but not here.
2551 * lisp.h (Mouse_HLInfo): Remove mouse_face_deferred_gc member.
2552 Adjust users.
2553 * xdisp.c (message2_nolog, message3_nolog, note_mouse_highlight):
2554 Do not check whether GC is in progress.
2555
2556 2012-11-22 Dmitry Antipov <dmantipov@yandex.ru>
2557
2558 * xdisp.c (window_buffer_changed): New function.
2559 (update_menu_bar, update_tool_bar): Use it to
2560 simplify large 'if' statements.
2561 (redisplay_internal): Generalize commonly used
2562 'tail' and 'frame' local variables.
2563
2564 2012-11-22 Eli Zaretskii <eliz@gnu.org>
2565
2566 * w32.c (getcwd): Fix the 2nd argument type, to prevent conflicts
2567 with Windows system header.
2568
2569 2012-11-21 Paul Eggert <eggert@cs.ucla.edu>
2570
2571 Assume POSIX 1003.1-1988 or later for unistd.h (Bug#12945).
2572 * alloc.c: Assume unistd.h exists.
2573 * fileio.c (Fexpand_file_name) [DOS_NT]: Use getcwd, not getwd.
2574 * sysdep.c (get_current_dir_name): Assume getcwd exists.
2575 (getwd) [USG]: Remove; no longer needed.
2576 (sys_subshell) [DOS_NT]: Use getcwd, not getwd.
2577 * w32.c (getcwd): Rename from getwd, and switch to getcwd's API.
2578 * w32.h (getcwd): Remove decl.
2579
2580 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
2581
2582 * xdisp.c (fast_set_selected_frame): Rename from update_tool_bar_unwind.
2583 Make it set selected_window as well.
2584 (update_tool_bar): Use it.
2585
2586 2012-11-21 Ken Brown <kbrown@cornell.edu>
2587
2588 * emacs.c (main): Set the G_SLICE environment variable for all
2589 Cygwin builds, not just GTK builds. See
2590 https://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00368.html.
2591
2592 2012-11-21 Eli Zaretskii <eliz@gnu.org>
2593
2594 * w32.c (FILE_DEVICE_FILE_SYSTEM, METHOD_BUFFERED)
2595 (FILE_ANY_ACCESS, CTL_CODE, FSCTL_GET_REPARSE_POINT) [_MSC_VER]:
2596 Define for the MSVC compiler.
2597
2598 * w32term.h (EnumSystemLocalesW) [_MSC_VER]: Add a missing semi-colon.
2599
2600 * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
2601 (Fexpand_file_name) [DOS_NT]: Pass encoded file name to
2602 dostounix_filename. Prevents crashes down the road, because
2603 dostounix_filename assumes it gets a unibyte string.
2604 Reported by Michel de Ruiter <michel@sentient.nl>, see
2605 http://lists.gnu.org/archive/html/help-emacs-windows/2012-11/msg00017.html
2606
2607 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
2608
2609 Conflate Qnil and Qunbound for `symbol-function'.
2610 * alloc.c (Fmake_symbol): Initialize `function' to Qnil.
2611 * lread.c (init_obarray): Set `function' fields to Qnil.
2612 * eval.c (Fcommandp): Ignore Qunbound.
2613 (Fautoload, eval_sub, Fapply, Ffuncall, Fmacroexpand):
2614 * data.c (Ffset, Ffboundp, indirect_function, Findirect_function):
2615 Test NILP rather than Qunbound.
2616 (Ffmakunbound): Set to Qnil.
2617 (Fsymbol_function): Never signal an error.
2618 (Finteractive_form): Ignore Qunbound.
2619
2620 2012-11-20 Paul Eggert <eggert@cs.ucla.edu>
2621
2622 * eval.c (interactive_p): Remove no-longer-used decl.
2623
2624 2012-11-20 Dmitry Antipov <dmantipov@yandex.ru>
2625
2626 * xdisp.c (buffer_shared): Adjust comment.
2627 (buffer_shared_and_changed): New function.
2628 (prepare_menu_bars, redisplay_internal): Use it to
2629 decide whether all windows or frames should be updated.
2630 (window_outdated): New function.
2631 (text_outside_line_unchanged_p, redisplay_window): Use it.
2632 (redisplay_internal): Likewise. Fix indentation.
2633
2634 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
2635
2636 * eval.c (Finteractive_p, Fcalled_interactively_p, interactive_p): Remove.
2637 (syms_of_eval): Remove corresponding defsubr.
2638 * bytecode.c (exec_byte_code): `interactive-p' is now a Lisp function.
2639
2640 2012-11-19 Daniel Colascione <dancol@dancol.org>
2641
2642 * w32fns.c (Fx_file_dialog):
2643 (Fx_file_dialog): Accomodate rename of cygwin_convert_path* to
2644 cygwin_convert_file_name*.
2645
2646 * cygw32.c (Fcygwin_convert_path_to_windows, syms_of_cygw32):
2647 Rename cygwin_convert_path* to cygwin_convert_file_name*.
2648
2649 2012-11-18 Paul Eggert <eggert@cs.ucla.edu>
2650
2651 * nsterm.m (ns_select): Send SIGIO only to self, not to process group.
2652
2653 2012-11-18 Eli Zaretskii <eliz@gnu.org>
2654
2655 * w32select.c: Include w32common.h before w32term.h, so that
2656 windows.h gets included before w32term.h uses some of its
2657 features, see below.
2658
2659 * w32term.h (LOCALE_ENUMPROCA, LOCALE_ENUMPROCW) [_MSC_VER]:
2660 New typedefs.
2661 (EnumSystemLocalesA, EnumSystemLocalesW) [_MSC_VER]:
2662 New prototypes.
2663 (EnumSystemLocales) [_MSC_VER]: Define if undefined. (Bug#12878)
2664
2665 2012-11-18 Jan Djärv <jan.h.d@swipnet.se>
2666
2667 * nsterm.m (hold_event): Set send_appdefined to YES (Bug#12834).
2668 (ns_select): Return at once if events are held (Bug#12834).
2669
2670 2012-11-18 enami tsugutomo <tsugutomo.enami@jp.sony.com>
2671
2672 * unexelf.c (ELFSIZE) [__NetBSD__ && _LP64]: Set to 64.
2673 Needed following 2012-10-20 change. (Bug#12902)
2674
2675 2012-11-18 Juanma Barranquero <lekktu@gmail.com>
2676
2677 * w32proc.c (waitpid): Remove unused label get_result.
2678
2679 2012-11-17 Juanma Barranquero <lekktu@gmail.com>
2680
2681 * makefile.w32-in (SYSWAIT_H): New macro.
2682 ($(BLD)/callproc.$(O), $(BLD)/w32proc.$(O), $(BLD)/process.$(O))
2683 ($(BLD)/sysdep.$(O)): Update dependencies.
2684
2685 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
2686
2687 Assume POSIX 1003.1-1988 or later for fcntl.h (Bug#12881).
2688 * callproc.c (relocate_fd): Assume F_DUPFD.
2689 * emacs.c, term.c (O_RDWR): Remove.
2690 * keyboard.c (tty_read_avail_input): Use O_NONBLOCK rather than
2691 O_NDELAY, since O_NONBLOCK is the standard name for this flag.
2692 * nsterm.m: Assume <fcntl.h> exists.
2693 * process.c (NON_BLOCKING_CONNECT, allocate_pty, create_process)
2694 (create_pty, Fmake_network_process, server_accept_connection)
2695 (wait_reading_process_output, init_process_emacs):
2696 Assume O_NONBLOCK.
2697 (wait_reading_process_output): Put in a special case for WINDOWSNT
2698 to mimick the older behavior where it had O_NDELAY but not O_NONBLOCK.
2699 It's not clear this is needed, but it's a more-conservative change.
2700 (create_process): Assume FD_CLOEXEC.
2701 (create_process, create_pty): Assume O_NOCTTY.
2702 * sysdep.c (init_sys_modes, reset_sys_modes): Assume F_SETFL.
2703 (reset_sys_modes): Use O_NONBLOCK rather than O_NDELAY.
2704 Omit if not DOS_NT, since F_GETFL is not defined there.
2705 (serial_open): Assume O_NONBLOCK and O_NOCTTY.
2706 * term.c: Include <fcntl.h>, for flags like O_NOCTTY.
2707 (O_NOCTTY): Remove.
2708 (init_tty): Assume O_IGNORE_CTTY is defined to 0 on platforms that
2709 lack it, since gnulib guarantees this.
2710 * w32.c (fcntl): Test for O_NONBLOCK rather than O_NDELAY.
2711
2712 2012-11-17 Eli Zaretskii <eliz@gnu.org>
2713
2714 * w32.c (faccessat): Pretend that directories have the execute bit
2715 set. Emacs expects that, e.g., in files.el:cd-absolute.
2716
2717 * w32proc.c (create_child): Don't clip the PID of the child
2718 process to fit into an Emacs integer, as this is no longer a
2719 restriction.
2720 (waitpid): Rename from sys_wait. Emulate a Posix 'waitpid' by
2721 reaping only the process specified by PID argument, if that is
2722 positive. Use PID instead of dead_child to know which process to
2723 reap. Wait for the child to die only if WNOHANG is not in
2724 OPTIONS.
2725 (sys_select): Don't set dead_child.
2726
2727 * sysdep.c (wait_for_termination_1): Remove the WINDOWSNT portion,
2728 as it is no longer needed.
2729
2730 * process.c (waitpid, WUNTRACED) [!WNOHANG]: Remove definitions,
2731 no longer needed.
2732 (record_child_status_change): Remove the setting of
2733 record_at_most_one_child for the !WNOHANG case.
2734
2735 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
2736
2737 Fix problems in ns port found by static checking.
2738 * nsterm.m: Include <pthread.h>, for pthread_mutex_lock etc.
2739 (hold_event, setPosition:portion:whole:): Send SIGIO only to self,
2740 not to process group.
2741 (ns_select): Use emacs_write, not write, as that's more robust
2742 in the presence of signals.
2743 (fd_handler:): Check for read errors.
2744
2745 2012-11-16 Glenn Morris <rgm@gnu.org>
2746
2747 * editfns.c (Fmessage): Mention message-log-max. (Bug#12849)
2748
2749 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
2750
2751 * eval.c (Finteractive_p): Revert lexbind-merge mishap.
2752
2753 2012-11-16 Eli Zaretskii <eliz@gnu.org>
2754
2755 * w32proc.c (timer_loop): Make sure SuspendThread and ResumeThread
2756 use the same value of thread handle.
2757 (start_timer_thread): If the timer thread exited (due to error),
2758 clean up by closing the two handles it used. Duplicate the caller
2759 thread's handle here, so it gets duplicated only once, when
2760 launching the timer thread. Set priority of the timer thread, not
2761 the caller thread.
2762 (getitimer): Don't duplicate the caller thread's handle here.
2763 (Bug#12832)
2764
2765 2012-11-16 Jan Djärv <jan.h.d@swipnet.se>
2766
2767 * nsterm.m (hold_event): Send SIGIO to make sure ns_read_socket is
2768 called (Bug#12834).
2769
2770 2012-11-16 Paul Eggert <eggert@cs.ucla.edu>
2771
2772 Remove no-longer-used pty_max_bytes variable.
2773 * process.c (pty_max_bytes): Remove; unused.
2774 (send_process): Do not set it.
2775
2776 2012-11-15 Juanma Barranquero <lekktu@gmail.com>
2777
2778 * makefile.w32-in ($(BLD)/dispnew.$(O), $(BLD)/emacs.$(O)):
2779 Update dependencies.
2780
2781 2012-11-15 Paul Eggert <eggert@cs.ucla.edu>
2782
2783 * eval.c (mark_backtrace) [BYTE_MARK_STACK]: Remove stray '*'.
2784 This follows up on the 2012-09-29 patch that removed indirection
2785 for the 'function' field. Reported by Sergey Vinokurov in
2786 <http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00263.html>.
2787
2788 2012-11-14 Eli Zaretskii <eliz@gnu.org>
2789
2790 * w32.c (faccessat): Rename from sys_faccessat. (No need to use a
2791 different name, as the MS runtime does not have such a function,
2792 and probably never will.) All callers changed. Ignore DIRFD
2793 value if PATH is an absolute file name, to match Posix spec
2794 better. If AT_SYMLINK_NOFOLLOW is set in FLAGS, don't resolve
2795 symlinks.
2796
2797 2012-11-14 Dmitry Antipov <dmantipov@yandex.ru>
2798
2799 * xdisp.c (echo_area_display, redisplay_internal):
2800 Omit redundant check whether frame_garbaged is set.
2801
2802 2012-11-14 Paul Eggert <eggert@cs.ucla.edu>
2803
2804 Use faccessat, not access, when checking file permissions (Bug#12632).
2805 This fixes a bug that has been present in Emacs since its creation.
2806 It was reported by Chris Torek in 1983 even before GNU Emacs existed,
2807 which must set some sort of record. (Torek's bug report was against
2808 a predecessor of GNU Emacs, but GNU Emacs happened to have the
2809 same common flaw.) See Torek's Usenet posting
2810 "setuid/setgid programs & Emacs" Article-I.D.: sri-arpa.858
2811 Posted: Fri Apr 8 14:18:56 1983.
2812 * Makefile.in (LIB_EACCESS): New macro.
2813 (LIBES): Use it.
2814 * callproc.c (init_callproc):
2815 * charset.c (init_charset):
2816 * fileio.c (check_existing, check_executable, check_writable)
2817 (Ffile_readable_p):
2818 * lread.c (openp, load_path_check):
2819 * process.c (allocate_pty):
2820 * xrdb.c (file_p):
2821 Use effective UID when checking permissions, not real UID.
2822 * callproc.c (init_callproc):
2823 * charset.c (init_charset):
2824 * lread.c (load_path_check, init_lread):
2825 Test whether directories are accessible, not merely whether they exist.
2826 * conf_post.h (GNULIB_SUPPORT_ONLY_AT_FDCWD): New macro.
2827 * fileio.c (check_existing, check_executable, check_writable)
2828 (Ffile_readable_p):
2829 Use symbolic names instead of integers for the flags, as they're
2830 portable now.
2831 (check_writable): New arg AMODE. All uses changed.
2832 Set errno on failure.
2833 (Ffile_readable_p): Use faccessat, not stat + open + close.
2834 (Ffile_writable_p): No need to call check_existing + check_writable.
2835 Just call check_writable and then look at errno. This saves a syscall.
2836 dir should never be nil; replace an unnecessary runtime check
2837 with an eassert. When checking the parent directory of a nonexistent
2838 file, check that the directory is searchable as well as writable, as
2839 we can't create files in unsearchable directories.
2840 (file_directory_p): New function, which uses 'stat' on most platforms
2841 but faccessat with D_OK (for efficiency) if WINDOWSNT.
2842 (Ffile_directory_p, Fset_file_times): Use it.
2843 (file_accessible_directory_p): New function, which uses a single
2844 syscall for efficiency.
2845 (Ffile_accessible_directory_p): Use it.
2846 * xrdb.c (file_p): Use file_directory_p.
2847 * lisp.h (file_directory_p, file_accessible_directory_p): New decls.
2848 * lread.c (openp): When opening a file, use fstat rather than
2849 stat, as that avoids a permissions race. When not opening a file,
2850 use file_directory_p rather than stat.
2851 (dir_warning): First arg is now a usage string, not a format.
2852 Use errno. All uses changed.
2853 * nsterm.m (ns_term_init): Remove unnecessary call to file-readable
2854 that merely introduced a race.
2855 * process.c, sysdep.c, term.c: All uses of '#ifdef O_NONBLOCK'
2856 changed to '#if O_NONBLOCK', to accommodate gnulib O_* style,
2857 and similarly for the other O_* flags.
2858 * w32.c (sys_faccessat): Rename from sys_access and switch to
2859 faccessat's API. All uses changed.
2860 * xrdb.c: Do not include <sys/stat.h>; no longer needed.
2861 (magic_db): Rename from magic_file_p.
2862 (magic_db, search_magic_path): Return an XrmDatabase rather than a
2863 char *, so that we don't have to test for file existence
2864 separately from opening the file for reading. This removes a race
2865 fixes a permission-checking problem, and simplifies the code.
2866 All uses changed.
2867 (file_p): Remove; no longer needed.
2868
2869 2012-11-13 Dmitry Antipov <dmantipov@yandex.ru>
2870
2871 Omit glyphs initialization at startup.
2872 * dispnew.c (glyphs_initialized_initially_p): Remove.
2873 (adjust_frame_glyphs_initially): Likewise. Adjust users.
2874 (Fredraw_frame): Move actual code from here...
2875 (redraw_frame): ...to here. Add eassert. Adjust comment.
2876 (Fredraw_display): Use redraw_frame.
2877 * xdisp.c (clear_garbaged_frames): Likewise.
2878
2879 2012-11-13 Eli Zaretskii <eliz@gnu.org>
2880
2881 * xdisp.c (decode_mode_spec): Limit the value of WIDTH argument
2882 passed to pint2str and pint2hrstr to be at most the size of the
2883 frame's decode_mode_spec_buffer. This avoids crashes with very
2884 large values of FIELD_WIDTH argument to decode_mode_spec.
2885 (Bug#12867)
2886
2887 2012-11-13 Paul Eggert <eggert@cs.ucla.edu>
2888
2889 Fix a race with verify-visited-file-modtime (Bug#12863).
2890 Since at least 1991 Emacs has ignored an mtime difference of no
2891 more than one second, but my guess is that this was to work around
2892 file system bugs that were fixed long ago. Since the race is
2893 causing problems now, let's remove that code.
2894 * fileio.c (Fverify_visited_file_modtime): Do not accept a file
2895 whose time stamp is off by no more than a second. Insist that the
2896 file time stamps match exactly.
2897
2898 2012-11-12 Dmitry Antipov <dmantipov@yandex.ru>
2899
2900 * frame.h (struct frame): Convert external_tool_bar member to
2901 1-bit unsigned bitfield.
2902 * termhooks.h (struct terminal): Remove mouse_moved member since
2903 all users are long dead. Adjust comment on mouse_position_hook.
2904
2905 2012-11-12 Dmitry Antipov <dmantipov@yandex.ru>
2906
2907 Simplify by using FOR_EACH_FRAME here and there.
2908 * frame.c (next_frame, prev_frame, other_visible_frames)
2909 (delete_frame, visible-frame-list): Use FOR_EACH_FRAME.
2910 * w32term.c (x_window_to_scroll_bar): Likewise.
2911 * window.c (window_list): Likewise.
2912 * xdisp.c (x_consider_frame_title): Likewise.
2913 * xfaces.c ( Fdisplay_supports_face_attributes_p): Likewise.
2914 * xfns.c (x_window_to_frame, x_any_window_to_frame)
2915 (x_menubar_window_to_frame, x_top_window_to_frame): Likewise.
2916 * xmenu.c (menubar_id_to_frame): Likewise.
2917 * xselect.c (frame_for_x_selection): Likewise.
2918 * xterm.c (x_frame_of_widget, x_window_to_scroll_bar)
2919 (x_window_to_menu_bar): Likewise.
2920 * w32fns.c (x_window_to_frame): Likewise. Adjust comment.
2921
2922 2012-11-12 Paul Eggert <eggert@cs.ucla.edu>
2923
2924 * data.c (Qdefalias_fset_function): Now static.
2925
2926 Another tweak to vectorlike_header change.
2927 * alloc.c (struct Lisp_Vectorlike_Free, NEXT_IN_FREE_LIST):
2928 Remove, and replace all uses with ...
2929 (next_in_free_list, set_next_in_free_list):
2930 New functions, which respect C's aliasing rules better.
2931
2932 2012-11-11 Paul Eggert <eggert@cs.ucla.edu>
2933
2934 * window.c (list4i): Rename from 'quad'. All uses changed.
2935 Needed because <sys/types.h> defines 'quad' on Solaris 10.
2936
2937 2012-11-11 Juanma Barranquero <lekktu@gmail.com>
2938
2939 * xdisp.c (start_hourglass) [HAVE_NTGUI]: Add block to silence
2940 warning about mixing declarations and code in ISO C90.
2941
2942 2012-11-10 Martin Rudalics <rudalics@gmx.at>
2943
2944 * window.c (Fsplit_window_internal): Set combination limit of
2945 new parent window to t iff Vwindow_combination_limit is t;
2946 fixing a regression introduced with the change from 2012-09-22.
2947 (Fset_window_combination_limit): Fix doc-string.
2948
2949 2012-11-10 Eli Zaretskii <eliz@gnu.org>
2950
2951 * xdisp.c (try_scrolling): Fix correction of aggressive-scroll
2952 amount when the scroll margins are too large. When scrolling
2953 backwards in the buffer, give up if cannot reach point or the
2954 scroll margin within a reasonable number of screen lines.
2955 Fixes point position in window under scroll-up/down-aggressively when
2956 point is positioned many lines beyond the window top/bottom.
2957 (Bug#12811)
2958
2959 * ralloc.c (relinquish): If real_morecore fails to return memory
2960 to the system, don't crash; instead, leave the last heap
2961 unchanged and return. (Bug#12774)
2962
2963 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
2964
2965 * lisp.h (AUTOLOADP): New macro.
2966 * eval.c (Fautoload): Don't attach to loadhist, call Fdefalias instead.
2967 * data.c (Ffset): Remove special ad-advice-info handling.
2968 (Fdefalias): Handle autoload definitions and new Qdefalias_fset_function.
2969 (Fsubr_arity): CSE.
2970 (Finteractive_form): Simplify.
2971 (Fquo): Don't insist on having at least 2 arguments.
2972 (Qdefalias_fset_function): New var.
2973
2974 2012-11-09 Jan Djärv <jan.h.d@swipnet.se>
2975
2976 * image.c (xpm_make_color_table_h): Change to hashtest_equal.
2977
2978 * nsfont.m (Qcondensed, Qexpanded): New variables.
2979 (ns_descriptor_to_entity): Restore Qcondensed, Qexpanded setting.
2980 (syms_of_nsfont): Defsym Qcondensed, Qexpanded.
2981
2982 2012-11-09 Dmitry Antipov <dmantipov@yandex.ru>
2983
2984 Fix recently introduced crash on MS-Windows (Bug#12839).
2985 * w32term.h (struct scroll_bar): Use convenient header.
2986 (SCROLL_BAR_VEC_SIZE): Remove.
2987 * w32term.c (x_scroll_bar_create): Use VECSIZE.
2988
2989 2012-11-09 Dmitry Antipov <dmantipov@yandex.ru>
2990
2991 Tweak last vectorlike_header change.
2992 * alloc.c (struct Lisp_Vectorlike_Free): Special type to represent
2993 vectorlike object on the free list. This is introduced to avoid
2994 some (but not all) pointer casting and aliasing problems, see
2995 http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00105.html.
2996 * .gdbinit (pvectype, pvecsize): New commands to examine vectorlike
2997 objects.
2998 (xvectype, xvecsize): Use them to examine Lisp_Object values.
2999
3000 2012-11-09 Jan Djärv <jan.h.d@swipnet.se>
3001
3002 * nsfont.m (ns_descriptor_to_entity): Qcondensed and Qexpanded has
3003 been removed, so remove them here also.
3004
3005 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
3006
3007 * doc.c (Fdocumentation): Handle new property
3008 dynamic-docstring-function to replace the old ad-advice-info.
3009
3010 2012-11-09 Paul Eggert <eggert@cs.ucla.edu>
3011
3012 * fns.c (Qeql, hashtest_eq): Now static.
3013
3014 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
3015
3016 * lisp.h (XHASH): Redefine to be imperfect and fit in a Lisp int.
3017 * fns.c (hashfn_eq, hashfn_eql, sxhash):
3018 * profiler.c (hashfn_profiler): Don't use XUINT on non-integers.
3019 * buffer.c (compare_overlays): Use XLI rather than XHASH.
3020
3021 2012-11-08 Paul Eggert <eggert@cs.ucla.edu>
3022
3023 Use same hash function for hashfn_profiler as for hash_string etc.
3024 * fns.c (SXHASH_COMBINE): Remove. All uses replaced by sxhash_combine.
3025 * lisp.h (sxhash_combine): New inline function, with the contents
3026 of the old SXHASH_COMBINE.
3027 * profiler.c (hashfn_profiler): Use it, instead of having a
3028 special hash function containing a comparison that always yields 1.
3029
3030 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
3031
3032 * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic)
3033 (Qultra_condensed, Qextra_condensed, Qcondensed, Qsemi_condensed)
3034 (Qsemi_expanded, Qextra_expanded, Qexpanded, Qultra_expanded):
3035 Remove unused vars.
3036
3037 2012-11-08 Jan Djärv <jan.h.d@swipnet.se>
3038
3039 * image.c (xpm_make_color_table_h): Fix compiler error because
3040 make_hash_table changed.
3041
3042 2012-11-08 Thomas Kappler <tkappler@gmail.com> (tiny change)
3043
3044 * nsfont.m (ns_findfonts): Handle empty matchingDescs (Bug#11541).
3045
3046 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
3047
3048 Use ad-hoc comparison function for the profiler's hash-tables.
3049 * profiler.c (Qprofiler_backtrace_equal, hashtest_profiler): New vars.
3050 (make_log): Use them.
3051 (handle_profiler_signal): Don't inhibit quit any longer since we don't
3052 call Fequal any more.
3053 (Ffunction_equal): New function.
3054 (cmpfn_profiler, hashfn_profiler): New functions.
3055 (syms_of_profiler): Initialize them.
3056 * lisp.h (struct hash_table_test): New struct.
3057 (struct Lisp_Hash_Table): Use it.
3058 * alloc.c (mark_object): Mark hash_table_test fields of hash tables.
3059 * fns.c (make_hash_table): Take a struct to describe the test.
3060 (cmpfn_eql, cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
3061 (hashfn_equal, hashfn_user_defined): Adjust to new calling convention.
3062 (hash_lookup, hash_remove_from_table): Move assertion checking of
3063 hashfn result here. Check hash-equality before calling cmpfn.
3064 (Fmake_hash_table): Adjust call to make_hash_table.
3065 (hashtest_eq, hashtest_eql, hashtest_equal): New structs.
3066 (syms_of_fns): Initialize them.
3067 * emacs.c (main): Move syms_of_fns earlier.
3068 * xterm.c (syms_of_xterm):
3069 * category.c (hash_get_category_set): Adjust call to make_hash_table.
3070 * print.c (print_object): Adjust to new hash-table struct.
3071 * composite.c (composition_gstring_put_cache): Adjust to new hashfn.
3072
3073 2012-11-08 Eli Zaretskii <eliz@gnu.org>
3074
3075 * w32fns.c (modifier_set): Fix handling of Scroll Lock when the
3076 value of w32-scroll-lock-modifier is neither nil nor one of the
3077 known key modifiers. (Bug#12806)
3078
3079 2012-11-08 Dmitry Antipov <dmantipov@yandex.ru>
3080
3081 Shrink struct vectorlike_header to the only size field.
3082 * lisp.h (enum pvec_type): Avoid explicit enum member values.
3083 Adjust comment.
3084 (enum More_Lisp_Bits): Change PSEUDOVECTOR_SIZE_BITS and
3085 PVEC_TYPE_MASK to arrange new bitfield in the vector header.
3086 (PSEUDOVECTOR_REST_BITS, PSEUDOVECTOR_REST_MASK): New members.
3087 (PSEUDOVECTOR_AREA_BITS): New member used to extract subtype
3088 information from the vector header. Adjust comment.
3089 (XSETPVECTYPE, XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR)
3090 (PSEUDOVECTOR_TYPEP, DEFUN): Adjust to match new vector header
3091 layout.
3092 (XSETSUBR, SUBRP): Adjust to match new Lisp_Subr layout.
3093 (struct vectorlike_header): Remove next member. Adjust comment.
3094 (struct Lisp_Subr): Add convenient header. Adjust comment.
3095 (allocate_pseudovector): Adjust prototype.
3096 * alloc.c (mark_glyph_matrix, mark_face_cache, allocate_string)
3097 (sweep_string, lisp_malloc): Remove useless prototypes.
3098 (enum mem_type): Adjust comment.
3099 (NEXT_IN_FREE_LIST): New macro.
3100 (SETUP_ON_FREE_LIST): Adjust XSETPVECTYPESIZE usage.
3101 (Fmake_bool_vector): Likewise.
3102 (struct large_vector): New type to represent allocation unit for
3103 the vectors with the memory footprint more than VBLOOCK_BYTES_MAX.
3104 (large_vectors): Change type to struct large_vector.
3105 (allocate_vector_from_block): Simplify.
3106 (PSEUDOVECTOR_NBYTES): Replace with...
3107 (vector_nbytes): ...new function. Adjust users.
3108 (sweep_vectors): Adjust processing of large vectors.
3109 (allocate_vectorlike): Likewise.
3110 (allocate_pseudovector): Change type of 3rd arg to enum pvec_type.
3111 Add easserts. Adjust XSETPVECTYPESIZE usage.
3112 (allocate_buffer): Use BUFFER_PVEC_INIT.
3113 (live_vector_p): Adjust to match large vector.
3114 * buffer.c (init_buffer_once): Use BUFFER_PVEC_INIT.
3115 * buffer.h (struct buffer): Add next member.
3116 (BUFFER_LISP_SIZE, BUFFER_REST_SIZE, BUFFER_PVEC_INIT):
3117 New macros.
3118 (FOR_EACH_BUFFER): Adjust to match struct buffer change.
3119 * fns.c (internal_equal): Adjust to match enum pvec_type change.
3120 (copy_hash_table): Adjust to match vector header change.
3121 * lread.c (defsubr): Use XSETPVECTYPE.
3122 * .gdbinit (xpr, xbacktrace): Adjust to match vector header change.
3123 (xvectype): Likewise. Print PVEC_NORMAL_VECTOR for regular vectors.
3124 (xvecsize): New command.
3125
3126 2012-11-08 Dmitry Antipov <dmantipov@yandex.ru>
3127
3128 * keyboard.c (event_to_kboard): Do not dereference
3129 frame_or_window field of SELECTION_REQUEST_EVENT
3130 and SELECTION_CLEAR_EVENT events (Bug#12814).
3131 * xterm.h (struct selection_input_event): Adjust comment.
3132
3133 2012-11-07 Eli Zaretskii <eliz@gnu.org>
3134
3135 * w32fns.c (modifier_set): Don't report modifiers from toggle key,
3136 such as Scroll Lock, if the respective keys are treated as
3137 function keys, not as modifiers. This avoids destroying non-ASCII
3138 keyboard input when Scroll Lock is toggled ON. (Bug#12806)
3139
3140 2012-11-07 Dmitry Antipov <dmantipov@yandex.ru>
3141
3142 * xfns.c (Fx_wm_set_size_hint): Use check_x_frame. Adjust docstring.
3143
3144 2012-11-06 Paul Eggert <eggert@cs.ucla.edu>
3145
3146 Restore some duplicate definitions (Bug#12814).
3147 This undoes part of the 2012-11-03 changes. Some people build
3148 with plain -g rather than with -g3, and they need the duplicate
3149 definitions for .gdbinit to work; see <http://bugs.gnu.org/12814#26>.
3150 * lisp.h (GCTYPEBITS, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK):
3151 Define as macros, as well as as enums or as constants.
3152
3153 2012-11-06 Jan Djärv <jan.h.d@swipnet.se>
3154
3155 * nsterm.m (convert_ns_to_X_keysym, keyDown:): Add NSNumericPadKeyMask
3156 to keypad keys (Bug#12816).
3157
3158 2012-11-06 Paul Eggert <eggert@cs.ucla.edu>
3159
3160 Minor adjustments of recently-changed frame functions.
3161 * buffer.c (Fbuffer_list): Omit CHECK_FRAME, since arg is already
3162 known to be a frame (we're in the FRAMEP branch).
3163 * lisp.h (Qframep): Remove decl. frame.h declares this.
3164 * window.c (quad): Args are of type EMACS_INT, not ptrdiff_t,
3165 since they're meant for Lisp fixnum values.
3166
3167 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
3168
3169 * window.c (Fwindow_combination_limit): Revert to the only
3170 required argument and adjust docstring as suggested in
3171 http://lists.gnu.org/archive/html/emacs-diffs/2012-11/msg01082.html
3172 by Martin Rudalics <rudalics@gmx.at>.
3173
3174 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
3175
3176 Widely used frame validity and checking functions.
3177 * frame.h (decode_live_frame, decode_any_frame): Add prototypes.
3178 * frame.c (decode_live_frame, decode_any_frame): New functions.
3179 (delete_frame, Fredirect_frame_focus, Fframe_parameters)
3180 (Fframe_parameter, Fframe_char_height, Fframe_char_width)
3181 (Fframe_pixel_height, Fframe_pixel_width, Ftool_bar_pixel_width)
3182 (Fframe_pointer_visible_p): Use decode_any_frame.
3183 (Fmake_frame_visible, Fmake_frame_invisible, Ficonify_frame)
3184 (Fraise_frame, Flower_frame, Fmodify_frame_parameters)
3185 (Fset_frame_height, Fset_frame_width): Use decode_live_frame.
3186 (Fframe_focus): Likewise. Allow zero number of arguments.
3187 Adjust docstring.
3188 (frame_buffer_list, frame_buffer_predicate): Remove.
3189 * lisp.h (frame_buffer_predicate): Remove prototype.
3190 * buffer.c (Fother_buffer): Use decode_any_frame.
3191 * xdisp.c (Ftool_bar_lines_needed): Likewise.
3192 * xfaces.c (Fcolor_gray_p, Fcolor_supported_p): Likewise.
3193 * font.c (Ffont_face_attributes, Ffont_family_list, Fopen_font)
3194 (Fclose_font, Ffont_info): Use decode_live_frame.
3195 * fontset.c (check_fontset_name): Likewise.
3196 * terminal.c (Fframe_terminal): Likewise.
3197 * w32fns.c (check_x_frame): Likewise.
3198 * window.c (Fminibuffer_window, Fwindow_at)
3199 (Fcurrent_window_configuration): Likewise.
3200 (Frun_window_configuration_change_hook, Fwindow_resize_apply):
3201 Likewise. Allow zero number of arguments. Adjust docstring.
3202 * dispnew.c (Fredraw_frame): Likewise.
3203 * xfaces.c (frame_or_selected_frame): Remove.
3204 (Fx_list_fonts, Finternal_get_lisp_face_attribute, Fface_font)
3205 (Finternal_lisp_face_equal_p, Finternal_lisp_face_empty_p)
3206 (Fframe_face_alist): Use decode_live_frame.
3207 * xfns.c (check_x_frame): Likewise.
3208
3209 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
3210
3211 * window.c (quad): New function.
3212 (Fwindow_edges, Fwindow_pixel_edges, Fwindow_inside_edges)
3213 (Fwindow_absolute_pixel_edges, Fwindow_inside_absolute_pixel_edges)
3214 (Fwindow_inside_pixel_edges, Fpos_visible_in_window_p)
3215 (Fwindow_line_height): Use it.
3216 (Fwindow_fringes): Use list3.
3217 (Fwindow_scroll_bars): Use list4.
3218 (Fwindow_frame, Fwindow_top_child, Fwindow_left_child)
3219 (Fwindow_combination_limit): Allow zero number of arguments.
3220
3221 2012-11-05 Eli Zaretskii <eliz@gnu.org>
3222
3223 * makefile.w32-in ($(BLD)/w32fns.$(O)): Depend on $(NT_INC)/unistd.h.
3224
3225 * w32fns.c: Include unistd.h, to avoid compiler warnings on Cygwin.
3226 (emacs_abort) [CYGWIN]: Don't call _open_osfhandle; instead, use
3227 file descriptor 2 for standard error. (Bug#12805)
3228
3229 2012-11-05 Chong Yidong <cyd@gnu.org>
3230
3231 * process.c (wait_reading_process_output): Revert previous change.
3232
3233 2012-11-05 Paul Eggert <eggert@cs.ucla.edu>
3234
3235 Assume at least POSIX.1-1988 for getpgrp, setpgid, setsid (Bug#12800).
3236 This removes code that has been obsolete since around 1990.
3237 * callproc.c (Fcall_process):
3238 * emacs.c (main):
3239 * process.c (create_process):
3240 * term.c (dissociate_if_controlling_tty):
3241 Assume setsid exists.
3242 * callproc.c (child_setup): Assume setpgid exists and behaves as
3243 per POSIX.1-1988 or later.
3244 * conf_post.h (setpgid) [!HAVE_SETPGID]: Remove.
3245 * emacs.c (shut_down_emacs):
3246 * sysdep.c (sys_suspend, init_foreground_group):
3247 Assume getpgrp behaves as per POSIX.1-1998 or later.
3248 * msdos.c (setpgrp): Remove.
3249 (tcgetpgrp, setpgid, setsid): New functions.
3250 * systty.h (EMACS_GETPGRP): Remove. All callers now use getpgrp.
3251 * term.c (no_controlling_tty): Remove; unused.
3252 * w32proc.c (setpgrp): Remove.
3253 (setsid, tcgetpgrp): New functions.
3254
3255 Simplify by assuming __fpending.
3256 * dispnew.c: Include <fpending.h>, not <stdio_ext.h>.
3257 (update_frame_1): Use __fpending, not PENDING_OUTPUT_COUNT.
3258 Do not assume that __fpending's result fits in int.
3259
3260 2012-11-04 Paul Eggert <eggert@cs.ucla.edu>
3261
3262 Remove EMACS_OUTQSIZE+sleep hack.
3263 * dispnew.c (update_frame_1): Remove hack for terminals slower
3264 than 2400 bps, which throttled Emacs by having it sleep.
3265 This code hasn't worked since at least 2007, when the multi-tty stuff
3266 was added, and anyway those old terminals are long dead.
3267 * systty.h (EMACS_OUTQSIZE): Remove; unused. The macro isn't used even
3268 without the dispnew.c change, as dispnew.c doesn't include systty.h.
3269
3270 Fix data-loss with --version (Bug#9574).
3271 * emacs.c (close_output_streams): Use strerror, not emacs_strerror,
3272 as we can't assume that emacs_strerror is initialized, and strerror
3273 is good enough here.
3274 (main): Invoke atexit earlier, to catch earlier instances of
3275 sending data to stdout and exiting, e.g., "emacs --version >/dev/full".
3276
3277 2012-11-04 Michael Marchionna <tralfaz@pacbell.net>
3278
3279 * nsterm.m: Add NSClearLineFunctionKey and keypad keys (Bug#8680).
3280 (keyDown): Remap keypad keys to X11 virtual key codes.
3281
3282 2012-11-03 Paul Eggert <eggert@cs.ucla.edu>
3283
3284 Fix data-loss with --batch (Bug#9574).
3285 * emacs.c: Include <close-stream.h>.
3286 (close_output_streams): New function.
3287 (main): Pass it to atexit, so that Emacs closes stdout and stderr
3288 and handles errors appropriately.
3289 (Fkill_emacs): Don't worry about flushing, as close_output_stream
3290 does that now.
3291
3292 Fix a race condition that causes Emacs to mess up glib (Bug#8855).
3293 The symptom is a diagnostic "GLib-WARNING **: In call to
3294 g_spawn_sync(), exit status of a child process was requested but
3295 SIGCHLD action was set to SIG_IGN and ECHILD was received by
3296 waitpid(), so exit status can't be returned." The diagnostic
3297 is partly wrong, as the SIGCHLD action is not set to SIG_IGN.
3298 The real bug is a race condition between Emacs and glib: Emacs
3299 does a waitpid (-1, ...) and reaps glib's subprocess by mistake,
3300 so that glib can't find it. Work around the bug by invoking
3301 waitpid only on subprocesses that Emacs itself creates.
3302 * process.c (create_process, record_child_status_change):
3303 Don't use special value -1 in pid field, as the caller now must
3304 know the pid rather than having the callee infer it.
3305 The inference was sometimes incorrect anyway, due to another race.
3306 (create_process): Set new 'alive' member if child is created.
3307 (process_status_retrieved): New function.
3308 (record_child_status_change): Use it.
3309 Accept negative 1st argument, which means to wait for the
3310 processes that Emacs already knows about. Move special-case code
3311 for DOS_NT (which lacks WNOHANG) here, from caller. Keep track of
3312 processes that have already been waited for, by testing and
3313 clearing new 'alive' member.
3314 (CAN_HANDLE_MULTIPLE_CHILDREN): Remove, as record_child_status_change
3315 now does this internally.
3316 (handle_child_signal): Let record_child_status_change do all
3317 the work, since we do not want to reap all exited child processes,
3318 only the child processes that Emacs itself created.
3319 * process.h (Lisp_Process): New boolean member 'alive'.
3320
3321 Omit duplicate definitions no longer needed with gcc -g3.
3322 * lisp.h (GCTYPEBITS, GCALIGNMENT, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG)
3323 (VALMASK, MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM):
3324 Define only as macros. There's no longer any need to also define
3325 these symbols as enums or as constants, since we now assume
3326 gcc -g3 when debugging.
3327
3328 2012-11-03 Eli Zaretskii <eliz@gnu.org>
3329
3330 * lisp.mk: Adjust comments to the fact that term/internal is now
3331 loaded from loadup.el.
3332
3333 * msdos.c (msdos_abort): Rename from emacs_abort, and make static.
3334 (msdos_fatal_signal): New function.
3335 (XMenuActivate): Adjust the call to kbd_buffer_events_waiting to
3336 its argument list.
3337
3338 * conf_post.h (_GL_EXECINFO_INLINE) [MSDOS]: Define to "inline"
3339 for GCC versions before 4.
3340 (emacs_raise): Define to call msdos_fatal_signal.
3341
3342 * xdisp.c (init_from_display_pos): Fix initialization of the bidi
3343 iterator when starting in the middle of a display or overlay
3344 string. (Bug#12745)
3345
3346 2012-11-03 Chong Yidong <cyd@gnu.org>
3347
3348 * process.c (wait_reading_process_output): Clean up the last
3349 change.
3350
3351 2012-11-03 Jim Paris <jim@jtan.com> (tiny change)
3352
3353 * process.c (wait_reading_process_output): Avoid a race condition
3354 with SIGIO delivery (Bug#11536).
3355
3356 2012-11-03 Chong Yidong <cyd@gnu.org>
3357
3358 * buffer.c (cursor_type): Untabify docstring.
3359
3360 2012-11-03 Dmitry Antipov <dmantipov@yandex.ru>
3361
3362 * frame.h (struct frame): Drop can_have_scroll_bars member
3363 which is meaningless for a long time. Adjust comments.
3364 (FRAME_CAN_HAVE_SCROLL_BARS): Remove.
3365 * frame.c, nsfns.m, term.c, w32fns.c, xfns.c: Adjust users.
3366
3367 2012-11-03 Dmitry Antipov <dmantipov@yandex.ru>
3368
3369 * window.c (decode_next_window_args): Update window arg after
3370 calling decode_live_window and so fix crash reported at
3371 http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00035.html
3372 by Juanma Barranquero <lekktu@gmail.com>.
3373 (Fwindow_body_width, Fwindow_body_height): Simplify a bit.
3374 * font.c (Ffont_at): Likewise.
3375
3376 2012-11-01 Jan Djärv <jan.h.d@swipnet.se>
3377
3378 * widget.c (resize_cb): New function.
3379 (EmacsFrameRealize): Add resize_cb as event handler (Bug#12733).
3380 (EmacsFrameResize): Check if all is up to date before changing frame
3381 size.
3382
3383 2012-11-02 Eli Zaretskii <eliz@gnu.org>
3384
3385 Implement backtrace output for fatal errors on MS-Windows.
3386 * w32fns.c (CaptureStackBackTrace_proc): New typedef.
3387 (BACKTRACE_LIMIT_MAX): New macro.
3388 (w32_backtrace): New function.
3389 (emacs_abort): Use w32_backtrace when the user chooses not to
3390 attach a debugger. Update the text of the abort dialog.
3391
3392 2012-11-02 Dmitry Antipov <dmantipov@yandex.ru>
3393
3394 Window-related stuff cleanup here and there.
3395 * dispnew.c (Finternal_show_cursor, Finternal_show_cursor_p):
3396 Use decode_any_window.
3397 * fringe.c (Ffringe_bitmaps_at_pos): Likewise.
3398 * xdisp.c (Fformat_mode_line): Likewise.
3399 * font.c (Ffont_at): Use decode_live_window.
3400 * indent.c (Fcompute_motion, Fvertical_motion): Likewise.
3401 * window.c (decode_next_window_args): Likewise.
3402 (decode_any_window): Remove static.
3403 * window.h (decode_any_window): Add prototype.
3404 * lisp.h (CHECK_VALID_WINDOW, CHECK_LIVE_WINDOW): Move from here...
3405 * window.h: ...to here, redefine via WINDOW_VALID_P and WINDOW_LIVE_P,
3406 respectively.
3407
3408 2012-11-02 Dmitry Antipov <dmantipov@yandex.ru>
3409
3410 Remove pad from struct input_event.
3411 * termhooks.h (struct input_event): Remove padding field.
3412 Adjust comment.
3413 * keyboard.c (event_to_kboard): Simplify because frame_or_window
3414 member is never cons for a long time. Adjust comment.
3415 (mark_kboards): Adjust because SELECTION_REQUEST_EVENT and
3416 SELECTION_CLEAR_EVENT has no Lisp_Objects to mark. Add comment.
3417 * xterm.c (handle_one_xevent): Do not initialize frame_or_window
3418 field of SELECTION_REQUEST_EVENT and SELECTION_CLEAR_EVENT.
3419
3420 2012-11-01 Eli Zaretskii <eliz@gnu.org>
3421
3422 * w32proc.c (getpgrp, setpgid): New functions. (Bug#12776)
3423
3424 2012-10-31 Paul Eggert <eggert@cs.ucla.edu>
3425
3426 Fix crash when using Emacs as commit editor for git (Bug#12697).
3427 * callproc.c (setpgrp): Remove macro, as we now use setpgid
3428 and it is configured in conf_post.h.
3429 (Fcall_process): Don't invoke both setsid and setpgid; the former
3430 is enough, if it exists.
3431 * callproc.c (Fcall_process, child_setup):
3432 * process.c (create_process): Use setpgid.
3433 * conf_post.h (setpgid) [!HAVE_SETPGID]: New macro, which substitutes
3434 for the real thing.
3435 * dispnew.c (init_display): Initialize the foreground group
3436 if we are running a tty display.
3437 * emacs.c (main): Do not worry about setpgrp; init_display does it now.
3438 * lisp.h (init_foreground_group): New decl.
3439 * sysdep.c (inherited_pgroup): New static var.
3440 (init_foreground_group, tcsetpgrp_without_stopping)
3441 (narrow_foreground_group, widen_foreground_group): New functions.
3442 (init_sys_modes): Narrow foreground group.
3443 (reset_sys_modes): Widen foreground group.
3444
3445 2012-10-31 Michael Albinus <michael.albinus@gmx.de>
3446
3447 * dbusbind.c: Fix cut'n'waste error. Use HAVE_DBUS_VALIDATE_INTERFACE.
3448
3449 2012-10-31 Martin Rudalics <rudalics@gmx.at>
3450
3451 * minibuf.c (read_minibuf): Restore current buffer since
3452 choose_minibuf_frame calling Fset_frame_selected_window may
3453 change it (Bug#12766).
3454
3455 2012-10-30 Jan Djärv <jan.h.d@swipnet.se>
3456
3457 * frame.c (Fframe_pixel_height): Fix documentation (Bug#12733).
3458
3459 2012-10-30 Kenichi Handa <handa@gnu.org>
3460
3461 * font.c (Ffont_at): If WINDOW is specified and it is not
3462 displaying the current buffer, signal an error.
3463
3464 2012-10-29 Daniel Colascione <dancol@dancol.org>
3465
3466 * cygw32.h, cygw32.c (Qutf_16le, from_unicode, to_unicode):
3467 In preparation for fixing bug#12739, move these functions from
3468 here...
3469
3470 * coding.h, coding.c: ... to here, and compile them only when
3471 WINDOWSNT or CYGWIN. Moving these functions out of cygw32 proper
3472 lets us write cygw32-agnostic code for the HAVE_NTGUI case.
3473
3474 2012-10-28 Eli Zaretskii <eliz@gnu.org>
3475
3476 * w32proc.c (TIMER_TICKS_PER_SEC): New macro.
3477 (timer_loop, getitimer, setitimer): Use it instead of
3478 CLOCKS_PER_SEC, which is no longer pertinent, since we don't use
3479 'clock'.
3480 (w32_get_timer_time): Use 10*TIMER_TICKS_PER_SEC instead of a
3481 literal 10000.
3482
3483 2012-10-28 Jan Djärv <jan.h.d@swipnet.se>
3484
3485 * nsterm.m (NO_APPDEFINED_DATA): New define.
3486 (last_appdefined_event_data): New variable
3487 (last_appdefined_event): Remove.
3488 (ns_select): Initialize t from last_appdefined_event_data instead
3489 of [last_appdefined_event data1].
3490 (sendEvent:): Save [theEvent data1] to last_appdefined_event_data,
3491 remove last_appdefined_event (Bug#12698).
3492
3493 2012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
3494
3495 * frame.c (x_set_font): Catch internal error.
3496
3497 2012-10-27 Eli Zaretskii <eliz@gnu.org>
3498
3499 Avoid overflow in w32 implementation of interval timers.
3500 When possible, for ITIMER_PROF count only times the main thread
3501 actually executes.
3502 * w32proc.c <struct itimer_data>: 'expire' and 'reload' are now
3503 'volatile ULONGLONG' types. All the other data which was
3504 previously clock_t is now ULONGLONG. 'terminate' is 'volatile int'.
3505 (GetThreadTimes_Proc): New typedef.
3506 (w32_get_timer_time): New function, returns a suitable time value
3507 for the timer.
3508 (timer_loop): Enter critical section when accessing ULONGLONG
3509 values of the itimer_data struct, as these accesses are no longer
3510 atomic. Call 'w32_get_timer_time' instead of 'clock'.
3511 Remove unused variable.
3512 (init_timers): Initialize s_pfn_Get_Thread_Times.
3513 (start_timer_thread): Don't assign itimer->caller_thread here.
3514 (getitimer): Assign itimer->caller_thread here.
3515 (setitimer): Always call getitimer to get the value of ticks_now.
3516 (sys_spawnve): Avoid compiler warning about format mismatch.
3517
3518 2012-10-26 Eli Zaretskii <eliz@gnu.org>
3519
3520 * w32fns.c (w32_wnd_proc) <WM_MOUSEMOVE>: Don't enable tracking of
3521 mouse movement events if the menu bar is active. This avoids
3522 producing a busy "hour-glass" cursor by Windows if the mouse
3523 pointer is positioned over a tooltip shown for some menu item.
3524
3525 2012-10-25 Paul Eggert <eggert@cs.ucla.edu>
3526
3527 Don't assume process IDs fit in int.
3528 * emacs.c (shut_down_emacs) [!DOS_NT]:
3529 * sysdep.c (sys_suspend) [SIGTSTP && !MSDOS]:
3530 * term.c (dissociate_if_controlling_tty) [!DOS_NT]:
3531 Use pid_t, not int, to store process IDs, as 'int'
3532 is not wide enough on a few platforms (e.g., AIX and IRIX).
3533
3534 2012-10-23 Kenichi Handa <handa@gnu.org>
3535
3536 The following change is to make face-font-rescale-alist work
3537 correctly for non-ASCII fonts.
3538
3539 * font.c (font_open_entity): Don't handle Vface_font_rescale_alist.
3540 (font_open_for_lface): Handle Vface_font_rescale_alist.
3541
3542 2012-10-23 Chong Yidong <cyd@gnu.org>
3543
3544 * xfaces.c (Vfont_list_limit): Move unused variable to faces.el.
3545
3546 2012-10-21 Jan Djärv <jan.h.d@swipnet.se>
3547
3548 * nsfont.m (nsfont_open, ns_glyph_metrics): Force integer advancement
3549 for screen font.
3550 (nsfont_draw): Turn off LCD-smoothing (Bug#11484).
3551
3552 * xterm.c (x_focus_changed): Check if daemonp when sending focus in
3553 event (Bug#12681).
3554
3555 2012-10-21 Glenn Morris <rgm@gnu.org>
3556
3557 * lisp.mk (lisp): Add cp51932.el and eucjp-ms.el.
3558
3559 2012-10-20 Paul Eggert <eggert@cs.ucla.edu>
3560
3561 Port to OpenBSD 5.1.
3562 * frame.c (Fmouse_position, Fmouse_pixel_position):
3563 * xdisp.c (produce_stretch_glyph):
3564 Declare local vars only when they're needed.
3565 This is clearer and avoids a warning on OpenBSD about unused vars.
3566 * frame.h (FRAME_WINDOW_P): Always evaluate its argument.
3567 This is safer, and avoids OpenBSD warnings about unused vars.
3568 * keyboard.c (record_menu_key): Remove unnecessary decl.
3569 (poll_timer): Define only if POLL_FOR_INPUT is defined.
3570 * unexelf.c (ELFSIZE) [!ElfW]: Do not define if already defined,
3571 as our definition clashes with OpenBSD's.
3572 * xfaces.c (load_face_colors, check_lface_attrs)
3573 (get_lface_attributes_no_remap, get_lface_attributes)
3574 (lface_fully_specified_p, x_supports_face_attributes_p)
3575 (tty_supports_face_attributes_p, face_fontset, realize_face)
3576 (realize_x_face, realize_tty_face):
3577 Declare parameters to be Lisp_Object[LFACE_VECTOR_SIZE], not
3578 merely Lisp_Object *. This is more informative and avoids
3579 a warning on OpenBSD about accessing beyond an object's size.
3580
3581 2012-10-20 Chong Yidong <cyd@gnu.org>
3582
3583 * lread.c (Fload): Doc fix (Bug#12592).
3584
3585 2012-10-19 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
3586
3587 * font.c (Ffont_at): Fix previous change.
3588
3589 2012-10-19 Eli Zaretskii <eliz@gnu.org>
3590
3591 * puresize.h (BASE_PURESIZE): Bump the base value to 1700000.
3592 See http://lists.gnu.org/archive/html/emacs-devel/2012-10/msg00593.html
3593 for the reasons.
3594
3595 * alloc.c (NSTATICS): Decrease to 0x800.
3596
3597 2012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
3598
3599 * fns.c (Fnreverse): Include the problem element when signaling an
3600 error (bug#12677).
3601
3602 2012-10-18 Jan Djärv <jan.h.d@swipnet.se>
3603
3604 * nsterm.m (ns_select): Check writefds before call to
3605 FD_ISSET (Bug#12668).
3606
3607 2012-10-18 Daniel Colascione <dancol@dancol.org>
3608
3609 * alloc.c (NSTATICS): Increase from 0x650 to 0x1000
3610 (staticpro): If we run out of staticpro slots, die with an
3611 informative error instead of just calling emacs_abort.
3612
3613 2012-10-18 Martin Rudalics <rudalics@gmx.at>
3614
3615 Fix two flaws reported by Dmitry Antipov.
3616 * window.c (Ftemp_output_buffer_show): Remove.
3617 (Fwindow_vscroll, Fset_window_vscroll): Use decode_live_window.
3618 (syms_of_window): Remove defsubr for Stemp_output_buffer_show.
3619
3620 2012-10-17 Eli Zaretskii <eliz@gnu.org>
3621
3622 * makefile.w32-in ($(BLD)/w32.$(O)):
3623 ($(BLD)/vm-limit.$(O)):
3624 ($(BLD)/term.$(O)):
3625 ($(BLD)/unexw32.$(O)):
3626 ($(BLD)/fileio.$(O)):
3627 ($(BLD)/dispnew.$(O)): Update dependencies.
3628
3629 * w32term.h (w32_initialize_display_info, initialize_w32_display):
3630 Add prototypes.
3631
3632 * w32proc.c: Include ctype.h.
3633
3634 * w32.h (init_environment, check_windows_init_file)
3635 (syms_of_ntproc, syms_of_ntterm, dostounix_filename)
3636 (unixtodos_filename, init_winsock, srandom, random, sys_pipe)
3637 (set_process_dir, sys_spawnve, register_child, sys_sleep, getwd)
3638 (sys_link): Add prototypes.
3639
3640 * w32.c: Include w32select.h.
3641 (sys_access, e_malloc, sys_select): Add prototypes.
3642 (emacs_gnutls_pull): 'timeout' is now EMACS_TIME, not struct timeval.
3643
3644 * vm-limit.c [WINDOWSNT]: Include w32heap.h.
3645
3646 * unexw32.c: Include lisp.h and w32.h.
3647
3648 * term.c [WINDOWSNT]: Include w32term.h.
3649
3650 * process.c [WINDOWSNT]: Add prototype of sys_select.
3651
3652 * fileio.c [WINDOWSNT]: Include w32.h.
3653
3654 * dispnew.c [WINDOWSNT]: Include w32.h.
3655
3656 * cygw32.c (Fcygwin_convert_path_to_windows)
3657 (Fcygwin_convert_path_from_windows): Use EQ to compare 2
3658 Lisp_Object values. (Bug#12661)
3659
3660 * w32fns.c (w32_msg_pump): Use XIL instead of casting an integer
3661 to Lisp_Object. (Bug#12661)
3662
3663 2012-10-17 Kenichi Handa <handa@gnu.org>
3664
3665 * xdisp.c (reseat_1): Make the information stored in it->cmp_it
3666 invalidate.
3667
3668 2012-10-17 Dmitry Antipov <dmantipov@yandex.ru>
3669
3670 * buffer.c (Fkill_buffer): When unchaining the marker,
3671 reset its buffer pointer to NULL (Bug#12652).
3672
3673 2012-10-17 Dmitry Antipov <dmantipov@yandex.ru>
3674
3675 Do not verify indirection counters of killed buffers (Bug#12579).
3676 * buffer.h (BUFFER_CHECK_INDIRECTION): New macro.
3677 * buffer.c (compact_buffer, set_buffer_internal_1): Use it.
3678
3679 2012-10-16 Dmitry Antipov <dmantipov@yandex.ru>
3680
3681 * alloc.c (Fmake_byte_code): Fix typo in comment.
3682 * print.c (print_interval): Define as static to match prototype.
3683 * indent.c (disptab_matches_widthtab, recompute_width_table):
3684 Convert to eassert.
3685
3686 2012-10-16 Dmitry Antipov <dmantipov@yandex.ru>
3687
3688 * editfns.c (get_system_name): Remove.
3689 * lisp.h (get_system_name): Remove prototype.
3690 * xrdb.c (getenv, getpwuid, getpwnam): Remove prototypes.
3691 (get_environ_db): Use Vsystem_name. Avoid call to strlen.
3692
3693 2012-10-15 Daniel Colascione <dancol@dancol.org>
3694
3695 * dbusbind.c: Add comment explaining reason for previous change.
3696
3697 2012-10-15 Martin Rudalics <rudalics@gmx.at>
3698
3699 * window.c (Fwindow_end): Rewrite check whether cached position
3700 can be used (Bug#12600).
3701 (resize_frame_windows, grow_mini_window, shrink_mini_window):
3702 Set windows_or_buffers_changed.
3703
3704 2012-10-15 Daniel Colascione <dancol@dancol.org>
3705
3706 * dbusbind.c: Fix cygw32 build break when compiling with dbus
3707 enabled by undefining the symbol "interface", which the platform
3708 headers define to something incompatible.
3709
3710 2012-10-14 Daniel Colascione <dancol@dancol.org>
3711
3712 * image.c (init_tiff_functions, init_imagemagick_functions)
3713 (init_svg_functions): Fix cygw32 build break by using these
3714 functions only when WINDOWSNT _and_ HAVE_NTGUI.
3715
3716 2012-10-14 Jan Djärv <jan.h.d@swipnet.se>
3717
3718 * nsterm.m (ns_select): Count fd:s in writefs also (Bug#12422).
3719
3720 2012-10-13 Jan Djärv <jan.h.d@swipnet.se>
3721
3722 * gtkutil.c (xg_set_widget_bg): Divide by 65535 (Bug#12612).
3723
3724 2012-10-13 HANATAKA, Shinya <bogytech@gmail.com> (tiny change)
3725
3726 * coding.c (detect_coding): Set coding->id before calling
3727 this->detector.
3728
3729 2012-10-13 Andreas Schwab <schwab@linux-m68k.org>
3730
3731 * fileio.c: Formatting fixes.
3732
3733 2012-10-13 Paul Eggert <eggert@cs.ucla.edu>
3734
3735 Fix some stat-related races.
3736 * fileio.c (Fwrite_region): Avoid race condition if a file is
3737 removed or renamed by some other process immediately after Emacs
3738 writes it but before Emacs stats it. Do not assume that stat (or
3739 fstat) succeeds.
3740 * image.c (slurp_file): Resolve the file name with fopen + fstat
3741 rather than stat + fopen.
3742 (pbm_read_file) [0]: Remove unused code with stat race.
3743 * process.c (allocate_pty) [HAVE_PTYS && !PTY_ITERATION && !PTY_OPEN]:
3744 Remove ineffective code with stat race.
3745
3746 2012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
3747
3748 * doc.c (get_doc_string): Don't signal an error if the file is missing.
3749
3750 2012-10-12 Jan Djärv <jan.h.d@swipnet.se>
3751
3752 * nsterm.m (hold_event_q): New static variable.
3753 (EV_TRAILER, sendScrollEventAtLoc:fromEvent:): Call hold_event if
3754 ! q_event_ptr.
3755 (hold_event): New function.
3756 (ns_read_socket): If hold_event_q have events, store them and
3757 return (Bug#12384).
3758 (setPosition:portion:whole:): Send SIGIO to ourselves if apploopnr
3759 is zero (Bug#12384).
3760
3761 2012-10-12 Juanma Barranquero <lekktu@gmail.com>
3762
3763 * makefile.w32-in ($(BLD)/w32select.$(O)): Update dependencies.
3764
3765 2012-10-12 Eli Zaretskii <eliz@gnu.org>
3766
3767 * makefile.w32-in ($(BLD)/fileio.$(O)): Add sys/file.h.
3768
3769 * fileio.c (check_existing): New function.
3770 (make_temp_name, Ffile_exists_p, Ffile_writable_p): Call it
3771 instead of calling 'stat', when what's needed is to check whether
3772 a file exists. This avoids expensive system calls on MS-Windows.
3773 (Bug#12587)
3774
3775 * w32.c (init_environment): Call 'check_existing' instead of 'stat'.
3776
3777 * lread.c (openp) [WINDOWSNT]: Call 'access' instead of 'stat' to
3778 determine whether a file exists and is not a directory.
3779
3780 * lisp.h (check_existing): Add prototype.
3781
3782 2012-10-12 Jan Djärv <jan.h.d@swipnet.se>
3783
3784 * nsfont.m (nsfont_open): Remove font cache, it is not GC correct.
3785
3786 2012-10-12 Glenn Morris <rgm@gnu.org>
3787
3788 * buffer.c (Fset_buffer): Doc fix. (Bug#12624)
3789
3790 2012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
3791
3792 * buffer.c (Fkill_buffer): Null out the overlay list(s) as well.
3793
3794 * eval.c (Fautoload): Remember previous autoload status in load-history.
3795
3796 2012-10-11 Paul Eggert <eggert@cs.ucla.edu>
3797
3798 lread.c, macros.c, marker.c, menu.c, minibuf.c: Use bool for booleans.
3799 * lread.c (load_each_byte, new_backquote_flag, readchar)
3800 (read_filtered_event, lisp_file_lexically_bound_p)
3801 (safe_to_load_version, Fload, complete_filename_p, openp)
3802 (build_load_history, readevalloop, read_escape, read1)
3803 (string_to_number, read_vector, read_list):
3804 * macros.c (Fstart_kbd_macro):
3805 * marker.c (CONSIDER):
3806 * menu.c (parse_single_submenu, digest_single_submenu)
3807 (find_and_return_menu_selection, Fx_popup_menu):
3808 * minibuf.c (read_minibuf_noninteractive, read_minibuf)
3809 (Ftry_completion):
3810 * nsmenu.m (ns_update_menubar, runMenuAt:forFrame:keymaps:):
3811 (ns_menu_show):
3812 * xmenu.c (set_frame_menubar, create_and_show_popup_menu)
3813 (xmenu_show, xdialog_show):
3814 Use bool for booleans.
3815 * lread.c (safe_to_load_version): Rename from safe_to_load_p,
3816 as it's not a predicate. All uses changed. Omit unnecessary
3817 buffer termination.
3818
3819 2012-10-11 Dmitry Antipov <dmantipov@yandex.ru>
3820
3821 * editfns.c (save_excursion_save): Use nil if mark points to nowhere.
3822 (save_excursion_restore): Do not restore mark if it was not saved.
3823
3824 2012-10-11 Paul Eggert <eggert@cs.ucla.edu>
3825
3826 * marker.c (cached_modiff): EMACS_INT, not int.
3827
3828 * w32select.c (waiting_for_input): Declare by including "keyboard.h"
3829 instead of having a wrong decl.
3830 * nsmenu.m (waiting_for_input): Remove wrong decl.
3831
3832 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
3833
3834 keyboard.c, keymap.c: Use bool for booleans.
3835 * dispnew.c (sit_for): Distinguish between 3-way display_option
3836 and boolean do_display.
3837 * keyboard.c (single_kboard, this_command_key_count_reset)
3838 (waiting_for_input, echoing, immediate_quit, input_pending)
3839 (interrupt_input, interrupts_deferred, pop_kboard)
3840 (temporarily_switch_to_single_kboard, ignore_mouse_drag_p)
3841 (command_loop_1, adjust_point_for_property)
3842 (safe_run_hooks_error, input_polling_used, read_char):
3843 (help_char_p, readable_events, kbd_buffer_events_waiting)
3844 (kbd_buffer_get_event, timer_check_2, make_lispy_event)
3845 (lucid_event_type_list_p, get_input_pending):
3846 (gobble_input, menu_separator_name_p, menu_bar_item)
3847 (parse_menu_item, parse_tool_bar_item, read_char_x_menu_prompt)
3848 (read_char_minibuf_menu_prompt, access_keymap_keyremap)
3849 (keyremap_step, test_undefined, read_key_sequence)
3850 (detect_input_pending, detect_input_pending_ignore_squeezables)
3851 (detect_input_pending_run_timers, requeued_events_pending_p)
3852 (quit_throw_to_read_char, Fset_input_interrupt_mode):
3853 * keymap.c (get_keymap, keymap_parent, keymap_memberp)
3854 (access_keymap_1, access_keymap, map_keymap, get_keyelt)
3855 (Fdefine_key, Flookup_key, struct accessible_keymaps_data)
3856 (accessible_keymaps_1, Fkey_description, push_key_description):
3857 (shadow_lookup, struct where_is_internal_data)
3858 (where_is_internal, Fwhere_is_internal, where_is_internal_1)
3859 (Fdescribe_buffer_bindings, describe_map_tree, struct describe_map_elt)
3860 (describe_map, describe_vector):
3861 * menu.c (single_menu_item):
3862 * nsmenu.m (ns_update_menubar):
3863 * process.c (wait_reading_process_output):
3864 * search.c (scan_buffer, scan_newline):
3865 Use bool for boolean.
3866 * keyboard.c (timers_run, swallow_events)
3867 (detect_input_pending_run_timers):
3868 * process.c (wait_reading_process_output):
3869 Use unsigned for counter where wraparound-on-overflow is desired,
3870 since unsigned is guaranteed to have that behavior and signed is not.
3871 (read_char): Use ptrdiff_t for string length.
3872 (get_input_pending): Remove first argument, since it was always
3873 the same pointer-to-int (now pointer-to-boolean) &input_pending,
3874 and behave as if it had that value. Return new value of
3875 input_pending. All callers changed.
3876 * keyboard.h (struct kboard): Use unsigned : 1 for boolean member
3877 immediate_echo. Use ptrdiff_t for echo_after_prompt, since it's
3878 a string length.
3879 * keymap.c (push_key_description): Omit last arg, which was always 1.
3880 All callers changed.
3881
3882 * regex.c (immediate_quit) [emacs]: Remove duplicate decl.
3883
3884 2012-10-10 Juanma Barranquero <lekktu@gmail.com>
3885
3886 * makefile.w32-in ($(BLD)/dispnew.$(O), $(BLD)/indent.$(O))
3887 ($(BLD)/term.$(O)): Update dependencies.
3888
3889 2012-10-10 Dmitry Antipov <dmantipov@yandex.ru>
3890
3891 * alloc.c (mark_object): Use meaningful PVEC_NORMAL_VECTOR.
3892 * lisp.h (enum pvec_type): Adjust comments and omit explicit
3893 initializer for PVEC_NORMAL_VECTOR.
3894
3895 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
3896
3897 Clean out old termopts cruft.
3898 * termopts.h (flow_control, meta_key): Remove unused decls.
3899 * dispnew.c, indent.c, nsterm.m, term.c, xsettings.c, xsmfns.c:
3900 Don't include termopts.h.
3901
3902 2012-10-10 Dmitry Antipov <dmantipov@yandex.ru>
3903
3904 * alloc.c (gc_sweep): Use pointer-to-a-pointer loop for buffers.
3905
3906 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
3907
3908 * commands.h (immediate_quit): Remove duplicate decl.
3909
3910 2012-10-09 Jan Djärv <jan.h.d@swipnet.se>
3911
3912 * nsfont.m (Vfonts_in_cache): Remove, not needed as font.c handles
3913 caching.
3914 (nsfont_open): Remove setting of Vfonts_in_cache.
3915 (syms_of_nsfont): Remove initialization of Vfonts_in_cache.
3916
3917 2012-10-09 Eli Zaretskii <eliz@gnu.org>
3918
3919 * w32fns.c (w32_last_error): Change the return value to DWORD, to
3920 match what GetLastError returns. Explain why the function is
3921 needed.
3922
3923 * frame.c (delete_frame): Rename local variable 'tooltip_frame' to
3924 'is_tooltip_frame', to avoid confusion with its global namesake.
3925
3926 2012-10-08 Daniel Colascione <dancol@dancol.org>
3927
3928 * xdisp.c (start_hourglass): Call w32_note_current_window when
3929 HAVE_NTGUI, not just WINDOWSNT, resolving a problem in the cygw32
3930 build that caused Emacs to display the hourglass cursor forever.
3931
3932 * w32fns.c (Fx_display_color_cells): Instead of using NCOLORS,
3933 which is broken under remote desktop, calculate the number of
3934 colors available for a display based on the display's number of
3935 planes and number of bits per pixel per plane. (bug#10397).
3936
3937 2012-10-08 Jan Djärv <jan.h.d@swipnet.se>
3938
3939 * nsfont.m (Vfonts_in_cache): New variable.
3940 (nsfont_open): Use unsignedLongLongValue for cache in case wide ints
3941 are used. Add cached fonts to Vfonts_in_cache.
3942 (syms_of_nsfont): Initialize and staticpro Vfonts_in_cache.
3943
3944 2012-10-08 Juanma Barranquero <lekktu@gmail.com>
3945
3946 * makefile.w32-in (LOCAL_FLAGS): Don't define HAVE_NTGUI, it's now
3947 in nt/config.nt.
3948 (FONT_H): Define after FRAME_H.
3949 ($(BLD)/emacs.$(O), $(BLD)/process.$(O), $(BLD)/w32heap.$(O)):
3950 Update dependencies.
3951
3952 * w32term.c: Remove leftover declaration of keyboard_codepage.
3953
3954 2012-10-08 Eli Zaretskii <eliz@gnu.org>
3955
3956 * makefile.w32-in (FONT_H): Add $(FRAME_H).
3957 (W32TERM_H): Add $(ATIMER_H) and $(FRAME_H).
3958 ($(BLD)/emacs.$(O), $(BLD)/w32console.$(O)): Update dependencies.
3959 (GLOBAL_SOURCES): Add cygw32.c.
3960 ($(BLD)/unexw32.$(O)):
3961 ($(BLD)/w32.$(O)):
3962 ($(BLD)/w32console.$(O)):
3963 ($(BLD)/w32fns.$(O)):
3964 ($(BLD)/w32heap.$(O)):
3965 ($(BLD)/w32menu.$(O)):
3966 ($(BLD)/w32proc.$(O)): Add w32common.h.
3967
3968 * w32fns.c (w32_color_map_lookup, x_to_w32_color): Argument is now
3969 'const char *'.
3970 (x_to_w32_color): Don't modify the argument, modify a copy instead.
3971
3972 2012-10-08 Daniel Colascione <dancol@dancol.org>
3973
3974 * w32term.h (WM_EMACS_BRINGTOTOP, WM_EMACS_INPUT_READY)
3975 (WM_EMACS_END): Change WM_EMACS_BRINGTOTOP from 22 to 21 to close
3976 accidental message numbering hole. Change other messages to
3977 match.
3978
3979 * w32select.h (HAVE_W32SELECT): Remove.
3980
3981 * w32select.c, w32proc.c, w32menu.c, w32console.c, w32.c: Include
3982 w32common.h instead of w32heap.h.
3983
3984 * w32heap.h (ROUND_UP, ROUND_DOWN, get_page_size)
3985 (get_allocation_unit, get_processor_type, get_w32_major_version)
3986 (get_w32_minor_version, sysinfo_cache, osinfo_cache)
3987 (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
3988 (OS_NT, os_subtype, cache_system_info): Move declarations to
3989 w32common.
3990
3991 * w32heap.c: Include w32common.h.
3992 (sysinfo_cache, syspage_mask, osinfo_cache, w32_major_version)
3993 (w32_minor_version, w32_build_number, w32_subtype):
3994 Remove duplicate definitions.
3995
3996 * w32fns.c: Include w32common.h; include w32heap.h only in
3997 WINDOWSNT.
3998
3999 (Fx_file_dialog): Clarify comment on GetOpenFileName structure.
4000 Use `report_file_error' instead of `error' in order to better
4001 inform users of what went wrong. Increase NTGUI_UNICODE file
4002 dialog box file name length to 32k, the maximum allowed by the NT
4003 kernel.
4004
4005 * w32common.h: New file.
4006 (ROUND_UP, ROUND_DOWN, get_page_size)
4007 (get_allocation_unit, get_processor_type, get_w32_major_version)
4008 (get_w32_minor_version, sysinfo_cache, osinfo_cache)
4009 (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
4010 (OS_NT, os_subtype, cache_system_info): Move here.
4011
4012 * unexw32.c, unexcw.c: Include w32common.h.
4013
4014 * emacs.c (main): Use (defined (WINDOWSNT) || defined
4015 HAVE_NTGUI) instead of removed HAVE_W32SELECT to decide whether
4016 to call syms_of_w32select.
4017
4018 * cygw32.h: Remove obsolete EXFUN declarations.
4019
4020 * cygw32.c (Qutf_16_le): Rename to Qutf_16le.
4021
4022 * Makefile.in (SOME_MACHINE_OBJECTS): Reverse accidental removal
4023 of w32inevt.o from SOME_MACHINE_OBJECTS.
4024
4025 2012-10-08 Daniel Colascione <dancol@dancol.org>
4026
4027 * image.c: Permanent fix for JPEG compilation issue --- limit
4028 jpeglib `boolean' redefinition to Cygwin builds.
4029
4030 2012-10-08 Eli Zaretskii <eliz@gnu.org>
4031
4032 * image.c (CHECK_LIB_AVAILABLE): Remove, no longer used.
4033
4034 * emacs.c (DAEMON_MUST_EXEC) [HAVE_NTGUI]: Define this only on
4035 Cygwin.
4036
4037 2012-10-08 Daniel Colascione <dancol@dancol.org>
4038
4039 * xfaces.c, xdisp.c, window.c, w32xfns.c, w32term.h, w32term.c,
4040 w32select.h w32select.c, w32proc.c, w32menu.c, w32inevt.c,
4041 w32help.c, w32font.c, w32font.c, w32fns.c, w32console.c, w32.h,
4042 w32.c, unexw32.c, termhooks.h, process.c, menu.c, keyboard.h,
4043 keyboard.c, image.c, frame.h, frame.c, fontset.c, font.h, font.c,
4044 emacs.c, dispextern.h, cygw32.h, cygw32.c, conf_post.h,
4045 Makefile.in: use HAVE_NTGUI for W32 GUI and WINDOWSNT for the
4046 operating system. defined(HAVE_NTGUI) && !defined(WINDOWSNT) is
4047 now a supported configuration.
4048
4049 * Makefile.in: consolidate image variables into LIBIMAGE; add
4050 W32_OBJ and W32_LIBS. Compile new files.
4051
4052 * conf_post.h:
4053 (_DebPrint) declare tracing facility for W32 debugging. We need
4054 to unify tracing later.
4055
4056 (NTGUI_UNICODE) Define when compiling for Cygwin to allow the
4057 unconditional use of W32 Unicode functions. Cygwin runs only on
4058 100% Unicode operating systems.
4059
4060 * cygw32.c: New file. Define Cygwin-specific facilities.
4061 (Fcygwin_convert_path_to_windows)
4062 (Fcygwin_convert_path_from_windows): New user functions for
4063 accessing Cygwin path-munging routines.
4064
4065 * cygw32.h: New file.
4066 (WCSDATA, to_unicode, from_unicode): Define facilities for storing
4067 UTF-16LE strings temporarily inside non-Lisp-visible string
4068 objects.
4069
4070 (w32_strerror): Just what it says on the tin.
4071
4072 * emacs.c: Make the NS fork-then-exec code for daemon-launching
4073 also run for Cygwin; both systems have the same problem with using
4074 GUI facilities in a forked child. Also call syms_of_cygw32,
4075 syms_of_w32select in correct places.
4076
4077 (DAEMON_MUST_EXEC): new macro defined to signal that a platform
4078 needs fork-then-exec for daemon launching.
4079
4080 * font.h: Include frame.h.
4081
4082 * image.c: Use the image library cache machinery only when we're
4083 compiling for native WINDOWSNT; Cygwin can use shared libraries
4084 like any other Unixlike system.
4085
4086 * keyboard.c: Clarify a comment regarding the input loop.
4087
4088 * menu.c: When NTGUI_UNICODE is defined, use Unicode menu
4089 functions directly instead of trying to detect at runtime that our
4090 host operating system supports them. We make this change for two
4091 reasons: Cygwin lacks support for the multibyte character
4092 conversion functions used by the legacy menu code, and Cygwin
4093 never needs to rely on non-Unicode APIs.
4094
4095 * unexw32.c (hinst): Declare extern.
4096
4097 * w32.c: Change header order;
4098 (w32_strerror): Move to w32fns.c because we need it for
4099 non-WINDOWSNT builds.
4100
4101 * w32.h: Add #error macro to make sure we don't include w32.h for
4102 Cygwin builds. Remove w32select declarations.
4103
4104 * w32console.c (w32_sys_ring_bell, Fset_message_beep): Move to
4105 w32fns.c. w32console.c is WINDOWSNT-only.
4106
4107 * w32fns.c: Include cygw32.h or w32.h depending on CYGWIN; more
4108 NTGUI_UNICODE tweaks. (See above.) Change _snprintf to the more
4109 POSIXy alternative.
4110 (faked_key, sysinfo_cache, osinfo_cahce, syspage_mask)
4111 (w32_major_version, w32_minor_version, w32_build_number)
4112 (os_subtype, sound_type): Define here
4113 (w32_defined_color): Make color parameter const for consistency
4114 with other _defined_color functions.
4115 (w32_createwindow): Unconditionally call w32_init_class instead of
4116 doing so only when hprevinst is non-NULL. Plumbing hprevinst
4117 through the code is complex and unnecessary because class
4118 registration is practically free.
4119 (w32_name_of_message): New EMACSDEBUG-only function.
4120 (Fset_message_beep): Move here
4121 (Fx_open_connection): Require that the display name for Windows be
4122 "w32" for consistency, emacsclient disambiguation, and maybe, one
4123 day, multi-window-system support.
4124 (file_dialog_callback): NTGUI_UNICODE changes; encode and decode
4125 Cygwin files for W32 GUI facilities, since these clearly don't
4126 expect Cygwin names.
4127 (_DebPrint): Define.
4128 (w32_strerror, w32_console_toggle_lock_key, w32_kbd_mods_to_emacs)
4129 (w32_kbd_patch_key, w32_sys_ring_bell): Move here.
4130 (Ssystem_move_file_to_trash): Define only for native WINDOWSNT.
4131 (w32_last_error): Remove.
4132
4133 * w32font.c: Define _strlwr to strlwr for non-WINDOWSNT builds.
4134
4135 * w32heap.c (syspage_mask): Declare here.
4136 (cache_system_info): Remove.
4137
4138 * w32inevt.c (faked_key): Define globally, not statically.
4139 (w32_kbd_mods_to_emacs, w32_kbd_patch_key, faked_key)
4140 (w32_console_toggle_lock_key): Move to w32fns.c.
4141
4142 * w32menu.c: Include setjmp.h. NTGUI_UNICODE changes throughout.
4143
4144 * w32proc.c (_DebPrint): Move to w32fns.c.
4145 * w32select.c: Include string.h, stdio.h for Cygwin.
4146 * w32select.h: New File.
4147
4148 * w32term.c: Include io.h for non-CYGWIN builds; needed for
4149 get_osfhandle.
4150 (w32_message_fd): New variable. Under Cygwin, holds the file
4151 descriptor the system used to tell us about pending thread
4152 messages.
4153
4154 (w32_init_term): Remove incorrect calls to fcntl and init_sigio
4155 that prevented compilation under non-WINDOWSNT systems.
4156
4157 (w32_initialize): Open /dev/windows and assign it to
4158 w32_message_fd. Provide w32 feature.
4159
4160 * w32term.h: Include frame.h, atimer.h. Declare various frame functions.
4161 (WM_EMACS_INPUT_READY): add.
4162 (prepend_msg, w32_message_fd): Declare globally.
4163
4164 * w32xfns.c:
4165 (keyboard_handle): Use only when WINDOWSNT.
4166 (notify_msg_ready): New function. Posts a message to the main
4167 thread's message queue under CYGWIN, which wakes up the main
4168 thread from select(2) by making the /dev/windows file descriptor
4169 ready. Under WINDOWSNT, it sets an event the same way the old
4170 code did.
4171
4172 (post, prepend_msg): Actually call notify_msg_ready instead of
4173 setting the input event directly.
4174
4175 2012-10-07 Eli Zaretskii <eliz@gnu.org>
4176
4177 * ralloc.c (relinquish): If a heap is ready to be relinquished,
4178 but it still has blocs in it, don't return it to the system,
4179 instead of aborting. (Bug#12402)
4180
4181 2012-10-07 Jan Djärv <jan.h.d@swipnet.se>
4182
4183 * nsterm.m (ns_dumpglyphs_image): Only draw slice of image (Bug#12506).
4184
4185 * nsterm.m (ns_update_auto_hide_menu_bar): Remove defintion of
4186 MAC_OS_X_VERSION_10_6.
4187 (syms_of_nsterm): Remove comment about Panther and above for
4188 ns-antialias-text.
4189 * nsterm.h (MAC_OS_X_VERSION_10_3, onTiger): Remove.
4190 (EmacsApp): Remove check for >= MAC_OS_X_VERSION_10_4.
4191 (struct nsfont_info): Remove check for >= MAC_OS_X_VERSION_10_3.
4192
4193 * nsselect.m (ns_string_from_pasteboard): Remove check for >=
4194 MAC_OS_X_VERSION_10_4.
4195
4196 * nsmenu.m (fillWithWidgetValue:): Remove code for <
4197 MAC_OS_X_VERSION_10_2.
4198
4199 * nsimage.m (setPixmapData, getPixelAtX, setAlphaAtX): Remove onTiger.
4200
4201 * nsfns.m (Fns_list_services): Remove comment and check for OSX < 10.4.
4202 (ns_do_applescript): Remove check for >= MAC_OS_X_VERSION_10_4.
4203
4204 * nsterm.m (ns_in_resize): Remove (Bug#12479).
4205 (ns_resize_handle_rect, mouseDown, mouseUp, mouseDragged): Remove.
4206 (ns_clear_frame, sendEvent, windowDidResize, drawRect:):
4207 Remove ns_in_resize check.
4208 (ns_clear_frame_area): Remove resize handle code.
4209
4210 * nsfns.m (ns_in_resize): Remove.
4211 (x_set_icon_name, ns_set_name, ns_set_name_as_filename):
4212 Remove ns_in_resize check.
4213
4214 2012-10-07 Paul Eggert <eggert@cs.ucla.edu>
4215
4216 Improve sys_siglist detection.
4217 * sysdep.c (sys_siglist, init_signals): Use _sys_siglist if it's
4218 defined as a macro, as is done in Solaris.
4219 (sys_siglist_entries): New macro.
4220 (save_strsignal): Use it.
4221 * syssignal.h (safe_strsignal): Now ATTRIBUTE_CONST, to pacify
4222 GCC 4.7.2 on Fedora 17 with the fixed sys_siglist detection.
4223
4224 2012-10-06 Jan Djärv <jan.h.d@swipnet.se>
4225
4226 * nsfns.m (Fx_create_frame): Call x_default_parameter with
4227 fullscreen/Fullscreen.
4228
4229 * nsterm.h (EmacsView): Rename tbar_height to tibar_height.
4230 tobar_height is new.
4231
4232 * nsterm.m (x_make_frame_visible): Check for fullscreen.
4233 (ns_fullscreen_hook): Activate old style fullscreen with a timer.
4234 (ns_term_init): Set activateIgnoringOtherApps if old style fullscreen.
4235 (windowDidResize:): Check for correct window if old style fullscreen.
4236 Capitalize word in comment. Remove incorrect comment.
4237 (initFrameFromEmacs:): tbar_height renamed tibar_height.
4238 (windowDidEnterFullScreen:): Toggle toolbar for fullscreen to fix
4239 error in drawing background.
4240 (toggleFullScreen:): Remove comment. Rearrange calls.
4241 Set toolbar values to zero, save old height in tobar_height.
4242 Restore tool bar height when leaving fullscreen.
4243 (canBecomeMainWindow): New function.
4244
4245 2012-10-06 Paul Eggert <eggert@cs.ucla.edu>
4246
4247 * keyboard.c (read_char): Remove unnecessary 'volatile's and label.
4248
4249 2012-10-05 Eli Zaretskii <eliz@gnu.org>
4250
4251 * w32proc.c (stop_timer_thread): Fix declaration of 'err'.
4252
4253 * w32.c (utime): Open the file with FILE_FLAG_BACKUP_SEMANTICS, so
4254 that time stamps of directories could also be changed.
4255 Don't request the too broad GENERIC_WRITE, only the more restrictive
4256 FILE_WRITE_ATTRIBUTES access rights.
4257
4258 * fileio.c (Fset_file_times): Special-case ignoring errors for
4259 directories only on MSDOS, not on MS-Windows.
4260
4261 2012-10-05 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
4262
4263 * minibuf.c (Fcompleting_read): Doc fix. (Bug#12555)
4264
4265 2012-10-04 Eli Zaretskii <eliz@gnu.org>
4266
4267 * w32.c (utime): Test for INVALID_HANDLE_VALUE, not for NULL, to
4268 see whether CreateFile failed.
4269
4270 2012-10-04 Paul Eggert <eggert@cs.ucla.edu>
4271
4272 * profiler.c (handle_profiler_signal): Inhibit pending signals too,
4273 to avoid similar races.
4274 * keyboard.c (pending_signals): Now bool, not int.
4275
4276 Port timers to OpenBSD, plus check for timer failures.
4277 OpenBSD problem reported by Han Boetes.
4278 * profiler.c (setup_cpu_timer): Check for failure of timer_settime
4279 and/or setitimer.
4280 (Fprofiler_cpu_stop): Don't assume HAVE_SETITIMER.
4281 * syssignal.h (HAVE_ITIMERSPEC): New macro. This is for platforms
4282 like OpenBSD, which has timer_settime but does not declare it.
4283 OpenBSD does not define SIGEV_SIGNAL, so use that when deciding
4284 whether to use itimerspec-related primitives. All uses of
4285 HAVE_TIMER_SETTIME replaced with HAVE_ITIMERSPEC.
4286
4287 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
4288
4289 * profiler.c (handle_profiler_signal): Fix a malloc race
4290 that caused Emacs to hang on Fedora 17 when profiling Lisp.
4291
4292 2012-10-02 Jan Djärv <jan.h.d@swipnet.se>
4293
4294 * nsterm.m (windowDidEnterFullScreen): Remove fprintf.
4295
4296 2012-10-02 Eli Zaretskii <eliz@gnu.org>
4297
4298 * w32proc.c (sys_wait): Declare 'signame' 'const char *', to be
4299 consistent with the change in return value of 'safe_strsignal'.
4300
4301 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
4302
4303 Prefer plain 'static' to 'static inline' (Bug#12541).
4304 * bidi.c (bidi_get_type, bidi_check_type, bidi_get_category)
4305 (bidi_set_sor_type, bidi_push_embedding_level)
4306 (bidi_pop_embedding_level, bidi_remember_char, bidi_copy_it)
4307 (bidi_cache_reset, bidi_cache_shrink, bidi_cache_fetch_state)
4308 (bidi_cache_search, bidi_cache_ensure_space)
4309 (bidi_cache_iterator_state, bidi_cache_find)
4310 (bidi_peek_at_next_level, bidi_set_paragraph_end)
4311 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
4312 (bidi_explicit_dir_char, bidi_resolve_neutral_1):
4313 Now 'static', not 'static inline'.
4314
4315 Count overruns when profiling; change units to ns.
4316 * profiler.c (handle_profiler_signal): Count sampling intervals, not ms.
4317 Give extra weight to samples after overruns, to attempt to count
4318 the time more accurately.
4319 (setup_cpu_timer): Change sampling interval units from ms to ns, since
4320 the underlying primitives nominally do ns.
4321 (Fprofiler_cpu_start): Document the change. Mention that
4322 the sampling intervals are only approximate.
4323
4324 2012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
4325
4326 * frame.c (Fmake_terminal_frame): Prefer safer CONSP over !NILP.
4327
4328 * coding.h (ENCODE_FILE, DECODE_FILE, DECODE_SYSTEM): Remove special
4329 case for the special 0 coding-system.
4330
4331 * buffer.c (Fset_buffer_multibyte): Signal an error instead of widening.
4332 (Fmake_overlay): Remove redundant tests.
4333 (fix_start_end_in_overlays): Remove redundant recentering.
4334
4335 2012-10-02 Juanma Barranquero <lekktu@gmail.com>
4336
4337 * makefile.w32-in ($(BLD)/alloc.$(O), $(BLD)/gmalloc.$(O)):
4338 Update dependencies.
4339
4340 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
4341
4342 Fix a malloc race condition involving strsignal.
4343 A signal can arrive in the middle of a malloc, and Emacs's signal
4344 handler can invoke strsignal, which can invoke malloc, which is
4345 not portable. This race condition bug makes Emacs hang on GNU/Linux.
4346 Fix it by altering the signal handler so that it does not invoke
4347 strsignal.
4348 * emacs.c (shut_down_emacs): Use safe_strsignal, not strsignal.
4349 * process.c (status_message): Use const pointer, in case strsignal
4350 is #defined to safe_strsignal.
4351 * sysdep.c (sys_siglist, init_signals): Always define and
4352 initialize a substitute sys_siglist if the system does not define
4353 one, even if HAVE_STRSIGNAL.
4354 (safe_strsignal): Rename from strsignal. Always define,
4355 using sys_siglist. Return a const pointer.
4356 * syssignal.h (safe_strsignal): New decl.
4357 (strsignal) [!HAVE_STRSIGNAL]: Define in terms of safe_strsignal.
4358
4359 2012-10-01 Eli Zaretskii <eliz@gnu.org>
4360
4361 * w32proc.c (timer_loop): Fix code that waits for timer
4362 expiration, to avoid high CPU usage.
4363
4364 2012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
4365
4366 * fns.c (check_hash_table, get_key_arg, maybe_resize_hash_table)
4367 (sweep_weak_table): Remove redundant prototypes.
4368
4369 2012-10-01 Fabrice Popineau <fabrice.popineau@gmail.com>
4370
4371 * emacs.c: Move the inclusion of TERM_HEADER after including
4372 windows.h on WINDOWSNT. This avoids compilation problems with
4373 MSVC.
4374
4375 2012-10-01 Eli Zaretskii <eliz@gnu.org>
4376
4377 * unexw32.c (OFFSET_TO_RVA, RVA_TO_OFFSET)
4378 (RVA_TO_SECTION_OFFSET): Encode all macro arguments in parentheses.
4379 (RVA_TO_PTR): Cast the result of RVA_TO_OFFSET to 'unsigned char *',
4380 as the previous version used 'void *'.
4381
4382 * ralloc.c (ROUNDUP): Fix last change.
4383 (MEM_ROUNDUP): Don't cast MEM_ALIGN, it is already of type
4384 'size_t'.
4385
4386 * w32proc.c <disable_itimers>: New static flag.
4387 (init_timers): Initialize it to zero, after creating the critical
4388 sections used by the timer threads.
4389 (term_timers): Set to 1 before deleting the critical sections.
4390 (getitimer, setitimer): If disable_itimers is non-zero, return an
4391 error indication without doing anything. Reported by Fabrice
4392 Popineau <fabrice.popineau@supelec.fr> as part of bug#12544.
4393 (alarm) [HAVE_SETITIMER]: Be more conformant to the expected
4394 return results.
4395 [!HAVE_SETITIMER]: Behave as the previous version that didn't
4396 support timers.
4397
4398 * emacs.c (shut_down_emacs) [WINDOWSNT]: Move the call to
4399 term_ntproc after all the other bookkeeping, to get timers working
4400 as long as possible.
4401
4402 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
4403
4404 * xdisp.c (syms_of_xdisp): Default message-log-max to 1000, not 100.
4405 Suggested by Juri Linkov in
4406 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00821.html>.
4407
4408 Prefer plain 'static' to 'static inline' (Bug#12541).
4409 With static functions, modern compilers inline pretty well by
4410 themselves; advice from programmers often hurts as much as it helps.
4411 On my host (x86-64, Fedora 17, GCC 4.7.2, default 'configure'),
4412 this change shrinks the text size of the Emacs executable by 1.1%
4413 without affecting CPU significantly in my benchmark.
4414 * alloc.c (mem_find, live_string_p, live_cons_p, live_symbol_p)
4415 (live_float_p, live_misc_p, live_vector_p, live_buffer_p)
4416 (mark_maybe_object, mark_maybe_pointer, bounded_number):
4417 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
4418 (bset_auto_fill_function, bset_auto_save_file_format)
4419 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
4420 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
4421 (bset_cache_long_line_scans, bset_case_fold_search)
4422 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
4423 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
4424 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
4425 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
4426 (bset_header_line_format, bset_indicate_buffer_boundaries)
4427 (bset_indicate_empty_lines, bset_invisibility_spec)
4428 (bset_left_fringe_width, bset_major_mode, bset_mark)
4429 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
4430 (bset_name, bset_overwrite_mode, bset_pt_marker)
4431 (bset_right_fringe_width, bset_save_length)
4432 (bset_scroll_bar_width, bset_scroll_down_aggressively)
4433 (bset_scroll_up_aggressively, bset_selective_display)
4434 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
4435 (bset_word_wrap, bset_zv_marker, set_buffer_overlays_before)
4436 (set_buffer_overlays_after):
4437 * category.c (bset_category_table):
4438 * charset.c (read_hex):
4439 * coding.c (produce_composition, produce_charset)
4440 (handle_composition_annotation, handle_charset_annotation)
4441 (char_encodable_p):
4442 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers)
4443 (assign_row, set_frame_matrix_frame, make_current)
4444 (add_row_entry):
4445 * eval.c (set_specpdl_symbol, set_specpdl_old_value):
4446 * fns.c (maybe_resize_hash_table):
4447 * frame.c (fset_buffer_predicate, fset_minibuffer_window):
4448 * gmalloc.c (register_heapinfo):
4449 * image.c (lookup_image_type):
4450 * intervals.c (set_interval_object, set_interval_left)
4451 (set_interval_right, copy_interval_parent, rotate_right)
4452 (rotate_left, balance_possible_root_interval):
4453 * keyboard.c (kset_echo_string, kset_kbd_queue)
4454 (kset_keyboard_translate_table, kset_last_prefix_arg)
4455 (kset_last_repeatable_command, kset_local_function_key_map)
4456 (kset_overriding_terminal_local_map, kset_real_last_command)
4457 (kset_system_key_syms, clear_event, set_prop):
4458 * lread.c (digit_to_number):
4459 * marker.c (attach_marker, live_buffer, set_marker_internal):
4460 * nsterm.m (ns_compute_glyph_string_overhangs):
4461 * process.c (pset_buffer, pset_command)
4462 (pset_decode_coding_system, pset_decoding_buf)
4463 (pset_encode_coding_system, pset_encoding_buf, pset_filter)
4464 (pset_log, pset_mark, pset_name, pset_plist, pset_sentinel)
4465 (pset_status, pset_tty_name, pset_type, pset_write_queue):
4466 * syntax.c (bset_syntax_table, dec_bytepos):
4467 * terminal.c (tset_param_alist):
4468 * textprop.c (interval_has_some_properties)
4469 (interval_has_some_properties_list):
4470 * window.c (wset_combination_limit, wset_dedicated)
4471 (wset_display_table, wset_hchild, wset_left_fringe_width)
4472 (wset_left_margin_cols, wset_new_normal, wset_new_total)
4473 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
4474 (wset_right_fringe_width, wset_right_margin_cols)
4475 (wset_scroll_bar_width, wset_start, wset_temslot, wset_vchild)
4476 (wset_vertical_scroll_bar_type, wset_window_parameters):
4477 * xdisp.c (wset_base_line_number, wset_base_line_pos)
4478 (wset_column_number_displayed, wset_region_showing)
4479 (window_box_edges, run_window_scroll_functions)
4480 (append_glyph_string_lists, prepend_glyph_string_lists)
4481 (append_glyph_string, set_glyph_string_background_width)
4482 (append_glyph, append_composite_glyph)
4483 (take_vertical_position_into_account):
4484 * xfaces.c (x_create_gc, x_free_gc, merge_face_vectors)
4485 (face_attr_equal_p, lface_equal_p, hash_string_case_insensitive)
4486 (lface_hash, lface_same_font_attributes_p, lookup_face):
4487 * xml.c (libxml2_loaded_p):
4488 * xterm.c (x_set_mode_line_face_gc, x_set_glyph_string_gc)
4489 (x_set_glyph_string_clipping, x_clear_glyph_string_rect):
4490 Now 'static', not 'static inline'.
4491
4492 * bidi.c: Tune.
4493 (bidi_copy_it): Do the whole copy with a single memcpy.
4494 (bidi_char_at_pos): Merge the two STRING_CHAR calls into one.
4495
4496 Revert the FOLLOW-SYMLINKS change for file-attributes.
4497 Doing it right would require several changes to Tramp, and there's
4498 not enough time to get that tested before the freeze today.
4499 * dired.c (directory_files_internal, Ffile_attributes):
4500 Undo last change.
4501
4502 * frame.c (x_report_frame_params): Port better to wider ints.
4503 Do not assume that EMACS_UINT is the same width as uprintmax_t,
4504 or that pointers can be printed in 15 decimal digits.
4505 Avoid GCC warnings if EMACS_UINT is wider than a pointer.
4506
4507 2012-09-30 Fabrice Popineau <fabrice.popineau@supelec.fr>
4508
4509 Support x64 build on MS-Windows.
4510 * w32term.h (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK): Define for x64.
4511 (SET_SCROLL_BAR_W32_WINDOW): Cast ID to intptr_t, for
4512 compatibility with x64.
4513 (x_get_focus_frame): Add prototype.
4514
4515 * w32term.c (w32_draw_underwave): Don't use GCC extensions for
4516 defining an XRectangle structure.
4517
4518 * w32proc.c (RVA_TO_PTR, w32_executable_type): Fix pointer
4519 arithmetics for compatibility with x64.
4520
4521 * w32menu.c (add_menu_item): Use UINT_PTR instead of UINT, for
4522 compatibility with x64.
4523
4524 * w32heap.h: Adjust prototypes and declarations.
4525
4526 * w32heap.c (RVA_TO_PTR, allocate_heap, sbrk, init_heap)
4527 (round_heap): Use DWORD_PTR, ptrdiff_t and size_t instead of
4528 DWORD, long, and unsigned long, for compatibility with x64.
4529 (allocate_heap) [_WIN64]: Reserve 32GB of memory.
4530 (sbrk): Argument is now of type ptrdiff_t.
4531
4532 * w32fns.c (HMONITOR): Condition declaration on _WIN32_WINNT being
4533 less than 0x0500.
4534 (w32_msg_pump): Use WPARAM type for 'result'.
4535
4536 * w32.c (init_environment, get_emacs_configuration): Support AMD64
4537 architecture.
4538 (init_ntproc): Cast arguments of _open_osfhandle to intptr_t, for
4539 compatibility with x64.
4540
4541 * vm-limit.c (lim_data): Now size_t.
4542 (check_memory_limits): Adjust prototypes of real_morecore and
4543 __morecore to receive argument of type ptrdiff_t. Use size_t for
4544 five_percent and data_size.
4545
4546 * unexw32.c: Use DWORD_PTR instead of DWORD for file-scope
4547 variables, for compatibility with x64.
4548 (rva_to_section, offset_to_section, relocate_offset)
4549 (OFFSET_TO_RVA, RVA_TO_OFFSET, RVA_TO_SECTION_OFFSET)
4550 (PTR_TO_RVA, RVA_TO_PTR, OFFSET_TO_PTR, get_section_info)
4551 (copy_executable_and_dump_data): Use DWORD_PTR instead of DWORD
4552 for compatibility with x64.
4553
4554 * sysdep.c (STDERR_FILENO): Define if not already defined.
4555
4556 * ralloc.c (real_morecore): Argument type is now ptrdiff_t.
4557 (__morecore): Argument type is now ptrdiff_t.
4558 (ROUNDUP, MEM_ROUNDUP): Use size_t instead of 'unsigned long'.
4559 (relinquish): Use ptrdiff_t type for 'excess'.
4560 (r_alloc_sbrk): Argument type is now ptrdiff_t.
4561
4562 * makefile.w32-in (HEAPSIZE): Get value from EMACS_HEAPSIZE.
4563 (bootstrap-temacs-CMD, bootstrap-temacs-SH): Use $(EMACS_PURESIZE)
4564 instead of a literal number.
4565
4566 * gmalloc.c [WINDOWSNT]: Include w32heap.h.
4567 (min): Define only if not already defined.
4568
4569 * frame.c (x_report_frame_params): Use EMACS_UINT for the return
4570 value of FRAME_X_WINDOW, to fit a 64-bit pointer on 64-bit Windows
4571 hosts.
4572
4573 * image.c (x_bitmap_pixmap): Return ptrdiff_t, not int, since
4574 'bitmaps' is a pointer.
4575
4576 * dispextern.h (x_bitmap_pixmap): Adjust prototype.
4577
4578 * alloc.c (gdb_make_enums_visible): Now conditional on __GNUC__.
4579
4580 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
4581
4582 file-attributes has a new optional arg FOLLOW-SYMLINKS.
4583 * dired.c (directory_files_internal, Ffile_attributes):
4584 New arg follow_symlinks. All uses changed.
4585
4586 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
4587
4588 * .gdbinit (xbacktrace): Adjust to recent "struct backtrace" change.
4589
4590 2012-09-30 Eli Zaretskii <eliz@gnu.org>
4591
4592 Support atimers and CPU profiler via profile.c on MS-Windows.
4593 * w32proc.c (sig_mask, crit_sig): New static variables.
4594 (sys_signal): Support SIGALRM and SIGPROF.
4595 (sigemptyset, sigaddset, sigfillset, sigprocmask)
4596 (pthread_sigmask, setpgrp): Move here from w32.c. sigaddset,
4597 sigfillset, and sigprocmask are no longer no-ops.
4598 (sigismember): New function.
4599 (struct itimer_data): New definition.
4600 (ticks_now, real_itimer, prof_itimer, clocks_min, crit_real)
4601 (crit_prof): New static variables.
4602 (MAX_SINGLE_SLEEP): New definition.
4603 (timer_loop, stop_timer_thread, term_timers, init_timers)
4604 (start_timer_thread, getitimer, setitimer): New functions.
4605 (alarm): No longer a no-op, calls setitimer.
4606
4607 * w32.c (term_ntproc): Call term_timers.
4608 (init_ntproc): Make sure all signals are unblocked at startup, to
4609 erase any traces of dumping. Call init_timers.
4610
4611 * w32fns.c (hourglass_timer, HOURGLASS_ID): Remove.
4612 Windows-specific code to display the hourglass mouse pointer is no
4613 longer used.
4614 (w32_wnd_proc): Remove code that handled the WM_TIMER message due
4615 to hourglass timer expiration.
4616 (start_hourglass, cancel_hourglass, DEFAULT_HOURGLASS_DELAY):
4617 Remove, no longer used.
4618 (w32_note_current_window, show_hourglass, hide_hourglass):
4619 New functions, in support of hourglass cursor display similar to other
4620 window systems.
4621 (syms_of_w32fns): Don't initialize hourglass_timer.
4622
4623 * xdisp.c (start_hourglass, cancel_hourglass): Now used on
4624 WINDOWSNT as well.
4625 (start_hourglass) [WINDOWSNT]: Call w32_note_current_window.
4626
4627 * w32.h (init_timers, term_timers): Add prototypes.
4628
4629 2012-09-30 Kenichi Handa <handa@gnu.org>
4630
4631 * coding.c (decode_coding_ccl, encode_coding_ccl): Pay attention
4632 to the buffer relocation which may be caused by ccl_driver.
4633
4634 2012-09-30 Jan Djärv <jan.h.d@swipnet.se>
4635
4636 * xfns.c (Fx_file_dialog): Update comment.
4637
4638 * w32fns.c (Fx_file_dialog): Update comment.
4639
4640 * nsfns.m (Fns_read_file_name): Add argument DIR_ONLY_P.
4641 Initialize panel name field if OSX >= 10.6.
4642
4643 * fileio.c (Fnext_read_file_uses_dialog_p): Add HAVE_NS.
4644
4645 * nsfns.m (ns_frame_parm_handlers): Add x_set_fullscreen.
4646
4647 * nsterm.m (NEW_STYLE_FS): New define.
4648 (ns_fullscreen_hook, windowWillEnterFullScreen)
4649 (windowDidEnterFullScreen, windowWillExitFullScreen)
4650 (windowDidExitFullScreen, toggleFullScreen, handleFS)
4651 (setFSValue): New functions.
4652 (EmacsFSWindow): New implementation.
4653 (canBecomeKeyWindow): New function for EmacsFSWindow.
4654 (ns_create_terminal): Set fullscreen_hook to ns_fullscreen_hook.
4655 (dealloc): Release nonfs_window if in fullscreen.
4656 (updateFrameSize:): Call windowDidMove to update top/left.
4657 (windowWillResize:toSize:): Check if frame is still maximized.
4658 (initFrameFromEmacs:): Initialize fs_state, fs_before_fs,
4659 next_maximized, maximized_width, maximized_height and nonfs_window.
4660 Call setCollectionBehavior if NEW_STYLE_FS. Initialize bwidth and
4661 tbar_height.
4662 (windowWillUseStandardFrame:defaultFrame:): Update frame parameter
4663 fullscreen. Set maximized_width/height. Act on next_maximized.
4664
4665 * nsterm.h (MAC_OS_X_VERSION_10_7, MAC_OS_X_VERSION_10_8): New.
4666 (EmacsView): Add variables for fullscreen.
4667 (handleFS, setFSValue, toggleFullScreen): New in EmacsView.
4668 (EmacsFSWindow): New interface for fullscreen.
4669
4670 2012-09-30 Juanma Barranquero <lekktu@gmail.com>
4671
4672 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
4673
4674 2012-09-30 Chong Yidong <cyd@gnu.org>
4675
4676 * fns.c (Frandom): Doc fix.
4677
4678 2012-09-30 Martin Rudalics <rudalics@gmx.at>
4679
4680 * window.c (Vwindow_combination_limit): New default value.
4681 (Qwindow_size): New symbol replacing Qtemp_buffer_resize.
4682
4683 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
4684
4685 * syssignal.h (PROFILER_CPU_SUPPORT): Don't define if PROFILING.
4686 Suggested by Eli Zaretskii in
4687 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00811.html>.
4688
4689 2012-09-30 Eli Zaretskii <eliz@gnu.org>
4690
4691 * profiler.c (Fprofiler_cpu_stop): Use timer_settime only if
4692 HAVE_TIMER_SETTIME is defined.
4693
4694 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
4695
4696 Profiler improvements: more-accurate timers, overflow checks.
4697 * profiler.c: Don't include stdio.h, limits.h, sys/time.h,
4698 signal.h, setjmp.h. Include systime.h instead.
4699 (saturated_add): New function.
4700 (record_backtrace, current_sample_interval): Use EMACS_INT, not size_t.
4701 (record_backtrace, handle_profiler_signal): Saturate on fixnum overflow.
4702 (profiler_timer, profiler_timer_ok) [HAVE_TIMER_SETTIME]:
4703 New static vars.
4704 (enum profiler_cpu_running): New enum.
4705 (profiler_cpu_running): Now of that enum type, not bool.
4706 All uses changed to store the new value.
4707 (handle_profiler_signal): Rename from sigprof_handler_1,
4708 for consistency with other handlers. Do not check whether
4709 cpu_log is a hash-table if garbage collecting, since it
4710 doesn't matter in that case.
4711 (deliver_profiler_signal): Rename from sigprof_handler,
4712 for consistency with other handlers.
4713 (setup_cpu_timer): New function, with much of what used to be in
4714 Fprofiler_cpu_start. Check for out-of-range argument.
4715 Prefer timer_settime if available, and prefer
4716 thread cputime clocks, then process cputime clocks, then
4717 monotonic clocks, to the old realtime clock. Use make_timeval
4718 to round more-correctly when falling back to setitimer.
4719 (Fprofiler_cpu_start): Use it.
4720 (Fprofiler_cpu_stop): Prefer timer_settime if available.
4721 Don't assume that passing NULL as the 2nd argument of setitimer
4722 is the same as passing a pointer to all-zero storage.
4723 Ignore SIGPROF afterwards.
4724 (malloc_probe): Saturate at MOST_POSITIVE_FIXNUM.
4725 * sysdep.c (emacs_sigaction_init): Also mask out SIGPROF in
4726 non-fatal signal handlers. Ignore SIGPROF on startup.
4727 * syssignal.h (PROFILER_CPU_SUPPORT): Define this macro here, not
4728 in profiler.c, since sysdep.c now uses it.
4729
4730 * sysdep.c (handle_fatal_signal): Bump backtrace size to 40.
4731 Suggested by Eli Zaretskii in
4732 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00796.html>.
4733
4734 2012-09-29 Juanma Barranquero <lekktu@gmail.com>
4735
4736 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
4737
4738 2012-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
4739
4740 * lisp.h (struct backtrace): Remove indirection for `function' field.
4741 * xdisp.c (redisplay_internal):
4742 * profiler.c (record_backtrace, sigprof_handler_1):
4743 * alloc.c (Fgarbage_collect):
4744 * eval.c (interactive_p, Fsignal, eval_sub, Ffuncall, Fbacktrace)
4745 (Fbacktrace_frame): Adjust accordingly.
4746
4747 2012-09-28 Glenn Morris <rgm@gnu.org>
4748
4749 * eval.c (Frun_hook_with_args, Frun_hook_with_args_until_success)
4750 (Frun_hook_with_args_until_failure): Doc fixes.
4751
4752 2012-09-28 Eli Zaretskii <eliz@gnu.org>
4753
4754 * xdisp.c (syms_of_xdisp) <Qredisplay_internal>: Rename from
4755 Qautomatic_redisplay and change the symbol name. All users changed.
4756
4757 2012-09-28 Tomohiro Matsuyama <tomo@cx4a.org>
4758
4759 * profiler.c (sigprof_handler): Fix race condition.
4760
4761 2012-09-28 Glenn Morris <rgm@gnu.org>
4762
4763 * lread.c (lisp_file_lexically_bound_p): Handle #! lines. (Bug#12528)
4764
4765 2012-09-27 Paul Eggert <eggert@cs.ucla.edu>
4766
4767 Check more robustly for timer_settime.
4768 * Makefile.in (LIB_TIMER_TIME): New macro.
4769 (LIBES): Add it.
4770 * atimer.c (alarm_timer, alarm_timer_ok, set_alarm, init_atimer):
4771 Use HAVE_TIMER_SETTIME, not SIGEV_SIGNAL, to decide whether to
4772 call timer_settime.
4773
4774 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
4775
4776 * profiler.c (Fprofiler_cpu_start): Remove unnecessary flag SA_SIGINFO.
4777
4778 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
4779
4780 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
4781
4782 2012-09-26 Paul Eggert <eggert@cs.ucla.edu>
4783
4784 * character.h (MAYBE_UNIFY_CHAR): Remove.
4785 * charset.c, charset.h (maybe_unify_char): Now static.
4786 * charset.c (decode_char): Use maybe_unify_char, not MAYBE_UNIFY_CHAR.
4787 Since this stuff is now private to charset.c, there's no need for
4788 a public macro and no need to inline by hand.
4789
4790 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
4791 Stefan Monnier <monnier@iro.umontreal.ca>
4792 Juanma Barranquero <lekktu@gmail.com>
4793
4794 * profiler.c: New file.
4795 * Makefile.in (base_obj): Add profiler.o.
4796 * makefile.w32-in (OBJ2, GLOBAL_SOURCES): Add profiler.c.
4797 ($(BLD)/profiler.$(O)): New target.
4798 * emacs.c (main): Call syms_of_profiler.
4799 * alloc.c (Qautomatic_gc): New constant.
4800 (MALLOC_PROBE): New macro.
4801 (xmalloc, xzalloc, xrealloc, lisp_malloc, lisp_align_malloc): Use it.
4802 (total_bytes_of_live_objects): New function.
4803 (Fgarbage_collect): Use it. Record itself in backtrace_list.
4804 Call malloc_probe for the memory profiler.
4805 (syms_of_alloc): Define Qautomatic_gc.
4806 * eval.c (eval_sub, Ffuncall): Reorder assignments to avoid
4807 race condition.
4808 (struct backtrace): Move definition...
4809 * lisp.h (struct backtrace): ..here.
4810 (Qautomatic_gc, profiler_memory_running): Declare vars.
4811 (malloc_probe, syms_of_profiler): Declare functions.
4812 * xdisp.c (Qautomatic_redisplay): New constant.
4813 (redisplay_internal): Record itself in backtrace_list.
4814 (syms_of_xdisp): Define Qautomatic_redisplay.
4815
4816 2012-09-25 Eli Zaretskii <eliz@gnu.org>
4817 2012-09-25 Juanma Barranquero <lekktu@gmail.com>
4818
4819 * makefile.w32-in ($(BLD)/callproc.$(O)): Update dependencies.
4820
4821 2012-09-25 Paul Eggert <eggert@cs.ucla.edu>
4822
4823 Prefer POSIX timers if available.
4824 They avoid a race if the timer is too close to the current time.
4825 * atimer.c (alarm_timer, alarm_timer_ok) [SIGEV_SIGNAL]: New static vars.
4826 (set_alarm) [SIGEV_SIGNAL]: Use POSIX timers if available.
4827 (init_atimer) [SIGEV_SIGNAL]: Initialize them.
4828
4829 2012-09-25 Eli Zaretskii <eliz@gnu.org>
4830
4831 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY): Make it an alias of
4832 CHAR_STRING_ADVANCE.
4833 (STRING_CHAR_ADVANCE_NO_UNIFY): Make it an alias of
4834 STRING_CHAR_ADVANCE.
4835
4836 2012-09-25 Juanma Barranquero <lekktu@gmail.com>
4837
4838 Move Vlibrary_cache to emacs.c and reset before dumping.
4839
4840 * lisp.h (reset_image_types): Declare.
4841 [WINDOWSNT] (Vlibrary_cache): Declare.
4842
4843 * image.c (reset_image_types): New function.
4844
4845 * emacs.c [WINDOWSNT] (Vlibrary_cache): Move from w32.c.
4846 (syms_of_emacs) [WINDOWSNT] <Vlibrary_cache>: Initialize and staticpro.
4847 (Fdump_emacs): Reset Vlibrary_cache and image_types.
4848
4849 * w32.c (Vlibrary_cache): Do not define; moved to emacs.c
4850 (globals_of_w32) <Vlibrary_cache>: Do not initialize.
4851
4852 * w32.h (Vlibrary_cache): Do not declare.
4853
4854 2012-09-25 Eli Zaretskii <eliz@gnu.org>
4855
4856 * w32proc.c (sys_signal): Handle all signals defined by the
4857 MS-Windows runtime, not just SIGCHLD. Actually install the signal
4858 handlers for signals supported by Windows. Don't override
4859 term_ntproc as the handler for SIGABRT.
4860 (sigaction): Rewrite to call sys_signal instead of duplicating its
4861 code.
4862 (sys_kill): Improve commentary.
4863
4864 * w32.c (term_ntproc): Accept (and ignore) one argument, for
4865 consistency with a signature of a signal handler. All callers
4866 changed.
4867 (init_ntproc): Accept an argument DUMPING. If dumping, don't
4868 install term_ntproc as a signal handler for SIGABRT, as that
4869 should be done by the dumped Emacs.
4870
4871 * w32.h (init_ntproc, term_ntproc): Adjust prototypes.
4872
4873 * w32select.c (term_w32select): Protect against repeated
4874 invocation by setting clipboard_owner to NULL after calling
4875 DestroyWindow.
4876
4877 * emacs.c (shut_down_emacs, main): Adapt the calls to init_ntproc
4878 and term_ntproc to their modified signatures.
4879
4880 * character.c (char_string, string_char): Remove calls to
4881 MAYBE_UNIFY_CHAR. See the discussion starting at
4882 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00433.html
4883 for the details.
4884
4885 2012-09-25 Chong Yidong <cyd@gnu.org>
4886
4887 * xdisp.c (mode_line_inverse_video): Delete obsolete variable.
4888
4889 2012-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
4890
4891 * bytecode.c (exec_byte_code): Signal an error instead of aborting,
4892 when encountering an unknown bytecode.
4893
4894 2012-09-24 Paul Eggert <eggert@cs.ucla.edu>
4895
4896 image.c, indent.c: Use bool for booleans.
4897 * dispextern.h (struct image_type): Members valid_p, load, init
4898 now return bool, not int. All uses changed.
4899 * image.c: Omit unnecessary static decls.
4900 (x_create_bitmap_mask, x_build_heuristic_mask):
4901 Return void, not int, since callers don't care about the return value.
4902 (x_create_bitmap_mask, define_image_type, valid_image_p)
4903 (struct image_keyword, parse_image_spec, image_spec_value)
4904 (check_image_size, image_background)
4905 (image_background_transparent, x_clear_image_1)
4906 (postprocess_image, lookup_image, x_check_image_size)
4907 (x_create_x_image_and_pixmap, xbm_image_p)
4908 (Create_Pixmap_From_Bitmap_Data, xbm_read_bitmap_data)
4909 (xbm_load_image, xbm_file_p, xbm_load, xpm_lookup_color)
4910 (init_xpm_functions, xpm_valid_color_symbols_p, xpm_image_p)
4911 (xpm_load, xpm_load_image, lookup_rgb_color, lookup_pixel_color)
4912 (x_to_xcolors, x_build_heuristic_mask, pbm_image_p, pbm_load)
4913 (png_image_p, init_png_functions, png_load_body, png_load)
4914 (jpeg_image_p, init_jpeg_functions, jpeg_load_body, jpeg_load)
4915 (tiff_image_p, init_tiff_functions, tiff_load, gif_image_p)
4916 (init_gif_functions, gif_load, imagemagick_image_p)
4917 (imagemagick_load_image, imagemagick_load, svg_image_p)
4918 (init_svg_functions, svg_load, svg_load_image, gs_image_p)
4919 (gs_load):
4920 * nsimage.m (ns_load_image):
4921 * nsterm.m (ns_defined_color):
4922 * xfaces.c (tty_lookup_color, tty_defined_color, defined_color):
4923 * xfns.c (x_defined_color):
4924 * xterm.c (x_alloc_lighter_color_for_widget)
4925 (x_alloc_nearest_color_1, x_alloc_nearest_color)
4926 (x_alloc_lighter_color):
4927 * indent.c (disptab_matches_widthtab, current_column)
4928 (scan_for_column, string_display_width, indented_beyond_p)
4929 (compute_motion, vmotion, Fvertical_motion):
4930 Use bool for booleans.
4931
4932 2012-09-24 Chong Yidong <cyd@gnu.org>
4933
4934 * chartab.c (Fset_char_table_default): Obsolete function removed.
4935
4936 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
4937
4938 Move pid_t related decls out of lisp.h.
4939 * lisp.h, syswait.h (record_child_status_change, wait_for_termination)
4940 (interruptible_wait_for_termination):
4941 Move these decls from lisp.h to syswait.h, since they use pid_t.
4942 Needed on FreeBSD; see Herbert J. Skuhra in
4943 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00571.html>.
4944 * callproc.c: Include syswait.h.
4945
4946 gnutls.c, gtkutil.c: Use bool for boolean.
4947 * gnutls.c (gnutls_global_initialized, init_gnutls_functions)
4948 (emacs_gnutls_handle_error):
4949 * gtkutil.c (xg_check_special_colors, xg_prepare_tooltip)
4950 (xg_hide_tooltip, xg_create_frame_widgets)
4951 (create_dialog, xg_uses_old_file_dialog)
4952 (xg_get_file_with_chooser, xg_get_file_with_selection)
4953 (xg_get_file_name, xg_have_tear_offs, create_menus, xg_create_widget)
4954 (xg_item_label_same_p, xg_update_menubar)
4955 (xg_modify_menubar_widgets, xg_event_is_for_menubar)
4956 (xg_ignore_gtk_scrollbar, xg_set_toolkit_scroll_bar_thumb)
4957 (xg_event_is_for_scrollbar, xg_pack_tool_bar, xg_make_tool_item)
4958 (is_box_type, xg_tool_item_stale_p, xg_update_tool_bar_sizes)
4959 (update_frame_tool_bar, free_frame_tool_bar):
4960 * gtkutil.c, w32term.c, xterm.c (x_wm_set_size_hint):
4961 * nsmenu.m (ns_update_menubar):
4962 * nsmenu.m, w32menu.c, xmenu.c (set_frame_menubar):
4963 * xfns.c (Fx_show_tip) [USE_GTK]:
4964 Use bool for boolean.
4965 * gtkutil.c (xg_update_frame_menubar):
4966 * xmenu.c (update_frame_menubar):
4967 Return void, not int, since caller ignores return value.
4968 * gtkutil.c (xg_change_toolbar_position):
4969 Return void, not 1.
4970
4971 2012-09-23 Juanma Barranquero <lekktu@gmail.com>
4972
4973 * makefile.w32-in (BLOCKINPUT_H): Remove.
4974 (SYSSIGNAL_H): New macro.
4975 ($(BLD)/alloc.$(O), $(BLD)/atimer.$(O), $(BLD)/buffer.$(O))
4976 ($(BLD)/callproc.$(O), $(BLD)/data.$(O), $(BLD)/dired.$(O))
4977 ($(BLD)/dispnew.$(O), $(BLD)/editfns.$(O), $(BLD)/emacs.$(O))
4978 ($(BLD)/eval.$(O), $(BLD)/fileio.$(O), $(BLD)/floatfns.$(O))
4979 ($(BLD)/fns.$(O), $(BLD)/fontset.$(O), $(BLD)/frame.$(O))
4980 ($(BLD)/fringe.$(O), $(BLD)/image.$(O), $(BLD)/insdel.$(O))
4981 ($(BLD)/keyboard.$(O), $(BLD)/keymap.$(O), $(BLD)/lread.$(O))
4982 ($(BLD)/menu.$(O), $(BLD)/w32inevt.$(O), $(BLD)/w32proc.$(O))
4983 ($(BLD)/print.$(O), $(BLD)/process.$(O), $(BLD)/ralloc.$(O))
4984 ($(BLD)/search.$(O), $(BLD)/sound.$(O), $(BLD)/sysdep.$(O))
4985 ($(BLD)/term.$(O), $(BLD)/window.$(O), $(BLD)/xdisp.$(O))
4986 ($(BLD)/xfaces.$(O), $(BLD)/w32fns.$(O), $(BLD)/w32menu.$(O))
4987 ($(BLD)/w32term.$(O), $(BLD)/w32select.$(O), $(BLD)/w32reg.$(O))
4988 ($(BLD)/w32xfns.$(O)): Update dependencies.
4989
4990 2012-09-23 Eli Zaretskii <eliz@gnu.org>
4991
4992 * .gdbinit: Set breakpoint on terminate_due_to_signal, not on
4993 fatal_error_backtrace.
4994
4995 * w32proc.c (sys_kill): Undo last change: don't do anything when
4996 invoked to deliver SIGABRT to our own process. This is now
4997 handled by emacs_raise.
4998
4999 2012-09-23 Juanma Barranquero <lekktu@gmail.com>
5000
5001 * w32term.c (w32_read_socket): Remove leftover reference to
5002 interrupt_input_pending.
5003
5004 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
5005
5006 Do not use SA_NODEFER.
5007 Problem reported by Dani Moncayo in
5008 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00557.html>.
5009 * alloc.c (die):
5010 * sysdep.c (emacs_abort): Do not reset signal handler.
5011 * emacs.c (terminate_due_to_signal): Reset signal handler here.
5012 * sysdep.c (init_signals): Do not use SA_NODEFER. It wasn't
5013 wanted even on POSIXish hosts, and it doesn't work on Windows.
5014
5015 2012-09-23 Jan Djärv <jan.h.d@swipnet.se>
5016
5017 * xterm.c (x_term_init): Call fixup_locale before and after calling
5018 gtk_init (Bug#12392).
5019
5020 2012-09-23 Chong Yidong <cyd@gnu.org>
5021
5022 * w32.c (w32_delayed_load): Remove LIBRARIES argument; always use
5023 Vdynamic_library_alist.
5024
5025 * gnutls.c (init_gnutls_functions): Caller changed; remove arg.
5026 (Fgnutls_available_p): Caller changed.
5027
5028 * xml.c (init_libxml2_functions, Flibxml_parse_html_region)
5029 (Flibxml_parse_xml_region): Likewise.
5030
5031 * dispextern.h (struct image_type): Remove arg from init function.
5032
5033 * image.c (Finit_image_library, lookup_image_type)
5034 (define_image_type): Remove now-unneeded second arg.
5035 (init_xpm_functions, init_png_functions, init_jpeg_functions)
5036 (init_tiff_functions, init_gif_functions, init_svg_functions):
5037 Arglist and w32_delayed_load calling convention changed.
5038 (gs_type): Remove init_gs_functions; there is no such function.
5039 (valid_image_p, make_image): Fix caller to lookup_image_type.
5040
5041 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
5042
5043 Simplify and avoid signal-handling races (Bug#12471).
5044 * alloc.c (die):
5045 * sysdep.c (emacs_abort) [HAVE_NTGUI]:
5046 Avoid recursive loop if there's a fatal error in the function itself.
5047 * atimer.c (pending_atimers):
5048 * blockinput.h: Don't include "atimer.h"; no longer needed.
5049 (interrupt_input_pending): Remove. All uses removed.
5050 pending_signals now counts both atimers and ordinary interrupts.
5051 This is less racy than having three separate pending-signal flags.
5052 (block_input, unblock_input, totally_unblock_input, unblock_input_to)
5053 (input_blocked_p):
5054 Rename from their upper-case counterparts BLOCK_INPUT,
5055 UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT, UNBLOCK_INPUT_TO,
5056 INPUT_BLOCKED_P, and turn into functions. All uses changed.
5057 This makes it easier to access volatile variables more accurately.
5058 (BLOCK_INPUT_RESIGNAL): Remove. All uses replaced by unblock_input ().
5059 (input_blocked_p): Prefer this to 'interrupt_input_blocked', as
5060 that's more reliable if the code is buggy and sets
5061 interrupt_input_blocked to a negative value. All uses changed.
5062 * atimer.c (deliver_alarm_signal):
5063 Remove. No need to deliver this to the parent; any thread can
5064 handle this signal now. All uses replaced by underlying handler.
5065 * atimer.c (turn_on_atimers):
5066 * dispnew.c (handle_window_change_signal):
5067 * emacs.c (handle_danger_signal):
5068 * keyboard.c (kbd_buffer_get_event):
5069 Don't reestablish signal handler; not needed with sigaction.
5070 * blockinput.h (UNBLOCK_INPUT_TO, TOTALLY_UNBLOCK_INPUT)
5071 (UNBLOCK_INPUT_TO):
5072 Rework to avoid unnecessary accesses to volatile variables.
5073 (UNBLOCK_INPUT_TO): Now a function.
5074 (totally_unblock_input, unblock_input): New decls.
5075 * data.c (handle_arith_signal, deliver_arith_signal): Move to sysdep.c
5076 (init_data): Remove. Necessary stuff now done in init_signal.
5077 * emacs.c, xdisp.c: Include "atimer.h", since we invoke atimer functions.
5078 * emacs.c (handle_fatal_signal, deliver_fatal_signal): Move to sysdep.c.
5079 (fatal_error_code): Remove; no longer needed.
5080 (terminate_due_to_signal): Rename from fatal_error_backtrace, since
5081 it doesn't always backtrace. All uses changed. No need to reset
5082 signal to default, since sigaction and/or die does that for us now.
5083 Use emacs_raise (FOO), not kill (getpid (), FOO).
5084 (main): Check more-accurately whether we're dumping.
5085 Move fatal-error setup to sysdep.c
5086 * floatfns.c: Do not include "syssignal.h"; no longer needed.
5087 * gtkutil.c (xg_get_file_name, xg_get_font):
5088 Remove no-longer-needed signal-mask manipulation.
5089 * keyboard.c, process.c (POLL_FOR_INPUT):
5090 Don't depend on USE_ASYNC_EVENTS, a symbol that is never defined.
5091 * keyboard.c (read_avail_input): Remove.
5092 All uses replaced by gobble_input.
5093 (Ftop_level): Use TOTALLY_UNBLOCK_INPUT rather than open code.
5094 (kbd_buffer_store_event_hold, gobble_input):
5095 (record_asynch_buffer_change) [USABLE_SIGIO]:
5096 (store_user_signal_events):
5097 No need to mess with signal mask.
5098 (gobble_input): If blocking input and there are terminals, simply
5099 set pending_signals to 1 and return. All hooks changed to not
5100 worry about whether input is blocked.
5101 (process_pending_signals): Clear pending_signals before processing
5102 them, in case a signal comes in while we're processing.
5103 By convention callers now test pending_signals before calling us.
5104 (UNBLOCK_INPUT_TO, unblock_input, totally_unblock_input):
5105 New functions, to support changes to blockinput.h.
5106 (handle_input_available_signal): Now extern.
5107 (reinvoke_input_signal): Remove. All uses replaced by
5108 handle_async_input.
5109 (quit_count): Now volatile, since a signal handler uses it.
5110 (handle_interrupt): Now takes bool IN_SIGNAL_HANDLER as arg.
5111 All callers changed. Block SIGINT only if not already blocked.
5112 Clear sigmask reliably, even if Fsignal returns, which it can.
5113 Omit unnecessary accesses to volatile var.
5114 (quit_throw_to_read_char): No need to restore sigmask.
5115 * keyboard.c (gobble_input, handle_user_signal):
5116 * process.c (wait_reading_process_output):
5117 Call signal-handling code rather than killing ourselves.
5118 * lisp.h: Include <float.h>, for...
5119 (IEEE_FLOATING_POINT): New macro, moved here to avoid duplication.
5120 (pending_signals): Now volatile.
5121 (syms_of_data): Now const if IEEE floating point.
5122 (handle_input_available_signal) [USABLE_SIGIO]:
5123 (terminate_due_to_signal, record_child_status_change): New decls.
5124 * process.c (create_process): Avoid disaster if memory is exhausted
5125 while we're processing a vfork, by tightening the critical section
5126 around the vfork.
5127 (send_process_frame, process_sent_to, handle_pipe_signal)
5128 (deliver_pipe_signal): Remove. No longer needed, as Emacs now
5129 ignores SIGPIPE.
5130 (send_process): No need for setjmp/longjmp any more, since the
5131 SIGPIPE stuff is now gone. Instead, report an error if errno
5132 is EPIPE.
5133 (record_child_status_change): Now extern. PID and W are now args.
5134 Return void, not bool. All callers changed.
5135 * sysdep.c (wait_debugging) [(BSD_SYSTEM || HPUX) && !defined (__GNU__)]:
5136 Remove. All uses removed. This bug should be fixed now in a
5137 different way.
5138 (wait_for_termination_1): Use waitpid rather than sigsuspend,
5139 and record the child status change directly. This avoids the
5140 need to futz with the signal mask.
5141 (process_fatal_action): Move here from emacs.c.
5142 (emacs_sigaction_flags): New function, containing
5143 much of what used to be in emacs_sigaction_init.
5144 (emacs_sigaction_init): Use it. Block nonfatal system signals that are
5145 caught by emacs, to make races less likely.
5146 (deliver_process_signal): Rename from handle_on_main_thread.
5147 All uses changed.
5148 (BACKTRACE_LIMIT_MAX): Now at top level.
5149 (thread_backtrace_buffer, threadback_backtrace_pointers):
5150 New static vars.
5151 (deliver_thread_signal, deliver_fatal_thread_signal):
5152 New functions, for more-accurate delivery of thread-specific signals.
5153 (handle_fatal_signal, deliver_fatal_signal): Move here from emacs.c.
5154 (deliver_arith_signal): Handle in this thread, not
5155 in the main thread, since it's triggered by this thread.
5156 (maybe_fatal_sig): New function.
5157 (init_signals): New arg DUMPING so that we can be more accurate
5158 about whether we're dumping. Caller changed.
5159 Treat thread-specific signals differently from process-general signals.
5160 Block all signals while handling fatal error; that's safer.
5161 xsignal from SIGFPE only on non-IEEE hosts, treating it as fatal
5162 on IEEE hosts.
5163 When batch, ignore SIGHUP, SIGINT, SIGTERM if they were already ignored.
5164 Ignore SIGPIPE unless batch.
5165 (emacs_backtrace): Output backtrace for the appropriate thread,
5166 which is not necessarily the main thread.
5167 * syssignal.h: Include <stdbool.h>.
5168 (emacs_raise): New macro.
5169 * xterm.c (x_connection_signal): Remove; no longer needed
5170 now that we use sigaction.
5171 (x_connection_closed): No need to mess with sigmask now.
5172 (x_initialize): No need to reset SIGPIPE handler here, since
5173 init_signals does this for us now.
5174
5175 2012-09-23 Jan Djärv <jan.h.d@swipnet.se>
5176
5177 * nsterm.m (ns_dumpglyphs_image): dr is a new rect to draw image into,
5178 background rect may be larger (Bug#12245).
5179
5180 2012-09-23 Chong Yidong <cyd@gnu.org>
5181
5182 * keyboard.c (timer_check): Avoid quitting during Fcopy_sequence.
5183
5184 2012-09-22 Paul Eggert <eggert@cs.ucla.edu>
5185
5186 * .gdbinit: Just stop at fatal_error_backtrace.
5187 See Stefan Monnier's request in
5188 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00549.html>.
5189 Remove no-longer-used query of system type.
5190
5191 2012-09-22 Chong Yidong <cyd@gnu.org>
5192
5193 * search.c (Freplace_match): Doc fix (Bug#12325).
5194
5195 * minibuf.c (Finternal_complete_buffer): Doc fix (Bug#12391).
5196
5197 * editfns.c (Fline_beginning_position): Doc fix (Bug#12416).
5198 (Fline_end_position): Doc fix.
5199
5200 * cmds.c (Fforward_char, Fbackward_char): Doc fix (Bug#12414).
5201
5202 2012-09-22 Chong Yidong <cyd@gnu.org>
5203
5204 * dispextern.h (struct image_type): Add new slot, storing a type
5205 initialization function.
5206
5207 * image.c (define_image_type): Call the image initializer function
5208 if it is defined. Arguments and return value changed.
5209 (valid_image_p, make_image): Callers changed.
5210 (xbm_type, xpm_type, pbm_type, png_type, jpeg_type, tiff_type)
5211 (gif_type, imagemagick_type, svg_type, gs_type):
5212 Add initialization functions.
5213 (Finit_image_library): Call lookup_image_type.
5214 (CHECK_LIB_AVAILABLE): Macro deleted.
5215 (lookup_image_type): Call define_image_type here, rather than via
5216 Finit_image_library, and without using CHECK_LIB_AVAILABLE.
5217 (syms_of_image): Move define_image_type calls for xbm_type and
5218 pbm_type to lookup_image_type.
5219
5220 2012-09-22 Eli Zaretskii <eliz@gnu.org>
5221
5222 * keyboard.c (timer_check_2): Move calculation of 'timers' and
5223 'idle_timers' from here ...
5224 (timer_check): ... to here. Use Fcopy_sequence to copy the timer
5225 lists, to avoid infloops when the timer does something stupid,
5226 like reinvoke itself with the same or smaller time-out.
5227 (Bug#12447)
5228
5229 2012-09-22 Martin Rudalics <rudalics@gmx.at>
5230
5231 * window.c (Fsplit_window_internal): Handle only Qt value of
5232 Vwindow_combination_limit separately.
5233 (Qtemp_buffer_resize): New symbol.
5234 (Vwindow_combination_limit): New default value.
5235 Rewrite doc-string.
5236
5237 2012-09-22 Eli Zaretskii <eliz@gnu.org>
5238
5239 * xdisp.c (next_overlay_string): Initialize it->end_charpos for
5240 the new overlay string. (Bug#10159)
5241
5242 2012-09-22 Paul Eggert <eggert@cs.ucla.edu>
5243
5244 * emacs.c (shut_down_emacs): Don't assume stderr is buffered,
5245 or that fprintf is async-signal-safe. POSIX doesn't require
5246 either assumption.
5247
5248 2012-09-22 Chong Yidong <cyd@gnu.org>
5249
5250 * buffer.c (Fset_buffer_modified_p): Handle indirect buffers
5251 (Bug#8207).
5252
5253 2012-09-22 Kenichi Handa <handa@gnu.org>
5254
5255 * composite.c (composition_reseat_it): Handle the case that a
5256 grapheme cluster is not covered by a single font (Bug#12352).
5257
5258 2012-09-21 Chong Yidong <cyd@gnu.org>
5259
5260 * image.c (define_image_type): Avoid adding duplicate types to
5261 image_types (Bug#12463). Suggested by Jörg Walter.
5262
5263 2012-09-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5264
5265 * unexmacosx.c: Define LC_DATA_IN_CODE if not defined.
5266 (print_load_command_name): Add case LC_DATA_IN_CODE.
5267 (dump_it) [LC_DATA_IN_CODE]: Call copy_linkedit_data.
5268
5269 2012-09-21 Glenn Morris <rgm@gnu.org>
5270
5271 * eval.c (Frun_hook_with_args_until_success)
5272 (Frun_hook_with_args_until_failure): Doc fixes. (Bug#12393)
5273
5274 2012-09-21 Andreas Schwab <schwab@linux-m68k.org>
5275
5276 * fileio.c (Ffile_selinux_context): Only call freecon when
5277 lgetfilecon succeeded.
5278 (Fset_file_selinux_context): Likewise. (Bug#12444)
5279
5280 2012-09-21 Eli Zaretskii <eliz@gnu.org>
5281
5282 * xdisp.c (try_window_reusing_current_matrix): Under bidi
5283 reordering, locate the cursor by calling set_cursor_from_row; if
5284 that fails, clear the desired glyph matrix before returning a
5285 failure indication to the caller. Fixes leaving garbled display
5286 when fast scrolling with a down-key. (Bug#12403)
5287 (compute_stop_pos_backwards): Fix a typo that caused crashes while
5288 scrolling through multibyte text.
5289
5290 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
5291
5292 * alloc.c (mark_object) <PVEC_WINDOW>: Mark prev/next_buffers *after*
5293 calling mark_vectorlike since that's the one that marks the window.
5294 (mark_discard_killed_buffers): Mark the final cdr.
5295 * window.h (struct window): Move prev/next_buffers to the
5296 non-standard fields.
5297 * window.c (make_window): Initialize prev/next_buffers manually.
5298
5299 2012-09-20 Paul Eggert <eggert@cs.ucla.edu>
5300
5301 Omit unused arg EXPECTED from socket hooks.
5302 * keyboard.c (gobble_input, read_avail_input, tty_read_avail_input):
5303 * nsterm.m (ns_term_init):
5304 * termhooks.h (struct terminal.read_socket_hook):
5305 * w32inevt.c (w32_console_read_socket):
5306 * w32term.c (w32_read_socket):
5307 * xterm.c (XTread_socket):
5308 Omit unused arg EXPECTED. All callers changed.
5309 (store_user_signal_events): Return void, not int, since callers no
5310 longer care about the return value. All uses changed.
5311
5312 2012-09-20 Juanma Barranquero <lekktu@gmail.com>
5313
5314 * w32gui.h (XParseGeometry): Do not declare.
5315
5316 2012-09-19 Paul Eggert <eggert@cs.ucla.edu>
5317
5318 * w32inevt.c (w32_console_read_socket): Return -1 on failure, not 0.
5319 Ignore 'expected'. See Eli Zaretskii in
5320 <http://bugs.gnu.org/12471#8> (last line).
5321
5322 * frame.c (read_integer): Remove. All uses replaced by strtol/strtoul.
5323 (XParseGeometry): Now static. Substitute extremal values for
5324 values that are out of range.
5325
5326 2012-09-19 Jan Djärv <jan.h.d@swipnet.se>
5327
5328 * w32xfns.c (read_integer, XParseGeometry): Move to frame.c.
5329
5330 * nsfns.m (XParseGeometry): Remove.
5331 (Fx_create_frame): Call x_set_offset to correctly interpret
5332 top_pos in geometry.
5333
5334 * frame.c (read_integer, XParseGeometry): Move from w32xfns.c.
5335 (Fx_parse_geometry): If there is a space in string, call
5336 Qns_parse_geometry, otherwise do as on other terms (Bug#12368).
5337
5338 2012-09-17 Eli Zaretskii <eliz@gnu.org>
5339
5340 * search.c (scan_buffer): Use character positions in calls to
5341 region_cache_forward and region_cache_backward, not byte
5342 positions. (Bug#12196)
5343
5344 * w32term.c (w32_read_socket): Set pending_signals to 1, like
5345 xterm.c does. Reported by Daniel Colascione <dancol@dancol.org>.
5346
5347 * ralloc.c (r_alloc_init) [!SYSTEM_MALLOC]: Initialize
5348 __malloc_extra_blocks to 32 instead of 64, like alloc.c did in
5349 emacs_blocked_malloc, now deleted.
5350
5351 2012-09-17 Paul Eggert <eggert@cs.ucla.edu>
5352
5353 Remove no-longer-needed Solaris 2.4 vfork bug workaround.
5354 The workaround was for improving performance on Solaris 2.4, but
5355 is getting in the way now. Emacs will still work if someone is
5356 still running Solaris 2.4 in a museum somewhere; Sun dropped
5357 support for Solaris 2.4 in 2003.
5358 * callproc.c (Fcall_process) [HAVE_WORKING_VFORK]:
5359 * process.c (create_process) [HAVE_WORKING_VFORK]:
5360 Omit now-unnecessary workaround for the Solaris 2.4 vfork bug,
5361 since Emacs no longer uses vfork on that platform.
5362
5363 2012-09-17 Glenn Morris <rgm@gnu.org>
5364
5365 * emacs.c: Use COPYRIGHT.
5366
5367 2012-09-16 Paul Eggert <eggert@cs.ucla.edu>
5368
5369 Remove configure's --without-sync-input option (Bug#12450).
5370 When auditing signal-handling in preparation for cleaning it up,
5371 I found that SYNC_INPUT has race conditions and would be a real
5372 pain to fix. Since it's an undocumented and deprecated
5373 configure-time option, now seems like a good time to remove it.
5374 Also see <http://bugs.gnu.org/11080#16>.
5375 * alloc.c (_bytes_used, __malloc_extra_blocks, _malloc_internal)
5376 (_free_internal) [!DOUG_LEA_MALLOC]: Remove decls.
5377 (alloc_mutex) [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
5378 (malloc_hysteresis):
5379 (check_depth) [XMALLOC_OVERRUN_CHECK]:
5380 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT):
5381 (__malloc_hook, __realloc_hook, __free_hook, BYTES_USED)
5382 (dont_register_blocks, bytes_used_when_reconsidered)
5383 (bytes_used_when_full, emacs_blocked_free, emacs_blocked_malloc)
5384 (emacs_blocked_realloc, reset_malloc_hooks, uninterrupt_malloc):
5385 [!SYSTEM_MALLOC && !SYNC_INPUT]:
5386 Remove. All uses removed.
5387 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): Use a different
5388 implementation, one that depends on whether the new macro
5389 XMALLOC_BLOCK_INPUT_CHECK is defined, not on whether SYNC_INPUT
5390 is defined.
5391 * atimer.c (run_timers, handle_alarm_signal):
5392 * keyboard.c (pending_signal, poll_for_input_1, poll_for_input)
5393 (handle_async_input, process_pending_signals)
5394 (handle_input_available_signal, init_keyboard):
5395 * nsterm.m (ns_read_socket):
5396 * process.c (wait_reading_process_output):
5397 * regex.c (immediate_quit, IMMEDIATE_QUIT_CHECK):
5398 * sysdep.c (emacs_sigaction_init) [SA_RESTART]:
5399 (emacs_write):
5400 * xterm.c (XTread_socket):
5401 Assume SYNC_INPUT.
5402 * conf_post.h (SA_RESTART) [IRIX6_5]: Do not #undef.
5403 * eval.c (handling_signal): Remove. All uses removed.
5404 * lisp.h (ELSE_PENDING_SIGNALS): Remove.
5405 All uses replaced with the SYNC_INPUT version.
5406 (reset_malloc_hooks, uninterrupt_malloc, handling_signal):
5407 Remove decls.
5408 * sysdep.c, syssignal.h (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
5409 Now static.
5410
5411 * font.c (Ffont_shape_gstring): Remove unused local.
5412
5413 2012-09-16 Glenn Morris <rgm@gnu.org>
5414
5415 * Makefile.in (clean): No longer run nextstep's clean.
5416
5417 * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Remove variables.
5418 (ns_frag): Remove.
5419 (ns-app): Move here from ns.mk, and simplify.
5420 (clean): Simplify nextstep entry.
5421 * ns.mk: Remove file.
5422
5423 2012-09-17 Kenichi Handa <handa@gnu.org>
5424
5425 * font.c (Ffont_shape_gstring): Fix previous change; GLYPHs may
5426 not covert the last few charactes.
5427
5428 2012-09-16 Kenichi Handa <handa@gnu.org>
5429
5430 * font.c (Ffont_shape_gstring): Don't adjust grapheme cluster
5431 here, but just check the validity of glyphs in the glyph-string.
5432
5433 2012-09-16 Martin Rudalics <rudalics@gmx.at>
5434
5435 * window.c (Fwindow_parameter, Fset_window_parameter):
5436 Accept any window as argument (Bug#12452).
5437
5438 2012-09-16 Jan Djärv <jan.h.d@swipnet.se>
5439
5440 * nsfns.m (Fx_open_connection): Move initialization of ns_*_types
5441 to ns_term_init to avoid memory leak.
5442
5443 * nsterm.m (ns_update_begin): Initialize bp after lcokFocus, use
5444 explicit retain/release.
5445 (ns_term_init): Only allow one display. Initialize outerpool and
5446 ns_*_types.
5447
5448 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
5449
5450 Port _setjmp fix to POSIXish hosts as well as Microsoft.
5451 * image.c (_setjmp) [!HAVE__SETJMP]: Restore definition, as
5452 it's needed on POSIXish hosts that lack _setjmp. Attempt to solve
5453 the Microsoft problem in a different way, by altering ../nt/config.nt.
5454
5455 2012-09-15 Eli Zaretskii <eliz@gnu.org>
5456
5457 * w32xfns.c:
5458 * w32uniscribe.c:
5459 * w32term.c:
5460 * w32select.c:
5461 * w32reg.c:
5462 * w32proc.c:
5463 * w32menu.c:
5464 * w32inevt.c:
5465 * w32heap.c:
5466 * w32font.c:
5467 * w32fns.c:
5468 * w32console.c:
5469 * w32.c:
5470 * w16select.c: Remove inclusion of setjmp.h, as it is now included
5471 by lisp.h. This completes removal of setjmp.h inclusion
5472 erroneously announced in the previous commit. (Bug#12446)
5473
5474 * lisp.h [!HAVE__SETJMP, !HAVE_SIGSETJMP]: Make the commentary
5475 more accurate.
5476
5477 * image.c (_setjmp) [!HAVE__SETJMP]: Define only if 'setjmp' is
5478 not defined as a macro. The latter happens on MS-Windows.
5479 (Bug#12446)
5480
5481 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
5482
5483 Port better to POSIX hosts lacking _setjmp (Bug#12446).
5484 * lisp.h: Include <setjmp.h> here, since we use its symbols here.
5485 Some instances of '#include <setjmp.h>' removed, if the
5486 only reason for the instance was because "lisp.h" was included.
5487 (sys_jmp_buf, sys_setjmp, sys_longjmp): New symbols.
5488 Unless otherwise specified, replace all uses of jmp_buf, _setjmp,
5489 and _longjmp with the new symbols. Emacs already uses _setjmp if
5490 available, so this change affects only POSIXish hosts that have
5491 sigsetjmp but not _setjmp, such as some versions of Solaris and
5492 Unixware. (Also, POSIX-2008 marks _setjmp as obsolescent.)
5493 * image.c (_setjmp, _longjmp) [HAVE_PNG && !HAVE__SETJMP]: New macros.
5494 (png_load_body) [HAVE_PNG]:
5495 (PNG_LONGJMP) [HAVE_PNG && PNG_LIBPNG_VER < 10500]:
5496 (PNG_JMPBUF) [HAVE_PNG && PNG_LIBPNG_VER >= 10500]:
5497 Use _setjmp and _longjmp rather than sys_setjmp and sys_longjmp,
5498 since PNG requires jmp_buf. This is the only exception to the
5499 general rule that we now use sys_setjmp and sys_longjmp.
5500 This exception is OK since this code does not change the signal
5501 mask or longjmp out of a signal handler.
5502
5503 2012-09-14 Paul Eggert <eggert@cs.ucla.edu>
5504
5505 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
5506 Include "syssignal.h", for 'main_thread'.
5507
5508 2012-09-14 Dmitry Antipov <dmantipov@yandex.ru>
5509
5510 Avoid out-of-range marker position (Bug#12426).
5511 * insdel.c (replace_range, replace_range_2):
5512 Adjust markers before overlays, as suggested by comments.
5513 (insert_1_both, insert_from_buffer_1, adjust_after_replace):
5514 Remove redundant check before calling offset_intervals.
5515
5516 2012-09-14 Martin Rudalics <rudalics@gmx.at>
5517
5518 * xdisp.c (Fformat_mode_line): Unconditionally save/restore
5519 current buffer (Bug#12387).
5520
5521 2012-09-14 Juanma Barranquero <lekktu@gmail.com>
5522
5523 * makefile.w32-in ($(BLD)/alloc.$(O)): Update dependencies.
5524
5525 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
5526
5527 Use a more backwards-compatible timer format (Bug#12430).
5528 * keyboard.c (decode_timer): Get PSECS from the 8th (origin-0)
5529 vector element, not from the 4th, since PSECS is now at the end.
5530 (Fcurrent_idle_time): Doc fix.
5531
5532 2012-09-13 Dmitry Antipov <dmantipov@yandex.ru>
5533
5534 Function to mark objects and remove killed buffers at once.
5535 * alloc.c (discard_killed_buffers): Rename to ...
5536 (mark_discard_killed buffers) ... new name. Add marking
5537 of remaining objects. Fix comment. Adjust users.
5538 (mark_object): Do not touch frame buffer lists here.
5539 * frame.c (delete_frame): Reset frame buffer lists here.
5540
5541 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
5542
5543 Better workaround for GNOME bug when --enable-gcc-warnings.
5544 * emacsgtkfixed.c (G_STATIC_ASSERT): Remove, undoing last change.
5545 Instead, disable -Wunused-local-typedefs. See Dmitry Antipov in
5546 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00335.html>.
5547
5548 Simplify SIGIO usage (Bug#12408).
5549 The code that dealt with SIGIO was crufty and confusing, e.g., it
5550 played tricks like "#undef SIGIO" but these tricks were not used
5551 consistently. Simplify mostly by not #undeffing standard symbols,
5552 e.g., use "defined USABLE_SIGIO" (our symbol, which we can define
5553 or not as we please) rather than "defined SIGIO" (standard symbol
5554 that we probably shouldn't #undef).
5555 * conf_post.h [USG5_4]: Do not include <sys/wait.h> here.
5556 Modules that need it can include it.
5557 [USG5_4 && emacs]: Likewise, do not include the streams stuff here.
5558 * dispextern.h (ignore_sigio): New decl.
5559 * emacs.c (shut_down_emacs): Invoke unrequest_sigio
5560 unconditionally, since it's now a no-op if !USABLE_SIGIO.
5561 * emacs.c (shut_down_emacs):
5562 * keyboard.c (kbd_buffer_store_event_hold):
5563 Use ignore_sigio rather than invoking 'signal' directly.
5564 * keyboard.c (USABLE_FIONREAD && USG5_4): Include <sys/filio.h>,
5565 for FIONREAD.
5566 (FIONREAD, SIGIO): Do not #undef.
5567 (tty_read_avail_input): Use #error rather than a syntax error.
5568 * process.c [USG5_4]: Include <sys/stream.h> and <sys/stropts.h>,
5569 for I_PIPE, used by SETUP_SLAVE_PTY.
5570 (DATAGRAM_SOCKETS): Simplify defn, based on USABLE_FIONREAD.
5571 * sysdep.c (croak): Remove; no longer needed. This bit of
5572 temporary code, with Fred N. Fish's comment that it's temporary,
5573 has been in Emacs since at least 1992!
5574 (init_sigio, reset_sigio, request_sigio, unrequest_sigio):
5575 Arrange for them to be no-ops in all cases when ! USABLE_SIGIO.
5576 * syssignal.h (croak): Remove decl.
5577 (SIGIO, SIGPOO, SIGAIO, SIGPTY): Do not #undef; that's too fragile.
5578 * systty.h [!NO_TERMIO]: Do not include <termio.h>; no longer needed
5579 now that we're termios-only.
5580 (FIONREAD, ASYNC) [BROKEN_FIONREAD]: Do not #undef.
5581 * term.c (dissociate_if_controlling_tty): Use #error rather than
5582 a run-time error.
5583
5584 Work around GCC and GNOME bugs when --enable-gcc-warnings.
5585 * emacsgtkfixed.c (G_STATIC_ASSERT): Redefine to use 'verify',
5586 to work around GNOME bug 683906.
5587 * image.c (jpeg_load_body) [HAVE_JPEG && lint]: Pacify gcc -Wclobber.
5588 (struct my_jpeg_error_mgr) [HAVE_JPEG && lint]: New member fp.
5589 This works around GCC bug 54561.
5590
5591 2012-09-12 Paul Eggert <eggert@cs.ucla.edu>
5592
5593 More fixes for 'volatile' and setjmp/longjmp.
5594 * eval.c (Fdefvar, Fcondition_case): Remove unnecessary 'volatile's.
5595 * image.c (struct png_load_context) [HAVE_PNG]: New type.
5596 (png_load_body) [HAVE_PNG]:
5597 (jpeg_load_body) [HAVE_JPEG]:
5598 New function, with most of the old parent function's body.
5599 (png_load) [HAVE_PNG]:
5600 (jpeg_load) [HAVE_JPEG]:
5601 Invoke the new function, to avoid longjmp munging our locals.
5602 (struct my_jpeg_error_mgr) [HAVE_JPEG]: New members cinfo, failure_code.
5603 (my_error_exit) [HAVE_JPEG]: Don't trust 'setjmp' to return 2 when
5604 longjmp is passed 2, as the C standard doesn't guarantee this.
5605 Instead, store the failure code into mgr->failure_code.
5606
5607 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
5608
5609 * keyboard.c (read_char, requeued_events_pending_p, Finput_pending_p)
5610 (Fdiscard_input, quit_throw_to_read_char, init_keyboard)
5611 (syms_of_keyboard): Remove support for unread-command-char.
5612
5613 2012-09-12 Eli Zaretskii <eliz@gnu.org>
5614
5615 * w32proc.c (sys_kill): If PID is our process ID and the signal is
5616 SIGABRT, call emacs_abort. Avoids silently exiting upon assertion
5617 violation. (Bug#12426)
5618
5619 2012-09-12 Paul Eggert <eggert@cs.ucla.edu>
5620
5621 * image.c (jpeg_memory_src): Don't assume string len fits in unsigned.
5622
5623 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
5624
5625 * eval.c: Add `inhibit-debugger'.
5626 (Qinhibit_debugger): New symbol.
5627 (call_debugger): Bind it instead of Qdebug_on_error.
5628 (maybe_call_debugger): Test Vinhibit_debugger.
5629 (syms_of_eval): Define inhibit-debugger.
5630 * xdisp.c (set_message): Don't bind Qinhibit_debug_on_message.
5631 (syms_of_xdisp): Remove inhibit-debug-on-message.
5632
5633 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
5634
5635 Avoid _setjmp/_longjmp problems with local nonvolatile variables.
5636 If a nonvolatile local variable is written before a _longjmp to
5637 the frame containing the variable, and is read after the _longjmp,
5638 the value read is indeterminate. Some local variables of type
5639 'struct handler' and 'struct catchtag' are used in this way, so
5640 mark each of their slots as volatile if the slot can be set before
5641 _longjmp and read afterwards.
5642 * lisp.h (struct handler): var and chosen_clause are now volatile.
5643 (struct catchtag): val, next, and pdlcount are now volatile.
5644
5645 * bidi.c (bidi_push_it, bidi_pop_it):
5646 * fns.c (copy_hash_table):
5647 * image.c (define_image_type):
5648 * keyboard.c (kbd_buffer_store_event_hold):
5649 * process.c (Fprocess_send_eof):
5650 * xfaces.c (x_create_gc) [HAVE_NS]:
5651 * xgselect.c (xg_select):
5652 Prefer assignment to memcpy when either will do.
5653
5654 * alloc.c (discard_killed_buffers): Tune and simplify a bit.
5655 Use pointer-to-a-pointer to simplify and avoid a NILP check each
5656 time an item is removed. No need to mark this function 'inline';
5657 the compiler knows better than we do.
5658
5659 2012-09-11 Jan Djärv <jan.h.d@swipnet.se>
5660
5661 * nsterm.m (ns_judge_scroll_bars): Pass NO to updateFrameSize.
5662 (updateFrameSize:): Add delay parameter to updateFrameSize, send it
5663 to change_frame_size (Bug#12388).
5664 (windowDidResize:): Pass YES to updateFrameSize.
5665
5666 * nsterm.h: Add delay parameter to updateFrameSize.
5667
5668 2012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
5669
5670 Discard killed buffers from deleted window and frame objects.
5671 This reduces an amount of references to killed buffers and
5672 helps GC to reclaim them faster.
5673 * alloc.c (discard_killed_buffers): New function.
5674 (mark_object): Use it for deleted windows and frames.
5675 (mark_object): If symbol's value is set up for a killed buffer
5676 or deleted frame, restore its global binding.
5677 * data.c (swap_in_global_binding): Add GC notice.
5678 (swap_in_symval_forwarding): Use convenient set_blv_where.
5679 * window.c (wset_next_buffers, wset_prev_buffers): Move ...
5680 * window.h: ... to here.
5681
5682 2012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
5683
5684 Convenient macro to check whether the buffer is live.
5685 * buffer.h (BUFFER_LIVE_P): New macro.
5686 * alloc.c, buffer.c, editfns.c, insdel.c, lread.c, marker.c:
5687 * minibuf.c, print.c, process.c, window.c, xdisp.c: Use it.
5688
5689 2012-09-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5690
5691 * xdisp.c (right_overwritten, right_overwriting): Also handle gstring
5692 composition cases (Bug#12364).
5693
5694 * xterm.c (x_draw_glyph_string): Avoid overwriting inverted left
5695 overhang of succeeding glyphs overlapping box cursor.
5696
5697 * w32term.c (x_draw_glyph_string): Likewise.
5698
5699 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
5700
5701 Simplify, document, and port floating-point (Bug#12381).
5702 The porting part of this patch fixes bugs on non-IEEE platforms
5703 with frexp, ldexp, logb.
5704 * data.c, lisp.h (Qdomain_error, Qsingularity_error, Qunderflow_error):
5705 Now static.
5706 * floatfns.c: Simplify discussion of functions that Emacs doesn't
5707 support, by removing commented-out code and briefly listing the
5708 C89 functions excluded. The commented-out stuff was confusing
5709 maintenance, e.g., we thought we needed cbrt but it was commented out.
5710 (logb): Remove decl; no longer needed.
5711 (isfinite): New macro, if not already supplied.
5712 (isnan): Don't replace any existing macro.
5713 (Ffrexp, Fldexp): Define even if !HAVE_COPYSIGN, as frexp and ldexp
5714 are present on all C89 platforms.
5715 (Ffrexp): Do not special-case zero, as frexp does the right thing
5716 for that case.
5717 (Flogb): Do not use logb, as it doesn't have the desired meaning
5718 on hosts that use non-base-2 floating point. Instead, stick with
5719 frexp, which is C89 anyway. Do not pass an infinity or a NaN to
5720 frexp, to avoid getting an unspecified result.
5721
5722 * xdisp.c (Qinhibit_debug_on_message): Now static.
5723
5724 2012-09-10 Jan Djärv <jan.h.d@swipnet.se>
5725
5726 * nsterm.m (ns_update_begin): Set clip path to whole view by using
5727 NSBezierPath (Bug#12131).
5728
5729 2012-09-10 Chong Yidong <cyd@gnu.org>
5730
5731 * fns.c (Fdelq, Fdelete): Doc fix.
5732
5733 2012-09-10 Paul Eggert <eggert@cs.ucla.edu>
5734
5735 * lisp.h (XSETINT, XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL)
5736 (XSETFLOAT, XSETMISC): Parenthesize macro bodies.
5737
5738 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
5739
5740 * lisp.h (make_lisp_ptr): New macro to replace XSET.
5741 (XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL, XSETFLOAT, XSETMISC):
5742 Use it.
5743
5744 2012-09-09 Eli Zaretskii <eliz@gnu.org>
5745
5746 * fringe.c (draw_fringe_bitmap_1): Don't reduce the width of the
5747 left fringe if the window has a left margin. This avoids leaving
5748 traces of the cursor because its leftmost pixel is not drawn over.
5749
5750 * dispnew.c (update_window_line): When the left margin area of a
5751 screen line is updated, set the redraw_fringe_bitmaps_p flag of
5752 that screen line. (Bug#12277)
5753
5754 2012-09-09 Paul Eggert <eggert@cs.ucla.edu>
5755
5756 Assume C89 or later for math functions (Bug#12381).
5757 This simplifies the code, and makes it a bit smaller and faster,
5758 and (most important) makes it easier to clean up signal handling
5759 since we can stop worring about floating-point exceptions in
5760 library code. That was a problem before C89, but the problem
5761 went away many years ago on all practical Emacs targets.
5762 * data.c, image.c, lread.c, print.c:
5763 Don't include <math.h>; no longer needed.
5764 * data.c, floatfns.c (IEEE_FLOATING_POINT): Don't worry that it
5765 might be autoconfigured, as that never happens.
5766 * data.c (fmod):
5767 * doprnt.c (DBL_MAX_10_EXP):
5768 * print.c (DBL_DIG):
5769 Remove. C89 or later always defines these.
5770 * floatfns.c (HAVE_MATHERR, FLOAT_CHECK_ERRNO, FLOAT_CHECK_DOMAIN)
5771 (in_float, float_error_arg, float_error_arg2, float_error_fn_name)
5772 (arith_error, domain_error, domain_error2):
5773 Remove all this pre-C89 cruft. Do not include <errno.h> as that's
5774 no longer needed -- we simply return what C returns. All uses removed.
5775 (IN_FLOAT, IN_FLOAT2): Remove. All uses replaced with
5776 the wrapped code.
5777 (FLOAT_TO_INT, FLOAT_TO_INT2, range_error, range_error2):
5778 Remove. All uses expanded, as these macros are no longer used
5779 more than once and are now more trouble than they're worth.
5780 (Ftan): Use tan, not sin / cos.
5781 (Flogb): Assume C89 frexp.
5782 (fmod_float): Assume C89 fmod.
5783 (matherr) [HAVE_MATHERR]: Remove; no longer needed.
5784 (init_floatfns): Remove. All uses removed.
5785
5786 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
5787
5788 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Take back
5789 compositeToPoint for OSX < 10.6 (Bug#12390).
5790
5791 2012-09-08 Paul Eggert <eggert@cs.ucla.edu>
5792
5793 * floatfns.c (Ftan): Use tan (x), not (sin (x) / cos (x)).
5794 This produces more-accurate results.
5795
5796 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
5797
5798 * nsterm.m (updateFrameSize): Call setFrame: on the view when size
5799 changes (Bug#12088).
5800
5801 2012-09-08 Chong Yidong <cyd@gnu.org>
5802
5803 * syntax.c (Fstring_to_syntax): Doc fix.
5804
5805 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
5806
5807 * nsterm.m (ns_clip_to_row): Remove code that deals with drawing fringe
5808 in the internal border.
5809 (x_set_window_size): Remove static variables and their usage.
5810 (ns_redraw_scroll_bars): Fix NSTRACE arg.
5811 (ns_after_update_window_line, ns_draw_fringe_bitmap):
5812 Remove fringe/internal border adjustment (Bug#11052).
5813 (ns_draw_fringe_bitmap): Make code more like other terms (xterm.c).
5814 (ns_draw_window_cursor): Remove fringe/internal border adjustment.
5815 (ns_fix_rect_ibw): Remove.
5816 (ns_get_glyph_string_clip_rect): Remove call to ns_fix_rect_ibw.
5817 (ns_dumpglyphs_box_or_relief): Ditto.
5818 (ns_maybe_dumpglyphs_background): Remove fringe/internal border
5819 adjustment.
5820 (ns_dumpglyphs_image): Ditto.
5821 (ns_dumpglyphs_stretch): Fix coding style. Remove fringe/internal
5822 border adjustment.
5823 (ns_set_vertical_scroll_bar): Remove variables barOnVeryLeft/Right and
5824 their usage. Add fringe_extended_p and its use as in other terms.
5825 (ns_judge_scroll_bars): Code style fix. Call updateFrameSize if
5826 scroll bar was removed.
5827 (updateFrameSize): New function.
5828 (windowDidResize): Move code to updateFrameSize and call it.
5829
5830 * nsterm.h (EmacsView): Add updateFrameSize.
5831
5832 2012-09-07 Chong Yidong <cyd@gnu.org>
5833
5834 * textprop.c (Fget_text_property): Minor doc fix (Bug#12323).
5835
5836 * data.c (Flocal_variable_if_set_p): Doc fix (Bug#10713).
5837
5838 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
5839
5840 More signal-handler cleanup (Bug#12327).
5841 * emacs.c (main): Convert three 'signal' calls to 'sigaction' calls.
5842 Problem introduced when merging patches. Noted by Eli Zaretskii in
5843 <http://bugs.gnu.org/12327#67>.
5844 * floatfns.c: Comment fix.
5845 * lisp.h (force_auto_save_soon): Declare regardless of SIGDANGER.
5846 SIGDANGER might not be in scope so "#ifdef SIGDANGER" is not right,
5847 and anyway the declaration is harmless even if SIGDANGER is not defined.
5848 * syssignal.h (SIGIO): Also #undef if (! defined FIONREAD ||
5849 defined BROKEN_FIONREAD). systty.h formerly did this, but other
5850 source files not surprisingly expected syssignal.h to define, or
5851 not define, SIGIO, and it's cleaner to do it that way, for consistency.
5852 Include <sys/ioctl.h>, for FIONREAD.
5853 * systty.h (SIGIO): Do not #undef here; it's now syssignal.h's job.
5854 This eliminates a problem whereby other files mysteriously had
5855 to include "syssignal.h" before including "systty.h" if they
5856 wanted to use "#ifdef SIGIO".
5857
5858 2012-09-07 Eli Zaretskii <eliz@gnu.org>
5859
5860 * w32proc.c (sigaction): New function, emulates Posix 'sigaction'.
5861
5862 * w32.c (sigemptyset): Empty the set.
5863 (sigsetmask, sigmask, sigblock, sigunblock): Remove unused functions.
5864
5865 * alloc.c [ENABLE_CHECKING]: Include signal.h, since we need SIGABRT.
5866
5867 2012-09-07 Dmitry Antipov <dmantipov@yandex.ru>
5868
5869 * alloc.c (mark_buffer): Revert unsafe marking optimization.
5870 (mark_object): Likewise for frame objects.
5871
5872 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
5873
5874 * syssignal.h (handle_on_main_thread): Always declare,
5875 even if FORWARD_SIGNAL_TO_MAIN_THREAD is not defined.
5876 This ports to platforms without HAVE_PTHREAD.
5877
5878 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
5879
5880 Signal-handler cleanup (Bug#12327).
5881 Emacs's signal handlers were written in the old 4.2BSD style with
5882 sigblock and sigmask and so forth, and this led to some
5883 inefficiencies and confusion. Rewrite these to use
5884 pthread_sigmask etc. without copying signal sets around. Also,
5885 get rid of the confusing macros 'SIGNAL_THREAD_CHECK' and
5886 'signal', and instead use functions that do not attempt to take
5887 over the system name space. This patch causes Emacs's text
5888 segment to shrink by 0.7% on my platform, Fedora 17 x86-64.
5889 * alloc.c, emacsgtkfixed.c, nsfns.m, widget.c, xmenu.c:
5890 Do not include <signal.h> or "syssignal.h", as these
5891 modules do not use signals.
5892 * atimer.c, callproc.c, data.c, dispnew.c, emacs.c, floatfns.c:
5893 * gtkutil.c, keyboard.c, process.c, sound.c, sysdep.c, term.c, xterm.c:
5894 Do not include <signal.h>, as "syssignal.h" does that for us now.
5895 * atimer.c (sigmask_atimers): New function.
5896 (block_atimers, unblock_atimers): New functions,
5897 replacing the old macros BLOCK_ATIMERS and UNBLOCK_ATIMERS.
5898 All uses replaced.
5899 * conf_post.h [SIGNAL_H_AHB]: Do not include <signal.h>;
5900 no longer needed here.
5901 * emacs.c (main): Inspect existing signal handler with sigaction,
5902 so that there's no need to block and unblock SIGHUP.
5903 * sysdep.c (struct save_signal): New member 'action', replacing
5904 old member 'handler'.
5905 (save_signal_handlers, restore_signal_handlers):
5906 Use sigaction instead of 'signal' to save and restore.
5907 (get_set_sighandler, set_sighandler) [!WINDOWSNT]:
5908 New function. All users of 'signal' modified to use set_sighandler
5909 if they're writeonly, and to use sys_signal if they're read+write.
5910 (emacs_sigaction_init, forwarded_signal): New functions.
5911 (sys_signal): Remove. All uses replaced by calls to sigaction
5912 and emacs_sigaction_init, or by direct calls to 'signal'.
5913 (sys_sigmask) [!__GNUC__]: Remove; no longer needed.
5914 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove;
5915 all uses replaced by pthread_sigmask etc. calls.
5916 * syssignal.h: Include <signal.h>.
5917 (emacs_sigaction_init, forwarded_signal): New decls.
5918 (SIGMASKTYPE): Remove. All uses replaced by its definiens, sigset_t.
5919 (SIGEMPTYMASK): Remove; all uses replaced by its definiens, empty_mask.
5920 (sigmask, sys_sigmask): Remove; no longer needed.
5921 (sigpause): Remove. All uses replaced by its definiens, sigsuspend.
5922 (sigblock, sigunblock, sigfree):
5923 (sigsetmask) [!defined sigsetmask]:
5924 Remove. All uses replaced by pthread_sigmask.
5925 (signal): Remove. Its remaining uses (with SIG_DFL and SIG_IGN)
5926 no longer need to be replaced, and its typical old uses
5927 are now done via emacs_sigaction_init and sigaction.
5928 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove decls.
5929 (sys_sigdel): Remove; unused.
5930 (NSIG): Remove a FIXME; the code's fine. Remove an unnecessary ifdef.
5931
5932 2012-09-06 Eli Zaretskii <eliz@gnu.org>
5933
5934 * process.c (CAN_HANDLE_MULTIPLE_CHILDREN): Fix a typo that broke
5935 SIGCHLD handling on systems that don't have WNOHANG. (Bug#12327)
5936
5937 2012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
5938
5939 Explicitly mark buffer_defaults and buffer_local_symbols.
5940 * alloc.c (Fgarbage_collect): Mark buffer_defaults and
5941 mark_local_symbols here.
5942 (mark_object): If GC_CHECK_MARKED_OBJECTS, simplify checking
5943 since special buffers aren't marked here any more.
5944 (allocate_buffer): Chain new buffer with all_buffers here...
5945 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): ...and
5946 not here.
5947 (Vbuffer_defaults, Vbuffer_local_symbols): Remove.
5948 (syms_of_buffer): Remove staticpro of the above.
5949 (init_buffer_once): Set names for buffer_defaults and
5950 buffer_local_symbols.
5951
5952 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
5953
5954 Use bool for booleans in font-related modules.
5955 * font.c (font_intern_prop, font_style_to_value)
5956 (font_style_symbolic, font_parse_xlfd, font_parse_fcname)
5957 (generate_otf_features, font_check_otf_features, font_check_otf)
5958 (font_match_p, font_list_entities, font_at):
5959 * fontset.c (fontset_id_valid_p, reorder_font_vector
5960 (fontset_find_font, Fset_fontset_font)
5961 (face_suitable_for_char_p) [0]:
5962 * ftfont.c (fc_initialized, ftfont_get_open_type_spec)
5963 (ftfont_open, ftfont_text_extents, ftfont_check_otf):
5964 (m17n_flt_initialized, ftfont_shape_by_flt):
5965 * ftxfont.c (ftxfont_draw_bitmap, ftxfont_draw):
5966 * nsfont.m (nsfont_draw):
5967 * w32font.c (w32font_draw):
5968 * w32term.c (x_draw_glyphless_glyph_string_foreground):
5969 Use bool for booleans.
5970 * font.h: Adjust to above API changes.
5971 (struct font, struct font_driver, struct font_driver_list):
5972 Use bool for booleans.
5973 (struct font): Remove useless member encoding_type.
5974 All users removed.
5975 * fontset.c, xftfont.c: Omit unnecessary static decls.
5976
5977 2012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
5978
5979 * alloc.c (mark_object): Revert window marking code
5980 since it's unsafe for the Fset_window_configuration.
5981
5982 2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
5983
5984 Fix race conditions with signal handlers and errno (Bug#12327).
5985 Be more systematic about preserving errno whenever a signal
5986 handler returns, even if it's not in the main thread. Do this by
5987 renaming signal handlers to distinguish between signal delivery
5988 and signal handling. All uses changed.
5989 * atimer.c (deliver_alarm_signal): Rename from alarm_signal_handler.
5990 * data.c (deliver_arith_signal): Rename from arith_error.
5991 * dispnew.c (deliver_window_change_signal): Rename from
5992 window_change_signal.
5993 * emacs.c (deliver_error_signal): Rename from fatal_error_signal.
5994 (deliver_danger_signal) [SIGDANGER]: Rename from memory_warning_signal.
5995 * keyboard.c (deliver_input_available_signal): Rename from
5996 input_available_signal.
5997 (deliver_user_signal): Rename from handle_user_signal.
5998 (deliver_interrupt_signal): Rename from interrupt_signal.
5999 * process.c (deliver_pipe_signal): Rename from send_process_trap.
6000 (deliver_child_signal): Rename from sigchld_handler.
6001 * atimer.c (handle_alarm_signal):
6002 * data.c (handle_arith_signal):
6003 * dispnew.c (handle_window_change_signal):
6004 * emacs.c (handle_fatal_signal, handle_danger_signal):
6005 * keyboard.c (handle_input_available_signal):
6006 * keyboard.c (handle_user_signal, handle_interrupt_signal):
6007 * process.c (handle_pipe_signal, handle_child_signal):
6008 New functions, with the actual signal-handling code taken from the
6009 original respective signal handlers, sans the sporadic attempts to
6010 preserve errno, since that's now done by handle_on_main_thread.
6011 * atimer.c (alarm_signal_handler): Remove unnecessary decl.
6012 * emacs.c, floatfns.c, lisp.h: Remove unused FLOAT_CATCH_SIGKILL cruft.
6013 * emacs.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
6014 Move to sysdep.c.
6015 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
6016 Move initialization of main_thread to sysdep.c's init_signals.
6017 * process.c (waitpid) [!WNOHANG]: #define to wait; that's good enough for
6018 our usage, and simplifies the mainline code.
6019 (record_child_status_change): New static function, as a helper
6020 for handle_child_signal, and with most of the old child handler's
6021 contents.
6022 (CAN_HANDLE_MULTIPLE_CHILDREN): New constant.
6023 (handle_child_signal): Use the above.
6024 * sysdep.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
6025 Moved here from emacs.c.
6026 (init_signals) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it;
6027 code moved here from emacs.c's main function.
6028 * sysdep.c, syssignal.h (handle_on_main_thread): New function,
6029 replacing the old SIGNAL_THREAD_CHECK. All uses changed.
6030 This lets callers save and restore errno properly.
6031
6032 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
6033
6034 Remove redundant or unused things here and there.
6035 * lisp.h (CYCLE_CHECK, CHAR_TABLE_TRANSLATE): Remove.
6036 * conf_post.h (RE_TRANSLATE): Use char_table_translate.
6037 * editfns.c (Fcompare_buffer_substrings): Likewise.
6038 * frame.h (struct terminal, struct font_driver_list):
6039 Remove redundant declarations.
6040 * window.h (Qleft, Qright): Likewise.
6041
6042 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
6043
6044 Do not mark objects from deleted buffers, windows and frames.
6045 * alloc.c (mark_buffer): Mark just the buffer if it is dead.
6046 (mark_object): Likewise for windows and frames.
6047
6048 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
6049
6050 * alloc.c (valid_lisp_object_p): Treat killed buffers,
6051 buffer_defaults and buffer_local_symbols as valid objects.
6052 Return special value to denote them.
6053
6054 2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
6055
6056 * fileio.c, filelock.c, floatfns.c, fns.c: Use bool for boolean.
6057 * fileio.c (auto_saving, auto_save_error_occurred, make_temp_name)
6058 (Fexpand_file_name, barf_or_query_if_file_exists, Fcopy_file)
6059 (file_name_absolute_p, Fsubstitute_in_file_name):
6060 (check_executable, check_writable, Ffile_accessible_directory_p)
6061 (Fset_file_selinux_context, Fdefault_file_modes)
6062 (Finsert_file_contents, choose_write_coding_system)
6063 (Fwrite_region, build_annotations, a_write, e_write)
6064 (Fdo_auto_save):
6065 * filelock.c (boot_time_initialized, get_boot_time)
6066 (get_boot_time_1, lock_file_1, within_one_second):
6067 * floatfns.c (in_float):
6068 * fns.c (concat, internal_equal, Frequire, base64_encode_1)
6069 (base64_decode_1, cmpfn_eql, cmpfn_user_defined)
6070 (sweep_weak_table, sweep_weak_hash_tables, secure_hash):
6071 * lisp.h (struct Lisp_Hash_Table.cmpfn):
6072 * window.c (compare_window_configurations):
6073 Use bool for booleans.
6074 * fileio.c (auto_saving_dir_umask, auto_saving_mode_bits)
6075 (Fdefault_file_modes): Now mode_t, not int, for modes.
6076 (Fdo_auto_save): Set a boolean to 1 rather than using ++.
6077 (internal_delete_file): Now returns void, not a (boolean) int,
6078 since nobody was looking at the return value.
6079 * lisp.h, window.h: Adjust to above API changes.
6080
6081 * xdisp.c (set_message): Simplify and reindent last change.
6082
6083 2012-09-05 Juanma Barranquero <lekktu@gmail.com>
6084
6085 * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies.
6086
6087 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
6088
6089 * eval.c (call_debugger): Make the function non-static so that we
6090 can call it from set_message.
6091
6092 * xdisp.c (set_message): Implement the new variable `debug-on-message'.
6093 (syms_of_xdisp): Defvar it and `inhibit-debug-on-message'.
6094
6095 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
6096
6097 Give more-useful info on a fatal error (Bug#12328).
6098 * alloc.c [ENABLE_CHECKING]: Do not include <execinfo.h>.
6099 (die) [ENABLE_CHECKING]: Call fatal_error_backtrace instead
6100 of doing the work ourselves.
6101 * emacs.c (fatal_error_signal): Let fatal_error_backtrace
6102 do most of the work.
6103 (fatal_error_backtrace): New function, taken from the guts
6104 of the old fatal_error_signal, but with a new option to output
6105 a backtrace.
6106 (shut_down_emacs) [!DOS_NT]: Use strsignal to give more-useful
6107 info about the signal than just its number.
6108 * lisp.h (fatal_error_backtrace, emacs_backtrace): New decls.
6109 * sysdep.c: Include <execinfo.h>
6110 (emacs_backtrace): New function, taken partly from the previous
6111 code of the 'die' function.
6112 (emacs_abort): Call fatal_error_backtrace rather than abort.
6113
6114 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
6115
6116 * lread.c (readevalloop): Call internal-macroexpand-for-load to perform
6117 eager (load-time) macro-expansion.
6118 * lisp.mk (lisp): Add macroexp.
6119
6120 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
6121
6122 Simplify redefinition of 'abort' (Bug#12316).
6123 Do not try to redefine the 'abort' function. Instead, redo
6124 the code so that it calls 'emacs_abort' rather than 'abort'.
6125 This removes the need for the NO_ABORT configure-time macro
6126 and makes it easier to change the abort code to do a backtrace.
6127 * .gdbinit: Just stop at emacs_abort, not at w32_abort or abort.
6128 * emacs.c (abort) [!DOS_NT && !NO_ABORT]:
6129 Remove; sysdep.c's emacs_abort now takes its place.
6130 * lisp.h (emacs_abort): New decl. All calls from Emacs code to
6131 'abort' changed to use 'emacs_abort'.
6132 * msdos.c (dos_abort) [defined abort]: Remove; not used.
6133 (abort) [!defined abort]: Rename to ...
6134 (emacs_abort): ... new name.
6135 * sysdep.c (emacs_abort) [!HAVE_NTGUI]: New function, taking
6136 the place of the old 'abort' in emacs.c.
6137 * w32.c, w32fns.c (abort): Do not #undef.
6138 * w32.c (emacs_abort): Rename from w32_abort.
6139
6140 2012-09-04 Eli Zaretskii <eliz@gnu.org>
6141
6142 * w32uniscribe.c (uniscribe_shape): Reverse the sign of
6143 offsets[j].dv, since the y axis of the screen coordinates points
6144 down, while the y axis of the font definition coordinates points
6145 up. This fixes display of Arabic diacritics such as KASRA and
6146 KASRATAN. (Bug#11860)
6147
6148 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
6149
6150 Be more systematic about _setjmp vs setjmp.
6151 * alloc.c (test_setjmp, mark_stack):
6152 * image.c (PNG_LONGJMP) [PNG_LIBPNG_VER < 10500]:
6153 (PNG_JMPBUF) [! (PNG_LIBPNG_VER < 10500)]:
6154 (png_load, my_error_exit, jpeg_load):
6155 * process.c (send_process_trap, send_process):
6156 Uniformly prefer _setjmp and _longjmp to setjmp and longjmp.
6157 The underscored versions are up to 30x faster on some hosts.
6158 Formerly, the code used setjmp+longjmp sometimes and
6159 _setjmp+_longjmp at other times, with no particular reason to
6160 prefer setjmp+longjmp.
6161
6162 2012-09-03 Paul Eggert <eggert@cs.ucla.edu>
6163
6164 Fix minor problem found by static checking.
6165 * buffer.c (Fdelete_all_overlays): Return nil.
6166
6167 2012-09-03 Martin Rudalics <rudalics@gmx.at>
6168
6169 * buffer.c (Fdelete_all_overlays): New function.
6170
6171 2012-09-03 Chong Yidong <cyd@gnu.org>
6172
6173 * gtkutil.c: Add extern decl for Qxft.
6174
6175 2012-09-02 Paul Eggert <eggert@cs.ucla.edu>
6176
6177 * emacs.c, eval.c: Use bool for boolean.
6178 * emacs.c (initialized, inhibit_window_system, running_asynch_code):
6179 (malloc_using_checking) [DOUG_LEA_MALLOC]:
6180 (display_arg) [HAVE_X_WINDOWS || HAVE_NS]:
6181 (noninteractive, no_site_lisp, fatal_error_in_progress, argmatch)
6182 (main, decode_env_path, Fdaemon_initialized):
6183 * eval.c (call_debugger, Finteractive_p, interactive_p):
6184 (unwind_to_catch, Fsignal, wants_debugger, skip_debugger)
6185 (maybe_call_debugger, Fbacktrace):
6186 * process.c (read_process_output, exec_sentinel):
6187 Use bool for booleans.
6188 * emacs.c (shut_down_emacs): Omit unused boolean argument NO_X.
6189 All callers changed.
6190 * eval.c (interactive_p): Omit always-true boolean argument
6191 EXCLUDE_SUBRS_P. All callers changed.
6192 * dispextern.h, lisp.h: Reflect above API changes.
6193 * firstfile.c (dummy): Use the address of 'main', whose signature
6194 won't change, instead of the address of 'initialize', whose
6195 signature just changed from int to bool.
6196 * lisp.h (fatal_error_in_progress): New decl of boolean, moved here ...
6197 * msdos.c (fatal_error_in_progress): ... from here.
6198 * xdisp.c (redisplaying_p): Now a boolean. Set it to 1 instead
6199 of incrementing it.
6200 (redisplay_internal, unwind_redisplay): Simply clear
6201 REDISPLAYING_P when unwinding, instead of saving its previous,
6202 always-false value and then restoring it.
6203
6204 Clean up some extern decls.
6205 Mostly, this hoists extern decls out of .c files and into .h files.
6206 That way, we're more likely to catch errors if the interfaces change.
6207 * alloc.c [USE_GTK]: Include "gtkutil.h" so that we need not
6208 declare xg_mark_data.
6209 * dispextern.h (x_frame_parm_handlers):
6210 * font.h (Qxft):
6211 * lisp.h (Qlexical_binding, Qinternal_interpreter_environment)
6212 (Qextra_light, Qlight, Qsemi_light, Qsemi_bold, Qbold, Qextra_bold)
6213 (Qultra_bold, Qoblique, Qitalic):
6214 Move extern decl here from .c file.
6215 * alloc.c (xg_mark_data) [USE_GTK]:
6216 * doc.c (Qclosure):
6217 * eval.c (Qlexical_binding):
6218 * fns.c (time) [!HAVE_UNISTD_H]:
6219 * gtkutil.c (Qxft, Qnormal, Qextra_light, Qlight, Qsemi_light)
6220 (Qsemi_bold, Qbold, Qextra_bold, Qultra_bold, Qoblique, Qitalic):
6221 * image.c (Vlibrary_cache, QCloaded_from) [HAVE_NTGUI]:
6222 * lread.c (Qinternal_interpreter_environment):
6223 * minibuf.c (Qbuffer):
6224 * process.c (QCfamily, QCfilter):
6225 * widget.c (free_frame_faces):
6226 * xfaces.c (free_frame_menubar) [USE_X_TOOLKIT]:
6227 * xfont.c (x_clear_errors):
6228 * xterm.c (x_frame_parm_handlers):
6229 Remove now-redundant extern decls.
6230 * keyboard.c, keyboard.h (ignore_mouse_drag_p) [USE_GTK || HAVE_NS]:
6231 * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic):
6232 Now static.
6233 * xfaces.c: Remove unnecessary static decls.
6234 * xterm.c (updating_frame): Remove decl of nonexistent object.
6235
6236 * Makefile.in (gl-stamp): Don't scan $(SOME_MACHINE_OBJECTS)
6237 when building globals.h, as the objects that are not built on
6238 this host are not needed to compile C files on this host.
6239
6240 2012-09-02 Jan Djärv <jan.h.d@swipnet.se>
6241
6242 * gtkutil.h: Remove prototype for x_wm_set_size_hint.
6243
6244 * frame.h: Add missing prototype for x_wm_set_size_hint.
6245
6246 2012-09-02 Paul Eggert <eggert@cs.ucla.edu>
6247
6248 * doc.c, editfns.c, insdel.c, intervals.c: Use bool for boolean.
6249 * doc.c (read_bytecode_char, get_doc_string, reread_doc_file)
6250 (Fdocumentation, Fdocumentation_property, Fsnarf_documentation)
6251 (Fsubstitute_command_keys):
6252 * editfns.c (region_limit, find_field, Fconstrain_to_field)
6253 (save_excursion_save, save_excursion_restore)
6254 (disassemble_lisp_time, decode_time_components, emacs_nmemftime)
6255 (format_time_string, general_insert_function)
6256 (make_buffer_string, make_buffer_string_both)
6257 (Fsubst_char_in_region, Ftranslate_region_internal, Fformat):
6258 * insdel.c (check_markers, gap_left, adjust_markers_for_insert)
6259 (copy_text, insert_1, insert_1_both, insert_from_string)
6260 (insert_from_string_before_markers, insert_from_string_1)
6261 (insert_from_buffer, insert_from_buffer_1, replace_range)
6262 (replace_range_2, del_range_1, del_range_byte, del_range_both)
6263 (del_range_2, modify_region):
6264 * intervals.c (intervals_equal, balance_possible_root_interval)
6265 (adjust_intervals_for_insertion, merge_properties_sticky)
6266 (graft_intervals_into_buffer, lookup_char_property)
6267 (adjust_for_invis_intang, set_point_both)
6268 (get_property_and_range, compare_string_intervals)
6269 (set_intervals_multibyte_1, set_intervals_multibyte):
6270 * keyboard.c (decode_timer):
6271 Use bool for boolean.
6272 * intervals.h, lisp.h, systime.h: Reflect above API changes.
6273 * editfns.c (struct info): Use 1-bit unsigned bitfields for booleans.
6274
6275 2012-09-02 Chong Yidong <cyd@gnu.org>
6276
6277 * keymap.c (push_key_description): Print M-TAB as C-M-i
6278 (Bug#11758).
6279
6280 2012-09-02 Juanma Barranquero <lekktu@gmail.com>
6281
6282 * makefile.w32-in (CCL_H, W32FONT_H): New macros.
6283 (ATIMER_H, FONT_H, $(BLD)/alloc.$(O), $(BLD)/callproc.$(O))
6284 ($(BLD)/editfns.$(O), $(BLD)/ccl.$(O), $(BLD)/chartab.$(O))
6285 ($(BLD)/coding.$(O), $(BLD)/sysdep.$(O), $(BLD)/fontset.$(O))
6286 ($(BLD)/sysdep.$(O), $(BLD)/w32fns.$(O), $(BLD)/keyboard.$(O))
6287 ($(BLD)/w32term.$(O), $(BLD)/w32menu.$(O), $(BLD)/process.$(O))
6288 ($(BLD)/w32font.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
6289
6290 2012-09-01 Eli Zaretskii <eliz@gnu.org>
6291
6292 * w32uniscribe.c (uniscribe_shape): Handle correctly the case of
6293 more than one grapheme cluster passed to the shaper: compute the
6294 offset adjustment values separately for each cluster. (Bug#11860)
6295
6296 * image.c: Restore mistakenly removed inclusion of w32.h. Without
6297 it, GCC doesn't see prototypes of w32_delayed_load, and complains
6298 about implicit conversions from integer to pointer.
6299
6300 2012-09-01 Daniel Colascione <dancol@dancol.org>
6301
6302 * w32fns.c (x_display_info_for_name): Prevent crash if w32 window
6303 system used too early.
6304
6305 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
6306
6307 Better seed support for (random).
6308 * emacs.c (main): Call init_random.
6309 * fns.c (Frandom): Set the seed from a string argument, if given.
6310 Remove long-obsolete Gentzel cruft.
6311 * lisp.h, sysdep.c (seed_random): Now takes address and size, not long.
6312 (init_random): New function.
6313
6314 2012-09-01 Daniel Colascione <dancol@dancol.org>
6315
6316 * xterm.h: Add header guards. Declare x_menubar_window_to_frame.
6317 Remove x_set_frame_alpha, x_bitmap_icon, x_make_frame_visible,
6318 x_make_frame_invisible, x_iconify_frame, x_free_frame_resources,
6319 x_wm_set_size_hint, x_query_colors, x_real_positions,
6320 x_set_menu_bar_lines, x_char_width, x_char_height, x_sync,
6321 x_set_tool_bar_lines, x_activate_menubar, and free_frame_menubar,
6322 all of which have been moved to common code.
6323
6324 * xfaces.c: Include TERM_HEADER instead of listing all possible
6325 window-system headers.
6326
6327 * w32xfns.c (x_sync): Correct definition of x_sync (a no-op here)
6328 to match header.
6329
6330 * w32term.h (FRAME_X_WINDOW): Use FRAME_W32_WINDOW instead of
6331 directly accessing frame internals.
6332
6333 * w32font.h: Include font.h. Define syms_of_w32font and
6334 globals_of_w32font.
6335
6336 * process.c: Include TERM_HEADER instead of listing all possible
6337 window-system headers.
6338
6339 * nsterm.h: Remove declarations now in frame.h.
6340 Define FRAME_X_SCREEN, FRAME_X_VISUAL.
6341
6342 * menu.c: Include TERM_HEADER instead of listing all possible
6343 window-system headers.
6344
6345 * keyboard.h: Declare ignore_mouse_drag_p whenever we have a
6346 window system.
6347
6348 * keyboard.c: Include TERM_HEADER instead of listing all possible
6349 window-system headers.
6350
6351 * image.c: Include TERM_HEADER instead of listing all possible
6352 window-system headers. Declare Vlibrary_cache when compiling for
6353 Windows.
6354
6355 * gtkutil.h (xg_list_node_): Include xterm.h to pick up needed
6356 window system declarations.
6357
6358 * frame.h: Move common functions here: set_frame_menubar,
6359 x_set_window_size, x_sync, x_get_focus_frame,
6360 x_set_mouse_position, x_set_mouse_pixel_position,
6361 x_make_frame_visible, x_make_frame_invisible, x_iconify_frame,
6362 x_char_width, x_char_height, x_pixel_width, x_pixel_height,
6363 x_set_frame_alpha, x_set_menu_bar_lines, x_set_tool_bar_lines,
6364 x_activate_menubar, x_real_positions, x_bitmap_icon,
6365 x_set_menu_bar_lines, free_frame_menubar, x_free_frame_resources,
6366 and x_query_colors.
6367
6368 * frame.c: Include TERM_HEADER instead of listing all possible
6369 window-system headers.
6370
6371 * font.c: Include TERM_HEADER instead of listing all possible
6372 window-system headers.
6373
6374 * emacs.c: Include TERM_HEADER.
6375
6376 * dispnew.c: Include TERM_HEADER instead of listing all possible
6377 window-system headers.
6378
6379 * ccl.h: Include character.h.
6380
6381 * Makefile.in: Define WINDOW_SYSTEM_OBJ to hold objects needed for
6382 the current window system; include in list of objects to link into
6383 Emacs.
6384
6385 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
6386
6387 Remove mark_ttys function and fix tty_display_info initialization.
6388 * lisp.h (mark_ttys): Remove prototype.
6389 * alloc.c (Fgarbage_collect): Remove redundant (and the only) call
6390 to mark_ttys because all possible values of 'top_frame' slot are
6391 the frames which are reachable from Vframe_list.
6392 * term.c (mark_ttys): Remove.
6393 (init_tty): Safely initialize 'top_frame' slot with Qnil.
6394
6395 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
6396
6397 Change struct frame bitfields from unsigned char to unsigned.
6398 * frame.h (struct frame): Change type of 'display_preempted',
6399 'visible', 'iconified', 'has_minibuffer', 'wants_modeline',
6400 'auto_raise', 'auto_lower', 'no_split', 'explicit_name',
6401 'window_sizes_changed', 'mouse_moved' and 'pointer_invisible'
6402 bitfields from unsigned char to unsigned.
6403
6404 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
6405
6406 Remove unused member of struct x_output and struct w32_output.
6407 * xterm.h (struct x_output): Remove unused field 'needs_exposure'.
6408 * w32term.h (struct w32_output): Likewise.
6409
6410 2012-08-30 Jan Djärv <jan.h.d@swipnet.se>
6411
6412 * gtkutil.c (x_wm_set_size_hint): Use 1 col for base_width so it
6413 does not become zero (Bug#12234).
6414
6415 2012-08-30 Paul Eggert <eggert@cs.ucla.edu>
6416
6417 * dispnew.c (update_frame_1): Pacify gcc -Wstrict-overflow
6418 for GCC 4.7.1 x86-64.
6419
6420 2012-08-30 Glenn Morris <rgm@gnu.org>
6421
6422 * lread.c (init_lread): For out-of-tree builds, only add the
6423 source directory's site-lisp dir to the load-path if it exists,
6424 consistent with in-tree builds. (Bug#12302)
6425
6426 2012-08-28 Jan Djärv <jan.h.d@swipnet.se>
6427
6428 * nsmenu.m (initWithContentRect:styleMask:backing:defer:): Initialize
6429 button_values to NULL. Call setStykeMask so dialogs get a close button.
6430 (windowShouldClose:): Set window_closed.
6431 (dealloc): New member, free button_values.
6432 (process_dialog:): Make member function. Remove window argument,
6433 replace window with self. Count buttons and allocate and store values
6434 in button_values.
6435 (addButton:value:row:): value is int with the name tag. Call setTag
6436 with tag. Remove return self, declare return value as void.
6437 (addString:row:): Remove return self, declare return value as void.
6438 (addSplit): Remove return self, declare return value as void.
6439 (clicked:): Remove return self, declare return value as void.
6440 Set dialog_return to button_values[seltag]. Code formatting change.
6441 (initFromContents:isQuestion:): Adjust call to process_dialog.
6442 Code formatting change.
6443 (timeout_handler:): Set timer_fired to YES.
6444 (runDialogAt:): Set timer_fired to NO.
6445 Handle click on close button as quit.
6446
6447 * nsterm.h (EmacsDialogPanel): Make timer_fired BOOL.
6448 Add window_closed and button_values. Add void as return value for
6449 add(Button|String|Split). addButton takes int instead of Lisp_Object.
6450 Add process_dialog as new member.
6451
6452 2012-08-28 Eli Zaretskii <eliz@gnu.org>
6453
6454 * ralloc.c (free_bloc): Don't dereference a 'heap' structure if it
6455 is not one of the heaps we manage. (Bug#12242)
6456
6457 2012-08-28 Glenn Morris <rgm@gnu.org>
6458
6459 * eval.c (Fcalled_interactively_p): Doc fix. (Bug#11747)
6460
6461 2012-08-28 Martin Rudalics <rudalics@gmx.at>
6462
6463 * window.c (Fset_window_configuration): Remove handling of
6464 auto-buffer-name window parameter. Install revision of reverted
6465 fix.
6466
6467 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
6468
6469 Do not allow to set major mode for a dead buffer.
6470 * buffer.c (Fset_buffer_major_mode): Signal an error
6471 if the buffer is dead.
6472 (Fother_buffer, other_buffer_safely): Remove redundant
6473 nested declaration.
6474
6475 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
6476
6477 Always use set_buffer_if_live to restore original buffer at unwind.
6478 * buffer.h (record_unwind_current_buffer): New function.
6479 * bytecode.c, dispnew.c, editfns.c, fileio.c, fns.c, insdel.c:
6480 * keyboard.c, keymap.c, minibuf.c, print.c, process.c, textprop.c:
6481 * undo.c, window.c: Adjust users.
6482 * buffer.c (set_buffer_if_live): Fix comment.
6483
6484 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
6485
6486 Fix usage of set_buffer_internal.
6487 * buffer.h (set_buffer_internal): Make it BUFFER_INLINE.
6488 * buffer.c (set_buffer_if_live): Use set_buffer_internal.
6489 * coding.c (decode_coding): Omit redundant test.
6490 * fileio.c (decide_coding_unwind): Likewise.
6491 * fns.c (secure_hash): Likewise.
6492 * insdel.c (modify_region): Likewise.
6493 * keyboard.c (command_loop_1): Likewise.
6494 * print.c (PRINTFINISH): Likewise.
6495 * xdisp.c (run_window_scroll_functions): Use set_buffer_internal.
6496
6497 2012-08-27 Paul Eggert <eggert@cs.ucla.edu>
6498
6499 * dispnew.c: Use bool for boolean.
6500 (frame_garbaged, display_completed, delayed_size_change)
6501 (fonts_changed_p, add_window_display_history)
6502 (add_frame_display_history, verify_row_hash)
6503 (adjust_glyph_matrix, clear_window_matrices, glyph_row_slice_p)
6504 (row_equal_p, realloc_glyph_pool)
6505 (allocate_matrices_for_frame_redisplay)
6506 (showing_window_margins_p)
6507 (adjust_frame_glyphs_for_frame_redisplay)
6508 (build_frame_matrix_from_leaf_window, make_current)
6509 (mirrored_line_dance, mirror_line_dance, update_frame)
6510 (update_window_tree, update_single_window)
6511 (check_current_matrix_flags, update_window, update_text_area)
6512 (update_window_line, set_window_update_flags, scrolling_window)
6513 (update_frame_1, scrolling, buffer_posn_from_coords)
6514 (do_pending_window_change, change_frame_size)
6515 (change_frame_size_1, sit_for):
6516 Use bool for boolean.
6517 (clear_glyph_matrix_rows): Rename from enable_glyph_matrix_rows,
6518 and remove last int (actually boolean) argument, which was always 0.
6519 All callers changed.
6520 * dispextern.h, frame.h, lisp.h: Reflect above API changes.
6521 * dispextern.h (struct composition_it): Use bool for boolean.
6522 (struct glyph_matrix): Don't assume buffer sizes can fit in 'int'.
6523 (struct bidi_it): Use unsigned:1, not int, for boolean prev_was_pdf.
6524 * dired.c (file_name_completion):
6525 Use bool for boolean. (This was missed in an earlier change.)
6526
6527 2012-08-27 Martin Rudalics <rudalics@gmx.at>
6528
6529 * window.c (Fset_window_configuration): Revert first part of
6530 last change.
6531
6532 2012-08-27 Jan Djärv <jan.h.d@swipnet.se>
6533
6534 * nsterm.h (NSPanel): New class variable dialog_return.
6535
6536 * nsmenu.m (initWithContentRect:styleMask:backing:defer:):
6537 Initialize dialog_return.
6538 (windowShouldClose:): Use stop instead of stopModalWithCode.
6539 (clicked:): Ditto, and also set dialog_return (Bug#12258).
6540 (timeout_handler:): Use stop instead of abortModal. Send a dummy
6541 event.
6542 (runDialogAt:): Make ret Lisp_Object. Set it from dialog_return when
6543 modal loop returns.
6544
6545 2012-08-27 Paul Eggert <eggert@cs.ucla.edu>
6546
6547 * composite.c, data.c, dbusbind.c, dired.c: Use bool for booleans.
6548 * composite.c (find_composition, composition_gstring_p)
6549 (composition_reseat_it, find_automatic_composition):
6550 * data.c (let_shadows_buffer_binding_p)
6551 (let_shadows_global_binding_p, set_internal, make_blv)
6552 (Fmake_variable_buffer_local, Fmake_local_variable)
6553 (Fmake_variable_frame_local, arithcompare, cons_to_unsigned)
6554 (cons_to_signed, arith_driver):
6555 * dbusbind.c (xd_in_read_queued_messages):
6556 * dired.c (directory_files_internal, file_name_completion):
6557 Use bool for booleans.
6558 * dired.c (file_name_completion):
6559 * process.h (fd_callback):
6560 Omit int (actually boolean) argument. It wasn't being used.
6561 All uses changed.
6562 * composite.h, lisp.h: Reflect above API changes.
6563
6564 * cmds.c, coding.c: Use bool for booleans.
6565 * cmds.c (move_point, Fself_insert_command):
6566 * coding.h (struct composition status, struct coding_system):
6567 * coding.c (detect_coding_utf_8, encode_coding_utf_8)
6568 (detect_coding_utf_16, encode_coding_utf_16, detect_coding_emacs_mule)
6569 (emacs_mule_char, decode_coding_emacs_mule)
6570 (encode_coding_emacs_mule, detect_coding_iso_2022)
6571 (decode_coding_iso_2022, encode_invocation_designation)
6572 (encode_designation_at_bol, encode_coding_iso_2022)
6573 (detect_coding_sjis, detect_coding_big5, decode_coding_sjis)
6574 (decode_coding_big5, encode_coding_sjis, encode_coding_big5)
6575 (detect_coding_ccl, encode_coding_ccl, decode_coding_raw_text)
6576 (encode_coding_raw_text, detect_coding_charset)
6577 (decode_coding_charset, encode_coding_charset, detect_eol)
6578 (detect_coding, get_translation_table, produce_chars)
6579 (consume_chars, reused_workbuf_in_use)
6580 (make_conversion_work_buffer, code_conversion_save)
6581 (decode_coding_object, encode_coding_object)
6582 (detect_coding_system, char_encodable_p)
6583 (Funencodable_char_position, code_convert_region)
6584 (code_convert_string, code_convert_string_norecord)
6585 (Fset_coding_system_priority):
6586 * fileio.c (Finsert_file_contents):
6587 Use bool for booleans.
6588 * coding.h, lisp.h: Reflect above API changes.
6589 * coding.c: Remove unnecessary static function decls.
6590 (detect_coding): Use unsigned, not signed, to copy an unsigned field.
6591 (decode_coding, encode_coding, decode_coding_gap): Return 'void',
6592 not a boolean 'int', since callers never look at the return value.
6593 (ALLOC_CONVERSION_WORK_AREA): Assume caller returns 'void', not 'int'.
6594 * coding.h (decoding_buffer_size, encoding_buffer_size)
6595 (emacs_mule_string_char): Remove unused extern decls.
6596 (struct iso_2022_spec, struct coding_system):
6597 Use 'unsigned int : 1' for boolean fields, since there's more than one.
6598 (struct emacs_mule_spec): Remove unused field 'full_support'.
6599 All initializations removed.
6600 * cmds.c (internal_self_insert): Don't assume EMACS_INT fits in 'int'.
6601
6602 2012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
6603
6604 Fix spare memory change (Bug#12286).
6605 * alloc.c (mark_maybe_pointer): Handle MEM_TYPE_SPARE.
6606 (valid_lisp_object_p): Likewise.
6607
6608 2012-08-27 Martin Rudalics <rudalics@gmx.at>
6609
6610 * window.c (Fset_window_configuration): Record any window's old
6611 buffer if it's replaced (see Bug#8789). If the new current
6612 buffer doesn't appear in the selected window, go to its old
6613 point (Bug#12208).
6614
6615 2012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
6616
6617 Special MEM_TYPE_SPARE to denote reserved memory.
6618 * alloc.c (enum mem_type): New memory type.
6619 (refill_memory_reserve): Use new type for spare memory.
6620 This prevents live_cons_p and live_string_p from incorrect
6621 detection of uninitialized objects from spare memory as live.
6622
6623 2012-08-26 Paul Eggert <eggert@cs.ucla.edu>
6624
6625 Spelling fixes.
6626 * Makefile.in (.PHONY): versioclean -> versionclean.
6627
6628 Remove unused external symbols.
6629 * data.c (Qcons, Qfloat, Qmisc, Qstring, Qvector):
6630 * window.c (Qwindow_valid_p, decode_valid_window):
6631 Now static, not extern.
6632 * data.c (Qinterval): Remove; unused.
6633 (syms_of_data): Do not define 'interval'.
6634 * lisp.h (Qinteger, Qstring, Qmisc, Qvector, Qfloat, Qcons):
6635 * window.h (decode_valid_window):
6636 Remove decls.
6637
6638 * character.c, charset.c, chartab.c: Use bool for booleans.
6639 * character.c (lisp_string_width, string_count_byte8)
6640 (string_escape_byte8):
6641 * charset.c (charset_map_loaded, load_charset_map, read_hex):
6642 (load_charset_map_from_file, map_charset_chars)
6643 (Fdefine_charset_internal, define_charset_internal)
6644 (Fdeclare_equiv_charset, find_charsets_in_text)
6645 (Ffind_charset_region, char_charset, Fiso_charset):
6646 * chartab.c (sub_char_table_ref, sub_char_table_ref_and_range)
6647 (sub_char_table_set, sub_char_table_set_range)
6648 (char_table_set_range, optimize_sub_char_table)
6649 (map_sub_char_table):
6650 Use bool for boolean.
6651 * character.c (str_to_unibyte): Omit last boolean argument; it was
6652 always 0. All callers changed.
6653 * character.h, charset.h: Adjust to match previous changes.
6654 * character.h (char_printable_p): Remove decl of nonexistent function.
6655 * charset.h (struct charset): Members code_linear_p, iso_chars_96,
6656 ascii_compatible_p, supplementary_p, compact_codes_p, unified_p
6657 are all boolean, so make them single-bit bitfields.
6658
6659 * lisp.h (ASET): Remove attempt to detect side effects.
6660 It was meant to be temporary and it often doesn't work,
6661 because when IDX has side effects the behavior of IDX==IDX
6662 is undefined. See Stefan Monnier in
6663 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00762.html>.
6664
6665 2012-08-26 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
6666
6667 * lisp.h (functionp): New function (extracted from Ffunctionp).
6668 (FUNCTIONP): Use it.
6669 * eval.c (Ffunctionp): Use it.
6670
6671 2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
6672
6673 * xgselect.c (xg_select): Use auto storage for the GPollFD buffer
6674 as that's faster and simpler than static storage. Don't bother
6675 with the g_main_context_query overhead if g_main_context_pending
6676 says no events are pending.
6677 (gfds, gfds_size): Remove these static vars.
6678 (xgselect_initialize): Remove; no longer needed.
6679 All uses and decls removed.
6680
6681 * emacs.c (fatal_error_signal_hook): Remove.
6682 All uses removed. This leftover from old code was always 0.
6683
6684 * casefiddle.c, casetab.c, category.c: Use bool for boolean.
6685 * casefiddle.c (casify_object, casify_region):
6686 * casetab.c (set_case_table):
6687 * category.c, category.h (word_boundary_p):
6688 * category.h (CHAR_HAS_CATEGORY):
6689 Use bool for booleans, instead of int.
6690
6691 2012-08-25 Eli Zaretskii <eliz@gnu.org>
6692
6693 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on $(GNU_LIB)/execinfo.h.
6694
6695 2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
6696
6697 On assertion failure, print backtrace if available.
6698 * alloc.c [ENABLE_CHECKING]: Include <execinfo.h>.
6699 (die) [ENABLE_CHECKING]: Print a backtrace if available.
6700 * Makefile.in (LIB_EXECINFO): New macro.
6701 (LIBES): Use it.
6702
6703 * bytecode.c, callint.c, callproc.c: Use bool for boolean.
6704 * bytecode.c (exec_byte_code):
6705 * callint.c (check_mark, Fcall_interactively):
6706 * callproc.c (Fcall_process, add_env, child_setup, getenv_internal_1)
6707 (getenv_internal, sync_process_alive, call_process_exited):
6708 * lisp.h (USE_SAFE_ALLOCA):
6709 Use bool for booleans, instead of int.
6710 * lisp.h, process.h: Adjust prototypes to match above changes.
6711 * callint.c (Fcall_interactively): Don't assume the mark's
6712 offset fits in 'int'.
6713
6714 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
6715
6716 * buffer.c, buffer.h: Use bool for boolean.
6717 * buffer.c (reset_buffer_local_variables)
6718 (buffer_lisp_local_variables, Fset_buffer_modified_p)
6719 (Frestore_buffer_modified_p, Fset_buffer_multibyte):
6720 (overlays_at, overlays_in, mouse_face_overlay_overlaps)
6721 (overlay_touches_p, overlay_strings, Foverlay_put)
6722 (report_overlay_modification, call_overlay_mod_hooks):
6723 (mmap_enlarge, mmap_set_vars):
6724 * buffer.h (buffer_has_overlays, uppercasep, lowercasep):
6725 Use bool for booleans, instead of int.
6726 * buffer.c (compact_buffer, mmap_free_1): Return void, not int,
6727 since the 1-or-0 return value is always ignored anyway.
6728 (mmap_initialized_p):
6729 * buffer.h (struct buffer_text.inhibit_shrinking): Now bool, not int.
6730 * buffer.h, lisp.h: Adjust prototypes to match above changes.
6731
6732 2012-08-23 Paul Eggert <eggert@cs.ucla.edu>
6733
6734 * bidi.c: Use bool for boolean.
6735 This is a bit more readable, and makes the text segment of bidi.o
6736 0.4% smaller on my platform (GCC 4.7.1 x86-64, Fedora 15).
6737 Presumably it's faster too.
6738 (bidi_initialized, bidi_ignore_explicit_marks_for_paragraph_level):
6739 Now bool.
6740 (bidi_cache_find_level_change, bidi_cache_iterator_state)
6741 (bidi_unshelve_cache, bidi_init_it, bidi_count_bytes)
6742 (bidi_char_at_pos, bidi_fetch_char, bidi_paragraph_init)
6743 (bidi_explicit_dir_char, bidi_level_of_next_char)
6744 (bidi_find_other_level_edge, bidi_move_to_visually_next):
6745 Use bool for booleans, instead of int.
6746 * dispextern.h (bidi_init_it, bidi_paragraph_init)
6747 (bidi_unshelve_cache): Adjust decls to match code.
6748
6749 2012-08-23 Martin Rudalics <rudalics@gmx.at>
6750
6751 * keyboard.c (Fposn_at_x_y): Do not allow internal window as
6752 argument.
6753
6754 2012-08-23 Paul Eggert <eggert@cs.ucla.edu>
6755
6756 * atimer.c, atimer.h (turn_on_atimers): Use bool for boolean.
6757 * atimer.h: Include <stdbool.h>.
6758
6759 2012-08-22 Dan Nicolaescu <dann@gnu.org>
6760
6761 * frame.h (FRAME_W32_P, FRAME_MSDOS_P, FRAME_NS_P): Change to
6762 compile time tests instead of run time tests on systems that do
6763 not use them.
6764 (FRAME_MAC_P): Remove leftover from deleted code.
6765 * frame.c (syms_of_frame): Remove leftover from deleted code.
6766
6767 2012-08-22 Jan Djärv <jan.h.d@swipnet.se>
6768
6769 * nsterm.m (insertText:): Don't clear modifiers if code is space.
6770
6771 2012-08-22 Paul Eggert <eggert@cs.ucla.edu>
6772
6773 * fontset.c (FONTSET_ADD): Return void, not Lisp_Object.
6774 Otherwise, the compiler complains about (A?B:C) where B is void
6775 and C is Lisp_Object. This fixes an incompatibility with Sun C 5.12.
6776 (fontset_add): Return void, for FONTSET_ADD.
6777
6778 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
6779
6780 * alloc.c: Use bool for booleans.
6781 (gc_in_progress, abort_on_gc)
6782 (setjmp_tested_p) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
6783 (dont_register_blocks) [GC_MALLOC_CHECK]:
6784 (suppress_checking) [ENABLE_CHECKING]: Now bool, not int.
6785 (check_string_bytes, make_specified_string, memory_full)
6786 (live_string_p, live_cons_p, live_symbol_p, live_float_p)
6787 (live_misc_p, live_vector_p, live_buffer_p, mark_maybe_object)
6788 (mark_stack, valid_pointer_p, make_pure_string)
6789 (Fgarbage_collect, survives_gc_p, gc_sweep):
6790 Use bool for booleans, instead of int.
6791 (test_setjmp) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
6792 Remove unused local.
6793 * alloc.c (PURE_POINTER_P):
6794 * lisp.h (STRING_MULTIBYTE): Document that it returns a boolean.
6795 * editfns.c (Fformat):
6796 * fileio.c (Fexpand_file_name, Fsubstitute_in_file_name)
6797 (Fdo_auto_save):
6798 * fns.c (sweep_weak_table):
6799 * lisp.h (suppress_checking, push_message, survives_gc_p)
6800 (make_pure_string, gc_in_progress, abort_on_gc):
6801 * lread.c (readchar, read1):
6802 * print.c (Fprin1_to_string):
6803 * xdisp.c (push_message):
6804 Use bool for booleans affected directly or indirectly by
6805 alloc.c's changes.
6806
6807 Make recently-introduced setters macros.
6808 * fontset.c (set_fontset_id, set_fontset_name, set_fontset_ascii)
6809 (set_fontset_base, set_fontset_frame, set_fontset_nofont_face)
6810 (set_fontset_default, set_fontset_fallback): Rename from their
6811 upper-case counterparts, and make them functions rather than macros.
6812 This is more consistent with the other recently-introduced setters.
6813 These don't need to be inline, since they're local.
6814
6815 2012-08-21 Jan Djärv <jan.h.d@swipnet.se>
6816
6817 * nsterm.m (fd_handler:): Alloc and release a NSAutoreleasePool in
6818 the loop (Bug#12247).
6819
6820 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
6821
6822 * lisp.h (vcopy): Use memcpy rather than our own loop.
6823 This fixes a performance regression introduced by the recent
6824 addition of vcopy. This means 'vcopy' will need to be modified
6825 for a copying collector, but that's OK. Also, tighten the
6826 checking in the assertion.
6827
6828 2012-08-21 Eli Zaretskii <eliz@gnu.org>
6829
6830 * w32uniscribe.c (uniscribe_shape): Fix producing gstring
6831 components for RTL text (Bug#11860). Adjust X-OFFSET of each
6832 non-base glyph for the width of the base character, according to
6833 what x_draw_composite_glyph_string_foreground expects.
6834 Generate WADJUST value according to composition_gstring_width's
6835 expectations, to produce correct width of the composed character.
6836 Reverse the sign of the DU offset produced by ScriptPlace.
6837
6838 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
6839
6840 * dbusbind.c (xd_remove_watch): Do not assume C99 comments.
6841
6842 2012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
6843
6844 Avoid direct writes to contents member of struct Lisp_Vector.
6845 * lisp.h (vcopy): New function to copy data into vector.
6846 * dispnew.c (Fframe_or_buffer_changed_p): Use AREF and ASET.
6847 * fns.c (Ffillarray): Use ASET.
6848 * keyboard.c (timer_check_2): Use AREF and ASET.
6849 (append_tool_bar_item, Frecent_keys): Use vcopy.
6850 * lread.c (read_vector): Use ASET.
6851 * msdos.c (Frecent_doskeys): Use vcopy.
6852 * xface.c (Finternal_copy_lisp_face): Use vcopy.
6853 (Finternal_merge_in_global_face): Use ASET and vcopy.
6854 * xfont.c (xfont_list_pattern): Likewise.
6855
6856 2012-08-21 Martin Rudalics <rudalics@gmx.at>
6857
6858 * window.c (Fwindow_point): For the selected window always return
6859 the position of its buffer's point.
6860 (Fset_window_point): For the selected window always go in its
6861 buffer to the specified position.
6862
6863 2012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
6864
6865 Setter macros for fontsets.
6866 * fontset.c (SET_FONTSET_ID, SET_FONTSET_NAME, SET_FONTSET_ASCII)
6867 (SET_FONTSET_BASE, SET_FONTSET_FRAME, SET_FONTSET_NOFONT_FACE)
6868 (SET_FONTSET_DEFAULT, SET_FONTSET_FALLBACK): New macros.
6869 Adjust users.
6870
6871 2012-08-20 Glenn Morris <rgm@gnu.org>
6872
6873 * Makefile.in (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
6874 Don't assume that `ln -f' works.
6875
6876 2012-08-20 Eli Zaretskii <eliz@gnu.org>
6877
6878 * .gdbinit: Use "set $dummy = ..." to avoid warnings from GDB 7.5
6879 and later about non-assignments with no effect. See discussion at
6880 http://sourceware.org/ml/gdb-patches/2012-08/msg00518.html for
6881 details.
6882
6883 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
6884
6885 Inline setter functions for Lisp_Objects slots of struct specbinding.
6886 * eval.c (set_specpdl_symbol, set_specpdl_old_value): New functions.
6887 Adjust users.
6888
6889 2012-08-20 Martin Rudalics <rudalics@gmx.at>
6890
6891 * window.c (select_window): Always make selected window's buffer
6892 current.
6893
6894 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
6895
6896 Use AREF and ASET for docstrings of category tables.
6897 * category.h (CATEGORY_DOCSTRING): Use AREF.
6898 (SET_CATEGORY_DOCSTRING): Use ASET.
6899 * category.c (Fdefine_category): Use SET_CATEGORY_DOCSTRING.
6900
6901 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
6902
6903 Inline setter functions for hash table members.
6904 * lisp.h (set_hash_key, set_hash_value, set_hash_next)
6905 (set_hash_hash, set_hash_index): Rename with _slot suffix.
6906 (set_hash_key_and_value, set_hash_index, set_hash_next)
6907 (set_hash_hash): New functions.
6908 * charset.c, fns.c: Adjust users.
6909
6910 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
6911
6912 Inline getter and setter functions for per-buffer values.
6913 * buffer.h (per_buffer_default, set_per_buffer_default)
6914 (per_buffer_value, set_per_buffer_value): New functions.
6915 (PER_BUFFER_VALUE, PER_BUFFER_DEFAULT): Remove.
6916 * buffer.c, data.c: Adjust users.
6917
6918 2012-08-20 Juanma Barranquero <lekktu@gmail.com>
6919
6920 * makefile.w32-in ($(BLD)/vm-limit.$(O)): Update dependencies.
6921
6922 2012-08-19 Paul Eggert <eggert@cs.ucla.edu>
6923
6924 Rely on <config.h> + <unistd.h> to declare 'environ',
6925 as gnulib does this if the system doesn't.
6926 * callproc.c, editfns.c, process.c (environ) [!USE_CRT_DLL]:
6927 Remove declaration. MS-Windows declares it on stdlib.h which is
6928 included by conf_post.h.
6929 * emacs.c (environ) [DOUG_LEA_MALLOC]:
6930 * vm-limit.c (environ) [ORDINARY_LINK]: Remove decl.
6931 * vm-limit.c: Include <unistd.h>, for 'environ'.
6932
6933 * unexaix.c, unexcoff.c: Include "mem-limits.h".
6934 (start_of_data): Remove decl; mem-limits.h provides it.
6935
6936 * xdisp.c (handle_invisible_prop): Make it a bit faster
6937 and avoid a gcc -Wmaybe-uninitialized diagnostic.
6938
6939 2012-08-19 Chong Yidong <cyd@gnu.org>
6940
6941 * xdisp.c (handle_invisible_prop): Fix ellipses at overlay string
6942 ends (Bug#3874).
6943
6944 2012-08-19 Andreas Schwab <schwab@linux-m68k.org>
6945
6946 * .gdbinit: Use call instead of set when calling a function in the
6947 inferior.
6948
6949 * data.c (set_internal): Don't use set_blv_found.
6950 (Fkill_local_variable): Likewise.
6951
6952 2012-08-18 Alp Aker <alp.tekin.aker@gmail.com>
6953
6954 * nsfont.m (ns_ascii_average_width): Ensure the string
6955 ascii_printable is initialized with a null-terminated character
6956 array. Otherwise, it can contain undesired extra characters.
6957
6958 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
6959
6960 port new setting code to Sun C 5.8 2005/10/13
6961 * chartab.c, lisp.h (char_table_set, char_table_set_range):
6962 Return void, not Lisp_Object. Otherwise, the compiler
6963 complains about (A?B:C) where B is void and C is Lisp_Object
6964 when compiling CHAR_TABLE_SET, due to the recent change to
6965 the API of sub_char_table_set_contents.
6966
6967 2012-08-18 Chong Yidong <cyd@gnu.org>
6968
6969 * xdisp.c (handle_invisible_prop): Obey TEXT_PROP_MEANS_INVISIBLE
6970 for the string case (Bug#3874).
6971
6972 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
6973
6974 * buffer.h (BSET): Remove (Bug#12215).
6975 Replace all uses with calls to new setter functions.
6976 (bset_bidi_paragraph_direction, bset_case_canon_table)
6977 (bset_case_eqv_table, bset_directory, bset_display_count)
6978 (bset_display_time, bset_downcase_table)
6979 (bset_enable_multibyte_characters, bset_filename, bset_keymap)
6980 (bset_last_selected_window, bset_local_var_alist)
6981 (bset_mark_active, bset_point_before_scroll, bset_read_only)
6982 (bset_truncate_lines, bset_undo_list, bset_upcase_table)
6983 (bset_width_table):
6984 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
6985 (bset_auto_fill_function, bset_auto_save_file_format)
6986 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
6987 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
6988 (bset_cache_long_line_scans, bset_case_fold_search)
6989 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
6990 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
6991 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
6992 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
6993 (bset_header_line_format, bset_indicate_buffer_boundaries)
6994 (bset_indicate_empty_lines, bset_invisibility_spec)
6995 (bset_left_fringe_width, bset_major_mode, bset_mark)
6996 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
6997 (bset_name, bset_overwrite_mode, bset_pt_marker)
6998 (bset_right_fringe_width, bset_save_length)
6999 (bset_scroll_bar_width, bset_scroll_down_aggressively)
7000 (bset_scroll_up_aggressively, bset_selective_display)
7001 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
7002 (bset_word_wrap, bset_zv_marker):
7003 * category.c (bset_category_table):
7004 * syntax.c (bset_syntax_table):
7005 New setter functions.
7006
7007 * process.h (PSET): Remove (Bug#12215).
7008 Replace all uses with calls to new setter functions.
7009 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
7010 (PROCESS_INLINE): New macro.
7011 (pset_childp): New setter function.
7012 (pset_gnutls_cred_type) [HAVE_GNUTLS]: New setter function.
7013 * process.c (PROCESS_INLINE):
7014 Define to EXTERN_INLINE, so that the corresponding functions
7015 are compiled into code.
7016 (pset_buffer, pset_command, pset_decode_coding_system)
7017 (pset_decoding_buf, pset_encode_coding_system)
7018 (pset_encoding_buf, pset_filter, pset_log, pset_mark, pset_name)
7019 (pset_plist, pset_sentinel, pset_status, pset_tty_name)
7020 (pset_type, pset_write_queue): New setter functions.
7021
7022 * window.h (WSET): Remove (Bug#12215).
7023 Replace all uses with calls to new setter functions.
7024 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
7025 (WINDOW_INLINE): New macro.
7026 (wset_buffer, wset_frame, wset_left_col, wset_next, wset_prev)
7027 (wset_redisplay_end_trigger, wset_top_line, wset_total_cols)
7028 (wset_total_lines, wset_vertical_scroll_bar)
7029 (wset_window_end_pos, wset_window_end_valid)
7030 (wset_window_end_vpos): New setter functions.
7031 * window.c (WINDOW_INLINE):
7032 Define to EXTERN_INLINE, so that the corresponding functions
7033 are compiled into code.
7034 (wset_combination_limit, wset_dedicated, wset_display_table)
7035 (wset_hchild, wset_left_fringe_width, wset_left_margin_cols)
7036 (wset_new_normal, wset_new_total, wset_next_buffers)
7037 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
7038 (wset_prev_buffers, wset_right_fringe_width)
7039 (wset_right_margin_cols, wset_scroll_bar_width, wset_start)
7040 (wset_temslot, wset_vchild, wset_vertical_scroll_bar_type)
7041 (wset_window_parameters):
7042 * xdisp.c (wset_base_line_number, wset_base_line_pos)
7043 (wset_column_number_displayed, wset_region_showing):
7044 New setter functions.
7045
7046 * termhooks.h (TSET): Remove (Bug#12215).
7047 Replace all uses with calls to new setter functions.
7048 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
7049 (TERMHOOKS_INLINE): New macro.
7050 (tset_charset_list, tset_selection_alist): New setter functions.
7051 * terminal.c (TERMHOOKS_INLINE):
7052 Define to EXTERN_INLINE, so that the corresponding functions
7053 are compiled into code.
7054 (tset_param_alist): New setter function.
7055
7056 2012-08-17 Paul Eggert <eggert@cs.ucla.edu>
7057
7058 * keyboard.h (KSET): Remove (Bug#12215).
7059 Replace all uses with calls to new setter functions.
7060 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
7061 (KEYBOARD_INLINE): New macro.
7062 (kset_default_minibuffer_frame, kset_defining_kbd_macro)
7063 (kset_input_decode_map, kset_last_command, kset_last_kbd_macro)
7064 (kset_prefix_arg, kset_system_key_alist, kset_window_system):
7065 New setter functions.
7066 * keyboard.c (KEYBOARD_INLINE):
7067 Define to EXTERN_INLINE, so that the corresponding functions
7068 are compiled into code.
7069 (kset_echo_string, kset_kbd_queue)
7070 (kset_keyboard_translate_table, kset_last_prefix_arg)
7071 (kset_last_repeatable_command, kset_local_function_key_map)
7072 (kset_overriding_terminal_local_map, kset_real_last_command)
7073 (kset_system_key_syms): New setter functions.
7074
7075 * frame.h (FSET): Remove (Bug#12215).
7076 Replace all uses with calls to new setter functions.
7077 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
7078 (FRAME_INLINE): New macro.
7079 (fset_buffer_list, fset_buried_buffer_list, fset_condemned_scroll_bars)
7080 (fset_current_tool_bar_string, fset_desired_tool_bar_string)
7081 (fset_face_alist, fset_focus_frame, fset_icon_name, fset_menu_bar_items)
7082 (fset_menu_bar_vector, fset_menu_bar_window, fset_name)
7083 (fset_param_alist, fset_root_window, fset_scroll_bars)
7084 (fset_selected_window, fset_title, fset_tool_bar_items)
7085 (fset_tool_bar_position, fset_tool_bar_window): New functions.
7086 * frame.c (FRAME_INLINE):
7087 Define to EXTERN_INLINE, so that the corresponding functions
7088 are compiled into code.
7089 (fset_buffer_predicate, fset_minibuffer_window): New setter functions.
7090
7091 A few more naming-convention fixes for getters and setters.
7092 * buffer.c (set_buffer_overlays_before): Move here from buffer.h,
7093 and rename from buffer_overlays_set_before.
7094 (set_buffer_overlays_after): Move here from buffer.h, and rename
7095 from buffer_overlays_set_after.
7096 * buffer.h (buffer_intervals): Rename from buffer_get_intervals.
7097 All uses changed.
7098 (set_buffer_intervals): Rename from buffer_set_intervals.
7099 * intervals.c (set_interval_object): Move here from intervals.h,
7100 and rename from interval_set_object.
7101 (set_interval_left): Move here from intervals.h, and rename from
7102 interval_set_left.
7103 (set_interval_right): Move here from intervals.h, and rename from
7104 interval_set_right.
7105 (copy_interval_parent): Move here from intervals.h, and rename from
7106 interval_copy_parent.
7107 * intervals.h (set_interval_parent): Rename from interval_set_parent.
7108 (set_interval_plist): Rename from interval_set_plist.
7109 Return void, not Lisp_Object, since no caller uses the result.
7110 * lisp.h (string_intervals): Rename from string_get_intervals.
7111 (set_string_intervals): Rename from string_set_intervals.
7112
7113 * lisp.h (set_char_table_extras): Rename from char_table_set_extras.
7114 (set_char_table_contents): Rename from char_table_set_contents.
7115 (set_sub_char_table_contents): Rename from sub_char_table_set_contents.
7116 All uses changed. See the end of
7117 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00549.html>.
7118
7119 * lisp.h (CSET): Remove (Bug#12215).
7120 (set_char_table_ascii, set_char_table_defalt, set_char_table_parent)
7121 (set_char_table_purpose): New functions,
7122 replacing CSET. All uses changed. For example, replace
7123 "CSET (XCHAR_TABLE (char_table), parent, parent);" with
7124 "set_char_table_parent (char_table, parent);".
7125 The old version was confusing because it used the same name
7126 'parent' for two different things.
7127
7128 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
7129
7130 Functions to get and set Lisp_Object fields of buffer-local variables.
7131 * lisp.h (blv_found, set_blv_found, blv_value, set_blv_value)
7132 (set_blv_where, set_blv_defcell, set_blv_valcell): New functions.
7133 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): Remove.
7134 * data.c, eval.c, frame.c: Adjust users.
7135
7136 2012-08-17 Chong Yidong <cyd@gnu.org>
7137
7138 * xfaces.c (merge_face_vectors): If the target font specfies a
7139 font spec, make the font's attributes take precedence over
7140 directly-specified attributes.
7141 (merge_face_ref): Recognize :font.
7142
7143 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
7144
7145 Do not use memcpy for copying intervals.
7146 * intervals.c (reproduce_interval): New function.
7147 (reproduce_tree, reproduce_tree_obj): Use it.
7148 (reproduce_tree_obj): Remove prototype.
7149
7150 2012-08-17 Paul Eggert <eggert@cs.ucla.edu>
7151
7152 * lisp.h (duration_to_sec_usec): Remove unused decl.
7153
7154 2012-08-17 Alp Aker <alp.tekin.aker@gmail.com>
7155
7156 * nsfont.m (ns_ascii_average_width): Send initWithFormat selector
7157 to an allocated instance of NSString, not to the class itself.
7158
7159 2012-08-17 Juanma Barranquero <lekktu@gmail.com>
7160
7161 * makefile.w32-in (C_CTYPE_H): New macro.
7162 (LISP_H, $(BLD)/ccl.$(O), $(BLD)/doc.$(O), $(BLD)/w32console.$(O)):
7163 ($(BLD)/fontset.$(O), $(BLD)/frame.$(O), $(BLD)/composite.$(O)):
7164 ($(BLD)/sysdep.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
7165
7166 2012-08-16 Paul Eggert <eggert@cs.ucla.edu>
7167
7168 Use ASCII tests for character types.
7169 * category.c, dispnew.c, doprnt.c, editfns.c, syntax.c, term.c:
7170 * xfns.c, xterm.c:
7171 Don't include <ctype.h>; was not needed.
7172 * charset.c, doc.c, fileio.c, font.c, frame.c, gtkutil.c, image.c:
7173 * sysdep.c, xfaces.c:
7174 Include <c-ctype.h> instead of <ctype.h>.
7175 * nsterm.m: Include <c-ctype.h>.
7176 * charset.c (read_hex):
7177 * doc.c (Fsnarf_documentation):
7178 * fileio.c (IS_DRIVE) [WINDOWSNT]:
7179 (DRIVE_LETTER) [DOS_NT]:
7180 (Ffile_name_directory, Fexpand_file_name)
7181 (Fsubstitute_in_file_name):
7182 * font.c (font_parse_xlfd, font_parse_fcname):
7183 * frame.c (x_set_font_backend):
7184 * gtkutil.c (xg_get_font):
7185 * image.c (xbm_scan, xpm_scan, pbm_scan_number):
7186 * nsimage.m (hexchar):
7187 * nsterm.m (ns_xlfd_to_fontname):
7188 * sysdep.c (system_process_attributes):
7189 * xfaces.c (hash_string_case_insensitive):
7190 Use C-locale tests instead of locale-specific tests for character
7191 types, since we want the ASCII interpretation here, not the
7192 interpretation suitable for whatever happens to be the current locale.
7193
7194 2012-08-16 Martin Rudalics <rudalics@gmx.at>
7195
7196 Consistently check windows for validity/liveness
7197 (Bug#11984, Bug#12025, Bug#12026).
7198 * lisp.h (CHECK_VALID_WINDOW): New macro.
7199 * window.c (decode_window): Rename to decode_live_window.
7200 (decode_valid_window, Fwindow_valid_p): New functions.
7201 (Fwindow_frame, Fframe_root_window, Fwindow_minibuffer_p)
7202 (Fframe_first_window, Fframe_selected_window, Fwindow_parent)
7203 (Fwindow_top_child, Fwindow_left_child, Fwindow_next_sibling)
7204 (Fwindow_prev_sibling, Fwindow_combination_limit)
7205 (Fset_window_combination_limit, Fwindow_use_time)
7206 (Fwindow_total_height, Fwindow_total_width, Fwindow_new_total)
7207 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_left_column)
7208 (Fwindow_top_line, Fwindow_body_height, Fwindow_body_width)
7209 (Fwindow_hscroll, Fset_window_hscroll)
7210 (Fwindow_redisplay_end_trigger)
7211 (Fset_window_redisplay_end_trigger, Fwindow_edges)
7212 (Fwindow_pixel_edges, Fwindow_absolute_pixel_edges)
7213 (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
7214 (Fcoordinates_in_window_p, Fwindow_point, Fwindow_start)
7215 (Fwindow_end, Fset_window_point, Fset_window_start)
7216 (Fpos_visible_in_window_p, Fwindow_line_height)
7217 (Fwindow_dedicated_p, Fset_window_dedicated_p)
7218 (Fwindow_prev_buffers, Fset_window_prev_buffers)
7219 (Fwindow_next_buffers, Fwindow_parameters, Fwindow_parameter)
7220 (Fset_window_parameter, Fwindow_display_table)
7221 (Fset_window_display_table, Fdelete_other_windows_internal)
7222 (Fset_window_buffer, Fset_window_new_total)
7223 (Fset_window_new_normal, Fdelete_window_internal)
7224 (Fwindow_text_height, Fset_window_margins, Fwindow_margins)
7225 (Fset_window_fringes, Fwindow_fringes, Fset_window_scroll_bars)
7226 (Fwindow_scroll_bars): Check whether argument window is a valid or
7227 live window. Update doc-strings.
7228 (syms_of_window): New symbol Qwindow_valid_p.
7229 * keyboard.c (Fposn_at_x_y): Check whether argument
7230 frame_or_window denotes a valid window.
7231
7232 2012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
7233
7234 Fix previous char table change.
7235 * lisp.h (CHAR_TABLE_SET): Use sub_char_table_set_contents.
7236 * chartab.c (optimize_sub_char_table): Likewise.
7237
7238 2012-08-16 Chong Yidong <cyd@gnu.org>
7239
7240 * gtkutil.c (xg_get_font): Demand an Xft font (Bug#3228).
7241
7242 * xfont.c (xfont_open):
7243 * xftfont.c (xftfont_open): Set the font's max_width field.
7244
7245 * nsfont.m (nsfont_open): Similar to the Xft backend, set
7246 min_width to space_width and average_width to the average over
7247 printable ASCII characters.
7248 (ns_char_width): Code cleanup.
7249 (ns_ascii_average_width): New utility function.
7250
7251 * font.h (struct font): Update comments.
7252
7253 2012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
7254
7255 Simple interface to set Lisp_Object fields of character tables.
7256 * lisp.h (CSET): New macro.
7257 (char_table_set_extras, char_table_set_contents)
7258 (sub_char_table_set_contents): New function.
7259 * casetab.c, category.c, chartab.c, fns.c, fontset.c, search.c:
7260 * syntax.c: Adjust users.
7261
7262 2012-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
7263
7264 * eval.c (eval_sub): Bind lexical-binding.
7265 * lread.c (Qlexical_binding): Make non-static.
7266
7267 2012-08-15 Jan Djärv <jan.h.d@swipnet.se>
7268
7269 * nsmenu.m (popupSession): Remove.
7270 (pop_down_menu): Remove endModalSession.
7271 (timeout_handler:): New method.
7272 (runDialogAt:): Get next timeout. Start a NSTimer with that timeout.
7273 Call runModalForWindow. Check timer_fired when it returns.
7274 If not set, cancel timer and break out of loop.
7275 Otherwise loop again, with a new timeout.
7276
7277 * nsterm.m: Include fcntl.h if present.
7278 (fd_entry, t_readfds, inNsSelect): Remove.
7279 (select_writefds, select_valid, select_timeout, selfds)
7280 (select_mutex, apploopnr): Add.
7281 (EV_TRAILER): Call kbd_buffer_store_event_hold only if q_event_ptr.
7282 Otherwise call kbd_buffer_store_event.
7283 (ns_send_appdefined): Remove release of fd_entry.
7284 (ns_read_socket): Always send appdefined. Remove inNsSelect check.
7285 Increment and decrement apploopnr.
7286 (ns_select): If no file descriptors, just do a NSTimer.
7287 Otherwise copy read/write masks and start select thread (fd_handler).
7288 Start main loop and wait for application defined event.
7289 Inform select thread to stop selecting after main loop is exited.
7290 (ns_term_init): Create selfds pipe and set non-blocking.
7291 Initialize select_mutex. Start the select thread (fd_handler).
7292 (fd_handler:): Loop forever, wait for info from the main thread
7293 to either start or stop selecting. When select returns, send
7294 and appdefined event.
7295 (sendScrollEventAtLoc:fromEvent:): Check if q_event_ptr is set.
7296 If not call kbd_buffer_store_event.
7297
7298 * nsterm.h (EmacsApp): fd_handler takes id argument.
7299 (EmacsDialogPanel): Add timer_fired and timeout_handler.
7300
7301 * gtkutil.c (xg_mark_data): Use FRAME_X_P.
7302
7303 2012-08-15 Eli Zaretskii <eliz@gnu.org>
7304
7305 * region-cache.c (move_cache_gap): Update gap_len using the actual
7306 growth of the boundaries array. Do not change cache_len.
7307 (Bug#12196)
7308
7309 2012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
7310
7311 Generalize and cleanup font subsystem checks.
7312 * font.h (FONT_DEBUG, font_assert): Remove.
7313 * font.c, fontset.c, w32font.c, xfont.c, xftfont.c:
7314 Change font_assert to eassert. Use eassert where appropriate.
7315
7316 2012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
7317
7318 * gtkutil.c (xg_get_font): Use pango_units_to_double.
7319
7320 2012-08-15 Chong Yidong <cyd@gnu.org>
7321
7322 * gtkutil.c (xg_get_font): Rename from xg_get_font_name.
7323 When using the new font chooser, use gtk_font_chooser_get_font_desc to
7324 extract the font descriptor instead of just the font name.
7325 In that case, return a font spec instead of a string.
7326 (x_last_font_name): Move to this file from xfns.c.
7327
7328 * xfns.c (Fx_select_font): The return value can also be a font
7329 spec. Move x_last_font_name management to gtkutil.c.
7330
7331 * xfaces.c: Make font weight and style symbols non-static.
7332
7333 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
7334
7335 * minibuf.c (read_minibuf): Ignore caller's inhibit-read-only
7336 (bug#12117).
7337
7338 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
7339
7340 * alloc.c (Fgarbage_collect): Use plural form consistently.
7341
7342 2012-08-14 Eli Zaretskii <eliz@gnu.org>
7343
7344 * keyboard.c (command_loop_1): Reset ignore_mouse_drag_p flag each
7345 iteration through the command loop. Fixes a problem whereby mouse
7346 movements are ignored until the first mouse click.
7347
7348 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
7349
7350 Use bool, not int, for Lisp booleans.
7351 This is more natural, and on my platform (GCC 4.7.1 x86-64) it
7352 makes Emacs a bit smaller and presumably a bit faster.
7353 * lisp.h: Include <stdbool.h>.
7354 (struct Lisp_Boolfwd, defvar_bool):
7355 * lread.c (defvar_bool): Use bool, not int, for Lisp booleans.
7356 * regex.c [!emacs]: Include <stdbool.h>.
7357 (false, true): Remove; <stdbool.h> does this for us now.
7358
7359 2012-08-14 Chong Yidong <cyd@gnu.org>
7360
7361 * character.c (Fcharacterp): Doc fix (Bug#12076).
7362
7363 * data.c (Findirect_variable): Doc fix (Bug#11040).
7364
7365 * chartab.c (Fmap_char_table): Doc fix (Bug#12061).
7366
7367 * editfns.c (Fformat): Doc fix (Bug#12059).
7368 (Fsave_current_buffer): Doc fix (Bug#11542).
7369
7370 2012-08-14 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
7371
7372 * keyboard.c (access_keymap_keyremap): Accept anonymous functions
7373 (bug#12022).
7374
7375 2012-08-14 Martin Rudalics <rudalics@gmx.at>
7376
7377 * frame.c (make_frame_without_minibuffer, make_minibuffer_frame)
7378 (delete_frame, Fmake_frame_invisible, Ficonify_frame):
7379 * minibuf.c (choose_minibuf_frame, read_minibuf):
7380 * w32fns.c (x_create_tip_frame):
7381 * xfns.c (x_create_tip_frame): Call set_window_buffer instead of
7382 Fset_window_buffer (Bug#11984, Bug#12025, Bug#12026).
7383
7384 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
7385
7386 * intervals.c (offset_intervals): Remove obsolete comment.
7387
7388 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
7389
7390 * gtkutil.c (find_rtl_image, update_frame_tool_bar): Use NILP.
7391
7392 2012-08-14 Gergely Risko <gergely@risko.hu>
7393
7394 * coding.c (decode_coding): Record buffer modification before
7395 disabling undo_list (Bug#11773).
7396
7397 2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
7398
7399 Revert and cleanup some recent overlay changes.
7400 * buffer.h (enum overlay_type): Remove.
7401 (buffer_get_overlays, buffer_set_overlays): Likewise.
7402 (buffer_set_overlays_before, buffer_set_overlays_after):
7403 New function. Adjust users.
7404 (unchain_both): Add eassert.
7405
7406 2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
7407
7408 * gtkutil.c (update_frame_tool_bar): Use EQ where appropriate.
7409
7410 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
7411
7412 * gtkutil.c (xg_mark_data): Don't assume C99.
7413
7414 2012-08-13 Jan Djärv <jan.h.d@swipnet.se>
7415
7416 * gtkutil.c (xg_frame_tb_info): New struct.
7417 (TB_INFO_KEY): New define.
7418 (xg_free_frame_widgets): Free xg_frame_tb_info for frame if present.
7419 (xg_mark_data): Mark Lisp_Objects in xg_frame_tb_info.
7420 (xg_create_tool_bar): Allocate and initialize a xg_frame_tb_info
7421 if not present.
7422 (update_frame_tool_bar): Return early if data in xg_frame_tb_info
7423 is up to date. Otherwise store new data.
7424 (free_frame_tool_bar): Free xg_frame_tb_info if present.
7425
7426 2012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
7427
7428 Use KSET for write access to Lisp_Object members of struct kboard.
7429 * keyboard.h (KSET): New macro.
7430 * callint.c, category.c, frame.c, keyboard.c, keyboard.h, macros.c:
7431 * msdos.c, nsfns.m, nsterm.m, term.c, w32fns.c, w32term.c, xfns.c:
7432 * xterm.c: Adjust users.
7433
7434 2012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
7435
7436 Use BSET for write access to Lisp_Object members of struct buffer.
7437 * buffer.h (BSET): New macro.
7438 * buffer.c, casetab.c, cmds.c, coding.c, data.c, editfns.c:
7439 * fileio.c, frame.c, indent.c, insdel.c, intervals.c, keymap.c:
7440 * minibuf.c, print.c, process.c, syntax.c, undo.c, w32fns.c:
7441 * window.c, xdisp.c, xfns.c: Adjust users.
7442
7443 2012-08-11 BT Templeton <bpt@hcoop.net> (tiny change)
7444
7445 * lread.c (syms_of_lread): Initialize Vlexical_binding.
7446
7447 2012-08-11 Jan Djärv <jan.h.d@swipnet.se>
7448
7449 * nsterm.m (not_in_argv): New function.
7450 (application:openFile, application:openTempFile:):
7451 (application:openFileWithoutUI:, application:openFiles:): Open file
7452 if not_in_argv returns non-zero (bug#12171).
7453
7454 * gtkutil.c (gtk_font_chooser_dialog_new, GTK_FONT_CHOOSER)
7455 (gtk_font_chooser_set_font, gtk_font_chooser_get_font):
7456 Define for Gtk+ versions less than 3.2.
7457 (xg_get_font_name): Use those functions/macros here.
7458 Reported by Frans Oilinki <moilinki@gmail.com>.
7459
7460 2012-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7461
7462 * unexmacosx.c (copy_data_segment): Copy initialized data in
7463 statically linked libraries from input file rather than memory.
7464
7465 * unexmacosx.c (print_load_command_name): Add cases LC_MAIN,
7466 LC_SOURCE_VERSION, and LC_DYLIB_CODE_SIGN_DRS.
7467 (dump_it) [LC_DYLIB_CODE_SIGN_DRS]: Call copy_linkedit_data.
7468
7469 2012-08-10 Glenn Morris <rgm@gnu.org>
7470
7471 * conf_post.h (IF_LINT, lint_assume): Move here from lisp.h.
7472 * lisp.h (IF_LINT, lint_assume): Move to conf_post.h.
7473
7474 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
7475
7476 Fix last change to allow compilation with low optimization levels.
7477 * intervals.c (INTERVALS_INLINE): Define to EXTERN_INLINE.
7478 Reported by Jan Djärv <jan.h.d@swipnet.se>.
7479
7480 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
7481
7482 Use common inline syntax in intervals.h.
7483 * intervals.h (INTERVALS_INLINE): New macro.
7484 Change all users from LISP_INLINE.
7485
7486 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
7487
7488 Define Qnone once for all platforms.
7489 * frame.c (Qnone): Define here.
7490 (syms_of_frame): DEFSYM it.
7491 * lisp.h (Qnone): New declaration.
7492 * nsfns.m, nsterm.h, nsterm.m, w32fns.c, w32font.c:
7493 * xfns.c: Remove duplication. Adjust users.
7494
7495 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
7496
7497 Remove unused macros from intervals.h.
7498 * intervals.h (MERGE_INSERTIONS, DISPLAY_INVISIBLE_GLYPH): Remove.
7499 * intervals.c: Adjust comment.
7500
7501 2012-08-10 Eli Zaretskii <eliz@gnu.org>
7502
7503 * w32fns.c <w32_unicode_gui>: New static variable.
7504 (globals_of_w32fns): Initialize it according to os_subtype.
7505 (w32_init_class, w32_msg_pump, w32_wnd_proc): Use it instead of
7506 testing os_subtype.
7507
7508 2012-08-10 Joakim Hårsman <joakim.harsman@gmail.com> (tiny change)
7509 Eli Zaretskii <eliz@gnu.org>
7510
7511 Fix bug #10299 with Unicode characters sent by customized
7512 keyboards created by MSKLC.
7513 * w32fns.c (INIT_WINDOW_CLASS): New macro.
7514 (w32_init_class): Use it to initialize the Emacs class with either
7515 ANSI or Unicode API calls.
7516 (w32_msg_pump): Call GetMessageW and DispatchMessageW on NT and
7517 later.
7518 (w32_wnd_proc): If the character code sent by WM_CHAR or
7519 WM_SYSCHAR is above 255, post a WM_UNICHAR message, not the
7520 original message. Call DefWindowProcW on NT and later.
7521
7522 2012-08-10 Glenn Morris <rgm@gnu.org>
7523
7524 * Makefile.in (config_h): Fix conf_post.h out-of-tree build location.
7525
7526 * lisp.h (DIRECTORY_SEP): Let configure set it.
7527
7528 2012-08-09 Dmitry Antipov <dmantipov@yandex.ru>
7529
7530 Use TSET for write access to Lisp_Object slots of struct terminal.
7531 * termhooks.h (TSET): New macro.
7532 * coding.c, terminal.c, xselect.c: Adjust users.
7533
7534 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
7535
7536 * xdisp.c (safe_eval_handler): Remove prototype. Receive args describing
7537 the failing expression, include them in the error message.
7538 * eval.c (internal_condition_case_n): Pass nargs and args to hfun.
7539 * lisp.h (internal_condition_case_n): Update declaration.
7540
7541 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
7542
7543 Inline functions to examine and change buffer overlays.
7544 * buffer.c (unchain_both): New function.
7545 * buffer.h (buffer_get_overlays, buffer_set_overlays):
7546 (buffer_has_overlays): New function.
7547 (enum overlay_type): New enum.
7548 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c:
7549 * insdel.c, intervals.c, print.c, xdisp.c: Adjust users.
7550
7551 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
7552
7553 Inline functions to examine and change buffer intervals.
7554 * alloc.c (mark_interval_tree): Remove.
7555 (MARK_INTERVAL_TREE): Simplify.
7556 (UNMARK_BALANCE_INTERVALS): Remove. Adjust users.
7557 * intervals.c (buffer_balance_intervals): New function.
7558 (graft_intervals_into_buffer): Adjust indentation.
7559 (set_intervals_multibyte): Simplify.
7560 * buffer.h (BUF_INTERVALS): Remove.
7561 (buffer_get_intervals, buffer_set_intervals): New function.
7562 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c, insdel.c:
7563 * intervals.c, textprop.c: Adjust users.
7564
7565 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
7566
7567 Inline functions to examine and change string intervals.
7568 * lisp.h (STRING_INTERVALS, STRING_SET_INTERVALS): Remove.
7569 (string_get_intervals, string_set_intervals): New function.
7570 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
7571 * lread.c, print.c, textprop.c: Adjust users.
7572
7573 2012-08-08 Glenn Morris <rgm@gnu.org>
7574
7575 * lisp.mk (lisp): Remove language/persian.elc.
7576
7577 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
7578
7579 Cleanup intervals.
7580 * intervals.h (NULL_INTERVAL, DEFAULT_INTERVAL): Remove.
7581 (NULL_INTERVAL_P): Likewise. Adjust users.
7582 (FRONT_STICKY_P, END_NONSTICKY_P, FRONT_NONSTICKY_P):
7583 Adjust comment. Move under #if 0.
7584 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
7585 * print.c, syntax.c, textprop.c, xdisp.c: Adjust users.
7586
7587 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
7588
7589 Check total length of intervals with eassert.
7590 * intervals.h (CHECK_TOTAL_LENGTH): Remove.
7591 * intervals.c: Change all users to eassert.
7592
7593 2012-08-07 Eli Zaretskii <eliz@gnu.org>
7594
7595 * .gdbinit (xframe, xwindow, nextcons, xcar, xcdr, xlist):
7596 Rename fields to match removal of FGET and WGET and disuse of
7597 INTERNAL_FIELD in Lisp_Cons.
7598
7599 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
7600
7601 Revert and cleanup Lisp_Cons, Lisp_Misc and Lisp_Symbol things.
7602 * lisp.h (struct Lisp_Symbol): Change xname to meaningful
7603 name since all xname users are fixed long time ago. Do not
7604 use INTERNAL_FIELD.
7605 (set_symbol_name, set_symbol_function, set_symbol_plist):
7606 (set_symbol_next, set_overlay_plist): New function.
7607 (struct Lisp_Cons): Do not use INTERNAL_FIELD.
7608 (struct Lisp_Overlay): Likewise.
7609 (CVAR, MVAR, SVAR): Remove.
7610 * alloc.c, buffer.c, buffer.h, bytecode.c, cmds.c, data.c:
7611 * doc.c, eval.c, fns.c, keyboard.c, lread.c, nsselect.m:
7612 * xterm.c: Adjust users.
7613 * .gdbinit: Change to use name field of struct Lisp_Symbol
7614 where appropriate.
7615
7616 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
7617
7618 Basic functions to set Lisp_Object and pointer slots of intervals.
7619 * intervals.h (interval_set_parent, interval_set_object):
7620 (interval_set_left, interval_set_right, interval_set_plist):
7621 (interval_copy_parent): New function.
7622 (SET_INTERVAL_OBJECT, SET_INTERVAL_PARENT, INTERVAL_PTR_SIZE): Remove.
7623 (RESET_INTERVAL, COPY_INTERVAL_CACHE, MERGE_INTERVAL_CACHE):
7624 Adjust indentation.
7625 (INTERVAL_SIZE): Remove. Adjust users.
7626 * alloc.c, intervals.c, lread.c, textprop.c: Use new functions.
7627
7628 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
7629
7630 Drop PGET and revert read access to Lisp_Objects slots of Lisp_Process.
7631 * process.h (PGET): Remove.
7632 (struct Lisp_Process): Do not use INTERNAL_FIELD.
7633 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
7634
7635 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
7636
7637 Drop WGET and revert read access to Lisp_Objects slots of struct window.
7638 * window.h (WGET): Remove.
7639 (struct window): Do not use INTERNAL_FIELD.
7640 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
7641 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
7642 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
7643 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
7644 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
7645 Adjust users.
7646
7647 2012-08-07 Chong Yidong <cyd@gnu.org>
7648
7649 * window.c (Fwindow_edges, Fwindow_pixel_edges)
7650 (Fwindow_absolute_pixel_edges, Fdelete_other_windows_internal)
7651 (Fdelete_window_internal): Signal an error if the window is not on
7652 a live frame (Bug#12025).
7653
7654 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
7655
7656 Drop FGET and revert read access to Lisp_Objects slots of struct frame.
7657 * frame.h (FGET): Remove.
7658 (struct frame): Do not use INTERNAL_FIELD.
7659 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
7660 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
7661 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
7662 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
7663
7664 2012-08-06 Juanma Barranquero <lekktu@gmail.com>
7665
7666 * w32.c: Silence compiler warnings.
7667 (map_w32_filename): Remove unused variable `is_fat'.
7668 (chase_symlinks): Add parentheses around expression.
7669
7670 2012-08-06 Glenn Morris <rgm@gnu.org>
7671
7672 * sysdep.c: Respect BROKEN_GETWD.
7673
7674 * dispnew.c (GNU_LIBRARY_PENDING_OUTPUT_COUNT, PENDING_OUTPUT_COUNT):
7675 Let configure handle it.
7676 (stdio_ext.h) [DISPNEW_NEEDS_STDIO_EXT]: Include it.
7677
7678 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7679
7680 Use GCALIGNMENT where appropriate.
7681 * alloc.c (XMALLOC_HEADER_ALIGNMENT, roundup_size):
7682 (union aligned_Lisp_Symbol, union aligned_Lisp_Misc):
7683 (mark_maybe_pointer, pure_alloc): Change to use GCALIGNMENT.
7684
7685 2012-08-06 Eli Zaretskii <eliz@gnu.org>
7686
7687 * w32menu.c (set_frame_menubar, initialize_frame_menubar):
7688 Don't use FRAME_MENU_BAR_ITEMS as an lvalue.
7689
7690 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
7691
7692 * buffer.h (struct buffer): Revert `indirections' to a simple int;
7693 that should be sufficient for everyone.
7694
7695 2012-08-06 Jan Djärv <jan.h.d@swipnet.se>
7696
7697 * keyboard.c (timer_check_2): Add break so timer_check returns next
7698 timeout.
7699
7700 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7701
7702 Fix Windows build errors introduced after converting to WGET and WSET.
7703 * w32term.c (w32_set_vertical_scroll_bar): Change to use WSET.
7704 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
7705
7706 2012-08-06 Jan Djärv <jan.h.d@swipnet.se>
7707
7708 * nsterm.m (ns_frame_rehighlight): Use FSET.
7709
7710 * nsmenu.m (ns_update_menubar): Use FSET.
7711
7712 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7713
7714 Separate read and write access to Lisp_Object slots of Lisp_Process.
7715 * process.h (PGET, PSET): New macros similar to AREF and ASET.
7716 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
7717
7718 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7719
7720 Separate read and write access to Lisp_Object slots of struct window.
7721 * window.h (WGET, WSET): New macros similar to AREF and ASET.
7722 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
7723 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
7724 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
7725 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
7726 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
7727 Adjust users.
7728
7729 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7730
7731 Fix Windows build errors introduced after converting to FGET and FSET.
7732 * w32term.c (x_frame_rehighlight, x_scroll_bar_create):
7733 (w32_condemn_scroll_bars, w32_redeem_scroll_bar):
7734 (w32_judge_scroll_bars): Change to use FSET.
7735 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
7736
7737 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7738
7739 Fix replacement typo.
7740 * window.c (replace_window): Set root_window instead of
7741 selected_window. This fixes a total window subsystem
7742 malfunction reported by Bastien Guerry <bzg@gnu.org>.
7743
7744 2012-08-06 Glenn Morris <rgm@gnu.org>
7745
7746 * lisp.mk (lisp): Add language/persian.elc.
7747
7748 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7749
7750 Separate read and write access to Lisp_Object slots of struct frame.
7751 * frame.h (FGET, FSET): New macros similar to AREF and ASET.
7752 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
7753 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
7754 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
7755 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
7756
7757 2012-08-05 Andreas Schwab <schwab@linux-m68k.org>
7758
7759 * emacs.c (decode_env_path): Only use defaulted if WINDOWSNT.
7760
7761 2012-08-05 Dmitry Antipov <dmantipov@yandex.ru>
7762
7763 Generalize common compile-time constants.
7764 * lisp.h (header_size, bool_header_size, word_size): Now here.
7765 (struct Lisp_Vector): Add comment.
7766 (struct Lisp_Bool_Vector): Move up to define handy constants.
7767 (VECSIZE, PSEUDOVECSIZE): Simplify.
7768 (SAFE_ALLOCA_LISP): Use new constant. Adjust indentation.
7769 * buffer.c, buffer.h, bytecode.c, callint.c, eval.c, fns.c:
7770 * font.c, fontset.c, keyboard.c, keymap.c, macros.c, menu.c:
7771 * msdos.c, w32menu.c, w32term.h, window.c, xdisp.c, xfaces.c:
7772 * xfont.c, xmenu.c: Use word_size where appropriate.
7773
7774 2012-08-05 Lawrence Mitchell <wence@gmx.li>
7775
7776 * search.c (Freplace_match): Treat \? in the replacement text
7777 literally (Bug#8161).
7778
7779 2012-08-05 Chong Yidong <cyd@gnu.org>
7780
7781 * term.c (Vsuspend_tty_functions, Vresume_tty_functions):
7782 * frame.c (Vdelete_frame_functions):
7783 * emacs.c (Vkill_emacs_hook): Doc fix.
7784
7785 2012-08-04 Eli Zaretskii <eliz@gnu.org>
7786
7787 * xfns.c (x_set_menu_bar_lines): Fix compilation error in
7788 --with-x-toolkit=no builds.
7789 Reported by Carsten Mattner <carstenmattner@gmail.com>.
7790
7791 2012-08-04 Chong Yidong <cyd@gnu.org>
7792
7793 * syntax.c (Fmodify_syntax_entry): Doc fix.
7794
7795 2012-08-04 Eli Zaretskii <eliz@gnu.org>
7796
7797 Fix startup warnings about ../site-lisp on MS-Windows. (Bug#11959)
7798 * w32.c (init_environment): Change the default values of many
7799 environment variables in dflt_envvars[] to NULL, to avoid pushing
7800 them into environment when they were not already defined.
7801 Remove the code that deletes site-lisp subdirectories from the default
7802 value of EMACSLOADPATH, as it is no longer needed.
7803 (check_windows_init_file): Now external, not static.
7804 Use Vload_path as is, without adding anything, as this function is now
7805 called when Vload_path is already set up.
7806
7807 * w32.h (check_windows_init_file): Add prototype.
7808
7809 * emacs.c (init_cmdargs) [WINDOWSNT]: When running from the build
7810 directory, ignore the /*/i386/ tail in Vinvocation_directory, for
7811 compatibility with Posix platforms.
7812 (main): Move the call to check_windows_init_file to here from
7813 w32.c.
7814 (decode_env_path) [WINDOWSNT]: Expand the %emacs_dir%/ prefix, if
7815 any, in the DEFALT argument into the root of the Emacs build or
7816 installation tree, as appropriate.
7817
7818 * callproc.c (init_callproc_1): Call decode_env_path instead of
7819 doing its equivalent by hand.
7820 (init_callproc): Replace DOS_NT condition with MSDOS, thus letting
7821 the code that sets Vexec_path run on MS-Windows.
7822
7823 * lread.c (init_lread): Add comments to #ifdef's.
7824
7825 * msdos.c (dos_set_window_size, IT_update_begin)
7826 (IT_frame_up_to_date, IT_set_frame_parameters): Use FVAR and WVAR
7827 instead of direct references.
7828
7829 2012-08-04 Paul Eggert <eggert@cs.ucla.edu>
7830
7831 Export DEFAULT_REHASH_* to GDB.
7832 * lisp.h (DEFAULT_REHASH_THRESHOLD, DEFAULT_REHASH_SIZE):
7833 Now constants, not macros.
7834
7835 2012-08-03 Paul Eggert <eggert@cs.ucla.edu>
7836
7837 Remove unnecessary casts involving pointers.
7838 These casts are no longer needed now that we assume C89 or later,
7839 since they involve casting to or from void *.
7840 * alloc.c (make_pure_string, make_pure_c_string, pure_cons)
7841 (make_pure_float, make_pure_vector):
7842 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP):
7843 * macros.c (Fstart_kbd_macro):
7844 * menu.c (find_and_return_menu_selection):
7845 * minibuf.c (read_minibuf_noninteractive):
7846 * sysdep.c (closedir):
7847 * xdisp.c (x_produce_glyphs):
7848 * xfaces.c (compare_fonts_by_sort_order):
7849 * xfns.c (x_real_positions, select_visual):
7850 * xselect.c (x_stop_queuing_selection_requests)
7851 (x_get_window_property, x_get_window_property_as_lisp_data):
7852 * xterm.c (x_set_frame_alpha, x_find_modifier_meanings):
7853 Remove unnecessary pointer casts.
7854 * alloc.c (record_xmalloc): New function.
7855 * lisp.h (record_xmalloc): New decl.
7856 (SAFE_ALLOCA): Now takes just one arg -- the size -- and acts
7857 more like a function. This is because the pointer cast is not
7858 needed. All uses changed.
7859 * print.c (print_string, print_error_message): Avoid length recalc.
7860
7861 Improve fix for macroexp crash with debugging (Bug#12118).
7862 * lisp.h (ASET) [ENABLE_CHECKING]: Pay attention to
7863 ARRAY_MARK_FLAG when checking subscripts, because ASET is
7864 not supposed to be invoked from the garbage collector.
7865 See Andreas Schwab in <http://bugs.gnu.org/12118#25>.
7866 (gc_aset): New function, which is like ASET but can be
7867 used in the garbage collector.
7868 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
7869 (set_hash_index): Use it instead of ASET.
7870
7871 2012-08-03 Eli Zaretskii <eliz@gnu.org>
7872
7873 Support symlinks on latest versions of MS-Windows.
7874 * w32.c: Include winioctl.h and aclapi.h.
7875 (is_symlink, chase_symlinks, enable_privilege, restore_privilege)
7876 (revert_to_self): Forward declarations of static functions.
7877 <static BOOL g_b_init_get_security_info>:
7878 <g_b_init_create_symbolic_link>: New static flags.
7879 (globals_of_w32): Initialize them to zero.
7880 (GetSecurityInfo_Proc, CreateSymbolicLink_Proc): New typedefs.
7881 (map_w32_filename): Improve commentary. Simplify switch.
7882 (SYMBOLIC_LINK_FLAG_DIRECTORY): Define if not defined in system
7883 headers (most versions of MinGW w32api don't).
7884 (get_security_info, create_symbolic_link)
7885 (get_file_security_desc_by_handle, is_symlink, chase_symlinks):
7886 New functions.
7887 (sys_access, sys_chmod): Call 'chase_symlinks' to resolve symlinks
7888 in the argument file name.
7889 (sys_access): Call unc_volume_file_attributes only if
7890 GetFileAttributes fails with network-related error codes.
7891 (sys_rename): Diagnose renaming of a symlink when the user doesn't
7892 have the required privileges.
7893 (get_file_security_desc_by_name): Rename from
7894 get_file_security_desc.
7895 (stat_worker): New function, with most of the guts of 'stat', and
7896 with addition of handling of symlinks and support for 'lstat'.
7897 If possible, get file's attributes and security information by
7898 handle, not by name. Produce S_IFLNK bit for symlinks, when
7899 called from 'lstat'.
7900 (stat, lstat): New functions, call 'stat_worker'.
7901 (symlink, readlink, careadlinkat): Rewritten to create and resolve
7902 symlinks when the underlying filesystem supports them.
7903
7904 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
7905
7906 Fix macroexp crash on Windows with debugging (Bug#12118).
7907 * lisp.h (ASET) [ENABLE_CHECKING]: Ignore ARRAY_MARK_FLAG when
7908 checking subscripts; problem introduced with the recent
7909 "ASET (a, i, v)" rather than "AREF (a, i) = v" patch.
7910 (ARRAY_MARK_FLAG): Now a macro as well as a constant,
7911 since it's used in non-static inline functions now.
7912
7913 * xfaces.c (face_at_buffer_position, face_for_overlay_string):
7914 Don't assume buffer size fits in 'int'. Remove unused local.
7915
7916 Use C99-style 'extern inline' if available.
7917 * buffer.h (BUFFER_INLINE):
7918 * category.h (CATEGORY_INLINE):
7919 * character.h (CHARACTER_INLINE):
7920 * charset.h (CHARSET_INLINE):
7921 * composite.h (COMPOSITE_INLINE):
7922 * dispextern.h (DISPEXTERN_INLINE):
7923 * lisp.h (LISP_INLINE):
7924 * systime.h (SYSTIME_INLINE):
7925 New macro, replacing 'static inline' in this header.
7926 * buffer.h, category.h, character.h, charset.h, composite.h:
7927 * dispextern.h, lisp.h, systime.h:
7928 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
7929 * alloc.c (LISP_INLINE):
7930 * buffer.c (BUFFER_INLINE):
7931 * category.c (CATEGORY_INLINE):
7932 * character.c (CHARACTER_INLINE):
7933 * charset.c (CHARSET_INLINE):
7934 * composite.c (COMPOSITE_INLINE):
7935 * dispnew.c (DISPEXTERN_INLINE):
7936 * sysdep.c (SYSTIME_INLINE):
7937 Define to EXTERN_INLINE, so that the corresponding functions
7938 are compiled into code.
7939 * conf_post.h (INLINE, EXTERN_INLINE, INLINE_HEADER_BEGIN)
7940 (INLINE_HEADER_END): New macros.
7941 * lisp.h (PSEUDOVECTOR_FLAG): Now a macro as well as a constant,
7942 since it's used in non-static inline functions now.
7943 (VALMASK) [!USE_LSB_TAG]: Likewise.
7944
7945 2012-08-02 Glenn Morris <rgm@gnu.org>
7946
7947 * s/: Remove empty directory.
7948
7949 * s/ms-w32.h: Move to ../nt/inc.
7950 * makefile.w32-in (TAGS, TAGS-gmake, MS_W32_H):
7951 Update for new ms-w32.h location.
7952
7953 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
7954
7955 Port to Solaris 8.
7956 * syswait.h (WRETCODE): Remove, consistently with ../configure.ac.
7957
7958 2012-08-02 Glenn Morris <rgm@gnu.org>
7959
7960 * nsterm.m (ns_exec_path, ns_load_path): Use SEPCHAR rather than
7961 hard-coding the path separator.
7962
7963 2012-08-01 Paul Eggert <eggert@cs.ucla.edu>
7964
7965 Use "ASET (a, i, v)" rather than "AREF (a, i) = v".
7966 This how ASET and AREF are supposed to work, and makes
7967 it easier to think about future improvements. See
7968 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00026.html>.
7969 * charset.h (set_charset_attr): New function.
7970 All lvalue-style uses of CHARSET_DECODER etc. changed to use it.
7971 * lisp.h (ASET): Rewrite so as not to use AREF in an lvalue style.
7972 (aref_addr): New function. All uses of &AREF(...) changed.
7973 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
7974 (set_hash_index): New functions. All lvalue-style uses of
7975 HASH_KEY etc. changed.
7976 * keyboard.c (set_prop): New function. All lvalue-style uses
7977 of PROP changed.
7978
7979 2012-08-01 Alp Aker <alp.tekin.aker@gmail.com>
7980
7981 * nsterm.m (ns_set_vertical_scroll_bar, ns_redeem_scroll_bar)
7982 (EmacsWindow-accessibilityAttributeValue, EmacsScroller-initFrame:)
7983 (EmacsScroller-dealloc): Adjust to use WVAR. (Bug#12114)
7984 * nsfns.m (ns_set_name_as_filename): Likewise.
7985 * nsmenu.m (ns_update_menubar): Likewise.
7986 * nsselect.m (symbol_to_nsstring): Adjust to use SVAR.
7987
7988 2012-08-01 Eli Zaretskii <eliz@gnu.org>
7989
7990 * .gdbinit (xcar, xcdr, xlist, xwindow, nextcons, xprintsym):
7991 Adapt to latest changes in field names of the corresponding Lisp
7992 objects.
7993
7994 * xdisp.c (try_window_id): Use WVAR in IF_DEBUG code.
7995
7996 2012-08-01 Glenn Morris <rgm@gnu.org>
7997
7998 * s/msdos.h: Remove file.
7999 * conf_post.h [MSDOS]: New section, moved from s/msdos.h.
8000 * Makefile.in (S_FILE): Remove.
8001 (config_h): Remove S_FILE.
8002
8003 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
8004
8005 * s/ms-w32.h (DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP):
8006 Remove; moved to nt/config.nt.
8007
8008 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
8009
8010 Use INTERNAL_FIELD for conses and overlays.
8011 * lisp.h (struct Lisp_Cons): Use INTERNAL_FIELD.
8012 Remove obsolete comment.
8013 (MVAR): New macro.
8014 (struct Lisp_Overlay): Use INTERNAL_FIELD.
8015 * alloc.c, buffer.c, buffer.h, fns.c: Adjust users.
8016
8017 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
8018
8019 Use INTERNAL_FIELD for symbols.
8020 * lisp.h (SVAR): New macro. Adjust users.
8021 * alloc.c, bytecode.c, cmds.c, data.c, doc.c, eval.c:
8022 * fns.c, keyboard.c, lread.c, xterm.c: Users changed.
8023
8024 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
8025
8026 Use INTERNAL_FIELD for processes.
8027 * process.h (PVAR): New macro. Adjust style.
8028 (struct Lisp_Process): Change Lisp_Object members to INTERNAL_FIELD.
8029 * print.c, process.c, sysdep.c, w32.c, xdisp.c: Users changed.
8030
8031 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
8032
8033 Use INTERNAL_FIELD for windows.
8034 * window.h (WVAR): New macro.
8035 (struct window): Change Lisp_Object members to INTERNAL_FIELD.
8036 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
8037 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
8038 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, nsterm.m, print.c:
8039 * textprop.c, w32fns.c, w32menu.c, w32term.c, window.c, xdisp.c:
8040 * xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
8041
8042 2012-08-01 Paul Eggert <eggert@cs.ucla.edu>
8043
8044 * coding.h (CODING_ATTR_FLUSHING): Remove; unused and wouldn't work.
8045
8046 2012-08-01 Glenn Morris <rgm@gnu.org>
8047
8048 * lisp.h (IS_DIRECTORY_SEP, IS_DEVICE_SEP, IS_ANY_SEP):
8049 Move to configure.ac.
8050
8051 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
8052
8053 * makefile.w32-in (CONFIG_H): Update dependencies.
8054 (CONF_POST_H): New macro.
8055
8056 * s/ms-w32.h (SEPCHAR, NULL_DEVICE): Remove; moved to nt/config.nt.
8057
8058 2012-07-31 Glenn Morris <rgm@gnu.org>
8059
8060 * Makefile.in (S_FILE): No longer set by configure.
8061
8062 * conf_post.h (config_opsysfile): Move earlier, so that WINDOWSNT
8063 is available.
8064 (alloca.h) [WINDOWSNT]: Don't include it on MS Windows.
8065
8066 * process.h (NULL_DEVICE):
8067 * emacs.c (SEPCHAR):
8068 * editfns.c (USER_FULL_NAME): Let configure set them.
8069
8070 * s/README, s/template.h: Remove files.
8071
8072 * conf_post.h [HPUX]: Undefine HAVE_RANDOM and HAVE_RINT.
8073
8074 * conf_post.h (AMPERSAND_FULL_NAME, subprocesses):
8075 Move to configure.ac.
8076
8077 2012-07-31 Eli Zaretskii <eliz@gnu.org>
8078
8079 * .gdbinit (xframe): Adapt to introduction of FVAR and the
8080 resulting renaming of 'struct frame' members.
8081
8082 * w32menu.c (w32_menu_show): Revert bogus introduction of FVAR.
8083
8084 * fontset.c (dump_fontset): Fix compilation with ENABLE_CHECKING
8085 after introduction of FVAR.
8086
8087 2012-07-31 Jan Djärv <jan.h.d@swipnet.se>
8088
8089 * nsmenu.m (update_frame_tool_bar): Change key from NSObject* to id.
8090
8091 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Use drawInRect
8092 instead of compositeToPoint.
8093 (applicationShouldTerminate): Pass NS String literal to NSRunAlertPanel.
8094
8095 * nsfns.m, nsmenu.m, nsterm.m: Adopt to struct frame/FVAR changes.
8096
8097 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
8098
8099 Generalize INTERNAL_FIELD between buffers, keyboards and frames.
8100 * lisp.h (INTERNAL_FIELD): New macro.
8101 * buffer.h (BUFFER_INTERNAL_FIELD): Remove.
8102 (BVAR): Change to use INTERNAL_FIELD.
8103 * keyboard.h (KBOARD_INTERNAL_FIELD): Likewise.
8104 (KVAR): Change to use INTERNAL_FIELD.
8105 * frame.h (FVAR): New macro.
8106 (struct frame): Use INTERNAL_FIELD for all Lisp_Object fields.
8107 * alloc.c, buffer.c, data.c, dispnew.c, dosfns.c, eval.c, frame.c:
8108 * fringe.c, gtkutil.c, minibuf.c, nsfns.m, nsterm.m, print.c:
8109 * term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
8110 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
8111
8112 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
8113
8114 Miscellaneous fixes for non-default X toolkits.
8115 * xfns.c (Fx_file_dialog): Change to SSDATA to avoid warnings.
8116 * xterm.c (x_frame_of_widget): Remove redundant prototype.
8117 Move under #ifdef USE_LUCID.
8118 (x_create_toolkit_scroll_bar): Adjust scroll_bar_name
8119 definition and usage to avoid warnings.
8120
8121 2012-07-31 Jan Djärv <jan.h.d@swipnet.se>
8122
8123 * nsterm.m (openFiles): Fix previous checkin.
8124
8125 2012-07-31 Paul Eggert <eggert@cs.ucla.edu>
8126
8127 * indent.c (compute_motion): Remove unused local.
8128
8129 2012-07-31 Glenn Morris <rgm@gnu.org>
8130
8131 * s/usg5-4-common.h (wait3, WRETCODE): Let configure set them.
8132
8133 * conf_post.h [USG5_4]:
8134 Move remaining contents of s/usg5-4-common.h here.
8135 * s/usg5-4-common.h: Remove file.
8136
8137 * conf_post.h [IRIX6_5]: Move remaining contents of s/irix6-5.h here.
8138 * s/irix6-5.h: Remove file.
8139
8140 * conf_post.h [DARWIN_OS]: Move remaining contents of s/darwin.h here.
8141 * s/darwin.h: Remove file.
8142
8143 * conf_post.h [HPUX]: Move random, srandom here from s/hpux10-20.h.
8144 * s/hpux10-20.h: Remove file, which is now empty.
8145
8146 2012-07-30 Glenn Morris <rgm@gnu.org>
8147
8148 * conf_post.h: New, split from configure.ac's AH_BOTTOM.
8149 * Makefile.in (config_h): Add conf_post.h.
8150 * makefile.w32-in (CONFIG_H): Add conf_post.h.
8151
8152 2012-07-30 Jan Djärv <jan.h.d@swipnet.se>
8153
8154 * nsterm.m (ns_do_open_file): New variable.
8155 (ns_term_init): Set ns_do_open_file to YES after run returns.
8156 (openFile, openTempFile, openFileWithoutUI, openFiles):
8157 Open files only if ns_do_open_file.
8158
8159 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
8160
8161 * lisp.h (SWITCH_ENUM_CAST): Remove. All uses removed.
8162 This no-op macro hasn't been needed for many years.
8163 * src/regex.c (SWITCH_ENUM_CAST) [!emacs]: Likewise.
8164
8165 Export DIRECTORY_SEP, TYPEMASK, VALMASK to GDB.
8166 * alloc.c (gdb_make_enums_visible) [USE_LSB_TAG]: Add lsb_bits.
8167 * lisp.h (enum lsb_bits) [USE_LSB_TAG]: New enum, for
8168 gdb_make_enums_visible.
8169 (TYPEMASK, VALMASK) [USE_LSB_TAGS]: Now enum constants, not macros.
8170 (DIRECTORY_SEP): Now a constant, not a macro.
8171
8172 2012-07-30 Eli Zaretskii <eliz@gnu.org>
8173
8174 * w32fns.c (w32_wnd_proc): Pass w32_keyboard_codepage to
8175 w32_kbd_patch_key as the 2nd arg. (Bug#12082)
8176
8177 * w32term.c <w32_keyboard_codepage>: Renamed from
8178 keyboard_codepage and now external. All users changed.
8179
8180 * w32term.h: Add declaration of w32_keyboard_codepage.
8181
8182 * w32inevt.c (w32_kbd_patch_key): Accept an additional argument --
8183 the codepage to translate keys to Unicode. If this argument is
8184 -1, use the value returned by GetConsoleCP. All callers changed.
8185
8186 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
8187
8188 Update .PHONY listings in makefiles.
8189 * Makefile.in (.PHONY): Add all, mostlyclean, clean,
8190 bootstrap-clean, distclean, maintainer-clean, versioclean,
8191 extraclean, frc.
8192
8193 * lisp.h (STRING_BYTES_BOUND): Cast entire result to ptrdiff_t.
8194 This is a bit clearer. Fix some commentary typos.
8195
8196 2012-07-30 Glenn Morris <rgm@gnu.org>
8197
8198 * s/netbsd.h: Let configure include signal.h if needed.
8199 Remove file, which is now empty.
8200
8201 * s/usg5-4-common.h (_longjmp, _setjmp, TIOCSIGSEND):
8202 Let configure set them.
8203 * s/irix6-5.h (_longjmp, _setjmp, TIOCSIGSEND):
8204 No more need to undefine.
8205
8206 2012-07-30 Andreas Schwab <schwab@linux-m68k.org>
8207
8208 * keymap.c (Fkey_description): Don't remove 0x80 bit from
8209 non-single-byte char when adding meta modifier. (Bug#12090)
8210
8211 2012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
8212
8213 Convert safe_call to use variable number of arguments.
8214 * xdisp.c (safe_call): Convert to use varargs. Adjust users.
8215 (safe_call2): Fix comment.
8216 * lisp.h (safe_call): Adjust prototype.
8217 * coding.c (encode_coding_object): Change to use safe_call2.
8218 * xfaces.c (merge_face_heights): Change to use safe_call1.
8219
8220 2012-07-30 Glenn Morris <rgm@gnu.org>
8221
8222 * s/aix4-2.h (sigmask): No need to undefine it, since syssignal.h
8223 does that unconditionally. Remove file, which is now empty.
8224
8225 * s/freebsd.h, s/gnu-linux.h, s/sol2-6.h, s/unixware.h:
8226 Remove empty files.
8227
8228 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
8229
8230 Export to GDB most of lisp.h's remaining object-like macros.
8231 * lisp.h (min, max): Move earlier, because they're used earlier now.
8232 (INTMASK, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK)
8233 (CHAR_TABLE_STANDARD_SLOTS, CHARTAB_SIZE_BITS_0)
8234 (CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2, CHARTAB_SIZE_BITS_3)
8235 (DEFAULT_HASH_SIZE, COMPILED_ARGLIST, COMPILED_BYTECODE)
8236 (COMPILED_CONSTANTS, COMPILED_STACK_DEPTH, COMPILED_DOC_STRING)
8237 (COMPILED_INTERACTIVE, CHAR_ALT, CHAR_SUPER, CHAR_HYPER, CHAR_SHIFT)
8238 (CHAR_CTL, CHAR_META, CHAR_MODIFIER_MASK, CHARACTERBITS)
8239 (MANY, UNEVALLED, FLOAT_TO_STRING_BUFSIZE, MAX_ALLOCA):
8240 Now constants, for GDB. They need not be macros.
8241 (MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM, STRING_BYTES_BOUND):
8242 Now constants, for GDB, as well as macros, for static initializers.
8243 (CHAR_TABLE_STANDARD_SLOTS, CHAR_TABLE_EXTRA_SLOTS):
8244 Move to after the definition of struct Lisp_Char_Table,
8245 since the former now needs that type defined.
8246 (enum CHARTAB_SIZE_BITS, enum CHAR_TABLE_STANDARD_SLOTS)
8247 (enum DEFAULT_HASH_SIZE, enum Lisp_Compiled, enum char_bits)
8248 (enum maxargs, enum FLOAT_TO_STRING_BUFSIZE, enum MAX_ALLOCA):
8249 New enums, for gdb_make_enums_visible.
8250 (GLYPH_MODE_LINE_FACE): Remove; unused.
8251 * alloc.c (STRING_BYTES_MAX): Now a constant, not a macro.
8252 (gdb_make_enums_visible): Add enum CHARTAB_SIZE_BITS, enum
8253 CHAR_TABLE_STANDARD_SLOTS, enum char_bits, enum DEFAULT_HASH_SIZE,
8254 enum FLOAT_TO_STRING_BUFSIZE, enum Lisp_Bits, enum Lisp_Compiled,
8255 enum maxargs, enum MAX_ALLOCA.
8256 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): Remove.
8257 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Remove;
8258 no longer needed, now that they are done in lisp.h.
8259
8260 2012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
8261
8262 Cleanup string bytes checking.
8263 * alloc.c (GC_STRING_BYTES, CHECK_STRING_BYTES): Remove. Convert
8264 all users to STRING_BYTES or string_bytes if GC_CHECK_STRING_BYTES.
8265 (check_string_bytes): Define to empty if not GC_CHECK_STRING_BYTES.
8266 (check_sblock, compact_small_strings): Simplify.
8267
8268 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
8269
8270 * lisp.h (LISP_INT_TAG, LISP_INT1_TAG, LISP_STRING_TAG): Remove.
8271 These macros are confusing and no longer need to be defined, as
8272 the enum values now suffice. All uses replaced with definiens.
8273 (Lisp_Int1, Lisp_String): Define directly; this is clearer.
8274
8275 2012-07-29 Juanma Barranquero <lekktu@gmail.com>
8276
8277 * makefile.w32-in (LISP_H, $(BLD)/emacs.$(O), $(BLD)/w32inevt.$(O))
8278 ($(BLD)/w32console.$(O)): Update dependencies.
8279
8280 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
8281
8282 Remove HIDE_LISP_IMPLEMENTATION and cleanup cons free list check.
8283 * lisp.h (HIDE_LISP_IMPLEMENTATION): Remove as useless for a long
8284 time. Adjust users.
8285 (CHECK_CONS_LIST): Remove. Convert all users to check_cons_list.
8286
8287 2012-07-29 Jan Djärv <jan.h.d@swipnet.se>
8288
8289 * lread.c (init_lread): Remove if-statement in ifdef HAVE_NS before
8290 setting sitelisp (Bug#12010).
8291
8292 2012-07-29 Eli Zaretskii <eliz@gnu.org>
8293
8294 * w32heap.h (OS_9X): Rename from OS_WINDOWS_95.
8295
8296 * w32heap.c (cache_system_info):
8297 * w32.c (sys_rename):
8298 * w32proc.c (find_child_console, sys_kill): All users changed.
8299
8300 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
8301
8302 * alloc.c (Fgarbage_collect): Indent as per usual Emacs style.
8303
8304 2012-07-29 Eli Zaretskii <eliz@gnu.org>
8305
8306 * makefile.w32-in (LISP_H): Add $(NT_INC)/stdalign.h.
8307
8308 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
8309
8310 Cleanup statistics calculation in Fgarbage_collect.
8311 * alloc.c (Fgarbage_collect): Rename t1 to meaningful start.
8312 Fix zombies percentage calculation. Simplify elapsed time calculation.
8313
8314 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
8315
8316 Generalize marker debugging code under MARKER_DEBUG and use eassert.
8317 * insdel.c (CHECK_MARKERS, check_markers_debug_flag): Remove.
8318 (gap_left, gap_right, adjust_markers_for_delete, insert_1_both)
8319 (insert_from_string_1, insert_from_gap, insert_from_buffer_1)
8320 (replace_range, replace_range_2, del_range_2): Change to eassert.
8321 * marker.c (byte_char_debug_check): Adjust style.
8322
8323 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
8324
8325 Don't use the abbreviation "win" to refer to Windows (Bug#10421).
8326 * regex.c (MAX_BUF_SIZE): Remove some incorrect and
8327 long-ago-commented-out code that talks about "WIN32".
8328 * w32heap.h (OS_WINDOWS_95): Rename from OS_WIN95.
8329 All uses changed.
8330
8331 2012-07-28 Paul Eggert <eggert@cs.ucla.edu>
8332
8333 Use Gnulib stdalign module (Bug#9772, Bug#9960).
8334 * alloc.c (XMALLOC_BASE_ALIGNMENT, GC_POINTER_ALIGNMENT, pure_alloc):
8335 Simplify by using alignof.
8336 (pure_alloc) [! USE_LSB_TAG]: Don't over-align EMACS_INT values.
8337 * lisp.h: Include <stdalign.h>.
8338 (GCALIGNMENT): New macro and constant.
8339 (DECL_ALIGN): Remove. All uses replaced by alignas (GCALIGNMENT).
8340 (USE_LSB_TAG): ifdef on alignas, not on DECL_ALIGN.
8341 (stdalign): New macro, if not already defined.
8342
8343 2012-07-28 Eli Zaretskii <eliz@gnu.org>
8344
8345 Fix non-ASCII input in non-GUI frames on MS-Windows. (Bug#12055)
8346 * w32inevt.c: Include w32inevt.h.
8347 (w32_read_console_input): New inline function, calls either
8348 ReadConsoleInputA or ReadConsoleInputW, depending on the value of
8349 w32_console_unicode_input.
8350 (fill_queue): Call w32_read_console_input instead of ReadConsoleInput.
8351 (w32_kbd_patch_key, key_event): Use the codepage returned by
8352 GetConsoleCP, rather than the ANSI codepage returned by GetLocaleInfo.
8353 (key_event): use uChar.UnicodeChar only if
8354 w32_console_unicode_input is non-zero.
8355
8356 * w32console.c: Include w32heap.h.
8357 <w32_console_unicode_input>: New global variable.
8358 (initialize_w32_display): Set w32_console_unicode_input to 1 on NT
8359 family of Windows, zero otherwise.
8360
8361 * w32inevt.h: Declare w32_console_unicode_input.
8362
8363 * xdisp.c (init_iterator): Don't reference tip_frame in a build
8364 --without-x. (Bug#11742)
8365
8366 2012-07-27 Paul Eggert <eggert@cs.ucla.edu>
8367
8368 Adjust GDB to reflect pvec_type changes (Bug#12036).
8369 * .gdbinit (xvectype, xpr, xbacktrace): Adjust to reflect the
8370 2012-07-04 changes to pseudovector representation.
8371 Problem reported by Eli Zaretskii in <http://bugs.gnu.org/12036#30>.
8372
8373 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
8374
8375 * dbusbind.c (XD_DBUS_VALIDATE_BUS_ADDRESS): Canonicalize session
8376 bus address.
8377 (xd_close_bus, Fdbus_init_bus): Handle reference counter properly.
8378
8379 2012-07-27 Eli Zaretskii <eliz@gnu.org>
8380
8381 * alloc.c (listn): Fix the order the arguments are consed onto the
8382 list.
8383
8384 * lisp.h (enum constype): Use CONSTYPE_HEAP and CONSTYPE_PURE for
8385 enumeration constants, as PURE and HEAP are too general, and clash
8386 with other headers and sources, such as gmalloc.c and the
8387 MS-Windows system headers. All users changed.
8388
8389 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
8390
8391 Revert last save_excursion_save and save_excursion_restore changes.
8392 * alloc.c, editfns.c, marker.c, lisp.h: Revert.
8393 Lots of crashes reported by Chong Yidong <cyd@gnu.org>.
8394
8395 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
8396
8397 Fix recently-introduced typos in Windows port.
8398 Reported by Martin Rudalics <rudalics@gmx.at>.
8399 * w32.c (init_environment): Replace comma with semicolon.
8400 * w32fns.c (syms_of_w32fns): Add missing parenthesis.
8401
8402 2012-07-27 Paul Eggert <eggert@cs.ucla.edu>
8403
8404 Improve GDB symbol export (Bug#12036).
8405 * .gdbinit (xgetptr, xgetint, xgettype): Set $bugfix in different
8406 arms of an 'if', not using conditional expressions; otherwise GDB
8407 complains about the types in the unevaluated arm when the argument
8408 is an integer literal.
8409 (xgetint): Simplify expression.
8410 * alloc.c (gdb_make_enums_visible): New constant. This ports to
8411 GCC 3.4.2 the export of symbols to GDB. Problem reported by Eli
8412 Zaretskii in <http://bugs.gnu.org/12036#13>.
8413 * lisp.h (PUBLISH_TO_GDB): Remove. All uses removed. No longer
8414 needed now that we have gdb_make_enums_visible.
8415 (enum CHECK_LISP_OBJECT_TYPE, enum Lisp_Bits, enum More_Lisp_Bits)
8416 (enum enum_USE_LSB_TAG):
8417 New enum types, packaging up enums that need to be exported to GDB.
8418
8419 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
8420
8421 Utility function to make a list from specified amount of objects.
8422 * lisp.h (enum constype): New datatype.
8423 (listn): New prototype.
8424 * alloc.c (listn): New function.
8425 (Fmemory_use_count, syms_of_alloc): Use it.
8426 * buffer.c (syms_of_buffer): Likewise.
8427 * callint.c (syms_of_callint): Likewise.
8428 * charset.c (define_charset_internal): Likewise.
8429 * coding.c (syms_of_coding): Likewise.
8430 * keymap.c (syms_of_keymap): Likewise.
8431 * search.c (syms_of_search): Likewise.
8432 * syntax.c (syms_of_syntax): Likewise.
8433 * w32.c (init_environment): Likewise.
8434 * w32fns.c (Fw32_battery_status, syms_of_w32fns): Likewise.
8435 * xdisp.c (syms_of_xdisp): Likewise.
8436 * xfns.c (syms_of_xfns): Likewise.
8437
8438 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
8439
8440 Fast save_excursion_save and save_excursion_restore.
8441 * lisp.h (struct Lisp_Excursion): New data type.
8442 (PVEC_EXCURSION): New pseudovector type.
8443 (XEXCURSION, XSETEXCURSION, EXCURSIONP): Convenient macros
8444 to deal with it. Adjust comments.
8445 (init_marker, attach_marker): New prototype.
8446 (unchain_marker): Adjust prototype.
8447 * marker.c (attach_marker): Change to global.
8448 (init_marker): New function.
8449 * alloc.c (Fmake_marker, build_marker): Use it.
8450 (build_marker): More easserts.
8451 (mark_object): Handle struct Lisp_Excursion.
8452 * editfns.c (save_excursion_save, save_excursion_restore):
8453 Reimplement to use struct Lisp_Excursion. Add comments.
8454
8455 2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
8456
8457 Fix export of symbols to GDB (Bug#12036).
8458 * alloc.c (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL)
8459 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Move these here from
8460 emacs.c, as this is a more-suitable home. Had this been done earlier
8461 the fix for 12036 would have avoided some of the problems noted in
8462 <http://bugs.gnu.org/12036#13> by Eli Zaretskii, as the scope problems
8463 would have been more obvious.
8464 * emacs.c: Do not include <verify.h>; no longer needed.
8465 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS)
8466 (gdb_GCTYPEBITS, gdb_USE_LSB_TAG)
8467 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
8468 Remove; now done in lisp.h.
8469 * lisp.h (PUBLISH_TO_GDB): New macro.
8470 (GCTYPEBITS, USE_LSB_TAG, CHECK_LISP_OBJECT_TYPE, enum pvec_type)
8471 (DATA_SEG_BITS): Use it.
8472 (GCTYPEBITS, USE_LSB_TAG): Now also an enum, for GDB.
8473 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Now just an enum, for GDB.
8474 * mem-limits.h (EXCEEDS_LISP_PTR): Redo so that DATA_SEG_BITS need
8475 not be usable in #if. This simplifies things.
8476
8477 2012-07-26 Juanma Barranquero <lekktu@gmail.com>
8478
8479 * makefile.w32-in ($(BLD)/emacs.$(O)): Update dependencies.
8480
8481 2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
8482
8483 Simplify export of symbols to GDB (Bug#12036).
8484 * .gdbinit (xgetptr, xgetint, xgettype): Don't use "set $bugfix =
8485 $bugfix.i", as this doesn't work (with GDB 7.4.1, anyway).
8486 (xgetptr, xgetint, xgettype, xcoding, xcharset, xprintbytestr):
8487 Adjust to changes in lisp.h and emacs.c, by using
8488 CHECK_LISP_OBJECT_TYPE rather than gdb_use_struct, VALMASK instead
8489 of $valmask, DATA_SEG_BITS instead of gdb_data_seg_bits,
8490 INTTYPEBITS instead of gdb_gctypebits - 1, USE_LSB_TAG instead of
8491 gdb_use_lsb, (1 << GCTYPEBITS) - 1 instead of $tagmask, VALBITS
8492 instead of gdb_valbits.
8493 (xvectype, xvector, xpr, xprintstr, xbacktrace): Similarly, use
8494 PSEUDOVECTOR_FLAG instead of PVEC_FLAG, and ARRAY_MARK_FLAG
8495 instead of gdb_array_mark_flag.
8496 (xboolvector): Get size from $->size, not $->header.size.
8497 Use BOOL_VECTOR_BITS_PER_CHAR rather than mystery constants.
8498 (xreload, hook-run, hookpost-run): Remove.
8499 * emacs.c: Include <verify.h>.
8500 (gdb_use_lsb, gdb_use_struct, gdb_valbits, gdb_gctypebits)
8501 (gdb_data_seg_bits, PVEC_FLAG, gdb_array_mark_flag, gdb_pvec_type):
8502 Remove.
8503 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS, gdb_GCTYPEBITS)
8504 (gdb_USE_LSB_TAG): New enum constants.
8505 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
8506 Also define these as enum constants, so they're visible to GDB.
8507 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): New macros.
8508 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Also define these
8509 as constants, so they're visible to GDB.
8510 * lisp.h (VALBITS, INTTYPEBITS, FIXNUM_BITS, PSEUDOVECTOR_SIZE_BITS)
8511 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK, BOOL_VECTOR_BITS_PER_CHAR):
8512 Now enum constants, not macros, so they're visible to GDB.
8513 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Default to 0, as this is
8514 more convenient now. All uses changed.
8515 (VALMASK) [USE_LSB_TAG]: Also define in this case.
8516 * mem-limits.h (EXCEEDS_LISP_PTR): Adjust to DATA_SEG_BITS change.
8517
8518 2012-07-26 Dmitry Antipov <dmantipov@yandex.ru>
8519
8520 Explicitly free restriction data that are not needed anymore.
8521 * editfns.c (save_restriction_restore): Free restriction data.
8522
8523 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
8524
8525 * eval.c (Fautoload_do_load): Rename from do_autoload, export to Lisp,
8526 add argument, tune behavior, and adjust all callers.
8527
8528 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
8529
8530 Use typedef for EMACS_INT, EMACS_UINT.
8531 * lisp.h, s/ms-w32.h (EMACS_INT, EMACS_UINT): Use typedefs rather
8532 than macros. This simplifies debugging in the usual case, since
8533 it lets GDB show addresses as 'EMACS_INT *' rather than 'long int *'
8534 and it allows expressions involving EMACS_INT casts.
8535 * .gdbinit (xreload): Simplify by using EMACS_INT cast.
8536
8537 2012-07-25 Jan Djärv <jan.h.d@swipnet.se>
8538
8539 * nsterm.m (ns_read_socket): Return early if there is a modal
8540 window (Bug#12043).
8541
8542 2012-07-25 Martin Rudalics <rudalics@gmx.at>
8543
8544 * frame.c (Fredirect_frame_focus): In doc-string don't mention
8545 that FOCUS-FRAME can be omitted.
8546
8547 2012-07-25 Dmitry Antipov <dmantipov@yandex.ru>
8548
8549 Adjust buffer text indirection counters at the end of Fkill_buffer.
8550 * buffer.c (Fkill_buffer): Adjust indirection counters when the
8551 buffer is definitely dead. This should really fix an issue reported
8552 by Christoph Scholtes again. (Bug#12007).
8553 (init_buffer_once): Initialize indirection counters of
8554 buffer_defaults and buffer_local_symbols (for sanity and safety).
8555
8556 2012-07-24 Eli Zaretskii <eliz@gnu.org>
8557
8558 * xdisp.c (init_iterator): Don't compute dimensions of truncation
8559 and continuation glyphs on tooltip frames, leave them at zero.
8560 Avoids continued lines in tooltips. (Bug#11832)
8561
8562 2012-07-24 Dmitry Antipov <dmantipov@yandex.ru>
8563
8564 Simplify copy_overlay.
8565 * buffer.c (copy_overlay): Simplify. Use build_marker.
8566 * lisp.h (struct Lisp_Overlay): Restore comment with minor tweaks.
8567
8568 2012-07-23 Eli Zaretskii <eliz@gnu.org>
8569
8570 * print.c (print_object): Don't crash when a frame's name is nil
8571 or invalid. (Bug#12025)
8572
8573 * window.c (decode_any_window): Disable CHECK_LIVE_FRAME test, as
8574 it signals an error when a tooltip frame is being created.
8575
8576 2012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
8577
8578 Cleanup miscellaneous objects allocation and initialization.
8579 * alloc.c (allocate_misc): Change to static. Add argument to
8580 specify the subtype. Adjust comment and users.
8581 (build_overlay): New function.
8582 * buffer.c (copy_overlays, Fmake_overlay): Use it.
8583 * lisp.h (struct Lisp_Overlay): Remove obsolete comment.
8584 (allocate_misc): Remove prototype.
8585 (build_overlay): Add prototype.
8586
8587 2012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
8588
8589 Swap buffer text indirection counters in Fbuffer_swap_text.
8590 * buffer.c (Fbuffer_swap_text): Swap indirections too.
8591 This avoids crash reported by Christoph Scholtes at
8592 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00785.html.
8593
8594 2012-07-22 Jan Djärv <jan.h.d@swipnet.se>
8595
8596 * nsmenu.m (Popdown_data): New struct.
8597 (pop_down_menu): p->pointer is Popdown_data. Release the pool and
8598 free Popdown_data.
8599 (ns_popup_dialog): Use NSAutoreleasePool and pass it to pop_down_menu.
8600 (initWithContentRect): Make imgView and contentView non-static
8601 and autorelease them. Also autorelease img and matrix (Bug#12005).
8602 (dealloc): Remove (Bug#12005).
8603
8604 2012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
8605
8606 Adjust consing_since_gc when objects are explicitly freed.
8607 * alloc.c (GC_DEFAULT_THRESHOLD): New macro.
8608 (Fgarbage_collect): Use it. Change minimum to 1/10 of default.
8609 (free_cons, free_misc): Subtract object size from consing_since_gc.
8610
8611 2012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
8612
8613 Simplify and cleanup markers positioning code.
8614 * marker.c (attach_marker): More useful eassert.
8615 (live_buffer, set_marker_internal): New function.
8616 (Fset_marker, set_marker_restricted): Use set_marker_internal.
8617 (set_marker_both, set_marker_restricted_both): Use live_buffer.
8618
8619 2012-07-22 Paul Eggert <eggert@cs.ucla.edu>
8620
8621 * buffer.h (struct buffer.indirections): Now ptrdiff_t, not int,
8622 as it's limited by the amount of memory, not by INT_MAX.
8623
8624 2012-07-21 Eli Zaretskii <eliz@gnu.org>
8625
8626 * keyboard.c (keys_of_keyboard): Bind language-change to 'ignore'
8627 in special-event-map. See the discussion at
8628 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00417.html
8629 for the reasons.
8630
8631 * w32menu.c (add_menu_item): Cast to ULONG_PTR when assigning
8632 info.dwItemData. Fixes crashes on 64-bit Windows.
8633 Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
8634
8635 2012-07-21 Jan Djärv <jan.h.d@swipnet.se>
8636
8637 * nsterm.m (accessibilityAttributeValue): New function. (Bug#11134).
8638 (conversationIdentifier): Return value is NSInteger.
8639 * nsterm.m (accessibilityAttributeValue): Surround with NS_IMPL_COCOA.
8640
8641 2012-07-21 Chong Yidong <cyd@gnu.org>
8642
8643 * window.c (decode_any_window): Signal an error if the window is
8644 on a dead frame (Bug#11984).
8645
8646 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
8647
8648 Add indirection counting to speed up Fkill_buffer.
8649 * buffer.h (struct buffer): New member.
8650 * buffer.c (Fget_buffer_create): Set indirection counter to 0.
8651 (Fmake_indirect_buffer): Set indirection counter to -1, increment
8652 base buffer indirection counter.
8653 (compact_buffer): If ENABLE_CHECKING, verify indirection counters.
8654 (Fkill_buffer): Adjust indirection counters as needed, don't walk
8655 through buffer list if indirection counter is 0.
8656
8657 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
8658
8659 Extend the value returned by Fgarbage_collect with heap statistics.
8660 * alloc.c (Qheap): New symbol.
8661 (syms_of_alloc): DEFSYM it.
8662 (Fgarbage_collect): If DOUG_LEA_MALLOC, add mallinfo data.
8663 (Fmemory_free): Remove.
8664 (syms_of_alloc): Don't defsubr it.
8665 * buffer.c (Fcompact_buffer): Remove.
8666 (syms_of_buffer): Don't defsubr it.
8667
8668 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
8669
8670 Make maybe_gc inline.
8671 Verify that inlining is always possible (GCC 4.7.1, -O3 -Winline).
8672 * lisp.h (consing_since_gc, gc_relative_threshold)
8673 (memory_full_cons_threshold): Revert declaration.
8674 (maybe_gc): Remove prototype, define as inline.
8675 * alloc.c: Remove old commented-out code.
8676 (consing_since_gc, gc_relative_threshold)
8677 (memory_full_cons_threshold): Revert to global.
8678 (maybe_gc): Remove.
8679
8680 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
8681
8682 Simple wrapper for make_unibyte_string, adjust font_open_by_name.
8683 * lisp.h (build_unibyte_string): New function.
8684 * dosfns.c, fileio.c, fns.c, ftfont.c, process.c:
8685 * sysdep.c, w32fns.c, xfns.c: Use it.
8686 * font.c (font_open_by_name): Change 2nd and 3rd args to the only arg
8687 of type Lisp_Object to avoid redundant calls to make_unibyte_string.
8688 Adjust users accordingly.
8689 * font.h (font_open_by_name): Adjust prototype.
8690
8691 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
8692
8693 Cleanup calls to Fgarbage_collect.
8694 * lisp.h (maybe_gc): New prototype.
8695 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
8696 Remove declarations.
8697 * alloc.c (maybe_gc): New function.
8698 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
8699 Make them static.
8700 * bytecode.c (MAYBE_GC): Use maybe_gc.
8701 * eval.c (eval_sub, Ffuncall): Likewise.
8702 * keyboard.c (read_char): Likewise. Adjust call to maybe_gc
8703 to avoid dependency from auto-save feature.
8704
8705 2012-07-19 Paul Eggert <eggert@cs.ucla.edu>
8706
8707 * buffer.h (FOR_EACH_BUFFER): Rename from 'for_each_buffer'.
8708 (FOR_EACH_PER_BUFFER_OBJECT_AT): Rename from
8709 'for_each_per_buffer_object_at'.
8710 All uses changed. It's better to use upper-case for macros that
8711 cannot be implemented as functions, to give the reader a clue
8712 that they're special.
8713
8714 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
8715
8716 * alloc.c (Fgarbage_collect): Tweak docstring.
8717
8718 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
8719
8720 Tweak the value returned from Fgarbage_collect again.
8721 * alloc.c (Fgarbage_collect): New return value, as confirmed in
8722 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00418.html.
8723 Adjust documentation.
8724 (total_vector_bytes): Rename to total_vector_slots, adjust
8725 accounting.
8726 (total_free_vector_bytes): Rename to total_free_vector_slots,
8727 adjust accounting.
8728 (Qstring_bytes, Qvector_slots): New symbols.
8729 (syms_of_alloc): DEFSYM them.
8730
8731 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
8732
8733 Buffer compaction primitive which may be used from Lisp.
8734 * buffer.c (compact_buffer, Fcompact_buffer): New function.
8735 (syms_of_buffer): Register Fcompact_buffer.
8736 * alloc.c (Fgarbage_collect): Use compact_buffer.
8737 * buffer.h (compact_buffer): New prototype.
8738 (struct buffer_text): New member.
8739
8740 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
8741
8742 New macro to iterate over all buffers, miscellaneous cleanups.
8743 * lisp.h (all_buffers): Remove declaration.
8744 * buffer.h (all_buffers): Add declaration, with comment.
8745 (for_each_buffer): New macro.
8746 * alloc.c (Fgarbage_collect, mark_object): Use it.
8747 * buffer.c (Fkill_buffer, Fbuffer_swap_text, Fset_buffer_multibyte)
8748 (init_buffer): Likewise.
8749 * data.c (Fset_default): Likewise.
8750 * coding.c (code_conversion_restore): Remove redundant check
8751 for dead buffer.
8752 * buffer.c (Fkill_buffer): Likewise. Remove obsolete comment.
8753
8754 2012-07-18 Andreas Schwab <schwab@linux-m68k.org>
8755
8756 Fix bug that created negative-length intervals.
8757 * intervals.c (merge_interval_right, merge_interval_left):
8758 Do not zero out this interval if it is absorbed by its children,
8759 as this interval's total length doesn't change in that case. See
8760 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00403.html>.
8761
8762 2012-07-18 Paul Eggert <eggert@cs.ucla.edu>
8763
8764 * alloc.c (Fmake_bool_vector): Fix off-by-8 bug
8765 when invoking (make-bool-vector N t) and N is a positive
8766 multiple of 8 -- the last 8 bits were mistakenly cleared.
8767
8768 Remove some struct layout assumptions in bool vectors.
8769 * alloc.c (bool_header_size): New constant.
8770 (header_size, word_size): Move earlier, as they're now used earlier.
8771 Use 'word_size' in a few more places, where it's appropriate.
8772 (Fmake_bool_vector, sweep_vectors): Don't assume that there is no
8773 padding before the data member of a bool vector.
8774 (sweep_vectors): Use PSEUDOVECTOR_TYPEP, in an eassert, rather
8775 than doing the check by hand with an abort ().
8776
8777 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
8778
8779 * eval.c (Fdefvar): Don't check constants since we only set the var if
8780 it's not yet defined anyway (bug#11904).
8781
8782 * lisp.h (last_undo_boundary): Declare new var.
8783 * keyboard.c (command_loop_1): Set it.
8784 * cmds.c (Fself_insert_command): Use it to only remove boundaries that
8785 were auto-added by the command loop (bug#11774).
8786
8787 2012-07-18 Andreas Schwab <schwab@linux-m68k.org>
8788
8789 * w32font.c (Qsymbol): Remove local definition.
8790 (syms_of_w32font): Don't DEFSYM it.
8791
8792 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
8793
8794 Fix sweep_vectors to handle large bool vectors correctly.
8795 * alloc.c (sweep_vectors): Account total_vector_bytes for
8796 bool vectors larger than VBLOCK_BYTES_MAX.
8797
8798 2012-07-18 Chong Yidong <cyd@gnu.org>
8799
8800 * frame.c (x_set_frame_parameters): Revert bogus change introduced
8801 in 2012-05-25 commit by Paul Eggert (Bug#11738).
8802
8803 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
8804
8805 Return more descriptive data from Fgarbage_collect.
8806 Suggested by Stefan Monnier in
8807 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00369.html.
8808 * alloc.c (bounded_number): New function.
8809 (total_buffers, total_vectors): New variable.
8810 (total_string_size): Rename to total_string_bytes, adjust users.
8811 (total_vector_size): Rename to total_vector_bytes, adjust users.
8812 (sweep_vectors): Account total_vectors and total_vector_bytes.
8813 (Fgarbage_collect): New return value. Adjust documentation.
8814 (gc_sweep): Account total_buffers.
8815 (Fmemory_free, Fmemory_use_counts): Use bounded_number.
8816 (VECTOR_SIZE): Remove.
8817 * data.c (Qfloat, Qvector, Qsymbol, Qstring, Qcons): Make global.
8818 (Qinterval, Qmisc): New symbols.
8819 (syms_of_data): Initialize them.
8820 * lisp.h (Qinterval, Qsymbol, Qstring, Qmisc, Qvector, Qfloat)
8821 (Qcons, Qbuffer): New declarations.
8822
8823 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
8824
8825 * alloc.c (Fmemory_free): Account for memory-free's own storage.
8826 Round up, not down. Improve doc.
8827
8828 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
8829
8830 Restore old code in allocate_string_data to avoid Faset breakage.
8831 Reported by Julien Danjou <julien@danjou.info> in
8832 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00371.html.
8833 * alloc.c (allocate_string_data): Restore old code with minor
8834 adjustments, fix comment to explain this subtle issue.
8835
8836 2012-07-17 Eli Zaretskii <eliz@gnu.org>
8837
8838 Remove FILE_SYSTEM_CASE.
8839 * s/msdos.h (FILE_SYSTEM_CASE): Don't define.
8840
8841 * fileio.c (FILE_SYSTEM_CASE): Don't define.
8842 (Ffile_name_directory, Fexpand_file_name): Don't use FILE_SYSTEM_CASE.
8843 Fixes problems on MS-DOS with Vtemp_file_name_pattern when
8844 call-process-region passes it through expand-file-name.
8845
8846 * dired.c (file_name_completion): Don't use FILE_SYSTEM_CASE.
8847
8848 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
8849
8850 Fix crash when creating indirect buffer (Bug#11917)
8851 * buffer.c (buffer_lisp_local_variables): Add argument CLONE.
8852 Don't handle unbound variables specially if non-zero.
8853 (Fbuffer_local_variables): Pass zero.
8854 (clone_per_buffer_values): Pass non-zero.
8855
8856 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
8857
8858 * gnutls.c (emacs_gnutls_handshake): Revert last change. Add QUIT
8859 to make the loop interruptible.
8860
8861 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
8862
8863 * gnutls.c (emacs_gnutls_handshake): Only retry if
8864 GNUTLS_E_INTERRUPTED.
8865
8866 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
8867
8868 Cleanup and convert miscellaneous checks to eassert.
8869 * alloc.c (mark_interval): Fix comment, partially rephrase
8870 old comment from intervals.h (see below).
8871 * intervals.c (find_interval, adjust_intervals_for_insertion)
8872 (delete_interval, adjust_intervals_for_deletion)
8873 (graft_intervals_into_buffer, temp_set_point_both, copy_intervals):
8874 Convert to eassert.
8875 (adjust_intervals_for_insertion, make_new_interval):
8876 Remove obsolete and unused code.
8877 * intervals.h (struct interval): Remove obsolete comment.
8878 * textprotp.c (erase_properties): Remove unused code.
8879 (Fadd_text_properties, set_text_properties_1, Fremove_text_properties)
8880 (Fremove_list_of_text_properties): Convert to eassert.
8881
8882 2012-07-17 Chong Yidong <cyd@gnu.org>
8883
8884 * editfns.c (Finsert_char): Doc fix.
8885
8886 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
8887
8888 Fix previous change to make Fmemory_free always accurate.
8889 * alloc.c (make_interval): Update total_free_intervals.
8890 (make_float): Likewise for total_free_floats.
8891 (free_cons, Fcons): Likewise for total_free_conses.
8892 (SETUP_ON_FREE_LIST, allocate_vector_from_block):
8893 Likewise for total_free_vector_bytes.
8894 (Fmake_symbol): Likewise for total_free_symbols.
8895 (bytes_free): Remove.
8896
8897 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
8898
8899 Simple free memory accounting feature.
8900 * alloc.c (bytes_free, total_free_vector_bytes): New variable.
8901 (sweep_vectors): Accumulate size of free vectors.
8902 (Fgarbage_collect): Setup bytes_free.
8903 (Fmemory_free): New function.
8904 (syms_of_alloc): Register it.
8905
8906 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
8907
8908 Cleanup overlays checking.
8909 * buffer.h (OVERLAY_VALID): Remove as useless synonym of OVERLAYP.
8910 * buffer.c (overlay_touches_p, recenter_overlay_lists): Change to
8911 eassert and OVERLAYP.
8912 (sort_overlays): Change to use OVERLAYP.
8913
8914 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
8915
8916 * editfns.c (Finsert_char): Make it interactive, and make the
8917 second arg optional. Copy interactive spec and docstring from
8918 ucs-insert.
8919
8920 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
8921
8922 * floatfns.c (Fabs): Do not wrap fabs inside IN_FLOAT (Bug#11913).
8923 Unlike the other wrapped functions, fabs has an unspecified
8924 effect on errno.
8925
8926 2012-07-16 Jan Djärv <jan.h.d@swipnet.se>
8927
8928 * nsterm.m (keyDown): Interpret flags without left/right bits
8929 as the left key (Bug#11670).
8930
8931 2012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
8932
8933 Remove empty and useless init functions.
8934 * lisp.h (init_character_once, init_fns, init_image)
8935 (init_filelock, init_sound): Remove prototype.
8936 * character.c (init_character_once): Remove.
8937 * filelock.c (init_filelock): Likewise.
8938 * fns.c (init_fns): Likewise.
8939 * image.c (init_image): Likewise.
8940 * sound.c (init_sound): Likewise.
8941 * emacs.c (main): Adjust accordingly.
8942
8943 2012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
8944
8945 * gtkutil.h: Tiny cleanups.
8946 (use_old_gtk_file_dialog): Remove useless declaration.
8947 (xg_uses_old_file_dialog): Add suggested const attribute.
8948
8949 2012-07-15 Eli Zaretskii <eliz@gnu.org>
8950
8951 * bidi.c (MAX_STRONG_CHAR_SEARCH): New macro.
8952 (bidi_paragraph_init): Use it to limit search forward for a strong
8953 directional character in abnormally large paragraphs full of
8954 neutral or weak characters. (Bug#11943)
8955
8956 2012-07-15 Stefano Facchini <stefano.facchini@gmail.com> (tiny change)
8957
8958 * gtkutil.c (xg_create_tool_bar): Apply "primary-toolbar" style to
8959 the toolbar (Bug#9451).
8960 (xg_make_tool_item): Give the widget event box a transparent
8961 background.
8962
8963 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
8964
8965 Cleanup basic allocation variables and functions.
8966 * alloc.c (ignore_warnings, init_intervals, init_float)
8967 (init_cons, init_symbol, init_marker): Remove.
8968 (interval_block_index): Initialize to INTERVAL_BLOCK_SIZE.
8969 (float_block_index): Initialize to FLOAT_BLOCK_SIZE.
8970 (cons_block_index): Initialize to CONS_BLOCK_SIZE.
8971 (symbol_block_size): Initialize to SYMBOL_BLOCK_SIZE.
8972 (marker_block_index): Initialize to MARKER_BLOCK_SIZE.
8973 (staticidx, init_alloc_once, init_strings, free_ablock):
8974 Remove redundant initialization.
8975 * fns.c (init_weak_hash_tables): Remove.
8976 * lisp.h (init_weak_hash_tables): Remove prototype.
8977
8978 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
8979
8980 Use zero_vector where appropriate.
8981 * alloc.c (zero_vector): Define as Lisp_Object. Adjust users
8982 accordingly.
8983 * lisp.h (zero_vector): New declaration.
8984 * font.c (null_vector): Remove.
8985 (syms_of_font): Remove initialization and staticpro.
8986 (font_list_entities, font_find_for_lface): Change to use zero_vector.
8987 * keymap.c (Faccessible_keymaps): Likewise.
8988
8989 2012-07-15 Leo Liu <sdl.web@gmail.com>
8990
8991 * fringe.c: Fix typo in comments.
8992
8993 2012-07-14 Leo Liu <sdl.web@gmail.com>
8994
8995 * fringe.c: Add a new bitmap exclamation-mark.
8996
8997 2012-07-14 Eli Zaretskii <eliz@gnu.org>
8998
8999 * gmalloc.c (GMALLOC_INHIBIT_VALLOC): Don't reference.
9000
9001 * s/msdos.h (BSD_SYSTEM, DATA_START, GC_SETJMP_WORKS, HAVE_MOUSE)
9002 (HAVE_MENUS): Don't define, defined by editing config.in with
9003 msdos/sed2v2.inp.
9004 (GMALLOC_INHIBIT_VALLOC): Don't define.
9005 (MODE_LINE_BINARY_TEXT): Remove, not used anymore.
9006
9007 2012-07-14 Juanma Barranquero <lekktu@gmail.com>
9008
9009 * s/ms-w32.h (GC_SETJMP_WORKS, GC_MARK_STACK): Set in nt/config.nt.
9010
9011 2012-07-14 Glenn Morris <rgm@gnu.org>
9012
9013 * s/aix4-2.h, s/freebsd.h, s/gnu-linux.h, s/hpux10-20.h:
9014 * s/irix6-5.h, s/netbsd.h, s/sol2-6.h, s/unixware.h:
9015 Let configure set GC_SETJMP_WORKS, GC_MARK_STACK.
9016
9017 2012-07-13 Glenn Morris <rgm@gnu.org>
9018
9019 * s/gnu-linux.h (GC_MARK_SECONDARY_STACK): Let configure set it.
9020
9021 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Let configure set it.
9022 * s/irix6-5.h (SETUP_SLAVE_PTY): No more need to unset it.
9023
9024 2012-07-13 Jan Djärv <jan.h.d@swipnet.se>
9025
9026 * nsterm.m (uRect): Only define if NS_IMPL_GNUSTEP.
9027 (x_free_frame_resources): Pass x_free_frame_resources to NSTRACE.
9028 (ns_lisp_to_color, ns_string_to_lispmod, ns_term_init)
9029 (ns_term_shutdown, requestService, initFrameFromEmacs): Use SSDATA
9030 where appropriate.
9031 (ns_exec_path, ns_load_path, changeFont): Put () around assignment used
9032 as boolean expression.
9033 (x_set_window_size): Remove unused variable toolbar.
9034 (ns_get_color_default, ns_mod_to_lisp): Remove.
9035 (ns_mouse_position): Remove unused variables xchar and ychar.
9036 (ns_compute_glyph_string_overhangs): Remove unused variable face.
9037 (ns_set_vertical_scroll_bar): Remove unused variable count.
9038 (ns_delete_terminal): Remove unused variable i.
9039 (ns_term_init): Remove unused variables r, g and b.
9040 (mouseDown): Remove unused variable window.
9041 (windowDidResize): Move definition of theWindow inside NS_IMPL_GNUSTEP.
9042 (initFrameFromEmacs): Remove unused variable vbextra.
9043 (mouseEntered): Remove unused variables p and dpyinfo.
9044 (mouseExited): Remove unused variables p and r.
9045 (ns_define_frame_cursor, ns_clear_frame_area)
9046 (ns_draw_window_cursor, ns_initialize_display_info): Make static.
9047 (menuDown): Assign [sender tag] to variable and cast the variable.
9048
9049 * nsterm.h (menuDown): Add id as type to argument sender.
9050 (ns_display_info_for_name): Add Lisp_Object argument.
9051 (ns_term_init): Add Lisp_Object argument.
9052 (ns_map_event_to_object): Add void argument.
9053 (ns_string_from_pasteboard, ns_string_to_pasteboard): Add correct
9054 prototype with arguments and only declare if __OBJC__.
9055 (nxatoms_of_nsselect): Add void argument.
9056 (ns_lisp_to_cursor_type): Add Lisp_Object argument.
9057 (ns_alloc_autorelease_pool): Add void argument.
9058 (ns_release_autorelease_pool): Add void* argument.
9059 (ns_get_defaults_value): Add const char* argument.
9060
9061 * nsmenu.m (ns_update_menubar, ns_menu_show, process_dialog)
9062 (initFromContents): Use SSDATA where appropriate.
9063 (ns_update_menubar): Add braces to ambigous if-else.
9064 (initWithTitle): Put () around assignment in if statement.
9065 (ns_menu_show): Remove unused variables window and keymap.
9066 (update_frame_tool_bar): Remove unused variable selected_p.
9067 (initWithContentRect): Remove unused variable this_cmd_name.
9068
9069 * nsimage.m (ns_load_image, allocInitFromFile): Use SSDATA where
9070 appropriate.
9071 (setXBMColor): Remove unused variable len.
9072 (setPixmapData): Put () around assignment in loop statement.
9073
9074 * nsfont.m (ns_get_family, ns_lang_to_script, ns_otf_to_script)
9075 (ns_registry_to_script, ns_get_req_script, nsfont_open): Use SSDATA
9076 where appropriate.
9077 (ns_get_covering_families, ns_findfonts, nsfont_list_family): Put ()
9078 around assignment in loop statement.
9079 (nsfont_open): Remove unused variable i.
9080 (nsfont_open): Remove unused variable len.
9081 (nsfont_draw): Remove unused variable cs.
9082
9083 * nsfns.m (x_set_icon_name, ns_set_name_internal)
9084 (ns_set_name_as_filename, ns_implicitly_set_icon_type)
9085 (x_set_icon_type, ns_lisp_to_cursor_type, Fns_read_file_name)
9086 (Fns_get_resource, Fns_set_resource, Fx_open_connection)
9087 (Fns_font_name, Fns_perform_service)
9088 (Fns_convert_utf8_nfd_to_nfc, ns_do_applescript)
9089 (Fns_do_applescript, Fx_show_tip): Use SSDATA where appropriate.
9090 (ns_set_name): Remove unused variable view.
9091 (x_set_menu_bar_lines): Remove unused variable olines.
9092 (x_set_tool_bar_lines): Remove unused variable root_window.
9093 (Fns_list_colors): Put () around assignment in while statement.
9094 (Fns_perform_service): Remove unused variable len.
9095 (Fns_display_usable_bounds): Remove unused variable top.
9096 (syms_of_nsfns): Remove unused variable i.
9097
9098 * nsmenu.m (ns_update_menubar): Exchange place of argument 2 and 3 to
9099 memcpy (Bug#11907).
9100
9101 2012-07-13 Kalle Kankare <kalle.kankare@iki.fi> (tiny change)
9102
9103 * image.c (Fimagemagick_types): Initialize ex with GetExceptionInfo
9104 and free it with DestroyExceptionInfo (Bug#11558).
9105
9106 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
9107
9108 * s/ms-w32.h (FIRST_PTY_LETTER, HAVE_SOCKETS): Move to nt/config.nt.
9109 (HAVE_ATTRIBUTE_ALIGNED, HAVE_C99_STRTOLD, HAVE___BUILTIN_UNWIND_INIT):
9110 Set here, not in nt/config.nt.
9111
9112 2012-07-13 Eli Zaretskii <eliz@gnu.org>
9113
9114 * xdisp.c (move_it_in_display_line_to): On GUI terminals, allow
9115 cursor overflow into the last glyph on display line when the right
9116 fringe is off. (Bug#11832)
9117
9118 2012-07-13 Paul Eggert <eggert@cs.ucla.edu>
9119
9120 * xdisp.c (produce_special_glyphs): Now static.
9121 * dispextern.h (produce_special_glyphs): Remove decl.
9122
9123 2012-07-13 Glenn Morris <rgm@gnu.org>
9124
9125 * s/bsd-common.h, s/cygwin.h: Remove empty files.
9126 * s/freebsd.h, s/netbsd.h: Do not include bsd-common.h.
9127
9128 * s/usg5-4-common.h (USG, USG5):
9129 * s/template.h (USG5, USG, HPUX, BSD4_2, BSD_SYSTEM):
9130 * s/sol2-6.h (SOLARIS2):
9131 * s/irix6-5.h (IRIX6_5):
9132 * s/hpux10-20.h (USG, USG5, HPUX):
9133 * s/gnu-linux.h (USG, GNU_LINUX):
9134 * s/freebsd.h (BSD_SYSTEM):
9135 * s/darwin.h (BSD4_2, BSD_SYSTEM, DARWIN_OS):
9136 * s/cygwin.h (CYGWIN):
9137 * s/bsd-common.h (BSD_SYSTEM, BSD4_2):
9138 * s/aix4-2.h (USG, USG5, _AIX): Move "system type" macros to configure.
9139
9140 2012-07-13 BT Templeton <bpt@hcoop.net> (tiny change)
9141
9142 * nsfont.m (ns_charset_covers): Don't abort if no bitmap (Bug#11853).
9143
9144 2012-07-13 Glenn Morris <rgm@gnu.org>
9145
9146 * s/usg5-4-common.h (NSIG_MINIMUM): Let configure set it.
9147
9148 * s/gnu-linux.h, s/irix6-5.h: Let configure set ULIMIT_BREAK_VALUE.
9149
9150 * process.c (init_process_emacs): Replace MIN_PTY_KERNEL_VERSION.
9151 * s/darwin.h (MIN_PTY_KERNEL_VERSION): Remove single-use macro.
9152
9153 2012-07-12 Glenn Morris <rgm@gnu.org>
9154
9155 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Move to configure.
9156
9157 * process.c (init_process_emacs): Rename from init_process.
9158 The old name is also the name of a Mach system call.
9159 * lisp.h, emacs.c: Update for this name change.
9160 * nsgui.h, sysselect.h, s/darwin.h: Remove workaround that is no
9161 longer needed.
9162
9163 2012-07-12 Eli Zaretskii <eliz@gnu.org>
9164
9165 * xdisp.c (insert_left_trunc_glyphs): Fix incorrect size in
9166 memmove call that removes glyphs covered by the left truncation
9167 glyph. Improve commentary.
9168 (display_line): Fix display of continuation glyphs on GUI frames
9169 when the right fringe is turned off and variable-size fonts are
9170 used in the window. Move the code that appends a stretch glyph to
9171 produce_special_glyphs, so that it could be used for truncation
9172 and continuation glyphs alike.
9173 (produce_special_glyphs) [HAVE_WINDOW_SYSTEM]: Produce a stretch
9174 glyph of a suitably computed width, to align the special glyphs at
9175 the window margin. Code moved from display_line. (Bug#11832)
9176
9177 2012-07-12 Glenn Morris <rgm@gnu.org>
9178
9179 * s/aix4-2.h, s/hpux10-20.h: Let configure set NO_EDITRES.
9180
9181 * s/gnu-linux.h, s/hpux10-20.h:
9182 Do not unconditionally define HAVE_XRMSETDATABASE.
9183
9184 * s/gnu-linux.h (UNIX98_PTYS): Let configure set it.
9185
9186 2012-07-12 Paul Eggert <eggert@cs.ucla.edu>
9187
9188 Fix typos that broke OS X build.
9189 Reported by Randal L. Schwartz in
9190 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00225.html>.
9191 * nsterm.m (ns_timeout): Add missing local decl.
9192 (ns_get_color): snprintf -> sprintf, to fix typo.
9193
9194 2012-07-12 Glenn Morris <rgm@gnu.org>
9195
9196 * src/s/aix4-2.h, src/s/cygwin.h, src/s/darwin.h:
9197 * src/s/gnu-linux.h, src/s/hpux10-20.h, src/s/irix6-5.h:
9198 * src/s/sol2-6.h, src/s/unixware.h, src/s/usg5-4-common.h:
9199 Move PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF to configure.
9200
9201 * s/cygwin.h, s/darwin.h, s/gnu-linux.h, s/irix6-5.h:
9202 Move PTY_OPEN to configure.
9203
9204 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
9205 * s/gnu-linux.h, s/hpux10-20.h, s/irix6-5.h, s/template.h:
9206 * s/usg5-4-common.h: Move FIRST_PTY_LETTER, PTY_ITERATION to configure.
9207
9208 2012-07-12 Dmitry Antipov <dmantipov@yandex.ru>
9209
9210 Use empty_unibyte_string where applicable.
9211 * keyboard.c (parse_tool_bar_item): Use empty_unibyte_string.
9212 * lread.c (read1): Likewise.
9213 * xsettings.c (syms_of_xsettings): Likewise.
9214
9215 2012-07-12 Glenn Morris <rgm@gnu.org>
9216
9217 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC):
9218 * s/freebsd.h (BROKEN_PTY_READ_AFTER_EAGAIN):
9219 * s/irix6-5.h (SETPGRP_RELEASES_CTTY, PREFER_VSUSP):
9220 * s/hpux10-20.h (RUN_TIME_REMAP):
9221 * s/bsd-common.h (TABDLY): Move to configure.
9222
9223 * s/hpux10-20.h, s/sol2-6.h: Move XOS_NEEDS_TIME_H to configure.
9224
9225 * s/bsd-common.h, s/darwin.h: Move TAB3 to configure.
9226
9227 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
9228 (BROKEN_SIGPOLL, BROKEN_GET_CURRENT_DIR_NAME): Let configure set them.
9229
9230 * s/darwin.h (NO_ABORT, NO_MATHERR): Let configure set them.
9231
9232 * s/bsd-common.h, s/cygwin.h, s/gnu-linux.h, s/irix6-5.h:
9233 * s/template.h: Move NARROWPROTO to configure.
9234
9235 2012-07-11 Glenn Morris <rgm@gnu.org>
9236
9237 * s/gnu-linux.h, s/sol2-6.h: No longer define POSIX,
9238 unused since 2011-01-17 change to systty.h.
9239
9240 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h, s/gnu-linux.h:
9241 * s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
9242 Move HAVE_PTYS and HAVE_SOCKETS to configure.
9243
9244 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
9245
9246 * s/sol2-6.h (HAVE_LIBKSTAT): Remove. (Bug#11914)
9247
9248 2012-07-11 Glenn Morris <rgm@gnu.org>
9249
9250 * s/darwin.h, s/gnu-linux.h, s/template.h:
9251 Move INTERRUPT_INPUT to configure.
9252
9253 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
9254
9255 Minor adjustments to interning code.
9256 * lisp.h (intern, intern_c_string): Redefine as static inline
9257 wrappers for intern_1 and intern_c_string_1, respectively.
9258 (intern_1, intern_c_string_1): Rename prototypes.
9259 * lread.c (intern_1, intern_c_string_1, oblookup):
9260 Simplify Vobarray checking.
9261 * font.c (font_intern_prop): Likewise. Adjust comment.
9262 * w32font.c (intern_font_name): Likewise.
9263
9264 2012-07-11 Andreas Schwab <schwab@linux-m68k.org>
9265
9266 * gnutls.c (Fgnutls_boot): Properly parse :keylist argument.
9267
9268 * coding.c (Fdefine_coding_system_internal): Use XCAR/XCDR instead
9269 of Fcar/Fcdr if possible.
9270 * font.c (check_otf_features): Likewise.
9271 * fontset.c (Fnew_fontset): Likewise.
9272 * gnutls.c (Fgnutls_boot): Likewise.
9273 * minibuf.c (read_minibuf): Likewise.
9274 * msdos.c (IT_set_frame_parameters): Likewise.
9275 * xmenu.c (Fx_popup_dialog): Likewise.
9276 * w32menu.c (Fx_popup_dialog): Likewise.
9277
9278 2012-07-11 Glenn Morris <rgm@gnu.org>
9279
9280 * s/bsd-common.h, s/cygwin.h: No need to undefine INTERRUPT_INPUT,
9281 since nothing has defined it on these platforms.
9282
9283 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/gnu-linux.h:
9284 * s/irix6-5.h: Move SIGNALS_VIA_CHARACTERS to configure.
9285
9286 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
9287 * s/gnu-linux.h, s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
9288 Move CLASH_DETECTION to configure.
9289
9290 * s/gnu.h: Remove file, which is now empty.
9291
9292 * s/gnu.h, s/gnu-linux.h:
9293 Move GNU_LIBRARY_PENDING_OUTPUT_COUNT to configure.
9294
9295 2012-07-11 John Wiegley <johnw@newartisans.com>
9296
9297 * alloc.c (mark_memory): Guard the "no_address_safety_analysis"
9298 function attribute, so we only use it if it exists in the
9299 compiler.
9300
9301 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
9302
9303 Avoid call to strlen in fast_c_string_match_ignore_case.
9304 * search.c (fast_c_string_match_ignore_case): Change to use
9305 length argument. Adjust users accordingly.
9306 * lisp.h (fast_c_string_match_ignore_case): Adjust prototype.
9307
9308 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
9309
9310 Assume mkdir, rmdir.
9311 * sysdep.c (mkdir) [!HAVE_MKDIR]: Remove.
9312 * sysdep.c (rmdir) [!HAVE_RMDIR]: Remove.
9313
9314 Assume rename.
9315 * sysdep.c (rename) [!HAVE_RENAME]: Remove.
9316
9317 Assume perror.
9318 * s/hpux10-20.h (HAVE_PERROR): Remove.
9319 * sysdep.c (perror) [HPUX && !HAVE_PERROR]:
9320 Remove dummy definition, as this problem was obsolete long ago.
9321
9322 Assume strerror.
9323 * sysdep.c (strerror) [!HAVE_STRERROR && !WINDOWSNT]: Remove.
9324
9325 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
9326
9327 Avoid calls to strlen in font processing functions.
9328 * font.c (font_parse_name, font_parse_xlfd, font_parse_fcname)
9329 (font_open_by_name): Change to use length argument.
9330 Adjust users accordingly.
9331 * font.h (font_open_by_name, font_parse_xlfd, font_unparse_xlfd):
9332 Adjust prototypes.
9333 * xfont.c (xfont_decode_coding_xlfd, font_unparse_xlfd):
9334 Change to return ptrdiff_t.
9335 (xfont_list_pattern, xfont_match): Use length returned by
9336 xfont_decode_coding_xlfd.
9337 * xfns.c (x_default_font_parameter): Omit useless xstrdup.
9338
9339 2012-07-11 Glenn Morris <rgm@gnu.org>
9340
9341 * s/darwin.h, s/freebsd.h, s/netbsd.h:
9342 Move DONT_REOPEN_PTY to configure.
9343
9344 * sound.c (DEFAULT_SOUND_DEVICE) [!WINDOWSNT]:
9345 * s/netbsd.h (DEFAULT_SOUND_DEVICE): Let configure set it.
9346
9347 2012-07-10 Paul Eggert <eggert@cs.ucla.edu>
9348
9349 Remove "#define unix" that is no longer needed (Bug#11905).
9350 * s/aix4-2.h (unix): Remove; no longer needed.
9351
9352 EMACS_TIME simplification (Bug#11875).
9353 This replaces macros (which typically do not work in GDB)
9354 with functions, typedefs and enums, making the code easier to debug.
9355 The functional style also makes code easier to read and maintain.
9356 * systime.h: Include <sys/time.h> on all hosts, not just if
9357 WINDOWSNT, since 'struct timeval' is needed in general.
9358 (EMACS_TIME): Now a typedef, not a macro.
9359 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): Now constants,
9360 not macros.
9361 (EMACS_SECS, EMACS_NSECS, EMACS_TIME_SIGN, EMACS_TIME_VALID_P)
9362 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE, EMACS_TIME_EQ)
9363 (EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE, EMACS_TIME_LT)
9364 (EMACS_TIME_LE): Now functions, not macros.
9365 (EMACS_SET_SECS, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS)
9366 (EMACS_SET_USECS, EMACS_SET_SECS_USECS): Remove these macros,
9367 which are not functions. All uses rewritten to use:
9368 (make_emacs_time): New function.
9369 (EMACS_SECS_ADDR, EMACS_SET_INVALID_TIME, EMACS_GET_TIME)
9370 (EMACS_ADD_TIME, EMACS_SUB_TIME): Remove these macros, which are
9371 not functions. All uses rewritten to use the following, respectively:
9372 (emacs_secs_addr, invalid_emacs_time, get_emacs_time)
9373 (add_emacs_time, sub_emacs_time): New functions.
9374 * atimer.c: Don't include <sys/time.h>, as "systime.h" does this.
9375 * fileio.c (Fcopy_file):
9376 * xterm.c (XTflash): Get the current time closer to when it's used.
9377 * makefile.w32-in ($(BLD)/atimer.$(O)): Update dependencies.
9378
9379 * bytecode.c (targets): Suppress -Woverride-init warnings.
9380
9381 Simplify by avoiding confusing use of strncpy etc.
9382 * doc.c (Fsnarf_documentation):
9383 * fileio.c (Ffile_name_directory, Fsubstitute_in_file_name):
9384 * frame.c (Fmake_terminal_frame):
9385 * gtkutil.c (get_utf8_string):
9386 * lread.c (openp):
9387 * nsmenu.m (ns_update_menubar):
9388 * regex.c (regerror):
9389 Prefer memcpy to strncpy and strncat when either will do.
9390 * fileio.c (Fsubstitute_in_file_name):
9391 * keyboard.c (MULTI_LETTER_MOD, parse_modifiers_uncached)
9392 (menu_separator_name_p):
9393 * nsmenu.m (ns_update_menubar):
9394 Prefer memcmp to strncmp when either will do.
9395 * nsterm.m: Include <ftoastr.h>.
9396 (ns_get_color):
9397 * s/gnu-linux.h, s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF):
9398 Prefer snprintf to strncpy.
9399 * nsterm.m (ns_term_init):
9400 * widget.c (set_frame_size) [0]: Prefer xstrdup to xmalloc + strncpy.
9401 * nsterm.m (ns_term_init):
9402 Avoid the need for strncpy, by using build_string or
9403 make_unibyte_string directly. Use dtoastr, not snprintf.
9404 * process.c (Fmake_network_process): Diagnose service names that
9405 are too long, rather than silently truncating them or creating
9406 non-null-terminated names.
9407 (Fnetwork_interface_info): Likewise, for interface names.
9408 * sysdep.c (system_process_attributes) [GNU_LINUX]:
9409 Prefer sprintf to strncat.
9410 * xdisp.c (debug_method_add) [GLYPH_DEBUG]:
9411 Prefer vsnprintf to vsprintf + strncpy.
9412
9413 2012-07-10 Glenn Morris <rgm@gnu.org>
9414
9415 * dispnew.c (PENDING_OUTPUT_COUNT) [!__GNU_LIBRARY__]:
9416 Clarify fallback case.
9417
9418 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
9419
9420 Use XCAR and XCDR instead of Fcar and Fcdr where possible.
9421 * callint.c, coding.c, doc.c, editfns.c, eval.c, font.c, fontset.c,
9422 * frame.c, gnutls.c, minibuf.c, msdos.c, textprop.c, w32fns.c,
9423 * w32menu.c, window.c, xmenu.c: Change to use XCAR and XCDR
9424 where argument type is known to be a Lisp_Cons.
9425
9426 2012-07-10 Tom Tromey <tromey@redhat.com>
9427
9428 * bytecode.c (BYTE_CODE_THREADED): New macro.
9429 (BYTE_CODES): New macro. Replaces all old byte-code defines.
9430 (enum byte_code_op): New type.
9431 (CASE, NEXT, FIRST, CASE_DEFAULT, CASE_ABORT): New macros.
9432 (exec_byte_code): Use them. Use token threading when applicable.
9433
9434 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
9435
9436 Optimize pure C strings initialization.
9437 * lisp.h (make_pure_string): Fix prototype.
9438 (build_pure_c_string): New function, defined as static inline. This
9439 provides a better opportunity to optimize away calls to strlen when
9440 the function is called with compile-time constant argument.
9441 * alloc.c (make_pure_c_string): Fix comment. Change to add nchars
9442 argument, adjust users accordingly. Use build_pure_c_string where
9443 appropriate.
9444 * buffer.c, coding.c, data.c, dbusbind.c, fileio.c, fontset.c, frame.c,
9445 * keyboard.c, keymap.c, lread.c, search.c, syntax.c, w32fns.c, xdisp.c,
9446 * xfaces.c, xfns.c, xterm.c: Use build_pure_c_string where appropriate.
9447
9448 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
9449
9450 Avoid calls to strlen in miscellaneous functions.
9451 * buffer.c (init_buffer): Use precalculated len, adjust if needed.
9452 * font.c (Ffont_xlfd_name): Likewise. Change to call make_string.
9453 * lread.c (openp): Likewise.
9454
9455 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
9456
9457 Avoid calls to strlen in path processing functions.
9458 * fileio.c (file_name_as_directory): Add comment. Change to add
9459 srclen argument and return the length of result. Adjust users
9460 accordingly.
9461 (directory_file_name): Fix comment. Change to add srclen argument,
9462 swap 1st and 2nd arguments to obey the common convention.
9463 Adjust users accordingly.
9464 * filelock.c (fill_in_lock_file_name): Avoid calls to strlen.
9465
9466 2012-07-10 Glenn Morris <rgm@gnu.org>
9467
9468 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/netbsd.h, s/unixware.h:
9469 Move PENDING_OUTPUT_COUNT definition to configure.
9470
9471 * s/irix6-5.h (DATA_START, DATA_SEG_BITS):
9472 * s/hpux10-20.h (DATA_SEG_BITS, DATA_START):
9473 * s/gnu.h (DATA_START): Move definitions to configure.
9474
9475 * s/irix6-5.h (SETUP_SLAVE_PTY, PTY_NAME_SPRINTF): Drop ifdef guards.
9476 We include usg5-4-common.h, which defines them both.
9477
9478 * s/gnu.h: Don't include fcntl.h (every file in Emacs that uses
9479 O_RDONLY already includes it).
9480
9481 Stop ns builds setting the EMACSLOADPATH environment variable.
9482 * nsterm.m (ns_load_path): Rename from ns_init_paths.
9483 Now it does not set EMACSLOADPATH, just returns the load-path string.
9484 * nsterm.h: Update accordingly.
9485 * lread.c [HAVE_NS]: Include nsterm.h.
9486 (init_lread) [HAVE_NS]: Use ns_load_path.
9487 * emacs.c (main) [HAVE_NS]: No longer call ns_init_paths.
9488
9489 2012-07-09 Glenn Morris <rgm@gnu.org>
9490
9491 * s/gnu.h (SIGNALS_VIA_CHARACTERS): No need to define it here,
9492 since the included bsd-common.h does so.
9493
9494 Stop ns builds setting the EMACSPATH environment variable.
9495 * nsterm.m (ns_exec_path): New function, split from ns_init_paths.
9496 (ns_init_paths): Do not set EMACSPATH.
9497 * nsterm.h (ns_exec_path): Add it.
9498 * callproc.c (init_callproc_1, init_callproc) [HAVE_NS]:
9499 Use ns_exec_path.
9500
9501 * nsterm.m, nsterm.h (ns_etc_directory): Fix type, empty return.
9502
9503 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
9504
9505 * process.c (wait_reading_process_output): 'waitchannels' was unset
9506 when read_kbd || !NILP (wait_for_cell); fix this.
9507
9508 Add GCC-style 'const' attribute to functions that can use it.
9509 * character.h (char_resolve_modifier_mask):
9510 * keyboard.h (make_ctrl_char):
9511 * lisp.h (multibyte_char_to_unibyte, multibyte_char_to_unibyte_safe)
9512 (init_character_once, next_almost_prime, init_fns, init_image)
9513 (flush_pending_output, init_sound):
9514 * mem-limits.h (start_of_data):
9515 * menu.h (finish_menu_items):
9516 Add ATTRIBUTE_CONST.
9517 * emacs.c (DEFINE_DUMMY_FUNCTION):
9518 Declare the dummy function with ATTRIBUTE_CONST.
9519 * lisp.h (Fbyteorder, Fmax_char, Fidentity):
9520 Add decls with ATTRIBUTE_CONST.
9521
9522 Minor improvements to make_formatted_string.
9523 * alloc.c (make_formatted_string): Prefer int to ptrdiff_t
9524 where int is good enough, as vsprintf returns an int.
9525 * lisp.h (make_formatted_string): Add ATTRIBUTE_FORMAT_PRINTF.
9526
9527 2012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
9528
9529 Use make_formatted_string to avoid double length calculation.
9530 * lisp.h (make_formatted_string): New prototype.
9531 * alloc.c (make_formatted_string): New function.
9532 * buffer.c (Fgenerate_new_buffer_name): Use it.
9533 * dbusbind.c (syms_of_dbusbind): Likewise.
9534 * editfns.c (Fcurrent_time_zone): Likewise.
9535 * filelock.c (get_boot_time): Likewise.
9536 * frame.c (make_terminal_frame, set_term_frame_name)
9537 (x_report_frame_params): Likewise.
9538 * image.c (gs_load): Likewise.
9539 * minibuf.c (get_minibuffer): Likewise.
9540 * msdos.c (dos_set_window_size): Likewise.
9541 * process.c (make_process): Likewise.
9542 * xdisp.c (ensure_echo_area_buffers): Likewise.
9543 * xsettings.c (apply_xft_settings): Likewise.
9544
9545 2012-07-09 Glenn Morris <rgm@gnu.org>
9546
9547 Stop ns builds polluting the environment with EMACSDATA, EMACSDOC.
9548 * nsterm.m (ns_etc_directory): New function, split from ns_init_paths.
9549 (ns_init_paths): Do not set EMACSDATA, EMACSDOC.
9550 * nsterm.h (ns_etc_directory): Add it.
9551 * callproc.c [HAVE_NS]: Include nsterm.h.
9552 (init_callproc_1, init_callproc) [HAVE_NS]: Use ns_etc_directory.
9553
9554 2012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
9555
9556 Move marker debugging code under MARKER_DEBUG.
9557 * marker.c (MARKER_DEBUG): Move marker debugging code under
9558 #ifdef MARKER_DEBUG because byte_char_debug_check is too slow
9559 for bootstrap with --enable-checking (~3x slowdown reported
9560 by Juanma Barranquero <lekktu@gmail.com>).
9561 (verify_bytepos): Move under #ifdef MARKER_DEBUG.
9562
9563 2012-07-08 Paul Eggert <eggert@cs.ucla.edu>
9564
9565 * systime.h (EMACS_SUB_TIME): Clarify behavior with unsigned time_t.
9566 See <http://bugs.gnu.org/11825#29>.
9567
9568 2012-07-08 Eli Zaretskii <eliz@gnu.org>
9569
9570 * xdisp.c (fill_glyphless_glyph_string): If the face of the glyph
9571 has no font, use the frame's font. (Bug#11813)
9572 (display_line): Add commentary about displaying truncation glyphs
9573 on GUI frames.
9574 (produce_special_glyphs): Move here from term.c.
9575
9576 * term.c (produce_special_glyphs): Move to xdisp.c.
9577
9578 * dispextern.h (produce_special_glyphs): Move prototype to xdisp.c
9579 section.
9580
9581 2012-07-07 Andreas Schwab <schwab@linux-m68k.org>
9582
9583 * xdisp.c (display_line): Avoid warning about implicit declaration
9584 of FRAME_FONT.
9585
9586 * frame.c (get_frame_param): Define only if HAVE_WINDOW_SYSTEM.
9587
9588 * lisp.h: Remove empty conditional.
9589
9590 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
9591
9592 * lread.c (load_path_check): Now static.
9593
9594 Fix some minor --with-ns problems found by static checking.
9595 * frame.c (Ftool_bar_pixel_width) [!FRAME_TOOLBAR_WIDTH]:
9596 (x_set_font) [!HAVE_X_WINDOWS]:
9597 * image.c (xpm_load_image) [HAVE_NS]:
9598 (x_to_xcolors) [!HAVE_X_WINDOWS && !HAVE_NTGUI]:
9599 (x_disable_image) [!HAVE_NS && !HAVE_NTGUI]:
9600 Remove unused local.
9601 (Fx_parse_geometry) [HAVE_NS]: Don't return garbage.
9602 (xpm_load_image) [HAVE_NS && !HAVE_XPM]: Remove unused label.
9603 * image.c (x_create_bitmap_from_file) [HAVE_NS]:
9604 (xpm_load_image, xpm_load) [HAVE_NS && !HAVE_XPM]:
9605 * nsselect.m (symbol_to_nsstring, ns_string_to_pasteboard_internal):
9606 * xfaces.c (Fx_load_color_file) [!HAVE_X_WINDOWS]:
9607 Fix pointer signedness problem.
9608 * xfaces.c (FRAME_X_FONT_TABLE):
9609 * xterm.h (FRAME_X_FONT_TABLE): Remove unused, incompatible macros.
9610
9611 2012-07-07 Glenn Morris <rgm@gnu.org>
9612
9613 * lread.c (load_path_check): New function, split from init_lread.
9614 (init_lread): Reorganize. Motivation:
9615 If EMACSLOADPATH is set, check/warn about that rather than the
9616 defaults, which we are not going to use. Hence we can remove
9617 the turn_off_warning and WINDOWSNT || HAVE_NS tests.
9618 Don't warn if site-lisp directories are missing.
9619 If not installed, start from a blank load-path, since
9620 PATH_LOADSEARCH refers to the eventual installation directories.
9621
9622 2012-07-07 Eli Zaretskii <eliz@gnu.org>
9623
9624 Support truncation and continuation glyphs on GUI frames, when
9625 fringes are disabled. (Bug#11832)
9626 * xdisp.c (init_iterator): Get dimensions of truncation and
9627 continuation glyphs even if on GUI frames.
9628 Adjust it->last_visible_x on GUI frames when the left or right fringes,
9629 or both, are absent.
9630 (start_display, move_it_in_display_line_to): Handle the case of a
9631 GUI frame without a fringe to display continuation or truncation
9632 glyphs.
9633 (insert_left_trunc_glyphs): Support GUI frames: make sure
9634 truncation glyphs overwrite enough glyphs from the current line to
9635 have sufficient space in pixels.
9636 (display_line): Support truncation and continuation glyphs on GUI
9637 frames. If some spare pixels are left on the line after inserting
9638 the truncation glyphs, fill that space with a stretch glyph of a
9639 suitably computed width.
9640
9641 * term.c (produce_special_glyphs): Call PRODUCE_GLYPHS, not
9642 produce_glyphs, to support GUI sessions.
9643
9644 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
9645
9646 * sysdep.c (ULLONG_MAX): Define if not already defined (Bug#11781).
9647
9648 * sysdep.c (list_system_processes): Port to NetBSD-current (Bug#11797).
9649
9650 Do not require float-time's arg to fit in time_t (Bug#11825).
9651 This works better on hosts where time_t is unsigned, and where
9652 float-time is applied to the (negative) difference between two times.
9653 * editfns.c (decode_time_components): Last arg is now double *,
9654 not int *, and means to store all the result as a double, without
9655 worrying about whether the seconds part fits in time_t.
9656 All callers changed.
9657 (lisp_time_argument): Remove last int * arg, as it's no longer needed.
9658 All callers changed.
9659 (Ffloat_time): Do not fail merely because the specified time falls
9660 outside of time_t range.
9661
9662 2012-07-07 Glenn Morris <rgm@gnu.org>
9663
9664 * s/darwin.h (HAVE_RES_INIT, HAVE_LIBRESOLV):
9665 * s/hpux10-20.h (HAVE_RINT, HAVE_RANDOM):
9666 * s/unixware.h (HAVE_GETWD): Move undefs to configure (effectively).
9667
9668 2012-07-07 Juanma Barranquero <lekktu@gmail.com>
9669
9670 * makefile.w32-in (DISPEXTERN_H, $(BLD)/regex.$(O)):
9671 Update dependencies.
9672
9673 * s/ms-w32.h [_MSC_VER]: Remove strcasecmp, strncasecmp.
9674
9675 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
9676
9677 Use c_strcasecmp for ASCII case-insensitive comparison (Bug#11786).
9678 * dispextern.h, nsfns.m, nsterm.m: Include <c-strcase.h>.
9679 * dispextern.h (xstrcasecmp): Rewrite using c_strcasecmp.
9680 * nsfns.m (x_get_string_resource): Use c_strncasecmp, not strncasecmp.
9681 * nsterm.m (ns_default): Use c_strcasecmp, not strcasecmp.
9682 * xfaces.c (xstrcasecmp) [!HAVE_STRCASECMP]: Remove.
9683
9684 * xfont.c (compare_font_names): Redo to omit the need for casts.
9685
9686 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
9687
9688 * xfns.c (Fx_change_window_property): Doc fix.
9689 * w32fns.c (Fx_change_window_property): Doc fix.
9690
9691 * w32fns.c (Fx_window_property): Accept the same arguments as the
9692 X Windows version. Doc fix.
9693 * xfns.c (Fx_window_property): Doc fix. (Bug#11870)
9694
9695 2012-07-06 Juanma Barranquero <lekktu@gmail.com>
9696 Eli Zaretskii <eliz@gnu.org>
9697
9698 * s/ms-w32.h: Settings not specific to Windows moved to nt/config.nt.
9699 Windows-specific code from nt/config.nt moved here.
9700 Obsolete settings removed.
9701
9702 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
9703
9704 * process.c: Avoid unnecessary calls to gettime.
9705 (wait_reading_process_output): Don't get the time of day
9706 when gobbling data immediately and not waiting, as there's no need
9707 for it in that case. This removes a FIXME.
9708
9709 2012-07-06 Jan Djärv <jan.h.d@swipnet.se>
9710
9711 * gtkutil.c (xg_event_is_for_scrollbar): Assign gwin when HAVE_GTK3
9712 is defined (Bug#11768).
9713
9714 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
9715
9716 Fix marker debugging code.
9717 * marker.c (byte_char_debug_check): Do not perform the check
9718 if buffer is not multibyte.
9719 (buf_charpos_to_bytepos, buf_bytepos_to_charpos):
9720 Call byte_char_debug_check with correct arguments.
9721
9722 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
9723
9724 Compile marker debugging code only if ENABLE_CHECKING is defined.
9725 * marker.c (byte_char_debug_check, count_markers):
9726 Use only if ENABLE_CHECKING is defined.
9727 (byte_debug_flag): Remove.
9728 (CONSIDER, buf_charpos_to_bytepos, buf_bytepos_to_charpos):
9729 Always call byte_char_debug_check if ENABLE_CHECKING is defined.
9730
9731 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
9732
9733 Avoid code repetition in marker-related functions.
9734 * marker.c (attach_marker): New function.
9735 (Fset_marker, set_marker_restricted, set_marker_both)
9736 (set_marker_restricted_both): Use it.
9737 (Fset_marker, set_marker_restricted, Fbuffer_has_markers_at):
9738 Consistently rename charno to charpos.
9739 (marker_position): Add eassert.
9740 (marker_byte_position): Convert to eassert.
9741
9742 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
9743
9744 Simplify list operations in unchain_overlay and unchain_marker.
9745 * buffer.c (unchain_overlay): Simplify. Add comment.
9746 * marker.c (unchain_marker): Simplify. Fix comments.
9747
9748 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
9749
9750 Introduce fast path for the widely used marker operation.
9751 * alloc.c (build_marker): New function.
9752 * lisp.h (build_marker): New prototype.
9753 * buffer.c (clone_per_buffer_values, Fmake_indirect_buffer): Use it.
9754 * composite.c (autocmp_chars): Likewise.
9755 * editfns.c (buildmark): Remove.
9756 (Fpoint_marker, Fpoint_min_marker, Fpoint_max_marker)
9757 (save_restriction_save): Use build_marker.
9758 * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos): Likewise.
9759 * window.c (save_window_save): Likewise.
9760
9761 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
9762
9763 Do not use Fdelete_overlay in delete_all_overlays
9764 to avoid redundant calls to unchain_overlay.
9765 * buffer.c (drop_overlay): New function.
9766 (delete_all_overlays, Fdelete_overlay): Use it.
9767 * minibuf.c (get_minibuffer): Fix comment.
9768
9769 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
9770
9771 Port to OpenBSD 5.1 amd64.
9772 * sysdep.c [BSD_SYSTEM]: Include <sys/param.h> before <sys/sysctl.h>.
9773 This is needed for OpenBSD, and should be harmless on all BSD systems.
9774 Also, include <sys/sysctl.h>, as it should be available on all
9775 BSD_SYSTEM hosts given that we're already calling sysctl in that case.
9776 (list_system_processes) [__OpenBSD__]: Use DARWIN_OS style mib, but
9777 use p_pid member, not kp_proc.pid.
9778
9779 2012-07-06 Glenn Morris <rgm@gnu.org>
9780
9781 * Makefile.in (emacs$(EXEEXT)): Don't check for load-path shadows.
9782
9783 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
9784
9785 More xmalloc and related cleanup.
9786 * alloc.c, bidi.c, buffer.c, buffer.h, bytecode.c, callint.c:
9787 * callproc.c, charset.c, coding.c, composite.c, data.c, dispnew.c:
9788 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, fns.c:
9789 * font.c, fontset.c, frame.c, fringe.c, ftfont.c, ftxfont.c, gmalloc.c:
9790 * gtkutil.c, image.c, keyboard.c, keymap.c, lread.c, macros.c, menu.c:
9791 * nsfns.m, nsfont.m, nsmenu.m, nsterm.m, print.c, process.c, ralloc.c:
9792 * regex.c, region-cache.c, scroll.c, search.c, sound.c, syntax.c:
9793 * sysdep.c, term.c, termcap.c, unexmacosx.c, window.c, xdisp.c:
9794 * xfaces.c, xfns.c, xftfont.c, xgselect.c, xmenu.c, xrdb.c, xselect.c:
9795 * xterm.c:
9796 Omit needless casts involving void * pointers and allocation.
9797 Prefer "P = xmalloc (sizeof *P)" to "P = xmalloc (sizeof (TYPE_OF_P))",
9798 as the former is more robust if P's type is changed.
9799 Prefer xzalloc to xmalloc + memset 0.
9800 Simplify malloc-or-realloc to realloc.
9801 Don't worry about xmalloc returning a null pointer.
9802 Prefer xstrdup to xmalloc + strcpy.
9803 * editfns.c (Fmessage_box): Grow message_text by at least 80 when
9804 growing it.
9805 * keyboard.c (apply_modifiers_uncached): Prefer local array to
9806 alloca of a constant.
9807
9808 2012-07-05 Eli Zaretskii <eliz@gnu.org>
9809
9810 * xdisp.c (display_line): Fix horizontal pixel coordinates when
9811 hscroll is larger than the line width. Fixes long and futile
9812 looping inside extend_face_to_end_of_line (on a TTY) producing
9813 glyphs that are not needed and thrown away.
9814
9815 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
9816
9817 * marker.c (set_marker_restricted_both): Simplify by using
9818 clip_to_bounds.
9819
9820 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
9821
9822 * editfns.c (region_limit): Simplify by using clip_to_bounds.
9823
9824 2012-07-05 Jan Djärv <jan.h.d@swipnet.se>
9825
9826 * gtkutil.c (gtk_scrollbar_new, gtk_box_new): Define when HAVE_GTK3 is
9827 not defined (Bug#11768).
9828 (xg_create_frame_widgets): Use gtk_plug_new_for_display (Bug#11768).
9829 (xg_create_frame_widgets, create_dialog, xg_get_file_with_chooser)
9830 (make_widget_for_menu_item, xg_make_tool_item): Use gtk_box_new
9831 followed by gtk_box_set_homogeneous (Bug#11768).
9832 (xg_update_menu_item): Use GTK_IS_BOX (Bug#11768).
9833 (update_theme_scrollbar_width, xg_create_scroll_bar):
9834 Use gtk_scrollbar_new (Bug#11768).
9835 (xg_event_is_for_scrollbar): Use Gdk Device functions for HAVE_GTK3.
9836 (is_box_type): New function (Bug#11768).
9837 (xg_tool_item_stale_p): Call is_box_type.
9838 (xg_initialize): Get settings by calling gtk_settings_get_for_screen
9839 with default display (Bug#11768).
9840
9841 2012-07-05 Eli Zaretskii <eliz@gnu.org>
9842
9843 * xdisp.c (window_hscroll_limited): New function.
9844 (pos_visible_p, init_iterator): Use it to avoid overflow of pixel
9845 coordinates when window's hscroll is set to insanely large
9846 values. (Bug#11857)
9847
9848 2012-07-05 Juanma Barranquero <lekktu@gmail.com>
9849
9850 * makefile.w32-in ($(BLD)/dired.$(O), $(BLD)/fileio.$(O)): Fix typo.
9851 ($(BLD)/terminal.$(O), $(BLD)/syntax.$(O)): Update dependencies.
9852
9853 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
9854
9855 Cleanup xmalloc.
9856 * lisp.h (xzalloc): New prototype. Omit needless casts.
9857 * alloc.c (xzalloc): New function. Omit needless casts.
9858 * charset.c: Omit needless casts. Convert all calls to
9859 xmalloc with following memset to xzalloc.
9860 * dispnew.c: Likewise.
9861 * fringe.c: Likewise.
9862 * image.c: Likewise.
9863 * sound.c: Likewise.
9864 * term.c: Likewise.
9865 * w32fns.c: Likewise.
9866 * w32font.c: Likewise.
9867 * w32term.c: Likewise.
9868 * xfaces.c: Likewise.
9869 * xfns.c: Likewise.
9870 * xterm.c: Likewise.
9871 * atimer.c: Omit needless casts.
9872 * buffer.c: Likewise.
9873 * callproc.c: Likewise.
9874 * ccl.c: Likewise.
9875 * coding.c: Likewise.
9876 * composite.c: Likewise.
9877 * doc.c: Likewise.
9878 * doprnt.c: Likewise.
9879 * editfns.c: Likewise.
9880 * emacs.c: Likewise.
9881 * eval.c: Likewise.
9882 * filelock.c: Likewise.
9883 * fns.c: Likewise.
9884 * gtkutil.c: Likewise.
9885 * keyboard.c: Likewise.
9886 * lisp.h: Likewise.
9887 * lread.c: Likewise.
9888 * minibuf.c: Likewise.
9889 * msdos.c: Likewise.
9890 * print.c: Likewise.
9891 * process.c: Likewise.
9892 * region-cache.c: Likewise.
9893 * search.c: Likewise.
9894 * sysdep.c: Likewise.
9895 * termcap.c: Likewise.
9896 * terminal.c: Likewise.
9897 * tparam.c: Likewise.
9898 * w16select.c: Likewise.
9899 * w32.c: Likewise.
9900 * w32reg.c: Likewise.
9901 * w32select.c: Likewise.
9902 * w32uniscribe.c: Likewise.
9903 * widget.c: Likewise.
9904 * xdisp.c: Likewise.
9905 * xmenu.c: Likewise.
9906 * xrdb.c: Likewise.
9907 * xselect.c: Likewise.
9908
9909 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
9910
9911 * fileio.c (time_error_value): Check the right error number.
9912 Problem reported by Troels Nielsen in
9913 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00095.html>.
9914
9915 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
9916
9917 * window.c (set_window_hscroll): Revert the 100000 hscroll limit.
9918 This should be fixed in a better way; see Eli Zaretskii in
9919 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00088.html>.
9920 (HSCROLL_MAX): Remove; this is now internal to set_window_hscroll.
9921
9922 * fileio.c (time_error_value): Rename from special_mtime.
9923 The old name's problems were noted by Eli Zaretskii in
9924 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00087.html>.
9925
9926 * emacs.c (gdb_pvec_type): Change it back to enum pvec_type.
9927 This variable's comment says Emacs needs at least one GDB-visible
9928 symbol of type enum pvec_type, to work around GDB problems.
9929 The symbol's value doesn't matter.
9930
9931 * alloc.c (PSEUDOVECTOR_NBYTES): Remove stray ';'
9932 that causes compilation to fail on pre-C99 compilers.
9933
9934 2012-07-04 Juanma Barranquero <lekktu@gmail.com>
9935
9936 * s/ms-w32.h (LISP_FLOAT_TYPE, HAVE_MEMCMP, HAVE_MEMCPY)
9937 (HAVE_MEMMOVE, HAVE_MEMSET): Don't set, obsolete.
9938
9939 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
9940
9941 * buffer.c (init_buffer_once): Fix initialization of
9942 headers for buffer_defaults and buffer_local_symbols.
9943 Reported by Juanma Barranquero <lekktu@gmail.com>.
9944
9945 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
9946
9947 Turn VECTOR_FREE_LIST_FLAG into PVEC_FREE.
9948 * lisp.h (enum pvec_type): Use fewer bits.
9949 (PSEUDOVECTOR_SIZE_BITS): New constant.
9950 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK): Use it.
9951 (XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR, DEFUN): Adapt code to
9952 change in pvec_type.
9953 (PSEUDOVECTOR_TYPEP): New macro.
9954 (TYPED_PSEUDOVECTORP): Use it.
9955 * fns.c (internal_equal): Adapt code to extract pvectype.
9956 * emacs.c (gdb_pvec_type): Update type.
9957 * alloc.c (PSEUDOVECTOR_NBYTES): New macro.
9958 (VECTOR_FREE_LIST_SIZE_MASK): Remove (=> PSEUDOVECTOR_SIZE_MASK).
9959 (VECTOR_FREE_LIST_FLAG): Remove (=> PVEC_FREE).
9960 (SETUP_ON_FREE_LIST): Use XSETPVECTYPESIZE.
9961 (sweep_vectors): Use it. Use local var `total_bytes' instead of
9962 abusing vector->header.next.nbytes.
9963 (live_vector_p): Use PVEC_TYPE.
9964 (mark_object): Adapt code to extract pvectype. Use switch.
9965
9966 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
9967
9968 * doprnt.c (doprnt): Don't assume string length fits in 'int'.
9969 Tighten new eassert a bit.
9970
9971 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
9972
9973 Fix compilation with --enable-gcc-warnings and -O1
9974 optimization level.
9975 * doprnt.c (doprnt): Change type of tem to int, initialize
9976 to avoid compiler warning. Add eassert.
9977 * search.c (simple_search): Initialize match_byte to avoid
9978 compiler warning. Add eassert.
9979
9980 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
9981
9982 Avoid weird behavior with large horizontal scrolls.
9983 Without this change, for example, large hscroll values would
9984 mess up Emacs's display on Fedora 15 x86, presumably due to
9985 overflows in int calculations in the display code.
9986 Also, if buffers had long lines, Emacs would freeze.
9987 * window.c (HSCROLL_MAX): Reduce to 100000, and make it visible to GDB.
9988 (set_window_hscroll): New function, containing the old guts of
9989 Fset_window_hscroll. Return the clipped value.
9990 (Fset_window_hscroll, Fscroll_left, Fscroll_right): Use it.
9991 This avoids the need to check against PTRDIFF_MAX.
9992
9993 * buffer.c (Fgenerate_new_buffer_name): Fix sprintf format mismatch.
9994
9995 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
9996
9997 * buffer.c (Fgenerate_new_buffer_name): Fix type mismatch.
9998
9999 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
10000
10001 * regex.c: Suppress GCC warning on RHEL 6. (Bug#11207)
10002 Conditionalize the pragmas on GCC 4.5 or later, not GCC 4.3 or later,
10003 since GCC 4.4.6 issues a bogus warning for them.
10004
10005 Fix bugs in file timestamp newness comparisons.
10006 * fileio.c (Ffile_newer_than_file_p):
10007 * lread.c (Fload): Use full timestamp resolution of files,
10008 not just the 1-second resolution, so that files that are only
10009 slightly newer still count as newer.
10010 * fileio.c (Ffile_newer_than_file_p): Don't assume file
10011 timestamps fit in 'int'; this fixes a Y2038 bug on most hosts.
10012
10013 2012-07-03 Paul Eggert <eggert@cs.ucla.edu>
10014
10015 * fileio.c: Improve handling of file time marker. (Bug#11852)
10016 (special_mtime): New function.
10017 (Finsert_file_contents, Fverify_visited_file_modtime):
10018 Use it to set special mtime values consistently.
10019
10020 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
10021
10022 * fileio.c (Finsert_file_contents): Properly handle st_mtime
10023 marker for non-existing file. (Bug#11852)
10024
10025 2012-07-03 Glenn Morris <rgm@gnu.org>
10026
10027 * lisp.h (Fread_file_name): Restore EXFUN (it's not a normal DEFUN
10028 and did not make it into globals.h).
10029
10030 2012-07-03 Tom Tromey <tromey@redhat.com>
10031
10032 * window.c (Fset_window_margins, Fset_window_fringes)
10033 (Fset_window_scroll_bars, Fset_window_vscroll): No longer static.
10034 * textprop.c (Fprevious_property_change): No longer static.
10035 * syntax.c (Fsyntax_table_p): No longer static.
10036 * process.c (Fget_process, Fprocess_datagram_address): No longer
10037 static.
10038 * keymap.c (Flookup_key, Fcopy_keymap): No longer static.
10039 * keyboard.c (Fcommand_execute): No longer static.
10040 Remove EXFUN.
10041 * insdel.c (Fcombine_after_change_execute): No longer static.
10042 * image.c (Finit_image_library): No longer static.
10043 * fileio.c (Fmake_symbolic_link): No longer static.
10044 * eval.c (Ffetch_bytecode): No longer static.
10045 * editfns.c (Fuser_full_name): No longer static.
10046 * doc.c (Fdocumentation_property, Fsnarf_documentation):
10047 No longer static.
10048 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): No longer
10049 static.
10050 * dired.c (Ffile_attributes): No longer static.
10051 * composite.c (Fcomposition_get_gstring): No longer static.
10052 * callproc.c (Fgetenv_internal): No longer static.
10053
10054 * ccl.h: Remove EXFUNs.
10055 * buffer.h: Remove EXFUNs.
10056 * dispextern.h: Remove EXFUNs.
10057 * intervals.h: Remove EXFUNs.
10058 * fontset.h: Remove EXFUN.
10059 * font.h: Remove EXFUNs.
10060 * dosfns.c (system_process_attributes): Remove EXFUN.
10061 * keymap.h: Remove EXFUNs.
10062 * lisp.h: Remove EXFUNs.
10063 * w32term.h: Remove EXFUNs.
10064 * window.h: Remove EXFUNs.
10065 * xsettings.h: Remove EXFUN.
10066 * xterm.h: Remove EXFUN.
10067
10068 2012-07-03 Glenn Morris <rgm@gnu.org>
10069
10070 * lisp.h (Frandom): Make it visible to C.
10071 * buffer.c (Fgenerate_new_buffer_name): Speed up finding a new
10072 buffer for invisible buffers. (Bug#1229)
10073
10074 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
10075
10076 Fix block vector allocation code to allow VECTOR_BLOCK_SIZE
10077 values which aren't power of 2.
10078 * alloc.c (VECTOR_FREE_LIST_SIZE_MASK): New macro.
10079 Verify its value and the value of VECTOR_BLOCK_SIZE. Adjust users
10080 accordingly.
10081
10082 2012-07-03 Stefan Monnier <monnier@iro.umontreal.ca>
10083
10084 * lisp.h (Lisp_Misc, Lisp_Fwd): Move around to group better.
10085
10086 * alloc.c (mark_object): Revert part of last patch to use `switch'.
10087
10088 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
10089
10090 * alloc.c (allocate_vector_block): Remove redundant
10091 calls to mallopt if DOUG_LEA_MALLOC is defined.
10092 (allocate_vectorlike): If DOUG_LEA_MALLOC is defined,
10093 avoid calls to mallopt if zero_vector is returned.
10094
10095 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
10096
10097 * alloc.c (check_string_bytes): If GC_CHECK_STRING_BYTES
10098 is enabled, avoid dereferencing NULL current_sblock if
10099 running undumped.
10100
10101 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
10102
10103 Cleanup basic buffer management.
10104 * buffer.h (struct buffer): Change layout to use generic vector
10105 marking code. Fix some comments. Change type of 'clip_changed'
10106 to bitfield. Remove unused #ifndef old.
10107 (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER): Remove.
10108 (GET_OVERLAYS_AT): Fix indentation.
10109 (for_each_per_buffer_object_at): New macro.
10110 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
10111 (Fbuffer_local_variables): Use it.
10112 (init_buffer_once, syms_of_buffer): Remove unused #ifndef old.
10113 * alloc.c (allocate_buffer): Adjust to match new layout of
10114 struct buffer. Fix comment.
10115 (mark_overlay): New function.
10116 (mark_buffer): Use it. Use mark_vectorlike to mark normal
10117 Lisp area of struct buffer.
10118 (mark_object): Use it. Adjust marking of misc objects
10119 and related comments.
10120
10121 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
10122
10123 * alloc.c (mark_object): Remove "#ifdef GC_CHECK_MARKED_OBJECTS"
10124 wrapper that is not needed because the wrapped code is a no-op (zero
10125 machine instructions) when GC_CHECK_MARKED_OBJECTS is not defined.
10126 This avoids a -Wunused-macros diagnostic with GCC 4.7.1 x86-64.
10127
10128 2012-07-02 Dmitry Antipov <dmantipov@yandex.ru>
10129
10130 * alloc.c (mark_buffer): Simplify. Remove prototype.
10131 (mark_object): Add comment. Reorganize marking of vector-like
10132 objects. Use CHECK_LIVE for all vector-like objects except buffers
10133 and subroutines when GC_CHECK_MARKED_OBJECTS is defined.
10134 Avoid redundant calls to mark_vectorlike for bool vectors.
10135
10136 2012-06-30 Glenn Morris <rgm@gnu.org>
10137
10138 * nsterm.m (ns_init_paths): Ignore site-lisp if --no-site-lisp.
10139
10140 * epaths.in (PATH_SITELOADSEARCH): New.
10141 * lread.c (init_lread): Use PATH_SITELOADSEARCH.
10142 This is rather than relying on --enable-locallisppath elements
10143 having "site-lisp" in their names. (Bug#10208#25, 11658)
10144
10145 2012-06-30 Eli Zaretskii <eliz@gnu.org>
10146
10147 * w32proc.c (sys_select): Accept and ignore one more argument.
10148
10149 * w32.c (emacs_gnutls_pull): Call select with one more argument.
10150
10151 * sysselect.h [DOS_NT]: Don't include sys/select.h.
10152 (pselect) [!MS_DOS]: Redirect to sys_select.
10153
10154 * sysdep.c: Don't include dos.h and dosfns.h.
10155
10156 * process.c (sys_select):
10157 * msdos.c (sys_select): Accept one more argument and ignore it.
10158
10159 * msdos.c (event_timestamp, sys_select): Use gnulib's gettime;
10160 adapt data types and code to that.
10161
10162 * dosfns.c:
10163 * msdos.c (gettime, settime): Define away the prototypes in dos.h,
10164 which clashes with the gnulib function of the same name.
10165
10166 2012-06-30 Andreas Schwab <schwab@linux-m68k.org>
10167
10168 * font.c (font_style_to_value, font_style_symbolic)
10169 (font_prop_validate_style): Add type checks for values in
10170 font_style_table.
10171
10172 * lisp.h (CHECK_RANGED_INTEGER): Make value to check the first
10173 argument.
10174 * character.c, charset.c, menu.c, process.c, window.c: Adjust all
10175 uses.
10176
10177 2012-06-29 Eli Zaretskii <eliz@gnu.org>
10178
10179 * xdisp.c (try_window_id): Undo last change.
10180
10181 * w32.c (getwd): Adjust commentary about startup_dir.
10182 (init_environment): Always call sys_access, even in non-MSVC
10183 builds. Don't chdir to the directory of the Emacs executable.
10184 This undoes code from 1997 which was justified by the need to
10185 "avoid conflicts when removing and renaming directories". But its
10186 downside was that every relative file name was being interpreted
10187 relative to the directory of the Emacs executable, which can never
10188 be TRT. In particular, it broke sys_access when called with
10189 relative file names.
10190 (sys_access): Map GetLastError to errno.
10191
10192 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
10193
10194 * window.h (struct window): Change type of 'fringes_outside_margins'
10195 to bitfield. Fix comment. Adjust users accordingly.
10196 (struct window): Change type of 'window_end_bytepos' to ptrdiff_t.
10197 Adjust comment.
10198 * xdisp.c (try_window_id): Change type of 'first_vpos' and 'vpos'
10199 to ptrdiff_t.
10200
10201 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
10202
10203 * gnutls.c (emacs_gnutls_handshake):
10204 Add QUIT to make the loop interruptible.
10205
10206 2012-06-29 Glenn Morris <rgm@gnu.org>
10207
10208 * charset.c (init_charset): Make lack of etc/charsets fatal.
10209
10210 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
10211
10212 * editfns.c (region_limit): Fix type mismatch.
10213
10214 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
10215
10216 * nsfns.m: Fix GLYPH_DEBUG usage assuming that it may be
10217 undefined. Convert from xassert to eassert.
10218 * nsmenu.m: Convert from xassert to eassert.
10219 * nsterm.m: Likewise.
10220
10221 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
10222
10223 * editfns.c (region_limit): Clip to narrowing (bug#11770).
10224
10225 2012-06-28 Paul Eggert <eggert@cs.ucla.edu>
10226
10227 Avoid integer overflow on scroll-left and scroll-right.
10228 * window.c (HSCROLL_MAX): New macro.
10229 (Fscroll_left, Fscroll_right): Avoid undefined behavior on integer
10230 overflow when requested scroll falls outside ptrdiff_t range.
10231
10232 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
10233
10234 * window.h (struct window): Change type of 'hscroll',
10235 'min_hscroll' and 'last_point' from Lisp_Object to ptrdiff_t,
10236 'last_modified' and 'last_overlay_modified' to EMACS_INT.
10237 Adjust users accordingly.
10238 * xdisp.c (try_cursor_movement): Replace type check with eassert.
10239 * window.c (Fscroll_left, Fscroll_right): Change type of 'hscroll'
10240 from EMACS_INT to ptrdiff_t.
10241 (make_window): Omit redundant initialization.
10242
10243 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
10244
10245 * makefile.w32-in ($(BLD)/regex.$(O)): Update dependencies.
10246
10247 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
10248
10249 * window.h (struct window): Change type of 'use_time' and
10250 'sequence_number' from Lisp_Object to int.
10251 * frame.c (make_frame): Adjust users accordingly.
10252 * print.c (print_object): Likewise.
10253 * window.c (select_window, Fwindow_use_time, make_parent_window)
10254 (make_window): Likewise.
10255
10256 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
10257
10258 * dispextern.h (GLYPH_DEBUG): Now defined in config.h if
10259 enabled with --enable-checking=[all,glyphs] configure option.
10260 Fix GLYPH_DEBUG usage assuming that it may be undefined,
10261 adjust comments accordingly.
10262 * dispnew.c: Fix GLYPH_DEBUG usage assuming that it may be
10263 undefined, adjust comments accordingly.
10264 * image.c: Likewise.
10265 * scroll.c: Likewise.
10266 * w32fns.c: Likewise.
10267 * w32term.c: Likewise.
10268 * xdisp.c: Likewise.
10269 * xfaces.c: Likewise.
10270 * xfns.c: Likewise.
10271 * xterm.c: Likewise.
10272
10273 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
10274
10275 Generalize run-time debugging checks.
10276 * dispextern.h (XASSERTS): Remove.
10277 * fontset.c (xassert): Remove.
10278 Convert from xassert to eassert.
10279 * alloc.c: Convert from xassert to eassert.
10280 * bidi.c: Likewise.
10281 * dispnew.c: Likewise.
10282 * fns.c: Likewise.
10283 * fringe.c: Likewise.
10284 * ftfont.c: Likewise.
10285 * gtkutil.c: Likewise.
10286 * image.c: Likewise.
10287 * keyboard.c: Likewise.
10288 * menu.c: Likewise.
10289 * process.c: Likewise.
10290 * scroll.c: Likewise.
10291 * sound.c: Likewise.
10292 * term.c: Likewise.
10293 * w32console.c: Likewise.
10294 * w32fns.c: Likewise.
10295 * w32term.c: Likewise.
10296 * window.c: Likewise.
10297 * xdisp.c: Likewise.
10298 * xfaces.c: Likewise.
10299 * xfns.c: Likewise.
10300 * xselect.c: Likewise.
10301 * xterm.c: Likewise.
10302
10303 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
10304
10305 * fns.c (maybe_resize_hash_table): Output message when growing the
10306 purify-hashtable.
10307
10308 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
10309
10310 * alloc.c (allocate_string_data): Remove dead code.
10311 * xsettings.c (XSETTINGS_FONT_NAME): Move under HAVE_XFT to
10312 avoid GCC warning about unused macro.
10313
10314 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
10315
10316 * alloc.c (allocate_string): Omit intervals initialization.
10317 * alloc.c (make_uninit_multibyte_string): Initialize intervals
10318 as in make_pure_string and make_pure_c_string.
10319
10320 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
10321
10322 * alloc.c (allocate_string): Fix last change.
10323
10324 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
10325
10326 * alloc.c (allocate_string): Remove two redundant calls
10327 to memset, add explicit initialization where appropriate.
10328
10329 2012-06-27 Glenn Morris <rgm@gnu.org>
10330
10331 * lisp.mk (lisp): Remove paths.elc.
10332
10333 2012-06-27 Chong Yidong <cyd@gnu.org>
10334
10335 * doc.c (Fsubstitute_command_keys): Fix punctuation.
10336
10337 2012-06-26 John Wiegley <johnw@newartisans.com>
10338
10339 * unexmacosx.c (copy_data_segment): Add two section names used
10340 on Mac OS X Lion: __mod_init_func and __mod_term_func.
10341
10342 * alloc.c (mark_memory): Do not check with -faddress-sanitizer
10343 when building with Clang.
10344
10345 2012-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
10346
10347 * eval.c (Fapply): Allow calling it with a single argument.
10348
10349 2012-06-26 Eli Zaretskii <eliz@gnu.org>
10350
10351 * s/ms-w32.h (strcasecmp, strncasecmp) [_MSC_VER]: Redirect to
10352 _stricmp and _strnicmp.
10353 (HAVE_STRCASECMP, HAVE_STRNCASECMP): Define to 1.
10354
10355 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
10356
10357 * alloc.c (allocate_window): Zero out non-Lisp part of newly
10358 allocated window.
10359 (allocate_process): Likewise for new process.
10360 (allocate_terminal): Change to use offsetof.
10361 (allocate_frame): Likewise.
10362 * frame.c (make_frame): Omit redundant initialization.
10363 * window.c (make_parent_window): Use memset.
10364 (make_window): Omit redundant initialization.
10365 * process.c (make_process): Omit redundant initialization.
10366 * terminal.c (create_terminal): Likewise.
10367
10368 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
10369
10370 * term.c (delete_tty): Remove redundant call to memset.
10371
10372 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
10373
10374 * alloc.c: Remove build_string.
10375 * lisp.h: Define build_string as static inline. This provides
10376 a better opportunity to optimize away calls to strlen when the
10377 function is called with compile-time constant argument.
10378 * image.c (imagemagick_error): Convert to build_string.
10379 * w32proc.c (sys_spawnve): Likewise.
10380 * xterm.c (x_term_init): Likewise.
10381
10382 2012-06-26 Paul Eggert <eggert@cs.ucla.edu>
10383
10384 Use sprintf return value instead of invoking strlen on result.
10385 In the old days this wasn't portable, since some sprintf
10386 implementations returned char *. But they died out years ago and
10387 Emacs already assumes sprintf returns int.
10388 Similarly for float_to_string.
10389 This patch speeds up (number-to-string 1000) by 3% on Fedora 15 x86-64.
10390 * ccl.c (ccl_driver):
10391 * character.c (string_escape_byte8):
10392 * data.c (Fnumber_to_string):
10393 * doprnt.c (doprnt):
10394 * print.c (print_object):
10395 * xdisp.c (message_dolog):
10396 * xfns.c (syms_of_xfns):
10397 Use sprintf or float_to_string result to avoid need to call strlen.
10398 * data.c (Fnumber_to_string):
10399 Use make_unibyte_string, since the string must be ASCII.
10400 * lisp.h, print.c (float_to_string): Now returns int length.
10401 * term.c (produce_glyphless_glyph):
10402 Use sprintf result rather than recomputing it.
10403
10404 Clean out last vestiges of the old HAVE_CONFIG_H stuff.
10405 * Makefile.in (ALL_CFLAGS):
10406 * makefile.w32-in (LOCAL_FLAGS): Remove -DHAVE_CONFIG_H.
10407 * gmalloc.c, regex.c: Include <config.h> unconditionally.
10408
10409 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
10410
10411 * dispextern.h (xstrcasecmp): Define to library function
10412 strcasecmp if available.
10413 * xfaces.c: Do not use xstrcasecmp if strcasecmp is available.
10414
10415 2012-06-25 Andreas Schwab <schwab@linux-m68k.org>
10416
10417 * keyboard.c (menu_bar_items, menu_bar_item, read_key_sequence):
10418 Avoid comma operator.
10419 * menu.c (push_submenu_start, push_submenu_end)
10420 (push_left_right_boundary, push_menu_pane): Likewise.
10421 * msdos.c (dos_rawgetc): Likewise.
10422
10423 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
10424
10425 * xfns.c (xic_create_fontsetname): Remove redundant calls
10426 to memset.
10427
10428 2012-06-25 Paul Eggert <eggert@cs.ucla.edu>
10429
10430 * gtkutil.c (get_utf8_string): Remove redundant assignment.
10431 sprintf already null-terminates its output.
10432
10433 * xfns.c (x_window): Remove redundant cast.
10434
10435 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
10436
10437 * xmenu.c (xmenu_show, xdialog_show): Explicit cast from
10438 `const char *' to `char *' to avoid compiler warning.
10439
10440 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
10441
10442 * xterm.c (x_term_init): Build proper-sized _XSETTINGS_Snnn string
10443 instead of truncating it to 63 (admittedly a generous limit).
10444
10445 * process.c: Fix spelling and caps in comments.
10446
10447 2012-06-24 Dan Nicolaescu <dann@ics.uci.edu>
10448
10449 * emacs.c (setpgrp): Remove definition, unused.
10450 * sysdep.c (setpgrp): Remove definition, not used in this file.
10451
10452 2012-06-24 Juanma Barranquero <lekktu@gmail.com>
10453
10454 * makefile.w32-in: Update dependencies.
10455
10456 2012-06-24 Eli Zaretskii <eliz@gnu.org>
10457
10458 * makefile.w32-in (TIMESPEC_H): Remove nt/inc/sys/time.h.
10459 (SYSTIME_H): Add nt/inc/sys/time.h.
10460
10461 * systime.h [WINDOWSNT]: Include sys/time.h.
10462
10463 * s/ms-w32.h (struct timespec): Definition moved from
10464 nt/inc/sys/time.h. Suggested by Paul Eggert <eggert@cs.ucla.edu>.
10465
10466 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
10467
10468 Switch from NO_RETURN to C11's _Noreturn (Bug#11750).
10469 * buffer.h (buffer_slot_type_mismatch):
10470 * data.c (arith_error) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
10471 * eval.c (unwind_to_catch):
10472 * image.c (my_png_error, my_error_exit):
10473 * keyboard.c (quit_throw_to_read_char, user_error)
10474 (Fexit_recursive_edit, Fabort_recursive_edit):
10475 * lisp.h (die, args_out_of_range, args_out_of_range_3)
10476 (wrong_type_argument, buffer_overflow, __executable_start)
10477 (memory_full, buffer_memory_full, string_overflow, Fthrow)
10478 (xsignal, xsignal0, xsignal1, xsignal2, xsignal3, signal_error)
10479 (error, verror, nsberror, report_file_error, Ftop_level, Fkill_emacs)
10480 (fatal):
10481 (child_setup) [!DOS_NT]:
10482 * lread.c (end_of_file_error, invalid_syntax):
10483 * process.c (send_process_trap) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
10484 * puresize.h (pure_write_error):
10485 * search.c (matcher_overflow):
10486 * sound.c (sound_perror, alsa_sound_perror):
10487 * sysdep.c, syssignal.h (croak):
10488 * term.c (maybe_fatal, vfatal):
10489 * textprop.c (text_read_only):
10490 * undo.c (user_error):
10491 * unexmacosx.c (unexec_error):
10492 * xterm.c (x_ins_del_lines, x_delete_glyphs):
10493 Use _Noreturn rather than NO_RETURN.
10494 No need for separate decl merely because of _Noreturn.
10495 * sound.c (sound_warning, parse_sound):
10496 Remove unnecessary forward decls.
10497
10498 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
10499
10500 Fix bug when time_t is unsigned and as wide as intmax_t (Bug#9000).
10501 * lisp.h (WAIT_READING_MAX): New macro.
10502 * dispnew.c (Fsleep_for, sit_for):
10503 * keyboard.c (kbd_buffer_get_event):
10504 * process.c (Faccept_process_output):
10505 Use it to avoid bogus compiler warnings with obsolescent GCC versions.
10506 This improves on the previous patch, which introduced a bug
10507 when time_t is unsigned and as wide as intmax_t.
10508 See <http://bugs.gnu.org/9000#51>.
10509
10510 2012-06-23 Eli Zaretskii <eliz@gnu.org>
10511
10512 * dispnew.c (sit_for, Fsleep_for):
10513 * keyboard.c (kbd_buffer_get_event):
10514 * process.c (Faccept_process_output): Avoid compiler warnings when
10515 comparing a 32-bit time_t with a 64-bit INTMAX_MAX.
10516
10517 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
10518
10519 * makefile.w32-in: Update dependencies.
10520
10521 * w32.c (ltime): Add return type and declare static.
10522 (w32_get_internal_run_time): Remove usused variable `time_100ns'.
10523
10524 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
10525
10526 * sysdep.c [__FreeBSD__]: Fix more recently-introduced typos.
10527 Privately reported by Herbert J. Skuhra.
10528 (make_lisp_timeval) [__FreeBSD__]: Rename from TIMELIST.
10529 All uses changed.
10530 (system_process_attributes) [__FreeBSD__]: Invoke make_lisp_time,
10531 not make_lisp_timeval, when the argument is of type EMACS_TIME.
10532
10533 2012-06-23 Eli Zaretskii <eliz@gnu.org>
10534
10535 * w32proc.c (Fw32_get_locale_info): Fix an off-by-one error in
10536 last argument of make_unibyte_string.
10537
10538 * keyboard.c (kbd_buffer_get_event): Include the codepage and the
10539 language ID in the event parameters.
10540
10541 * w32term.c (w32_read_socket): Put the new keyboard codepage into
10542 event.code, not the obscure "character set ID".
10543
10544 2012-06-23 Chong Yidong <cyd@gnu.org>
10545
10546 * xmenu.c (x_menu_wait_for_event): Adapt GTK3 to new xg_select.
10547
10548 2012-06-23 Eli Zaretskii <eliz@gnu.org>
10549
10550 Fix the MS-Windows build broken by 2012-06-22T21:17:42Z!eggert@cs.ucla.edu.
10551 * w32.c (fdutimens): New function.
10552
10553 * w32proc.c (sys_select): Adapt to change in the EMACS_TIME type.
10554
10555 * s/ms-w32.h (pselect): Redirect to sys_select.
10556
10557 * sysselect.h [WINDOWSNT]: Don't include sys/select.h.
10558
10559 * ralloc.c (r_alloc_inhibit_buffer_relocation): Fix stupid thinko
10560 in the logic of incrementing and decrementing the value of
10561 use_relocatable_buffers.
10562
10563 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
10564
10565 * sysdep.c [__FreeBSD__]: Fix recently-introduced typos.
10566 Privately reported by Herbert J. Skuhra.
10567 [__FreeBSD__]: Remove "*/" typo after "#include".
10568 (timeval_to_EMACS_TIME) [__FreeBSD__]: New static function.
10569 (TIMEVAL) [__FreeBSD__]: Now a static function rather than a macro.
10570 (TIMEVAL, system_process_attributes) [__FreeBSD__]:
10571 Don't assume EMACS_TIME and struct timeval are the same type.
10572
10573 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
10574
10575 Support higher-resolution time stamps (Bug#9000).
10576 The time stamps are only nanosecond-resolution at the C level,
10577 since that's the best that any real-world system supports now.
10578 But they are picosecond-resolution at the Lisp level, as that's
10579 easy, and leaves room for future OS improvements.
10580
10581 * Makefile.in (LIB_CLOCK_GETTIME): New macro.
10582 (LIBES): Use it.
10583
10584 * alloc.c (Fgarbage_collect): Port to higher-res time stamps.
10585 Don't get current time unless it's needed.
10586
10587 * atimer.c: Include <sys/time.h> unconditionally, since gnulib
10588 now provides it if it's absent.
10589 (start_atimer): Port to higher-res time stamps.
10590 Check for time stamp overflow. Don't get current time more
10591 often than is needed.
10592
10593 * buffer.h (struct buffer): Buffer modtime now has high resolution.
10594 Include systime.h, not time.h.
10595 (NONEXISTENT_MODTIME_NSECS, UNKNOWN_MODTIME_NSECS): New macros.
10596
10597 * dired.c: Include stat-time.h.
10598 (Ffile-attributes): File times now have higher resolution.
10599
10600 * dispextern.h [HAVE_WINDOW_SYSTEM]: Include systime.h.
10601 (struct image): Timestamp now has higher resolution.
10602
10603 * dispnew.c (PERIODIC_PREEMPTION_CHECKING): Remove, as Emacs always
10604 has at least microseconds now. All uses removed.
10605 (update_frame, update_single_window, update_window, update_frame_1)
10606 (Fsleep_for, sit_for): Port to higher-resolution time stamps.
10607 (duration_to_sec_usec): Remove; no longer needed.
10608
10609 * editfns.c (time_overflow): Now extern.
10610 (Fcurrent_time, Fget_internal_run_time, make_time, lisp_time_argument)
10611 (float-time, Fformat_time_string, Fcurrent_time_string)
10612 (Fcurrent_time_zone): Accept and generate higher-resolution
10613 time stamps.
10614 (make_time_tail, make_lisp_time, dissassemble_lisp_time)
10615 (decode_time_components, lisp_seconds_argument): New functions.
10616 (make_time): Now static.
10617 (lisp_time_argument): Now returns EMACS_TIME. New arg ppsec.
10618 Report an error if the time is invalid, rather than having the caller
10619 do that.
10620
10621 * fileio.c: Include <stat-time.h>
10622 (Fcopy_file): Copy higher-resolution time stamps.
10623 Prefer to set the time stamp via a file descriptor if that works.
10624 (Fset_file_times, Finsert_file_contents, Fwrite_region)
10625 (Fverify_visited_file_modtime, Fclear_visited_file_modtime)
10626 (Fvisited_file_modtime, Fset_visited_file_modtime):
10627 Support higher-resolution time stamps.
10628
10629 * fns.c (Frandom): Use nanoseconds, not microseconds, for seed.
10630
10631 * gtkutil.c (xg_maybe_add_timer): Port to higher-res time stamps.
10632
10633 * image.c (prepare_image_for_display, clear_image_cache)
10634 (lookup_image): Port to higer-resolution time stamps.
10635
10636 * keyboard.c (start_polling, bind_polling_period):
10637 Check for time stamp overflow.
10638 (read_char, kbd_buffer_get_event, timer_start_idle)
10639 (timer_stop_idle, timer_resume_idle, timer_check_2, timer_check)
10640 (Fcurrent_idle_time, init_keyboard, set_waiting_for_input):
10641 Port to higher-resolution time stamps. Do not assume time_t is signed.
10642 (decode_timer): New function. Timers are now vectors of length 9,
10643 not 8, to accommodate the picosecond component.
10644 (timer_check_2): Use it.
10645
10646 * nsterm.m (select_timeout, timeval_subtract): Remove.
10647 (ns_timeout): Use Emacs's facilities for time stamp arithmetic,
10648 as they're a bit more accurate and handle overflow better.
10649 (ns_select): Change prototype to be compatible with pselect.
10650 (ns_select, ns_term_shutdown): Port to ns-resolution time stamps.
10651 * nsterm.h (ns_select): Adjust prototype.
10652
10653 * msdos.c (EMACS_TIME_ZERO_OR_NEG_P): Remove, as it assumes
10654 us-resolution time stamps.
10655 (sys_select): Use the new EMACS_TIME_SIGN macro instead.
10656
10657 * lread.c (read_filtered_event): Port to ns-resolution time stamps.
10658
10659 * lisp.h (time_overflow): New decl.
10660 (wait_reading_process_output): First arg is now intmax_t, not int,
10661 to accommodate larger waits.
10662
10663 * process.h (struct Lisp_Process.read_output_delay):
10664 Now counts nanoseconds, not microseconds.
10665 * process.c (ADAPTIVE_READ_BUFFERING): Don't worry about
10666 EMACS_HAS_USECS.
10667 (READ_OUTPUT_DELAY_INCREMENT, Faccept_process_output)
10668 (wait_reading_process_output):
10669 Port to ns-resolution time stamps.
10670 (Faccept_process_output, wait_reading_process_output):
10671 Check for time stamp overflow. Do not assume time_t is signed.
10672 (select_wrapper): Remove; we now use pselect.
10673 (Fprocess_attributes): Now generates ns-resolution time stamps.
10674
10675 * sysdep.c: Include utimens.h. Don't include utime.h
10676 or worry about struct utimbuf; gnulib does that for us now.
10677 (gettimeofday): Remove; gnulib provides a substitute.
10678 (make_timeval): New function.
10679 (set_file_times): Now sets ns-resolution time stamps.
10680 New arg FD; all uses changed.
10681 (time_from_jiffies, ltime_from_jiffies, get_up_time)
10682 (system_process_attributes):
10683 Now returns ns-resolution time stamp. All uses changed.
10684 Check for time stamp overflow.
10685
10686 * sysselect.h: Don't depend on HAVE_SYS_SELECT_H; gnulib
10687 provides a substitute now.
10688
10689 * systime.h: Include timespec.h rather than sys/time.h and time.h,
10690 since it guarantees struct timespec.
10691 (EMACS_TIME): Now struct timespec, so that we can support
10692 ns-resolution time stamps.
10693 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): New macros.
10694 (EMACS_HAS_USECS): Remove; Emacs always has sub-second time stamps now.
10695 (EMACS_USECS): Remove.
10696 (EMACS_SET_USECS): The underlying time stamp now has ns resolution,
10697 so multiply the arg by 1000 before storing it.
10698 (EMACS_NSECS, EMACS_SECS_ADDR, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS):
10699 New macros.
10700 (EMACS_GET_TIME, EMACS_ADD_TIME, EMACS_SUB_TIME):
10701 Port to ns-resolution time stamps.
10702 (EMACS_TIME_NEG_P): Remove; replaced by....
10703 (EMACS_TIME_SIGN): New macro.
10704 (EMACS_SET_INVALID_TIME, EMACS_TIME_VALID_P)
10705 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE): New macros.
10706 (set_file_times, make_time, lisp_time_argument): Adjust signature.
10707 (make_timeval, make_lisp_time, decode_time_components): New decls.
10708 (EMACS_TIME_CMP): Remove; no longer used. Plus, it was buggy, in
10709 that it mishandled time_t overflow. You can't compare by subtracting!
10710 (EMACS_TIME_EQ, EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE)
10711 (EMACS_TIME_LT, EMACS_TIME_LE): Rewrite in terms of timespec_cmp.
10712
10713 * term.c: Include <sys/time.h>.
10714 (timeval_to_Time): New function, for proper overflow wraparound.
10715 (term_mouse_position, term_mouse_click): Use it.
10716
10717 * undo.c (record_first_change): Support higher-resolution time stamps
10718 in the undo buffer.
10719 (Fprimitive_undo): Use them when restoring time stamps.
10720
10721 * w32.c (ltime, U64_TO_LISP_TIME, process_times, emacs_gnutls_pull)
10722 (w32_get_internal_run_time):
10723 Port to higher-resolution Emacs time stamps.
10724 (ltime): Now accepts single 64-bit integer, as that's more convenient
10725 for callers.
10726
10727 * xdisp.c (start_hourglass): Port to ns-resolution time stamps.
10728
10729 * xgselect.c, xgselect.h (xg_select): Add sigmask argument,
10730 for compatibility with pselect. Support ns-resolution time stamps.
10731
10732 * xmenu.c (x_menu_wait_for_event): Support ns-resolution time stamps.
10733
10734 * xselect.c (wait_for_property_change, x_get_foreign_selection):
10735 Check for time stamp overflow, and support ns-resolution time stamps.
10736
10737 * xterm.c: Don't include sys/time.h; gnulib does that for us now.
10738 Don't worry about whether HAVE_TIMEVAL and HAVE_SELECT are set.
10739 (timeval_subtract): Remove; no longer needed.
10740 (XTflash, XTring_bell, x_wait_for_event):
10741 Port to ns-resolution time stamps. Don't assume time_t is signed.
10742
10743 2012-06-22 Chong Yidong <cyd@gnu.org>
10744
10745 * xdisp.c (x_consider_frame_title): Revert last change.
10746
10747 2012-06-22 Eli Zaretskii <eliz@gnu.org>
10748
10749 * alloc.c (NSTATICS): Enlarge to 0x650. Otherwise, Emacs compiled
10750 with -DENABLE_CHECKING -DXASSERTS -DGLYPH_DEBUG=1 -DBYTE_CODE_METER
10751 aborts in staticpro during startup. (Without -DBYTE_CODE_METER,
10752 staticidx goes up to 1597 out of 1600 = 0x640.)
10753
10754 2012-06-20 Paul Eggert <eggert@cs.ucla.edu>
10755
10756 * fileio.c (Fdefault_file_modes): Block input while fiddling with umask.
10757 Otherwise, the umask might be mistakenly 0 while handling input signals.
10758
10759 2012-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
10760
10761 * minibuf.c (Fread_string): Bind minibuffer-completion-table.
10762
10763 2012-06-19 Dmitry Antipov <dmantipov@yandex.ru>
10764
10765 * alloc.c, bytecode.c, ccl.c, coding.c, composite.c, data.c, dosfns.c:
10766 * font.c, image.c, keyboard.c, lread.c, menu.c, minibuf.c, msdos.c:
10767 * print.c, syntax.c, window.c, xmenu.c, xselect.c: Replace direct
10768 access to `contents' member of Lisp_Vector objects with AREF and ASET
10769 where appropriate.
10770
10771 2012-06-19 Chong Yidong <cyd@gnu.org>
10772
10773 * frame.c (delete_frame): When selecting a frame on a different
10774 text terminal, do not alter the terminal's top-frame.
10775
10776 * xdisp.c (format_mode_line_unwind_data): Record the target
10777 frame's selected window and its terminal's top-frame.
10778 (unwind_format_mode_line): Restore them.
10779 (x_consider_frame_title, display_mode_line, Fformat_mode_line):
10780 Callers changed.
10781 (x_consider_frame_title): Do not condition on HAVE_WINDOW_SYSTEM,
10782 since tty frames can be explicitly named.
10783 (prepare_menu_bars): Likewise.
10784
10785 * term.c (Ftty_top_frame): New function.
10786
10787 2012-06-18 Paul Eggert <eggert@cs.ucla.edu>
10788
10789 Port byte-code-meter to modern targets.
10790 * bytecode.c (METER_CODE) [BYTE_CODE_METER]: Don't assume
10791 !CHECK_LISP_OBJECT_TYPE && !USE_LSB_TAG. Problem with
10792 CHECK_LISP_OBJECT_TYPE reported by Dmitry Antipov in
10793 <http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00282.html>.
10794 (METER_1, METER_2): Simplify.
10795
10796 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
10797
10798 * data.c (Fdefalias): Return `symbol' (bug#11686).
10799
10800 2012-06-18 Martin Rudalics <rudalics@gmx.at>
10801
10802 * buffer.c (Fkill_buffer): Don't throw an error when the buffer
10803 gets killed during executing of this function (Bug#11665).
10804 Try to always return Qt when the buffer has been actually killed.
10805 (Vkill_buffer_query_functions): In doc-string say that functions
10806 run by this hook should not change the current buffer.
10807
10808 2012-06-18 Paul Eggert <eggert@cs.ucla.edu>
10809
10810 Fix recently-introduced process.c problems found by static checking.
10811 * process.c (write_queue_push, write_queue_pop, send_process):
10812 Use ptrdiff_t, not int or EMACS_INT, for buffer lengths and offsets.
10813 (write_queue_pop): Fix pointer signedness problem.
10814 (send_process): Remove unused local.
10815
10816 2012-06-17 Chong Yidong <cyd@gnu.org>
10817
10818 * xdisp.c (redisplay_internal): No need to redisplay terminal
10819 frames that are not on top.
10820
10821 2012-06-17 Troels Nielsen <bn.troels@gmail.com>
10822
10823 * process.c (make_process): Initialize write_queue.
10824 (write_queue_push, write_queue_pop): New functions.
10825 (send_process): Use them to maintain correct ordering of process
10826 writes (Bug#10815).
10827
10828 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
10829
10830 * lisp.h (eassert): Assume C89 or later.
10831 This removes the need for CHECK.
10832 (CHECK): Remove. Its comments about always evaluating its
10833 argument were confusing, as 'eassert' typically does not evaluate
10834 its argument.
10835
10836 * coding.c (produce_chars): Use ptrdiff_t, not int.
10837
10838 * xterm.c (x_draw_underwave): Check for integer overflow.
10839 This pacifies gcc 4.7.0 -Wunsafe-loop-optimizations on x86-64.
10840
10841 2012-06-17 Jan Djärv <jan.h.d@swipnet.se>
10842
10843 * nsterm.m (x_free_frame_resources): Move xfree so freed memory isn't
10844 referenced (Bug#11583).
10845
10846 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
10847
10848 Implement wave-style variant of underlining.
10849 * dispextern.h (face_underline_type): New enum.
10850 (face): Add field for underline type.
10851 * nsterm.m (ns_draw_underwave): New function.
10852 (ns_draw_text_decoration): Use it.
10853 * w32term.c (w32_restore_glyph_string_clip, w32_draw_underwave):
10854 New functions.
10855 (x_draw_glyph_string): Use them.
10856 * xfaces.c (Qline, Qwave): New Lisp objects.
10857 (check_lface_attrs, merge_face_ref)
10858 (Finternal_set_lisp_face_attribute, realize_x_face):
10859 Handle wave-style underline face attributes.
10860 * xterm.c (x_draw_underwave): New function.
10861 (x_draw_glyph_string): Use it.
10862
10863 2012-06-16 Juanma Barranquero <lekktu@gmail.com>
10864
10865 * makefile.w32-in ($(BLD)/emacs.$(O), $(BLD)/fringe.$(O))
10866 ($(BLD)/xml.$(O), $(BLD)/intervals.$(O), $(BLD)/macros.$(O))
10867 ($(BLD)/minibuf.$(O), $(BLD)/regex.$(O), $(BLD)/region-cache.$(O))
10868 ($(BLD)/textprop.$(O), $(BLD)/undo.$(O), $(BLD)/window.$(O))
10869 ($(BLD)/w32select.$(O)): Update dependencies.
10870
10871 2012-06-16 Andreas Schwab <schwab@linux-m68k.org>
10872
10873 * buffer.h (FETCH_MULTIBYTE_CHAR): Define as inline.
10874 (BUF_FETCH_MULTIBYTE_CHAR): Likewise.
10875 * character.c (_fetch_multibyte_char_p): Remove.
10876 * alloc.c: Include "character.h" before "buffer.h".
10877 * bidi.c: Likewise.
10878 * buffer.c: Likewise.
10879 * bytecode.c: Likewise.
10880 * callint.c: Likewise.
10881 * callproc.c: Likewise.
10882 * casefiddle.c: Likewise.
10883 * casetab.c: Likewise.
10884 * category.c: Likewise.
10885 * cmds.c: Likewise.
10886 * coding.c: Likewise.
10887 * composite.c: Likewise.
10888 * dired.c: Likewise.
10889 * dispnew.c: Likewise.
10890 * doc.c: Likewise.
10891 * dosfns.c: Likewise.
10892 * editfns.c: Likewise.
10893 * emacs.c: Likewise.
10894 * fileio.c: Likewise.
10895 * filelock.c: Likewise.
10896 * font.c: Likewise.
10897 * fontset.c: Likewise.
10898 * fringe.c: Likewise.
10899 * indent.c: Likewise.
10900 * insdel.c: Likewise.
10901 * intervals.c: Likewise.
10902 * keyboard.c: Likewise.
10903 * keymap.c: Likewise.
10904 * lread.c: Likewise.
10905 * macros.c: Likewise.
10906 * marker.c: Likewise.
10907 * minibuf.c: Likewise.
10908 * nsfns.m: Likewise.
10909 * nsmenu.m: Likewise.
10910 * print.c: Likewise.
10911 * process.c: Likewise.
10912 * regex.c: Likewise.
10913 * region-cache.c: Likewise.
10914 * search.c: Likewise.
10915 * syntax.c: Likewise.
10916 * term.c: Likewise.
10917 * textprop.c: Likewise.
10918 * undo.c: Likewise.
10919 * unexsol.c: Likewise.
10920 * w16select.c: Likewise.
10921 * w32fns.c: Likewise.
10922 * w32menu.c: Likewise.
10923 * window.c: Likewise.
10924 * xdisp.c: Likewise.
10925 * xfns.c: Likewise.
10926 * xmenu.c: Likewise.
10927 * xml.c: Likewise.
10928 * xselect.c: Likewise.
10929
10930 2012-06-16 Eli Zaretskii <eliz@gnu.org>
10931
10932 * xdisp.c (set_cursor_from_row): Don't dereference glyphs_end.
10933 If all the glyphs of the glyph row came from strings, and we have no
10934 cursor positioning clues, put the cursor on the first glyph of the
10935 row.
10936 (handle_face_prop): Use chunk-relative overlay string index when
10937 indexing into it->string_overlays array. (Bug#11653)
10938 (set_cursor_from_row): Use the leftmost glyph as GLYPH_BEFORE, not
10939 the rightmost. (Bug#11720)
10940
10941 2012-06-16 Andreas Schwab <schwab@linux-m68k.org>
10942
10943 * category.h (CHAR_HAS_CATEGORY): Define as inline.
10944 (CATEGORY_MEMBER): Enforce 1/0 value.
10945 * category.c (_temp_category_set): Remove.
10946
10947 2012-06-16 Eli Zaretskii <eliz@gnu.org>
10948
10949 * window.c (Fdelete_other_windows_internal)
10950 (Fdelete_window_internal): Don't access frame's mouse highlight
10951 info of the initial frame. (Bug#11677)
10952
10953 2012-06-14 Paul Eggert <eggert@cs.ucla.edu>
10954
10955 * .gdbinit (xgetint): Fix recently-introduced paren typo.
10956 Assume USE_2_TAGS_FOR_INTS.
10957 (xreload): Adjust $tagmask width to match recent lisp.h change.
10958
10959 Simplify lisp.h in minor ways that should not affect code.
10960 * lisp.h (USE_2_TAGS_FOR_INTS): Remove, as it was always defined.
10961 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P)
10962 (LISP_INT1_TAG, enum Lisp_Type, XINT, XUINT, make_number):
10963 Simplify under the assumption that USE_2_TAGS_FOR_INTS is defined.
10964 (INTTYPEBITS): New macro, for clarity.
10965 (INTMASK, MOST_POSITIVE_FIXNUM): Use it.
10966 (LISP_INT1_TAG, LISP_STRING_TAG, LISP_INT_TAG_P):
10967 Simplify now that USE_LSB_TAG is always defined.
10968 (TYPEMASK, XINT) [USE_LSB_TAG]: Remove unnecessary cast.
10969 (make_number) [!USE_LSB_TAG]: Use INTMASK; that's simpler.
10970
10971 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
10972
10973 * makefile.w32-in ($(BLD)/data.$(O)): Update dependencies.
10974
10975 2012-06-13 Glenn Morris <rgm@gnu.org>
10976
10977 * s/bsd-common.h (BSD4_3):
10978 * s/usg5-4-common.h (USG5_4): No longer define; unused.
10979
10980 2012-06-13 Andreas Schwab <schwab@linux-m68k.org>
10981
10982 * lisp.h (Lisp_Object) [CHECK_LISP_OBJECT_TYPE]: Define as struct
10983 instead of union.
10984 (XLI, XIL): Define.
10985 (XHASH, XTYPE, XINT, XUINT, make_number, XSET, XPNTR, XUNTAG):
10986 Use them.
10987 * emacs.c (gdb_use_struct): Rename from gdb_use_union.
10988 * .gdbinit: Check gdb_use_struct instead of gdb_use_union.
10989 * alloc.c (widen_to_Lisp_Object): Remove.
10990 (mark_memory): Use XIL instead of widen_to_Lisp_Object.
10991 * frame.c (delete_frame): Remove outdated comment.
10992 * w32fns.c (Fw32_register_hot_key): Use XLI instead of checking
10993 USE_LISP_UNION_TYPE.
10994 (Fw32_unregister_hot_key): Likewise.
10995 (Fw32_toggle_lock_key): Likewise.
10996 * w32menu.c (add_menu_item): Likewise.
10997 (w32_menu_display_help): Use XIL instead of checking
10998 USE_LISP_UNION_TYPE.
10999 * w32heap.c (allocate_heap): Don't check USE_LISP_UNION_TYPE.
11000 (init_heap): Likewise.
11001 * w32term.c (w32_read_socket): Update comment.
11002
11003 2012-06-13 Glenn Morris <rgm@gnu.org>
11004
11005 * s/usg5-4-common.h, src/s/unixware.h:
11006 Remove define/undef of HAVE_SYSV_SIGPAUSE (not used since 2010-05-04).
11007
11008 * s/gnu.h (POSIX_SIGNALS): Remove (not used since 2010-05-04).
11009
11010 2012-06-13 Paul Eggert <eggert@cs.ucla.edu>
11011
11012 USE_LISP_UNION_TYPE + USE_LSB_TAG cleanup (Bug#11604)
11013 * alloc.c (make_number) [!defined make_number]:
11014 Remove, as lisp.h always defines this now.
11015 (mark_maybe_pointer): Simplify since USE_LSB_TAG is always defined now.
11016 (roundup_size): Verify that it is a power of 2.
11017 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
11018 * ftfont.c (ftfont_driver): Use LISP_INITIALLY_ZERO.
11019 * lisp.h (USE_LSB_TAG): Allow the builder to compile with
11020 -DUSE_LSB_TAG=0, to override the automatically-selected default.
11021 USE_LSB_TAG now is always defined to be either 0 or 1.
11022 All uses changed.
11023 (union Lisp_Object): Don't worry about WORDS_BIGENDIAN; the
11024 code works fine either way, and efficiency is not a concern here,
11025 as the union type is for debugging, not for production.
11026 (LISP_MAKE_RVALUE, make_number) [USE_LISP_UNION_TYPE]:
11027 Use an inline function on all platforms when using the union type,
11028 since this is simpler and 'static inline' can be used portably
11029 within Emacs now.
11030 (LISP_INITIALLY_ZERO): New macro.
11031 (XFASTINT, XSETFASTINT) [USE_LISP_UNION_TYPE]: Remove.
11032 (XSET) [USE_LISP_UNION_TYPE]: Don't overparenthesize.
11033
11034 2012-06-12 Glenn Morris <rgm@gnu.org>
11035
11036 * s/gnu-kfreebsd.h, s/hpux11.h, s/openbsd.h, s/sol2-10.h: Remove files.
11037
11038 * s/gnu-linux.h (HAVE_PROCFS): Move to configure.
11039
11040 * s/hpux10-20.h, s/openbsd.h, s/usg5-4-common.h:
11041 Move BROKEN_SIGIO to configure.
11042
11043 * s/bsd-common.h, s/darwin.h, s/gnu-kfreebsd.h, s/hpux10-20.h:
11044 Move NO_TERMIO to configure.
11045
11046 2012-06-12 Chong Yidong <cyd@gnu.org>
11047
11048 * image.c (imagemagick_load_image): Use MagickFlattenImage if
11049 MagickMergeImageLayers is undefined. Use pixel pusher loop if
11050 MagickExportImagePixels is undefined.
11051
11052 2012-06-12 Paul Eggert <eggert@cs.ucla.edu>
11053
11054 * image.c (imagemagick_load_image): Remove unused label.
11055
11056 2012-06-11 Glenn Morris <rgm@gnu.org>
11057
11058 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
11059 * s/gnu-kfreebsd.h, s/gnu-linux.h, s/gnu.h, s/hpux10-20.h:
11060 * s/irix6-5.h, s/ms-w32.h, s/msdos.h, s/template.h:
11061 * s/usg5-4-common.h: Move SYSTEM_TYPE to configure.
11062
11063 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
11064
11065 * alloc.c (make_byte_code): New function.
11066 (Fmake_byte_code): Use it. Don't purify here.
11067 * lread.c (read1): Use it as well to avoid extra allocation.
11068
11069 2012-06-11 Chong Yidong <cyd@gnu.org>
11070
11071 * image.c (imagemagick_load_image): Implement transparency.
11072
11073 2012-06-10 Andreas Schwab <schwab@linux-m68k.org>
11074
11075 * regex.c (at_begline_loc_p): Also recognize `(?N:' and correctly
11076 account for preceding backslashes. (Bug#11663)
11077
11078 2012-06-09 Chong Yidong <cyd@gnu.org>
11079
11080 * term.c: Support italics in capable terminals (Bug#9652).
11081 (no_color_bit): Replace unused NC_BLINK with NC_ITALIC.
11082 (turn_on_face): Output using TS_enter_italic_mode if available.
11083 Don't handle unused blinking and alt-charset cases.
11084 (turn_off_face): Handle italic case; discard unused tty_blinking_p
11085 and tty_alt_charset_p cases.
11086 (tty_capable_p, init_tty): Support italics.
11087
11088 * termchar.h (struct tty_display_info): Add field for italics.
11089 Remove unused blink field.
11090
11091 * xfaces.c (tty_supports_face_attributes_p, realize_tty_face):
11092 Handle slant.
11093
11094 * dispextern.h: Replace unused TTY_CAP_BLINK with TTY_CAP_ITALIC.
11095 (struct face): Remove unused fields tty_dim_p, tty_blinking_p, and
11096 tty_alt_charset_p. Add tty_italic_p.
11097
11098 2012-06-09 Michael Albinus <michael.albinus@gmx.de>
11099
11100 * dbusbind.c (XD_BASIC_DBUS_TYPE): Use dbus_type_is_valid and
11101 dbus_type_is_basic if available.
11102 (xd_extract_signed, xd_extract_unsigned): Rename from
11103 extract_signed and extract_unsigned, respectively. Adapt callers.
11104
11105 2012-06-09 Chong Yidong <cyd@gnu.org>
11106
11107 * xfaces.c (face_for_overlay_string): Handle face remapping (Bug#2066).
11108
11109 * fringe.c (Fset_fringe_bitmap_face): Handle the noninteractive
11110 case (Bug#9752).
11111
11112 2012-06-08 Paul Eggert <eggert@cs.ucla.edu>
11113
11114 * xdisp.c (vmessage): Treat frame message as multibyte.
11115 Without this change, (let ((§ 1)) (make-variable-buffer-local '§))
11116 would generate the diagnostic "Making \302\247 buffer-local while
11117 let-bound!".
11118
11119 2012-06-08 Eli Zaretskii <eliz@gnu.org>
11120
11121 * dispnew.c (showing_window_margins_p): Undo last change, which
11122 was done due to an inadvertent commit.
11123 (adjust_frame_glyphs_for_frame_redisplay): Do call
11124 showing_window_margins_p.
11125
11126 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
11127
11128 * eval.c (Fmake_var_non_special): New primitive.
11129 (syms_of_eval): Defsubr it.
11130 * lread.c (syms_of_lread): Mark `values' as lexically scoped.
11131
11132 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
11133
11134 * dispnew.c (showing_window_margins_p): Wrap in #if 0 to prevent unused
11135 function warning (the only call is inside #if 0 since 2012-06-08T08:44:45Z!eliz@gnu.org).
11136
11137 2012-06-08 Eli Zaretskii <eliz@gnu.org>
11138
11139 * alloc.c (allocate_vectorlike): Fix last change.
11140
11141 2012-06-08 Dmitry Antipov <dmantipov@yandex.ru>
11142
11143 Block-based vector allocation of small vectors.
11144 * lisp.h (struct vectorlike_header): New field `nbytes',
11145 adjust comment accordingly.
11146 * alloc.c (enum mem_type): New type `MEM_TYPE_VECTOR_BLOCK'
11147 to denote vector blocks. Adjust users (live_vector_p,
11148 mark_maybe_pointer, valid_lisp_object_p) accordingly.
11149 (COMMON_MULTIPLE): Move outside #if USE_LSB_TAG.
11150 (VECTOR_BLOCK_SIZE, vroundup, VECTOR_BLOCK_BYTES),
11151 (VBLOCK_BYTES_MIN, VBLOCK_BYTES_MAX, VECTOR_MAX_FREE_LIST_INDEX),
11152 (VECTOR_FREE_LIST_FLAG, ADVANCE, VINDEX, SETUP_ON_FREE_LIST),
11153 (VECTOR_SIZE, VECTOR_IN_BLOCK): New macros.
11154 (roundup_size): New constant.
11155 (struct vector_block): New data type.
11156 (vector_blocks, vector_free_lists, zero_vector): New variables.
11157 (all_vectors): Rename to `large_vectors'.
11158 (allocate_vector_from_block, init_vectors, allocate_vector_from_block)
11159 (sweep_vectors): New functions.
11160 (allocate_vectorlike): Return `zero_vector' as the only vector of
11161 0 items. Allocate new vector from block if vector size is less than
11162 or equal to VBLOCK_BYTES_MAX.
11163 (Fgarbage_collect): Move all vector sweeping code to sweep_vectors.
11164 (init_alloc_once): Add call to init_vectors.
11165
11166 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
11167
11168 * eval.c (Fmacroexpand): Stop if the macro returns the same form.
11169
11170 2012-06-07 Paul Eggert <eggert@cs.ucla.edu>
11171
11172 * doprnt.c (doprnt): Truncate multibyte char correctly.
11173 Without this change, doprnt (buf, 2, "%s", FORMAT_END, AP)
11174 would mishandle a string argument "Xc" if X was a multibyte
11175 character of length 2: it would truncate after X's first byte
11176 rather than including all of X.
11177
11178 2012-06-06 Chong Yidong <cyd@gnu.org>
11179
11180 * buffer.c (word_wrap): Doc fix.
11181
11182 2012-06-04 Paul Eggert <eggert@cs.ucla.edu>
11183
11184 * xdisp.c (note_mode_line_or_margin_highlight): Pacify gcc -Wall.
11185
11186 2012-06-03 Glenn Morris <rgm@gnu.org>
11187
11188 * xdisp.c (tool-bar-style): Doc fix.
11189
11190 2012-06-03 Ulrich Müller <ulm@gentoo.org>
11191
11192 * Makefile.in (PAXCTL): Define.
11193 (temacs$(EXEEXT)): Disable memory randomization for the temacs
11194 binary via PaX flags if the paxctl utility is available.
11195 (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
11196 Restore PaX flags to their default. (Bug#11398)
11197
11198 2012-06-03 Chong Yidong <cyd@gnu.org>
11199
11200 * xdisp.c (decode_mode_spec_coding): Display a space for a unibyte
11201 buffer (Bug#11226).
11202
11203 2012-06-03 Chong Yidong <cyd@gnu.org>
11204
11205 * xdisp.c (calc_pixel_width_or_height): Use Fbuffer_local_value.
11206 (note_mode_line_or_margin_highlight): If there is no help echo,
11207 use mode-line-default-help-echo. Handle the case where the mouse
11208 position is past the end of the mode line string.
11209
11210 * buffer.c (buffer_local_value_1): New function, split from
11211 Fbuffer_local_value; can return Qunbound.
11212 (Fbuffer_local_value): Use it.
11213 (Vmode_line_format): Docstring tweaks.
11214
11215 2012-06-02 Paul Eggert <eggert@cs.ucla.edu>
11216
11217 * sysdep.c (system_process_attributes): Improve comment.
11218
11219 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
11220
11221 * keyboard.c: Export real-this-command to Elisp.
11222 (syms_of_keyboard): Rename real_this_command to Vreal_this_command
11223 and DEFVAR it. Update all users.
11224
11225 2012-06-02 Paul Eggert <eggert@cs.ucla.edu>
11226
11227 * minibuf.c (Fassoc_string): Remove duplicate declaration.
11228
11229 * sysdep.c (system_process_attributes) [SOLARIS2 && HAVE_PROCFS]:
11230 Convert pctcpu and pctmem to Lisp float properly.
11231 Let the compiler fold better, as 100.0/0x8000 is exact.
11232
11233 2012-06-02 Andreas Schwab <schwab@linux-m68k.org>
11234
11235 * alloc.c (CONS_BLOCK_SIZE): Account for padding at the end of
11236 cons_block.
11237
11238 2012-06-01 Paul Eggert <eggert@cs.ucla.edu>
11239
11240 * xfns.c (x_set_tool_bar_lines) [USE_GTK]: Adjust to bitfield change.
11241
11242 2012-06-01 Dmitry Antipov <dmantipov@yandex.ru>
11243
11244 For a 'struct window', replace some Lisp_Object fields to
11245 bitfields where appropriate, remove unused fields.
11246 * window.h (struct window): Remove unused 'last_mark_x' and
11247 'last_mark_y' fields. Rename 'mini_p' field to 'mini',
11248 change its type from Lisp_Object to bitfield.
11249 Change type of 'force_start', 'optional_new_start',
11250 'last_had_star', 'update_mode_line' and 'start_at_line_beg'
11251 fields from Lisp_Object to bitfield. Adjust users accordingly.
11252
11253 2012-05-31 Paul Eggert <eggert@cs.ucla.edu>
11254
11255 Pacify gcc -Wdouble-precision when using Xaw.
11256 * xterm.c (xaw_jump_callback, x_set_toolkit_scroll_bar_thumb)
11257 [HAVE_X_WINDOWS && USE_TOOLKIT_SCROLL_BARS && !USE_MOTIF && !USE_GTK]:
11258 Use 'float' consistently, rather than 'float' in most places
11259 and 'double' in a couple of places.
11260
11261 2012-05-31 Eli Zaretskii <eliz@gnu.org>
11262
11263 * xdisp.c (handle_stop): Detect whether we have overlay strings
11264 loaded by testing it->current.overlay_string_index to be
11265 non-negative, instead of checking whether n_overlay_strings is
11266 positive. (Bug#11587)
11267
11268 2012-05-31 Chong Yidong <cyd@gnu.org>
11269
11270 * keymap.c (describe_map_tree): Revert 2011-07-07 change (Bug#1169).
11271
11272 * doc.c (Fsubstitute_command_keys): Doc fix.
11273
11274 2012-05-31 Eli Zaretskii <eliz@gnu.org>
11275
11276 * search.c (search_buffer): Remove calls to
11277 r_alloc_inhibit_buffer_relocation, as it is now called by
11278 maybe_unify_char, which was the cause of relocation of buffer text
11279 in bug#11519.
11280
11281 2012-05-31 Eli Zaretskii <eliz@gnu.org>
11282
11283 * charset.c (maybe_unify_char): Inhibit relocation of buffer text
11284 for the duration of call to load_charset, to avoid problems with
11285 callers of maybe_unify_char that access buffer text through C
11286 pointers.
11287
11288 * ralloc.c (r_alloc_inhibit_buffer_relocation): Increment and
11289 decrement the inhibition flag, instead of just setting or
11290 resetting it.
11291
11292 2012-05-31 Paul Eggert <eggert@cs.ucla.edu>
11293
11294 Remove obsolete '#define static' cruft.
11295 * s/hpux10-20.h (_FILE_OFFSET_BITS): Don't #undef.
11296 This #undef was "temporary" in 2000; it is no longer needed
11297 now that '#define static' has gone away.
11298 * xfns.c, xterm.h (gray_bitmap_width, gray_bitmap_height)
11299 (gray_bitmap_bits): Remove; no longer needed.
11300 All uses replaced with definiens.
11301 * xterm.c: Include "bitmaps/gray.xbm".
11302
11303 2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
11304
11305 Clean up __executable_start, monstartup when --enable-profiling.
11306 The following changes affect the code only when profiling.
11307 * dispnew.c (__executable_start): Rename from safe_bcopy.
11308 Define only on platforms that need it.
11309 * emacs.c: Include <sys/gmon.h> when profiling.
11310 (_mcleanup): Remove decl, since <sys/gmon.h> does it now.
11311 (__executable_start): Remove decl, since lisp.h does it now.
11312 (safe_bcopy): Remove decl; no longer has that name.
11313 (main): Coalesce #if into single bit of code, for simplicity.
11314 Cast pointers to uintptr_t, since standard libraries want integers
11315 and not pointers.
11316 * lisp.h (__executable_start): New decl.
11317
11318 2012-05-31 Glenn Morris <rgm@gnu.org>
11319
11320 * image.c (Fimagemagick_types): Doc fix.
11321
11322 2012-05-30 Jim Meyering <meyering@redhat.com>
11323
11324 * callproc.c (Fcall_process_region): Include directory component
11325 in mkstemp error message (Bug#11586).
11326
11327 2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
11328
11329 * alloc.c, lisp.h (make_pure_vector): Now static.
11330
11331 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
11332
11333 * eval.c (Fdefun, Fdefmacro, Vmacro_declaration_function):
11334 Move to byte-run.el.
11335 (Fautoload): Do the hash-doc more carefully.
11336 * data.c (Fdefalias): Purify definition, except for keymaps.
11337 (Qdefun): Move from eval.c.
11338 * lisp.h (Qdefun): Remove.
11339 * lread.c (read1): Tiny simplification.
11340
11341 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
11342
11343 Do not create empty overlays with the evaporate property (Bug#9642).
11344 * buffer.c (Fmove_overlay): Reinstate the earlier fix for
11345 Bug#9642, but explicitly check that the buffer the overlay would
11346 be moved to is live and rearrange lines to make sure that errors
11347 will not put the overlay in an inconsistent state.
11348 (Fdelete_overlay): Cosmetics.
11349
11350 2012-05-28 Eli Zaretskii <eliz@gnu.org>
11351
11352 * w32term.c (my_bring_window_to_top): New function.
11353 (x_raise_frame): Use handle returned by DeferWindowPos, which
11354 could be different from the original one.
11355 Call my_bring_window_to_top instead of my_set_foreground_window.
11356 (Bug#11513)
11357
11358 * w32fns.c (w32_wnd_proc): Accept and process WM_EMACS_BRINGTOTOP
11359 by calling BringWindowToTop.
11360
11361 * w32term.h (WM_EMACS_BRINGTOTOP): New message.
11362 (WM_EMACS_END): Increase by one.
11363
11364 2012-05-28 Paul Eggert <eggert@cs.ucla.edu>
11365
11366 * bidi.c (bidi_mirror_char): Put eassert before conversion to int.
11367 This avoids undefined behavior that might cause the eassert
11368 to not catch an out-of-range value.
11369
11370 2012-05-28 Juanma Barranquero <lekktu@gmail.com>
11371
11372 * makefile.w32-in ($(BLD)/w32inevt.$(O), $(BLD)/w32console.$(O)):
11373 Update dependencies.
11374
11375 2012-05-27 Eli Zaretskii <eliz@gnu.org>
11376
11377 * bidi.c (bidi_mirror_char): Fix last change.
11378
11379 2012-05-27 Andreas Schwab <schwab@linux-m68k.org>
11380
11381 * unexmacosx.c (copy_data_segment): Truncate after 16 characters
11382 when referring to sectname field in printf format.
11383
11384 2012-05-27 Paul Eggert <eggert@cs.ucla.edu>
11385
11386 * lisp.h [REL_ALLOC]: Omit duplicate prototypes.
11387 Only r_alloc_inhibit_buffer_relocation needed to be added;
11388 the others were already declared.
11389
11390 * bidi.c (bidi_mirror_char): Don't possibly truncate the integer
11391 before checking whether it's out of range. Put the check inside
11392 eassert. See
11393 <http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00485.html>.
11394
11395 2012-05-27 Ken Brown <kbrown@cornell.edu>
11396
11397 * callproc.c (Fcall_process): Restore a line that was accidentally
11398 commented out in the 2011-02-13 change (bug#11547).
11399
11400 2012-05-27 Eli Zaretskii <eliz@gnu.org>
11401
11402 * lisp.h [REL_ALLOC]: Add prototypes for external functions
11403 defined on ralloc.c.
11404
11405 * buffer.c [REL_ALLOC]: Remove prototypes of
11406 r_alloc_reset_variable, r_alloc, r_re_alloc, and r_alloc_free,
11407 they are now on lisp.h.
11408
11409 * ralloc.c (r_alloc_inhibit_buffer_relocation): New function.
11410
11411 * search.c (search_buffer): Use it to inhibit relocation of buffer
11412 text while re_search_2 is doing its job, because re_search_2 is
11413 passed C pointers to buffer text. (Bug#11519)
11414
11415 * msdos.c (internal_terminal_init) <Vwindow_system_version>:
11416 Update value to 24.
11417
11418 * xdisp.c (move_it_to): Under MOVE_TO_Y, when restoring iterator
11419 state after an additional call to move_it_in_display_line_to, keep
11420 the values of it->max_ascent and it->max_descent found for the
11421 entire line.
11422 (pos_visible_p): Revert the comparison against bottom_y to what it
11423 was in revid eliz@gnu.org-20120513182235-4p6386j761ld0nwb.
11424 (Bug#11464)
11425
11426 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
11427
11428 Fix coding-related core dumps with gcc -ftrapv.
11429 The code was computing A - B, where A and B are pointers, and B is
11430 random garbage. This can lead to core dumps on platforms that
11431 have special pointer registers, and it also leads to core dumps on
11432 x86-64 when compiled with gcc -ftrapv. The fix is to compute
11433 A - B only when B is initialized properly.
11434 * coding.c (coding_set_source, coding_set_destination): Return void.
11435 (coding_change_source, coding_change_destinations): New functions,
11436 with the old behaviors of coding_set_source and coding_set_destination.
11437 All callers that need an offset changed to use these new functions.
11438
11439 2012-05-26 Glenn Morris <rgm@gnu.org>
11440
11441 * nsterm.m (ns_init_paths): Don't mess with INFOPATH. (Bug#2791)
11442
11443 2012-05-26 Eli Zaretskii <eliz@gnu.org>
11444
11445 Extend mouse support on W32 text-mode console.
11446 * xdisp.c (draw_row_with_mouse_face):
11447 Call tty_draw_row_with_mouse_face for WINDOWSNT as well.
11448
11449 * w32console.c: Include window.h.
11450 (w32con_write_glyphs_with_face, tty_draw_row_with_mouse_face):
11451 New functions.
11452 (initialize_w32_display): Initialize mouse-highlight data.
11453
11454 * w32inevt.c: Include termchar.h and window.h.
11455 (do_mouse_event): Support mouse-autoselect-window. When the mouse
11456 moves, call note_mouse_highlight. If help_echo changed, call
11457 gen_help_event to produce help-echo message in the echo area.
11458 Call clear_mouse_face if mouse_face_hidden is set in the mouse
11459 highlight info.
11460
11461 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
11462
11463 * lread.c (read1): Simplify slightly to avoid an overflow warning
11464 with GCC 4.7.0 on x86-64.
11465
11466 2012-05-26 Eli Zaretskii <eliz@gnu.org>
11467
11468 * bidi.c (bidi_mirror_char): Revert last change: an int is
11469 definitely wide enough here.
11470
11471 2012-05-25 Paul Eggert <eggert@cs.ucla.edu>
11472
11473 Fix integer width and related bugs (Bug#9874).
11474 * alloc.c (pure_bytes_used_lisp, pure_bytes_used_non_lisp):
11475 (allocate_vectorlike, buffer_memory_full, struct sdata, SDATA_SIZE)
11476 (string_bytes, check_sblock, allocate_string_data):
11477 (compact_small_strings, Fmake_bool_vector, make_string)
11478 (make_unibyte_string, make_multibyte_string)
11479 (make_string_from_bytes, make_specified_string)
11480 (allocate_vectorlike, Fmake_vector, find_string_data_in_pure)
11481 (make_pure_string, make_pure_c_string, make_pure_vector, Fpurecopy)
11482 (mark_vectorlike):
11483 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11484 (allocate_pseudovector):
11485 Use int, not EMACS_INT, where int is wide enough.
11486 (inhibit_garbage_collection, Fgarbage_collect):
11487 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11488 * bidi.c (bidi_mirror_char): Use EMACS_INT, not int, where
11489 int might not be wide enough.
11490 (bidi_cache_search, bidi_cache_find, bidi_init_it)
11491 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
11492 (bidi_at_paragraph_end, bidi_find_paragraph_start)
11493 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
11494 (bidi_level_of_next_char, bidi_move_to_visually_next):
11495 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11496 * buffer.c (copy_overlays, Fgenerate_new_buffer_name)
11497 (Fkill_buffer, Fset_buffer_major_mode)
11498 (advance_to_char_boundary, Fbuffer_swap_text)
11499 (Fset_buffer_multibyte, overlays_at, overlays_in)
11500 (overlay_touches_p, struct sortvec, record_overlay_string)
11501 (overlay_strings, recenter_overlay_lists)
11502 (adjust_overlays_for_insert, adjust_overlays_for_delete)
11503 (fix_start_end_in_overlays, fix_overlays_before, modify_overlay)
11504 (Fmove_overlay, Fnext_overlay_change, Fprevious_overlay_change)
11505 (Foverlay_recenter, last_overlay_modification_hooks_used)
11506 (report_overlay_modification, evaporate_overlays, enlarge_buffer_text):
11507 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11508 (validate_region): Omit unnecessary test for b <= e,
11509 since that's guaranteed by the previous test.
11510 (adjust_overlays_for_delete): Avoid pos + length overflow.
11511 (Fmove_overlay, Fdelete_overlay, add_overlay_mod_hooklist)
11512 (report_overlay_modification):
11513 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11514 (Foverlays_at, Fnext_overlay_change, Fprevious_overlay_change):
11515 Omit pointer cast, which isn't needed anyway, and doesn't work
11516 after the EMACS_INT -> ptrdiff_t change.
11517 (Fmove_overlay): Clip BEG and END to ptrdiff_t to avoid overflow.
11518 * buffer.h: Adjust decls to match defn changes elsewhere.
11519 (struct buffer_text, struct buffer):
11520 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11521 Use EMACS_INT, not int, where int might not be wide enough.
11522 * bytecode.c (unmark_byte_stack, exec_byte_code): Use ptrdiff_t,
11523 not int, to avoid needless 32-bit limit on 64-bit hosts.
11524 (exec_byte_code): Use tighter memory-full test, one that checks
11525 for alloca overflow. Don't compute the address of the object just
11526 before an array, as that's not portable. Use EMACS_INT, not
11527 ptrdiff_t or int, where ptrdiff_t or int might not be wide enough.
11528 * callint.c (Fcall_interactively):
11529 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11530 * callproc.c (call_process_kill, Fcall_process):
11531 Don't assume pid_t fits into an Emacs fixnum.
11532 (call_process_cleanup, Fcall_process, child_setup):
11533 Don't assume pid_t fits into int.
11534 (call_process_cleanup, Fcall_process, delete_temp_file)
11535 (Fcall_process_region):
11536 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11537 (Fcall_process): Simplify handling of volatile integers.
11538 Use int, not EMACS_INT, where int will do.
11539 * casefiddle.c (casify_object, casify_region, operate_on_word)
11540 (Fupcase_word, Fdowncase_word, Fcapitalize_word):
11541 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11542 (casify_object): Avoid integer overflow when overallocating buffer.
11543 * casetab.c (set_identity, shuffle): Prefer int to unsigned when
11544 either works. Use lint_assume to convince GCC 4.6.1 that it's OK.
11545 * category.c (Fchar_category_set): Don't assume fixnum fits in int.
11546 * category.h (CATEGORYP): Don't assume arg is nonnegative.
11547 * ccl.c (GET_CCL_INT): Remove; no longer needed, since the
11548 integers are now checked earlier. All uses replaced with XINT.
11549 (ccl_driver):
11550 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11551 For CCL_MapSingle, check that content and value are in int range.
11552 (ccl_driver, Fregister_code_conversion_map):
11553 Check that Vcode_version_map_vector is a vector.
11554 (resolve_symbol_ccl_program): Check that vector header is in range.
11555 Always copy the vector, so that we can check its contents reliably
11556 now rather than having to recheck each instruction as it's being
11557 executed. Check that vector words fit in 'int'.
11558 (ccl_get_compiled_code, Fregister_ccl_program)
11559 (Fregister_code_conversion_map): Use ptrdiff_t, not int, for
11560 program indexes, to avoid needless 32-bit limit on 64-bit hosts.
11561 (Fccl_execute, Fccl_execute_on_string): Check that initial reg
11562 contents are in range.
11563 (Fccl_execute_on_string): Check that status is in range.
11564 * ccl.h (struct ccl_program.idx): Now ptrdiff_t, not int.
11565 * character.c (char_resolve_modifier_mask, Fchar_resolve_modifiers):
11566 Accept and return EMACS_INT, not int, because callers can pass values
11567 out of 'int' range.
11568 (c_string_width, strwidth, lisp_string_width, chars_in_text)
11569 (multibyte_chars_in_text, parse_str_as_multibyte)
11570 (str_as_multibyte, count_size_as_multibyte, str_to_multibyte)
11571 (str_as_unibyte, str_to_unibyte, string_count_byte8)
11572 (string_escape_byte8, Fget_byte):
11573 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11574 (Funibyte_string): Use CHECK_RANGED_INTEGER, not CHECK_NATNUM, to
11575 avoid mishandling large integers.
11576 * character.h: Adjust decls to match defn changes elsewhere.
11577 * charset.c (load_charset_map_from_file, find_charsets_in_text)
11578 (Ffind_charset_region):
11579 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11580 (load_charset_map_from_file): Redo idx calculation to avoid overflow.
11581 (load_charset_map_from_vector, Fdefine_charset_internal):
11582 Don't assume fixnum fits in int.
11583 (load_charset_map_from_vector, Fmap_charset_chars):
11584 Remove now-unnecessary CHECK_NATNUMs.
11585 (Fdefine_charset_internal): Check ranges here, more carefully.
11586 Don't rely on undefined behavior with signed left shift overflow.
11587 Don't assume unsigned int fits into fixnum, or that fixnum fits
11588 into unsigned int. Don't require max_code to be a valid fixnum;
11589 that's not true for gb10830 4-byte on a 32-bit host. Allow
11590 invalid_code to be a cons, for the same reason. Require code_offset
11591 to be a character. Avoid int overflow if max_char is close
11592 to INT_MAX.
11593 (CODE_POINT_TO_INDEX): On 32-bit hosts, return int, not unsigned;
11594 this is intended anyway and avoids some undefined behavior.
11595 (load_charset_map): Pass unsigned, not int, as 2nd arg of
11596 INDEX_TO_CODE_POINT, as that's what it expects.
11597 (Funify_charset, encode_char): Don't stuff unsigned vals into int vars.
11598 * charset.h (DECODE_CHAR): Return int, not unsigned;
11599 this is what was intended anyway, and it avoids undefined behavior.
11600 (CHARSET_OFFSET): Remove unused macro, instead of fixing its
11601 integer-overflow issues.
11602 (ENCODE_CHAR): Return unsigned on all hosts, not just on 32-bit hosts.
11603 Formerly, it returned EMACS_INT on 64-bit hosts in the common case
11604 where the argument is EMACS_INT, and this behavior is not intended.
11605 * chartab.c (Fmake_char_table, Fset_char_table_range)
11606 (uniprop_get_decoder, uniprop_get_encoder):
11607 Don't assume fixnum fits in int.
11608 * cmds.c (move_point): New function, that does the gist of
11609 Fforward_char and Fbackward_char, but does so while checking
11610 for integer overflow more accurately.
11611 (Fforward_char, Fbackward_char): Use it.
11612 (Fforward_line, Fend_of_line, internal_self_insert)
11613 (internal_self_insert):
11614 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11615 Fix a FIXME, by checking for integer overflow when calculating
11616 target_clm and actual_clm.
11617 * coding.c (detect_coding_XXX, encode_coding_XXX, CODING_DECODE_CHAR)
11618 (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET, CODING_CHAR_CHARSET_P)
11619 (ASSURE_DESTINATION, coding_alloc_by_realloc)
11620 (coding_alloc_by_making_gap, alloc_destination)
11621 (detect_coding_utf_8, encode_coding_utf_8, decode_coding_utf_16)
11622 (encode_coding_utf_16, detect_coding_emacs_mule)
11623 (decode_coding_emacs_mule, encode_coding_emacs_mule)
11624 (detect_coding_iso_2022, decode_coding_iso_2022)
11625 (encode_invocation_designation, encode_designation_at_bol)
11626 (encode_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
11627 (decode_coding_sjis, decode_coding_big5, encode_coding_sjis)
11628 (encode_coding_big5, detect_coding_ccl, decode_coding_ccl)
11629 (encode_coding_ccl, encode_coding_raw_text)
11630 (detect_coding_charset, decode_coding_charset)
11631 (encode_coding_charset, detect_eol, decode_eol, produce_chars)
11632 (produce_composition, produce_charset, produce_annotation)
11633 (decode_coding, handle_composition_annotation)
11634 (handle_charset_annotation, consume_chars, decode_coding_gap)
11635 (decode_coding_object, encode_coding_object, detect_coding_system)
11636 (Ffind_coding_systems_region_internal, Fcheck_coding_systems_region)
11637 (code_convert_region, code_convert_string)
11638 (Fdefine_coding_system_internal)
11639 (coding_set_source, coding_set_destination):
11640 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11641 (setup_iso_safe_charsets, consume_chars, Funencodable_char_position)
11642 (Fdefine_coding_system_internal):
11643 Don't assume fixnums fit in int.
11644 (decode_coding_gap, decode_coding_object, encode_coding_object)
11645 (Fread_coding_system, Fdetect_coding_region)
11646 (Funencodable_char_position, Fcheck_coding_systems_region)
11647 (get_translation, handle_composition_annotation, consume_chars):
11648 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11649 (consume_chars): Rewrite to not calculate an address outside buffer.
11650 (Ffind_operation_coding_system): NATNUMP can eval its arg twice.
11651 Don't access memory outside of the args array.
11652 (Fdefine_coding_system_internal): Check for charset-id overflow.
11653 (ENCODE_ISO_CHARACTER): Use unsigned, not int, to store the unsigned
11654 result of ENCODE_CHAR.
11655 * coding.h: Adjust decls to match defn changes elsewhere.
11656 (struct coding_system):
11657 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11658 * composite.c (get_composition_id, find_composition)
11659 (run_composition_function, update_compositions)
11660 (compose_text, composition_gstring_put_cache)
11661 (composition_gstring_p, composition_gstring_width)
11662 (fill_gstring_header, fill_gstring_body, autocmp_chars)
11663 (composition_compute_stop_pos, composition_reseat_it)
11664 (composition_update_it, struct position_record)
11665 (find_automatic_composition, composition_adjust_point)
11666 (Fcomposition_get_gstring, Ffind_composition_internal):
11667 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11668 (update_compositions):
11669 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11670 * composite.h: Adjust decls to match defn changes elsewhere.
11671 (struct composition):
11672 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11673 * data.c (let_shadows_buffer_binding_p, let_shadows_global_binding_p):
11674 Do not attempt to compute the address of the object just before a
11675 buffer; this is not portable.
11676 (Faref, Faset):
11677 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11678 (Faset): Use int, not EMACS_INT, where int is wide enough.
11679 (Fstring_to_number): Don't assume fixnums fit in int.
11680 (Frem): Don't assume arg is nonnegative.
11681 * dbusbind.c (xd_append_arg): Check for integers out of range.
11682 (Fdbus_call_method): Don't overflow the timeout int.
11683 (extract_signed, extract_unsigned): New functions.
11684 (XD_CHECK_DBUS_SERIAL): Remove; superseded by extract_unsigned.
11685 (xd_get_connection_references): Return ptrdiff_t, not int.
11686 All uses changed.
11687 (xd_signature, xd_append_arg, xd_retrieve_arg, Fdbus_message_internal)
11688 (xd_read_message_1):
11689 Use int, not unsigned, where the dbus API uses int.
11690 (Fdbus_message_internal): Don't overflow mtype.
11691 (syms_of_dbusbind): Allocate right-sized buffer for integers.
11692 * dired.c (directory_files_internal, file_name_completion, scmp)
11693 (file_name_completion_stat):
11694 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11695 (file_name_completion): Don't overflow matchcount.
11696 (file_name_completion_stat): Use SAFE_ALLOCA, not alloca.
11697 * dispextern.h: Adjust decls to match defn changes elsewhere.
11698 (struct text_pos, struct glyph, struct bidi_saved_info)
11699 (struct bidi_string_data, struct bidi_it, struct composition_it)
11700 (struct it):
11701 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11702 (struct display_pos, struct composition_it, struct it):
11703 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11704 * dispnew.c (increment_matrix_positions)
11705 (increment_row_positions, mode_line_string)
11706 (marginal_area_string):
11707 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11708 (change_frame_size_1, Fredisplay, Fframe_or_buffer_changed_p):
11709 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11710 (duration_to_sec_usec): New function, to check for overflow better.
11711 (Fsleep_for, sit_for): Use it.
11712 * doc.c (get_doc_string, store_function_docstring):
11713 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11714 (get_doc_string, Fsnarf_documentation):
11715 Use int, not EMACS_INT, where int is wide enough.
11716 (get_doc_string):
11717 Use SAFE_ALLOCA, not alloca.
11718 Check for overflow when converting EMACS_INT to off_t.
11719 * doprnt.c (doprnt):
11720 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11721 * editfns.c (init_editfns, Fuser_uid, Fuser_real_uid):
11722 Don't assume uid_t fits into fixnum.
11723 (buildmark, Fgoto_char, overlays_around, find_field, Fdelete_field)
11724 (Ffield_string, Ffield_string_no_properties, Ffield_beginning)
11725 (Ffield_end, Fconstrain_to_field, Fline_beginning_position)
11726 (Fline_end_position, Fprevious_char, Fchar_after, Fchar_before)
11727 (general_insert_function)
11728 (Finsert_char, make_buffer_string, make_buffer_string_both)
11729 (update_buffer_properties, Fbuffer_substring)
11730 (Fbuffer_substring_no_properties, Fcompare_buffer_substrings)
11731 (Fsubst_char_in_region, check_translation)
11732 (Ftranslate_region_internal, save_restriction_restore, Fformat)
11733 (transpose_markers, Ftranspose_regions):
11734 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11735 (clip_to_bounds): Move to lisp.h as an inline function).
11736 (Fconstrain_to_field): Don't assume integers are nonnegative.
11737 (Fline_beginning_position, Fsave_excursion, Fsave_current_buffer):
11738 (Fsubst_char_in_region, Fsave_restriction):
11739 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11740 (Femacs_pid): Don't assume pid_t fits into fixnum.
11741 (lo_time): Use int, not EMACS_INT, when int suffices.
11742 (lisp_time_argument): Check for usec out of range.
11743 (Fencode_time): Don't assume fixnum fits in int.
11744 (Fuser_login_name, Fuser_full_name): Signal an error
11745 if a uid argument is out of range, rather than relying on
11746 undefined behavior.
11747 (Fformat_time_string): Remove now-unnecessary check.
11748 lisp_time_argument checks for out-of-range usec now.
11749 Use ptrdiff_t, not size_t, where ptrdiff_t will do.
11750 * emacs.c (gdb_valbits, gdb_gctypebits): Now int, not EMACS_INT.
11751 (gdb_data_seg_bits): Now uintptr_t, not EMACS_INT.
11752 (PVEC_FLAG, gdb_array_mark_flag): Now ptrdiff_t, not EMACS_INT.
11753 (init_cmdargs, Fdump_emacs):
11754 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11755 (Fkill_emacs): Don't assume fixnum fits in int; instead, take just
11756 the bottom (typically) 32 bits of the fixnum.
11757 * eval.c (specpdl_size, call_debugger):
11758 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11759 (when_entered_debugger, Fbacktrace_debug):
11760 Don't assume fixnum can fit in int.
11761 (Fdefvaralias, Fdefvar): Do not attempt to compute the address of
11762 the object just before a buffer; this is not portable.
11763 (FletX, Flet, Funwind_protect, do_autoload, Feval, funcall_lambda)
11764 (grow_specpdl, unbind_to):
11765 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11766 (Fapply, apply_lambda): Don't assume ptrdiff_t can hold fixnum.
11767 (grow_specpdl): Simplify allocation by using xpalloc.
11768 (Fprog1, Fprog2): Don't assume list length fits in int. Simplify.
11769 * fileio.c (Ffind_file_name_handler, Fcopy_file, Frename_file)
11770 (Finsert_file_contents, Fwrite_region, Fdo_auto_save):
11771 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11772 (Ffind_file_name_handler, non_regular_inserted, Finsert_file_contents)
11773 (a_write, e_write):
11774 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11775 (Fcopy_file, non_regular_nbytes, read_non_regular)
11776 (Finsert_file_contents):
11777 Use int, not EMACS_INT, where int is wide enough.
11778 (READ_BUF_SIZE): Verify that it fits in int.
11779 (Finsert_file_contents): Check that counts are in proper range,
11780 rather than assuming fixnums fit into ptrdiff_t etc.
11781 Don't assume fixnums fit into int.
11782 * floatfns.c (Fexpt): Avoid undefined signed * signed overflow.
11783 * fns.c (Fcompare_strings, Fstring_lessp, struct textprop_rec, concat)
11784 (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
11785 (string_char_to_byte, string_byte_to_char)
11786 (string_make_multibyte, string_to_multibyte)
11787 (string_make_unibyte, Fstring_as_unibyte, Fstring_as_multibyte)
11788 (Fstring_to_unibyte, Fsubstring, Fsubstring_no_properties)
11789 (substring_both, Fdelete, internal_equal, Ffillarray)
11790 (Fclear_string, mapcar1)
11791 (Fbase64_encode_region, Fbase64_encode_string, base64_encode_1)
11792 (Fbase64_decode_region, Fbase64_decode_string, base64_decode_1)
11793 (larger_vector, make_hash_table, maybe_resize_hash_table)
11794 (hash_lookup, hash_remove_from_table, hash_clear, sweep_weak_table)
11795 (Fmaphash, secure_hash):
11796 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11797 (concat): Check for string index and length overflow.
11798 (Fmapconcat): Don't assume fixnums fit into ptrdiff_t.
11799 (Frequire):
11800 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11801 (larger_vector): New API (vec, incr_min, size_max) replaces old
11802 one (vec, new_size, init). This catches size overflow.
11803 INIT was removed because it was always Qnil.
11804 All callers changed.
11805 (INDEX_SIZE_BOUND): New macro, which calculates more precisely
11806 the upper bound on a hash table index size.
11807 (make_hash_table, maybe_resize_hash_table): Use it.
11808 (secure_hash): Computer start_byte and end_byte only after
11809 they're known to be in ptrdiff_t range.
11810 * font.c (font_intern_prop, font_at, font_range, Ffont_shape_gstring)
11811 (Ffont_get_glyphs, Ffont_at):
11812 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11813 (font_style_to_value, font_prop_validate_style, font_expand_wildcards)
11814 (Flist_fonts, Fopen_font):
11815 Don't assume fixnum can fit in int.
11816 (check_gstring): Don't assume index can fit in int.
11817 (font_match_p): Check that fixnum is a character, not a nonnegative
11818 fixnum, since the later code needs to stuff it into an int.
11819 (font_find_for_lface): Use SAFE_ALLOCA_LISP, not alloca.
11820 (font_fill_lglyph_metrics): Use unsigned, not EMACS_INT, to avoid
11821 conversion overflow issues.
11822 (Fopen_font): Check for integer out of range.
11823 (Ffont_get_glyphs): Don't assume index can fit in int.
11824 * font.h: Adjust decls to match defn changes elsewhere.
11825 * fontset.c (reorder_font_vector): Redo score calculation to avoid
11826 integer overflow.
11827 (num_auto_fontsets, fontset_from_font): Use ptrdiff_t, not
11828 printmax_t, where ptrdiff_t is wide enough.
11829 (Finternal_char_font):
11830 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11831 * frame.c (Fset_mouse_position, Fset_mouse_pixel_position)
11832 (Fset_frame_height, Fset_frame_width, Fset_frame_size)
11833 (Fset_frame_position, x_set_frame_parameters)
11834 (x_set_line_spacing, x_set_border_width)
11835 (x_set_internal_border_width, x_set_alpha, x_figure_window_size):
11836 Check that fixnums are in proper range for system types.
11837 (frame_name_fnn_p, Fframe_parameter, Fmodify_frame_parameters):
11838 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11839 (Fmodify_frame_parameters): Don't assume fixnum fits in int.
11840 Use SAFE_ALLOCA_LISP, not alloca.
11841 * frame.h (struct frame): Use intptr_t, not EMACS_INT, where
11842 intptr_t is wide enough.
11843 * fringe.c (lookup_fringe_bitmap, get_logical_fringe_bitmap)
11844 (Fdefine_fringe_bitmap): Don't assume fixnum fits in int.
11845 (Ffringe_bitmaps_at_pos): Don't assume index fits in int.
11846 Check for fixnum out of range.
11847 * ftfont.c (ftfont_list): Don't assume index fits in int.
11848 Check that fixnums are in proper range for system types.
11849 (ftfont_shape_by_flt):
11850 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11851 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
11852 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11853 (Fgnutls_error_fatalp, Fgnutls_error_string, Fgnutls_boot):
11854 Check that fixnums are in proper range for system types.
11855 * gnutls.h: Adjust decls to match defn changes elsewhere.
11856 * gtkutil.c (xg_dialog_run):
11857 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11858 (update_frame_tool_bar):
11859 Check that fixnums are in proper range for system types.
11860 * image.c (parse_image_spec): Redo count calculation to avoid overflow.
11861 (lookup_image): Check that fixnums are in range for system types.
11862 * indent.c (last_known_column, last_known_column_point):
11863 (current_column_bol_cache):
11864 (skip_invisible, current_column, check_display_width):
11865 (check_display_width, scan_for_column, current_column_1)
11866 (Findent_to, Fcurrent_indentation, position_indentation)
11867 (indented_beyond_p, Fmove_to_column, compute_motion):
11868 (Fcompute_motion, Fvertical_motion):
11869 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11870 (last_known_column_modified): Use EMACS_INT, not int.
11871 (check_display_width):
11872 (Fcompute_motion):
11873 Check that fixnums and floats are in proper range for system types.
11874 (compute_motion): Don't assume index or fixnum fits in int.
11875 (compute_motion, Fcompute_motion):
11876 Use int, not EMACS_INT, when it is wide enough.
11877 (vmotion): Omit local var start_hpos that is always 0; that way
11878 we don't need to worry about overflow in expressions involving it.
11879 * indent.h: Adjust decls to match defn changes elsewhere.
11880 (struct position):
11881 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11882 Use int, not EMACS_INT, where int is wide enough.
11883 Remove unused members ovstring_chars_done and tab_offset;
11884 all uses removed.
11885 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
11886 (adjust_markers_for_delete, adjust_markers_for_insert, adjust_point)
11887 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
11888 (make_gap, copy_text, insert, insert_and_inherit)
11889 (insert_before_markers, insert_before_markers_and_inherit)
11890 (insert_1, count_combining_before, count_combining_after)
11891 (insert_1_both, insert_from_string)
11892 (insert_from_string_before_markers, insert_from_string_1)
11893 (insert_from_gap, insert_from_buffer, insert_from_buffer_1)
11894 (adjust_after_replace, adjust_after_insert, replace_range)
11895 (replace_range_2, del_range, del_range_1, del_range_byte)
11896 (del_range_both, del_range_2, modify_region)
11897 (prepare_to_modify_buffer, signal_before_change)
11898 (signal_after_change, Fcombine_after_change_execute):
11899 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11900 * intervals.c (traverse_intervals, rotate_right, rotate_left)
11901 (balance_an_interval, split_interval_right, split_interval_left)
11902 (find_interval, next_interval, update_interval)
11903 (adjust_intervals_for_insertion, delete_node, delete_interval)
11904 (interval_deletion_adjustment, adjust_intervals_for_deletion)
11905 (static_offset_intervals, offset_intervals)
11906 (merge_interval_right, merge_interval_left, make_new_interval)
11907 (graft_intervals_into_buffer, temp_set_point_both)
11908 (temp_set_point, set_point, adjust_for_invis_intang)
11909 (set_point_both, move_if_not_intangible, get_property_and_range)
11910 (get_local_map, copy_intervals, copy_intervals_to_string)
11911 (compare_string_intervals, set_intervals_multibyte_1):
11912 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11913 * intervals.h: Adjust decls to match defn changes elsewhere.
11914 (struct interval):
11915 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11916 * keyboard.c (this_command_key_count, this_single_command_key_start)
11917 (before_command_key_count, before_command_echo_length, echo_now)
11918 (echo_length, recursive_edit_1, Frecursive_edit, Ftrack_mouse)
11919 (command_loop_1, safe_run_hooks, read_char, timer_check_2)
11920 (menu_item_eval_property, read_key_sequence, Fread_key_sequence)
11921 (Fread_key_sequence_vector, Fexecute_extended_command, Fsuspend_emacs):
11922 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11923 (last_non_minibuf_size, last_point_position, echo_truncate)
11924 (command_loop_1, adjust_point_for_property, read_char, gen_help_event)
11925 (make_lispy_position, make_lispy_event, parse_modifiers_uncached)
11926 (parse_modifiers, modify_event_symbol, Fexecute_extended_command)
11927 (stuff_buffered_input):
11928 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11929 (last_auto_save, command_loop_1, read_char):
11930 Use EMACS_INT, not int, to avoid integer overflow.
11931 (record_char): Avoid overflow in total_keys computation.
11932 (parse_modifiers_uncached): Redo index calculation to avoid overflow.
11933 * keyboard.h: Adjust decls to match defn changes elsewhere.
11934 * keymap.c (Fdefine_key, Fcurrent_active_maps, accessible_keymaps_1)
11935 (Fkey_description, Fdescribe_vector, Flookup_key):
11936 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11937 (click_position): New function, to check that positions are in range.
11938 (Fcurrent_active_maps):
11939 (describe_command):
11940 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11941 (Faccessible_keymaps, Fkey_description):
11942 (preferred_sequence_p):
11943 Don't assume fixnum can fit into int.
11944 (Fkey_description): Use SAFE_ALLOCA_LISP, not alloca.
11945 Check for integer overflow in size calculations.
11946 (Ftext_char_description): Use CHECK_CHARACTER, not CHECK_NUMBER, to
11947 avoid mishandling large integers.
11948 * lisp.h: Adjust decls to match defn changes elsewhere.
11949 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, struct Lisp_String)
11950 (struct vectorlike_header, struct Lisp_Subr, struct Lisp_Hash_Table)
11951 (struct Lisp_Marker):
11952 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11953 (clip_to_bounds): Now an inline function, moved here from editfns.c.
11954 (GLYPH_CODE_P): Check for overflow in system types, subsuming the
11955 need for GLYPH_CODE_CHAR_VALID_P and doing proper checking ourselves.
11956 All callers changed.
11957 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE):
11958 Assume the arg has valid form, since it always does.
11959 (TYPE_RANGED_INTEGERP): Avoid bug when checking against a wide
11960 unsigned integer system type.
11961 (CHECK_RANGED_INTEGER, CHECK_TYPE_RANGED_INTEGER): New macros.
11962 (struct catchtag, specpdl_size, SPECPDL_INDEX, USE_SAFE_ALLOCA):
11963 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11964 (struct catchtag): Use EMACS_INT, not int, since it may be a fixnum.
11965 (duration_to_sec_usec): New decl.
11966 * lread.c (read_from_string_index, read_from_string_index_byte)
11967 (read_from_string_limit, readchar, unreadchar, openp)
11968 (read_internal_start, read1, oblookup):
11969 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11970 (Fload, readevalloop, Feval_buffer, Feval_region):
11971 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11972 (openp): Check for out-of-range argument to 'access'.
11973 (read1): Use int, not EMACS_INT, where int is wide enough.
11974 Don't assume fixnum fits into int.
11975 Fix off-by-one error that can read outside a buffer.
11976 (read_filtered_event): Use duration_to_sec_usec
11977 to do proper overflow checking on durations.
11978 * macros.c (Fstart_kbd_macro): Use xpalloc to check for overflow
11979 in size calculation.
11980 (Fexecute_kbd_macro):
11981 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11982 * marker.c (cached_charpos, cached_bytepos, CONSIDER)
11983 (byte_char_debug_check, buf_charpos_to_bytepos, verify_bytepos)
11984 (buf_bytepos_to_charpos, Fset_marker, set_marker_restricted)
11985 (set_marker_both, set_marker_restricted_both, marker_position)
11986 (marker_byte_position, Fbuffer_has_markers_at):
11987 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11988 (Fset_marker, set_marker_restricted): Don't assume fixnum fits in int.
11989 * menu.c (ensure_menu_items): Rename from grow_menu_items.
11990 It now merely ensures that the menu is large enough, without
11991 necessarily growing it, as this avoids some integer overflow issues.
11992 All callers changed.
11993 (keymap_panes, parse_single_submenu, Fx_popup_menu):
11994 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11995 (parse_single_submenu, Fx_popup_menu): Don't assume fixnum fits in int.
11996 Use SAFE_ALLOCA_LISP, not alloca.
11997 (find_and_return_menu_selection): Avoid unnecessary casts of pointers
11998 to EMACS_INT. Check that fixnums are in proper range for system types.
11999 * minibuf.c (minibuf_prompt_width, string_to_object)
12000 (Fminibuffer_contents, Fminibuffer_contents_no_properties)
12001 (Fminibuffer_completion_contents, Ftry_completion, Fall_completions):
12002 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12003 (get_minibuffer, read_minibuf_unwind):
12004 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12005 (read_minibuf): Omit unnecessary arg BACKUP_N, which is always nil;
12006 this simplifies overflow checking. All callers changed.
12007 (read_minibuf, Fread_buffer, Ftry_completion, Fall_completions)
12008 (Ftest_completion):
12009 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12010 * nsfns.m (check_ns_display_info): Don't assume fixnum fits in long.
12011 (x_set_menu_bar_lines, x_set_tool_bar_lines, Fx_create_frame):
12012 Check that fixnums are in proper range for system types.
12013 (Fx_create_frame, Fx_show_tip):
12014 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12015 * nsfont.m (ns_findfonts, nsfont_list_family):
12016 Don't assume fixnum fits in long.
12017 * nsmenu.m (ns_update_menubar, ns_menu_show, ns_popup_dialog):
12018 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12019 (ns_update_menubar): Use intptr_t, not EMACS_INT, when intptr_t is
12020 wide enough.
12021 * nsselect.m (ns_get_local_selection, clean_local_selection_data):
12022 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12023 * print.c (print_buffer_size, print_buffer_pos, print_buffer_pos_byte)
12024 (PRINTDECLARE, PRINTPREPARE):
12025 (strout, print_string):
12026 (print, print_preprocess, print_check_string_charset_prop)
12027 (print_object):
12028 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12029 (PRINTDECLARE):
12030 (temp_output_buffer_setup, Fprin1_to_string, print_object):
12031 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12032 (PRINTPREPARE): Use int, not ptrdiff_t, where int is wide enough.
12033 (printchar, strout): Use xpalloc to catch size calculation overflow.
12034 (Fexternal_debugging_output): Don't overflow EMACS_INT->int conversion.
12035 (print_error_message): Use SAFE_ALLOCA, not alloca.
12036 (print_object): Use int, not EMACS_INT, where int is wide enough.
12037 (print_depth, new_backquote_output, print_number_index):
12038 Use ptrdiff_t, not int, where int might not be wide enough.
12039 * process.c (Fdelete_process): Don't assume pid fits into EMACS_INT.
12040 (Fset_process_window_size, Fformat_network_address)
12041 (get_lisp_to_sockaddr_size, set_socket_option, Fmake_network_process)
12042 (sigchld_handler):
12043 Check that fixnums are in proper range for system types.
12044 (Fsignal_process): Simplify by avoiding a goto.
12045 Check for process-ids out of pid_t range rather than relying on
12046 undefined behavior.
12047 (process_tick, update_tick): Use EMACS_INT, not int.
12048 (Fformat_network_address, read_process_output, send_process)
12049 (Fprocess_send_region, status_notify):
12050 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12051 (Fformat_network_address, Fmake_serial_process, Fmake_network_process)
12052 (wait_reading_process_output, read_process_output, exec_sentinel):
12053 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12054 (conv_lisp_to_sockaddr): Don't assume fixnums fit into int.
12055 (Faccept_process_output): Use duration_to_sec_usec to do proper
12056 overflow checking on durations.
12057 (emacs_get_tty_pgrp, Fprocess_running_child_p, process_send_signal):
12058 Don't assume pid_t fits in int.
12059 * process.h (struct Lisp_Process): Members tick and update_tick
12060 are now of type EMACS_INT, not int.
12061 * puresize.h (PURESIZE_RATIO): Shrink this to 8/6 on 32-bit hosts
12062 configured --with-wide-int.
12063 * scroll.c (calculate_scrolling, calculate_direct_scrolling)
12064 (line_ins_del): Use int, not EMACS_INT, where int is wide enough.
12065 * search.c (looking_at_1, string_match_1):
12066 (fast_string_match, fast_c_string_match_ignore_case)
12067 (fast_string_match_ignore_case, fast_looking_at, scan_buffer)
12068 (scan_newline, find_before_next_newline, search_command)
12069 (trivial_regexp_p, search_buffer, simple_search, boyer_moore)
12070 (set_search_regs, wordify):
12071 (Freplace_match):
12072 (Fmatch_data):
12073 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12074 (string_match_1, search_buffer, set_search_regs):
12075 (Fmatch_data):
12076 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12077 (wordify): Check for overflow in size calculation.
12078 (Freplace_match): Avoid potential buffer overflow in search_regs.start.
12079 (Fset_match_data): Don't assume fixnum fits in ptrdiff_t.
12080 Check that fixnums are in proper range for system types.
12081 * sound.c (struct sound_device)
12082 (wav_play, au_play, vox_write, alsa_period_size, alsa_write):
12083 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12084 (Fplay_sound_internal):
12085 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12086 * syntax.c (struct lisp_parse_state, find_start_modiff)
12087 (Finternal_describe_syntax_value, scan_lists, scan_sexps_forward):
12088 (Fparse_partial_sexp):
12089 Don't assume fixnums can fit in int.
12090 (struct lisp_parse_state, find_start_pos, find_start_value)
12091 (find_start_value_byte, find_start_begv)
12092 (update_syntax_table, char_quoted, dec_bytepos)
12093 (find_defun_start, prev_char_comend_first, back_comment):
12094 (scan_words, skip_chars, skip_syntaxes, forw_comment, Fforward_comment)
12095 (scan_lists, Fbackward_prefix_chars, scan_sexps_forward):
12096 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12097 (Finternal_describe_syntax_value): Check that match_lisp is a
12098 character, not an integer, since the code stuffs it into int.
12099 (scan_words, scan_sexps_forward):
12100 Check that fixnums are in proper range for system types.
12101 (Fforward_word):
12102 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12103 (scan_sexps_forward):
12104 Use CHARACTERP, not INTEGERP, since the value must fit into int.
12105 (Fparse_partial_sexp): Fix doc; element 8 is not ignored.
12106 * syntax.h: Adjust decls to match defn changes elsewhere.
12107 (struct gl_state_s):
12108 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12109 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Use PTRDIFF_MAX, not
12110 MOST_POSITIVE_FIXNUM.
12111 * sysdep.c (wait_for_termination_1, wait_for_termination)
12112 (interruptible_wait_for_termination, mkdir):
12113 Don't assume pid_t fits in int; on 64-bit AIX pid_t is 64-bit.
12114 (emacs_read, emacs_write):
12115 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12116 (system_process_attributes): Don't assume uid_t, gid_t, EMACS_INT,
12117 and double all fit in int.
12118 * term.c (set_tty_color_mode):
12119 Check that fixnums are in proper range for system types.
12120 * termhooks.h (struct input_event):
12121 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12122 * textprop.c (validate_interval_range, interval_of)
12123 (Fadd_text_properties, set_text_properties_1)
12124 (Fremove_text_properties, Fremove_list_of_text_properties)
12125 (Ftext_property_any, Ftext_property_not_all)
12126 (copy_text_properties, text_property_list, extend_property_ranges)
12127 (verify_interval_modification):
12128 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12129 (Fnext_single_char_property_change)
12130 (Fprevious_single_char_property_change):
12131 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12132 (copy_text_properties):
12133 Check for integer overflow in index calculation.
12134 * undo.c (last_boundary_position, record_point, record_insert)
12135 (record_delete, record_marker_adjustment, record_change)
12136 (record_property_change):
12137 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12138 (truncate_undo_list, Fprimitive_undo): Don't assume fixnum fits in int.
12139 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12140 * w32fns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
12141 (Fx_hide_tip, Fx_file_dialog):
12142 * w32menu.c (set_frame_menubar):
12143 Use ptrdiff_t, not int, for consistency with rest of code.
12144 * window.c (window_scroll_preserve_hpos, window_scroll_preserve_vpos)
12145 (select_window, Fdelete_other_windows_internal)
12146 (window_scroll_pixel_based, window_scroll_line_based)
12147 (Frecenter, Fset_window_configuration):
12148 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12149 (Fset_window_hscroll, run_window_configuration_change_hook)
12150 (set_window_buffer, temp_output_buffer_show, scroll_command)
12151 (Fscroll_other_window, Frecenter):
12152 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12153 (Fwindow_line_height, window_scroll, Fscroll_left, Fscroll_right):
12154 Don't assume fixnum fits in int.
12155 (Fset_window_scroll_bars):
12156 Check that fixnums are in proper range for system types.
12157 * xdisp.c (help_echo_pos, pos_visible_p, string_pos_nchars_ahead)
12158 (string_pos, c_string_pos, number_of_chars, init_iterator)
12159 (in_ellipses_for_invisible_text_p, init_from_display_pos)
12160 (compute_stop_pos, next_overlay_change, compute_display_string_pos)
12161 (compute_display_string_end, handle_face_prop)
12162 (face_before_or_after_it_pos, handle_invisible_prop)
12163 (handle_display_prop, handle_display_spec, handle_single_display_spec)
12164 (display_prop_intangible_p, string_buffer_position_lim)
12165 (string_buffer_position, handle_composition_prop, load_overlay_strings)
12166 (get_overlay_strings_1, get_overlay_strings)
12167 (iterate_out_of_display_property, forward_to_next_line_start)
12168 (back_to_previous_visible_line_start, reseat, reseat_to_string)
12169 (get_next_display_element, set_iterator_to_next)
12170 (get_visually_first_element, compute_stop_pos_backwards)
12171 (handle_stop_backwards, next_element_from_buffer)
12172 (move_it_in_display_line_to, move_it_in_display_line)
12173 (move_it_to, move_it_vertically_backward, move_it_by_lines)
12174 (add_to_log, message_dolog, message_log_check_duplicate)
12175 (message2, message2_nolog, message3, message3_nolog
12176 (with_echo_area_buffer, display_echo_area_1, resize_mini_window_1)
12177 (current_message_1, truncate_echo_area, truncate_message_1)
12178 (set_message, set_message_1, store_mode_line_noprop)
12179 (hscroll_window_tree, debug_delta, debug_delta_bytes, debug_end_vpos)
12180 (text_outside_line_unchanged_p, check_point_in_composition)
12181 (reconsider_clip_changes)
12182 (redisplay_internal, set_cursor_from_row, try_scrolling)
12183 (try_cursor_movement, set_vertical_scroll_bar, redisplay_window)
12184 (redisplay_window, find_last_unchanged_at_beg_row)
12185 (find_first_unchanged_at_end_row, row_containing_pos, try_window_id)
12186 (trailing_whitespace_p, find_row_edges, display_line)
12187 (RECORD_MAX_MIN_POS, Fcurrent_bidi_paragraph_direction)
12188 (display_mode_element, store_mode_line_string)
12189 (pint2str, pint2hrstr, decode_mode_spec)
12190 (display_count_lines, display_string, draw_glyphs)
12191 (x_produce_glyphs, x_insert_glyphs)
12192 (rows_from_pos_range, mouse_face_from_buffer_pos)
12193 (fast_find_string_pos, mouse_face_from_string_pos)
12194 (note_mode_line_or_margin_highlight, note_mouse_highlight):
12195 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12196 (safe_call, init_from_display_pos, handle_fontified_prop)
12197 (handle_single_display_spec, load_overlay_strings)
12198 (with_echo_area_buffer, setup_echo_area_for_printing)
12199 (display_echo_area, echo_area_display)
12200 (x_consider_frame_title, prepare_menu_bars, update_menu_bar)
12201 (update_tool_bar, hscroll_window_tree, redisplay_internal)
12202 (redisplay_window, dump_glyph_row, display_mode_line)
12203 (Fformat_mode_line, decode_mode_spec, on_hot_spot_p):
12204 (handle_display_spec, display_prop_string_p):
12205 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12206 (handle_single_display_spec, build_desired_tool_bar_string)
12207 (redisplay_tool_bar, scroll_window_tree, Fdump_glyph_matrix)
12208 (get_specified_cursor_type):
12209 Check that fixnums are in proper range for system types.
12210 (struct overlay_entry, resize_mini_window, Fdump_glyph_row)
12211 (Flookup_image_map):
12212 Don't assume fixnums fit in int.
12213 (compare_overlay_entries):
12214 Avoid mishandling comparisons due to subtraction overflow.
12215 (load_overlay_strings): Use SAFE_NALLOCA, not alloca.
12216 (last_escape_glyph_face_id, last_glyphless_glyph_face_id):
12217 (handle_tool_bar_click):
12218 Use int, not unsigned, since we prefer signed and the signedness
12219 doesn't matter here.
12220 (get_next_display_element, next_element_from_display_vector):
12221 Use int, not EMACS_INT, when int is wide enough.
12222 (start_hourglass): Use duration_to_sec_usec to do proper
12223 overflow checking on durations.
12224 * xfaces.c (Fbitmap_spec_p):
12225 Check that fixnums are in proper range for system types.
12226 (compare_fonts_by_sort_order):
12227 Avoid mishandling comparisons due to subtraction overflow.
12228 (Fx_family_fonts, realize_basic_faces):
12229 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12230 (Fx_family_fonts):
12231 Don't assume fixnum fits in int.
12232 Use SAFE_ALLOCA_LISP, not alloca.
12233 (merge_face_heights): Remove unnecessary cast to EMACS_INT.
12234 (Finternal_make_lisp_face): Don't allocate more than MAX_FACE_ID.
12235 (face_at_buffer_position, face_for_overlay_string)
12236 (face_at_string_position):
12237 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12238 (merge_faces): Use int, not EMACS_INT, where int is wide enough.
12239 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines, x_icon_verify)
12240 (Fx_show_tip):
12241 Check that fixnums are in proper range for system types.
12242 (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
12243 (Fx_hide_tip, Fx_file_dialog, Fx_select_font):
12244 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12245 (Fx_change_window_property): Don't assume fixnums fit in int.
12246 * xfont.c (xfont_chars_supported):
12247 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12248 * xmenu.c (Fx_popup_dialog, set_frame_menubar)
12249 (create_and_show_popup_menu, create_and_show_dialog, xmenu_show):
12250 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12251 * xml.c (parse_region):
12252 * xrdb.c (magic_file_p):
12253 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12254 * xselect.c (TRACE1): Don't assume pid_t promotes to int.
12255 (x_get_local_selection, x_reply_selection_request)
12256 (x_handle_selection_request, wait_for_property_change):
12257 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12258 (selection_data_to_lisp_data): Use short, not EMACS_INT, where
12259 short is wide enough.
12260 (x_send_client_event): Don't assume fixnum fits in int.
12261 * xterm.c (x_x_to_emacs_modifiers):
12262 Don't assume EMACS_INT overflows nicely into int.
12263 (x_emacs_to_x_modifiers): Use EMACS_INT, not int, because values
12264 may come from Lisp.
12265 (handle_one_xevent): NATNUMP can eval its arg twice.
12266 (x_connection_closed):
12267 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12268 * xterm.h: Adjust decls to match defn changes elsewhere.
12269 (struct scroll_bar): Use struct vectorlike_header
12270 rather than rolling our own approximation.
12271 (SCROLL_BAR_VEC_SIZE): Remove; not used.
12272
12273 2012-05-25 Glenn Morris <rgm@gnu.org>
12274
12275 * lisp.mk (lisp): Update for more files being compiled now.
12276
12277 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
12278
12279 * lread.c: Remove `read_pure' which makes no difference.
12280 (read_pure): Remove var.
12281 (unreadpure): Remove function.
12282 (readevalloop): Don't call read_list with -1 flag.
12283 (read1, read_vector): Don't test read_pure any more.
12284 (read_list): Simplify.
12285
12286 * fileio.c, character.h: Minor style tweaks.
12287
12288 2012-05-24 Dmitry Antipov <dmantipov@yandex.ru>
12289
12290 * window.h (clip_changed): Remove useless declaration.
12291
12292 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
12293
12294 * makefile.w32-in: Follow-up to 2012-05-22T16:20:27Z!eggert@cs.ucla.edu.
12295 (TAGS, TAGS-gmake, CONFIG_H): Remove further references to m/intel386.h.
12296
12297 2012-05-22 Paul Eggert <eggert@cs.ucla.edu>
12298
12299 Remove src/m/*.
12300 This directory predates autoconf and is no longer needed nowadays.
12301 Move its few remaining bits of functionality to where they're needed.
12302 * m/README, m/alpha.h, m/amdx86-64.h, m/ia64.h, m/ibmrs6000.h:
12303 * m/ibms390x.h, m/intel386.h, m/m68k.h, m/macppc.h, m/sparc.h:
12304 * m/template.h: Remove.
12305 * Makefile.in (M_FILE): Remove. All uses removed.
12306 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS):
12307 * lisp.h (USE_LSB_TAG):
12308 * mem-limits.h (EXCEEDS_LISP_PTR):
12309 Use VAL_MAX, not VALBITS, in #if.
12310 * lisp.h (EMACS_INT_MAX): New macro, useful in #if.
12311 (EMACS_UINT): Define unconditionally now.
12312 (BITS_PER_CHAR, BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG)
12313 (BITS_PER_EMACS_INT): New constants, replacing
12314 what used to be in config.h, but not useful in #if.
12315 (GCTYPEBITS, VALBITS): Define unconditionally, since m/* files don't
12316 define them any more.
12317 (VAL_MAX): New macro.
12318 (VALMASK): Use it.
12319 * puresize.h (PURESIZE_RATIO): Use EMACS_INT_MAX, not
12320 BITS_PER_EMACS_INT, in #if.
12321 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
12322 (BROKEN_SIGPOLL): Move here from m/ibmrs6000.h, which was removed.
12323 * s/gnu-linux.h (ULIMIT_BREAK_VALUE) [__i386__]:
12324 * s/ms-w32.h (DATA_START):
12325 Move here from removed file m/intel386.h.
12326 * s/gnu.h (NLIST_STRUCT): Remove undef; 'configure' does this.
12327 * s/irix6-5.h (_LP64): Remove; lisp.h no longer needs this.
12328
12329 2012-05-21 Paul Eggert <eggert@cs.ucla.edu>
12330
12331 Assume C89 or later.
12332 * alloc.c, buffer.c, lisp.h: Replace POINTER_TYPE with void.
12333 * alloc.c (overrun_check_malloc, overrun_check_realloc, xmalloc)
12334 (xrealloc):
12335 * buffer.c (mmap_free_1, mmap_enlarge): Omit needless casts.
12336 * editfns.c, fns.c, gmalloc.c, insdel.c, sysdep.c, termcap.c (NULL):
12337 * textprop.c, tparam.c (NULL): Remove.
12338 * ralloc.c, vm-limit.c (POINTER): Assume void * works.
12339 * regex.c (SIGN_EXTEND_CHAR): Assume signed char works.
12340 * regex.h (_RE_ARGS): Remove. All uses rewritten to use prototypes.
12341 * unexelf.c (ElfBitsW): Assume c89 preprocessor or better.
12342 * xterm.c (input_signal_count): Assume volatile works.
12343
12344 2012-05-21 Ken Brown <kbrown@cornell.edu>
12345
12346 * xgselect.c (xg_select): Fix first argument in call to 'select'
12347 (bug#11508).
12348
12349 2012-05-20 Ken Brown <kbrown@cornell.edu>
12350
12351 * gmalloc.c (_free_internal_nolock, _realloc_internal_nolock)
12352 [CYGWIN]: Cast ptr to (char *) before comparing to _heapbase.
12353
12354 2012-05-19 Ken Brown <kbrown@cornell.edu>
12355
12356 * xfns.c (x_in_use): Remove `static' qualifier.
12357 * xterm.h (x_in_use): Declare.
12358 * xgselect.c: Include xterm.h.
12359 (xg_select): Test `x_in_use' instead of `inhibit_window_system'
12360 and `display_arg' (bug#9754).
12361
12362 2012-05-19 Paul Eggert <eggert@cs.ucla.edu>
12363
12364 * s/ms-w32.h (HAVE_GETDOMAINNAME): Remove; not needed.
12365
12366 * m/vax.h: Remove; no longer needed since HAVE_FTIME is being removed.
12367 * s/ms-w32.h (HAVE_FTIME): Remove; not needed.
12368
12369 2012-05-18 Eli Zaretskii <eliz@gnu.org>
12370
12371 Fix compilation with -DGLYPH_DEBUG=1 on MS-Windows.
12372
12373 * w32term.c [GLYPH_DEBUG]: Add prototype for x_check_font.
12374 (x_check_font) [GLYPH_DEBUG]: New function, copied from xterm.c.
12375
12376 * w32fns.c (unwind_create_frame) [GLYPH_DEBUG]: Fix broken
12377 reference to image_cache->refcount.
12378 (x_create_tip_frame): Fix broken use of FRAME_IMAGE_CACHE.
12379
12380 2012-05-17 Juri Linkov <juri@jurta.org>
12381
12382 * search.c (Fword_search_regexp, Fword_search_backward)
12383 (Fword_search_forward, Fword_search_backward_lax)
12384 (Fword_search_forward_lax): Move functions to isearch.el
12385 (bug#10145, bug#11381).
12386
12387 2012-05-16 Paul Eggert <eggert@cs.ucla.edu>
12388
12389 * xgselect.c (xg_select): Just invoke 'select' if -nw (Bug#9754).
12390
12391 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
12392
12393 * lread.c (init_obarray): Declare Qt and Qnil as special.
12394
12395 2012-05-14 Glenn Morris <rgm@gnu.org>
12396
12397 * nsterm.m (ns_init_paths): Fix typo ("libexec" not "lib-exec").
12398 Put "libexec" before "bin", for the sake of init_callproc_1.
12399
12400 2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
12401
12402 * keyboard.c (kbd_buffer_get_event) [!HAVE_DBUS]: Omit unused local.
12403
12404 * unexaix.c: Port to more-recent AIX compilers.
12405 (report_error, report_error_1, make_hdr, copy_sym)
12406 (mark_x, adjust_lnnoptrs, unrelocate_symbols):
12407 Make arguments const char *, not char *, to avoid violations of C
12408 standard and to fix some AIX warnings reported by Gilles Pion.
12409
12410 2012-05-14 Eli Zaretskii <eliz@gnu.org>
12411
12412 * xdisp.c (handle_stop): Don't call get_overlay_strings_1 if we
12413 already have overlays loaded.
12414 (handle_single_display_spec): Before returning without displaying
12415 fringe bitmap, synchronize the bidi iterator with the main display
12416 iterator, by calling iterate_out_of_display_property.
12417 (iterate_out_of_display_property): Detect buffer iteration by
12418 testing that it->string is a Lisp string.
12419 (get_next_display_element): When the current object is exhausted,
12420 and there's something on it->stack, call set_iterator_to_next to
12421 proceed with what's on the stack, instead of returning zero.
12422 (set_iterator_to_next): If called at the end of a Lisp string,
12423 proceed to consider_string_end without incrementing string
12424 position. Don't increment display vector index past the end of
12425 the display vector. (Bug#11417)
12426 (pos_visible_p): Don't report a position visible when move_it_to
12427 stopped at the last line of window, which happens to be scanned
12428 backwards by the bidi iteration. (Bug#11464)
12429
12430 2012-05-14 Eli Zaretskii <eliz@gnu.org>
12431
12432 * xdisp.c (handle_single_display_spec): Return 1 for left-margin
12433 and right-margin display specs even if the spec is invalid or we
12434 are on a TTY, and thus unable to display on the fringes.
12435 That's because the text with the property will not be displayed anyway,
12436 so we need to signal to the caller that this is a "replacing"
12437 display spec. This fixes display when the spec is invalid or we
12438 are on a TTY.
12439
12440 2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
12441
12442 * unexaix.c (make_hdr): Fix typo in prototype.
12443 This bug broke the build on AIX. Problem reported by Gilles Pion.
12444
12445 2012-05-14 Michael Albinus <michael.albinus@gmx.de>
12446
12447 * keyboard.c (kbd_buffer_get_event): Read special events also in
12448 batch mode. (Bug#11415)
12449
12450 2012-05-12 Glenn Morris <rgm@gnu.org>
12451
12452 * ns.mk: Update for ns_appbindir no longer having trailing "/".
12453
12454 2012-05-12 Eli Zaretskii <eliz@gnu.org>
12455
12456 * lisp.mk (lisp): Add newcomment.elc.
12457
12458 2012-05-12 Glenn Morris <rgm@gnu.org>
12459
12460 * Makefile.in (MKDIR_P): New, set by configure.
12461 * ns.mk (${ns_appdir}, ${ns_appbindir}Emacs): Use $MKDIR_P.
12462
12463 2012-05-11 Paul Eggert <eggert@cs.ucla.edu>
12464
12465 Remove unused function hourglass_started.
12466 * dispextern.h (hourglass_started):
12467 * w32fns.c (hourglass_started):
12468 * xdisp.c (hourglass_started): Remove.
12469
12470 2012-05-10 Juanma Barranquero <lekktu@gmail.com>
12471
12472 * makefile.w32-in ($(BLD)/gmalloc.$(O), $(BLD)/w32menu.$(O)):
12473 Update dependencies.
12474
12475 2012-05-10 Paul Eggert <eggert@cs.ucla.edu>
12476
12477 * xgselect.c (xg_select): Put maxfds+1 into a var.
12478 This is slightly clearer, and pacifies Ubuntu 12.04 gcc.
12479
12480 * sound.c (DEFAULT_ALSA_SOUND_DEVICE): Define only if HAVE_ALSA.
12481
12482 2012-05-10 Dave Abrahams <dave@boostpro.com>
12483
12484 * filelock.c (syms_of_filelock): New boolean create-lockfiles.
12485 (lock_file): If create_lockfiles is 0, do nothing. (Bug#11227)
12486
12487 2012-05-09 Michael Albinus <michael.albinus@gmx.de>
12488
12489 * dbusbind.c (xd_registered_buses): New internal Lisp object.
12490 Rename all occurrences of Vdbus_registered_buses to xd_registered_buses.
12491 (syms_of_dbusbind): Remove declaration of Vdbus_registered_buses.
12492 Initialize xd_registered_buses.
12493
12494 2012-05-09 Paul Eggert <eggert@cs.ucla.edu>
12495
12496 Untag more efficiently if USE_LSB_TAG.
12497 This is based on a proposal by YAMAMOTO Mitsuharu in
12498 <http://lists.gnu.org/archive/html/emacs-devel/2008-01/msg01876.html>.
12499 For an admittedly artificial (nth 8000 longlist) benchmark on
12500 Fedora 15 x86-64, this yields a 25% CPU speedup. Also, it shrinks
12501 Emacs's overall text size by 1%.
12502 * lisp.h (XUNTAG): New macro.
12503 (XCONS, XVECTOR, XSTRING, XSYMBOL, XFLOAT, XMISC, XPROCESS, XWINDOW)
12504 (XTERMINAL, XSUBR, XBUFFER, XCHAR_TABLE, XSUB_CHAR_TABLE, XBOOL_VECTOR)
12505 (XSETTYPED_PSEUDOVECTOR, XHASH_TABLE, TYPED_PSEUDOVECTORP): Use it.
12506 * eval.c (Fautoload):
12507 * font.h (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT):
12508 * frame.h (XFRAME): Use XUNTAG.
12509
12510 Port recent dbusbind.c changes to 32-bit --with-wide-int.
12511 * dbusbind.c (xd_append_arg, xd_retrieve_arg, Fdbus_message_internal):
12512 Remove unportable assumptions about print widths of types like
12513 dbus_uint32_t.
12514 (xd_get_connection_address, Fdbus_init_bus): Cast Emacs integer to
12515 intptr_t when converting between pointer and integer, to avoid GCC
12516 warnings about wrong width.
12517
12518 2012-05-09 Eli Zaretskii <eliz@gnu.org>
12519
12520 * w32proc.c (new_child): Force Windows to reserve only 64KB of
12521 stack for each reader_thread, instead of defaulting to 8MB
12522 determined by the linker. This avoids failures in creating
12523 subprocesses on Windows 7, see the discussion in this thread:
12524 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00119.html.
12525
12526 2012-05-07 Jérémy Compostella <jeremy.compostella@gmail.com>
12527
12528 Fix up display of the *Minibuf-0* buffer in the mini window.
12529 * keyboard.c (read_char): Don't clear the echo area if there's no
12530 message to clear.
12531 * xdisp.c (redisplay_internal): Redisplay the mini window (with the
12532 contents of *Minibuf-0*) if there's no message displayed in its stead.
12533
12534 2012-05-07 Michael Albinus <michael.albinus@gmx.de>
12535
12536 * dbusbind.c (XD_DEBUG_MESSAGE): Don't print message twice in
12537 batch mode.
12538
12539 2012-05-06 Chong Yidong <cyd@gnu.org>
12540
12541 * lisp.mk (lisp): Update.
12542
12543 2012-05-05 Jim Meyering <meyering@redhat.com>
12544
12545 * w32font.c (fill_in_logfont): NUL-terminate a string (Bug#11372).
12546
12547 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
12548
12549 * data.c (PUT_ERROR): New macro.
12550 (syms_of_data): Use it. Add new error type `user-error'.
12551 * undo.c (user_error): New function.
12552 (Fprimitive_undo): Use it.
12553 * print.c (print_error_message): Adjust print style for `user-error'.
12554 * keyboard.c (user_error): New function.
12555 (Fexit_recursive_edit, Fabort_recursive_edit): Use it.
12556
12557 2012-05-03 Paul Eggert <eggert@cs.ucla.edu>
12558
12559 Do not limit current-time-string to years 1000..9999.
12560 * editfns.c (TM_YEAR_IN_ASCTIME_RANGE): Remove.
12561 (Fcurrent_time_string): Support any year that is supported by the
12562 underlying localtime representation. Don't use asctime, as it
12563 has undefined behavior for years outside the range -999..9999.
12564
12565 2012-05-02 Paul Eggert <eggert@cs.ucla.edu>
12566
12567 Fix race conditions involving setenv, gmtime, localtime, asctime.
12568 Without this fix, interrupts could mess up code that uses these
12569 nonreentrant functions, since setting TZ invalidates existing
12570 tm_zone or tzname values, and since most of these functions return
12571 pointers to static storage.
12572 * editfns.c (format_time_string, Fdecode_time, Fencode_time)
12573 (Fcurrent_time_string, Fcurrent_time_zone, Fset_time_zone_rule):
12574 Grow the critical sections to include not just invoking
12575 localtime/gmtime, but also accessing these functions' results
12576 including their tm_zone values if any, and any related TZ setting.
12577 (format_time_string): Last arg is now struct tm *, not struct tm **,
12578 so that the struct tm is saved in the critical section.
12579 All callers changed. Simplify allocation of initial buffer, partly
12580 motivated by the fact that memory allocation needs to be outside
12581 the critical section.
12582
12583 2012-05-02 Dmitry Antipov <dmantipov@yandex.ru>
12584
12585 * intervals.c (adjust_intervals_for_insertion): Initialize `newi'
12586 with RESET_INTERVAL.
12587
12588 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
12589 Remove duplicated buffer name initialization.
12590
12591 2012-05-02 Jim Meyering <jim@meyering.net>
12592
12593 * xterm.c (x_term_init): Use memcpy instead of strncpy (Bug#11373).
12594
12595 * xfns.c (x_window): Use xstrdup (Bug#11375).
12596
12597 2012-05-02 Eli Zaretskii <eliz@gnu.org>
12598
12599 * xdisp.c (pos_visible_p): If already at a newline from the
12600 display string before the 'while' loop, don't walk back the glyphs
12601 from it3.glyph_row. Solves assertion violation when the display
12602 string begins with a newline (egg.el). (Bug#11367)
12603
12604 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
12605
12606 * keyboard.c (Fexecute_extended_command, Vsuggest_key_bindings):
12607 Move to simple.el.
12608
12609 2012-05-01 Glenn Morris <rgm@gnu.org>
12610
12611 * syssignal.h: Remove reference to BROKEN_SIGINFO (last used in
12612 s/ptx4.h), BROKEN_SIGTSTP (last used in m/ustation.h, m/dpx2.h),
12613 and BROKEN_SIGURG (was in s/gnu-linux.h prior to 2008-02-10).
12614 All were removed before 23.1.
12615
12616 * dispnew.c: Remove HAVE_LIBNCURSES test;
12617 it is always true on relevant platforms.
12618
12619 * Makefile.in (LD_SWITCH_X_SITE_RPATH):
12620 Rename from LD_SWITCH_X_SITE_AUX_RPATH.
12621
12622 * Makefile.in (LD_SWITCH_X_SITE_AUX): Remove; no longer used.
12623
12624 2012-04-30 Andreas Schwab <schwab@linux-m68k.org>
12625
12626 * .gdbinit (xpr): Remove checks for no longer existing misc types.
12627 (xintfwd, xboolfwd, xobjfwd, xbufobjfwd, xkbobjfwd, xbuflocal):
12628 Remove.
12629
12630 2012-04-28 Paul Eggert <eggert@cs.ucla.edu>
12631
12632 Do not avoid creating empty evaporating overlays (Bug#9642).
12633 * buffer.c (Fmove_overlay): Revert the change of 2012-04-23.
12634 That is, do not delete an evaporating overlay if it becomes
12635 empty after its bounds are adjusted to fit within its buffer.
12636 This fix caused other problems, and I'm reverting it until we get
12637 to the bottom of them.
12638
12639 2012-04-27 Chong Yidong <cyd@gnu.org>
12640
12641 * xselect.c (x_convert_selection): Initialize a pointer (Bug#11315).
12642
12643 2012-04-27 Eli Zaretskii <eliz@gnu.org>
12644
12645 * xdisp.c (pos_visible_p): If the window start position is beyond
12646 ZV, start the display from buffer beginning. Prevents assertion
12647 violation in init_iterator when the minibuffer window is scrolled
12648 via the scroll bar.
12649
12650 * window.c (window_scroll_pixel_based): Likewise.
12651
12652 2012-04-27 Chong Yidong <cyd@gnu.org>
12653
12654 * keymap.c (where_is_internal): Doc fix (Bug#10872).
12655
12656 2012-04-27 Glenn Morris <rgm@gnu.org>
12657
12658 * fileio.c (Fcopy_file, Fset_file_selinux_context):
12659 Ignore ENOTSUP failures from setfilecon functions. (Bug#11245)
12660
12661 2012-04-27 Eli Zaretskii <eliz@gnu.org>
12662
12663 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers):
12664 Don't overrun array limits of glyph row's used[] array. (Bug#11288)
12665
12666 2012-04-26 Eli Zaretskii <eliz@gnu.org>
12667
12668 * xdisp.c (IT_DISPLAYING_WHITESPACE): In addition to the loaded
12669 display element, check also the underlying string or buffer
12670 character. (Bug#11341)
12671
12672 * w32menu.c: Include w32heap.h.
12673 (add_menu_item): If the call to AppendMenuW (via
12674 unicode_append_menu) fails, disable Unicode menus only if we are
12675 running on Windows 9X/Me.
12676
12677 2012-04-24 Andreas Schwab <schwab@linux-m68k.org>
12678
12679 * .gdbinit (xpr): Handle USE_2_TAGS_FOR_INTS.
12680 (xgetint): Add missing shift for LSB tags.
12681
12682 2012-04-24 Martin Rudalics <rudalics@gmx.at>
12683
12684 * keyboard.c (read_char): Don't wipe echo area for select window
12685 events: These might get delayed via `mouse-autoselect-window'
12686 (Bug#11304).
12687
12688 2012-04-24 Juanma Barranquero <lekktu@gmail.com>
12689
12690 * gnutls.c (init_gnutls_functions): Protect against (unlikely)
12691 manipulation of :loaded-from data.
12692
12693 2012-04-23 Juanma Barranquero <lekktu@gmail.com>
12694
12695 * gnutls.c (init_gnutls_functions): The value of :loaded-from is
12696 now a cons (bug#11311).
12697
12698 2012-04-23 Paul Eggert <eggert@cs.ucla.edu>
12699
12700 Do not create empty overlays with the evaporate property (Bug#9642).
12701 * buffer.c (Fmove_overlay): Delete an evaporating overlay
12702 if it becomes empty after its bounds are adjusted to fit within
12703 its buffer. Without this fix, in a nonempty buffer (let ((o
12704 (make-overlay 1 2))) (overlay-put o 'evaporate t) (move-overlay o 0 1))
12705 yields an empty overlay that has the evaporate property, which is
12706 not supposed to happen.
12707
12708 Fix minor GTK3 problems found by static checking.
12709 * emacsgtkfixed.c (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
12710 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
12711 (struct _EmacsFixedClass, emacs_fixed_get_type):
12712 Move decls here from emacsgtkfixed.h, since they needn't be public.
12713 (emacs_fixed_get_type): Now static.
12714 (emacs_fixed_class_init): Omit unused local.
12715 (emacs_fixed_child_type): Remove; unused.
12716 * emacsgtkfixed.h (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
12717 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
12718 (struct _EmacsFixedClass): Move to emacsgtkfixed.c.
12719 (EMACS_FIXED_CLASS, EMACS_IS_FIXED, EMACS_IS_FIXED_CLASS)
12720 (EMACS_FIXED_GET_CLASS): Remove; unused.
12721 * gtkutil.c (xg_create_frame_widgets) [!HAVE_GTK3]: Omit unused local.
12722
12723 * keyboard.c (handle_async_input): Define only if SYNC_INPUT || SIGIO.
12724 Problem reported by Juanma Barranquero for Windows -Wunused-function.
12725
12726 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
12727
12728 Modernize and clean up gmalloc.c to assume C89 (Bug#9119).
12729 * gmalloc.c (_MALLOC_INTERNAL, _MALLOC_H, _PP, __ptr_t)
12730 (__malloc_size_t, __malloc_ptrdiff_t):
12731 Remove. All uses removed, replaced by the definiens if needed,
12732 since we can assume C89 or better now.
12733 Include <stdint.h>, for PTRDIFF_MAX, uintptr_t.
12734 (protect_malloc_state, align, get_contiguous_space)
12735 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
12736 (malloc_atfork_handler_child, malloc_enable_thread)
12737 (malloc_initialize_1, __malloc_initialize, morecore_nolock)
12738 (_malloc_internal_nolock, _malloc_internal, malloc, _malloc)
12739 (_free, _realloc, _free_internal_nolock, _free_internal, free, cfree)
12740 (special_realloc, _realloc_internal_nolock, _realloc_internal)
12741 (realloc, calloc, __default_morecore, memalign, valloc, checkhdr)
12742 (freehook, mallochook, reallochook, mabort, mcheck, mprobe):
12743 Define using prototypes, not old style.
12744 (align, _malloc_internal_nolock, _free_internal_nolock, memalign):
12745 Don't assume ptrdiff_t and uintptr_t are no wider than unsigned long.
12746 (align): Don't assume that signed integer overflow wraps around.
12747 Omit unused local var.
12748 (malloc_initialize_1, morecore_nolock, _malloc_internal_nolock)
12749 (_free_internal_nolock, memalign, mallochook, reallochook):
12750 Omit no-longer-needed casts.
12751 (valloc): Use getpagesize, not __getpagesize.
12752 (MAGICWORD, MAGICFREE): Now randomish size_t values, not 32-bit.
12753 (struct hdr): The 'magic' member is now size_t, not unsigned long.
12754
12755 * dbusbind.c (XD_DBUS_VALIDATE_OBJECT): Define only if needed.
12756
12757 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
12758
12759 Move functions from C to Lisp. Make non-blocking method calls
12760 the default. Implement further D-Bus standard interfaces.
12761
12762 * dbusbind.c (DBUS_NUM_MESSAGE_TYPES): Declare.
12763 (QCdbus_request_name_allow_replacement)
12764 (QCdbus_request_name_replace_existing)
12765 (QCdbus_request_name_do_not_queue)
12766 (QCdbus_request_name_reply_primary_owner)
12767 (QCdbus_request_name_reply_in_queue)
12768 (QCdbus_request_name_reply_exists)
12769 (QCdbus_request_name_reply_already_owner): Move to dbus.el.
12770 (QCdbus_registered_serial, QCdbus_registered_method)
12771 (QCdbus_registered_signal): New Lisp objects.
12772 (XD_DEBUG_MESSAGE): Use sizeof.
12773 (XD_MESSAGE_TYPE_TO_STRING, XD_OBJECT_TO_STRING)
12774 (XD_DBUS_VALIDATE_BUS_ADDRESS, XD_DBUS_VALIDATE_OBJECT)
12775 (XD_DBUS_VALIDATE_BUS_NAME, XD_DBUS_VALIDATE_PATH)
12776 (XD_DBUS_VALIDATE_INTERFACE, XD_DBUS_VALIDATE_MEMBER): New macros.
12777 (XD_CHECK_DBUS_SERIAL): Rename from CHECK_DBUS_SERIAL_GET_SERIAL.
12778 (xd_signature, xd_append_arg): Allow float for integer types.
12779 (xd_get_connection_references): New function.
12780 (xd_get_connection_address): Rename from xd_initialize.
12781 Return cached address.
12782 (xd_remove_watch): Do not unset $DBUS_SESSION_BUS_ADDRESS.
12783 (xd_close_bus): Rename from Fdbus_close_bus. Not needed on Lisp
12784 level.
12785 (Fdbus_init_bus): New optional arg PRIVATE. Cache address.
12786 Return number of refcounts.
12787 (Fdbus_get_unique_name): Make stronger parameter check.
12788 (Fdbus_message_internal): New defun.
12789 (Fdbus_call_method, Fdbus_call_method_asynchronously)
12790 (Fdbus_method_return_internal, Fdbus_method_error_internal)
12791 (Fdbus_send_signal, Fdbus_register_service)
12792 (Fdbus_register_signal, Fdbus_register_method): Move to dbus.el.
12793 (xd_read_message_1): Obey new structure of Vdbus_registered_objects.
12794 (xd_read_queued_messages): Obey new structure of Vdbus_registered_buses.
12795 (Vdbus_compiled_version, Vdbus_runtime_version)
12796 (Vdbus_message_type_invalid, Vdbus_message_type_method_call)
12797 (Vdbus_message_type_method_return, Vdbus_message_type_error)
12798 (Vdbus_message_type_signal): New defvars.
12799 (Vdbus_registered_buses, Vdbus_registered_objects_table):
12800 Adapt docstring.
12801
12802 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
12803
12804 Fix GC_MALLOC_CHECK debugging output on 64-bit hosts.
12805 * alloc.c (emacs_blocked_malloc) [GC_MALLOC_CHECK]:
12806 Do not assume ptrdiff_t is the same width as 'int'.
12807
12808 * alloc.c: Handle unusual debugging option combinations.
12809 (GC_CHECK_MARKED_OBJECTS): Undef if ! GC_MARK_STACK,
12810 since the two debugging options are incompatible.
12811 (GC_MALLOC_CHECK): Similarly, undef if GC_CHECK_MARKED_OBJECTS
12812 is defined.
12813 (mem_init, mem_insert, mem_insert_fixup):
12814 Define if GC_MARK_STACK || GC_MALLOC_CHECK.
12815 (NEED_MEM_INSERT): Remove; no longer needed.
12816
12817 2012-04-22 Leo Liu <sdl.web@gmail.com>
12818
12819 * sysdep.c (list_system_processes): Support Darwin (Bug#5725).
12820
12821 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
12822
12823 * sysdep.c [__FreeBSD__]: Minor cleanups.
12824 (list_system_processes, system_process_attributes) [__FreeBSD__]:
12825 Use Emacs indenting style more consistently. Avoid some casts.
12826 Use 'double' consistently rather than mixing 'float' and 'double'.
12827
12828 2012-04-21 Eduard Wiebe <usenet@pusto.de>
12829
12830 * sysdep.c (list_system_processes, system_process_attributes):
12831 Add implementation for FreeBSD (Bug#5243).
12832
12833 2012-04-21 Andreas Schwab <schwab@linux-m68k.org>
12834
12835 * lisp.mk (lisp): Update.
12836
12837 2012-04-20 Paul Eggert <eggert@cs.ucla.edu>
12838
12839 * keyboard.c (process_pending_signals): Define only if SYNC_INPUT.
12840 It is never used otherwise.
12841
12842 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
12843
12844 * print.c (print_preprocess): Only check print_depth if print-circle
12845 is nil.
12846 (print_object): Check for cycles even when print-circle is nil and
12847 print-gensym is t, but only check print_depth if print-circle is nil.
12848
12849 2012-04-20 Chong Yidong <cyd@gnu.org>
12850
12851 * process.c (wait_reading_process_output): If EIO occurs on a pty,
12852 set the status to "failed" and ensure that sentinel is run.
12853
12854 2012-04-20 Glenn Morris <rgm@gnu.org>
12855
12856 * process.c (Fset_process_inherit_coding_system_flag)
12857 (Fset_process_query_on_exit_flag): Doc fix (mention return value).
12858 (Fmake_network_process, Fmake_serial_process): Doc fix.
12859
12860 2012-04-20 Eli Zaretskii <eliz@gnu.org>
12861
12862 * xdisp.c (string_buffer_position_lim): Limit starting position to
12863 BEGV.
12864 (set_cursor_from_row): If called for a mode-line or header-line
12865 row, return zero immediately.
12866 (try_cursor_movement): If inside continuation line, don't back up
12867 farther than the first row after the header line, if any.
12868 Don't consider the header-line row as "partially visible", even if
12869 MATRIX_ROW_PARTIALLY_VISIBLE_P returns non-zero. (Bug#11261)
12870
12871 2012-04-20 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
12872
12873 * lread.c (lisp_file_lexically_bound_p): Fix hang at ";-*-\n"
12874 (bug#11238).
12875
12876 2012-04-20 Teodor Zlatanov <tzz@lifelogs.com>
12877 2012-04-18 Paul Eggert <eggert@cs.ucla.edu>
12878
12879 configure: new option --enable-gcc-warnings (Bug#11207)
12880 * Makefile.in (C_WARNINGS_SWITCH): Remove.
12881 (WARN_CFLAGS, WERROR_CFLAGS): New macros.
12882 (ALL_CFLAGS): Use new macros rather than old.
12883 * process.c: Ignore -Wstrict-overflow to work around GCC bug 52904.
12884 * regex.c: Ignore -Wstrict-overflow. If !emacs, also ignore
12885 -Wunused-but-set-variable, -Wunused-function, -Wunused-macros,
12886 -Wunused-result, -Wunused-variable. This should go away once
12887 the Emacs and Gnulib regex code is merged.
12888 (xmalloc, xrealloc): Now static.
12889
12890 2012-04-17 Paul Eggert <eggert@cs.ucla.edu>
12891
12892 * dired.c (Fsystem_groups): Remove unused local.
12893
12894 2012-04-17 Glenn Morris <rgm@gnu.org>
12895
12896 * dired.c (Fsystem_users): Doc fix.
12897
12898 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
12899
12900 * dired.c (Fsystem_users, Fsystem_groups): New functions. (Bug#7900)
12901 (syms_of_dired): Add them.
12902
12903 2012-04-16 Paul Eggert <eggert@cs.ucla.edu>
12904
12905 Fix minor alloc.c problems found by static checking.
12906 * alloc.c (_malloc_internal, _free_internal) [!DOUG_LEA_MALLOC]:
12907 New extern decls, to avoid calling undeclared functions.
12908 (dont_register_blocks): Define if ((!SYSTEM_MALLOC && !SYNC_INPUT)
12909 && GC_MALLOC_CHECK), not if ((GC_MARK_STACK || defined
12910 GC_MALLOC_CHECK) && GC_MALLOC_CHECK), to match when it's used.
12911 (NEED_MEM_INSERT): New macro.
12912 (mem_insert, mem_insert_fixup) [!NEED_MEM_INSERT]: Remove; unused.
12913 Remove one incorrect comment and fix another.
12914
12915 Fix minor ralloc.c problems found by static checking.
12916 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
12917 * ralloc.c (ALIGNED, ROUND_TO_PAGE, HEAP_PTR_SIZE)
12918 (r_alloc_size_in_use, r_alloc_freeze, r_alloc_thaw): Remove; unused.
12919 (r_alloc_sbrk): Now static.
12920
12921 Improve ralloc.c interface checking.
12922 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
12923 * buffer.c (ralloc_reset_variable, r_alloc, r_re_alloc)
12924 (r_alloc_free) [REL_ALLOC]: Move decls from here ...
12925 * lisp.h (r_alloc, r_alloc_free, r_re_alloc, r_alloc_reset_variable)
12926 [REL_ALLOC]: ... to here, to check interface.
12927 * m/ia64.h (r_alloc, r_alloc_free) [REL_ALLOC && !_MALLOC_INTERNAL]:
12928 Remove decls. This fixes an "It stinks!".
12929
12930 * alloc.c (which_symbols): Fix alignment issue / type clash.
12931
12932 2012-04-15 Andreas Schwab <schwab@linux-m68k.org>
12933
12934 * lisp.h (struct Lisp_Symbol): Remove explicit padding.
12935 (struct Lisp_Misc_Any): Likewise.
12936 (struct Lisp_Free): Likewise.
12937 * alloc.c (union aligned_Lisp_Symbol): Define.
12938 (SYMBOL_BLOCK_SIZE, struct symbol_block): Use union
12939 aligned_Lisp_Symbol instead of struct Lisp_Symbol.
12940 (union aligned_Lisp_Misc): Define.
12941 (MARKER_BLOCK_SIZE, struct marker_block): Use union
12942 aligned_Lisp_Misc instead of union Lisp_Misc.
12943 (Fmake_symbol, allocate_misc, gc_sweep): Adjust.
12944
12945 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
12946
12947 Make GC_MAKE_GCPROS_NOOPS the default (Bug#9926).
12948 * lisp.h (GC_MARK_STACK): Default to GC_MAKE_GCPROS_NOOPS.
12949 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/gnu.h, s/irix6-5.h, s/msdos.h:
12950 * s/netbsd.h, s/sol2-6.h:
12951 Remove definition of GC_MARK_STACK, since the default now works.
12952 * s/aix4-2.h, s/hpux10-20.h, s/unixware.h:
12953 Define GC_MARK_STACK to GC_USE_GCPROS_AS_BEFORE, since that's
12954 no longer the default.
12955 * s/gnu-linux.h (GC_MARK_STACK): Adjust to change in default.
12956
12957 2012-04-14 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
12958
12959 * lread.c (lisp_file_lexically_bound_p):
12960 Fix hang at ";-*-\n" (bug#11238).
12961
12962 2012-04-14 Eli Zaretskii <eliz@gnu.org>
12963
12964 * xdisp.c (find_last_unchanged_at_beg_row): Don't consider a row
12965 "unchanged" if its end.pos is beyond ZV. (Bug#11199)
12966
12967 2012-04-14 Jan Djärv <jan.h.d@swipnet.se>
12968
12969 * nsterm.m (constrainFrameRect): Always constrain when there is only
12970 one screen (Bug#10962).
12971
12972 2012-04-13 Ken Brown <kbrown@cornell.edu>
12973
12974 * s/cygwin.h (PTY_OPEN): Don't try to close a bogus file descriptor.
12975
12976 2012-04-13 Reuben Thomas <rrt@sc3d.org>
12977
12978 * indent.c (Fmove_to_column): Change interactive spec (Bug#739).
12979
12980 2012-04-11 Daniel Colascione <dancol@dancol.org>
12981
12982 * s/cygwin.h: The vfork the #define in cygwin.h was protecting
12983 against is gone. It's better to use vfork now so that when Cygwin
12984 gains a new, working vfork, we use it automatically (bug#10398).
12985
12986 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
12987
12988 * window.c (save_window_save): Obey window-point-insertion-type.
12989
12990 2012-04-11 Glenn Morris <rgm@gnu.org>
12991
12992 * Makefile.in (GNUSTEP_CFLAGS): Rename from C_SWITCH_X_SYSTEM.
12993
12994 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
12995
12996 * alloc.c (lisp_align_malloc): Remove unneeded prototype.
12997
12998 2012-04-10 Jason S. Cornez <jcornez@ravenpack.com> (tiny change)
12999
13000 * keyboard.c: Override inhibit-quit after the third C-g (bug#6585).
13001 (force_quit_count): New var.
13002 (handle_interrupt): Use it.
13003
13004 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
13005
13006 * w32.c (w32_delayed_load): Record the full path of the library
13007 being loaded (bug#10424).
13008
13009 2012-04-09 Glenn Morris <rgm@gnu.org>
13010
13011 * doc.c (Fsnarf_documentation): Check variables, functions are bound,
13012 not just in the obarray, before snarfing them. (Bug#11036)
13013
13014 * Makefile.in ($(leimdir)/leim-list.el):
13015 Pass EMACS rather than BUILT_EMACS.
13016
13017 2012-04-09 Teodor Zlatanov <tzz@lifelogs.com>
13018
13019 * process.c (make_process):
13020 * process.h: Add integer `gnutls_handshakes_tried' member to
13021 process struct.
13022
13023 * gnutls.h: Add `GNUTLS_EMACS_HANDSHAKES_LIMIT' upper limit.
13024 Add convenience `GNUTLS_LOG2i' macro.
13025
13026 * gnutls.c (gnutls_log_function2i): Convenience log function.
13027 (emacs_gnutls_read): Use new log functions,
13028 `gnutls_handshakes_tried' process member, and
13029 `GNUTLS_EMACS_HANDSHAKES_LIMIT' to limit the number of handshake
13030 attempts per process (connection).
13031
13032 2012-04-09 Chong Yidong <cyd@gnu.org>
13033
13034 * eval.c (Fuser_variable_p, user_variable_p_eh)
13035 (lisp_indirect_variable): Functions deleted.
13036 (Fdefvar): Caller changed.
13037
13038 * callint.c (Finteractive, Fcall_interactively):
13039 * minibuf.c (Fread_variable): Callers changed.
13040
13041 2012-04-09 Eli Zaretskii <eliz@gnu.org>
13042
13043 * xdisp.c (set_cursor_from_row): If the display string appears in
13044 the buffer at position that is closer to point than the position
13045 after the display string, display the cursor on the first glyph of
13046 the display string. Fixes cursor display when a 'display' text
13047 property immediately follows invisible text. (Bug#11094)
13048
13049 2012-04-09 Paul Eggert <eggert@cs.ucla.edu>
13050
13051 composite.c: use 'double' consistently
13052 * composite.c (get_composition_id): Use 'double' consistently
13053 instead of converting 'float' to 'double' and vice versa; this is
13054 easier to understand and avoids a GCC warning.
13055
13056 2012-04-09 Glenn Morris <rgm@gnu.org>
13057
13058 * Makefile.in: Generate leim-list with bootstrap-emacs, in
13059 preparation for dumping it with emacs. (Bug#4789)
13060 (leimdir): New variable.
13061 ($(leimdir)/leim-list.el): New rule.
13062 (emacs$(EXEEXT)): Depend on leim-list.el.
13063
13064 * buffer.c (Qucs_set_table_for_input): Remove. (Bug#9821)
13065 (Fget_buffer_create): Don't call Qucs_set_table_for_input.
13066 (init_buffer_once, syms_of_buffer): Remove Qucs_set_table_for_input.
13067
13068 2012-04-08 Andreas Schwab <schwab@linux-m68k.org>
13069
13070 * lisp.h (struct Lisp_Symbol): Add explicit padding to ensure
13071 proper alignment.
13072
13073 2012-04-07 Juanma Barranquero <lekktu@gmail.com>
13074
13075 * xml.c (init_libxml2_functions) [WINDOWSNT]:
13076 Remove unused local variable.
13077
13078 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
13079
13080 Avoid unnecessary pointer scanning in garbage collection (Bug#10780).
13081 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS): New macro.
13082 (mark_memory): Mark Lisp_Objects only if pointers might hide in
13083 objects, as mark_maybe_pointer will catch them otherwise.
13084 (GC_LISP_OBJECT_ALIGNMENT): Remove; no longer needed.
13085 * s/gnu-linux.h (GC_LISP_OBJECT_ALIGNMENT) [__mc68000__]: Likewise.
13086
13087 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
13088
13089 Fix typo that broke non-Windows builds.
13090 * xml.c (libxml2_loaded_p) [!!WINDOWSNT]: 'inine' -> 'inline'.
13091
13092 2012-04-07 Eli Zaretskii <eliz@gnu.org>
13093
13094 Support building on MS-Windows with libxml2.
13095
13096 * makefile.w32-in (OBJ2): Add xml.$(O).
13097 (GLOBAL_SOURCES): Add xml.c.
13098 ($(BLD)/xml.$(O)): New dependency list.
13099
13100 * xml.c (DEF_XML2_FN, LOAD_XML2_FN) [WINDOWSNT]: New macros.
13101 (fn_htmlReadMemory, fn_xmlReadMemory, fn_xmlDocGetRootElement)
13102 (fn_xmlFreeDoc, fn_xmlCleanupParser, fn_xmlCheckVersion)
13103 [!WINDOWSNT]: New macros.
13104 (init_libxml2_functions, libxml2_loaded_p): New functions.
13105 (parse_region): Call fn_xmlCheckVersion instead of using the macro
13106 LIBXML_TEST_VERSION. Call libxml2 functions via the fn_* macros.
13107 (xml_cleanup_parser): New function, export for fn_xmlCleanupParser.
13108 Calls xmlCleanupParser only if libxml2 was loaded (or statically
13109 linked in).
13110 (Flibxml_parse_html_region, Flibxml_parse_xml_region):
13111 Call init_libxml2_functions before calling libxml2 functions.
13112 (syms_of_xml) <Qlibxml2_dll>: DEFSYM it.
13113
13114 * emacs.c: Don't include libxml/parser.h.
13115 (shut_down_emacs): Call xml_cleanup_parser, instead of calling
13116 xmlCleanupParser directly.
13117
13118 * lisp.h [HAVE_LIBXML2]: Add prototype for xml_cleanup_parser.
13119
13120 2012-04-07 Eli Zaretskii <eliz@gnu.org>
13121
13122 * indent.c (Fvertical_motion): If there is a display string at
13123 point, use it.vpos to compute how many lines to backtrack after
13124 move_it_to point. (Bug#11133)
13125
13126 2012-04-06 Eli Zaretskii <eliz@gnu.org>
13127
13128 * buffer.h (FETCH_CHAR, FETCH_MULTIBYTE_CHAR):
13129 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH): Add comments
13130 about subtle differences between FETCH_CHAR* and STRING_CHAR*
13131 macros related to unification of CJK characters. For the details,
13132 see the discussion following the message here:
13133 http://debbugs.gnu.org/cgi/bugreport.cgi?bug=11073#14.
13134
13135 2012-04-04 Chong Yidong <cyd@gnu.org>
13136
13137 * keyboard.c (Vdelayed_warnings_list): Doc fix.
13138
13139 2012-04-01 Eli Zaretskii <eliz@gnu.org>
13140
13141 * w32menu.c (simple_dialog_show, add_menu_item): Use SAFE_ALLOCA
13142 instead of alloca. (Bug#11138)
13143
13144 2012-04-01 Andreas Schwab <schwab@linux-m68k.org>
13145
13146 * w32menu.c (is_simple_dialog): Properly check lisp types.
13147 (Bug#11141)
13148
13149 2012-03-31 Eli Zaretskii <eliz@gnu.org>
13150
13151 * xdisp.c (move_it_by_lines): When DVPOS is positive, and the
13152 position we get to after a call to move_it_to fails the
13153 IS_POS_VALID_AFTER_MOVE_P test, move to the next buffer position
13154 only if we wind up in a string from display property. (Bug#11063)
13155
13156 * window.c (Fdelete_other_windows_internal): Invalidate the row
13157 and column information about mouse highlight, so that redisplay
13158 restores it after reallocating the glyph matrices. (Bug#7464)
13159
13160 * xdisp.c (set_cursor_from_row): If `cursor' property on a display
13161 string comes from a `display' text property, use the buffer
13162 position of that property as if we actually saw that position in
13163 the row's glyphs.
13164 (move_it_by_lines): Remove the assertion that
13165 "it->current_x == 0 && it->hpos == 0" which can be legitimately
13166 violated when there's a before-string at the beginning of a line.
13167 (Bug#11063)
13168
13169 2012-03-30 Eli Zaretskii <eliz@gnu.org>
13170
13171 * xdisp.c (append_space_for_newline): If the default face was
13172 remapped, use the remapped face for the appended newline.
13173 (extend_face_to_end_of_line): Use the remapped default face for
13174 extending the face to the end of the line.
13175 (display_line): Call extend_face_to_end_of_line when the default
13176 face was remapped. (Bug#11068)
13177
13178 2012-03-29 Eli Zaretskii <eliz@gnu.org>
13179
13180 * s/ms-w32.h: Discourage from defining HAVE_GETCWD.
13181
13182 2012-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
13183
13184 * keyboard.c (safe_run_hooks_error): Don't unquote strings.
13185
13186 2012-03-27 Glenn Morris <rgm@gnu.org>
13187
13188 * search.c (Fword_search_backward_lax, Fword_search_forward_lax):
13189 Doc fixes.
13190
13191 2012-03-26 Kenichi Handa <handa@m17n.org>
13192
13193 * dispextern.h (struct glyph): Fix previous change. Change the
13194 bit length of glyphless.ch to 25 (Bug#11082).
13195
13196 2012-03-26 Chong Yidong <cyd@gnu.org>
13197
13198 * keyboard.c (Vselection_inhibit_update_commands): New variable.
13199 (command_loop_1): Use it; inhibit selection update for
13200 handle-select-window too (Bug#8996).
13201
13202 2012-03-25 Fabrice Popineau <fabrice.popineau@supelec.fr>
13203
13204 * w32heap.c (_heap_init, _heap_term): Remove dead MSVC-specific code.
13205
13206 2012-03-25 Kenichi Handa <handa@m17n.org>
13207
13208 * dispextern.h (struct glyph): Change the bit length of
13209 glyphless.ch to 22 to make the member glyphless fit in 32 bits.
13210
13211 2012-03-24 Eli Zaretskii <eliz@gnu.org>
13212
13213 * s/ms-w32.h (tzname): Include time.h before redirecting to
13214 _tzname. Fixes the MSVC build. (Bug#9960)
13215
13216 2012-03-24 Andreas Schwab <schwab@linux-m68k.org>
13217
13218 * xdisp.c (produce_glyphless_glyph): Limit length of acronym to 6
13219 characters.
13220
13221 * xterm.c (XTread_socket): Only modify handling_signal if
13222 !SYNC_INPUT. (Bug#11080)
13223
13224 2012-03-23 Eli Zaretskii <eliz@gnu.org>
13225
13226 * bidi.c (bidi_fetch_char): Use STRING_CHAR_AND_LENGTH instead of
13227 FETCH_MULTIBYTE_CHAR followed by CHAR_BYTES. Prevents crashes
13228 when fetching a multibyte character consumes more bytes than
13229 CHAR_BYTES returns, due to unification of CJK characters in
13230 string_char. (Bug#11073)
13231
13232 2012-03-23 Troels Nielsen <bn.troels@gmail.com> (tiny change)
13233
13234 * process.c (wait_reading_process_output): Handle pty disconnect
13235 by refraining from sending oneself a SIGCHLD (bug#10933).
13236
13237 2012-03-22 Chong Yidong <cyd@gnu.org>
13238
13239 * dispextern.h (struct it): New member string_from_prefix_prop_p.
13240
13241 * xdisp.c (push_prefix_prop): Rename from push_display_prop.
13242 Mark string as coming from a prefix property.
13243 (handle_face_prop): Use default face for prefix strings (Bug#4281).
13244 (pop_it, reseat_1): Save and restore string_from_prefix_prop_p.
13245
13246 2012-03-21 Chong Yidong <cyd@gnu.org>
13247
13248 * xfaces.c (Vface_remapping_alist): Doc fix.
13249
13250 2012-03-20 Eli Zaretskii <eliz@gnu.org>
13251
13252 * w32proc.c (Fw32_set_console_codepage)
13253 (Fw32_set_console_output_codepage, Fw32_get_codepage_charset):
13254 Doc fixes.
13255
13256 2012-03-20 Chong Yidong <cyd@gnu.org>
13257
13258 * dispnew.c (Fredisplay, Vredisplay_preemption_period): Update doc
13259 to reflect default non-nil value of redisplay-dont-pause.
13260
13261 2012-03-19 Kenichi Handa <handa@m17n.org>
13262
13263 * ftfont.c (ftfont_drive_otf): Mask bits of character code to make
13264 it fit in a valid range (Bug#11003).
13265
13266 2012-03-18 Eli Zaretskii <eliz@gnu.org>
13267
13268 * xdisp.c (cursor_row_p): Even if the glyph row ends in a string
13269 that is not from display property, accept the row as a "cursor
13270 row" if one of the string's character has a non-nil `cursor'
13271 property. Fixes cursor positioning when there are newlines in
13272 overlay strings, e.g. in icomplete.el. (Bug#11035)
13273
13274 2012-03-12 Paul Eggert <eggert@cs.ucla.edu>
13275
13276 * buffer.c (compare_overlays): Don't assume args differ (Bug#6830).
13277
13278 2012-03-12 Chong Yidong <cyd@gnu.org>
13279
13280 * eval.c (inhibit_lisp_code): Rename from
13281 inhibit_window_configuration_change_hook; move from window.c.
13282
13283 * xfns.c (unwind_create_frame_1, Fx_create_frame):
13284 * window.c (run_window_configuration_change_hook)
13285 (syms_of_window): Callers changed.
13286
13287 2012-03-11 Chong Yidong <cyd@gnu.org>
13288
13289 * keymap.c (Fkey_description): Doc fix (Bug#9700).
13290
13291 * editfns.c (Fconstrain_to_field): Doc fix (Bug#9452).
13292
13293 2012-03-10 Chong Yidong <cyd@gnu.org>
13294
13295 * frame.c (other_visible_frames): Don't assume the selected frame
13296 is visible (Bug#10955).
13297
13298 2012-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
13299
13300 * buffer.c (compare_overlays): Avoid qsort's instability (bug#6830).
13301
13302 2012-03-08 Jan Djärv <jan.h.d@swipnet.se>
13303
13304 * gtkutil.c (x_wm_set_size_hint): Use one row in call to
13305 FRAME_TEXT_LINES_TO_PIXEL_HEIGHT so base_height is greater than
13306 zero (Bug#10954).
13307
13308 2012-03-03 Glenn Morris <rgm@gnu.org>
13309
13310 * alloc.c (Fgarbage_collect, misc-objects-consed): Doc fixes.
13311
13312 2012-03-02 Eli Zaretskii <eliz@gnu.org>
13313
13314 * xdisp.c (try_window_reusing_current_matrix): Don't move cursor
13315 position past the first glyph_row that ends at ZV. (Bug#10902)
13316 (redisplay_window, next_element_from_string): Fix typos in
13317 comments.
13318 (redisplay_window): Pass to move_it_vertically the margin in
13319 pixels, not in screen lines.
13320
13321 2012-03-02 Glenn Morris <rgm@gnu.org>
13322
13323 * buffer.c (buffer-list-update-hook): Doc fix.
13324
13325 2012-02-29 Eli Zaretskii <eliz@gnu.org>
13326
13327 * xdisp.c (get_overlay_strings_1): Under bidi redisplay, call
13328 push_it before setting up the iterator for the first overlay
13329 string, even if we have an empty string loaded.
13330 (next_overlay_string): If there's an empty string on the iterator
13331 stack, pop the stack. (Bug#10903)
13332
13333 2012-02-25 Paul Eggert <eggert@cs.ucla.edu>
13334
13335 Generalize fix for crash due to non-contiguous EMACS_INT (Bug#10780).
13336 Suggested by Stefan Monnier in
13337 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00692.html>.
13338 * alloc.c (widen_to_Lisp_Object): New static function.
13339 (mark_memory): Also mark Lisp_Objects by fetching pointer words
13340 and widening them to Lisp_Objects. This would work even if
13341 USE_LSB_TAG is defined and wide integers are used, which might
13342 happen in a future version of Emacs.
13343
13344 2012-02-25 Chong Yidong <cyd@gnu.org>
13345
13346 * fileio.c (Ffile_selinux_context, Fset_file_selinux_context):
13347 Doc fix.
13348
13349 * xselect.c (Fx_selection_exists_p): Doc fix.
13350 (x_clipboard_manager_save_all): Print an informative message
13351 before saving to clipboard manager.
13352
13353 2012-02-24 Chong Yidong <cyd@gnu.org>
13354
13355 * keyboard.c (process_special_events): Handle all X selection
13356 requests in kbd_buffer, not just the next one (Bug#8869).
13357
13358 2012-02-23 Chong Yidong <cyd@gnu.org>
13359
13360 * xfns.c (Fx_create_frame): Avoid window-configuration-change-hook
13361 call when setting menu-bar-lines and tool-bar-lines parameters.
13362 (unwind_create_frame_1): New helper function.
13363
13364 * window.c (inhibit_window_configuration_change_hook): New var.
13365 (run_window_configuration_change_hook): Obey it.
13366 (syms_of_window): Initialize it.
13367
13368 2012-02-22 Chong Yidong <cyd@gnu.org>
13369
13370 * xterm.c (x_draw_image_relief): Add missing type check for
13371 Vtool_bar_button_margin (Bug#10743).
13372
13373 2012-02-21 Chong Yidong <cyd@gnu.org>
13374
13375 * fileio.c (Vfile_name_handler_alist): Doc fix.
13376
13377 * buffer.c (Fget_file_buffer): Protect against invalid file
13378 handler return value.
13379
13380 2012-02-20 Paul Eggert <eggert@cs.ucla.edu>
13381
13382 * .gdbinit (xreload): Don't assume EMACS_INT fits in 'long'
13383 when computing $valmask.
13384
13385 Fix crash due to non-contiguous EMACS_INT (Bug#10780).
13386 * lisp.h (VALBITS): Move definition up, so that USE_LSB_TAG can use it.
13387 (USE_LSB_TAG): Do not define if UINTPTR_MAX >> VALBITS == 0.
13388 It's useless in that case, and it can cause problems on hosts
13389 that allocate halves of EMACS_INT values separately.
13390 Reported by Dan Horák. Diagnosed by Andreas Schwab in
13391 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=10780#30>.
13392 * mem-limits.h (EXCEEDS_LISP_PTR): Define to 0 on hosts where
13393 UINTPTR_MAX >> VALBITS == 0. This is required by the above change;
13394 it avoids undefined behavior on hosts where shifting right by more
13395 than the word width has undefined behavior.
13396
13397 2012-02-19 Chong Yidong <cyd@gnu.org>
13398
13399 * fileio.c (Ffile_name_directory, Ffile_name_nondirectory)
13400 (Funhandled_file_name_directory, Ffile_name_as_directory)
13401 (Fdirectory_file_name, Fexpand_file_name)
13402 (Fsubstitute_in_file_name): Protect against invalid file handler
13403 return values (Bug#10845).
13404
13405 2012-02-18 Eli Zaretskii <eliz@gnu.org>
13406
13407 * .gdbinit (pitx): Fix incorrect references to fields of the
13408 iterator stack.
13409
13410 2012-02-17 Chong Yidong <cyd@gnu.org>
13411
13412 * syntax.c (Fscan_lists): Doc fix (Bug#10833).
13413
13414 2012-02-15 Paul Eggert <eggert@cs.ucla.edu>
13415
13416 * image.c (MAX_IMAGE_SIZE): Increase from 6.0 to 10.0; see
13417 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00540.html>.
13418
13419 2012-02-15 Chong Yidong <cyd@gnu.org>
13420
13421 * eval.c (Fdefvar, Fdefconst): Doc fix; note that the variable is
13422 marked as special. Also, starting docstrings with * is obsolete.
13423
13424 2012-02-13 Andreas Schwab <schwab@linux-m68k.org>
13425
13426 * gnutls.c (emacs_gnutls_write): Fix last change.
13427
13428 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
13429
13430 * gnutls.c (emacs_gnutls_write): Set errno appropriately for
13431 send_process.
13432
13433 2012-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
13434
13435 * keymap.c (Fsingle_key_description): Handle char ranges.
13436
13437 2012-02-12 Chong Yidong <cyd@gnu.org>
13438
13439 * xdisp.c (handle_stop): Avoid assigning -1 to it->face_id here,
13440 as that creates a dangerous corner case.
13441
13442 * window.c (Fdelete_window_internal): Invalidate the mouse
13443 highlight (Bug#9904).
13444
13445 2012-02-12 Glenn Morris <rgm@gnu.org>
13446
13447 * xselect.c (Fx_own_selection_internal)
13448 (Fx_get_selection_internal, Fx_disown_selection_internal)
13449 (Fx_selection_owner_p, Fx_selection_exists_p): Doc fixes.
13450 * nsselect.m (Fx_own_selection_internal)
13451 (Fx_disown_selection_internal, Fx_selection_exists_p)
13452 (Fx_selection_owner_p, Fx_get_selection_internal):
13453 Sync docs and argument specs with the xselect.c versions.
13454
13455 2012-02-11 Lars Ingebrigtsen <larsi@gnus.org>
13456
13457 * gnutls.c (emacs_gnutls_write): Don't infloop if sendto fails.
13458
13459 2012-02-11 Eli Zaretskii <eliz@gnu.org>
13460
13461 * w32select.c (Fx_selection_exists_p): Sync doc string and
13462 argument list with xselect.c. (Bug#10783)
13463
13464 * w16select.c (Fx_selection_exists_p): Sync doc string and
13465 argument list with xselect.c. (Bug#10783)
13466
13467 2012-02-10 Glenn Morris <rgm@gnu.org>
13468
13469 * fns.c (Fsecure_hash): Doc fix.
13470
13471 2012-02-09 Kenichi Handa <handa@m17n.org>
13472
13473 * coding.c (produce_chars): Fix updating of src_end (Bug#10701).
13474
13475 2012-02-07 Chong Yidong <cyd@gnu.org>
13476
13477 * buffer.c (Fbuffer_local_variables)
13478 (buffer_lisp_local_variables): Handle unbound vars correctly;
13479 don't let Qunbound leak into Lisp.
13480
13481 2012-02-07 Glenn Morris <rgm@gnu.org>
13482
13483 * image.c (Fimagemagick_types): Doc fix.
13484
13485 * image.c (imagemagick-render-type): Change it from a lisp object
13486 to an integer. Move the doc here from the lisp manual.
13487 Treat all values not equal to 0 the same.
13488
13489 2012-02-06 Chong Yidong <cyd@gnu.org>
13490
13491 * doc.c (store_function_docstring): Avoid applying docstring of
13492 alias to base function (Bug#2603).
13493
13494 2012-02-04 Andreas Schwab <schwab@linux-m68k.org>
13495
13496 * .gdbinit (pp1, pv1): Remove redundant defines.
13497 (pr): Use pp.
13498
13499 2012-02-04 Chong Yidong <cyd@gnu.org>
13500
13501 * nsterm.m: Declare a global (Bug#10694).
13502
13503 2012-02-04 Eli Zaretskii <eliz@gnu.org>
13504
13505 * w32.c (get_emacs_configuration_options):
13506 Include --enable-checking, if specified, in the return value.
13507
13508 2012-02-04 Martin Rudalics <rudalics@gmx.at>
13509
13510 * dispnew.c (change_frame_size_1): Calculate new_frame_total_cols
13511 after rounding frame sizes. (Bug#9723)
13512
13513 2012-02-04 Eli Zaretskii <eliz@gnu.org>
13514
13515 * keyboard.c (adjust_point_for_property): Don't position point
13516 before BEGV. (Bug#10696)
13517
13518 2012-02-03 Paul Eggert <eggert@cs.ucla.edu>
13519
13520 Handle overflow when computing char display width (Bug#9496).
13521 * character.c (char_width): Return EMACS_INT, not int.
13522 (char_width, c_string_width): Check for overflow when
13523 computing the width; this is possible now that individual
13524 characters can have unbounded width. Problem introduced
13525 by merge from Emacs 23 on 2012-01-19.
13526
13527 2012-02-02 Michael Albinus <michael.albinus@gmx.de>
13528
13529 * dbusbind.c (Fdbus_register_method): Mention the return value
13530 :ignore in the docstring.
13531
13532 2012-02-02 Glenn Morris <rgm@gnu.org>
13533
13534 * callproc.c (Fcall_process, Fcall_process_region): Doc fix.
13535
13536 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
13537 Unconditionally set to t. (Bug#10673)
13538 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
13539 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
13540 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Doc fix.
13541
13542 2012-02-02 Kenichi Handa <handa@m17n.org>
13543
13544 (x_produce_glyphs): Cancel previous change. If cmp->glyph_len is
13545 0, do not call append_composite_glyph.
13546
13547 2012-02-02 Kenichi Handa <handa@m17n.org>
13548
13549 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING): Initialize first_s to
13550 NULL (Bug#6988).
13551 (x_produce_glyphs): If the component of a composition is a null
13552 string, set it->pixel_width to 1 to avoid zero-width glyph.
13553
13554 2012-02-01 Eli Zaretskii <eliz@gnu.org>
13555
13556 * ralloc.c (resize_bloc, r_alloc_sbrk): Don't call memmove if its
13557 first 2 arguments are identical. This makes inserting large
13558 output from a subprocess an order of magnitude faster on
13559 MS-Windows, where all sbrk'ed memory is always contiguous.
13560
13561 2012-01-31 Glenn Morris <rgm@gnu.org>
13562
13563 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
13564 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
13565 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Sync docs.
13566
13567 2012-01-29 Glenn Morris <rgm@gnu.org>
13568
13569 * gnutls.c (syms_of_gnutls): More doc (from etc/NEWS).
13570
13571 2012-01-28 Samuel Thibault <sthibault@debian.org> (tiny change)
13572
13573 * s/gnu.h: Define POSIX_SIGNALS (Bug#10552).
13574
13575 2012-01-28 Chong Yidong <cyd@gnu.org>
13576
13577 * minibuf.c (syms_of_minibuf): Doc fix (Bug#10550).
13578
13579 2012-01-26 Chong Yidong <cyd@gnu.org>
13580
13581 * keyboard.c (Vecho_keystrokes): Document zero value (Bug#10503).
13582
13583 * search.c (Fsearch_forward, Fsearch_backward): Document negative
13584 repeat counts (Bug#10507).
13585
13586 2012-01-26 Glenn Morris <rgm@gnu.org>
13587
13588 * lread.c (syms_of_lread): Doc fix.
13589
13590 2012-01-25 HIROSHI OOTA <nil@mad.dog.cx> (tiny change)
13591
13592 * coding.c (encode_designation_at_bol): Change return value to
13593 EMACS_INT.
13594
13595 2012-01-25 Chong Yidong <cyd@gnu.org>
13596
13597 * eval.c (Fuser_variable_p): Doc fix; mention custom-variable-p.
13598
13599 2012-01-21 Chong Yidong <cyd@gnu.org>
13600
13601 * floatfns.c (Fcopysign): Make the second argument non-optional,
13602 since nil is not allowed anyway.
13603
13604 2012-01-21 Andreas Schwab <schwab@linux-m68k.org>
13605
13606 * process.c (read_process_output): Use p instead of XPROCESS (proc).
13607 (send_process): Likewise.
13608
13609 2012-01-19 Martin Rudalics <rudalics@gmx.at>
13610
13611 * window.c (save_window_save, Fcurrent_window_configuration)
13612 (Vwindow_persistent_parameters): Do not use Qstate.
13613 Rewrite doc-strings.
13614
13615 2012-01-19 Kenichi Handa <handa@m17n.org>
13616
13617 * character.c (char_width): New function.
13618 (Fchar_width, c_string_width, lisp_string_width):
13619 Use char_width (Bug#9496).
13620
13621 2012-01-16 Martin Rudalics <rudalics@gmx.at>
13622
13623 * window.c (Vwindow_persistent_parameters): New variable.
13624 (Fset_window_configuration, save_window_save): Handle persistent
13625 window parameters.
13626
13627 2012-01-14 Eli Zaretskii <eliz@gnu.org>
13628
13629 * w32fns.c (signal_user_input): Don't do a QUIT, to avoid
13630 thrashing the stack of the thread. (Bug#9087)
13631
13632 2012-01-12 Paul Eggert <eggert@cs.ucla.edu>
13633
13634 * xdisp.c (rows_from_pos_range): Add parens as per gcc -Wparentheses.
13635
13636 2012-01-11 Eli Zaretskii <eliz@gnu.org>
13637
13638 * xdisp.c (rows_from_pos_range): Handle the case where the
13639 highlight ends on a newline. (Bug#10464)
13640 (mouse_face_from_buffer_pos): Fix off-by-one error in calculating
13641 he end column for display of highlight that ends on a newline
13642 before a R2L line.
13643
13644 2012-01-11 Glenn Morris <rgm@gnu.org>
13645
13646 * lread.c (init_lread): If no-site-lisp, remove site-lisp dirs
13647 from load-path also when installation-directory is nil. (Bug#10208)
13648
13649 2012-01-10 Glenn Morris <rgm@gnu.org>
13650
13651 * emacs.c (syms_of_emacs) <installation-directory>: Doc fix.
13652
13653 * epaths.in (PATH_LOADSEARCH, PATH_EXEC, PATH_DATA, PATH_DOC):
13654 Update template values to be closer to their typical values these days.
13655
13656 2012-01-09 Eli Zaretskii <eliz@gnu.org>
13657
13658 * xdisp.c (rows_from_pos_range): Accept additional argument
13659 DISP_STRING, and accept any glyph in a row whose object is that
13660 string as eligible for mouse highlight. Fixes mouse highlight of
13661 display strings from overlays. (Bug#10464)
13662
13663 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
13664
13665 emacs: fix an auto-save permissions race condition (Bug#10400)
13666 * fileio.c (auto_saving_dir_umask): New static var.
13667 (Fmake_directory_internal): Use it.
13668 (do_auto_save_make_dir): Set it, instead of invoking chmod after
13669 creating the directory. The old code temporarily assigns
13670 too-generous permissions to the directory.
13671 (do_auto_save_eh): Clear it.
13672 (Fdo_auto_save): Catch all errors, not just file errors, so
13673 that the var is always cleared.
13674
13675 2012-01-07 Eli Zaretskii <eliz@gnu.org>
13676
13677 * search.c (scan_buffer): Pass character positions to
13678 know_region_cache, not byte positions. (Bug#6540)
13679
13680 2012-01-07 LynX <_LynX@bk.ru> (tiny change)
13681
13682 * w32.c (sys_rename): Report EXDEV when rename of a directory
13683 fails because the target is on another logical disk. (Bug#10284)
13684
13685 2012-01-07 David Benjamin <davidben@mit.edu> (tiny change)
13686
13687 * xterm.c (x_embed_request_focus): New function.
13688
13689 * xterm.h: Add prototype.
13690
13691 * xfns.c (Fx_focus_frame): Use it for embedded frames (Bug#9977).
13692
13693 2012-01-05 Glenn Morris <rgm@gnu.org>
13694
13695 * emacs.c (emacs_copyright): Update short copyright year to 2012.
13696
13697 2012-01-01 Eli Zaretskii <eliz@gnu.org>
13698
13699 * gnutls.c (init_gnutls_functions): Load gnutls_check_version.
13700 Load gnutls_transport_set_lowat only if GnuTLS version is below
13701 2.11.1.
13702 (emacs_gnutls_handshake): Call gnutls_transport_set_lowat only for
13703 GnuTLS versions below 2.11.1.
13704
13705 2011-12-31 Antoine Levitt <antoine.levitt@gmail.com>
13706
13707 * xdisp.c (syms_of_xdisp) <window-scroll-functions>: Add warning
13708 to the doc string advising against its use for altering the way
13709 windows are scrolled.
13710
13711 2011-12-28 Kenichi Handa <handa@m17n.org>
13712
13713 * coding.c (Fdefine_coding_system_internal): Make an utf-8 base
13714 coding-system ASCII compatible only when it does not produce BOM
13715 on encoding (Bug#10383).
13716
13717 2011-12-26 Jan Djärv <jan.h.d@swipnet.se>
13718
13719 * xmenu.c (x_menu_wait_for_event): Use xg_select for Gtk3 so menus
13720 can scroll.
13721 (create_and_show_popup_menu): Always use menu_position_func for
13722 Gtk3 (Bug#10361).
13723
13724 2011-12-24 Andreas Schwab <schwab@linux-m68k.org>
13725
13726 * callint.c (Fcall_interactively): Don't truncate prompt string.
13727
13728 2011-12-23 Eli Zaretskii <eliz@gnu.org>
13729
13730 * xdisp.c (handle_invisible_prop): Handle correctly an invisible
13731 property that ends at ZV, so that the bidi iteration could be
13732 resumed from there (after widening). (Bug#10360)
13733
13734 2011-12-22 Jan Djärv <jan.h.d@swipnet.se>
13735
13736 * nsfont.m (ns_spec_to_descriptor): Do not autorelease fdesc.
13737
13738 2011-12-21 Jan Djärv <jan.h.d@swipnet.se>
13739
13740 * nsterm.m (x_free_frame_resources):
13741 Release f->output_data.ns->miniimage.
13742 (ns_index_color): Fix indentation. Do not retain
13743 color_table->colors[i].
13744
13745 * nsmenu.m (ns_update_menubar): Call free_menubar_widget_value_tree
13746 before returning.
13747
13748 * nsfns.m (x_set_background_color): Assign return value from
13749 ns_index_color to face-background instead of NSColor*.
13750 (ns_implicitly_set_icon_type): Fix indentation.
13751 Change assignment in for loop to comparison.
13752
13753 * emacs.c (ns_pool): New variable.
13754 (main): Assign ns_pool.
13755 (Fkill_emacs): Call ns_release_autorelease_pool.
13756
13757 * nsfont.m (ns_spec_to_descriptor): Fix indentation,
13758 autorelease fdesc, release fdAttrs and tdict.
13759 (ns_get_covering_families): Release charset.
13760 (ns_findfonts): Release NSFontDescriptor created with new.
13761 (ns_uni_to_glyphs): Fix indentation.
13762 (setString): Release attrStr before assigning new value.
13763
13764 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
13765
13766 * nsmenu.m (NSMenuDidBeginTrackingNotification): Declare if OSX < 10.5
13767 and NS_IMPL_COCOA.
13768 (trackingNotification): Surround with ifdef NS_IMPL_COCOA.
13769 (syms_of_nsmenu): Set trackingMenu to 1 if not NS_IMPL_COCOA.
13770
13771 2011-12-18 David Reitter <reitter@cmu.edu>
13772
13773 * nsterm.m (ns_term_init): Subscribe for notifications
13774 NSMenuDidBeginTrackingNotification and NSMenuDidEndTrackingNotification
13775 to method trackingNotification in EmacsMenu.
13776
13777 * nsmenu.m (trackingMenu): New variable.
13778 (trackingNotification): New method (from Aquamacs).
13779 (menuNeedsUpdate): Expand comment and return if trackingMenu is 0,
13780 from Aquamacs (Bug#7030).
13781
13782 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
13783
13784 * nsselect.m (CUT_BUFFER_SUPPORT): Remove define.
13785 (symbol_to_nsstring): Fix indentation.
13786 (ns_symbol_to_pb): New function.
13787 (Fns_get_selection_internal): Rename from Fns_get_cut_buffer_internal.
13788 (Fns_rotate_cut_buffers_internal): Remove.
13789 (Fns_store_selection_internal): Rename from
13790 Fns_store_cut_buffer_internal.
13791 (ns_get_foreign_selection, Fx_own_selection_internal)
13792 (Fx_disown_selection_internal, Fx_selection_exists_p)
13793 (Fns_get_selection_internal, Fns_store_selection_internal):
13794 Use ns_symbol_to_pb and check if return value is nil.
13795 (syms_of_nsselect): Remove ifdef CUT_BUFFER_SUPPORT. Remove defsubr
13796 Sns_rotate_cut_buffers_internal. Sns_get_cut_buffer_internal
13797 renamed to Sns_get_selection_internal, Sns_store_cut_buffer_internal
13798 renamed to Sns_store_selection_internal.
13799 (ns_handle_selection_request): Move code to Fx_own_selection_internal
13800 and remove this function.
13801 (ns_handle_selection_clear): Remove, never used.
13802 (Fx_own_selection_internal): Move code from ns_handle_selection_request
13803 here.
13804
13805 2011-12-17 Ken Brown <kbrown@cornell.edu>
13806
13807 * fileio.c (check_writable) [CYGWIN]: Return non-zero if UID or
13808 GID is unknown (Bug#10257).
13809
13810 2011-12-17 Paul Eggert <eggert@cs.ucla.edu>
13811
13812 * s/gnu-linux.h: Fix mark_memory typo (Bug#10286).
13813 (GC_MARK_SECONDARY_STACK): Omit removed 3rd arg to mark_memory,
13814 which caused a build failure on GNU/Linux IA-64. This problem was
13815 introduced by my 2011-10-07 patch.
13816
13817 2011-12-15 Juri Linkov <juri@jurta.org>
13818
13819 * image.c (imagemagick_error): New function. (Bug#10112)
13820 (imagemagick_load_image): Comment out `MagickSetResolution' call.
13821 Use `imagemagick_error' where ImageMagick functions return
13822 `MagickFalse'.
13823 (Fimagemagick_types): Add `Fnreverse' to return the list in the
13824 proper order.
13825
13826 2011-12-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13827
13828 * xftfont.c (xftfont_draw): Use the font metrics of s->font to
13829 fill background (Bug#8992).
13830
13831 2011-12-13 Martin Rudalics <rudalics@gmx.at>
13832
13833 * window.c (Vwindow_combination_resize)
13834 (Vwindow_combination_limit): Use t instead of non-nil in
13835 doc-strings.
13836 (Vrecenter_redisplay): Add first sentence of doc-string on
13837 separate line.
13838 (Frecenter): Fix doc-string typo.
13839
13840 2011-12-11 Kenichi Handa <handa@m17n.org>
13841
13842 * coding.c (Funencodable_char_position): Pay attention to the
13843 buffer text relocation (Bug#9389).
13844
13845 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
13846
13847 * xterm.c (x_term_init): Move call to gdk_window_add_filter before
13848 gtk_init (Bug#10100).
13849
13850 2011-12-10 Eli Zaretskii <eliz@gnu.org>
13851
13852 * xdisp.c (RECORD_MAX_MIN_POS): Use IT->cmp_it.charpos only if
13853 IT->string is nil. (Bug#10263)
13854
13855 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
13856
13857 * nsterm.h (x_free_frame_resources): Declare.
13858
13859 * nsfns.m (ns_get_defaults_value): New function (Bug#10103).
13860 (Fns_get_resource, x_get_string_resource): Call ns_get_defaults_value.
13861
13862 * nsterm.h (ns_get_defaults_value): Declare.
13863
13864 * nsterm.m (ns_default): Call ns_get_defaults_value.
13865
13866 2011-12-09 Eli Zaretskii <eliz@gnu.org>
13867
13868 * xdisp.c (try_scrolling): Don't set scroll_down_p if dy is zero.
13869 (Bug#10170)
13870
13871 2011-12-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13872
13873 * unexelf.c (unexec) [NS_IMPL_GNUSTEP]: Take account of the case
13874 that where the value of an _OBJC_* symbol points to is in the .bss
13875 section (Bug#10240).
13876
13877 2011-12-08 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
13878
13879 * coding.c (encode_coding_ccl): Check (charbuf < charbuf_end)
13880 after the loop to call ccl_driver at least once (Bug#8619).
13881
13882 2011-12-08 Kenichi Handa <handa@m17n.org>
13883
13884 * ftfont.c (get_adstyle_property): Fix previous change
13885 (Bug#10233).
13886
13887 2011-12-07 Juanma Barranquero <lekktu@gmail.com>
13888
13889 * w32.c (init_environment): If no_site_lisp, remove site-lisp
13890 dirs from the default value of EMACSLOADPATH (bug#10208).
13891
13892 2011-12-07 Glenn Morris <rgm@gnu.org>
13893
13894 * lread.c (init_lread): If no_site_lisp, exclude site-lisp/ in
13895 installation and source directories as well. (Bug#10208)
13896
13897 2011-12-06 Chong Yidong <cyd@gnu.org>
13898
13899 * minibuf.c (Fread_from_minibuffer): Doc fix (Bug#10228).
13900
13901 2011-12-06 Glenn Morris <rgm@gnu.org>
13902
13903 * process.c (start_process_unwind): Treat any pid <= 0, except -2,
13904 as an error, not just -1. (Bug#10217)
13905
13906 2011-12-05 Chong Yidong <cyd@gnu.org>
13907
13908 * keyboard.c (process_special_events): New function.
13909 (swallow_events, Finput_pending_p): Use it (Bug#10195).
13910
13911 2011-12-05 Paul Eggert <eggert@cs.ucla.edu>
13912
13913 * coding.c (encode_designation_at_bol): Don't use uninitialized
13914 local variable (Bug#9318).
13915
13916 2011-12-05 Kenichi Handa <handa@m17n.org>
13917
13918 * ftfont.c (get_adstyle_property): If the font is not BDF nor PCF,
13919 return Qnil (Bug#8046, Bug#10193).
13920
13921 2011-12-05 Kenichi Handa <handa@m17n.org>
13922
13923 * coding.c (encode_designation_at_bol): New args charbuf_end and
13924 dst. Return the number of produced bytes. Callers changed.
13925 (coding_set_source): Return how many bytes coding->source was
13926 relocated.
13927 (coding_set_destination): Return how many bytes
13928 coding->destination was relocated.
13929 (CODING_DECODE_CHAR, CODING_ENCODE_CHAR, CODING_CHAR_CHARSET)
13930 (CODING_CHAR_CHARSET_P): Adjust for the avove changes.
13931
13932 2011-12-05 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
13933
13934 * coding.c (CODING_CHAR_CHARSET_P): New macro.
13935 (encode_coding_emacs_mule, encode_coding_iso_2022): Use the above
13936 macro (Bug#9318).
13937
13938 2011-12-05 Andreas Schwab <schwab@linux-m68k.org>
13939
13940 The following changes are to fix Bug#9318.
13941
13942 * coding.c (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET): New macros.
13943 (encode_coding_emacs_mule, ENCODE_ISO_CHARACTER)
13944 (encode_coding_iso_2022, encode_coding_sjis)
13945 (encode_coding_big5, encode_coding_charset): Use the above macros.
13946
13947 2011-12-05 Juanma Barranquero <lekktu@gmail.com>
13948
13949 * lisp.h (process_quit_flag): Fix external declaration.
13950
13951 2011-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
13952
13953 Don't macro-inline non-performance-critical code.
13954 * eval.c (process_quit_flag): New function.
13955 * lisp.h (QUIT): Use it.
13956
13957 2011-12-04 Jan Djärv <jan.h.d@swipnet.se>
13958
13959 * nsfns.m (get_geometry_from_preferences): New function.
13960 (Fx_create_frame): Call get_geometry_from_preferences (Bug#10103).
13961
13962 2011-12-04 Andreas Schwab <schwab@linux-m68k.org>
13963
13964 * emacs.c (Qkill_emacs): Define.
13965 (syms_of_emacs): Initialize it.
13966 * keyboard.c (interrupt_signal): Don't call Fkill_emacs here, set
13967 Qquit_flag to `kill-emacs' instead.
13968 (quit_throw_to_read_char): Add parameter `from_signal'.
13969 All callers changed. Call Fkill_emacs if requested and safe.
13970 * lisp.h (QUIT): Call Fkill_emacs if requested.
13971
13972 2011-12-03 Jan Djärv <jan.h.d@swipnet.se>
13973
13974 * widget.c (update_wm_hints): Return if wmshell is null.
13975 (widget_update_wm_size_hints): New function.
13976
13977 * widget.h (widget_update_wm_size_hints): Declare.
13978
13979 * xterm.c (x_wm_set_size_hint): If USE_X_TOOLKIT, call
13980 widget_update_wm_size_hints (Bug#10104).
13981
13982 2011-12-03 Eli Zaretskii <eliz@gnu.org>
13983
13984 * xdisp.c (handle_invisible_prop): If the invisible text ends just
13985 before a newline, prepare the bidi iterator for consuming the
13986 newline, and keep the current paragraph direction. (Bug#10183)
13987 (redisplay_window): Don't let `margin' become negative. (Bug#10192)
13988
13989 2011-12-02 Juri Linkov <juri@jurta.org>
13990
13991 * search.c (Fword_search_regexp): New Lisp function created from
13992 `wordify'. Change type of arg `lax' from `int' to `Lisp_Object'.
13993 (Fword_search_backward, Fword_search_forward)
13994 (Fword_search_backward_lax, Fword_search_forward_lax):
13995 Use `Fword_search_regexp' instead of `wordify'. Doc fix.
13996 (syms_of_search): Define `Sword_search_regexp'. (Bug#10145)
13997
13998 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
13999
14000 * fileio.c (Finsert_file_contents): Move after-change-function call
14001 to before the "handled:" label, since all "goto handled" appear in
14002 cases where the *-change-functions have already been properly called
14003 (bug#10117).
14004
14005 2011-12-01 Andreas Schwab <schwab@linux-m68k.org>
14006
14007 * keyboard.c (interrupt_signal): Don't call kill-emacs when
14008 waiting for input. (Bug#10169)
14009
14010 2011-11-30 Eli Zaretskii <eliz@gnu.org>
14011
14012 * dispnew.c (adjust_glyph_matrix): Remove the assertion that
14013 verifies glyph row's hash code--we have just reallocated the
14014 glyphs, so their contents can be complete garbage. (Bug#10164)
14015
14016 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
14017
14018 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Add missing check.
14019
14020 2011-11-30 Eli Zaretskii <eliz@gnu.org>
14021
14022 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Ensure ROW's
14023 attributes are tested _before_ calling verify_row_hash, to protect
14024 against GCC re-ordering of the tests. (Bug#10164)
14025
14026 2011-11-29 Jan Djärv <jan.h.d@swipnet.se>
14027
14028 * xterm.h (struct x_output): net_wm_state_hidden_seen is new.
14029
14030 * xterm.c (handle_one_xevent): Only set async_visible and friends
14031 if net_wm_state_hidden_seen is non-zero (Bug#10002)
14032 (get_current_wm_state): Set net_wm_state_hidden_seen to 1 if
14033 _NET_WM_STATE_HIDDEN is in NET_WM_STATE.
14034
14035 2011-11-28 Paul Eggert <eggert@cs.ucla.edu>
14036
14037 Remove GCPRO-related macros that exist only to avoid shadowing locals.
14038 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR)
14039 (GCPRO6_VAR, UNGCPRO_VAR): Remove. See
14040 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
14041 All uses changed to use GCPRO1 etc.
14042 (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6, UNGCPRO):
14043 Revert to old implementation (i.e., before 2011-03-11).
14044
14045 2011-11-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14046
14047 * dispnew.c (scrolling_window): Truncate overlaps in copy destination
14048 of scroll runs so as to avoid assigning disabled bogus rows and
14049 unnecessary graphics copy operations.
14050
14051 2011-11-27 Eli Zaretskii <eliz@gnu.org>
14052
14053 * s/ms-w32.h (utimbuf) [_MSC_VER]: Don't define.
14054 (snprintf) [_MSC_VER]: Redirect to _snprintf.
14055 (strtoll) [_MSC_VER]: Redirect to _strtoi64.
14056 (malloc, free, realloc, calloc): Redirect to e_* only when
14057 compiling Emacs.
14058
14059 * lisp.h (GCTYPEBITS): Move before first use.
14060 (ALIGN_GCTYPEBITS) [_MSC_VER]: Define.
14061 (DECL_ALIGN) [_MSC_VER]: Use it, as MSVC doesn't like bit ops in
14062 this macro definition.
14063
14064 * s/ms-w32.h (tzname): Redirect to _tzname for all values of
14065 _MSC_VER.
14066
14067 2011-11-27 Jan Djärv <jan.h.d@swipnet.se>
14068
14069 * gtkutil.c (xg_create_frame_widgets):
14070 Call gtk_window_set_has_resize_grip (FALSE) if that function is
14071 present with Gtk+ 2.0.
14072
14073 2011-11-26 Paul Eggert <eggert@cs.ucla.edu>
14074
14075 * fileio.c (Finsert_file_contents): Undo previous change; see
14076 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
14077
14078 2011-11-26 Paul Eggert <eggert@cs.ucla.edu>
14079
14080 Rename locals to avoid shadowing.
14081 * fileio.c (Finsert_file_contents):
14082 Rename inner 'gcpro1' to 'inner_gcpro1' to avoid shadowing.
14083 * process.c (wait_reading_process_output):
14084 Rename inner 'proc' to 'p' to avoid shadowing.
14085 Indent for consistency with usual Emacs style.
14086
14087 2011-11-25 Eli Zaretskii <eliz@gnu.org>
14088
14089 * xdisp.c (redisplay_window): If cursor row is not fully visible
14090 after recentering, and scroll-conservatively is set to a large
14091 number, scroll window by a few more lines to make the cursor fully
14092 visible and out of scroll-margin. (Bug#10105)
14093 (start_display): Don't move to the next line if the display should
14094 start at a newline that is part of a display vector or an overlay
14095 string. (Bug#10119)
14096
14097 2011-11-24 Juri Linkov <juri@jurta.org>
14098
14099 * image.c (imagemagick_load_image): Move `MagickSetResolution' down
14100 after the `MagickPingImage' call. (Bug#10112)
14101
14102 2011-11-23 Chong Yidong <cyd@gnu.org>
14103
14104 * window.c (Fcoordinates_in_window_p): Accept only live windows.
14105
14106 2011-11-23 Martin Rudalics <rudalics@gmx.at>
14107
14108 * buffer.c (Fkill_buffer): Run replace_buffer_in_windows before
14109 making another buffer current. (Bug#10114)
14110
14111 2011-11-23 Glenn Morris <rgm@gnu.org>
14112
14113 * font.c (font_find_for_lface) [HAVE_NS]: Ignore case. (Bug#2526)
14114
14115 2011-11-23 Chong Yidong <cyd@gnu.org>
14116
14117 * xdisp.c (compute_stop_pos): Check validity of end_charpos before
14118 using it (Bug#5984).
14119
14120 2011-11-22 Eli Zaretskii <eliz@gnu.org>
14121
14122 * dispnew.c (adjust_glyph_matrix): Don't verify hash code of mode-
14123 and header-lines, as they don't have one computed for them.
14124 (Bug#10098)
14125
14126 * .gdbinit (prow): Make displayed values more self-explaining.
14127 Add row's hash code.
14128
14129 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
14130
14131 * process.c (wait_reading_process_output): Fix asynchrounous
14132 GnuTLS socket handling on some versions of the GnuTLS library.
14133 (wait_reading_process_output): Add comment and URL.
14134
14135 2011-11-21 Jan Djärv <jan.h.d@swipnet.se>
14136
14137 * xterm.c (x_clear_frame): Reinstate the XClearWindow call.
14138
14139 2011-11-21 Chong Yidong <cyd@gnu.org>
14140
14141 * window.c (Fnext_window, Fprevious_window): Doc fix.
14142
14143 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
14144
14145 * window.c (get_phys_cursor_glyph): Fix Lisp_Object/int mixup.
14146
14147 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
14148
14149 * nsfont.m (syms_of_nsfont) <ns-reg-to-script>: Fix typo.
14150
14151 2011-11-20 Martin Rudalics <rudalics@gmx.at>
14152
14153 * window.c (Fset_window_combination_limit): Rename argument
14154 STATUS to LIMIT.
14155 (Vwindow_combination_limit): Remove "status" from doc-string.
14156
14157 2011-11-20 Andreas Schwab <schwab@linux-m68k.org>
14158
14159 * m/ibms390.h: Remove.
14160 * m/ibms390x.h: Don't include "ibms390.h".
14161
14162 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
14163
14164 * fileio.c (Finsert_file_contents): Add missing gcpro1 variable.
14165 Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
14166
14167 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
14168
14169 * casetab.c (Fset_case_table):
14170 * charset.c (Fcharset_after): Fix typos.
14171
14172 2011-11-20 Paul Eggert <eggert@cs.ucla.edu>
14173
14174 Standardize on VIRT_ADDR_VARIES behavior (Bug#10042).
14175 Otherwise, valgrind does not work on some platforms.
14176 Problem reported by Andreas Schwab in
14177 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00081.html>.
14178 * puresize.h (pure, PURE_P): Always behave as if VIRT_ADDR_VARIES
14179 is set, removing the need for VIRT_ADDRESS_VARIES.
14180 (PURE_P): Use a more-efficient implementation that needs just one
14181 comparison, not two: on x86-64 with GCC 4.6.2, this cut down the
14182 number of instructions from 6 (xorl, cmpq, jge, xorl, cmpq, setge)
14183 to 4 (xorl, subq, cmpq, setbe).
14184 * alloc.c (pure): Always extern now, since that's the
14185 VIRT_ADDR_VARIES behavior.
14186 (PURE_POINTER_P): Use a single comparison, not two, for
14187 consistency with the new puresize.h.
14188 * lisp.h (PNTR_COMPARISON_TYPE): Remove; no longer needed.
14189 * m/ibms390.h, m/intel386.h, m/template.h, s/cygwin.h, s/hpux10-20.h:
14190 Remove VIRT_ADDR_VARIES no longer needed.
14191
14192 2011-11-19 Eli Zaretskii <eliz@gnu.org>
14193
14194 * xdisp.c (x_write_glyphs, draw_phys_cursor_glyph)
14195 (erase_phys_cursor, update_window_cursor, show_mouse_face)
14196 (cursor_in_mouse_face_p): If the cursor position is out of bounds,
14197 behave as if the cursor position were at the window margin.
14198
14199 * window.c (get_phys_cursor_glyph): If the window is hscrolled,
14200 and the cursor position is out of bounds, behave as if the cursor
14201 position were at the window margin. (Bug#10075)
14202
14203 2011-11-18 Chong Yidong <cyd@gnu.org>
14204
14205 * window.c (Fwindow_combination_limit): Make first argument
14206 non-optional, since it is meaningless for live windows like the
14207 selected window.
14208
14209 2011-11-18 Dmitry Antipov <dmantipov@yandex.ru>
14210
14211 * keymap.c (Fwhere_is_internal): Add missing RETURN_UNGCPROs.
14212
14213 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
14214
14215 * intervals.c: Fix grafting over the whole buffer (bug#10071).
14216 (graft_intervals_into_buffer): Simplify.
14217
14218 2011-11-18 Eli Zaretskii <eliz@gnu.org>
14219
14220 * dispnew.c (swap_glyph_pointers): Swap the used[] arrays and the
14221 hash values of the two rows.
14222 (copy_row_except_pointers): Preserve the used[] arrays and the
14223 hash values of the two rows. (Bug#10035)
14224 (add_row_entry): Add xassert to verify that ROW's hash code is valid.
14225
14226 * xdisp.c (row_hash): New function, body extracted from
14227 compute_line_metrics.
14228 (compute_line_metrics): Call row_hash, instead of computing the
14229 hash code inline.
14230
14231 * dispnew.c (verify_row_hash): Call row_hash for computing the
14232 hash code of a row, instead of duplicating code from xdisp.c.
14233
14234 * dispextern.h (row_hash): Add prototype.
14235
14236 2011-11-18 Tassilo Horn <tassilo@member.fsf.org>
14237
14238 * frame.c (delete_frame): Don't delete the terminal when the last
14239 X frame is closed if emacs is built with GTK toolkit.
14240
14241 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
14242
14243 * window.c (syms_of_window) <window-combination-resize>: Fix typo.
14244
14245 2011-11-17 Martin Rudalics <rudalics@gmx.at>
14246
14247 * window.c (Vwindow_splits): Rename to
14248 Vwindow_combination_resize. Suggested by Juri Linkov.
14249 (Fsplit_window_internal): Use Vwindow_combination_resize instead
14250 of Vwindow_splits.
14251
14252 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
14253
14254 * nsfns.m (Fns_font_name):
14255 * window.c (syms_of_window) <window-combination-limit>: Fix typos.
14256
14257 2011-11-16 Martin Rudalics <rudalics@gmx.at>
14258
14259 * window.h (window): Rename slot "nest" to "combination_limit".
14260 * window.c (Fwindow_nest): Rename to Fwindow_combination_limit.
14261 (Fset_window_nest): Rename to Fset_window_combination_limit.
14262 (Vwindow_nest): Rename to Vwindow_combination_limit.
14263 (recombine_windows, make_parent_window, make_window)
14264 (Fsplit_window_internal, saved_window)
14265 (Fset_window_configuration, save_window_save): Rename all
14266 occurrences of window_nest to window_combination_limit.
14267
14268 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
14269
14270 * image.c (imagemagick_load_image): Fix typo.
14271
14272 2011-11-14 Eli Zaretskii <eliz@gnu.org>
14273
14274 * xdisp.c (display_line): Move the call to
14275 highlight_trailing_whitespace before the call to
14276 compute_line_metrics, since the latter needs to see the final
14277 faces of all the glyphs to compute ROW's hash value.
14278 Fixes assertion violations in row_equal_p. (Bug#10035)
14279
14280 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
14281
14282 * w32proc.c (reader_thread): Don't check pending input if cp->fd < 0,
14283 just return (bug#10044).
14284
14285 2011-11-12 Eli Zaretskii <eliz@gnu.org>
14286
14287 * makefile.w32-in (HEAPSIZE): New variable, allows to build temacs
14288 with user-defined heap size. Bump the default size of the temacs
14289 heap to 27MB, to avoid memory warning when running temacs.
14290 ($(TEMACS)): Use HEAPSIZE instead of a hardcoded value.
14291
14292 * dispnew.c (scrolling_window): Fix incorrect indices in accessing
14293 current_matrix and desired_matrix. (Bug#9990)
14294 (verify_row_hash) [XASSERTS]: New function.
14295 (adjust_glyph_matrix, row_equal_p): Use it in xassert to verify
14296 that the hash value of glyph rows is correct.
14297
14298 2011-11-12 Martin Rudalics <rudalics@gmx.at>
14299
14300 * window.h (window): Remove splits slot.
14301 * window.c (Fwindow_splits, Fset_window_splits): Remove.
14302 (Fdelete_other_windows_internal, make_parent_window)
14303 (make_window, Fsplit_window_internal, Fdelete_window_internal)
14304 (Fset_window_configuration, save_window_save): Don't deal with
14305 split status of windows.
14306 (saved_window): Remove splits slot.
14307 (Vwindow_splits): Rewrite doc-string.
14308
14309 2011-11-11 Jan Djärv <jan.h.d@swipnet.se>
14310
14311 * xfns.c (unwind_create_frame):
14312 * nsfns.m (unwind_create_frame):
14313 * w32fns.c (unwind_create_frame): Use Fmemq to check if frame is in
14314 Vframe_list (Bug#9999).
14315
14316 2011-11-11 Dmitry Antipov <dmantipov@yandex.ru>
14317
14318 * xdisp.c (syms_of_xdisp): Remove duplicated definition of Qtext.
14319
14320 2011-11-11 Kenichi Handa <handa@m17n.org>
14321
14322 * callproc.c (Fcall_process): Set the member dst_multibyte of
14323 process_coding.
14324
14325 2011-11-11 Johan Bockgård <bojohan@gnu.org>
14326
14327 * xdisp.c (fill_composite_glyph_string): Always set s->face, to
14328 avoid a crash (bug#9496).
14329
14330 2011-11-09 Chong Yidong <cyd@gnu.org>
14331
14332 * window.c (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
14333 (Fwindow_inside_absolute_pixel_edges): Only allow live windows.
14334
14335 2011-11-08 Paul Eggert <eggert@cs.ucla.edu>
14336
14337 * s/gnu.h (GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS (Bug#9926).
14338
14339 2011-11-08 Paul Eggert <eggert@cs.ucla.edu>
14340
14341 Avoid some portability problems by eschewing 'extern inline' functions.
14342 The trivial performance wins aren't worth the portability hassles; see
14343 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>
14344 et seq.
14345 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
14346 (window_box_width, window_box_left, window_box_left_offset)
14347 (window_box_right, window_box_right_offset): Undo previous change,
14348 by removing the "extern"s.
14349 * intervals.c (adjust_intervals_for_insertion)
14350 (adjust_intervals_for_deletion): Undo previous change,
14351 making these static again.
14352 (offset_intervals, temp_set_point_both, temp_set_point)
14353 (copy_intervals_to_string): No longer inline.
14354 * xdisp.c (window_text_bottom_y, window_box_width)
14355 (window_box_height, window_box_left_offset)
14356 (window_box_right_offset, window_box_left, window_box_right)
14357 (window_box): No longer inline.
14358
14359 2011-11-08 Chong Yidong <cyd@gnu.org>
14360
14361 * window.c (Fwindow_left_column, Fwindow_top_line): Doc fix.
14362 (Fwindow_body_height, Fwindow_body_width): Move from Lisp.
14363 Signal an error if not a live window.
14364 (Fwindow_total_width, Fwindow_total_height): Move from Lisp.
14365 (Fwindow_total_size, Fwindow_body_size): Move to Lisp.
14366
14367 2011-11-07 Juanma Barranquero <lekktu@gmail.com>
14368
14369 * lisp.h (syms_of_abbrev): Remove declaration.
14370 Reported by CHENG Gao <chenggao@royau.me>.
14371
14372 2011-11-07 Eli Zaretskii <eliz@gnu.org>
14373
14374 * w32.c (check_windows_init_file): Don't look for term/w32-win.el
14375 if Vpurify_flag is non-nil. Fixes a crash when running w32 build
14376 of temacs in GUI mode.
14377
14378 2011-11-07 Martin Rudalics <rudalics@gmx.at>
14379
14380 * window.h: Declare delete_all_child_windows instead of
14381 delete_all_subwindows.
14382 * window.c (Fwindow_nest, Fset_window_nest)
14383 (Fset_window_new_total, Fset_window_new_normal)
14384 (Fwindow_resize_apply): Don't use term subwindow in doc-strings.
14385 (delete_all_subwindows): Rename to delete_all_child_windows.
14386 (Fdelete_other_windows_internal, Fset_window_configuration):
14387 Call delete_all_child_windows instead of delete_all_subwindows.
14388 * frame.c (delete_frame): Call delete_all_child_windows instead
14389 of delete_all_subwindows.
14390
14391 2011-11-07 Paul Eggert <eggert@cs.ucla.edu>
14392
14393 * alloc.c (DEADP): New macro, for porting to GNU/Hurd (Bug#9926).
14394 This is also needed for porting to any host where GC_MARK_STACK is
14395 not GC_MAKE_GCPROS_NOOPS.
14396 (which_symbols): Use it.
14397
14398 2011-11-07 Kenichi Handa <handa@m17n.org>
14399
14400 * coding.c (coding_set_destination): Check coding->src_pos only
14401 when coding->src_object is a buffer (bug#9910).
14402
14403 * process.c (send_process): Set the member src_multibyte of coding
14404 to 0 (bug#9911) when sending a unibyte text.
14405
14406 * callproc.c (Fcall_process): Set the member src_multibyte of
14407 process_coding to 0 (bug#9912).
14408
14409 2011-11-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14410
14411 * xmenu.c (cleanup_widget_value_tree): New function.
14412 (xmenu_show, xdialog_show): Use it in record_unwind_protect instead of
14413 calling free_menubar_widget_value_tree directly (Bug#9830).
14414
14415 2011-11-06 Paul Eggert <eggert@cs.ucla.edu>
14416
14417 Fix some portability problems with 'inline'.
14418 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
14419 (window_box_width, window_box_left, window_box_left_offset)
14420 (window_box_right, window_box_right_offset): Declare extern.
14421 Otherwise, these inline functions do not conform to C99 and
14422 are miscompiled by Microsoft compilers. Reported by Eli Zaretskii in
14423 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>.
14424 * intervals.c (adjust_intervals_for_insertion)
14425 (adjust_intervals_for_deletion): Now extern, because otherwise the
14426 extern inline functions 'offset_intervals' couldn't refer to it.
14427 (static_offset_intervals): Remove.
14428 (offset_intervals): Rewrite using the old contents of
14429 static_offset_intervals. The old version didn't conform to C99
14430 because an extern inline function contained a reference to an
14431 identifier with static linkage.
14432
14433 2011-11-06 Andreas Schwab <schwab@linux-m68k.org>
14434
14435 * keyboard.c (interrupt_signal): Don't call kill-emacs while in
14436 GC.
14437
14438 2011-11-06 Eli Zaretskii <eliz@gnu.org>
14439
14440 * xdisp.c (init_iterator, reseat_to_string): Don't set the
14441 iterator's bidi_p flag if Vpurify_flag is non-nil. (Bug#9963)
14442 (Fcurrent_bidi_paragraph_direction): If Vpurify_flag is non-nil,
14443 return Qleft_to_right.
14444
14445 2011-11-06 Chong Yidong <cyd@gnu.org>
14446
14447 * window.c (Fwindow_live_p, Fwindow_frame, Fframe_root_window)
14448 (Fminibuffer_window, Fwindow_buffer, Fwindow_splits)
14449 (Fset_window_splits, Fwindow_nest, Fset_window_nest)
14450 (Fwindow_use_time, Fwindow_total_size, Fwindow_normal_size)
14451 (Fwindow_new_normal, Fwindow_left_column, Fwindow_top_line)
14452 (Fwindow_margins, Fwindow_fringes, Fwindow_scroll_bars)
14453 (Fwindow_vscroll): Doc fix.
14454 (Fwindow_top_child, Fwindow_left_child): Eliminate a nil default
14455 argument, since it makes no sense to pass a live window and for
14456 consistency with window-child.
14457
14458 2011-11-05 Christoph Scholtes <cschol2112@googlemail.com>
14459
14460 * makefile.w32-in ($(TEMACS), (gl-stamp)): Use $(THISDIR) to
14461 support MSVC.
14462
14463 2011-11-05 Jason Rumney <jasonr@gnu.org>
14464
14465 * w32font.c (font_matches_spec): Filter out non-Japanese kana fonts.
14466 (add_font_entity_to_list): Filter out non-Japanese Shift-JIS
14467 fonts (Bug#6029).
14468 (add_font_entity_to_list): Fix logic errors in mixed boolean and
14469 bitwise arithmetic preventing use of unicode-sip and non-truetype
14470 opentype fonts.
14471
14472 2011-11-05 Eli Zaretskii <eliz@gnu.org>
14473
14474 * s/ms-w32.h (fstat, stat, utime): Move redirections to
14475 "emacs"-only part.
14476
14477 * w32fns.c (x_create_tip_frame, Fx_create_frame): Rearrange
14478 initialization code to keep similarity to xfns.c after changes
14479 from 2011-11-05.
14480
14481 2011-11-05 Jan Djärv <jan.h.d@swipnet.se>
14482
14483 * nsfns.m: Declare image_cache_refcount if GLYPH_DEBUG.
14484 (unwind_create_frame): New function (Bug#9943).
14485 (Fx_create_frame): Restructure code to be more similar to the one in
14486 xfns.c. Call record_unwind_protect with unwind_create_frame (Bug#9943).
14487 Initialize image_cache_refcount if GLYPH_DEBUG (Bug#9943).
14488 Move terminal->reference_count++ just before making the frame official
14489 (Bug#9943).
14490
14491 * nsterm.m (x_free_frame_resources): New function.
14492 (x_destroy_window): Move code to x_free_frame_resources.
14493
14494 * xfns.c (unwind_create_frame): Fix comment.
14495 (Fx_create_frame, x_create_tip_frame):
14496 Move terminal->reference_count++ just before making the frame
14497 official. Move initialization of image_cache_refcount and
14498 dpyinfo_refcount before calling init_frame_faces (Bug#9943).
14499
14500 2011-11-05 Eli Zaretskii <eliz@gnu.org>
14501
14502 Support MSVC build with newer versions of Visual Studio.
14503 * makefile.w32-in (TAGS-gmake): Don't use $(patsubst ...), as
14504 Nmake barfs on that. Use $(OBJ*_c) variables instead, defined on
14505 nt/gmake.defs.
14506
14507 * lisp.h (ENUM_BF): New macro, for enumerated types in bitfields,
14508 which are not supported by MSVC.
14509 (Lisp_Symbol, Lisp_Misc_Any, Lisp_Marker, Lisp_Misc_Overlay)
14510 (Lisp_Save_Value, Lisp_Free): Use ENUM_BF for enumerated types in
14511 bitfields.
14512 (Lisp_Object) [USE_LISP_UNION_TYPE]: Use ENUM_BF for enumerated
14513 types in bitfields.
14514 (DEFUN) [_MSC_VER]: Define in a different way for MSVC.
14515
14516 * w32fns.c [_MSC_VER]: DECLARE_HANDLE for any MSVC version.
14517
14518 2011-11-05 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
14519
14520 Support MSVC build with newer versions of Visual Studio.
14521 * w32.c: Don't include w32api.h for MSVC.
14522 (init_environment) [_MSC_VER]: Call sys_access, not _access.
14523
14524 * s/ms-w32.h <sigset_t, ssize_t> [_MSC_VER]: Typedefs for MSVC.
14525 [_MSC_VER]: Include sys/timeb.h, sys/stat.h, and signal.h.
14526 (fstat, stat, utime) [_MSC_VER]: Redirect to their sys_* cousins.
14527 (malloc, free, realloc, calloc) [_MSC_VER]: Always redirect to the
14528 e_* cousins.
14529 (alloca) [_MSC_VER]: Define to _alloca.
14530
14531 * lisp.h (DECL_ALIGN) [_MSC_VER]: Define for MSVC.
14532
14533 * regex.c <re_char> [_MSC_VER]: A separate definition for MSVC.
14534
14535 2011-11-04 Eli Zaretskii <eliz@gnu.org>
14536
14537 * xdisp.c (note_mouse_highlight): If either of
14538 previous/next-single-property-change returns nil, treat that as
14539 the beginning or the end of the buffer. (Bug#9955)
14540
14541 2011-11-04 Jan Djärv <jan.h.d@swipnet.se>
14542
14543 * gtkutil.c (xg_make_tool_item): Add callbacks if one of wimage or
14544 label is not null (Bug#9951).
14545 (xg_tool_item_stale_p): Handle the fact that wimage and/or wlbl
14546 may be NULL.
14547
14548 2011-11-04 Eli Zaretskii <eliz@gnu.org>
14549
14550 * window.c (Fwindow_body_size): Mention in the doc string that the
14551 return value is in frame's canonical units. (Bug#9949)
14552
14553 2011-11-03 Eli Zaretskii <eliz@gnu.org>
14554
14555 * xdisp.c (note_mouse_highlight): Initialize `area'. (Bug#9947)
14556
14557 * w32fns.c (unwind_create_frame): If needed, free the glyph
14558 matrices of the partially constructed frame. (Bug#9943)
14559 * xfns.c (unwind_create_frame): Likewise.
14560
14561 2011-11-01 Eli Zaretskii <eliz@gnu.org>
14562
14563 * xdisp.c (mouse_face_from_buffer_pos): Fix a typo in a comment.
14564 Don't stop backward scan on the continuation glyph, even though
14565 its CHARPOS is positive.
14566 (mouse_face_from_buffer_pos, note_mouse_highlight):
14567 Rename cover_string to disp_string.
14568
14569 2011-11-01 Martin Rudalics <rudalics@gmx.at>
14570
14571 * window.c (temp_output_buffer_show): Don't use
14572 Vtemp_buffer_show_specifiers.
14573 (Vtemp_buffer_show_specifiers): Remove unused variable.
14574
14575 2011-10-30 Eli Zaretskii <eliz@gnu.org>
14576
14577 * xdisp.c (try_cursor_movement): Make sure ROW isn't decremented
14578 past the beginning of the current glyph matrix.
14579
14580 2011-10-30 Adam Sjøgren <asjo@koldfront.dk> (tiny change)
14581
14582 * xterm.c: Include X11/Xproto.h if HAVE_GTK3.
14583 (x_error_handler): Ignore BadMatch for X_SetInputFocus for
14584 HAVE_GTK3 (Bug#9869).
14585
14586 * gtkutil.c (xg_win_to_widget, xg_event_is_for_menubar): Initialize
14587 type to GDK_NOTHING so valgrind does not complain (Bug#9901).
14588
14589 * xterm.h (x_display_info): Add Xatom_net_wm_state_hidden (Bug#9893).
14590
14591 * xterm.c: Declare x_handle_net_wm_state to return int.
14592 (handle_one_xevent): Check if we are iconified but don't have
14593 _NET_WM_STATE_HIDDEN. If do, treat as deiconify (Bug#9893).
14594 (get_current_wm_state): Return non-zero if not hidden,
14595 check for _NET_WM_STATE_HIDDEN (Bug#9893).
14596 (do_ewmh_fullscreen): Ignore return value from get_current_wm_state.
14597 (x_handle_net_wm_state): Return what get_current_wm_state returns.
14598 (x_term_init): Initialize dpyinfo->Xatom_net_wm_state_hidden.
14599
14600 2011-10-29 Paul Eggert <eggert@cs.ucla.edu>
14601
14602 * alloc.c (which_symbols): Declare EXTERNALLY_VISIBLE,
14603 so that this new function doesn't get optimized away by a
14604 whole-program optimizer. Make the 2nd arg EMACS_INT, not int.
14605
14606 2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
14607
14608 * frame.h (MOUSE_HL_INFO): Remove excess parens.
14609
14610 2011-10-29 Eli Zaretskii <eliz@gnu.org>
14611
14612 Fix the `xbytecode' command.
14613 * .gdbinit (xprintbytestr): New command.
14614 (xwhichsymbols): Rename from `which'; all callers changed.
14615 (xbytecode): Print the byte-code string as well.
14616
14617 2011-10-29 Kim Storm <storm@cua.dk>
14618
14619 * alloc.c (which_symbols): New function.
14620
14621 2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
14622
14623 * minibuf.c (read_minibuf_noninteractive): Allow reading empty
14624 line. (Bug#9903)
14625
14626 2011-10-29 Glenn Morris <rgm@gnu.org>
14627
14628 * process.c (wait_reading_process_output): Revert 2009-08-30 change.
14629 Not clear what it was for, and it causes various bugs. (Bug#9839)
14630
14631 2011-10-28 Eli Zaretskii <eliz@gnu.org>
14632
14633 * xdisp.c (note_mouse_highlight): Initialize `part', to avoid a
14634 possible random value that matches one of those tested as
14635 condition to clear the mouse face.
14636
14637 2011-10-28 Chong Yidong <cyd@gnu.org>
14638
14639 * xdisp.c (note_mouse_highlight): Fix use of uninitialized var.
14640
14641 2011-10-28 Dan Nicolaescu <dann@ics.uci.edu>
14642
14643 * window.c (make_window): Initialize phys_cursor_on_p.
14644
14645 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
14646
14647 * lisp.h (struct Lisp_Symbol): Update comments.
14648
14649 2011-10-28 Juanma Barranquero <lekktu@gmail.com>
14650
14651 * w32font.c (w32_load_unicows_or_gdi32): Add missing return.
14652
14653 2011-10-28 Eli Zaretskii <eliz@gnu.org>
14654
14655 Fix Emacs on Windows 9X (bug#8562). Thanks to oslsachem
14656 <oslsachem@gmail.com> for helping to debug this.
14657
14658 * w32font.c (g_b_init_is_w9x, g_b_init_get_outline_metrics_w)
14659 (g_b_init_get_text_metrics_w, g_b_init_get_glyph_outline_w)
14660 (g_b_init_get_glyph_outline_w): New static variables.
14661 (GetOutlineTextMetricsW_Proc, GetTextMetricsW_Proc)
14662 (GetGlyphOutlineW_Proc): New typedefs.
14663 (w32_load_unicows_or_gdi32, get_outline_metrics_w)
14664 (get_text_metrics_w, get_glyph_outline_w, globals_of_w32font):
14665 New functions.
14666 (w32font_open_internal, compute_metrics):
14667 Call get_outline_metrics_w, get_text_metrics_w, and get_glyph_outline_w
14668 instead of calling the "wide" APIs directly.
14669
14670 * emacs.c (main) [HAVE_NTGUI]: Call globals_of_w32font.
14671
14672 * w32.h (syms_of_w32font): Add prototype.
14673
14674 2011-10-27 Juanma Barranquero <lekktu@gmail.com>
14675
14676 * window.c (Fframe_root_window, Fframe_first_window, Fwindow_end)
14677 (Fframe_selected_window, Ftemp_output_buffer_show, Fnext_window)
14678 (Fdelete_window_internal, Fwindow_parameters): Fix typos in docstrings.
14679 (Fmove_to_window_line): Doc fix.
14680
14681 2011-10-27 Chong Yidong <cyd@gnu.org>
14682
14683 * process.c (make_process): Set gnutls_state to NULL.
14684
14685 * gnutls.c (emacs_gnutls_deinit): Deinit the gnutls_state if it is
14686 non-NULL, regardless of GNUTLS_INITSTAGE.
14687 (Fgnutls_boot): Cleanups. Call emacs_gnutls_deinit if we signal
14688 an error. Set process slots as soon as we allocate them.
14689
14690 * gnutls.h (GNUTLS_LOG, GNUTLS_LOG2): Fix macros.
14691
14692 2011-10-27 Chong Yidong <cyd@gnu.org>
14693
14694 * gnutls.c (emacs_gnutls_deinit): New function.
14695 Deallocate credentials structures as well as calling gnutls_deinit.
14696 (Fgnutls_deinit, Fgnutls_boot): Use it.
14697
14698 * process.c (make_process): Initialize GnuTLS credentials to NULL.
14699 (deactivate_process): Call emacs_gnutls_deinit.
14700
14701 2011-10-27 Juanma Barranquero <lekktu@gmail.com>
14702
14703 * image.c (x_create_x_image_and_pixmap):
14704 * w32.c (sys_rename, w32_delayed_load):
14705 * w32font.c (fill_in_logfont):
14706 * w32reg.c (x_get_string_resource): Silence compiler warnings.
14707
14708 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
14709
14710 * w32fns.c (w32_default_color_map): New function,
14711 extracted from Fw32_default_color_map.
14712 (Fw32_default_color_map, Fx_open_connection): Use it. (Bug#9785)
14713
14714 2011-10-25 Paul Eggert <eggert@cs.ucla.edu>
14715
14716 * dispextern.h (Fcontrolling_tty_p): New decl (Bug#6649 part 2).
14717
14718 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
14719
14720 * keyboard.c (test_undefined): New function (bug#9751).
14721 (read_key_sequence): Use it to detect when a key is bound to `undefined'.
14722
14723 2011-10-25 Enami Tsugutomo <tsugutomo.enami@jp.sony.com>
14724
14725 * sysdep.c (init_sys_modes): Fix the check for the controlling
14726 terminal (Bug#6649).
14727
14728 2011-10-20 Eli Zaretskii <eliz@gnu.org>
14729
14730 * dispextern.h (struct bidi_it): New member next_en_type.
14731
14732 * bidi.c (bidi_line_init): Initialize the next_en_type member.
14733 (bidi_resolve_explicit_1): When next_en_pos is valid for the
14734 current character, check also for next_en_type being WEAK_EN.
14735 (bidi_resolve_weak): Don't enter the expensive loop if the current
14736 position is before next_en_pos. Record the bidi type of the first
14737 non-ET, non-BN character we find, in addition to its position.
14738 (bidi_level_of_next_char): Invalidate next_en_type when
14739 next_en_pos is over-stepped.
14740
14741 2011-10-20 Paul Eggert <eggert@cs.ucla.edu>
14742
14743 Time zone name fixes for non-ASCII locales (Bug#641, Bug#9794)
14744 * editfns.c: Rewrite current-time-zone so that it invokes
14745 the equivalent of (format-time-string "%Z") to get the time zone name.
14746 This fixes a bug when the time zone name contains characters that
14747 need converting from the system time locale to Emacs internal format.
14748 This fixes a shortcoming that I introduced in my 1999-10-19 patch:
14749 that patch fixed format-time-string to do the conversion, but
14750 I forgot to fix current-time-zone.
14751 (format_time_string): New function, containing most of
14752 what Fformat_time_string used to contain.
14753 (Fformat_time_string): Rewrite in terms of format_time_string.
14754 This doesn't change this function's behavior.
14755 (current-time-zone): Rewrite to use format_time_string.
14756 This fixes the bug reported by Michael Schierl in
14757 <http://lists.gnu.org/archive/html/emacs-devel/2007-06/msg00334.html>.
14758 Jason Rumney's 2007-06-07 change worked around this bug, but
14759 didn't fix it.
14760 * systime.h (tzname, timezone): Remove no-longer-used declarations.
14761
14762 2011-10-19 Eli Zaretskii <eliz@gnu.org>
14763
14764 * xdisp.c (start_display): If the character at POS is displayed
14765 via a display vector, reset IT->current.dpvec_index to zero.
14766 (try_window_reusing_current_matrix): If a line ends in a display
14767 vector or the next line starts in a display vector, continue
14768 redrawing the window even though the character position of
14769 start_row was reached.
14770 (Bug#9771, part 2)
14771
14772 2011-10-18 Chong Yidong <cyd@gnu.org>
14773
14774 * xdisp.c (get_next_display_element): Handle U+2010 and U+2011
14775 with nobreak-char-display too.
14776
14777 2011-10-18 Eli Zaretskii <eliz@gnu.org>
14778
14779 Fix part 3 of bug#9771.
14780 * bidi.c (bidi_line_init): Initialize next_en_pos to zero, not -1.
14781 (bidi_resolve_neutral): Don't enter the expensive loop looking for
14782 non-neutral characters if the current character is a paragraph
14783 separator (a.k.a. Newline). This avoids running the same
14784 expensive loop twice, once when we consume the preceding newline
14785 and the other time when the line actually needs to be displayed.
14786 Avoid the loop when we see neutrals on the base embedding level
14787 following a character whose directionality is the same as the
14788 paragraph's. This avoids running the expensive loop when a line
14789 ends in a long sequence of neutrals, like control characters.
14790 Add assertion against STRONG_AL type. Slightly rearrange code
14791 that determines the type of a neutral given the first non-neutral
14792 that follows it.
14793 (bidi_level_of_next_char): Set next_en_pos to zero when
14794 invalidating its info.
14795
14796 2011-10-17 Eli Zaretskii <eliz@gnu.org>
14797
14798 * xdisp.c (push_display_prop): Determine whether to record string
14799 or buffer position by IT->string, not by IT->method. Allow
14800 GET_FROM_DISPLAY_VECTOR as IT->method on entry. (Bug#9771, part 4)
14801 (move_it_vertically_backward): Don't look for character position
14802 immediately after the newline when in a continuation line.
14803 (Bug#9771, part 1)
14804
14805 2011-10-15 Martin Rudalics <rudalics@gmx.at>
14806
14807 * window.c (coordinates_in_window): Rewrite and delabelize
14808 vertical border check. (Bug#5357) (Bug#9618)
14809
14810 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
14811
14812 * xterm.c (frame_highlight, frame_unhighlight): Ignore unexplained
14813 errors in XSetWindowBorder (bug#9310).
14814
14815 2011-10-13 Dmitry Antipov <dmantipov@yandex.ru>
14816
14817 * editfns.c (Fset_time_zone_rule): Replace free with xfree to
14818 avoid crash when xmalloc overrun checking is enabled.
14819
14820 2011-10-13 Eli Zaretskii <eliz@gnu.org>
14821
14822 * xdisp.c (Fcurrent_bidi_paragraph_direction): Initialize
14823 itb.paragraph_dir to NEUTRAL_DIR. Fixes an occasional incorrect
14824 cursor motion with <left> and <right> arrow keys.
14825
14826 * bidi.c (bidi_init_it): Don't initialize paragraph_dir here, as
14827 some callers set that themselves.
14828
14829 2011-10-12 Eli Zaretskii <eliz@gnu.org>
14830
14831 * xdisp.c (find_row_edges): Handle the case where ROW comes from a
14832 display string and the previous row comes from the same string and
14833 is empty. (Bug#9739) (Bug#9738)
14834
14835 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
14836
14837 * doc.c (get_doc_string): Encode file name (bug#9735).
14838
14839 2011-10-12 Eli Zaretskii <eliz@gnu.org>
14840
14841 * bidi.c (bidi_level_of_next_char):
14842 * xdisp.c (get_visually_first_element): Remove old incorrect
14843 comments regarding the Unicode Line Separator character.
14844
14845 * bidi.c (bidi_init_it): Initialize paragraph_dir to NEUTRAL_DIR.
14846
14847 2011-10-12 Dmitry Antipov <dmantipov@yandex.ru>
14848
14849 * alloc.c (Fgc_status): Do not access beyond zombies array
14850 boundary if nzombies > MAX_ZOMBIES.
14851 * alloc.c (dump_zombies): Add missing format specifier.
14852
14853 2011-10-12 Paul Eggert <eggert@cs.ucla.edu>
14854
14855 * xdisp.c (set_cursor_from_row): Simplify conditionals,
14856 to pacify GCC 4.6.1 x86-64 with -O2 -Wstrict-overflow.
14857
14858 * lread.c (read_escape): Allow hex escapes as large as ?\xfffffff.
14859 Some packages use them to denote characters with modifiers.
14860
14861 2011-10-11 Andreas Schwab <schwab@linux-m68k.org>
14862
14863 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR)
14864 (GCPRO5_VAR, GCPRO6_VAR, UNGCPRO_VAR): Add whitespace to avoid
14865 matching a pp-number. Rename parameter var to var1.
14866
14867 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
14868
14869 * minibuf.c (Finternal_complete_buffer): Fix last change (bug#9709).
14870
14871 2011-10-08 Glenn Morris <rgm@gnu.org>
14872
14873 * callint.c (Fcall_interactively): Give a more explicit error for the
14874 'c' case with a non-character input. (Bug#8479)
14875
14876 2011-10-08 Eli Zaretskii <eliz@gnu.org>
14877
14878 * xdisp.c (hscroll_window_tree): Support hscroll in right-to-left
14879 lines.
14880 (set_cursor_from_row): Fix cursor positioning in mixed L2R+R2L
14881 lines that are hscrolled on the left.
14882
14883 * dispnew.c (buffer_posn_from_coords): Account for a possible
14884 presence of header-line. (Bug#4426)
14885
14886 2011-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
14887
14888 * buffer.c (syms_of_buffer) <enable-multibyte-characters>:
14889 Don't advertise functionality which we discourage or doesn't work.
14890
14891 2011-10-07 Paul Eggert <eggert@cs.ucla.edu>
14892
14893 * alloc.c (GC_LISP_OBJECT_ALIGNMENT): Use offsetof, not __alignof__
14894 or sizeof. __alignof__ gives the wrong answer on Fedora x86-64
14895 with GCC 4.6.1 when configured with CC='gcc -m32' --with-wide-int;
14896 this makes Emacs dump core during garbage collection on rare
14897 occasions. sizeof is obviously inferior to offsetof here, so
14898 stick with offsetof.
14899 (GC_POINTER_ALIGNMENT): New macro.
14900 (mark_memory): Omit 3rd (offset) arg; caller changed.
14901 Don't assume EMACS_INT alignment is the same as pointer alignment.
14902
14903 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
14904
14905 * keyboard.c (read_key_sequence_remapped): New var.
14906 (read_key_sequence): Compute remapping in the right buffer.
14907 (command_loop_1): Use read_key_sequence's remapping directly.
14908
14909 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
14910
14911 * dired.c (file_name_completion): Don't expand file name.
14912 (Ffile_name_completion, Ffile_name_all_completions): Expand file name
14913 before checking file name handler.
14914
14915 * minibuf.c (Finternal_complete_buffer): Only show internal buffers if
14916 they've been requested explicitly (bug#9591).
14917
14918 2011-10-01 Andreas Schwab <schwab@linux-m68k.org>
14919
14920 * keymap.c (Fsingle_key_description): Use make_specified_string
14921 instead of build_string to build string from push_key_description.
14922 (Bug#5193)
14923
14924 2011-09-30 Paul Eggert <eggert@cs.ucla.edu>
14925
14926 * buffer.h (struct buffer): Use time_t, not int, for a time stamp.
14927 This fixes a Y2038 bug on 64-bit hosts.
14928 * buffer.c (reset_buffer):
14929 * fileio.c (Fdo_auto_save, Fset_buffer_auto_saved)
14930 (Fclear_buffer_auto_save_failure):
14931 Use 0, not -1, to represent an unset failure time, since time_t
14932 might not be signed.
14933
14934 Remove dependency on glibc malloc internals.
14935 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
14936 Move back here from lisp.h, but with their new implementations.
14937 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
14938 (XMALLOC_OVERRUN_SIZE_SIZE): Move these new lisp.h macros here.
14939 * charset.c (charset_table_init): New static var.
14940 (syms_of_charset): Use it instead of xmalloc. This removes a
14941 dependency on glibc malloc internals. See Eli Zaretskii's comment in
14942 <http://lists.gnu.org/archive/html/emacs-devel/2011-09/msg00815.html>.
14943 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
14944 Move back to alloc.c.
14945 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
14946 (XMALLOC_OVERRUN_SIZE_SIZE): Move to alloc.c.
14947
14948 2011-09-30 Jan Djärv <jan.h.d@swipnet.se>
14949
14950 * nsterm.m (windowDidResize): Call x_set_window_size only when
14951 ns_in_resize is true. Otherwise set pixelwidth/height and
14952 call change_frame_size (Bug#9628).
14953
14954 2011-09-30 Paul Eggert <eggert@cs.ucla.edu>
14955
14956 Port --enable-checking=all to Fedora 14 x86-64.
14957 * charset.c (syms_of_charset): Also account for glibc malloc's
14958 internal overhead when calculating the initial malloc maximum.
14959
14960 Port --enable-checking=all to Fedora 14 x86.
14961 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
14962 Move to lisp.h.
14963 (xmalloc_put_size, xmalloc_get_size, overrun_check_malloc)
14964 (overrun_check_realloc, overrun_check_free):
14965 Use XMALLOC_OVERRUN_SIZE_SIZE, not sizeof (size_t).
14966 That way, xmalloc returns a properly-aligned pointer even if
14967 XMALLOC_OVERRUN_CHECK is defined. The old debugging code happened
14968 to align OK on typical 64-bit hosts, but not on Fedora 14 x86.
14969 * charset.c (syms_of_charset): Take XMALLOC_OVERRUN_CHECK_OVERHEAD
14970 into account when calculating the initial malloc maximum.
14971 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
14972 Move here from alloc.c, so that charset.c can use it too.
14973 Properly align; the old code wasn't right for common 32-bit hosts
14974 when configured with --enable-checking=all.
14975 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
14976 (XMALLOC_OVERRUN_SIZE_SIZE): New macros.
14977
14978 2011-09-29 Eli Zaretskii <eliz@gnu.org>
14979
14980 * sysdep.c (snprintf) [!EOVERFLOW]: If EOVERFLOW is not defined,
14981 use EDOM.
14982
14983 2011-09-28 Eli Zaretskii <eliz@gnu.org>
14984
14985 * xdisp.c (compute_display_string_end): If there's no display
14986 string at CHARPOS, return -1.
14987
14988 * bidi.c (bidi_fetch_char): When compute_display_string_end
14989 returns a negative value, treat the character as a normal
14990 character not covered by a display string. (Bug#9624)
14991
14992 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
14993
14994 * lread.c (Fread_from_string): Fix typo in docstring.
14995
14996 2011-09-27 Eli Zaretskii <eliz@gnu.org>
14997
14998 * xdisp.c (handle_invisible_prop): If invisible text ends on a
14999 newline, reseat the iterator instead of bidi-iterating there one
15000 character at a time. (Bug#9610)
15001 (BUFFER_POS_REACHED_P, move_it_in_display_line_to): Bail when past
15002 TO_CHARPOS if the bidi iterator is at base embedding level.
15003
15004 2011-09-27 Andreas Schwab <schwab@linux-m68k.org>
15005
15006 * lread.c (readevalloop): Use correct code for NBSP.
15007 (read1): Likewise. (Bug#9608)
15008
15009 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
15010
15011 * dbusbind.c (Fdbus_register_signal): When service is not
15012 registered, use nil in Vdbus_registered_objects_table. (Bug#9581)
15013
15014 2011-09-25 Glenn Morris <rgm@gnu.org>
15015
15016 * buffer.c (truncate-lines): Doc fix.
15017
15018 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
15019
15020 * window.c (Fwindow_prev_buffers, Fset_window_prev_buffers)
15021 (Fset_window_next_buffers): Doc fix.
15022
15023 2011-09-24 Glenn Morris <rgm@gnu.org>
15024
15025 * minibuf.c (read_minibuf): Disable line truncation. (Bug#5715)
15026
15027 2011-09-24 Paul Eggert <eggert@cs.ucla.edu>
15028
15029 Fix minor problems found by static checking.
15030 * xdisp.c (string_from_display_spec): Don't assume vecsize fits in int.
15031 * indent.c (Fvertical_motion): Fix == vs = typo.
15032
15033 2011-09-24 Eli Zaretskii <eliz@gnu.org>
15034
15035 * dispnew.c (syms_of_display) <redisplay-dont-pause>:
15036 Default value is now t. Doc fix.
15037
15038 * indent.c (Fvertical_motion): Compute and apply the overshoot
15039 logic when moving up, not only when moving down. Fix the
15040 confusing name and values of the it_overshoot_expected variable;
15041 logic changes accordingly. (Bug#9254) (Bug#9549)
15042
15043 * xdisp.c (pos_visible_p): Produce correct pixel coordinates when
15044 CHARPOS is covered by a display string which includes newlines.
15045 (move_it_vertically_backward): Avoid inflooping when START_CHARPOS
15046 is covered by a display string with embedded newlines.
15047
15048 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
15049
15050 * dbusbind.c (Fdbus_register_signal): Add match rule to
15051 Vdbus_registered_objects_table. (Bug#9581)
15052 (Fdbus_register_method, Vdbus_registered_objects_table):
15053 Fix docstring.
15054
15055 2011-09-24 Jim Meyering <meyering@redhat.com>
15056
15057 do not ignore write error for any output size
15058 The previous change was incomplete.
15059 While it makes emacs --batch detect the vast majority of stdout
15060 write failures, errors were still ignored whenever the output size is
15061 k * (BUFSIZ+1) - 4. E.g., on a system with BUFSIZ of 4096,
15062 $ emacs --batch --eval '(print (format "%4093d" 0))' > /dev/full \
15063 && echo FAIL: ignored write error
15064 FAIL: ignored write error
15065 $ emacs --batch --eval '(print (format "%20481d" 0))' > /dev/full \
15066 && echo FAIL: ignored write error
15067 FAIL: ignored write error
15068 * emacs.c (Fkill_emacs): Also test ferror. (Bug#9574)
15069
15070 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
15071
15072 * emacs.c (Fkill_emacs): In noninteractive mode exit
15073 non-successfully if a write error occurred on stdout. (Bug#9574)
15074
15075 2011-09-21 Eli Zaretskii <eliz@gnu.org>
15076
15077 * xdisp.c (pop_it): Allow it->object that is a cons cell to pass
15078 the xassert test.
15079
15080 * dispextern.h (struct it): Update the comment documenting what
15081 can it->OBJECT be.
15082
15083 2011-09-20 Eli Zaretskii <eliz@gnu.org>
15084
15085 * xdisp.c (set_cursor_from_row): If the row ends in a newline from
15086 a display string, extend search for cursor position to end of row.
15087 (find_row_edges): If the row ends in a newline from a display
15088 string, increment its MATRIX_ROW_END_CHARPOS by one. (Bug#9549)
15089 Handle the case of a display string with multiple newlines.
15090 (Fcurrent_bidi_paragraph_direction): Fix search for previous
15091 non-empty line. Fixes confusing cursor motion with arrow keys at
15092 the beginning of a line that starts with whitespace.
15093
15094 2011-09-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
15095
15096 * lread.c (Fread_from_string): Document what FINAL-STRING-INDEX is
15097 (bug#9493).
15098
15099 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
15100
15101 * xfns.c (Fx_create_frame): Handle the bitmapIcon resource as
15102 boolean (Bug#9154).
15103
15104 2011-09-18 Eli Zaretskii <eliz@gnu.org>
15105
15106 * xdisp.c (display_line): Record maximum and minimum buffer
15107 positions even if no glyphs were produced (e.g., by a zero-width
15108 stretch). Fixes bug#9530 on a TTY. Under word-wrap, don't record
15109 buffer positions that will be removed from the glyph row because
15110 they don't fit.
15111 (produce_stretch_glyph): Fix a bug in :align-to on a TTY when the
15112 column is beyond frame width: don't subtract 1 "pixel" when
15113 computing width of the stretch.
15114 (reseat_at_next_visible_line_start): Undo the change made on
15115 2011-09-17 that saved paragraph information and restored it after
15116 the call to `reseat'. (Bug#9545)
15117
15118 2011-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15119
15120 * xdisp.c (expose_window): Save original value of phys_cursor_on_p
15121 and turn window cursor on if cleared (Bug#9415).
15122
15123 2011-09-18 Andreas Schwab <schwab@linux-m68k.org>
15124
15125 * search.c (boyer_moore): Take unibyte characters from pattern
15126 literally. (Bug#9458)
15127
15128 2011-09-18 Eli Zaretskii <eliz@gnu.org>
15129
15130 * xdisp.c (reseat_at_next_visible_line_start): Fix last change.
15131
15132 2011-09-18 Paul Eggert <eggert@cs.ucla.edu>
15133
15134 Fix minor problem found by static checking.
15135 * xdisp.c (reseat_at_next_visible_line_start): Mark locals as
15136 initialized, to pacify gcc -Wuninitialized.
15137
15138 * fileio.c: Report proper errno when syscall falls.
15139 (Finsert_file_contents): Save and restore errno,
15140 so that report_file_error outputs the correct diagnostic.
15141 (Fwrite_region) [CLASH_DETECTION]: Likewise.
15142
15143 2011-09-18 Eli Zaretskii <eliz@gnu.org>
15144
15145 * .gdbinit (pgx): Fix references to fields of `struct glyph'.
15146
15147 2011-09-17 Eli Zaretskii <eliz@gnu.org>
15148
15149 * xdisp.c (produce_stretch_glyph): Another fix for changes made on
15150 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9530)
15151
15152 2011-09-17 Eli Zaretskii <eliz@gnu.org>
15153
15154 * xdisp.c (reseat_at_next_visible_line_start): Keep information
15155 about the current paragraph and restore it after the call to reseat.
15156
15157 * bidi.c (MAX_PARAGRAPH_SEARCH): New macro.
15158 (bidi_find_paragraph_start): Search back for paragraph beginning
15159 at most MAX_PARAGRAPH_SEARCH lines; if not found, return BEGV_BYTE.
15160 (bidi_move_to_visually_next): Only trigger paragraph-related
15161 computations when the last character is a newline or at EOB, not
15162 just any NEUTRAL_B. (Bug#9470)
15163
15164 * xdisp.c (set_cursor_from_row): Don't invoke special treatment of
15165 truncated lines if point is covered by a display string. (Bug#9524)
15166
15167 2011-09-16 Paul Eggert <eggert@cs.ucla.edu>
15168
15169 * xselect.c: Relax test for outgoing X longs (Bug#9498).
15170 (cons_to_x_long): New function.
15171 (lisp_data_to_selection_data): Use it. Correct the test for
15172 short-versus-long data; it was negated. Break out of vector
15173 loop, for efficiency, when a long datum is discovered.
15174
15175 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
15176
15177 * eval.c (Fquote): Document its non-consing behavior (bug#9482).
15178
15179 2011-09-16 Eli Zaretskii <eliz@gnu.org>
15180
15181 * image.c (tiff_handler): Work around a bug in MinGW GCC 3.x (see
15182 GCC PR/17406) by declaring this function with external scope.
15183
15184 2011-09-15 Paul Eggert <eggert@cs.ucla.edu>
15185
15186 * editfns.c (Fformat): Fix bug in text-property fix (Bug#9514).
15187 Don't mishandle (length (format "%%")) and (format "%4000s%%" "").
15188
15189 2011-09-15 Andreas Schwab <schwab@linux-m68k.org>
15190
15191 * editfns.c (Fformat): Correctly handle text properties on "%%".
15192
15193 2011-09-15 Eli Zaretskii <eliz@gnu.org>
15194
15195 * xterm.c (x_draw_composite_glyph_string_foreground):
15196 * w32term.c (x_draw_composite_glyph_string_foreground):
15197 * term.c (encode_terminal_code):
15198 * composite.c (composition_update_it, get_composition_id):
15199 * xdisp.c (get_next_display_element)
15200 (fill_composite_glyph_string): Add comments about special meaning
15201 of TAB characters in a composition.
15202
15203 2011-09-15 Paul Eggert <eggert@cs.ucla.edu>
15204
15205 * editfns.c (Fformat): Fix off-by-1 bug for "%%b" (Bug#9514).
15206 This occurs when processing a multibyte format.
15207 Problem reported by Wolfgang Jenker.
15208
15209 2011-09-15 Johan Bockgård <bojohan@gnu.org>
15210
15211 * xdisp.c (try_cursor_movement): Only check for exact match if
15212 cursor hpos found by set_cursor_from_row is valid. (Bug#9495)
15213
15214 2011-09-14 Paul Eggert <eggert@cs.ucla.edu>
15215
15216 Remove unused external symbols.
15217 * dispextern.h (calc_pixel_width_or_height): Remove decl.
15218 * xdisp.c (calc_pixel_width_or_height): Now static.
15219 * doprnt.c (exprintf) [! (HAVE_X_WINDOWS && USE_X_TOOLKIT)]: Remove.
15220 * indent.c (check_display_width):
15221 * w32term.c: Fix comment to match code.
15222 * xterm.c, xterm.h (x_catching_errors): Remove.
15223
15224 2011-09-14 Paul Eggert <eggert@cs.ucla.edu>
15225
15226 * xselect.c: Use signed conversions more consistently (Bug#9498).
15227 (selection_data_to_lisp_data): Assume incoming selection data are
15228 signed integers, not unsigned. This is to be consistent with
15229 outgoing selection data, which was modified to use signed integers
15230 in as part of the fix to Bug#9196 in response to Jan D.'s comment
15231 in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9196#32> that X11
15232 expects long, not unsigned long.
15233
15234 2011-09-14 Eli Zaretskii <eliz@gnu.org>
15235
15236 * xdisp.c (try_window_reusing_current_matrix): Fix incorrect
15237 computation of loop end. Reported by Johan Bockgård
15238 <bojohan@gnu.org>.
15239
15240 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
15241
15242 * frame.c (Fother_visible_frames_p): Function deleted.
15243
15244 2011-09-12 Eli Zaretskii <eliz@gnu.org>
15245
15246 * indent.c (compute_motion): Process display vector front to back
15247 rather than the other way around. (Bug#2496)
15248
15249 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
15250
15251 * fileio.c (Finsert_file_contents): Don't assume beg_offset is 0.
15252
15253 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
15254
15255 * minibuf.c (Fread_from_minibuffer): Doc fix.
15256
15257 2011-09-11 Eli Zaretskii <eliz@gnu.org>
15258
15259 * xdisp.c (produce_stretch_glyph): Fix a typo made in changes from
15260 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9475)
15261
15262 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
15263
15264 * fileio.c (Fvisited_file_modtime): Document `(-1 65535)' as a
15265 value for non-existent files.
15266
15267 2011-09-11 Eli Zaretskii <eliz@gnu.org>
15268
15269 * fileio.c (Finsert_file_contents): If the file cannot be opened,
15270 set its "size" to -1. This will set the modtime_size field of
15271 the corresponding buffer to -1, which is what
15272 verify-visited-file-modtime expects for files that do not exist.
15273 (Bug#9139)
15274
15275 2011-09-11 Paul Eggert <eggert@cs.ucla.edu>
15276
15277 * keymap.h (KEY_DESCRIPTION_SIZE, push_key_description): Move decls
15278 here ...
15279 * lisp.h: ... from here. push_key_description is no longer
15280 defined in keyboard.c, so its declaration should not be in
15281 lisp.h's "Defined in keyboard.c" section, and KEY_DESCRIPTION_SIZE
15282 logically belongs with push_key_description.
15283
15284 2011-09-10 Paul Eggert <eggert@cs.ucla.edu>
15285
15286 * buffer.h: Include <sys/types.h> instead of <time.h>.
15287 Otherwise, off_t wasn't defined on FreeBSD 9.0-BETA2 i386.
15288 Problem reported by Herbert J. Skuhra.
15289
15290 2011-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
15291
15292 * xml.c (parse_region): Make the parsing work for
15293 non-comment-starting XML files again (bug#9144).
15294
15295 2011-09-10 Andreas Schwab <schwab@linux-m68k.org>
15296
15297 * image.c (gif_load): Fix calculation of bottom and right corner.
15298 (Bug#9468)
15299
15300 2011-09-10 Eli Zaretskii <eliz@gnu.org>
15301
15302 * xdisp.c (MAX_DISP_SCAN): Decrease to 250. Prevents sluggish
15303 redisplay in small windows.
15304
15305 2011-09-09 Eli Zaretskii <eliz@gnu.org>
15306
15307 * frame.c (x_report_frame_params): Cast to avoid compiler warnings.
15308
15309 2011-09-08 Martin Rudalics <rudalics@gmx.at>
15310
15311 * window.c (Fset_window_prev_buffers, Fset_window_next_buffers):
15312 Operate on live windows only.
15313
15314 2011-09-08 Juanma Barranquero <lekktu@gmail.com>
15315
15316 * emacs.c (my_heap_start): #ifdef to avoid warnings when unused.
15317
15318 2011-09-07 Eli Zaretskii <eliz@gnu.org>
15319
15320 * xdisp.c (move_it_in_display_line_to): Call RESTORE_IT on ppos_it
15321 only under bidi iteration.
15322
15323 2011-09-07 Jan Djärv <jan.h.d@swipnet.se>
15324
15325 * gtkutil.c (xg_make_tool_item): Insert comment about eventbox.
15326
15327 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
15328
15329 isnan: Fix porting problem to Solaris 10 with bundled gcc.
15330 Without this fix, the command to link temacs failed due to an
15331 undefined symbol __builtin_isnan. This is because
15332 /usr/include/iso/math_c99.h #defines isnan(x) to
15333 __builtin_isnan(x), but the bundled gcc, which identifies itself
15334 as gcc 3.4.3 (csl-sol210-3_4-branch+sol_rpath), does not have
15335 a __builtin_isnan.
15336 * floatfns.c (isnan): #undef, and then #define to a clone of
15337 what's in data.c.
15338 (Fisnan): Always define, since it's always available now.
15339 (syms_of_floatfns): Always define isnan at the Lisp level.
15340
15341 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
15342
15343 * Makefile.in (gl-stamp): move-if-change now in build-aux (Bug#9169).
15344
15345 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
15346
15347 * fileio.c: Fix bugs with large file offsets (Bug#9428).
15348 The previous code assumed that file offsets (off_t values) fit in
15349 EMACS_INT variables, which is not true on typical 32-bit hosts.
15350 The code messed up by falsely reporting buffer overflow in cases
15351 such as (insert-file-contents "big" nil 1 2) into an empty buffer
15352 when "big" contains more than 2**29 bytes, even though this
15353 inserts just one byte and does not overflow the buffer.
15354 (Finsert_file_contents): Store file offsets as off_t
15355 values, not as EMACS_INT values. Check for overflow when
15356 converting between EMACS_INT and off_t. When checking for
15357 buffer overflow or for overlap, take the offsets into account.
15358 Don't use EMACS_INT for small values where int suffices.
15359 When checking for overlap, fix a typo: ZV was used where
15360 ZV_BYTE was intended.
15361 (Fwrite_region): Don't assume off_t fits into 'long'.
15362 * buffer.h (struct buffer.modtime_size): Now off_t, not EMACS_INT.
15363
15364 2011-09-05 Michael Albinus <michael.albinus@gmx.de>
15365
15366 * dbusbind.c (xd_signature_cat): Rename from signature_cat.
15367
15368 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
15369
15370 sprintf-related integer and memory overflow issues (Bug#9412).
15371
15372 * doprnt.c (doprnt): Support printing ptrdiff_t and intmax_t values.
15373 (esprintf, exprintf, evxprintf): New functions.
15374 * keyboard.c (command_loop_level): Now EMACS_INT, not int.
15375 (cmd_error): Kbd macro iterations count is now EMACS_INT, not int.
15376 (modify_event_symbol): Do not assume that the length of
15377 name_alist_or_stem is safe to alloca and fits in int.
15378 (Fexecute_extended_command): Likewise for function name and binding.
15379 (Frecursion_depth): Wrap around reliably on integer overflow.
15380 * keymap.c (push_key_description): First arg is now EMACS_INT, not int,
15381 since some callers pass EMACS_INT values.
15382 (Fsingle_key_description): Don't crash if symbol name contains more
15383 than MAX_ALLOCA bytes.
15384 * minibuf.c (minibuf_level): Now EMACS_INT, not int.
15385 (get_minibuffer): Arg is now EMACS_INT, not int.
15386 * lisp.h (get_minibuffer, push_key_description): Reflect API changes.
15387 (esprintf, exprintf, evxprintf): New decls.
15388 * window.h (command_loop_level, minibuf_level): Reflect API changes.
15389
15390 * dbusbind.c (signature_cat): New function.
15391 (xd_signature, Fdbus_register_signal):
15392 Do not overrun buffer; instead, report string overflow.
15393
15394 * dispnew.c (add_window_display_history): Don't overrun buffer.
15395 Truncate instead; this is OK since it's just a log.
15396
15397 * editfns.c (Fcurrent_time_zone): Don't overrun buffer
15398 even if the time zone offset is outlandishly large.
15399 Don't mishandle offset == INT_MIN.
15400
15401 * emacs.c (main) [NS_IMPL_COCOA]: Don't overrun buffer
15402 when creating daemon; the previous buffer-overflow check was incorrect.
15403
15404 * eval.c (verror): Simplify by rewriting in terms of evxprintf,
15405 which has the guts of the old verror function.
15406
15407 * filelock.c (lock_file_1, lock_file): Don't blindly alloca long name;
15408 use SAFE_ALLOCA instead. Use esprintf to avoid int-overflow issues.
15409
15410 * font.c: Include <float.h>, for DBL_MAX_10_EXP.
15411 (font_unparse_xlfd): Don't blindly alloca long strings.
15412 Don't assume XINT result fits in int, or that XFLOAT_DATA * 10
15413 fits in int, when using sprintf. Use single snprintf to count
15414 length of string rather than counting it via multiple sprintfs;
15415 that's simpler and more reliable.
15416 (font_unparse_fcname): Use it to avoid sprintf buffer overrun.
15417 (generate_otf_features) [0 && HAVE_LIBOTF]: Use esprintf, not
15418 sprintf, in case result does not fit in int.
15419
15420 * fontset.c (num_auto_fontsets): Now printmax_t, not int.
15421 (fontset_from_font): Print it.
15422
15423 * frame.c (tty_frame_count): Now printmax_t, not int.
15424 (make_terminal_frame, set_term_frame_name): Print it.
15425 (x_report_frame_params): In X, window IDs are unsigned long,
15426 not signed long, so print them as unsigned.
15427 (validate_x_resource_name): Check for implausibly long names,
15428 and don't assume name length fits in 'int'.
15429 (x_get_resource_string): Don't blindly alloca invocation name;
15430 use SAFE_ALLOCA. Use esprintf, not sprintf, in case result does
15431 not fit in int.
15432
15433 * gtkutil.c: Include <float.h>, for DBL_MAX_10_EXP.
15434 (xg_check_special_colors, xg_set_geometry):
15435 Make sprintf buffers a bit bigger, to avoid potential buffer overrun.
15436
15437 * lread.c (dir_warning): Don't blindly alloca buffer; use SAFE_ALLOCA.
15438 Use esprintf, not sprintf, in case result does not fit in int.
15439
15440 * macros.c (executing_kbd_macro_iterations): Now EMACS_INT, not int.
15441 (Fend_kbd_macro): Don't mishandle MOST_NEGATIVE_FIXNUM by treating
15442 it as a large positive number.
15443 (Fexecute_kbd_macro): Don't assume repeat count fits in int.
15444 * macros.h (executing_kbd_macro_iterations): Now EMACS_INT, not int.
15445
15446 * nsterm.m ((NSSize)windowWillResize): Use esprintf, not sprintf,
15447 in case result does not fit in int.
15448
15449 * print.c (float_to_string): Detect width overflow more reliably.
15450 (print_object): Make sprintf buffer a bit bigger, to avoid potential
15451 buffer overrun. Don't assume list length fits in 'int'. Treat
15452 print length of 0 as 0, not as infinity; to be consistent with other
15453 uses of print length in this function. Don't overflow print length
15454 index. Don't assume hash table size fits in 'long', or that
15455 vectorlike size fits in 'unsigned long'.
15456
15457 * process.c (make_process): Use printmax_t, not int, to format
15458 process-name gensyms.
15459
15460 * sysdep.c (snprintf) [! HAVE_SNPRINTF]: New function.
15461
15462 * term.c (produce_glyphless_glyph): Make sprintf buffer a bit bigger
15463 to avoid potential buffer overrun.
15464
15465 * xfaces.c (x_update_menu_appearance): Don't overrun buffer
15466 if X resource line is longer than 512 bytes.
15467
15468 * xfns.c (x_window): Make sprintf buffer a bit bigger
15469 to avoid potential buffer overrun.
15470
15471 * xterm.c (x_io_error_quitter): Don't overrun sprintf buffer.
15472
15473 * xterm.h (x_check_errors): Add ATTRIBUTE_FORMAT_PRINTF.
15474
15475 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
15476
15477 Integer overflow fixes for scrolling, etc.
15478 Without these, Emacs silently mishandles large integers sometimes.
15479 For example, "C-u 4294967297 M-x recenter" was treated as if
15480 it were "C-u 1 M-x recenter" on a typical 64-bit host.
15481
15482 * xdisp.c (try_window_id): Check Emacs fixnum range before
15483 converting to 'int'.
15484
15485 * window.c (window_scroll_line_based, Frecenter):
15486 Check that an Emacs fixnum is in range before assigning it to 'int'.
15487 (Frecenter, Fmove_to_window_line): Use EMACS_INT, not int, for
15488 values converted from Emacs fixnums.
15489 (Frecenter): Don't wrap around a line count if it is out of 'int'
15490 range; instead, treat it as an extreme value.
15491 (Fset_window_configuration, compare_window_configurations):
15492 Use ptrdiff_t, not int, for index that might exceed 2 GiB.
15493
15494 * search.c (Freplace_match): Use ptrdiff_t, not int, for indexes
15495 that can exceed INT_MAX. Check that EMACS_INT value is in range
15496 before assigning it to the (possibly-narrower) index.
15497 (match_limit): Don't assume that a fixnum can fit in 'int'.
15498
15499 * print.c (print_object): Use ptrdiff_t, not int, for index that can
15500 exceed INT_MAX.
15501
15502 * indent.c (position_indentation): Now takes ptrdiff_t, not int.
15503 (Fvertical_motion): Don't wrap around LINES values that don't fit
15504 in 'int'. Instead, treat them as extreme values. This is good
15505 enough for windows, which can't have more than INT_MAX lines anyway.
15506
15507 2011-09-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
15508
15509 * Require libxml/parser.h to avoid compilation warning.
15510
15511 * emacs.c (shut_down_emacs): Call xmlCleanupParser on shutdown.
15512
15513 * xml.c (parse_region): Don't call xmlCleanupParser after parsing,
15514 since this reportedly can destroy thread storage.
15515
15516 2011-08-30 Chong Yidong <cyd@stupidchicken.com>
15517
15518 * syntax.c (find_defun_start): Update all cache variables if
15519 exiting early (Bug#9401).
15520
15521 2011-08-30 Eli Zaretskii <eliz@gnu.org>
15522
15523 * image.c (x_bitmap_pixmap): Cast to int to avoid compiler warnings.
15524
15525 * xdisp.c (produce_stretch_glyph): No longer static, compiled also
15526 when HAVE_WINDOW_SYSTEM is not defined. Support both GUI and TTY
15527 frames. Call tty_append_glyph in the TTY case. (Bug#9402)
15528
15529 * term.c (tty_append_glyph): New function.
15530 (produce_stretch_glyph): Static function and its prototype deleted.
15531
15532 * dispextern.h (produce_stretch_glyph, tty_append_glyph):
15533 Add prototypes.
15534
15535 2011-08-29 Paul Eggert <eggert@cs.ucla.edu>
15536
15537 * image.c (parse_image_spec): Check for nonnegative, not for positive,
15538 when checking :margin (Bug#9390).
15539 (IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR):
15540 Rename from IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR,
15541 so that the name doesn't mislead. All uses changed.
15542
15543 2011-08-28 Johan Bockgård <bojohan@gnu.org>
15544
15545 * term.c (init_tty) [HAVE_GPM]: Move mouse settings after
15546 set_tty_hooks.
15547
15548 2011-08-27 Eli Zaretskii <eliz@gnu.org>
15549
15550 * xdisp.c (move_it_to): Don't bail out early when reaching
15551 position beyond to_charpos, if we are scanning backwards.
15552 (move_it_vertically_backward): When DY == 0, make sure we get to
15553 the first character in the line after the newline.
15554
15555 2011-08-27 Paul Eggert <eggert@cs.ucla.edu>
15556
15557 * ccl.c: Improve and simplify overflow checking (Bug#9196).
15558 (ccl_driver): Do not generate an out-of-range pointer.
15559 (Fccl_execute_on_string): Remove unnecessary check for
15560 integer overflow, noted by Stefan Monnier in
15561 <http://lists.gnu.org/archive/html/emacs-devel/2011-08/msg00979.html>.
15562 Remove a FIXME that didn't need fixing.
15563 Simplify the newly-introduced buffer reallocation code.
15564
15565 2011-08-27 Juanma Barranquero <lekktu@gmail.com>
15566
15567 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on lib/verify.h.
15568
15569 2011-08-26 Paul Eggert <eggert@cs.ucla.edu>
15570
15571 Integer and memory overflow issues (Bug#9196).
15572
15573 * doc.c (get_doc_string): Rework so that
15574 get_doc_string_buffer_size is the actual buffer size, rather than
15575 being 1 less than the actual buffer size; this makes xpalloc more
15576 convenient.
15577
15578 * image.c (x_allocate_bitmap_record, cache_image):
15579 * xselect.c (Fx_register_dnd_atom):
15580 Simplify previous changes by using xpalloc.
15581
15582 * buffer.c (overlay_str_len): Now ptrdiff_t, not EMACS_INT,
15583 since either will do and ptrdiff_t is convenient with xpalloc.
15584
15585 * charset.c (charset_table_size)
15586 (struct charset_sort_data.priority): Now ptrdiff_t.
15587 (charset_compare): Don't overflow if priorities differ greatly.
15588 (Fsort_charsets): Don't assume list length fits in int.
15589 Check for size-calculation overflow when allocating sort data.
15590 (syms_of_charset): Allocate an initial charset table that is
15591 just under 64 KiB, to avoid problems with glibc malloc and mmap.
15592
15593 * cmds.c (internal_self_insert): Check for size-calculation overflow.
15594
15595 * composite.h (struct composition.glyph_len): Now int, not unsigned.
15596 The actual value is always <= INT_MAX, and leaving it unsigned made
15597 overflow checking harder.
15598
15599 * dispextern.h (struct glyph_matrix.rows_allocated)
15600 (struct face_cache.size): Now ptrdiff_t, for convenience in use
15601 with xpalloc. The values are still always <= INT_MAX.
15602
15603 * indent.c (compute_motion): Adjust to region_cache_forward sig change.
15604
15605 * lisp.h (xnmalloc, xnrealloc, xpalloc): New decls.
15606 (SAFE_NALLOCA): New macro.
15607
15608 * region-cache.c (struct boundary.pos, find_cache_boundary)
15609 (move_cache_gap, insert_cache_boundary, delete_cache_boundaries)
15610 (set_cache_region, invalidate_region_cache)
15611 (revalidate_region_cache, know_region_cache, region_cache_forward)
15612 (region_cache_backward, pp_cache):
15613 Use ptrdiff_t, not EMACS_INT, since either will do. This is needed
15614 so that ptrdiff_t * can be passed to xpalloc.
15615 (struct region_cache): Similarly, for gap_start, gap_len, cache_len,
15616 beg_unchanged, end_unchanged, buffer_beg, buffer_end members.
15617 (pp_cache): Don't assume cache_len fits in int.
15618 * region-cache.h: Adjust extern decls to match.
15619
15620 * search.c (scan_buffer, Freplace_match): Use ptrdiff_t, not
15621 EMACS_INT, since either will do, for xpalloc.
15622
15623 * alloc.c: Include verify.h, and check that int fits in ptrdiff_t.
15624 (xnmalloc, xnrealloc, xpalloc): New functions.
15625
15626 * bidi.c (bidi_shelve_header_size): New constant.
15627 (bidi_cache_ensure_space, bidi_shelve_cache): Use it.
15628 (bidi_cache_ensure_space): Avoid integer overflow when allocating.
15629
15630 * bidi.c (bidi_cache_shrink):
15631 * buffer.c (overlays_at, overlays_in, record_overlay_string)
15632 (overlay_strings):
15633 Don't update size of array until after memory allocation succeeds,
15634 because xmalloc/xrealloc may not return.
15635 (struct sortstrlist.bytes): Now ptrdiff_t, as EMACS_INT doesn't help
15636 now that we have proper integer overflow checking.
15637 (record_overlay_string, overlay_strings): Catch overflows when
15638 calculating size of overlay_str_buf.
15639
15640 * callproc.c (Fcall_process): Check for size overflow when
15641 calculating size of args2.
15642 (child_setup): Avoid overflow by using size_t rather than ptrdiff_t.
15643 Normally we prefer signed values, but sticking with ptrdiff_t would
15644 require adding more-complicated checks.
15645
15646 * ccl.c (Fccl_execute_on_string): Check for memory overflow.
15647 Use ptrdiff_t rather than EMACS_INT where ptrdiff_t will do.
15648 Redo buffer-overflow calculations to avoid integer overflow.
15649 Add a FIXME comment where memory seems to be over-allocated.
15650
15651 * character.c (Fstring): Check for size-calculation overflow.
15652
15653 * coding.c (produce_chars): Redo buffer-overflow calculations to avoid
15654 unnecessary integer overflow. Check for size overflow.
15655 (encode_coding_object): Don't update size until xmalloc succeeds.
15656
15657 * composite.c (get_composition_id): Check for overflow in glyph
15658 length calculations.
15659
15660 Integer and memory overflow fixes for display code.
15661 * dispextern.h (struct glyph_pool.nglyphs): Now ptrdiff_t, not int.
15662 * dispnew.c (adjust_glyph_matrix, realloc_glyph_pool)
15663 (scrolling_window): Check for overflow in size calculations.
15664 (line_draw_cost, realloc_glyph_pool, add_row_entry):
15665 Don't assume glyph table len fits in int.
15666 (struct row_entry.bucket, row_entry_pool_size, row_entry_idx)
15667 (row_table_size): Now ptrdiff_t, not int.
15668 (scrolling_window): Avoid overflow in size calculations.
15669 Don't update size until allocation succeeds.
15670 * fns.c (concat): Check for overflow in size calculations.
15671 (next_almost_prime): Verify NEXT_ALMOST_PRIME_LIMIT.
15672 * lisp.h (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
15673 (NEXT_ALMOST_PRIME_LIMIT): New constant.
15674
15675 * doc.c (get_doc_string_buffer_size): Now ptrdiff_t, not int.
15676 (get_doc_string): Check for size calculation overflow.
15677 Don't update size until allocation succeeds.
15678 (get_doc_string, Fsubstitute_command_keys): Use ptrdiff_t, not
15679 EMACS_INT, where ptrdiff_t will do.
15680 (Fsubstitute_command_keys): Check for string overflow.
15681
15682 * editfns.c (set_time_zone_rule): Don't assume environment length
15683 fits in int.
15684 (message_length): Now ptrdiff_t, not int.
15685 (Fmessage_box): Don't update size until allocation succeeds.
15686 Don't assume message length fits in int.
15687 (Fformat): Use ptrdiff_t, not EMACS_INT, where ptrdiff_t will do.
15688
15689 * emacs.c (main): Do not reallocate argv, since there is a null at
15690 the end that can be overwritten, and this way there's no need to
15691 worry about size-calculation overflow.
15692 (sort_args): Check for size-calculation overflow.
15693
15694 * eval.c (init_eval_once, grow_specpdl): Don't update size until
15695 alloc succeeds.
15696 (call_debugger, grow_specpdl): Redo calculations to avoid overflow.
15697
15698 * frame.c (set_menu_bar_lines, x_set_frame_parameters)
15699 (x_set_scroll_bar_width, x_figure_window_size):
15700 Check for integer overflow.
15701 (x_set_alpha): Do not assume XINT fits in int.
15702
15703 * frame.h (struct frame): Use int, not EMACS_INT, where int works.
15704 This is for the members text_lines, text_cols, total_lines, total_cols,
15705 where the system imposes an 'int' limit.
15706
15707 * fringe.c (Fdefine_fringe_bitmap):
15708 Don't update size until alloc works.
15709
15710 * ftfont.c (ftfont_get_open_type_spec, setup_otf_gstring)
15711 (ftfont_shape_by_flt): Check for integer overflow in size calculations.
15712
15713 * gtkutil.c (get_utf8_string, xg_store_widget_in_map):
15714 Check for size-calculation overflow.
15715 (get_utf8_string): Use ptrdiff_t, not size_t, where either will
15716 do, as we prefer signed integers.
15717 (id_to_widget.max_size, id_to_widget.used)
15718 (xg_store_widget_in_map, xg_remove_widget_from_map)
15719 (xg_get_widget_from_map, xg_get_scroll_id_for_window)
15720 (xg_remove_scroll_bar, xg_update_scrollbar_pos):
15721 Use and return ptrdiff_t, not int.
15722 (xg_gtk_scroll_destroy): Don't assume ptrdiff_t fits in int.
15723 * gtkutil.h: Change prototypes to match the above.
15724
15725 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): Remove; these
15726 are duplicate now that they've been promoted to lisp.h.
15727 (x_allocate_bitmap_record, x_alloc_image_color)
15728 (make_image_cache, cache_image, xpm_load):
15729 Don't update size until alloc is done.
15730 (xpm_load, lookup_rgb_color, lookup_pixel_color, x_to_xcolors)
15731 (x_detect_edges):
15732 Check for size calculation overflow.
15733 (ct_colors_allocated_max): New constant.
15734 (x_to_xcolors, x_detect_edges): Reorder multiplicands to avoid
15735 overflow.
15736
15737 * keyboard.c (read_char, menu_bar_items, tool_bar_items)
15738 (read_char_x_menu_prompt, read_char_minibuf_menu_width)
15739 (read_char_minibuf_menu_prompt, follow_key, read_key_sequence):
15740 Use ptrdiff_t, not int, to count maps.
15741 (read_char_minibuf_menu_prompt): Check for overflow in size
15742 calculations. Don't update size until allocation succeeds.
15743 Redo calculations to avoid overflow.
15744 * keyboard.h: Change prototypes to match the above.
15745
15746 * keymap.c (cmm_size, current_minor_maps): Use ptrdiff_t, not int,
15747 to count maps.
15748 (current_minor_maps): Check for size calculation overflow.
15749 * keymap.h: Change prototypes to match the above.
15750
15751 * lread.c (read1, init_obarray): Don't update size until alloc done.
15752
15753 * macros.c (Fstart_kbd_macro): Don't update size until alloc done.
15754 (store_kbd_macro_char): Reorder multiplicands to avoid overflow.
15755
15756 * nsterm.h (struct ns_color_table.size, struct ns_color_table.avail):
15757 Now ptrdiff_t, not int.
15758 * nsterm.m (ns_index_color): Use ptrdiff_t, not int, for table indexes.
15759 (ns_draw_fringe_bitmap): Rewrite to avoid overflow.
15760
15761 * process.c (Fnetwork_interface_list): Check for overflow
15762 in size calculation.
15763
15764 * region-cache.c (move_cache_gap): Check for size calculation overflow.
15765
15766 * scroll.c (do_line_insertion_deletion_costs): Check for size calc
15767 overflow. Don't bother calling xmalloc when xrealloc will do.
15768
15769 * search.c (Freplace_match): Check for size calculation overflow.
15770 (Fset_match_data): Don't assume list lengths fit in 'int'.
15771
15772 * sysdep.c (system_process_attributes): Use ptrdiff_t, not int,
15773 for command line length. Do not attempt to address one before the
15774 beginning of an array, as that's not portable.
15775
15776 * term.c (max_frame_lines): Remove; unused.
15777 (encode_terminal_src_size, encode_terminal_dst_size): Now ptrdiff_t,
15778 not int.
15779 (encode_terminal_code, calculate_costs): Check for size
15780 calculation overflow.
15781 (encode_terminal_code): Use ptrdiff_t, not int, to record glyph
15782 table lengths and related sizes. Don't update size until alloc
15783 done. Redo calculations to avoid overflow.
15784 (calculate_costs): Don't bother calling xmalloc when xrealloc will do.
15785
15786 * termcap.c (tgetent): Use ptrdiff_t, not int, to record results of
15787 subtracting pointers.
15788 (gobble_line): Check for overflow more carefully. Don't update size
15789 until alloc done.
15790
15791 * tparam.c (tparam1): Use ptrdiff_t, not int, for sizes.
15792 Don't update size until alloc done.
15793 Redo size calculations to avoid overflow.
15794 Check for size calculation overflow.
15795 (main) [DEBUG]: Fix typo in invoking tparam1.
15796
15797 * xdisp.c (store_mode_line_noprop_char, x_consider_frame_title):
15798 Use ptrdiff_t, not int, for sizes.
15799 (store_mode_line_noprop_char): Don't update size until alloc done.
15800
15801 * xfaces.c (lface_id_to_name_size, Finternal_make_lisp_face):
15802 Use ptrdiff_t, not int, for sizes.
15803 (Finternal_make_lisp_face, cache_face):
15804 Check for size calculation overflow.
15805 (cache_face): Treat size calculation overflows as if they were
15806 memory exhaustion (the usual treatment), rather than aborting.
15807
15808 * xfns.c (x_encode_text, x_set_name_internal)
15809 (Fx_change_window_property): Use ptrdiff_t, not int, to count
15810 sizes, since they can exceed INT_MAX in size. Check for size
15811 calculation overflow.
15812
15813 * xgselect.c (gfds_size): Now ptrdiff_t, for convenience with xpalloc.
15814 (xg_select): Check for size calculation overflow.
15815 Don't update size until alloc done.
15816
15817 * xrdb.c (get_environ_db): Don't assume path length fits in int,
15818 as sprintf is limited to int lengths.
15819
15820 * xselect.c (X_LONG_SIZE, X_SHRT_MAX, X_SHRT_MIN, X_LONG_MAX)
15821 (X_LONG_MIN): New macros.
15822 Use them to make the following changes clearer.
15823 (MAX_SELECTION_QUANTUM): Make the other bounds on this value clearer.
15824 This change doesn't affect the value now, but it may help remind
15825 future maintainers not to raise the value too much later.
15826 (SELECTION_QUANTUM): Remove, replacing with ...
15827 (selection_quantum): ... new function, which avoids overflow.
15828 All uses changed.
15829 (struct selection_data.size): Now ptrdiff_t, not int, to avoid
15830 assumption that selection length fits in 'int'.
15831 (x_reply_selection_request, x_handle_selection_request)
15832 (x_get_window_property, receive_incremental_selection)
15833 (x_get_window_property_as_lisp_data, selection_data_to_lisp_data)
15834 (lisp_data_to_selection_data, clean_local_selection_data):
15835 Use ptrdiff_t, not int, to record length of selection.
15836 (x_reply_selection_request, x_get_window_property)
15837 (receive_incremental_selection, x_property_data_to_lisp):
15838 Redo calculations to avoid overflow.
15839 (x_reply_selection_request): When sending hint, ceiling it at
15840 X_LONG_MAX rather than relying on wraparound overflow to send
15841 something.
15842 (x_get_window_property, receive_incremental_selection)
15843 (lisp_data_to_selection_data, x_property_data_to_lisp):
15844 Check for size-calculation overflow.
15845 (x_get_window_property, receive_incremental_selection)
15846 (lisp_data_to_selection_data, Fx_register_dnd_atom):
15847 Don't store size until memory allocation succeeds.
15848 (x_get_window_property): Plug memory leak on memory exhaustion.
15849 Don't double-block input; malloc is safe here. Don't assume 2**34
15850 - 4 fits in unsigned long. Add an xassert to check
15851 XGetWindowProperty overflow. Be more careful about overflow
15852 calculations, and distinguish size from memory overflow better.
15853 (receive_incremental_selection): When tracing, don't assume
15854 unsigned int is less than INT_MAX.
15855 (x_selection_data_to_lisp_data): Remove unnecessary (and in theory
15856 harmful) conversions of unsigned short to int.
15857 (lisp_data_to_selection_data): Don't assume that integers
15858 in the range -65535 through -1 fit in an X unsigned short.
15859 Don't assume that ULONG_MAX == X_ULONG_MAX. Don't store into
15860 result parameters unless successful. Rely on cons_to_unsigned
15861 to report problems with elements; the old code wasn't right anyway.
15862 (x_check_property_data): Check for int overflow; we cannot use
15863 a wider type due to X limits.
15864 (x_handle_dnd_message): Use unsigned int, to avoid int overflow.
15865
15866 * xsmfns.c (smc_save_yourself_CB): Check for size calc overflow.
15867
15868 * xterm.c (x_color_cells, x_send_scrollbar_event, handle_one_xevent)
15869 (x_term_init): Check for size calculation overflow.
15870 (x_color_cells): Don't store size until memory allocation succeeds.
15871 (handle_one_xevent): Use ptrdiff_t, not int, for byte counts.
15872 Don't assume alloca size is less than MAX_ALLOCA.
15873 (x_term_init): Don't assume length fits in int (sprintf is limited
15874 to int size).
15875
15876 Use ptrdiff_t for composition IDs.
15877 * character.c (lisp_string_width):
15878 * composite.c (composition_table_size, n_compositions)
15879 (get_composition_id, composition_gstring_from_id):
15880 * dispextern.h (struct glyph_string.cmp_id, struct composition_it.id):
15881 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING):
15882 * window.c (Frecenter):
15883 Use ptrdiff_t, not int, for composition IDs.
15884 * composite.c (get_composition_id): Check for integer overflow.
15885 * composite.h: Adjust prototypes to match the above changes.
15886
15887 Use ptrdiff_t for hash table indexes.
15888 * category.c (hash_get_category_set):
15889 * ccl.c (ccl_driver):
15890 * charset.h (struct charset.hash_index, CHECK_CHARSET_GET_ID):
15891 * coding.c (coding_system_charset_list, detect_coding_system):
15892 * coding.h (struct coding_system.id):
15893 * composite.c (get_composition_id, gstring_lookup_cache):
15894 * fns.c (hash_lookup, hash_put, Fgethash, Fputhash):
15895 * image.c (xpm_get_color_table_h):
15896 * lisp.h (hash_lookup, hash_put):
15897 * minibuf.c (Ftest_completion):
15898 Use ptrdiff_t for hash table indexes, not int (which is too
15899 narrow, on 64-bit hosts) or EMACS_INT (which is too wide, on
15900 32-bit --with-wide-int hosts).
15901
15902 * charset.c (Fdefine_charset_internal): Check for integer overflow.
15903 Add a FIXME comment about memory leaks.
15904 (syms_of_charset): Don't assume xmalloc returns.
15905
15906 Don't assume that stated character widths fit in int.
15907 * character.c (Fchar_width, c_string_width, lisp_string_width):
15908 * character.h (CHAR_WIDTH):
15909 * indent.c (MULTIBYTE_BYTES_WIDTH):
15910 Use sanitize_char_width to avoid undefined and/or bad behavior
15911 with outlandish widths.
15912 * character.h (sanitize_tab_width): Rename from sanitize_width,
15913 now that we have two such functions. All uses changed.
15914 (sanitize_char_width): New inline function.
15915
15916 Don't assume that tab-width fits in int.
15917 * character.h (sanitize_width): New inline function.
15918 (SANE_TAB_WIDTH): New macro.
15919 (ASCII_CHAR_WIDTH): Use it.
15920 * indent.c (sane_tab_width): Remove. All uses replaced by
15921 SANE_TAB_WIDTH (current_buffer).
15922 * xdisp.c (init_iterator): Use SANE_TAB_WIDTH.
15923
15924 * fileio.c: Integer overflow issues with file modes.
15925 (Fset_file_modes, auto_save_1): Don't assume EMACS_INT fits in int.
15926
15927 * charset.c (read_hex): New arg OVERFLOW. All uses changed.
15928 Remove unreachable code.
15929 (read_hex, load_charset_map_from_file): Check for integer overflow.
15930
15931 * xterm.c: Don't go over XClientMessageEvent limit.
15932 (scroll_bar_windows_size): Now ptrdiff_t, as we prefer signed.
15933 (x_send_scroll_bar_event): Likewise. Check that the size does not
15934 exceed limits imposed by XClientMessageEvent, as well as the usual
15935 ptrdiff_t and size_t limits.
15936
15937 * keyboard.c: Overflow, signedness and related fixes.
15938 (make_lispy_movement): Use same integer type in forward decl
15939 that is used in the definition.
15940 (read_key_sequence, keyremap_step):
15941 Change bufsize argument back to int, undoing my 2011-03-30 change.
15942 We prefer signed types, and int is wide enough here.
15943 (parse_tool_bar_item): Don't assume tool_bar_max_label_size is less
15944 than TYPE_MAXIMUM (EMACS_INT) / 2. Don't let the label size grow
15945 larger than STRING_BYTES_BOUND. Use ptrdiff_t for Emacs string
15946 length, not size_t. Use ptrdiff_t for index, not int.
15947 (keyremap_step, read_key_sequence): Redo bufsize check to avoid
15948 possibility of integer overflow.
15949
15950 Overflow, signedness and related fixes for images.
15951
15952 * dispextern.h (struct it.stack[0].u.image.image_id)
15953 (struct_it.image_id, struct image.id, struct image_cache.size)
15954 (struct image_cache.used, struct image_cache.ref_count):
15955 * gtkutil.c (update_frame_tool_bar):
15956 * image.c (x_reference_bitmap, Fimage_size, Fimage_mask_p)
15957 (Fimage_metadata, free_image_cache, clear_image_cache, lookup_image)
15958 (cache_image, mark_image_cache, x_kill_gs_process, Flookup_image):
15959 * nsmenu.m (update_frame_tool_bar):
15960 * xdisp.c (calc_pixel_width_or_height):
15961 * xfns.c (image_cache_refcount):
15962 Image IDs are now ptrdiff_t, not int, to avoid arbitrary limits
15963 on typical 64-bit hosts.
15964
15965 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
15966 (x_bitmap_pixmap, x_create_x_image_and_pixmap):
15967 Omit unnecessary casts to int.
15968 (parse_image_spec): Check that integers fall into 'int' range
15969 when the callers expect that.
15970 (image_ascent): Redo ascent calculation to avoid int overflow.
15971 (clear_image_cache): Avoid overflow when sqrt (INT_MAX) < nimages.
15972 (lookup_image): Remove unnecessary tests.
15973 (xbm_image_p): Locals are now of int, not EMACS_INT,
15974 since parse_image_check makes sure they fit into int.
15975 (png_load, gif_load, svg_load_image):
15976 Prefer int to unsigned where either will do.
15977 (tiff_handler): New function, combining the cores of the
15978 old tiff_error_handler and tiff_warning_handler.
15979 This function is rewritten to use vsnprintf and thereby avoid
15980 stack buffer overflows. It uses only the features of vsnprintf
15981 that are common to both POSIX and native Microsoft.
15982 (tiff_error_handler, tiff_warning_handler): Use it.
15983 (tiff_load, gif_load, imagemagick_load_image):
15984 Don't assume :index value fits in 'int'.
15985 (gif_load): Omit unnecessary cast to double, and avoid double-rounding.
15986 (imagemagick_load_image): Check that crop parameters fit into
15987 the integer types that MagickCropImage accepts. Don't assume
15988 Vimagemagick_render_type has a nonnegative value. Don't assume
15989 size_t fits in 'long'.
15990 (gs_load): Use printmax_t to print the widest integers possible.
15991 Check for integer overflow when computing image height and width.
15992
15993 2011-08-26 Eli Zaretskii <eliz@gnu.org>
15994
15995 * xdisp.c (redisplay_window): Don't force window start if point
15996 will be invisible in the resulting window. (Bug#9324)
15997
15998 2011-08-25 Eli Zaretskii <eliz@gnu.org>
15999
16000 * xdisp.c (compute_display_string_pos): Return 2 in DISP_PROP when
16001 the display spec is of the form `(space ...)'.
16002 (handle_display_spec): Return the value returned by
16003 handle_single_display_spec, not just 1 or zero.
16004 (handle_single_display_spec): If the display spec is of the form
16005 `(space ...)', and specifies display in the text area, return 2
16006 rather than 1.
16007 (try_cursor_movement): Check for the need to scroll more
16008 accurately, and prefer exact match for point under bidi.
16009 Don't advance `row' beyond the last row of the window.
16010
16011 * dispextern.h (struct bidi_it): Rename the disp_prop_p member
16012 into disp_prop; all users changed.
16013
16014 * bidi.c (bidi_fetch_char): If compute_display_string_pos returns
16015 DISP_PROP = 2, substitute the u+2029 PARAGRAPH SEPARATOR character
16016 for the text covered by the display property.
16017
16018 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
16019
16020 * buffer.c (Fbury_buffer_internal): Rename from Funrecord_buffer.
16021 Change return value to nil.
16022 (Frecord_buffer): Delete unused function.
16023
16024 2011-08-24 Eli Zaretskii <eliz@gnu.org>
16025
16026 * xdisp.c (Fcurrent_bidi_paragraph_direction): For unibyte
16027 buffers, return left-to-right.
16028 (set_cursor_from_row): Consider candidate row a win if its glyph
16029 represents a newline and point is on that newline. Fixes cursor
16030 positioning on the newline at EOL of R2L text within L2R
16031 paragraph, and vice versa.
16032 (try_cursor_movement): Check continued rows, in addition to
16033 continuation rows. Fixes unwarranted scroll when point enters a
16034 continued line of R2L text within an L2R paragraph, or vice versa.
16035 (cursor_row_p): Consider the case of point being equal to
16036 MATRIX_ROW_END_CHARPOS. Prevents cursor being stuck when moving
16037 from the end of a short line to the beginning of a continued line
16038 of R2L text within L2R paragraph.
16039 (RECORD_MAX_MIN_POS): For max_pos, use IT_CHARPOS even for
16040 composed characters.
16041
16042 * bidi.c (bidi_check_type): Use xassert.
16043 (bidi_cache_iterator_state): Update the disp_pos and disp_prop_p
16044 members.
16045
16046 2011-08-23 Eli Zaretskii <eliz@gnu.org>
16047
16048 * bidi.c (bidi_get_type): Abort if we get zero as the bidi type of
16049 a character.
16050
16051 2011-08-23 Chong Yidong <cyd@stupidchicken.com>
16052
16053 * nsfont.m (ns_otf_to_script): Fix typo.
16054
16055 2011-08-22 Kenichi Handa <handa@m17n.org>
16056
16057 * chartab.c (Fset_char_table_extra_slot): Do not inhibit setting a
16058 extra slot even if the purpose is char-code-property-table.
16059
16060 2011-08-23 Eli Zaretskii <eliz@gnu.org>
16061
16062 * xdisp.c (redisplay_window): When computing centering_position,
16063 account for the height of the header line. (Bug#8874)
16064
16065 * dispnew.c (buffer_posn_from_coords): Use buf_charpos_to_bytepos
16066 instead of CHAR_TO_BYTE. Fixes a crash when a completion
16067 candidate is selected by the mouse, and that candidate has a
16068 composed character under the mouse.
16069
16070 * xdisp.c (x_produce_glyphs): Set it->nglyphs to 1. Fixes pixel
16071 coordinates reported by pos-visible-in-window-p for a composed
16072 character in column zero.
16073
16074 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
16075
16076 * cmds.c (Fself_insert_command): Mention post-self-insert-hook.
16077
16078 2011-08-22 Eli Zaretskii <eliz@gnu.org>
16079
16080 * xdisp.c (BUFFER_POS_REACHED_P): If this is a composition,
16081 consider it a hit if to_charpos is anywhere in the range of the
16082 composed buffer positions.
16083
16084 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
16085
16086 * image.c (gif_load): Don't assume that each subimage has the same
16087 dimensions as the base image. Handle disposal method that is
16088 "undefined" by the gif spec (Bug#9335).
16089
16090 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
16091
16092 * eval.c (Fsignal): Handle `debug' symbol in error handler (Bug#9329).
16093 (Fcondition_case): Document `debug' symbol in error handler.
16094
16095 2011-08-19 Eli Zaretskii <eliz@gnu.org>
16096
16097 * xfaces.c (face_at_buffer_position): Avoid repeated evaluation of
16098 face ID by FACE_FROM_ID, and avoid a crash when mouse is moved
16099 from an Org mode buffer to a Speedbar frame.
16100
16101 * xdisp.c (RECORD_MAX_MIN_POS): If the display element comes from
16102 a composition, take its buffer position from IT->cmp_it.charpos.
16103 Fixes cursor positioning at the beginning of a line that begins
16104 with a composed character.
16105
16106 2011-08-18 Eli Zaretskii <eliz@gnu.org>
16107
16108 * bidi.c (bidi_get_type): If bidi_type_table reports zero as the
16109 character bidirectional type, use STRONG_L instead. Fixes crashes
16110 in a buffer produced by `describe-categories'.
16111
16112 * dispextern.h (struct bidi_it): Move disp_pos and disp_prop_p
16113 members before the level stack, so they would be saved and
16114 restored when copying iterator state. Fixes incorrect reordering
16115 around TABs covered by display properties.
16116
16117 2011-08-18 Andreas Schwab <schwab@linux-m68k.org>
16118
16119 * process.c (Fnetwork_interface_list): Correctly determine buffer size.
16120
16121 2011-08-17 Chong Yidong <cyd@stupidchicken.com>
16122
16123 * eval.c (internal_condition_case, internal_condition_case_1)
16124 (internal_condition_case_2, internal_condition_case_n):
16125 Remove unnecessary aborts (Bug#9081).
16126
16127 2011-08-17 Eli Zaretskii <eliz@gnu.org>
16128
16129 * lread.c (Fload) [DOS_NT]: If `openp' returns -2, but the file
16130 has no `load' handler, try opening the file locally. (Bug#9311)
16131
16132 2011-08-16 Ken Brown <kbrown@cornell.edu>
16133
16134 * gmalloc.c: Expand comment.
16135
16136 2011-08-16 Eli Zaretskii <eliz@gnu.org>
16137
16138 * xdisp.c (set_cursor_from_row): Don't accept a previous candidate
16139 if it fails the cursor_row_p test. Fixes cursor positioning at ZV.
16140
16141 2011-08-16 Ken Brown <kbrown@cornell.edu>
16142
16143 Fix memory allocation problems in Cygwin build (Bug#9273).
16144
16145 * unexcw.c ( __malloc_initialized): Declare external variable.
16146 (fixup_executable): Force the dumped emacs to reinitialize malloc.
16147
16148 * gmalloc.c [CYGWIN] (bss_sbrk_heapbase, bss_sbrk_heapinfo):
16149 New variables.
16150 (malloc_initialize_1) [CYGWIN]: Prepare for reinitializing the
16151 dumped emacs.
16152 (_free_internal_nolock) [CYGWIN]: Ignore requests to free storage
16153 in the static heap.
16154 [CYGWIN] (special_realloc): New function.
16155 (_realloc_internal_nolock) [CYGWIN]: Use the new function on
16156 requests to realloc storage in the static heap.
16157
16158 2011-08-15 Paul Eggert <eggert@cs.ucla.edu>
16159
16160 * bidi.c (bidi_initialize): Remove unused local.
16161
16162 2011-08-15 Eli Zaretskii <eliz@gnu.org>
16163
16164 * bidimirror.h:
16165 * biditype.h: Remove file.
16166 * makefile.w32-in ($(BLD)/bidi.$(O)):
16167 * deps.mk (bidi.o): Remove biditype.h and bidimirror.h.
16168
16169 * dispextern.h: Fix a typo in the comment to bidi_type_t.
16170
16171 * chartab.c: Improve commentary for the uniprop_table API.
16172
16173 * bidi.c (bidi_paragraph_init): Support zero value of
16174 bidi_ignore_explicit_marks_for_paragraph_level.
16175 (bidi_initialize): Use uniprop_table instead of including
16176 biditype.h and bidimirror.h.
16177
16178 * xdisp.c (move_it_in_display_line_to): Don't reset pixel
16179 coordinates of the iterator when restoring from ppos_it.
16180 (Bug#9296)
16181
16182 2011-08-14 Kenichi Handa <handa@m17n.org>
16183
16184 * process.c (create_process): Call setup_process_coding_systems
16185 after the pid of the process is set to -1 (Bug#8162).
16186
16187 2011-08-14 Eli Zaretskii <eliz@gnu.org>
16188
16189 * xdisp.c (move_it_in_display_line_to): Don't invoke
16190 IT_RESET_X_ASCENT_DESCENT when iterator position was restored from
16191 ppos_it. Fixes vertical cursor motion when line beginning is
16192 covered by an image. (Bug#9296)
16193
16194 2011-08-14 Jan Djärv <jan.h.d@swipnet.se>
16195
16196 * nsterm.h (ns_run_ascript): Declare.
16197 (NSAPP_DATA2_RUNASSCRIPT): Define.
16198
16199 * nsfns.m (as_script, as_result, as_status): New static variables.
16200 (ns_run_ascript): New function.
16201 (Fns_do_applescript): Set variables as_*. Make an NSApplicationDefined
16202 event with data2 set to NSAPP_DATA2_RUNASSCRIPT, post it and then start
16203 the event loop. Get status from as_status (Bug#7276).
16204
16205 * nsterm.m (sendEvent): If event is NSApplicationDefined and
16206 data2 is NSAPP_DATA2_RUNASSCRIPT, call ns_run_ascript and then exit
16207 the event loop (Bug#7276).
16208
16209 2011-08-14 Andreas Schwab <schwab@linux-m68k.org>
16210
16211 * gnutls.c (QCgnutls_bootprop_priority)
16212 (QCgnutls_bootprop_trustfiles, QCgnutls_bootprop_keylist)
16213 (QCgnutls_bootprop_crlfiles, QCgnutls_bootprop_callbacks)
16214 (QCgnutls_bootprop_loglevel, QCgnutls_bootprop_hostname)
16215 (QCgnutls_bootprop_min_prime_bits, QCgnutls_bootprop_verify_flags)
16216 (QCgnutls_bootprop_verify_hostname_error)
16217 (QCgnutls_bootprop_callbacks_verify): Rename from
16218 Qgnutls_bootprop_..., all uses changed.
16219
16220 * xfaces.c (QCignore_defface): Rename from Qignore_defface, all
16221 uses changed.
16222
16223 2011-08-14 Paul Eggert <eggert@cs.ucla.edu>
16224
16225 * xfaces.c (Qframe_set_background_mode): Now static.
16226 * dispextern.h (Qframe_set_background_mode): Remove decl.
16227
16228 * process.c (Fnetwork_interface_info): Declare local only if needed.
16229
16230 2011-08-13 Jan Djärv <jan.h.d@swipnet.se>
16231
16232 * process.c: Include ifaddrs.h and net/if_dl.h if available (Bug#8477).
16233 (Fnetwork_interface_list): Allocate in increments of bytes instead
16234 of sizeof (struct ifreq). Iterate over ifconf.ifc_req by counting
16235 bytes (Bug#8477). Count bytes correctly when ifr_addr is a struct
16236 sockaddr.
16237 (struct ifflag_def): notrailers is smart on OSX.
16238 (Fnetwork_interface_info): Handle case when ifr_flags is negative.
16239 Get hardware address with getifaddrs if available.
16240
16241 2011-08-12 Eli Zaretskii <eliz@gnu.org>
16242
16243 * xdisp.c (iterate_out_of_display_property): xassert that
16244 IT->position is set to within IT->object's boundaries. Break from
16245 the loop as soon as EOB is reached; avoids infloops in redisplay
16246 when IT->position is set up wrongly due to some bug.
16247 Set IT->current to match the bidi iterator unconditionally.
16248 (push_display_prop): Allow GET_FROM_STRING as IT->method on
16249 entry. Force push_it to save on the stack the current
16250 buffer/string position, to be restored by pop_it. Fix flags in
16251 the iterator structure wrt the object coming from a display
16252 property, as `line-prefix' and `wrap-prefix' are not ``replacing''
16253 properties. (Bug#9284)
16254
16255 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
16256
16257 * fontset.c (fontset_get_font_group): Add proper type checks.
16258 (Bug#9172)
16259
16260 2011-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16261
16262 * unexmacosx.c (print_load_command_name): Add cases LC_FUNCTION_STARTS
16263 and LC_VERSION_MIN_MACOSX.
16264 (copy_linkedit_data) [LC_FUNCTION_STARTS]: New function.
16265 (dump_it) [LC_FUNCTION_STARTS]: Use it.
16266
16267 2011-08-08 Eli Zaretskii <eliz@gnu.org>
16268
16269 * xdisp.c (forward_to_next_line_start): Allow to use the
16270 no-display-properties-and-no-overlays under bidi display.
16271 Set disp_pos in the bidi iterator to avoid searches for display
16272 properties and overlays.
16273
16274 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
16275
16276 * editfns.c (Fset_time_zone_rule): Document relationship with the
16277 setenv function.
16278
16279 * ftfont.c (ftfont_pattern_entity): Copy the extras argument to
16280 the font entity extracted from the cache (Bug#8109).
16281
16282 2011-08-07 Chong Yidong <cyd@stupidchicken.com>
16283
16284 * composite.c (autocmp_chars): Don't reset point. That is done by
16285 restore_point_unwind (Bug#5984).
16286
16287 2011-08-07 Juri Linkov <juri@jurta.org>
16288
16289 * editfns.c (Fformat_time_string): Doc fix, add tag `usage:'
16290 to show the arg `TIME' instead of `TIMEVAL'.
16291
16292 2011-08-06 Eli Zaretskii <eliz@gnu.org>
16293
16294 * xdisp.c (set_cursor_from_row): Fix cursor positioning when a
16295 display property strides EOL and includes a newline, as in
16296 longlines-mode. (Bug#9254)
16297 (move_it_in_display_line_to): Fix vertical-motion in a buffer with
16298 word-wrap under bidirectional display. (Bug#9224)
16299
16300 * bidi.c (bidi_unshelve_cache): Don't reset the cache if JUST_FREE
16301 is non-zero, even if the data buffer is NULL. Fixes a crash in
16302 vertical-motion with longlines-mode. (Bug#9254)
16303
16304 2011-08-05 Eli Zaretskii <eliz@gnu.org>
16305
16306 * bidi.c <bidi_cache_total_alloc>: Now static.
16307 (bidi_initialize): Initialize bidi_cache_total_alloc.
16308
16309 * xdisp.c (display_line): Release buffer allocated for shelved bidi
16310 cache. (Bug#9221)
16311
16312 * bidi.c (bidi_shelve_cache, bidi_unshelve_cache): Track total
16313 amount allocated this far in `bidi_cache_total_alloc'.
16314 (bidi_unshelve_cache): Accept an additional argument JUST_FREE; if
16315 non-zero, only free the data buffer without restoring the cache
16316 contents. All callers changed.
16317
16318 * dispextern.h (bidi_unshelve_cache): Update prototype.
16319
16320 * xdisp.c (SAVE_IT, pos_visible_p, move_it_in_display_line_to)
16321 (move_it_in_display_line, move_it_to)
16322 (move_it_vertically_backward, move_it_by_lines): Replace the call
16323 to xfree to an equivalent call to bidi_unshelve_cache.
16324 (move_it_in_display_line_to): Fix logic of returning
16325 MOVE_POS_MATCH_OR_ZV in the bidi case. (Bug#9224)
16326
16327 2011-08-05 Eli Zaretskii <eliz@gnu.org>
16328
16329 * xdisp.c (set_cursor_from_row): Prefer the candidate glyph that
16330 came from a string character with a `cursor' property. (Bug#9229)
16331
16332 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
16333
16334 * Makefile.in (LIB_PTHREAD): New variable.
16335 (LIBES): Add LIB_PTHREAD (Bug#9216).
16336
16337 * alloc.c, emacs.c, gmalloc.c, gtkutil.c, keyboard.c, syssignal.h:
16338 Rename HAVE_GTK_AND_PTHREAD to HAVE_PTHREAD (Bug#9216).
16339
16340 2011-08-04 Andreas Schwab <schwab@linux-m68k.org>
16341
16342 * regex.c (re_iswctype): Remove some redundant boolean conversions.
16343
16344 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
16345
16346 * xterm.c (x_find_topmost_parent): New function.
16347 (x_set_frame_alpha): Find topmost parent window with
16348 x_find_topmost_parent and set the property there also (bug#9181).
16349 (handle_one_xevent): Call x_set_frame_alpha on ReparentNotify.
16350
16351 2011-08-04 Paul Eggert <eggert@cs.ucla.edu>
16352
16353 * callproc.c (Fcall_process): Avoid vfork clobbering
16354 the local vars buffer, coding_systems, current_dir.
16355
16356 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
16357
16358 * keymap.c (Fmake_composed_keymap): Move to subr.el.
16359
16360 2011-08-03 Paul Eggert <eggert@cs.ucla.edu>
16361
16362 * fontset.c (dump_fontset) [FONTSET_DEBUG]: Declare EXTERNALLY_VISIBLE
16363 so that it is not optimized away.
16364
16365 * xdisp.c (compute_display_string_pos): Remove unused local.
16366
16367 2011-08-02 Eli Zaretskii <eliz@gnu.org>
16368
16369 Fix slow cursor motion and scrolling in large buffers with
16370 selective display, like Org Mode buffers. (Bug#9218)
16371
16372 * dispextern.h (struct bidi_it): New member disp_prop_p.
16373
16374 * xdisp.c: Remove one-slot cache of display string positions.
16375 (compute_display_string_pos): Accept an additional argument
16376 DISP_PROP_P; callers changed. Scan at most 5K characters forward
16377 for a display string or property. If found, set DISP_PROP_P
16378 non-zero.
16379
16380 * bidi.c (bidi_fetch_char): Accept an additional argument
16381 DISP_PROP_P, and pass it to compute_display_string_pos.
16382 Only handle text covered by a display string if DISP_PROP_P is returned
16383 non-zero. All callers of bidi_fetch_char changed.
16384
16385 2011-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
16386
16387 * keymap.c (Fdefine_key): Fix Lisp_Object/int mixup; apply some CSE.
16388
16389 2010-12-03 Don March <don@ohspite.net>
16390
16391 * keymap.c (Fdefine_key): Fix non-prefix key error message when
16392 last character M-[char] is translated to ESC [char] (bug#7541).
16393
16394 2011-08-02 Kenichi Handa <handa@m17n.org>
16395
16396 * lisp.h (uniprop_table): Extern it.
16397
16398 * chartab.c (uniprop_table): Make it non-static.
16399
16400 2011-08-01 Eli Zaretskii <eliz@gnu.org>
16401
16402 * xdisp.c (forward_to_next_line_start): Accept additional argument
16403 BIDI_IT_PREV, and store into it the state of the bidi iterator had
16404 on the newline.
16405 (reseat_at_next_visible_line_start): Use the bidi iterator state
16406 returned by forward_to_next_line_start to restore the state of
16407 it->bidi_it after backing up to previous newline. (Bug#9212)
16408
16409 2011-07-30 Andreas Schwab <schwab@linux-m68k.org>
16410
16411 * regex.c (re_comp): Protoize.
16412 (re_exec): Fix return type.
16413 (regexec): Fix type of `ret'. (Bug#9203)
16414
16415 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
16416
16417 * image.c (check_image_size): Use 1024x1024 if unknown frame (Bug#9189).
16418 This is needed if max-image-size is a floating-point number.
16419
16420 2011-07-28 Andreas Schwab <schwab@linux-m68k.org>
16421
16422 * print.c (print_object): Print empty symbol as ##.
16423
16424 * lread.c (read1): Read ## as empty symbol.
16425
16426 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
16427
16428 * nsfns.m (x_set_foreground_color): Set f->foreground_pixel when
16429 setting frame foreground color (Bug#9175).
16430 (x_set_background_color): Likewise.
16431
16432 * nsmenu.m (-setText): Size tooltip dimensions precisely to
16433 contents (Bug#9176).
16434 (EmacsTooltip -init): Remove bezels and add shadows to
16435 tooltip windows.
16436
16437 * nsterm.m (ns_dumpglyphs_stretch): Avoid overwriting left fringe
16438 or scroll bar (Bug#8470).
16439
16440 * nsfont.m (nsfont_open): Remove assignment to voffset and
16441 unnecessary vars hshink, expand, hd, full_height, min_height.
16442 (nsfont_draw): Use s->ybase as baseline for glyph drawing (Bug#8913).
16443
16444 * nsterm.h (nsfont_info): Remove voffset field.
16445
16446 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
16447
16448 Implement strike-through and overline on NextStep (Bug#8863).
16449
16450 * nsfont.m (nsfont_open): Use underline position provided by font,
16451 instead of hard-coded value of 2.
16452 (nsfont_draw): Call ns_draw_text_decoration instead.
16453
16454 * nsterm.h: Add declaration for ns_draw_text_decoration.
16455
16456 * nsterm.m (ns_draw_text_decoration): New function for drawing
16457 underline, overline, and strike-through.
16458 (ns_dumpglyphs_image, ns_dumpglyphs_stretch): Add call to
16459 ns_draw_text_decoration. Change treatment of cursor drawing to
16460 accommodate underlining, etc.
16461
16462 2011-07-28 Eli Zaretskii <eliz@gnu.org>
16463
16464 * buffer.c (init_buffer_once): Set bidi-display-reordering to t by
16465 default.
16466
16467 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
16468
16469 * alloc.c (memory_full) [!SYNC_INPUT]: Fix signal-related race.
16470 Without this fix, if a signal arrives just after memory fills up,
16471 'malloc' might be invoked reentrantly.
16472
16473 * image.c (x_check_image_size) [!HAVE_X_WINDOWS]: Return 1.
16474 In other words, assume that every image size is allowed, on non-X
16475 hosts. This assumption is probably wrong, but it lets Emacs compile.
16476
16477 2011-07-28 Andreas Schwab <schwab@linux-m68k.org>
16478
16479 * regex.c (re_iswctype): Convert return values to boolean.
16480
16481 2011-07-28 Eli Zaretskii <eliz@fencepost.gnu.org>
16482
16483 * xdisp.c (compute_display_string_pos): Don't use cached display
16484 string position if the buffer had its restriction changed.
16485 (Bug#9184)
16486
16487 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
16488
16489 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
16490
16491 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
16492
16493 Integer signedness and overflow and related fixes. (Bug#9079)
16494
16495 * bidi.c: Integer size and overflow fixes.
16496 (bidi_cache_size, bidi_cache_idx, bidi_cache_last_idx)
16497 (bidi_cache_start, bidi_cache_fetch_state, bidi_cache_search)
16498 (bidi_cache_find_level_change, bidi_cache_ensure_space)
16499 (bidi_cache_iterator_state, bidi_cache_find, bidi_cache_start_stack)
16500 (bidi_find_other_level_edge):
16501 Use ptrdiff_t instead of EMACS_INT where either will do.
16502 This works better on 32-bit hosts configured --with-wide-int.
16503 (bidi_cache_ensure_space): Check for size-calculation overflow.
16504 Use % rather than repeated addition, for better worst-case speed.
16505 Don't set bidi_cache_size until after xrealloc returns, because it
16506 might not return.
16507 (bidi_dump_cached_states): Use ptrdiff_t, not int, to avoid overflow.
16508 (bidi_cache_ensure_space): Also check that the bidi cache size
16509 does not exceed that of the largest Lisp string or buffer. See Eli
16510 Zaretskii in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#29>.
16511
16512 * alloc.c (__malloc_size_t): Remove.
16513 All uses replaced by size_t. See Andreas Schwab's note
16514 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#8>.
16515
16516 * image.c: Improve checking for integer overflow.
16517 (check_image_size): Assume that f is nonnull, since
16518 it is always nonnull in practice. This is one less thing to
16519 worry about when checking for integer overflow later.
16520 (x_check_image_size): New function, which checks for integer
16521 overflow issues inside X.
16522 (x_create_x_image_and_pixmap, xbm_read_bitmap_data): Use it.
16523 This removes the need for a memory_full check.
16524 (xbm_image_p): Rewrite to avoid integer multiplication overflow.
16525 (Create_Pixmap_From_Bitmap_Data, xbm_load): Use x_check_image_size.
16526 (xbm_read_bitmap_data): Change locals back to 'int', since
16527 their values must fit in 'int'.
16528 (xpm_load_image, png_load, tiff_load):
16529 Invoke x_create_x_image_and_pixmap earlier,
16530 to avoid much needless work if the image is too large.
16531 (tiff_load): Treat overly large images as if
16532 x_create_x_image_and_pixmap failed, not as malloc failures.
16533 (gs_load): Use x_check_image_size.
16534
16535 * gtkutil.c: Omit integer casts.
16536 (xg_get_pixbuf_from_pixmap): Remove unnecessary cast.
16537 (xg_set_toolkit_scroll_bar_thumb): Rewrite to avoid need for cast.
16538
16539 * image.c (png_load): Don't assume height * row_bytes fits in 'int'.
16540
16541 * xfaces.c (Fbitmap_spec_p): Fix integer overflow bug.
16542 Without this fix, (bitmap-spec-p '(34359738368 1 "x"))
16543 would wrongly return t on a 64-bit host.
16544
16545 * dispnew.c (init_display): Use *_RANGE_OVERFLOW macros.
16546 The plain *_OVERFLOW macros run afoul of GCC bug 49705
16547 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49705>
16548 and therefore cause GCC to emit a bogus diagnostic in some cases.
16549
16550 * image.c: Integer signedness and overflow and related fixes.
16551 This is not an exhaustive set of fixes, but it's time to
16552 record what I've got.
16553 (lookup_pixel_color, check_image_size): Remove redundant decls.
16554 (check_image_size): Don't assume that arbitrary EMACS_INT values
16555 fit in 'int', or that arbitrary 'double' values fit in 'int'.
16556 (x_alloc_image_color, x_create_x_image_and_pixmap, png_load)
16557 (tiff_load, imagemagick_load_image):
16558 Check for overflow in size calculations.
16559 (x_create_x_image_and_pixmap): Remove unnecessary test for
16560 xmalloc returning NULL; that can't happen.
16561 (xbm_read_bitmap_data): Don't assume sizes fit into 'int'.
16562 (xpm_color_bucket): Use better integer hashing function.
16563 (xpm_cache_color): Don't possibly over-allocate memory.
16564 (struct png_memory_storage, tiff_memory_source, tiff_seek_in_memory)
16565 (gif_memory_source):
16566 Use ptrdiff_t, not int or size_t, to record sizes.
16567 (png_load): Don't assume values greater than 2**31 fit in 'int'.
16568 (our_stdio_fill_input_buffer): Prefer ptrdiff_t to size_t when
16569 either works, as we prefer signed integers.
16570 (tiff_read_from_memory, tiff_write_from_memory):
16571 Return tsize_t, not size_t, since that's what the TIFF API wants.
16572 (tiff_read_from_memory): Don't fail simply because the read would
16573 go past EOF; instead, return a short read.
16574 (tiff_load): Omit no-longer-needed casts.
16575 (Fimagemagick_types): Don't assume size fits into 'int'.
16576
16577 Improve hashing quality when configured --with-wide-int.
16578 * fns.c (hash_string): New function, taken from sxhash_string.
16579 Do not discard information about ASCII character case; this
16580 discarding is no longer needed.
16581 (sxhash-string): Use it. Change sig to match it. Caller changed.
16582 * lisp.h: Declare it.
16583 * lread.c (hash_string): Remove, since we now use fns.c's version.
16584 The fns.c version returns a wider integer if --with-wide-int is
16585 specified, so this should help the quality of the hashing a bit.
16586
16587 * emacs.c: Integer overflow minor fix.
16588 (heap_bss_diff): Now uprintmax_t, not unsigned long. All used changed.
16589 Define only if GNU_LINUX.
16590 (main, Fdump_emacs): Set and use heap_bss_diff only if GNU_LINUX.
16591
16592 * dispnew.c: Integer signedness and overflow fixes.
16593 Remove unnecessary forward decls, that were a maintenance hassle.
16594 (history_tick): Now uprintmax_t, so it's more likely to avoid overflow.
16595 All uses changed.
16596 (adjust_glyph_matrix, realloc_glyph_pool, adjust_frame_message_buffer)
16597 (scrolling_window): Use ptrdiff_t, not int, for byte count.
16598 (prepare_desired_row, line_draw_cost):
16599 Use int, not unsigned, where either works.
16600 (save_current_matrix, restore_current_matrix):
16601 Use ptrdiff_t, not size_t, where either works.
16602 (init_display): Check for overflow more accurately, and without
16603 relying on undefined behavior.
16604
16605 * editfns.c (pWIDE, pWIDElen, signed_wide, unsigned_wide):
16606 Remove, replacing with the new symbols in lisp.h. All uses changed.
16607 * fileio.c (make_temp_name):
16608 * filelock.c (lock_file_1, lock_file):
16609 * xdisp.c (message_dolog):
16610 Don't assume PRIdMAX etc. works; this isn't portable to pre-C99 hosts.
16611 Use pMd etc. instead.
16612 * lisp.h (printmax_t, uprintmax_t, pMd, pMu): New types and macros,
16613 replacing the pWIDE etc. symbols removed from editfns.c.
16614
16615 * keyboard.h (num_input_events): Now uintmax_t.
16616 This is (very slightly) less likely to mess up due to wraparound.
16617 All uses changed.
16618
16619 * buffer.c: Integer signedness fixes.
16620 (alloc_buffer_text, enlarge_buffer_text):
16621 Use ptrdiff_t rather than size_t when either will do, as we prefer
16622 signed integers.
16623
16624 * alloc.c: Integer signedness and overflow fixes.
16625 Do not impose an arbitrary 32-bit limit on malloc sizes when debugging.
16626 (__malloc_size_t): Default to size_t, not to int.
16627 (pure_size, pure_bytes_used_before_overflow, stack_copy_size)
16628 (Fgarbage_collect, mark_object_loop_halt, mark_object):
16629 Prefer ptrdiff_t to size_t when either would do, as we prefer
16630 signed integers.
16631 (XMALLOC_OVERRUN_CHECK_OVERHEAD): New macro.
16632 (xmalloc_overrun_check_header, xmalloc_overrun_check_trailer):
16633 Now const. Initialize with values that are in range even if char
16634 is signed.
16635 (XMALLOC_PUT_SIZE, XMALLOC_GET_SIZE): Remove, replacing with ...
16636 (xmalloc_put_size, xmalloc_get_size): New functions. All uses changed.
16637 These functions do the right thing with sizes > 2**32.
16638 (check_depth): Now ptrdiff_t, not int.
16639 (overrun_check_malloc, overrun_check_realloc, overrun_check_free):
16640 Adjust to new way of storing sizes. Check for size overflow bugs
16641 in rest of code.
16642 (STRING_BYTES_MAX): Adjust to new overheads. The old code was
16643 slightly wrong anyway, as it missed one instance of
16644 XMALLOC_OVERRUN_CHECK_OVERHEAD.
16645 (refill_memory_reserve): Omit needless cast to size_t.
16646 (mark_object_loop_halt): Mark as externally visible.
16647
16648 * xselect.c: Integer signedness and overflow fixes.
16649 (Fx_register_dnd_atom, x_handle_dnd_message):
16650 Use ptrdiff_t, not size_t, since we prefer signed.
16651 (Fx_register_dnd_atom): Check for ptrdiff_t (and size_t) overflow.
16652 * xterm.h (struct x_display_info): Use ptrdiff_t, not size_t, for
16653 x_dnd_atoms_size and x_dnd_atoms_length.
16654
16655 * doprnt.c: Prefer signed to unsigned when either works.
16656 * eval.c (verror):
16657 * doprnt.c (doprnt):
16658 * lisp.h (doprnt):
16659 * xdisp.c (vmessage):
16660 Use ptrdiff_t, not size_t, when using or implementing doprnt,
16661 since the sizes cannot exceed ptrdiff_t bounds anyway, and we
16662 prefer signed arithmetic to avoid comparison confusion.
16663 * doprnt.c (doprnt): Avoid a "+ 1" that can't overflow,
16664 but is a bit tricky.
16665
16666 Assume freestanding C89 headers, string.h, stdlib.h.
16667 * data.c, doprnt.c, floatfns.c, print.c:
16668 Include float.h unconditionally.
16669 * gmalloc.c: Assume C89-at-least behavior for preprocessor,
16670 limits.h, stddef.h, string.h. Use memset instead of 'flood'.
16671 * regex.c: Likewise for stddef.h, string.h.
16672 (ISASCII): Remove; can assume it returns 1 now. All uses removed.
16673 * s/aix4-2.h (HAVE_STRING_H): Remove obsolete undef.
16674 * s/ms-w32.h (HAVE_LIMITS_H, HAVE_STRING_H, HAVE_STDLIB_H)
16675 (STDC_HEADERS): Remove obsolete defines.
16676 * sysdep.c: Include limits.h unconditionally.
16677
16678 Assume support for memcmp, memcpy, memmove, memset.
16679 * lisp.h, sysdep.c (memcmp, memcpy, memmove, memset):
16680 * regex.c (memcmp, memcpy):
16681 Remove; we assume C89 now.
16682
16683 * gmalloc.c (memcpy, memset, memmove): Remove; we assume C89 now.
16684 (__malloc_safe_bcopy): Remove; no longer needed.
16685
16686 * lisp.h (struct vectorlike_header, struct Lisp_Subr): Signed sizes.
16687 Use EMACS_INT, not EMACS_UINT, for sizes. The code works equally
16688 well either way, and we prefer signed to unsigned.
16689
16690 2011-07-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
16691
16692 * gnutls.c (emacs_gnutls_read): Don't message anything if the peer
16693 closes the connection while we're reading (bug#9182).
16694
16695 2011-07-25 Jan Djärv <jan.h.d@swipnet.se>
16696
16697 * nsmenu.m (ns_popup_dialog): Add an "ok" button if no buttons
16698 are specified (Bug#9168).
16699
16700 2011-07-25 Paul Eggert <eggert@cs.ucla.edu>
16701
16702 * bidi.c (bidi_dump_cached_states): Fix printf format mismatch.
16703 Found by GCC static checking and --with-wide-int on a 32-bit host.
16704
16705 2011-07-25 Eli Zaretskii <eliz@gnu.org>
16706
16707 * xdisp.c (compute_display_string_pos): Fix logic of caching
16708 previous display string position. Initialize cached_prev_pos to
16709 -1. Fixes slow-down at the beginning of a buffer.
16710
16711 2011-07-24 Eli Zaretskii <eliz@gnu.org>
16712
16713 * xfaces.c (check_lface_attrs) [HAVE_WINDOW_SYSTEM]: Allow `nil'
16714 for attrs[LFACE_FONTSET_INDEX].
16715
16716 2011-07-23 Paul Eggert <eggert@cs.ucla.edu>
16717
16718 * xml.c (parse_region): Remove unused local
16719 that was recently introduced.
16720
16721 2011-07-23 Eli Zaretskii <eliz@gnu.org>
16722
16723 * xfns.c (unwind_create_frame) [GLYPH_DEBUG]: Adapt to changes in
16724 2008-02-22T17:42:09Z!monnier@iro.umontreal.ca.
16725
16726 * xdisp.c (move_it_in_display_line_to): Record the best matching
16727 position for TO_CHARPOS while scanning the line, and restore it on
16728 exit if none of the characters scanned was an exact match.
16729 Fixes vertical-motion and pos-visible-in-window-p under bidi redisplay
16730 when exact match is impossible due to invisible text, and the
16731 lines are truncated.
16732
16733 2011-07-23 Jan Djärv <jan.h.d@swipnet.se>
16734
16735 * nsterm.m (initFrameFromEmacs): Set NSTitledWindowMask in styleMask
16736 for OSX >= 10.7.
16737
16738 2011-07-22 Eli Zaretskii <eliz@gnu.org>
16739
16740 Fix a significant slow-down of cursor motion with C-n, C-p,
16741 C-f/C-b, and C-v/M-v that couldn't keep up with keyboard
16742 auto-repeat under bidi redisplay in fontified buffers.
16743 * xdisp.c (compute_stop_pos_backwards): New function.
16744 (next_element_from_buffer): Call compute_stop_pos_backwards to
16745 find a suitable prev_stop when we find ourselves before
16746 base_level_stop.
16747 (reseat): Don't look for prev_stop, as that could mean a very long
16748 run.
16749 <cached_disp_pos, cached_disp_buffer, cached_disp_modiff>
16750 <cached_disp_overlay_modiff>: Cache for last found display string
16751 position.
16752 (compute_display_string_pos): Return the cached position if asked
16753 about the same buffer in the same area of character positions, and
16754 the buffer wasn't changed since the time the display string
16755 position was cached.
16756
16757 2011-07-22 Eli Zaretskii <eliz@gnu.org>
16758
16759 * xdisp.c (rows_from_pos_range): Don't ignore glyphs whose object
16760 is an integer, which is important for empty lines. (Bug#9149)
16761
16762 2011-07-22 Chong Yidong <cyd@stupidchicken.com>
16763
16764 * frame.c (Fmodify_frame_parameters): In tty case, update the
16765 default face if necessary (Bug#4238).
16766
16767 2011-07-21 Chong Yidong <cyd@stupidchicken.com>
16768
16769 * editfns.c (Fstring_to_char): No need to explain what a character
16770 is in the docstring (Bug#6576).
16771
16772 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
16773
16774 * xml.c (parse_region): Make sure we always return a tree.
16775
16776 2011-07-20 HAMANO Kiyoto <khiker.mail@gmail.com>
16777
16778 * xml.c (parse_region): If a document contains only comments,
16779 return that, too.
16780
16781 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
16782
16783 * xml.c (make_dom): Return comments, too.
16784
16785 2011-07-19 Paul Eggert <eggert@cs.ucla.edu>
16786
16787 Port to OpenBSD.
16788 See http://lists.gnu.org/archive/html/emacs-devel/2011-07/msg00688.html
16789 and the surrounding thread.
16790 * minibuf.c (read_minibuf_noninteractive): Rewrite to use getchar
16791 rather than fgets, and retry after EINTR. Otherwise, 'emacs
16792 --batch -f byte-compile-file' fails on OpenBSD if an inactivity
16793 timer goes off.
16794 * s/openbsd.h (BROKEN_SIGIO): Define.
16795 * unexelf.c (unexec) [__OpenBSD__]:
16796 Don't update the .mdebug section of the Alpha COFF symbol table.
16797
16798 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
16799
16800 * lread.c (syms_of_lread): Clarify when `lexical-binding' is used
16801 (bug#8460).
16802
16803 2011-07-18 Paul Eggert <eggert@cs.ucla.edu>
16804
16805 * fileio.c (Fcopy_file) [!MSDOS]: Tighten created file's mask.
16806 This fixes some race conditions on the permissions of any newly
16807 created file.
16808
16809 * alloc.c (valid_pointer_p): Use pipe, not open.
16810 This fixes some permissions issues when debugging.
16811
16812 * fileio.c (Fcopy_file): Adjust mode if fchown fails. (Bug#9002)
16813 If fchown fails to set both uid and gid, try to set just gid,
16814 as that is sometimes allowed. Adjust the file's mode to eliminate
16815 setuid or setgid bits that are inappropriate if fchown fails.
16816
16817 2011-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
16818
16819 * xdisp.c (next_element_from_string, next_element_from_buffer): Use EQ
16820 to compare Lisp_Objects.
16821 * gnutls.c (syms_of_gnutls): Rename Vgnutls_log_level to
16822 global_gnutls_log_level, don't mistake it for a Lisp_Object.
16823 (init_gnutls_functions, emacs_gnutls_handle_error): Fix up uses.
16824
16825 2011-07-17 Andreas Schwab <schwab@linux-m68k.org>
16826
16827 * lread.c (read_integer): Unread even EOF character.
16828 (read1): Likewise. Properly record start position of symbol.
16829
16830 * lread.c (read1): Read `#:' as empty uninterned symbol if no
16831 symbol character follows.
16832
16833 2011-07-17 Paul Eggert <eggert@cs.ucla.edu>
16834
16835 * fileio.c (Fcopy_file): Pacify gcc re fchown. (Bug#9002)
16836 This works around a problem with the previous change to Fcopy_file.
16837 Recent glibc declares fchown with __attribute__((warn_unused_result)),
16838 and without this change, GCC might complain about discarding
16839 fchown's return value.
16840
16841 2011-07-16 Juanma Barranquero <lekktu@gmail.com>
16842
16843 * makefile.w32-in (GLOBAL_SOURCES): Add gnutls.c (followup to bug#9059).
16844
16845 2011-07-16 Paul Eggert <eggert@cs.ucla.edu>
16846
16847 * fileio.c (Fcopy_file): Don't diagnose fchown failures. (Bug#9002)
16848
16849 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
16850
16851 * gnutls.c (syms_of_gnutls): Define `gnutls-log-level' here, since
16852 it's used from the C level.
16853
16854 * process.c: Use the same condition for POLL_FOR_INPUT in both
16855 keyboard.c and process.c (bug#1858).
16856
16857 2011-07-09 Lawrence Mitchell <wence@gmx.li>
16858
16859 * gnutls.c (Qgnutls_bootprop_min_prime_bits): New variable.
16860 (Fgnutls_boot): Use it.
16861
16862 2011-07-15 Andreas Schwab <schwab@linux-m68k.org>
16863
16864 * doc.c (Fsubstitute_command_keys): Revert last change.
16865
16866 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
16867
16868 * doc.c (Fsubstitute_command_keys): Clarify that \= really only
16869 quotes the next character, and doesn't affect other longer
16870 sequences (bug#8935).
16871
16872 * lread.c (syms_of_lread): Clarify that is isn't only
16873 `eval-buffer' and `eval-defun' that's affected by
16874 `lexical-binding' (bug#8460).
16875
16876 2011-07-15 Eli Zaretskii <eliz@gnu.org>
16877
16878 * xdisp.c (move_it_in_display_line_to): Fix vertical motion with
16879 bidi redisplay when a line includes both an image and is truncated.
16880
16881 2011-07-14 Paul Eggert <eggert@cs.ucla.edu>
16882
16883 Fix minor problems found by static checking.
16884 * bidi.c (bidi_cache_size): Now EMACS_INT, not size_t.
16885 (elsz): Now a signed constant, not a size_t var. We prefer signed
16886 types to unsigned, to avoid integer comparison confusion. Without
16887 this change, GCC 4.6.1 with -Wunsafe-loop-optimizations complains
16888 "cannot optimize loop, the loop counter may overflow", a symptom
16889 of the confusion.
16890 * indent.c (Fvertical_motion): Mark locals as initialized.
16891 * xdisp.c (reseat_to_string): Fix pointer signedness issue.
16892
16893 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
16894
16895 * search.c (Fre_search_backward): Mention `case-fold-search' in
16896 all the re_search_* functions (bug#8138).
16897
16898 * keyboard.c (Fopen_dribble_file): Document when the file is
16899 closed (bug#8056).
16900
16901 2011-07-14 Eli Zaretskii <eliz@gnu.org>
16902
16903 * bidi.c (bidi_dump_cached_states): Fix format of displaying
16904 bidi_cache_idx.
16905
16906 Support bidi reordering of display and overlay strings.
16907 * xdisp.c (compute_display_string_pos)
16908 (compute_display_string_end): Accept additional argument STRING.
16909 (init_iterator, reseat_1): Initialize bidi_it->string.s to NULL.
16910 (reseat_to_string): Initialize bidi_it->string.s and
16911 bidi_it->string.schars.
16912 (Fcurrent_bidi_paragraph_direction): Initialize itb.string.s to
16913 NULL (avoids a crash in bidi_paragraph_init).
16914 Initialize itb.string.lstring.
16915 (init_iterator): Call bidi_init_it only of a valid
16916 buffer position was specified. Initialize paragraph_embedding to
16917 L2R.
16918 (reseat_to_string): Initialize the bidi iterator.
16919 (display_string): If we need to ignore text properties of
16920 LISP_STRING, set IT->stop_charpos to IT->end_charpos. (The
16921 original value of -1 will not work with bidi.)
16922 (compute_display_string_pos): First arg is now struct
16923 `text_pos *'; all callers changed. Support display properties on
16924 Lisp strings.
16925 (compute_display_string_end): Support display properties on Lisp
16926 strings.
16927 (init_iterator, reseat_1, reseat_to_string): Initialize the
16928 string.bufpos member to 0 (zero, for compatibility with IT_CHARPOS
16929 when iterating on a string not from display properties).
16930 (compute_display_string_pos, compute_display_string_end):
16931 Fix calculation of the object to scan. Fixes an error when using
16932 arrow keys.
16933 (next_element_from_buffer): Don't abort when IT_CHARPOS is before
16934 base_level_stop; instead, set base_level_stop to BEGV.
16935 Fixes crashes in vertical-motion.
16936 (next_element_from_buffer): Improve commentary for when
16937 the iterator is before prev_stop.
16938 (init_iterator): Initialize bidi_p from the default value of
16939 bidi-display-reordering, not from buffer-local value. Use the
16940 buffer-local value only if initializing for buffer iteration.
16941 (handle_invisible_prop): Support invisible properties on strings
16942 that are being bidi-reordered.
16943 (set_iterator_to_next): Support bidi reordering of C strings and
16944 Lisp strings.
16945 (next_element_from_string): Support bidi reordering of Lisp
16946 strings.
16947 (handle_stop_backwards): Support Lisp strings as well.
16948 (display_string): Support display of R2L glyph rows.
16949 Use IT_STRING_CHARPOS when displaying from a Lisp string.
16950 (init_iterator): Don't initialize it->bidi_p for strings
16951 here.
16952 (reseat_to_string): Initialize it->bidi_p for strings here.
16953 (next_element_from_string, next_element_from_c_string)
16954 (next_element_from_buffer): Add xassert's for correspondence
16955 between IT's object being iterated and it->bidi_it.string
16956 structure.
16957 (face_before_or_after_it_pos): Support bidi iteration.
16958 (next_element_from_c_string): Handle the case of the first string
16959 character that is not the first one in the visual order.
16960 (get_visually_first_element): New function, refactored from common
16961 parts of next_element_from_buffer, next_element_from_string, and
16962 next_element_from_c_string.
16963 (tool_bar_lines_needed, redisplay_tool_bar)
16964 (display_menu_bar): Force left-to-right direction. Add a FIXME
16965 comment for making that be controlled by a user option.
16966 (push_it, pop_it): Save and restore the state of the
16967 bidi iterator. Save and restore the bidi_p flag.
16968 (pop_it): Iterate out of display property for string iteration as
16969 well.
16970 (iterate_out_of_display_property): Support iteration over strings.
16971 (handle_single_display_spec): Set up it->bidi_it for iteration
16972 over a display string, and call bidi_init_it.
16973 (handle_single_display_spec, next_overlay_string)
16974 (get_overlay_strings_1, push_display_prop): Set up the bidi
16975 iterator for displaying display or overlay strings.
16976 (forward_to_next_line_start): Don't use the shortcut if
16977 bidi-iterating.
16978 (back_to_previous_visible_line_start): If handle_display_prop
16979 pushed the iterator stack, restore the internal state of the bidi
16980 iterator by calling bidi_pop_it same number of times.
16981 (reseat_at_next_visible_line_start): If ON_NEWLINE_P is non-zero,
16982 and we are bidi-iterating, don't decrement the iterator position;
16983 instead, set the first_elt flag in the bidi iterator, to produce
16984 the same effect.
16985 (reseat_1): Remove redundant setting of string_from_display_prop_p.
16986 (push_display_prop): xassert that we are iterating a buffer.
16987 (push_it, pop_it): Save and restore paragraph_embedding member.
16988 (handle_single_display_spec, next_overlay_string)
16989 (get_overlay_strings_1, reseat_1, reseat_to_string)
16990 (push_display_prop): Set up the `unibyte' member of bidi_it.string
16991 correctly. Don't assume unibyte strings are not bidi-reordered.
16992 (compute_display_string_pos)
16993 (compute_display_string_end): Fix handling the case of C string.
16994 (push_it, pop_it): Save and restore from_disp_prop_p.
16995 (handle_single_display_spec, push_display_prop): Set the
16996 from_disp_prop_p flag.
16997 (get_overlay_strings_1): Reset the from_disp_prop_p flag.
16998 (pop_it): Call iterate_out_of_display_property only if we are
16999 popping after iteration over a string that came from a display
17000 property. Fix a typo in popping stretch info. Add an assertion
17001 for verifying that the iterator position is in sync with the bidi
17002 iterator.
17003 (handle_single_display_spec, get_overlay_strings_1)
17004 (push_display_prop): Fix initialization of paragraph direction for
17005 string when that of the parent object is not yet determined.
17006 (reseat_1): Call bidi_init_it to resync the bidi
17007 iterator with IT's position. (Bug#7616)
17008 (find_row_edges): If ROW->start.pos gives position
17009 smaller than min_pos, use it as ROW->minpos. (Bug#7616)
17010 (handle_stop, back_to_previous_visible_line_start, reseat_1):
17011 Reset the from_disp_prop_p flag.
17012 (SAVE_IT, RESTORE_IT): New macros.
17013 (pos_visible_p, face_before_or_after_it_pos)
17014 (back_to_previous_visible_line_start)
17015 (move_it_in_display_line_to, move_it_in_display_line)
17016 (move_it_to, move_it_vertically_backward, move_it_by_lines)
17017 (try_scrolling, redisplay_window, display_line): Use them when
17018 saving a temporary copy of the iterator and restoring it back.
17019 (back_to_previous_visible_line_start, reseat_1)
17020 (init_iterator): Empty the bidi cache "stack".
17021 (move_it_in_display_line_to): If iterator ended up at
17022 EOL, but we never saw any buffer positions smaller than
17023 to_charpos, return MOVE_POS_MATCH_OR_ZV. Fixes vertical cursor
17024 motion in bidi-reordered lines.
17025 (move_it_in_display_line_to): Record prev_method and prev_pos
17026 immediately before the call to set_iterator_to_next. Fixes cursor
17027 motion in bidi-reordered lines with stretch glyphs and strings
17028 displayed in margins. (Bug#8133) (Bug#8867)
17029 Return MOVE_POS_MATCH_OR_ZV only if iterator position is past
17030 TO_CHARPOS.
17031 (pos_visible_p): Support positions in bidi-reordered lines.
17032 Save and restore bidi cache.
17033
17034 * bidi.c (bidi_level_of_next_char): clen should be EMACS_NT, not int.
17035 (bidi_paragraph_info): Delete unused struct.
17036 (bidi_cache_idx, bidi_cache_last_idx): Declare EMACS_INT.
17037 (bidi_cache_start): New variable.
17038 (bidi_cache_reset): Reset bidi_cache_idx to bidi_cache_start, not
17039 to zero.
17040 (bidi_cache_fetch_state, bidi_cache_search)
17041 (bidi_cache_find_level_change, bidi_cache_iterator_state)
17042 (bidi_cache_find, bidi_peek_at_next_level)
17043 (bidi_level_of_next_char, bidi_find_other_level_edge)
17044 (bidi_move_to_visually_next): Compare cache index with
17045 bidi_cache_start rather than with zero.
17046 (bidi_fetch_char): Accept new argument STRING; all callers
17047 changed. Support iteration over a string. Support strings with
17048 display properties. Support unibyte strings. Fix the type of
17049 `len' according to what STRING_CHAR_AND_LENGTH expects.
17050 (bidi_paragraph_init, bidi_resolve_explicit_1)
17051 (bidi_resolve_explicit, bidi_resolve_weak)
17052 (bidi_level_of_next_char, bidi_move_to_visually_next):
17053 Support iteration over a string.
17054 (bidi_set_sor_type, bidi_resolve_explicit_1)
17055 (bidi_resolve_explicit, bidi_type_of_next_char): ignore_bn_limit
17056 can now be zero (for strings); special values 0 and -1 were
17057 changed to -1 and -2, respectively.
17058 (bidi_char_at_pos): New function.
17059 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak):
17060 Call it instead of FETCH_MULTIBYTE_CHAR.
17061 (bidi_move_to_visually_next): Abort if charpos or bytepos were not
17062 initialized to valid values.
17063 (bidi_init_it): Don't initialize charpos and bytepos with invalid
17064 values.
17065 (bidi_level_of_next_char): Allow the sentinel "position" to pass
17066 the test for valid cached positions. Fix the logic for looking up
17067 the sentinel state in the cache. GCPRO the Lisp string we are
17068 iterating.
17069 (bidi_push_it, bidi_pop_it): New functions.
17070 (bidi_initialize): Initialize the bidi cache start stack pointer.
17071 (bidi_cache_ensure_space): New function, refactored from part of
17072 bidi_cache_iterator_state. Don't assume the required size is just
17073 one BIDI_CACHE_CHUNK away.
17074 (bidi_cache_start_stack, bidi_push_it): Use IT_STACK_SIZE.
17075 (bidi_count_bytes, bidi_char_at_pos): New functions.
17076 (bidi_cache_search): Don't assume bidi_cache_last_idx is
17077 always valid if bidi_cache_idx is valid.
17078 (bidi_cache_find_level_change): xassert that bidi_cache_last_idx
17079 is valid if it's going to be used.
17080 (bidi_shelve_cache, bidi_unshelve_cache): New functions.
17081 (bidi_cache_fetch_state, bidi_cache_search)
17082 (bidi_cache_find_level_change, bidi_cache_ensure_space)
17083 (bidi_cache_iterator_state, bidi_cache_find)
17084 (bidi_find_other_level_edge, bidi_cache_start_stack):
17085 All variables related to cache indices are now EMACS_INT.
17086
17087 * dispextern.h (struct bidi_string_data): New structure.
17088 (struct bidi_it): New member `string'. Make flag members be 1-bit
17089 fields, and put them last in the struct.
17090 (compute_display_string_pos, compute_display_string_end):
17091 Update prototypes.
17092 (bidi_push_it, bidi_pop_it): Add prototypes.
17093 (struct iterator_stack_entry): New members bidi_p,
17094 paragraph_embedding, and from_disp_prop_p.
17095 (struct it): Member bidi_p is now a bit field 1 bit wide.
17096 (bidi_shelve_cache, bidi_unshelve_cache):
17097 Declare prototypes.
17098
17099 * .gdbinit (xvectype, xvector, xcompiled, xchartable, xboolvector)
17100 (xpr, xfont, xbacktrace): Use "header.size" when accessing vectors
17101 and vector-like objects.
17102
17103 * dispnew.c (buffer_posn_from_coords): Save and restore the bidi
17104 cache around display iteration.
17105
17106 * window.c (Fwindow_end, window_scroll_pixel_based)
17107 (displayed_window_lines, Frecenter): Save and restore the bidi
17108 cache around display iteration.
17109
17110 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
17111
17112 * editfns.c (Fdelete_region): Clarify the use of the named
17113 parameters (bug#6788).
17114
17115 2011-07-14 Martin Rudalics <rudalics@gmx.at>
17116
17117 * indent.c (Fvertical_motion): Set and restore w->pointm when
17118 saving and restoring the window's buffer (Bug#9006).
17119
17120 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
17121
17122 * editfns.c (Fstring_to_char): Clarify just what is returned
17123 (bug#6576). Text by Eli Zaretskii.
17124
17125 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
17126
17127 * gnutls.c (init_gnutls_functions): Honor gnutls_log_level (bug#9059).
17128
17129 2011-07-13 Eli Zaretskii <eliz@gnu.org>
17130
17131 * buffer.c (mmap_find): Fix a typo.
17132
17133 2011-07-13 Johan Bockgård <bojohan@gnu.org>
17134
17135 Fix execution of x selection hooks.
17136 * xselect.c (Qx_lost_selection_functions)
17137 (Qx_sent_selection_functions): New vars.
17138 (syms_of_xselect): DEFSYM them.
17139 (x_handle_selection_request): Pass Qx_sent_selection_functions
17140 rather than Vx_sent_selection_functions to Frun_hook_with_args.
17141 (x_handle_selection_clear,x_clear_frame_selections):
17142 Pass Qx_lost_selection_functions rather than
17143 Vx_lost_selection_functions to Frun_hook_with_args.
17144
17145 2011-07-13 Paul Eggert <eggert@cs.ucla.edu>
17146
17147 * buffer.c (Fget_buffer_create): Initialize inhibit_shrinking.
17148 The old code sometimes used this field without initializing it.
17149
17150 * alloc.c (gc_sweep): Don't read past end of array.
17151 In theory, the old code could also have corrupted Emacs internals,
17152 though it'd be very unlikely.
17153
17154 2011-07-12 Andreas Schwab <schwab@linux-m68k.org>
17155
17156 * character.c (Fcharacterp): Don't advertise optional ignored
17157 argument. (Bug#4026)
17158
17159 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
17160
17161 * keymap.c (syms_of_keymap): Clarify that "modifier" is "modifier
17162 key" (bug#4257).
17163
17164 * window.c (Fset_window_start): Doc fix (bug#4199).
17165 (Fset_window_hscroll): Ditto.
17166
17167 2011-07-12 Paul Eggert <eggert@cs.ucla.edu>
17168
17169 Fix minor new problems caught by GCC 4.6.1.
17170 * term.c (init_tty): Remove unused local.
17171 * xsettings.c (store_monospaced_changed): Define this function only
17172 if (defined HAVE_GSETTINGS || defined HAVE_GCONF), as it's
17173 not used otherwise.
17174
17175 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
17176
17177 * xdisp.c (Vresize_mini_windows): Minor doc fix (Bug#3300).
17178
17179 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
17180
17181 * xdisp.c (syms_of_xdisp): Make it explicit that the mini-windows
17182 are the mini-buffer and the echo area (bug#3320).
17183
17184 * term.c (init_tty): Remove support for supdup, c10 and perq
17185 terminals, which are no longer supported (bug#1482).
17186
17187 2011-07-10 Johan Bockgård <bojohan@gnu.org>
17188
17189 * xdisp.c (Ftool_bar_lines_needed): Fix WINDOWP check.
17190
17191 2011-07-10 Jan Djärv <jan.h.d@swipnet.se>
17192
17193 * xmenu.c (menu_highlight_callback): Only pass frame to show_help_event
17194 for non-popups (Bug#3642).
17195
17196 2011-07-10 Andreas Schwab <schwab@linux-m68k.org>
17197
17198 * alloc.c (reset_malloc_hooks): Protoize.
17199 * buffer.c (mmap_init, mmap_find, mmap_free_1, mmap_enlarge)
17200 (mmap_set_vars, mmap_alloc, mmap_free, mmap_realloc): Likewise.
17201 * cm.c (losecursor): Likewise.
17202 * data.c (fmod): Likewise.
17203 * dispnew.c (swap_glyphs_in_rows): Likewise.
17204 * emacs.c (memory_warning_signal): Likewise.
17205 * floatfns.c (float_error): Likewise.
17206 * font.c (check_gstring, check_otf_features, otf_tag_symbol)
17207 (otf_open, font_otf_capability, generate_otf_features)
17208 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
17209 Likewise.
17210 * image.c (pbm_read_file): Likewise.
17211 * indent.c (string_display_width): Likewise.
17212 * intervals.c (check_for_interval, search_for_interval)
17213 (inc_interval_count, count_intervals, root_interval)
17214 (adjust_intervals_for_insertion, make_new_interval): Likewise.
17215 * lread.c (defalias): Likewise.
17216 * ralloc.c (r_alloc_check): Likewise.
17217 * regex.c (set_image_of_range_1, set_image_of_range)
17218 (regex_grow_registers): Likewise.
17219 * sysdep.c (strerror): Likewise.
17220 * termcap.c (valid_filename_p, tprint, main): Likewise.
17221 * tparam.c (main): Likewise.
17222 * unexhp9k800.c (run_time_remap, save_data_space)
17223 (update_file_ptrs, read_header, write_header, calculate_checksum)
17224 (copy_file, copy_rest, display_header): Likewise.
17225 * widget.c (mark_shell_size_user_specified, create_frame_gcs):
17226 Likewise.
17227 * xdisp.c (check_it): Likewise.
17228 * xfaces.c (register_color, unregister_color, unregister_colors):
17229 Likewise.
17230 * xfns.c (print_fontset_result): Likewise.
17231 * xrdb.c (member, fatal, main): Likewise.
17232
17233 2011-07-10 Paul Eggert <eggert@cs.ucla.edu>
17234
17235 Fix minor problems found by static checking (Bug#9031).
17236 * chartab.c (char_table_set_range, map_sub_char_table):
17237 Remove unused locals.
17238 (uniprop_table): Now static.
17239 * composite.c (_work_char): Remove unused static var.
17240
17241 2011-07-09 Juanma Barranquero <lekktu@gmail.com>
17242
17243 * chartab.c (uniprop_table_uncompress): Remove unused local variable.
17244
17245 2011-07-09 Jan Djärv <jan.h.d@swipnet.se>
17246
17247 * gtkutil.c (qttip_cb): Remove code without function.
17248
17249 2011-07-09 Eli Zaretskii <eliz@gnu.org>
17250
17251 * w32.c (pthread_sigmask): New stub.
17252
17253 2011-07-08 Paul Eggert <eggert@cs.ucla.edu>
17254
17255 Use pthread_sigmask, not sigprocmask (Bug#9010).
17256 sigprocmask is portable only for single-threaded applications, and
17257 Emacs can be multi-threaded when it uses GTK.
17258 * Makefile.in (LIB_PTHREAD_SIGMASK): New macro.
17259 (LIBES): Use it.
17260 * callproc.c (Fcall_process):
17261 * process.c (create_process):
17262 * sysdep.c (sys_sigblock, sys_sigunblock, sys_sigsetmask):
17263 Use pthread_sigmask, not sigprocmask.
17264
17265 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
17266
17267 * gtkutil.c (qttip_cb): Set line wrap to FALSE for tooltip widget.
17268 (xg_prepare_tooltip): Revert text in x->ttip_lbl, margins was
17269 wrong (Bug#8591).
17270
17271 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
17272
17273 * gtkutil.c (xg_prepare_tooltip): Fix indentation and comment.
17274 Put text in x->ttip_lbl instead of gtk_tooltip_set_text (Bug#8591).
17275 (xg_hide_tooltip): Fix comment.
17276
17277 * nsterm.m (initFrameFromEmacs): Don't use ns_return_types
17278 in registerServicesMenuSendTypes.
17279 (validRequestorForSendType): Don't check ns_return_types.
17280
17281 * nsfns.m (Fx_open_connection): Put NSStringPboardType into
17282 ns_return_type.
17283
17284 2011-07-08 Jason Rumney <jasonr@gnu.org>
17285
17286 * w32term.c (x_make_frame_visible): Use SH_SHOWNORMAL rather than
17287 SH_SHOW for hidden windows (Bug#5482).
17288
17289 * w32fns.c (w32_wnd_proc) [WM_TIMER, WM_SET_CURSOR]: Avoid using
17290 frame struct members of non-existent frames (Bug#6284).
17291
17292 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
17293
17294 * nsterm.m (keyDown): Call to wantsToDelayTextChangeNotifications and
17295 variable firstTime not needed on OSX >= 10.6.
17296 (setPosition): setFloatValue:knobProportion: is deprecated on OSX
17297 >= 10.5. Use setKnobProportion, setDoubleValue.
17298
17299 * nsterm.h (MAC_OS_X_VERSION_10_3, MAC_OS_X_VERSION_10_4)
17300 (MAC_OS_X_VERSION_10_5): Define if not defined.
17301 (EmacsView, EmacsTooltip): Implements NSWindowDelegate on OSX >= 10.6.
17302 (EmacsMenu): Implements NSMenuDelegate on OSX >= 10.6.
17303 (EmacsToolbar): Implements NSToolbarDelegate on OSX >= 10.6.
17304
17305 * nsselect.m (ns_string_from_pasteboard): Don't use deprecated methods
17306 cString and lossyCString on OSX >= 10.4.
17307
17308 * nsmenu.m (fillWithWidgetValue): Don't use deprecated method
17309 sizeToFit on OSX >= 10.2.
17310
17311 * nsimage.m (allocInitFromFile): Don't use deprecated method
17312 bestRepresentationForDevice on OSX >= 10.6.
17313
17314 * nsfns.m (check_ns_display_info): Cast to long and use %ld in error
17315 to avoid warning.
17316
17317 * emacs.c: Declare unexec_init_emacs_zone.
17318
17319 * nsgui.h: Fix compiler warning about gnulib redefining verify.
17320
17321 * nsselect.m (ns_get_local_selection): Change to extern (Bug#8842).
17322
17323 * nsmenu.m (ns_update_menubar): Remove useless setDelegate call
17324 on svcsMenu (Bug#8842).
17325
17326 * nsfns.m (Fx_open_connection): Remove NSStringPboardType from
17327 ns_return_types.
17328 (Fns_list_services): Just return Qnil on 10.6, code not working there.
17329
17330 * nsterm.m (QUTF8_STRING): Declare.
17331 (initFrameFromEmacs): Call registerServicesMenuSendTypes.
17332 (validRequestorForSendType): Return type is (id).
17333 Change indexOfObjectIdenticalTo to indexOfObject.
17334 Check if we have local selection before returning self (Bug#8842).
17335 (writeSelectionToPasteboard): Put local selection into paste board
17336 if we have a local selection (Bug#8842).
17337 (syms_of_nsterm): DEFSYM QUTF8_STRING.
17338
17339 * nsterm.h (MAC_OS_X_VERSION_10_6): Define here instead of nsterm.m.
17340 (ns_get_local_selection): Declare.
17341
17342 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
17343
17344 * keymap.c (describe_map_tree): Don't insert a double newline at
17345 the end of the buffer (bug#1169) and return whether we inserted
17346 something.
17347
17348 * callint.c (Fcall_interactively): Change "reading args" to
17349 "providing args" to try to clarify what it does (bug#1010).
17350
17351 2011-07-07 Kenichi Handa <handa@m17n.org>
17352
17353 * composite.c (composition_compute_stop_pos): Ignore a static
17354 composition starting before CHARPOS (Bug#8915).
17355
17356 * xdisp.c (handle_composition_prop): Likewise.
17357
17358 2011-07-07 Eli Zaretskii <eliz@gnu.org>
17359
17360 * term.c (produce_glyphs) <xassert>: Allow IT_GLYPHLESS in it->what.
17361 (Bug#9015)
17362
17363 2011-07-07 Kenichi Handa <handa@m17n.org>
17364
17365 * character.h (unicode_category_t): New enum type.
17366
17367 * chartab.c (uniprop_decoder_t, uniprop_encoder_t): New types.
17368 (Qchar_code_property_table): New variable.
17369 (UNIPROP_TABLE_P, UNIPROP_GET_DECODER)
17370 (UNIPROP_COMPRESSED_FORM_P): New macros.
17371 (char_table_ascii): Uncompress the compressed values.
17372 (sub_char_table_ref): New arg is_uniprop. Callers changed.
17373 Uncompress the compressed values.
17374 (sub_char_table_ref_and_range): Likewise.
17375 (char_table_ref_and_range): Uncompress the compressed values.
17376 (sub_char_table_set): New arg is_uniprop. Callers changed.
17377 Uncompress the compressed values.
17378 (sub_char_table_set_range): Args changed. Callers changed.
17379 (char_table_set_range): Adjuted for the above change.
17380 (map_sub_char_table): Delete args default_val and parent. Add arg
17381 top. Give decoded values to a Lisp function.
17382 (map_char_table): Adjust for the above change. Give decoded
17383 values to a Lisp function. Gcpro more variables.
17384 (uniprop_table_uncompress)
17385 (uniprop_decode_value_run_length): New functions.
17386 (uniprop_decoder, uniprop_decoder_count): New variables.
17387 (uniprop_get_decoder, uniprop_encode_value_character)
17388 (uniprop_encode_value_run_length, uniprop_encode_value_numeric):
17389 New functions.
17390 (uniprop_encoder, uniprop_encoder_count): New variables.
17391 (uniprop_get_encoder, uniprop_table)
17392 (Funicode_property_table_internal, Fget_unicode_property_internal)
17393 (Fput_unicode_property_internal): New functions.
17394 (syms_of_chartab): DEFSYM Qchar_code_property_table, defsubr
17395 Sunicode_property_table_internal, Sget_unicode_property_internal,
17396 and Sput_unicode_property_internal. Defvar_lisp
17397 char-code-property-alist.
17398
17399 * composite.c (CHAR_COMPOSABLE_P): Adjust for the change of
17400 Vunicode_category_table.
17401
17402 * font.c (font_range): Adjust for the change of
17403 Vunicode_category_table.
17404
17405 2011-07-07 Dan Nicolaescu <dann@ics.uci.edu>
17406
17407 * m/iris4d.h: Remove file, move contents ...
17408 * s/irix6-5.h: ... here.
17409
17410 2011-07-06 Paul Eggert <eggert@cs.ucla.edu>
17411
17412 Remove unportable assumption about struct layout (Bug#8884).
17413 * alloc.c (mark_buffer):
17414 * buffer.c (reset_buffer_local_variables, Fbuffer_local_variables)
17415 (clone_per_buffer_values): Don't assume that
17416 sizeof (struct buffer) is a multiple of sizeof (Lisp_Object).
17417 This isn't true in general, and it's particularly not true
17418 if Emacs is configured with --with-wide-int.
17419 * buffer.h (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER):
17420 New macros, used in the buffer.c change.
17421
17422 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
17423
17424 * xsettings.c: Use both GConf and GSettings if both are available.
17425 (store_config_changed_event): Add comment.
17426 (dpyinfo_valid, store_font_name_changed, map_tool_bar_style)
17427 (store_tool_bar_style_changed): New functions.
17428 (store_monospaced_changed): Add comment. Call dpyinfo_valid.
17429 (struct xsettings): Move font inside HAVE_XFT.
17430 (GSETTINGS_TOOL_BAR_STYLE, GSETTINGS_FONT_NAME): New defines.
17431 (GSETTINGS_MONO_FONT): Rename from SYSTEM_MONO_FONT.
17432 Move inside HAVE_XFT.
17433 (something_changed_gsettingsCB): Rename from something_changedCB.
17434 Check for changes in GSETTINGS_TOOL_BAR_STYLE and GSETTINGS_FONT_NAME
17435 also.
17436 (GCONF_TOOL_BAR_STYLE, GCONF_FONT_NAME): New defines.
17437 (GCONF_MONO_FONT): Rename from SYSTEM_MONO_FONT. Move inside HAVE_XFT.
17438 (something_changed_gconfCB): Rename from something_changedCB.
17439 Check for changes in GCONF_TOOL_BAR_STYLE and GCONF_FONT_NAME also.
17440 (parse_settings): Move check for font inside HAVE_XFT.
17441 (read_settings, apply_xft_settings): Add comment.
17442 (read_and_apply_settings): Add comment. Call map_tool_bar_style and
17443 store_tool_bar_style_changed. Move check for font inside HAVE_XFT and
17444 call store_font_name_changed.
17445 (xft_settings_event): Add comment.
17446 (init_gsettings): Add comment. Get values for GSETTINGS_TOOL_BAR_STYLE
17447 and GSETTINGS_FONT_NAME. Move check for fonts within HAVE_XFT.
17448 (init_gconf): Add comment. Get values for GCONF_TOOL_BAR_STYLE
17449 and GCONF_FONT_NAME. Move check for fonts within HAVE_XFT.
17450 (xsettings_initialize): Call init_gsettings last.
17451 (xsettings_get_system_font, xsettings_get_system_normal_font):
17452 Add comment.
17453
17454 2011-07-05 Paul Eggert <eggert@cs.ucla.edu>
17455
17456 Random fixes. E.g., (random) never returned negative values.
17457 * fns.c (Frandom): Use GET_EMACS_TIME for random seed, and add the
17458 subseconds part to the entropy, as that's a bit more random.
17459 Prefer signed to unsigned, since the signedness doesn't matter and
17460 in general we prefer signed. When given a limit, use a
17461 denominator equal to INTMASK + 1, not to VALMASK + 1, because the
17462 latter isn't right if USE_2_TAGS_FOR_INTS.
17463 * sysdep.c (get_random): Return a value in the range 0..INTMASK,
17464 not 0..VALMASK. Don't discard "excess" bits that random () returns.
17465
17466 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
17467
17468 * textprop.c (text_property_stickiness):
17469 Obey Vtext_property_default_nonsticky.
17470 (syms_of_textprop): Add `display' to Vtext_property_default_nonsticky.
17471 * w32fns.c (syms_of_w32fns):
17472 * xfns.c (syms_of_xfns): Don't Add `display' since it's there by default.
17473
17474 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
17475
17476 * fileio.c (barf_or_query_if_file_exists): Use S_ISDIR.
17477 This is more efficient than Ffile_directory_p and avoids a minor race.
17478
17479 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
17480
17481 * buffer.c (Foverlay_put): Say what the return value is
17482 (bug#7835).
17483
17484 * fileio.c (barf_or_query_if_file_exists): Check first if the file
17485 is a directory before asking whether to use the file name
17486 (bug#7564).
17487 (barf_or_query_if_file_exists): Make the "File is a directory"
17488 error be more correct.
17489
17490 * fns.c (Frequire): Remove the mention of the .gz files, since
17491 that's installation-specific, but keep the mention of
17492 `get-load-suffixes'.
17493
17494 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
17495
17496 * editfns.c (Fformat_time_string): Don't assume strlen fits in int.
17497 Report string overflow if the output is too long.
17498
17499 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
17500
17501 * gnutls.c (Fgnutls_boot): Don't mention :verify-error.
17502 (syms_of_gnutls): Remove duplicate DEFSYM for
17503 Qgnutls_bootprop_verify_hostname_error, an error for
17504 Qgnutls_bootprop_verify_error (which is no longer used).
17505
17506 * eval.c (find_handler_clause): Remove parameters `sig' and `data',
17507 unused since 2011-01-26T20:02:07Z!monnier@iro.umontreal.ca. All callers changed.
17508 Also (re)move comments that are misplaced or no longer relevant.
17509
17510 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
17511
17512 * callint.c (Finteractive): Clarify the meaning of "@" (bug#8813).
17513
17514 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
17515
17516 * xfaces.c (Finternal_merge_in_global_face): Modify the foreground
17517 and background color parameters if they have been changed.
17518
17519 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
17520
17521 * editfns.c (Fformat): Clarify the - and 0 flags (bug#6659).
17522
17523 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
17524
17525 * xsettings.c (SYSTEM_FONT): Define only when used.
17526 No need to define when HAVE_GSETTINGS || !HAVE_XFT.
17527
17528 * keymap.c (access_keymap_1): Now static.
17529
17530 2011-07-02 Chong Yidong <cyd@stupidchicken.com>
17531
17532 * keyboard.c (command_loop_1): If a down-mouse event is unbound,
17533 leave any prefix arg for the up event (Bug#1586).
17534
17535 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
17536
17537 * lread.c (syms_of_lread): Mention single symbols defined by
17538 `defvar' or `defconst' (bug#7154).
17539
17540 * fns.c (Frequire): Mention .el.gz files (bug#7314).
17541 (Frequire): Mention get-load-suffixes.
17542
17543 2011-07-02 Martin Rudalics <rudalics@gmx.at>
17544
17545 * window.h (window): Remove clone_number slot.
17546 * window.c (Fwindow_clone_number, Fset_window_clone_number):
17547 Remove.
17548 (make_parent_window, make_window, saved_window)
17549 (Fset_window_configuration, save_window_save): Don't deal with
17550 clone numbers.
17551 * buffer.c (Qclone_number): Remove declaration.
17552 (sort_overlays, overlay_strings): Don't deal with clone numbers.
17553
17554 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
17555
17556 Add multiple inheritance to keymaps.
17557 * keymap.c (Fmake_composed_keymap): New function.
17558 (Fset_keymap_parent): Simplify.
17559 (fix_submap_inheritance): Remove.
17560 (access_keymap_1): New function extracted from access_keymap to handle
17561 embedded parents and handle lists of maps.
17562 (access_keymap): Use it.
17563 (Fkeymap_prompt, map_keymap_internal, map_keymap, store_in_keymap)
17564 (Fcopy_keymap): Handle embedded parents.
17565 (Fcommand_remapping, define_as_prefix): Simplify.
17566 (Fkey_binding): Simplify.
17567 (syms_of_keymap): Move minibuffer-local-completion-map,
17568 minibuffer-local-filename-completion-map,
17569 minibuffer-local-must-match-map, and
17570 minibuffer-local-filename-must-match-map to Elisp.
17571 (syms_of_keymap): Defsubr make-composed-keymap.
17572 * keyboard.c (menu_bar_items): Use map_keymap_canonical.
17573 (parse_menu_item): Trivial simplification.
17574
17575 2011-07-01 Glenn Morris <rgm@gnu.org>
17576
17577 * Makefile.in (SETTINGS_LIBS): Fix typo.
17578
17579 2011-07-01 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
17580
17581 * coding.c (Fencode_coding_string): Record the last coding system
17582 used, as the function doc string says (bug#8738).
17583
17584 2011-07-01 Jan Djärv <jan.h.d@swipnet.se>
17585
17586 * xsettings.c (store_monospaced_changed): Take new font as arg and
17587 check for change against current_mono_font.
17588 (EMACS_TYPE_SETTINGS): Remove this and related defines.
17589 (emacs_settings_constructor, emacs_settings_get_property)
17590 (emacs_settings_set_property, emacs_settings_class_init)
17591 (emacs_settings_init, gsettings_obj): Remove.
17592 (something_changedCB): New function for HAVE_GSETTINGS.
17593 (something_changedCB): HAVE_GCONF: Call store_monospaced_changed
17594 with value as argument.
17595 (init_gsettings): Check that GSETTINGS_SCHEMA exists before calling
17596 g_settings_new (Bug#8967). Do not create gsettings_obj.
17597 Remove calls to g_settings_bind. Connect something_changedCB to
17598 "changed".
17599
17600 * xgselect.c: Add defined (HAVE_GSETTINGS).
17601 (xgselect_initialize): Ditto.
17602
17603 * process.c: Add defined (HAVE_GSETTINGS) for xgselect.h
17604 (wait_reading_process_output): Add defined (HAVE_GSETTINGS) for
17605 xg_select.
17606
17607 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
17608
17609 * eval.c (struct backtrace): Simplify and port the data structure.
17610 Do not assume that "int nargs : BITS_PER_INT - 2;" produces a
17611 signed bit field, as this assumption is not portable and it makes
17612 Emacs crash when compiled with Sun C 5.8 on sparc. Do not use
17613 "char debug_on_exit : 1" as this is not portable either; instead,
17614 use the portable "unsigned int debug_on_exit : 1". Remove unused
17615 member evalargs. Remove obsolete comments about cc bombing out.
17616
17617 2011-06-30 Jan Djärv <jan.h.d@swipnet.se>
17618
17619 * xsettings.c: Include glib-object.h, gio/gio.h if HAVE_GSETTINGS.
17620 Let HAVE_GSETTINGS override HAVE_GCONF.
17621 (store_monospaced_changed): New function.
17622 (EMACS_SETTINGS): A new type derived from GObject to handle
17623 GSettings notifications.
17624 (emacs_settings_constructor, emacs_settings_get_property)
17625 (emacs_settings_set_property, emacs_settings_class_init):
17626 New functions.
17627 (gsettings_client, gsettings_obj): New variables.
17628 (GSETTINGS_SCHEMA): New define.
17629 (something_changedCB): Call store_monospaced_changed.
17630 (init_gsettings): New function.
17631 (xsettings_initialize): Call init_gsettings.
17632 (syms_of_xsettings): Initialize gsettings_client, gsettings_obj
17633 to NULL.
17634
17635 * Makefile.in (SETTINGS_CFLAGS, SETTINGS_LIBS): Rename from
17636 GCONF_CFLAGS/LIBS.
17637
17638 2011-06-29 Martin Rudalics <rudalics@gmx.at>
17639
17640 * window.c (resize_root_window, grow_mini_window)
17641 (shrink_mini_window): Rename Qresize_root_window to
17642 Qwindow_resize_root_window and Qresize_root_window_vertically to
17643 Qwindow_resize_root_window_vertically.
17644
17645 2011-06-28 Paul Eggert <eggert@cs.ucla.edu>
17646
17647 * gnutls.c (Qgnutls_bootprop_verify_error): Remove unused var.
17648
17649 2011-06-27 Juanma Barranquero <lekktu@gmail.com>
17650
17651 * makefile.w32-in: Redesign dependencies so they reflect more
17652 clearly which files are directly included by each source file,
17653 and not through other includes.
17654
17655 2011-06-27 Martin Rudalics <rudalics@gmx.at>
17656
17657 * buffer.c (Qclone_number): Declare static and DEFSYM it.
17658 (sort_overlays, overlay_strings): When an overlay's clone number
17659 matches the window's clone number process the overlay even if
17660 the overlay's window property doesn't match the current window.
17661
17662 * window.c (Fwindow_vchild): Rename to Fwindow_top_child.
17663 (Fwindow_hchild): Rename to Fwindow_left_child.
17664 (Fwindow_next): Rename to Fwindow_next_sibling.
17665 (Fwindow_prev): Rename to Fwindow_prev_sibling.
17666 (resize_window_check): Rename to window_resize_check.
17667 (resize_window_apply): Rename to window_resize_apply.
17668 (Fresize_window_apply): Rename to Fwindow_resize_apply.
17669 (Fdelete_other_windows_internal, resize_frame_windows)
17670 (Fsplit_window_internal, Fdelete_window_internal)
17671 (grow_mini_window, shrink_mini_window)
17672 (Fresize_mini_window_internal): Fix callers accordingly.
17673
17674 2011-06-26 Jan Djärv <jan.h.d@swipnet.se>
17675
17676 * emacsgtkfixed.h: State that this is only used with Gtk+3.
17677 (emacs_fixed_set_min_size): Remove.
17678 (emacs_fixed_new): Take frame as argument.
17679
17680 * emacsgtkfixed.c: State that this is only used with Gtk+3.
17681 (_EmacsFixedPrivate): Remove minwidth/height.
17682 Add struct frame *f.
17683 (emacs_fixed_init): Initialize priv->f.
17684 (get_parent_class, emacs_fixed_set_min_size): Remove.
17685 (emacs_fixed_new): Set priv->f to argument.
17686 (emacs_fixed_get_preferred_width)
17687 (emacs_fixed_get_preferred_height): Use min_width/height from
17688 frames size_hint to set minimum and natural (Bug#8919).
17689 (XSetWMSizeHints, XSetWMNormalHints): Override these functions
17690 and use min_width/height from frames size_hint to set
17691 min_width/height (Bug#8919).
17692
17693 * gtkutil.c (xg_create_frame_widgets): Pass f to emacs_fixed_new.
17694 (x_wm_set_size_hint): Remove call to emacs_fixed_set_min_size.
17695 Fix indentation.
17696
17697 2011-06-26 Eli Zaretskii <eliz@gnu.org>
17698
17699 * bidi.c (bidi_paragraph_init): Test for ZV_BYTE before calling
17700 bidi_at_paragraph_end, since fast_looking_at doesn't like to be
17701 called at ZV.
17702
17703 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
17704
17705 * process.c (wait_reading_process_output): Bypass select if
17706 waiting for a cell while ignoring keyboard input, and input is
17707 pending. Suggested by Jan Djärv (Bug#8869).
17708
17709 2011-06-25 Paul Eggert <eggert@cs.ucla.edu>
17710
17711 Use gnulib's dup2 module instead of rolling our own.
17712 * sysdep.c (dup2) [!HAVE_DUP2]: Remove; gnulib now does this.
17713
17714 2011-06-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17715
17716 * dispnew.c (scrolling_window): Before scrolling, turn off a
17717 mouse-highlight in the window being scrolled.
17718
17719 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
17720
17721 Move DEFSYM to lisp.h and use everywhere.
17722
17723 * character.h (DEFSYM): Move declaration...
17724 * lisp.h (DEFSYM): ...here.
17725
17726 * gnutls.c:
17727 * minibuf.c:
17728 * w32menu.c:
17729 * w32proc.c:
17730 * w32select.c: Don't include character.h.
17731
17732 * alloc.c (syms_of_alloc):
17733 * buffer.c (syms_of_buffer):
17734 * bytecode.c (syms_of_bytecode):
17735 * callint.c (syms_of_callint):
17736 * casefiddle.c (syms_of_casefiddle):
17737 * casetab.c (init_casetab_once):
17738 * category.c (init_category_once, syms_of_category):
17739 * ccl.c (syms_of_ccl):
17740 * cmds.c (syms_of_cmds):
17741 * composite.c (syms_of_composite):
17742 * dbusbind.c (syms_of_dbusbind):
17743 * dired.c (syms_of_dired):
17744 * dispnew.c (syms_of_display):
17745 * doc.c (syms_of_doc):
17746 * editfns.c (syms_of_editfns):
17747 * emacs.c (syms_of_emacs):
17748 * eval.c (syms_of_eval):
17749 * fileio.c (syms_of_fileio):
17750 * fns.c (syms_of_fns):
17751 * frame.c (syms_of_frame):
17752 * fringe.c (syms_of_fringe):
17753 * insdel.c (syms_of_insdel):
17754 * keymap.c (syms_of_keymap):
17755 * lread.c (init_obarray, syms_of_lread):
17756 * macros.c (syms_of_macros):
17757 * msdos.c (syms_of_msdos):
17758 * print.c (syms_of_print):
17759 * process.c (syms_of_process):
17760 * search.c (syms_of_search):
17761 * sound.c (syms_of_sound):
17762 * syntax.c (init_syntax_once, syms_of_syntax):
17763 * terminal.c (syms_of_terminal):
17764 * textprop.c (syms_of_textprop):
17765 * undo.c (syms_of_undo):
17766 * w32.c (globals_of_w32):
17767 * window.c (syms_of_window):
17768 * xdisp.c (syms_of_xdisp):
17769 * xfaces.c (syms_of_xfaces):
17770 * xfns.c (syms_of_xfns):
17771 * xmenu.c (syms_of_xmenu):
17772 * xsettings.c (syms_of_xsettings):
17773 * xterm.c (syms_of_xterm): Use DEFSYM.
17774
17775 2011-06-24 Teodor Zlatanov <tzz@lifelogs.com>
17776
17777 * gnutls.c (syms_of_gnutls): Use the DEFSYM macro from character.h.
17778
17779 2011-06-23 Paul Eggert <eggert@cs.ucla.edu>
17780
17781 Integer and buffer overflow fixes (Bug#8873).
17782
17783 * print.c (printchar, strout): Check for string overflow.
17784 (PRINTPREPARE, printchar, strout):
17785 Don't set size unless allocation succeeds.
17786
17787 * minibuf.c (read_minibuf_noninteractive): Use ptrdiff_t, not int,
17788 for sizes. Check for string overflow more accurately.
17789 Simplify newline removal at end; this suppresses a GCC 4.6.0 warning.
17790
17791 * macros.c: Integer and buffer overflow fixes.
17792 * keyboard.h (struct keyboard.kbd_macro_bufsize):
17793 * macros.c (Fstart_kbd_macro, store_kbd_macro_char):
17794 Use ptrdiff_t, not int, for sizes.
17795 Don't increment bufsize until after realloc succeeds.
17796 Check for size-calculation overflow.
17797 (Fstart_kbd_macro): Use EMACS_INT, not int, for XINT result.
17798
17799 * lisp.h (DEFVAR_KBOARD): Use offsetof instead of char * finagling.
17800
17801 * lread.c: Integer overflow fixes.
17802 (read_integer): Radix is now EMACS_INT, not int,
17803 to improve quality of diagnostics for out-of-range radices.
17804 Calculate buffer size correctly for out-of-range radices.
17805 (read1): Check for integer overflow in radices, and in
17806 read-circle numbers.
17807 (read_escape): Avoid int overflow.
17808 (Fload, openp, read_buffer_size, read1)
17809 (substitute_object_recurse, read_vector, read_list, map_obarray):
17810 Use ptrdiff_t, not int, for sizes.
17811 (read1): Use EMACS_INT, not int, for sizes.
17812 Check for size overflow.
17813
17814 * image.c (cache_image): Check for size arithmetic overflow.
17815
17816 * lread.c: Integer overflow issues.
17817 (saved_doc_string_size, saved_doc_string_length)
17818 (prev_saved_doc_string_size, prev_saved_doc_string_length):
17819 Now ptrdiff_t, not int.
17820 (read1): Don't assume doc string length fits in int. Check for
17821 out-of-range doc string lengths.
17822 (read_list): Don't assume file position fits in int.
17823 (read_escape): Check for hex character overflow.
17824
17825 2011-06-22 Leo Liu <sdl.web@gmail.com>
17826
17827 * minibuf.c (Fcompleting_read_default, Vcompleting_read_function):
17828 Move to minibuffer.el.
17829
17830 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
17831
17832 Fixes for GLYPH_DEBUG found by GCC 4.6.0 static checking.
17833 The following patches are for when GLYPH_DEBUG && !XASSERT.
17834 * dispextern.h (trace_redisplay_p, dump_glyph_string):
17835 * dispnew.c (flush_stdout):
17836 * xdisp.c (dump_glyph_row, dump_glyph_matrix, dump_glyph):
17837 Mark as externally visible.
17838 * dispnew.c (check_window_matrix_pointers): Now static.
17839 * dispnew.c (window_to_frame_vpos):
17840 * xfns.c (unwind_create_frame):
17841 * xterm.c (x_check_font): Remove unused local.
17842 * scroll.c (CHECK_BOUNDS):
17843 * xfaces.c (cache_fache): Rename local to avoid shadowing.
17844 * xfns.c, w32fns.c (image_cache_refcount, dpyinfo_refcount): Now static.
17845 * xdisp.c (check_window_end): Now a no-op if !XASSERTS.
17846 (debug_first_unchanged_at_end_vpos, debug_last_unchanged_at_beg_vpos)
17847 (debug_dvpos, debug_dy, debug_delta, debug_delta_bytes, debug_end_vpos):
17848 Now static.
17849 (debug_method_add): Use va_list and vsprintf rather than relying
17850 on undefined behavior with wrong number of arguments.
17851 (dump_glyph, dump_glyph_row, Fdump_glyph_matrix):
17852 Don't assume ptrdiff_t and EMACS_INT are the same width as int.
17853 In this code, it's OK to assume C99 behavior for ptrdiff_t formats
17854 since we're not interested in debugging glyphs with old libraries.
17855 * xfaces.c (cache_face): Move debugging code earlier; this pacifies
17856 GCC 4.6.0's static checking.
17857
17858 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
17859
17860 Integer overflow and signedness fixes (Bug#8873).
17861 A few related buffer overrun fixes, too.
17862
17863 * font.c (font_score): Use EMACS_INT, not int, to store XINT value.
17864
17865 * dispextern.h (struct face.stipple):
17866 * image.c (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
17867 (x_bitmap_mask, x_allocate_bitmap_record)
17868 (x_create_bitmap_from_data, x_create_bitmap_from_file)
17869 (x_destroy_bitmap, x_destroy_all_bitmaps, x_create_bitmap_mask)
17870 (x_create_bitmap_from_xpm_data):
17871 * nsterm.h (struct ns_display_info.bitmaps_size, .bitmaps_last):
17872 * w32term.h (struct w32_display_info.icon_bitmap_id, .bitmaps_size)
17873 (.bitmaps_last):
17874 * xfaces.c (load_pixmap):
17875 * xterm.c (x_bitmap_icon, x_wm_set_icon_pixmap):
17876 * xterm.h (struct x_display_info.icon_bitmap_id, .bitmaps_size)
17877 (.bitmaps_last, struct x_output.icon_bitmap):
17878 Use ptrdiff_t, not int, for bitmap indexes.
17879 (x_allocate_bitmap_record): Check for size overflow.
17880 * dispextern.h, lisp.h: Adjust to API changes elsewhere.
17881
17882 Use ptrdiff_t, not int, for overlay counts.
17883 * buffer.h (overlays_at, sort_overlays, GET_OVERLAYS_AT):
17884 * editfns.c (overlays_around, get_pos_property):
17885 * textprop.c (get_char_property_and_overlay):
17886 * xdisp.c (next_overlay_change, note_mouse_highlight):
17887 * xfaces.c (face_at_buffer_position):
17888 * buffer.c (OVERLAY_COUNT_MAX): New macro.
17889 (overlays_at, overlays_in, sort_overlays, Foverlays_at)
17890 (Fnext_overlay_change, Fprevious_overlay_change)
17891 (mouse_face_overlay_overlaps, Foverlays_in):
17892 Use ptrdiff_t, not int, for sizes.
17893 (overlays_at, overlays_in): Check for size-calculation overflow.
17894
17895 * xterm.c (xim_initialize, same_x_server): Strlen may not fit in int.
17896
17897 * xsmfns.c (smc_save_yourself_CB, x_session_initialize): Avoid strlen.
17898 (x_session_initialize): Do not assume string length fits in int.
17899
17900 * xsettings.c (apply_xft_settings): Fix potential buffer overrun.
17901 This is unlikely, but can occur if DPI is outlandish.
17902
17903 * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
17904 * xselect.c (Fx_get_atom_name): Avoid need for strlen.
17905
17906 * xrdb.c: Don't assume strlen fits in int; avoid some strlens.
17907 * xrdb.c (magic_file_p, search_magic_path):
17908 Omit last arg SUFFIX; it was always 0. All callers changed.
17909 (magic_file_p): Use ptrdiff_t, not int. Check for size overflow.
17910
17911 * xfont.c (xfont_match): Avoid need for strlen.
17912
17913 * xfns.c: Don't assume strlen fits in int.
17914 (xic_create_fontsetname, x_window): Use ptrdiff_t, not int.
17915
17916 * xdisp.c (message_log_check_duplicate): Return intmax_t,
17917 not unsigned long, as we prefer signed integers. All callers changed.
17918 Detect integer overflow in repeat count.
17919 (message_dolog): Don't assume print length fits in 39 bytes.
17920 (display_mode_element): Don't assume strlen fits in int.
17921
17922 * termcap.c: Don't assume sizes fit in int and never overflow.
17923 (struct termcap_buffer, tgetent): Use ptrdiff_t, not int, for sizes.
17924 (gobble_line): Check for size-calculation overflow.
17925
17926 * minibuf.c (Fread_buffer):
17927 * lread.c (intern, intern_c_string):
17928 * image.c (xpm_scan) [HAVE_NS && !HAVE_XPM]:
17929 Don't assume string length fits in int.
17930
17931 * keyboard.c (parse_tool_bar_item):
17932 * gtkutil.c (style_changed_cb): Avoid need for strlen.
17933
17934 * font.c: Don't assume string length fits in int.
17935 (font_parse_xlfd, font_parse_fcname, font_unparse_fcname):
17936 Use ptrdiff_t, not int.
17937 (font_intern_prop): Don't assume string length fits in int.
17938 Don't assume integer property fits in fixnum.
17939 * font.h (font_intern_prop): 2nd arg is now ptrdiff_t, not int.
17940
17941 * filelock.c: Fix some buffer overrun and integer overflow issues.
17942 (get_boot_time): Don't assume gzip command string fits in 100 bytes.
17943 Reformulate so as not to need the command string.
17944 Invoke gzip -cd rather than gunzip, as it's more portable.
17945 (lock_info_type, lock_file_1, lock_file):
17946 Don't assume pid_t and time_t fit in unsigned long.
17947 (LOCK_PID_MAX): Remove; we now use more-reliable bounds.
17948 (current_lock_owner): Prefer signed type for sizes.
17949 Use memcpy, not strncpy, where memcpy is what is really wanted.
17950 Don't assume (via atoi) that time_t and pid_t fit in int.
17951 Check for time_t and/or pid_t out of range, e.g., via a network share.
17952 Don't alloca where an auto var works fine.
17953
17954 * fileio.c: Fix some integer overflow issues.
17955 (file_name_as_directory, Fexpand_file_name, Fsubstitute_in_file_name):
17956 Don't assume string length fits in int.
17957 (directory_file_name): Don't assume string length fits in long.
17958 (make_temp_name): Don't assume pid fits in int, or that its print
17959 length is less than 20.
17960
17961 * data.c (Fsubr_name): Rewrite to avoid a strlen call.
17962
17963 * coding.c (make_subsidiaries): Don't assume string length fits in int.
17964
17965 * callproc.c (child_setup): Rewrite to avoid two strlen calls.
17966
17967 * process.c (Fformat_network_address): Use EMACS_INT, not EMACS_UINT.
17968 We prefer signed integers, even for size calculations.
17969
17970 * emacs.c: Don't assume string length fits in 'int'.
17971 (DEFINE_DUMMY_FUNCTION, sort_args): Use ptrdiff_t, not int.
17972 (main): Don't invoke strlen when not needed.
17973
17974 * dbusbind.c (XD_ERROR): Don't arbitrarily truncate string.
17975 (XD_DEBUG_MESSAGE): Don't waste a byte.
17976
17977 * callproc.c (getenv_internal_1, getenv_internal)
17978 (Fgetenv_internal):
17979 * buffer.c (init_buffer): Don't assume string length fits in 'int'.
17980
17981 * lread.c (invalid_syntax): Omit length argument.
17982 All uses changed. This doesn't fix a bug, but it simplifies the
17983 code away from its former Hollerith-constant appearance, and it's
17984 one less 'int' to worry about when looking at integer-overflow issues.
17985 (string_to_number): Simplify 2011-04-26 change by invoking xsignal1.
17986
17987 * lisp.h (DEFUN): Remove bogus use of sizeof (struct Lisp_Subr).
17988 This didn't break anything, but it didn't help either.
17989 It's confusing to put a bogus integer in a place where the actual
17990 value does not matter.
17991 (LIST_END_P): Remove unused macro and its bogus comment.
17992 (make_fixnum_or_float): Remove unnecessary cast to EMACS_INT.
17993
17994 * lisp.h (union Lisp_Object.i): EMACS_INT, not EMACS_UINT.
17995 This is for consistency with the ordinary, non-USE_LISP_UNION_TYPE,
17996 implementation.
17997 (struct Lisp_Bool_Vector.size): EMACS_INT, not EMACS_UINT.
17998 We prefer signed types, and the value cannot exceed the EMACS_INT
17999 range anyway (because otherwise the length would not be representable).
18000 (XSET) [USE_LISP_UNION_TYPE]: Use uintptr_t and intptr_t,
18001 not EMACS_UINT and EMACS_INT, when converting pointer to integer.
18002 This avoids a GCC warning when WIDE_EMACS_INT.
18003
18004 * indent.c (sane_tab_width): New function.
18005 (current_column, scan_for_column, Findent_to, position_indentation)
18006 (compute_motion): Use it. This is just for clarity.
18007 (Fcompute_motion): Don't assume hscroll and tab offset fit in int.
18008
18009 * image.c (xbm_image_p): Don't assume stated width, height fit in int.
18010
18011 * lisp.h (lint_assume): New macro.
18012 * composite.c (composition_gstring_put_cache):
18013 * ftfont.c (ftfont_shape_by_flt): Use it to pacify GCC 4.6.0.
18014
18015 * editfns.c, insdel.c:
18016 Omit unnecessary forward decls, to simplify future changes.
18017
18018 * ftfont.c (ftfont_shape_by_flt): Use signed integers for lengths.
18019
18020 * font.c (Ffont_shape_gstring): Don't assume glyph len fits in 'int'.
18021
18022 * fns.c (Ffillarray): Don't assume bool vector size fits in 'int'.
18023 Use much-faster test for byte-length change.
18024 Don't assume string byte-length fits in 'int'.
18025 Check that character arg fits in 'int'.
18026 (mapcar1): Declare byte as byte, for clarity.
18027
18028 * alloc.c (Fmake_bool_vector): Avoid unnecessary multiplication.
18029
18030 * fns.c (concat): Catch string overflow earlier.
18031 Do not rely on integer wraparound.
18032
18033 * dispextern.h (struct it.overlay_strings_charpos)
18034 (struct it.selective): Now EMACS_INT, not int.
18035 * xdisp.c (forward_to_next_line_start)
18036 (back_to_previous_visible_line_start)
18037 (reseat_at_next_visible_line_start, next_element_from_buffer):
18038 Don't arbitrarily truncate the value of 'selective' to int.
18039
18040 * xdisp.c (init_iterator): Use XINT, not XFASTINT; it might be < 0.
18041
18042 * composite.c: Don't truncate sizes to 'int'.
18043 (composition_gstring_p, composition_reseat_it)
18044 (composition_adjust_point): Use EMACS_INT, not int.
18045 (get_composition_id, composition_gstring_put_cache): Use EMACS_INT,
18046 not EMACS_UINT, for indexes.
18047
18048 * category.h (CATEGORY_SET_P): Remove unnecessary cast to EMACS_INT.
18049
18050 * buffer.c: Include <verify.h>.
18051 (struct sortvec.priority, struct sortstr.priority):
18052 Now EMACS_INT, not int.
18053 (compare_overlays, cmp_for_strings): Avoid subtraction overflow.
18054 (struct sortstr.size, record_overlay_string)
18055 (struct sortstrlist.size, struct sortlist.used):
18056 Don't truncate size to int.
18057 (record_overlay_string): Check for size-calculation overflow.
18058 (init_buffer_once): Check at compile-time, not run-time.
18059
18060 2011-06-22 Jim Meyering <meyering@redhat.com>
18061
18062 Don't leak an XBM-image-sized buffer
18063 * image.c (xbm_load): Free the image buffer after using it.
18064
18065 2011-06-21 Paul Eggert <eggert@cs.ucla.edu>
18066
18067 Port to Sun C.
18068 * composite.c (find_automatic_composition): Omit needless 'return 0;'
18069 that Sun C diagnosed.
18070 * fns.c (secure_hash): Fix pointer signedness issue.
18071 * intervals.c (static_offset_intervals): New function.
18072 (offset_intervals): Use it.
18073
18074 2011-06-21 Leo Liu <sdl.web@gmail.com>
18075
18076 * deps.mk (fns.o):
18077 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha256.h and
18078 sha512.h.
18079
18080 * fns.c (secure_hash): Rename from crypto_hash_function and change
18081 the first arg to accept symbols.
18082 (Fsecure_hash): New primitive.
18083 (syms_of_fns): New symbols.
18084
18085 2011-06-20 Deniz Dogan <deniz@dogan.se>
18086
18087 * process.c (Fset_process_buffer): Clarify return value in
18088 docstring.
18089
18090 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
18091
18092 * dispnew.c (add_window_display_history): Use BVAR.
18093
18094 * xdisp.c (debug_method_add): Use BVAR.
18095 (check_window_end, dump_glyph_matrix, dump_glyph)
18096 (dump_glyph_row, dump_glyph_string): Convert arglist to ANSI C.
18097
18098 * xfaces.c (check_lface_attrs, check_lface, dump_realized_face):
18099 Likewise.
18100
18101 * xfns.c (Fx_create_frame, x_create_tip_frame): Delay image cache
18102 check till after the cache is created in init_frame_faces.
18103
18104 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
18105
18106 * fns.c (Fsafe_length): Yet another int/Lisp_Object mixup.
18107
18108 2011-06-16 Paul Eggert <eggert@cs.ucla.edu>
18109
18110 * lisp.h: Include <limits.h>, for INT_MAX, LONG_MAX, LLONG_MAX.
18111 Without this, prin1 mishandles Lisp_Misc_Save_Value printing on
18112 hosts with pre-C99 libraries, because pD is wrongly defined to "t".
18113
18114 Improve buffer-overflow checking (Bug#8873).
18115 * fileio.c (Finsert_file_contents):
18116 * insdel.c (insert_from_buffer_1, replace_range, replace_range_2):
18117 Remove the old (too-loose) buffer overflow checks.
18118 They weren't needed, since make_gap checks for buffer overflow.
18119 * insdel.c (make_gap_larger): Catch buffer overflows that were missed.
18120 The old code merely checked for Emacs fixnum overflow, and relied
18121 on undefined (wraparound) behavior. The new code avoids undefined
18122 behavior, and also checks for ptrdiff_t and/or size_t overflow.
18123
18124 * editfns.c (Finsert_char): Don't dump core with very negative counts.
18125 Tune. Don't use wider integers than needed. Don't use alloca.
18126 Use a bigger 'string' buffer. Rewrite to avoid 'n > 0' test.
18127
18128 * insdel.c (replace_range): Fix buf overflow when insbytes < outgoing.
18129
18130 * insdel.c, lisp.h (buffer_overflow): New function.
18131 (insert_from_buffer_1, replace_range, replace_range_2):
18132 * insdel.c (make_gap_larger):
18133 * editfns.c (Finsert_char):
18134 * fileio.c (Finsert_file_contents): Use it, to normalize wording.
18135
18136 * buffer.h (BUF_BYTES_MAX): Cast to ptrdiff_t so that it's signed.
18137
18138 2011-06-15 Paul Eggert <eggert@cs.ucla.edu>
18139
18140 Integer overflow and signedness fixes (Bug#8873, Bug#8828).
18141
18142 * ccl.c (ASCENDING_ORDER): New macro, to work around GCC bug 43772.
18143 (GET_CCL_RANGE, IN_INT_RANGE): Use it.
18144
18145 * fileio.c: Don't assume EMACS_INT fits in off_t.
18146 (emacs_lseek): New static function.
18147 (Finsert_file_contents, Fwrite_region): Use it.
18148 Use SEEK_SET, SEEK_CUR, SEEK_END as appropriate.
18149
18150 * fns.c (Fload_average): Don't assume 100 * load average fits in int.
18151
18152 * fns.c: Don't overflow int when computing a list length.
18153 * fns.c (QUIT_COUNT_HEURISTIC): New constant.
18154 (Flength, Fsafe_length): Use EMACS_INT, not int, to avoid unwanted
18155 truncation on 64-bit hosts. Check for QUIT every
18156 QUIT_COUNT_HEURISTIC entries rather than every other entry; that's
18157 faster and is responsive enough.
18158 (Flength): Report an error instead of overflowing an integer.
18159 (Fsafe_length): Return a float if the value is not representable
18160 as a fixnum. This shouldn't happen except in contrived situations.
18161 (Fnthcdr, Fsort): Don't assume list length fits in int.
18162 (Fcopy_sequence): Don't assume vector length fits in int.
18163
18164 * alloc.c: Check that resized vectors' lengths fit in fixnums.
18165 (header_size, word_size): New constants.
18166 (allocate_vectorlike): Don't check size overflow here.
18167 (allocate_vector): Check it here instead, since this is the only
18168 caller of allocate_vectorlike that could cause overflow.
18169 Check that the new vector's length is representable as a fixnum.
18170
18171 * fns.c (next_almost_prime): Don't return a multiple of 3 or 5.
18172 The previous code was bogus. For example, next_almost_prime (32)
18173 returned 39, which is undesirable as it is a multiple of 3; and
18174 next_almost_prime (24) returned 25, which is a multiple of 5 so
18175 why was the code bothering to check for multiples of 7?
18176
18177 * bytecode.c (exec_byte_code): Use ptrdiff_t, not int, for vector length.
18178
18179 * eval.c, doprnt.c (SIZE_MAX): Remove; inttypes.h defines this now.
18180
18181 Variadic C functions now count arguments with ptrdiff_t.
18182 This partly undoes my 2011-03-30 change, which replaced int with size_t.
18183 Back then I didn't know that the Emacs coding style prefers signed int.
18184 Also, in the meantime I found a few more instances where arguments
18185 were being counted with int, which may truncate counts on 64-bit
18186 machines, or EMACS_INT, which may be unnecessarily wide.
18187 * lisp.h (struct Lisp_Subr.function.aMANY)
18188 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call):
18189 Arg counts are now ptrdiff_t, not size_t.
18190 All variadic functions and their callers changed accordingly.
18191 (struct gcpro.nvars): Now size_t, not size_t. All uses changed.
18192 * bytecode.c (exec_byte_code): Check maxdepth for overflow,
18193 to avoid potential buffer overrun. Don't assume arg counts fit in 'int'.
18194 * callint.c (Fcall_interactively): Check arg count for overflow,
18195 to avoid potential buffer overrun. Use signed char, not 'int',
18196 for 'varies' array, so that we needn't bother to check its size
18197 calculation for overflow.
18198 * editfns.c (Fformat): Use ptrdiff_t, not EMACS_INT, to count args.
18199 * eval.c (apply_lambda):
18200 * fns.c (Fmapconcat): Use XFASTINT, not XINT, to get args length.
18201 (struct textprop_rec.argnum): Now ptrdiff_t, not int. All uses changed.
18202 (mapconcat): Use ptrdiff_t, not int and EMACS_INT, to count args.
18203
18204 * callint.c (Fcall_interactively): Don't use index var as event count.
18205
18206 * vm-limit.c (check_memory_limits): Fix incorrect extern function decls.
18207 * mem-limits.h (SIZE): Remove; no longer used.
18208
18209 * xterm.c (x_alloc_nearest_color_1): Prefer int to long when int works.
18210
18211 Remove unnecessary casts.
18212 * xterm.c (x_term_init):
18213 * xfns.c (x_set_border_pixel):
18214 * widget.c (create_frame_gcs): Remove casts to unsigned long etc.
18215 These aren't needed now that we assume ANSI C.
18216
18217 * sound.c (Fplay_sound_internal): Remove cast to unsigned long.
18218 It's more likely to cause problems (due to unsigned overflow)
18219 than to cure them.
18220
18221 * dired.c (Ffile_attributes): Don't use 32-bit hack on 64-bit hosts.
18222
18223 * unexelf.c (unexec): Don't assume BSS addr fits in unsigned.
18224
18225 * xterm.c (handle_one_xevent): Omit unnecessary casts to unsigned.
18226
18227 * keyboard.c (modify_event_symbol): Don't limit alist len to UINT_MAX.
18228
18229 * lisp.h (CHAR_TABLE_SET): Omit now-redundant test.
18230
18231 * lread.c (Fload): Don't compare a possibly-garbage time_t value.
18232
18233 GLYPH_CODE_FACE returns EMACS_INT, not int.
18234 * dispextern.h (merge_faces):
18235 * xfaces.c (merge_faces):
18236 * xdisp.c (get_next_display_element, next_element_from_display_vector):
18237 Don't assume EMACS_INT fits in int.
18238
18239 * character.h (CHAR_VALID_P): Remove unused parameter.
18240 * fontset.c, lisp.h, xdisp.c: All uses changed.
18241
18242 * editfns.c (Ftranslate_region_internal): Omit redundant test.
18243
18244 * fns.c (concat): Minor tuning based on overflow analysis.
18245 This doesn't fix any bugs. Use int to hold character, instead
18246 of constantly refetching from Emacs object. Use XFASTINT, not
18247 XINT, for value known to be a character. Don't bother comparing
18248 a single byte to 0400, as it's always less.
18249
18250 * floatfns.c (Fexpt):
18251 * fileio.c (make_temp_name): Omit unnecessary cast to unsigned.
18252
18253 * editfns.c (Ftranslate_region_internal): Use int, not EMACS_INT
18254 for characters.
18255
18256 * doc.c (get_doc_string): Omit (unsigned)c that mishandled negatives.
18257
18258 * data.c (Faset): If ARRAY is a string, check that NEWELT is a char.
18259 Without this fix, on a 64-bit host (aset S 0 4294967386) would
18260 incorrectly succeed when S was a string, because 4294967386 was
18261 truncated before it was used.
18262
18263 * chartab.c (Fchar_table_range): Use CHARACTERP to check range.
18264 Otherwise, an out-of-range integer could cause undefined behavior
18265 on a 64-bit host.
18266
18267 * composite.c: Use int, not EMACS_INT, for characters.
18268 (fill_gstring_body, composition_compute_stop_pos): Use int, not
18269 EMACS_INT, for values that are known to be in character range.
18270 This doesn't fix any bugs but is the usual style inside Emacs and
18271 may generate better code on 32-bit machines.
18272
18273 Make sure a 64-bit char is never passed to ENCODE_CHAR.
18274 This is for reasons similar to the recent CHAR_STRING fix.
18275 * charset.c (Fencode_char): Check that character arg is actually
18276 a character. Pass an int to ENCODE_CHAR.
18277 * charset.h (ENCODE_CHAR): Verify that the character argument is no
18278 wider than 'int', as a compile-time check to prevent future regressions
18279 in this area.
18280
18281 * character.c (char_string): Remove unnecessary casts.
18282
18283 Make sure a 64-bit char is never passed to CHAR_STRING.
18284 Otherwise, CHAR_STRING would do the wrong thing on a 64-bit platform,
18285 by silently ignoring the top 32 bits, allowing some values
18286 that were far too large to be valid characters.
18287 * character.h: Include <verify.h>.
18288 (CHAR_STRING, CHAR_STRING_ADVANCE): Verify that the character
18289 arguments are no wider than unsigned, as a compile-time check
18290 to prevent future regressions in this area.
18291 * data.c (Faset):
18292 * editfns.c (Fchar_to_string, general_insert_function, Finsert_char)
18293 (Fsubst_char_in_region):
18294 * fns.c (concat):
18295 * xdisp.c (decode_mode_spec_coding):
18296 Adjust to CHAR_STRING's new requirement.
18297 * editfns.c (Finsert_char, Fsubst_char_in_region):
18298 * fns.c (concat): Check that character args are actually
18299 characters. Without this test, these functions did the wrong
18300 thing with wildly out-of-range values on 64-bit hosts.
18301
18302 Remove incorrect casts to 'unsigned' that lose info on 64-bit hosts.
18303 These casts should not be needed on 32-bit hosts, either.
18304 * keyboard.c (read_char):
18305 * lread.c (Fload): Remove casts to unsigned.
18306
18307 * lisp.h (UNSIGNED_CMP): New macro.
18308 This fixes comparison bugs on 64-bit hosts.
18309 (ASCII_CHAR_P): Use it.
18310 * casefiddle.c (casify_object):
18311 * character.h (ASCII_BYTE_P, CHAR_VALID_P)
18312 (SINGLE_BYTE_CHAR_P, CHAR_STRING):
18313 * composite.h (COMPOSITION_ENCODE_RULE_VALID):
18314 * dispextern.h (FACE_FROM_ID):
18315 * keyboard.c (read_char): Use UNSIGNED_CMP.
18316
18317 * xmenu.c (dialog_selection_callback) [!USE_GTK]: Cast to intptr_t,
18318 not to EMACS_INT, to avoid GCC warning.
18319
18320 * xfns.c (x_set_scroll_bar_default_width): Remove unused 'int' locals.
18321
18322 * buffer.h (PTR_BYTE_POS, BUF_PTR_BYTE_POS): Remove harmful cast.
18323 The cast incorrectly truncated 64-bit byte offsets to 32 bits, and
18324 isn't needed on 32-bit machines.
18325
18326 * buffer.c (Fgenerate_new_buffer_name):
18327 Use EMACS_INT for count, not int.
18328 (advance_to_char_boundary): Return EMACS_INT, not int.
18329
18330 * data.c (Qcompiled_function): Now static.
18331
18332 * window.c (window_body_lines): Now static.
18333
18334 * image.c (gif_load): Rename local to avoid shadowing.
18335
18336 * lisp.h (SAFE_ALLOCA_LISP): Check for integer overflow.
18337 (struct Lisp_Save_Value): Use ptrdiff_t, not int, for 'integer' member.
18338 * alloc.c (make_save_value): Integer argument is now of type
18339 ptrdiff_t, not int.
18340 (mark_object): Use ptrdiff_t, not int.
18341 * lisp.h (pD): New macro.
18342 * print.c (print_object): Use it.
18343
18344 * alloc.c: Use EMACS_INT, not int, to count objects.
18345 (total_conses, total_markers, total_symbols, total_vector_size)
18346 (total_free_conses, total_free_markers, total_free_symbols)
18347 (total_free_floats, total_floats, total_free_intervals)
18348 (total_intervals, total_strings, total_free_strings):
18349 Now EMACS_INT, not int. All uses changed.
18350 (Fgarbage_collect): Compute overall total using a double, so that
18351 integer overflow is less likely to be a problem. Check for overflow
18352 when converting back to an integer.
18353 (n_interval_blocks, n_string_blocks, n_float_blocks, n_cons_blocks)
18354 (n_vectors, n_symbol_blocks, n_marker_blocks): Remove.
18355 These were 'int' variables that could overflow on 64-bit hosts;
18356 they were never used, so remove them instead of repairing them.
18357 (nzombies, ngcs, max_live, max_zombies): Now EMACS_INT, not 'int'.
18358 (inhibit_garbage_collection): Set gc_cons_threshold to max value.
18359 Previously, this ceilinged at INT_MAX, but that doesn't work on
18360 64-bit machines.
18361 (allocate_pseudovector): Don't use EMACS_INT when int would do.
18362
18363 * alloc.c (Fmake_bool_vector): Don't assume vector size fits in int.
18364 (allocate_vectorlike): Check for ptrdiff_t overflow.
18365 (mark_vectorlike, mark_char_table, mark_object): Avoid EMACS_UINT
18366 when a (possibly-narrower) signed value would do just as well.
18367 We prefer using signed arithmetic, to avoid comparison confusion.
18368
18369 * alloc.c: Catch some string size overflows that we were missing.
18370 (XMALLOC_OVERRUN_CHECK_SIZE) [!XMALLOC_OVERRUN_CHECK]: Define to 0,
18371 for convenience in STRING_BYTES_MAX.
18372 (STRING_BYTES_MAX): New macro, superseding the old one in lisp.h.
18373 The definition here is exact; the one in lisp.h was approximate.
18374 (allocate_string_data): Check for string overflow. This catches
18375 some instances we weren't catching before. Also, it catches
18376 size_t overflow on (unusual) hosts where SIZE_MAX <= min
18377 (PTRDIFF_MAX, MOST_POSITIVE_FIXNUM), e.g., when size_t is 32 bits
18378 and ptrdiff_t and EMACS_INT are both 64 bits.
18379
18380 * character.c, coding.c, doprnt.c, editfns.c, eval.c:
18381 All uses of STRING_BYTES_MAX replaced by STRING_BYTES_BOUND.
18382 * lisp.h (STRING_BYTES_BOUND): Rename from STRING_BYTES_MAX.
18383
18384 * character.c (string_escape_byte8): Fix nbytes/nchars typo.
18385
18386 * alloc.c (Fmake_string): Check for out-of-range init.
18387
18388 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
18389
18390 * eval.c (Fdefvaralias): Also mark the target as variable-special-p.
18391
18392 2011-06-14 Jan Djärv <jan.h.d@swipnet.se>
18393
18394 * xfns.c (x_set_scroll_bar_default_width): Remove argument to
18395 xg_get_default_scrollbar_width.
18396
18397 * gtkutil.c: Include emacsgtkfixed.h if HAVE_GTK3.
18398 (int_gtk_range_get_value): Move to the scroll bar part of the file.
18399 (style_changed_cb): Call update_theme_scrollbar_width and call
18400 x_set_scroll_bar_default_width and xg_frame_set_char_size for
18401 all frames (Bug#8505).
18402 (xg_create_frame_widgets): Call emacs_fixed_new if HAVE_GTK3 (Bug#8505).
18403 Call gtk_window_set_resizable if HAVE_GTK3.
18404 (x_wm_set_size_hint): Call emacs_fixed_set_min_size with min width
18405 and height if HAVE_GTK3 (Bug#8505).
18406 (scroll_bar_width_for_theme): New variable.
18407 (update_theme_scrollbar_width): New function.
18408 (xg_get_default_scrollbar_width): Move code to
18409 update_theme_scrollbar_width, just return scroll_bar_width_for_theme.
18410 (xg_initialize): Call update_theme_scrollbar_width.
18411
18412 * gtkutil.h (xg_get_default_scrollbar_width): Remove argument.
18413
18414 * emacsgtkfixed.c, emacsgtkfixed.h: New files.
18415
18416 2011-06-12 Martin Rudalics <rudalics@gmx.at>
18417
18418 * frame.c (make_frame): Call other_buffer_safely instead of
18419 other_buffer.
18420
18421 * window.c (temp_output_buffer_show): Call display_buffer with
18422 second argument Vtemp_buffer_show_specifiers and reset latter
18423 immediately after the call.
18424 (Vtemp_buffer_show_specifiers): New variable.
18425 (auto_window_vscroll_p, next_screen_context_lines)
18426 (Vscroll_preserve_screen_position): Remove leading asterisks from
18427 doc-strings.
18428
18429 2011-06-12 Paul Eggert <eggert@cs.ucla.edu>
18430
18431 Fix minor problems found by GCC 4.6.0 static checking.
18432 * buffer.c (Qclone_number): Remove for now, as it's unused.
18433 (record_buffer, Funrecord_buffer): Rename local to avoid shadowing.
18434 (record_buffer): Remove unused local.
18435 * frame.c (other_visible_frames, frame_buffer_list): Now static.
18436 (set_frame_buffer_list): Remove; unused.
18437 * frame.h (other_visible_frames): Remove decl.
18438 * keyboard.h (menu_items_inuse): Declare only if USE_GTK || USE_MOTIF.
18439 * lisp.h (frame_buffer_list, set_frame_buffer_list): Remove decls.
18440 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor): Declare only
18441 if HAVE_GPM.
18442 * menu.c (menu_items_inuse): Now static unless USE_GTK || USE_MOTIF.
18443 * process.c (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
18444 Define only if HAVE_GPM.
18445 * widget.c (EmacsFrameResize, emacsFrameClassRec): Now static.
18446 (update_hints_inhibit): Remove; never set. All uses removed.
18447 * widgetprv.h (emacsFrameClassRec): Remove decl.
18448 * window.c (delete_deletable_window): Now returns void, since it
18449 wasn't returning anything.
18450 (compare_window_configurations): Remove unused locals.
18451 * xfns.c (x_set_scroll_bar_default_width): Remove unused locals.
18452 * xmenu.c (x_menu_set_in_use): Define only if USE_GTK || USE_MOTIF.
18453 (dialog_selection_callback) [!USE_GTK]: Prefer intptr_t for integers
18454 the same widths as pointers. This follows up on the 2011-05-06 patch.
18455 * xterm.c (x_alloc_lighter_color_for_widget): Define only if USE_LUCID.
18456 * xterm.h: Likewise.
18457 (x_menu_set_in_use): Declare only if USE_GTK || USE_MOTIF.
18458
18459 2011-06-12 Juanma Barranquero <lekktu@gmail.com>
18460
18461 * makefile.w32-in: Update dependencies.
18462 (LISP_H): Add lib/intprops.h.
18463
18464 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
18465
18466 * image.c (gif_load): Add animation frame delay to the metadata.
18467 (syms_of_image): Use DEFSYM. New symbol `delay'.
18468
18469 2011-06-11 Martin Rudalics <rudalics@gmx.at>
18470
18471 * window.c (delete_deletable_window): Re-add.
18472 (Fset_window_configuration): Rewrite to handle dead buffers and
18473 consequently deletable windows.
18474 (window_tree, Fwindow_tree): Remove. Supply functionality in
18475 window.el.
18476 (compare_window_configurations): Simplify code.
18477
18478 2011-06-11 Andreas Schwab <schwab@linux-m68k.org>
18479
18480 * image.c (imagemagick_load_image): Fix type mismatch.
18481 (Fimagemagick_types): Likewise.
18482
18483 * window.h (replace_buffer_in_windows): Declare.
18484
18485 2011-06-11 Martin Rudalics <rudalics@gmx.at>
18486
18487 * buffer.c: New Lisp objects Qbuffer_list_update_hook and
18488 Qclone_number. Remove external declaration of Qdelete_window.
18489 (Fbuffer_list): Rewrite doc-string. Minor restructuring of
18490 code.
18491 (Fget_buffer_create, Fmake_indirect_buffer, Frename_buffer):
18492 Run Qbuffer_list_update_hook if allowed.
18493 (Fother_buffer): Rewrite doc-string. Major rewrite for new
18494 buffer list implementation.
18495 (other_buffer_safely): New function.
18496 (Fkill_buffer): Replace call to replace_buffer_in_all_windows by
18497 calls to replace_buffer_in_windows and
18498 replace_buffer_in_windows_safely. Run Qbuffer_list_update_hook
18499 if allowed.
18500 (record_buffer): Inhibit quitting and rewrite using quittable
18501 functions. Run Qbuffer_list_update_hook if allowed.
18502 (Frecord_buffer, Funrecord_buffer): New functions.
18503 (switch_to_buffer_1, Fswitch_to_buffer): Remove.
18504 Move switch-to-buffer to window.el.
18505 (bury-buffer): Move to window.el.
18506 (Vbuffer_list_update_hook): New variable.
18507
18508 * lisp.h (other_buffer_safely): Add prototype in buffer.c
18509 section.
18510
18511 * window.h (resize_frame_windows): Move up in code.
18512 (Fwindow_frame): Remove EXFUN.
18513 (replace_buffer_in_all_windows): Remove prototype.
18514 (replace_buffer_in_windows_safely): Add prototype.
18515
18516 * window.c: Declare Qdelete_window static again. Move down
18517 declaration of select_count.
18518 (Fnext_window, Fprevious_window): Rewrite doc-strings.
18519 (Fother_window): Move to window.el.
18520 (window_loop): Remove DELETE_BUFFER_WINDOWS and UNSHOW_BUFFER
18521 cases. Add REPLACE_BUFFER_IN_WINDOWS_SAFELY case.
18522 (Fdelete_windows_on, Freplace_buffer_in_windows): Move to
18523 window.el.
18524 (replace_buffer_in_windows): Implement by calling
18525 Qreplace_buffer_in_windows.
18526 (replace_buffer_in_all_windows): Remove with some functionality
18527 moved into replace_buffer_in_windows_safely.
18528 (replace_buffer_in_windows_safely): New function.
18529 (select_window_norecord, select_frame_norecord): Move in front
18530 of run_window_configuration_change_hook. Remove now obsolete
18531 declarations.
18532 (Fset_window_buffer): Rewrite doc-string.
18533 Call Qrecord_window_buffer.
18534 (keys_of_window): Move binding for other-window to window.el.
18535
18536 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
18537
18538 * dispextern.h (struct image): Replace data member, whose int_val
18539 and ptr_val fields were not used by anything, with a single
18540 lisp_val object.
18541
18542 * image.c (Fimage_metadata, make_image, mark_image, tiff_load)
18543 (gif_clear_image, gif_load, imagemagick_load_image)
18544 (gs_clear_image, gs_load): Callers changed.
18545
18546 2011-06-10 Paul Eggert <eggert@cs.ucla.edu>
18547
18548 * buffer.h: Include <time.h>, for time_t.
18549 Needed to build on FreeBSD 8.2. Problem reported by Herbert J. Skuhra.
18550
18551 Fix minor problems found by static checking.
18552
18553 * image.c (PixelGetMagickColor): Declare if ImageMagick headers don't.
18554
18555 Make identifiers static if they are not used in other modules.
18556 * data.c (Qcompiled_function, Qframe, Qvector):
18557 * image.c (QimageMagick, Qsvg):
18558 * minibuf.c (Qmetadata):
18559 * window.c (resize_window_check, resize_root_window): Now static.
18560 * window.h (resize_window_check, resize_root_window): Remove decls.
18561
18562 * window.c (window_deletion_count, delete_deletable_window):
18563 Remove; unused.
18564 (window_body_lines): Now static.
18565 (Fdelete_other_windows_internal): Mark vars as initialized.
18566 Make sure 'resize_failed' is initialized.
18567 (run_window_configuration_change_hook): Rename local to avoid shadowing.
18568 (resize_window_apply): Remove unused local.
18569 * window.h (delete_deletable_window): Remove decl.
18570
18571 * image.c (gif_load, svg_load_image): Rename locals to avoid shadowing.
18572 (imagemagick_load_image): Fix pointer signedness problem by changing
18573 last arg from unsigned char * to char *. All uses changed.
18574 Also, fix a local for similar reasons.
18575 Remove unused locals. Remove locals to avoid shadowing.
18576 (fn_rsvg_handle_free): Remove; unused.
18577 (svg_load, svg_load_image): Fix pointer signedness problem.
18578 (imagemagick_load_image): Don't use garbage pointer image_wand.
18579
18580 * ftfont.c (ftfont_get_metrics, ftfont_drive_otf): Remove unused locals.
18581
18582 2011-06-10 Chong Yidong <cyd@stupidchicken.com>
18583
18584 * image.c (gif_load): Fix omitted cast error introduced by
18585 2011-06-06 change.
18586
18587 2011-06-10 Martin Rudalics <rudalics@gmx.at>
18588
18589 * window.h (resize_proportionally, orig_total_lines)
18590 (orig_top_line): Remove from window structure.
18591 (set_window_height, set_window_width, change_window_heights)
18592 (Fdelete_window): Remove prototypes.
18593 (resize_frame_windows): Remove duplicate declaration.
18594
18595 2011-06-10 Eli Zaretskii <eliz@gnu.org>
18596
18597 * window.h (resize_frame_windows, resize_window_check)
18598 (delete_deletable_window, resize_root_window)
18599 (resize_frame_windows): Declare prototypes.
18600
18601 * window.c (resize_window_apply): Make definition be "static" to
18602 match the prototype.
18603
18604 2011-06-10 Martin Rudalics <rudalics@gmx.at>
18605
18606 * window.c: Remove declarations of Qwindow_size_fixed,
18607 window_min_size_1, window_min_size_2, window_min_size,
18608 size_window, window_fixed_size_p, enlarge_window, delete_window.
18609 Remove static from declaration of Qdelete_window, it's
18610 temporarily needed by Fbury_buffer.
18611 (replace_window): Don't assign orig_top_line and
18612 orig_total_lines.
18613 (Fdelete_window, delete_window): Remove. Window deletion is
18614 handled by window.el.
18615 (window_loop): Remove DELETE_OTHER_WINDOWS case.
18616 Replace Fdelete_window calls with calls to Qdelete_window.
18617 (Fdelete_other_windows): Remove. Deleting other windows is
18618 handled by window.el.
18619 (window_fixed_size_p): Remove. Fixed-sizeness of windows is
18620 handled in window.el.
18621 (window_min_size_2, window_min_size_1, window_min_size): Remove.
18622 Window minimum sizes are handled in window.el.
18623 (shrink_windows, size_window, set_window_height)
18624 (set_window_width, change_window_heights, window_height)
18625 (window_width, CURBEG, CURSIZE, enlarge_window)
18626 (adjust_window_trailing_edge, Fadjust_window_trailing_edge)
18627 (Fenlarge_window, Fshrink_window): Remove. Window resizing is
18628 handled in window.el.
18629 (make_dummy_parent): Rename to make_parent_window and give it a
18630 second argument horflag.
18631 (make_window): Don't set resize_proportionally any more.
18632 (Fsplit_window): Remove. Windows are split in window.el.
18633 (save_restore_action, save_restore_orig_size)
18634 (shrink_window_lowest_first, save_restore_orig_size): Remove.
18635 Resize mini windows in window.el.
18636 (grow_mini_window, shrink_mini_window): Implement by calling
18637 Qresize_root_window_vertically, resize_window_check and
18638 resize_window_apply.
18639 (saved_window, Fset_window_configuration, save_window_save):
18640 Do not handle orig_top_line, orig_total_lines, and
18641 resize_proportionally.
18642 (window_min_height, window_min_width): Move to window.el.
18643 (keys_of_window): Move bindings for delete-other-windows,
18644 split-window, delete-window and enlarge-window to window.el.
18645
18646 * buffer.c: Temporarily extern Qdelete_window.
18647 (Fbury_buffer): Temporarily call Qdelete_window instead of
18648 Fdelete_window (Fbury_buffer will move to window.el soon).
18649
18650 * frame.c (set_menu_bar_lines_1): Remove code handling
18651 orig_top_line and orig_total_lines.
18652
18653 * dispnew.c (adjust_frame_glyphs_initially): Don't use
18654 set_window_height but set heights directly.
18655 (change_frame_size_1): Use resize_frame_windows.
18656
18657 * xdisp.c (init_xdisp): Don't use set_window_height but set
18658 heights directly.
18659
18660 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines):
18661 Use resize_frame_windows instead of change_window_heights and run
18662 run_window_configuration_change_hook.
18663
18664 * w32fns.c (x_set_tool_bar_lines): Use resize_frame_windows
18665 instead of change_window_heights and run
18666 run_window_configuration_change_hook.
18667
18668 2011-06-09 Martin Rudalics <rudalics@gmx.at>
18669
18670 * window.c (replace_window): Rename second argument REPLACEMENT to
18671 NEW. New third argument SETFLAG. Rewrite.
18672 (delete_window, make_dummy_parent): Call replace_window with
18673 third argument 1.
18674 (window_list_1): Move down in code.
18675 (run_window_configuration_change_hook): Move set_buffer part
18676 before select_frame_norecord part in order to unwind correctly.
18677 Rename count1 to count.
18678 (recombine_windows, delete_deletable_window, resize_root_window)
18679 (Fdelete_other_windows_internal)
18680 (Frun_window_configuration_change_hook, make_parent_window)
18681 (resize_window_check, resize_window_apply, Fresize_window_apply)
18682 (resize_frame_windows, Fsplit_window_internal)
18683 (Fdelete_window_internal, Fresize_mini_window_internal):
18684 New functions.
18685 (syms_of_window): New variables Vwindow_splits and Vwindow_nest.
18686
18687 2011-06-08 Martin Rudalics <rudalics@gmx.at>
18688
18689 * window.h (window): Add some new members to window structure -
18690 normal_lines, normal_cols, new_total, new_normal, clone_number,
18691 splits, nest, prev_buffers, next_buffers.
18692 (WINDOW_TOTAL_SIZE): Move here from window.c.
18693 (MIN_SAFE_WINDOW_WIDTH, MIN_SAFE_WINDOW_HEIGHT): Define here.
18694
18695 * window.c (Fwindow_height, Fwindow_width, Fwindow_full_width_p):
18696 Remove.
18697 (make_dummy_parent): Set new members of windows structure.
18698 (make_window): Move down in code. Handle new members of window
18699 structure.
18700 (Fwindow_clone_number, Fwindow_splits, Fset_window_splits)
18701 (Fwindow_nest, Fset_window_nest, Fwindow_new_total)
18702 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_prev_buffers)
18703 (Fset_window_prev_buffers, Fwindow_next_buffers)
18704 (Fset_window_next_buffers, Fset_window_clone_number):
18705 New functions.
18706 (Fwindow_hscroll, Fwindow_at, Fwindow_point, Fwindow_start)
18707 (Fwindow_end, Fwindow_line_height, Fset_window_dedicated_p):
18708 Doc-string fixes.
18709 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter):
18710 Argument WINDOW can be now internal window too.
18711 (Fwindow_use_time): Move up in code.
18712 (Fget_buffer_window): Rename argument FRAME to ALL-FRAMES.
18713 Rewrite doc-string.
18714 (Fset_window_configuration, saved_window)
18715 (Fcurrent_window_configuration, save_window_save): Handle new
18716 members of window structure.
18717 (WINDOW_TOTAL_SIZE, MIN_SAFE_WINDOW_WIDTH)
18718 (MIN_SAFE_WINDOW_HEIGHT): Move to window.h.
18719 (syms_of_window): New Lisp objects Qrecord_window_buffer,
18720 Qwindow_deletable_p, Qdelete_window, Qreplace_buffer_in_windows,
18721 Qget_mru_window, Qresize_root_window,
18722 Qresize_root_window_vertically, Qsafe, Qabove, Qbelow,
18723 Qauto_buffer_name; staticpro them.
18724
18725 2011-06-07 Martin Rudalics <rudalics@gmx.at>
18726
18727 * window.c (Fwindow_total_size, Fwindow_left_column)
18728 (Fwindow_top_line, window_body_lines, Fwindow_body_size)
18729 (Fwindow_list_1): New functions.
18730 (window_box_text_cols): Replace with window_body_cols.
18731 (Fwindow_width, Fscroll_left, Fscroll_right):
18732 Use window_body_cols instead of window_box_text_cols.
18733 (delete_window, Fset_window_configuration):
18734 Call delete_all_subwindows with window as argument.
18735 (delete_all_subwindows): Take a window as argument and not a
18736 structure. Rewrite.
18737 (window_loop): Remove handling of GET_LRU_WINDOW and
18738 GET_LARGEST_WINDOW.
18739 (Fget_lru_window, Fget_largest_window): Move to window.el.
18740
18741 * window.h: Extern window_body_cols instead of
18742 window_box_text_cols. delete_all_subwindows now takes a
18743 Lisp_Object as argument.
18744
18745 * indent.c (compute_motion, Fcompute_motion):
18746 Use window_body_cols instead of window_box_text_cols.
18747
18748 * frame.c (delete_frame): Call delete_all_subwindows with root
18749 window as argument.
18750
18751 2011-06-07 Daniel Colascione <dan.colascione@gmail.com>
18752
18753 * fns.c (Fputhash): Document return value.
18754
18755 2011-06-06 Chong Yidong <cyd@stupidchicken.com>
18756
18757 * image.c (gif_load): Implement gif89a spec "no disposal" method.
18758
18759 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
18760
18761 Cons<->int and similar integer overflow fixes (Bug#8794).
18762
18763 Check for overflow when converting integer to cons and back.
18764 * charset.c (Fdefine_charset_internal, Fdecode_char):
18765 Use cons_to_unsigned to catch overflow.
18766 (Fencode_char): Use INTEGER_TO_CONS.
18767 * composite.h (LGLYPH_CODE): Use cons_to_unsigned.
18768 (LGLYPH_SET_CODE): Use INTEGER_TO_CONS.
18769 * data.c (long_to_cons, cons_to_long): Remove.
18770 (cons_to_unsigned, cons_to_signed): New functions.
18771 These signal an error for invalid or out-of-range values.
18772 * dired.c (Ffile_attributes): Use INTEGER_TO_CONS.
18773 * fileio.c (Fset_visited_file_modtime): Use CONS_TO_INTEGER.
18774 * font.c (Ffont_variation_glyphs):
18775 * fontset.c (Finternal_char_font): Use INTEGER_TO_CONS.
18776 * lisp.h: Include <intprops.h>.
18777 (INTEGER_TO_CONS, CONS_TO_INTEGER): New macros.
18778 (cons_to_signed, cons_to_unsigned): New decls.
18779 (long_to_cons, cons_to_long): Remove decls.
18780 * undo.c (record_first_change): Use INTEGER_TO_CONS.
18781 (Fprimitive_undo): Use CONS_TO_INTEGER.
18782 * xfns.c (Fx_window_property): Likewise.
18783 * xselect.c: Include <limits.h>.
18784 (x_own_selection, selection_data_to_lisp_data):
18785 Use INTEGER_TO_CONS.
18786 (x_handle_selection_request, x_handle_selection_clear)
18787 (x_get_foreign_selection, Fx_disown_selection_internal)
18788 (Fx_get_atom_name, x_send_client_event): Use CONS_TO_INTEGER.
18789 (lisp_data_to_selection_data): Use cons_to_unsigned.
18790 (x_fill_property_data): Use cons_to_signed.
18791 Report values out of range.
18792
18793 Check for buffer and string overflow more precisely.
18794 * buffer.h (BUF_BYTES_MAX): New macro.
18795 * lisp.h (STRING_BYTES_MAX): New macro.
18796 * alloc.c (Fmake_string):
18797 * character.c (string_escape_byte8):
18798 * coding.c (coding_alloc_by_realloc):
18799 * doprnt.c (doprnt):
18800 * editfns.c (Fformat):
18801 * eval.c (verror):
18802 Use STRING_BYTES_MAX, not MOST_POSITIVE_FIXNUM,
18803 since they may not be the same number.
18804 * editfns.c (Finsert_char):
18805 * fileio.c (Finsert_file_contents):
18806 Likewise for BUF_BYTES_MAX.
18807
18808 * image.c: Use ptrdiff_t, not int, for sizes.
18809 (slurp_file): Switch from int to ptrdiff_t.
18810 All uses changed.
18811 (slurp_file): Check that file size fits in both size_t (for
18812 malloc) and ptrdiff_t (for sanity and safety).
18813
18814 * fileio.c (Fverify_visited_file_modtime): Avoid time overflow
18815 if b->modtime has its maximal value.
18816
18817 * dired.c (Ffile_attributes): Don't assume EMACS_INT has >32 bits.
18818
18819 Don't assume time_t can fit into int.
18820 * buffer.h (struct buffer.modtime): Now time_t, not int.
18821 * fileio.c (Fvisited_file_modtime): No need for time_t cast now.
18822 * undo.c (Fprimitive_undo): Use time_t, not int, for time_t value.
18823
18824 Minor fixes for signed vs unsigned integers.
18825 * character.h (MAYBE_UNIFY_CHAR):
18826 * charset.c (maybe_unify_char):
18827 * keyboard.c (read_char, reorder_modifiers):
18828 XINT -> XFASTINT, since the integer must be nonnegative.
18829 * ftfont.c (ftfont_spec_pattern):
18830 * keymap.c (access_keymap, silly_event_symbol_error):
18831 XUINT -> XFASTINT, since the integer must be nonnegative.
18832 (Fsingle_key_description, preferred_sequence_p): XUINT -> XINT,
18833 since it makes no difference and we prefer signed.
18834 * keyboard.c (record_char): Use XUINT when all the neighbors do.
18835 (access_keymap): NATNUMP -> INTEGERP, since the integer must be
18836 nonnegative.
18837
18838 2011-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
18839
18840 * window.h (Fwindow_frame): Declare.
18841
18842 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
18843
18844 * alloc.c: Simplify handling of large-request failures (Bug#8800).
18845 (SPARE_MEMORY): Always define.
18846 (LARGE_REQUEST): Remove.
18847 (memory_full): Use SPARE_MEMORY rather than LARGE_REQUEST.
18848
18849 2011-06-06 Martin Rudalics <rudalics@gmx.at>
18850
18851 * lisp.h: Move EXFUNS for Fframe_root_window,
18852 Fframe_first_window and Fset_frame_selected_window to window.h.
18853
18854 * window.h: Move EXFUNS for Fframe_root_window,
18855 Fframe_first_window and Fset_frame_selected_window here from
18856 lisp.h.
18857
18858 * frame.c (Fwindow_frame, Fframe_first_window)
18859 (Fframe_root_window, Fframe_selected_window)
18860 (Fset_frame_selected_window): Move to window.c.
18861 (Factive_minibuffer_window): Move to minibuf.c.
18862 (Fother_visible_frames_p): New function.
18863
18864 * minibuf.c (Factive_minibuffer_window): Move here from frame.c.
18865
18866 * window.c (decode_window, decode_any_window): Move up in code.
18867 (Fwindowp, Fwindow_live_p): Rewrite doc-strings.
18868 (inhibit_frame_unsplittable): Remove unused variable.
18869 (Fwindow_buffer): Move up and rewrite doc-string.
18870 (Fwindow_parent, Fwindow_vchild, Fwindow_hchild, Fwindow_next)
18871 (Fwindow_prev): New functions.
18872 (Fwindow_frame): Move here from frame.c. Accept any window as
18873 argument.
18874 (Fframe_root_window, Fframe_first_window)
18875 (Fframe_selected_window): Move here from frame.c. Accept frame
18876 or arbitrary window as argument. Update doc-strings.
18877 (Fminibuffer_window): Move up in code.
18878 (Fwindow_minibuffer_p): Move up in code and simplify.
18879 (Fset_frame_selected_window): Move here from frame.c.
18880 Marginal rewrite.
18881 (Fselected_window, select_window, Fselect_window): Move up in
18882 code. Minor doc-string fixes.
18883
18884 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
18885
18886 * alloc.c (memory_full) [SYSTEM_MALLOC]: Port to MacOS (Bug#8800).
18887 Do not assume that spare memory exists; that assumption is valid
18888 only if SYSTEM_MALLOC.
18889 (LARGE_REQUEST): New macro, so that the issue of large requests
18890 is separated from the issue of spare memory.
18891
18892 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
18893
18894 * editfns.c (Fformat): Correctly handle zero flag with hexadecimal
18895 format. (Bug#8806)
18896
18897 * gtkutil.c (xg_get_default_scrollbar_width): Avoid warning.
18898
18899 * xfns.c (x_set_scroll_bar_default_width): Move declarations
18900 before statements.
18901
18902 2011-06-05 Jan Djärv <jan.h.d@swipnet.se>
18903
18904 * gtkutil.c (xg_get_default_scrollbar_width): New function.
18905
18906 * gtkutil.h: Declare xg_get_default_scrollbar_width.
18907
18908 * xfns.c (x_set_scroll_bar_default_width): If USE_GTK, get
18909 min width by calling x_set_scroll_bar_default_width (Bug#8505).
18910
18911 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
18912
18913 * xdisp.c (single_display_spec_intangible_p): Remove declaration.
18914
18915 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
18916
18917 * xselect.c (x_clipboard_manager_save): Remove redundant arg.
18918 (x_clipboard_manager_save): Add return value.
18919 (x_clipboard_manager_error_1, x_clipboard_manager_error_2):
18920 New error handlers.
18921 (x_clipboard_manager_save_frame, x_clipboard_manager_save_all):
18922 Obey Vx_select_enable_clipboard_manager. Catch errors in
18923 x_clipboard_manager_save (Bug#8779).
18924 (Vx_select_enable_clipboard_manager): New variable.
18925 (x_get_foreign_selection): Reduce scope of x_catch_errors (Bug#8790).
18926
18927 2011-06-04 Dan Nicolaescu <dann@ics.uci.edu>
18928
18929 * emacs.c (main): Warn when starting a GTK emacs in daemon mode.
18930
18931 2011-06-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18932
18933 * fringe.c (update_window_fringes): Don't update overlay arrow bitmap
18934 in the current matrix if keep_current_p is non-zero.
18935
18936 2011-06-04 Eli Zaretskii <eliz@gnu.org>
18937
18938 * bidi.c (bidi_level_of_next_char): Fix last change.
18939
18940 2011-06-03 Eli Zaretskii <eliz@gnu.org>
18941
18942 Support bidi reordering of text covered by display properties.
18943
18944 * bidi.c (bidi_copy_it): Use offsetof instead of emulating it.
18945 (bidi_fetch_char, bidi_fetch_char_advance): New functions.
18946 (bidi_cache_search, bidi_cache_iterator_state)
18947 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
18948 (bidi_level_of_next_char, bidi_move_to_visually_next):
18949 Support character positions inside a run of characters covered by a
18950 display string.
18951 (bidi_paragraph_init, bidi_resolve_explicit_1)
18952 (bidi_level_of_next_char): Call bidi_fetch_char and
18953 bidi_fetch_char_advance instead of FETCH_CHAR and
18954 FETCH_CHAR_ADVANCE.
18955 (bidi_init_it): Initialize new members.
18956 (LRE_CHAR, RLE_CHAR, PDF_CHAR, LRO_CHAR, RLO_CHAR): Remove macro
18957 definitions.
18958 (bidi_explicit_dir_char): Lookup character type in bidi_type_table,
18959 instead of using explicit *_CHAR codes.
18960 (bidi_resolve_explicit, bidi_resolve_weak):
18961 Use FETCH_MULTIBYTE_CHAR instead of FETCH_CHAR, as reordering of
18962 bidirectional text is supported only in multibyte buffers.
18963 (bidi_init_it): Accept additional argument FRAME_WINDOW_P and use
18964 it to initialize the frame_window_p member of struct bidi_it.
18965 (bidi_cache_iterator_state, bidi_resolve_explicit_1)
18966 (bidi_resolve_explicit, bidi_resolve_weak)
18967 (bidi_level_of_next_char, bidi_move_to_visually_next): Abort if
18968 bidi_it->nchars is non-positive.
18969 (bidi_level_of_next_char): Don't try to lookup the cache for the
18970 next/previous character if nothing is cached there yet, or if we
18971 were just reseat()'ed to a new position.
18972
18973 * xdisp.c (set_cursor_from_row): Set start and stop points
18974 according to the row's direction when priming the loop that looks
18975 for the glyph on which to display cursor.
18976 (single_display_spec_intangible_p): Function deleted.
18977 (display_prop_intangible_p): Reimplement to call
18978 handle_display_spec instead of single_display_spec_intangible_p.
18979 Accept 3 additional arguments needed by handle_display_spec.
18980 This fixes incorrect cursor motion across display property with complex
18981 values: lists, `(when COND...)' forms, etc.
18982 (single_display_spec_string_p): Support property values that are
18983 lists with the argument STRING its top-level element.
18984 (display_prop_string_p): Fix the condition for processing a
18985 property that is a list to be consistent with handle_display_spec.
18986 (handle_display_spec): New function, refactored from the
18987 last portion of handle_display_prop.
18988 (compute_display_string_pos): Accept additional argument
18989 FRAME_WINDOW_P. Call handle_display_spec to determine whether the
18990 value of a `display' property is a "replacing spec".
18991 (handle_single_display_spec): Accept 2 additional arguments BUFPOS
18992 and FRAME_WINDOW_P. If IT is NULL, don't set up the iterator from
18993 the display property, but just return a value indicating whether
18994 the display property will replace the characters it covers.
18995 (Fcurrent_bidi_paragraph_direction): Initialize the nchars and
18996 frame_window_p members of struct bidi_it.
18997 (compute_display_string_pos, compute_display_string_end):
18998 New functions.
18999 (push_it): Accept second argument POSITION, where pop_it should
19000 jump to continue iteration.
19001 (reseat_1): Initialize bidi_it.disp_pos.
19002
19003 * keyboard.c (adjust_point_for_property): Adjust the call to
19004 display_prop_intangible_p to its new signature.
19005
19006 * dispextern.h (struct bidi_it): New member frame_window_p.
19007 (bidi_init_it): Update prototypes.
19008 (display_prop_intangible_p): Update prototype.
19009 (compute_display_string_pos, compute_display_string_end):
19010 Declare prototypes.
19011 (struct bidi_it): New members nchars and disp_pos. ch_len is now
19012 EMACS_INT.
19013
19014 2011-06-02 Paul Eggert <eggert@cs.ucla.edu>
19015
19016 Malloc failure behavior now depends on size of allocation.
19017 * alloc.c (buffer_memory_full, memory_full): New arg NBYTES.
19018 * lisp.h: Change signatures accordingly.
19019 * alloc.c, buffer.c, editfns.c, menu.c, minibuf.c, xterm.c:
19020 All callers changed. (Bug#8762)
19021
19022 * gnutls.c: Use Emacs's memory allocators.
19023 Without this change, the gnutls library would invoke malloc etc.
19024 directly, which causes problems on non-SYNC_INPUT hosts, and which
19025 runs afoul of improving memory_full behavior. (Bug#8761)
19026 (fn_gnutls_global_set_mem_functions): New macro or function pointer.
19027 (emacs_gnutls_global_init): Use it to specify xmalloc, xrealloc,
19028 xfree instead of the default malloc, realloc, free.
19029 (Fgnutls_boot): No need to check for memory allocation failure,
19030 since xmalloc does that for us.
19031
19032 Remove arbitrary limit of 2**31 entries in hash tables. (Bug#8771)
19033 * category.c (hash_get_category_set):
19034 * ccl.c (ccl_driver):
19035 * charset.c (Fdefine_charset_internal):
19036 * charset.h (struct charset.hash_index):
19037 * composite.c (get_composition_id, gstring_lookup_cache)
19038 (composition_gstring_put_cache):
19039 * composite.h (struct composition.hash_index):
19040 * dispextern.h (struct image.hash):
19041 * fns.c (next_almost_prime, larger_vector, cmpfn_eql)
19042 (cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
19043 (hashfn_equal, hashfn_user_defined, make_hash_table)
19044 (maybe_resize_hash_table, hash_lookup, hash_put)
19045 (hash_remove_from_table, hash_clear, sweep_weak_table, SXHASH_COMBINE)
19046 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector)
19047 (Fsxhash, Fgethash, Fputhash, Fmaphash):
19048 * image.c (make_image, search_image_cache, lookup_image)
19049 (xpm_put_color_table_h):
19050 * lisp.h (struct Lisp_Hash_Table):
19051 * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
19052 * print.c (print): Use 'EMACS_UINT' and 'EMACS_INT'
19053 for hashes and hash indexes, instead of 'unsigned' and 'int'.
19054 * alloc.c (allocate_vectorlike):
19055 Check for overflow in vector size calculations.
19056 * ccl.c (ccl_driver):
19057 Check for overflow when converting EMACS_INT to int.
19058 * fns.c, image.c: Remove unnecessary static decls that would otherwise
19059 need to be updated by these changes.
19060 * fns.c (make_hash_table, maybe_resize_hash_table):
19061 Check for integer overflow with large hash tables.
19062 (make_hash_table, maybe_resize_hash_table, Fmake_hash_table):
19063 Prefer the faster XFLOAT_DATA to XFLOATINT where either will do.
19064 (SXHASH_REDUCE): New macro.
19065 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector):
19066 Use it instead of discarding useful hash info with large hash values.
19067 (sxhash_float): New function.
19068 (sxhash): Use it. No more need for "& INTMASK" due to above changes.
19069 * lisp.h (FIXNUM_BITS): New macro, useful for SXHASH_REDUCE etc.
19070 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
19071 Rewrite to use FIXNUM_BITS, as this simplifies things.
19072 (next_almost_prime, larger_vector, sxhash, hash_lookup, hash_put):
19073 Adjust signatures to match updated version of code.
19074 (consing_since_gc): Now EMACS_INT, since a single hash table can
19075 use more than INT_MAX bytes.
19076
19077 2011-06-01 Dan Nicolaescu <dann@ics.uci.edu>
19078
19079 Make it possible to build with GCC-4.6+ -O2 -flto.
19080
19081 * emacs.c (__malloc_initialize_hook): Mark as EXTERNALLY_VISIBLE.
19082
19083 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
19084
19085 * minibuf.c (get_minibuffer, read_minibuf_unwind):
19086 Call minibuffer-inactive-mode.
19087
19088 2011-05-31 Juanma Barranquero <lekktu@gmail.com>
19089
19090 * makefile.w32-in ($(BLD)/data.$(O), $(BLD)/editfns.$(O)):
19091 Update dependencies.
19092
19093 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
19094
19095 * data.c (init_data): Remove code for UTS, this system is not
19096 supported anymore.
19097
19098 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
19099
19100 Don't force ./temacs to start in terminal mode.
19101
19102 * frame.c (make_initial_frame): Initialize faces in all cases, not
19103 only when CANNOT_DUMP is defined.
19104 * dispnew.c (init_display): Remove CANNOT_DUMP condition.
19105
19106 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
19107
19108 * dispnew.c (add_window_display_history): Use const for the string
19109 pointer. Remove declaration, not needed.
19110
19111 2011-05-31 Paul Eggert <eggert@cs.ucla.edu>
19112
19113 Use 'inline', not 'INLINE'.
19114 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00914.html>
19115 * alloc.c, fontset.c (INLINE): Remove.
19116 * alloc.c, bidi.c, charset.c, coding.c, dispnew.c, fns.c, image.c:
19117 * intervals.c, keyboard.c, process.c, syntax.c, textprop.c, w32term.c:
19118 * xdisp.c, xfaces.c, xterm.c: Replace all uses of INLINE with inline.
19119 * gmalloc.c (register_heapinfo): Use inline unconditionally.
19120 * lisp.h (LISP_MAKE_RVALUE): Use inline, not __inline__.
19121
19122 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
19123
19124 Make it possible to run ./temacs.
19125
19126 * callproc.c (set_initial_environment): Remove CANNOT_DUMP code,
19127 syms_of_callproc does the same thing. Remove test for
19128 "initialized", do it in the caller.
19129 * emacs.c (main): Avoid calling set_initial_environment when dumping.
19130
19131 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
19132
19133 * minibuf.c (Finternal_complete_buffer): Return `category' metadata.
19134 (read_minibuf): Use get_minibuffer.
19135 (syms_of_minibuf): Use DEFSYM.
19136 (Qmetadata): New var.
19137 * data.c (Qbuffer): Don't make it static.
19138 (syms_of_data): Use DEFSYM.
19139
19140 2011-05-31 Paul Eggert <eggert@cs.ucla.edu>
19141
19142 * ccl.c (CCL_CODE_RANGE): Allow negative numbers. (Bug#8751)
19143 (CCL_CODE_MIN): New macro.
19144
19145 2011-05-30 Paul Eggert <eggert@cs.ucla.edu>
19146
19147 * alloc.c (lisp_align_malloc): Omit unnecessary val==NULL tests.
19148
19149 * eval.c (Qdebug): Now static.
19150 * lisp.h (Qdebug): Remove decl. This reverts a part of the
19151 2011-04-26T11:26:05Z!dan.colascione@gmail.com that inadvertently undid part of
19152 2011-04-14T06:48:41Z!eggert@cs.ucla.edu.
19153
19154 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
19155
19156 * image.c: Various fixes to ImageMagick code comments.
19157 (Fimagemagick_types): Doc fix.
19158
19159 2011-05-29 Paul Eggert <eggert@cs.ucla.edu>
19160
19161 Minor fixes prompted by GCC 4.6.0 warnings.
19162
19163 * xselect.c (converted_selections, conversion_fail_tag): Now static.
19164
19165 * emacs.c [HAVE_X_WINDOWS]: Include "xterm.h".
19166 (x_clipboard_manager_save_all): Move extern decl to ...
19167 * xterm.h: ... here, so that it can be checked for consistency.
19168
19169 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
19170
19171 * xselect.c (x_clipboard_manager_save_frame)
19172 (x_clipboard_manager_save_all): New functions.
19173 (Fx_clipboard_manager_save): Lisp function deleted.
19174
19175 * emacs.c (Fkill_emacs): Call x_clipboard_manager_save_all.
19176 * frame.c (delete_frame): Call x_clipboard_manager_save_frame.
19177
19178 * xterm.h: Update prototype.
19179
19180 2011-05-28 William Xu <william.xwl@gmail.com>
19181
19182 * nsterm.m (ns_term_shutdown): Synchronize user defaults before
19183 exiting (Bug#8239).
19184
19185 2011-05-28 Jim Meyering <meyering@redhat.com>
19186
19187 Avoid a sign-extension bug in crypto_hash_function.
19188 * fns.c (to_uchar): Define.
19189 (crypto_hash_function): Use it to convert some newly-signed
19190 variables to unsigned, to avoid sign-extension bugs. For example,
19191 without this change, (md5 "truc") would evaluate to
19192 45723a2aff78ff4fff7fff1114760e62 rather than the expected
19193 45723a2af3788c4ff17f8d1114760e62. Reported by Antoine Levitt in
19194 https://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00883.html.
19195
19196 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
19197
19198 Integer overflow fixes.
19199
19200 * dbusbind.c: Serial number integer overflow fixes.
19201 (CHECK_DBUS_SERIAL_GET_SERIAL): New macro.
19202 (Fdbus_call_method_asynchronously, xd_read_message_1): Use a float
19203 to hold a serial number that is too large for a fixnum.
19204 (Fdbus_method_return_internal, Fdbus_method_error_internal):
19205 Check for serial numbers out of range. Decode any serial number
19206 that was so large that it became a float. (Bug#8722)
19207
19208 * dbusbind.c: Use XFASTINT rather than XUINT, and check for nonneg.
19209 (Fdbus_call_method, Fdbus_call_method_asynchronously):
19210 Use XFASTINT rather than XUINT when numbers are nonnegative.
19211 (xd_append_arg, Fdbus_method_return_internal):
19212 (Fdbus_method_error_internal): Likewise. Also, for unsigned
19213 arguments, check that Lisp number is nonnegative, rather than
19214 silently wrapping negative numbers around. (Bug#8722)
19215 (xd_read_message_1): Don't assume dbus_uint32_t can fit in int.
19216 (Bug#8722)
19217
19218 * data.c (arith_driver, Flsh): Avoid unnecessary casts to EMACS_UINT.
19219
19220 * ccl.c (ccl_driver): Redo slightly to avoid the need for 'unsigned'.
19221
19222 ccl: Add integer overflow checks.
19223 * ccl.c (CCL_CODE_MAX, GET_CCL_RANGE, GET_CCL_CODE, GET_CCL_INT):
19224 (IN_INT_RANGE): New macros.
19225 (ccl_driver): Use them to check for integer overflow when
19226 decoding a CCL program. Many of the new checks are whether XINT (x)
19227 fits in int; it doesn't always, on 64-bit hosts. The new version
19228 doesn't catch all possible integer overflows, but it's an
19229 improvement. (Bug#8719)
19230
19231 * alloc.c (make_event_array): Use XINT, not XUINT.
19232 There's no need for unsigned here.
19233
19234 * mem-limits.h (EXCEEDS_LISP_PTR) [!USE_LSB_TAG]: EMACS_UINT -> uintptr_t
19235 This follows up to the 2011-05-06 change that substituted uintptr_t
19236 for EMACS_INT. This case wasn't caught back then.
19237
19238 Rework Fformat to avoid integer overflow issues.
19239 * editfns.c: Include <float.h> unconditionally, as it's everywhere
19240 now (part of C89). Include <verify.h>.
19241 (MAX_10_EXP, CONVERTED_BYTE_SIZE): Remove; no longer needed.
19242 (pWIDE, pWIDElen, signed_wide, unsigned_wide): New defns.
19243 (Fformat): Avoid the prepass trying to compute sizes; it was only
19244 approximate and thus did not catch overflow reliably. Instead, walk
19245 through the format just once, formatting and computing sizes as we go,
19246 checking for integer overflow at every step, and allocating a larger
19247 buffer as needed. Keep track separately whether the format is
19248 multibyte. Keep only the most-recently calculated precision, rather
19249 than them all. Record whether each argument has been converted to
19250 string. Use EMACS_INT, not int, for byte and char and arg counts.
19251 Support field widths and precisions larger than INT_MAX. Avoid
19252 sprintf's undefined behavior with conversion specifications such as %#d
19253 and %.0c. Fix bug with strchr succeeding on '\0' when looking for
19254 flags. Fix bug with (format "%c" 256.0). Avoid integer overflow when
19255 formatting out-of-range floating point numbers with int
19256 formats. (Bug#8668)
19257
19258 * lisp.h (FIXNUM_OVERFLOW_P): Work even if arg is a NaN.
19259
19260 * data.c: Avoid integer truncation in expressions involving floats.
19261 * data.c: Include <intprops.h>.
19262 (arith_driver): When there's an integer overflow in an expression
19263 involving floating point, convert the integers to floating point
19264 so that the resulting value does not suffer from catastrophic
19265 integer truncation. For example, on a 64-bit host (* 4
19266 most-negative-fixnum 0.5) should yield about -4.6e+18, not zero.
19267 Do not rely on undefined behavior after integer overflow.
19268
19269 merge count_size_as_multibyte, parse_str_to_multibyte
19270 * character.c, character.h (count_size_as_multibyte):
19271 Rename from parse_str_to_multibyte; all uses changed.
19272 Check for integer overflow.
19273 * insdel.c, lisp.h (count_size_as_multibyte): Remove,
19274 since it's now a duplicate of the other. This is more of
19275 a character than a buffer op, so better that it's in character.c.
19276 * fns.c, print.c: Adjust to above changes.
19277
19278 2011-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
19279
19280 * xselect.c (x_convert_selection): Yet another int/Lisp_Object mixup.
19281
19282 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
19283
19284 * xselect.c: Fix minor problems prompted by GCC 4.6.0 warnings.
19285 (x_handle_selection_request, frame_for_x_selection): Remove unused vars.
19286 (x_clipboard_manager_save): Now static.
19287 (Fx_clipboard_manager_save): Rename local to avoid shadowing.
19288
19289 * fns.c: Fix minor problems prompted by GCC 4.6.0 warnings.
19290 (crypto_hash_function): Now static.
19291 Fix pointer signedness problems. Avoid unnecessary initializations.
19292
19293 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
19294
19295 * termhooks.h (Vselection_alist): Make it terminal-local.
19296
19297 * terminal.c (create_terminal): Initialize it.
19298
19299 * xselect.c: Support for clipboard managers.
19300 (Vselection_alist): Move to termhooks.h as terminal-local var.
19301 (LOCAL_SELECTION): New macro.
19302 (x_atom_to_symbol): Handle x_display_info_for_display fail case.
19303 (symbol_to_x_atom): Remove gratuitous arg.
19304 (x_handle_selection_request, lisp_data_to_selection_data)
19305 (x_get_foreign_selection, Fx_register_dnd_atom): Callers changed.
19306 (x_own_selection, x_get_local_selection, x_convert_selection):
19307 New arg, specifying work frame. Use terminal-local Vselection_alist.
19308 (some_frame_on_display): Delete unused function.
19309 (Fx_own_selection_internal, Fx_get_selection_internal)
19310 (Fx_disown_selection_internal, Fx_selection_owner_p)
19311 (Fx_selection_exists_p): New optional frame arg.
19312 (frame_for_x_selection, Fx_clipboard_manager_save): New functions.
19313 (x_handle_selection_clear): Don't treat other terminals with the
19314 same keyboard specially. Use the terminal-local Vselection_alist.
19315 (x_clear_frame_selections): Use Frun_hook_with_args.
19316
19317 * xterm.c (x_term_init): Intern ATOM and CLIPBOARD_MANAGER atoms.
19318
19319 * xterm.h: Add support for those atoms.
19320
19321 2011-05-26 Chong Yidong <cyd@stupidchicken.com>
19322
19323 * xselect.c: ICCCM-compliant handling of MULTIPLE targets.
19324 (converted_selections, conversion_fail_tag): New global variables.
19325 (x_selection_request_lisp_error): Free the above.
19326 (x_get_local_selection): Remove unnecessary code.
19327 (x_reply_selection_request): Args changed; handle arbitrary array
19328 of converted selections stored in converted_selections.
19329 Separate the XChangeProperty and SelectionNotify steps.
19330 (x_handle_selection_request): Rewrite to handle MULTIPLE target.
19331 (x_convert_selection): New function.
19332 (x_handle_selection_event): Simplify.
19333 (x_get_foreign_selection): Don't ignore incoming requests while
19334 waiting for an answer; this will fail when we implement
19335 SAVE_TARGETS, and seems unnecessary anyway.
19336 (selection_data_to_lisp_data): Recognize ATOM_PAIR type.
19337 (Vx_sent_selection_functions): Doc fix.
19338
19339 2011-05-26 Leo Liu <sdl.web@gmail.com>
19340
19341 * editfns.c (Ftranspose_regions): Allow empty regions. (Bug#8699)
19342
19343 2011-05-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19344
19345 * dispextern.h (struct glyph_row): New member fringe_bitmap_periodic_p.
19346
19347 * dispnew.c (shift_glyph_matrix, scrolling_window): Mark scrolled row
19348 for fringe update if it has periodic bitmap.
19349 (row_equal_p): Also compare left_fringe_offset, right_fringe_offset,
19350 and fringe_bitmap_periodic_p.
19351
19352 * fringe.c (get_fringe_bitmap_data): New function.
19353 (draw_fringe_bitmap_1, update_window_fringes): Use it.
19354 (update_window_fringes): Record periodicity of fringe bitmap in glyph
19355 row. Mark glyph row for fringe update if periodicity changed.
19356
19357 * xdisp.c (try_window_reusing_current_matrix): Don't mark scrolled row
19358 for fringe update unless it has periodic bitmap.
19359
19360 2011-05-25 Kenichi Handa <handa@m17n.org>
19361
19362 * xdisp.c (get_next_display_element): Set correct it->face_id for
19363 a static composition.
19364
19365 2011-05-24 Leo Liu <sdl.web@gmail.com>
19366
19367 * deps.mk (fns.o):
19368 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha1.h.
19369
19370 * fns.c (crypto_hash_function, Fsha1): New function.
19371 (Fmd5): Use crypto_hash_function.
19372 (syms_of_fns): Add Ssha1.
19373
19374 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
19375
19376 * gnutls.c: Remove unused macros.
19377 (fn_gnutls_transport_set_lowat, fn_gnutls_transport_set_pull_function):
19378 (fn_gnutls_transport_set_push_function) [!WINDOWSNT]:
19379 Remove macros that are defined and never used.
19380 Caught by gcc -Wunused-macros (GCC 4.6.0, Fedora 14).
19381
19382 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
19383
19384 * xselect.c (syms_of_xselect): Remove unused symbol SAVE_TARGETS.
19385 (Fx_get_selection_internal): Minor cleanup.
19386 (Fx_own_selection_internal): Rename arguments for consistency with
19387 select.el.
19388
19389 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
19390
19391 * xselect.c (QSAVE_TARGETS): New static var, to fix build failure.
19392
19393 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
19394
19395 * xselect.c (syms_of_xselect): Include character.h; use DEFSYM.
19396
19397 2011-05-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19398
19399 * dispnew.c (scrolling_window): Don't exclude the case that the
19400 last enabled row in the desired matrix touches the bottom boundary.
19401
19402 2011-05-21 Glenn Morris <rgm@gnu.org>
19403
19404 * Makefile.in ($(etc)/DOC): Make second command line even shorter.
19405 (SOME_MACHINE_OBJECTS): Replace FONT_OBJ by its maximal expansion,
19406 and add some more files.
19407
19408 2011-05-20 Eli Zaretskii <eliz@gnu.org>
19409
19410 * callproc.c (Fcall_process) [MSDOS]: Fix arguments to
19411 report_file_error introduced by the change from 2011-05-07.
19412
19413 2011-05-20 Paul Eggert <eggert@cs.ucla.edu>
19414
19415 * systime.h (Time): Define only if emacs is defined.
19416 This is to allow ../lib-src/profile.c to be compiled on FreeBSD,
19417 where the include path doesn't have X11/X.h by default. See
19418 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00561.html>.
19419
19420 2011-05-20 Kenichi Handa <handa@m17n.org>
19421
19422 * composite.c (find_automatic_composition): Fix previous change.
19423
19424 2011-05-20 Glenn Morris <rgm@gnu.org>
19425
19426 * lisp.mk: New file, split from Makefile.in.
19427 * Makefile.in (lisp): Move to separate file, inserted by @lisp_frag@.
19428 (shortlisp): Remove.
19429 ($(etc)/DOC): Edit lisp.mk rather than using $shortlisp.
19430
19431 2011-05-19 Glenn Morris <rgm@gnu.org>
19432
19433 * Makefile.in (MSDOS_SUPPORT_REAL, MSDOS_SUPPORT, NS_SUPPORT)
19434 (REAL_MOUSE_SUPPORT, GPM_MOUSE_SUPPORT, MOUSE_SUPPORT, TOOLTIP_SUPPORT)
19435 (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT, WINDOW_SUPPORT): Remove.
19436 (lisp): Set the order to that of loadup.el.
19437 (shortlisp): Make it a copy of $lisp.
19438 (SOME_MACHINE_LISP): Remove.
19439 ($(etc)/DOC): Depend just on $lisp, not $SOME_MACHINE_LISP too.
19440 Use just $shortlisp, not $SOME_MACHINE_LISP too.
19441
19442 2011-05-18 Kenichi Handa <handa@m17n.org>
19443
19444 * composite.c (CHAR_COMPOSABLE_P): Add more check for efficiency.
19445 (BACKWARD_CHAR): Wrap the arg STOP by parenthesis.
19446 (find_automatic_composition): Mostly rewrite for efficiency.
19447
19448 2011-05-18 Juanma Barranquero <lekktu@gmail.com>
19449
19450 * makefile.w32-in: Update dependencies.
19451
19452 2011-05-18 Christoph Scholtes <cschol2112@googlemail.com>
19453
19454 * menu.c: Include limits.h (fixes the MS-Windows build broken by
19455 2011-06-18T18:49:19Z!cyd@stupidchicken.com).
19456
19457 2011-05-18 Paul Eggert <eggert@cs.ucla.edu>
19458
19459 Fix some integer overflow issues, such as string length overflow.
19460
19461 * insdel.c (count_size_as_multibyte): Check for string overflow.
19462
19463 * character.c (lisp_string_width): Check for string overflow.
19464 Use EMACS_INT, not int, for string indexes and lengths; in
19465 particular, 2nd arg is now EMACS_INT, not int. Do not crash if
19466 the resulting string length overflows an EMACS_INT; instead,
19467 report a string overflow if no precision given. When checking for
19468 precision exhaustion, use a check that cannot possibly have
19469 integer overflow. (Bug#8675)
19470 * character.h (lisp_string_width): Adjust to new signature.
19471
19472 * alloc.c (string_overflow): New function.
19473 (Fmake_string): Use it. This doesn't change behavior, but saves
19474 a few bytes and will simplify future changes.
19475 * character.c (string_escape_byte8): Likewise.
19476 * lisp.h (string_overflow): New decl.
19477
19478 Fixups, following up to the user-interface timestamp change.
19479 * nsterm.m (last_mouse_movement_time, ns_mouse_position): Use Time
19480 for UI timestamps, instead of unsigned long.
19481 * msdos.c (mouse_get_pos): Likewise.
19482 * w32inevt.c (movement_time, w32_console_mouse_position): Likewise.
19483 * w32gui.h (Time): Define by including "systime.h" rather than by
19484 declaring it ourselves. (Bug#8664)
19485
19486 * dispextern.h (struct image): Don't assume time_t <= unsigned long.
19487 * image.c (clear_image_cache): Likewise.
19488
19489 * term.c (term_mouse_position): Don't assume time_t wraparound.
19490
19491 Be more systematic about user-interface timestamps.
19492 Before, the code sometimes used 'Time', sometimes 'unsigned long',
19493 and sometimes 'EMACS_UINT', to represent these timestamps.
19494 This change causes it to use 'Time' uniformly, as that's what X uses.
19495 This makes the code easier to follow, and makes it easier to catch
19496 integer overflow bugs such as Bug#8664.
19497 * frame.c (Fmouse_position, Fmouse_pixel_position):
19498 Use Time, not unsigned long, for user-interface timestamps.
19499 * keyboard.c (last_event_timestamp, kbd_buffer_get_event): Likewise.
19500 (button_down_time, make_lispy_position, make_lispy_movement): Likewise.
19501 * keyboard.h (last_event_timestamp): Likewise.
19502 * menu.c (Fx_popup_menu) [!HAVE_X_WINDOWS]: Likewise.
19503 * menu.h (xmenu_show): Likewise.
19504 * term.c (term_mouse_position): Likewise.
19505 * termhooks.h (struct input_event.timestamp): Likewise.
19506 (struct terminal.mouse_position_hook): Likewise.
19507 * xmenu.c (create_and_show_popup_menu, xmenu_show): Likewise.
19508 * xterm.c (XTmouse_position, x_scroll_bar_report_motion): Likewise.
19509 * systime.h (Time): New decl. Pull it in from <X11/X.h> if
19510 HAVE_X_WINDOWS, otherwise define it as unsigned long, which is
19511 what it was before.
19512 * menu.h, termhooks.h: Include "systime.h", for Time.
19513
19514 * keyboard.c (make_lispy_event): Fix problem in integer overflow.
19515 Don't assume that the difference between two unsigned long values
19516 can fit into an integer. At this point, we know button_down_time
19517 <= event->timestamp, so the difference must be nonnegative, so
19518 there's no need to cast the result if double-click-time is
19519 nonnegative, as it should be; check that it's nonnegative, just in
19520 case. This bug is triggered when events are more than 2**31 ms
19521 apart (about 25 days). (Bug#8664)
19522
19523 * xselect.c (last_event_timestamp): Remove duplicate decl.
19524 (x_own_selection): Remove needless cast to unsigned long.
19525
19526 * xmenu.c (set_frame_menubar): Use int, not EMACS_UINT, for indexes
19527 that always fit in int. Use a sentinel instead of a counter, to
19528 avoid a temp and to allay GCC's concerns about possible int overflow.
19529 * frame.h (struct frame): Use int for menu_bar_items_used
19530 instead of EMACS_INT, since it always fits in int.
19531
19532 * menu.c (grow_menu_items): Check for int overflow.
19533
19534 * xmenu.c (set_frame_menubar): Don't mishandle vectors with no nils.
19535
19536 * xterm.c: Use EMACS_INT for Emacs modifiers, and int for X modifiers.
19537 Before, the code was not consistent. These values cannot exceed
19538 2**31 - 1 so there's no need to make them unsigned.
19539 (x_x_to_emacs_modifiers): Accept int and return EMACS_INT.
19540 (x_emacs_to_x_modifiers): Accept EMACS_INT and return int.
19541 (x_x_to_emacs_modifiers, x_emacs_to_x_modifiers): Reject non-integers
19542 as modifiers.
19543 * xterm.h (x_x_to_emacs_modifiers): Adjust to signature change.
19544
19545 * lisp.h (XINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_INT.
19546 (XUINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_UINT.
19547 Otherwise, GCC 4.6.0 warns about printf (pI, XINT (...)),
19548 presumably because the widths might not match.
19549
19550 * window.c (size_window): Avoid needless test at loop start.
19551
19552 2011-05-18 Courtney Bane <emacs-bugs-7626@cbane.org> (tiny change)
19553
19554 * term.c (Fresume_tty): Restore hooks before reinitializing (bug#8687).
19555
19556 2011-05-12 Drew Adams <drew.adams@oracle.com>
19557
19558 * textprop.c (Fprevious_single_char_property_change): Doc fix (bug#8655).
19559
19560 2011-05-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19561
19562 * w32term.c (w32_draw_fringe_bitmap): Rename local vars `left' and
19563 `width' to `bar_area_x' and `bar_area_width', respectively.
19564 (x_scroll_run): Take account of fringe background extension.
19565
19566 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
19567 Rename local vars `left' and `width' to `bar_area_x' and
19568 `bar_area_width', respectively.
19569 (x_scroll_run) [USE_TOOLKIT_SCROLL_BARS]: Take account of fringe
19570 background extension.
19571
19572 2011-05-10 Jim Meyering <meyering@redhat.com>
19573
19574 * xdisp.c (x_intersect_rectangles): Fix typo "the the -> the".
19575
19576 2011-05-10 Juanma Barranquero <lekktu@gmail.com>
19577
19578 * image.c (Finit_image_library): Return t for built-in image types,
19579 like pbm and xbm. (Bug#8640)
19580
19581 2011-05-09 Andreas Schwab <schwab@linux-m68k.org>
19582
19583 * w32menu.c (set_frame_menubar): Fix submenu allocation.
19584
19585 2011-05-07 Eli Zaretskii <eliz@gnu.org>
19586
19587 * w32console.c (Fset_screen_color): Doc fix.
19588 (Fget_screen_color): New function.
19589 (syms_of_ntterm): Defsubr it.
19590
19591 * callproc.c (call_process_cleanup) [MSDOS]: Don't close and
19592 unlink the temporary file if Fcall_process didn't create it in the
19593 first place.
19594 (Fcall_process) [MSDOS]: Don't create tempfile if stdout of the
19595 child process will be redirected to a file specified with `:file'.
19596 Don't try to re-open tempfile in that case, and set fd[0] to -1 as
19597 cue to call_process_cleanup not to close that handle.
19598
19599 2011-05-07 Ben Key <bkey76@gmail.com>
19600
19601 * makefile.w32-in: The bootstrap-temacs rule now makes use of
19602 one of two shell specific rules, either bootstrap-temacs-CMD or
19603 bootstrap-temacs-SH. The bootstrap-temacs-SH rule is identical
19604 to the previous implementation of the bootstrap-temacs rule.
19605 The bootstrap-temacs-CMD rule is similar to the previous
19606 implementation of the bootstrap-temacs rule except that it
19607 makes use of the ESC_CFLAGS variable instead of the CFLAGS
19608 variable.
19609
19610 These changes, along with some changes to nt/configure.bat,
19611 nt/gmake.defs, and nt/nmake.defs, are required to extend my
19612 earlier fix to add support for --cflags and --ldflags options
19613 that include quotes so that it works whether make uses cmd or
19614 sh as the shell.
19615
19616 2011-05-06 Michael Albinus <michael.albinus@gmx.de>
19617
19618 * dbusbind.c (QCdbus_type_unix_fd): Declare static.
19619 (xd_remove_watch): Don't check QCdbus_type_unix_fd for SYMBOLP, it
19620 is a constant.
19621 (Fdbus_init_bus, xd_read_queued_messages): Bus can be a symbol or
19622 a string. Handle both cases.
19623 (Fdbus_call_method_asynchronously, Fdbus_register_signal)
19624 (Fdbus_register_method): Use Qinvalid_function.
19625
19626 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
19627
19628 * makefile.w32-in: Update dependencies.
19629 (LISP_H): Add inttypes.h and stdin.h.
19630 (PROCESS_H): Add unistd.h.
19631
19632 2011-05-06 Eli Zaretskii <eliz@gnu.org>
19633
19634 * lread.c: Include limits.h (fixes the MS-Windows build broken by
19635 2011-05-06T07:13:19Z!eggert@cs.ucla.edu).
19636
19637 2011-05-06 Paul Eggert <eggert@cs.ucla.edu>
19638
19639 * image.c (Finit_image_library) [!HAVE_NTGUI]: Omit unused local.
19640
19641 * term.c (vfatal): Remove stray call to va_end.
19642 It's not needed and the C Standard doesn't allow it here anyway.
19643
19644 Use C99's va_copy to avoid undefined behavior on x86-64 GNU/Linux.
19645 * eval.c (verror): doprnt a copy of ap, not the original. (Bug#8545)
19646
19647 * eval.c (verror): OK to create a string of up to MOST_POSITIVE_FIXNUM
19648 bytes.
19649
19650 * term.c: Don't include <stdarg.h>, as <lisp.h> does that.
19651
19652 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
19653
19654 * process.c (Fformat_network_address): Fix typo: args2 -> *args2.
19655
19656 * xmenu.c (set_frame_menubar): Fix typo: int * -> int (3 times).
19657
19658 * coding.c (detect_coding_charset): Fix typo: * 2 -> *4 (Bug#8601).
19659
19660 * charset.h (struct charset.code_space): Now has 15 elements, not 16.
19661 * charset.c (Fdefine_charset_internal): Don't initialize
19662 charset.code_space[15]. The value was garbage, on hosts with
19663 32-bit int (Bug#8600).
19664
19665 * lread.c (read_integer): Be more consistent with string-to-number.
19666 Use string_to_number to do the actual conversion; this avoids
19667 rounding errors and fixes some other screwups. Without this fix,
19668 for example, #x1fffffffffffffff was misread as -2305843009213693952.
19669 (digit_to_number): Move earlier, for benefit of read_integer.
19670 Return -1 if the digit is out of range for the base, -2 if it is
19671 not a digit in any supported base. (Bug#8602)
19672
19673 * doprnt.c (doprnt): Support arbitrary pI values, such as "I64".
19674
19675 * dispnew.c (scrolling_window): Return 1 if we scrolled,
19676 to match comment at start of function. This also removes a
19677 GCC warning about overflow in a 32+64-bit port.
19678
19679 * lisp.h (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Simplify.
19680
19681 * dbusbind.c: Do not use XPNTR on a value that may be an integer.
19682 Reported by Stefan Monnier in
19683 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00919.html>.
19684 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
19685 Use SYMBOLP-guarded XSYMBOL, not XPNTR.
19686
19687 * lisp.h (EMACS_INTPTR): Remove. All uses changed to intptr_t.
19688 (EMACS_UINTPTR): Likewise, with uintptr_t.
19689
19690 * lisp.h: Prefer 64-bit EMACS_INT if available.
19691 (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Define to 64-bit
19692 on 32-bit hosts that have 64-bit int, so that they can access
19693 large files.
19694 However, temporarily disable this change unless the temporary
19695 symbol WIDE_EMACS_INT is defined.
19696
19697 * lread.c, process.c: Do not include <inttypes.h>; lisp.h does it now.
19698
19699 Prefer intptr_t/uintptr_t for integers the same widths as pointers.
19700 This removes an assumption that EMACS_INT and long are the same
19701 width as pointers. The assumption is true for Emacs porting targets
19702 now, but we want to make other targets possible.
19703 * lisp.h: Include <inttypes.h>, for INTPTR_MAX, UINTPTR_MAX.
19704 (EMACS_INTPTR, EMACS_UINTPTR): New macros.
19705 In the rest of the code, change types of integers that hold casted
19706 pointers to EMACS_INTPTR and EMACS_UINTPTR, systematically
19707 replacing EMACS_INT, long, EMACS_UINT, and unsigned long.
19708 (XTYPE): Don't cast arg to EMACS_UINT; normally is not needed.
19709 (XSET): Cast type of XTYPE arg to EMACS_INTPTR; it is needed here.
19710 No need to cast type when ORing.
19711 (XPNTR): Return a value of type EMACS_INTPTR or EMACS_UINTPTR.
19712 * alloc.c (lisp_align_malloc): Remove a no-longer-needed cast.
19713 * doc.c (store_function_docstring): Use EMACS_INTPTR, so as not to
19714 assume EMACS_INT is the same width as char *.
19715 * gtkutil.c (xg_gtk_scroll_destroy, xg_tool_bar_button_cb):
19716 (xg_tool_bar_callback, xg_tool_bar_help_callback, xg_make_tool_item):
19717 Remove no-longer-needed casts.
19718 (xg_create_scroll_bar, xg_tool_bar_button_cb, xg_tool_bar_callback):
19719 (xg_tool_bar_help_callback, xg_make_tool_item):
19720 Use EMACS_INTPTR to hold an integer
19721 that will be cast to void *; this can avoid a GCC warning
19722 if EMACS_INT is not the same width as void *.
19723 * menu.c (find_and_call_menu_selection): Remove no-longer-needed cast.
19724 * xdisp.c (display_echo_area_1, resize_mini_window_1):
19725 (current_message_1, set_message_1):
19726 Use a local to convert to proper width without a cast.
19727 * xmenu.c (dialog_selection_callback): Likewise.
19728
19729 * sysdep.c (get_random): Don't assume EMACS_INT is no wider than long.
19730 Also, don't assume VALBITS / RAND_BITS is less than 5,
19731 and don't rely on undefined behavior when shifting a 1 left into
19732 the sign bit.
19733 * lisp.h (get_random): Change signature to match.
19734
19735 * lread.c (hash_string): Use size_t, not int, for hash computation.
19736 Normally we prefer signed values; but hashing is special, because
19737 it's better to use unsigned division on hash table sizes so that
19738 the remainder is nonnegative. Also, size_t is the natural width
19739 for hashing into memory. The previous code used 'int', which doesn't
19740 retain enough info to hash well into very large tables.
19741 (oblookup, oblookup_last_bucket_number, Funintern): Likewise.
19742
19743 * dbusbind.c: Don't possibly lose pointer info when converting.
19744 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
19745 Use XPNTR rather than XHASH, so that the high-order bits of
19746 the pointer aren't lost when converting through void *.
19747
19748 * eval.c (Fautoload): Don't double-shift a pointer.
19749
19750 * fns.c (Frandom): Let EMACS_UINT be wider than unsigned long.
19751
19752 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
19753
19754 * gnutls.c (DEF_GNUTLS_FN):
19755 * image.c (DEF_IMGLIB_FN): Make function pointers static.
19756
19757 2011-05-05 Andreas Schwab <schwab@linux-m68k.org>
19758
19759 * lread.c (lisp_file_lexically_bound_p): Stop scanning at end
19760 marker. (Bug#8610)
19761
19762 2011-05-05 Eli Zaretskii <eliz@gnu.org>
19763
19764 * w32heap.c (allocate_heap) [USE_LISP_UNION_TYPE || USE_LSB_TAG]:
19765 New version that can reserve upto 2GB of heap space.
19766
19767 2011-05-05 Chong Yidong <cyd@stupidchicken.com>
19768
19769 * nsfns.m (Fns_read_file_name): Doc fix (Bug#8534).
19770
19771 2011-05-05 Teodor Zlatanov <tzz@lifelogs.com>
19772
19773 * gnutls.c (fn_gnutls_certificate_set_x509_key_file): Add alias to
19774 `gnutls_certificate_set_x509_key_file'.
19775
19776 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
19777
19778 * makefile.w32-in ($(BLD)/image.$(O), $(BLD)/process.$(O)):
19779 Update dependencies.
19780
19781 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
19782
19783 * gnutls.h (emacs_gnutls_write, emacs_gnutls_read):
19784 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
19785 Remove unused parameter `fildes'.
19786 * process.c (read_process_output, send_process): Don't pass it.
19787
19788 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
19789
19790 Fix previous change: the library cache is defined in w32.c.
19791 * image.c (CACHE_IMAGE_TYPE) [!HAVE_NTGUI]: Define to noop.
19792 (Finit_image_library): Wrap Vlibrary_cache on "#ifdef HAVE_NTGUI".
19793
19794 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
19795
19796 Implement dynamic loading of GnuTLS on Windows.
19797
19798 * gnutls.h (GNUTLS_EMACS_ERROR_NOT_LOADED): New macro.
19799 (emacs_gnutls_write, emacs_gnutls_read): Mark as extern.
19800 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
19801 Declare.
19802
19803 * gnutls.c (Qgnutls_dll): Define.
19804 (DEF_GNUTLS_FN, LOAD_GNUTLS_FN): New macros.
19805 (gnutls_*): Declare function pointers.
19806 (init_gnutls_functions): New function to initialize function pointers.
19807 (emacs_gnutls_handshake, Fgnutls_error_string, Fgnutls_deinit)
19808 (emacs_gnutls_global_init, Fgnutls_bye): Use function pointers.
19809 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
19810 Wrappers for gnutls_record_check_pending and gnutls_transport_set_errno.
19811 (emacs_gnutls_write, emacs_gnutls_read)
19812 (emacs_gnutls_handle_error, Fgnutls_error_fatalp)
19813 (Fgnutls_available_p): New function.
19814 (Fgnutls_boot): Call Fgnutls_available_p. Use function pointers.
19815 (syms_of_gnutls) <Qgnutls_dll>: Initialize and staticpro it.
19816 (syms_of_gnutls) <Sgnutls_available_p>: defsubr it.
19817
19818 * image.c: Include w32.h.
19819 (Vimage_type_cache): Delete.
19820 (syms_of_image) <Vimage_type_cache>: Don't initialize and staticpro it.
19821 (CACHE_IMAGE_TYPE, Finit_image_library): Use Vlibrary_cache instead.
19822 (w32_delayed_load): Move to w32.c.
19823
19824 * w32.h (VlibraryCache, QCloaded_from, w32_delayed_load): Declare.
19825
19826 * w32.c (QCloaded_from, Vlibrary_cache): Define.
19827 (w32_delayed_load): Move from image.c. When loading a library, record
19828 its filename in the :loaded-from property of the library id.
19829 (globals_of_w32) <QCloaded_from, Vlibrary_cache>:
19830 Initialize and staticpro them.
19831 (emacs_gnutls_pull, emacs_gnutls_push): Call emacs_gnutls_* functions.
19832
19833 * process.c: Include lisp.h before w32.h, not after.
19834 (wait_reading_process_output): Call emacs_gnutls_record_check_pending
19835 instead of gnutls_record_check_pending.
19836
19837 * callproc.c, emacs.c: Include lisp.h before w32.h, not after.
19838
19839 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
19840
19841 * gnutls.c (Fgnutls_boot): Support :keylist and :crlfiles options
19842 instead of :keyfiles. Give GnuTLS the keylist and the CRL lists
19843 as passed in.
19844
19845 2011-05-03 Jan Djärv <jan.h.d@swipnet.se>
19846
19847 * xterm.c (x_set_frame_alpha): Do not set property on anything
19848 else than FRAME_X_OUTER_WINDOW (Bug#8608).
19849
19850 2011-05-02 Juanma Barranquero <lekktu@gmail.com>
19851
19852 * sysdep.c (get_tty_size) [WINDOWSNT]: Implement. (Bug#8596)
19853
19854 2011-05-02 Juanma Barranquero <lekktu@gmail.com>
19855
19856 * gnutls.c (Qgnutls_log_level, Qgnutls_code, Qgnutls_anon)
19857 (Qgnutls_x509pki, Qgnutls_e_interrupted, Qgnutls_e_again)
19858 (Qgnutls_e_invalid_session, Qgnutls_e_not_ready_for_handshake)
19859 (gnutls_global_initialized, Qgnutls_bootprop_priority)
19860 (Qgnutls_bootprop_trustfiles, Qgnutls_bootprop_keyfiles)
19861 (Qgnutls_bootprop_callbacks, Qgnutls_bootprop_loglevel)
19862 (Qgnutls_bootprop_hostname, Qgnutls_bootprop_verify_flags)
19863 (Qgnutls_bootprop_verify_error, Qgnutls_bootprop_verify_hostname_error)
19864 (Qgnutls_bootprop_callbacks_verify): Make static.
19865
19866 2011-05-01 Andreas Schwab <schwab@linux-m68k.org>
19867
19868 * callproc.c: Indentation fixup.
19869
19870 * sysdep.c (wait_for_termination_1): Make static.
19871 (wait_for_termination, interruptible_wait_for_termination):
19872 Move after wait_for_termination_1.
19873
19874 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
19875
19876 * sysdep.c (interruptible_wait_for_termination): New function
19877 which is like wait_for_termination, but allows keyboard
19878 interruptions.
19879
19880 * callproc.c (Fcall_process): Add (:file "file") as an option for
19881 the STDOUT buffer.
19882 (Fcall_process_region): Ditto.
19883
19884 2011-04-30 Eli Zaretskii <eliz@gnu.org>
19885
19886 * dosfns.c (Fint86, Fdos_memget, Fdos_memput): Use `ASIZE (FOO)'
19887 rather than `XVECTOR (FOO)->size'.
19888
19889 * process.c: Remove HAVE_INTTYPES_H condition from inclusion of
19890 inttypes.h, as a gnulib replacement is used if it not available in
19891 system headers.
19892
19893 2011-04-21 Eli Zaretskii <eliz@gnu.org>
19894
19895 Lift the MOST_POSITIVE_FIXNUM/4 limitation on visited files.
19896 * fileio.c (Finsert_file_contents): Don't limit file size to 1/4
19897 of MOST_POSITIVE_FIXNUM. (Bug#8528)
19898
19899 * coding.c (coding_alloc_by_realloc): Error out if destination
19900 will grow beyond MOST_POSITIVE_FIXNUM.
19901 (decode_coding_emacs_mule): Abort if there isn't enough place in
19902 charbuf for the composition carryover bytes. Reserve an extra
19903 space for up to 2 characters produced in a loop.
19904 (decode_coding_iso_2022): Abort if there isn't enough place in
19905 charbuf for the composition carryover bytes.
19906
19907 2011-04-21 Eli Zaretskii <eliz@gnu.org>
19908
19909 * doprnt.c (doprnt) [!HAVE_LONG_LONG_INT]: Error out instead of
19910 aborting when %lld or %lll format is passed.
19911 [!HAVE_UNSIGNED_LONG_LONG_INT]: Error out instead of aborting when
19912 %llo or %llx format is passed. (Bug#8545)
19913
19914 * window.c (window_scroll_line_based): Use a marker instead of
19915 simple variables to record original value of point. (Bug#7952)
19916
19917 * doprnt.c (doprnt): Fix the case where a multibyte sequence
19918 produced by %s or %c overflows available buffer space. (Bug#8545)
19919
19920 2011-04-28 Paul Eggert <eggert@cs.ucla.edu>
19921
19922 * doprnt.c (doprnt): Omit useless test; int overflow check (Bug#8545).
19923 (SIZE_MAX): Move defn after all includes, as they might #define it.
19924
19925 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
19926
19927 * w32.c (init_environment): Warn about defaulting HOME to C:\.
19928
19929 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
19930
19931 * keyboard.c (Qdelayed_warnings_hook): Define.
19932 (command_loop_1): Run `delayed-warnings-hook'
19933 if Vdelayed_warnings_list is non-nil.
19934 (syms_of_keyboard) <delayed-warnings-hook>: DEFSYM it.
19935 (syms_of_keyboard) <delayed-warnings-list>: DEFVAR_LISP it.
19936
19937 2011-04-28 Eli Zaretskii <eliz@gnu.org>
19938
19939 * doprnt.c (doprnt): Don't return value smaller than the buffer
19940 size if the message was truncated. (Bug#8545).
19941
19942 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
19943
19944 * w32fns.c (Fx_change_window_property, Fx_delete_window_property)
19945 (Fx_window_property): #if-0 the whole functions, not just the bodies.
19946
19947 2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
19948
19949 * doprnt.c (doprnt): Support "ll" length modifier, for long long.
19950
19951 2011-04-27 Juanma Barranquero <lekktu@gmail.com>
19952
19953 * makefile.w32-in: Update dependencies.
19954
19955 2011-04-27 Eli Zaretskii <eliz@gnu.org>
19956
19957 Improve `doprnt' and its usage. (Bug#8545)
19958 * doprnt.c (doprnt): Make sure `format' is never accessed beyond
19959 `format_end'. Remove support for %l as a conversion specifier.
19960 Don't use xrealloc. Improve diagnostics when the %l size modifier
19961 is used. Update the commentary.
19962
19963 * eval.c (verror): Simplify calculation of size_t.
19964
19965 * coding.c (Ffind_operation_coding_system): Fix diagnostic error
19966 messages.
19967
19968 2011-04-27 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
19969
19970 * buffer.c (init_buffer) [USE_MMAP_FOR_BUFFERS]: Adjust to aliasing
19971 change.
19972
19973 2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
19974
19975 * nsmenu.m: Replace all uses of XVECTOR with ASIZE and AREF.
19976 This makes this file independent of the recent pseudovector change.
19977
19978 2011-04-26 Paul Eggert <eggert@cs.ucla.edu>
19979
19980 * keyboard.c (handle_user_signal): Fix pointer signedness problem.
19981
19982 * gnutls.c (emacs_gnutls_handle_error): Remove unused local.
19983 (Fgnutls_boot): gnutls_certificate_verify_peers2 wants unsigned *.
19984 Remove unused local.
19985 (emacs_gnutls_write): Don't use uninitialized rtnval if nbyte <= 0.
19986
19987 * lisp.h: Fix a problem with aliasing and vector headers. (Bug#8546)
19988 GCC 4.6.0 optimizes based on type-based alias analysis.
19989 For example, if b is of type struct buffer * and v of type struct
19990 Lisp_Vector *, then gcc -O2 was incorrectly assuming that &b->size
19991 != &v->size, and therefore "v->size = 1; b->size = 2; return
19992 v->size;" must therefore return 1. This assumption is incorrect
19993 for Emacs, since it type-puns struct Lisp_Vector * with many other
19994 types. To fix this problem, this patch adds a new type struct
19995 vectorlike_header that documents the constraints on layout of vectors
19996 and pseudovectors, and helps optimizing compilers not get fooled
19997 by Emacs's type punning. It also adds the macros XSETTYPED_PVECTYPE
19998 XSETTYPED_PSEUDOVECTOR, TYPED_PSEUDOVECTORP, for similar reasons.
19999 * lisp.h (XSETTYPED_PVECTYPE): New macro, specifying the name of
20000 the size member.
20001 (XSETPVECTYPE): Rewrite in terms of new macro.
20002 (XSETPVECTYPESIZE): New macro, specifying both type and size.
20003 This is a bit clearer, and further avoids the possibility of
20004 undesirable aliasing.
20005 (XSETTYPED_PSEUDOVECTOR): New macro, specifying the size.
20006 (XSETPSEUDOVECTOR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR.
20007 (XSETSUBR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR and XSIZE,
20008 since Lisp_Subr is a special case (no "next" field).
20009 (ASIZE): Now uses header.size rather than size.
20010 All previous uses of XVECTOR (foo)->size replaced to use this macro,
20011 to avoid the hassle of writing XVECTOR (foo)->header.size.
20012 (struct vectorlike_header): New type.
20013 (TYPED_PSEUDOVECTORP): New macro, also specifying the C type of the
20014 object, to help avoid aliasing.
20015 (PSEUDOVECTORP): Rewrite in terms of TYPED_PSEUDOVECTORP.
20016 (SUBRP): Likewise, since Lisp_Subr is a special case.
20017 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table):
20018 (struct Lisp_Sub_Char_Table, struct Lisp_Bool_Vector):
20019 (struct Lisp_Hash_Table): Combine first two members into a single
20020 struct vectorlike_header member. All uses of "size" and "next" members
20021 changed to be "header.size" and "header.next".
20022 * buffer.h (struct buffer): Likewise.
20023 * font.h (struct font_spec, struct font_entity, struct font): Likewise.
20024 * frame.h (struct frame): Likewise.
20025 * process.h (struct Lisp_Process): Likewise.
20026 * termhooks.h (struct terminal): Likewise.
20027 * window.c (struct save_window_data, struct saved_window): Likewise.
20028 * window.h (struct window): Likewise.
20029 * alloc.c (allocate_buffer, Fmake_bool_vector, allocate_pseudovector):
20030 Use XSETPVECTYPESIZE, not XSETPVECTYPE, to avoid aliasing problems.
20031 * buffer.c (init_buffer_once): Likewise.
20032 * lread.c (defsubr): Use XSETTYPED_PVECTYPE, since Lisp_Subr is a
20033 special case.
20034 * process.c (Fformat_network_address): Use local var for size,
20035 for brevity.
20036
20037 * bytecode.c (exec_byte_code): Don't use XVECTOR before CHECK_VECTOR.
20038
20039 Make the Lisp reader and string-to-float more consistent (Bug#8525)
20040 * data.c (atof): Remove decl; no longer used or needed.
20041 (digit_to_number): Move to lread.c.
20042 (Fstring_to_number): Use new string_to_number function, to be
20043 consistent with how the Lisp reader treats infinities and NaNs.
20044 Do not assume that floating-point numbers represent EMACS_INT
20045 without losing information; this is not true on most 64-bit hosts.
20046 Avoid double-rounding errors, by insisting on integers when
20047 parsing non-base-10 numbers, as the documentation specifies.
20048 * lisp.h (string_to_number): New decl, replacing ...
20049 (isfloat_string): Remove.
20050 * lread.c: Include <inttypes.h>, for uintmax_t and strtoumax.
20051 (read1): Do not accept +. and -. as integers; this
20052 appears to have been a coding error. Similarly, do not accept
20053 strings like +-1e0 as floating point numbers. Do not report
20054 overflow for integer overflows unless the base is not 10 which
20055 means we have no simple and reliable way to continue.
20056 Break out the floating-point parsing into a new
20057 function string_to_number, so that Fstring_to_number parses
20058 floating point numbers consistently with the Lisp reader.
20059 (digit_to_number): Move here from data.c. Make it static inline.
20060 (E_CHAR, EXP_INT): Remove, replacing with ...
20061 (E_EXP): New macro, to solve the "1.0e+" problem mentioned below.
20062 (string_to_number): New function, replacing isfloat_string.
20063 This function checks for valid syntax and produces the resulting
20064 Lisp float number too. Rework it so that string-to-number
20065 no longer mishandles examples like "1.0e+". Use strtoumax,
20066 so that overflow for non-base-10 numbers is reported only when
20067 there's no portable and simple way to convert to floating point.
20068
20069 * textprop.c (set_text_properties_1): Rewrite for clarity,
20070 and to avoid GCC warning about integer overflow.
20071
20072 * intervals.h (struct interval): Use EMACS_INT for members
20073 where EMACS_UINT might cause problems. See
20074 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html>.
20075 (CHECK_TOTAL_LENGTH): Remove cast to EMACS_INT; no longer needed.
20076 * intervals.c (interval_deletion_adjustment): Now returns EMACS_INT.
20077 All uses changed.
20078 (offset_intervals): Tell GCC not to worry about length overflow
20079 when negating a negative length.
20080
20081 * alloc.c (overrun_check_malloc, overrun_check_realloc): Now static.
20082 (overrun_check_free): Likewise.
20083
20084 * alloc.c (SDATA_SIZE) [!GC_CHECK_STRING_BYTES]: Avoid runtime check
20085 in the common case where SDATA_DATA_OFFSET is a multiple of Emacs
20086 word size.
20087
20088 * gnutls.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
20089 (gnutls_make_error): Rename local to avoid shadowing.
20090 (gnutls_emacs_global_deinit): ifdef out; not used.
20091 (Fgnutls_boot): Use const for pointer to readonly storage.
20092 Comment out unused local. Fix pointer signedness problems.
20093
20094 * lread.c (openp): Don't stuff size_t into an 'int'.
20095 Use <= on length, not < on length + 1, to avoid GCC 4.6.0 warning
20096 about possible signed overflow.
20097
20098 * gtkutil.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
20099 (GDK_KEY_g): Don't define if already defined.
20100 (xg_prepare_tooltip): Avoid pointer signedness problem.
20101 (xg_set_toolkit_scroll_bar_thumb): Redo to avoid two casts.
20102
20103 * process.c (Fnetwork_interface_info): Avoid left-shift undefined
20104 behavior with 1 << 31. GCC 4.6.0 warns about this on 32-bit hosts.
20105
20106 * xfns.c (Fx_window_property): Simplify a bit,
20107 to make a bit faster and to avoid GCC 4.6.0 warning.
20108 * xselect.c (x_get_window_property, x_handle_dnd_message): Likewise.
20109
20110 * fns.c (internal_equal): Don't assume size_t fits in int.
20111
20112 * alloc.c (compact_small_strings): Tighten assertion a little.
20113
20114 Replace pEd with more-general pI, and fix some printf arg casts.
20115 * lisp.h (pI): New macro, generalizing old pEd macro to other
20116 conversion specifiers. For example, use "...%"pI"d..." rather
20117 than "...%"pEd"...".
20118 (pEd): Remove. All uses replaced with similar uses of pI.
20119 * m/amdx86-64.h, m/ia64.h, m/ibms390x.h: Likewise.
20120 * alloc.c (check_pure_size): Don't overflow by converting size to int.
20121 * bidi.c (bidi_dump_cached_states): Use pI to avoid cast.
20122 * data.c (Fnumber_to_string): Use pI instead of if-then-else-abort.
20123 * dbusbind.c (xd_append_arg): Use pI to avoid cast.
20124 (Fdbus_method_return_internal, Fdbus_method_error_internal): Likewise.
20125 * font.c (font_unparse_xlfd): Avoid potential buffer overrun on
20126 64-bit hosts.
20127 (font_unparse_xlfd, font_unparse_fcname): Use pI to avoid casts.
20128 * keyboard.c (record_char, modify_event_symbol): Use pI to avoid casts.
20129 * print.c (safe_debug_print, print_object): Likewise.
20130 (print_object): Don't overflow by converting EMACS_INT or EMACS_UINT
20131 to int.
20132 Use pI instead of if-then-else-abort. Use %p to avoid casts,
20133 avoiding the 0 flag, which is not portable.
20134 * process.c (Fmake_network_process): Use pI to avoid cast.
20135 * region-cache.c (pp_cache): Likewise.
20136 * xdisp.c (decode_mode_spec): Likewise.
20137 * xrdb.c (x_load_resources) [USE_MOTIF]: Use pI to avoid undefined
20138 behavior on 64-bit hosts with printf arg.
20139 * xselect.c (x_queue_event): Use %p to avoid casts, avoiding 0 flag.
20140 (x_stop_queuing_selection_requests): Likewise.
20141 (x_get_window_property): Don't truncate byte count to an 'int'
20142 when tracing.
20143
20144 * frame.c (frame_name_fnn_p): Get rid of strtol, which isn't right
20145 here, since it parses constructs like leading '-' and spaces,
20146 which are not wanted; and it overflows with large numbers.
20147 Instead, simply match F[0-9]+, which is what is wanted anyway.
20148
20149 * alloc.c: Remove unportable assumptions about struct layout.
20150 (SDATA_SELECTOR, SDATA_DATA_OFFSET): New macros.
20151 (SDATA_OF_STRING, SDATA_SIZE, allocate_string_data):
20152 (allocate_vectorlike, make_pure_vector): Use the new macros,
20153 plus offsetof, to remove unportable assumptions about struct layout.
20154 These assumptions hold on all porting targets that I know of, but
20155 they are not guaranteed, they're easy to remove, and removing them
20156 makes further changes easier.
20157
20158 * alloc.c (BLOCK BYTES): Fix typo by changing "ablock" to "ablocks".
20159 This doesn't fix a bug but makes the code clearer.
20160 (string_overrun_cookie): Now const. Use initializers that
20161 don't formally overflow signed char, to avoid warnings.
20162 (allocate_string_data) [GC_CHECK_STRING_OVERRUN]: Fix typo that
20163 can cause Emacs to crash when string overrun checking is enabled.
20164 (allocate_buffer): Don't assume sizeof (struct buffer) is a
20165 multiple of sizeof (EMACS_INT); it need not be, if
20166 alignof(EMACS_INT) < sizeof (EMACS_INT).
20167 (check_sblock, check_string_bytes, check_string_free_list): Protoize.
20168
20169 2011-04-26 Juanma Barranquero <lekktu@gmail.com>
20170
20171 * keyboard.c (QCrtl): Rename from Qrtl. All uses changed.
20172
20173 2011-04-26 Teodor Zlatanov <tzz@lifelogs.com>
20174
20175 * gnutls.c (emacs_gnutls_handshake): Return an error if we're not
20176 supposed to be handshaking. (Bug#8556)
20177 Reported by Paul Eggert <eggert@cs.ucla.edu>.
20178
20179 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
20180
20181 * lisp.h (Qdebug): List symbol.
20182 * eval.c (Qdebug): Restore global linkage.
20183 * keyboard.c (debug-on-event): New variable.
20184 (handle_user_signal): Break into debugger when debug-on-event
20185 matches the current signal symbol.
20186
20187 2011-04-25 Dan Nicolaescu <dann@ics.uci.edu>
20188
20189 * alloc.c (check_sblock, check_string_bytes)
20190 (check_string_free_list): Convert to standard C.
20191
20192 2011-04-25 Teodor Zlatanov <tzz@lifelogs.com>
20193
20194 * w32.c (emacs_gnutls_push): Fix typo.
20195
20196 2011-04-25 Eli Zaretskii <eliz@gnu.org>
20197
20198 * gnutls.c (emacs_gnutls_handshake): Avoid compiler warnings about
20199 "cast to pointer from integer of different size".
20200
20201 Improve doprnt and its use in verror. (Bug#8545)
20202 * doprnt.c (doprnt): Document the set of format control sequences
20203 supported by the function. Use SAFE_ALLOCA instead of always
20204 using `alloca'.
20205
20206 * eval.c (verror): Don't limit the buffer size at size_max-1, that
20207 is one byte too soon. Don't use xrealloc; instead xfree and
20208 xmalloc anew.
20209
20210 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
20211
20212 * gnutls.h: Add GNUTLS_STAGE_CALLBACKS enum to denote we're in the
20213 callbacks stage.
20214
20215 * gnutls.c: Renamed global_initialized to
20216 gnutls_global_initialized. Added internals for the
20217 :verify-hostname-error, :verify-error, and :verify-flags
20218 parameters of `gnutls-boot' and documented those parameters in the
20219 docstring. Start callback support.
20220 (emacs_gnutls_handshake): Add Woe32 support. Retry handshake
20221 unless a fatal error occurred. Call gnutls_alert_send_appropriate
20222 on error. Return error code.
20223 (emacs_gnutls_write): Call emacs_gnutls_handle_error.
20224 (emacs_gnutls_read): Likewise.
20225 (Fgnutls_boot): Return handshake error code.
20226 (emacs_gnutls_handle_error): New function.
20227 (wsaerror_to_errno): Likewise.
20228
20229 * w32.h (emacs_gnutls_pull): Add prototype.
20230 (emacs_gnutls_push): Likewise.
20231
20232 * w32.c (emacs_gnutls_pull): New function for GnuTLS on Woe32.
20233 (emacs_gnutls_push): Likewise.
20234
20235 2011-04-24 Claudio Bley <claudio.bley@gmail.com> (tiny change)
20236
20237 * process.c (wait_reading_process_output): Check if GnuTLS
20238 buffered some data internally if no FDs are set for TLS
20239 connections.
20240
20241 * makefile.w32-in (OBJ2): Add gnutls.$(O).
20242 (LIBS): Link to USER_LIBS.
20243 ($(BLD)/gnutls.$(0)): New target.
20244
20245 2011-04-24 Eli Zaretskii <eliz@gnu.org>
20246
20247 * xdisp.c (handle_single_display_spec): Rename the
20248 display_replaced_before_p argument into display_replaced_p, to
20249 make it consistent with the commentary. Fix typos in the
20250 commentary.
20251
20252 * textprop.c (syms_of_textprop): Remove dead code.
20253 (copy_text_properties): Delete obsolete commentary about an
20254 interface that was deleted long ago. Fix typos in the description
20255 of arguments.
20256
20257 * msdos.c (XMenuActivate, XMenuAddSelection): Adjust argument list
20258 to changes in oldXMenu/XMenu.h from 2011-04-16.
20259 <menu_help_message, prev_menu_help_message>: Constify.
20260 (IT_menu_make_room): menu->help_text is now `const char **';
20261 adjust.
20262
20263 * msdos.h (XMenuActivate, XMenuAddSelection): Adjust prototypes
20264 to changes in oldXMenu/XMenu.h from 2011-04-16.
20265 (struct XMenu): Declare `help_text' `const char **'.
20266
20267 * xfaces.c <Qunspecified>: Make extern again.
20268
20269 * syntax.c: Include sys/types.h before including regex.h, as
20270 required by POSIX.
20271
20272 * doc.c (get_doc_string): Improve the format passed to `error'.
20273
20274 * doprnt.c (doprnt): Improve commentary.
20275
20276 * term.c (init_tty) [MSDOS]: Fix 1st argument to maybe_fatal.
20277
20278 * Makefile.in (TAGS): Depend on $(M_FILE) and $(S_FILE), and scan
20279 them with etags.
20280
20281 * makefile.w32-in (globals.h): Add a dummy recipe, to make any
20282 changes in globals.h immediately force recompilation.
20283 (TAGS): Depend on $(CURDIR)/m/intel386.h and
20284 $(CURDIR)/s/ms-w32.h.
20285 (TAGS-gmake): Scan $(CURDIR)/m/intel386.h and $(CURDIR)/s/ms-w32.h.
20286
20287 * character.c (Fchar_direction): Function deleted.
20288 (syms_of_character): Don't defsubr it.
20289 <char-direction-table>: Deleted.
20290
20291 2011-04-23 Eli Zaretskii <eliz@gnu.org>
20292
20293 Fix doprnt so it could be used again safely in `verror'. (Bug#8435)
20294 * doprnt.c: Include limits.h.
20295 (SIZE_MAX): New macro.
20296 (doprnt): Return a size_t value. 2nd arg is now size_t.
20297 Many local variables are now size_t instead of int or unsigned.
20298 Improve overflow protection. Support `l' modifier for integer
20299 conversions. Support %l conversion. Don't assume an EMACS_INT
20300 argument for integer conversions and for %c.
20301
20302 * lisp.h (doprnt): Restore prototype.
20303
20304 * makefile.w32-in ($(BLD)/callint.$(O)): Depend on
20305 $(SRC)/character.h.
20306
20307 * Makefile.in (base_obj): Add back doprnt.o.
20308
20309 * deps.mk (doprnt.o): Add back prerequisites.
20310 (callint.o): Depend on character.h.
20311
20312 * eval.c (internal_lisp_condition_case): Include the handler
20313 representation in the error message.
20314 (verror): Call doprnt instead of vsnprintf. Fix an off-by-one bug
20315 when breaking from the loop.
20316
20317 * xdisp.c (vmessage): Call doprnt instead of vsnprintf.
20318
20319 * callint.c (Fcall_interactively): When displaying error message
20320 about invalid control letter, pass the character's codepoint, not
20321 a pointer to its multibyte form. Improve display of the character
20322 in octal and display also its hex code.
20323
20324 * character.c (char_string): Use %x to display the (unsigned)
20325 codepoint of an invalid character, to avoid displaying a bogus
20326 negative value.
20327
20328 * font.c (check_otf_features): Pass SDATA of SYMBOL_NAME to
20329 `error', not SYMBOL_NAME itself.
20330
20331 * coding.c (Fencode_sjis_char, Fencode_big5_char): Use %c for
20332 character arguments to `error'.
20333
20334 * charset.c (check_iso_charset_parameter): Fix incorrect argument
20335 to `error' in error message about FINAL_CHAR argument. Make sure
20336 FINAL_CHAR is a character, and use %c when it is passed as
20337 argument to `error'.
20338
20339 2011-04-23 Eli Zaretskii <eliz@gnu.org>
20340
20341 * s/ms-w32.h (localtime): Redirect to sys_localtime.
20342
20343 * w32.c: Include <time.h>.
20344 (sys_localtime): New function.
20345
20346 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
20347
20348 * xdisp.c (init_xdisp): Initialize echo_area_window (Bug#6451).
20349
20350 * buffer.c (syms_of_buffer): Doc fix (Bug#6902).
20351
20352 2011-04-23 Samuel Thibault <sthibault@debian.org> (tiny change)
20353
20354 * sysdep.c (wait_for_termination): On GNU Hurd, kill returns -1 on
20355 zombies (Bug#8467).
20356
20357 2011-04-19 Eli Zaretskii <eliz@gnu.org>
20358
20359 * syntax.h (SETUP_SYNTAX_TABLE_FOR_OBJECT): Fix setting of
20360 gl_state.e_property when gl_state.object is Qt.
20361
20362 * insdel.c (make_gap_larger): Remove limitation of buffer size
20363 to <= INT_MAX.
20364
20365 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
20366
20367 * xdisp.c (lookup_glyphless_char_display)
20368 (produce_glyphless_glyph): Handle cons cell entry in
20369 glyphless-char-display.
20370 (Vglyphless_char_display): Document it.
20371
20372 * term.c (produce_glyphless_glyph): Handle cons cell entry in
20373 glyphless-char-display.
20374
20375 2011-04-17 Chong Yidong <cyd@stupidchicken.com>
20376
20377 * xdisp.c (get_next_display_element): Remove unnecessary ifdefs.
20378
20379 * termhooks.h (FRAME_WINDOW_P): Remove duplicated definitions.
20380
20381 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): Add missing
20382 definition for no-X builds.
20383
20384 2011-04-16 Paul Eggert <eggert@cs.ucla.edu>
20385
20386 Static checks with GCC 4.6.0 and non-default toolkits.
20387
20388 * s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF): Protoize decl.
20389
20390 * process.c (keyboard_bit_set): Define only if SIGIO.
20391 (send_process_trap): Mark it with NO_RETURN if it doesn't return.
20392 (send_process): Repair possible setjmp clobbering.
20393
20394 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Don't pass extra arg to 'fatal'.
20395
20396 * eval.c: Include <stdio.h>, for vsnprintf on non-GNU/Linux hosts.
20397
20398 * data.c (arith_error): Mark with NO_RETURN if it doesn't return.
20399
20400 * alloc.c (bytes_used_when_full, SPARE_MEMORY, BYTES_USED):
20401 Define only if needed.
20402
20403 * sysdep.c (_FILE_OFFSET_BITS): Make this hack even uglier
20404 by pacifying GCC about it. Maybe it's time to retire it?
20405 * xfaces.c (USG, __TIMEVAL__): Likewise.
20406
20407 * dispextern.h (struct redisplay_interface): Rename param
20408 to avoid shadowing.
20409 * termhooks.h (struct terminal): Likewise.
20410 * xterm.c (xembed_send_message): Likewise.
20411
20412 * insdel.c (make_gap_smaller): Define only if
20413 USE_MMAP_FOR_BUFFERS || REL_ALLOC || DOUG_LEA_MALLOC.
20414
20415 * keyboard.c (read_char): Make a var volatile so longjmp won't clobber
20416 it.
20417
20418 * emacs.c (MAX_HEAP_BSS_DIFF, my_edata): Move to where they're used,
20419 so that we aren't warned about unused symbols.
20420
20421 * xfns.c (Fx_file_dialog): Rename local to avoid shadowing.
20422
20423 * xdisp.c (x_produce_glyphs): Mark var as initialized (Bug#8512).
20424
20425 * xfns.c (x_real_positions): Mark locals as initialized.
20426
20427 * xmenu.c (xmenu_show): Don't use uninitialized vars.
20428
20429 * xterm.c: Fix problems found by static analysis with other toolkits.
20430 (toolkit_scroll_bar_interaction): Define and use only if USE_X_TOOLKIT.
20431 (x_dispatch_event): Declare static if USE_GTK, and
20432 define if USE_GTK || USE_X_TOOLKIT.
20433 (SET_SAVED_BUTTON_EVENT): Define only if USE_X_TOOLKIT || USE_GTK.
20434 * xterm.h (x_dispatch_event): Extern only if USE_X_TOOLKIT.
20435 * xterm.c, xterm.h (x_mouse_leave): Bring this function back, but only
20436 if defined HAVE_MENUS && !defined USE_X_TOOLKIT && !defined USE_GTK.
20437
20438 * xmenu.c (menu_help_callback): Pointer type fixes.
20439 Use const pointers when pointing at readonly data. Avoid pointer
20440 signedness clashes.
20441 (FALSE): Remove unused macro.
20442 (update_frame_menubar): Remove unused decl.
20443
20444 * xfns.c (Fx_hide_tip): Move locals to avoid shadowing.
20445
20446 * menu.c (push_submenu_start, push_submenu_end): Do not define unless
20447 USE_X_TOOLKIT || USE_GTK || HAVE_NS || defined HAVE_NTGUI.
20448 (single_menu_item): Rename local to avoid shadowing.
20449
20450 * keyboard.c (make_lispy_event): Remove unused local var.
20451
20452 * frame.c, frame.h (x_get_resource_string): Bring this back, but
20453 only if HAVE_X_WINDOWS && !USE_X_TOOLKIT.
20454
20455 * bitmaps: Change bitmaps from unsigned char back to the X11
20456 compatible char. Avoid the old compiler warnings about
20457 out-of-range initializers by using, for example, '\xab' rather
20458 than 0xab.
20459
20460 * xgselect.c (xgselect_initialize): Check vs interface
20461 even if ! (defined (USE_GTK) || defined (HAVE_GCONF)).
20462
20463 * xmenu.c (xmenu_show): Rename parm to avoid shadowing.
20464
20465 * xterm.c (x_create_toolkit_scroll_bar): Use const * for pointers
20466 to read-only memory.
20467
20468 * fns.c (vector): Remove; this old hack is no longer needed.
20469
20470 * xsmfns.c (create_client_leader_window): Rename shadowing arg.
20471 Remove unused var.
20472 (gdk_x11_set_sm_client_id) [!USE_GTK]: Don't define.
20473
20474 * xrdb.c (x_load_resources): Omit unused local.
20475
20476 * xfns.c (free_frame_menubar, atof): Remove duplicate decls.
20477 (x_window): Rename locals to avoid shadowing.
20478 (USG): Use the kludged USG macro, to pacify gcc.
20479
20480 * xterm.c (x_alloc_nearest_color_for_widget): Remove; unused.
20481 (x_term_init): Remove local to avoid shadowing.
20482
20483 * xfns.c, xterm.c (_XEditResCheckMessages): Protoize decl.
20484
20485 * xdisp.c, dispextern.h (set_vertical_scroll_bar): Now extern if
20486 USE_TOOLKIT_SCROLL_BARS && !USE_GTK, as xterm.c needs it then.
20487
20488 2011-04-16 Eli Zaretskii <eliz@gnu.org>
20489
20490 * gnutls.c (Fgnutls_boot): Don't pass Lisp_Object to `error'.
20491
20492 Fix regex.c, syntax.c and friends for buffers > 2GB.
20493 * syntax.h (struct gl_state_s): Declare character position members
20494 EMACS_INT.
20495
20496 * syntax.c (update_syntax_table): Declare 2nd argument EMACS_INT.
20497
20498 * textprop.c (verify_interval_modification, interval_of):
20499 Declare arguments EMACS_INT.
20500
20501 * intervals.c (adjust_intervals_for_insertion): Declare arguments
20502 EMACS_INT.
20503
20504 * intervals.h (CHECK_TOTAL_LENGTH): Cast to EMACS_INT, not `int'.
20505
20506 * indent.c (Fvertical_motion): Local variable it_start is now
20507 EMACS_INT.
20508
20509 * regex.c (re_match, re_match_2, re_match_2_internal)
20510 (bcmp_translate, regcomp, regexec, print_double_string)
20511 (group_in_compile_stack, re_search, re_search_2, regex_compile)
20512 (re_compile_pattern, re_exec): Declare arguments and local
20513 variables `size_t' and `ssize_t' and return values `regoff_t', as
20514 appropriate.
20515 (POP_FAILURE_REG_OR_COUNT) <pfreg>: Declare `long'.
20516 (CHECK_INFINITE_LOOP) <failure>: Declare `ssize_t'.
20517 <compile_stack_type>: `size' and `avail' are now `size_t'.
20518
20519 * regex.h <regoff_t>: Use ssize_t, not int.
20520 (re_search, re_search_2, re_match, re_match_2): Arguments that
20521 specify buffer/string position and length are now ssize_t and
20522 size_t. Return type is regoff_t.
20523
20524 2011-04-16 Ben Key <bkey76@gmail.com>
20525
20526 * nsfont.m: Fixed bugs in ns_get_family and
20527 ns_descriptor_to_entity that were caused by using free to
20528 deallocate memory blocks that were allocated by xmalloc (via
20529 xstrdup). This caused Emacs to crash when compiled with
20530 XMALLOC_OVERRUN_CHECK defined (when Emacs was configured with
20531 --enable-checking=xmallocoverrun). xfree is now used to
20532 deallocate these memory blocks.
20533
20534 2011-04-15 Paul Eggert <eggert@cs.ucla.edu>
20535
20536 * sysdep.c (emacs_read): Remove unnecessary check vs MAX_RW_COUNT.
20537
20538 emacs_write: Accept and return EMACS_INT for sizes.
20539 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html
20540 et seq.
20541 * gnutls.c, gnutls.h (emacs_gnutls_read, emacs_gnutls_write):
20542 Accept and return EMACS_INT.
20543 (emacs_gnutls_write): Return the number of bytes written on
20544 partial writes.
20545 * sysdep.c, lisp.h (emacs_read, emacs_write): Likewise.
20546 (emacs_read, emacs_write): Remove check for negative size, as the
20547 Emacs source code has been audited now.
20548 * sysdep.c (MAX_RW_COUNT): New macro, to work around kernel bugs.
20549 (emacs_read, emacs_write): Use it.
20550 * process.c (send_process): Adjust to the new signatures of
20551 emacs_write and emacs_gnutls_write. Do not attempt to store
20552 a byte offset into an 'int'; it might overflow.
20553 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00483.html
20554
20555 * sound.c: Don't assume sizes fit in 'int'.
20556 (struct sound_device.period_size, alsa_period_size):
20557 Return EMACS_INT, not int.
20558 (struct sound_device.write, vox_write, alsa_write):
20559 Accept EMACS_INT, not int.
20560 (wav_play, au_play): Use EMACS_INT to store sizes and to
20561 record read return values.
20562
20563 2011-04-15 Ben Key <bkey76@gmail.com>
20564
20565 * keyboard.c (Qundefined): Don't declare static since it is used
20566 in nsfns.m.
20567 * xfaces.c (Qbold, Qexpanded, Qitalic, Qcondensed): Don't declare
20568 static since they are used in nsfont.m.
20569
20570 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
20571
20572 * process.c (Qprocessp): Don't declare static.
20573 * lisp.h (Qprocessp): Declare again.
20574
20575 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
20576
20577 * font.c (Qopentype): Don't make static (used from w32uniscribe.c).
20578
20579 2011-04-14 Paul Eggert <eggert@cs.ucla.edu>
20580
20581 Improve C-level modularity by making more things 'static'.
20582
20583 Don't publish debugger-only interfaces to other modules.
20584 * lisp.h (safe_debug_print, debug_output_compilation_hack):
20585 (verify_bytepos, count_markers): Move decls to the only modules
20586 that need them.
20587 * region-cache.h (pp_cache): Likewise.
20588 * window.h (check_all_windows): Likewise.
20589 * marker.c, print.c, region-cache.c, window.c: Decls moved here.
20590
20591 * sysdep.c (croak): Now static, if
20592 defined TIOCNOTTY || defined USG5 || defined CYGWIN.
20593 * syssignal.h (croak): Declare only if not static.
20594
20595 * alloc.c (refill_memory_reserve): Now static if
20596 !defined REL_ALLOC || defined SYSTEM_MALLOC.
20597 * lisp.h (refill_memory_reserve): Declare only if not static.
20598
20599 * xsettings.c, xsettings.h (xsettings_get_system_normal_font):
20600 Define only if USE_LUCID.
20601
20602 * xrdb.c (x_customization_string, x_rm_string): Now static.
20603
20604 * xmenu.c (x_menu_wait_for_event): Export only if USE_MOTIF.
20605 * xterm.h (x_menu_wait_for_event): Declare only if USE_MOTIF.
20606
20607 * xdisp.c (draw_row_with_mouse_face): Now static.
20608 * dispextern.h (draw_row_with_mouse_fave): Remove decl.
20609
20610 * window.h (check_all_windows): Mark externally visible.
20611
20612 * window.c (window_deletion_count): Now static.
20613
20614 * undo.c: Make symbols static if they're not exported.
20615 (last_undo_buffer, last_boundary_position, pending_boundary):
20616 Now static.
20617
20618 * textprop.c (interval_insert_behind_hooks): Now static.
20619 (interval_insert_in_front_hooks): Likewise.
20620
20621 * term.c: Make symbols static if they're not exported.
20622 (tty_turn_off_highlight, get_tty_terminal, max_frame_cols):
20623 (max_frame_lines, tty_set_terminal_modes):
20624 (tty_reset_terminal_modes, tty_turn_off_highlight):
20625 (get_tty_terminal): Now static.
20626 (term_mouse_moveto): Do not define if HAVE_WINDOW_SYSTEM.
20627 * termhooks.h (term_mouse_moveto): Do not declare if
20628 HAVE_WINDOW_SYSTEM.
20629 * dispextern.h (tty_set_terminal_modes, tty_reset_terminal_modes):
20630 (tty_turn_off_highlight, get_tty_terminal): Remove decls.
20631
20632 * sysdep.c: Make symbols static if they're not exported.
20633 (emacs_get_tty, emacs_set_tty, old_fcntl_flags, old_fcntl_owner):
20634 Now static.
20635 (sigprocmask_set, full_mask): Remove; unused.
20636 (wait_debugging): Mark as visible.
20637 * syssignal.h (SIGFULLMASK, full_mask): Remove decls.
20638 * systty.h (emacs_get_tty, emacs_set_tty): Remove decls.
20639
20640 * syntax.c (syntax_temp): Define only if !__GNUC__.
20641
20642 * sound.c (current_sound_device, current_sound): Now static.
20643
20644 * search.c (searchbufs, searchbuf_head): Now static.
20645
20646 * scroll.c (scroll_cost): Remove; unused.
20647 * dispextern.h (scroll_cost): Remove decl.
20648
20649 * region-cache.h (pp_cache): Mark as externally visible.
20650
20651 * process.c: Make symbols static if they're not exported.
20652 (process_tick, update_tick, create_process, chan_process):
20653 (Vprocess_alist, proc_buffered_char, datagram_access):
20654 (fd_callback_data, send_process_frame, process_sent_to): Now static.
20655 (deactivate_process): Mark defn as static, as well as decl.
20656 * lisp.h (create_process): Remove decl.
20657 * process.h (chan_process, Vprocess_alist): Remove decls.
20658
20659 * print.c: Make symbols static if they're not exported.
20660 (print_depth, new_backquote_output, being_printed, print_buffer):
20661 (print_buffer_size, print_buffer_pos, print_buffer_pos_byte):
20662 (print_interval, print_number_index, initial_stderr_stream):
20663 Now static.
20664 * lisp.h (Fprinc): Remove decl.
20665 (debug_output_compilation_hack): Mark as externally visible.
20666
20667 * sysdep.c (croak): Move decl from here to syssignal.h.
20668 * syssignal.h (croak): Put it here, so the API can be checked when
20669 'croak' is called from dissociate_if_controlling_tty.
20670
20671 * minibuf.c: Make symbols static if they're not exported.
20672 (minibuf_save_list, choose_minibuf_frame): Now static.
20673 * lisp.h (choose_minibuf_frame): Remove decl.
20674
20675 * lisp.h (verify_bytepos, count_markers): Mark as externally visible.
20676
20677 * lread.c: Make symbols static if they're not exported.
20678 (read_objects, initial_obarray, oblookup_last_bucket_number):
20679 Now static.
20680 (make_symbol): Remove; unused.
20681 * lisp.h (initial_obarray, make_symbol): Remove decls.
20682
20683 * keyboard.c: Make symbols static if they're not exported.
20684 (single_kboard, recent_keys_index, total_keys, recent_keys):
20685 (this_command_key_count_reset, raw_keybuf, raw_keybuf_count):
20686 (this_single_command_key_start, echoing, last_auto_save):
20687 (read_key_sequence_cmd, dribble, recursive_edit_unwind):
20688 (command_loop, echo_now, keyboard_init_hook, help_char_p):
20689 (quit_throw_to_read_char, command_loop_2, top_level_1, poll_timer):
20690 (Vlispy_mouse_stem, double_click_count):
20691 Now static.
20692 (force_auto_save_soon): Define only if SIGDANGER.
20693 (ignore_mouse_drag_p): Now static if
20694 !defined HAVE_WINDOW_SYSTEM || defined USE_GTK || defined HAVE_NS.
20695 (print_help): Remove; unused.
20696 (stop_character, last_timer_event): Mark as externally visible.
20697 * keyboard.h (ignore_mouse_drag_p): Declare only if
20698 defined HAVE_WINDOW_SYSTEM && !defined USE_GTK && !defined HAVE_NS.
20699 (echo_now, help_char_p, quit_throw_to_read_char): Remove decls.
20700 * lisp.h (echoing): Remove decl.
20701 (force_auto_save_soon): Declare only if SIGDANGER.
20702 * xdisp.c (redisplay_window): Simplify code, to make it more
20703 obvious that ignore_mouse_drag_p is not accessed if !defined
20704 USE_GTK && !defined HAVE_NS.
20705
20706 * intervals.c: Make symbols static if they're not exported.
20707 (merge_properties_sticky, merge_interval_right, delete_interval):
20708 Now static.
20709 * intervals.h (merge_interval_right, delete_interval): Remove decls.
20710
20711 * insdel.c: Make symbols static if they're not exported.
20712 However, leave prepare_to_modify_buffer alone. It's never
20713 called from outside this function, but that appears to be a bug.
20714 (combine_after_change_list, combine_after_change_buffer):
20715 (adjust_after_replace, signal_before_change): Now static.
20716 (adjust_after_replace_noundo): Remove; unused.
20717 * lisp.h (adjust_after_replace, adjust_after_replace_noundo):
20718 (signal_before_change): Remove decls.
20719
20720 * indent.c (val_compute_motion, val_vmotion): Now static.
20721
20722 * image.c: Make symbols static if they're not exported.
20723 * dispextern.h (x_create_bitmap_from_xpm_data): Do not declare
20724 if USE_GTK.
20725 * image.c (x_create_bitmap_from_xpm_data): Do not define if USE_GTK.
20726 (xpm_color_cache, ct_table, ct_colors_allocated): Now static.
20727
20728 * fringe.c (standard_bitmaps): Now static.
20729 (max_used_fringe_bitmap): Now static, unless HAVE_NS.
20730
20731 * frame.c: Make symbols static if they're not exported.
20732 (x_report_frame_params, make_terminal_frame): Now static.
20733 (get_frame_param): Now static, unless HAVE_NS.
20734 (x_fullscreen_adjust): Define if WINDOWSNT, not if HAVE_WINDOW_SYSTEM.
20735 (x_get_resource_string): Remove; not used.
20736 * frame.h (make_terminal_frame, x_report_frame_params):
20737 (x_get_resource_string); Remove decls.
20738 (x_fullscreen_adjust): Declare only if WINDOWSNT.
20739 * lisp.h (get_frame_param): Declare only if HAVE_NS.
20740
20741 * font.c, fontset.c: Make symbols static if they're not exported.
20742 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): New macro.
20743 (FACE_SUITABLE_FOR_CHAR_P): Use it.
20744 * font.c (font_close_object): Now static.
20745 * font.h (font_close_object): Remove.
20746 * fontset.c (FONTSET_OBJLIST): Remove.
20747 (free_realized_fontset) #if-0 the body, which does nothing.
20748 (face_suitable_for_char_p): #if-0, as it's never called.
20749 * fontset.h (face_suitable_for_char_p): Remove decl.
20750 * xfaces.c (face_at_string_position):
20751 Use FACE_SUITABLE_FOR_ASCII_CHAR_P, not FACE_SUITABLE_FOR_CHAR_P,
20752 since 0 is always ASCII.
20753
20754 * fns.c (weak_hash_tables): Now static.
20755
20756 * fileio.c: Make symbols static if they're not exported.
20757 (auto_saving, auto_save_mode_bits, auto_save_error_occurred):
20758 (Vwrite_region_annotation_buffers): Now static.
20759
20760 * eval.c: Make symbols static if they're not exported.
20761 (backtrace_list, lisp_eval_depth, when_entered_debugger): Now static.
20762 * lisp.h (backtrace_list): Remove decl.
20763
20764 * emacs.c: Make symbols static if they're not exported.
20765 (malloc_state_ptr, malloc_using_checking, syms_of_emacs):
20766 (fatal_error_code, fatal_error_signal_hook, standard_args):
20767 Now static.
20768 (fatal_error_signal): Now static, unless FLOAT_CATCH_SIGKILL.
20769 (DEFINE_DUMMY_FUNCTION): Mark function as externally visible.
20770 (__CTOR_LIST__, __DTOR_LIST__): Now externally visible.
20771 * lisp.h (fatal_error_signal_hook): Remove decl.
20772 (fatal_error_signal): Declare only if FLOAT_CATCH_SIGKILL.
20773
20774 * editfns.c: Move a (normally-unused) function to its only use.
20775 * editfns.c, lisp.h (get_operating_system_release): Remove.
20776 * process.c (init_process) [DARWIN_OS]: Do it inline, as it is not
20777 worth the hassle of breaking this out.
20778
20779 * xterm.c: Make symbols static if they're not exported.
20780 (x_raise_frame, x_lower_frame, x_wm_set_window_state):
20781 (x_wm_set_icon_pixmap, x_initialize, XTread_socket_fake_io_error):
20782 (x_destroy_window, x_delete_display):
20783 Now static.
20784 (x_dispatch_event): Now static if ! (USE_MOTIF || USE_X_TOOLKIT).
20785 (x_mouse_leave): Remove; unused.
20786 * xterm.h (x_display_info_for_name, x_raise_frame, x_lower_frame):
20787 (x_destroy_window, x_wm_set_window_state, x_wm_set_icon_pixmap):
20788 (x_delete_display, x_initialize, x_set_border_pixel, x_screen_planes):
20789 Remove decls.
20790 (x_mouse_leave): Declare only if WINDOWSNT.
20791 (x_dispatch_event): Declare only if USE_MOTIF or USE_X_TOOLKIT.
20792 (xic_create_fontsetname): Declare only if HAVE_X_WINDOWS &&
20793 USE_X_TOOLKIT.
20794
20795 * ftxfont.c: Make symbols static if they're not exported.
20796 (ftxfont_driver): Export only if !defined HAVE_XFT && def8ined
20797 HAVE_FREETYPE.
20798 * font.h (ftxfont_driver): Likewise.
20799
20800 * xfns.c: Make symbols static if they're not exported.
20801 (x_last_font_name, x_display_info_for_name):
20802 (x_set_foreground_color, x_set_background_color, x_set_mouse_color):
20803 (x_set_cursor_color, x_set_border_pixel, x_set_border_color):
20804 (x_set_cursor_type, x_set_icon_type, x_set_icon_name):
20805 (x_set_scroll_bar_foreground, x_set_scroll_bar_background):
20806 (x_explicitly_set_name, x_set_title, xic_defaut_fontset, tip_timer):
20807 (last_show_tip_args): Now static.
20808 (xic_defaut_fontset, xic_create_fontsetname): Define only if
20809 defined HAVE_X_WINDOWS && defined USE_X_TOOLKIT
20810 (x_screen_planes): Remove; unused.
20811 * dispextern.h (x_screen_planes): Remove decl.
20812
20813 * dispnew.c: Make symbols static if they're not exported.
20814 * dispextern.h (redraw_garbaged_frames, scrolling):
20815 (increment_row_positions): Remove.
20816 * dispnew.c (new_glyph_matrix, increment_row_positions, scrolling):
20817 (delayed_size_change, glyph_matrix_count, glyph_pool_count):
20818 Now static.
20819 (redraw_garbaged_frames): Remove; unused.
20820
20821 * xfaces.c: Make symbols static if they're not exported.
20822 * dispextern.h (ascii_face_of_lisp_face, free_realized_face):
20823 Remove decls.
20824 * xterm.h (defined_color): Remove decls.
20825 (x_free_dpy_colors): Declare only if USE_X_TOOLKIT.
20826 * xfaces.c (tty_suppress_bold_inverse_default_colors_p):
20827 (menu_face_changed_default, defined_color, free_realized_face):
20828 (x_free_dpy_colors): Define only if USE_X_TOOLKIT.
20829 (ascii_face_of_lisp_face): Remove; unused.
20830
20831 * xdisp.c: Make symbols static if they're not exported.
20832 * dispextern.h (scratch_glyph_row, window_box_edges):
20833 (glyph_to_pixel_coords, set_cursor_from_row):
20834 (get_next_display_element, set_iterator_to_next):
20835 (highlight_trailing_whitespace, frame_to_window_pixel_xy):
20836 (show_mouse_face): Remove decls
20837 * frame.h (message_buf_print): Likewise.
20838 * lisp.h (pop_message, set_message, check_point_in_composition):
20839 Likewise.
20840 * xterm.h (set_vertical_scroll_bar): Likewise.
20841 * xdisp.c (list_of_error, Vmessage_stack, line_number_displayed):
20842 (message_buf_print, scratch_glyph_row, displayed_buffer):
20843 (set_iterator_to_next, pop_message, set_message, set_cursor_from_row):
20844 (get_next_display_element, show_mouse_face, window_box_edges):
20845 (frame_to_window_pixel_xy, check_point_in_composition):
20846 (set_vertical_scroll_bar, highlight_trailing_whitespace): Now static.
20847 (glyph_to_pixel_coords): Remove; unused.
20848
20849 * dired.c (file_name_completion): Now static.
20850
20851 * dbusbind.c (xd_in_read_queued_messages): Now static.
20852
20853 * lisp.h (circular_list_error, FOREACH): Remove; unused.
20854 * data.c (circular_list_error): Remove.
20855
20856 * commands.h (last_point_position, last_point_position_buffer):
20857 (last_point_position_window): Remove decls.
20858 * keyboard.c: Make these variables static.
20859
20860 * coding.h (coding, code_convert_region, encode_coding_gap):
20861 Remove decls.
20862 * coding.c (Vsjis_coding_system, Vbig5_coding_system):
20863 (iso_code_class, detect_coding, code_convert_region): Now static.
20864 (encode_coding_gap): Remove; unused.
20865
20866 * chartab.c (chartab_chars, chartab_bits): Now static.
20867
20868 * charset.h (charset_iso_8859_1): Remove decl.
20869 * charset.c (charset_iso_8859_1, charset_emacs, map_charset_for_dump):
20870 Now static.
20871
20872 * ccl.h (check_ccl_update, Vccl_program_table): Remove decls.
20873 * ccl.c (Vccl_program_table): Now static.
20874 (check_ccl_update): Remove; unused.
20875
20876 * category.c (SET_CATEGORY_SET, set_category_set): Move here.
20877 * category.h: ... from here.
20878 * category.c (check_category_table, set_category_set): Now static.
20879
20880 * casetab.c (Vascii_upcase_table, Vascii_eqv_table): Now static.
20881 * lisp.h: Remove these decls.
20882
20883 * buffer.c (buffer_count): Remove unused var.
20884
20885 * bidi.c (bidi_dump_cached_states): Mark as externally visible,
20886 so that it's not optimized away.
20887 (bidi_ignore_explicit_marks_for_paragraph_level): Likewise.
20888 * dispextern.h (bidi_dump_cached_states): Remove, since it's
20889 exported only to the debugger.
20890
20891 * atimer.c (alarm_signal_handler, run_all_atimers): Now static.
20892 * atimer.h (run_all_atimers): Remove; not exported.
20893
20894 font.c: Make copy_font_spec and merge_font_spec ordinary C functions.
20895 * font.c (copy_font_spec): Rename from Fcopy_font_spec, since it
20896 was inaccessible from Lisp.
20897 (merge_font_spec): Likewise, renaming from Fmerge_font_spec.
20898 * font.c, font.h, fontset.c, xfaces.c, xfont.c: Change all uses.
20899
20900 alloc.c: Import and export fewer symbols, and remove unused items.
20901 * lisp.h (suppress_checking, die): Declare only if ENABLE_CHECKING
20902 is defined.
20903 (suppress_checking): Add EXTERNALLY_VISIBLE attribute, so that
20904 it's not optimized away by whole-program optimization.
20905 (message_enable_multibyte, free_misc): Remove.
20906 (catchlist, handlerlist, mark_backtrace):
20907 Declare only if BYTE_MARK_STACK.
20908 (mark_byte_stack): Likewise, fixing a ifdef-vs-if typo.
20909 * alloc.c (pure): Export only if VIRT_ADDR_VARIES is defined.
20910 (message_enable_multibyte): Remove decl.
20911 (free_misc, interval_free_list, float_block, float_block_index):
20912 (n_float_blocks, float_free_list, cons_block, cons_block_index):
20913 (cons_free_list, last_marked_index):
20914 Now static.
20915 (suppress_checking, die): Define only if ENABLE_CHECKING is defined.
20916 * eval.c (catchlist, handlerlist): Export only if BYTE_MARK_STACK.
20917 (mark_backtrace): Define only if BYTE_MARK_STACK.
20918 * xdisp.c (message_enable_multibyte): Now static.
20919
20920 Declare Lisp_Object Q* variables to be 'static' if not exported.
20921 This makes it easier for human readers (and static analyzers)
20922 to see whether these variables are used from other modules.
20923 * alloc.c, buffer.c, bytecode.c, callint.c, casetab.c, category.c:
20924 * ccl.c, character.c, charset.c, cmds.c, coding.c, composite.c:
20925 * data.c, dbusbind.c, dired.c, editfns.c, eval.c, fileio.c, fns.c:
20926 * font.c, frame.c, fringe.c, ftfont.c, image.c, keyboard.c, keymap.c:
20927 * lread.c, macros.c, minibuf.c, print.c, process.c, search.c:
20928 * sound.c, syntax.c, textprop.c, window.c, xdisp.c, xfaces.c, xfns.c:
20929 * xmenu.c, xselect.c:
20930 Declare Q* vars static if they are not used in other modules.
20931 * ccl.h, character.h, charset.h, coding.h, composite.h, font.h:
20932 * frame.h, intervals.h, keyboard.h, lisp.h, process.h, syntax.h:
20933 Remove decls of unexported vars.
20934 * keyboard.h (EVENT_HEAD_UNMODIFIED): Remove now-unused macro.
20935
20936 * lisp.h (DEFINE_FUNC): Make sname 'static'.
20937
20938 Make Emacs functions such as Fatom 'static' by default.
20939 This makes it easier for human readers (and static analyzers)
20940 to see whether these functions can be called from other modules.
20941 DEFUN now defines a static function. To make the function external
20942 so that it can be used in other C modules, use the new macro DEFUE.
20943 * lisp.h (Funibyte_char_to_multibyte, Fsyntax_table_p):
20944 (Finit_image_library):
20945 (Feval_region, Fbacktrace, Ffetch_bytecode, Fswitch_to_buffer):
20946 (Ffile_executable_p, Fmake_symbolic_link, Fcommand_execute):
20947 (Fget_process, Fdocumentation_property, Fbyte_code, Ffile_attributes):
20948 Remove decls, since these functions are now static.
20949 (Funintern, Fget_internal_run_time): New decls, since these functions
20950 were already external.
20951
20952 * alloc.c, buffer.c, callint.c, callproc.c, casefiddle.c, casetab.c:
20953 * ccl.c, character.c, chartab.c, cmds.c, coding.c, data.c, dispnew.c:
20954 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, floatfns.c:
20955 * fns.c, font.c, fontset.c, frame.c, image.c, indent.c:
20956 * keyboard.c, keymap.c, lread.c:
20957 * macros.c, marker.c, menu.c, minibuf.c, print.c, process.c, search.c:
20958 * syntax.c, term.c, terminal.c, textprop.c, undo.c:
20959 * window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xsettings.c:
20960 Mark functions with DEFUE instead of DEFUN,
20961 if they are used in other modules.
20962 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): New forward
20963 decls for now-static functions.
20964 * buffer.h (Fdelete_overlay): Remove decl.
20965 * callproc.c (Fgetenv_internal): Mark as internal.
20966 * composite.c (Fremove_list_of_text_properties): Remove decl.
20967 (Fcomposition_get_gstring): New forward static decl.
20968 * composite.h (Fcomposite_get_gstring): Remove decl.
20969 * dired.c (Ffile_attributes): New forward static decl.
20970 * doc.c (Fdocumntation_property): New forward static decl.
20971 * eval.c (Ffetch_bytecode): New forward static decl.
20972 (Funintern): Remove extern decl; now in .h file where it belongs.
20973 * fileio.c (Fmake_symbolic_link): New forward static decl.
20974 * image.c (Finit_image_library): New forward static decl.
20975 * insdel.c (Fcombine_after_change_execute): Make forward decl static.
20976 * intervals.h (Fprevious_property_change):
20977 (Fremove_list_of_text_properties): Remove decls.
20978 * keyboard.c (Fthis_command_keys): Remove decl.
20979 (Fcommand_execute): New forward static decl.
20980 * keymap.c (Flookup_key): New forward static decl.
20981 (Fcopy_keymap): Now static.
20982 * keymap.h (Flookup_key): Remove decl.
20983 * process.c (Fget_process): New forward static decl.
20984 (Fprocess_datagram_address): Mark as internal.
20985 * syntax.c (Fsyntax_table_p): New forward static decl.
20986 (skip_chars): Remove duplicate decl.
20987 * textprop.c (Fprevious_property_change): New forward static decl.
20988 * window.c (Fset_window_fringes, Fset_window_scroll_bars):
20989 Now internal.
20990 (Fset_window_margins, Fset_window_vscroll): New forward static decls.
20991 * window.h (Fset_window_vscroll, Fset_window_margins): Remove decls.
20992
20993 * editfns.c (Fformat): Remove unreachable code.
20994
20995 2011-04-14 Andreas Schwab <schwab@linux-m68k.org>
20996
20997 * fileio.c (Finsert_file_contents): Fix typo in 2005-05-13
20998 change. (Bug#8496)
20999
21000 2011-04-13 Eli Zaretskii <eliz@gnu.org>
21001
21002 * xdisp.c (handle_invisible_prop): Don't call bidi_paragraph_init
21003 when at ZV. (Bug#8487)
21004
21005 2011-04-12 Andreas Schwab <schwab@linux-m68k.org>
21006
21007 * charset.c (Fclear_charset_maps): Use xfree instead of free.
21008 (Bug#8437)
21009 * keyboard.c (parse_tool_bar_item): Likewise.
21010 * sound.c (sound_cleanup, alsa_close): Likewise.
21011 * termcap.c (tgetent): Likewise.
21012 * xfns.c (x_default_font_parameter): Likewise.
21013 * xsettings.c (read_and_apply_settings): Likewise.
21014
21015 * alloc.c (overrun_check_malloc, overrun_check_realloc)
21016 (overrun_check_free): Protoize.
21017
21018 2011-04-12 Paul Eggert <eggert@cs.ucla.edu>
21019
21020 * sysdep.c (emacs_read, emacs_write): Check for negative sizes
21021 since callers should never pass a negative size.
21022 Change the signature to match that of plain 'read' and 'write'; see
21023 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00397.html>.
21024 * lisp.h: Update prototypes of emacs_write and emacs_read.
21025
21026 2011-04-11 Eli Zaretskii <eliz@gnu.org>
21027
21028 * xdisp.c (redisplay_window): Don't try to determine the character
21029 position of the scroll margin if the window start point w->startp
21030 is outside the buffer's accessible region. (Bug#8468)
21031
21032 2011-04-10 Eli Zaretskii <eliz@gnu.org>
21033
21034 Fix write-region and its subroutines for buffers > 2GB.
21035 * fileio.c (a_write, e_write): Modify declaration of arguments and
21036 local variables to support buffers larger than 2GB.
21037 (Fcopy_file): Use EMACS_INT for return value of emacs_read.
21038
21039 * sysdep.c (emacs_write, emacs_read): Use ssize_t for last
21040 argument, local variables, and return value.
21041
21042 * lisp.h: Update prototypes of emacs_write and emacs_read.
21043
21044 * sound.c (vox_write): Use ssize_t for return value of emacs_write.
21045
21046 2011-04-10 Paul Eggert <eggert@cs.ucla.edu>
21047
21048 * xdisp.c (vmessage): Use memchr, not strnlen, which some hosts lack.
21049
21050 Fix more problems found by GCC 4.6.0's static checks.
21051
21052 * xdisp.c (vmessage): Use a better test for character truncation.
21053
21054 * charset.c (load_charset_map): <, not <=, for optimization,
21055 and to avoid potential problems with integer overflow.
21056 * chartab.c (sub_char_table_set_range, char_table_set_range): Likewise.
21057 * casetab.c (set_identity, shuffle): Likewise.
21058 * editfns.c (Fformat): Likewise.
21059 * syntax.c (skip_chars): Likewise.
21060
21061 * xmenu.c (set_frame_menubar): Allocate smaller local vectors.
21062 This also lets GCC 4.6.0 generate slightly better loop code.
21063
21064 * callint.c (Fcall_interactively): <, not <=, for optimization.
21065 (Fcall_interactively): Count the number of arguments produced,
21066 not the number of arguments given. This is simpler and lets GCC
21067 4.6.0 generate slightly better code.
21068
21069 * ftfont.c: Distingish more carefully between FcChar8 and char.
21070 The previous code passed unsigned char * to a functions like
21071 strlen and xstrcasecmp that expect char *, which does not
21072 conform to the C standard.
21073 (get_adstyle_property, ftfont_pattern_entity): Use FcChar8 for
21074 arguments to FcPatternGetString, and explicitly cast FcChar8 * to
21075 char * when the C standard requires it.
21076
21077 * keyboard.c (read_char): Remove unused var.
21078
21079 * eval.c: Port to Windows vsnprintf (Bug#8435).
21080 Include <limits.h>.
21081 (SIZE_MAX): Define if the headers do not.
21082 (verror): Do not give up if vsnprintf returns a negative count.
21083 Instead, grow the buffer. This ports to Windows vsnprintf, which
21084 does not conform to C99. Problem reported by Eli Zaretskii.
21085 Also, simplify the allocation scheme, by avoiding the need for
21086 calling realloc, and removing the ALLOCATED variable.
21087
21088 * eval.c (verror): Initial buffer size is 4000 (not 200) bytes.
21089
21090 Remove invocations of doprnt, as Emacs now uses vsnprintf.
21091 But keep the doprint source code for now, as we might revamp it
21092 and use it again (Bug#8435).
21093 * lisp.h (doprnt): Remove.
21094 * Makefile.in (base_obj): Remove doprnt.o.
21095 * deps.mk (doprnt.o): Remove.
21096
21097 error: Print 32- and 64-bit integers portably (Bug#8435).
21098 Without this change, on typical 64-bit hosts error ("...%d...", N)
21099 was used to print both 32- and 64-bit integers N, which relied on
21100 undefined behavior.
21101 * lisp.h, m/amdx86-64.h, m/ia64.h, m/ibms390x.h (pEd): New macro.
21102 * lisp.h (error, verror): Mark as printf-like functions.
21103 * eval.c (verror): Use vsnprintf, not doprnt, to do the real work.
21104 Report overflow in size calculations when allocating printf buffer.
21105 Do not truncate output string at its first null byte.
21106 * xdisp.c (vmessage): Use vsnprintf, not doprnt, to do the real work.
21107 Truncate the output at a character boundary, since vsnprintf does not
21108 do that.
21109 * charset.c (check_iso_charset_parameter): Convert internal
21110 character to string before calling 'error', since %c now has the
21111 printf meaning.
21112 * coding.c (Fdecode_sjis_char, Fdecode_big5_char): Avoid int
21113 overflow when computing char to be passed to 'error'. Do not
21114 pass Lisp_Object to 'error'; pass the integer instead.
21115 * nsfns.m (Fns_do_applescript): Use int, not long, since it's
21116 formatted with plain %d.
21117
21118 * eval.c (internal_lisp_condition_case): Don't pass spurious arg.
21119
21120 * keyboard.c (access_keymap_keyremap): Print func name, not garbage.
21121
21122 * coding.c (Fdecode_sjis_char): Don't assume CODE fits in int.
21123
21124 * xterm.c (x_catch_errors): Remove duplicate declaration.
21125
21126 * term.c (maybe_fatal): Mark its 3rd arg as a printf format, too.
21127
21128 * xdisp.c, lisp.h (message_nolog): Remove; unused.
21129
21130 2011-04-10 Jim Meyering <meyering@redhat.com>
21131
21132 use ssize_t and size_t for read- and write-like emacs_gnutls_* functions
21133 * gnutls.c (emacs_gnutls_read): Adjust signature to be more read-like:
21134 return ssize_t not "int", and use size_t as the buffer length.
21135 (emacs_gnutls_write): Likewise, and make the buffer pointer "const".
21136 * gnutls.h: Update declarations.
21137 * process.c (read_process_output): Use ssize_t, to match.
21138 (send_process): Likewise.
21139
21140 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
21141
21142 * image.c (Fimagemagick_types): Doc fix, and comment cleanup.
21143
21144 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
21145
21146 * ftfont.c (get_adstyle_property, ftfont_pattern_entity):
21147 Use unsigned char, to match FcChar8 type definition.
21148
21149 * xterm.c (handle_one_xevent):
21150 * xmenu.c (create_and_show_popup_menu):
21151 * xselect.c (x_decline_selection_request)
21152 (x_reply_selection_request): Avoid type-punned deref of X events.
21153
21154 2011-04-09 Eli Zaretskii <eliz@gnu.org>
21155
21156 Fix some uses of `int' instead of EMACS_INT.
21157 * search.c (string_match_1, fast_string_match)
21158 (fast_c_string_match_ignore_case, fast_string_match_ignore_case)
21159 (scan_buffer, find_next_newline_no_quit)
21160 (find_before_next_newline, search_command, Freplace_match)
21161 (Fmatch_data): Make some `int' variables be EMACS_INT.
21162
21163 * xdisp.c (display_count_lines): 3rd argument and return value now
21164 EMACS_INT. All callers changed.
21165 (pint2hrstr): Last argument is now EMACS_INT.
21166
21167 * coding.c (detect_coding_utf_8, detect_coding_emacs_mule)
21168 (detect_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
21169 (detect_coding_ccl, detect_coding_charset, decode_coding_utf_8)
21170 (decode_coding_utf_16, decode_coding_emacs_mule)
21171 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
21172 (decode_coding_ccl, decode_coding_charset)
21173 <consumed_chars, consumed_chars_base>: Declare EMACS_INT.
21174 (decode_coding_iso_2022, decode_coding_emacs_mule)
21175 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
21176 <char_offset, last_offset>: Declare EMACS_INT.
21177 (encode_coding_utf_8, encode_coding_utf_16)
21178 (encode_coding_emacs_mule, encode_invocation_designation)
21179 (encode_designation_at_bol, encode_coding_iso_2022)
21180 (encode_coding_sjis, encode_coding_big5, encode_coding_ccl)
21181 (encode_coding_raw_text, encode_coding_charset) <produced_chars>:
21182 Declare EMACS_INT.
21183 (ASSURE_DESTINATION): Declare more_bytes EMACS_INT.
21184 (encode_invocation_designation): Last argument P_NCHARS is now
21185 EMACS_INT.
21186 (decode_eol): Declare pos_byte, pos, and pos_end EMACS_INT.
21187 (produce_chars): from_nchars and to_nchars are now EMACS_INT.
21188
21189 * coding.h (struct coding_system) <head_ascii>: Declare EMACS_INT.
21190 All users changed.
21191
21192 * ccl.c (Fccl_execute_on_string): Declare some variables
21193 EMACS_INT.
21194
21195 2011-04-08 Samuel Thibault <sthibault@debian.org> (tiny change)
21196
21197 * term.c (init_tty): Fix incorrect ifdef placement (Bug#8450).
21198
21199 2011-03-19 Christoph Scholtes <cschol2112@googlemail.com>
21200
21201 * process.c (Fformat_network_address): Doc fix.
21202
21203 2011-04-08 T.V. Raman <tv.raman.tv@gmail.com> (tiny change)
21204
21205 * xml.c (parse_region): Avoid creating spurious whitespace nodes.
21206
21207 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
21208
21209 * keyboard.c (read_char): Call Lisp function help-form-show,
21210 instead of using internal_with_output_to_temp_buffer.
21211 (Qhelp_form_show): New var.
21212 (syms_of_keyboard): Use DEFSYM macro.
21213
21214 * print.c (internal_with_output_to_temp_buffer): Function deleted.
21215
21216 * lisp.h (internal_with_output_to_temp_buffer): Remove prototype.
21217
21218 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
21219
21220 * process.c (Flist_processes): Remove to Lisp.
21221 (list_processes_1): Delete.
21222
21223 2011-04-06 Eli Zaretskii <eliz@gnu.org>
21224
21225 * msdos.c (careadlinkat, careadlinkatcwd): MS-DOS replacements.
21226
21227 * w32.c (careadlinkat, careadlinkatcwd): New always-fail stubs.
21228
21229 2011-04-06 Paul Eggert <eggert@cs.ucla.edu>
21230
21231 Fix more problems found by GCC 4.6.0's static checks.
21232
21233 * xmenu.c (Fx_popup_dialog): Don't assume string is free of formats.
21234
21235 * menu.c (Fx_popup_menu): Don't assume error_name lacks printf formats.
21236
21237 * lisp.h (message, message_nolog, fatal): Mark as printf-like.
21238
21239 * xdisp.c (vmessage): Mark as a printf-like function.
21240
21241 * term.c (vfatal, maybe_fatal): Mark as printf-like functions.
21242
21243 * sound.c (sound_warning): Don't crash if arg contains a printf format.
21244
21245 * image.c (tiff_error_handler, tiff_warning_handler): Mark as
21246 printf-like functions.
21247 (tiff_load): Add casts to remove these marks before passing them
21248 to system-supplied API.
21249
21250 * eval.c (Fsignal): Remove excess argument to 'fatal'.
21251
21252 * coding.c (EMIT_ONE_BYTE, EMIT_TWO_BYTES): Use unsigned, not int.
21253 This avoids several warnings with gcc -Wstrict-overflow.
21254 (DECODE_COMPOSITION_RULE): If the rule is invalid, goto invalid_code
21255 directly, rather than having caller test rule sign. This avoids
21256 some unnecessary tests.
21257 * composite.h (COMPOSITION_ENCODE_RULE_VALID): New macro.
21258 (COMPOSITION_ENCODE_RULE): Arguments now must be valid. This
21259 affects only one use, in DECODE_COMPOSITION_RULE, which is changed.
21260
21261 * xfont.c (xfont_text_extents): Remove var that was set but not used.
21262 (xfont_open): Avoid unnecessary tests.
21263
21264 * composite.c (composition_gstring_put_cache): Use unsigned integer.
21265
21266 * composite.h, composite.c (composition_gstring_put_cache):
21267 Use EMACS_INT, not int, for length.
21268
21269 * composite.h (COMPOSITION_DECODE_REFS): New macro,
21270 breaking out part of COMPOSITION_DECODE_RULE.
21271 (COMPOSITION_DECODE_RULE): Use it.
21272 * composite.c (get_composition_id): Remove unused local vars,
21273 by using the new macro.
21274
21275 * textprop.c (set_text_properties_1): Change while to do-while,
21276 since the condition is always true at first.
21277
21278 * intervals.c (graft_intervals_into_buffer): Mark var as used.
21279 (interval_deletion_adjustment): Return unsigned value.
21280 All uses changed.
21281
21282 * process.c (list_processes_1, create_pty, read_process_output):
21283 (exec_sentinel): Remove vars that were set but not used.
21284 (create_pty): Remove unnecessary "volatile"s.
21285 (Fnetwork_interface_info): Avoid possibility of int overflow.
21286 (read_process_output): Do adaptive read buffering even if carryover.
21287 (read_process_output): Simplify nbytes computation if buffered.
21288
21289 * bytecode.c (exec_byte_code): Rename local to avoid shadowing.
21290
21291 * syntax.c (scan_words): Remove var that was set but not used.
21292 (update_syntax_table): Use unsigned instead of int.
21293
21294 * lread.c (lisp_file_lexically_bound_p): Use ints rather than endptrs.
21295 (lisp_file_lexically_bound_p, read1): Use unsigned instead of int.
21296 (safe_to_load_p): Make the end-of-loop test the inverse of the in-loop.
21297
21298 * print.c (print_error_message): Avoid int overflow.
21299
21300 * font.c (font_list_entities): Redo for clarity,
21301 so that reader need not know FONT_DPI_INDEX + 1 == FONT_SPACING_INDEX.
21302
21303 * font.c (font_find_for_lface, Ffont_get_glyphs): Remove unused vars.
21304 (font_score): Avoid potential overflow in diff calculation.
21305
21306 * fns.c (substring_both): Remove var that is set but not used.
21307 (sxhash): Redo loop for clarity and to avoid wraparound warning.
21308
21309 * eval.c (funcall_lambda): Rename local to avoid shadowing.
21310
21311 * alloc.c (mark_object_loop_halt, mark_object): Use size_t, not int.
21312 Otherwise, GCC 4.6.0 optimizes the loop check away since the check
21313 can always succeed if overflow has undefined behavior.
21314
21315 * search.c (boyer_moore, wordify): Remove vars set but not used.
21316 (wordify): Omit three unnecessary tests.
21317
21318 * indent.c (MULTIBYTE_BYTES_WIDTH): Don't compute wide_column.
21319 All callers changed. This avoids the need for an unused var.
21320
21321 * casefiddle.c (casify_region): Remove var that is set but not used.
21322
21323 * dired.c (file_name_completion): Remove var that is set but not used.
21324
21325 * fileio.c (Finsert_file_contents): Make EOF condition clearer.
21326
21327 * fileio.c (Finsert_file_contents): Avoid signed integer overflow.
21328 (Finsert_file_contents): Remove unnecessary code checking fd.
21329
21330 * minibuf.c (read_minibuf_noninteractive): Use size_t for sizes.
21331 Check for integer overflow on size calculations.
21332
21333 * buffer.c (Fprevious_overlay_change): Remove var that is set
21334 but not used.
21335
21336 * keyboard.c (menu_bar_items, read_char_minibuf_menu_prompt):
21337 Remove vars that are set but not used.
21338 (timer_check_2): Don't assume timer-list and idle-timer-list are lists.
21339 (timer_check_2): Mark vars as initialized.
21340
21341 * gtkutil.c (xg_get_file_with_chooser): Mark var as initialized.
21342
21343 * image.c (lookup_image): Remove var that is set but not used.
21344 (xbm_load): Use parse_p, for gcc -Werror=unused-but-set-variable.
21345
21346 * fontset.c (Finternal_char_font, Ffontset_info): Remove vars
21347 that are set but not used.
21348
21349 * xfns.c (make_invisible_cursor): Don't return garbage
21350 if XCreateBitmapFromData fails (Bug#8410).
21351
21352 * xselect.c (x_get_local_selection, x_handle_property_notify):
21353 Remove vars that are set but not used.
21354
21355 * xfns.c (x_create_tip_frame): Remove var that is set but not used.
21356 (make_invisible_cursor): Initialize a possibly-uninitialized variable.
21357
21358 * xterm.c (x_scroll_bar_to_input_event) [!USE_GTK]:
21359 Remove var that is set but not used.
21360 (scroll_bar_windows_size): Now size_t, not int.
21361 (x_send_scroll_bar_event): Use size_t, not int, for sizes.
21362 Check for overflow.
21363
21364 * xfaces.c (realize_named_face): Remove vars that are set but not used.
21365 (map_tty_color) [!defined MSDOS]: Likewise.
21366
21367 * term.c (tty_write_glyphs): Use size_t; this avoids overflow warning.
21368
21369 * coding.c: Remove vars that are set but not used.
21370 (DECODE_COMPOSITION_RULE): Remove 2nd arg, which is unused.
21371 All callers changed.
21372 (decode_coding_utf_8, decode_coding_utf_16 decode_coding_emacs_mule):
21373 (decode_coding_iso_2022, encode_coding_sjis, encode_coding_big5):
21374 (decode_coding_charset): Remove vars that are set but not used.
21375
21376 * bytecode.c (Fbyte_code) [!defined BYTE_CODE_SAFE]: Remove var
21377 that is set but not used.
21378
21379 * print.c (print_object): Remove var that is set but not used.
21380
21381 Replace 2 copies of readlink code with 1 gnulib version (Bug#8401).
21382 The gnulib version avoids calling malloc in the usual case,
21383 and on 64-bit hosts doesn't have some arbitrary 32-bit limits.
21384 * fileio.c (Ffile_symlink_p): Use emacs_readlink.
21385 * filelock.c (current_lock_owner): Likewise.
21386 * lisp.h (READLINK_BUFSIZE, emacs_readlink): New function.
21387 * sysdep.c: Include allocator.h, careadlinkat.h.
21388 (emacs_no_realloc_allocator): New static constant.
21389 (emacs_readlink): New function.
21390 * deps.mk (sysdep.o): Depend on ../lib/allocator.h and on
21391 ../lib/careadlinkat.h.
21392
21393 2011-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
21394
21395 * keyboard.c (safe_run_hook_funcall): Fix last change (don't stop at the
21396 first non-nil return value).
21397
21398 2011-04-03 Jan Djärv <jan.h.d@swipnet.se>
21399
21400 * nsterm.m (ns_update_auto_hide_menu_bar): Define MAC_OS_X_VERSION_10_6
21401 if not defined (Bug#8403).
21402
21403 2011-04-02 Juanma Barranquero <lekktu@gmail.com>
21404
21405 * xdisp.c (display_count_lines): Remove parameter `start',
21406 unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
21407 (get_char_face_and_encoding): Remove parameter `multibyte_p',
21408 unused since 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
21409 (fill_stretch_glyph_string): Remove parameters `row' and `area',
21410 unused at least since Kim's GUI unification at 2003-03-16T20:45:46Z!storm@cua.dk
21411 and thereabouts. All callers changed.
21412 (get_per_char_metric): Remove parameter `f', unused since
21413 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
21414
21415 2011-04-02 Jim Meyering <meyering@redhat.com>
21416
21417 do not dereference NULL upon failed strdup
21418 * nsfont.m (ns_descriptor_to_entity): Use xstrdup, not strdup.
21419 (ns_get_family): Likewise.
21420
21421 2011-04-02 Juanma Barranquero <lekktu@gmail.com>
21422
21423 * eval.c (unwind_to_catch) [DEBUG_GCPRO]: Remove redundant assignment.
21424
21425 2011-04-02 Jan Djärv <jan.h.d@swipnet.se>
21426
21427 * nsterm.m (ns_update_auto_hide_menu_bar): Only for OSX 10.6 or
21428 later (Bug#8403).
21429
21430 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
21431
21432 Add lexical binding.
21433
21434 * window.c (Ftemp_output_buffer_show): New fun.
21435 (Fsave_window_excursion):
21436 * print.c (Fwith_output_to_temp_buffer): Move to subr.el.
21437
21438 * lread.c (lisp_file_lexically_bound_p): New function.
21439 (Fload): Bind Qlexical_binding.
21440 (readevalloop): Remove `evalfun' arg.
21441 Bind Qinternal_interpreter_environment.
21442 (Feval_buffer): Bind Qlexical_binding.
21443 (defvar_int, defvar_bool, defvar_lisp_nopro, defvar_kboard):
21444 Mark as dynamic.
21445 (syms_of_lread): Declare `lexical-binding'.
21446
21447 * lisp.h (struct Lisp_Symbol): New field `declared_special'.
21448
21449 * keyboard.c (eval_dyn): New fun.
21450 (menu_item_eval_property): Use it.
21451
21452 * image.c (parse_image_spec): Use Ffunctionp.
21453
21454 * fns.c (concat, mapcar1): Accept byte-code-functions.
21455
21456 * eval.c (Fsetq): Handle lexical vars.
21457 (Fdefun, Fdefmacro, Ffunction): Make closures when needed.
21458 (Fdefconst, Fdefvaralias, Fdefvar): Mark as dynamic.
21459 (FletX, Flet): Obey lexical binding.
21460 (Fcommandp): Handle closures.
21461 (Feval): New `lexical' arg.
21462 (eval_sub): New function extracted from Feval. Use it almost
21463 everywhere where Feval was used. Look up vars in lexical env.
21464 Handle closures.
21465 (Ffunctionp): Move from subr.el.
21466 (Ffuncall): Handle closures.
21467 (apply_lambda): Remove `eval_flags'.
21468 (funcall_lambda): Handle closures and new byte-code-functions.
21469 (Fspecial_variable_p): New function.
21470 (syms_of_eval): Initialize the Vinternal_interpreter_environment var,
21471 but without exporting it to Lisp.
21472
21473 * doc.c (Fdocumentation, store_function_docstring):
21474 * data.c (Finteractive_form): Handle closures.
21475
21476 * callint.c (Fcall_interactively): Preserve lexical-binding mode for
21477 interactive spec.
21478
21479 * bytecode.c (Bstack_ref, Bstack_set, Bstack_set2, BdiscardN):
21480 New byte-codes.
21481 (exec_byte_code): New function extracted from Fbyte_code to handle new
21482 calling convention for byte-code-functions. Add new byte-codes.
21483
21484 * buffer.c (defvar_per_buffer): Set new `declared_special' field.
21485
21486 * alloc.c (Fmake_symbol): Init new `declared_special' field.
21487
21488 2011-03-31 Juanma Barranquero <lekktu@gmail.com>
21489
21490 * xdisp.c (redisplay_internal): Fix prototype.
21491
21492 2011-03-31 Eli Zaretskii <eliz@gnu.org>
21493
21494 * xdisp.c (SCROLL_LIMIT): New macro.
21495 (try_scrolling): Use it when setting scroll_limit.
21496 Limit scrolling to 100 screen lines.
21497 (redisplay_window): Even when falling back on "recentering",
21498 position point in the window according to scroll-conservatively,
21499 scroll-margin, and scroll-*-aggressively variables. (Bug#6671)
21500
21501 (try_scrolling): When point is above the window, allow searching
21502 as far as scroll_max, or one screenful, to compute vertical
21503 distance from PT to the scroll margin position. This prevents
21504 try_scrolling from unnecessarily failing when
21505 scroll-conservatively is set to a value slightly larger than the
21506 window height. Clean up the case of PT below the margin at bottom
21507 of window: scroll_max can no longer be INT_MAX. When aggressive
21508 scrolling is in use, don't let point enter the opposite scroll
21509 margin as result of the scroll.
21510 (syms_of_xdisp) <scroll-conservatively>: Document the
21511 threshold of 100 lines for never-recentering scrolling.
21512
21513 2011-03-31 Juanma Barranquero <lekktu@gmail.com>
21514
21515 * dispextern.h (move_it_by_lines):
21516 * xdisp.c (move_it_by_lines): Remove parameter `need_y_p', unused
21517 since 2000-12-29T14:24:09Z!gerd@gnu.org. All callers changed.
21518 (message_log_check_duplicate): Remove parameters `prev_bol' and
21519 `this_bol', unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
21520 (redisplay_internal): Remove parameter `preserve_echo_area',
21521 unused since 1999-07-21T21:43:52Z!gerd@gnu.org. All callers changed.
21522
21523 * indent.c (Fvertical_motion):
21524 * window.c (window_scroll_pixel_based, Frecenter):
21525 Don't pass `need_y_p' to `move_it_by_lines'.
21526
21527 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
21528
21529 * eval.c (struct backtrace): Don't cheat with negative numbers, but do
21530 steal a few bits to be more compact.
21531 (interactive_p, Fbacktrace, Fbacktrace_frame, mark_backtrace):
21532 Remove unneeded casts.
21533
21534 * bytecode.c (Fbyte_code): CAR and CDR can GC.
21535
21536 2011-03-30 Zachary Kanfer <zkanfer@gmail.com> (tiny change)
21537
21538 * keyboard.c (Fexecute_extended_command): Do log the "suggest key
21539 binding" message (bug#7967).
21540
21541 2011-03-30 Paul Eggert <eggert@cs.ucla.edu>
21542
21543 Fix more problems found by GCC 4.6.0's static checks.
21544
21545 * unexelf.c (unexec) [! (defined _SYSTYPE_SYSV || defined __sgi)]:
21546 Remove unused local var.
21547
21548 * editfns.c (Fmessage_box): Remove unused local var.
21549
21550 * xdisp.c (try_window_reusing_current_matrix, x_produce_glyphs):
21551 (note_mode_line_or_margin_highlight, note_mouse_highlight):
21552 Omit unused local vars.
21553 * window.c (shrink_windows): Omit unused local var.
21554 * menu.c (digest_single_submenu): Omit unused local var.
21555 * dispnew.c (update_window) [PERIODIC_PREEMPTION_CHECKING]:
21556 Omit unused local var.
21557
21558 * keyboard.c (parse_modifiers_uncached, parse_modifiers):
21559 Don't assume string length fits in int.
21560 (keyremap_step, read_key_sequence): Use size_t for sizes.
21561 (read_key_sequence): Don't check last_real_key_start redundantly.
21562
21563 * callproc.c (Fcall_process, Fcall_process_region): Use SAFE_ALLOCA
21564 instead of alloca (Bug#8344).
21565
21566 * eval.c (Fbacktrace): Don't assume nargs fits in int.
21567 (Fbacktrace_frame): Don't assume nframes fits in int.
21568
21569 * syntax.c (scan_sexps_forward): Avoid pointer wraparound.
21570
21571 * xterm.c (x_make_frame_visible, same_x_server): Redo to avoid overflow
21572 concerns.
21573
21574 * term.c (produce_glyphless_glyph): Remove unnecessary test.
21575
21576 * cm.c (calccost): Turn while-do into do-while, for clarity.
21577
21578 * keyboard.c (syms_of_keyboard): Use the same style as later
21579 in this function when indexing through an array. This also
21580 works around GCC bug 48267.
21581
21582 * image.c (tiff_load): Fix off-by-one image count (Bug#8336).
21583
21584 * xselect.c (x_check_property_data): Return correct size (Bug#8335).
21585
21586 * chartab.c (sub_char_table_ref_and_range): Redo for slight
21587 efficiency gain, and to bypass a gcc -Wstrict-overflow warning.
21588
21589 * keyboard.c, keyboard.h (num_input_events): Now size_t.
21590 This avoids undefined behavior on integer overflow, and is a bit
21591 more convenient anyway since it is compared to a size_t variable.
21592
21593 Variadic C functions now count arguments with size_t, not int.
21594 This avoids an unnecessary limitation on 64-bit machines, which
21595 caused (substring ...) to crash on large vectors (Bug#8344).
21596 * lisp.h (struct Lisp_Subr.function.aMANY): Now takes size_t, not int.
21597 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call): Likewise.
21598 All variadic functions and their callers changed accordingly.
21599 (struct gcpro.nvars): Now size_t, not int. All uses changed.
21600 * data.c (arith_driver, float_arith_driver): Likewise.
21601 * editfns.c (general_insert_function): Likewise.
21602 * eval.c (struct backtrace.nargs, interactive_p)
21603 (internal_condition_case_n, run_hook_with_args, apply_lambda)
21604 (funcall_lambda, mark_backtrace): Likewise.
21605 * fns.c (concat): Likewise.
21606 * frame.c (x_set_frame_parameters): Likewise.
21607 * fns.c (get_key_arg): Now accepts and returns size_t, and returns
21608 0 if not found, not -1. All callers changed.
21609
21610 * alloc.c (garbage_collect): Don't assume stack size fits in int.
21611 (stack_copy_size): Now size_t, not int.
21612 (stack_copy, stack_copy_size): Define only if MAX_SAVE_STACK > 0.
21613
21614 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
21615
21616 * coding.c (encode_designation_at_bol): Remove parameter `charbuf_end',
21617 unused since 2002-03-01T01:17:24Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
21618 All callers changed.
21619
21620 * lisp.h (multibyte_char_to_unibyte):
21621 * character.c (multibyte_char_to_unibyte): Remove parameter `rev_tbl',
21622 unused since 2002-03-01T01:16:34Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
21623 * character.h (CHAR_TO_BYTE8):
21624 * cmds.c (internal_self_insert):
21625 * editfns.c (general_insert_function):
21626 * keymap.c (push_key_description):
21627 * search.c (Freplace_match):
21628 * xdisp.c (message_dolog, set_message_1): All callers changed.
21629
21630 2011-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
21631
21632 * keyboard.c (safe_run_hook_funcall): New function.
21633 (safe_run_hooks_1, safe_run_hooks_error, safe_run_hooks): On error,
21634 don't set the hook to nil, but remove the offending function instead.
21635 (Qcommand_hook_internal): Remove, unused.
21636 (syms_of_keyboard): Don't initialize Qcommand_hook_internal nor define
21637 Vcommand_hook_internal.
21638
21639 * eval.c (enum run_hooks_condition): Remove.
21640 (funcall_nil, funcall_not): New functions.
21641 (run_hook_with_args): Call each function through a `funcall' argument.
21642 Remove `cond' argument, now redundant.
21643 (Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success)
21644 (Frun_hook_with_args_until_failure): Adjust accordingly.
21645 (run_hook_wrapped_funcall, Frun_hook_wrapped): New functions.
21646
21647 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
21648
21649 * dispextern.h (string_buffer_position): Remove declaration.
21650
21651 * print.c (strout): Remove parameter `multibyte', unused since
21652 1999-08-21T19:30:21Z!gerd@gnu.org. All callers changed.
21653
21654 * search.c (boyer_moore): Remove parameters `len', `pos' and `lim',
21655 never used since function introduction in 1998-02-08T21:33:56Z!rms@gnu.org.
21656 All callers changed.
21657
21658 * w32.c (_wsa_errlist): Use braces for struct initializers.
21659
21660 * xdisp.c (string_buffer_position_lim): Remove parameter `w',
21661 never used since function introduction in 2001-03-09T18:41:50Z!gerd@gnu.org.
21662 All callers changed.
21663 (string_buffer_position): Likewise. Also, make static (it's never
21664 used outside xdisp.c).
21665 (cursor_row_p): Remove parameter `w', unused since
21666 2000-10-17T16:08:57Z!gerd@gnu.org. All callers changed.
21667 (decode_mode_spec): Remove parameter `precision', introduced during
21668 Gerd Moellmann's rewrite at 1999-07-21T21:43:52Z!gerd@gnu.org, but never used.
21669 All callers changed.
21670
21671 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
21672
21673 * nsterm.m (syms_of_nsterm): Use doc: for ns-auto-hide-menu-bar.
21674
21675 2011-03-27 Anders Lindgren <andlind@gmail.com>
21676
21677 * nsterm.m (ns_menu_bar_is_hidden): New variable.
21678 (ns_constrain_all_frames, ns_menu_bar_should_be_hidden)
21679 (ns_update_auto_hide_menu_bar): New functions.
21680 (ns_update_begin): Call ns_update_auto_hide_menu_bar.
21681 (applicationDidBecomeActive): Call ns_update_auto_hide_menu_bar and
21682 ns_constrain_all_frames.
21683 (constrainFrameRect): Return at once if ns_menu_bar_should_be_hidden.
21684 (syms_of_nsterm): DEFVAR ns-auto-hide-menu-bar, init to Qnil.
21685
21686 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
21687
21688 * nsmenu.m (runDialogAt): Remove argument to timer_check.
21689
21690 2011-03-27 Glenn Morris <rgm@gnu.org>
21691
21692 * syssignal.h: Replace RETSIGTYPE with void.
21693 * atimer.c, data.c, dispnew.c, emacs.c, floatfns.c, keyboard.c:
21694 * keyboard.h, lisp.h, process.c, sysdep.c, xterm.c:
21695 Replace SIGTYPE with void everywhere.
21696 * s/usg5-4-common.h (SIGTYPE): Remove definition.
21697 * s/template.h (SIGTYPE): Remove commented out definition.
21698
21699 2011-03-26 Eli Zaretskii <eliz@gnu.org>
21700
21701 * xdisp.c (redisplay_window): Don't check buffer's clip_changed
21702 flag as a prerequisite for invoking try_scrolling. (Bug#6671)
21703
21704 2011-03-26 Juanma Barranquero <lekktu@gmail.com>
21705
21706 * w32.c (read_unc_volume): Use parameter `henum', instead of
21707 global variable `wget_enum_handle'.
21708
21709 * keymap.c (describe_vector): Remove parameters `indices' and
21710 `char_table_depth', unused since 2002-03-01T01:43:26Z!handa@m17n.org.
21711 (describe_map, Fdescribe_vector): Adjust calls to `describe_vector'.
21712
21713 * keyboard.h (timer_check, show_help_echo): Remove unused parameters.
21714
21715 * keyboard.c (timer_check): Remove parameter `do_it_now',
21716 unused since 1996-04-12T06:01:29Z!rms@gnu.org.
21717 (show_help_echo): Remove parameter `ok_to_overwrite_keystroke_echo',
21718 unused since 2008-04-19T19:30:53Z!monnier@iro.umontreal.ca.
21719
21720 * keyboard.c (read_char):
21721 * w32menu.c (w32_menu_display_help):
21722 * xmenu.c (show_help_event, menu_help_callback):
21723 Adjust calls to `show_help_echo'.
21724
21725 * gtkutil.c (xg_maybe_add_timer):
21726 * keyboard.c (readable_events):
21727 * process.c (wait_reading_process_output):
21728 * xmenu.c (x_menu_wait_for_event): Adjust calls to `timer_check'.
21729
21730 * insdel.c (adjust_markers_gap_motion):
21731 Remove; no-op since 1998-01-02T21:29:48Z!rms@gnu.org.
21732 (gap_left, gap_right): Don't call it.
21733
21734 2011-03-25 Chong Yidong <cyd@stupidchicken.com>
21735
21736 * xdisp.c (handle_fontified_prop): Discard changes to clip_changed
21737 incurred during fontification.
21738
21739 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
21740
21741 * buffer.c (defvar_per_buffer): Remove unused parameter `doc'.
21742 (DEFVAR_PER_BUFFER): Don't pass it.
21743
21744 * dispnew.c (row_equal_p, add_row_entry): Remove unused parameter `w'.
21745 (scrolling_window): Don't pass it.
21746
21747 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
21748
21749 * dispextern.h (glyph_matric): Use #if GLYPH_DEBUG, not #ifdef.
21750
21751 * fileio.c (check_executable) [DOS_NT]: Remove unused variables `len'
21752 and `suffix'.
21753 (Fset_file_selinux_context) [HAVE_LIBSELINUX]: Move here declaration
21754 of variables specific to SELinux and computation of `encoded_absname'.
21755
21756 * image.c (XPutPixel): Remove unused variable `height'.
21757
21758 * keyboard.c (make_lispy_event): Remove unused variable `hpos'.
21759
21760 * unexw32.c (get_section_info): Remove unused variable `section'.
21761
21762 * w32.c (stat): Remove unused variables `drive_root' and `devtype'.
21763 (system_process_attributes): Remove unused variable `sess'.
21764 (sys_read): Remove unused variable `err'.
21765
21766 * w32fns.c (top): Wrap variables with #if GLYPH_DEBUG, not #ifdef.
21767 (w32_wnd_proc): Remove unused variable `isdead'.
21768 (unwind_create_frame): Use #if GLYPH_DEBUG, not #ifdef.
21769 (Fx_server_max_request_size): Remove unused variable `dpyinfo'.
21770 (x_create_tip_frame): Remove unused variable `tem'.
21771
21772 * w32inevt.c (w32_console_read_socket):
21773 Remove unused variable `no_events'.
21774
21775 * w32term.c (x_draw_composite_glyph_string_foreground):
21776 Remove unused variable `width'.
21777
21778 2011-03-24 Juanma Barranquero <lekktu@gmail.com>
21779
21780 * w32term.c (x_set_glyph_string_clipping):
21781 Don't pass uninitialized region to CombineRgn.
21782
21783 2011-03-23 Juanma Barranquero <lekktu@gmail.com>
21784
21785 * w32fns.c (x_set_menu_bar_lines): Remove unused variable `olines'.
21786 (w32_wnd_proc): Pass NULL to Windows API, not uninitialized buffer.
21787 (Fx_close_connection): Remove unused variable `i'.
21788
21789 * w32font.c (w32font_draw): Return number of glyphs.
21790 (w32font_open_internal): Remove unused variable `i'.
21791 (w32font_driver): Add missing initializer.
21792
21793 * w32menu.c (utf8to16): Remove unused variable `utf16'.
21794 (fill_in_menu): Remove unused variable `items_added'.
21795
21796 * w32term.c (last_mouse_press_frame): Remove static global variable.
21797 (w32_clip_to_row): Remove unused variable `f'.
21798 (x_delete_terminal): Remove unused variable `i'.
21799
21800 * w32uniscribe.c (uniscribe_shape): Remove unused variable `nclusters'.
21801 (NOTHING): Remove unused static global variable.
21802 (uniscribe_check_otf): Remove unused variable `table'.
21803 (uniscribe_font_driver): Add missing initializers.
21804
21805 2011-03-23 Julien Danjou <julien@danjou.info>
21806
21807 * term.c (Fsuspend_tty, Fresume_tty):
21808 * minibuf.c (read_minibuf, run_exit_minibuf_hook):
21809 * window.c (temp_output_buffer_show):
21810 * insdel.c (signal_before_change):
21811 * frame.c (Fhandle_switch_frame):
21812 * fileio.c (Fdo_auto_save):
21813 * emacs.c (Fkill_emacs):
21814 * editfns.c (save_excursion_restore):
21815 * cmds.c (internal_self_insert):
21816 * callint.c (Fcall_interactively):
21817 * buffer.c (Fkill_all_local_variables):
21818 * keyboard.c (Fcommand_execute, Fsuspend_emacs, safe_run_hooks_1):
21819 Use Frun_hooks.
21820 (command_loop_1): Use Frun_hooks. Call safe_run_hooks
21821 unconditionally since it does the check itself.
21822
21823 2011-03-23 Paul Eggert <eggert@cs.ucla.edu>
21824
21825 Fix more problems found by GCC 4.5.2's static checks.
21826
21827 * coding.c (encode_coding_raw_text): Avoid unnecessary test
21828 the first time through the loop, since we know p0 < p1 then.
21829 This also avoids a gcc -Wstrict-overflow warning.
21830
21831 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP): Avoid 'int' overflow
21832 leading to a memory leak, possible in functions like
21833 load_charset_map_from_file that can allocate an unbounded number
21834 of objects (Bug#8318).
21835
21836 * xmenu.c (set_frame_menubar): Use EMACS_UINT, not int, for indexes
21837 that could (at least in theory) be that large.
21838
21839 * xdisp.c (message_log_check_duplicate): Return unsigned long, not int.
21840 This is less likely to overflow, and avoids undefined behavior if
21841 overflow does occur. All callers changed. Use strtoul to scan
21842 for the unsigned long integer.
21843 (pint2hrstr): Simplify and tune code slightly.
21844 This also avoids a (bogus) GCC warning with gcc -Wstrict-overflow.
21845
21846 * scroll.c (do_scrolling): Work around GCC bug 48228.
21847 See <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48228>.
21848
21849 * frame.c (Fmodify_frame_parameters): Simplify loop counter.
21850 This also avoids a warning with gcc -Wstrict-overflow.
21851 (validate_x_resource_name): Simplify count usage.
21852 This also avoids a warning with gcc -Wstrict-overflow.
21853
21854 * fileio.c (Fcopy_file): Report error if fchown or fchmod
21855 fail (Bug#8306).
21856
21857 * emacs.c (Fdaemon_initialized): Do not ignore I/O errors (Bug#8303).
21858
21859 * process.c (Fmake_network_process): Use socklen_t, not int,
21860 where POSIX says socklen_t is required in portable programs.
21861 This fixes a porting bug on hosts like 64-bit HP-UX, where
21862 socklen_t is wider than int (Bug#8277).
21863 (Fmake_network_process, server_accept_connection):
21864 (wait_reading_process_output, read_process_output):
21865 Likewise.
21866
21867 * process.c: Rename or move locals to avoid shadowing.
21868 (list_processes_1, Fmake_network_process):
21869 (read_process_output_error_handler, exec_sentinel_error_handler):
21870 Rename or move locals.
21871 (Fmake_network_process): Define label "retry_connect" only if needed.
21872 (Fnetwork_interface_info): Fix pointer signedness.
21873 (process_send_signal): Add cast to avoid pointer signedness problem.
21874 (FIRST_PROC_DESC, IF_NON_BLOCKING_CONNECT): Remove unused macros.
21875 (create_process): Use 'volatile' to avoid vfork clobbering (Bug#8298).
21876
21877 Make tparam.h and terminfo.c consistent.
21878 * cm.c (tputs, tgoto, BC, UP): Remove extern decls.
21879 Include tparam.h instead, since it declares them.
21880 * cm.h (PC): Remove extern decl; tparam.h now does this.
21881 * deps.mk (cm.o, terminfo.o): Depend on tparam.h.
21882 * terminfo.c: Include tparam.h, to check interfaces.
21883 (tparm): Make 1st arg a const pointer in decl. Put it at top level.
21884 (tparam): Adjust signature to match interface in tparam.h;
21885 this removes some undefined behavior. Check that outstring and len
21886 are zero, which they always are with Emacs.
21887 * tparam.h (PC, BC, UP): New extern decls.
21888
21889 * xftfont.c (xftfont_shape): Now static, and defined only if needed.
21890 (xftfont_open): Rename locals to avoid shadowing.
21891
21892 * ftfont.c (ftfont_resolve_generic_family): Fix pointer signedness.
21893 (ftfont_otf_capability, ftfont_shape): Omit decls if not needed.
21894 (OTF_TAG_SYM): Omit macro if not needed.
21895 (ftfont_list): Remove unused local.
21896 (get_adstyle_property, ftfont_pattern_entity):
21897 (ftfont_lookup_cache, ftfont_open, ftfont_anchor_point):
21898 Rename locals to avoid shadowing.
21899
21900 * xfont.c (xfont_list_family): Mark var as initialized.
21901
21902 * xml.c (make_dom): Now static.
21903
21904 * composite.c (composition_compute_stop_pos): Rename local to
21905 avoid shadowing.
21906 (composition_reseat_it): Remove unused locals.
21907 (find_automatic_composition, composition_adjust_point): Likewise.
21908 (composition_update_it): Mark var as initialized.
21909 (find_automatic_composition): Mark vars as initialized,
21910 with a FIXME (Bug#8290).
21911
21912 character.h: Rename locals to avoid shadowing.
21913 * character.h (PREV_CHAR_BOUNDARY, FETCH_STRING_CHAR_ADVANCE):
21914 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE, FETCH_CHAR_ADVANCE):
21915 (FETCH_CHAR_ADVANCE_NO_CHECK, INC_POS, DEC_POS, BUF_INC_POS):
21916 (BUF_DEC_POS): Be more systematic about renaming local temporaries
21917 to avoid shadowing.
21918
21919 * textprop.c (property_change_between_p): Remove; unused.
21920
21921 * intervals.c (interval_start_pos): Now static.
21922
21923 * intervals.h (CHECK_TOTAL_LENGTH): Avoid empty "else".
21924
21925 * atimer.c (start_atimer, append_atimer_lists, set_alarm):
21926 Rename locals to avoid shadowing.
21927
21928 * sound.c (wav_play, au_play, Fplay_sound_internal):
21929 Fix pointer signedness.
21930 (alsa_choose_format): Remove unused local var.
21931 (wav_play): Initialize a variable to 0, to prevent undefined
21932 behavior (Bug#8278).
21933
21934 * region-cache.c (insert_cache_boundary): Redo var to avoid shadowing.
21935
21936 * region-cache.h (pp_cache): New decl, for gcc -Wmissing-prototypes.
21937
21938 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork
21939 clobbering (Bug#8298).
21940 * sysdep.c (sys_subshell): Likewise.
21941 Previously, the sys_subshell 'volatile' was incorrectly IF_LINTted out.
21942
21943 * lisp.h (child_setup): Now NO_RETURN unless DOS_NT.
21944 This should get cleaned up, so that child_setup has the
21945 same signature on all platforms.
21946
21947 * callproc.c (call_process_cleanup): Now static.
21948 (relocate_fd): Rename locals to avoid shadowing.
21949
21950 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
21951
21952 * xterm.c (x_clear_frame): Remove XClearWindow call. This appears
21953 not to be necessary, and produces flickering.
21954
21955 2011-03-20 Glenn Morris <rgm@gnu.org>
21956
21957 * config.in: Remove file.
21958
21959 2011-03-20 Juanma Barranquero <lekktu@gmail.com>
21960
21961 * minibuf.c (Vcompleting_read_function): Don't declare, global variables
21962 are now in src/globals.h.
21963 (syms_of_minibuf): Remove spurious & from previous change.
21964
21965 2011-03-20 Leo Liu <sdl.web@gmail.com>
21966
21967 * minibuf.c (completing-read-function): New variable.
21968 (completing-read-default): Rename from completing-read.
21969 (completing-read): Call completing-read-function.
21970
21971 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
21972
21973 * xfaces.c (Fx_load_color_file):
21974 Read color file from absolute filename (bug#8250).
21975
21976 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
21977
21978 * makefile.w32-in: Update dependencies.
21979
21980 2011-03-17 Eli Zaretskii <eliz@gnu.org>
21981
21982 * makefile.w32-in ($(BLD)/unexw32.$(O)): Depend on $(SRC)/unexec.h.
21983
21984 2011-03-17 Paul Eggert <eggert@cs.ucla.edu>
21985
21986 Fix more problems found by GCC 4.5.2's static checks.
21987
21988 * process.c (make_serial_process_unwind, send_process_trap):
21989 (sigchld_handler): Now static.
21990
21991 * process.c (allocate_pty): Let PTY_ITERATION declare iteration vars.
21992 That way, the code declares only the vars that it needs.
21993 * s/aix4-2.h (PTY_ITERATION): Declare iteration vars.
21994 * s/cygwin.h (PTY_ITERATION): Likewise.
21995 * s/darwin.h (PTY_ITERATION): Likewise.
21996 * s/gnu-linux.h (PTY_ITERATION): Likewise.
21997
21998 * s/irix6-5.h (PTY_OPEN): Declare stb, to loosen coupling.
21999 * process.c (allocate_pty): Don't declare stb unless it's needed.
22000
22001 * bytecode.c (MAYBE_GC): Rewrite so as not to use empty "else".
22002 (CONSTANTLIM): Remove; unused.
22003 (METER_CODE, Bscan_buffer, Bread_char, Bset_mark):
22004 Define only if needed.
22005
22006 * unexelf.c (unexec): Name an expression,
22007 to avoid gcc -Wbad-function-cast warning.
22008 Use a different way to cause a compilation error if anyone uses
22009 n rather than nn, a way that does not involve shadowing.
22010 (ELF_BSS_SECTION_NAME, OLD_PROGRAM_H): Remove; unused.
22011
22012 * deps.mk (unexalpha.o): Remove; unused.
22013
22014 New file unexec.h, the (simple) interface for unexec (Bug#8267).
22015 * unexec.h: New file.
22016 * deps.mk (emacs.o, unexaix.o, unexcw.o, unexcoff.o, unexelf.o):
22017 (unexhp9k800.o, unexmacosx.o, unexsol.o, unexw32.o):
22018 Depend on unexec.h.
22019 * emacs.c [!defined CANNOT_DUMP]: Include unexec.h.
22020 * unexaix.c, unexcoff.c, unexcw.c, unexelf.c, unexhp9k800.c:
22021 * unexmacosx.c, unexsol.c, unexw32.c: Include unexec.h.
22022 Change as necessary to match prototype in unexec.h.
22023
22024 * syntax.c (Fforward_comment, scan_lists): Rename locals to avoid
22025 shadowing.
22026 (back_comment, skip_chars): Mark vars as initialized.
22027
22028 * character.h (FETCH_STRING_CHAR_ADVANCE_NO_CHECK, BUF_INC_POS):
22029 Rename locals to avoid shadowing.
22030
22031 * lread.c (read1): Rewrite so as not to use empty "else".
22032 (Fload, readevalloop, read1): Rename locals to avoid shadowing.
22033
22034 * print.c (Fredirect_debugging_output): Fix pointer signedess.
22035
22036 * lisp.h (debug_output_compilation_hack): Add decl here, to avoid
22037 warning when compiling print.c.
22038
22039 * font.c (font_unparse_fcname): Abort in an "impossible" situation
22040 instead of using an uninitialized var.
22041 (font_sort_entities): Mark var as initialized.
22042
22043 * character.h (FETCH_CHAR_ADVANCE): Rename locals to avoid shadowing.
22044
22045 * font.c (font_unparse_xlfd): Don't mix pointers to variables with
22046 pointers to constants.
22047 (font_parse_fcname): Remove unused vars.
22048 (font_delete_unmatched): Now static.
22049 (font_get_spec): Remove; unused.
22050 (font_style_to_value, font_prop_validate_style, font_unparse_fcname):
22051 (font_update_drivers, Ffont_get_glyphs, font_add_log):
22052 Rename or move locals to avoid shadowing.
22053
22054 * fns.c (require_nesting_list, require_unwind): Now static.
22055 (Ffillarray): Rename locals to avoid shadowing.
22056
22057 * floatfns.c (domain_error2): Define only if needed.
22058 (Ffrexp, Fldexp): Rename locals to avoid shadowing.
22059
22060 * alloc.c (mark_backtrace): Move decl from here ...
22061 * lisp.h: ... to here, so that it can be checked.
22062
22063 * eval.c (call_debugger, do_debug_on_call, grow_specpdl): Now static.
22064 (Fdefvar): Rewrite so as not to use empty "else".
22065 (lisp_indirect_variable): Name an expression,
22066 to avoid gcc -Wbad-function-cast warning.
22067 (Fdefvar): Rename locals to avoid shadowing.
22068
22069 * callint.c (quotify_arg, quotify_args): Now static.
22070 (Fcall_interactively): Rename locals to avoid shadowing.
22071 Use const pointer when appropriate.
22072
22073 * lisp.h (get_system_name, get_operating_system_release):
22074 Move decls here, to check interfaces.
22075 * process.c (get_operating_system_release): Move decl to lisp.h.
22076 * xrdb.c (get_system_name): Likewise.
22077 * editfns.c (init_editfns, Fuser_login_name, Fuser_uid):
22078 (Fuser_real_uid, Fuser_full_name): Remove unnecessary casts,
22079 some of which prompt warnings from gcc -Wbad-function-cast.
22080 (Fformat_time_string, Fencode_time, Finsert_char):
22081 (Ftranslate_region_internal, Fformat):
22082 Rename or remove local vars to avoid shadowing.
22083 (Ftranslate_region_internal): Mark var as initialized.
22084
22085 * doc.c (Fdocumentation, Fsnarf_documentation): Move locals to
22086 avoid shadowing.
22087
22088 * lisp.h (eassert): Check that the argument compiles, even if
22089 ENABLE_CHECKING is not defined.
22090
22091 * data.c (Findirect_variable): Name an expression, to avoid
22092 gcc -Wbad-function-cast warning.
22093 (default_value, arithcompare, arith_driver, arith_error): Now static.
22094 (store_symval_forwarding): Rename local to avoid shadowing.
22095 (Fmake_variable_buffer_local, Fmake_local_variable):
22096 Mark variables as initialized.
22097 (do_blv_forwarding, do_symval_forwarding): Remove; unused.
22098
22099 * alloc.c (check_cons_list): Do not define unless GC_CHECK_CONS_LIST.
22100 (Fmake_vector, Fvector, Fmake_byte_code, Fgarbage_collect):
22101 Rename locals to avoid shadowing.
22102 (mark_stack): Move local variables into the #ifdef region where
22103 they're used.
22104 (BLOCK_INPUT_ALLOC, UNBLOCK_INPUT_ALLOC): Define only if
22105 ! defined SYSTEM_MALLOC && ! defined SYNC_INPUT, as they are not
22106 needed otherwise.
22107 (CHECK_ALLOCATED): Define only if GC_CHECK_MARKED_OBJECTS.
22108 (GC_STRING_CHARS): Remove; not used.
22109 (Fmemory_limit): Cast sbrk's returned value to char *.
22110
22111 * lisp.h (check_cons_list): Declare if GC_CHECK_CONS_LIST; this
22112 avoids undefined behavior in theory.
22113
22114 * regex.c (IF_LINT): Add defn, for benefit of ../lib-src.
22115
22116 Use functions, not macros, for up- and down-casing (Bug#8254).
22117 * buffer.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
22118 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Remove. All callers changed
22119 to use the following functions instead of these macros.
22120 (downcase): Adjust to lack of DOWNCASE_TABLE. Return int, not
22121 EMACS_INT, since callers assume the returned value fits in int.
22122 (upcase1): Likewise, for UPCASE_TABLE.
22123 (uppercasep, lowercasep, upcase): New static inline functions.
22124 * editfns.c (Fchar_equal): Remove no-longer-needed workaround for
22125 the race-condition problem in the old DOWNCASE.
22126
22127 * regex.c (CHARSET_LOOKUP_RANGE_TABLE_RAW, POP_FAILURE_REG_OR_COUNT):
22128 Rename locals to avoid shadowing.
22129 (regex_compile, re_match_2_internal): Move locals to avoid shadowing.
22130 (regex_compile, re_search_2, re_match_2_internal):
22131 Remove unused local vars.
22132 (FREE_VAR): Rewrite so as not to use empty "else",
22133 which gcc can warn about.
22134 (regex_compile, re_match_2_internal): Mark locals as initialized.
22135 (RETALLOC_IF): Define only if needed.
22136 (WORDCHAR_P): Likewise. This one is never needed, but is used
22137 only in a comment talking about a compiler bug, so put inside
22138 the #if 0 of that comment.
22139 (CHARSET_LOOKUP_BITMAP, FAIL_STACK_FULL, RESET_FAIL_STACK):
22140 (PUSH_FAILURE_ELT, BUF_PUSH_3, STOP_ADDR_VSTRING):
22141 Remove; unused.
22142
22143 * search.c (boyer_moore): Rename locals to avoid shadowing.
22144 * character.h (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE):
22145 (PREV_CHAR_BOUNDARY): Likewise.
22146
22147 * search.c (simple_search): Remove unused var.
22148
22149 * dired.c (compile_pattern): Move decl from here ...
22150 * lisp.h: ... to here, so that it can be checked.
22151 (struct re_registers): New forward decl.
22152
22153 * character.h (INC_POS, DEC_POS): Rename locals to avoid shadowing.
22154
22155 * indent.c (MULTIBYTE_BYTES_WIDTH): New args bytes, width.
22156 All uses changed.
22157 (MULTIBYTE_BYTES_WIDTH, scan_for_column, compute_motion):
22158 Rename locals to avoid shadowing.
22159 (Fvertical_motion): Mark locals as initialized.
22160
22161 * casefiddle.c (casify_object, casify_region): Now static.
22162 (casify_region): Mark local as initialized.
22163
22164 * cmds.c (internal_self_insert): Rename local to avoid shadowing.
22165
22166 * lisp.h (GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR, GCPRO6_VAR):
22167 New macros, so that the caller can use some names other than
22168 gcpro1, gcpro2, etc.
22169 (GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6): Reimplement in terms
22170 of the new macros.
22171 (GCPRO1_VAR, UNGCPRO_VAR): Change the meaning of the second
22172 argument, for consistency with GCPRO2_VAR, etc: it is now the
22173 prefix of the variable, not the variable itself. All uses
22174 changed.
22175 * dired.c (directory_files_internal, file_name_completion):
22176 Rename locals to avoid shadowing.
22177
22178 Fix a race condition diagnosed by gcc -Wsequence-point (Bug#8254).
22179 An expression of the form (DOWNCASE (x) == DOWNCASE (y)), found in
22180 dired.c's scmp function, had undefined behavior.
22181 * lisp.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
22182 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Move from here ...
22183 * buffer.h: ... to here, because these macros use current_buffer,
22184 and the new implementation with inline functions needs to have
22185 current_buffer in scope now, rather than later when the macros
22186 are used.
22187 (downcase, upcase1): New static inline functions.
22188 (DOWNCASE, UPCASE1): Reimplement using these functions.
22189 This avoids undefined behavior in expressions like
22190 DOWNCASE (x) == DOWNCASE (y), which previously suffered
22191 from race conditions in accessing the global variables
22192 case_temp1 and case_temp2.
22193 * casetab.c (case_temp1, case_temp2): Remove; no longer needed.
22194 * lisp.h (case_temp1, case_temp2): Remove their decls.
22195 * character.h (ASCII_CHAR_P): Move from here ...
22196 * lisp.h: ... to here, so that the inline functions mentioned
22197 above can use them.
22198
22199 * dired.c (directory_files_internal_unwind): Now static.
22200
22201 * fileio.c (file_name_as_directory, directory_file_name):
22202 (barf_or_query_if_file_exists, auto_save_error, auto_save_1):
22203 Now static.
22204 (file_name_as_directory): Use const pointers when appropriate.
22205 (Fexpand_file_name): Likewise. In particular, newdir might
22206 point at constant storage, so make it a const pointer.
22207 (Fmake_directory_internal, Fread_file_name): Remove unused vars.
22208 (Ffile_selinux_context, Fset_file_selinux_context): Fix pointer
22209 signedness issues.
22210 (Fset_file_times, Finsert_file_contents, auto_save_error):
22211 Rename locals to avoid shadowing.
22212
22213 * minibuf.c (choose_minibuf_frame_1): Now static.
22214 (Ftry_completion, Fall_completions): Rename or remove locals
22215 to avoid shadowing.
22216
22217 * marker.c (bytepos_to_charpos): Remove; unused.
22218
22219 * lisp.h (verify_bytepos, count_markers): New decls,
22220 so that gcc does not warn that these functions aren't declared.
22221
22222 * insdel.c (check_markers, make_gap_larger, make_gap_smaller):
22223 (reset_var_on_error, Fcombine_after_change_execute_1): Now static.
22224 (CHECK_MARKERS): Redo to avoid gcc -Wempty-body diagnostic.
22225 (copy_text): Remove unused local var.
22226
22227 * filelock.c (within_one_second): Now static.
22228 (lock_file_1): Rename local to avoid shadowing.
22229
22230 * buffer.c (fix_overlays_before): Mark locals as initialized.
22231 (fix_start_end_in_overlays): Likewise. This function should be
22232 simplified by using pointers-to-pointers, but that's a different
22233 matter.
22234 (switch_to_buffer_1): Now static.
22235 (Fkill_buffer, record_buffer, Fbury_buffer, Fset_buffer_multibyte):
22236 (report_overlay_modification): Rename locals to avoid shadowing.
22237
22238 * sysdep.c (system_process_attributes): Rename vars to avoid shadowing.
22239 Fix pointer signedness issue.
22240 (sys_subshell): Mark local as volatile if checking for lint,
22241 to suppress a gcc -Wclobbered warning that does not seem to be right.
22242 (MAXPATHLEN): Define only if needed.
22243
22244 * process.c (serial_open, serial_configure): Move decls from here ...
22245 * systty.h: ... to here, so that they can be checked.
22246
22247 * fns.c (get_random, seed_random): Move extern decls from here ...
22248 * lisp.h: ... to here, so that they can be checked.
22249
22250 * sysdep.c (reset_io): Now static.
22251 (wait_for_termination_signal): Remove; unused.
22252
22253 * keymap.c (keymap_parent, keymap_memberp, map_keymap_internal):
22254 (copy_keymap_item, append_key, push_text_char_description):
22255 Now static.
22256 (Fwhere_is_internal): Don't test CONSP (sequences) unnecessarily.
22257 (DENSE_TABLE_SIZE): Remove; unused.
22258 (get_keymap, access_keymap, Fdefine_key, Fwhere_is_internal):
22259 (describe_map_tree):
22260 Rename locals to avoid shadowing.
22261
22262 * keyboard.c: Declare functions static if they are not used elsewhere.
22263 (echo_char, echo_dash, cmd_error, top_level_2):
22264 (poll_for_input, handle_async_input): Now static.
22265 (read_char, kbd_buffer_get_event, make_lispy_position):
22266 (make_lispy_event, make_lispy_movement, apply_modifiers):
22267 (decode_keyboard_code, tty_read_avail_input, menu_bar_items):
22268 (parse_tool_bar_item, read_key_sequence, Fread_key_sequence):
22269 (Fread_key_sequence_vector): Rename locals to avoid shadowing.
22270 (read_key_sequence, read_char): Mark locals as initialized.
22271 (Fexit_recursive_edit, Fabort_recursive_edit): Mark with NO_RETURN.
22272
22273 * keyboard.h (make_ctrl_char): New decl.
22274 (mark_kboards): Move decl here ...
22275 * alloc.c (mark_kboards): ... from here.
22276
22277 * lisp.h (force_auto_save_soon): New decl.
22278
22279 * emacs.c (init_cmdargs): Rename local to avoid shadowing.
22280 (DEFINE_DUMMY_FUNCTION): New macro.
22281 (__do_global_ctors, __do_global_ctors_aux, __do_global_dtors, __main):
22282 Use it.
22283 (main): Add casts to avoid warnings
22284 if GCC considers string literals to be constants.
22285
22286 * lisp.h (fatal_error_signal): Add decl, since it's exported.
22287
22288 * dbusbind.c: Pointer signedness fixes.
22289 (xd_signature, xd_append_arg, xd_initialize):
22290 (Fdbus_call_method, Fdbus_call_method_asynchronously):
22291 (Fdbus_method_return_internal, Fdbus_method_error_internal):
22292 (Fdbus_send_signal, xd_read_message_1, Fdbus_register_service):
22293 (Fdbus_register_signal): Use SSDATA when the context wants char *.
22294
22295 * dbusbind.c (Fdbus_init_bus): Add cast to avoid warning
22296 if GCC considers string literals to be constants.
22297 (Fdbus_register_service, Fdbus_register_method): Remove unused vars.
22298
22299 2011-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
22300
22301 * print.c (PRINT_CIRCLE_CANDIDATE_P): New macro.
22302 (print_preprocess, print_object): New macro to fix last change.
22303
22304 * print.c (print_preprocess): Don't forget font objects.
22305
22306 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
22307
22308 * emacs.c (USAGE3): Doc fixes.
22309
22310 2011-03-15 Andreas Schwab <schwab@linux-m68k.org>
22311
22312 * coding.c (detect_coding_iso_2022): Reorganize code to clarify
22313 structure.
22314
22315 2011-03-14 Juanma Barranquero <lekktu@gmail.com>
22316
22317 * lisp.h (VWindow_system, Qfile_name_history):
22318 * keyboard.h (lispy_function_keys) [WINDOWSNT]:
22319 * w32term.h (w32_system_caret_hwnd, w32_system_caret_height)
22320 (w32_system_caret_x, w32_system_caret_y): Declare extern.
22321
22322 * w32select.c: Don't #include "keyboard.h".
22323 (run_protected): Add extern declaration for waiting_for_input.
22324
22325 * w32.c (Qlocal, noninteractive1, inhibit_window_system):
22326 * w32console.c (detect_input_pending, read_input_pending)
22327 (encode_terminal_code):
22328 * w32fns.c (quit_char, lispy_function_keys, Qtooltip)
22329 (w32_system_caret_hwnd, w32_system_caret_height, w32_system_caret_x)
22330 (w32_system_caret_y, Qfile_name_history):
22331 * w32font.c (w32font_driver, QCantialias, QCotf, QClang):
22332 * w32inevt.c (reinvoke_input_signal, lispy_function_keys):
22333 * w32menu.c (Qmenu_bar, QCtoggle, QCradio, Qoverriding_local_map)
22334 (Qoverriding_terminal_local_map, Qmenu_bar_update_hook):
22335 * w32proc.c (Qlocal, report_file_error):
22336 * w32term.c (Vwindow_system, updating_frame):
22337 * w32uniscribe.c (initialized, uniscribe_font_driver):
22338 Remove unneeded extern declarations.
22339
22340 2011-03-14 Chong Yidong <cyd@stupidchicken.com>
22341
22342 * buffer.c (Fmake_indirect_buffer): Fix incorrect assertions.
22343
22344 2011-03-13 Chong Yidong <cyd@stupidchicken.com>
22345
22346 * buffer.h (BUF_BEGV, BUF_BEGV_BYTE, BUF_ZV, BUF_ZV_BYTE, BUF_PT)
22347 (BUF_PT_BYTE): Rewrite to handle indirect buffers (Bug#8219).
22348 These macros can no longer be used for assignment.
22349
22350 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
22351 Assign struct members directly, instead of using BUF_BEGV etc.
22352 (record_buffer_markers, fetch_buffer_markers): New functions for
22353 recording and fetching special buffer markers.
22354 (set_buffer_internal_1, set_buffer_temp): Use them.
22355
22356 * lread.c (unreadchar): Use SET_BUF_PT_BOTH.
22357
22358 * insdel.c (adjust_point): Use SET_BUF_PT_BOTH.
22359
22360 * intervals.c (temp_set_point_both): Use SET_BUF_PT_BOTH.
22361 (get_local_map): Use SET_BUF_BEGV_BOTH and SET_BUF_ZV_BOTH.
22362
22363 * xdisp.c (hscroll_window_tree):
22364 (reconsider_clip_changes): Use PT instead of BUF_PT.
22365
22366 2011-03-13 Eli Zaretskii <eliz@gnu.org>
22367
22368 * makefile.w32-in ($(BLD)/editfns.$(O)): Depend on
22369 $(EMACS_ROOT)/lib/intprops.h.
22370
22371 2011-03-13 Paul Eggert <eggert@cs.ucla.edu>
22372
22373 Fix more problems found by GCC 4.5.2's static checks.
22374
22375 * gtkutil.c (xg_get_pixbuf_from_pixmap): Add cast from char *
22376 to unsigned char * to avoid compiler diagnostic.
22377 (xg_free_frame_widgets): Make it clear that a local variable is
22378 needed only if USE_GTK_TOOLTIP.
22379 (gdk_window_get_screen): Make it clear that this macro is needed
22380 only if USE_GTK_TOOLTIP.
22381 (int_gtk_range_get_value): New function, which avoids a diagnostic
22382 from gcc -Wbad-function-cast.
22383 (xg_set_toolkit_scroll_bar_thumb): Use it.
22384 (xg_tool_bar_callback, xg_tool_item_stale_p): Rewrite to avoid
22385 diagnostic from gcc -Wbad-function-cast.
22386 (get_utf8_string, xg_get_file_with_chooser):
22387 Rename locals to avoid shadowing.
22388 (create_dialog): Move locals to avoid shadowing.
22389
22390 * xgselect.c (xg_select): Remove unused var.
22391
22392 * image.c (four_corners_best): Mark locals as initialized.
22393 (gif_load): Initialize transparent_p to zero (Bug#8238).
22394 Mark another local as initialized.
22395 (my_png_error, my_error_exit): Mark with NO_RETURN.
22396
22397 * image.c (clear_image_cache): Now static.
22398 (DIM, HAVE_STDLIB_H_1): Remove unused macros.
22399 (xpm_load): Redo to avoid "discards qualifiers" gcc warning.
22400 (x_edge_detection): Remove unnecessary cast that
22401 gcc -Wbad-function-cast diagnoses.
22402 (gif_load): Fix pointer signedness.
22403 (clear_image_cache, xbm_read_bitmap_data, x_detect_edges):
22404 (jpeg_load, gif_load): Rename locals to avoid shadowing.
22405
22406 2011-03-12 Paul Eggert <eggert@cs.ucla.edu>
22407
22408 Improve quality of tests for time stamp overflow.
22409 For example, without this patch (encode-time 0 0 0 1 1
22410 1152921504606846976) returns the obviously-bogus value (-948597
22411 62170) on my RHEL 5.5 x86-64 host. With the patch, it correctly
22412 reports time overflow. See
22413 <http://lists.gnu.org/archive/html/emacs-devel/2011-03/msg00470.html>.
22414 * deps.mk (editfns.o): Depend on ../lib/intprops.h.
22415 * editfns.c: Include limits.h and intprops.h.
22416 (TIME_T_MIN, TIME_T_MAX): New macros.
22417 (time_overflow): Move earlier, to before first use.
22418 (hi_time, lo_time): New functions, for an accurate test for
22419 out-of-range times.
22420 (Fcurrent_time, Fget_internal_run_time, make_time): Use them.
22421 (Fget_internal_run_time): Don't assume time_t fits in int.
22422 (make_time): Use list2 instead of Fcons twice.
22423 (Fdecode_time): More accurate test for out-of-range times.
22424 (check_tm_member): New function.
22425 (Fencode_time): Use it, to test for out-of-range times.
22426 (lisp_time_argument): Don't rely on undefined left-shift and
22427 right-shift behavior when checking for time stamp overflow.
22428
22429 * editfns.c (time_overflow): New function, refactoring common code.
22430 (Fformat_time_string, Fdecode_time, Fencode_time):
22431 (Fcurrent_time_string): Use it.
22432
22433 Move 'make_time' to be next to its inverse 'lisp_time_argument'.
22434 * dired.c (make_time): Move to ...
22435 * editfns.c (make_time): ... here.
22436 * systime.h: Note the move.
22437
22438 2011-03-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22439
22440 * fringe.c (update_window_fringes): Remove unused variables.
22441
22442 * unexmacosx.c (copy_data_segment): Also copy __got section.
22443 (Bug#8223)
22444
22445 2011-03-12 Eli Zaretskii <eliz@gnu.org>
22446
22447 * termcap.c [MSDOS]: Include "msdos.h".
22448 (find_capability, tgetnum, tgetflag, tgetstr, tputs, tgetent):
22449 Constify `char *' arguments and their references according to
22450 prototypes in tparam.h.
22451
22452 * deps.mk (termcap.o): Depend on tparam.h and msdos.h.
22453
22454 * msdos.c (XMenuAddPane): 3rd argument is `const char *' now.
22455 Adapt all references accordingly.
22456
22457 * msdos.h (XMenuAddPane): 3rd argument is `const char *' now.
22458
22459 2011-03-11 Tom Tromey <tromey@redhat.com>
22460
22461 * buffer.c (syms_of_buffer): Remove obsolete comment.
22462
22463 2011-03-11 Eli Zaretskii <eliz@gnu.org>
22464
22465 * termhooks.h (encode_terminal_code): Declare prototype.
22466
22467 * msdos.c (encode_terminal_code): Don't declare prototype.
22468
22469 * term.c (encode_terminal_code): Now external again, used by
22470 w32console.c and msdos.c.
22471
22472 * makefile.w32-in ($(BLD)/term.$(O), ($(BLD)/tparam.$(O)):
22473 Depend on $(SRC)/tparam.h, see 2011-03-11T07:24:21Z!eggert@cs.ucla.edu.
22474
22475 2011-03-11 Paul Eggert <eggert@cs.ucla.edu>
22476
22477 Fix some minor problems found by GCC 4.5.2's static checks.
22478
22479 * fringe.c (update_window_fringes): Mark locals as initialized
22480 (Bug#8227).
22481 (destroy_fringe_bitmap, init_fringe_bitmap): Now static.
22482
22483 * alloc.c (mark_fringe_data): Move decl from here ...
22484 * lisp.h (mark_fringe_data) [HAVE_WINDOW_SYSTEM]: ... to here,
22485 to check its interface.
22486 (init_fringe_once): Do not declare unless HAVE_WINDOW_SYSTEM.
22487
22488 * fontset.c (free_realized_fontset): Now static.
22489 (Fset_fontset_font): Rename local to avoid shadowing.
22490 (fontset_font): Mark local as initialized.
22491 (FONTSET_SPEC, FONTSET_REPERTORY, RFONT_DEF_REPERTORY): Remove; unused.
22492
22493 * xrdb.c: Include "xterm.h", to check x_load_resources's interface.
22494
22495 * xselect.c (x_disown_buffer_selections): Remove; not used.
22496 (TRACE3) [!defined TRACE_SELECTION]: Remove; not used.
22497 (x_own_selection, Fx_disown_selection_internal): Rename locals
22498 to avoid shadowing.
22499 (x_handle_dnd_message): Remove local to avoid shadowing.
22500
22501 * lisp.h (GCPRO1_VAR, UNGCPRO_VAR): New macros,
22502 so that the caller can use some name other than gcpro1.
22503 (GCPRO1, UNGCPRO): Reimplement in terms of the new macros.
22504 * xfns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
22505 (Fx_backspace_delete_keys_p):
22506 Use them to avoid shadowing, and rename vars to avoid shadowing.
22507 (x_decode_color, x_set_name, x_window): Now static.
22508 (Fx_create_frame): Add braces to silence GCC warning.
22509 (Fx_file_dialog, Fx_select_font): Fix pointer signedness.
22510 (x_real_positions, xg_set_icon_from_xpm_data, x_create_tip_frame):
22511 Remove unused locals.
22512 (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
22513 (Fx_backspace_delete_keys_p): Rename locals to avoid shadowing.
22514 Some of these renamings use the new GCPRO1_VAR and UNGCPRO_VAR
22515 macros.
22516
22517 * xterm.h (x_mouse_leave): New decl.
22518
22519 * xterm.c (x_copy_dpy_color, x_focus_on_frame, x_unfocus_frame):
22520 Remove unused functions.
22521 (x_shift_glyphs_for_insert, XTflash, XTring_bell):
22522 (x_calc_absolute_position): Now static.
22523 (XTread_socket): Don't define label "out" unless it's used.
22524 Don't declare local "event" unless it's used.
22525 (x_iconify_frame, x_free_frame_resources): Don't declare locals
22526 unless they are used.
22527 (XEMBED_VERSION, xembed_set_info): Don't define unless needed.
22528 (x_fatal_error_signal): Remove; not used.
22529 (x_draw_image_foreground, redo_mouse_highlight, XTmouse_position):
22530 (x_scroll_bar_report_motion, handle_one_xevent, x_draw_bar_cursor):
22531 (x_error_catcher, x_connection_closed, x_error_handler):
22532 (x_error_quitter, xembed_send_message, x_iconify_frame):
22533 (my_log_handler): Rename locals to avoid shadowing.
22534 (x_delete_glyphs, x_ins_del_lines): Mark with NO_RETURN.
22535 (x_connection_closed): Tell GCC not to suggest NO_RETURN.
22536
22537 * xfaces.c (clear_face_cache, Fx_list_fonts, Fface_font):
22538 Rename or move locals to avoid shadowing.
22539 (tty_defined_color, merge_face_heights): Now static.
22540 (free_realized_faces_for_fontset): Remove; not used.
22541 (Fx_list_fonts): Mark variable that gcc -Wuninitialized
22542 does not deduce is never used uninitialized.
22543 (STRDUPA, LSTRDUPA, FONT_POINT_SIZE_QUANTUM): Remove; not used.
22544 (LFACEP): Define only if XASSERTS, as it's not needed otherwise.
22545
22546 * terminal.c (store_terminal_param): Now static.
22547
22548 * xmenu.c (menu_highlight_callback): Now static.
22549 (set_frame_menubar): Remove unused local.
22550 (xmenu_show): Rename parameter to avoid shadowing.
22551 (xmenu_show, xdialog_show, xmenu_show): Make local pointers "const"
22552 since they might point to immutable storage.
22553 (next_menubar_widget_id): Declare only if USE_X_TOOLKIT,
22554 since it's unused otherwise.
22555
22556 * xdisp.c (produce_glyphless_glyph): Initialize lower_xoff.
22557 Add a FIXME, since the code still doesn't look right. (Bug#8215)
22558 (Fcurrent_bidi_paragraph_direction): Simplify slightly; this
22559 avoids a gcc -Wuninitialized diagnostic.
22560 (display_line, BUILD_COMPOSITE_GLYPH_STRING, draw_glyphs):
22561 (note_mouse_highlight): Mark variables that gcc -Wuninitialized
22562 does not deduce are never used uninitialized.
22563
22564 * lisp.h (IF_LINT): New macro, copied from ../lib-src/emacsclient.c.
22565
22566 * xdisp.c (redisplay_window): Rename local to avoid shadowing.
22567 * window.c (window_loop, size_window):
22568 (run_window_configuration_change_hook, enlarge_window): Likewise.
22569
22570 * window.c (display_buffer): Now static.
22571 (size_window): Mark variables that gcc -Wuninitialized
22572 does not deduce are never used uninitialized.
22573 * window.h (check_all_windows): New decl, to forestall
22574 gcc -Wmissing-prototypes diagnostic.
22575 * dispextern.h (bidi_dump_cached_states): Likewise.
22576
22577 * charset.h (CHECK_CHARSET_GET_CHARSET): Rename locals to avoid
22578 shadowing.
22579 * charset.c (map_charset_for_dump, Fchar_charset): Likewise.
22580 Include <limits.h>.
22581 (Fsort_charsets): Redo min/max calculation to shorten the code a bit
22582 and to avoid gcc -Wuninitialized warning.
22583 (load_charset_map): Mark variables that gcc -Wuninitialized
22584 does not deduce are never used uninitialized.
22585 (load_charset): Abort instead of using uninitialized var (Bug#8229).
22586
22587 * coding.c (coding_set_source, coding_set_destination):
22588 Use "else { /* comment */ }" rather than "else /* comment */;"
22589 for clarity, and to avoid gcc -Wempty-body warning.
22590 (Fdefine_coding_system_internal): Don't redeclare 'i' inside
22591 a block, when the outer 'i' will do.
22592 (decode_coding_utf_8, decode_coding_utf_16, detect_coding_emacs_mule):
22593 (emacs_mule_char, decode_coding_emacs_mule, detect_coding_iso_2022):
22594 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5):
22595 (decode_coding_raw_text, decode_coding_charset, get_translation_table):
22596 (Fdecode_sjis_char, Fdefine_coding_system_internal):
22597 Rename locals to avoid shadowing.
22598 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
22599 * coding.c (emacs_mule_char, encode_invocation_designation):
22600 Now static, since they're not used elsewhere.
22601 (decode_coding_iso_2022): Add "default: abort ();" as a safety check.
22602 (decode_coding_object, encode_coding_object, detect_coding_system):
22603 (decode_coding_emacs_mule): Mark variables that gcc
22604 -Wuninitialized does not deduce are never used uninitialized.
22605 (detect_coding_iso_2022): Initialize a local variable that might
22606 be used uninitialized. Leave a FIXME because it's not clear that
22607 this initialization is needed. (Bug#8211)
22608 (ISO_CODE_LF, ISO_CODE_CR, CODING_ISO_FLAG_EUC_TW_SHIFT):
22609 (ONE_MORE_BYTE_NO_CHECK, UTF_BOM, UTF_16_INVALID_P):
22610 (SHIFT_OUT_OK, ENCODE_CONTROL_SEQUENCE_INTRODUCER):
22611 (ENCODE_DIRECTION_R2L, ENCODE_DIRECTION_L2R):
22612 Remove unused macros.
22613
22614 * category.c (hash_get_category_set): Remove unused local var.
22615 (copy_category_table): Now static, since it's not used elsewhere.
22616 * character.c (string_count_byte8): Likewise.
22617
22618 * ccl.c (CCL_WRITE_STRING, CCL_ENCODE_CHAR, Fccl_execute_on_string):
22619 (Fregister_code_conversion_map): Rename locals to avoid shadowing.
22620
22621 * chartab.c (copy_sub_char_table): Now static, since it's not used
22622 elsewhere.
22623 (sub_char_table_ref_and_range, char_table_ref_and_range):
22624 Rename locals to avoid shadowing.
22625 (ASET_RANGE, GET_SUB_CHAR_TABLE): Remove unused macros.
22626
22627 * bidi.c (bidi_check_type): Now static, since it's not used elsewhere.
22628 (BIDI_BOB): Remove unused macro.
22629
22630 * cm.c (cmgoto): Mark variables that gcc -Wuninitialized does not
22631 deduce are never used uninitialized.
22632 * term.c (encode_terminal_code): Likewise.
22633
22634 * term.c (encode_terminal_code): Now static. Remove unused local.
22635
22636 * tparam.h: New file.
22637 * term.c, tparam.h: Include it.
22638 * deps.mk (term.o, tparam.o): Depend on tparam.h.
22639 * term.c (tputs, tgetent, tgetflag, tgetnum, tparam, tgetstr):
22640 Move these decls to tparam.h, and make them agree with what
22641 is actually in tparam.c. The previous trick of using incompatible
22642 decls in different modules does not conform to the C standard.
22643 All callers of tparam changed to use tparam's actual API.
22644 * tparam.c (tparam1, tparam, tgoto):
22645 Use const pointers where appropriate.
22646
22647 * cm.c (calccost, cmgoto): Use const pointers where appropriate.
22648 * cm.h (struct cm): Likewise.
22649 * dispextern.h (do_line_insertion_deletion_costs): Likewise.
22650 * scroll.c (ins_del_costs, do_line_insertion_deletion_costs): Likewise.
22651 * term.c (tty_ins_del_lines, calculate_costs, struct fkey_table):
22652 (term_get_fkeys_1, append_glyphless_glyph, produce_glyphless_glyph):
22653 (turn_on_face, init_tty): Likewise.
22654 * termchar.h (struct tty_display_info): Likewise.
22655
22656 * term.c (term_mouse_position): Rename local to avoid shadowing.
22657
22658 * alloc.c (mark_ttys): Move decl from here ...
22659 * lisp.h (mark_ttys): ... to here, so that it's checked against defn.
22660
22661 2011-03-11 Andreas Schwab <schwab@linux-m68k.org>
22662
22663 * .gdbinit (pwinx, xbuffer): Fix access to buffer name.
22664
22665 2011-03-09 Juanma Barranquero <lekktu@gmail.com>
22666
22667 * search.c (compile_pattern_1): Remove argument regp, unused since
22668 revid:rms@gnu.org-19941211082627-3x1g1wyqkjmwloig.
22669 (compile_pattern): Don't pass it.
22670
22671 2011-03-08 Jan Djärv <jan.h.d@swipnet.se>
22672
22673 * xterm.h (DEFAULT_GDK_DISPLAY): New define.
22674 (GDK_WINDOW_XID, gtk_widget_get_preferred_size): New defines
22675 for ! HAVE_GTK3.
22676 (GTK_WIDGET_TO_X_WIN): Use GDK_WINDOW_XID.
22677
22678 * xmenu.c (menu_position_func): Call gtk_widget_get_preferred_size.
22679
22680 * gtkutil.c: Include gtkx.h if HAVE_GTK3. If ! HAVE_GTK3, define
22681 gdk_window_get_screen, gdk_window_get_geometry,
22682 gdk_x11_window_lookup_for_display and GDK_KEY_g.
22683 (xg_set_screen): Use DEFAULT_GDK_DISPLAY.
22684 (xg_get_pixbuf_from_pixmap): New function.
22685 (xg_get_pixbuf_from_pix_and_mask): Change parameters from GdkPixmap
22686 to Pixmap, take frame as parameter, remove GdkColormap parameter.
22687 Call xg_get_pixbuf_from_pixmap instead of
22688 gdk_pixbuf_get_from_drawable.
22689 (xg_get_image_for_pixmap): Do not make GdkPixmaps, call
22690 xg_get_pixbuf_from_pix_and_mask with Pixmap parameters instead.
22691 (xg_check_special_colors): Use GtkStyleContext and its functions
22692 for HAVE_GTK3.
22693 (xg_prepare_tooltip, xg_hide_tooltip): Call gdk_window_get_screen.
22694 (xg_prepare_tooltip, create_dialog, menubar_map_cb)
22695 (xg_update_frame_menubar, xg_tool_bar_detach_callback)
22696 (xg_tool_bar_attach_callback, xg_update_tool_bar_sizes):
22697 Call gtk_widget_get_preferred_size.
22698 (xg_frame_resized): gdk_window_get_geometry only takes 5
22699 parameters.
22700 (xg_win_to_widget, xg_event_is_for_menubar):
22701 Call gdk_x11_window_lookup_for_display.
22702 (xg_set_widget_bg): New function.
22703 (delete_cb): New function.
22704 (xg_create_frame_widgets): Connect delete-event to delete_cb.
22705 Call xg_set_widget_bg. Only set background pixmap for ! HAVE_GTK3
22706 (xg_set_background_color): Call xg_set_widget_bg.
22707 (xg_set_frame_icon): Call xg_get_pixbuf_from_pix_and_mask.
22708 (xg_create_scroll_bar): vadj is a GtkAdjustment for HAVE_GTK3.
22709 Only call gtk_range_set_update_policy if ! HAVE_GTK3.
22710 (xg_make_tool_item): Only connect xg_tool_bar_item_expose_callback
22711 if ! HAVE_GTK3.
22712 (update_frame_tool_bar): Call gtk_widget_hide.
22713 (xg_initialize): Use GDK_KEY_g.
22714
22715 * xsmfns.c (gdk_set_sm_client_id): Define to gdk_set_sm_client_id
22716 if ! HAVE_GTK3
22717 (x_session_initialize): Call gdk_x11_set_sm_client_id.
22718
22719 * xterm.c (XFillRectangle): Use cairo routines for HAVE_GTK3.
22720 (x_term_init): Disable Xinput(2) with GDK_CORE_DEVICE_EVENTS.
22721 Load ~/emacs.d/gtkrc only for ! HAVE_GTK3.
22722
22723 2011-03-08 Juanma Barranquero <lekktu@gmail.com>
22724
22725 * w32xfns.c (select_palette): Check success of RealizePalette against
22726 GDI_ERROR, not zero.
22727
22728 See ChangeLog.11 for earlier changes.
22729
22730 ;; Local Variables:
22731 ;; coding: utf-8
22732 ;; End:
22733
22734 Copyright (C) 2011-2013 Free Software Foundation, Inc.
22735
22736 This file is part of GNU Emacs.
22737
22738 GNU Emacs is free software: you can redistribute it and/or modify
22739 it under the terms of the GNU General Public License as published by
22740 the Free Software Foundation, either version 3 of the License, or
22741 (at your option) any later version.
22742
22743 GNU Emacs is distributed in the hope that it will be useful,
22744 but WITHOUT ANY WARRANTY; without even the implied warranty of
22745 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22746 GNU General Public License for more details.
22747
22748 You should have received a copy of the GNU General Public License
22749 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.