]> code.delx.au - gnu-emacs/blob - src/ChangeLog
Fix regression introduced by July 10 filelock.c patch.
[gnu-emacs] / src / ChangeLog
1 2013-02-24 Paul Eggert <eggert@cs.ucla.edu>
2
3 Fix regression introduced by July 10 filelock.c patch.
4 * filelock.c (fill_in_lock_file_name): Fix crash caused by the
5 2012-07-10 patch to this file. Reported by Eli Zaretskii in
6 <http://lists.gnu.org/archive/html/emacs-devel/2013-02/msg00533.html>
7 and diagnosed by Andreas Schwab in
8 <http://lists.gnu.org/archive/html/emacs-devel/2013-02/msg00534.html>.
9
10 2013-02-18 Eli Zaretskii <eliz@gnu.org>
11
12 * w32proc.c (new_child): Avoid leaking handles if the subprocess
13 resources were not orderly released.
14
15 2013-02-17 Eli Zaretskii <eliz@gnu.org>
16
17 * w32proc.c (new_child): Remove the loop that attempted to salvage
18 slots of dead processes.
19 (new_child, delete_child, find_child_pid): Don't insist on
20 procinfo.hProcess be NULL for a process slot to be considered
21 inactive, or be non-NULL to be considered active.
22 (reader_thread): Don't set the FILE_AT_EOF flag of a file
23 descriptor if the corresponding child was deleted and its
24 char_avail handle is NULL.
25 (reap_subprocess): Don't reset the FILE_AT_EOF flag. (Bug#13546)
26 (sys_select): Don't pass a NULL process handle to
27 WaitForMultipleObjects. (Bug#13735)
28
29 * xdisp.c (x_draw_vertical_border): For a window that is neither
30 the leftmost nor the rightmost, redraw both the left and the right
31 vertical borders. (Bug#13723)
32
33 2013-02-15 Eli Zaretskii <eliz@gnu.org>
34
35 * w32proc.c (new_child): Free up to 2 slots of dead processes at a
36 time. Improve diagnostics in DebPrint.
37 (reader_thread): If cp->char_avail is NULL, set the FILE_AT_EOF
38 flag, so that sys_select could have a chance of noticing that this
39 process is dead, and call a SIGCHLD handler for it. Improve
40 diagnostics in DebPrint.
41 (reap_subprocess): Reset the FILE_AT_EOF flag set by
42 reader_thread.
43 (sys_select): Watch a process whose procinfo.hProcess is non-NULL
44 even if its char_avail is NULL. Allows to reap subprocesses that
45 were forcibly deleted by delete-process. (Bug#13546)
46
47 * w32.c (sys_socket, sys_bind, sys_connect, sys_gethostname)
48 (sys_gethostbyname, sys_getservbyname, sys_getpeername)
49 (sys_shutdown, sys_setsockopt, sys_listen, sys_getsockname)
50 (sys_accept, sys_recvfrom, sys_sendto, fcntl): In case of failure,
51 make sure errno is set to an appropriate value. (Bug#13546)
52 (socket_to_fd): Add assertion against indexing fd_info[] with a
53 value that is out of bounds.
54 (sys_accept): If fd is negative, do not set up the child_process
55 structure for reading.
56
57 2013-02-14 Paul Eggert <eggert@cs.ucla.edu>
58
59 Backport GCPRO fix from trunk (Bug#13650).
60 The bug was reported for AIX before today's changes.
61 I reproduced the problem on Fedora 17 x86-64 when setting
62 GC_MARK_STACK by hand, and I presume it occurs with default
63 configurations on HP-UX and Unixware.
64 Trunk fix on 2013-01-14 by Dmitry Antipov <dmantipov@yandex.ru>:
65 Fix compilation with GC_MARK_STACK == GC_USE_GCPROS_AS_BEFORE.
66 * eval.c (eval_sub): Protect `form' from being GCed before its
67 car and cdr becomes protected with the backtrace entry.
68
69 Fix AIX port (Bug#13650).
70 * lisp.h (XPNTR) [!USE_LSB_TAG && DATA_SEG_BITS]:
71 Fix bug introduced in 2012-07-27 change. DATA_SEG_BITS, if set,
72 was #undeffed earlier, so it cannot be used as a macro here.
73 Use the constant and not the macro.
74 * unexaix.c: Revert 2013-02-11 and 2013-02-12 changes to this
75 file. They're almost surely OK but we're just before a release so
76 we should avoid changes unless they're clearly needed. Instead,
77 make the following minor change:
78 (ADDR_CORRECT): New macro.
79
80 2013-02-13 Eli Zaretskii <eliz@gnu.org>
81
82 * w32proc.c (new_child): If no vacant slots are found in
83 child_procs[], make another pass looking for slots whose process
84 has exited or died. (Bug#13546)
85
86 * w32.c (sys_pipe): When failing due to file descriptors above
87 MAXDESC, set errno to EMFILE.
88 (_sys_read_ahead): Update cp->status when failing to read serial
89 communications input, so that the status doesn't stay at
90 STATUS_READ_IN_PROGRESS. (Bug#13546)
91
92 2013-02-13 Glenn Morris <rgm@gnu.org>
93
94 * keyboard.c (input-decode-map, key-translation-map): Doc fixes.
95
96 2013-02-12 Paul Eggert <eggert@cs.ucla.edu>
97
98 Improve AIX port some more (Bug#13650).
99 With this, it should be as good as it was in 23.3, though it's
100 still pretty bad: the dumped emacs does not run. See Mark Fleishman in
101 http://lists.gnu.org/archive/html/help-gnu-emacs/2011-04/msg00287.html
102 * unexaix.c (start_of_text): Remove.
103 (_data, _text): Declare as char[], not int, as AIX manual suggests.
104 (bias, lnnoptr, text_scnptr, data_scnptr, load_scnptr)
105 (orig_load_scnptr, orig_data_scnptr):
106 Now off_t, not long, since they are file offsets.
107 (make_hdr): Use _data, not start_of_data ().
108 This is the key part of the fix.
109 (make_hdr, unrelocate_symbols): Use off_t for file offsets.
110 (unrelocate_symbols): Cast pointers to intptr_t, not to ulong.
111
112 * pre-crt0.c (data_start): Initialize to 1.
113 This ports to compilers that optimize the external declaration
114 'int x = 0;' as if it were 'int x;' to shrink the executable.
115
116 2013-02-11 Paul Eggert <eggert@cs.ucla.edu>
117
118 Improve AIX port (Bug#13650).
119 This doesn't fix the bug, but it makes progress: Emacs builds now.
120 * unexaix.c: Include inttypes.h, stdarg.h.
121 (report_error, report_error_1): Mark as _Noreturn.
122 (report_error): Don't report the wrong errno.
123 (report_error_1): Now varargs. All callers changed.
124 (make_hdr): Use uintptr_t, not unsigned, when converting pointers
125 to unsigned. Don't use ADDR_CORRECT, as it no longer exists.
126 (write_ptr): Use %p to print address rather than %lx and a cast
127 to unsigned long. Grow buffer a bit, to be safer.
128
129 2013-02-11 Eli Zaretskii <eliz@gnu.org>
130
131 * bidi.c (bidi_resolve_neutral): After finding the next
132 non-neutral character, accept NEUTRAL_ON type as well, because
133 directional control characters, such as LRE and RLE, have their
134 type converted to that by bidi_resolve_weak. This avoids aborts
135 when LRE/RLE follows a run of neutrals.
136 (bidi_move_to_visually_next): Assert that return value of
137 bidi_peek_at_next_level is non-negative. Negative values will
138 cause an infloop.
139
140 2013-02-05 Daniel Colascione <dancol@dancol.org>
141
142 * emacs.c: Use execvp, not execv, when DAEMON_MUST_EXEC, so that
143 daemon mode works on cygw32 when Emacs is installed and not just
144 during development.
145
146 2013-02-01 Eli Zaretskii <eliz@gnu.org>
147
148 * callproc.c (Fcall_process): Make sure program name in PATH and
149 new_argv[0] is encoded, if needed. Otherwise, un-encoded string
150 is passed to exec/spawnve, which fails unless the file-name
151 encoding is UTF-8.
152
153 * w32proc.c (sys_spawnve): Make sure escape_char is initialized,
154 even if w32-quote-process-args is nil.
155
156 2013-01-27 Eli Zaretskii <eliz@gnu.org>
157
158 * w32.c (sys_open): Zero out the flags for the new file descriptor.
159 (sys_close): Zero out the flags for the file descriptor before
160 closing it. (Bug#13546)
161
162 2013-01-26 Eli Zaretskii <eliz@gnu.org>
163
164 * w32.c (parse_root, get_volume_info, readdir, read_unc_volume)
165 (logon_network_drive, stat_worker, symlink, chase_symlinks): Use
166 CharNextExA and CharPrevExA to iterate over file names encoded in
167 DBCS. (Bug#13553)
168
169 2013-01-25 Eli Zaretskii <eliz@gnu.org>
170
171 * w32.c (w32_get_long_filename, init_environment, readlink):
172 Support file names encoded in DBCS codepages.
173 (readlink): Use the current file-name-coding-system, not the ANSI
174 codepage, to decode and handle targets of symlinks.
175
176 2013-01-23 Eli Zaretskii <eliz@gnu.org>
177
178 * w32.c (max_filename_mbslen): New function.
179 (normalize_filename, readdir): Use it to detect locales where ANSI
180 encoding of file names uses a double-byte character set (DBCS).
181 If a DBCS encoding is used, advance by characters using
182 CharNextExA, instead of incrementing a 'char *' pointer. Use
183 _mbslwr instead of _strlwr. (Bug#13515)
184
185 2013-01-22 Eli Zaretskii <eliz@gnu.org>
186
187 * w32heap.c (allocate_heap) [!_WIN64]: Decrease the initial
188 request of memory reservation to 1.7GB. (Bug#13065)
189
190 2013-01-20 Andreas Schwab <schwab@linux-m68k.org>
191
192 * coding.c (detect_coding_iso_2022): Move back mis-reordered code
193 at check_extra_latin label. (Bug#13505)
194
195 2013-01-17 Glenn Morris <rgm@gnu.org>
196
197 * fns.c (Frandom): Doc fix.
198
199 2013-01-13 Jan Djärv <jan.h.d@swipnet.se>
200
201 * nsfont.m (LCD_SMOOTHING_MARGIN): New define.
202 (nsfont_draw): Remove disabling of LCD smoothing.
203 (ns_glyph_metrics): Add LCD_SMOOTHING_MARGIN to bearings to fix
204 Bug#11484 with LCD smoothing on.
205
206 2013-01-11 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> (tiny change)
207
208 * gtkutil.c (xg_initialize): Backport from trunk.
209 Add ifdef HAVE_FREETYPE around x_last_font_name (Bug#13403).
210
211 2013-01-11 Paul Eggert <eggert@cs.ucla.edu>
212
213 Backport typo fix from trunk, for AIX (Bug#13408).
214 * eval.c (mark_backtrace) [BYTE_MARK_STACK]: Remove stray '*'.
215 This follows up on the 2012-09-29 patch that removed indirection
216 for the 'function' field. Reported by Sergey Vinokurov in
217 <http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00263.html>.
218
219 Fix SIGDANGER handlers, for AIX (Bug#13408).
220 * sysdep.c.c (handle_danger_signal, deliver_danger_signal) [SIGDANGER]:
221 Move handlers here from emacs.c; they were out of place.
222
223 2013-01-05 Eli Zaretskii <eliz@gnu.org>
224
225 * xdisp.c (dump_glyph): Align glyph data better. Use "pD" instead
226 of a non-portable "t" to print ptrdiff_t values. Allow up to 9
227 digits for buffer positions, before misalignment starts. Display
228 "0" for integer "object" field.
229 (dump_glyph_row): Adapt the header line to changes in dump_glyph.
230 Display the newline glyph more unambiguously.
231
232 2013-01-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
233
234 * nsterm.m (ns_draw_underwave):
235 * w32term.c (w32_draw_underwave):
236 * xterm.c (x_draw_underwave): Make underwave look more triangular
237 and also degrade gracefully for small fonts. (Bug#13000)
238
239 * nsterm.m (ns_draw_text_decoration):
240 * w32term.c (x_draw_glyph_string):
241 * xterm.c (x_draw_glyph_string): Don't use previous underline
242 thickness and position if previous underline type is underwave.
243
244 2012-12-31 Glenn Morris <rgm@gnu.org>
245
246 * keymap.c (Fkey_description): Doc fix. (Bug#13323)
247
248 2012-12-29 Andreas Schwab <schwab@linux-m68k.org>
249
250 * src/Makefile.in (TEMACS_LDFLAGS2): Remove.
251 (LIBS_GNUSTEP): Define.
252 (LIBES): Add $(LIBS_GNUSTEP).
253 (temacs$(EXEEXT)): Use $(LDFLAGS) instead of $(TEMACS_LDFLAGS2).
254
255 2012-12-27 Eli Zaretskii <eliz@gnu.org>
256
257 * xdisp.c (set_cursor_from_row): Don't confuse a truncation or
258 continuation glyph on a TTY with an indication of an empty line.
259 (Bug#13277)
260
261 2012-12-27 Glenn Morris <rgm@gnu.org>
262
263 * cygw32.c (Fcygwin_convert_file_name_to_windows)
264 (Fcygwin_convert_file_name_from_windows): Doc fixes.
265
266 2012-12-24 Eli Zaretskii <eliz@gnu.org>
267
268 * fileio.c (file_name_as_directory, directory_file_name): Accept
269 an additional argument MULTIBYTE to indicate whether the input C
270 came from a multibyte or a unibyte Lisp string; all callers
271 adjusted. Don't assume the input string is always multibyte.
272 (Bug#13262)
273 (Ffile_name_directory) [DOS_NT]: Handle unibyte strings correctly:
274 don't ENCODE_FILE them, and return a unibyte string if the input
275 was unibyte.
276 (Fexpand_file_name): Don't mix unibyte with multibyte strings, and
277 don't assume the input strings will always be multibyte. If the
278 input strings are multibyte, decode strings obtained from C
279 library functions.
280
281 2012-12-22 Martin Rudalics <rudalics@gmx.at>
282
283 * window.c (Fselect_window): Reword doc-string (Bug#13248).
284
285 2012-12-21 Eli Zaretskii <eliz@gnu.org>
286
287 * fileio.c (Finsert_file_contents): Doc fix.
288
289 * w32proc.c (new_child, delete_child, find_child_pid): For a
290 subprocess, consider its slot being in use as long as its process
291 handle (procinfo.hProcess) is not NULL. This avoids reusing the
292 slot when a new process is started immediately after killing
293 another one, without waiting enough time for the first process to
294 be reaped and resources allocated for it be orderly freed.
295 (Bug#13086)
296 Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
297
298 2012-12-21 Chong Yidong <cyd@gnu.org>
299
300 * buffer.c (Fset_buffer_major_mode): Doc fix (Bug#13231).
301
302 2012-12-15 Chong Yidong <cyd@gnu.org>
303
304 * fns.c (Fcompare_strings): Doc fix (Bug#13081).
305
306 2012-12-14 Eli Zaretskii <eliz@gnu.org>
307
308 * w32.c (get_name_and_id): Always pass NULL as the first argument
309 of lookup_account_sid. Avoids crashes with UNC file names that
310 refer to DFS domains, not to specific machine names. (Bug#12621)
311 Remove now unused argument FNAME; all callers changed.
312 (get_file_owner_and_group): Remove now unused argument FNAME; all
313 callers changed.
314
315 2012-12-11 Eli Zaretskii <eliz@gnu.org>
316
317 * search.c (search_buffer): Check the inverse translations of each
318 character in pattern when the buffer being searched is unibyte.
319 (Bug#13084)
320
321 2012-12-10 Paul Eggert <eggert@cs.ucla.edu>
322
323 * fileio.c (Fvisited_file_modtime): Return (-1 ...) for nonexistent
324 files, fixing a regression from 24.2.
325 (Fverify_visited_file_modtime): Don't read uninitialized st.st_size.
326
327 2012-12-08 Jan Djärv <jan.h.d@swipnet.se>
328
329 * nsterm.m (fd_handler:): FD_ZERO fds (Bug#13103).
330
331 2012-12-08 Fabrice Popineau <fabrice.popineau@gmail.com>
332
333 * w32fns.c (cache_system_info): Cast sysinfo_cache.dwPageSize to
334 DWORD_PTR, for compatibility with 64-bit builds.
335
336 * w32.c (_PROCESS_MEMORY_COUNTERS_EX):
337 (GetProcessWorkingSetSize_Proc, get_process_working_set_size)
338 (system_process_attributes): Use SIZE_T rather than DWORD, for
339 compatibility with 64-bit builds.
340
341 2012-12-08 Christopher Schmidt <christopher@ch.ristopher.com>
342
343 * lread.c (Vload_source_file_function): Doc fix (Bug#11647).
344
345 2012-12-07 Eli Zaretskii <eliz@gnu.org>
346
347 * indent.c (Fvertical_motion): If a display string will be
348 displayed on the left or the right margin, don't consider it as a
349 factor in cursor positioning. (Bug#13108)
350
351 2012-12-07 Martin Rudalics <rudalics@gmx.at>
352
353 * editfns.c (Fcompare_buffer_substrings): Reword doc-string.
354
355 2012-12-05 Eli Zaretskii <eliz@gnu.org>
356
357 * callproc.c (Fcall_process_region) [!HAVE_MKSTEMP]: If mktemp
358 fails, signal an error instead of continuing with an empty
359 string. (Bug#13079)
360 Encode expanded temp file pattern before passing it to mkstemp or
361 mktemp.
362
363 2012-12-04 Eli Zaretskii <eliz@gnu.org>
364
365 * fileio.c (file_name_as_directory, directory_file_name) [DOS_NT]:
366 Encode the file name before passing it to dostounix_filename, in
367 case it will downcase it (under w32-downcase-file-names).
368 (Bug#12933)
369
370 2012-12-01 Chong Yidong <cyd@gnu.org>
371
372 * fileio.c (Vauto_save_list_file_name): Doc fix.
373
374 2012-11-30 Fabrice Popineau <fabrice.popineau@gmail.com>
375
376 * w32fns.c: Remove prototype of atof.
377 (syspage_mask): Declared DWORD_PTR, for compatibility with 64-bit
378 builds.
379 (file_dialog_callback): Declared UINT_PTR.
380
381 * w32common.h (syspage_mask): Declare DWORD_PTR, for compatibility
382 with 64-bit builds.
383
384 * w32.c (FILE_DEVICE_FILE_SYSTEM, METHOD_BUFFERED)
385 (FILE_ANY_ACCESS, CTL_CODE) [_MSC_VER]: Define only if not already
386 defined.
387
388 2012-11-27 Glenn Morris <rgm@gnu.org>
389
390 * data.c (Fboundp, Fsymbol_value): Doc fix re lexical-binding.
391
392 2012-11-26 Eli Zaretskii <eliz@gnu.org>
393
394 * fontset.c (Finternal_char_font): Return nil on non-GUI frames.
395 (Bug#11964)
396
397 2012-11-24 Paul Eggert <eggert@cs.ucla.edu>
398
399 Revert recent change for Bug#8855.
400 As reported by Harald Hanche-Olsen in
401 <http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00445.html>
402 the change introduces a further bug, of creating lots of zombie
403 processes in some cases. Further work is needed to come up with a
404 better fix for Bug#8855.
405
406 2012-11-24 Eli Zaretskii <eliz@gnu.org>
407
408 * xdisp.c (draw_glyphs): Don't draw in mouse face if mouse
409 highlighting on the frame was cleared. Prevents assertion
410 violations when repeatedly clicking on the "Top" link of the
411 "bread-crumbs" in Info buffers.
412
413 2012-11-23 Paul Eggert <eggert@cs.ucla.edu>
414 Eli Zaretskii <eliz@gnu.org>
415
416 Fix a race condition with glib (Bug#8855).
417 The symptom is a diagnostic "GLib-WARNING **: In call to
418 g_spawn_sync(), exit status of a child process was requested but
419 SIGCHLD action was set to SIG_IGN and ECHILD was received by
420 waitpid(), so exit status can't be returned." The diagnostic
421 is partly wrong, as the SIGCHLD action is not set to SIG_IGN.
422 The real bug is a race condition between Emacs and glib: Emacs
423 does a waitpid (-1, ...) and reaps glib's subprocess by mistake,
424 so that glib can't find it. Work around the bug by invoking
425 waitpid only on subprocesses that Emacs itself creates.
426
427 This is a backport from the trunk, consisting of:
428
429 * w32proc.c (create_child): Don't clip the PID of the child
430 process to fit into an Emacs integer, as this is no longer a
431 restriction.
432 (waitpid): Rename from sys_wait. Emulate a Posix 'waitpid' by
433 reaping only the process specified by PID argument, if that is
434 positive. Use PID instead of dead_child to know which process to
435 reap. Wait for the child to die only if WNOHANG is not in
436 OPTIONS.
437 (sys_select): Don't set dead_child.
438
439 * sysdep.c (wait_for_termination_1): Remove the WINDOWSNT portion,
440 as it is no longer needed.
441
442 * process.c (waitpid, WUNTRACED) [!WNOHANG]: Remove definitions,
443 no longer needed.
444 (create_process, record_child_status_change): Don't use special
445 value -1 in pid field, as the caller now must know the pid rather
446 than having the callee infer it. The inference was sometimes
447 incorrect anyway, due to another race.
448 (create_process): Set new 'alive' member if child is created.
449 (process_status_retrieved): New function.
450 (record_child_status_change): Use it.
451 Accept negative 1st argument, which means to wait for the
452 processes that Emacs already knows about. Move special-case code
453 for DOS_NT (which lacks WNOHANG) here, from caller. Keep track of
454 processes that have already been waited for, by testing and
455 clearing new 'alive' member. Remove the setting of
456 record_at_most_one_child for the !WNOHANG case.
457 (CAN_HANDLE_MULTIPLE_CHILDREN): Remove, as record_child_status_change
458 now does this internally.
459 (handle_child_signal): Let record_child_status_change do all
460 the work, since we do not want to reap all exited child processes,
461 only the child processes that Emacs itself created.
462 * process.h (Lisp_Process): New boolean member 'alive'.
463
464 2012-11-23 Eli Zaretskii <eliz@gnu.org>
465
466 * xdisp.c (set_cursor_from_row): Skip step 2 only if point is not
467 between bpos_covered and bpos_max. This fixes cursor display when
468 several display strings follow each other.
469
470 * .gdbinit (pgx): If the glyph's object is a string, display the
471 pointer to string data, rather than the value of the string object
472 itself (which barfs under CHECK_LISP_OBJECT_TYPE).
473
474 2012-11-21 Eli Zaretskii <eliz@gnu.org>
475
476 * indent.c (Fvertical_motion): If the starting position is covered
477 by a display string, return to one position before that, to avoid
478 overshooting it inside move_it_to. (Bug#12930)
479
480 2012-11-20 Daniel Colascione <dancol@dancol.org>
481
482 * w32fns.c (Fx_file_dialog):
483 (Fx_file_dialog): Accomodate rename of cygwin_convert_path* to
484 cygwin_convert_file_name*.
485
486 * cygw32.c (Fcygwin_convert_path_to_windows, syms_of_cygw32):
487 Rename cygwin_convert_path* to cygwin_convert_file_name*.
488
489 2012-11-20 Ken Brown <kbrown@cornell.edu>
490
491 * emacs.c (main): Set the G_SLICE environment variable for all
492 Cygwin builds, not just GTK builds. See
493 https://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00368.html.
494
495 2012-11-19 Eli Zaretskii <eliz@gnu.org>
496
497 * xdisp.c (start_hourglass) [HAVE_NTGUI]: Don't mix declaration of
498 w32_note_current_window with code. (Backport from trunk.)
499
500 * w32.c (FILE_DEVICE_FILE_SYSTEM, METHOD_BUFFERED)
501 (FILE_ANY_ACCESS, CTL_CODE, FSCTL_GET_REPARSE_POINT) [_MSC_VER]:
502 Define for the MSVC compiler.
503
504 * w32term.h (EnumSystemLocalesW) [_MSC_VER]: Add a missing
505 semi-colon.
506
507 2012-11-18 Eli Zaretskii <eliz@gnu.org>
508
509 * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
510 (Fexpand_file_name) [DOS_NT]: Pass encoded file name to
511 dostounix_filename. Prevents crashes down the road, because
512 dostounix_filename assumes it gets a unibyte string. Reported by
513 Michel de Ruiter <michel@sentient.nl>, see
514 http://lists.gnu.org/archive/html/help-emacs-windows/2012-11/msg00017.html
515
516 2012-11-17 Eli Zaretskii <eliz@gnu.org>
517
518 * w32select.c: Include w32common.h before w32term.h, so that
519 windows.h gets included before w32term.h uses some of its
520 features, see below.
521
522 * w32term.h (LOCALE_ENUMPROCA, LOCALE_ENUMPROCW) [_MSC_VER]: New
523 typedefs.
524 (EnumSystemLocalesA, EnumSystemLocalesW) [_MSC_VER]: New
525 prototypes.
526 (EnumSystemLocales) [_MSC_VER]: Define if undefined. (Bug#12878)
527
528 2012-11-17 Jan Djärv <jan.h.d@swipnet.se>
529
530 * nsterm.m (hold_event): Set send_appdefined to YES (Bug#12834).
531 (ns_select): Return at once if events are held (Bug#12834).
532
533 2012-11-16 enami tsugutomo <tsugutomo.enami@jp.sony.com>
534
535 * unexelf.c (ELFSIZE) [__NetBSD__ && _LP64]: Set to 64.
536 Needed following 2012-10-20 change. (Bug#12902)
537
538 2012-11-16 Glenn Morris <rgm@gnu.org>
539
540 * editfns.c (Fmessage): Mention message-log-max. (Bug#12849)
541
542 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
543
544 * eval.c (Finteractive_p): Revert lexbind-merge mishap.
545
546 2012-11-14 Eli Zaretskii <eliz@gnu.org>
547
548 * w32proc.c (timer_loop): Make sure SuspendThread and ResumeThread
549 use the same value of thread handle.
550 (start_timer_thread): If the timer thread exited (due to error),
551 clean up by closing the two handles it used. Duplicate the caller
552 thread's handle here, so it gets duplicated only once, when
553 launching the timer thread. Set priority of the timer thread, not
554 the caller thread.
555 (getitimer): Don't duplicate the caller thread's handle here.
556 (Bug#12832)
557
558 2012-11-13 Jan Djärv <jan.h.d@swipnet.se>
559
560 * nsterm.m (hold_event): Send SIGIO to make sure ns_read_socket is
561 called (Bug#12834).
562
563 2012-11-12 Eli Zaretskii <eliz@gnu.org>
564
565 * xdisp.c (decode_mode_spec): Limit the value of WIDTH argument
566 passed to pint2str and pint2hrstr to be at most the size of the
567 frame's decode_mode_spec_buffer. This avoids crashes with very
568 large values of FIELD_WIDTH argument to decode_mode_spec.
569 (Bug#12867)
570
571 2012-11-07 Martin Rudalics <rudalics@gmx.at>
572
573 * window.c (Fsplit_window_internal): Set combination limit of
574 new parent window to t iff Vwindow_combination_limit is t;
575 fixing a regression introduced with the change from 2012-09-22.
576 (Fwindow_combination_limit, Fset_window_combination_limit):
577 Fix doc-strings.
578
579 2012-11-06 Eli Zaretskii <eliz@gnu.org>
580
581 * xdisp.c (try_scrolling): Fix correction of aggressive-scroll
582 amount when the scroll margins are too large. When scrolling
583 backwards in the buffer, give up if cannot reach point or the
584 scroll margin within a reasonable number of screen lines.
585 Fixes point position in window under scroll-up/down-aggressively when
586 point is positioned many lines beyond the window top/bottom.
587 (Bug#12811)
588
589 2012-11-05 Eli Zaretskii <eliz@gnu.org>
590
591 * ralloc.c (relinquish): If real_morecore fails to return memory
592 to the system, don't crash; instead, leave the last heap
593 unchanged and return. (Bug#12774)
594
595 2012-11-03 Eli Zaretskii <eliz@gnu.org>
596
597 * lisp.mk: Adjust comments to the fact that term/internal is now
598 loaded from loadup.el.
599
600 * msdos.c (msdos_abort): Rename from emacs_abort, and make static.
601 (msdos_fatal_signal): New function.
602 (XMenuActivate): Adjust the call to kbd_buffer_events_waiting to
603 its argument list.
604
605 * conf_post.h (_GL_EXECINFO_INLINE) [MSDOS]: Define to "inline"
606 for GCC versions before 4.
607 (emacs_raise): Define to call msdos_fatal_signal.
608
609 * xdisp.c (init_from_display_pos): Fix initialization of the bidi
610 iterator when starting in the middle of a display or overlay
611 string. (Bug#12745)
612
613 2012-11-03 Jan Djärv <jan.h.d@swipnet.se>
614
615 * widget.c (resize_cb): New function.
616 (EmacsFrameRealize): Add resize_cb as event handler (Bug#12733).
617 (EmacsFrameResize): Check if all is up to date before changing frame
618 size.
619
620 2012-11-01 Eli Zaretskii <eliz@gnu.org>
621
622 * w32proc.c (getpgrp, setpgid): New functions. (Bug#12776)
623
624 2012-10-31 Paul Eggert <eggert@cs.ucla.edu>
625
626 Fix crash when using Emacs as commit editor for git (Bug#12697).
627 * callproc.c (setpgrp): Remove macro, as we now use setpgid
628 and it is configured in conf_post.h.
629 (Fcall_process): Don't invoke both setsid and setpgid; the former
630 is enough, if it exists.
631 * callproc.c (Fcall_process, child_setup):
632 * process.c (create_process): Use setpgid.
633 * conf_post.h (setpgid) [!HAVE_SETPGID]: New macro, which substitutes
634 for the real thing.
635 * dispnew.c (init_display): Initialize the foreground group
636 if we are running a tty display.
637 * emacs.c (main): Do not worry about setpgrp; init_display does it now.
638 * lisp.h (init_foreground_group): New decl.
639 * sysdep.c (inherited_pgroup): New static var.
640 (init_foreground_group, tcsetpgrp_without_stopping)
641 (narrow_foreground_group, widen_foreground_group): New functions.
642 (init_sys_modes): Narrow foreground group.
643 (reset_sys_modes): Widen foreground group.
644
645 2012-10-31 Michael Albinus <michael.albinus@gmx.de>
646
647 * dbusbind.c: Fix cut'n'waste error. Use HAVE_DBUS_VALIDATE_INTERFACE.
648
649 2012-10-31 Martin Rudalics <rudalics@gmx.at>
650
651 * minibuf.c (read_minibuf): Restore current buffer since
652 choose_minibuf_frame calling Fset_frame_selected_window may
653 change it (Bug#12766).
654
655 2012-10-30 Jan Djärv <jan.h.d@swipnet.se>
656
657 * frame.c (Fframe_pixel_height): Fix documentation (Bug#12733).
658
659 2012-10-30 Kenichi Handa <handa@gnu.org>
660
661 * font.c (Ffont_at): If WINDOW is specified and it is not
662 displaying the current buffer, signal an error.
663
664 2012-10-29 Daniel Colascione <dancol@dancol.org>
665
666 * cygw32.h, cygw32.c (Qutf_16le, from_unicode, to_unicode):
667 In preparation for fixing bug#12739, move these functions from
668 here...
669
670 * coding.h, coding.c: ... to here, and compile them only when
671 WINDOWSNT or CYGWIN. Moving these functions out of cygw32 proper
672 lets us write cygw32-agnostic code for the HAVE_NTGUI case.
673
674 2012-10-28 Eli Zaretskii <eliz@gnu.org>
675
676 * w32proc.c (TIMER_TICKS_PER_SEC): New macro.
677 (timer_loop, getitimer, setitimer): Use it instead of
678 CLOCKS_PER_SEC, which is no longer pertinent, since we don't use
679 'clock'.
680 (w32_get_timer_time): Use 10*TIMER_TICKS_PER_SEC instead of a
681 literal 10000.
682
683 2012-10-28 Jan Djärv <jan.h.d@swipnet.se>
684
685 * nsterm.m (NO_APPDEFINED_DATA): New define.
686 (last_appdefined_event_data): New variable
687 (last_appdefined_event): Remove.
688 (ns_select): Initialize t from last_appdefined_event_data instead
689 of [last_appdefined_event data1].
690 (sendEvent:): Save [theEvent data1] to last_appdefined_event_data,
691 remove last_appdefined_event (Bug#12698).
692
693 2012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
694
695 * frame.c (x_set_font): Catch internal error.
696
697 2012-10-27 Eli Zaretskii <eliz@gnu.org>
698
699 Avoid overflow in w32 implementation of interval timers.
700 When possible, for ITIMER_PROF count only times the main thread
701 actually executes.
702 * w32proc.c <struct itimer_data>: 'expire' and 'reload' are now
703 'volatile ULONGLONG' types. All the other data which was
704 previously clock_t is now ULONGLONG. 'terminate' is 'volatile int'.
705 (GetThreadTimes_Proc): New typedef.
706 (w32_get_timer_time): New function, returns a suitable time value
707 for the timer.
708 (timer_loop): Enter critical section when accessing ULONGLONG
709 values of the itimer_data struct, as these accesses are no longer
710 atomic. Call 'w32_get_timer_time' instead of 'clock'.
711 Remove unused variable.
712 (init_timers): Initialize s_pfn_Get_Thread_Times.
713 (start_timer_thread): Don't assign itimer->caller_thread here.
714 (getitimer): Assign itimer->caller_thread here.
715 (setitimer): Always call getitimer to get the value of ticks_now.
716 (sys_spawnve): Avoid compiler warning about format mismatch.
717
718 2012-10-26 Eli Zaretskii <eliz@gnu.org>
719
720 * w32fns.c (w32_wnd_proc) <WM_MOUSEMOVE>: Don't enable tracking of
721 mouse movement events if the menu bar is active. This avoids
722 producing a busy "hour-glass" cursor by Windows if the mouse
723 pointer is positioned over a tooltip shown for some menu item.
724
725 2012-10-25 Paul Eggert <eggert@cs.ucla.edu>
726
727 Don't assume process IDs fit in int.
728 * emacs.c (shut_down_emacs) [!DOS_NT]:
729 * sysdep.c (sys_suspend) [SIGTSTP && !MSDOS]:
730 * term.c (dissociate_if_controlling_tty) [!DOS_NT]:
731 Use pid_t, not int, to store process IDs, as 'int'
732 is not wide enough on a few platforms (e.g., AIX and IRIX).
733
734 2012-10-23 Kenichi Handa <handa@gnu.org>
735
736 The following change is to make face-font-rescale-alist work
737 correctly for non-ASCII fonts.
738
739 * font.c (font_open_entity): Don't handle Vface_font_rescale_alist.
740 (font_open_for_lface): Handle Vface_font_rescale_alist.
741
742 2012-10-23 Chong Yidong <cyd@gnu.org>
743
744 * xfaces.c (Vfont_list_limit): Move unused variable to faces.el.
745
746 2012-10-21 Jan Djärv <jan.h.d@swipnet.se>
747
748 * nsfont.m (nsfont_open, ns_glyph_metrics): Force integer advancement
749 for screen font.
750 (nsfont_draw): Turn off LCD-smoothing (Bug#11484).
751
752 * xterm.c (x_focus_changed): Check if daemonp when sending focus in
753 event (Bug#12681).
754
755 2012-10-21 Glenn Morris <rgm@gnu.org>
756
757 * lisp.mk (lisp): Add cp51932.el and eucjp-ms.el.
758
759 2012-10-20 Paul Eggert <eggert@cs.ucla.edu>
760
761 Port to OpenBSD 5.1.
762 * frame.c (Fmouse_position, Fmouse_pixel_position):
763 * xdisp.c (produce_stretch_glyph):
764 Declare local vars only when they're needed.
765 This is clearer and avoids a warning on OpenBSD about unused vars.
766 * frame.h (FRAME_WINDOW_P): Always evaluate its argument.
767 This is safer, and avoids OpenBSD warnings about unused vars.
768 * keyboard.c (record_menu_key): Remove unnecessary decl.
769 (poll_timer): Define only if POLL_FOR_INPUT is defined.
770 * unexelf.c (ELFSIZE) [!ElfW]: Do not define if already defined,
771 as our definition clashes with OpenBSD's.
772 * xfaces.c (load_face_colors, check_lface_attrs)
773 (get_lface_attributes_no_remap, get_lface_attributes)
774 (lface_fully_specified_p, x_supports_face_attributes_p)
775 (tty_supports_face_attributes_p, face_fontset, realize_face)
776 (realize_x_face, realize_tty_face):
777 Declare parameters to be Lisp_Object[LFACE_VECTOR_SIZE], not
778 merely Lisp_Object *. This is more informative and avoids
779 a warning on OpenBSD about accessing beyond an object's size.
780
781 2012-10-20 Chong Yidong <cyd@gnu.org>
782
783 * lread.c (Fload): Doc fix (Bug#12592).
784
785 2012-10-19 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
786
787 * font.c (Ffont_at): Fix previous change.
788
789 2012-10-19 Eli Zaretskii <eliz@gnu.org>
790
791 * puresize.h (BASE_PURESIZE): Bump the base value to 1700000.
792 See http://lists.gnu.org/archive/html/emacs-devel/2012-10/msg00593.html
793 for the reasons.
794
795 * alloc.c (NSTATICS): Decrease to 0x800.
796
797 2012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
798
799 * fns.c (Fnreverse): Include the problem element when signalling an
800 error (bug#12677).
801
802 2012-10-18 Jan Djärv <jan.h.d@swipnet.se>
803
804 * nsterm.m (ns_select): Check writefds before call to
805 FD_ISSET (Bug#12668).
806
807 2012-10-18 Daniel Colascione <dancol@dancol.org>
808
809 * alloc.c (NSTATICS): Increase from 0x650 to 0x1000
810 (staticpro): If we run out of staticpro slots, die with an
811 informative error instead of just calling emacs_abort.
812
813 2012-10-18 Martin Rudalics <rudalics@gmx.at>
814
815 Fix two flaws reported by Dmitry Antipov.
816 * window.c (Ftemp_output_buffer_show): Remove.
817 (Fwindow_vscroll, Fset_window_vscroll): Use decode_live_window.
818 (syms_of_window): Remove defsubr for Stemp_output_buffer_show.
819
820 2012-10-17 Eli Zaretskii <eliz@gnu.org>
821
822 * makefile.w32-in ($(BLD)/w32.$(O)):
823 ($(BLD)/vm-limit.$(O)):
824 ($(BLD)/term.$(O)):
825 ($(BLD)/unexw32.$(O)):
826 ($(BLD)/fileio.$(O)):
827 ($(BLD)/dispnew.$(O)): Update dependencies.
828
829 * w32term.h (w32_initialize_display_info, initialize_w32_display):
830 Add prototypes.
831
832 * w32proc.c: Include ctype.h.
833
834 * w32.h (init_environment, check_windows_init_file)
835 (syms_of_ntproc, syms_of_ntterm, dostounix_filename)
836 (unixtodos_filename, init_winsock, srandom, random, sys_pipe)
837 (set_process_dir, sys_spawnve, register_child, sys_sleep, getwd)
838 (sys_link): Add prototypes.
839
840 * w32.c: Include w32select.h.
841 (sys_access, e_malloc, sys_select): Add prototypes.
842 (emacs_gnutls_pull): 'timeout' is now EMACS_TIME, not struct timeval.
843
844 * vm-limit.c [WINDOWSNT]: Include w32heap.h.
845
846 * unexw32.c: Include lisp.h and w32.h.
847
848 * term.c [WINDOWSNT]: Include w32term.h.
849
850 * process.c [WINDOWSNT]: Add prototype of sys_select.
851
852 * fileio.c [WINDOWSNT]: Include w32.h.
853
854 * dispnew.c [WINDOWSNT]: Include w32.h.
855
856 * cygw32.c (Fcygwin_convert_path_to_windows)
857 (Fcygwin_convert_path_from_windows): Use EQ to compare 2
858 Lisp_Object values. (Bug#12661)
859
860 * w32fns.c (w32_msg_pump): Use XIL instead of casting an integer
861 to Lisp_Object. (Bug#12661)
862
863 2012-10-17 Kenichi Handa <handa@gnu.org>
864
865 * xdisp.c (reseat_1): Make the information stored in it->cmp_it
866 invalidate.
867
868 2012-10-17 Dmitry Antipov <dmantipov@yandex.ru>
869
870 * buffer.c (Fkill_buffer): When unchaining the marker,
871 reset its buffer pointer to NULL (Bug#12652).
872
873 2012-10-17 Dmitry Antipov <dmantipov@yandex.ru>
874
875 Do not verify indirection counters of killed buffers (Bug#12579).
876 * buffer.h (BUFFER_CHECK_INDIRECTION): New macro.
877 * buffer.c (compact_buffer, set_buffer_internal_1): Use it.
878
879 2012-10-16 Dmitry Antipov <dmantipov@yandex.ru>
880
881 * alloc.c (Fmake_byte_code): Fix typo in comment.
882 * print.c (print_interval): Define as static to match prototype.
883 * indent.c (disptab_matches_widthtab, recompute_width_table):
884 Convert to eassert.
885
886 2012-10-16 Dmitry Antipov <dmantipov@yandex.ru>
887
888 * editfns.c (get_system_name): Remove.
889 * lisp.h (get_system_name): Remove prototype.
890 * xrdb.c (getenv, getpwuid, getpwnam): Remove prototypes.
891 (get_environ_db): Use Vsystem_name. Avoid call to strlen.
892
893 2012-10-15 Daniel Colascione <dancol@dancol.org>
894
895 * dbusbind.c: Add comment explaining reason for previous change.
896
897 2012-10-15 Martin Rudalics <rudalics@gmx.at>
898
899 * window.c (Fwindow_end): Rewrite check whether cached position
900 can be used (Bug#12600).
901 (resize_frame_windows, grow_mini_window, shrink_mini_window):
902 Set windows_or_buffers_changed.
903
904 2012-10-15 Daniel Colascione <dancol@dancol.org>
905
906 * dbusbind.c: Fix cygw32 build break when compiling with dbus
907 enabled by undefining the symbol "interface", which the platform
908 headers define to something incompatible.
909
910 2012-10-14 Daniel Colascione <dancol@dancol.org>
911
912 * image.c (init_tiff_functions, init_imagemagick_functions)
913 (init_svg_functions): Fix cygw32 build break by using these
914 functions only when WINDOWSNT _and_ HAVE_NTGUI.
915
916 2012-10-14 Jan Djärv <jan.h.d@swipnet.se>
917
918 * nsterm.m (ns_select): Count fd:s in writefs also (Bug#12422).
919
920 2012-10-13 Jan Djärv <jan.h.d@swipnet.se>
921
922 * gtkutil.c (xg_set_widget_bg): Divide by 65535 (Bug#12612).
923
924 2012-10-13 HANATAKA, Shinya <bogytech@gmail.com> (tiny change)
925
926 * coding.c (detect_coding): Set coding->id before calling
927 this->detector.
928
929 2012-10-13 Andreas Schwab <schwab@linux-m68k.org>
930
931 * fileio.c: Formatting fixes.
932
933 2012-10-13 Paul Eggert <eggert@cs.ucla.edu>
934
935 Fix some stat-related races.
936 * fileio.c (Fwrite_region): Avoid race condition if a file is
937 removed or renamed by some other process immediately after Emacs
938 writes it but before Emacs stats it. Do not assume that stat (or
939 fstat) succeeds.
940 * image.c (slurp_file): Resolve the file name with fopen + fstat
941 rather than stat + fopen.
942 (pbm_read_file) [0]: Remove unused code with stat race.
943 * process.c (allocate_pty) [HAVE_PTYS && !PTY_ITERATION && !PTY_OPEN]:
944 Remove ineffective code with stat race.
945
946 2012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
947
948 * doc.c (get_doc_string): Don't signal an error if the file is missing.
949
950 2012-10-12 Jan Djärv <jan.h.d@swipnet.se>
951
952 * nsterm.m (hold_event_q): New static variable.
953 (EV_TRAILER, sendScrollEventAtLoc:fromEvent:): Call hold_event if
954 ! q_event_ptr.
955 (hold_event): New function.
956 (ns_read_socket): If hold_event_q have events, store them and
957 return (Bug#12384).
958 (setPosition:portion:whole:): Send SIGIO to ourselves if apploopnr
959 is zero (Bug#12384).
960
961 2012-10-12 Juanma Barranquero <lekktu@gmail.com>
962
963 * makefile.w32-in ($(BLD)/w32select.$(O)): Update dependencies.
964
965 2012-10-12 Eli Zaretskii <eliz@gnu.org>
966
967 * makefile.w32-in ($(BLD)/fileio.$(O)): Add sys/file.h.
968
969 * fileio.c (check_existing): New function.
970 (make_temp_name, Ffile_exists_p, Ffile_writable_p): Call it
971 instead of calling 'stat', when what's needed is to check whether
972 a file exists. This avoids expensive system calls on MS-Windows.
973 (Bug#12587)
974
975 * w32.c (init_environment): Call 'check_existing' instead of 'stat'.
976
977 * lread.c (openp) [WINDOWSNT]: Call 'access' instead of 'stat' to
978 determine whether a file exists and is not a directory.
979
980 * lisp.h (check_existing): Add prototype.
981
982 2012-10-12 Jan Djärv <jan.h.d@swipnet.se>
983
984 * nsfont.m (nsfont_open): Remove font cache, it is not GC correct.
985
986 2012-10-12 Glenn Morris <rgm@gnu.org>
987
988 * buffer.c (Fset_buffer): Doc fix. (Bug#12624)
989
990 2012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
991
992 * buffer.c (Fkill_buffer): Null out the overlay list(s) as well.
993
994 * eval.c (Fautoload): Remember previous autoload status in load-history.
995
996 2012-10-11 Paul Eggert <eggert@cs.ucla.edu>
997
998 lread.c, macros.c, marker.c, menu.c, minibuf.c: Use bool for booleans.
999 * lread.c (load_each_byte, new_backquote_flag, readchar)
1000 (read_filtered_event, lisp_file_lexically_bound_p)
1001 (safe_to_load_version, Fload, complete_filename_p, openp)
1002 (build_load_history, readevalloop, read_escape, read1)
1003 (string_to_number, read_vector, read_list):
1004 * macros.c (Fstart_kbd_macro):
1005 * marker.c (CONSIDER):
1006 * menu.c (parse_single_submenu, digest_single_submenu)
1007 (find_and_return_menu_selection, Fx_popup_menu):
1008 * minibuf.c (read_minibuf_noninteractive, read_minibuf)
1009 (Ftry_completion):
1010 * nsmenu.m (ns_update_menubar, runMenuAt:forFrame:keymaps:):
1011 (ns_menu_show):
1012 * xmenu.c (set_frame_menubar, create_and_show_popup_menu)
1013 (xmenu_show, xdialog_show):
1014 Use bool for booleans.
1015 * lread.c (safe_to_load_version): Rename from safe_to_load_p,
1016 as it's not a predicate. All uses changed. Omit unnecessary
1017 buffer termination.
1018
1019 2012-10-11 Dmitry Antipov <dmantipov@yandex.ru>
1020
1021 * editfns.c (save_excursion_save): Use nil if mark points to nowhere.
1022 (save_excursion_restore): Do not restore mark if it was not saved.
1023
1024 2012-10-11 Paul Eggert <eggert@cs.ucla.edu>
1025
1026 * marker.c (cached_modiff): EMACS_INT, not int.
1027
1028 * w32select.c (waiting_for_input): Declare by including "keyboard.h"
1029 instead of having a wrong decl.
1030 * nsmenu.m (waiting_for_input): Remove wrong decl.
1031
1032 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
1033
1034 keyboard.c, keymap.c: Use bool for booleans.
1035 * dispnew.c (sit_for): Distinguish between 3-way display_option
1036 and boolean do_display.
1037 * keyboard.c (single_kboard, this_command_key_count_reset)
1038 (waiting_for_input, echoing, immediate_quit, input_pending)
1039 (interrupt_input, interrupts_deferred, pop_kboard)
1040 (temporarily_switch_to_single_kboard, ignore_mouse_drag_p)
1041 (command_loop_1, adjust_point_for_property)
1042 (safe_run_hooks_error, input_polling_used, read_char):
1043 (help_char_p, readable_events, kbd_buffer_events_waiting)
1044 (kbd_buffer_get_event, timer_check_2, make_lispy_event)
1045 (lucid_event_type_list_p, get_input_pending):
1046 (gobble_input, menu_separator_name_p, menu_bar_item)
1047 (parse_menu_item, parse_tool_bar_item, read_char_x_menu_prompt)
1048 (read_char_minibuf_menu_prompt, access_keymap_keyremap)
1049 (keyremap_step, test_undefined, read_key_sequence)
1050 (detect_input_pending, detect_input_pending_ignore_squeezables)
1051 (detect_input_pending_run_timers, requeued_events_pending_p)
1052 (quit_throw_to_read_char, Fset_input_interrupt_mode):
1053 * keymap.c (get_keymap, keymap_parent, keymap_memberp)
1054 (access_keymap_1, access_keymap, map_keymap, get_keyelt)
1055 (Fdefine_key, Flookup_key, struct accessible_keymaps_data)
1056 (accessible_keymaps_1, Fkey_description, push_key_description):
1057 (shadow_lookup, struct where_is_internal_data)
1058 (where_is_internal, Fwhere_is_internal, where_is_internal_1)
1059 (Fdescribe_buffer_bindings, describe_map_tree, struct describe_map_elt)
1060 (describe_map, describe_vector):
1061 * menu.c (single_menu_item):
1062 * nsmenu.m (ns_update_menubar):
1063 * process.c (wait_reading_process_output):
1064 * search.c (scan_buffer, scan_newline):
1065 Use bool for boolean.
1066 * keyboard.c (timers_run, swallow_events)
1067 (detect_input_pending_run_timers):
1068 * process.c (wait_reading_process_output):
1069 Use unsigned for counter where wraparound-on-overflow is desired,
1070 since unsigned is guaranteed to have that behavior and signed is not.
1071 (read_char): Use ptrdiff_t for string length.
1072 (get_input_pending): Remove first argument, since it was always
1073 the same pointer-to-int (now pointer-to-boolean) &input_pending,
1074 and behave as if it had that value. Return new value of
1075 input_pending. All callers changed.
1076 * keyboard.h (struct kboard): Use unsigned : 1 for boolean member
1077 immediate_echo. Use ptrdiff_t for echo_after_prompt, since it's
1078 a string length.
1079 * keymap.c (push_key_description): Omit last arg, which was always 1.
1080 All callers changed.
1081
1082 * regex.c (immediate_quit) [emacs]: Remove duplicate decl.
1083
1084 2012-10-10 Juanma Barranquero <lekktu@gmail.com>
1085
1086 * makefile.w32-in ($(BLD)/dispnew.$(O), $(BLD)/indent.$(O))
1087 ($(BLD)/term.$(O)): Update dependencies.
1088
1089 2012-10-10 Dmitry Antipov <dmantipov@yandex.ru>
1090
1091 * alloc.c (mark_object): Use meaningful PVEC_NORMAL_VECTOR.
1092 * lisp.h (enum pvec_type): Adjust comments and omit explicit
1093 initializer for PVEC_NORMAL_VECTOR.
1094
1095 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
1096
1097 Clean out old termopts cruft.
1098 * termopts.h (flow_control, meta_key): Remove unused decls.
1099 * dispnew.c, indent.c, nsterm.m, term.c, xsettings.c, xsmfns.c:
1100 Don't include termopts.h.
1101
1102 2012-10-10 Dmitry Antipov <dmantipov@yandex.ru>
1103
1104 * alloc.c (gc_sweep): Use pointer-to-a-pointer loop for buffers.
1105
1106 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
1107
1108 * commands.h (immediate_quit): Remove duplicate decl.
1109
1110 2012-10-09 Jan Djärv <jan.h.d@swipnet.se>
1111
1112 * nsfont.m (Vfonts_in_cache): Remove, not needed as font.c handles
1113 caching.
1114 (nsfont_open): Remove setting of Vfonts_in_cache.
1115 (syms_of_nsfont): Remove initialization of Vfonts_in_cache.
1116
1117 2012-10-09 Eli Zaretskii <eliz@gnu.org>
1118
1119 * w32fns.c (w32_last_error): Change the return value to DWORD, to
1120 match what GetLastError returns. Explain why the function is
1121 needed.
1122
1123 * frame.c (delete_frame): Rename local variable 'tooltip_frame' to
1124 'is_tooltip_frame', to avoid confusion with its global namesake.
1125
1126 2012-10-08 Daniel Colascione <dancol@dancol.org>
1127
1128 * xdisp.c (start_hourglass): Call w32_note_current_window when
1129 HAVE_NTGUI, not just WINDOWSNT, resolving a problem in the cygw32
1130 build that caused Emacs to display the hourglass cursor forever.
1131
1132 * w32fns.c (Fx_display_color_cells): Instead of using NCOLORS,
1133 which is broken under remote desktop, calculate the number of
1134 colors available for a display based on the display's number of
1135 planes and number of bits per pixel per plane. (bug#10397).
1136
1137 2012-10-08 Jan Djärv <jan.h.d@swipnet.se>
1138
1139 * nsfont.m (Vfonts_in_cache): New variable.
1140 (nsfont_open): Use unsignedLongLongValue for cache in case wide ints
1141 are used. Add cached fonts to Vfonts_in_cache.
1142 (syms_of_nsfont): Initialize and staticpro Vfonts_in_cache.
1143
1144 2012-10-08 Juanma Barranquero <lekktu@gmail.com>
1145
1146 * makefile.w32-in (LOCAL_FLAGS): Don't define HAVE_NTGUI, it's now
1147 in nt/config.nt.
1148 (FONT_H): Define after FRAME_H.
1149 ($(BLD)/emacs.$(O), $(BLD)/process.$(O), $(BLD)/w32heap.$(O)):
1150 Update dependencies.
1151
1152 * w32term.c: Remove leftover declaration of keyboard_codepage.
1153
1154 2012-10-08 Eli Zaretskii <eliz@gnu.org>
1155
1156 * makefile.w32-in (FONT_H): Add $(FRAME_H).
1157 (W32TERM_H): Add $(ATIMER_H) and $(FRAME_H).
1158 ($(BLD)/emacs.$(O), $(BLD)/w32console.$(O)): Update dependencies.
1159 (GLOBAL_SOURCES): Add cygw32.c.
1160 ($(BLD)/unexw32.$(O)):
1161 ($(BLD)/w32.$(O)):
1162 ($(BLD)/w32console.$(O)):
1163 ($(BLD)/w32fns.$(O)):
1164 ($(BLD)/w32heap.$(O)):
1165 ($(BLD)/w32menu.$(O)):
1166 ($(BLD)/w32proc.$(O)): Add w32common.h.
1167
1168 * w32fns.c (w32_color_map_lookup, x_to_w32_color): Argument is now
1169 'const char *'.
1170 (x_to_w32_color): Don't modify the argument, modify a copy instead.
1171
1172 2012-10-08 Daniel Colascione <dancol@dancol.org>
1173
1174 * w32term.h (WM_EMACS_BRINGTOTOP, WM_EMACS_INPUT_READY)
1175 (WM_EMACS_END): Change WM_EMACS_BRINGTOTOP from 22 to 21 to close
1176 accidental message numbering hole. Change other messages to
1177 match.
1178
1179 * w32select.h (HAVE_W32SELECT): Remove.
1180
1181 * w32select.c, w32proc.c, w32menu.c, w32console.c, w32.c: Include
1182 w32common.h instead of w32heap.h.
1183
1184 * w32heap.h (ROUND_UP, ROUND_DOWN, get_page_size)
1185 (get_allocation_unit, get_processor_type, get_w32_major_version)
1186 (get_w32_minor_version, sysinfo_cache, osinfo_cache)
1187 (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
1188 (OS_NT, os_subtype, cache_system_info): Move declarations to
1189 w32common.
1190
1191 * w32heap.c: Include w32common.h.
1192 (sysinfo_cache, syspage_mask, osinfo_cache, w32_major_version)
1193 (w32_minor_version, w32_build_number, w32_subtype):
1194 Remove duplicate definitions.
1195
1196 * w32fns.c: Include w32common.h; include w32heap.h only in
1197 WINDOWSNT.
1198
1199 (Fx_file_dialog): Clarify comment on GetOpenFileName structure.
1200 Use `report_file_error' instead of `error' in order to better
1201 inform users of what went wrong. Increase NTGUI_UNICODE file
1202 dialog box file name length to 32k, the maximum allowed by the NT
1203 kernel.
1204
1205 * w32common.h: New file.
1206 (ROUND_UP, ROUND_DOWN, get_page_size)
1207 (get_allocation_unit, get_processor_type, get_w32_major_version)
1208 (get_w32_minor_version, sysinfo_cache, osinfo_cache)
1209 (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
1210 (OS_NT, os_subtype, cache_system_info): Move here.
1211
1212 * unexw32.c, unexcw.c: Include w32common.h.
1213
1214 * emacs.c (main): Use (defined (WINDOWSNT) || defined
1215 HAVE_NTGUI) instead of removed HAVE_W32SELECT to decide whether
1216 to call syms_of_w32select.
1217
1218 * cygw32.h: Remove obsolete EXFUN declarations.
1219
1220 * cygw32.c (Qutf_16_le): Rename to Qutf_16le.
1221
1222 * Makefile.in (SOME_MACHINE_OBJECTS): Reverse accidental removal
1223 of w32inevt.o from SOME_MACHINE_OBJECTS.
1224
1225 2012-10-08 Daniel Colascione <dancol@dancol.org>
1226
1227 * image.c: Permanent fix for JPEG compilation issue --- limit
1228 jpeglib `boolean' redefinition to Cygwin builds.
1229
1230 2012-10-08 Eli Zaretskii <eliz@gnu.org>
1231
1232 * image.c (CHECK_LIB_AVAILABLE): Remove, no longer used.
1233
1234 * emacs.c (DAEMON_MUST_EXEC) [HAVE_NTGUI]: Define this only on
1235 Cygwin.
1236
1237 2012-10-08 Daniel Colascione <dancol@dancol.org>
1238
1239 * xfaces.c, xdisp.c, window.c, w32xfns.c, w32term.h, w32term.c,
1240 w32select.h w32select.c, w32proc.c, w32menu.c, w32inevt.c,
1241 w32help.c, w32font.c, w32font.c, w32fns.c, w32console.c, w32.h,
1242 w32.c, unexw32.c, termhooks.h, process.c, menu.c, keyboard.h,
1243 keyboard.c, image.c, frame.h, frame.c, fontset.c, font.h, font.c,
1244 emacs.c, dispextern.h, cygw32.h, cygw32.c, conf_post.h,
1245 Makefile.in: use HAVE_NTGUI for W32 GUI and WINDOWSNT for the
1246 operating system. defined(HAVE_NTGUI) && !defined(WINDOWSNT) is
1247 now a supported configuration.
1248
1249 * Makefile.in: consolidate image variables into LIBIMAGE; add
1250 W32_OBJ and W32_LIBS. Compile new files.
1251
1252 * conf_post.h:
1253 (_DebPrint) declare tracing facility for W32 debugging. We need
1254 to unify tracing later.
1255
1256 (NTGUI_UNICODE) Define when compiling for Cygwin to allow the
1257 unconditional use of W32 Unicode functions. Cygwin runs only on
1258 100% Unicode operating systems.
1259
1260 * cygw32.c: New file. Define Cygwin-specific facilities.
1261 (Fcygwin_convert_path_to_windows)
1262 (Fcygwin_convert_path_from_windows): New user functions for
1263 accessing Cygwin path-munging routines.
1264
1265 * cygw32.h: New file.
1266 (WCSDATA, to_unicode, from_unicode): Define facilities for storing
1267 UTF-16LE strings temporarily inside non-Lisp-visible string
1268 objects.
1269
1270 (w32_strerror): Just what it says on the tin.
1271
1272 * emacs.c: Make the NS fork-then-exec code for daemon-launching
1273 also run for Cygwin; both systems have the same problem with using
1274 GUI facilities in a forked child. Also call syms_of_cygw32,
1275 syms_of_w32select in correct places.
1276
1277 (DAEMON_MUST_EXEC): new macro defined to signal that a platform
1278 needs fork-then-exec for daemon launching.
1279
1280 * font.h: Include frame.h.
1281
1282 * image.c: Use the image library cache machinery only when we're
1283 compiling for native WINDOWSNT; Cygwin can use shared libraries
1284 like any other Unixlike system.
1285
1286 * keyboard.c: Clarify a comment regarding the input loop.
1287
1288 * menu.c: When NTGUI_UNICODE is defined, use Unicode menu
1289 functions directly instead of trying to detect at runtime that our
1290 host operating system supports them. We make this change for two
1291 reasons: Cygwin lacks support for the multibyte character
1292 conversion functions used by the legacy menu code, and Cygwin
1293 never needs to rely on non-Unicode APIs.
1294
1295 * unexw32.c (hinst): Declare extern.
1296
1297 * w32.c: Change header order;
1298 (w32_strerror): Move to w32fns.c because we need it for
1299 non-WINDOWSNT builds.
1300
1301 * w32.h: Add #error macro to make sure we don't include w32.h for
1302 Cygwin builds. Remove w32select declarations.
1303
1304 * w32console.c (w32_sys_ring_bell, Fset_message_beep): Move to
1305 w32fns.c. w32console.c is WINDOWSNT-only.
1306
1307 * w32fns.c: Include cygw32.h or w32.h depending on CYGWIN; more
1308 NTGUI_UNICODE tweaks. (See above.) Change _snprintf to the more
1309 POSIXy alternative.
1310 (faked_key, sysinfo_cache, osinfo_cahce, syspage_mask)
1311 (w32_major_version, w32_minor_version, w32_build_number)
1312 (os_subtype, sound_type): Define here
1313 (w32_defined_color): Make color parameter const for consistency
1314 with other _defined_color functions.
1315 (w32_createwindow): Unconditionally call w32_init_class instead of
1316 doing so only when hprevinst is non-NULL. Plumbing hprevinst
1317 through the code is complex and unnecessary because class
1318 registration is practically free.
1319 (w32_name_of_message): New EMACSDEBUG-only function.
1320 (Fset_message_beep): Move here
1321 (Fx_open_connection): Require that the display name for Windows be
1322 "w32" for consistency, emacsclient disambiguation, and maybe, one
1323 day, multi-window-system support.
1324 (file_dialog_callback): NTGUI_UNICODE changes; encode and decode
1325 Cygwin files for W32 GUI facilities, since these clearly don't
1326 expect Cygwin names.
1327 (_DebPrint): Define.
1328 (w32_strerror, w32_console_toggle_lock_key, w32_kbd_mods_to_emacs)
1329 (w32_kbd_patch_key, w32_sys_ring_bell): Move here.
1330 (Ssystem_move_file_to_trash): Define only for native WINDOWSNT.
1331 (w32_last_error): Remove.
1332
1333 * w32font.c: Define _strlwr to strlwr for non-WINDOWSNT builds.
1334
1335 * w32heap.c (syspage_mask): Declare here.
1336 (cache_system_info): Remove.
1337
1338 * w32inevt.c (faked_key): Define globally, not statically.
1339 (w32_kbd_mods_to_emacs, w32_kbd_patch_key, faked_key)
1340 (w32_console_toggle_lock_key): Move to w32fns.c.
1341
1342 * w32menu.c: Include setjmp.h. NTGUI_UNICODE changes throughout.
1343
1344 * w32proc.c (_DebPrint): Move to w32fns.c.
1345 * w32select.c: Include string.h, stdio.h for Cygwin.
1346 * w32select.h: New File.
1347
1348 * w32term.c: Include io.h for non-CYGWIN builds; needed for
1349 get_osfhandle.
1350 (w32_message_fd): New variable. Under Cygwin, holds the file
1351 descriptor the system used to tell us about pending thread
1352 messages.
1353
1354 (w32_init_term): Remove incorrect calls to fcntl and init_sigio
1355 that prevented compilation under non-WINDOWSNT systems.
1356
1357 (w32_initialize): Open /dev/windows and assign it to
1358 w32_message_fd. Provide w32 feature.
1359
1360 * w32term.h: Include frame.h, atimer.h. Declare various frame functions.
1361 (WM_EMACS_INPUT_READY): add.
1362 (prepend_msg, w32_message_fd): Declare globally.
1363
1364 * w32xfns.c:
1365 (keyboard_handle): Use only when WINDOWSNT.
1366 (notify_msg_ready): New function. Posts a message to the main
1367 thread's message queue under CYGWIN, which wakes up the main
1368 thread from select(2) by making the /dev/windows file descriptor
1369 ready. Under WINDOWSNT, it sets an event the same way the old
1370 code did.
1371
1372 (post, prepend_msg): Actually call notify_msg_ready instead of
1373 setting the input event directly.
1374
1375 2012-10-07 Eli Zaretskii <eliz@gnu.org>
1376
1377 * ralloc.c (relinquish): If a heap is ready to be relinquished,
1378 but it still has blocs in it, don't return it to the system,
1379 instead of aborting. (Bug#12402)
1380
1381 2012-10-07 Jan Djärv <jan.h.d@swipnet.se>
1382
1383 * nsterm.m (ns_dumpglyphs_image): Only draw slice of image (Bug#12506).
1384
1385 * nsterm.m (ns_update_auto_hide_menu_bar): Remove defintion of
1386 MAC_OS_X_VERSION_10_6.
1387 (syms_of_nsterm): Remove comment about Panther and above for
1388 ns-antialias-text.
1389 * nsterm.h (MAC_OS_X_VERSION_10_3, onTiger): Remove.
1390 (EmacsApp): Remove check for >= MAC_OS_X_VERSION_10_4.
1391 (struct nsfont_info): Remove check for >= MAC_OS_X_VERSION_10_3.
1392
1393 * nsselect.m (ns_string_from_pasteboard): Remove check for >=
1394 MAC_OS_X_VERSION_10_4.
1395
1396 * nsmenu.m (fillWithWidgetValue:): Remove code for <
1397 MAC_OS_X_VERSION_10_2.
1398
1399 * nsimage.m (setPixmapData, getPixelAtX, setAlphaAtX): Remove onTiger.
1400
1401 * nsfns.m (Fns_list_services): Remove comment and check for OSX < 10.4.
1402 (ns_do_applescript): Remove check for >= MAC_OS_X_VERSION_10_4.
1403
1404 * nsterm.m (ns_in_resize): Remove (Bug#12479).
1405 (ns_resize_handle_rect, mouseDown, mouseUp, mouseDragged): Remove.
1406 (ns_clear_frame, sendEvent, windowDidResize, drawRect:):
1407 Remove ns_in_resize check.
1408 (ns_clear_frame_area): Remove resize handle code.
1409
1410 * nsfns.m (ns_in_resize): Remove.
1411 (x_set_icon_name, ns_set_name, ns_set_name_as_filename):
1412 Remove ns_in_resize check.
1413
1414 2012-10-07 Paul Eggert <eggert@cs.ucla.edu>
1415
1416 Improve sys_siglist detection.
1417 * sysdep.c (sys_siglist, init_signals): Use _sys_siglist if it's
1418 defined as a macro, as is done in Solaris.
1419 (sys_siglist_entries): New macro.
1420 (save_strsignal): Use it.
1421 * syssignal.h (safe_strsignal): Now ATTRIBUTE_CONST, to pacify
1422 GCC 4.7.2 on Fedora 17 with the fixed sys_siglist detection.
1423
1424 2012-10-06 Jan Djärv <jan.h.d@swipnet.se>
1425
1426 * nsfns.m (Fx_create_frame): Call x_default_parameter with
1427 fullscreen/Fullscreen.
1428
1429 * nsterm.h (EmacsView): Rename tbar_height to tibar_height.
1430 tobar_height is new.
1431
1432 * nsterm.m (x_make_frame_visible): Check for fullscreen.
1433 (ns_fullscreen_hook): Activate old style fullscreen with a timer.
1434 (ns_term_init): Set activateIgnoringOtherApps if old style fullscreen.
1435 (windowDidResize:): Check for correct window if old style fullscreen.
1436 Capitalize word in comment. Remove incorrect comment.
1437 (initFrameFromEmacs:): tbar_height renamed tibar_height.
1438 (windowDidEnterFullScreen:): Toggle toolbar for fullscreen to fix
1439 error in drawing background.
1440 (toggleFullScreen:): Remove comment. Rearrange calls.
1441 Set toolbar values to zero, save old height in tobar_height.
1442 Restore tool bar height when leaving fullscreen.
1443 (canBecomeMainWindow): New function.
1444
1445 2012-10-06 Paul Eggert <eggert@cs.ucla.edu>
1446
1447 * keyboard.c (read_char): Remove unnecessary 'volatile's and label.
1448
1449 2012-10-05 Eli Zaretskii <eliz@gnu.org>
1450
1451 * w32proc.c (stop_timer_thread): Fix declaration of 'err'.
1452
1453 * w32.c (utime): Open the file with FILE_FLAG_BACKUP_SEMANTICS, so
1454 that time stamps of directories could also be changed.
1455 Don't request the too broad GENERIC_WRITE, only the more restrictive
1456 FILE_WRITE_ATTRIBUTES access rights.
1457
1458 * fileio.c (Fset_file_times): Special-case ignoring errors for
1459 directories only on MSDOS, not on MS-Windows.
1460
1461 2012-10-05 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
1462
1463 * minibuf.c (Fcompleting_read): Doc fix. (Bug#12555)
1464
1465 2012-10-04 Eli Zaretskii <eliz@gnu.org>
1466
1467 * w32.c (utime): Test for INVALID_HANDLE_VALUE, not for NULL, to
1468 see whether CreateFile failed.
1469
1470 2012-10-04 Paul Eggert <eggert@cs.ucla.edu>
1471
1472 * profiler.c (handle_profiler_signal): Inhibit pending signals too,
1473 to avoid similar races.
1474 * keyboard.c (pending_signals): Now bool, not int.
1475
1476 Port timers to OpenBSD, plus check for timer failures.
1477 OpenBSD problem reported by Han Boetes.
1478 * profiler.c (setup_cpu_timer): Check for failure of timer_settime
1479 and/or setitimer.
1480 (Fprofiler_cpu_stop): Don't assume HAVE_SETITIMER.
1481 * syssignal.h (HAVE_ITIMERSPEC): New macro. This is for platforms
1482 like OpenBSD, which has timer_settime but does not declare it.
1483 OpenBSD does not define SIGEV_SIGNAL, so use that when deciding
1484 whether to use itimerspec-related primitives. All uses of
1485 HAVE_TIMER_SETTIME replaced with HAVE_ITIMERSPEC.
1486
1487 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
1488
1489 * profiler.c (handle_profiler_signal): Fix a malloc race
1490 that caused Emacs to hang on Fedora 17 when profiling Lisp.
1491
1492 2012-10-02 Jan Djärv <jan.h.d@swipnet.se>
1493
1494 * nsterm.m (windowDidEnterFullScreen): Remove fprintf.
1495
1496 2012-10-02 Eli Zaretskii <eliz@gnu.org>
1497
1498 * w32proc.c (sys_wait): Declare 'signame' 'const char *', to be
1499 consistent with the change in return value of 'safe_strsignal'.
1500
1501 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
1502
1503 Prefer plain 'static' to 'static inline' (Bug#12541).
1504 * bidi.c (bidi_get_type, bidi_check_type, bidi_get_category)
1505 (bidi_set_sor_type, bidi_push_embedding_level)
1506 (bidi_pop_embedding_level, bidi_remember_char, bidi_copy_it)
1507 (bidi_cache_reset, bidi_cache_shrink, bidi_cache_fetch_state)
1508 (bidi_cache_search, bidi_cache_ensure_space)
1509 (bidi_cache_iterator_state, bidi_cache_find)
1510 (bidi_peek_at_next_level, bidi_set_paragraph_end)
1511 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
1512 (bidi_explicit_dir_char, bidi_resolve_neutral_1):
1513 Now 'static', not 'static inline'.
1514
1515 Count overruns when profiling; change units to ns.
1516 * profiler.c (handle_profiler_signal): Count sampling intervals, not ms.
1517 Give extra weight to samples after overruns, to attempt to count
1518 the time more accurately.
1519 (setup_cpu_timer): Change sampling interval units from ms to ns, since
1520 the underlying primitives nominally do ns.
1521 (Fprofiler_cpu_start): Document the change. Mention that
1522 the sampling intervals are only approximate.
1523
1524 2012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
1525
1526 * frame.c (Fmake_terminal_frame): Prefer safer CONSP over !NILP.
1527
1528 * coding.h (ENCODE_FILE, DECODE_FILE, DECODE_SYSTEM): Remove special
1529 case for the special 0 coding-system.
1530
1531 * buffer.c (Fset_buffer_multibyte): Signal an error instead of widening.
1532 (Fmake_overlay): Remove redundant tests.
1533 (fix_start_end_in_overlays): Remove redundant recentering.
1534
1535 2012-10-02 Juanma Barranquero <lekktu@gmail.com>
1536
1537 * makefile.w32-in ($(BLD)/alloc.$(O), $(BLD)/gmalloc.$(O)):
1538 Update dependencies.
1539
1540 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
1541
1542 Fix a malloc race condition involving strsignal.
1543 A signal can arrive in the middle of a malloc, and Emacs's signal
1544 handler can invoke strsignal, which can invoke malloc, which is
1545 not portable. This race condition bug makes Emacs hang on GNU/Linux.
1546 Fix it by altering the signal handler so that it does not invoke
1547 strsignal.
1548 * emacs.c (shut_down_emacs): Use safe_strsignal, not strsignal.
1549 * process.c (status_message): Use const pointer, in case strsignal
1550 is #defined to safe_strsignal.
1551 * sysdep.c (sys_siglist, init_signals): Always define and
1552 initialize a substitute sys_siglist if the system does not define
1553 one, even if HAVE_STRSIGNAL.
1554 (safe_strsignal): Rename from strsignal. Always define,
1555 using sys_siglist. Return a const pointer.
1556 * syssignal.h (safe_strsignal): New decl.
1557 (strsignal) [!HAVE_STRSIGNAL]: Define in terms of safe_strsignal.
1558
1559 2012-10-01 Eli Zaretskii <eliz@gnu.org>
1560
1561 * w32proc.c (timer_loop): Fix code that waits for timer
1562 expiration, to avoid high CPU usage.
1563
1564 2012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
1565
1566 * fns.c (check_hash_table, get_key_arg, maybe_resize_hash_table)
1567 (sweep_weak_table): Remove redundant prototypes.
1568
1569 2012-10-01 Fabrice Popineau <fabrice.popineau@gmail.com>
1570
1571 * emacs.c: Move the inclusion of TERM_HEADER after including
1572 windows.h on WINDOWSNT. This avoids compilation problems with
1573 MSVC.
1574
1575 2012-10-01 Eli Zaretskii <eliz@gnu.org>
1576
1577 * unexw32.c (OFFSET_TO_RVA, RVA_TO_OFFSET)
1578 (RVA_TO_SECTION_OFFSET): Encode all macro arguments in parentheses.
1579 (RVA_TO_PTR): Cast the result of RVA_TO_OFFSET to 'unsigned char *',
1580 as the previous version used 'void *'.
1581
1582 * ralloc.c (ROUNDUP): Fix last change.
1583 (MEM_ROUNDUP): Don't cast MEM_ALIGN, it is already of type
1584 'size_t'.
1585
1586 * w32proc.c <disable_itimers>: New static flag.
1587 (init_timers): Initialize it to zero, after creating the critical
1588 sections used by the timer threads.
1589 (term_timers): Set to 1 before deleting the critical sections.
1590 (getitimer, setitimer): If disable_itimers is non-zero, return an
1591 error indication without doing anything. Reported by Fabrice
1592 Popineau <fabrice.popineau@supelec.fr> as part of bug#12544.
1593 (alarm) [HAVE_SETITIMER]: Be more conformant to the expected
1594 return results.
1595 [!HAVE_SETITIMER]: Behave as the previous version that didn't
1596 support timers.
1597
1598 * emacs.c (shut_down_emacs) [WINDOWSNT]: Move the call to
1599 term_ntproc after all the other bookkeeping, to get timers working
1600 as long as possible.
1601
1602 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
1603
1604 * xdisp.c (syms_of_xdisp): Default message-log-max to 1000, not 100.
1605 Suggested by Juri Linkov in
1606 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00821.html>.
1607
1608 Prefer plain 'static' to 'static inline' (Bug#12541).
1609 With static functions, modern compilers inline pretty well by
1610 themselves; advice from programmers often hurts as much as it helps.
1611 On my host (x86-64, Fedora 17, GCC 4.7.2, default 'configure'),
1612 this change shrinks the text size of the Emacs executable by 1.1%
1613 without affecting CPU significantly in my benchmark.
1614 * alloc.c (mem_find, live_string_p, live_cons_p, live_symbol_p)
1615 (live_float_p, live_misc_p, live_vector_p, live_buffer_p)
1616 (mark_maybe_object, mark_maybe_pointer, bounded_number):
1617 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
1618 (bset_auto_fill_function, bset_auto_save_file_format)
1619 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
1620 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
1621 (bset_cache_long_line_scans, bset_case_fold_search)
1622 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
1623 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
1624 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
1625 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
1626 (bset_header_line_format, bset_indicate_buffer_boundaries)
1627 (bset_indicate_empty_lines, bset_invisibility_spec)
1628 (bset_left_fringe_width, bset_major_mode, bset_mark)
1629 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
1630 (bset_name, bset_overwrite_mode, bset_pt_marker)
1631 (bset_right_fringe_width, bset_save_length)
1632 (bset_scroll_bar_width, bset_scroll_down_aggressively)
1633 (bset_scroll_up_aggressively, bset_selective_display)
1634 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
1635 (bset_word_wrap, bset_zv_marker, set_buffer_overlays_before)
1636 (set_buffer_overlays_after):
1637 * category.c (bset_category_table):
1638 * charset.c (read_hex):
1639 * coding.c (produce_composition, produce_charset)
1640 (handle_composition_annotation, handle_charset_annotation)
1641 (char_encodable_p):
1642 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers)
1643 (assign_row, set_frame_matrix_frame, make_current)
1644 (add_row_entry):
1645 * eval.c (set_specpdl_symbol, set_specpdl_old_value):
1646 * fns.c (maybe_resize_hash_table):
1647 * frame.c (fset_buffer_predicate, fset_minibuffer_window):
1648 * gmalloc.c (register_heapinfo):
1649 * image.c (lookup_image_type):
1650 * intervals.c (set_interval_object, set_interval_left)
1651 (set_interval_right, copy_interval_parent, rotate_right)
1652 (rotate_left, balance_possible_root_interval):
1653 * keyboard.c (kset_echo_string, kset_kbd_queue)
1654 (kset_keyboard_translate_table, kset_last_prefix_arg)
1655 (kset_last_repeatable_command, kset_local_function_key_map)
1656 (kset_overriding_terminal_local_map, kset_real_last_command)
1657 (kset_system_key_syms, clear_event, set_prop):
1658 * lread.c (digit_to_number):
1659 * marker.c (attach_marker, live_buffer, set_marker_internal):
1660 * nsterm.m (ns_compute_glyph_string_overhangs):
1661 * process.c (pset_buffer, pset_command)
1662 (pset_decode_coding_system, pset_decoding_buf)
1663 (pset_encode_coding_system, pset_encoding_buf, pset_filter)
1664 (pset_log, pset_mark, pset_name, pset_plist, pset_sentinel)
1665 (pset_status, pset_tty_name, pset_type, pset_write_queue):
1666 * syntax.c (bset_syntax_table, dec_bytepos):
1667 * terminal.c (tset_param_alist):
1668 * textprop.c (interval_has_some_properties)
1669 (interval_has_some_properties_list):
1670 * window.c (wset_combination_limit, wset_dedicated)
1671 (wset_display_table, wset_hchild, wset_left_fringe_width)
1672 (wset_left_margin_cols, wset_new_normal, wset_new_total)
1673 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
1674 (wset_right_fringe_width, wset_right_margin_cols)
1675 (wset_scroll_bar_width, wset_start, wset_temslot, wset_vchild)
1676 (wset_vertical_scroll_bar_type, wset_window_parameters):
1677 * xdisp.c (wset_base_line_number, wset_base_line_pos)
1678 (wset_column_number_displayed, wset_region_showing)
1679 (window_box_edges, run_window_scroll_functions)
1680 (append_glyph_string_lists, prepend_glyph_string_lists)
1681 (append_glyph_string, set_glyph_string_background_width)
1682 (append_glyph, append_composite_glyph)
1683 (take_vertical_position_into_account):
1684 * xfaces.c (x_create_gc, x_free_gc, merge_face_vectors)
1685 (face_attr_equal_p, lface_equal_p, hash_string_case_insensitive)
1686 (lface_hash, lface_same_font_attributes_p, lookup_face):
1687 * xml.c (libxml2_loaded_p):
1688 * xterm.c (x_set_mode_line_face_gc, x_set_glyph_string_gc)
1689 (x_set_glyph_string_clipping, x_clear_glyph_string_rect):
1690 Now 'static', not 'static inline'.
1691
1692 * bidi.c: Tune.
1693 (bidi_copy_it): Do the whole copy with a single memcpy.
1694 (bidi_char_at_pos): Merge the two STRING_CHAR calls into one.
1695
1696 Revert the FOLLOW-SYMLINKS change for file-attributes.
1697 Doing it right would require several changes to Tramp, and there's
1698 not enough time to get that tested before the freeze today.
1699 * dired.c (directory_files_internal, Ffile_attributes):
1700 Undo last change.
1701
1702 * frame.c (x_report_frame_params): Port better to wider ints.
1703 Do not assume that EMACS_UINT is the same width as uprintmax_t,
1704 or that pointers can be printed in 15 decimal digits.
1705 Avoid GCC warnings if EMACS_UINT is wider than a pointer.
1706
1707 2012-09-30 Fabrice Popineau <fabrice.popineau@supelec.fr>
1708
1709 Support x64 build on MS-Windows.
1710 * w32term.h (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK): Define for x64.
1711 (SET_SCROLL_BAR_W32_WINDOW): Cast ID to intptr_t, for
1712 compatibility with x64.
1713 (x_get_focus_frame): Add prototype.
1714
1715 * w32term.c (w32_draw_underwave): Don't use GCC extensions for
1716 defining an XRectangle structure.
1717
1718 * w32proc.c (RVA_TO_PTR, w32_executable_type): Fix pointer
1719 arithmetics for compatibility with x64.
1720
1721 * w32menu.c (add_menu_item): Use UINT_PTR instead of UINT, for
1722 compatibility with x64.
1723
1724 * w32heap.h: Adjust prototypes and declarations.
1725
1726 * w32heap.c (RVA_TO_PTR, allocate_heap, sbrk, init_heap)
1727 (round_heap): Use DWORD_PTR, ptrdiff_t and size_t instead of
1728 DWORD, long, and unsigned long, for compatibility with x64.
1729 (allocate_heap) [_WIN64]: Reserve 32GB of memory.
1730 (sbrk): Argument is now of type ptrdiff_t.
1731
1732 * w32fns.c (HMONITOR): Condition declaration on _WIN32_WINNT being
1733 less than 0x0500.
1734 (w32_msg_pump): Use WPARAM type for 'result'.
1735
1736 * w32.c (init_environment, get_emacs_configuration): Support AMD64
1737 architecture.
1738 (init_ntproc): Cast arguments of _open_osfhandle to intptr_t, for
1739 compatibility with x64.
1740
1741 * vm-limit.c (lim_data): Now size_t.
1742 (check_memory_limits): Adjust prototypes of real_morecore and
1743 __morecore to receive argument of type ptrdiff_t. Use size_t for
1744 five_percent and data_size.
1745
1746 * unexw32.c: Use DWORD_PTR instead of DWORD for file-scope
1747 variables, for compatibility with x64.
1748 (rva_to_section, offset_to_section, relocate_offset)
1749 (OFFSET_TO_RVA, RVA_TO_OFFSET, RVA_TO_SECTION_OFFSET)
1750 (PTR_TO_RVA, RVA_TO_PTR, OFFSET_TO_PTR, get_section_info)
1751 (copy_executable_and_dump_data): Use DWORD_PTR instead of DWORD
1752 for compatibility with x64.
1753
1754 * sysdep.c (STDERR_FILENO): Define if not already defined.
1755
1756 * ralloc.c (real_morecore): Argument type is now ptrdiff_t.
1757 (__morecore): Argument type is now ptrdiff_t.
1758 (ROUNDUP, MEM_ROUNDUP): Use size_t instead of 'unsigned long'.
1759 (relinquish): Use ptrdiff_t type for 'excess'.
1760 (r_alloc_sbrk): Argument type is now ptrdiff_t.
1761
1762 * makefile.w32-in (HEAPSIZE): Get value from EMACS_HEAPSIZE.
1763 (bootstrap-temacs-CMD, bootstrap-temacs-SH): Use $(EMACS_PURESIZE)
1764 instead of a literal number.
1765
1766 * gmalloc.c [WINDOWSNT]: Include w32heap.h.
1767 (min): Define only if not already defined.
1768
1769 * frame.c (x_report_frame_params): Use EMACS_UINT for the return
1770 value of FRAME_X_WINDOW, to fit a 64-bit pointer on 64-bit Windows
1771 hosts.
1772
1773 * image.c (x_bitmap_pixmap): Return ptrdiff_t, not int, since
1774 'bitmaps' is a pointer.
1775
1776 * dispextern.h (x_bitmap_pixmap): Adjust prototype.
1777
1778 * alloc.c (gdb_make_enums_visible): Now conditional on __GNUC__.
1779
1780 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
1781
1782 file-attributes has a new optional arg FOLLOW-SYMLINKS.
1783 * dired.c (directory_files_internal, Ffile_attributes):
1784 New arg follow_symlinks. All uses changed.
1785
1786 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
1787
1788 * .gdbinit (xbacktrace): Adjust to recent "struct backtrace" change.
1789
1790 2012-09-30 Eli Zaretskii <eliz@gnu.org>
1791
1792 Support atimers and CPU profiler via profile.c on MS-Windows.
1793 * w32proc.c (sig_mask, crit_sig): New static variables.
1794 (sys_signal): Support SIGALRM and SIGPROF.
1795 (sigemptyset, sigaddset, sigfillset, sigprocmask)
1796 (pthread_sigmask, setpgrp): Move here from w32.c. sigaddset,
1797 sigfillset, and sigprocmask are no longer no-ops.
1798 (sigismember): New function.
1799 (struct itimer_data): New definition.
1800 (ticks_now, real_itimer, prof_itimer, clocks_min, crit_real)
1801 (crit_prof): New static variables.
1802 (MAX_SINGLE_SLEEP): New definition.
1803 (timer_loop, stop_timer_thread, term_timers, init_timers)
1804 (start_timer_thread, getitimer, setitimer): New functions.
1805 (alarm): No longer a no-op, calls setitimer.
1806
1807 * w32.c (term_ntproc): Call term_timers.
1808 (init_ntproc): Make sure all signals are unblocked at startup, to
1809 erase any traces of dumping. Call init_timers.
1810
1811 * w32fns.c (hourglass_timer, HOURGLASS_ID): Remove.
1812 Windows-specific code to display the hourglass mouse pointer is no
1813 longer used.
1814 (w32_wnd_proc): Remove code that handled the WM_TIMER message due
1815 to hourglass timer expiration.
1816 (start_hourglass, cancel_hourglass, DEFAULT_HOURGLASS_DELAY):
1817 Remove, no longer used.
1818 (w32_note_current_window, show_hourglass, hide_hourglass):
1819 New functions, in support of hourglass cursor display similar to other
1820 window systems.
1821 (syms_of_w32fns): Don't initialize hourglass_timer.
1822
1823 * xdisp.c (start_hourglass, cancel_hourglass): Now used on
1824 WINDOWSNT as well.
1825 (start_hourglass) [WINDOWSNT]: Call w32_note_current_window.
1826
1827 * w32.h (init_timers, term_timers): Add prototypes.
1828
1829 2012-09-30 Kenichi Handa <handa@gnu.org>
1830
1831 * coding.c (decode_coding_ccl, encode_coding_ccl): Pay attention
1832 to the buffer relocation which may be caused by ccl_driver.
1833
1834 2012-09-30 Jan Djärv <jan.h.d@swipnet.se>
1835
1836 * xfns.c (Fx_file_dialog): Update comment.
1837
1838 * w32fns.c (Fx_file_dialog): Update comment.
1839
1840 * nsfns.m (Fns_read_file_name): Add argument DIR_ONLY_P.
1841 Initialize panel name field if OSX >= 10.6.
1842
1843 * fileio.c (Fnext_read_file_uses_dialog_p): Add HAVE_NS.
1844
1845 * nsfns.m (ns_frame_parm_handlers): Add x_set_fullscreen.
1846
1847 * nsterm.m (NEW_STYLE_FS): New define.
1848 (ns_fullscreen_hook, windowWillEnterFullScreen)
1849 (windowDidEnterFullScreen, windowWillExitFullScreen)
1850 (windowDidExitFullScreen, toggleFullScreen, handleFS)
1851 (setFSValue): New functions.
1852 (EmacsFSWindow): New implementation.
1853 (canBecomeKeyWindow): New function for EmacsFSWindow.
1854 (ns_create_terminal): Set fullscreen_hook to ns_fullscreen_hook.
1855 (dealloc): Release nonfs_window if in fullscreen.
1856 (updateFrameSize:): Call windowDidMove to update top/left.
1857 (windowWillResize:toSize:): Check if frame is still maximized.
1858 (initFrameFromEmacs:): Initialize fs_state, fs_before_fs,
1859 next_maximized, maximized_width, maximized_height and nonfs_window.
1860 Call setCollectionBehavior if NEW_STYLE_FS. Initialize bwidth and
1861 tbar_height.
1862 (windowWillUseStandardFrame:defaultFrame:): Update frame parameter
1863 fullscreen. Set maximized_width/height. Act on next_maximized.
1864
1865 * nsterm.h (MAC_OS_X_VERSION_10_7, MAC_OS_X_VERSION_10_8): New.
1866 (EmacsView): Add variables for fullscreen.
1867 (handleFS, setFSValue, toggleFullScreen): New in EmacsView.
1868 (EmacsFSWindow): New interface for fullscreen.
1869
1870 2012-09-30 Juanma Barranquero <lekktu@gmail.com>
1871
1872 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
1873
1874 2012-09-30 Chong Yidong <cyd@gnu.org>
1875
1876 * fns.c (Frandom): Doc fix.
1877
1878 2012-09-30 Martin Rudalics <rudalics@gmx.at>
1879
1880 * window.c (Vwindow_combination_limit): New default value.
1881 (Qwindow_size): New symbol replacing Qtemp_buffer_resize.
1882
1883 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
1884
1885 * syssignal.h (PROFILER_CPU_SUPPORT): Don't define if PROFILING.
1886 Suggested by Eli Zaretskii in
1887 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00811.html>.
1888
1889 2012-09-30 Eli Zaretskii <eliz@gnu.org>
1890
1891 * profiler.c (Fprofiler_cpu_stop): Use timer_settime only if
1892 HAVE_TIMER_SETTIME is defined.
1893
1894 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
1895
1896 Profiler improvements: more-accurate timers, overflow checks.
1897 * profiler.c: Don't include stdio.h, limits.h, sys/time.h,
1898 signal.h, setjmp.h. Include systime.h instead.
1899 (saturated_add): New function.
1900 (record_backtrace, current_sample_interval): Use EMACS_INT, not size_t.
1901 (record_backtrace, handle_profiler_signal): Saturate on fixnum overflow.
1902 (profiler_timer, profiler_timer_ok) [HAVE_TIMER_SETTIME]:
1903 New static vars.
1904 (enum profiler_cpu_running): New enum.
1905 (profiler_cpu_running): Now of that enum type, not bool.
1906 All uses changed to store the new value.
1907 (handle_profiler_signal): Rename from sigprof_handler_1,
1908 for consistency with other handlers. Do not check whether
1909 cpu_log is a hash-table if garbage collecting, since it
1910 doesn't matter in that case.
1911 (deliver_profiler_signal): Rename from sigprof_handler,
1912 for consistency with other handlers.
1913 (setup_cpu_timer): New function, with much of what used to be in
1914 Fprofiler_cpu_start. Check for out-of-range argument.
1915 Prefer timer_settime if available, and prefer
1916 thread cputime clocks, then process cputime clocks, then
1917 monotonic clocks, to the old realtime clock. Use make_timeval
1918 to round more-correctly when falling back to setitimer.
1919 (Fprofiler_cpu_start): Use it.
1920 (Fprofiler_cpu_stop): Prefer timer_settime if available.
1921 Don't assume that passing NULL as the 2nd argument of setitimer
1922 is the same as passing a pointer to all-zero storage.
1923 Ignore SIGPROF afterwards.
1924 (malloc_probe): Saturate at MOST_POSITIVE_FIXNUM.
1925 * sysdep.c (emacs_sigaction_init): Also mask out SIGPROF in
1926 non-fatal signal handlers. Ignore SIGPROF on startup.
1927 * syssignal.h (PROFILER_CPU_SUPPORT): Define this macro here, not
1928 in profiler.c, since sysdep.c now uses it.
1929
1930 * sysdep.c (handle_fatal_signal): Bump backtrace size to 40.
1931 Suggested by Eli Zaretskii in
1932 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00796.html>.
1933
1934 2012-09-29 Juanma Barranquero <lekktu@gmail.com>
1935
1936 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
1937
1938 2012-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
1939
1940 * lisp.h (struct backtrace): Remove indirection for `function' field.
1941 * xdisp.c (redisplay_internal):
1942 * profiler.c (record_backtrace, sigprof_handler_1):
1943 * alloc.c (Fgarbage_collect):
1944 * eval.c (interactive_p, Fsignal, eval_sub, Ffuncall, Fbacktrace)
1945 (Fbacktrace_frame): Adjust accordingly.
1946
1947 2012-09-28 Glenn Morris <rgm@gnu.org>
1948
1949 * eval.c (Frun_hook_with_args, Frun_hook_with_args_until_success)
1950 (Frun_hook_with_args_until_failure): Doc fixes.
1951
1952 2012-09-28 Eli Zaretskii <eliz@gnu.org>
1953
1954 * xdisp.c (syms_of_xdisp) <Qredisplay_internal>: Rename from
1955 Qautomatic_redisplay and change the symbol name. All users changed.
1956
1957 2012-09-28 Tomohiro Matsuyama <tomo@cx4a.org>
1958
1959 * profiler.c (sigprof_handler): Fix race condition.
1960
1961 2012-09-28 Glenn Morris <rgm@gnu.org>
1962
1963 * lread.c (lisp_file_lexically_bound_p): Handle #! lines. (Bug#12528)
1964
1965 2012-09-27 Paul Eggert <eggert@cs.ucla.edu>
1966
1967 Check more robustly for timer_settime.
1968 * Makefile.in (LIB_TIMER_TIME): New macro.
1969 (LIBES): Add it.
1970 * atimer.c (alarm_timer, alarm_timer_ok, set_alarm, init_atimer):
1971 Use HAVE_TIMER_SETTIME, not SIGEV_SIGNAL, to decide whether to
1972 call timer_settime.
1973
1974 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
1975
1976 * profiler.c (Fprofiler_cpu_start): Remove unnecessary flag SA_SIGINFO.
1977
1978 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
1979
1980 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
1981
1982 2012-09-26 Paul Eggert <eggert@cs.ucla.edu>
1983
1984 * character.h (MAYBE_UNIFY_CHAR): Remove.
1985 * charset.c, charset.h (maybe_unify_char): Now static.
1986 * charset.c (decode_char): Use maybe_unify_char, not MAYBE_UNIFY_CHAR.
1987 Since this stuff is now private to charset.c, there's no need for
1988 a public macro and no need to inline by hand.
1989
1990 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
1991 Stefan Monnier <monnier@iro.umontreal.ca>
1992 Juanma Barranquero <lekktu@gmail.com>
1993
1994 * profiler.c: New file.
1995 * Makefile.in (base_obj): Add profiler.o.
1996 * makefile.w32-in (OBJ2, GLOBAL_SOURCES): Add profiler.c.
1997 ($(BLD)/profiler.$(O)): New target.
1998 * emacs.c (main): Call syms_of_profiler.
1999 * alloc.c (Qautomatic_gc): New constant.
2000 (MALLOC_PROBE): New macro.
2001 (xmalloc, xzalloc, xrealloc, lisp_malloc, lisp_align_malloc): Use it.
2002 (total_bytes_of_live_objects): New function.
2003 (Fgarbage_collect): Use it. Record itself in backtrace_list.
2004 Call malloc_probe for the memory profiler.
2005 (syms_of_alloc): Define Qautomatic_gc.
2006 * eval.c (eval_sub, Ffuncall): Reorder assignments to avoid
2007 race condition.
2008 (struct backtrace): Move definition...
2009 * lisp.h (struct backtrace): ..here.
2010 (Qautomatic_gc, profiler_memory_running): Declare vars.
2011 (malloc_probe, syms_of_profiler): Declare functions.
2012 * xdisp.c (Qautomatic_redisplay): New constant.
2013 (redisplay_internal): Record itself in backtrace_list.
2014 (syms_of_xdisp): Define Qautomatic_redisplay.
2015
2016 2012-09-25 Eli Zaretskii <eliz@gnu.org>
2017 2012-09-25 Juanma Barranquero <lekktu@gmail.com>
2018
2019 * makefile.w32-in ($(BLD)/callproc.$(O)): Update dependencies.
2020
2021 2012-09-25 Paul Eggert <eggert@cs.ucla.edu>
2022
2023 Prefer POSIX timers if available.
2024 They avoid a race if the timer is too close to the current time.
2025 * atimer.c (alarm_timer, alarm_timer_ok) [SIGEV_SIGNAL]: New static vars.
2026 (set_alarm) [SIGEV_SIGNAL]: Use POSIX timers if available.
2027 (init_atimer) [SIGEV_SIGNAL]: Initialize them.
2028
2029 2012-09-25 Eli Zaretskii <eliz@gnu.org>
2030
2031 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY): Make it an alias of
2032 CHAR_STRING_ADVANCE.
2033 (STRING_CHAR_ADVANCE_NO_UNIFY): Make it an alias of
2034 STRING_CHAR_ADVANCE.
2035
2036 2012-09-25 Juanma Barranquero <lekktu@gmail.com>
2037
2038 Move Vlibrary_cache to emacs.c and reset before dumping.
2039
2040 * lisp.h (reset_image_types): Declare.
2041 [WINDOWSNT] (Vlibrary_cache): Declare.
2042
2043 * image.c (reset_image_types): New function.
2044
2045 * emacs.c [WINDOWSNT] (Vlibrary_cache): Move from w32.c.
2046 (syms_of_emacs) [WINDOWSNT] <Vlibrary_cache>: Initialize and staticpro.
2047 (Fdump_emacs): Reset Vlibrary_cache and image_types.
2048
2049 * w32.c (Vlibrary_cache): Do not define; moved to emacs.c
2050 (globals_of_w32) <Vlibrary_cache>: Do not initialize.
2051
2052 * w32.h (Vlibrary_cache): Do not declare.
2053
2054 2012-09-25 Eli Zaretskii <eliz@gnu.org>
2055
2056 * w32proc.c (sys_signal): Handle all signals defined by the
2057 MS-Windows runtime, not just SIGCHLD. Actually install the signal
2058 handlers for signals supported by Windows. Don't override
2059 term_ntproc as the handler for SIGABRT.
2060 (sigaction): Rewrite to call sys_signal instead of duplicating its
2061 code.
2062 (sys_kill): Improve commentary.
2063
2064 * w32.c (term_ntproc): Accept (and ignore) one argument, for
2065 consistency with a signature of a signal handler. All callers
2066 changed.
2067 (init_ntproc): Accept an argument DUMPING. If dumping, don't
2068 install term_ntproc as a signal handler for SIGABRT, as that
2069 should be done by the dumped Emacs.
2070
2071 * w32.h (init_ntproc, term_ntproc): Adjust prototypes.
2072
2073 * w32select.c (term_w32select): Protect against repeated
2074 invocation by setting clipboard_owner to NULL after calling
2075 DestroyWindow.
2076
2077 * emacs.c (shut_down_emacs, main): Adapt the calls to init_ntproc
2078 and term_ntproc to their modified signatures.
2079
2080 * character.c (char_string, string_char): Remove calls to
2081 MAYBE_UNIFY_CHAR. See the discussion starting at
2082 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00433.html
2083 for the details.
2084
2085 2012-09-25 Chong Yidong <cyd@gnu.org>
2086
2087 * xdisp.c (mode_line_inverse_video): Delete obsolete variable.
2088
2089 2012-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
2090
2091 * bytecode.c (exec_byte_code): Signal an error instead of aborting,
2092 when encountering an unknown bytecode.
2093
2094 2012-09-24 Paul Eggert <eggert@cs.ucla.edu>
2095
2096 image.c, indent.c: Use bool for booleans.
2097 * dispextern.h (struct image_type): Members valid_p, load, init
2098 now return bool, not int. All uses changed.
2099 * image.c: Omit unnecessary static decls.
2100 (x_create_bitmap_mask, x_build_heuristic_mask):
2101 Return void, not int, since callers don't care about the return value.
2102 (x_create_bitmap_mask, define_image_type, valid_image_p)
2103 (struct image_keyword, parse_image_spec, image_spec_value)
2104 (check_image_size, image_background)
2105 (image_background_transparent, x_clear_image_1)
2106 (postprocess_image, lookup_image, x_check_image_size)
2107 (x_create_x_image_and_pixmap, xbm_image_p)
2108 (Create_Pixmap_From_Bitmap_Data, xbm_read_bitmap_data)
2109 (xbm_load_image, xbm_file_p, xbm_load, xpm_lookup_color)
2110 (init_xpm_functions, xpm_valid_color_symbols_p, xpm_image_p)
2111 (xpm_load, xpm_load_image, lookup_rgb_color, lookup_pixel_color)
2112 (x_to_xcolors, x_build_heuristic_mask, pbm_image_p, pbm_load)
2113 (png_image_p, init_png_functions, png_load_body, png_load)
2114 (jpeg_image_p, init_jpeg_functions, jpeg_load_body, jpeg_load)
2115 (tiff_image_p, init_tiff_functions, tiff_load, gif_image_p)
2116 (init_gif_functions, gif_load, imagemagick_image_p)
2117 (imagemagick_load_image, imagemagick_load, svg_image_p)
2118 (init_svg_functions, svg_load, svg_load_image, gs_image_p)
2119 (gs_load):
2120 * nsimage.m (ns_load_image):
2121 * nsterm.m (ns_defined_color):
2122 * xfaces.c (tty_lookup_color, tty_defined_color, defined_color):
2123 * xfns.c (x_defined_color):
2124 * xterm.c (x_alloc_lighter_color_for_widget)
2125 (x_alloc_nearest_color_1, x_alloc_nearest_color)
2126 (x_alloc_lighter_color):
2127 * indent.c (disptab_matches_widthtab, current_column)
2128 (scan_for_column, string_display_width, indented_beyond_p)
2129 (compute_motion, vmotion, Fvertical_motion):
2130 Use bool for booleans.
2131
2132 2012-09-24 Chong Yidong <cyd@gnu.org>
2133
2134 * chartab.c (Fset_char_table_default): Obsolete function removed.
2135
2136 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
2137
2138 Move pid_t related decls out of lisp.h.
2139 * lisp.h, syswait.h (record_child_status_change, wait_for_termination)
2140 (interruptible_wait_for_termination):
2141 Move these decls from lisp.h to syswait.h, since they use pid_t.
2142 Needed on FreeBSD; see Herbert J. Skuhra in
2143 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00571.html>.
2144 * callproc.c: Include syswait.h.
2145
2146 gnutls.c, gtkutil.c: Use bool for boolean.
2147 * gnutls.c (gnutls_global_initialized, init_gnutls_functions)
2148 (emacs_gnutls_handle_error):
2149 * gtkutil.c (xg_check_special_colors, xg_prepare_tooltip)
2150 (xg_hide_tooltip, xg_create_frame_widgets)
2151 (create_dialog, xg_uses_old_file_dialog)
2152 (xg_get_file_with_chooser, xg_get_file_with_selection)
2153 (xg_get_file_name, xg_have_tear_offs, create_menus, xg_create_widget)
2154 (xg_item_label_same_p, xg_update_menubar)
2155 (xg_modify_menubar_widgets, xg_event_is_for_menubar)
2156 (xg_ignore_gtk_scrollbar, xg_set_toolkit_scroll_bar_thumb)
2157 (xg_event_is_for_scrollbar, xg_pack_tool_bar, xg_make_tool_item)
2158 (is_box_type, xg_tool_item_stale_p, xg_update_tool_bar_sizes)
2159 (update_frame_tool_bar, free_frame_tool_bar):
2160 * gtkutil.c, w32term.c, xterm.c (x_wm_set_size_hint):
2161 * nsmenu.m (ns_update_menubar):
2162 * nsmenu.m, w32menu.c, xmenu.c (set_frame_menubar):
2163 * xfns.c (Fx_show_tip) [USE_GTK]:
2164 Use bool for boolean.
2165 * gtkutil.c (xg_update_frame_menubar):
2166 * xmenu.c (update_frame_menubar):
2167 Return void, not int, since caller ignores return value.
2168 * gtkutil.c (xg_change_toolbar_position):
2169 Return void, not 1.
2170
2171 2012-09-23 Juanma Barranquero <lekktu@gmail.com>
2172
2173 * makefile.w32-in (BLOCKINPUT_H): Remove.
2174 (SYSSIGNAL_H): New macro.
2175 ($(BLD)/alloc.$(O), $(BLD)/atimer.$(O), $(BLD)/buffer.$(O))
2176 ($(BLD)/callproc.$(O), $(BLD)/data.$(O), $(BLD)/dired.$(O))
2177 ($(BLD)/dispnew.$(O), $(BLD)/editfns.$(O), $(BLD)/emacs.$(O))
2178 ($(BLD)/eval.$(O), $(BLD)/fileio.$(O), $(BLD)/floatfns.$(O))
2179 ($(BLD)/fns.$(O), $(BLD)/fontset.$(O), $(BLD)/frame.$(O))
2180 ($(BLD)/fringe.$(O), $(BLD)/image.$(O), $(BLD)/insdel.$(O))
2181 ($(BLD)/keyboard.$(O), $(BLD)/keymap.$(O), $(BLD)/lread.$(O))
2182 ($(BLD)/menu.$(O), $(BLD)/w32inevt.$(O), $(BLD)/w32proc.$(O))
2183 ($(BLD)/print.$(O), $(BLD)/process.$(O), $(BLD)/ralloc.$(O))
2184 ($(BLD)/search.$(O), $(BLD)/sound.$(O), $(BLD)/sysdep.$(O))
2185 ($(BLD)/term.$(O), $(BLD)/window.$(O), $(BLD)/xdisp.$(O))
2186 ($(BLD)/xfaces.$(O), $(BLD)/w32fns.$(O), $(BLD)/w32menu.$(O))
2187 ($(BLD)/w32term.$(O), $(BLD)/w32select.$(O), $(BLD)/w32reg.$(O))
2188 ($(BLD)/w32xfns.$(O)): Update dependencies.
2189
2190 2012-09-23 Eli Zaretskii <eliz@gnu.org>
2191
2192 * .gdbinit: Set breakpoint on terminate_due_to_signal, not on
2193 fatal_error_backtrace.
2194
2195 * w32proc.c (sys_kill): Undo last change: don't do anything when
2196 invoked to deliver SIGABRT to our own process. This is now
2197 handled by emacs_raise.
2198
2199 2012-09-23 Juanma Barranquero <lekktu@gmail.com>
2200
2201 * w32term.c (w32_read_socket): Remove leftover reference to
2202 interrupt_input_pending.
2203
2204 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
2205
2206 Do not use SA_NODEFER.
2207 Problem reported by Dani Moncayo in
2208 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00557.html>.
2209 * alloc.c (die):
2210 * sysdep.c (emacs_abort): Do not reset signal handler.
2211 * emacs.c (terminate_due_to_signal): Reset signal handler here.
2212 * sysdep.c (init_signals): Do not use SA_NODEFER. It wasn't
2213 wanted even on POSIXish hosts, and it doesn't work on Windows.
2214
2215 2012-09-23 Jan Djärv <jan.h.d@swipnet.se>
2216
2217 * xterm.c (x_term_init): Call fixup_locale before and after calling
2218 gtk_init (Bug#12392).
2219
2220 2012-09-23 Chong Yidong <cyd@gnu.org>
2221
2222 * w32.c (w32_delayed_load): Remove LIBRARIES argument; always use
2223 Vdynamic_library_alist.
2224
2225 * gnutls.c (init_gnutls_functions): Caller changed; remove arg.
2226 (Fgnutls_available_p): Caller changed.
2227
2228 * xml.c (init_libxml2_functions, Flibxml_parse_html_region)
2229 (Flibxml_parse_xml_region): Likewise.
2230
2231 * dispextern.h (struct image_type): Remove arg from init function.
2232
2233 * image.c (Finit_image_library, lookup_image_type)
2234 (define_image_type): Remove now-unneeded second arg.
2235 (init_xpm_functions, init_png_functions, init_jpeg_functions)
2236 (init_tiff_functions, init_gif_functions, init_svg_functions):
2237 Arglist and w32_delayed_load calling convention changed.
2238 (gs_type): Remove init_gs_functions; there is no such function.
2239 (valid_image_p, make_image): Fix caller to lookup_image_type.
2240
2241 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
2242
2243 Simplify and avoid signal-handling races (Bug#12471).
2244 * alloc.c (die):
2245 * sysdep.c (emacs_abort) [HAVE_NTGUI]:
2246 Avoid recursive loop if there's a fatal error in the function itself.
2247 * atimer.c (pending_atimers):
2248 * blockinput.h: Don't include "atimer.h"; no longer needed.
2249 (interrupt_input_pending): Remove. All uses removed.
2250 pending_signals now counts both atimers and ordinary interrupts.
2251 This is less racy than having three separate pending-signal flags.
2252 (block_input, unblock_input, totally_unblock_input, unblock_input_to)
2253 (input_blocked_p):
2254 Rename from their upper-case counterparts BLOCK_INPUT,
2255 UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT, UNBLOCK_INPUT_TO,
2256 INPUT_BLOCKED_P, and turn into functions. All uses changed.
2257 This makes it easier to access volatile variables more accurately.
2258 (BLOCK_INPUT_RESIGNAL): Remove. All uses replaced by unblock_input ().
2259 (input_blocked_p): Prefer this to 'interrupt_input_blocked', as
2260 that's more reliable if the code is buggy and sets
2261 interrupt_input_blocked to a negative value. All uses changed.
2262 * atimer.c (deliver_alarm_signal):
2263 Remove. No need to deliver this to the parent; any thread can
2264 handle this signal now. All uses replaced by underlying handler.
2265 * atimer.c (turn_on_atimers):
2266 * dispnew.c (handle_window_change_signal):
2267 * emacs.c (handle_danger_signal):
2268 * keyboard.c (kbd_buffer_get_event):
2269 Don't reestablish signal handler; not needed with sigaction.
2270 * blockinput.h (UNBLOCK_INPUT_TO, TOTALLY_UNBLOCK_INPUT)
2271 (UNBLOCK_INPUT_TO):
2272 Rework to avoid unnecessary accesses to volatile variables.
2273 (UNBLOCK_INPUT_TO): Now a function.
2274 (totally_unblock_input, unblock_input): New decls.
2275 * data.c (handle_arith_signal, deliver_arith_signal): Move to sysdep.c
2276 (init_data): Remove. Necessary stuff now done in init_signal.
2277 * emacs.c, xdisp.c: Include "atimer.h", since we invoke atimer functions.
2278 * emacs.c (handle_fatal_signal, deliver_fatal_signal): Move to sysdep.c.
2279 (fatal_error_code): Remove; no longer needed.
2280 (terminate_due_to_signal): Rename from fatal_error_backtrace, since
2281 it doesn't always backtrace. All uses changed. No need to reset
2282 signal to default, since sigaction and/or die does that for us now.
2283 Use emacs_raise (FOO), not kill (getpid (), FOO).
2284 (main): Check more-accurately whether we're dumping.
2285 Move fatal-error setup to sysdep.c
2286 * floatfns.c: Do not include "syssignal.h"; no longer needed.
2287 * gtkutil.c (xg_get_file_name, xg_get_font):
2288 Remove no-longer-needed signal-mask manipulation.
2289 * keyboard.c, process.c (POLL_FOR_INPUT):
2290 Don't depend on USE_ASYNC_EVENTS, a symbol that is never defined.
2291 * keyboard.c (read_avail_input): Remove.
2292 All uses replaced by gobble_input.
2293 (Ftop_level): Use TOTALLY_UNBLOCK_INPUT rather than open code.
2294 (kbd_buffer_store_event_hold, gobble_input):
2295 (record_asynch_buffer_change) [USABLE_SIGIO]:
2296 (store_user_signal_events):
2297 No need to mess with signal mask.
2298 (gobble_input): If blocking input and there are terminals, simply
2299 set pending_signals to 1 and return. All hooks changed to not
2300 worry about whether input is blocked.
2301 (process_pending_signals): Clear pending_signals before processing
2302 them, in case a signal comes in while we're processing.
2303 By convention callers now test pending_signals before calling us.
2304 (UNBLOCK_INPUT_TO, unblock_input, totally_unblock_input):
2305 New functions, to support changes to blockinput.h.
2306 (handle_input_available_signal): Now extern.
2307 (reinvoke_input_signal): Remove. All uses replaced by
2308 handle_async_input.
2309 (quit_count): Now volatile, since a signal handler uses it.
2310 (handle_interrupt): Now takes bool IN_SIGNAL_HANDLER as arg.
2311 All callers changed. Block SIGINT only if not already blocked.
2312 Clear sigmask reliably, even if Fsignal returns, which it can.
2313 Omit unnecessary accesses to volatile var.
2314 (quit_throw_to_read_char): No need to restore sigmask.
2315 * keyboard.c (gobble_input, handle_user_signal):
2316 * process.c (wait_reading_process_output):
2317 Call signal-handling code rather than killing ourselves.
2318 * lisp.h: Include <float.h>, for...
2319 (IEEE_FLOATING_POINT): New macro, moved here to avoid duplication.
2320 (pending_signals): Now volatile.
2321 (syms_of_data): Now const if IEEE floating point.
2322 (handle_input_available_signal) [USABLE_SIGIO]:
2323 (terminate_due_to_signal, record_child_status_change): New decls.
2324 * process.c (create_process): Avoid disaster if memory is exhausted
2325 while we're processing a vfork, by tightening the critical section
2326 around the vfork.
2327 (send_process_frame, process_sent_to, handle_pipe_signal)
2328 (deliver_pipe_signal): Remove. No longer needed, as Emacs now
2329 ignores SIGPIPE.
2330 (send_process): No need for setjmp/longjmp any more, since the
2331 SIGPIPE stuff is now gone. Instead, report an error if errno
2332 is EPIPE.
2333 (record_child_status_change): Now extern. PID and W are now args.
2334 Return void, not bool. All callers changed.
2335 * sysdep.c (wait_debugging) [(BSD_SYSTEM || HPUX) && !defined (__GNU__)]:
2336 Remove. All uses removed. This bug should be fixed now in a
2337 different way.
2338 (wait_for_termination_1): Use waitpid rather than sigsuspend,
2339 and record the child status change directly. This avoids the
2340 need to futz with the signal mask.
2341 (process_fatal_action): Move here from emacs.c.
2342 (emacs_sigaction_flags): New function, containing
2343 much of what used to be in emacs_sigaction_init.
2344 (emacs_sigaction_init): Use it. Block nonfatal system signals that are
2345 caught by emacs, to make races less likely.
2346 (deliver_process_signal): Rename from handle_on_main_thread.
2347 All uses changed.
2348 (BACKTRACE_LIMIT_MAX): Now at top level.
2349 (thread_backtrace_buffer, threadback_backtrace_pointers):
2350 New static vars.
2351 (deliver_thread_signal, deliver_fatal_thread_signal):
2352 New functions, for more-accurate delivery of thread-specific signals.
2353 (handle_fatal_signal, deliver_fatal_signal): Move here from emacs.c.
2354 (deliver_arith_signal): Handle in this thread, not
2355 in the main thread, since it's triggered by this thread.
2356 (maybe_fatal_sig): New function.
2357 (init_signals): New arg DUMPING so that we can be more accurate
2358 about whether we're dumping. Caller changed.
2359 Treat thread-specific signals differently from process-general signals.
2360 Block all signals while handling fatal error; that's safer.
2361 xsignal from SIGFPE only on non-IEEE hosts, treating it as fatal
2362 on IEEE hosts.
2363 When batch, ignore SIGHUP, SIGINT, SIGTERM if they were already ignored.
2364 Ignore SIGPIPE unless batch.
2365 (emacs_backtrace): Output backtrace for the appropriate thread,
2366 which is not necessarily the main thread.
2367 * syssignal.h: Include <stdbool.h>.
2368 (emacs_raise): New macro.
2369 * xterm.c (x_connection_signal): Remove; no longer needed
2370 now that we use sigaction.
2371 (x_connection_closed): No need to mess with sigmask now.
2372 (x_initialize): No need to reset SIGPIPE handler here, since
2373 init_signals does this for us now.
2374
2375 2012-09-23 Jan Djärv <jan.h.d@swipnet.se>
2376
2377 * nsterm.m (ns_dumpglyphs_image): dr is a new rect to draw image into,
2378 background rect may be larger (Bug#12245).
2379
2380 2012-09-23 Chong Yidong <cyd@gnu.org>
2381
2382 * keyboard.c (timer_check): Avoid quitting during Fcopy_sequence.
2383
2384 2012-09-22 Paul Eggert <eggert@cs.ucla.edu>
2385
2386 * .gdbinit: Just stop at fatal_error_backtrace.
2387 See Stefan Monnier's request in
2388 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00549.html>.
2389 Remove no-longer-used query of system type.
2390
2391 2012-09-22 Chong Yidong <cyd@gnu.org>
2392
2393 * search.c (Freplace_match): Doc fix (Bug#12325).
2394
2395 * minibuf.c (Finternal_complete_buffer): Doc fix (Bug#12391).
2396
2397 * editfns.c (Fline_beginning_position): Doc fix (Bug#12416).
2398 (Fline_end_position): Doc fix.
2399
2400 * cmds.c (Fforward_char, Fbackward_char): Doc fix (Bug#12414).
2401
2402 2012-09-22 Chong Yidong <cyd@gnu.org>
2403
2404 * dispextern.h (struct image_type): Add new slot, storing a type
2405 initialization function.
2406
2407 * image.c (define_image_type): Call the image initializer function
2408 if it is defined. Arguments and return value changed.
2409 (valid_image_p, make_image): Callers changed.
2410 (xbm_type, xpm_type, pbm_type, png_type, jpeg_type, tiff_type)
2411 (gif_type, imagemagick_type, svg_type, gs_type):
2412 Add initialization functions.
2413 (Finit_image_library): Call lookup_image_type.
2414 (CHECK_LIB_AVAILABLE): Macro deleted.
2415 (lookup_image_type): Call define_image_type here, rather than via
2416 Finit_image_library, and without using CHECK_LIB_AVAILABLE.
2417 (syms_of_image): Move define_image_type calls for xbm_type and
2418 pbm_type to lookup_image_type.
2419
2420 2012-09-22 Eli Zaretskii <eliz@gnu.org>
2421
2422 * keyboard.c (timer_check_2): Move calculation of 'timers' and
2423 'idle_timers' from here ...
2424 (timer_check): ... to here. Use Fcopy_sequence to copy the timer
2425 lists, to avoid infloops when the timer does something stupid,
2426 like reinvoke itself with the same or smaller time-out.
2427 (Bug#12447)
2428
2429 2012-09-22 Martin Rudalics <rudalics@gmx.at>
2430
2431 * window.c (Fsplit_window_internal): Handle only Qt value of
2432 Vwindow_combination_limit separately.
2433 (Qtemp_buffer_resize): New symbol.
2434 (Vwindow_combination_limit): New default value.
2435 Rewrite doc-string.
2436
2437 2012-09-22 Eli Zaretskii <eliz@gnu.org>
2438
2439 * xdisp.c (next_overlay_string): Initialize it->end_charpos for
2440 the new overlay string. (Bug#10159)
2441
2442 2012-09-22 Paul Eggert <eggert@cs.ucla.edu>
2443
2444 * emacs.c (shut_down_emacs): Don't assume stderr is buffered,
2445 or that fprintf is async-signal-safe. POSIX doesn't require
2446 either assumption.
2447
2448 2012-09-22 Chong Yidong <cyd@gnu.org>
2449
2450 * buffer.c (Fset_buffer_modified_p): Handle indirect buffers
2451 (Bug#8207).
2452
2453 2012-09-22 Kenichi Handa <handa@gnu.org>
2454
2455 * composite.c (composition_reseat_it): Handle the case that a
2456 grapheme cluster is not covered by a single font (Bug#12352).
2457
2458 2012-09-21 Chong Yidong <cyd@gnu.org>
2459
2460 * image.c (define_image_type): Avoid adding duplicate types to
2461 image_types (Bug#12463). Suggested by Jörg Walter.
2462
2463 2012-09-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2464
2465 * unexmacosx.c: Define LC_DATA_IN_CODE if not defined.
2466 (print_load_command_name): Add case LC_DATA_IN_CODE.
2467 (dump_it) [LC_DATA_IN_CODE]: Call copy_linkedit_data.
2468
2469 2012-09-21 Glenn Morris <rgm@gnu.org>
2470
2471 * eval.c (Frun_hook_with_args_until_success)
2472 (Frun_hook_with_args_until_failure): Doc fixes. (Bug#12393)
2473
2474 2012-09-21 Andreas Schwab <schwab@linux-m68k.org>
2475
2476 * fileio.c (Ffile_selinux_context): Only call freecon when
2477 lgetfilecon succeeded.
2478 (Fset_file_selinux_context): Likewise. (Bug#12444)
2479
2480 2012-09-21 Eli Zaretskii <eliz@gnu.org>
2481
2482 * xdisp.c (try_window_reusing_current_matrix): Under bidi
2483 reordering, locate the cursor by calling set_cursor_from_row; if
2484 that fails, clear the desired glyph matrix before returning a
2485 failure indication to the caller. Fixes leaving garbled display
2486 when fast scrolling with a down-key. (Bug#12403)
2487 (compute_stop_pos_backwards): Fix a typo that caused crashes while
2488 scrolling through multibyte text.
2489
2490 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
2491
2492 * alloc.c (mark_object) <PVEC_WINDOW>: Mark prev/next_buffers *after*
2493 calling mark_vectorlike since that's the one that marks the window.
2494 (mark_discard_killed_buffers): Mark the final cdr.
2495 * window.h (struct window): Move prev/next_buffers to the
2496 non-standard fields.
2497 * window.c (make_window): Initialize prev/next_buffers manually.
2498
2499 2012-09-20 Paul Eggert <eggert@cs.ucla.edu>
2500
2501 Omit unused arg EXPECTED from socket hooks.
2502 * keyboard.c (gobble_input, read_avail_input, tty_read_avail_input):
2503 * nsterm.m (ns_term_init):
2504 * termhooks.h (struct terminal.read_socket_hook):
2505 * w32inevt.c (w32_console_read_socket):
2506 * w32term.c (w32_read_socket):
2507 * xterm.c (XTread_socket):
2508 Omit unused arg EXPECTED. All callers changed.
2509 (store_user_signal_events): Return void, not int, since callers no
2510 longer care about the return value. All uses changed.
2511
2512 2012-09-20 Juanma Barranquero <lekktu@gmail.com>
2513
2514 * w32gui.h (XParseGeometry): Do not declare.
2515
2516 2012-09-19 Paul Eggert <eggert@cs.ucla.edu>
2517
2518 * w32inevt.c (w32_console_read_socket): Return -1 on failure, not 0.
2519 Ignore 'expected'. See Eli Zaretskii in
2520 <http://bugs.gnu.org/12471#8> (last line).
2521
2522 * frame.c (read_integer): Remove. All uses replaced by strtol/strtoul.
2523 (XParseGeometry): Now static. Substitute extremal values for
2524 values that are out of range.
2525
2526 2012-09-19 Jan Djärv <jan.h.d@swipnet.se>
2527
2528 * w32xfns.c (read_integer, XParseGeometry): Move to frame.c.
2529
2530 * nsfns.m (XParseGeometry): Remove.
2531 (Fx_create_frame): Call x_set_offset to correctly interpret
2532 top_pos in geometry.
2533
2534 * frame.c (read_integer, XParseGeometry): Move from w32xfns.c.
2535 (Fx_parse_geometry): If there is a space in string, call
2536 Qns_parse_geometry, otherwise do as on other terms (Bug#12368).
2537
2538 2012-09-17 Eli Zaretskii <eliz@gnu.org>
2539
2540 * search.c (scan_buffer): Use character positions in calls to
2541 region_cache_forward and region_cache_backward, not byte
2542 positions. (Bug#12196)
2543
2544 * w32term.c (w32_read_socket): Set pending_signals to 1, like
2545 xterm.c does. Reported by Daniel Colascione <dancol@dancol.org>.
2546
2547 * ralloc.c (r_alloc_init) [!SYSTEM_MALLOC]: Initialize
2548 __malloc_extra_blocks to 32 instead of 64, like alloc.c did in
2549 emacs_blocked_malloc, now deleted.
2550
2551 2012-09-17 Paul Eggert <eggert@cs.ucla.edu>
2552
2553 Remove no-longer-needed Solaris 2.4 vfork bug workaround.
2554 The workaround was for improving performance on Solaris 2.4, but
2555 is getting in the way now. Emacs will still work if someone is
2556 still running Solaris 2.4 in a museum somewhere; Sun dropped
2557 support for Solaris 2.4 in 2003.
2558 * callproc.c (Fcall_process) [HAVE_WORKING_VFORK]:
2559 * process.c (create_process) [HAVE_WORKING_VFORK]:
2560 Omit now-unnecessary workaround for the Solaris 2.4 vfork bug,
2561 since Emacs no longer uses vfork on that platform.
2562
2563 2012-09-17 Glenn Morris <rgm@gnu.org>
2564
2565 * emacs.c: Use COPYRIGHT.
2566
2567 2012-09-16 Paul Eggert <eggert@cs.ucla.edu>
2568
2569 Remove configure's --without-sync-input option (Bug#12450).
2570 When auditing signal-handling in preparation for cleaning it up,
2571 I found that SYNC_INPUT has race conditions and would be a real
2572 pain to fix. Since it's an undocumented and deprecated
2573 configure-time option, now seems like a good time to remove it.
2574 Also see <http://bugs.gnu.org/11080#16>.
2575 * alloc.c (_bytes_used, __malloc_extra_blocks, _malloc_internal)
2576 (_free_internal) [!DOUG_LEA_MALLOC]: Remove decls.
2577 (alloc_mutex) [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
2578 (malloc_hysteresis):
2579 (check_depth) [XMALLOC_OVERRUN_CHECK]:
2580 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT):
2581 (__malloc_hook, __realloc_hook, __free_hook, BYTES_USED)
2582 (dont_register_blocks, bytes_used_when_reconsidered)
2583 (bytes_used_when_full, emacs_blocked_free, emacs_blocked_malloc)
2584 (emacs_blocked_realloc, reset_malloc_hooks, uninterrupt_malloc):
2585 [!SYSTEM_MALLOC && !SYNC_INPUT]:
2586 Remove. All uses removed.
2587 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): Use a different
2588 implementation, one that depends on whether the new macro
2589 XMALLOC_BLOCK_INPUT_CHECK is defined, not on whether SYNC_INPUT
2590 is defined.
2591 * atimer.c (run_timers, handle_alarm_signal):
2592 * keyboard.c (pending_signal, poll_for_input_1, poll_for_input)
2593 (handle_async_input, process_pending_signals)
2594 (handle_input_available_signal, init_keyboard):
2595 * nsterm.m (ns_read_socket):
2596 * process.c (wait_reading_process_output):
2597 * regex.c (immediate_quit, IMMEDIATE_QUIT_CHECK):
2598 * sysdep.c (emacs_sigaction_init) [SA_RESTART]:
2599 (emacs_write):
2600 * xterm.c (XTread_socket):
2601 Assume SYNC_INPUT.
2602 * conf_post.h (SA_RESTART) [IRIX6_5]: Do not #undef.
2603 * eval.c (handling_signal): Remove. All uses removed.
2604 * lisp.h (ELSE_PENDING_SIGNALS): Remove.
2605 All uses replaced with the SYNC_INPUT version.
2606 (reset_malloc_hooks, uninterrupt_malloc, handling_signal):
2607 Remove decls.
2608 * sysdep.c, syssignal.h (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
2609 Now static.
2610
2611 * font.c (Ffont_shape_gstring): Remove unused local.
2612
2613 2012-09-16 Glenn Morris <rgm@gnu.org>
2614
2615 * Makefile.in (clean): No longer run nextstep's clean.
2616
2617 * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Remove variables.
2618 (ns_frag): Remove.
2619 (ns-app): Move here from ns.mk, and simplify.
2620 (clean): Simplify nextstep entry.
2621 * ns.mk: Remove file.
2622
2623 2012-09-17 Kenichi Handa <handa@gnu.org>
2624
2625 * font.c (Ffont_shape_gstring): Fix previous change; GLYPHs may
2626 not covert the last few charactes.
2627
2628 2012-09-16 Kenichi Handa <handa@gnu.org>
2629
2630 * font.c (Ffont_shape_gstring): Don't adjust grapheme cluster
2631 here, but just check the validity of glyphs in the glyph-string.
2632
2633 2012-09-16 Martin Rudalics <rudalics@gmx.at>
2634
2635 * window.c (Fwindow_parameter, Fset_window_parameter):
2636 Accept any window as argument (Bug#12452).
2637
2638 2012-09-16 Jan Djärv <jan.h.d@swipnet.se>
2639
2640 * nsfns.m (Fx_open_connection): Move initialization of ns_*_types
2641 to ns_term_init to avoid memory leak.
2642
2643 * nsterm.m (ns_update_begin): Initialize bp after lcokFocus, use
2644 explicit retain/release.
2645 (ns_term_init): Only allow one display. Initialize outerpool and
2646 ns_*_types.
2647
2648 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
2649
2650 Port _setjmp fix to POSIXish hosts as well as Microsoft.
2651 * image.c (_setjmp) [!HAVE__SETJMP]: Restore definition, as
2652 it's needed on POSIXish hosts that lack _setjmp. Attempt to solve
2653 the Microsoft problem in a different way, by altering ../nt/config.nt.
2654
2655 2012-09-15 Eli Zaretskii <eliz@gnu.org>
2656
2657 * w32xfns.c:
2658 * w32uniscribe.c:
2659 * w32term.c:
2660 * w32select.c:
2661 * w32reg.c:
2662 * w32proc.c:
2663 * w32menu.c:
2664 * w32inevt.c:
2665 * w32heap.c:
2666 * w32font.c:
2667 * w32fns.c:
2668 * w32console.c:
2669 * w32.c:
2670 * w16select.c: Remove inclusion of setjmp.h, as it is now included
2671 by lisp.h. This completes removal of setjmp.h inclusion
2672 erroneously announced in the previous commit. (Bug#12446)
2673
2674 * lisp.h [!HAVE__SETJMP, !HAVE_SIGSETJMP]: Make the commentary
2675 more accurate.
2676
2677 * image.c (_setjmp) [!HAVE__SETJMP]: Define only if 'setjmp' is
2678 not defined as a macro. The latter happens on MS-Windows.
2679 (Bug#12446)
2680
2681 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
2682
2683 Port better to POSIX hosts lacking _setjmp (Bug#12446).
2684 * lisp.h: Include <setjmp.h> here, since we use its symbols here.
2685 Some instances of '#include <setjmp.h>' removed, if the
2686 only reason for the instance was because "lisp.h" was included.
2687 (sys_jmp_buf, sys_setjmp, sys_longjmp): New symbols.
2688 Unless otherwise specified, replace all uses of jmp_buf, _setjmp,
2689 and _longjmp with the new symbols. Emacs already uses _setjmp if
2690 available, so this change affects only POSIXish hosts that have
2691 sigsetjmp but not _setjmp, such as some versions of Solaris and
2692 Unixware. (Also, POSIX-2008 marks _setjmp as obsolescent.)
2693 * image.c (_setjmp, _longjmp) [HAVE_PNG && !HAVE__SETJMP]: New macros.
2694 (png_load_body) [HAVE_PNG]:
2695 (PNG_LONGJMP) [HAVE_PNG && PNG_LIBPNG_VER < 10500]:
2696 (PNG_JMPBUF) [HAVE_PNG && PNG_LIBPNG_VER >= 10500]:
2697 Use _setjmp and _longjmp rather than sys_setjmp and sys_longjmp,
2698 since PNG requires jmp_buf. This is the only exception to the
2699 general rule that we now use sys_setjmp and sys_longjmp.
2700 This exception is OK since this code does not change the signal
2701 mask or longjmp out of a signal handler.
2702
2703 2012-09-14 Paul Eggert <eggert@cs.ucla.edu>
2704
2705 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
2706 Include "syssignal.h", for 'main_thread'.
2707
2708 2012-09-14 Dmitry Antipov <dmantipov@yandex.ru>
2709
2710 Avoid out-of-range marker position (Bug#12426).
2711 * insdel.c (replace_range, replace_range_2):
2712 Adjust markers before overlays, as suggested by comments.
2713 (insert_1_both, insert_from_buffer_1, adjust_after_replace):
2714 Remove redundant check before calling offset_intervals.
2715
2716 2012-09-14 Martin Rudalics <rudalics@gmx.at>
2717
2718 * xdisp.c (Fformat_mode_line): Unconditionally save/restore
2719 current buffer (Bug#12387).
2720
2721 2012-09-14 Juanma Barranquero <lekktu@gmail.com>
2722
2723 * makefile.w32-in ($(BLD)/alloc.$(O)): Update dependencies.
2724
2725 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
2726
2727 Use a more backwards-compatible timer format (Bug#12430).
2728 * keyboard.c (decode_timer): Get PSECS from the 8th (origin-0)
2729 vector element, not from the 4th, since PSECS is now at the end.
2730 (Fcurrent_idle_time): Doc fix.
2731
2732 2012-09-13 Dmitry Antipov <dmantipov@yandex.ru>
2733
2734 Function to mark objects and remove killed buffers at once.
2735 * alloc.c (discard_killed_buffers): Rename to ...
2736 (mark_discard_killed buffers) ... new name. Add marking
2737 of remaining objects. Fix comment. Adjust users.
2738 (mark_object): Do not touch frame buffer lists here.
2739 * frame.c (delete_frame): Reset frame buffer lists here.
2740
2741 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
2742
2743 Better workaround for GNOME bug when --enable-gcc-warnings.
2744 * emacsgtkfixed.c (G_STATIC_ASSERT): Remove, undoing last change.
2745 Instead, disable -Wunused-local-typedefs. See Dmitry Antipov in
2746 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00335.html>.
2747
2748 Simplify SIGIO usage (Bug#12408).
2749 The code that dealt with SIGIO was crufty and confusing, e.g., it
2750 played tricks like "#undef SIGIO" but these tricks were not used
2751 consistently. Simplify mostly by not #undeffing standard symbols,
2752 e.g., use "defined USABLE_SIGIO" (our symbol, which we can define
2753 or not as we please) rather than "defined SIGIO" (standard symbol
2754 that we probably shouldn't #undef).
2755 * conf_post.h [USG5_4]: Do not include <sys/wait.h> here.
2756 Modules that need it can include it.
2757 [USG5_4 && emacs]: Likewise, do not include the streams stuff here.
2758 * dispextern.h (ignore_sigio): New decl.
2759 * emacs.c (shut_down_emacs): Invoke unrequest_sigio
2760 unconditionally, since it's now a no-op if !USABLE_SIGIO.
2761 * emacs.c (shut_down_emacs):
2762 * keyboard.c (kbd_buffer_store_event_hold):
2763 Use ignore_sigio rather than invoking 'signal' directly.
2764 * keyboard.c (USABLE_FIONREAD && USG5_4): Include <sys/filio.h>,
2765 for FIONREAD.
2766 (FIONREAD, SIGIO): Do not #undef.
2767 (tty_read_avail_input): Use #error rather than a syntax error.
2768 * process.c [USG5_4]: Include <sys/stream.h> and <sys/stropts.h>,
2769 for I_PIPE, used by SETUP_SLAVE_PTY.
2770 (DATAGRAM_SOCKETS): Simplify defn, based on USABLE_FIONREAD.
2771 * sysdep.c (croak): Remove; no longer needed. This bit of
2772 temporary code, with Fred N. Fish's comment that it's temporary,
2773 has been in Emacs since at least 1992!
2774 (init_sigio, reset_sigio, request_sigio, unrequest_sigio):
2775 Arrange for them to be no-ops in all cases when ! USABLE_SIGIO.
2776 * syssignal.h (croak): Remove decl.
2777 (SIGIO, SIGPOO, SIGAIO, SIGPTY): Do not #undef; that's too fragile.
2778 * systty.h [!NO_TERMIO]: Do not include <termio.h>; no longer needed
2779 now that we're termios-only.
2780 (FIONREAD, ASYNC) [BROKEN_FIONREAD]: Do not #undef.
2781 * term.c (dissociate_if_controlling_tty): Use #error rather than
2782 a run-time error.
2783
2784 Work around GCC and GNOME bugs when --enable-gcc-warnings.
2785 * emacsgtkfixed.c (G_STATIC_ASSERT): Redefine to use 'verify',
2786 to work around GNOME bug 683906.
2787 * image.c (jpeg_load_body) [HAVE_JPEG && lint]: Pacify gcc -Wclobber.
2788 (struct my_jpeg_error_mgr) [HAVE_JPEG && lint]: New member fp.
2789 This works around GCC bug 54561.
2790
2791 2012-09-12 Paul Eggert <eggert@cs.ucla.edu>
2792
2793 More fixes for 'volatile' and setjmp/longjmp.
2794 * eval.c (Fdefvar, Fcondition_case): Remove unnecessary 'volatile's.
2795 * image.c (struct png_load_context) [HAVE_PNG]: New type.
2796 (png_load_body) [HAVE_PNG]:
2797 (jpeg_load_body) [HAVE_JPEG]:
2798 New function, with most of the old parent function's body.
2799 (png_load) [HAVE_PNG]:
2800 (jpeg_load) [HAVE_JPEG]:
2801 Invoke the new function, to avoid longjmp munging our locals.
2802 (struct my_jpeg_error_mgr) [HAVE_JPEG]: New members cinfo, failure_code.
2803 (my_error_exit) [HAVE_JPEG]: Don't trust 'setjmp' to return 2 when
2804 longjmp is passed 2, as the C standard doesn't guarantee this.
2805 Instead, store the failure code into mgr->failure_code.
2806
2807 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
2808
2809 * keyboard.c (read_char, requeued_events_pending_p, Finput_pending_p)
2810 (Fdiscard_input, quit_throw_to_read_char, init_keyboard)
2811 (syms_of_keyboard): Remove support for unread-command-char.
2812
2813 2012-09-12 Eli Zaretskii <eliz@gnu.org>
2814
2815 * w32proc.c (sys_kill): If PID is our process ID and the signal is
2816 SIGABRT, call emacs_abort. Avoids silently exiting upon assertion
2817 violation. (Bug#12426)
2818
2819 2012-09-12 Paul Eggert <eggert@cs.ucla.edu>
2820
2821 * image.c (jpeg_memory_src): Don't assume string len fits in unsigned.
2822
2823 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
2824
2825 * eval.c: Add `inhibit-debugger'.
2826 (Qinhibit_debugger): New symbol.
2827 (call_debugger): Bind it instead of Qdebug_on_error.
2828 (maybe_call_debugger): Test Vinhibit_debugger.
2829 (syms_of_eval): Define inhibit-debugger.
2830 * xdisp.c (set_message): Don't bind Qinhibit_debug_on_message.
2831 (syms_of_xdisp): Remove inhibit-debug-on-message.
2832
2833 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
2834
2835 Avoid _setjmp/_longjmp problems with local nonvolatile variables.
2836 If a nonvolatile local variable is written before a _longjmp to
2837 the frame containing the variable, and is read after the _longjmp,
2838 the value read is indeterminate. Some local variables of type
2839 'struct handler' and 'struct catchtag' are used in this way, so
2840 mark each of their slots as volatile if the slot can be set before
2841 _longjmp and read afterwards.
2842 * lisp.h (struct handler): var and chosen_clause are now volatile.
2843 (struct catchtag): val, next, and pdlcount are now volatile.
2844
2845 * bidi.c (bidi_push_it, bidi_pop_it):
2846 * fns.c (copy_hash_table):
2847 * image.c (define_image_type):
2848 * keyboard.c (kbd_buffer_store_event_hold):
2849 * process.c (Fprocess_send_eof):
2850 * xfaces.c (x_create_gc) [HAVE_NS]:
2851 * xgselect.c (xg_select):
2852 Prefer assignment to memcpy when either will do.
2853
2854 * alloc.c (discard_killed_buffers): Tune and simplify a bit.
2855 Use pointer-to-a-pointer to simplify and avoid a NILP check each
2856 time an item is removed. No need to mark this function 'inline';
2857 the compiler knows better than we do.
2858
2859 2012-09-11 Jan Djärv <jan.h.d@swipnet.se>
2860
2861 * nsterm.m (ns_judge_scroll_bars): Pass NO to updateFrameSize.
2862 (updateFrameSize:): Add delay parameter to updateFrameSize, send it
2863 to change_frame_size (Bug#12388).
2864 (windowDidResize:): Pass YES to updateFrameSize.
2865
2866 * nsterm.h: Add delay parameter to updateFrameSize.
2867
2868 2012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
2869
2870 Discard killed buffers from deleted window and frame objects.
2871 This reduces an amount of references to killed buffers and
2872 helps GC to reclaim them faster.
2873 * alloc.c (discard_killed_buffers): New function.
2874 (mark_object): Use it for deleted windows and frames.
2875 (mark_object): If symbol's value is set up for a killed buffer
2876 or deleted frame, restore its global binding.
2877 * data.c (swap_in_global_binding): Add GC notice.
2878 (swap_in_symval_forwarding): Use convenient set_blv_where.
2879 * window.c (wset_next_buffers, wset_prev_buffers): Move ...
2880 * window.h: ... to here.
2881
2882 2012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
2883
2884 Convenient macro to check whether the buffer is live.
2885 * buffer.h (BUFFER_LIVE_P): New macro.
2886 * alloc.c, buffer.c, editfns.c, insdel.c, lread.c, marker.c:
2887 * minibuf.c, print.c, process.c, window.c, xdisp.c: Use it.
2888
2889 2012-09-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2890
2891 * xdisp.c (right_overwritten, right_overwriting): Also handle gstring
2892 composition cases (Bug#12364).
2893
2894 * xterm.c (x_draw_glyph_string): Avoid overwriting inverted left
2895 overhang of succeeding glyphs overlapping box cursor.
2896
2897 * w32term.c (x_draw_glyph_string): Likewise.
2898
2899 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
2900
2901 Simplify, document, and port floating-point (Bug#12381).
2902 The porting part of this patch fixes bugs on non-IEEE platforms
2903 with frexp, ldexp, logb.
2904 * data.c, lisp.h (Qdomain_error, Qsingularity_error, Qunderflow_error):
2905 Now static.
2906 * floatfns.c: Simplify discussion of functions that Emacs doesn't
2907 support, by removing commented-out code and briefly listing the
2908 C89 functions excluded. The commented-out stuff was confusing
2909 maintenance, e.g., we thought we needed cbrt but it was commented out.
2910 (logb): Remove decl; no longer needed.
2911 (isfinite): New macro, if not already supplied.
2912 (isnan): Don't replace any existing macro.
2913 (Ffrexp, Fldexp): Define even if !HAVE_COPYSIGN, as frexp and ldexp
2914 are present on all C89 platforms.
2915 (Ffrexp): Do not special-case zero, as frexp does the right thing
2916 for that case.
2917 (Flogb): Do not use logb, as it doesn't have the desired meaning
2918 on hosts that use non-base-2 floating point. Instead, stick with
2919 frexp, which is C89 anyway. Do not pass an infinity or a NaN to
2920 frexp, to avoid getting an unspecified result.
2921
2922 * xdisp.c (Qinhibit_debug_on_message): Now static.
2923
2924 2012-09-10 Jan Djärv <jan.h.d@swipnet.se>
2925
2926 * nsterm.m (ns_update_begin): Set clip path to whole view by using
2927 NSBezierPath (Bug#12131).
2928
2929 2012-09-10 Chong Yidong <cyd@gnu.org>
2930
2931 * fns.c (Fdelq, Fdelete): Doc fix.
2932
2933 2012-09-10 Paul Eggert <eggert@cs.ucla.edu>
2934
2935 * lisp.h (XSETINT, XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL)
2936 (XSETFLOAT, XSETMISC): Parenthesize macro bodies.
2937
2938 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
2939
2940 * lisp.h (make_lisp_ptr): New macro to replace XSET.
2941 (XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL, XSETFLOAT, XSETMISC):
2942 Use it.
2943
2944 2012-09-09 Eli Zaretskii <eliz@gnu.org>
2945
2946 * fringe.c (draw_fringe_bitmap_1): Don't reduce the width of the
2947 left fringe if the window has a left margin. This avoids leaving
2948 traces of the cursor because its leftmost pixel is not drawn over.
2949
2950 * dispnew.c (update_window_line): When the left margin area of a
2951 screen line is updated, set the redraw_fringe_bitmaps_p flag of
2952 that screen line. (Bug#12277)
2953
2954 2012-09-09 Paul Eggert <eggert@cs.ucla.edu>
2955
2956 Assume C89 or later for math functions (Bug#12381).
2957 This simplifies the code, and makes it a bit smaller and faster,
2958 and (most important) makes it easier to clean up signal handling
2959 since we can stop worring about floating-point exceptions in
2960 library code. That was a problem before C89, but the problem
2961 went away many years ago on all practical Emacs targets.
2962 * data.c, image.c, lread.c, print.c:
2963 Don't include <math.h>; no longer needed.
2964 * data.c, floatfns.c (IEEE_FLOATING_POINT): Don't worry that it
2965 might be autoconfigured, as that never happens.
2966 * data.c (fmod):
2967 * doprnt.c (DBL_MAX_10_EXP):
2968 * print.c (DBL_DIG):
2969 Remove. C89 or later always defines these.
2970 * floatfns.c (HAVE_MATHERR, FLOAT_CHECK_ERRNO, FLOAT_CHECK_DOMAIN)
2971 (in_float, float_error_arg, float_error_arg2, float_error_fn_name)
2972 (arith_error, domain_error, domain_error2):
2973 Remove all this pre-C89 cruft. Do not include <errno.h> as that's
2974 no longer needed -- we simply return what C returns. All uses removed.
2975 (IN_FLOAT, IN_FLOAT2): Remove. All uses replaced with
2976 the wrapped code.
2977 (FLOAT_TO_INT, FLOAT_TO_INT2, range_error, range_error2):
2978 Remove. All uses expanded, as these macros are no longer used
2979 more than once and are now more trouble than they're worth.
2980 (Ftan): Use tan, not sin / cos.
2981 (Flogb): Assume C89 frexp.
2982 (fmod_float): Assume C89 fmod.
2983 (matherr) [HAVE_MATHERR]: Remove; no longer needed.
2984 (init_floatfns): Remove. All uses removed.
2985
2986 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
2987
2988 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Take back
2989 compositeToPoint for OSX < 10.6 (Bug#12390).
2990
2991 2012-09-08 Paul Eggert <eggert@cs.ucla.edu>
2992
2993 * floatfns.c (Ftan): Use tan (x), not (sin (x) / cos (x)).
2994 This produces more-accurate results.
2995
2996 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
2997
2998 * nsterm.m (updateFrameSize): Call setFrame: on the view when size
2999 changes (Bug#12088).
3000
3001 2012-09-08 Chong Yidong <cyd@gnu.org>
3002
3003 * syntax.c (Fstring_to_syntax): Doc fix.
3004
3005 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
3006
3007 * nsterm.m (ns_clip_to_row): Remove code that deals with drawing fringe
3008 in the internal border.
3009 (x_set_window_size): Remove static variables and their usage.
3010 (ns_redraw_scroll_bars): Fix NSTRACE arg.
3011 (ns_after_update_window_line, ns_draw_fringe_bitmap):
3012 Remove fringe/internal border adjustment (Bug#11052).
3013 (ns_draw_fringe_bitmap): Make code more like other terms (xterm.c).
3014 (ns_draw_window_cursor): Remove fringe/internal border adjustment.
3015 (ns_fix_rect_ibw): Remove.
3016 (ns_get_glyph_string_clip_rect): Remove call to ns_fix_rect_ibw.
3017 (ns_dumpglyphs_box_or_relief): Ditto.
3018 (ns_maybe_dumpglyphs_background): Remove fringe/internal border
3019 adjustment.
3020 (ns_dumpglyphs_image): Ditto.
3021 (ns_dumpglyphs_stretch): Fix coding style. Remove fringe/internal
3022 border adjustment.
3023 (ns_set_vertical_scroll_bar): Remove variables barOnVeryLeft/Right and
3024 their usage. Add fringe_extended_p and its use as in other terms.
3025 (ns_judge_scroll_bars): Code style fix. Call updateFrameSize if
3026 scroll bar was removed.
3027 (updateFrameSize): New function.
3028 (windowDidResize): Move code to updateFrameSize and call it.
3029
3030 * nsterm.h (EmacsView): Add updateFrameSize.
3031
3032 2012-09-07 Chong Yidong <cyd@gnu.org>
3033
3034 * textprop.c (Fget_text_property): Minor doc fix (Bug#12323).
3035
3036 * data.c (Flocal_variable_if_set_p): Doc fix (Bug#10713).
3037
3038 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
3039
3040 More signal-handler cleanup (Bug#12327).
3041 * emacs.c (main): Convert three 'signal' calls to 'sigaction' calls.
3042 Problem introduced when merging patches. Noted by Eli Zaretskii in
3043 <http://bugs.gnu.org/12327#67>.
3044 * floatfns.c: Comment fix.
3045 * lisp.h (force_auto_save_soon): Declare regardless of SIGDANGER.
3046 SIGDANGER might not be in scope so "#ifdef SIGDANGER" is not right,
3047 and anyway the declaration is harmless even if SIGDANGER is not defined.
3048 * syssignal.h (SIGIO): Also #undef if (! defined FIONREAD ||
3049 defined BROKEN_FIONREAD). systty.h formerly did this, but other
3050 source files not surprisingly expected syssignal.h to define, or
3051 not define, SIGIO, and it's cleaner to do it that way, for consistency.
3052 Include <sys/ioctl.h>, for FIONREAD.
3053 * systty.h (SIGIO): Do not #undef here; it's now syssignal.h's job.
3054 This eliminates a problem whereby other files mysteriously had
3055 to include "syssignal.h" before including "systty.h" if they
3056 wanted to use "#ifdef SIGIO".
3057
3058 2012-09-07 Eli Zaretskii <eliz@gnu.org>
3059
3060 * w32proc.c (sigaction): New function, emulates Posix 'sigaction'.
3061
3062 * w32.c (sigemptyset): Empty the set.
3063 (sigsetmask, sigmask, sigblock, sigunblock): Remove unused functions.
3064
3065 * alloc.c [ENABLE_CHECKING]: Include signal.h, since we need SIGABRT.
3066
3067 2012-09-07 Dmitry Antipov <dmantipov@yandex.ru>
3068
3069 * alloc.c (mark_buffer): Revert unsafe marking optimization.
3070 (mark_object): Likewise for frame objects.
3071
3072 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
3073
3074 * syssignal.h (handle_on_main_thread): Always declare,
3075 even if FORWARD_SIGNAL_TO_MAIN_THREAD is not defined.
3076 This ports to platforms without HAVE_PTHREAD.
3077
3078 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
3079
3080 Signal-handler cleanup (Bug#12327).
3081 Emacs's signal handlers were written in the old 4.2BSD style with
3082 sigblock and sigmask and so forth, and this led to some
3083 inefficiencies and confusion. Rewrite these to use
3084 pthread_sigmask etc. without copying signal sets around. Also,
3085 get rid of the confusing macros 'SIGNAL_THREAD_CHECK' and
3086 'signal', and instead use functions that do not attempt to take
3087 over the system name space. This patch causes Emacs's text
3088 segment to shrink by 0.7% on my platform, Fedora 17 x86-64.
3089 * alloc.c, emacsgtkfixed.c, nsfns.m, widget.c, xmenu.c:
3090 Do not include <signal.h> or "syssignal.h", as these
3091 modules do not use signals.
3092 * atimer.c, callproc.c, data.c, dispnew.c, emacs.c, floatfns.c:
3093 * gtkutil.c, keyboard.c, process.c, sound.c, sysdep.c, term.c, xterm.c:
3094 Do not include <signal.h>, as "syssignal.h" does that for us now.
3095 * atimer.c (sigmask_atimers): New function.
3096 (block_atimers, unblock_atimers): New functions,
3097 replacing the old macros BLOCK_ATIMERS and UNBLOCK_ATIMERS.
3098 All uses replaced.
3099 * conf_post.h [SIGNAL_H_AHB]: Do not include <signal.h>;
3100 no longer needed here.
3101 * emacs.c (main): Inspect existing signal handler with sigaction,
3102 so that there's no need to block and unblock SIGHUP.
3103 * sysdep.c (struct save_signal): New member 'action', replacing
3104 old member 'handler'.
3105 (save_signal_handlers, restore_signal_handlers):
3106 Use sigaction instead of 'signal' to save and restore.
3107 (get_set_sighandler, set_sighandler) [!WINDOWSNT]:
3108 New function. All users of 'signal' modified to use set_sighandler
3109 if they're writeonly, and to use sys_signal if they're read+write.
3110 (emacs_sigaction_init, forwarded_signal): New functions.
3111 (sys_signal): Remove. All uses replaced by calls to sigaction
3112 and emacs_sigaction_init, or by direct calls to 'signal'.
3113 (sys_sigmask) [!__GNUC__]: Remove; no longer needed.
3114 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove;
3115 all uses replaced by pthread_sigmask etc. calls.
3116 * syssignal.h: Include <signal.h>.
3117 (emacs_sigaction_init, forwarded_signal): New decls.
3118 (SIGMASKTYPE): Remove. All uses replaced by its definiens, sigset_t.
3119 (SIGEMPTYMASK): Remove; all uses replaced by its definiens, empty_mask.
3120 (sigmask, sys_sigmask): Remove; no longer needed.
3121 (sigpause): Remove. All uses replaced by its definiens, sigsuspend.
3122 (sigblock, sigunblock, sigfree):
3123 (sigsetmask) [!defined sigsetmask]:
3124 Remove. All uses replaced by pthread_sigmask.
3125 (signal): Remove. Its remaining uses (with SIG_DFL and SIG_IGN)
3126 no longer need to be replaced, and its typical old uses
3127 are now done via emacs_sigaction_init and sigaction.
3128 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove decls.
3129 (sys_sigdel): Remove; unused.
3130 (NSIG): Remove a FIXME; the code's fine. Remove an unnecessary ifdef.
3131
3132 2012-09-06 Eli Zaretskii <eliz@gnu.org>
3133
3134 * process.c (CAN_HANDLE_MULTIPLE_CHILDREN): Fix a typo that broke
3135 SIGCHLD handling on systems that don't have WNOHANG. (Bug#12327)
3136
3137 2012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
3138
3139 Explicitly mark buffer_defaults and buffer_local_symbols.
3140 * alloc.c (Fgarbage_collect): Mark buffer_defaults and
3141 mark_local_symbols here.
3142 (mark_object): If GC_CHECK_MARKED_OBJECTS, simplify checking
3143 since special buffers aren't marked here any more.
3144 (allocate_buffer): Chain new buffer with all_buffers here...
3145 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): ...and
3146 not here.
3147 (Vbuffer_defaults, Vbuffer_local_symbols): Remove.
3148 (syms_of_buffer): Remove staticpro of the above.
3149 (init_buffer_once): Set names for buffer_defaults and
3150 buffer_local_symbols.
3151
3152 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
3153
3154 Use bool for booleans in font-related modules.
3155 * font.c (font_intern_prop, font_style_to_value)
3156 (font_style_symbolic, font_parse_xlfd, font_parse_fcname)
3157 (generate_otf_features, font_check_otf_features, font_check_otf)
3158 (font_match_p, font_list_entities, font_at):
3159 * fontset.c (fontset_id_valid_p, reorder_font_vector
3160 (fontset_find_font, Fset_fontset_font)
3161 (face_suitable_for_char_p) [0]:
3162 * ftfont.c (fc_initialized, ftfont_get_open_type_spec)
3163 (ftfont_open, ftfont_text_extents, ftfont_check_otf):
3164 (m17n_flt_initialized, ftfont_shape_by_flt):
3165 * ftxfont.c (ftxfont_draw_bitmap, ftxfont_draw):
3166 * nsfont.m (nsfont_draw):
3167 * w32font.c (w32font_draw):
3168 * w32term.c (x_draw_glyphless_glyph_string_foreground):
3169 Use bool for booleans.
3170 * font.h: Adjust to above API changes.
3171 (struct font, struct font_driver, struct font_driver_list):
3172 Use bool for booleans.
3173 (struct font): Remove useless member encoding_type.
3174 All users removed.
3175 * fontset.c, xftfont.c: Omit unnecessary static decls.
3176
3177 2012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
3178
3179 * alloc.c (mark_object): Revert window marking code
3180 since it's unsafe for the Fset_window_configuration.
3181
3182 2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
3183
3184 Fix race conditions with signal handlers and errno (Bug#12327).
3185 Be more systematic about preserving errno whenever a signal
3186 handler returns, even if it's not in the main thread. Do this by
3187 renaming signal handlers to distinguish between signal delivery
3188 and signal handling. All uses changed.
3189 * atimer.c (deliver_alarm_signal): Rename from alarm_signal_handler.
3190 * data.c (deliver_arith_signal): Rename from arith_error.
3191 * dispnew.c (deliver_window_change_signal): Rename from
3192 window_change_signal.
3193 * emacs.c (deliver_error_signal): Rename from fatal_error_signal.
3194 (deliver_danger_signal) [SIGDANGER]: Rename from memory_warning_signal.
3195 * keyboard.c (deliver_input_available_signal): Rename from
3196 input_available_signal.
3197 (deliver_user_signal): Rename from handle_user_signal.
3198 (deliver_interrupt_signal): Rename from interrupt_signal.
3199 * process.c (deliver_pipe_signal): Rename from send_process_trap.
3200 (deliver_child_signal): Rename from sigchld_handler.
3201 * atimer.c (handle_alarm_signal):
3202 * data.c (handle_arith_signal):
3203 * dispnew.c (handle_window_change_signal):
3204 * emacs.c (handle_fatal_signal, handle_danger_signal):
3205 * keyboard.c (handle_input_available_signal):
3206 * keyboard.c (handle_user_signal, handle_interrupt_signal):
3207 * process.c (handle_pipe_signal, handle_child_signal):
3208 New functions, with the actual signal-handling code taken from the
3209 original respective signal handlers, sans the sporadic attempts to
3210 preserve errno, since that's now done by handle_on_main_thread.
3211 * atimer.c (alarm_signal_handler): Remove unnecessary decl.
3212 * emacs.c, floatfns.c, lisp.h: Remove unused FLOAT_CATCH_SIGKILL cruft.
3213 * emacs.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
3214 Move to sysdep.c.
3215 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
3216 Move initialization of main_thread to sysdep.c's init_signals.
3217 * process.c (waitpid) [!WNOHANG]: #define to wait; that's good enough for
3218 our usage, and simplifies the mainline code.
3219 (record_child_status_change): New static function, as a helper
3220 for handle_child_signal, and with most of the old child handler's
3221 contents.
3222 (CAN_HANDLE_MULTIPLE_CHILDREN): New constant.
3223 (handle_child_signal): Use the above.
3224 * sysdep.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
3225 Moved here from emacs.c.
3226 (init_signals) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it;
3227 code moved here from emacs.c's main function.
3228 * sysdep.c, syssignal.h (handle_on_main_thread): New function,
3229 replacing the old SIGNAL_THREAD_CHECK. All uses changed.
3230 This lets callers save and restore errno properly.
3231
3232 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
3233
3234 Remove redundant or unused things here and there.
3235 * lisp.h (CYCLE_CHECK, CHAR_TABLE_TRANSLATE): Remove.
3236 * conf_post.h (RE_TRANSLATE): Use char_table_translate.
3237 * editfns.c (Fcompare_buffer_substrings): Likewise.
3238 * frame.h (struct terminal, struct font_driver_list):
3239 Remove redundant declarations.
3240 * window.h (Qleft, Qright): Likewise.
3241
3242 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
3243
3244 Do not mark objects from deleted buffers, windows and frames.
3245 * alloc.c (mark_buffer): Mark just the buffer if it is dead.
3246 (mark_object): Likewise for windows and frames.
3247
3248 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
3249
3250 * alloc.c (valid_lisp_object_p): Treat killed buffers,
3251 buffer_defaults and buffer_local_symbols as valid objects.
3252 Return special value to denote them.
3253
3254 2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
3255
3256 * fileio.c, filelock.c, floatfns.c, fns.c: Use bool for boolean.
3257 * fileio.c (auto_saving, auto_save_error_occurred, make_temp_name)
3258 (Fexpand_file_name, barf_or_query_if_file_exists, Fcopy_file)
3259 (file_name_absolute_p, Fsubstitute_in_file_name):
3260 (check_executable, check_writable, Ffile_accessible_directory_p)
3261 (Fset_file_selinux_context, Fdefault_file_modes)
3262 (Finsert_file_contents, choose_write_coding_system)
3263 (Fwrite_region, build_annotations, a_write, e_write)
3264 (Fdo_auto_save):
3265 * filelock.c (boot_time_initialized, get_boot_time)
3266 (get_boot_time_1, lock_file_1, within_one_second):
3267 * floatfns.c (in_float):
3268 * fns.c (concat, internal_equal, Frequire, base64_encode_1)
3269 (base64_decode_1, cmpfn_eql, cmpfn_user_defined)
3270 (sweep_weak_table, sweep_weak_hash_tables, secure_hash):
3271 * lisp.h (struct Lisp_Hash_Table.cmpfn):
3272 * window.c (compare_window_configurations):
3273 Use bool for booleans.
3274 * fileio.c (auto_saving_dir_umask, auto_saving_mode_bits)
3275 (Fdefault_file_modes): Now mode_t, not int, for modes.
3276 (Fdo_auto_save): Set a boolean to 1 rather than using ++.
3277 (internal_delete_file): Now returns void, not a (boolean) int,
3278 since nobody was looking at the return value.
3279 * lisp.h, window.h: Adjust to above API changes.
3280
3281 * xdisp.c (set_message): Simplify and reindent last change.
3282
3283 2012-09-05 Juanma Barranquero <lekktu@gmail.com>
3284
3285 * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies.
3286
3287 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
3288
3289 * eval.c (call_debugger): Make the function non-static so that we
3290 can call it from set_message.
3291
3292 * xdisp.c (set_message): Implement the new variable `debug-on-message'.
3293 (syms_of_xdisp): Defvar it and `inhibit-debug-on-message'.
3294
3295 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
3296
3297 Give more-useful info on a fatal error (Bug#12328).
3298 * alloc.c [ENABLE_CHECKING]: Do not include <execinfo.h>.
3299 (die) [ENABLE_CHECKING]: Call fatal_error_backtrace instead
3300 of doing the work ourselves.
3301 * emacs.c (fatal_error_signal): Let fatal_error_backtrace
3302 do most of the work.
3303 (fatal_error_backtrace): New function, taken from the guts
3304 of the old fatal_error_signal, but with a new option to output
3305 a backtrace.
3306 (shut_down_emacs) [!DOS_NT]: Use strsignal to give more-useful
3307 info about the signal than just its number.
3308 * lisp.h (fatal_error_backtrace, emacs_backtrace): New decls.
3309 * sysdep.c: Include <execinfo.h>
3310 (emacs_backtrace): New function, taken partly from the previous
3311 code of the 'die' function.
3312 (emacs_abort): Call fatal_error_backtrace rather than abort.
3313
3314 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
3315
3316 * lread.c (readevalloop): Call internal-macroexpand-for-load to perform
3317 eager (load-time) macro-expansion.
3318 * lisp.mk (lisp): Add macroexp.
3319
3320 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
3321
3322 Simplify redefinition of 'abort' (Bug#12316).
3323 Do not try to redefine the 'abort' function. Instead, redo
3324 the code so that it calls 'emacs_abort' rather than 'abort'.
3325 This removes the need for the NO_ABORT configure-time macro
3326 and makes it easier to change the abort code to do a backtrace.
3327 * .gdbinit: Just stop at emacs_abort, not at w32_abort or abort.
3328 * emacs.c (abort) [!DOS_NT && !NO_ABORT]:
3329 Remove; sysdep.c's emacs_abort now takes its place.
3330 * lisp.h (emacs_abort): New decl. All calls from Emacs code to
3331 'abort' changed to use 'emacs_abort'.
3332 * msdos.c (dos_abort) [defined abort]: Remove; not used.
3333 (abort) [!defined abort]: Rename to ...
3334 (emacs_abort): ... new name.
3335 * sysdep.c (emacs_abort) [!HAVE_NTGUI]: New function, taking
3336 the place of the old 'abort' in emacs.c.
3337 * w32.c, w32fns.c (abort): Do not #undef.
3338 * w32.c (emacs_abort): Rename from w32_abort.
3339
3340 2012-09-04 Eli Zaretskii <eliz@gnu.org>
3341
3342 * w32uniscribe.c (uniscribe_shape): Reverse the sign of
3343 offsets[j].dv, since the y axis of the screen coordinates points
3344 down, while the y axis of the font definition coordinates points
3345 up. This fixes display of Arabic diacritics such as KASRA and
3346 KASRATAN. (Bug#11860)
3347
3348 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
3349
3350 Be more systematic about _setjmp vs setjmp.
3351 * alloc.c (test_setjmp, mark_stack):
3352 * image.c (PNG_LONGJMP) [PNG_LIBPNG_VER < 10500]:
3353 (PNG_JMPBUF) [! (PNG_LIBPNG_VER < 10500)]:
3354 (png_load, my_error_exit, jpeg_load):
3355 * process.c (send_process_trap, send_process):
3356 Uniformly prefer _setjmp and _longjmp to setjmp and longjmp.
3357 The underscored versions are up to 30x faster on some hosts.
3358 Formerly, the code used setjmp+longjmp sometimes and
3359 _setjmp+_longjmp at other times, with no particular reason to
3360 prefer setjmp+longjmp.
3361
3362 2012-09-03 Paul Eggert <eggert@cs.ucla.edu>
3363
3364 Fix minor problem found by static checking.
3365 * buffer.c (Fdelete_all_overlays): Return nil.
3366
3367 2012-09-03 Martin Rudalics <rudalics@gmx.at>
3368
3369 * buffer.c (Fdelete_all_overlays): New function.
3370
3371 2012-09-03 Chong Yidong <cyd@gnu.org>
3372
3373 * gtkutil.c: Add extern decl for Qxft.
3374
3375 2012-09-02 Paul Eggert <eggert@cs.ucla.edu>
3376
3377 * emacs.c, eval.c: Use bool for boolean.
3378 * emacs.c (initialized, inhibit_window_system, running_asynch_code):
3379 (malloc_using_checking) [DOUG_LEA_MALLOC]:
3380 (display_arg) [HAVE_X_WINDOWS || HAVE_NS]:
3381 (noninteractive, no_site_lisp, fatal_error_in_progress, argmatch)
3382 (main, decode_env_path, Fdaemon_initialized):
3383 * eval.c (call_debugger, Finteractive_p, interactive_p):
3384 (unwind_to_catch, Fsignal, wants_debugger, skip_debugger)
3385 (maybe_call_debugger, Fbacktrace):
3386 * process.c (read_process_output, exec_sentinel):
3387 Use bool for booleans.
3388 * emacs.c (shut_down_emacs): Omit unused boolean argument NO_X.
3389 All callers changed.
3390 * eval.c (interactive_p): Omit always-true boolean argument
3391 EXCLUDE_SUBRS_P. All callers changed.
3392 * dispextern.h, lisp.h: Reflect above API changes.
3393 * firstfile.c (dummy): Use the address of 'main', whose signature
3394 won't change, instead of the address of 'initialize', whose
3395 signature just changed from int to bool.
3396 * lisp.h (fatal_error_in_progress): New decl of boolean, moved here ...
3397 * msdos.c (fatal_error_in_progress): ... from here.
3398 * xdisp.c (redisplaying_p): Now a boolean. Set it to 1 instead
3399 of incrementing it.
3400 (redisplay_internal, unwind_redisplay): Simply clear
3401 REDISPLAYING_P when unwinding, instead of saving its previous,
3402 always-false value and then restoring it.
3403
3404 Clean up some extern decls.
3405 Mostly, this hoists extern decls out of .c files and into .h files.
3406 That way, we're more likely to catch errors if the interfaces change.
3407 * alloc.c [USE_GTK]: Include "gtkutil.h" so that we need not
3408 declare xg_mark_data.
3409 * dispextern.h (x_frame_parm_handlers):
3410 * font.h (Qxft):
3411 * lisp.h (Qlexical_binding, Qinternal_interpreter_environment)
3412 (Qextra_light, Qlight, Qsemi_light, Qsemi_bold, Qbold, Qextra_bold)
3413 (Qultra_bold, Qoblique, Qitalic):
3414 Move extern decl here from .c file.
3415 * alloc.c (xg_mark_data) [USE_GTK]:
3416 * doc.c (Qclosure):
3417 * eval.c (Qlexical_binding):
3418 * fns.c (time) [!HAVE_UNISTD_H]:
3419 * gtkutil.c (Qxft, Qnormal, Qextra_light, Qlight, Qsemi_light)
3420 (Qsemi_bold, Qbold, Qextra_bold, Qultra_bold, Qoblique, Qitalic):
3421 * image.c (Vlibrary_cache, QCloaded_from) [HAVE_NTGUI]:
3422 * lread.c (Qinternal_interpreter_environment):
3423 * minibuf.c (Qbuffer):
3424 * process.c (QCfamily, QCfilter):
3425 * widget.c (free_frame_faces):
3426 * xfaces.c (free_frame_menubar) [USE_X_TOOLKIT]:
3427 * xfont.c (x_clear_errors):
3428 * xterm.c (x_frame_parm_handlers):
3429 Remove now-redundant extern decls.
3430 * keyboard.c, keyboard.h (ignore_mouse_drag_p) [USE_GTK || HAVE_NS]:
3431 * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic):
3432 Now static.
3433 * xfaces.c: Remove unnecessary static decls.
3434 * xterm.c (updating_frame): Remove decl of nonexistent object.
3435
3436 * Makefile.in (gl-stamp): Don't scan $(SOME_MACHINE_OBJECTS)
3437 when building globals.h, as the objects that are not built on
3438 this host are not needed to compile C files on this host.
3439
3440 2012-09-02 Jan Djärv <jan.h.d@swipnet.se>
3441
3442 * gtkutil.h: Remove prototype for x_wm_set_size_hint.
3443
3444 * frame.h: Add missing prototype for x_wm_set_size_hint.
3445
3446 2012-09-02 Paul Eggert <eggert@cs.ucla.edu>
3447
3448 * doc.c, editfns.c, insdel.c, intervals.c: Use bool for boolean.
3449 * doc.c (read_bytecode_char, get_doc_string, reread_doc_file)
3450 (Fdocumentation, Fdocumentation_property, Fsnarf_documentation)
3451 (Fsubstitute_command_keys):
3452 * editfns.c (region_limit, find_field, Fconstrain_to_field)
3453 (save_excursion_save, save_excursion_restore)
3454 (disassemble_lisp_time, decode_time_components, emacs_nmemftime)
3455 (format_time_string, general_insert_function)
3456 (make_buffer_string, make_buffer_string_both)
3457 (Fsubst_char_in_region, Ftranslate_region_internal, Fformat):
3458 * insdel.c (check_markers, gap_left, adjust_markers_for_insert)
3459 (copy_text, insert_1, insert_1_both, insert_from_string)
3460 (insert_from_string_before_markers, insert_from_string_1)
3461 (insert_from_buffer, insert_from_buffer_1, replace_range)
3462 (replace_range_2, del_range_1, del_range_byte, del_range_both)
3463 (del_range_2, modify_region):
3464 * intervals.c (intervals_equal, balance_possible_root_interval)
3465 (adjust_intervals_for_insertion, merge_properties_sticky)
3466 (graft_intervals_into_buffer, lookup_char_property)
3467 (adjust_for_invis_intang, set_point_both)
3468 (get_property_and_range, compare_string_intervals)
3469 (set_intervals_multibyte_1, set_intervals_multibyte):
3470 * keyboard.c (decode_timer):
3471 Use bool for boolean.
3472 * intervals.h, lisp.h, systime.h: Reflect above API changes.
3473 * editfns.c (struct info): Use 1-bit unsigned bitfields for booleans.
3474
3475 2012-09-02 Chong Yidong <cyd@gnu.org>
3476
3477 * keymap.c (push_key_description): Print M-TAB as C-M-i
3478 (Bug#11758).
3479
3480 2012-09-02 Juanma Barranquero <lekktu@gmail.com>
3481
3482 * makefile.w32-in (CCL_H, W32FONT_H): New macros.
3483 (ATIMER_H, FONT_H, $(BLD)/alloc.$(O), $(BLD)/callproc.$(O))
3484 ($(BLD)/editfns.$(O), $(BLD)/ccl.$(O), $(BLD)/chartab.$(O))
3485 ($(BLD)/coding.$(O), $(BLD)/sysdep.$(O), $(BLD)/fontset.$(O))
3486 ($(BLD)/sysdep.$(O), $(BLD)/w32fns.$(O), $(BLD)/keyboard.$(O))
3487 ($(BLD)/w32term.$(O), $(BLD)/w32menu.$(O), $(BLD)/process.$(O))
3488 ($(BLD)/w32font.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
3489
3490 2012-09-01 Eli Zaretskii <eliz@gnu.org>
3491
3492 * w32uniscribe.c (uniscribe_shape): Handle correctly the case of
3493 more than one grapheme cluster passed to the shaper: compute the
3494 offset adjustment values separately for each cluster. (Bug#11860)
3495
3496 * image.c: Restore mistakenly removed inclusion of w32.h. Without
3497 it, GCC doesn't see prototypes of w32_delayed_load, and complains
3498 about implicit conversions from integer to pointer.
3499
3500 2012-09-01 Daniel Colascione <dancol@dancol.org>
3501
3502 * w32fns.c (x_display_info_for_name): Prevent crash if w32 window
3503 system used too early.
3504
3505 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
3506
3507 Better seed support for (random).
3508 * emacs.c (main): Call init_random.
3509 * fns.c (Frandom): Set the seed from a string argument, if given.
3510 Remove long-obsolete Gentzel cruft.
3511 * lisp.h, sysdep.c (seed_random): Now takes address and size, not long.
3512 (init_random): New function.
3513
3514 2012-09-01 Daniel Colascione <dancol@dancol.org>
3515
3516 * xterm.h: Add header guards. Declare x_menubar_window_to_frame.
3517 Remove x_set_frame_alpha, x_bitmap_icon, x_make_frame_visible,
3518 x_make_frame_invisible, x_iconify_frame, x_free_frame_resources,
3519 x_wm_set_size_hint, x_query_colors, x_real_positions,
3520 x_set_menu_bar_lines, x_char_width, x_char_height, x_sync,
3521 x_set_tool_bar_lines, x_activate_menubar, and free_frame_menubar,
3522 all of which have been moved to common code.
3523
3524 * xfaces.c: Include TERM_HEADER instead of listing all possible
3525 window-system headers.
3526
3527 * w32xfns.c (x_sync): Correct definition of x_sync (a no-op here)
3528 to match header.
3529
3530 * w32term.h (FRAME_X_WINDOW): Use FRAME_W32_WINDOW instead of
3531 directly accessing frame internals.
3532
3533 * w32font.h: Include font.h. Define syms_of_w32font and
3534 globals_of_w32font.
3535
3536 * process.c: Include TERM_HEADER instead of listing all possible
3537 window-system headers.
3538
3539 * nsterm.h: Remove declarations now in frame.h.
3540 Define FRAME_X_SCREEN, FRAME_X_VISUAL.
3541
3542 * menu.c: Include TERM_HEADER instead of listing all possible
3543 window-system headers.
3544
3545 * keyboard.h: Declare ignore_mouse_drag_p whenever we have a
3546 window system.
3547
3548 * keyboard.c: Include TERM_HEADER instead of listing all possible
3549 window-system headers.
3550
3551 * image.c: Include TERM_HEADER instead of listing all possible
3552 window-system headers. Declare Vlibrary_cache when compiling for
3553 Windows.
3554
3555 * gtkutil.h (xg_list_node_): Include xterm.h to pick up needed
3556 window system declarations.
3557
3558 * frame.h: Move common functions here: set_frame_menubar,
3559 x_set_window_size, x_sync, x_get_focus_frame,
3560 x_set_mouse_position, x_set_mouse_pixel_position,
3561 x_make_frame_visible, x_make_frame_invisible, x_iconify_frame,
3562 x_char_width, x_char_height, x_pixel_width, x_pixel_height,
3563 x_set_frame_alpha, x_set_menu_bar_lines, x_set_tool_bar_lines,
3564 x_activate_menubar, x_real_positions, x_bitmap_icon,
3565 x_set_menu_bar_lines, free_frame_menubar, x_free_frame_resources,
3566 and x_query_colors.
3567
3568 * frame.c: Include TERM_HEADER instead of listing all possible
3569 window-system headers.
3570
3571 * font.c: Include TERM_HEADER instead of listing all possible
3572 window-system headers.
3573
3574 * emacs.c: Include TERM_HEADER.
3575
3576 * dispnew.c: Include TERM_HEADER instead of listing all possible
3577 window-system headers.
3578
3579 * ccl.h: Include character.h.
3580
3581 * Makefile.in: Define WINDOW_SYSTEM_OBJ to hold objects needed for
3582 the current window system; include in list of objects to link into
3583 Emacs.
3584
3585 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
3586
3587 Remove mark_ttys function and fix tty_display_info initialization.
3588 * lisp.h (mark_ttys): Remove prototype.
3589 * alloc.c (Fgarbage_collect): Remove redundant (and the only) call
3590 to mark_ttys because all possible values of 'top_frame' slot are
3591 the frames which are reachable from Vframe_list.
3592 * term.c (mark_ttys): Remove.
3593 (init_tty): Safely initialize 'top_frame' slot with Qnil.
3594
3595 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
3596
3597 Change struct frame bitfields from unsigned char to unsigned.
3598 * frame.h (struct frame): Change type of 'display_preempted',
3599 'visible', 'iconified', 'has_minibuffer', 'wants_modeline',
3600 'auto_raise', 'auto_lower', 'no_split', 'explicit_name',
3601 'window_sizes_changed', 'mouse_moved' and 'pointer_invisible'
3602 bitfields from unsigned char to unsigned.
3603
3604 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
3605
3606 Remove unused member of struct x_output and struct w32_output.
3607 * xterm.h (struct x_output): Remove unused field 'needs_exposure'.
3608 * w32term.h (struct w32_output): Likewise.
3609
3610 2012-08-30 Jan Djärv <jan.h.d@swipnet.se>
3611
3612 * gtkutil.c (x_wm_set_size_hint): Use 1 col for base_width so it
3613 does not become zero (Bug#12234).
3614
3615 2012-08-30 Paul Eggert <eggert@cs.ucla.edu>
3616
3617 * dispnew.c (update_frame_1): Pacify gcc -Wstrict-overflow
3618 for GCC 4.7.1 x86-64.
3619
3620 2012-08-30 Glenn Morris <rgm@gnu.org>
3621
3622 * lread.c (init_lread): For out-of-tree builds, only add the
3623 source directory's site-lisp dir to the load-path if it exists,
3624 consistent with in-tree builds. (Bug#12302)
3625
3626 2012-08-28 Jan Djärv <jan.h.d@swipnet.se>
3627
3628 * nsmenu.m (initWithContentRect:styleMask:backing:defer:): Initialize
3629 button_values to NULL. Call setStykeMask so dialogs get a close button.
3630 (windowShouldClose:): Set window_closed.
3631 (dealloc): New member, free button_values.
3632 (process_dialog:): Make member function. Remove window argument,
3633 replace window with self. Count buttons and allocate and store values
3634 in button_values.
3635 (addButton:value:row:): value is int with the name tag. Call setTag
3636 with tag. Remove return self, declare return value as void.
3637 (addString:row:): Remove return self, declare return value as void.
3638 (addSplit): Remove return self, declare return value as void.
3639 (clicked:): Remove return self, declare return value as void.
3640 Set dialog_return to button_values[seltag]. Code formatting change.
3641 (initFromContents:isQuestion:): Adjust call to process_dialog.
3642 Code formatting change.
3643 (timeout_handler:): Set timer_fired to YES.
3644 (runDialogAt:): Set timer_fired to NO.
3645 Handle click on close button as quit.
3646
3647 * nsterm.h (EmacsDialogPanel): Make timer_fired BOOL.
3648 Add window_closed and button_values. Add void as return value for
3649 add(Button|String|Split). addButton takes int instead of Lisp_Object.
3650 Add process_dialog as new member.
3651
3652 2012-08-28 Eli Zaretskii <eliz@gnu.org>
3653
3654 * ralloc.c (free_bloc): Don't dereference a 'heap' structure if it
3655 is not one of the heaps we manage. (Bug#12242)
3656
3657 2012-08-28 Glenn Morris <rgm@gnu.org>
3658
3659 * eval.c (Fcalled_interactively_p): Doc fix. (Bug#11747)
3660
3661 2012-08-28 Martin Rudalics <rudalics@gmx.at>
3662
3663 * window.c (Fset_window_configuration): Remove handling of
3664 auto-buffer-name window parameter. Install revision of reverted
3665 fix.
3666
3667 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
3668
3669 Do not allow to set major mode for a dead buffer.
3670 * buffer.c (Fset_buffer_major_mode): Signal an error
3671 if the buffer is dead.
3672 (Fother_buffer, other_buffer_safely): Remove redundant
3673 nested declaration.
3674
3675 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
3676
3677 Always use set_buffer_if_live to restore original buffer at unwind.
3678 * buffer.h (record_unwind_current_buffer): New function.
3679 * bytecode.c, dispnew.c, editfns.c, fileio.c, fns.c, insdel.c:
3680 * keyboard.c, keymap.c, minibuf.c, print.c, process.c, textprop.c:
3681 * undo.c, window.c: Adjust users.
3682 * buffer.c (set_buffer_if_live): Fix comment.
3683
3684 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
3685
3686 Fix usage of set_buffer_internal.
3687 * buffer.h (set_buffer_internal): Make it BUFFER_INLINE.
3688 * buffer.c (set_buffer_if_live): Use set_buffer_internal.
3689 * coding.c (decode_coding): Omit redundant test.
3690 * fileio.c (decide_coding_unwind): Likewise.
3691 * fns.c (secure_hash): Likewise.
3692 * insdel.c (modify_region): Likewise.
3693 * keyboard.c (command_loop_1): Likewise.
3694 * print.c (PRINTFINISH): Likewise.
3695 * xdisp.c (run_window_scroll_functions): Use set_buffer_internal.
3696
3697 2012-08-27 Paul Eggert <eggert@cs.ucla.edu>
3698
3699 * dispnew.c: Use bool for boolean.
3700 (frame_garbaged, display_completed, delayed_size_change)
3701 (fonts_changed_p, add_window_display_history)
3702 (add_frame_display_history, verify_row_hash)
3703 (adjust_glyph_matrix, clear_window_matrices, glyph_row_slice_p)
3704 (row_equal_p, realloc_glyph_pool)
3705 (allocate_matrices_for_frame_redisplay)
3706 (showing_window_margins_p)
3707 (adjust_frame_glyphs_for_frame_redisplay)
3708 (build_frame_matrix_from_leaf_window, make_current)
3709 (mirrored_line_dance, mirror_line_dance, update_frame)
3710 (update_window_tree, update_single_window)
3711 (check_current_matrix_flags, update_window, update_text_area)
3712 (update_window_line, set_window_update_flags, scrolling_window)
3713 (update_frame_1, scrolling, buffer_posn_from_coords)
3714 (do_pending_window_change, change_frame_size)
3715 (change_frame_size_1, sit_for):
3716 Use bool for boolean.
3717 (clear_glyph_matrix_rows): Rename from enable_glyph_matrix_rows,
3718 and remove last int (actually boolean) argument, which was always 0.
3719 All callers changed.
3720 * dispextern.h, frame.h, lisp.h: Reflect above API changes.
3721 * dispextern.h (struct composition_it): Use bool for boolean.
3722 (struct glyph_matrix): Don't assume buffer sizes can fit in 'int'.
3723 (struct bidi_it): Use unsigned:1, not int, for boolean prev_was_pdf.
3724 * dired.c (file_name_completion):
3725 Use bool for boolean. (This was missed in an earlier change.)
3726
3727 2012-08-27 Martin Rudalics <rudalics@gmx.at>
3728
3729 * window.c (Fset_window_configuration): Revert first part of
3730 last change.
3731
3732 2012-08-27 Jan Djärv <jan.h.d@swipnet.se>
3733
3734 * nsterm.h (NSPanel): New class variable dialog_return.
3735
3736 * nsmenu.m (initWithContentRect:styleMask:backing:defer:):
3737 Initialize dialog_return.
3738 (windowShouldClose:): Use stop instead of stopModalWithCode.
3739 (clicked:): Ditto, and also set dialog_return (Bug#12258).
3740 (timeout_handler:): Use stop instead of abortModal. Send a dummy
3741 event.
3742 (runDialogAt:): Make ret Lisp_Object. Set it from dialog_return when
3743 modal loop returns.
3744
3745 2012-08-27 Paul Eggert <eggert@cs.ucla.edu>
3746
3747 * composite.c, data.c, dbusbind.c, dired.c: Use bool for booleans.
3748 * composite.c (find_composition, composition_gstring_p)
3749 (composition_reseat_it, find_automatic_composition):
3750 * data.c (let_shadows_buffer_binding_p)
3751 (let_shadows_global_binding_p, set_internal, make_blv)
3752 (Fmake_variable_buffer_local, Fmake_local_variable)
3753 (Fmake_variable_frame_local, arithcompare, cons_to_unsigned)
3754 (cons_to_signed, arith_driver):
3755 * dbusbind.c (xd_in_read_queued_messages):
3756 * dired.c (directory_files_internal, file_name_completion):
3757 Use bool for booleans.
3758 * dired.c (file_name_completion):
3759 * process.h (fd_callback):
3760 Omit int (actually boolean) argument. It wasn't being used.
3761 All uses changed.
3762 * composite.h, lisp.h: Reflect above API changes.
3763
3764 * cmds.c, coding.c: Use bool for booleans.
3765 * cmds.c (move_point, Fself_insert_command):
3766 * coding.h (struct composition status, struct coding_system):
3767 * coding.c (detect_coding_utf_8, encode_coding_utf_8)
3768 (detect_coding_utf_16, encode_coding_utf_16, detect_coding_emacs_mule)
3769 (emacs_mule_char, decode_coding_emacs_mule)
3770 (encode_coding_emacs_mule, detect_coding_iso_2022)
3771 (decode_coding_iso_2022, encode_invocation_designation)
3772 (encode_designation_at_bol, encode_coding_iso_2022)
3773 (detect_coding_sjis, detect_coding_big5, decode_coding_sjis)
3774 (decode_coding_big5, encode_coding_sjis, encode_coding_big5)
3775 (detect_coding_ccl, encode_coding_ccl, decode_coding_raw_text)
3776 (encode_coding_raw_text, detect_coding_charset)
3777 (decode_coding_charset, encode_coding_charset, detect_eol)
3778 (detect_coding, get_translation_table, produce_chars)
3779 (consume_chars, reused_workbuf_in_use)
3780 (make_conversion_work_buffer, code_conversion_save)
3781 (decode_coding_object, encode_coding_object)
3782 (detect_coding_system, char_encodable_p)
3783 (Funencodable_char_position, code_convert_region)
3784 (code_convert_string, code_convert_string_norecord)
3785 (Fset_coding_system_priority):
3786 * fileio.c (Finsert_file_contents):
3787 Use bool for booleans.
3788 * coding.h, lisp.h: Reflect above API changes.
3789 * coding.c: Remove unnecessary static function decls.
3790 (detect_coding): Use unsigned, not signed, to copy an unsigned field.
3791 (decode_coding, encode_coding, decode_coding_gap): Return 'void',
3792 not a boolean 'int', since callers never look at the return value.
3793 (ALLOC_CONVERSION_WORK_AREA): Assume caller returns 'void', not 'int'.
3794 * coding.h (decoding_buffer_size, encoding_buffer_size)
3795 (emacs_mule_string_char): Remove unused extern decls.
3796 (struct iso_2022_spec, struct coding_system):
3797 Use 'unsigned int : 1' for boolean fields, since there's more than one.
3798 (struct emacs_mule_spec): Remove unused field 'full_support'.
3799 All initializations removed.
3800 * cmds.c (internal_self_insert): Don't assume EMACS_INT fits in 'int'.
3801
3802 2012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
3803
3804 Fix spare memory change (Bug#12286).
3805 * alloc.c (mark_maybe_pointer): Handle MEM_TYPE_SPARE.
3806 (valid_lisp_object_p): Likewise.
3807
3808 2012-08-27 Martin Rudalics <rudalics@gmx.at>
3809
3810 * window.c (Fset_window_configuration): Record any window's old
3811 buffer if it's replaced (see Bug#8789). If the new current
3812 buffer doesn't appear in the selected window, go to its old
3813 point (Bug#12208).
3814
3815 2012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
3816
3817 Special MEM_TYPE_SPARE to denote reserved memory.
3818 * alloc.c (enum mem_type): New memory type.
3819 (refill_memory_reserve): Use new type for spare memory.
3820 This prevents live_cons_p and live_string_p from incorrect
3821 detection of uninitialized objects from spare memory as live.
3822
3823 2012-08-26 Paul Eggert <eggert@cs.ucla.edu>
3824
3825 Spelling fixes.
3826 * Makefile.in (.PHONY): versioclean -> versionclean.
3827
3828 Remove unused external symbols.
3829 * data.c (Qcons, Qfloat, Qmisc, Qstring, Qvector):
3830 * window.c (Qwindow_valid_p, decode_valid_window):
3831 Now static, not extern.
3832 * data.c (Qinterval): Remove; unused.
3833 (syms_of_data): Do not define 'interval'.
3834 * lisp.h (Qinteger, Qstring, Qmisc, Qvector, Qfloat, Qcons):
3835 * window.h (decode_valid_window):
3836 Remove decls.
3837
3838 * character.c, charset.c, chartab.c: Use bool for booleans.
3839 * character.c (lisp_string_width, string_count_byte8)
3840 (string_escape_byte8):
3841 * charset.c (charset_map_loaded, load_charset_map, read_hex):
3842 (load_charset_map_from_file, map_charset_chars)
3843 (Fdefine_charset_internal, define_charset_internal)
3844 (Fdeclare_equiv_charset, find_charsets_in_text)
3845 (Ffind_charset_region, char_charset, Fiso_charset):
3846 * chartab.c (sub_char_table_ref, sub_char_table_ref_and_range)
3847 (sub_char_table_set, sub_char_table_set_range)
3848 (char_table_set_range, optimize_sub_char_table)
3849 (map_sub_char_table):
3850 Use bool for boolean.
3851 * character.c (str_to_unibyte): Omit last boolean argument; it was
3852 always 0. All callers changed.
3853 * character.h, charset.h: Adjust to match previous changes.
3854 * character.h (char_printable_p): Remove decl of nonexistent function.
3855 * charset.h (struct charset): Members code_linear_p, iso_chars_96,
3856 ascii_compatible_p, supplementary_p, compact_codes_p, unified_p
3857 are all boolean, so make them single-bit bitfields.
3858
3859 * lisp.h (ASET): Remove attempt to detect side effects.
3860 It was meant to be temporary and it often doesn't work,
3861 because when IDX has side effects the behavior of IDX==IDX
3862 is undefined. See Stefan Monnier in
3863 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00762.html>.
3864
3865 2012-08-26 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
3866
3867 * lisp.h (functionp): New function (extracted from Ffunctionp).
3868 (FUNCTIONP): Use it.
3869 * eval.c (Ffunctionp): Use it.
3870
3871 2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
3872
3873 * xgselect.c (xg_select): Use auto storage for the GPollFD buffer
3874 as that's faster and simpler than static storage. Don't bother
3875 with the g_main_context_query overhead if g_main_context_pending
3876 says no events are pending.
3877 (gfds, gfds_size): Remove these static vars.
3878 (xgselect_initialize): Remove; no longer needed.
3879 All uses and decls removed.
3880
3881 * emacs.c (fatal_error_signal_hook): Remove.
3882 All uses removed. This leftover from old code was always 0.
3883
3884 * casefiddle.c, casetab.c, category.c: Use bool for boolean.
3885 * casefiddle.c (casify_object, casify_region):
3886 * casetab.c (set_case_table):
3887 * category.c, category.h (word_boundary_p):
3888 * category.h (CHAR_HAS_CATEGORY):
3889 Use bool for booleans, instead of int.
3890
3891 2012-08-25 Eli Zaretskii <eliz@gnu.org>
3892
3893 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on $(GNU_LIB)/execinfo.h.
3894
3895 2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
3896
3897 On assertion failure, print backtrace if available.
3898 * alloc.c [ENABLE_CHECKING]: Include <execinfo.h>.
3899 (die) [ENABLE_CHECKING]: Print a backtrace if available.
3900 * Makefile.in (LIB_EXECINFO): New macro.
3901 (LIBES): Use it.
3902
3903 * bytecode.c, callint.c, callproc.c: Use bool for boolean.
3904 * bytecode.c (exec_byte_code):
3905 * callint.c (check_mark, Fcall_interactively):
3906 * callproc.c (Fcall_process, add_env, child_setup, getenv_internal_1)
3907 (getenv_internal, sync_process_alive, call_process_exited):
3908 * lisp.h (USE_SAFE_ALLOCA):
3909 Use bool for booleans, instead of int.
3910 * lisp.h, process.h: Adjust prototypes to match above changes.
3911 * callint.c (Fcall_interactively): Don't assume the mark's
3912 offset fits in 'int'.
3913
3914 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
3915
3916 * buffer.c, buffer.h: Use bool for boolean.
3917 * buffer.c (reset_buffer_local_variables)
3918 (buffer_lisp_local_variables, Fset_buffer_modified_p)
3919 (Frestore_buffer_modified_p, Fset_buffer_multibyte):
3920 (overlays_at, overlays_in, mouse_face_overlay_overlaps)
3921 (overlay_touches_p, overlay_strings, Foverlay_put)
3922 (report_overlay_modification, call_overlay_mod_hooks):
3923 (mmap_enlarge, mmap_set_vars):
3924 * buffer.h (buffer_has_overlays, uppercasep, lowercasep):
3925 Use bool for booleans, instead of int.
3926 * buffer.c (compact_buffer, mmap_free_1): Return void, not int,
3927 since the 1-or-0 return value is always ignored anyway.
3928 (mmap_initialized_p):
3929 * buffer.h (struct buffer_text.inhibit_shrinking): Now bool, not int.
3930 * buffer.h, lisp.h: Adjust prototypes to match above changes.
3931
3932 2012-08-23 Paul Eggert <eggert@cs.ucla.edu>
3933
3934 * bidi.c: Use bool for boolean.
3935 This is a bit more readable, and makes the text segment of bidi.o
3936 0.4% smaller on my platform (GCC 4.7.1 x86-64, Fedora 15).
3937 Presumably it's faster too.
3938 (bidi_initialized, bidi_ignore_explicit_marks_for_paragraph_level):
3939 Now bool.
3940 (bidi_cache_find_level_change, bidi_cache_iterator_state)
3941 (bidi_unshelve_cache, bidi_init_it, bidi_count_bytes)
3942 (bidi_char_at_pos, bidi_fetch_char, bidi_paragraph_init)
3943 (bidi_explicit_dir_char, bidi_level_of_next_char)
3944 (bidi_find_other_level_edge, bidi_move_to_visually_next):
3945 Use bool for booleans, instead of int.
3946 * dispextern.h (bidi_init_it, bidi_paragraph_init)
3947 (bidi_unshelve_cache): Adjust decls to match code.
3948
3949 2012-08-23 Martin Rudalics <rudalics@gmx.at>
3950
3951 * keyboard.c (Fposn_at_x_y): Do not allow internal window as
3952 argument.
3953
3954 2012-08-23 Paul Eggert <eggert@cs.ucla.edu>
3955
3956 * atimer.c, atimer.h (turn_on_atimers): Use bool for boolean.
3957 * atimer.h: Include <stdbool.h>.
3958
3959 2012-08-22 Dan Nicolaescu <dann@gnu.org>
3960
3961 * frame.h (FRAME_W32_P, FRAME_MSDOS_P, FRAME_NS_P): Change to
3962 compile time tests instead of run time tests on systems that do
3963 not use them.
3964 (FRAME_MAC_P): Remove leftover from deleted code.
3965 * frame.c (syms_of_frame): Remove leftover from deleted code.
3966
3967 2012-08-22 Jan Djärv <jan.h.d@swipnet.se>
3968
3969 * nsterm.m (insertText:): Don't clear modifiers if code is space.
3970
3971 2012-08-22 Paul Eggert <eggert@cs.ucla.edu>
3972
3973 * fontset.c (FONTSET_ADD): Return void, not Lisp_Object.
3974 Otherwise, the compiler complains about (A?B:C) where B is void
3975 and C is Lisp_Object. This fixes an incompatibility with Sun C 5.12.
3976 (fontset_add): Return void, for FONTSET_ADD.
3977
3978 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
3979
3980 * alloc.c: Use bool for booleans.
3981 (gc_in_progress, abort_on_gc)
3982 (setjmp_tested_p) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
3983 (dont_register_blocks) [GC_MALLOC_CHECK]:
3984 (suppress_checking) [ENABLE_CHECKING]: Now bool, not int.
3985 (check_string_bytes, make_specified_string, memory_full)
3986 (live_string_p, live_cons_p, live_symbol_p, live_float_p)
3987 (live_misc_p, live_vector_p, live_buffer_p, mark_maybe_object)
3988 (mark_stack, valid_pointer_p, make_pure_string)
3989 (Fgarbage_collect, survives_gc_p, gc_sweep):
3990 Use bool for booleans, instead of int.
3991 (test_setjmp) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
3992 Remove unused local.
3993 * alloc.c (PURE_POINTER_P):
3994 * lisp.h (STRING_MULTIBYTE): Document that it returns a boolean.
3995 * editfns.c (Fformat):
3996 * fileio.c (Fexpand_file_name, Fsubstitute_in_file_name)
3997 (Fdo_auto_save):
3998 * fns.c (sweep_weak_table):
3999 * lisp.h (suppress_checking, push_message, survives_gc_p)
4000 (make_pure_string, gc_in_progress, abort_on_gc):
4001 * lread.c (readchar, read1):
4002 * print.c (Fprin1_to_string):
4003 * xdisp.c (push_message):
4004 Use bool for booleans affected directly or indirectly by
4005 alloc.c's changes.
4006
4007 Make recently-introduced setters macros.
4008 * fontset.c (set_fontset_id, set_fontset_name, set_fontset_ascii)
4009 (set_fontset_base, set_fontset_frame, set_fontset_nofont_face)
4010 (set_fontset_default, set_fontset_fallback): Rename from their
4011 upper-case counterparts, and make them functions rather than macros.
4012 This is more consistent with the other recently-introduced setters.
4013 These don't need to be inline, since they're local.
4014
4015 2012-08-21 Jan Djärv <jan.h.d@swipnet.se>
4016
4017 * nsterm.m (fd_handler:): Alloc and release a NSAutoreleasePool in
4018 the loop (Bug#12247).
4019
4020 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
4021
4022 * lisp.h (vcopy): Use memcpy rather than our own loop.
4023 This fixes a performance regression introduced by the recent
4024 addition of vcopy. This means 'vcopy' will need to be modified
4025 for a copying collector, but that's OK. Also, tighten the
4026 checking in the assertion.
4027
4028 2012-08-21 Eli Zaretskii <eliz@gnu.org>
4029
4030 * w32uniscribe.c (uniscribe_shape): Fix producing gstring
4031 components for RTL text (Bug#11860). Adjust X-OFFSET of each
4032 non-base glyph for the width of the base character, according to
4033 what x_draw_composite_glyph_string_foreground expects.
4034 Generate WADJUST value according to composition_gstring_width's
4035 expectations, to produce correct width of the composed character.
4036 Reverse the sign of the DU offset produced by ScriptPlace.
4037
4038 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
4039
4040 * dbusbind.c (xd_remove_watch): Do not assume C99 comments.
4041
4042 2012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
4043
4044 Avoid direct writes to contents member of struct Lisp_Vector.
4045 * lisp.h (vcopy): New function to copy data into vector.
4046 * dispnew.c (Fframe_or_buffer_changed_p): Use AREF and ASET.
4047 * fns.c (Ffillarray): Use ASET.
4048 * keyboard.c (timer_check_2): Use AREF and ASET.
4049 (append_tool_bar_item, Frecent_keys): Use vcopy.
4050 * lread.c (read_vector): Use ASET.
4051 * msdos.c (Frecent_doskeys): Use vcopy.
4052 * xface.c (Finternal_copy_lisp_face): Use vcopy.
4053 (Finternal_merge_in_global_face): Use ASET and vcopy.
4054 * xfont.c (xfont_list_pattern): Likewise.
4055
4056 2012-08-21 Martin Rudalics <rudalics@gmx.at>
4057
4058 * window.c (Fwindow_point): For the selected window always return
4059 the position of its buffer's point.
4060 (Fset_window_point): For the selected window always go in its
4061 buffer to the specified position.
4062
4063 2012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
4064
4065 Setter macros for fontsets.
4066 * fontset.c (SET_FONTSET_ID, SET_FONTSET_NAME, SET_FONTSET_ASCII)
4067 (SET_FONTSET_BASE, SET_FONTSET_FRAME, SET_FONTSET_NOFONT_FACE)
4068 (SET_FONTSET_DEFAULT, SET_FONTSET_FALLBACK): New macros.
4069 Adjust users.
4070
4071 2012-08-20 Glenn Morris <rgm@gnu.org>
4072
4073 * Makefile.in (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
4074 Don't assume that `ln -f' works.
4075
4076 2012-08-20 Eli Zaretskii <eliz@gnu.org>
4077
4078 * .gdbinit: Use "set $dummy = ..." to avoid warnings from GDB 7.5
4079 and later about non-assignments with no effect. See discussion at
4080 http://sourceware.org/ml/gdb-patches/2012-08/msg00518.html for
4081 details.
4082
4083 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
4084
4085 Inline setter functions for Lisp_Objects slots of struct specbinding.
4086 * eval.c (set_specpdl_symbol, set_specpdl_old_value): New functions.
4087 Adjust users.
4088
4089 2012-08-20 Martin Rudalics <rudalics@gmx.at>
4090
4091 * window.c (select_window): Always make selected window's buffer
4092 current.
4093
4094 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
4095
4096 Use AREF and ASET for docstrings of category tables.
4097 * category.h (CATEGORY_DOCSTRING): Use AREF.
4098 (SET_CATEGORY_DOCSTRING): Use ASET.
4099 * category.c (Fdefine_category): Use SET_CATEGORY_DOCSTRING.
4100
4101 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
4102
4103 Inline setter functions for hash table members.
4104 * lisp.h (set_hash_key, set_hash_value, set_hash_next)
4105 (set_hash_hash, set_hash_index): Rename with _slot suffix.
4106 (set_hash_key_and_value, set_hash_index, set_hash_next)
4107 (set_hash_hash): New functions.
4108 * charset.c, fns.c: Adjust users.
4109
4110 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
4111
4112 Inline getter and setter functions for per-buffer values.
4113 * buffer.h (per_buffer_default, set_per_buffer_default)
4114 (per_buffer_value, set_per_buffer_value): New functions.
4115 (PER_BUFFER_VALUE, PER_BUFFER_DEFAULT): Remove.
4116 * buffer.c, data.c: Adjust users.
4117
4118 2012-08-20 Juanma Barranquero <lekktu@gmail.com>
4119
4120 * makefile.w32-in ($(BLD)/vm-limit.$(O)): Update dependencies.
4121
4122 2012-08-19 Paul Eggert <eggert@cs.ucla.edu>
4123
4124 Rely on <config.h> + <unistd.h> to declare 'environ',
4125 as gnulib does this if the system doesn't.
4126 * callproc.c, editfns.c, process.c (environ) [!USE_CRT_DLL]:
4127 Remove declaration. MS-Windows declares it on stdlib.h which is
4128 included by conf_post.h.
4129 * emacs.c (environ) [DOUG_LEA_MALLOC]:
4130 * vm-limit.c (environ) [ORDINARY_LINK]: Remove decl.
4131 * vm-limit.c: Include <unistd.h>, for 'environ'.
4132
4133 * unexaix.c, unexcoff.c: Include "mem-limits.h".
4134 (start_of_data): Remove decl; mem-limits.h provides it.
4135
4136 * xdisp.c (handle_invisible_prop): Make it a bit faster
4137 and avoid a gcc -Wmaybe-uninitialized diagnostic.
4138
4139 2012-08-19 Chong Yidong <cyd@gnu.org>
4140
4141 * xdisp.c (handle_invisible_prop): Fix ellipses at overlay string
4142 ends (Bug#3874).
4143
4144 2012-08-19 Andreas Schwab <schwab@linux-m68k.org>
4145
4146 * .gdbinit: Use call instead of set when calling a function in the
4147 inferior.
4148
4149 * data.c (set_internal): Don't use set_blv_found.
4150 (Fkill_local_variable): Likewise.
4151
4152 2012-08-18 Alp Aker <alp.tekin.aker@gmail.com>
4153
4154 * nsfont.m (ns_ascii_average_width): Ensure the string
4155 ascii_printable is initialized with a null-terminated character
4156 array. Otherwise, it can contain undesired extra characters.
4157
4158 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
4159
4160 port new setting code to Sun C 5.8 2005/10/13
4161 * chartab.c, lisp.h (char_table_set, char_table_set_range):
4162 Return void, not Lisp_Object. Otherwise, the compiler
4163 complains about (A?B:C) where B is void and C is Lisp_Object
4164 when compiling CHAR_TABLE_SET, due to the recent change to
4165 the API of sub_char_table_set_contents.
4166
4167 2012-08-18 Chong Yidong <cyd@gnu.org>
4168
4169 * xdisp.c (handle_invisible_prop): Obey TEXT_PROP_MEANS_INVISIBLE
4170 for the string case (Bug#3874).
4171
4172 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
4173
4174 * buffer.h (BSET): Remove (Bug#12215).
4175 Replace all uses with calls to new setter functions.
4176 (bset_bidi_paragraph_direction, bset_case_canon_table)
4177 (bset_case_eqv_table, bset_directory, bset_display_count)
4178 (bset_display_time, bset_downcase_table)
4179 (bset_enable_multibyte_characters, bset_filename, bset_keymap)
4180 (bset_last_selected_window, bset_local_var_alist)
4181 (bset_mark_active, bset_point_before_scroll, bset_read_only)
4182 (bset_truncate_lines, bset_undo_list, bset_upcase_table)
4183 (bset_width_table):
4184 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
4185 (bset_auto_fill_function, bset_auto_save_file_format)
4186 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
4187 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
4188 (bset_cache_long_line_scans, bset_case_fold_search)
4189 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
4190 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
4191 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
4192 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
4193 (bset_header_line_format, bset_indicate_buffer_boundaries)
4194 (bset_indicate_empty_lines, bset_invisibility_spec)
4195 (bset_left_fringe_width, bset_major_mode, bset_mark)
4196 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
4197 (bset_name, bset_overwrite_mode, bset_pt_marker)
4198 (bset_right_fringe_width, bset_save_length)
4199 (bset_scroll_bar_width, bset_scroll_down_aggressively)
4200 (bset_scroll_up_aggressively, bset_selective_display)
4201 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
4202 (bset_word_wrap, bset_zv_marker):
4203 * category.c (bset_category_table):
4204 * syntax.c (bset_syntax_table):
4205 New setter functions.
4206
4207 * process.h (PSET): Remove (Bug#12215).
4208 Replace all uses with calls to new setter functions.
4209 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
4210 (PROCESS_INLINE): New macro.
4211 (pset_childp): New setter function.
4212 (pset_gnutls_cred_type) [HAVE_GNUTLS]: New setter function.
4213 * process.c (PROCESS_INLINE):
4214 Define to EXTERN_INLINE, so that the corresponding functions
4215 are compiled into code.
4216 (pset_buffer, pset_command, pset_decode_coding_system)
4217 (pset_decoding_buf, pset_encode_coding_system)
4218 (pset_encoding_buf, pset_filter, pset_log, pset_mark, pset_name)
4219 (pset_plist, pset_sentinel, pset_status, pset_tty_name)
4220 (pset_type, pset_write_queue): New setter functions.
4221
4222 * window.h (WSET): Remove (Bug#12215).
4223 Replace all uses with calls to new setter functions.
4224 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
4225 (WINDOW_INLINE): New macro.
4226 (wset_buffer, wset_frame, wset_left_col, wset_next, wset_prev)
4227 (wset_redisplay_end_trigger, wset_top_line, wset_total_cols)
4228 (wset_total_lines, wset_vertical_scroll_bar)
4229 (wset_window_end_pos, wset_window_end_valid)
4230 (wset_window_end_vpos): New setter functions.
4231 * window.c (WINDOW_INLINE):
4232 Define to EXTERN_INLINE, so that the corresponding functions
4233 are compiled into code.
4234 (wset_combination_limit, wset_dedicated, wset_display_table)
4235 (wset_hchild, wset_left_fringe_width, wset_left_margin_cols)
4236 (wset_new_normal, wset_new_total, wset_next_buffers)
4237 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
4238 (wset_prev_buffers, wset_right_fringe_width)
4239 (wset_right_margin_cols, wset_scroll_bar_width, wset_start)
4240 (wset_temslot, wset_vchild, wset_vertical_scroll_bar_type)
4241 (wset_window_parameters):
4242 * xdisp.c (wset_base_line_number, wset_base_line_pos)
4243 (wset_column_number_displayed, wset_region_showing):
4244 New setter functions.
4245
4246 * termhooks.h (TSET): Remove (Bug#12215).
4247 Replace all uses with calls to new setter functions.
4248 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
4249 (TERMHOOKS_INLINE): New macro.
4250 (tset_charset_list, tset_selection_alist): New setter functions.
4251 * terminal.c (TERMHOOKS_INLINE):
4252 Define to EXTERN_INLINE, so that the corresponding functions
4253 are compiled into code.
4254 (tset_param_alist): New setter function.
4255
4256 2012-08-17 Paul Eggert <eggert@cs.ucla.edu>
4257
4258 * keyboard.h (KSET): Remove (Bug#12215).
4259 Replace all uses with calls to new setter functions.
4260 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
4261 (KEYBOARD_INLINE): New macro.
4262 (kset_default_minibuffer_frame, kset_defining_kbd_macro)
4263 (kset_input_decode_map, kset_last_command, kset_last_kbd_macro)
4264 (kset_prefix_arg, kset_system_key_alist, kset_window_system):
4265 New setter functions.
4266 * keyboard.c (KEYBOARD_INLINE):
4267 Define to EXTERN_INLINE, so that the corresponding functions
4268 are compiled into code.
4269 (kset_echo_string, kset_kbd_queue)
4270 (kset_keyboard_translate_table, kset_last_prefix_arg)
4271 (kset_last_repeatable_command, kset_local_function_key_map)
4272 (kset_overriding_terminal_local_map, kset_real_last_command)
4273 (kset_system_key_syms): New setter functions.
4274
4275 * frame.h (FSET): Remove (Bug#12215).
4276 Replace all uses with calls to new setter functions.
4277 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
4278 (FRAME_INLINE): New macro.
4279 (fset_buffer_list, fset_buried_buffer_list, fset_condemned_scroll_bars)
4280 (fset_current_tool_bar_string, fset_desired_tool_bar_string)
4281 (fset_face_alist, fset_focus_frame, fset_icon_name, fset_menu_bar_items)
4282 (fset_menu_bar_vector, fset_menu_bar_window, fset_name)
4283 (fset_param_alist, fset_root_window, fset_scroll_bars)
4284 (fset_selected_window, fset_title, fset_tool_bar_items)
4285 (fset_tool_bar_position, fset_tool_bar_window): New functions.
4286 * frame.c (FRAME_INLINE):
4287 Define to EXTERN_INLINE, so that the corresponding functions
4288 are compiled into code.
4289 (fset_buffer_predicate, fset_minibuffer_window): New setter functions.
4290
4291 A few more naming-convention fixes for getters and setters.
4292 * buffer.c (set_buffer_overlays_before): Move here from buffer.h,
4293 and rename from buffer_overlays_set_before.
4294 (set_buffer_overlays_after): Move here from buffer.h, and rename
4295 from buffer_overlays_set_after.
4296 * buffer.h (buffer_intervals): Rename from buffer_get_intervals.
4297 All uses changed.
4298 (set_buffer_intervals): Rename from buffer_set_intervals.
4299 * intervals.c (set_interval_object): Move here from intervals.h,
4300 and rename from interval_set_object.
4301 (set_interval_left): Move here from intervals.h, and rename from
4302 interval_set_left.
4303 (set_interval_right): Move here from intervals.h, and rename from
4304 interval_set_right.
4305 (copy_interval_parent): Move here from intervals.h, and rename from
4306 interval_copy_parent.
4307 * intervals.h (set_interval_parent): Rename from interval_set_parent.
4308 (set_interval_plist): Rename from interval_set_plist.
4309 Return void, not Lisp_Object, since no caller uses the result.
4310 * lisp.h (string_intervals): Rename from string_get_intervals.
4311 (set_string_intervals): Rename from string_set_intervals.
4312
4313 * lisp.h (set_char_table_extras): Rename from char_table_set_extras.
4314 (set_char_table_contents): Rename from char_table_set_contents.
4315 (set_sub_char_table_contents): Rename from sub_char_table_set_contents.
4316 All uses changed. See the end of
4317 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00549.html>.
4318
4319 * lisp.h (CSET): Remove (Bug#12215).
4320 (set_char_table_ascii, set_char_table_defalt, set_char_table_parent)
4321 (set_char_table_purpose): New functions,
4322 replacing CSET. All uses changed. For example, replace
4323 "CSET (XCHAR_TABLE (char_table), parent, parent);" with
4324 "set_char_table_parent (char_table, parent);".
4325 The old version was confusing because it used the same name
4326 'parent' for two different things.
4327
4328 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
4329
4330 Functions to get and set Lisp_Object fields of buffer-local variables.
4331 * lisp.h (blv_found, set_blv_found, blv_value, set_blv_value)
4332 (set_blv_where, set_blv_defcell, set_blv_valcell): New functions.
4333 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): Remove.
4334 * data.c, eval.c, frame.c: Adjust users.
4335
4336 2012-08-17 Chong Yidong <cyd@gnu.org>
4337
4338 * xfaces.c (merge_face_vectors): If the target font specfies a
4339 font spec, make the font's attributes take precedence over
4340 directly-specified attributes.
4341 (merge_face_ref): Recognize :font.
4342
4343 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
4344
4345 Do not use memcpy for copying intervals.
4346 * intervals.c (reproduce_interval): New function.
4347 (reproduce_tree, reproduce_tree_obj): Use it.
4348 (reproduce_tree_obj): Remove prototype.
4349
4350 2012-08-17 Paul Eggert <eggert@cs.ucla.edu>
4351
4352 * lisp.h (duration_to_sec_usec): Remove unused decl.
4353
4354 2012-08-17 Alp Aker <alp.tekin.aker@gmail.com>
4355
4356 * nsfont.m (ns_ascii_average_width): Send initWithFormat selector
4357 to an allocated instance of NSString, not to the class itself.
4358
4359 2012-08-17 Juanma Barranquero <lekktu@gmail.com>
4360
4361 * makefile.w32-in (C_CTYPE_H): New macro.
4362 (LISP_H, $(BLD)/ccl.$(O), $(BLD)/doc.$(O), $(BLD)/w32console.$(O)):
4363 ($(BLD)/fontset.$(O), $(BLD)/frame.$(O), $(BLD)/composite.$(O)):
4364 ($(BLD)/sysdep.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
4365
4366 2012-08-16 Paul Eggert <eggert@cs.ucla.edu>
4367
4368 Use ASCII tests for character types.
4369 * category.c, dispnew.c, doprnt.c, editfns.c, syntax.c, term.c:
4370 * xfns.c, xterm.c:
4371 Don't include <ctype.h>; was not needed.
4372 * charset.c, doc.c, fileio.c, font.c, frame.c, gtkutil.c, image.c:
4373 * sysdep.c, xfaces.c:
4374 Include <c-ctype.h> instead of <ctype.h>.
4375 * nsterm.m: Include <c-ctype.h>.
4376 * charset.c (read_hex):
4377 * doc.c (Fsnarf_documentation):
4378 * fileio.c (IS_DRIVE) [WINDOWSNT]:
4379 (DRIVE_LETTER) [DOS_NT]:
4380 (Ffile_name_directory, Fexpand_file_name)
4381 (Fsubstitute_in_file_name):
4382 * font.c (font_parse_xlfd, font_parse_fcname):
4383 * frame.c (x_set_font_backend):
4384 * gtkutil.c (xg_get_font):
4385 * image.c (xbm_scan, xpm_scan, pbm_scan_number):
4386 * nsimage.m (hexchar):
4387 * nsterm.m (ns_xlfd_to_fontname):
4388 * sysdep.c (system_process_attributes):
4389 * xfaces.c (hash_string_case_insensitive):
4390 Use C-locale tests instead of locale-specific tests for character
4391 types, since we want the ASCII interpretation here, not the
4392 interpretation suitable for whatever happens to be the current locale.
4393
4394 2012-08-16 Martin Rudalics <rudalics@gmx.at>
4395
4396 Consistently check windows for validity/liveness
4397 (Bug#11984, Bug#12025, Bug#12026).
4398 * lisp.h (CHECK_VALID_WINDOW): New macro.
4399 * window.c (decode_window): Rename to decode_live_window.
4400 (decode_valid_window, Fwindow_valid_p): New functions.
4401 (Fwindow_frame, Fframe_root_window, Fwindow_minibuffer_p)
4402 (Fframe_first_window, Fframe_selected_window, Fwindow_parent)
4403 (Fwindow_top_child, Fwindow_left_child, Fwindow_next_sibling)
4404 (Fwindow_prev_sibling, Fwindow_combination_limit)
4405 (Fset_window_combination_limit, Fwindow_use_time)
4406 (Fwindow_total_height, Fwindow_total_width, Fwindow_new_total)
4407 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_left_column)
4408 (Fwindow_top_line, Fwindow_body_height, Fwindow_body_width)
4409 (Fwindow_hscroll, Fset_window_hscroll)
4410 (Fwindow_redisplay_end_trigger)
4411 (Fset_window_redisplay_end_trigger, Fwindow_edges)
4412 (Fwindow_pixel_edges, Fwindow_absolute_pixel_edges)
4413 (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
4414 (Fcoordinates_in_window_p, Fwindow_point, Fwindow_start)
4415 (Fwindow_end, Fset_window_point, Fset_window_start)
4416 (Fpos_visible_in_window_p, Fwindow_line_height)
4417 (Fwindow_dedicated_p, Fset_window_dedicated_p)
4418 (Fwindow_prev_buffers, Fset_window_prev_buffers)
4419 (Fwindow_next_buffers, Fwindow_parameters, Fwindow_parameter)
4420 (Fset_window_parameter, Fwindow_display_table)
4421 (Fset_window_display_table, Fdelete_other_windows_internal)
4422 (Fset_window_buffer, Fset_window_new_total)
4423 (Fset_window_new_normal, Fdelete_window_internal)
4424 (Fwindow_text_height, Fset_window_margins, Fwindow_margins)
4425 (Fset_window_fringes, Fwindow_fringes, Fset_window_scroll_bars)
4426 (Fwindow_scroll_bars): Check whether argument window is a valid or
4427 live window. Update doc-strings.
4428 (syms_of_window): New symbol Qwindow_valid_p.
4429 * keyboard.c (Fposn_at_x_y): Check whether argument
4430 frame_or_window denotes a valid window.
4431
4432 2012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
4433
4434 Fix previous char table change.
4435 * lisp.h (CHAR_TABLE_SET): Use sub_char_table_set_contents.
4436 * chartab.c (optimize_sub_char_table): Likewise.
4437
4438 2012-08-16 Chong Yidong <cyd@gnu.org>
4439
4440 * gtkutil.c (xg_get_font): Demand an Xft font (Bug#3228).
4441
4442 * xfont.c (xfont_open):
4443 * xftfont.c (xftfont_open): Set the font's max_width field.
4444
4445 * nsfont.m (nsfont_open): Similar to the Xft backend, set
4446 min_width to space_width and average_width to the average over
4447 printable ASCII characters.
4448 (ns_char_width): Code cleanup.
4449 (ns_ascii_average_width): New utility function.
4450
4451 * font.h (struct font): Update comments.
4452
4453 2012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
4454
4455 Simple interface to set Lisp_Object fields of character tables.
4456 * lisp.h (CSET): New macro.
4457 (char_table_set_extras, char_table_set_contents)
4458 (sub_char_table_set_contents): New function.
4459 * casetab.c, category.c, chartab.c, fns.c, fontset.c, search.c:
4460 * syntax.c: Adjust users.
4461
4462 2012-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
4463
4464 * eval.c (eval_sub): Bind lexical-binding.
4465 * lread.c (Qlexical_binding): Make non-static.
4466
4467 2012-08-15 Jan Djärv <jan.h.d@swipnet.se>
4468
4469 * nsmenu.m (popupSession): Remove.
4470 (pop_down_menu): Remove endModalSession.
4471 (timeout_handler:): New method.
4472 (runDialogAt:): Get next timeout. Start a NSTimer with that timeout.
4473 Call runModalForWindow. Check timer_fired when it returns.
4474 If not set, cancel timer and break out of loop.
4475 Otherwise loop again, with a new timeout.
4476
4477 * nsterm.m: Include fcntl.h if present.
4478 (fd_entry, t_readfds, inNsSelect): Remove.
4479 (select_writefds, select_valid, select_timeout, selfds)
4480 (select_mutex, apploopnr): Add.
4481 (EV_TRAILER): Call kbd_buffer_store_event_hold only if q_event_ptr.
4482 Otherwise call kbd_buffer_store_event.
4483 (ns_send_appdefined): Remove release of fd_entry.
4484 (ns_read_socket): Always send appdefined. Remove inNsSelect check.
4485 Increment and decrement apploopnr.
4486 (ns_select): If no file descriptors, just do a NSTimer.
4487 Otherwise copy read/write masks and start select thread (fd_handler).
4488 Start main loop and wait for application defined event.
4489 Inform select thread to stop selecting after main loop is exited.
4490 (ns_term_init): Create selfds pipe and set non-blocking.
4491 Initialize select_mutex. Start the select thread (fd_handler).
4492 (fd_handler:): Loop forever, wait for info from the main thread
4493 to either start or stop selecting. When select returns, send
4494 and appdefined event.
4495 (sendScrollEventAtLoc:fromEvent:): Check if q_event_ptr is set.
4496 If not call kbd_buffer_store_event.
4497
4498 * nsterm.h (EmacsApp): fd_handler takes id argument.
4499 (EmacsDialogPanel): Add timer_fired and timeout_handler.
4500
4501 * gtkutil.c (xg_mark_data): Use FRAME_X_P.
4502
4503 2012-08-15 Eli Zaretskii <eliz@gnu.org>
4504
4505 * region-cache.c (move_cache_gap): Update gap_len using the actual
4506 growth of the boundaries array. Do not change cache_len.
4507 (Bug#12196)
4508
4509 2012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
4510
4511 Generalize and cleanup font subsystem checks.
4512 * font.h (FONT_DEBUG, font_assert): Remove.
4513 * font.c, fontset.c, w32font.c, xfont.c, xftfont.c:
4514 Change font_assert to eassert. Use eassert where appropriate.
4515
4516 2012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
4517
4518 * gtkutil.c (xg_get_font): Use pango_units_to_double.
4519
4520 2012-08-15 Chong Yidong <cyd@gnu.org>
4521
4522 * gtkutil.c (xg_get_font): Rename from xg_get_font_name.
4523 When using the new font chooser, use gtk_font_chooser_get_font_desc to
4524 extract the font descriptor instead of just the font name.
4525 In that case, return a font spec instead of a string.
4526 (x_last_font_name): Move to this file from xfns.c.
4527
4528 * xfns.c (Fx_select_font): The return value can also be a font
4529 spec. Move x_last_font_name management to gtkutil.c.
4530
4531 * xfaces.c: Make font weight and style symbols non-static.
4532
4533 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
4534
4535 * minibuf.c (read_minibuf): Ignore caller's inhibit-read-only
4536 (bug#12117).
4537
4538 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
4539
4540 * alloc.c (Fgarbage_collect): Use plural form consistently.
4541
4542 2012-08-14 Eli Zaretskii <eliz@gnu.org>
4543
4544 * keyboard.c (command_loop_1): Reset ignore_mouse_drag_p flag each
4545 iteration through the command loop. Fixes a problem whereby mouse
4546 movements are ignored until the first mouse click.
4547
4548 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
4549
4550 Use bool, not int, for Lisp booleans.
4551 This is more natural, and on my platform (GCC 4.7.1 x86-64) it
4552 makes Emacs a bit smaller and presumably a bit faster.
4553 * lisp.h: Include <stdbool.h>.
4554 (struct Lisp_Boolfwd, defvar_bool):
4555 * lread.c (defvar_bool): Use bool, not int, for Lisp booleans.
4556 * regex.c [!emacs]: Include <stdbool.h>.
4557 (false, true): Remove; <stdbool.h> does this for us now.
4558
4559 2012-08-14 Chong Yidong <cyd@gnu.org>
4560
4561 * character.c (Fcharacterp): Doc fix (Bug#12076).
4562
4563 * data.c (Findirect_variable): Doc fix (Bug#11040).
4564
4565 * chartab.c (Fmap_char_table): Doc fix (Bug#12061).
4566
4567 * editfns.c (Fformat): Doc fix (Bug#12059).
4568 (Fsave_current_buffer): Doc fix (Bug#11542).
4569
4570 2012-08-14 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
4571
4572 * keyboard.c (access_keymap_keyremap): Accept anonymous functions
4573 (bug#12022).
4574
4575 2012-08-14 Martin Rudalics <rudalics@gmx.at>
4576
4577 * frame.c (make_frame_without_minibuffer, make_minibuffer_frame)
4578 (delete_frame, Fmake_frame_invisible, Ficonify_frame):
4579 * minibuf.c (choose_minibuf_frame, read_minibuf):
4580 * w32fns.c (x_create_tip_frame):
4581 * xfns.c (x_create_tip_frame): Call set_window_buffer instead of
4582 Fset_window_buffer (Bug#11984, Bug#12025, Bug#12026).
4583
4584 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
4585
4586 * intervals.c (offset_intervals): Remove obsolete comment.
4587
4588 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
4589
4590 * gtkutil.c (find_rtl_image, update_frame_tool_bar): Use NILP.
4591
4592 2012-08-14 Gergely Risko <gergely@risko.hu>
4593
4594 * coding.c (decode_coding): Record buffer modification before
4595 disabling undo_list (Bug#11773).
4596
4597 2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
4598
4599 Revert and cleanup some recent overlay changes.
4600 * buffer.h (enum overlay_type): Remove.
4601 (buffer_get_overlays, buffer_set_overlays): Likewise.
4602 (buffer_set_overlays_before, buffer_set_overlays_after):
4603 New function. Adjust users.
4604 (unchain_both): Add eassert.
4605
4606 2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
4607
4608 * gtkutil.c (update_frame_tool_bar): Use EQ where appropriate.
4609
4610 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
4611
4612 * gtkutil.c (xg_mark_data): Don't assume C99.
4613
4614 2012-08-13 Jan Djärv <jan.h.d@swipnet.se>
4615
4616 * gtkutil.c (xg_frame_tb_info): New struct.
4617 (TB_INFO_KEY): New define.
4618 (xg_free_frame_widgets): Free xg_frame_tb_info for frame if present.
4619 (xg_mark_data): Mark Lisp_Objects in xg_frame_tb_info.
4620 (xg_create_tool_bar): Allocate and initialize a xg_frame_tb_info
4621 if not present.
4622 (update_frame_tool_bar): Return early if data in xg_frame_tb_info
4623 is up to date. Otherwise store new data.
4624 (free_frame_tool_bar): Free xg_frame_tb_info if present.
4625
4626 2012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
4627
4628 Use KSET for write access to Lisp_Object members of struct kboard.
4629 * keyboard.h (KSET): New macro.
4630 * callint.c, category.c, frame.c, keyboard.c, keyboard.h, macros.c:
4631 * msdos.c, nsfns.m, nsterm.m, term.c, w32fns.c, w32term.c, xfns.c:
4632 * xterm.c: Adjust users.
4633
4634 2012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
4635
4636 Use BSET for write access to Lisp_Object members of struct buffer.
4637 * buffer.h (BSET): New macro.
4638 * buffer.c, casetab.c, cmds.c, coding.c, data.c, editfns.c:
4639 * fileio.c, frame.c, indent.c, insdel.c, intervals.c, keymap.c:
4640 * minibuf.c, print.c, process.c, syntax.c, undo.c, w32fns.c:
4641 * window.c, xdisp.c, xfns.c: Adjust users.
4642
4643 2012-08-11 BT Templeton <bpt@hcoop.net> (tiny change)
4644
4645 * lread.c (syms_of_lread): Initialize Vlexical_binding.
4646
4647 2012-08-11 Jan Djärv <jan.h.d@swipnet.se>
4648
4649 * nsterm.m (not_in_argv): New function.
4650 (application:openFile, application:openTempFile:):
4651 (application:openFileWithoutUI:, application:openFiles:): Open file
4652 if not_in_argv returns non-zero (bug#12171).
4653
4654 * gtkutil.c (gtk_font_chooser_dialog_new, GTK_FONT_CHOOSER)
4655 (gtk_font_chooser_set_font, gtk_font_chooser_get_font):
4656 Define for Gtk+ versions less than 3.2.
4657 (xg_get_font_name): Use those functions/macros here.
4658 Reported by Frans Oilinki <moilinki@gmail.com>.
4659
4660 2012-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4661
4662 * unexmacosx.c (copy_data_segment): Copy initialized data in
4663 statically linked libraries from input file rather than memory.
4664
4665 * unexmacosx.c (print_load_command_name): Add cases LC_MAIN,
4666 LC_SOURCE_VERSION, and LC_DYLIB_CODE_SIGN_DRS.
4667 (dump_it) [LC_DYLIB_CODE_SIGN_DRS]: Call copy_linkedit_data.
4668
4669 2012-08-10 Glenn Morris <rgm@gnu.org>
4670
4671 * conf_post.h (IF_LINT, lint_assume): Move here from lisp.h.
4672 * lisp.h (IF_LINT, lint_assume): Move to conf_post.h.
4673
4674 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
4675
4676 Fix last change to allow compilation with low optimization levels.
4677 * intervals.c (INTERVALS_INLINE): Define to EXTERN_INLINE.
4678 Reported by Jan Djärv <jan.h.d@swipnet.se>.
4679
4680 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
4681
4682 Use common inline syntax in intervals.h.
4683 * intervals.h (INTERVALS_INLINE): New macro.
4684 Change all users from LISP_INLINE.
4685
4686 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
4687
4688 Define Qnone once for all platforms.
4689 * frame.c (Qnone): Define here.
4690 (syms_of_frame): DEFSYM it.
4691 * lisp.h (Qnone): New declaration.
4692 * nsfns.m, nsterm.h, nsterm.m, w32fns.c, w32font.c:
4693 * xfns.c: Remove duplication. Adjust users.
4694
4695 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
4696
4697 Remove unused macros from intervals.h.
4698 * intervals.h (MERGE_INSERTIONS, DISPLAY_INVISIBLE_GLYPH): Remove.
4699 * intervals.c: Adjust comment.
4700
4701 2012-08-10 Eli Zaretskii <eliz@gnu.org>
4702
4703 * w32fns.c <w32_unicode_gui>: New static variable.
4704 (globals_of_w32fns): Initialize it according to os_subtype.
4705 (w32_init_class, w32_msg_pump, w32_wnd_proc): Use it instead of
4706 testing os_subtype.
4707
4708 2012-08-10 Joakim Hårsman <joakim.harsman@gmail.com> (tiny change)
4709 Eli Zaretskii <eliz@gnu.org>
4710
4711 Fix bug #10299 with Unicode characters sent by customized
4712 keyboards created by MSKLC.
4713 * w32fns.c (INIT_WINDOW_CLASS): New macro.
4714 (w32_init_class): Use it to initialize the Emacs class with either
4715 ANSI or Unicode API calls.
4716 (w32_msg_pump): Call GetMessageW and DispatchMessageW on NT and
4717 later.
4718 (w32_wnd_proc): If the character code sent by WM_CHAR or
4719 WM_SYSCHAR is above 255, post a WM_UNICHAR message, not the
4720 original message. Call DefWindowProcW on NT and later.
4721
4722 2012-08-10 Glenn Morris <rgm@gnu.org>
4723
4724 * Makefile.in (config_h): Fix conf_post.h out-of-tree build location.
4725
4726 * lisp.h (DIRECTORY_SEP): Let configure set it.
4727
4728 2012-08-09 Dmitry Antipov <dmantipov@yandex.ru>
4729
4730 Use TSET for write access to Lisp_Object slots of struct terminal.
4731 * termhooks.h (TSET): New macro.
4732 * coding.c, terminal.c, xselect.c: Adjust users.
4733
4734 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
4735
4736 * xdisp.c (safe_eval_handler): Remove prototype. Receive args describing
4737 the failing expression, include them in the error message.
4738 * eval.c (internal_condition_case_n): Pass nargs and args to hfun.
4739 * lisp.h (internal_condition_case_n): Update declaration.
4740
4741 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
4742
4743 Inline functions to examine and change buffer overlays.
4744 * buffer.c (unchain_both): New function.
4745 * buffer.h (buffer_get_overlays, buffer_set_overlays):
4746 (buffer_has_overlays): New function.
4747 (enum overlay_type): New enum.
4748 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c:
4749 * insdel.c, intervals.c, print.c, xdisp.c: Adjust users.
4750
4751 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
4752
4753 Inline functions to examine and change buffer intervals.
4754 * alloc.c (mark_interval_tree): Remove.
4755 (MARK_INTERVAL_TREE): Simplify.
4756 (UNMARK_BALANCE_INTERVALS): Remove. Adjust users.
4757 * intervals.c (buffer_balance_intervals): New function.
4758 (graft_intervals_into_buffer): Adjust indentation.
4759 (set_intervals_multibyte): Simplify.
4760 * buffer.h (BUF_INTERVALS): Remove.
4761 (buffer_get_intervals, buffer_set_intervals): New function.
4762 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c, insdel.c:
4763 * intervals.c, textprop.c: Adjust users.
4764
4765 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
4766
4767 Inline functions to examine and change string intervals.
4768 * lisp.h (STRING_INTERVALS, STRING_SET_INTERVALS): Remove.
4769 (string_get_intervals, string_set_intervals): New function.
4770 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
4771 * lread.c, print.c, textprop.c: Adjust users.
4772
4773 2012-08-08 Glenn Morris <rgm@gnu.org>
4774
4775 * lisp.mk (lisp): Remove language/persian.elc.
4776
4777 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
4778
4779 Cleanup intervals.
4780 * intervals.h (NULL_INTERVAL, DEFAULT_INTERVAL): Remove.
4781 (NULL_INTERVAL_P): Likewise. Adjust users.
4782 (FRONT_STICKY_P, END_NONSTICKY_P, FRONT_NONSTICKY_P):
4783 Adjust comment. Move under #if 0.
4784 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
4785 * print.c, syntax.c, textprop.c, xdisp.c: Adjust users.
4786
4787 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
4788
4789 Check total length of intervals with eassert.
4790 * intervals.h (CHECK_TOTAL_LENGTH): Remove.
4791 * intervals.c: Change all users to eassert.
4792
4793 2012-08-07 Eli Zaretskii <eliz@gnu.org>
4794
4795 * .gdbinit (xframe, xwindow, nextcons, xcar, xcdr, xlist):
4796 Rename fields to match removal of FGET and WGET and disuse of
4797 INTERNAL_FIELD in Lisp_Cons.
4798
4799 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
4800
4801 Revert and cleanup Lisp_Cons, Lisp_Misc and Lisp_Symbol things.
4802 * lisp.h (struct Lisp_Symbol): Change xname to meaningful
4803 name since all xname users are fixed long time ago. Do not
4804 use INTERNAL_FIELD.
4805 (set_symbol_name, set_symbol_function, set_symbol_plist):
4806 (set_symbol_next, set_overlay_plist): New function.
4807 (struct Lisp_Cons): Do not use INTERNAL_FIELD.
4808 (struct Lisp_Overlay): Likewise.
4809 (CVAR, MVAR, SVAR): Remove.
4810 * alloc.c, buffer.c, buffer.h, bytecode.c, cmds.c, data.c:
4811 * doc.c, eval.c, fns.c, keyboard.c, lread.c, nsselect.m:
4812 * xterm.c: Adjust users.
4813 * .gdbinit: Change to use name field of struct Lisp_Symbol
4814 where appropriate.
4815
4816 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
4817
4818 Basic functions to set Lisp_Object and pointer slots of intervals.
4819 * intervals.h (interval_set_parent, interval_set_object):
4820 (interval_set_left, interval_set_right, interval_set_plist):
4821 (interval_copy_parent): New function.
4822 (SET_INTERVAL_OBJECT, SET_INTERVAL_PARENT, INTERVAL_PTR_SIZE): Remove.
4823 (RESET_INTERVAL, COPY_INTERVAL_CACHE, MERGE_INTERVAL_CACHE):
4824 Adjust indentation.
4825 (INTERVAL_SIZE): Remove. Adjust users.
4826 * alloc.c, intervals.c, lread.c, textprop.c: Use new functions.
4827
4828 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
4829
4830 Drop PGET and revert read access to Lisp_Objects slots of Lisp_Process.
4831 * process.h (PGET): Remove.
4832 (struct Lisp_Process): Do not use INTERNAL_FIELD.
4833 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
4834
4835 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
4836
4837 Drop WGET and revert read access to Lisp_Objects slots of struct window.
4838 * window.h (WGET): Remove.
4839 (struct window): Do not use INTERNAL_FIELD.
4840 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
4841 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
4842 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
4843 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
4844 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
4845 Adjust users.
4846
4847 2012-08-07 Chong Yidong <cyd@gnu.org>
4848
4849 * window.c (Fwindow_edges, Fwindow_pixel_edges)
4850 (Fwindow_absolute_pixel_edges, Fdelete_other_windows_internal)
4851 (Fdelete_window_internal): Signal an error if the window is not on
4852 a live frame (Bug#12025).
4853
4854 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
4855
4856 Drop FGET and revert read access to Lisp_Objects slots of struct frame.
4857 * frame.h (FGET): Remove.
4858 (struct frame): Do not use INTERNAL_FIELD.
4859 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
4860 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
4861 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
4862 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
4863
4864 2012-08-06 Juanma Barranquero <lekktu@gmail.com>
4865
4866 * w32.c: Silence compiler warnings.
4867 (map_w32_filename): Remove unused variable `is_fat'.
4868 (chase_symlinks): Add parentheses around expression.
4869
4870 2012-08-06 Glenn Morris <rgm@gnu.org>
4871
4872 * sysdep.c: Respect BROKEN_GETWD.
4873
4874 * dispnew.c (GNU_LIBRARY_PENDING_OUTPUT_COUNT, PENDING_OUTPUT_COUNT):
4875 Let configure handle it.
4876 (stdio_ext.h) [DISPNEW_NEEDS_STDIO_EXT]: Include it.
4877
4878 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
4879
4880 Use GCALIGNMENT where appropriate.
4881 * alloc.c (XMALLOC_HEADER_ALIGNMENT, roundup_size):
4882 (union aligned_Lisp_Symbol, union aligned_Lisp_Misc):
4883 (mark_maybe_pointer, pure_alloc): Change to use GCALIGNMENT.
4884
4885 2012-08-06 Eli Zaretskii <eliz@gnu.org>
4886
4887 * w32menu.c (set_frame_menubar, initialize_frame_menubar):
4888 Don't use FRAME_MENU_BAR_ITEMS as an lvalue.
4889
4890 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
4891
4892 * buffer.h (struct buffer): Revert `indirections' to a simple int;
4893 that should be sufficient for everyone.
4894
4895 2012-08-06 Jan Djärv <jan.h.d@swipnet.se>
4896
4897 * keyboard.c (timer_check_2): Add break so timer_check returns next
4898 timeout.
4899
4900 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
4901
4902 Fix Windows build errors introduced after converting to WGET and WSET.
4903 * w32term.c (w32_set_vertical_scroll_bar): Change to use WSET.
4904 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
4905
4906 2012-08-06 Jan Djärv <jan.h.d@swipnet.se>
4907
4908 * nsterm.m (ns_frame_rehighlight): Use FSET.
4909
4910 * nsmenu.m (ns_update_menubar): Use FSET.
4911
4912 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
4913
4914 Separate read and write access to Lisp_Object slots of Lisp_Process.
4915 * process.h (PGET, PSET): New macros similar to AREF and ASET.
4916 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
4917
4918 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
4919
4920 Separate read and write access to Lisp_Object slots of struct window.
4921 * window.h (WGET, WSET): New macros similar to AREF and ASET.
4922 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
4923 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
4924 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
4925 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
4926 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
4927 Adjust users.
4928
4929 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
4930
4931 Fix Windows build errors introduced after converting to FGET and FSET.
4932 * w32term.c (x_frame_rehighlight, x_scroll_bar_create):
4933 (w32_condemn_scroll_bars, w32_redeem_scroll_bar):
4934 (w32_judge_scroll_bars): Change to use FSET.
4935 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
4936
4937 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
4938
4939 Fix replacement typo.
4940 * window.c (replace_window): Set root_window instead of
4941 selected_window. This fixes a total window subsystem
4942 malfunction reported by Bastien Guerry <bzg@gnu.org>.
4943
4944 2012-08-06 Glenn Morris <rgm@gnu.org>
4945
4946 * lisp.mk (lisp): Add language/persian.elc.
4947
4948 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
4949
4950 Separate read and write access to Lisp_Object slots of struct frame.
4951 * frame.h (FGET, FSET): New macros similar to AREF and ASET.
4952 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
4953 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
4954 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
4955 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
4956
4957 2012-08-05 Andreas Schwab <schwab@linux-m68k.org>
4958
4959 * emacs.c (decode_env_path): Only use defaulted if WINDOWSNT.
4960
4961 2012-08-05 Dmitry Antipov <dmantipov@yandex.ru>
4962
4963 Generalize common compile-time constants.
4964 * lisp.h (header_size, bool_header_size, word_size): Now here.
4965 (struct Lisp_Vector): Add comment.
4966 (struct Lisp_Bool_Vector): Move up to define handy constants.
4967 (VECSIZE, PSEUDOVECSIZE): Simplify.
4968 (SAFE_ALLOCA_LISP): Use new constant. Adjust indentation.
4969 * buffer.c, buffer.h, bytecode.c, callint.c, eval.c, fns.c:
4970 * font.c, fontset.c, keyboard.c, keymap.c, macros.c, menu.c:
4971 * msdos.c, w32menu.c, w32term.h, window.c, xdisp.c, xfaces.c:
4972 * xfont.c, xmenu.c: Use word_size where appropriate.
4973
4974 2012-08-05 Lawrence Mitchell <wence@gmx.li>
4975
4976 * search.c (Freplace_match): Treat \? in the replacement text
4977 literally (Bug#8161).
4978
4979 2012-08-05 Chong Yidong <cyd@gnu.org>
4980
4981 * term.c (Vsuspend_tty_functions, Vresume_tty_functions):
4982 * frame.c (Vdelete_frame_functions):
4983 * emacs.c (Vkill_emacs_hook): Doc fix.
4984
4985 2012-08-04 Eli Zaretskii <eliz@gnu.org>
4986
4987 * xfns.c (x_set_menu_bar_lines): Fix compilation error in
4988 --with-x-toolkit=no builds.
4989 Reported by Carsten Mattner <carstenmattner@gmail.com>.
4990
4991 2012-08-04 Chong Yidong <cyd@gnu.org>
4992
4993 * syntax.c (Fmodify_syntax_entry): Doc fix.
4994
4995 2012-08-04 Eli Zaretskii <eliz@gnu.org>
4996
4997 Fix startup warnings about ../site-lisp on MS-Windows. (Bug#11959)
4998 * w32.c (init_environment): Change the default values of many
4999 environment variables in dflt_envvars[] to NULL, to avoid pushing
5000 them into environment when they were not already defined.
5001 Remove the code that deletes site-lisp subdirectories from the default
5002 value of EMACSLOADPATH, as it is no longer needed.
5003 (check_windows_init_file): Now external, not static.
5004 Use Vload_path as is, without adding anything, as this function is now
5005 called when Vload_path is already set up.
5006
5007 * w32.h (check_windows_init_file): Add prototype.
5008
5009 * emacs.c (init_cmdargs) [WINDOWSNT]: When running from the build
5010 directory, ignore the /*/i386/ tail in Vinvocation_directory, for
5011 compatibility with Posix platforms.
5012 (main): Move the call to check_windows_init_file to here from
5013 w32.c.
5014 (decode_env_path) [WINDOWSNT]: Expand the %emacs_dir%/ prefix, if
5015 any, in the DEFALT argument into the root of the Emacs build or
5016 installation tree, as appropriate.
5017
5018 * callproc.c (init_callproc_1): Call decode_env_path instead of
5019 doing its equivalent by hand.
5020 (init_callproc): Replace DOS_NT condition with MSDOS, thus letting
5021 the code that sets Vexec_path run on MS-Windows.
5022
5023 * lread.c (init_lread): Add comments to #ifdef's.
5024
5025 * msdos.c (dos_set_window_size, IT_update_begin)
5026 (IT_frame_up_to_date, IT_set_frame_parameters): Use FVAR and WVAR
5027 instead of direct references.
5028
5029 2012-08-04 Paul Eggert <eggert@cs.ucla.edu>
5030
5031 Export DEFAULT_REHASH_* to GDB.
5032 * lisp.h (DEFAULT_REHASH_THRESHOLD, DEFAULT_REHASH_SIZE):
5033 Now constants, not macros.
5034
5035 2012-08-03 Paul Eggert <eggert@cs.ucla.edu>
5036
5037 Remove unnecessary casts involving pointers.
5038 These casts are no longer needed now that we assume C89 or later,
5039 since they involve casting to or from void *.
5040 * alloc.c (make_pure_string, make_pure_c_string, pure_cons)
5041 (make_pure_float, make_pure_vector):
5042 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP):
5043 * macros.c (Fstart_kbd_macro):
5044 * menu.c (find_and_return_menu_selection):
5045 * minibuf.c (read_minibuf_noninteractive):
5046 * sysdep.c (closedir):
5047 * xdisp.c (x_produce_glyphs):
5048 * xfaces.c (compare_fonts_by_sort_order):
5049 * xfns.c (x_real_positions, select_visual):
5050 * xselect.c (x_stop_queuing_selection_requests)
5051 (x_get_window_property, x_get_window_property_as_lisp_data):
5052 * xterm.c (x_set_frame_alpha, x_find_modifier_meanings):
5053 Remove unnecessary pointer casts.
5054 * alloc.c (record_xmalloc): New function.
5055 * lisp.h (record_xmalloc): New decl.
5056 (SAFE_ALLOCA): Now takes just one arg -- the size -- and acts
5057 more like a function. This is because the pointer cast is not
5058 needed. All uses changed.
5059 * print.c (print_string, print_error_message): Avoid length recalc.
5060
5061 Improve fix for macroexp crash with debugging (Bug#12118).
5062 * lisp.h (ASET) [ENABLE_CHECKING]: Pay attention to
5063 ARRAY_MARK_FLAG when checking subscripts, because ASET is
5064 not supposed to be invoked from the garbage collector.
5065 See Andreas Schwab in <http://bugs.gnu.org/12118#25>.
5066 (gc_aset): New function, which is like ASET but can be
5067 used in the garbage collector.
5068 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
5069 (set_hash_index): Use it instead of ASET.
5070
5071 2012-08-03 Eli Zaretskii <eliz@gnu.org>
5072
5073 Support symlinks on latest versions of MS-Windows.
5074 * w32.c: Include winioctl.h and aclapi.h.
5075 (is_symlink, chase_symlinks, enable_privilege, restore_privilege)
5076 (revert_to_self): Forward declarations of static functions.
5077 <static BOOL g_b_init_get_security_info>:
5078 <g_b_init_create_symbolic_link>: New static flags.
5079 (globals_of_w32): Initialize them to zero.
5080 (GetSecurityInfo_Proc, CreateSymbolicLink_Proc): New typedefs.
5081 (map_w32_filename): Improve commentary. Simplify switch.
5082 (SYMBOLIC_LINK_FLAG_DIRECTORY): Define if not defined in system
5083 headers (most versions of MinGW w32api don't).
5084 (get_security_info, create_symbolic_link)
5085 (get_file_security_desc_by_handle, is_symlink, chase_symlinks):
5086 New functions.
5087 (sys_access, sys_chmod): Call 'chase_symlinks' to resolve symlinks
5088 in the argument file name.
5089 (sys_access): Call unc_volume_file_attributes only if
5090 GetFileAttributes fails with network-related error codes.
5091 (sys_rename): Diagnose renaming of a symlink when the user doesn't
5092 have the required privileges.
5093 (get_file_security_desc_by_name): Rename from
5094 get_file_security_desc.
5095 (stat_worker): New function, with most of the guts of 'stat', and
5096 with addition of handling of symlinks and support for 'lstat'.
5097 If possible, get file's attributes and security information by
5098 handle, not by name. Produce S_IFLNK bit for symlinks, when
5099 called from 'lstat'.
5100 (stat, lstat): New functions, call 'stat_worker'.
5101 (symlink, readlink, careadlinkat): Rewritten to create and resolve
5102 symlinks when the underlying filesystem supports them.
5103
5104 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
5105
5106 Fix macroexp crash on Windows with debugging (Bug#12118).
5107 * lisp.h (ASET) [ENABLE_CHECKING]: Ignore ARRAY_MARK_FLAG when
5108 checking subscripts; problem introduced with the recent
5109 "ASET (a, i, v)" rather than "AREF (a, i) = v" patch.
5110 (ARRAY_MARK_FLAG): Now a macro as well as a constant,
5111 since it's used in non-static inline functions now.
5112
5113 * xfaces.c (face_at_buffer_position, face_for_overlay_string):
5114 Don't assume buffer size fits in 'int'. Remove unused local.
5115
5116 Use C99-style 'extern inline' if available.
5117 * buffer.h (BUFFER_INLINE):
5118 * category.h (CATEGORY_INLINE):
5119 * character.h (CHARACTER_INLINE):
5120 * charset.h (CHARSET_INLINE):
5121 * composite.h (COMPOSITE_INLINE):
5122 * dispextern.h (DISPEXTERN_INLINE):
5123 * lisp.h (LISP_INLINE):
5124 * systime.h (SYSTIME_INLINE):
5125 New macro, replacing 'static inline' in this header.
5126 * buffer.h, category.h, character.h, charset.h, composite.h:
5127 * dispextern.h, lisp.h, systime.h:
5128 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
5129 * alloc.c (LISP_INLINE):
5130 * buffer.c (BUFFER_INLINE):
5131 * category.c (CATEGORY_INLINE):
5132 * character.c (CHARACTER_INLINE):
5133 * charset.c (CHARSET_INLINE):
5134 * composite.c (COMPOSITE_INLINE):
5135 * dispnew.c (DISPEXTERN_INLINE):
5136 * sysdep.c (SYSTIME_INLINE):
5137 Define to EXTERN_INLINE, so that the corresponding functions
5138 are compiled into code.
5139 * conf_post.h (INLINE, EXTERN_INLINE, INLINE_HEADER_BEGIN)
5140 (INLINE_HEADER_END): New macros.
5141 * lisp.h (PSEUDOVECTOR_FLAG): Now a macro as well as a constant,
5142 since it's used in non-static inline functions now.
5143 (VALMASK) [!USE_LSB_TAG]: Likewise.
5144
5145 2012-08-02 Glenn Morris <rgm@gnu.org>
5146
5147 * s/: Remove empty directory.
5148
5149 * s/ms-w32.h: Move to ../nt/inc.
5150 * makefile.w32-in (TAGS, TAGS-gmake, MS_W32_H):
5151 Update for new ms-w32.h location.
5152
5153 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
5154
5155 Port to Solaris 8.
5156 * syswait.h (WRETCODE): Remove, consistently with ../configure.ac.
5157
5158 2012-08-02 Glenn Morris <rgm@gnu.org>
5159
5160 * nsterm.m (ns_exec_path, ns_load_path): Use SEPCHAR rather than
5161 hard-coding the path separator.
5162
5163 2012-08-01 Paul Eggert <eggert@cs.ucla.edu>
5164
5165 Use "ASET (a, i, v)" rather than "AREF (a, i) = v".
5166 This how ASET and AREF are supposed to work, and makes
5167 it easier to think about future improvements. See
5168 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00026.html>.
5169 * charset.h (set_charset_attr): New function.
5170 All lvalue-style uses of CHARSET_DECODER etc. changed to use it.
5171 * lisp.h (ASET): Rewrite so as not to use AREF in an lvalue style.
5172 (aref_addr): New function. All uses of &AREF(...) changed.
5173 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
5174 (set_hash_index): New functions. All lvalue-style uses of
5175 HASH_KEY etc. changed.
5176 * keyboard.c (set_prop): New function. All lvalue-style uses
5177 of PROP changed.
5178
5179 2012-08-01 Alp Aker <alp.tekin.aker@gmail.com>
5180
5181 * nsterm.m (ns_set_vertical_scroll_bar, ns_redeem_scroll_bar)
5182 (EmacsWindow-accessibilityAttributeValue, EmacsScroller-initFrame:)
5183 (EmacsScroller-dealloc): Adjust to use WVAR. (Bug#12114)
5184 * nsfns.m (ns_set_name_as_filename): Likewise.
5185 * nsmenu.m (ns_update_menubar): Likewise.
5186 * nsselect.m (symbol_to_nsstring): Adjust to use SVAR.
5187
5188 2012-08-01 Eli Zaretskii <eliz@gnu.org>
5189
5190 * .gdbinit (xcar, xcdr, xlist, xwindow, nextcons, xprintsym):
5191 Adapt to latest changes in field names of the corresponding Lisp
5192 objects.
5193
5194 * xdisp.c (try_window_id): Use WVAR in IF_DEBUG code.
5195
5196 2012-08-01 Glenn Morris <rgm@gnu.org>
5197
5198 * s/msdos.h: Remove file.
5199 * conf_post.h [MSDOS]: New section, moved from s/msdos.h.
5200 * Makefile.in (S_FILE): Remove.
5201 (config_h): Remove S_FILE.
5202
5203 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
5204
5205 * s/ms-w32.h (DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP):
5206 Remove; moved to nt/config.nt.
5207
5208 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
5209
5210 Use INTERNAL_FIELD for conses and overlays.
5211 * lisp.h (struct Lisp_Cons): Use INTERNAL_FIELD.
5212 Remove obsolete comment.
5213 (MVAR): New macro.
5214 (struct Lisp_Overlay): Use INTERNAL_FIELD.
5215 * alloc.c, buffer.c, buffer.h, fns.c: Adjust users.
5216
5217 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
5218
5219 Use INTERNAL_FIELD for symbols.
5220 * lisp.h (SVAR): New macro. Adjust users.
5221 * alloc.c, bytecode.c, cmds.c, data.c, doc.c, eval.c:
5222 * fns.c, keyboard.c, lread.c, xterm.c: Users changed.
5223
5224 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
5225
5226 Use INTERNAL_FIELD for processes.
5227 * process.h (PVAR): New macro. Adjust style.
5228 (struct Lisp_Process): Change Lisp_Object members to INTERNAL_FIELD.
5229 * print.c, process.c, sysdep.c, w32.c, xdisp.c: Users changed.
5230
5231 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
5232
5233 Use INTERNAL_FIELD for windows.
5234 * window.h (WVAR): New macro.
5235 (struct window): Change Lisp_Object members to INTERNAL_FIELD.
5236 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
5237 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
5238 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, nsterm.m, print.c:
5239 * textprop.c, w32fns.c, w32menu.c, w32term.c, window.c, xdisp.c:
5240 * xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
5241
5242 2012-08-01 Paul Eggert <eggert@cs.ucla.edu>
5243
5244 * coding.h (CODING_ATTR_FLUSHING): Remove; unused and wouldn't work.
5245
5246 2012-08-01 Glenn Morris <rgm@gnu.org>
5247
5248 * lisp.h (IS_DIRECTORY_SEP, IS_DEVICE_SEP, IS_ANY_SEP):
5249 Move to configure.ac.
5250
5251 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
5252
5253 * makefile.w32-in (CONFIG_H): Update dependencies.
5254 (CONF_POST_H): New macro.
5255
5256 * s/ms-w32.h (SEPCHAR, NULL_DEVICE): Remove; moved to nt/config.nt.
5257
5258 2012-07-31 Glenn Morris <rgm@gnu.org>
5259
5260 * Makefile.in (S_FILE): No longer set by configure.
5261
5262 * conf_post.h (config_opsysfile): Move earlier, so that WINDOWSNT
5263 is available.
5264 (alloca.h) [WINDOWSNT]: Don't include it on MS Windows.
5265
5266 * process.h (NULL_DEVICE):
5267 * emacs.c (SEPCHAR):
5268 * editfns.c (USER_FULL_NAME): Let configure set them.
5269
5270 * s/README, s/template.h: Remove files.
5271
5272 * conf_post.h [HPUX]: Undefine HAVE_RANDOM and HAVE_RINT.
5273
5274 * conf_post.h (AMPERSAND_FULL_NAME, subprocesses):
5275 Move to configure.ac.
5276
5277 2012-07-31 Eli Zaretskii <eliz@gnu.org>
5278
5279 * .gdbinit (xframe): Adapt to introduction of FVAR and the
5280 resulting renaming of 'struct frame' members.
5281
5282 * w32menu.c (w32_menu_show): Revert bogus introduction of FVAR.
5283
5284 * fontset.c (dump_fontset): Fix compilation with ENABLE_CHECKING
5285 after introduction of FVAR.
5286
5287 2012-07-31 Jan Djärv <jan.h.d@swipnet.se>
5288
5289 * nsmenu.m (update_frame_tool_bar): Change key from NSObject* to id.
5290
5291 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Use drawInRect
5292 instead of compositeToPoint.
5293 (applicationShouldTerminate): Pass NS String literal to NSRunAlertPanel.
5294
5295 * nsfns.m, nsmenu.m, nsterm.m: Adopt to struct frame/FVAR changes.
5296
5297 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
5298
5299 Generalize INTERNAL_FIELD between buffers, keyboards and frames.
5300 * lisp.h (INTERNAL_FIELD): New macro.
5301 * buffer.h (BUFFER_INTERNAL_FIELD): Remove.
5302 (BVAR): Change to use INTERNAL_FIELD.
5303 * keyboard.h (KBOARD_INTERNAL_FIELD): Likewise.
5304 (KVAR): Change to use INTERNAL_FIELD.
5305 * frame.h (FVAR): New macro.
5306 (struct frame): Use INTERNAL_FIELD for all Lisp_Object fields.
5307 * alloc.c, buffer.c, data.c, dispnew.c, dosfns.c, eval.c, frame.c:
5308 * fringe.c, gtkutil.c, minibuf.c, nsfns.m, nsterm.m, print.c:
5309 * term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
5310 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
5311
5312 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
5313
5314 Miscellaneous fixes for non-default X toolkits.
5315 * xfns.c (Fx_file_dialog): Change to SSDATA to avoid warnings.
5316 * xterm.c (x_frame_of_widget): Remove redundant prototype.
5317 Move under #ifdef USE_LUCID.
5318 (x_create_toolkit_scroll_bar): Adjust scroll_bar_name
5319 definition and usage to avoid warnings.
5320
5321 2012-07-31 Jan Djärv <jan.h.d@swipnet.se>
5322
5323 * nsterm.m (openFiles): Fix previous checkin.
5324
5325 2012-07-31 Paul Eggert <eggert@cs.ucla.edu>
5326
5327 * indent.c (compute_motion): Remove unused local.
5328
5329 2012-07-31 Glenn Morris <rgm@gnu.org>
5330
5331 * s/usg5-4-common.h (wait3, WRETCODE): Let configure set them.
5332
5333 * conf_post.h [USG5_4]:
5334 Move remaining contents of s/usg5-4-common.h here.
5335 * s/usg5-4-common.h: Remove file.
5336
5337 * conf_post.h [IRIX6_5]: Move remaining contents of s/irix6-5.h here.
5338 * s/irix6-5.h: Remove file.
5339
5340 * conf_post.h [DARWIN_OS]: Move remaining contents of s/darwin.h here.
5341 * s/darwin.h: Remove file.
5342
5343 * conf_post.h [HPUX]: Move random, srandom here from s/hpux10-20.h.
5344 * s/hpux10-20.h: Remove file, which is now empty.
5345
5346 2012-07-30 Glenn Morris <rgm@gnu.org>
5347
5348 * conf_post.h: New, split from configure.ac's AH_BOTTOM.
5349 * Makefile.in (config_h): Add conf_post.h.
5350 * makefile.w32-in (CONFIG_H): Add conf_post.h.
5351
5352 2012-07-30 Jan Djärv <jan.h.d@swipnet.se>
5353
5354 * nsterm.m (ns_do_open_file): New variable.
5355 (ns_term_init): Set ns_do_open_file to YES after run returns.
5356 (openFile, openTempFile, openFileWithoutUI, openFiles):
5357 Open files only if ns_do_open_file.
5358
5359 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
5360
5361 * lisp.h (SWITCH_ENUM_CAST): Remove. All uses removed.
5362 This no-op macro hasn't been needed for many years.
5363 * src/regex.c (SWITCH_ENUM_CAST) [!emacs]: Likewise.
5364
5365 Export DIRECTORY_SEP, TYPEMASK, VALMASK to GDB.
5366 * alloc.c (gdb_make_enums_visible) [USE_LSB_TAG]: Add lsb_bits.
5367 * lisp.h (enum lsb_bits) [USE_LSB_TAG]: New enum, for
5368 gdb_make_enums_visible.
5369 (TYPEMASK, VALMASK) [USE_LSB_TAGS]: Now enum constants, not macros.
5370 (DIRECTORY_SEP): Now a constant, not a macro.
5371
5372 2012-07-30 Eli Zaretskii <eliz@gnu.org>
5373
5374 * w32fns.c (w32_wnd_proc): Pass w32_keyboard_codepage to
5375 w32_kbd_patch_key as the 2nd arg. (Bug#12082)
5376
5377 * w32term.c <w32_keyboard_codepage>: Renamed from
5378 keyboard_codepage and now external. All users changed.
5379
5380 * w32term.h: Add declaration of w32_keyboard_codepage.
5381
5382 * w32inevt.c (w32_kbd_patch_key): Accept an additional argument --
5383 the codepage to translate keys to Unicode. If this argument is
5384 -1, use the value returned by GetConsoleCP. All callers changed.
5385
5386 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
5387
5388 Update .PHONY listings in makefiles.
5389 * Makefile.in (.PHONY): Add all, mostlyclean, clean,
5390 bootstrap-clean, distclean, maintainer-clean, versioclean,
5391 extraclean, frc.
5392
5393 * lisp.h (STRING_BYTES_BOUND): Cast entire result to ptrdiff_t.
5394 This is a bit clearer. Fix some commentary typos.
5395
5396 2012-07-30 Glenn Morris <rgm@gnu.org>
5397
5398 * s/netbsd.h: Let configure include signal.h if needed.
5399 Remove file, which is now empty.
5400
5401 * s/usg5-4-common.h (_longjmp, _setjmp, TIOCSIGSEND):
5402 Let configure set them.
5403 * s/irix6-5.h (_longjmp, _setjmp, TIOCSIGSEND):
5404 No more need to undefine.
5405
5406 2012-07-30 Andreas Schwab <schwab@linux-m68k.org>
5407
5408 * keymap.c (Fkey_description): Don't remove 0x80 bit from
5409 non-single-byte char when adding meta modifier. (Bug#12090)
5410
5411 2012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
5412
5413 Convert safe_call to use variable number of arguments.
5414 * xdisp.c (safe_call): Convert to use varargs. Adjust users.
5415 (safe_call2): Fix comment.
5416 * lisp.h (safe_call): Adjust prototype.
5417 * coding.c (encode_coding_object): Change to use safe_call2.
5418 * xfaces.c (merge_face_heights): Change to use safe_call1.
5419
5420 2012-07-30 Glenn Morris <rgm@gnu.org>
5421
5422 * s/aix4-2.h (sigmask): No need to undefine it, since syssignal.h
5423 does that unconditionally. Remove file, which is now empty.
5424
5425 * s/freebsd.h, s/gnu-linux.h, s/sol2-6.h, s/unixware.h:
5426 Remove empty files.
5427
5428 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
5429
5430 Export to GDB most of lisp.h's remaining object-like macros.
5431 * lisp.h (min, max): Move earlier, because they're used earlier now.
5432 (INTMASK, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK)
5433 (CHAR_TABLE_STANDARD_SLOTS, CHARTAB_SIZE_BITS_0)
5434 (CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2, CHARTAB_SIZE_BITS_3)
5435 (DEFAULT_HASH_SIZE, COMPILED_ARGLIST, COMPILED_BYTECODE)
5436 (COMPILED_CONSTANTS, COMPILED_STACK_DEPTH, COMPILED_DOC_STRING)
5437 (COMPILED_INTERACTIVE, CHAR_ALT, CHAR_SUPER, CHAR_HYPER, CHAR_SHIFT)
5438 (CHAR_CTL, CHAR_META, CHAR_MODIFIER_MASK, CHARACTERBITS)
5439 (MANY, UNEVALLED, FLOAT_TO_STRING_BUFSIZE, MAX_ALLOCA):
5440 Now constants, for GDB. They need not be macros.
5441 (MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM, STRING_BYTES_BOUND):
5442 Now constants, for GDB, as well as macros, for static initializers.
5443 (CHAR_TABLE_STANDARD_SLOTS, CHAR_TABLE_EXTRA_SLOTS):
5444 Move to after the definition of struct Lisp_Char_Table,
5445 since the former now needs that type defined.
5446 (enum CHARTAB_SIZE_BITS, enum CHAR_TABLE_STANDARD_SLOTS)
5447 (enum DEFAULT_HASH_SIZE, enum Lisp_Compiled, enum char_bits)
5448 (enum maxargs, enum FLOAT_TO_STRING_BUFSIZE, enum MAX_ALLOCA):
5449 New enums, for gdb_make_enums_visible.
5450 (GLYPH_MODE_LINE_FACE): Remove; unused.
5451 * alloc.c (STRING_BYTES_MAX): Now a constant, not a macro.
5452 (gdb_make_enums_visible): Add enum CHARTAB_SIZE_BITS, enum
5453 CHAR_TABLE_STANDARD_SLOTS, enum char_bits, enum DEFAULT_HASH_SIZE,
5454 enum FLOAT_TO_STRING_BUFSIZE, enum Lisp_Bits, enum Lisp_Compiled,
5455 enum maxargs, enum MAX_ALLOCA.
5456 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): Remove.
5457 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Remove;
5458 no longer needed, now that they are done in lisp.h.
5459
5460 2012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
5461
5462 Cleanup string bytes checking.
5463 * alloc.c (GC_STRING_BYTES, CHECK_STRING_BYTES): Remove. Convert
5464 all users to STRING_BYTES or string_bytes if GC_CHECK_STRING_BYTES.
5465 (check_string_bytes): Define to empty if not GC_CHECK_STRING_BYTES.
5466 (check_sblock, compact_small_strings): Simplify.
5467
5468 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
5469
5470 * lisp.h (LISP_INT_TAG, LISP_INT1_TAG, LISP_STRING_TAG): Remove.
5471 These macros are confusing and no longer need to be defined, as
5472 the enum values now suffice. All uses replaced with definiens.
5473 (Lisp_Int1, Lisp_String): Define directly; this is clearer.
5474
5475 2012-07-29 Juanma Barranquero <lekktu@gmail.com>
5476
5477 * makefile.w32-in (LISP_H, $(BLD)/emacs.$(O), $(BLD)/w32inevt.$(O))
5478 ($(BLD)/w32console.$(O)): Update dependencies.
5479
5480 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
5481
5482 Remove HIDE_LISP_IMPLEMENTATION and cleanup cons free list check.
5483 * lisp.h (HIDE_LISP_IMPLEMENTATION): Remove as useless for a long
5484 time. Adjust users.
5485 (CHECK_CONS_LIST): Remove. Convert all users to check_cons_list.
5486
5487 2012-07-29 Jan Djärv <jan.h.d@swipnet.se>
5488
5489 * lread.c (init_lread): Remove if-statement in ifdef HAVE_NS before
5490 setting sitelisp (Bug#12010).
5491
5492 2012-07-29 Eli Zaretskii <eliz@gnu.org>
5493
5494 * w32heap.h (OS_9X): Rename from OS_WINDOWS_95.
5495
5496 * w32heap.c (cache_system_info):
5497 * w32.c (sys_rename):
5498 * w32proc.c (find_child_console, sys_kill): All users changed.
5499
5500 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
5501
5502 * alloc.c (Fgarbage_collect): Indent as per usual Emacs style.
5503
5504 2012-07-29 Eli Zaretskii <eliz@gnu.org>
5505
5506 * makefile.w32-in (LISP_H): Add $(NT_INC)/stdalign.h.
5507
5508 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
5509
5510 Cleanup statistics calculation in Fgarbage_collect.
5511 * alloc.c (Fgarbage_collect): Rename t1 to meaningful start.
5512 Fix zombies percentage calculation. Simplify elapsed time calculation.
5513
5514 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
5515
5516 Generalize marker debugging code under MARKER_DEBUG and use eassert.
5517 * insdel.c (CHECK_MARKERS, check_markers_debug_flag): Remove.
5518 (gap_left, gap_right, adjust_markers_for_delete, insert_1_both)
5519 (insert_from_string_1, insert_from_gap, insert_from_buffer_1)
5520 (replace_range, replace_range_2, del_range_2): Change to eassert.
5521 * marker.c (byte_char_debug_check): Adjust style.
5522
5523 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
5524
5525 Don't use the abbreviation "win" to refer to Windows (Bug#10421).
5526 * regex.c (MAX_BUF_SIZE): Remove some incorrect and
5527 long-ago-commented-out code that talks about "WIN32".
5528 * w32heap.h (OS_WINDOWS_95): Rename from OS_WIN95.
5529 All uses changed.
5530
5531 2012-07-28 Paul Eggert <eggert@cs.ucla.edu>
5532
5533 Use Gnulib stdalign module (Bug#9772, Bug#9960).
5534 * alloc.c (XMALLOC_BASE_ALIGNMENT, GC_POINTER_ALIGNMENT, pure_alloc):
5535 Simplify by using alignof.
5536 (pure_alloc) [! USE_LSB_TAG]: Don't over-align EMACS_INT values.
5537 * lisp.h: Include <stdalign.h>.
5538 (GCALIGNMENT): New macro and constant.
5539 (DECL_ALIGN): Remove. All uses replaced by alignas (GCALIGNMENT).
5540 (USE_LSB_TAG): ifdef on alignas, not on DECL_ALIGN.
5541 (stdalign): New macro, if not already defined.
5542
5543 2012-07-28 Eli Zaretskii <eliz@gnu.org>
5544
5545 Fix non-ASCII input in non-GUI frames on MS-Windows. (Bug#12055)
5546 * w32inevt.c: Include w32inevt.h.
5547 (w32_read_console_input): New inline function, calls either
5548 ReadConsoleInputA or ReadConsoleInputW, depending on the value of
5549 w32_console_unicode_input.
5550 (fill_queue): Call w32_read_console_input instead of ReadConsoleInput.
5551 (w32_kbd_patch_key, key_event): Use the codepage returned by
5552 GetConsoleCP, rather than the ANSI codepage returned by GetLocaleInfo.
5553 (key_event): use uChar.UnicodeChar only if
5554 w32_console_unicode_input is non-zero.
5555
5556 * w32console.c: Include w32heap.h.
5557 <w32_console_unicode_input>: New global variable.
5558 (initialize_w32_display): Set w32_console_unicode_input to 1 on NT
5559 family of Windows, zero otherwise.
5560
5561 * w32inevt.h: Declare w32_console_unicode_input.
5562
5563 * xdisp.c (init_iterator): Don't reference tip_frame in a build
5564 --without-x. (Bug#11742)
5565
5566 2012-07-27 Paul Eggert <eggert@cs.ucla.edu>
5567
5568 Adjust GDB to reflect pvec_type changes (Bug#12036).
5569 * .gdbinit (xvectype, xpr, xbacktrace): Adjust to reflect the
5570 2012-07-04 changes to pseudovector representation.
5571 Problem reported by Eli Zaretskii in <http://bugs.gnu.org/12036#30>.
5572
5573 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
5574
5575 * dbusbind.c (XD_DBUS_VALIDATE_BUS_ADDRESS): Canonicalize session
5576 bus address.
5577 (xd_close_bus, Fdbus_init_bus): Handle reference counter properly.
5578
5579 2012-07-27 Eli Zaretskii <eliz@gnu.org>
5580
5581 * alloc.c (listn): Fix the order the arguments are consed onto the
5582 list.
5583
5584 * lisp.h (enum constype): Use CONSTYPE_HEAP and CONSTYPE_PURE for
5585 enumeration constants, as PURE and HEAP are too general, and clash
5586 with other headers and sources, such as gmalloc.c and the
5587 MS-Windows system headers. All users changed.
5588
5589 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
5590
5591 Revert last save_excursion_save and save_excursion_restore changes.
5592 * alloc.c, editfns.c, marker.c, lisp.h: Revert.
5593 Lots of crashes reported by Chong Yidong <cyd@gnu.org>.
5594
5595 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
5596
5597 Fix recently-introduced typos in Windows port.
5598 Reported by Martin Rudalics <rudalics@gmx.at>.
5599 * w32.c (init_environment): Replace comma with semicolon.
5600 * w32fns.c (syms_of_w32fns): Add missing parenthesis.
5601
5602 2012-07-27 Paul Eggert <eggert@cs.ucla.edu>
5603
5604 Improve GDB symbol export (Bug#12036).
5605 * .gdbinit (xgetptr, xgetint, xgettype): Set $bugfix in different
5606 arms of an 'if', not using conditional expressions; otherwise GDB
5607 complains about the types in the unevaluated arm when the argument
5608 is an integer literal.
5609 (xgetint): Simplify expression.
5610 * alloc.c (gdb_make_enums_visible): New constant. This ports to
5611 GCC 3.4.2 the export of symbols to GDB. Problem reported by Eli
5612 Zaretskii in <http://bugs.gnu.org/12036#13>.
5613 * lisp.h (PUBLISH_TO_GDB): Remove. All uses removed. No longer
5614 needed now that we have gdb_make_enums_visible.
5615 (enum CHECK_LISP_OBJECT_TYPE, enum Lisp_Bits, enum More_Lisp_Bits)
5616 (enum enum_USE_LSB_TAG):
5617 New enum types, packaging up enums that need to be exported to GDB.
5618
5619 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
5620
5621 Utility function to make a list from specified amount of objects.
5622 * lisp.h (enum constype): New datatype.
5623 (listn): New prototype.
5624 * alloc.c (listn): New function.
5625 (Fmemory_use_count, syms_of_alloc): Use it.
5626 * buffer.c (syms_of_buffer): Likewise.
5627 * callint.c (syms_of_callint): Likewise.
5628 * charset.c (define_charset_internal): Likewise.
5629 * coding.c (syms_of_coding): Likewise.
5630 * keymap.c (syms_of_keymap): Likewise.
5631 * search.c (syms_of_search): Likewise.
5632 * syntax.c (syms_of_syntax): Likewise.
5633 * w32.c (init_environment): Likewise.
5634 * w32fns.c (Fw32_battery_status, syms_of_w32fns): Likewise.
5635 * xdisp.c (syms_of_xdisp): Likewise.
5636 * xfns.c (syms_of_xfns): Likewise.
5637
5638 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
5639
5640 Fast save_excursion_save and save_excursion_restore.
5641 * lisp.h (struct Lisp_Excursion): New data type.
5642 (PVEC_EXCURSION): New pseudovector type.
5643 (XEXCURSION, XSETEXCURSION, EXCURSIONP): Convenient macros
5644 to deal with it. Adjust comments.
5645 (init_marker, attach_marker): New prototype.
5646 (unchain_marker): Adjust prototype.
5647 * marker.c (attach_marker): Change to global.
5648 (init_marker): New function.
5649 * alloc.c (Fmake_marker, build_marker): Use it.
5650 (build_marker): More easserts.
5651 (mark_object): Handle struct Lisp_Excursion.
5652 * editfns.c (save_excursion_save, save_excursion_restore):
5653 Reimplement to use struct Lisp_Excursion. Add comments.
5654
5655 2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
5656
5657 Fix export of symbols to GDB (Bug#12036).
5658 * alloc.c (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL)
5659 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Move these here from
5660 emacs.c, as this is a more-suitable home. Had this been done earlier
5661 the fix for 12036 would have avoided some of the problems noted in
5662 <http://bugs.gnu.org/12036#13> by Eli Zaretskii, as the scope problems
5663 would have been more obvious.
5664 * emacs.c: Do not include <verify.h>; no longer needed.
5665 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS)
5666 (gdb_GCTYPEBITS, gdb_USE_LSB_TAG)
5667 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
5668 Remove; now done in lisp.h.
5669 * lisp.h (PUBLISH_TO_GDB): New macro.
5670 (GCTYPEBITS, USE_LSB_TAG, CHECK_LISP_OBJECT_TYPE, enum pvec_type)
5671 (DATA_SEG_BITS): Use it.
5672 (GCTYPEBITS, USE_LSB_TAG): Now also an enum, for GDB.
5673 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Now just an enum, for GDB.
5674 * mem-limits.h (EXCEEDS_LISP_PTR): Redo so that DATA_SEG_BITS need
5675 not be usable in #if. This simplifies things.
5676
5677 2012-07-26 Juanma Barranquero <lekktu@gmail.com>
5678
5679 * makefile.w32-in ($(BLD)/emacs.$(O)): Update dependencies.
5680
5681 2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
5682
5683 Simplify export of symbols to GDB (Bug#12036).
5684 * .gdbinit (xgetptr, xgetint, xgettype): Don't use "set $bugfix =
5685 $bugfix.i", as this doesn't work (with GDB 7.4.1, anyway).
5686 (xgetptr, xgetint, xgettype, xcoding, xcharset, xprintbytestr):
5687 Adjust to changes in lisp.h and emacs.c, by using
5688 CHECK_LISP_OBJECT_TYPE rather than gdb_use_struct, VALMASK instead
5689 of $valmask, DATA_SEG_BITS instead of gdb_data_seg_bits,
5690 INTTYPEBITS instead of gdb_gctypebits - 1, USE_LSB_TAG instead of
5691 gdb_use_lsb, (1 << GCTYPEBITS) - 1 instead of $tagmask, VALBITS
5692 instead of gdb_valbits.
5693 (xvectype, xvector, xpr, xprintstr, xbacktrace): Similarly, use
5694 PSEUDOVECTOR_FLAG instead of PVEC_FLAG, and ARRAY_MARK_FLAG
5695 instead of gdb_array_mark_flag.
5696 (xboolvector): Get size from $->size, not $->header.size.
5697 Use BOOL_VECTOR_BITS_PER_CHAR rather than mystery constants.
5698 (xreload, hook-run, hookpost-run): Remove.
5699 * emacs.c: Include <verify.h>.
5700 (gdb_use_lsb, gdb_use_struct, gdb_valbits, gdb_gctypebits)
5701 (gdb_data_seg_bits, PVEC_FLAG, gdb_array_mark_flag, gdb_pvec_type):
5702 Remove.
5703 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS, gdb_GCTYPEBITS)
5704 (gdb_USE_LSB_TAG): New enum constants.
5705 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
5706 Also define these as enum constants, so they're visible to GDB.
5707 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): New macros.
5708 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Also define these
5709 as constants, so they're visible to GDB.
5710 * lisp.h (VALBITS, INTTYPEBITS, FIXNUM_BITS, PSEUDOVECTOR_SIZE_BITS)
5711 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK, BOOL_VECTOR_BITS_PER_CHAR):
5712 Now enum constants, not macros, so they're visible to GDB.
5713 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Default to 0, as this is
5714 more convenient now. All uses changed.
5715 (VALMASK) [USE_LSB_TAG]: Also define in this case.
5716 * mem-limits.h (EXCEEDS_LISP_PTR): Adjust to DATA_SEG_BITS change.
5717
5718 2012-07-26 Dmitry Antipov <dmantipov@yandex.ru>
5719
5720 Explicitly free restriction data that are not needed anymore.
5721 * editfns.c (save_restriction_restore): Free restriction data.
5722
5723 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
5724
5725 * eval.c (Fautoload_do_load): Rename from do_autoload, export to Lisp,
5726 add argument, tune behavior, and adjust all callers.
5727
5728 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
5729
5730 Use typedef for EMACS_INT, EMACS_UINT.
5731 * lisp.h, s/ms-w32.h (EMACS_INT, EMACS_UINT): Use typedefs rather
5732 than macros. This simplifies debugging in the usual case, since
5733 it lets GDB show addresses as 'EMACS_INT *' rather than 'long int *'
5734 and it allows expressions involving EMACS_INT casts.
5735 * .gdbinit (xreload): Simplify by using EMACS_INT cast.
5736
5737 2012-07-25 Jan Djärv <jan.h.d@swipnet.se>
5738
5739 * nsterm.m (ns_read_socket): Return early if there is a modal
5740 window (Bug#12043).
5741
5742 2012-07-25 Martin Rudalics <rudalics@gmx.at>
5743
5744 * frame.c (Fredirect_frame_focus): In doc-string don't mention
5745 that FOCUS-FRAME can be omitted.
5746
5747 2012-07-25 Dmitry Antipov <dmantipov@yandex.ru>
5748
5749 Adjust buffer text indirection counters at the end of Fkill_buffer.
5750 * buffer.c (Fkill_buffer): Adjust indirection counters when the
5751 buffer is definitely dead. This should really fix an issue reported
5752 by Christoph Scholtes again. (Bug#12007).
5753 (init_buffer_once): Initialize indirection counters of
5754 buffer_defaults and buffer_local_symbols (for sanity and safety).
5755
5756 2012-07-24 Eli Zaretskii <eliz@gnu.org>
5757
5758 * xdisp.c (init_iterator): Don't compute dimensions of truncation
5759 and continuation glyphs on tooltip frames, leave them at zero.
5760 Avoids continued lines in tooltips. (Bug#11832)
5761
5762 2012-07-24 Dmitry Antipov <dmantipov@yandex.ru>
5763
5764 Simplify copy_overlay.
5765 * buffer.c (copy_overlay): Simplify. Use build_marker.
5766 * lisp.h (struct Lisp_Overlay): Restore comment with minor tweaks.
5767
5768 2012-07-23 Eli Zaretskii <eliz@gnu.org>
5769
5770 * print.c (print_object): Don't crash when a frame's name is nil
5771 or invalid. (Bug#12025)
5772
5773 * window.c (decode_any_window): Disable CHECK_LIVE_FRAME test, as
5774 it signals an error when a tooltip frame is being created.
5775
5776 2012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
5777
5778 Cleanup miscellaneous objects allocation and initialization.
5779 * alloc.c (allocate_misc): Change to static. Add argument to
5780 specify the subtype. Adjust comment and users.
5781 (build_overlay): New function.
5782 * buffer.c (copy_overlays, Fmake_overlay): Use it.
5783 * lisp.h (struct Lisp_Overlay): Remove obsolete comment.
5784 (allocate_misc): Remove prototype.
5785 (build_overlay): Add prototype.
5786
5787 2012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
5788
5789 Swap buffer text indirection counters in Fbuffer_swap_text.
5790 * buffer.c (Fbuffer_swap_text): Swap indirections too.
5791 This avoids crash reported by Christoph Scholtes at
5792 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00785.html.
5793
5794 2012-07-22 Jan Djärv <jan.h.d@swipnet.se>
5795
5796 * nsmenu.m (Popdown_data): New struct.
5797 (pop_down_menu): p->pointer is Popdown_data. Release the pool and
5798 free Popdown_data.
5799 (ns_popup_dialog): Use NSAutoreleasePool and pass it to pop_down_menu.
5800 (initWithContentRect): Make imgView and contentView non-static
5801 and autorelease them. Also autorelease img and matrix (Bug#12005).
5802 (dealloc): Remove (Bug#12005).
5803
5804 2012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
5805
5806 Adjust consing_since_gc when objects are explicitly freed.
5807 * alloc.c (GC_DEFAULT_THRESHOLD): New macro.
5808 (Fgarbage_collect): Use it. Change minimum to 1/10 of default.
5809 (free_cons, free_misc): Subtract object size from consing_since_gc.
5810
5811 2012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
5812
5813 Simplify and cleanup markers positioning code.
5814 * marker.c (attach_marker): More useful eassert.
5815 (live_buffer, set_marker_internal): New function.
5816 (Fset_marker, set_marker_restricted): Use set_marker_internal.
5817 (set_marker_both, set_marker_restricted_both): Use live_buffer.
5818
5819 2012-07-22 Paul Eggert <eggert@cs.ucla.edu>
5820
5821 * buffer.h (struct buffer.indirections): Now ptrdiff_t, not int,
5822 as it's limited by the amount of memory, not by INT_MAX.
5823
5824 2012-07-21 Eli Zaretskii <eliz@gnu.org>
5825
5826 * keyboard.c (keys_of_keyboard): Bind language-change to 'ignore'
5827 in special-event-map. See the discussion at
5828 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00417.html
5829 for the reasons.
5830
5831 * w32menu.c (add_menu_item): Cast to ULONG_PTR when assigning
5832 info.dwItemData. Fixes crashes on 64-bit Windows.
5833 Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
5834
5835 2012-07-21 Jan Djärv <jan.h.d@swipnet.se>
5836
5837 * nsterm.m (accessibilityAttributeValue): New function. (Bug#11134).
5838 (conversationIdentifier): Return value is NSInteger.
5839 * nsterm.m (accessibilityAttributeValue): Surround with NS_IMPL_COCOA.
5840
5841 2012-07-21 Chong Yidong <cyd@gnu.org>
5842
5843 * window.c (decode_any_window): Signal an error if the window is
5844 on a dead frame (Bug#11984).
5845
5846 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
5847
5848 Add indirection counting to speed up Fkill_buffer.
5849 * buffer.h (struct buffer): New member.
5850 * buffer.c (Fget_buffer_create): Set indirection counter to 0.
5851 (Fmake_indirect_buffer): Set indirection counter to -1, increment
5852 base buffer indirection counter.
5853 (compact_buffer): If ENABLE_CHECKING, verify indirection counters.
5854 (Fkill_buffer): Adjust indirection counters as needed, don't walk
5855 through buffer list if indirection counter is 0.
5856
5857 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
5858
5859 Extend the value returned by Fgarbage_collect with heap statistics.
5860 * alloc.c (Qheap): New symbol.
5861 (syms_of_alloc): DEFSYM it.
5862 (Fgarbage_collect): If DOUG_LEA_MALLOC, add mallinfo data.
5863 (Fmemory_free): Remove.
5864 (syms_of_alloc): Don't defsubr it.
5865 * buffer.c (Fcompact_buffer): Remove.
5866 (syms_of_buffer): Don't defsubr it.
5867
5868 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
5869
5870 Make maybe_gc inline.
5871 Verify that inlining is always possible (GCC 4.7.1, -O3 -Winline).
5872 * lisp.h (consing_since_gc, gc_relative_threshold)
5873 (memory_full_cons_threshold): Revert declaration.
5874 (maybe_gc): Remove prototype, define as inline.
5875 * alloc.c: Remove old commented-out code.
5876 (consing_since_gc, gc_relative_threshold)
5877 (memory_full_cons_threshold): Revert to global.
5878 (maybe_gc): Remove.
5879
5880 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
5881
5882 Simple wrapper for make_unibyte_string, adjust font_open_by_name.
5883 * lisp.h (build_unibyte_string): New function.
5884 * dosfns.c, fileio.c, fns.c, ftfont.c, process.c:
5885 * sysdep.c, w32fns.c, xfns.c: Use it.
5886 * font.c (font_open_by_name): Change 2nd and 3rd args to the only arg
5887 of type Lisp_Object to avoid redundant calls to make_unibyte_string.
5888 Adjust users accordingly.
5889 * font.h (font_open_by_name): Adjust prototype.
5890
5891 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
5892
5893 Cleanup calls to Fgarbage_collect.
5894 * lisp.h (maybe_gc): New prototype.
5895 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
5896 Remove declarations.
5897 * alloc.c (maybe_gc): New function.
5898 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
5899 Make them static.
5900 * bytecode.c (MAYBE_GC): Use maybe_gc.
5901 * eval.c (eval_sub, Ffuncall): Likewise.
5902 * keyboard.c (read_char): Likewise. Adjust call to maybe_gc
5903 to avoid dependency from auto-save feature.
5904
5905 2012-07-19 Paul Eggert <eggert@cs.ucla.edu>
5906
5907 * buffer.h (FOR_EACH_BUFFER): Rename from 'for_each_buffer'.
5908 (FOR_EACH_PER_BUFFER_OBJECT_AT): Rename from
5909 'for_each_per_buffer_object_at'.
5910 All uses changed. It's better to use upper-case for macros that
5911 cannot be implemented as functions, to give the reader a clue
5912 that they're special.
5913
5914 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
5915
5916 * alloc.c (Fgarbage_collect): Tweak docstring.
5917
5918 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
5919
5920 Tweak the value returned from Fgarbage_collect again.
5921 * alloc.c (Fgarbage_collect): New return value, as confirmed in
5922 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00418.html.
5923 Adjust documentation.
5924 (total_vector_bytes): Rename to total_vector_slots, adjust
5925 accounting.
5926 (total_free_vector_bytes): Rename to total_free_vector_slots,
5927 adjust accounting.
5928 (Qstring_bytes, Qvector_slots): New symbols.
5929 (syms_of_alloc): DEFSYM them.
5930
5931 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
5932
5933 Buffer compaction primitive which may be used from Lisp.
5934 * buffer.c (compact_buffer, Fcompact_buffer): New function.
5935 (syms_of_buffer): Register Fcompact_buffer.
5936 * alloc.c (Fgarbage_collect): Use compact_buffer.
5937 * buffer.h (compact_buffer): New prototype.
5938 (struct buffer_text): New member.
5939
5940 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
5941
5942 New macro to iterate over all buffers, miscellaneous cleanups.
5943 * lisp.h (all_buffers): Remove declaration.
5944 * buffer.h (all_buffers): Add declaration, with comment.
5945 (for_each_buffer): New macro.
5946 * alloc.c (Fgarbage_collect, mark_object): Use it.
5947 * buffer.c (Fkill_buffer, Fbuffer_swap_text, Fset_buffer_multibyte)
5948 (init_buffer): Likewise.
5949 * data.c (Fset_default): Likewise.
5950 * coding.c (code_conversion_restore): Remove redundant check
5951 for dead buffer.
5952 * buffer.c (Fkill_buffer): Likewise. Remove obsolete comment.
5953
5954 2012-07-18 Andreas Schwab <schwab@linux-m68k.org>
5955
5956 Fix bug that created negative-length intervals.
5957 * intervals.c (merge_interval_right, merge_interval_left):
5958 Do not zero out this interval if it is absorbed by its children,
5959 as this interval's total length doesn't change in that case. See
5960 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00403.html>.
5961
5962 2012-07-18 Paul Eggert <eggert@cs.ucla.edu>
5963
5964 * alloc.c (Fmake_bool_vector): Fix off-by-8 bug
5965 when invoking (make-bool-vector N t) and N is a positive
5966 multiple of 8 -- the last 8 bits were mistakenly cleared.
5967
5968 Remove some struct layout assumptions in bool vectors.
5969 * alloc.c (bool_header_size): New constant.
5970 (header_size, word_size): Move earlier, as they're now used earlier.
5971 Use 'word_size' in a few more places, where it's appropriate.
5972 (Fmake_bool_vector, sweep_vectors): Don't assume that there is no
5973 padding before the data member of a bool vector.
5974 (sweep_vectors): Use PSEUDOVECTOR_TYPEP, in an eassert, rather
5975 than doing the check by hand with an abort ().
5976
5977 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
5978
5979 * eval.c (Fdefvar): Don't check constants since we only set the var if
5980 it's not yet defined anyway (bug#11904).
5981
5982 * lisp.h (last_undo_boundary): Declare new var.
5983 * keyboard.c (command_loop_1): Set it.
5984 * cmds.c (Fself_insert_command): Use it to only remove boundaries that
5985 were auto-added by the command loop (bug#11774).
5986
5987 2012-07-18 Andreas Schwab <schwab@linux-m68k.org>
5988
5989 * w32font.c (Qsymbol): Remove local definition.
5990 (syms_of_w32font): Don't DEFSYM it.
5991
5992 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
5993
5994 Fix sweep_vectors to handle large bool vectors correctly.
5995 * alloc.c (sweep_vectors): Account total_vector_bytes for
5996 bool vectors larger than VBLOCK_BYTES_MAX.
5997
5998 2012-07-18 Chong Yidong <cyd@gnu.org>
5999
6000 * frame.c (x_set_frame_parameters): Revert bogus change introduced
6001 in 2012-05-25 commit by Paul Eggert (Bug#11738).
6002
6003 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
6004
6005 Return more descriptive data from Fgarbage_collect.
6006 Suggested by Stefan Monnier in
6007 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00369.html.
6008 * alloc.c (bounded_number): New function.
6009 (total_buffers, total_vectors): New variable.
6010 (total_string_size): Rename to total_string_bytes, adjust users.
6011 (total_vector_size): Rename to total_vector_bytes, adjust users.
6012 (sweep_vectors): Account total_vectors and total_vector_bytes.
6013 (Fgarbage_collect): New return value. Adjust documentation.
6014 (gc_sweep): Account total_buffers.
6015 (Fmemory_free, Fmemory_use_counts): Use bounded_number.
6016 (VECTOR_SIZE): Remove.
6017 * data.c (Qfloat, Qvector, Qsymbol, Qstring, Qcons): Make global.
6018 (Qinterval, Qmisc): New symbols.
6019 (syms_of_data): Initialize them.
6020 * lisp.h (Qinterval, Qsymbol, Qstring, Qmisc, Qvector, Qfloat)
6021 (Qcons, Qbuffer): New declarations.
6022
6023 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
6024
6025 * alloc.c (Fmemory_free): Account for memory-free's own storage.
6026 Round up, not down. Improve doc.
6027
6028 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
6029
6030 Restore old code in allocate_string_data to avoid Faset breakage.
6031 Reported by Julien Danjou <julien@danjou.info> in
6032 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00371.html.
6033 * alloc.c (allocate_string_data): Restore old code with minor
6034 adjustments, fix comment to explain this subtle issue.
6035
6036 2012-07-17 Eli Zaretskii <eliz@gnu.org>
6037
6038 Remove FILE_SYSTEM_CASE.
6039 * s/msdos.h (FILE_SYSTEM_CASE): Don't define.
6040
6041 * fileio.c (FILE_SYSTEM_CASE): Don't define.
6042 (Ffile_name_directory, Fexpand_file_name): Don't use FILE_SYSTEM_CASE.
6043 Fixes problems on MS-DOS with Vtemp_file_name_pattern when
6044 call-process-region passes it through expand-file-name.
6045
6046 * dired.c (file_name_completion): Don't use FILE_SYSTEM_CASE.
6047
6048 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
6049
6050 Fix crash when creating indirect buffer (Bug#11917)
6051 * buffer.c (buffer_lisp_local_variables): Add argument CLONE.
6052 Don't handle unbound variables specially if non-zero.
6053 (Fbuffer_local_variables): Pass zero.
6054 (clone_per_buffer_values): Pass non-zero.
6055
6056 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
6057
6058 * gnutls.c (emacs_gnutls_handshake): Revert last change. Add QUIT
6059 to make the loop interruptible.
6060
6061 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
6062
6063 * gnutls.c (emacs_gnutls_handshake): Only retry if
6064 GNUTLS_E_INTERRUPTED.
6065
6066 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
6067
6068 Cleanup and convert miscellaneous checks to eassert.
6069 * alloc.c (mark_interval): Fix comment, partially rephrase
6070 old comment from intervals.h (see below).
6071 * intervals.c (find_interval, adjust_intervals_for_insertion)
6072 (delete_interval, adjust_intervals_for_deletion)
6073 (graft_intervals_into_buffer, temp_set_point_both, copy_intervals):
6074 Convert to eassert.
6075 (adjust_intervals_for_insertion, make_new_interval):
6076 Remove obsolete and unused code.
6077 * intervals.h (struct interval): Remove obsolete comment.
6078 * textprotp.c (erase_properties): Remove unused code.
6079 (Fadd_text_properties, set_text_properties_1, Fremove_text_properties)
6080 (Fremove_list_of_text_properties): Convert to eassert.
6081
6082 2012-07-17 Chong Yidong <cyd@gnu.org>
6083
6084 * editfns.c (Finsert_char): Doc fix.
6085
6086 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
6087
6088 Fix previous change to make Fmemory_free always accurate.
6089 * alloc.c (make_interval): Update total_free_intervals.
6090 (make_float): Likewise for total_free_floats.
6091 (free_cons, Fcons): Likewise for total_free_conses.
6092 (SETUP_ON_FREE_LIST, allocate_vector_from_block):
6093 Likewise for total_free_vector_bytes.
6094 (Fmake_symbol): Likewise for total_free_symbols.
6095 (bytes_free): Remove.
6096
6097 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
6098
6099 Simple free memory accounting feature.
6100 * alloc.c (bytes_free, total_free_vector_bytes): New variable.
6101 (sweep_vectors): Accumulate size of free vectors.
6102 (Fgarbage_collect): Setup bytes_free.
6103 (Fmemory_free): New function.
6104 (syms_of_alloc): Register it.
6105
6106 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
6107
6108 Cleanup overlays checking.
6109 * buffer.h (OVERLAY_VALID): Remove as useless synonym of OVERLAYP.
6110 * buffer.c (overlay_touches_p, recenter_overlay_lists): Change to
6111 eassert and OVERLAYP.
6112 (sort_overlays): Change to use OVERLAYP.
6113
6114 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
6115
6116 * editfns.c (Finsert_char): Make it interactive, and make the
6117 second arg optional. Copy interactive spec and docstring from
6118 ucs-insert.
6119
6120 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
6121
6122 * floatfns.c (Fabs): Do not wrap fabs inside IN_FLOAT (Bug#11913).
6123 Unlike the other wrapped functions, fabs has an unspecified
6124 effect on errno.
6125
6126 2012-07-16 Jan Djärv <jan.h.d@swipnet.se>
6127
6128 * nsterm.m (keyDown): Interpret flags without left/right bits
6129 as the left key (Bug#11670).
6130
6131 2012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
6132
6133 Remove empty and useless init functions.
6134 * lisp.h (init_character_once, init_fns, init_image)
6135 (init_filelock, init_sound): Remove prototype.
6136 * character.c (init_character_once): Remove.
6137 * filelock.c (init_filelock): Likewise.
6138 * fns.c (init_fns): Likewise.
6139 * image.c (init_image): Likewise.
6140 * sound.c (init_sound): Likewise.
6141 * emacs.c (main): Adjust accordingly.
6142
6143 2012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
6144
6145 * gtkutil.h: Tiny cleanups.
6146 (use_old_gtk_file_dialog): Remove useless declaration.
6147 (xg_uses_old_file_dialog): Add suggested const attribute.
6148
6149 2012-07-15 Eli Zaretskii <eliz@gnu.org>
6150
6151 * bidi.c (MAX_STRONG_CHAR_SEARCH): New macro.
6152 (bidi_paragraph_init): Use it to limit search forward for a strong
6153 directional character in abnormally large paragraphs full of
6154 neutral or weak characters. (Bug#11943)
6155
6156 2012-07-15 Stefano Facchini <stefano.facchini@gmail.com> (tiny change)
6157
6158 * gtkutil.c (xg_create_tool_bar): Apply "primary-toolbar" style to
6159 the toolbar (Bug#9451).
6160 (xg_make_tool_item): Give the widget event box a transparent
6161 background.
6162
6163 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
6164
6165 Cleanup basic allocation variables and functions.
6166 * alloc.c (ignore_warnings, init_intervals, init_float)
6167 (init_cons, init_symbol, init_marker): Remove.
6168 (interval_block_index): Initialize to INTERVAL_BLOCK_SIZE.
6169 (float_block_index): Initialize to FLOAT_BLOCK_SIZE.
6170 (cons_block_index): Initialize to CONS_BLOCK_SIZE.
6171 (symbol_block_size): Initialize to SYMBOL_BLOCK_SIZE.
6172 (marker_block_index): Initialize to MARKER_BLOCK_SIZE.
6173 (staticidx, init_alloc_once, init_strings, free_ablock):
6174 Remove redundant initialization.
6175 * fns.c (init_weak_hash_tables): Remove.
6176 * lisp.h (init_weak_hash_tables): Remove prototype.
6177
6178 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
6179
6180 Use zero_vector where appropriate.
6181 * alloc.c (zero_vector): Define as Lisp_Object. Adjust users
6182 accordingly.
6183 * lisp.h (zero_vector): New declaration.
6184 * font.c (null_vector): Remove.
6185 (syms_of_font): Remove initialization and staticpro.
6186 (font_list_entities, font_find_for_lface): Change to use zero_vector.
6187 * keymap.c (Faccessible_keymaps): Likewise.
6188
6189 2012-07-15 Leo Liu <sdl.web@gmail.com>
6190
6191 * fringe.c: Fix typo in comments.
6192
6193 2012-07-14 Leo Liu <sdl.web@gmail.com>
6194
6195 * fringe.c: Add a new bitmap exclamation-mark.
6196
6197 2012-07-14 Eli Zaretskii <eliz@gnu.org>
6198
6199 * gmalloc.c (GMALLOC_INHIBIT_VALLOC): Don't reference.
6200
6201 * s/msdos.h (BSD_SYSTEM, DATA_START, GC_SETJMP_WORKS, HAVE_MOUSE)
6202 (HAVE_MENUS): Don't define, defined by editing config.in with
6203 msdos/sed2v2.inp.
6204 (GMALLOC_INHIBIT_VALLOC): Don't define.
6205 (MODE_LINE_BINARY_TEXT): Remove, not used anymore.
6206
6207 2012-07-14 Juanma Barranquero <lekktu@gmail.com>
6208
6209 * s/ms-w32.h (GC_SETJMP_WORKS, GC_MARK_STACK): Set in nt/config.nt.
6210
6211 2012-07-14 Glenn Morris <rgm@gnu.org>
6212
6213 * s/aix4-2.h, s/freebsd.h, s/gnu-linux.h, s/hpux10-20.h:
6214 * s/irix6-5.h, s/netbsd.h, s/sol2-6.h, s/unixware.h:
6215 Let configure set GC_SETJMP_WORKS, GC_MARK_STACK.
6216
6217 2012-07-13 Glenn Morris <rgm@gnu.org>
6218
6219 * s/gnu-linux.h (GC_MARK_SECONDARY_STACK): Let configure set it.
6220
6221 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Let configure set it.
6222 * s/irix6-5.h (SETUP_SLAVE_PTY): No more need to unset it.
6223
6224 2012-07-13 Jan Djärv <jan.h.d@swipnet.se>
6225
6226 * nsterm.m (uRect): Only define if NS_IMPL_GNUSTEP.
6227 (x_free_frame_resources): Pass x_free_frame_resources to NSTRACE.
6228 (ns_lisp_to_color, ns_string_to_lispmod, ns_term_init)
6229 (ns_term_shutdown, requestService, initFrameFromEmacs): Use SSDATA
6230 where appropriate.
6231 (ns_exec_path, ns_load_path, changeFont): Put () around assignment used
6232 as boolean expression.
6233 (x_set_window_size): Remove unused variable toolbar.
6234 (ns_get_color_default, ns_mod_to_lisp): Remove.
6235 (ns_mouse_position): Remove unused variables xchar and ychar.
6236 (ns_compute_glyph_string_overhangs): Remove unused variable face.
6237 (ns_set_vertical_scroll_bar): Remove unused variable count.
6238 (ns_delete_terminal): Remove unused variable i.
6239 (ns_term_init): Remove unused variables r, g and b.
6240 (mouseDown): Remove unused variable window.
6241 (windowDidResize): Move definition of theWindow inside NS_IMPL_GNUSTEP.
6242 (initFrameFromEmacs): Remove unused variable vbextra.
6243 (mouseEntered): Remove unused variables p and dpyinfo.
6244 (mouseExited): Remove unused variables p and r.
6245 (ns_define_frame_cursor, ns_clear_frame_area)
6246 (ns_draw_window_cursor, ns_initialize_display_info): Make static.
6247 (menuDown): Assign [sender tag] to variable and cast the variable.
6248
6249 * nsterm.h (menuDown): Add id as type to argument sender.
6250 (ns_display_info_for_name): Add Lisp_Object argument.
6251 (ns_term_init): Add Lisp_Object argument.
6252 (ns_map_event_to_object): Add void argument.
6253 (ns_string_from_pasteboard, ns_string_to_pasteboard): Add correct
6254 prototype with arguments and only declare if __OBJC__.
6255 (nxatoms_of_nsselect): Add void argument.
6256 (ns_lisp_to_cursor_type): Add Lisp_Object argument.
6257 (ns_alloc_autorelease_pool): Add void argument.
6258 (ns_release_autorelease_pool): Add void* argument.
6259 (ns_get_defaults_value): Add const char* argument.
6260
6261 * nsmenu.m (ns_update_menubar, ns_menu_show, process_dialog)
6262 (initFromContents): Use SSDATA where appropriate.
6263 (ns_update_menubar): Add braces to ambigous if-else.
6264 (initWithTitle): Put () around assignment in if statement.
6265 (ns_menu_show): Remove unused variables window and keymap.
6266 (update_frame_tool_bar): Remove unused variable selected_p.
6267 (initWithContentRect): Remove unused variable this_cmd_name.
6268
6269 * nsimage.m (ns_load_image, allocInitFromFile): Use SSDATA where
6270 appropriate.
6271 (setXBMColor): Remove unused variable len.
6272 (setPixmapData): Put () around assignment in loop statement.
6273
6274 * nsfont.m (ns_get_family, ns_lang_to_script, ns_otf_to_script)
6275 (ns_registry_to_script, ns_get_req_script, nsfont_open): Use SSDATA
6276 where appropriate.
6277 (ns_get_covering_families, ns_findfonts, nsfont_list_family): Put ()
6278 around assignment in loop statement.
6279 (nsfont_open): Remove unused variable i.
6280 (nsfont_open): Remove unused variable len.
6281 (nsfont_draw): Remove unused variable cs.
6282
6283 * nsfns.m (x_set_icon_name, ns_set_name_internal)
6284 (ns_set_name_as_filename, ns_implicitly_set_icon_type)
6285 (x_set_icon_type, ns_lisp_to_cursor_type, Fns_read_file_name)
6286 (Fns_get_resource, Fns_set_resource, Fx_open_connection)
6287 (Fns_font_name, Fns_perform_service)
6288 (Fns_convert_utf8_nfd_to_nfc, ns_do_applescript)
6289 (Fns_do_applescript, Fx_show_tip): Use SSDATA where appropriate.
6290 (ns_set_name): Remove unused variable view.
6291 (x_set_menu_bar_lines): Remove unused variable olines.
6292 (x_set_tool_bar_lines): Remove unused variable root_window.
6293 (Fns_list_colors): Put () around assignment in while statement.
6294 (Fns_perform_service): Remove unused variable len.
6295 (Fns_display_usable_bounds): Remove unused variable top.
6296 (syms_of_nsfns): Remove unused variable i.
6297
6298 * nsmenu.m (ns_update_menubar): Exchange place of argument 2 and 3 to
6299 memcpy (Bug#11907).
6300
6301 2012-07-13 Kalle Kankare <kalle.kankare@iki.fi> (tiny change)
6302
6303 * image.c (Fimagemagick_types): Initialize ex with GetExceptionInfo
6304 and free it with DestroyExceptionInfo (Bug#11558).
6305
6306 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
6307
6308 * s/ms-w32.h (FIRST_PTY_LETTER, HAVE_SOCKETS): Move to nt/config.nt.
6309 (HAVE_ATTRIBUTE_ALIGNED, HAVE_C99_STRTOLD, HAVE___BUILTIN_UNWIND_INIT):
6310 Set here, not in nt/config.nt.
6311
6312 2012-07-13 Eli Zaretskii <eliz@gnu.org>
6313
6314 * xdisp.c (move_it_in_display_line_to): On GUI terminals, allow
6315 cursor overflow into the last glyph on display line when the right
6316 fringe is off. (Bug#11832)
6317
6318 2012-07-13 Paul Eggert <eggert@cs.ucla.edu>
6319
6320 * xdisp.c (produce_special_glyphs): Now static.
6321 * dispextern.h (produce_special_glyphs): Remove decl.
6322
6323 2012-07-13 Glenn Morris <rgm@gnu.org>
6324
6325 * s/bsd-common.h, s/cygwin.h: Remove empty files.
6326 * s/freebsd.h, s/netbsd.h: Do not include bsd-common.h.
6327
6328 * s/usg5-4-common.h (USG, USG5):
6329 * s/template.h (USG5, USG, HPUX, BSD4_2, BSD_SYSTEM):
6330 * s/sol2-6.h (SOLARIS2):
6331 * s/irix6-5.h (IRIX6_5):
6332 * s/hpux10-20.h (USG, USG5, HPUX):
6333 * s/gnu-linux.h (USG, GNU_LINUX):
6334 * s/freebsd.h (BSD_SYSTEM):
6335 * s/darwin.h (BSD4_2, BSD_SYSTEM, DARWIN_OS):
6336 * s/cygwin.h (CYGWIN):
6337 * s/bsd-common.h (BSD_SYSTEM, BSD4_2):
6338 * s/aix4-2.h (USG, USG5, _AIX): Move "system type" macros to configure.
6339
6340 2012-07-13 BT Templeton <bpt@hcoop.net> (tiny change)
6341
6342 * nsfont.m (ns_charset_covers): Don't abort if no bitmap (Bug#11853).
6343
6344 2012-07-13 Glenn Morris <rgm@gnu.org>
6345
6346 * s/usg5-4-common.h (NSIG_MINIMUM): Let configure set it.
6347
6348 * s/gnu-linux.h, s/irix6-5.h: Let configure set ULIMIT_BREAK_VALUE.
6349
6350 * process.c (init_process_emacs): Replace MIN_PTY_KERNEL_VERSION.
6351 * s/darwin.h (MIN_PTY_KERNEL_VERSION): Remove single-use macro.
6352
6353 2012-07-12 Glenn Morris <rgm@gnu.org>
6354
6355 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Move to configure.
6356
6357 * process.c (init_process_emacs): Rename from init_process.
6358 The old name is also the name of a Mach system call.
6359 * lisp.h, emacs.c: Update for this name change.
6360 * nsgui.h, sysselect.h, s/darwin.h: Remove workaround that is no
6361 longer needed.
6362
6363 2012-07-12 Eli Zaretskii <eliz@gnu.org>
6364
6365 * xdisp.c (insert_left_trunc_glyphs): Fix incorrect size in
6366 memmove call that removes glyphs covered by the left truncation
6367 glyph. Improve commentary.
6368 (display_line): Fix display of continuation glyphs on GUI frames
6369 when the right fringe is turned off and variable-size fonts are
6370 used in the window. Move the code that appends a stretch glyph to
6371 produce_special_glyphs, so that it could be used for truncation
6372 and continuation glyphs alike.
6373 (produce_special_glyphs) [HAVE_WINDOW_SYSTEM]: Produce a stretch
6374 glyph of a suitably computed width, to align the special glyphs at
6375 the window margin. Code moved from display_line. (Bug#11832)
6376
6377 2012-07-12 Glenn Morris <rgm@gnu.org>
6378
6379 * s/aix4-2.h, s/hpux10-20.h: Let configure set NO_EDITRES.
6380
6381 * s/gnu-linux.h, s/hpux10-20.h:
6382 Do not unconditionally define HAVE_XRMSETDATABASE.
6383
6384 * s/gnu-linux.h (UNIX98_PTYS): Let configure set it.
6385
6386 2012-07-12 Paul Eggert <eggert@cs.ucla.edu>
6387
6388 Fix typos that broke OS X build.
6389 Reported by Randal L. Schwartz in
6390 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00225.html>.
6391 * nsterm.m (ns_timeout): Add missing local decl.
6392 (ns_get_color): snprintf -> sprintf, to fix typo.
6393
6394 2012-07-12 Glenn Morris <rgm@gnu.org>
6395
6396 * src/s/aix4-2.h, src/s/cygwin.h, src/s/darwin.h:
6397 * src/s/gnu-linux.h, src/s/hpux10-20.h, src/s/irix6-5.h:
6398 * src/s/sol2-6.h, src/s/unixware.h, src/s/usg5-4-common.h:
6399 Move PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF to configure.
6400
6401 * s/cygwin.h, s/darwin.h, s/gnu-linux.h, s/irix6-5.h:
6402 Move PTY_OPEN to configure.
6403
6404 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
6405 * s/gnu-linux.h, s/hpux10-20.h, s/irix6-5.h, s/template.h:
6406 * s/usg5-4-common.h: Move FIRST_PTY_LETTER, PTY_ITERATION to configure.
6407
6408 2012-07-12 Dmitry Antipov <dmantipov@yandex.ru>
6409
6410 Use empty_unibyte_string where applicable.
6411 * keyboard.c (parse_tool_bar_item): Use empty_unibyte_string.
6412 * lread.c (read1): Likewise.
6413 * xsettings.c (syms_of_xsettings): Likewise.
6414
6415 2012-07-12 Glenn Morris <rgm@gnu.org>
6416
6417 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC):
6418 * s/freebsd.h (BROKEN_PTY_READ_AFTER_EAGAIN):
6419 * s/irix6-5.h (SETPGRP_RELEASES_CTTY, PREFER_VSUSP):
6420 * s/hpux10-20.h (RUN_TIME_REMAP):
6421 * s/bsd-common.h (TABDLY): Move to configure.
6422
6423 * s/hpux10-20.h, s/sol2-6.h: Move XOS_NEEDS_TIME_H to configure.
6424
6425 * s/bsd-common.h, s/darwin.h: Move TAB3 to configure.
6426
6427 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
6428 (BROKEN_SIGPOLL, BROKEN_GET_CURRENT_DIR_NAME): Let configure set them.
6429
6430 * s/darwin.h (NO_ABORT, NO_MATHERR): Let configure set them.
6431
6432 * s/bsd-common.h, s/cygwin.h, s/gnu-linux.h, s/irix6-5.h:
6433 * s/template.h: Move NARROWPROTO to configure.
6434
6435 2012-07-11 Glenn Morris <rgm@gnu.org>
6436
6437 * s/gnu-linux.h, s/sol2-6.h: No longer define POSIX,
6438 unused since 2011-01-17 change to systty.h.
6439
6440 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h, s/gnu-linux.h:
6441 * s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
6442 Move HAVE_PTYS and HAVE_SOCKETS to configure.
6443
6444 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
6445
6446 * s/sol2-6.h (HAVE_LIBKSTAT): Remove. (Bug#11914)
6447
6448 2012-07-11 Glenn Morris <rgm@gnu.org>
6449
6450 * s/darwin.h, s/gnu-linux.h, s/template.h:
6451 Move INTERRUPT_INPUT to configure.
6452
6453 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
6454
6455 Minor adjustments to interning code.
6456 * lisp.h (intern, intern_c_string): Redefine as static inline
6457 wrappers for intern_1 and intern_c_string_1, respectively.
6458 (intern_1, intern_c_string_1): Rename prototypes.
6459 * lread.c (intern_1, intern_c_string_1, oblookup):
6460 Simplify Vobarray checking.
6461 * font.c (font_intern_prop): Likewise. Adjust comment.
6462 * w32font.c (intern_font_name): Likewise.
6463
6464 2012-07-11 Andreas Schwab <schwab@linux-m68k.org>
6465
6466 * gnutls.c (Fgnutls_boot): Properly parse :keylist argument.
6467
6468 * coding.c (Fdefine_coding_system_internal): Use XCAR/XCDR instead
6469 of Fcar/Fcdr if possible.
6470 * font.c (check_otf_features): Likewise.
6471 * fontset.c (Fnew_fontset): Likewise.
6472 * gnutls.c (Fgnutls_boot): Likewise.
6473 * minibuf.c (read_minibuf): Likewise.
6474 * msdos.c (IT_set_frame_parameters): Likewise.
6475 * xmenu.c (Fx_popup_dialog): Likewise.
6476 * w32menu.c (Fx_popup_dialog): Likewise.
6477
6478 2012-07-11 Glenn Morris <rgm@gnu.org>
6479
6480 * s/bsd-common.h, s/cygwin.h: No need to undefine INTERRUPT_INPUT,
6481 since nothing has defined it on these platforms.
6482
6483 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/gnu-linux.h:
6484 * s/irix6-5.h: Move SIGNALS_VIA_CHARACTERS to configure.
6485
6486 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
6487 * s/gnu-linux.h, s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
6488 Move CLASH_DETECTION to configure.
6489
6490 * s/gnu.h: Remove file, which is now empty.
6491
6492 * s/gnu.h, s/gnu-linux.h:
6493 Move GNU_LIBRARY_PENDING_OUTPUT_COUNT to configure.
6494
6495 2012-07-11 John Wiegley <johnw@newartisans.com>
6496
6497 * alloc.c (mark_memory): Guard the "no_address_safety_analysis"
6498 function attribute, so we only use it if it exists in the
6499 compiler.
6500
6501 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
6502
6503 Avoid call to strlen in fast_c_string_match_ignore_case.
6504 * search.c (fast_c_string_match_ignore_case): Change to use
6505 length argument. Adjust users accordingly.
6506 * lisp.h (fast_c_string_match_ignore_case): Adjust prototype.
6507
6508 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
6509
6510 Assume mkdir, rmdir.
6511 * sysdep.c (mkdir) [!HAVE_MKDIR]: Remove.
6512 * sysdep.c (rmdir) [!HAVE_RMDIR]: Remove.
6513
6514 Assume rename.
6515 * sysdep.c (rename) [!HAVE_RENAME]: Remove.
6516
6517 Assume perror.
6518 * s/hpux10-20.h (HAVE_PERROR): Remove.
6519 * sysdep.c (perror) [HPUX && !HAVE_PERROR]:
6520 Remove dummy definition, as this problem was obsolete long ago.
6521
6522 Assume strerror.
6523 * sysdep.c (strerror) [!HAVE_STRERROR && !WINDOWSNT]: Remove.
6524
6525 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
6526
6527 Avoid calls to strlen in font processing functions.
6528 * font.c (font_parse_name, font_parse_xlfd, font_parse_fcname)
6529 (font_open_by_name): Change to use length argument.
6530 Adjust users accordingly.
6531 * font.h (font_open_by_name, font_parse_xlfd, font_unparse_xlfd):
6532 Adjust prototypes.
6533 * xfont.c (xfont_decode_coding_xlfd, font_unparse_xlfd):
6534 Change to return ptrdiff_t.
6535 (xfont_list_pattern, xfont_match): Use length returned by
6536 xfont_decode_coding_xlfd.
6537 * xfns.c (x_default_font_parameter): Omit useless xstrdup.
6538
6539 2012-07-11 Glenn Morris <rgm@gnu.org>
6540
6541 * s/darwin.h, s/freebsd.h, s/netbsd.h:
6542 Move DONT_REOPEN_PTY to configure.
6543
6544 * sound.c (DEFAULT_SOUND_DEVICE) [!WINDOWSNT]:
6545 * s/netbsd.h (DEFAULT_SOUND_DEVICE): Let configure set it.
6546
6547 2012-07-10 Paul Eggert <eggert@cs.ucla.edu>
6548
6549 Remove "#define unix" that is no longer needed (Bug#11905).
6550 * s/aix4-2.h (unix): Remove; no longer needed.
6551
6552 EMACS_TIME simplification (Bug#11875).
6553 This replaces macros (which typically do not work in GDB)
6554 with functions, typedefs and enums, making the code easier to debug.
6555 The functional style also makes code easier to read and maintain.
6556 * systime.h: Include <sys/time.h> on all hosts, not just if
6557 WINDOWSNT, since 'struct timeval' is needed in general.
6558 (EMACS_TIME): Now a typedef, not a macro.
6559 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): Now constants,
6560 not macros.
6561 (EMACS_SECS, EMACS_NSECS, EMACS_TIME_SIGN, EMACS_TIME_VALID_P)
6562 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE, EMACS_TIME_EQ)
6563 (EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE, EMACS_TIME_LT)
6564 (EMACS_TIME_LE): Now functions, not macros.
6565 (EMACS_SET_SECS, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS)
6566 (EMACS_SET_USECS, EMACS_SET_SECS_USECS): Remove these macros,
6567 which are not functions. All uses rewritten to use:
6568 (make_emacs_time): New function.
6569 (EMACS_SECS_ADDR, EMACS_SET_INVALID_TIME, EMACS_GET_TIME)
6570 (EMACS_ADD_TIME, EMACS_SUB_TIME): Remove these macros, which are
6571 not functions. All uses rewritten to use the following, respectively:
6572 (emacs_secs_addr, invalid_emacs_time, get_emacs_time)
6573 (add_emacs_time, sub_emacs_time): New functions.
6574 * atimer.c: Don't include <sys/time.h>, as "systime.h" does this.
6575 * fileio.c (Fcopy_file):
6576 * xterm.c (XTflash): Get the current time closer to when it's used.
6577 * makefile.w32-in ($(BLD)/atimer.$(O)): Update dependencies.
6578
6579 * bytecode.c (targets): Suppress -Woverride-init warnings.
6580
6581 Simplify by avoiding confusing use of strncpy etc.
6582 * doc.c (Fsnarf_documentation):
6583 * fileio.c (Ffile_name_directory, Fsubstitute_in_file_name):
6584 * frame.c (Fmake_terminal_frame):
6585 * gtkutil.c (get_utf8_string):
6586 * lread.c (openp):
6587 * nsmenu.m (ns_update_menubar):
6588 * regex.c (regerror):
6589 Prefer memcpy to strncpy and strncat when either will do.
6590 * fileio.c (Fsubstitute_in_file_name):
6591 * keyboard.c (MULTI_LETTER_MOD, parse_modifiers_uncached)
6592 (menu_separator_name_p):
6593 * nsmenu.m (ns_update_menubar):
6594 Prefer memcmp to strncmp when either will do.
6595 * nsterm.m: Include <ftoastr.h>.
6596 (ns_get_color):
6597 * s/gnu-linux.h, s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF):
6598 Prefer snprintf to strncpy.
6599 * nsterm.m (ns_term_init):
6600 * widget.c (set_frame_size) [0]: Prefer xstrdup to xmalloc + strncpy.
6601 * nsterm.m (ns_term_init):
6602 Avoid the need for strncpy, by using build_string or
6603 make_unibyte_string directly. Use dtoastr, not snprintf.
6604 * process.c (Fmake_network_process): Diagnose service names that
6605 are too long, rather than silently truncating them or creating
6606 non-null-terminated names.
6607 (Fnetwork_interface_info): Likewise, for interface names.
6608 * sysdep.c (system_process_attributes) [GNU_LINUX]:
6609 Prefer sprintf to strncat.
6610 * xdisp.c (debug_method_add) [GLYPH_DEBUG]:
6611 Prefer vsnprintf to vsprintf + strncpy.
6612
6613 2012-07-10 Glenn Morris <rgm@gnu.org>
6614
6615 * dispnew.c (PENDING_OUTPUT_COUNT) [!__GNU_LIBRARY__]:
6616 Clarify fallback case.
6617
6618 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
6619
6620 Use XCAR and XCDR instead of Fcar and Fcdr where possible.
6621 * callint.c, coding.c, doc.c, editfns.c, eval.c, font.c, fontset.c,
6622 * frame.c, gnutls.c, minibuf.c, msdos.c, textprop.c, w32fns.c,
6623 * w32menu.c, window.c, xmenu.c: Change to use XCAR and XCDR
6624 where argument type is known to be a Lisp_Cons.
6625
6626 2012-07-10 Tom Tromey <tromey@redhat.com>
6627
6628 * bytecode.c (BYTE_CODE_THREADED): New macro.
6629 (BYTE_CODES): New macro. Replaces all old byte-code defines.
6630 (enum byte_code_op): New type.
6631 (CASE, NEXT, FIRST, CASE_DEFAULT, CASE_ABORT): New macros.
6632 (exec_byte_code): Use them. Use token threading when applicable.
6633
6634 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
6635
6636 Optimize pure C strings initialization.
6637 * lisp.h (make_pure_string): Fix prototype.
6638 (build_pure_c_string): New function, defined as static inline. This
6639 provides a better opportunity to optimize away calls to strlen when
6640 the function is called with compile-time constant argument.
6641 * alloc.c (make_pure_c_string): Fix comment. Change to add nchars
6642 argument, adjust users accordingly. Use build_pure_c_string where
6643 appropriate.
6644 * buffer.c, coding.c, data.c, dbusbind.c, fileio.c, fontset.c, frame.c,
6645 * keyboard.c, keymap.c, lread.c, search.c, syntax.c, w32fns.c, xdisp.c,
6646 * xfaces.c, xfns.c, xterm.c: Use build_pure_c_string where appropriate.
6647
6648 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
6649
6650 Avoid calls to strlen in miscellaneous functions.
6651 * buffer.c (init_buffer): Use precalculated len, adjust if needed.
6652 * font.c (Ffont_xlfd_name): Likewise. Change to call make_string.
6653 * lread.c (openp): Likewise.
6654
6655 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
6656
6657 Avoid calls to strlen in path processing functions.
6658 * fileio.c (file_name_as_directory): Add comment. Change to add
6659 srclen argument and return the length of result. Adjust users
6660 accordingly.
6661 (directory_file_name): Fix comment. Change to add srclen argument,
6662 swap 1st and 2nd arguments to obey the common convention.
6663 Adjust users accordingly.
6664 * filelock.c (fill_in_lock_file_name): Avoid calls to strlen.
6665
6666 2012-07-10 Glenn Morris <rgm@gnu.org>
6667
6668 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/netbsd.h, s/unixware.h:
6669 Move PENDING_OUTPUT_COUNT definition to configure.
6670
6671 * s/irix6-5.h (DATA_START, DATA_SEG_BITS):
6672 * s/hpux10-20.h (DATA_SEG_BITS, DATA_START):
6673 * s/gnu.h (DATA_START): Move definitions to configure.
6674
6675 * s/irix6-5.h (SETUP_SLAVE_PTY, PTY_NAME_SPRINTF): Drop ifdef guards.
6676 We include usg5-4-common.h, which defines them both.
6677
6678 * s/gnu.h: Don't include fcntl.h (every file in Emacs that uses
6679 O_RDONLY already includes it).
6680
6681 Stop ns builds setting the EMACSLOADPATH environment variable.
6682 * nsterm.m (ns_load_path): Rename from ns_init_paths.
6683 Now it does not set EMACSLOADPATH, just returns the load-path string.
6684 * nsterm.h: Update accordingly.
6685 * lread.c [HAVE_NS]: Include nsterm.h.
6686 (init_lread) [HAVE_NS]: Use ns_load_path.
6687 * emacs.c (main) [HAVE_NS]: No longer call ns_init_paths.
6688
6689 2012-07-09 Glenn Morris <rgm@gnu.org>
6690
6691 * s/gnu.h (SIGNALS_VIA_CHARACTERS): No need to define it here,
6692 since the included bsd-common.h does so.
6693
6694 Stop ns builds setting the EMACSPATH environment variable.
6695 * nsterm.m (ns_exec_path): New function, split from ns_init_paths.
6696 (ns_init_paths): Do not set EMACSPATH.
6697 * nsterm.h (ns_exec_path): Add it.
6698 * callproc.c (init_callproc_1, init_callproc) [HAVE_NS]:
6699 Use ns_exec_path.
6700
6701 * nsterm.m, nsterm.h (ns_etc_directory): Fix type, empty return.
6702
6703 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
6704
6705 * process.c (wait_reading_process_output): 'waitchannels' was unset
6706 when read_kbd || !NILP (wait_for_cell); fix this.
6707
6708 Add GCC-style 'const' attribute to functions that can use it.
6709 * character.h (char_resolve_modifier_mask):
6710 * keyboard.h (make_ctrl_char):
6711 * lisp.h (multibyte_char_to_unibyte, multibyte_char_to_unibyte_safe)
6712 (init_character_once, next_almost_prime, init_fns, init_image)
6713 (flush_pending_output, init_sound):
6714 * mem-limits.h (start_of_data):
6715 * menu.h (finish_menu_items):
6716 Add ATTRIBUTE_CONST.
6717 * emacs.c (DEFINE_DUMMY_FUNCTION):
6718 Declare the dummy function with ATTRIBUTE_CONST.
6719 * lisp.h (Fbyteorder, Fmax_char, Fidentity):
6720 Add decls with ATTRIBUTE_CONST.
6721
6722 Minor improvements to make_formatted_string.
6723 * alloc.c (make_formatted_string): Prefer int to ptrdiff_t
6724 where int is good enough, as vsprintf returns an int.
6725 * lisp.h (make_formatted_string): Add ATTRIBUTE_FORMAT_PRINTF.
6726
6727 2012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
6728
6729 Use make_formatted_string to avoid double length calculation.
6730 * lisp.h (make_formatted_string): New prototype.
6731 * alloc.c (make_formatted_string): New function.
6732 * buffer.c (Fgenerate_new_buffer_name): Use it.
6733 * dbusbind.c (syms_of_dbusbind): Likewise.
6734 * editfns.c (Fcurrent_time_zone): Likewise.
6735 * filelock.c (get_boot_time): Likewise.
6736 * frame.c (make_terminal_frame, set_term_frame_name)
6737 (x_report_frame_params): Likewise.
6738 * image.c (gs_load): Likewise.
6739 * minibuf.c (get_minibuffer): Likewise.
6740 * msdos.c (dos_set_window_size): Likewise.
6741 * process.c (make_process): Likewise.
6742 * xdisp.c (ensure_echo_area_buffers): Likewise.
6743 * xsettings.c (apply_xft_settings): Likewise.
6744
6745 2012-07-09 Glenn Morris <rgm@gnu.org>
6746
6747 Stop ns builds polluting the environment with EMACSDATA, EMACSDOC.
6748 * nsterm.m (ns_etc_directory): New function, split from ns_init_paths.
6749 (ns_init_paths): Do not set EMACSDATA, EMACSDOC.
6750 * nsterm.h (ns_etc_directory): Add it.
6751 * callproc.c [HAVE_NS]: Include nsterm.h.
6752 (init_callproc_1, init_callproc) [HAVE_NS]: Use ns_etc_directory.
6753
6754 2012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
6755
6756 Move marker debugging code under MARKER_DEBUG.
6757 * marker.c (MARKER_DEBUG): Move marker debugging code under
6758 #ifdef MARKER_DEBUG because byte_char_debug_check is too slow
6759 for bootstrap with --enable-checking (~3x slowdown reported
6760 by Juanma Barranquero <lekktu@gmail.com>).
6761 (verify_bytepos): Move under #ifdef MARKER_DEBUG.
6762
6763 2012-07-08 Paul Eggert <eggert@cs.ucla.edu>
6764
6765 * systime.h (EMACS_SUB_TIME): Clarify behavior with unsigned time_t.
6766 See <http://bugs.gnu.org/11825#29>.
6767
6768 2012-07-08 Eli Zaretskii <eliz@gnu.org>
6769
6770 * xdisp.c (fill_glyphless_glyph_string): If the face of the glyph
6771 has no font, use the frame's font. (Bug#11813)
6772 (display_line): Add commentary about displaying truncation glyphs
6773 on GUI frames.
6774 (produce_special_glyphs): Move here from term.c.
6775
6776 * term.c (produce_special_glyphs): Move to xdisp.c.
6777
6778 * dispextern.h (produce_special_glyphs): Move prototype to xdisp.c
6779 section.
6780
6781 2012-07-07 Andreas Schwab <schwab@linux-m68k.org>
6782
6783 * xdisp.c (display_line): Avoid warning about implicit declaration
6784 of FRAME_FONT.
6785
6786 * frame.c (get_frame_param): Define only if HAVE_WINDOW_SYSTEM.
6787
6788 * lisp.h: Remove empty conditional.
6789
6790 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
6791
6792 * lread.c (load_path_check): Now static.
6793
6794 Fix some minor --with-ns problems found by static checking.
6795 * frame.c (Ftool_bar_pixel_width) [!FRAME_TOOLBAR_WIDTH]:
6796 (x_set_font) [!HAVE_X_WINDOWS]:
6797 * image.c (xpm_load_image) [HAVE_NS]:
6798 (x_to_xcolors) [!HAVE_X_WINDOWS && !HAVE_NTGUI]:
6799 (x_disable_image) [!HAVE_NS && !HAVE_NTGUI]:
6800 Remove unused local.
6801 (Fx_parse_geometry) [HAVE_NS]: Don't return garbage.
6802 (xpm_load_image) [HAVE_NS && !HAVE_XPM]: Remove unused label.
6803 * image.c (x_create_bitmap_from_file) [HAVE_NS]:
6804 (xpm_load_image, xpm_load) [HAVE_NS && !HAVE_XPM]:
6805 * nsselect.m (symbol_to_nsstring, ns_string_to_pasteboard_internal):
6806 * xfaces.c (Fx_load_color_file) [!HAVE_X_WINDOWS]:
6807 Fix pointer signedness problem.
6808 * xfaces.c (FRAME_X_FONT_TABLE):
6809 * xterm.h (FRAME_X_FONT_TABLE): Remove unused, incompatible macros.
6810
6811 2012-07-07 Glenn Morris <rgm@gnu.org>
6812
6813 * lread.c (load_path_check): New function, split from init_lread.
6814 (init_lread): Reorganize. Motivation:
6815 If EMACSLOADPATH is set, check/warn about that rather than the
6816 defaults, which we are not going to use. Hence we can remove
6817 the turn_off_warning and WINDOWSNT || HAVE_NS tests.
6818 Don't warn if site-lisp directories are missing.
6819 If not installed, start from a blank load-path, since
6820 PATH_LOADSEARCH refers to the eventual installation directories.
6821
6822 2012-07-07 Eli Zaretskii <eliz@gnu.org>
6823
6824 Support truncation and continuation glyphs on GUI frames, when
6825 fringes are disabled. (Bug#11832)
6826 * xdisp.c (init_iterator): Get dimensions of truncation and
6827 continuation glyphs even if on GUI frames.
6828 Adjust it->last_visible_x on GUI frames when the left or right fringes,
6829 or both, are absent.
6830 (start_display, move_it_in_display_line_to): Handle the case of a
6831 GUI frame without a fringe to display continuation or truncation
6832 glyphs.
6833 (insert_left_trunc_glyphs): Support GUI frames: make sure
6834 truncation glyphs overwrite enough glyphs from the current line to
6835 have sufficient space in pixels.
6836 (display_line): Support truncation and continuation glyphs on GUI
6837 frames. If some spare pixels are left on the line after inserting
6838 the truncation glyphs, fill that space with a stretch glyph of a
6839 suitably computed width.
6840
6841 * term.c (produce_special_glyphs): Call PRODUCE_GLYPHS, not
6842 produce_glyphs, to support GUI sessions.
6843
6844 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
6845
6846 * sysdep.c (ULLONG_MAX): Define if not already defined (Bug#11781).
6847
6848 * sysdep.c (list_system_processes): Port to NetBSD-current (Bug#11797).
6849
6850 Do not require float-time's arg to fit in time_t (Bug#11825).
6851 This works better on hosts where time_t is unsigned, and where
6852 float-time is applied to the (negative) difference between two times.
6853 * editfns.c (decode_time_components): Last arg is now double *,
6854 not int *, and means to store all the result as a double, without
6855 worrying about whether the seconds part fits in time_t.
6856 All callers changed.
6857 (lisp_time_argument): Remove last int * arg, as it's no longer needed.
6858 All callers changed.
6859 (Ffloat_time): Do not fail merely because the specified time falls
6860 outside of time_t range.
6861
6862 2012-07-07 Glenn Morris <rgm@gnu.org>
6863
6864 * s/darwin.h (HAVE_RES_INIT, HAVE_LIBRESOLV):
6865 * s/hpux10-20.h (HAVE_RINT, HAVE_RANDOM):
6866 * s/unixware.h (HAVE_GETWD): Move undefs to configure (effectively).
6867
6868 2012-07-07 Juanma Barranquero <lekktu@gmail.com>
6869
6870 * makefile.w32-in (DISPEXTERN_H, $(BLD)/regex.$(O)):
6871 Update dependencies.
6872
6873 * s/ms-w32.h [_MSC_VER]: Remove strcasecmp, strncasecmp.
6874
6875 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
6876
6877 Use c_strcasecmp for ASCII case-insensitive comparison (Bug#11786).
6878 * dispextern.h, nsfns.m, nsterm.m: Include <c-strcase.h>.
6879 * dispextern.h (xstrcasecmp): Rewrite using c_strcasecmp.
6880 * nsfns.m (x_get_string_resource): Use c_strncasecmp, not strncasecmp.
6881 * nsterm.m (ns_default): Use c_strcasecmp, not strcasecmp.
6882 * xfaces.c (xstrcasecmp) [!HAVE_STRCASECMP]: Remove.
6883
6884 * xfont.c (compare_font_names): Redo to omit the need for casts.
6885
6886 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
6887
6888 * xfns.c (Fx_change_window_property): Doc fix.
6889 * w32fns.c (Fx_change_window_property): Doc fix.
6890
6891 * w32fns.c (Fx_window_property): Accept the same arguments as the
6892 X Windows version. Doc fix.
6893 * xfns.c (Fx_window_property): Doc fix. (Bug#11870)
6894
6895 2012-07-06 Juanma Barranquero <lekktu@gmail.com>
6896 Eli Zaretskii <eliz@gnu.org>
6897
6898 * s/ms-w32.h: Settings not specific to Windows moved to nt/config.nt.
6899 Windows-specific code from nt/config.nt moved here.
6900 Obsolete settings removed.
6901
6902 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
6903
6904 * process.c: Avoid unnecessary calls to gettime.
6905 (wait_reading_process_output): Don't get the time of day
6906 when gobbling data immediately and not waiting, as there's no need
6907 for it in that case. This removes a FIXME.
6908
6909 2012-07-06 Jan Djärv <jan.h.d@swipnet.se>
6910
6911 * gtkutil.c (xg_event_is_for_scrollbar): Assign gwin when HAVE_GTK3
6912 is defined (Bug#11768).
6913
6914 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
6915
6916 Fix marker debugging code.
6917 * marker.c (byte_char_debug_check): Do not perform the check
6918 if buffer is not multibyte.
6919 (buf_charpos_to_bytepos, buf_bytepos_to_charpos):
6920 Call byte_char_debug_check with correct arguments.
6921
6922 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
6923
6924 Compile marker debugging code only if ENABLE_CHECKING is defined.
6925 * marker.c (byte_char_debug_check, count_markers):
6926 Use only if ENABLE_CHECKING is defined.
6927 (byte_debug_flag): Remove.
6928 (CONSIDER, buf_charpos_to_bytepos, buf_bytepos_to_charpos):
6929 Always call byte_char_debug_check if ENABLE_CHECKING is defined.
6930
6931 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
6932
6933 Avoid code repetition in marker-related functions.
6934 * marker.c (attach_marker): New function.
6935 (Fset_marker, set_marker_restricted, set_marker_both)
6936 (set_marker_restricted_both): Use it.
6937 (Fset_marker, set_marker_restricted, Fbuffer_has_markers_at):
6938 Consistently rename charno to charpos.
6939 (marker_position): Add eassert.
6940 (marker_byte_position): Convert to eassert.
6941
6942 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
6943
6944 Simplify list operations in unchain_overlay and unchain_marker.
6945 * buffer.c (unchain_overlay): Simplify. Add comment.
6946 * marker.c (unchain_marker): Simplify. Fix comments.
6947
6948 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
6949
6950 Introduce fast path for the widely used marker operation.
6951 * alloc.c (build_marker): New function.
6952 * lisp.h (build_marker): New prototype.
6953 * buffer.c (clone_per_buffer_values, Fmake_indirect_buffer): Use it.
6954 * composite.c (autocmp_chars): Likewise.
6955 * editfns.c (buildmark): Remove.
6956 (Fpoint_marker, Fpoint_min_marker, Fpoint_max_marker)
6957 (save_restriction_save): Use build_marker.
6958 * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos): Likewise.
6959 * window.c (save_window_save): Likewise.
6960
6961 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
6962
6963 Do not use Fdelete_overlay in delete_all_overlays
6964 to avoid redundant calls to unchain_overlay.
6965 * buffer.c (drop_overlay): New function.
6966 (delete_all_overlays, Fdelete_overlay): Use it.
6967 * minibuf.c (get_minibuffer): Fix comment.
6968
6969 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
6970
6971 Port to OpenBSD 5.1 amd64.
6972 * sysdep.c [BSD_SYSTEM]: Include <sys/param.h> before <sys/sysctl.h>.
6973 This is needed for OpenBSD, and should be harmless on all BSD systems.
6974 Also, include <sys/sysctl.h>, as it should be available on all
6975 BSD_SYSTEM hosts given that we're already calling sysctl in that case.
6976 (list_system_processes) [__OpenBSD__]: Use DARWIN_OS style mib, but
6977 use p_pid member, not kp_proc.pid.
6978
6979 2012-07-06 Glenn Morris <rgm@gnu.org>
6980
6981 * Makefile.in (emacs$(EXEEXT)): Don't check for load-path shadows.
6982
6983 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
6984
6985 More xmalloc and related cleanup.
6986 * alloc.c, bidi.c, buffer.c, buffer.h, bytecode.c, callint.c:
6987 * callproc.c, charset.c, coding.c, composite.c, data.c, dispnew.c:
6988 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, fns.c:
6989 * font.c, fontset.c, frame.c, fringe.c, ftfont.c, ftxfont.c, gmalloc.c:
6990 * gtkutil.c, image.c, keyboard.c, keymap.c, lread.c, macros.c, menu.c:
6991 * nsfns.m, nsfont.m, nsmenu.m, nsterm.m, print.c, process.c, ralloc.c:
6992 * regex.c, region-cache.c, scroll.c, search.c, sound.c, syntax.c:
6993 * sysdep.c, term.c, termcap.c, unexmacosx.c, window.c, xdisp.c:
6994 * xfaces.c, xfns.c, xftfont.c, xgselect.c, xmenu.c, xrdb.c, xselect.c:
6995 * xterm.c:
6996 Omit needless casts involving void * pointers and allocation.
6997 Prefer "P = xmalloc (sizeof *P)" to "P = xmalloc (sizeof (TYPE_OF_P))",
6998 as the former is more robust if P's type is changed.
6999 Prefer xzalloc to xmalloc + memset 0.
7000 Simplify malloc-or-realloc to realloc.
7001 Don't worry about xmalloc returning a null pointer.
7002 Prefer xstrdup to xmalloc + strcpy.
7003 * editfns.c (Fmessage_box): Grow message_text by at least 80 when
7004 growing it.
7005 * keyboard.c (apply_modifiers_uncached): Prefer local array to
7006 alloca of a constant.
7007
7008 2012-07-05 Eli Zaretskii <eliz@gnu.org>
7009
7010 * xdisp.c (display_line): Fix horizontal pixel coordinates when
7011 hscroll is larger than the line width. Fixes long and futile
7012 looping inside extend_face_to_end_of_line (on a TTY) producing
7013 glyphs that are not needed and thrown away.
7014
7015 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
7016
7017 * marker.c (set_marker_restricted_both): Simplify by using
7018 clip_to_bounds.
7019
7020 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
7021
7022 * editfns.c (region_limit): Simplify by using clip_to_bounds.
7023
7024 2012-07-05 Jan Djärv <jan.h.d@swipnet.se>
7025
7026 * gtkutil.c (gtk_scrollbar_new, gtk_box_new): Define when HAVE_GTK3 is
7027 not defined (Bug#11768).
7028 (xg_create_frame_widgets): Use gtk_plug_new_for_display (Bug#11768).
7029 (xg_create_frame_widgets, create_dialog, xg_get_file_with_chooser)
7030 (make_widget_for_menu_item, xg_make_tool_item): Use gtk_box_new
7031 followed by gtk_box_set_homogeneous (Bug#11768).
7032 (xg_update_menu_item): Use GTK_IS_BOX (Bug#11768).
7033 (update_theme_scrollbar_width, xg_create_scroll_bar):
7034 Use gtk_scrollbar_new (Bug#11768).
7035 (xg_event_is_for_scrollbar): Use Gdk Device functions for HAVE_GTK3.
7036 (is_box_type): New function (Bug#11768).
7037 (xg_tool_item_stale_p): Call is_box_type.
7038 (xg_initialize): Get settings by calling gtk_settings_get_for_screen
7039 with default display (Bug#11768).
7040
7041 2012-07-05 Eli Zaretskii <eliz@gnu.org>
7042
7043 * xdisp.c (window_hscroll_limited): New function.
7044 (pos_visible_p, init_iterator): Use it to avoid overflow of pixel
7045 coordinates when window's hscroll is set to insanely large
7046 values. (Bug#11857)
7047
7048 2012-07-05 Juanma Barranquero <lekktu@gmail.com>
7049
7050 * makefile.w32-in ($(BLD)/dired.$(O), $(BLD)/fileio.$(O)): Fix typo.
7051 ($(BLD)/terminal.$(O), $(BLD)/syntax.$(O)): Update dependencies.
7052
7053 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
7054
7055 Cleanup xmalloc.
7056 * lisp.h (xzalloc): New prototype. Omit needless casts.
7057 * alloc.c (xzalloc): New function. Omit needless casts.
7058 * charset.c: Omit needless casts. Convert all calls to
7059 xmalloc with following memset to xzalloc.
7060 * dispnew.c: Likewise.
7061 * fringe.c: Likewise.
7062 * image.c: Likewise.
7063 * sound.c: Likewise.
7064 * term.c: Likewise.
7065 * w32fns.c: Likewise.
7066 * w32font.c: Likewise.
7067 * w32term.c: Likewise.
7068 * xfaces.c: Likewise.
7069 * xfns.c: Likewise.
7070 * xterm.c: Likewise.
7071 * atimer.c: Omit needless casts.
7072 * buffer.c: Likewise.
7073 * callproc.c: Likewise.
7074 * ccl.c: Likewise.
7075 * coding.c: Likewise.
7076 * composite.c: Likewise.
7077 * doc.c: Likewise.
7078 * doprnt.c: Likewise.
7079 * editfns.c: Likewise.
7080 * emacs.c: Likewise.
7081 * eval.c: Likewise.
7082 * filelock.c: Likewise.
7083 * fns.c: Likewise.
7084 * gtkutil.c: Likewise.
7085 * keyboard.c: Likewise.
7086 * lisp.h: Likewise.
7087 * lread.c: Likewise.
7088 * minibuf.c: Likewise.
7089 * msdos.c: Likewise.
7090 * print.c: Likewise.
7091 * process.c: Likewise.
7092 * region-cache.c: Likewise.
7093 * search.c: Likewise.
7094 * sysdep.c: Likewise.
7095 * termcap.c: Likewise.
7096 * terminal.c: Likewise.
7097 * tparam.c: Likewise.
7098 * w16select.c: Likewise.
7099 * w32.c: Likewise.
7100 * w32reg.c: Likewise.
7101 * w32select.c: Likewise.
7102 * w32uniscribe.c: Likewise.
7103 * widget.c: Likewise.
7104 * xdisp.c: Likewise.
7105 * xmenu.c: Likewise.
7106 * xrdb.c: Likewise.
7107 * xselect.c: Likewise.
7108
7109 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
7110
7111 * fileio.c (time_error_value): Check the right error number.
7112 Problem reported by Troels Nielsen in
7113 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00095.html>.
7114
7115 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
7116
7117 * window.c (set_window_hscroll): Revert the 100000 hscroll limit.
7118 This should be fixed in a better way; see Eli Zaretskii in
7119 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00088.html>.
7120 (HSCROLL_MAX): Remove; this is now internal to set_window_hscroll.
7121
7122 * fileio.c (time_error_value): Rename from special_mtime.
7123 The old name's problems were noted by Eli Zaretskii in
7124 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00087.html>.
7125
7126 * emacs.c (gdb_pvec_type): Change it back to enum pvec_type.
7127 This variable's comment says Emacs needs at least one GDB-visible
7128 symbol of type enum pvec_type, to work around GDB problems.
7129 The symbol's value doesn't matter.
7130
7131 * alloc.c (PSEUDOVECTOR_NBYTES): Remove stray ';'
7132 that causes compilation to fail on pre-C99 compilers.
7133
7134 2012-07-04 Juanma Barranquero <lekktu@gmail.com>
7135
7136 * s/ms-w32.h (LISP_FLOAT_TYPE, HAVE_MEMCMP, HAVE_MEMCPY)
7137 (HAVE_MEMMOVE, HAVE_MEMSET): Don't set, obsolete.
7138
7139 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
7140
7141 * buffer.c (init_buffer_once): Fix initialization of
7142 headers for buffer_defaults and buffer_local_symbols.
7143 Reported by Juanma Barranquero <lekktu@gmail.com>.
7144
7145 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
7146
7147 Turn VECTOR_FREE_LIST_FLAG into PVEC_FREE.
7148 * lisp.h (enum pvec_type): Use fewer bits.
7149 (PSEUDOVECTOR_SIZE_BITS): New constant.
7150 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK): Use it.
7151 (XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR, DEFUN): Adapt code to
7152 change in pvec_type.
7153 (PSEUDOVECTOR_TYPEP): New macro.
7154 (TYPED_PSEUDOVECTORP): Use it.
7155 * fns.c (internal_equal): Adapt code to extract pvectype.
7156 * emacs.c (gdb_pvec_type): Update type.
7157 * alloc.c (PSEUDOVECTOR_NBYTES): New macro.
7158 (VECTOR_FREE_LIST_SIZE_MASK): Remove (=> PSEUDOVECTOR_SIZE_MASK).
7159 (VECTOR_FREE_LIST_FLAG): Remove (=> PVEC_FREE).
7160 (SETUP_ON_FREE_LIST): Use XSETPVECTYPESIZE.
7161 (sweep_vectors): Use it. Use local var `total_bytes' instead of
7162 abusing vector->header.next.nbytes.
7163 (live_vector_p): Use PVEC_TYPE.
7164 (mark_object): Adapt code to extract pvectype. Use switch.
7165
7166 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
7167
7168 * doprnt.c (doprnt): Don't assume string length fits in 'int'.
7169 Tighten new eassert a bit.
7170
7171 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
7172
7173 Fix compilation with --enable-gcc-warnings and -O1
7174 optimization level.
7175 * doprnt.c (doprnt): Change type of tem to int, initialize
7176 to avoid compiler warning. Add eassert.
7177 * search.c (simple_search): Initialize match_byte to avoid
7178 compiler warning. Add eassert.
7179
7180 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
7181
7182 Avoid weird behavior with large horizontal scrolls.
7183 Without this change, for example, large hscroll values would
7184 mess up Emacs's display on Fedora 15 x86, presumably due to
7185 overflows in int calculations in the display code.
7186 Also, if buffers had long lines, Emacs would freeze.
7187 * window.c (HSCROLL_MAX): Reduce to 100000, and make it visible to GDB.
7188 (set_window_hscroll): New function, containing the old guts of
7189 Fset_window_hscroll. Return the clipped value.
7190 (Fset_window_hscroll, Fscroll_left, Fscroll_right): Use it.
7191 This avoids the need to check against PTRDIFF_MAX.
7192
7193 * buffer.c (Fgenerate_new_buffer_name): Fix sprintf format mismatch.
7194
7195 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
7196
7197 * buffer.c (Fgenerate_new_buffer_name): Fix type mismatch.
7198
7199 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
7200
7201 * regex.c: Suppress GCC warning on RHEL 6. (Bug#11207)
7202 Conditionalize the pragmas on GCC 4.5 or later, not GCC 4.3 or later,
7203 since GCC 4.4.6 issues a bogus warning for them.
7204
7205 Fix bugs in file timestamp newness comparisons.
7206 * fileio.c (Ffile_newer_than_file_p):
7207 * lread.c (Fload): Use full timestamp resolution of files,
7208 not just the 1-second resolution, so that files that are only
7209 slightly newer still count as newer.
7210 * fileio.c (Ffile_newer_than_file_p): Don't assume file
7211 timestamps fit in 'int'; this fixes a Y2038 bug on most hosts.
7212
7213 2012-07-03 Paul Eggert <eggert@cs.ucla.edu>
7214
7215 * fileio.c: Improve handling of file time marker. (Bug#11852)
7216 (special_mtime): New function.
7217 (Finsert_file_contents, Fverify_visited_file_modtime):
7218 Use it to set special mtime values consistently.
7219
7220 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
7221
7222 * fileio.c (Finsert_file_contents): Properly handle st_mtime
7223 marker for non-existing file. (Bug#11852)
7224
7225 2012-07-03 Glenn Morris <rgm@gnu.org>
7226
7227 * lisp.h (Fread_file_name): Restore EXFUN (it's not a normal DEFUN
7228 and did not make it into globals.h).
7229
7230 2012-07-03 Tom Tromey <tromey@redhat.com>
7231
7232 * window.c (Fset_window_margins, Fset_window_fringes)
7233 (Fset_window_scroll_bars, Fset_window_vscroll): No longer static.
7234 * textprop.c (Fprevious_property_change): No longer static.
7235 * syntax.c (Fsyntax_table_p): No longer static.
7236 * process.c (Fget_process, Fprocess_datagram_address): No longer
7237 static.
7238 * keymap.c (Flookup_key, Fcopy_keymap): No longer static.
7239 * keyboard.c (Fcommand_execute): No longer static.
7240 Remove EXFUN.
7241 * insdel.c (Fcombine_after_change_execute): No longer static.
7242 * image.c (Finit_image_library): No longer static.
7243 * fileio.c (Fmake_symbolic_link): No longer static.
7244 * eval.c (Ffetch_bytecode): No longer static.
7245 * editfns.c (Fuser_full_name): No longer static.
7246 * doc.c (Fdocumentation_property, Fsnarf_documentation):
7247 No longer static.
7248 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): No longer
7249 static.
7250 * dired.c (Ffile_attributes): No longer static.
7251 * composite.c (Fcomposition_get_gstring): No longer static.
7252 * callproc.c (Fgetenv_internal): No longer static.
7253
7254 * ccl.h: Remove EXFUNs.
7255 * buffer.h: Remove EXFUNs.
7256 * dispextern.h: Remove EXFUNs.
7257 * intervals.h: Remove EXFUNs.
7258 * fontset.h: Remove EXFUN.
7259 * font.h: Remove EXFUNs.
7260 * dosfns.c (system_process_attributes): Remove EXFUN.
7261 * keymap.h: Remove EXFUNs.
7262 * lisp.h: Remove EXFUNs.
7263 * w32term.h: Remove EXFUNs.
7264 * window.h: Remove EXFUNs.
7265 * xsettings.h: Remove EXFUN.
7266 * xterm.h: Remove EXFUN.
7267
7268 2012-07-03 Glenn Morris <rgm@gnu.org>
7269
7270 * lisp.h (Frandom): Make it visible to C.
7271 * buffer.c (Fgenerate_new_buffer_name): Speed up finding a new
7272 buffer for invisible buffers. (Bug#1229)
7273
7274 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
7275
7276 Fix block vector allocation code to allow VECTOR_BLOCK_SIZE
7277 values which aren't power of 2.
7278 * alloc.c (VECTOR_FREE_LIST_SIZE_MASK): New macro.
7279 Verify its value and the value of VECTOR_BLOCK_SIZE. Adjust users
7280 accordingly.
7281
7282 2012-07-03 Stefan Monnier <monnier@iro.umontreal.ca>
7283
7284 * lisp.h (Lisp_Misc, Lisp_Fwd): Move around to group better.
7285
7286 * alloc.c (mark_object): Revert part of last patch to use `switch'.
7287
7288 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
7289
7290 * alloc.c (allocate_vector_block): Remove redundant
7291 calls to mallopt if DOUG_LEA_MALLOC is defined.
7292 (allocate_vectorlike): If DOUG_LEA_MALLOC is defined,
7293 avoid calls to mallopt if zero_vector is returned.
7294
7295 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
7296
7297 * alloc.c (check_string_bytes): If GC_CHECK_STRING_BYTES
7298 is enabled, avoid dereferencing NULL current_sblock if
7299 running undumped.
7300
7301 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
7302
7303 Cleanup basic buffer management.
7304 * buffer.h (struct buffer): Change layout to use generic vector
7305 marking code. Fix some comments. Change type of 'clip_changed'
7306 to bitfield. Remove unused #ifndef old.
7307 (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER): Remove.
7308 (GET_OVERLAYS_AT): Fix indentation.
7309 (for_each_per_buffer_object_at): New macro.
7310 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
7311 (Fbuffer_local_variables): Use it.
7312 (init_buffer_once, syms_of_buffer): Remove unused #ifndef old.
7313 * alloc.c (allocate_buffer): Adjust to match new layout of
7314 struct buffer. Fix comment.
7315 (mark_overlay): New function.
7316 (mark_buffer): Use it. Use mark_vectorlike to mark normal
7317 Lisp area of struct buffer.
7318 (mark_object): Use it. Adjust marking of misc objects
7319 and related comments.
7320
7321 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
7322
7323 * alloc.c (mark_object): Remove "#ifdef GC_CHECK_MARKED_OBJECTS"
7324 wrapper that is not needed because the wrapped code is a no-op (zero
7325 machine instructions) when GC_CHECK_MARKED_OBJECTS is not defined.
7326 This avoids a -Wunused-macros diagnostic with GCC 4.7.1 x86-64.
7327
7328 2012-07-02 Dmitry Antipov <dmantipov@yandex.ru>
7329
7330 * alloc.c (mark_buffer): Simplify. Remove prototype.
7331 (mark_object): Add comment. Reorganize marking of vector-like
7332 objects. Use CHECK_LIVE for all vector-like objects except buffers
7333 and subroutines when GC_CHECK_MARKED_OBJECTS is defined.
7334 Avoid redundant calls to mark_vectorlike for bool vectors.
7335
7336 2012-06-30 Glenn Morris <rgm@gnu.org>
7337
7338 * nsterm.m (ns_init_paths): Ignore site-lisp if --no-site-lisp.
7339
7340 * epaths.in (PATH_SITELOADSEARCH): New.
7341 * lread.c (init_lread): Use PATH_SITELOADSEARCH.
7342 This is rather than relying on --enable-locallisppath elements
7343 having "site-lisp" in their names. (Bug#10208#25, 11658)
7344
7345 2012-06-30 Eli Zaretskii <eliz@gnu.org>
7346
7347 * w32proc.c (sys_select): Accept and ignore one more argument.
7348
7349 * w32.c (emacs_gnutls_pull): Call select with one more argument.
7350
7351 * sysselect.h [DOS_NT]: Don't include sys/select.h.
7352 (pselect) [!MS_DOS]: Redirect to sys_select.
7353
7354 * sysdep.c: Don't include dos.h and dosfns.h.
7355
7356 * process.c (sys_select):
7357 * msdos.c (sys_select): Accept one more argument and ignore it.
7358
7359 * msdos.c (event_timestamp, sys_select): Use gnulib's gettime;
7360 adapt data types and code to that.
7361
7362 * dosfns.c:
7363 * msdos.c (gettime, settime): Define away the prototypes in dos.h,
7364 which clashes with the gnulib function of the same name.
7365
7366 2012-06-30 Andreas Schwab <schwab@linux-m68k.org>
7367
7368 * font.c (font_style_to_value, font_style_symbolic)
7369 (font_prop_validate_style): Add type checks for values in
7370 font_style_table.
7371
7372 * lisp.h (CHECK_RANGED_INTEGER): Make value to check the first
7373 argument.
7374 * character.c, charset.c, menu.c, process.c, window.c: Adjust all
7375 uses.
7376
7377 2012-06-29 Eli Zaretskii <eliz@gnu.org>
7378
7379 * xdisp.c (try_window_id): Undo last change.
7380
7381 * w32.c (getwd): Adjust commentary about startup_dir.
7382 (init_environment): Always call sys_access, even in non-MSVC
7383 builds. Don't chdir to the directory of the Emacs executable.
7384 This undoes code from 1997 which was justified by the need to
7385 "avoid conflicts when removing and renaming directories". But its
7386 downside was that every relative file name was being interpreted
7387 relative to the directory of the Emacs executable, which can never
7388 be TRT. In particular, it broke sys_access when called with
7389 relative file names.
7390 (sys_access): Map GetLastError to errno.
7391
7392 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
7393
7394 * window.h (struct window): Change type of 'fringes_outside_margins'
7395 to bitfield. Fix comment. Adjust users accordingly.
7396 (struct window): Change type of 'window_end_bytepos' to ptrdiff_t.
7397 Adjust comment.
7398 * xdisp.c (try_window_id): Change type of 'first_vpos' and 'vpos'
7399 to ptrdiff_t.
7400
7401 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
7402
7403 * gnutls.c (emacs_gnutls_handshake):
7404 Add QUIT to make the loop interruptible.
7405
7406 2012-06-29 Glenn Morris <rgm@gnu.org>
7407
7408 * charset.c (init_charset): Make lack of etc/charsets fatal.
7409
7410 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
7411
7412 * editfns.c (region_limit): Fix type mismatch.
7413
7414 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
7415
7416 * nsfns.m: Fix GLYPH_DEBUG usage assuming that it may be
7417 undefined. Convert from xassert to eassert.
7418 * nsmenu.m: Convert from xassert to eassert.
7419 * nsterm.m: Likewise.
7420
7421 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
7422
7423 * editfns.c (region_limit): Clip to narrowing (bug#11770).
7424
7425 2012-06-28 Paul Eggert <eggert@cs.ucla.edu>
7426
7427 Avoid integer overflow on scroll-left and scroll-right.
7428 * window.c (HSCROLL_MAX): New macro.
7429 (Fscroll_left, Fscroll_right): Avoid undefined behavior on integer
7430 overflow when requested scroll falls outside ptrdiff_t range.
7431
7432 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
7433
7434 * window.h (struct window): Change type of 'hscroll',
7435 'min_hscroll' and 'last_point' from Lisp_Object to ptrdiff_t,
7436 'last_modified' and 'last_overlay_modified' to EMACS_INT.
7437 Adjust users accordingly.
7438 * xdisp.c (try_cursor_movement): Replace type check with eassert.
7439 * window.c (Fscroll_left, Fscroll_right): Change type of 'hscroll'
7440 from EMACS_INT to ptrdiff_t.
7441 (make_window): Omit redundant initialization.
7442
7443 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
7444
7445 * makefile.w32-in ($(BLD)/regex.$(O)): Update dependencies.
7446
7447 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
7448
7449 * window.h (struct window): Change type of 'use_time' and
7450 'sequence_number' from Lisp_Object to int.
7451 * frame.c (make_frame): Adjust users accordingly.
7452 * print.c (print_object): Likewise.
7453 * window.c (select_window, Fwindow_use_time, make_parent_window)
7454 (make_window): Likewise.
7455
7456 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
7457
7458 * dispextern.h (GLYPH_DEBUG): Now defined in config.h if
7459 enabled with --enable-checking=[all,glyphs] configure option.
7460 Fix GLYPH_DEBUG usage assuming that it may be undefined,
7461 adjust comments accordingly.
7462 * dispnew.c: Fix GLYPH_DEBUG usage assuming that it may be
7463 undefined, adjust comments accordingly.
7464 * image.c: Likewise.
7465 * scroll.c: Likewise.
7466 * w32fns.c: Likewise.
7467 * w32term.c: Likewise.
7468 * xdisp.c: Likewise.
7469 * xfaces.c: Likewise.
7470 * xfns.c: Likewise.
7471 * xterm.c: Likewise.
7472
7473 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
7474
7475 Generalize run-time debugging checks.
7476 * dispextern.h (XASSERTS): Remove.
7477 * fontset.c (xassert): Remove.
7478 Convert from xassert to eassert.
7479 * alloc.c: Convert from xassert to eassert.
7480 * bidi.c: Likewise.
7481 * dispnew.c: Likewise.
7482 * fns.c: Likewise.
7483 * fringe.c: Likewise.
7484 * ftfont.c: Likewise.
7485 * gtkutil.c: Likewise.
7486 * image.c: Likewise.
7487 * keyboard.c: Likewise.
7488 * menu.c: Likewise.
7489 * process.c: Likewise.
7490 * scroll.c: Likewise.
7491 * sound.c: Likewise.
7492 * term.c: Likewise.
7493 * w32console.c: Likewise.
7494 * w32fns.c: Likewise.
7495 * w32term.c: Likewise.
7496 * window.c: Likewise.
7497 * xdisp.c: Likewise.
7498 * xfaces.c: Likewise.
7499 * xfns.c: Likewise.
7500 * xselect.c: Likewise.
7501 * xterm.c: Likewise.
7502
7503 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
7504
7505 * fns.c (maybe_resize_hash_table): Output message when growing the
7506 purify-hashtable.
7507
7508 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
7509
7510 * alloc.c (allocate_string_data): Remove dead code.
7511 * xsettings.c (XSETTINGS_FONT_NAME): Move under HAVE_XFT to
7512 avoid GCC warning about unused macro.
7513
7514 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
7515
7516 * alloc.c (allocate_string): Omit intervals initialization.
7517 * alloc.c (make_uninit_multibyte_string): Initialize intervals
7518 as in make_pure_string and make_pure_c_string.
7519
7520 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
7521
7522 * alloc.c (allocate_string): Fix last change.
7523
7524 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
7525
7526 * alloc.c (allocate_string): Remove two redundant calls
7527 to memset, add explicit initialization where appropriate.
7528
7529 2012-06-27 Glenn Morris <rgm@gnu.org>
7530
7531 * lisp.mk (lisp): Remove paths.elc.
7532
7533 2012-06-27 Chong Yidong <cyd@gnu.org>
7534
7535 * doc.c (Fsubstitute_command_keys): Fix punctuation.
7536
7537 2012-06-26 John Wiegley <johnw@newartisans.com>
7538
7539 * unexmacosx.c (copy_data_segment): Add two section names used
7540 on Mac OS X Lion: __mod_init_func and __mod_term_func.
7541
7542 * alloc.c (mark_memory): Do not check with -faddress-sanitizer
7543 when building with Clang.
7544
7545 2012-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
7546
7547 * eval.c (Fapply): Allow calling it with a single argument.
7548
7549 2012-06-26 Eli Zaretskii <eliz@gnu.org>
7550
7551 * s/ms-w32.h (strcasecmp, strncasecmp) [_MSC_VER]: Redirect to
7552 _stricmp and _strnicmp.
7553 (HAVE_STRCASECMP, HAVE_STRNCASECMP): Define to 1.
7554
7555 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
7556
7557 * alloc.c (allocate_window): Zero out non-Lisp part of newly
7558 allocated window.
7559 (allocate_process): Likewise for new process.
7560 (allocate_terminal): Change to use offsetof.
7561 (allocate_frame): Likewise.
7562 * frame.c (make_frame): Omit redundant initialization.
7563 * window.c (make_parent_window): Use memset.
7564 (make_window): Omit redundant initialization.
7565 * process.c (make_process): Omit redundant initialization.
7566 * terminal.c (create_terminal): Likewise.
7567
7568 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
7569
7570 * term.c (delete_tty): Remove redundant call to memset.
7571
7572 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
7573
7574 * alloc.c: Remove build_string.
7575 * lisp.h: Define build_string as static inline. This provides
7576 a better opportunity to optimize away calls to strlen when the
7577 function is called with compile-time constant argument.
7578 * image.c (imagemagick_error): Convert to build_string.
7579 * w32proc.c (sys_spawnve): Likewise.
7580 * xterm.c (x_term_init): Likewise.
7581
7582 2012-06-26 Paul Eggert <eggert@cs.ucla.edu>
7583
7584 Use sprintf return value instead of invoking strlen on result.
7585 In the old days this wasn't portable, since some sprintf
7586 implementations returned char *. But they died out years ago and
7587 Emacs already assumes sprintf returns int.
7588 Similarly for float_to_string.
7589 This patch speeds up (number-to-string 1000) by 3% on Fedora 15 x86-64.
7590 * ccl.c (ccl_driver):
7591 * character.c (string_escape_byte8):
7592 * data.c (Fnumber_to_string):
7593 * doprnt.c (doprnt):
7594 * print.c (print_object):
7595 * xdisp.c (message_dolog):
7596 * xfns.c (syms_of_xfns):
7597 Use sprintf or float_to_string result to avoid need to call strlen.
7598 * data.c (Fnumber_to_string):
7599 Use make_unibyte_string, since the string must be ASCII.
7600 * lisp.h, print.c (float_to_string): Now returns int length.
7601 * term.c (produce_glyphless_glyph):
7602 Use sprintf result rather than recomputing it.
7603
7604 Clean out last vestiges of the old HAVE_CONFIG_H stuff.
7605 * Makefile.in (ALL_CFLAGS):
7606 * makefile.w32-in (LOCAL_FLAGS): Remove -DHAVE_CONFIG_H.
7607 * gmalloc.c, regex.c: Include <config.h> unconditionally.
7608
7609 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
7610
7611 * dispextern.h (xstrcasecmp): Define to library function
7612 strcasecmp if available.
7613 * xfaces.c: Do not use xstrcasecmp if strcasecmp is available.
7614
7615 2012-06-25 Andreas Schwab <schwab@linux-m68k.org>
7616
7617 * keyboard.c (menu_bar_items, menu_bar_item, read_key_sequence):
7618 Avoid comma operator.
7619 * menu.c (push_submenu_start, push_submenu_end)
7620 (push_left_right_boundary, push_menu_pane): Likewise.
7621 * msdos.c (dos_rawgetc): Likewise.
7622
7623 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
7624
7625 * xfns.c (xic_create_fontsetname): Remove redundant calls
7626 to memset.
7627
7628 2012-06-25 Paul Eggert <eggert@cs.ucla.edu>
7629
7630 * gtkutil.c (get_utf8_string): Remove redundant assignment.
7631 sprintf already null-terminates its output.
7632
7633 * xfns.c (x_window): Remove redundant cast.
7634
7635 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
7636
7637 * xmenu.c (xmenu_show, xdialog_show): Explicit cast from
7638 `const char *' to `char *' to avoid compiler warning.
7639
7640 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
7641
7642 * xterm.c (x_term_init): Build proper-sized _XSETTINGS_Snnn string
7643 instead of truncating it to 63 (admittedly a generous limit).
7644
7645 * process.c: Fix spelling and caps in comments.
7646
7647 2012-06-24 Dan Nicolaescu <dann@ics.uci.edu>
7648
7649 * emacs.c (setpgrp): Remove definition, unused.
7650 * sysdep.c (setpgrp): Remove definition, not used in this file.
7651
7652 2012-06-24 Juanma Barranquero <lekktu@gmail.com>
7653
7654 * makefile.w32-in: Update dependencies.
7655
7656 2012-06-24 Eli Zaretskii <eliz@gnu.org>
7657
7658 * makefile.w32-in (TIMESPEC_H): Remove nt/inc/sys/time.h.
7659 (SYSTIME_H): Add nt/inc/sys/time.h.
7660
7661 * systime.h [WINDOWSNT]: Include sys/time.h.
7662
7663 * s/ms-w32.h (struct timespec): Definition moved from
7664 nt/inc/sys/time.h. Suggested by Paul Eggert <eggert@cs.ucla.edu>.
7665
7666 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
7667
7668 Switch from NO_RETURN to C11's _Noreturn (Bug#11750).
7669 * buffer.h (buffer_slot_type_mismatch):
7670 * data.c (arith_error) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
7671 * eval.c (unwind_to_catch):
7672 * image.c (my_png_error, my_error_exit):
7673 * keyboard.c (quit_throw_to_read_char, user_error)
7674 (Fexit_recursive_edit, Fabort_recursive_edit):
7675 * lisp.h (die, args_out_of_range, args_out_of_range_3)
7676 (wrong_type_argument, buffer_overflow, __executable_start)
7677 (memory_full, buffer_memory_full, string_overflow, Fthrow)
7678 (xsignal, xsignal0, xsignal1, xsignal2, xsignal3, signal_error)
7679 (error, verror, nsberror, report_file_error, Ftop_level, Fkill_emacs)
7680 (fatal):
7681 (child_setup) [!DOS_NT]:
7682 * lread.c (end_of_file_error, invalid_syntax):
7683 * process.c (send_process_trap) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
7684 * puresize.h (pure_write_error):
7685 * search.c (matcher_overflow):
7686 * sound.c (sound_perror, alsa_sound_perror):
7687 * sysdep.c, syssignal.h (croak):
7688 * term.c (maybe_fatal, vfatal):
7689 * textprop.c (text_read_only):
7690 * undo.c (user_error):
7691 * unexmacosx.c (unexec_error):
7692 * xterm.c (x_ins_del_lines, x_delete_glyphs):
7693 Use _Noreturn rather than NO_RETURN.
7694 No need for separate decl merely because of _Noreturn.
7695 * sound.c (sound_warning, parse_sound):
7696 Remove unnecessary forward decls.
7697
7698 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
7699
7700 Fix bug when time_t is unsigned and as wide as intmax_t (Bug#9000).
7701 * lisp.h (WAIT_READING_MAX): New macro.
7702 * dispnew.c (Fsleep_for, sit_for):
7703 * keyboard.c (kbd_buffer_get_event):
7704 * process.c (Faccept_process_output):
7705 Use it to avoid bogus compiler warnings with obsolescent GCC versions.
7706 This improves on the previous patch, which introduced a bug
7707 when time_t is unsigned and as wide as intmax_t.
7708 See <http://bugs.gnu.org/9000#51>.
7709
7710 2012-06-23 Eli Zaretskii <eliz@gnu.org>
7711
7712 * dispnew.c (sit_for, Fsleep_for):
7713 * keyboard.c (kbd_buffer_get_event):
7714 * process.c (Faccept_process_output): Avoid compiler warnings when
7715 comparing a 32-bit time_t with a 64-bit INTMAX_MAX.
7716
7717 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
7718
7719 * makefile.w32-in: Update dependencies.
7720
7721 * w32.c (ltime): Add return type and declare static.
7722 (w32_get_internal_run_time): Remove usused variable `time_100ns'.
7723
7724 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
7725
7726 * sysdep.c [__FreeBSD__]: Fix more recently-introduced typos.
7727 Privately reported by Herbert J. Skuhra.
7728 (make_lisp_timeval) [__FreeBSD__]: Rename from TIMELIST.
7729 All uses changed.
7730 (system_process_attributes) [__FreeBSD__]: Invoke make_lisp_time,
7731 not make_lisp_timeval, when the argument is of type EMACS_TIME.
7732
7733 2012-06-23 Eli Zaretskii <eliz@gnu.org>
7734
7735 * w32proc.c (Fw32_get_locale_info): Fix an off-by-one error in
7736 last argument of make_unibyte_string.
7737
7738 * keyboard.c (kbd_buffer_get_event): Include the codepage and the
7739 language ID in the event parameters.
7740
7741 * w32term.c (w32_read_socket): Put the new keyboard codepage into
7742 event.code, not the obscure "character set ID".
7743
7744 2012-06-23 Chong Yidong <cyd@gnu.org>
7745
7746 * xmenu.c (x_menu_wait_for_event): Adapt GTK3 to new xg_select.
7747
7748 2012-06-23 Eli Zaretskii <eliz@gnu.org>
7749
7750 Fix the MS-Windows build broken by 2012-06-22T21:17:42Z!eggert@cs.ucla.edu.
7751 * w32.c (fdutimens): New function.
7752
7753 * w32proc.c (sys_select): Adapt to change in the EMACS_TIME type.
7754
7755 * s/ms-w32.h (pselect): Redirect to sys_select.
7756
7757 * sysselect.h [WINDOWSNT]: Don't include sys/select.h.
7758
7759 * ralloc.c (r_alloc_inhibit_buffer_relocation): Fix stupid thinko
7760 in the logic of incrementing and decrementing the value of
7761 use_relocatable_buffers.
7762
7763 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
7764
7765 * sysdep.c [__FreeBSD__]: Fix recently-introduced typos.
7766 Privately reported by Herbert J. Skuhra.
7767 [__FreeBSD__]: Remove "*/" typo after "#include".
7768 (timeval_to_EMACS_TIME) [__FreeBSD__]: New static function.
7769 (TIMEVAL) [__FreeBSD__]: Now a static function rather than a macro.
7770 (TIMEVAL, system_process_attributes) [__FreeBSD__]:
7771 Don't assume EMACS_TIME and struct timeval are the same type.
7772
7773 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
7774
7775 Support higher-resolution time stamps (Bug#9000).
7776 The time stamps are only nanosecond-resolution at the C level,
7777 since that's the best that any real-world system supports now.
7778 But they are picosecond-resolution at the Lisp level, as that's
7779 easy, and leaves room for future OS improvements.
7780
7781 * Makefile.in (LIB_CLOCK_GETTIME): New macro.
7782 (LIBES): Use it.
7783
7784 * alloc.c (Fgarbage_collect): Port to higher-res time stamps.
7785 Don't get current time unless it's needed.
7786
7787 * atimer.c: Include <sys/time.h> unconditionally, since gnulib
7788 now provides it if it's absent.
7789 (start_atimer): Port to higher-res time stamps.
7790 Check for time stamp overflow. Don't get current time more
7791 often than is needed.
7792
7793 * buffer.h (struct buffer): Buffer modtime now has high resolution.
7794 Include systime.h, not time.h.
7795 (NONEXISTENT_MODTIME_NSECS, UNKNOWN_MODTIME_NSECS): New macros.
7796
7797 * dired.c: Include stat-time.h.
7798 (Ffile-attributes): File times now have higher resolution.
7799
7800 * dispextern.h [HAVE_WINDOW_SYSTEM]: Include systime.h.
7801 (struct image): Timestamp now has higher resolution.
7802
7803 * dispnew.c (PERIODIC_PREEMPTION_CHECKING): Remove, as Emacs always
7804 has at least microseconds now. All uses removed.
7805 (update_frame, update_single_window, update_window, update_frame_1)
7806 (Fsleep_for, sit_for): Port to higher-resolution time stamps.
7807 (duration_to_sec_usec): Remove; no longer needed.
7808
7809 * editfns.c (time_overflow): Now extern.
7810 (Fcurrent_time, Fget_internal_run_time, make_time, lisp_time_argument)
7811 (float-time, Fformat_time_string, Fcurrent_time_string)
7812 (Fcurrent_time_zone): Accept and generate higher-resolution
7813 time stamps.
7814 (make_time_tail, make_lisp_time, dissassemble_lisp_time)
7815 (decode_time_components, lisp_seconds_argument): New functions.
7816 (make_time): Now static.
7817 (lisp_time_argument): Now returns EMACS_TIME. New arg ppsec.
7818 Report an error if the time is invalid, rather than having the caller
7819 do that.
7820
7821 * fileio.c: Include <stat-time.h>
7822 (Fcopy_file): Copy higher-resolution time stamps.
7823 Prefer to set the time stamp via a file descriptor if that works.
7824 (Fset_file_times, Finsert_file_contents, Fwrite_region)
7825 (Fverify_visited_file_modtime, Fclear_visited_file_modtime)
7826 (Fvisited_file_modtime, Fset_visited_file_modtime):
7827 Support higher-resolution time stamps.
7828
7829 * fns.c (Frandom): Use nanoseconds, not microseconds, for seed.
7830
7831 * gtkutil.c (xg_maybe_add_timer): Port to higher-res time stamps.
7832
7833 * image.c (prepare_image_for_display, clear_image_cache)
7834 (lookup_image): Port to higer-resolution time stamps.
7835
7836 * keyboard.c (start_polling, bind_polling_period):
7837 Check for time stamp overflow.
7838 (read_char, kbd_buffer_get_event, timer_start_idle)
7839 (timer_stop_idle, timer_resume_idle, timer_check_2, timer_check)
7840 (Fcurrent_idle_time, init_keyboard, set_waiting_for_input):
7841 Port to higher-resolution time stamps. Do not assume time_t is signed.
7842 (decode_timer): New function. Timers are now vectors of length 9,
7843 not 8, to accommodate the picosecond component.
7844 (timer_check_2): Use it.
7845
7846 * nsterm.m (select_timeout, timeval_subtract): Remove.
7847 (ns_timeout): Use Emacs's facilities for time stamp arithmetic,
7848 as they're a bit more accurate and handle overflow better.
7849 (ns_select): Change prototype to be compatible with pselect.
7850 (ns_select, ns_term_shutdown): Port to ns-resolution time stamps.
7851 * nsterm.h (ns_select): Adjust prototype.
7852
7853 * msdos.c (EMACS_TIME_ZERO_OR_NEG_P): Remove, as it assumes
7854 us-resolution time stamps.
7855 (sys_select): Use the new EMACS_TIME_SIGN macro instead.
7856
7857 * lread.c (read_filtered_event): Port to ns-resolution time stamps.
7858
7859 * lisp.h (time_overflow): New decl.
7860 (wait_reading_process_output): First arg is now intmax_t, not int,
7861 to accommodate larger waits.
7862
7863 * process.h (struct Lisp_Process.read_output_delay):
7864 Now counts nanoseconds, not microseconds.
7865 * process.c (ADAPTIVE_READ_BUFFERING): Don't worry about
7866 EMACS_HAS_USECS.
7867 (READ_OUTPUT_DELAY_INCREMENT, Faccept_process_output)
7868 (wait_reading_process_output):
7869 Port to ns-resolution time stamps.
7870 (Faccept_process_output, wait_reading_process_output):
7871 Check for time stamp overflow. Do not assume time_t is signed.
7872 (select_wrapper): Remove; we now use pselect.
7873 (Fprocess_attributes): Now generates ns-resolution time stamps.
7874
7875 * sysdep.c: Include utimens.h. Don't include utime.h
7876 or worry about struct utimbuf; gnulib does that for us now.
7877 (gettimeofday): Remove; gnulib provides a substitute.
7878 (make_timeval): New function.
7879 (set_file_times): Now sets ns-resolution time stamps.
7880 New arg FD; all uses changed.
7881 (time_from_jiffies, ltime_from_jiffies, get_up_time)
7882 (system_process_attributes):
7883 Now returns ns-resolution time stamp. All uses changed.
7884 Check for time stamp overflow.
7885
7886 * sysselect.h: Don't depend on HAVE_SYS_SELECT_H; gnulib
7887 provides a substitute now.
7888
7889 * systime.h: Include timespec.h rather than sys/time.h and time.h,
7890 since it guarantees struct timespec.
7891 (EMACS_TIME): Now struct timespec, so that we can support
7892 ns-resolution time stamps.
7893 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): New macros.
7894 (EMACS_HAS_USECS): Remove; Emacs always has sub-second time stamps now.
7895 (EMACS_USECS): Remove.
7896 (EMACS_SET_USECS): The underlying time stamp now has ns resolution,
7897 so multiply the arg by 1000 before storing it.
7898 (EMACS_NSECS, EMACS_SECS_ADDR, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS):
7899 New macros.
7900 (EMACS_GET_TIME, EMACS_ADD_TIME, EMACS_SUB_TIME):
7901 Port to ns-resolution time stamps.
7902 (EMACS_TIME_NEG_P): Remove; replaced by....
7903 (EMACS_TIME_SIGN): New macro.
7904 (EMACS_SET_INVALID_TIME, EMACS_TIME_VALID_P)
7905 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE): New macros.
7906 (set_file_times, make_time, lisp_time_argument): Adjust signature.
7907 (make_timeval, make_lisp_time, decode_time_components): New decls.
7908 (EMACS_TIME_CMP): Remove; no longer used. Plus, it was buggy, in
7909 that it mishandled time_t overflow. You can't compare by subtracting!
7910 (EMACS_TIME_EQ, EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE)
7911 (EMACS_TIME_LT, EMACS_TIME_LE): Rewrite in terms of timespec_cmp.
7912
7913 * term.c: Include <sys/time.h>.
7914 (timeval_to_Time): New function, for proper overflow wraparound.
7915 (term_mouse_position, term_mouse_click): Use it.
7916
7917 * undo.c (record_first_change): Support higher-resolution time stamps
7918 in the undo buffer.
7919 (Fprimitive_undo): Use them when restoring time stamps.
7920
7921 * w32.c (ltime, U64_TO_LISP_TIME, process_times, emacs_gnutls_pull)
7922 (w32_get_internal_run_time):
7923 Port to higher-resolution Emacs time stamps.
7924 (ltime): Now accepts single 64-bit integer, as that's more convenient
7925 for callers.
7926
7927 * xdisp.c (start_hourglass): Port to ns-resolution time stamps.
7928
7929 * xgselect.c, xgselect.h (xg_select): Add sigmask argument,
7930 for compatibility with pselect. Support ns-resolution time stamps.
7931
7932 * xmenu.c (x_menu_wait_for_event): Support ns-resolution time stamps.
7933
7934 * xselect.c (wait_for_property_change, x_get_foreign_selection):
7935 Check for time stamp overflow, and support ns-resolution time stamps.
7936
7937 * xterm.c: Don't include sys/time.h; gnulib does that for us now.
7938 Don't worry about whether HAVE_TIMEVAL and HAVE_SELECT are set.
7939 (timeval_subtract): Remove; no longer needed.
7940 (XTflash, XTring_bell, x_wait_for_event):
7941 Port to ns-resolution time stamps. Don't assume time_t is signed.
7942
7943 2012-06-22 Chong Yidong <cyd@gnu.org>
7944
7945 * xdisp.c (x_consider_frame_title): Revert last change.
7946
7947 2012-06-22 Eli Zaretskii <eliz@gnu.org>
7948
7949 * alloc.c (NSTATICS): Enlarge to 0x650. Otherwise, Emacs compiled
7950 with -DENABLE_CHECKING -DXASSERTS -DGLYPH_DEBUG=1 -DBYTE_CODE_METER
7951 aborts in staticpro during startup. (Without -DBYTE_CODE_METER,
7952 staticidx goes up to 1597 out of 1600 = 0x640.)
7953
7954 2012-06-20 Paul Eggert <eggert@cs.ucla.edu>
7955
7956 * fileio.c (Fdefault_file_modes): Block input while fiddling with umask.
7957 Otherwise, the umask might be mistakenly 0 while handling input signals.
7958
7959 2012-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
7960
7961 * minibuf.c (Fread_string): Bind minibuffer-completion-table.
7962
7963 2012-06-19 Dmitry Antipov <dmantipov@yandex.ru>
7964
7965 * alloc.c, bytecode.c, ccl.c, coding.c, composite.c, data.c, dosfns.c:
7966 * font.c, image.c, keyboard.c, lread.c, menu.c, minibuf.c, msdos.c:
7967 * print.c, syntax.c, window.c, xmenu.c, xselect.c: Replace direct
7968 access to `contents' member of Lisp_Vector objects with AREF and ASET
7969 where appropriate.
7970
7971 2012-06-19 Chong Yidong <cyd@gnu.org>
7972
7973 * frame.c (delete_frame): When selecting a frame on a different
7974 text terminal, do not alter the terminal's top-frame.
7975
7976 * xdisp.c (format_mode_line_unwind_data): Record the target
7977 frame's selected window and its terminal's top-frame.
7978 (unwind_format_mode_line): Restore them.
7979 (x_consider_frame_title, display_mode_line, Fformat_mode_line):
7980 Callers changed.
7981 (x_consider_frame_title): Do not condition on HAVE_WINDOW_SYSTEM,
7982 since tty frames can be explicitly named.
7983 (prepare_menu_bars): Likewise.
7984
7985 * term.c (Ftty_top_frame): New function.
7986
7987 2012-06-18 Paul Eggert <eggert@cs.ucla.edu>
7988
7989 Port byte-code-meter to modern targets.
7990 * bytecode.c (METER_CODE) [BYTE_CODE_METER]: Don't assume
7991 !CHECK_LISP_OBJECT_TYPE && !USE_LSB_TAG. Problem with
7992 CHECK_LISP_OBJECT_TYPE reported by Dmitry Antipov in
7993 <http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00282.html>.
7994 (METER_1, METER_2): Simplify.
7995
7996 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
7997
7998 * data.c (Fdefalias): Return `symbol' (bug#11686).
7999
8000 2012-06-18 Martin Rudalics <rudalics@gmx.at>
8001
8002 * buffer.c (Fkill_buffer): Don't throw an error when the buffer
8003 gets killed during executing of this function (Bug#11665).
8004 Try to always return Qt when the buffer has been actually killed.
8005 (Vkill_buffer_query_functions): In doc-string say that functions
8006 run by this hook should not change the current buffer.
8007
8008 2012-06-18 Paul Eggert <eggert@cs.ucla.edu>
8009
8010 Fix recently-introduced process.c problems found by static checking.
8011 * process.c (write_queue_push, write_queue_pop, send_process):
8012 Use ptrdiff_t, not int or EMACS_INT, for buffer lengths and offsets.
8013 (write_queue_pop): Fix pointer signedness problem.
8014 (send_process): Remove unused local.
8015
8016 2012-06-17 Chong Yidong <cyd@gnu.org>
8017
8018 * xdisp.c (redisplay_internal): No need to redisplay terminal
8019 frames that are not on top.
8020
8021 2012-06-17 Troels Nielsen <bn.troels@gmail.com>
8022
8023 * process.c (make_process): Initialize write_queue.
8024 (write_queue_push, write_queue_pop): New functions.
8025 (send_process): Use them to maintain correct ordering of process
8026 writes (Bug#10815).
8027
8028 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
8029
8030 * lisp.h (eassert): Assume C89 or later.
8031 This removes the need for CHECK.
8032 (CHECK): Remove. Its comments about always evaluating its
8033 argument were confusing, as 'eassert' typically does not evaluate
8034 its argument.
8035
8036 * coding.c (produce_chars): Use ptrdiff_t, not int.
8037
8038 * xterm.c (x_draw_underwave): Check for integer overflow.
8039 This pacifies gcc 4.7.0 -Wunsafe-loop-optimizations on x86-64.
8040
8041 2012-06-17 Jan Djärv <jan.h.d@swipnet.se>
8042
8043 * nsterm.m (x_free_frame_resources): Move xfree so freed memory isn't
8044 referenced (Bug#11583).
8045
8046 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
8047
8048 Implement wave-style variant of underlining.
8049 * dispextern.h (face_underline_type): New enum.
8050 (face): Add field for underline type.
8051 * nsterm.m (ns_draw_underwave): New function.
8052 (ns_draw_text_decoration): Use it.
8053 * w32term.c (w32_restore_glyph_string_clip, w32_draw_underwave):
8054 New functions.
8055 (x_draw_glyph_string): Use them.
8056 * xfaces.c (Qline, Qwave): New Lisp objects.
8057 (check_lface_attrs, merge_face_ref)
8058 (Finternal_set_lisp_face_attribute, realize_x_face):
8059 Handle wave-style underline face attributes.
8060 * xterm.c (x_draw_underwave): New function.
8061 (x_draw_glyph_string): Use it.
8062
8063 2012-06-16 Juanma Barranquero <lekktu@gmail.com>
8064
8065 * makefile.w32-in ($(BLD)/emacs.$(O), $(BLD)/fringe.$(O))
8066 ($(BLD)/xml.$(O), $(BLD)/intervals.$(O), $(BLD)/macros.$(O))
8067 ($(BLD)/minibuf.$(O), $(BLD)/regex.$(O), $(BLD)/region-cache.$(O))
8068 ($(BLD)/textprop.$(O), $(BLD)/undo.$(O), $(BLD)/window.$(O))
8069 ($(BLD)/w32select.$(O)): Update dependencies.
8070
8071 2012-06-16 Andreas Schwab <schwab@linux-m68k.org>
8072
8073 * buffer.h (FETCH_MULTIBYTE_CHAR): Define as inline.
8074 (BUF_FETCH_MULTIBYTE_CHAR): Likewise.
8075 * character.c (_fetch_multibyte_char_p): Remove.
8076 * alloc.c: Include "character.h" before "buffer.h".
8077 * bidi.c: Likewise.
8078 * buffer.c: Likewise.
8079 * bytecode.c: Likewise.
8080 * callint.c: Likewise.
8081 * callproc.c: Likewise.
8082 * casefiddle.c: Likewise.
8083 * casetab.c: Likewise.
8084 * category.c: Likewise.
8085 * cmds.c: Likewise.
8086 * coding.c: Likewise.
8087 * composite.c: Likewise.
8088 * dired.c: Likewise.
8089 * dispnew.c: Likewise.
8090 * doc.c: Likewise.
8091 * dosfns.c: Likewise.
8092 * editfns.c: Likewise.
8093 * emacs.c: Likewise.
8094 * fileio.c: Likewise.
8095 * filelock.c: Likewise.
8096 * font.c: Likewise.
8097 * fontset.c: Likewise.
8098 * fringe.c: Likewise.
8099 * indent.c: Likewise.
8100 * insdel.c: Likewise.
8101 * intervals.c: Likewise.
8102 * keyboard.c: Likewise.
8103 * keymap.c: Likewise.
8104 * lread.c: Likewise.
8105 * macros.c: Likewise.
8106 * marker.c: Likewise.
8107 * minibuf.c: Likewise.
8108 * nsfns.m: Likewise.
8109 * nsmenu.m: Likewise.
8110 * print.c: Likewise.
8111 * process.c: Likewise.
8112 * regex.c: Likewise.
8113 * region-cache.c: Likewise.
8114 * search.c: Likewise.
8115 * syntax.c: Likewise.
8116 * term.c: Likewise.
8117 * textprop.c: Likewise.
8118 * undo.c: Likewise.
8119 * unexsol.c: Likewise.
8120 * w16select.c: Likewise.
8121 * w32fns.c: Likewise.
8122 * w32menu.c: Likewise.
8123 * window.c: Likewise.
8124 * xdisp.c: Likewise.
8125 * xfns.c: Likewise.
8126 * xmenu.c: Likewise.
8127 * xml.c: Likewise.
8128 * xselect.c: Likewise.
8129
8130 2012-06-16 Eli Zaretskii <eliz@gnu.org>
8131
8132 * xdisp.c (set_cursor_from_row): Don't dereference glyphs_end.
8133 If all the glyphs of the glyph row came from strings, and we have no
8134 cursor positioning clues, put the cursor on the first glyph of the
8135 row.
8136 (handle_face_prop): Use chunk-relative overlay string index when
8137 indexing into it->string_overlays array. (Bug#11653)
8138 (set_cursor_from_row): Use the leftmost glyph as GLYPH_BEFORE, not
8139 the rightmost. (Bug#11720)
8140
8141 2012-06-16 Andreas Schwab <schwab@linux-m68k.org>
8142
8143 * category.h (CHAR_HAS_CATEGORY): Define as inline.
8144 (CATEGORY_MEMBER): Enforce 1/0 value.
8145 * category.c (_temp_category_set): Remove.
8146
8147 2012-06-16 Eli Zaretskii <eliz@gnu.org>
8148
8149 * window.c (Fdelete_other_windows_internal)
8150 (Fdelete_window_internal): Don't access frame's mouse highlight
8151 info of the initial frame. (Bug#11677)
8152
8153 2012-06-14 Paul Eggert <eggert@cs.ucla.edu>
8154
8155 * .gdbinit (xgetint): Fix recently-introduced paren typo.
8156 Assume USE_2_TAGS_FOR_INTS.
8157 (xreload): Adjust $tagmask width to match recent lisp.h change.
8158
8159 Simplify lisp.h in minor ways that should not affect code.
8160 * lisp.h (USE_2_TAGS_FOR_INTS): Remove, as it was always defined.
8161 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P)
8162 (LISP_INT1_TAG, enum Lisp_Type, XINT, XUINT, make_number):
8163 Simplify under the assumption that USE_2_TAGS_FOR_INTS is defined.
8164 (INTTYPEBITS): New macro, for clarity.
8165 (INTMASK, MOST_POSITIVE_FIXNUM): Use it.
8166 (LISP_INT1_TAG, LISP_STRING_TAG, LISP_INT_TAG_P):
8167 Simplify now that USE_LSB_TAG is always defined.
8168 (TYPEMASK, XINT) [USE_LSB_TAG]: Remove unnecessary cast.
8169 (make_number) [!USE_LSB_TAG]: Use INTMASK; that's simpler.
8170
8171 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
8172
8173 * makefile.w32-in ($(BLD)/data.$(O)): Update dependencies.
8174
8175 2012-06-13 Glenn Morris <rgm@gnu.org>
8176
8177 * s/bsd-common.h (BSD4_3):
8178 * s/usg5-4-common.h (USG5_4): No longer define; unused.
8179
8180 2012-06-13 Andreas Schwab <schwab@linux-m68k.org>
8181
8182 * lisp.h (Lisp_Object) [CHECK_LISP_OBJECT_TYPE]: Define as struct
8183 instead of union.
8184 (XLI, XIL): Define.
8185 (XHASH, XTYPE, XINT, XUINT, make_number, XSET, XPNTR, XUNTAG):
8186 Use them.
8187 * emacs.c (gdb_use_struct): Rename from gdb_use_union.
8188 * .gdbinit: Check gdb_use_struct instead of gdb_use_union.
8189 * alloc.c (widen_to_Lisp_Object): Remove.
8190 (mark_memory): Use XIL instead of widen_to_Lisp_Object.
8191 * frame.c (delete_frame): Remove outdated comment.
8192 * w32fns.c (Fw32_register_hot_key): Use XLI instead of checking
8193 USE_LISP_UNION_TYPE.
8194 (Fw32_unregister_hot_key): Likewise.
8195 (Fw32_toggle_lock_key): Likewise.
8196 * w32menu.c (add_menu_item): Likewise.
8197 (w32_menu_display_help): Use XIL instead of checking
8198 USE_LISP_UNION_TYPE.
8199 * w32heap.c (allocate_heap): Don't check USE_LISP_UNION_TYPE.
8200 (init_heap): Likewise.
8201 * w32term.c (w32_read_socket): Update comment.
8202
8203 2012-06-13 Glenn Morris <rgm@gnu.org>
8204
8205 * s/usg5-4-common.h, src/s/unixware.h:
8206 Remove define/undef of HAVE_SYSV_SIGPAUSE (not used since 2010-05-04).
8207
8208 * s/gnu.h (POSIX_SIGNALS): Remove (not used since 2010-05-04).
8209
8210 2012-06-13 Paul Eggert <eggert@cs.ucla.edu>
8211
8212 USE_LISP_UNION_TYPE + USE_LSB_TAG cleanup (Bug#11604)
8213 * alloc.c (make_number) [!defined make_number]:
8214 Remove, as lisp.h always defines this now.
8215 (mark_maybe_pointer): Simplify since USE_LSB_TAG is always defined now.
8216 (roundup_size): Verify that it is a power of 2.
8217 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
8218 * ftfont.c (ftfont_driver): Use LISP_INITIALLY_ZERO.
8219 * lisp.h (USE_LSB_TAG): Allow the builder to compile with
8220 -DUSE_LSB_TAG=0, to override the automatically-selected default.
8221 USE_LSB_TAG now is always defined to be either 0 or 1.
8222 All uses changed.
8223 (union Lisp_Object): Don't worry about WORDS_BIGENDIAN; the
8224 code works fine either way, and efficiency is not a concern here,
8225 as the union type is for debugging, not for production.
8226 (LISP_MAKE_RVALUE, make_number) [USE_LISP_UNION_TYPE]:
8227 Use an inline function on all platforms when using the union type,
8228 since this is simpler and 'static inline' can be used portably
8229 within Emacs now.
8230 (LISP_INITIALLY_ZERO): New macro.
8231 (XFASTINT, XSETFASTINT) [USE_LISP_UNION_TYPE]: Remove.
8232 (XSET) [USE_LISP_UNION_TYPE]: Don't overparenthesize.
8233
8234 2012-06-12 Glenn Morris <rgm@gnu.org>
8235
8236 * s/gnu-kfreebsd.h, s/hpux11.h, s/openbsd.h, s/sol2-10.h: Remove files.
8237
8238 * s/gnu-linux.h (HAVE_PROCFS): Move to configure.
8239
8240 * s/hpux10-20.h, s/openbsd.h, s/usg5-4-common.h:
8241 Move BROKEN_SIGIO to configure.
8242
8243 * s/bsd-common.h, s/darwin.h, s/gnu-kfreebsd.h, s/hpux10-20.h:
8244 Move NO_TERMIO to configure.
8245
8246 2012-06-12 Chong Yidong <cyd@gnu.org>
8247
8248 * image.c (imagemagick_load_image): Use MagickFlattenImage if
8249 MagickMergeImageLayers is undefined. Use pixel pusher loop if
8250 MagickExportImagePixels is undefined.
8251
8252 2012-06-12 Paul Eggert <eggert@cs.ucla.edu>
8253
8254 * image.c (imagemagick_load_image): Remove unused label.
8255
8256 2012-06-11 Glenn Morris <rgm@gnu.org>
8257
8258 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
8259 * s/gnu-kfreebsd.h, s/gnu-linux.h, s/gnu.h, s/hpux10-20.h:
8260 * s/irix6-5.h, s/ms-w32.h, s/msdos.h, s/template.h:
8261 * s/usg5-4-common.h: Move SYSTEM_TYPE to configure.
8262
8263 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
8264
8265 * alloc.c (make_byte_code): New function.
8266 (Fmake_byte_code): Use it. Don't purify here.
8267 * lread.c (read1): Use it as well to avoid extra allocation.
8268
8269 2012-06-11 Chong Yidong <cyd@gnu.org>
8270
8271 * image.c (imagemagick_load_image): Implement transparency.
8272
8273 2012-06-10 Andreas Schwab <schwab@linux-m68k.org>
8274
8275 * regex.c (at_begline_loc_p): Also recognize `(?N:' and correctly
8276 account for preceding backslashes. (Bug#11663)
8277
8278 2012-06-09 Chong Yidong <cyd@gnu.org>
8279
8280 * term.c: Support italics in capable terminals (Bug#9652).
8281 (no_color_bit): Replace unused NC_BLINK with NC_ITALIC.
8282 (turn_on_face): Output using TS_enter_italic_mode if available.
8283 Don't handle unused blinking and alt-charset cases.
8284 (turn_off_face): Handle italic case; discard unused tty_blinking_p
8285 and tty_alt_charset_p cases.
8286 (tty_capable_p, init_tty): Support italics.
8287
8288 * termchar.h (struct tty_display_info): Add field for italics.
8289 Remove unused blink field.
8290
8291 * xfaces.c (tty_supports_face_attributes_p, realize_tty_face):
8292 Handle slant.
8293
8294 * dispextern.h: Replace unused TTY_CAP_BLINK with TTY_CAP_ITALIC.
8295 (struct face): Remove unused fields tty_dim_p, tty_blinking_p, and
8296 tty_alt_charset_p. Add tty_italic_p.
8297
8298 2012-06-09 Michael Albinus <michael.albinus@gmx.de>
8299
8300 * dbusbind.c (XD_BASIC_DBUS_TYPE): Use dbus_type_is_valid and
8301 dbus_type_is_basic if available.
8302 (xd_extract_signed, xd_extract_unsigned): Rename from
8303 extract_signed and extract_unsigned, respectively. Adapt callers.
8304
8305 2012-06-09 Chong Yidong <cyd@gnu.org>
8306
8307 * xfaces.c (face_for_overlay_string): Handle face remapping (Bug#2066).
8308
8309 * fringe.c (Fset_fringe_bitmap_face): Handle the noninteractive
8310 case (Bug#9752).
8311
8312 2012-06-08 Paul Eggert <eggert@cs.ucla.edu>
8313
8314 * xdisp.c (vmessage): Treat frame message as multibyte.
8315 Without this change, (let ((§ 1)) (make-variable-buffer-local '§))
8316 would generate the diagnostic "Making \302\247 buffer-local while
8317 let-bound!".
8318
8319 2012-06-08 Eli Zaretskii <eliz@gnu.org>
8320
8321 * dispnew.c (showing_window_margins_p): Undo last change, which
8322 was done due to an inadvertent commit.
8323 (adjust_frame_glyphs_for_frame_redisplay): Do call
8324 showing_window_margins_p.
8325
8326 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
8327
8328 * eval.c (Fmake_var_non_special): New primitive.
8329 (syms_of_eval): Defsubr it.
8330 * lread.c (syms_of_lread): Mark `values' as lexically scoped.
8331
8332 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
8333
8334 * dispnew.c (showing_window_margins_p): Wrap in #if 0 to prevent unused
8335 function warning (the only call is inside #if 0 since 2012-06-08T08:44:45Z!eliz@gnu.org).
8336
8337 2012-06-08 Eli Zaretskii <eliz@gnu.org>
8338
8339 * alloc.c (allocate_vectorlike): Fix last change.
8340
8341 2012-06-08 Dmitry Antipov <dmantipov@yandex.ru>
8342
8343 Block-based vector allocation of small vectors.
8344 * lisp.h (struct vectorlike_header): New field `nbytes',
8345 adjust comment accordingly.
8346 * alloc.c (enum mem_type): New type `MEM_TYPE_VECTOR_BLOCK'
8347 to denote vector blocks. Adjust users (live_vector_p,
8348 mark_maybe_pointer, valid_lisp_object_p) accordingly.
8349 (COMMON_MULTIPLE): Move outside #if USE_LSB_TAG.
8350 (VECTOR_BLOCK_SIZE, vroundup, VECTOR_BLOCK_BYTES),
8351 (VBLOCK_BYTES_MIN, VBLOCK_BYTES_MAX, VECTOR_MAX_FREE_LIST_INDEX),
8352 (VECTOR_FREE_LIST_FLAG, ADVANCE, VINDEX, SETUP_ON_FREE_LIST),
8353 (VECTOR_SIZE, VECTOR_IN_BLOCK): New macros.
8354 (roundup_size): New constant.
8355 (struct vector_block): New data type.
8356 (vector_blocks, vector_free_lists, zero_vector): New variables.
8357 (all_vectors): Rename to `large_vectors'.
8358 (allocate_vector_from_block, init_vectors, allocate_vector_from_block)
8359 (sweep_vectors): New functions.
8360 (allocate_vectorlike): Return `zero_vector' as the only vector of
8361 0 items. Allocate new vector from block if vector size is less than
8362 or equal to VBLOCK_BYTES_MAX.
8363 (Fgarbage_collect): Move all vector sweeping code to sweep_vectors.
8364 (init_alloc_once): Add call to init_vectors.
8365
8366 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
8367
8368 * eval.c (Fmacroexpand): Stop if the macro returns the same form.
8369
8370 2012-06-07 Paul Eggert <eggert@cs.ucla.edu>
8371
8372 * doprnt.c (doprnt): Truncate multibyte char correctly.
8373 Without this change, doprnt (buf, 2, "%s", FORMAT_END, AP)
8374 would mishandle a string argument "Xc" if X was a multibyte
8375 character of length 2: it would truncate after X's first byte
8376 rather than including all of X.
8377
8378 2012-06-06 Chong Yidong <cyd@gnu.org>
8379
8380 * buffer.c (word_wrap): Doc fix.
8381
8382 2012-06-04 Paul Eggert <eggert@cs.ucla.edu>
8383
8384 * xdisp.c (note_mode_line_or_margin_highlight): Pacify gcc -Wall.
8385
8386 2012-06-03 Glenn Morris <rgm@gnu.org>
8387
8388 * xdisp.c (tool-bar-style): Doc fix.
8389
8390 2012-06-03 Ulrich Müller <ulm@gentoo.org>
8391
8392 * Makefile.in (PAXCTL): Define.
8393 (temacs$(EXEEXT)): Disable memory randomization for the temacs
8394 binary via PaX flags if the paxctl utility is available.
8395 (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
8396 Restore PaX flags to their default. (Bug#11398)
8397
8398 2012-06-03 Chong Yidong <cyd@gnu.org>
8399
8400 * xdisp.c (decode_mode_spec_coding): Display a space for a unibyte
8401 buffer (Bug#11226).
8402
8403 2012-06-03 Chong Yidong <cyd@gnu.org>
8404
8405 * xdisp.c (calc_pixel_width_or_height): Use Fbuffer_local_value.
8406 (note_mode_line_or_margin_highlight): If there is no help echo,
8407 use mode-line-default-help-echo. Handle the case where the mouse
8408 position is past the end of the mode line string.
8409
8410 * buffer.c (buffer_local_value_1): New function, split from
8411 Fbuffer_local_value; can return Qunbound.
8412 (Fbuffer_local_value): Use it.
8413 (Vmode_line_format): Docstring tweaks.
8414
8415 2012-06-02 Paul Eggert <eggert@cs.ucla.edu>
8416
8417 * sysdep.c (system_process_attributes): Improve comment.
8418
8419 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
8420
8421 * keyboard.c: Export real-this-command to Elisp.
8422 (syms_of_keyboard): Rename real_this_command to Vreal_this_command
8423 and DEFVAR it. Update all users.
8424
8425 2012-06-02 Paul Eggert <eggert@cs.ucla.edu>
8426
8427 * minibuf.c (Fassoc_string): Remove duplicate declaration.
8428
8429 * sysdep.c (system_process_attributes) [SOLARIS2 && HAVE_PROCFS]:
8430 Convert pctcpu and pctmem to Lisp float properly.
8431 Let the compiler fold better, as 100.0/0x8000 is exact.
8432
8433 2012-06-02 Andreas Schwab <schwab@linux-m68k.org>
8434
8435 * alloc.c (CONS_BLOCK_SIZE): Account for padding at the end of
8436 cons_block.
8437
8438 2012-06-01 Paul Eggert <eggert@cs.ucla.edu>
8439
8440 * xfns.c (x_set_tool_bar_lines) [USE_GTK]: Adjust to bitfield change.
8441
8442 2012-06-01 Dmitry Antipov <dmantipov@yandex.ru>
8443
8444 For a 'struct window', replace some Lisp_Object fields to
8445 bitfields where appropriate, remove unused fields.
8446 * window.h (struct window): Remove unused 'last_mark_x' and
8447 'last_mark_y' fields. Rename 'mini_p' field to 'mini',
8448 change its type from Lisp_Object to bitfield.
8449 Change type of 'force_start', 'optional_new_start',
8450 'last_had_star', 'update_mode_line' and 'start_at_line_beg'
8451 fields from Lisp_Object to bitfield. Adjust users accordingly.
8452
8453 2012-05-31 Paul Eggert <eggert@cs.ucla.edu>
8454
8455 Pacify gcc -Wdouble-precision when using Xaw.
8456 * xterm.c (xaw_jump_callback, x_set_toolkit_scroll_bar_thumb)
8457 [HAVE_X_WINDOWS && USE_TOOLKIT_SCROLL_BARS && !USE_MOTIF && !USE_GTK]:
8458 Use 'float' consistently, rather than 'float' in most places
8459 and 'double' in a couple of places.
8460
8461 2012-05-31 Eli Zaretskii <eliz@gnu.org>
8462
8463 * xdisp.c (handle_stop): Detect whether we have overlay strings
8464 loaded by testing it->current.overlay_string_index to be
8465 non-negative, instead of checking whether n_overlay_strings is
8466 positive. (Bug#11587)
8467
8468 2012-05-31 Chong Yidong <cyd@gnu.org>
8469
8470 * keymap.c (describe_map_tree): Revert 2011-07-07 change (Bug#1169).
8471
8472 * doc.c (Fsubstitute_command_keys): Doc fix.
8473
8474 2012-05-31 Eli Zaretskii <eliz@gnu.org>
8475
8476 * search.c (search_buffer): Remove calls to
8477 r_alloc_inhibit_buffer_relocation, as it is now called by
8478 maybe_unify_char, which was the cause of relocation of buffer text
8479 in bug#11519.
8480
8481 2012-05-31 Eli Zaretskii <eliz@gnu.org>
8482
8483 * charset.c (maybe_unify_char): Inhibit relocation of buffer text
8484 for the duration of call to load_charset, to avoid problems with
8485 callers of maybe_unify_char that access buffer text through C
8486 pointers.
8487
8488 * ralloc.c (r_alloc_inhibit_buffer_relocation): Increment and
8489 decrement the inhibition flag, instead of just setting or
8490 resetting it.
8491
8492 2012-05-31 Paul Eggert <eggert@cs.ucla.edu>
8493
8494 Remove obsolete '#define static' cruft.
8495 * s/hpux10-20.h (_FILE_OFFSET_BITS): Don't #undef.
8496 This #undef was "temporary" in 2000; it is no longer needed
8497 now that '#define static' has gone away.
8498 * xfns.c, xterm.h (gray_bitmap_width, gray_bitmap_height)
8499 (gray_bitmap_bits): Remove; no longer needed.
8500 All uses replaced with definiens.
8501 * xterm.c: Include "bitmaps/gray.xbm".
8502
8503 2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
8504
8505 Clean up __executable_start, monstartup when --enable-profiling.
8506 The following changes affect the code only when profiling.
8507 * dispnew.c (__executable_start): Rename from safe_bcopy.
8508 Define only on platforms that need it.
8509 * emacs.c: Include <sys/gmon.h> when profiling.
8510 (_mcleanup): Remove decl, since <sys/gmon.h> does it now.
8511 (__executable_start): Remove decl, since lisp.h does it now.
8512 (safe_bcopy): Remove decl; no longer has that name.
8513 (main): Coalesce #if into single bit of code, for simplicity.
8514 Cast pointers to uintptr_t, since standard libraries want integers
8515 and not pointers.
8516 * lisp.h (__executable_start): New decl.
8517
8518 2012-05-31 Glenn Morris <rgm@gnu.org>
8519
8520 * image.c (Fimagemagick_types): Doc fix.
8521
8522 2012-05-30 Jim Meyering <meyering@redhat.com>
8523
8524 * callproc.c (Fcall_process_region): Include directory component
8525 in mkstemp error message (Bug#11586).
8526
8527 2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
8528
8529 * alloc.c, lisp.h (make_pure_vector): Now static.
8530
8531 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
8532
8533 * eval.c (Fdefun, Fdefmacro, Vmacro_declaration_function):
8534 Move to byte-run.el.
8535 (Fautoload): Do the hash-doc more carefully.
8536 * data.c (Fdefalias): Purify definition, except for keymaps.
8537 (Qdefun): Move from eval.c.
8538 * lisp.h (Qdefun): Remove.
8539 * lread.c (read1): Tiny simplification.
8540
8541 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
8542
8543 Do not create empty overlays with the evaporate property (Bug#9642).
8544 * buffer.c (Fmove_overlay): Reinstate the earlier fix for
8545 Bug#9642, but explicitly check that the buffer the overlay would
8546 be moved to is live and rearrange lines to make sure that errors
8547 will not put the overlay in an inconsistent state.
8548 (Fdelete_overlay): Cosmetics.
8549
8550 2012-05-28 Eli Zaretskii <eliz@gnu.org>
8551
8552 * w32term.c (my_bring_window_to_top): New function.
8553 (x_raise_frame): Use handle returned by DeferWindowPos, which
8554 could be different from the original one.
8555 Call my_bring_window_to_top instead of my_set_foreground_window.
8556 (Bug#11513)
8557
8558 * w32fns.c (w32_wnd_proc): Accept and process WM_EMACS_BRINGTOTOP
8559 by calling BringWindowToTop.
8560
8561 * w32term.h (WM_EMACS_BRINGTOTOP): New message.
8562 (WM_EMACS_END): Increase by one.
8563
8564 2012-05-28 Paul Eggert <eggert@cs.ucla.edu>
8565
8566 * bidi.c (bidi_mirror_char): Put eassert before conversion to int.
8567 This avoids undefined behavior that might cause the eassert
8568 to not catch an out-of-range value.
8569
8570 2012-05-28 Juanma Barranquero <lekktu@gmail.com>
8571
8572 * makefile.w32-in ($(BLD)/w32inevt.$(O), $(BLD)/w32console.$(O)):
8573 Update dependencies.
8574
8575 2012-05-27 Eli Zaretskii <eliz@gnu.org>
8576
8577 * bidi.c (bidi_mirror_char): Fix last change.
8578
8579 2012-05-27 Andreas Schwab <schwab@linux-m68k.org>
8580
8581 * unexmacosx.c (copy_data_segment): Truncate after 16 characters
8582 when referring to sectname field in printf format.
8583
8584 2012-05-27 Paul Eggert <eggert@cs.ucla.edu>
8585
8586 * lisp.h [REL_ALLOC]: Omit duplicate prototypes.
8587 Only r_alloc_inhibit_buffer_relocation needed to be added;
8588 the others were already declared.
8589
8590 * bidi.c (bidi_mirror_char): Don't possibly truncate the integer
8591 before checking whether it's out of range. Put the check inside
8592 eassert. See
8593 <http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00485.html>.
8594
8595 2012-05-27 Ken Brown <kbrown@cornell.edu>
8596
8597 * callproc.c (Fcall_process): Restore a line that was accidentally
8598 commented out in the 2011-02-13 change (bug#11547).
8599
8600 2012-05-27 Eli Zaretskii <eliz@gnu.org>
8601
8602 * lisp.h [REL_ALLOC]: Add prototypes for external functions
8603 defined on ralloc.c.
8604
8605 * buffer.c [REL_ALLOC]: Remove prototypes of
8606 r_alloc_reset_variable, r_alloc, r_re_alloc, and r_alloc_free,
8607 they are now on lisp.h.
8608
8609 * ralloc.c (r_alloc_inhibit_buffer_relocation): New function.
8610
8611 * search.c (search_buffer): Use it to inhibit relocation of buffer
8612 text while re_search_2 is doing its job, because re_search_2 is
8613 passed C pointers to buffer text. (Bug#11519)
8614
8615 * msdos.c (internal_terminal_init) <Vwindow_system_version>:
8616 Update value to 24.
8617
8618 * xdisp.c (move_it_to): Under MOVE_TO_Y, when restoring iterator
8619 state after an additional call to move_it_in_display_line_to, keep
8620 the values of it->max_ascent and it->max_descent found for the
8621 entire line.
8622 (pos_visible_p): Revert the comparison against bottom_y to what it
8623 was in revid eliz@gnu.org-20120513182235-4p6386j761ld0nwb.
8624 (Bug#11464)
8625
8626 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
8627
8628 Fix coding-related core dumps with gcc -ftrapv.
8629 The code was computing A - B, where A and B are pointers, and B is
8630 random garbage. This can lead to core dumps on platforms that
8631 have special pointer registers, and it also leads to core dumps on
8632 x86-64 when compiled with gcc -ftrapv. The fix is to compute
8633 A - B only when B is initialized properly.
8634 * coding.c (coding_set_source, coding_set_destination): Return void.
8635 (coding_change_source, coding_change_destinations): New functions,
8636 with the old behaviors of coding_set_source and coding_set_destination.
8637 All callers that need an offset changed to use these new functions.
8638
8639 2012-05-26 Glenn Morris <rgm@gnu.org>
8640
8641 * nsterm.m (ns_init_paths): Don't mess with INFOPATH. (Bug#2791)
8642
8643 2012-05-26 Eli Zaretskii <eliz@gnu.org>
8644
8645 Extend mouse support on W32 text-mode console.
8646 * xdisp.c (draw_row_with_mouse_face):
8647 Call tty_draw_row_with_mouse_face for WINDOWSNT as well.
8648
8649 * w32console.c: Include window.h.
8650 (w32con_write_glyphs_with_face, tty_draw_row_with_mouse_face):
8651 New functions.
8652 (initialize_w32_display): Initialize mouse-highlight data.
8653
8654 * w32inevt.c: Include termchar.h and window.h.
8655 (do_mouse_event): Support mouse-autoselect-window. When the mouse
8656 moves, call note_mouse_highlight. If help_echo changed, call
8657 gen_help_event to produce help-echo message in the echo area.
8658 Call clear_mouse_face if mouse_face_hidden is set in the mouse
8659 highlight info.
8660
8661 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
8662
8663 * lread.c (read1): Simplify slightly to avoid an overflow warning
8664 with GCC 4.7.0 on x86-64.
8665
8666 2012-05-26 Eli Zaretskii <eliz@gnu.org>
8667
8668 * bidi.c (bidi_mirror_char): Revert last change: an int is
8669 definitely wide enough here.
8670
8671 2012-05-25 Paul Eggert <eggert@cs.ucla.edu>
8672
8673 Fix integer width and related bugs (Bug#9874).
8674 * alloc.c (pure_bytes_used_lisp, pure_bytes_used_non_lisp):
8675 (allocate_vectorlike, buffer_memory_full, struct sdata, SDATA_SIZE)
8676 (string_bytes, check_sblock, allocate_string_data):
8677 (compact_small_strings, Fmake_bool_vector, make_string)
8678 (make_unibyte_string, make_multibyte_string)
8679 (make_string_from_bytes, make_specified_string)
8680 (allocate_vectorlike, Fmake_vector, find_string_data_in_pure)
8681 (make_pure_string, make_pure_c_string, make_pure_vector, Fpurecopy)
8682 (mark_vectorlike):
8683 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8684 (allocate_pseudovector):
8685 Use int, not EMACS_INT, where int is wide enough.
8686 (inhibit_garbage_collection, Fgarbage_collect):
8687 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8688 * bidi.c (bidi_mirror_char): Use EMACS_INT, not int, where
8689 int might not be wide enough.
8690 (bidi_cache_search, bidi_cache_find, bidi_init_it)
8691 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
8692 (bidi_at_paragraph_end, bidi_find_paragraph_start)
8693 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
8694 (bidi_level_of_next_char, bidi_move_to_visually_next):
8695 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8696 * buffer.c (copy_overlays, Fgenerate_new_buffer_name)
8697 (Fkill_buffer, Fset_buffer_major_mode)
8698 (advance_to_char_boundary, Fbuffer_swap_text)
8699 (Fset_buffer_multibyte, overlays_at, overlays_in)
8700 (overlay_touches_p, struct sortvec, record_overlay_string)
8701 (overlay_strings, recenter_overlay_lists)
8702 (adjust_overlays_for_insert, adjust_overlays_for_delete)
8703 (fix_start_end_in_overlays, fix_overlays_before, modify_overlay)
8704 (Fmove_overlay, Fnext_overlay_change, Fprevious_overlay_change)
8705 (Foverlay_recenter, last_overlay_modification_hooks_used)
8706 (report_overlay_modification, evaporate_overlays, enlarge_buffer_text):
8707 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8708 (validate_region): Omit unnecessary test for b <= e,
8709 since that's guaranteed by the previous test.
8710 (adjust_overlays_for_delete): Avoid pos + length overflow.
8711 (Fmove_overlay, Fdelete_overlay, add_overlay_mod_hooklist)
8712 (report_overlay_modification):
8713 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8714 (Foverlays_at, Fnext_overlay_change, Fprevious_overlay_change):
8715 Omit pointer cast, which isn't needed anyway, and doesn't work
8716 after the EMACS_INT -> ptrdiff_t change.
8717 (Fmove_overlay): Clip BEG and END to ptrdiff_t to avoid overflow.
8718 * buffer.h: Adjust decls to match defn changes elsewhere.
8719 (struct buffer_text, struct buffer):
8720 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8721 Use EMACS_INT, not int, where int might not be wide enough.
8722 * bytecode.c (unmark_byte_stack, exec_byte_code): Use ptrdiff_t,
8723 not int, to avoid needless 32-bit limit on 64-bit hosts.
8724 (exec_byte_code): Use tighter memory-full test, one that checks
8725 for alloca overflow. Don't compute the address of the object just
8726 before an array, as that's not portable. Use EMACS_INT, not
8727 ptrdiff_t or int, where ptrdiff_t or int might not be wide enough.
8728 * callint.c (Fcall_interactively):
8729 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8730 * callproc.c (call_process_kill, Fcall_process):
8731 Don't assume pid_t fits into an Emacs fixnum.
8732 (call_process_cleanup, Fcall_process, child_setup):
8733 Don't assume pid_t fits into int.
8734 (call_process_cleanup, Fcall_process, delete_temp_file)
8735 (Fcall_process_region):
8736 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8737 (Fcall_process): Simplify handling of volatile integers.
8738 Use int, not EMACS_INT, where int will do.
8739 * casefiddle.c (casify_object, casify_region, operate_on_word)
8740 (Fupcase_word, Fdowncase_word, Fcapitalize_word):
8741 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8742 (casify_object): Avoid integer overflow when overallocating buffer.
8743 * casetab.c (set_identity, shuffle): Prefer int to unsigned when
8744 either works. Use lint_assume to convince GCC 4.6.1 that it's OK.
8745 * category.c (Fchar_category_set): Don't assume fixnum fits in int.
8746 * category.h (CATEGORYP): Don't assume arg is nonnegative.
8747 * ccl.c (GET_CCL_INT): Remove; no longer needed, since the
8748 integers are now checked earlier. All uses replaced with XINT.
8749 (ccl_driver):
8750 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8751 For CCL_MapSingle, check that content and value are in int range.
8752 (ccl_driver, Fregister_code_conversion_map):
8753 Check that Vcode_version_map_vector is a vector.
8754 (resolve_symbol_ccl_program): Check that vector header is in range.
8755 Always copy the vector, so that we can check its contents reliably
8756 now rather than having to recheck each instruction as it's being
8757 executed. Check that vector words fit in 'int'.
8758 (ccl_get_compiled_code, Fregister_ccl_program)
8759 (Fregister_code_conversion_map): Use ptrdiff_t, not int, for
8760 program indexes, to avoid needless 32-bit limit on 64-bit hosts.
8761 (Fccl_execute, Fccl_execute_on_string): Check that initial reg
8762 contents are in range.
8763 (Fccl_execute_on_string): Check that status is in range.
8764 * ccl.h (struct ccl_program.idx): Now ptrdiff_t, not int.
8765 * character.c (char_resolve_modifier_mask, Fchar_resolve_modifiers):
8766 Accept and return EMACS_INT, not int, because callers can pass values
8767 out of 'int' range.
8768 (c_string_width, strwidth, lisp_string_width, chars_in_text)
8769 (multibyte_chars_in_text, parse_str_as_multibyte)
8770 (str_as_multibyte, count_size_as_multibyte, str_to_multibyte)
8771 (str_as_unibyte, str_to_unibyte, string_count_byte8)
8772 (string_escape_byte8, Fget_byte):
8773 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8774 (Funibyte_string): Use CHECK_RANGED_INTEGER, not CHECK_NATNUM, to
8775 avoid mishandling large integers.
8776 * character.h: Adjust decls to match defn changes elsewhere.
8777 * charset.c (load_charset_map_from_file, find_charsets_in_text)
8778 (Ffind_charset_region):
8779 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8780 (load_charset_map_from_file): Redo idx calculation to avoid overflow.
8781 (load_charset_map_from_vector, Fdefine_charset_internal):
8782 Don't assume fixnum fits in int.
8783 (load_charset_map_from_vector, Fmap_charset_chars):
8784 Remove now-unnecessary CHECK_NATNUMs.
8785 (Fdefine_charset_internal): Check ranges here, more carefully.
8786 Don't rely on undefined behavior with signed left shift overflow.
8787 Don't assume unsigned int fits into fixnum, or that fixnum fits
8788 into unsigned int. Don't require max_code to be a valid fixnum;
8789 that's not true for gb10830 4-byte on a 32-bit host. Allow
8790 invalid_code to be a cons, for the same reason. Require code_offset
8791 to be a character. Avoid int overflow if max_char is close
8792 to INT_MAX.
8793 (CODE_POINT_TO_INDEX): On 32-bit hosts, return int, not unsigned;
8794 this is intended anyway and avoids some undefined behavior.
8795 (load_charset_map): Pass unsigned, not int, as 2nd arg of
8796 INDEX_TO_CODE_POINT, as that's what it expects.
8797 (Funify_charset, encode_char): Don't stuff unsigned vals into int vars.
8798 * charset.h (DECODE_CHAR): Return int, not unsigned;
8799 this is what was intended anyway, and it avoids undefined behavior.
8800 (CHARSET_OFFSET): Remove unused macro, instead of fixing its
8801 integer-overflow issues.
8802 (ENCODE_CHAR): Return unsigned on all hosts, not just on 32-bit hosts.
8803 Formerly, it returned EMACS_INT on 64-bit hosts in the common case
8804 where the argument is EMACS_INT, and this behavior is not intended.
8805 * chartab.c (Fmake_char_table, Fset_char_table_range)
8806 (uniprop_get_decoder, uniprop_get_encoder):
8807 Don't assume fixnum fits in int.
8808 * cmds.c (move_point): New function, that does the gist of
8809 Fforward_char and Fbackward_char, but does so while checking
8810 for integer overflow more accurately.
8811 (Fforward_char, Fbackward_char): Use it.
8812 (Fforward_line, Fend_of_line, internal_self_insert)
8813 (internal_self_insert):
8814 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8815 Fix a FIXME, by checking for integer overflow when calculating
8816 target_clm and actual_clm.
8817 * coding.c (detect_coding_XXX, encode_coding_XXX, CODING_DECODE_CHAR)
8818 (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET, CODING_CHAR_CHARSET_P)
8819 (ASSURE_DESTINATION, coding_alloc_by_realloc)
8820 (coding_alloc_by_making_gap, alloc_destination)
8821 (detect_coding_utf_8, encode_coding_utf_8, decode_coding_utf_16)
8822 (encode_coding_utf_16, detect_coding_emacs_mule)
8823 (decode_coding_emacs_mule, encode_coding_emacs_mule)
8824 (detect_coding_iso_2022, decode_coding_iso_2022)
8825 (encode_invocation_designation, encode_designation_at_bol)
8826 (encode_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
8827 (decode_coding_sjis, decode_coding_big5, encode_coding_sjis)
8828 (encode_coding_big5, detect_coding_ccl, decode_coding_ccl)
8829 (encode_coding_ccl, encode_coding_raw_text)
8830 (detect_coding_charset, decode_coding_charset)
8831 (encode_coding_charset, detect_eol, decode_eol, produce_chars)
8832 (produce_composition, produce_charset, produce_annotation)
8833 (decode_coding, handle_composition_annotation)
8834 (handle_charset_annotation, consume_chars, decode_coding_gap)
8835 (decode_coding_object, encode_coding_object, detect_coding_system)
8836 (Ffind_coding_systems_region_internal, Fcheck_coding_systems_region)
8837 (code_convert_region, code_convert_string)
8838 (Fdefine_coding_system_internal)
8839 (coding_set_source, coding_set_destination):
8840 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8841 (setup_iso_safe_charsets, consume_chars, Funencodable_char_position)
8842 (Fdefine_coding_system_internal):
8843 Don't assume fixnums fit in int.
8844 (decode_coding_gap, decode_coding_object, encode_coding_object)
8845 (Fread_coding_system, Fdetect_coding_region)
8846 (Funencodable_char_position, Fcheck_coding_systems_region)
8847 (get_translation, handle_composition_annotation, consume_chars):
8848 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8849 (consume_chars): Rewrite to not calculate an address outside buffer.
8850 (Ffind_operation_coding_system): NATNUMP can eval its arg twice.
8851 Don't access memory outside of the args array.
8852 (Fdefine_coding_system_internal): Check for charset-id overflow.
8853 (ENCODE_ISO_CHARACTER): Use unsigned, not int, to store the unsigned
8854 result of ENCODE_CHAR.
8855 * coding.h: Adjust decls to match defn changes elsewhere.
8856 (struct coding_system):
8857 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8858 * composite.c (get_composition_id, find_composition)
8859 (run_composition_function, update_compositions)
8860 (compose_text, composition_gstring_put_cache)
8861 (composition_gstring_p, composition_gstring_width)
8862 (fill_gstring_header, fill_gstring_body, autocmp_chars)
8863 (composition_compute_stop_pos, composition_reseat_it)
8864 (composition_update_it, struct position_record)
8865 (find_automatic_composition, composition_adjust_point)
8866 (Fcomposition_get_gstring, Ffind_composition_internal):
8867 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8868 (update_compositions):
8869 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8870 * composite.h: Adjust decls to match defn changes elsewhere.
8871 (struct composition):
8872 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8873 * data.c (let_shadows_buffer_binding_p, let_shadows_global_binding_p):
8874 Do not attempt to compute the address of the object just before a
8875 buffer; this is not portable.
8876 (Faref, Faset):
8877 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8878 (Faset): Use int, not EMACS_INT, where int is wide enough.
8879 (Fstring_to_number): Don't assume fixnums fit in int.
8880 (Frem): Don't assume arg is nonnegative.
8881 * dbusbind.c (xd_append_arg): Check for integers out of range.
8882 (Fdbus_call_method): Don't overflow the timeout int.
8883 (extract_signed, extract_unsigned): New functions.
8884 (XD_CHECK_DBUS_SERIAL): Remove; superseded by extract_unsigned.
8885 (xd_get_connection_references): Return ptrdiff_t, not int.
8886 All uses changed.
8887 (xd_signature, xd_append_arg, xd_retrieve_arg, Fdbus_message_internal)
8888 (xd_read_message_1):
8889 Use int, not unsigned, where the dbus API uses int.
8890 (Fdbus_message_internal): Don't overflow mtype.
8891 (syms_of_dbusbind): Allocate right-sized buffer for integers.
8892 * dired.c (directory_files_internal, file_name_completion, scmp)
8893 (file_name_completion_stat):
8894 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8895 (file_name_completion): Don't overflow matchcount.
8896 (file_name_completion_stat): Use SAFE_ALLOCA, not alloca.
8897 * dispextern.h: Adjust decls to match defn changes elsewhere.
8898 (struct text_pos, struct glyph, struct bidi_saved_info)
8899 (struct bidi_string_data, struct bidi_it, struct composition_it)
8900 (struct it):
8901 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8902 (struct display_pos, struct composition_it, struct it):
8903 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8904 * dispnew.c (increment_matrix_positions)
8905 (increment_row_positions, mode_line_string)
8906 (marginal_area_string):
8907 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8908 (change_frame_size_1, Fredisplay, Fframe_or_buffer_changed_p):
8909 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8910 (duration_to_sec_usec): New function, to check for overflow better.
8911 (Fsleep_for, sit_for): Use it.
8912 * doc.c (get_doc_string, store_function_docstring):
8913 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8914 (get_doc_string, Fsnarf_documentation):
8915 Use int, not EMACS_INT, where int is wide enough.
8916 (get_doc_string):
8917 Use SAFE_ALLOCA, not alloca.
8918 Check for overflow when converting EMACS_INT to off_t.
8919 * doprnt.c (doprnt):
8920 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8921 * editfns.c (init_editfns, Fuser_uid, Fuser_real_uid):
8922 Don't assume uid_t fits into fixnum.
8923 (buildmark, Fgoto_char, overlays_around, find_field, Fdelete_field)
8924 (Ffield_string, Ffield_string_no_properties, Ffield_beginning)
8925 (Ffield_end, Fconstrain_to_field, Fline_beginning_position)
8926 (Fline_end_position, Fprevious_char, Fchar_after, Fchar_before)
8927 (general_insert_function)
8928 (Finsert_char, make_buffer_string, make_buffer_string_both)
8929 (update_buffer_properties, Fbuffer_substring)
8930 (Fbuffer_substring_no_properties, Fcompare_buffer_substrings)
8931 (Fsubst_char_in_region, check_translation)
8932 (Ftranslate_region_internal, save_restriction_restore, Fformat)
8933 (transpose_markers, Ftranspose_regions):
8934 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8935 (clip_to_bounds): Move to lisp.h as an inline function).
8936 (Fconstrain_to_field): Don't assume integers are nonnegative.
8937 (Fline_beginning_position, Fsave_excursion, Fsave_current_buffer):
8938 (Fsubst_char_in_region, Fsave_restriction):
8939 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8940 (Femacs_pid): Don't assume pid_t fits into fixnum.
8941 (lo_time): Use int, not EMACS_INT, when int suffices.
8942 (lisp_time_argument): Check for usec out of range.
8943 (Fencode_time): Don't assume fixnum fits in int.
8944 (Fuser_login_name, Fuser_full_name): Signal an error
8945 if a uid argument is out of range, rather than relying on
8946 undefined behavior.
8947 (Fformat_time_string): Remove now-unnecessary check.
8948 lisp_time_argument checks for out-of-range usec now.
8949 Use ptrdiff_t, not size_t, where ptrdiff_t will do.
8950 * emacs.c (gdb_valbits, gdb_gctypebits): Now int, not EMACS_INT.
8951 (gdb_data_seg_bits): Now uintptr_t, not EMACS_INT.
8952 (PVEC_FLAG, gdb_array_mark_flag): Now ptrdiff_t, not EMACS_INT.
8953 (init_cmdargs, Fdump_emacs):
8954 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8955 (Fkill_emacs): Don't assume fixnum fits in int; instead, take just
8956 the bottom (typically) 32 bits of the fixnum.
8957 * eval.c (specpdl_size, call_debugger):
8958 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8959 (when_entered_debugger, Fbacktrace_debug):
8960 Don't assume fixnum can fit in int.
8961 (Fdefvaralias, Fdefvar): Do not attempt to compute the address of
8962 the object just before a buffer; this is not portable.
8963 (FletX, Flet, Funwind_protect, do_autoload, Feval, funcall_lambda)
8964 (grow_specpdl, unbind_to):
8965 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8966 (Fapply, apply_lambda): Don't assume ptrdiff_t can hold fixnum.
8967 (grow_specpdl): Simplify allocation by using xpalloc.
8968 (Fprog1, Fprog2): Don't assume list length fits in int. Simplify.
8969 * fileio.c (Ffind_file_name_handler, Fcopy_file, Frename_file)
8970 (Finsert_file_contents, Fwrite_region, Fdo_auto_save):
8971 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8972 (Ffind_file_name_handler, non_regular_inserted, Finsert_file_contents)
8973 (a_write, e_write):
8974 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8975 (Fcopy_file, non_regular_nbytes, read_non_regular)
8976 (Finsert_file_contents):
8977 Use int, not EMACS_INT, where int is wide enough.
8978 (READ_BUF_SIZE): Verify that it fits in int.
8979 (Finsert_file_contents): Check that counts are in proper range,
8980 rather than assuming fixnums fit into ptrdiff_t etc.
8981 Don't assume fixnums fit into int.
8982 * floatfns.c (Fexpt): Avoid undefined signed * signed overflow.
8983 * fns.c (Fcompare_strings, Fstring_lessp, struct textprop_rec, concat)
8984 (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
8985 (string_char_to_byte, string_byte_to_char)
8986 (string_make_multibyte, string_to_multibyte)
8987 (string_make_unibyte, Fstring_as_unibyte, Fstring_as_multibyte)
8988 (Fstring_to_unibyte, Fsubstring, Fsubstring_no_properties)
8989 (substring_both, Fdelete, internal_equal, Ffillarray)
8990 (Fclear_string, mapcar1)
8991 (Fbase64_encode_region, Fbase64_encode_string, base64_encode_1)
8992 (Fbase64_decode_region, Fbase64_decode_string, base64_decode_1)
8993 (larger_vector, make_hash_table, maybe_resize_hash_table)
8994 (hash_lookup, hash_remove_from_table, hash_clear, sweep_weak_table)
8995 (Fmaphash, secure_hash):
8996 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8997 (concat): Check for string index and length overflow.
8998 (Fmapconcat): Don't assume fixnums fit into ptrdiff_t.
8999 (Frequire):
9000 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9001 (larger_vector): New API (vec, incr_min, size_max) replaces old
9002 one (vec, new_size, init). This catches size overflow.
9003 INIT was removed because it was always Qnil.
9004 All callers changed.
9005 (INDEX_SIZE_BOUND): New macro, which calculates more precisely
9006 the upper bound on a hash table index size.
9007 (make_hash_table, maybe_resize_hash_table): Use it.
9008 (secure_hash): Computer start_byte and end_byte only after
9009 they're known to be in ptrdiff_t range.
9010 * font.c (font_intern_prop, font_at, font_range, Ffont_shape_gstring)
9011 (Ffont_get_glyphs, Ffont_at):
9012 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9013 (font_style_to_value, font_prop_validate_style, font_expand_wildcards)
9014 (Flist_fonts, Fopen_font):
9015 Don't assume fixnum can fit in int.
9016 (check_gstring): Don't assume index can fit in int.
9017 (font_match_p): Check that fixnum is a character, not a nonnegative
9018 fixnum, since the later code needs to stuff it into an int.
9019 (font_find_for_lface): Use SAFE_ALLOCA_LISP, not alloca.
9020 (font_fill_lglyph_metrics): Use unsigned, not EMACS_INT, to avoid
9021 conversion overflow issues.
9022 (Fopen_font): Check for integer out of range.
9023 (Ffont_get_glyphs): Don't assume index can fit in int.
9024 * font.h: Adjust decls to match defn changes elsewhere.
9025 * fontset.c (reorder_font_vector): Redo score calculation to avoid
9026 integer overflow.
9027 (num_auto_fontsets, fontset_from_font): Use ptrdiff_t, not
9028 printmax_t, where ptrdiff_t is wide enough.
9029 (Finternal_char_font):
9030 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9031 * frame.c (Fset_mouse_position, Fset_mouse_pixel_position)
9032 (Fset_frame_height, Fset_frame_width, Fset_frame_size)
9033 (Fset_frame_position, x_set_frame_parameters)
9034 (x_set_line_spacing, x_set_border_width)
9035 (x_set_internal_border_width, x_set_alpha, x_figure_window_size):
9036 Check that fixnums are in proper range for system types.
9037 (frame_name_fnn_p, Fframe_parameter, Fmodify_frame_parameters):
9038 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9039 (Fmodify_frame_parameters): Don't assume fixnum fits in int.
9040 Use SAFE_ALLOCA_LISP, not alloca.
9041 * frame.h (struct frame): Use intptr_t, not EMACS_INT, where
9042 intptr_t is wide enough.
9043 * fringe.c (lookup_fringe_bitmap, get_logical_fringe_bitmap)
9044 (Fdefine_fringe_bitmap): Don't assume fixnum fits in int.
9045 (Ffringe_bitmaps_at_pos): Don't assume index fits in int.
9046 Check for fixnum out of range.
9047 * ftfont.c (ftfont_list): Don't assume index fits in int.
9048 Check that fixnums are in proper range for system types.
9049 (ftfont_shape_by_flt):
9050 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9051 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
9052 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9053 (Fgnutls_error_fatalp, Fgnutls_error_string, Fgnutls_boot):
9054 Check that fixnums are in proper range for system types.
9055 * gnutls.h: Adjust decls to match defn changes elsewhere.
9056 * gtkutil.c (xg_dialog_run):
9057 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9058 (update_frame_tool_bar):
9059 Check that fixnums are in proper range for system types.
9060 * image.c (parse_image_spec): Redo count calculation to avoid overflow.
9061 (lookup_image): Check that fixnums are in range for system types.
9062 * indent.c (last_known_column, last_known_column_point):
9063 (current_column_bol_cache):
9064 (skip_invisible, current_column, check_display_width):
9065 (check_display_width, scan_for_column, current_column_1)
9066 (Findent_to, Fcurrent_indentation, position_indentation)
9067 (indented_beyond_p, Fmove_to_column, compute_motion):
9068 (Fcompute_motion, Fvertical_motion):
9069 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9070 (last_known_column_modified): Use EMACS_INT, not int.
9071 (check_display_width):
9072 (Fcompute_motion):
9073 Check that fixnums and floats are in proper range for system types.
9074 (compute_motion): Don't assume index or fixnum fits in int.
9075 (compute_motion, Fcompute_motion):
9076 Use int, not EMACS_INT, when it is wide enough.
9077 (vmotion): Omit local var start_hpos that is always 0; that way
9078 we don't need to worry about overflow in expressions involving it.
9079 * indent.h: Adjust decls to match defn changes elsewhere.
9080 (struct position):
9081 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9082 Use int, not EMACS_INT, where int is wide enough.
9083 Remove unused members ovstring_chars_done and tab_offset;
9084 all uses removed.
9085 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
9086 (adjust_markers_for_delete, adjust_markers_for_insert, adjust_point)
9087 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
9088 (make_gap, copy_text, insert, insert_and_inherit)
9089 (insert_before_markers, insert_before_markers_and_inherit)
9090 (insert_1, count_combining_before, count_combining_after)
9091 (insert_1_both, insert_from_string)
9092 (insert_from_string_before_markers, insert_from_string_1)
9093 (insert_from_gap, insert_from_buffer, insert_from_buffer_1)
9094 (adjust_after_replace, adjust_after_insert, replace_range)
9095 (replace_range_2, del_range, del_range_1, del_range_byte)
9096 (del_range_both, del_range_2, modify_region)
9097 (prepare_to_modify_buffer, signal_before_change)
9098 (signal_after_change, Fcombine_after_change_execute):
9099 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9100 * intervals.c (traverse_intervals, rotate_right, rotate_left)
9101 (balance_an_interval, split_interval_right, split_interval_left)
9102 (find_interval, next_interval, update_interval)
9103 (adjust_intervals_for_insertion, delete_node, delete_interval)
9104 (interval_deletion_adjustment, adjust_intervals_for_deletion)
9105 (static_offset_intervals, offset_intervals)
9106 (merge_interval_right, merge_interval_left, make_new_interval)
9107 (graft_intervals_into_buffer, temp_set_point_both)
9108 (temp_set_point, set_point, adjust_for_invis_intang)
9109 (set_point_both, move_if_not_intangible, get_property_and_range)
9110 (get_local_map, copy_intervals, copy_intervals_to_string)
9111 (compare_string_intervals, set_intervals_multibyte_1):
9112 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9113 * intervals.h: Adjust decls to match defn changes elsewhere.
9114 (struct interval):
9115 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9116 * keyboard.c (this_command_key_count, this_single_command_key_start)
9117 (before_command_key_count, before_command_echo_length, echo_now)
9118 (echo_length, recursive_edit_1, Frecursive_edit, Ftrack_mouse)
9119 (command_loop_1, safe_run_hooks, read_char, timer_check_2)
9120 (menu_item_eval_property, read_key_sequence, Fread_key_sequence)
9121 (Fread_key_sequence_vector, Fexecute_extended_command, Fsuspend_emacs):
9122 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9123 (last_non_minibuf_size, last_point_position, echo_truncate)
9124 (command_loop_1, adjust_point_for_property, read_char, gen_help_event)
9125 (make_lispy_position, make_lispy_event, parse_modifiers_uncached)
9126 (parse_modifiers, modify_event_symbol, Fexecute_extended_command)
9127 (stuff_buffered_input):
9128 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9129 (last_auto_save, command_loop_1, read_char):
9130 Use EMACS_INT, not int, to avoid integer overflow.
9131 (record_char): Avoid overflow in total_keys computation.
9132 (parse_modifiers_uncached): Redo index calculation to avoid overflow.
9133 * keyboard.h: Adjust decls to match defn changes elsewhere.
9134 * keymap.c (Fdefine_key, Fcurrent_active_maps, accessible_keymaps_1)
9135 (Fkey_description, Fdescribe_vector, Flookup_key):
9136 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9137 (click_position): New function, to check that positions are in range.
9138 (Fcurrent_active_maps):
9139 (describe_command):
9140 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9141 (Faccessible_keymaps, Fkey_description):
9142 (preferred_sequence_p):
9143 Don't assume fixnum can fit into int.
9144 (Fkey_description): Use SAFE_ALLOCA_LISP, not alloca.
9145 Check for integer overflow in size calculations.
9146 (Ftext_char_description): Use CHECK_CHARACTER, not CHECK_NUMBER, to
9147 avoid mishandling large integers.
9148 * lisp.h: Adjust decls to match defn changes elsewhere.
9149 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, struct Lisp_String)
9150 (struct vectorlike_header, struct Lisp_Subr, struct Lisp_Hash_Table)
9151 (struct Lisp_Marker):
9152 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9153 (clip_to_bounds): Now an inline function, moved here from editfns.c.
9154 (GLYPH_CODE_P): Check for overflow in system types, subsuming the
9155 need for GLYPH_CODE_CHAR_VALID_P and doing proper checking ourselves.
9156 All callers changed.
9157 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE):
9158 Assume the arg has valid form, since it always does.
9159 (TYPE_RANGED_INTEGERP): Avoid bug when checking against a wide
9160 unsigned integer system type.
9161 (CHECK_RANGED_INTEGER, CHECK_TYPE_RANGED_INTEGER): New macros.
9162 (struct catchtag, specpdl_size, SPECPDL_INDEX, USE_SAFE_ALLOCA):
9163 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9164 (struct catchtag): Use EMACS_INT, not int, since it may be a fixnum.
9165 (duration_to_sec_usec): New decl.
9166 * lread.c (read_from_string_index, read_from_string_index_byte)
9167 (read_from_string_limit, readchar, unreadchar, openp)
9168 (read_internal_start, read1, oblookup):
9169 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9170 (Fload, readevalloop, Feval_buffer, Feval_region):
9171 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9172 (openp): Check for out-of-range argument to 'access'.
9173 (read1): Use int, not EMACS_INT, where int is wide enough.
9174 Don't assume fixnum fits into int.
9175 Fix off-by-one error that can read outside a buffer.
9176 (read_filtered_event): Use duration_to_sec_usec
9177 to do proper overflow checking on durations.
9178 * macros.c (Fstart_kbd_macro): Use xpalloc to check for overflow
9179 in size calculation.
9180 (Fexecute_kbd_macro):
9181 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9182 * marker.c (cached_charpos, cached_bytepos, CONSIDER)
9183 (byte_char_debug_check, buf_charpos_to_bytepos, verify_bytepos)
9184 (buf_bytepos_to_charpos, Fset_marker, set_marker_restricted)
9185 (set_marker_both, set_marker_restricted_both, marker_position)
9186 (marker_byte_position, Fbuffer_has_markers_at):
9187 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9188 (Fset_marker, set_marker_restricted): Don't assume fixnum fits in int.
9189 * menu.c (ensure_menu_items): Rename from grow_menu_items.
9190 It now merely ensures that the menu is large enough, without
9191 necessarily growing it, as this avoids some integer overflow issues.
9192 All callers changed.
9193 (keymap_panes, parse_single_submenu, Fx_popup_menu):
9194 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9195 (parse_single_submenu, Fx_popup_menu): Don't assume fixnum fits in int.
9196 Use SAFE_ALLOCA_LISP, not alloca.
9197 (find_and_return_menu_selection): Avoid unnecessary casts of pointers
9198 to EMACS_INT. Check that fixnums are in proper range for system types.
9199 * minibuf.c (minibuf_prompt_width, string_to_object)
9200 (Fminibuffer_contents, Fminibuffer_contents_no_properties)
9201 (Fminibuffer_completion_contents, Ftry_completion, Fall_completions):
9202 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9203 (get_minibuffer, read_minibuf_unwind):
9204 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9205 (read_minibuf): Omit unnecessary arg BACKUP_N, which is always nil;
9206 this simplifies overflow checking. All callers changed.
9207 (read_minibuf, Fread_buffer, Ftry_completion, Fall_completions)
9208 (Ftest_completion):
9209 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9210 * nsfns.m (check_ns_display_info): Don't assume fixnum fits in long.
9211 (x_set_menu_bar_lines, x_set_tool_bar_lines, Fx_create_frame):
9212 Check that fixnums are in proper range for system types.
9213 (Fx_create_frame, Fx_show_tip):
9214 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9215 * nsfont.m (ns_findfonts, nsfont_list_family):
9216 Don't assume fixnum fits in long.
9217 * nsmenu.m (ns_update_menubar, ns_menu_show, ns_popup_dialog):
9218 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9219 (ns_update_menubar): Use intptr_t, not EMACS_INT, when intptr_t is
9220 wide enough.
9221 * nsselect.m (ns_get_local_selection, clean_local_selection_data):
9222 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9223 * print.c (print_buffer_size, print_buffer_pos, print_buffer_pos_byte)
9224 (PRINTDECLARE, PRINTPREPARE):
9225 (strout, print_string):
9226 (print, print_preprocess, print_check_string_charset_prop)
9227 (print_object):
9228 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9229 (PRINTDECLARE):
9230 (temp_output_buffer_setup, Fprin1_to_string, print_object):
9231 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9232 (PRINTPREPARE): Use int, not ptrdiff_t, where int is wide enough.
9233 (printchar, strout): Use xpalloc to catch size calculation overflow.
9234 (Fexternal_debugging_output): Don't overflow EMACS_INT->int conversion.
9235 (print_error_message): Use SAFE_ALLOCA, not alloca.
9236 (print_object): Use int, not EMACS_INT, where int is wide enough.
9237 (print_depth, new_backquote_output, print_number_index):
9238 Use ptrdiff_t, not int, where int might not be wide enough.
9239 * process.c (Fdelete_process): Don't assume pid fits into EMACS_INT.
9240 (Fset_process_window_size, Fformat_network_address)
9241 (get_lisp_to_sockaddr_size, set_socket_option, Fmake_network_process)
9242 (sigchld_handler):
9243 Check that fixnums are in proper range for system types.
9244 (Fsignal_process): Simplify by avoiding a goto.
9245 Check for process-ids out of pid_t range rather than relying on
9246 undefined behavior.
9247 (process_tick, update_tick): Use EMACS_INT, not int.
9248 (Fformat_network_address, read_process_output, send_process)
9249 (Fprocess_send_region, status_notify):
9250 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9251 (Fformat_network_address, Fmake_serial_process, Fmake_network_process)
9252 (wait_reading_process_output, read_process_output, exec_sentinel):
9253 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9254 (conv_lisp_to_sockaddr): Don't assume fixnums fit into int.
9255 (Faccept_process_output): Use duration_to_sec_usec to do proper
9256 overflow checking on durations.
9257 (emacs_get_tty_pgrp, Fprocess_running_child_p, process_send_signal):
9258 Don't assume pid_t fits in int.
9259 * process.h (struct Lisp_Process): Members tick and update_tick
9260 are now of type EMACS_INT, not int.
9261 * puresize.h (PURESIZE_RATIO): Shrink this to 8/6 on 32-bit hosts
9262 configured --with-wide-int.
9263 * scroll.c (calculate_scrolling, calculate_direct_scrolling)
9264 (line_ins_del): Use int, not EMACS_INT, where int is wide enough.
9265 * search.c (looking_at_1, string_match_1):
9266 (fast_string_match, fast_c_string_match_ignore_case)
9267 (fast_string_match_ignore_case, fast_looking_at, scan_buffer)
9268 (scan_newline, find_before_next_newline, search_command)
9269 (trivial_regexp_p, search_buffer, simple_search, boyer_moore)
9270 (set_search_regs, wordify):
9271 (Freplace_match):
9272 (Fmatch_data):
9273 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9274 (string_match_1, search_buffer, set_search_regs):
9275 (Fmatch_data):
9276 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9277 (wordify): Check for overflow in size calculation.
9278 (Freplace_match): Avoid potential buffer overflow in search_regs.start.
9279 (Fset_match_data): Don't assume fixnum fits in ptrdiff_t.
9280 Check that fixnums are in proper range for system types.
9281 * sound.c (struct sound_device)
9282 (wav_play, au_play, vox_write, alsa_period_size, alsa_write):
9283 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9284 (Fplay_sound_internal):
9285 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9286 * syntax.c (struct lisp_parse_state, find_start_modiff)
9287 (Finternal_describe_syntax_value, scan_lists, scan_sexps_forward):
9288 (Fparse_partial_sexp):
9289 Don't assume fixnums can fit in int.
9290 (struct lisp_parse_state, find_start_pos, find_start_value)
9291 (find_start_value_byte, find_start_begv)
9292 (update_syntax_table, char_quoted, dec_bytepos)
9293 (find_defun_start, prev_char_comend_first, back_comment):
9294 (scan_words, skip_chars, skip_syntaxes, forw_comment, Fforward_comment)
9295 (scan_lists, Fbackward_prefix_chars, scan_sexps_forward):
9296 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9297 (Finternal_describe_syntax_value): Check that match_lisp is a
9298 character, not an integer, since the code stuffs it into int.
9299 (scan_words, scan_sexps_forward):
9300 Check that fixnums are in proper range for system types.
9301 (Fforward_word):
9302 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9303 (scan_sexps_forward):
9304 Use CHARACTERP, not INTEGERP, since the value must fit into int.
9305 (Fparse_partial_sexp): Fix doc; element 8 is not ignored.
9306 * syntax.h: Adjust decls to match defn changes elsewhere.
9307 (struct gl_state_s):
9308 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9309 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Use PTRDIFF_MAX, not
9310 MOST_POSITIVE_FIXNUM.
9311 * sysdep.c (wait_for_termination_1, wait_for_termination)
9312 (interruptible_wait_for_termination, mkdir):
9313 Don't assume pid_t fits in int; on 64-bit AIX pid_t is 64-bit.
9314 (emacs_read, emacs_write):
9315 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9316 (system_process_attributes): Don't assume uid_t, gid_t, EMACS_INT,
9317 and double all fit in int.
9318 * term.c (set_tty_color_mode):
9319 Check that fixnums are in proper range for system types.
9320 * termhooks.h (struct input_event):
9321 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9322 * textprop.c (validate_interval_range, interval_of)
9323 (Fadd_text_properties, set_text_properties_1)
9324 (Fremove_text_properties, Fremove_list_of_text_properties)
9325 (Ftext_property_any, Ftext_property_not_all)
9326 (copy_text_properties, text_property_list, extend_property_ranges)
9327 (verify_interval_modification):
9328 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9329 (Fnext_single_char_property_change)
9330 (Fprevious_single_char_property_change):
9331 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9332 (copy_text_properties):
9333 Check for integer overflow in index calculation.
9334 * undo.c (last_boundary_position, record_point, record_insert)
9335 (record_delete, record_marker_adjustment, record_change)
9336 (record_property_change):
9337 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9338 (truncate_undo_list, Fprimitive_undo): Don't assume fixnum fits in int.
9339 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9340 * w32fns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
9341 (Fx_hide_tip, Fx_file_dialog):
9342 * w32menu.c (set_frame_menubar):
9343 Use ptrdiff_t, not int, for consistency with rest of code.
9344 * window.c (window_scroll_preserve_hpos, window_scroll_preserve_vpos)
9345 (select_window, Fdelete_other_windows_internal)
9346 (window_scroll_pixel_based, window_scroll_line_based)
9347 (Frecenter, Fset_window_configuration):
9348 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9349 (Fset_window_hscroll, run_window_configuration_change_hook)
9350 (set_window_buffer, temp_output_buffer_show, scroll_command)
9351 (Fscroll_other_window, Frecenter):
9352 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9353 (Fwindow_line_height, window_scroll, Fscroll_left, Fscroll_right):
9354 Don't assume fixnum fits in int.
9355 (Fset_window_scroll_bars):
9356 Check that fixnums are in proper range for system types.
9357 * xdisp.c (help_echo_pos, pos_visible_p, string_pos_nchars_ahead)
9358 (string_pos, c_string_pos, number_of_chars, init_iterator)
9359 (in_ellipses_for_invisible_text_p, init_from_display_pos)
9360 (compute_stop_pos, next_overlay_change, compute_display_string_pos)
9361 (compute_display_string_end, handle_face_prop)
9362 (face_before_or_after_it_pos, handle_invisible_prop)
9363 (handle_display_prop, handle_display_spec, handle_single_display_spec)
9364 (display_prop_intangible_p, string_buffer_position_lim)
9365 (string_buffer_position, handle_composition_prop, load_overlay_strings)
9366 (get_overlay_strings_1, get_overlay_strings)
9367 (iterate_out_of_display_property, forward_to_next_line_start)
9368 (back_to_previous_visible_line_start, reseat, reseat_to_string)
9369 (get_next_display_element, set_iterator_to_next)
9370 (get_visually_first_element, compute_stop_pos_backwards)
9371 (handle_stop_backwards, next_element_from_buffer)
9372 (move_it_in_display_line_to, move_it_in_display_line)
9373 (move_it_to, move_it_vertically_backward, move_it_by_lines)
9374 (add_to_log, message_dolog, message_log_check_duplicate)
9375 (message2, message2_nolog, message3, message3_nolog
9376 (with_echo_area_buffer, display_echo_area_1, resize_mini_window_1)
9377 (current_message_1, truncate_echo_area, truncate_message_1)
9378 (set_message, set_message_1, store_mode_line_noprop)
9379 (hscroll_window_tree, debug_delta, debug_delta_bytes, debug_end_vpos)
9380 (text_outside_line_unchanged_p, check_point_in_composition)
9381 (reconsider_clip_changes)
9382 (redisplay_internal, set_cursor_from_row, try_scrolling)
9383 (try_cursor_movement, set_vertical_scroll_bar, redisplay_window)
9384 (redisplay_window, find_last_unchanged_at_beg_row)
9385 (find_first_unchanged_at_end_row, row_containing_pos, try_window_id)
9386 (trailing_whitespace_p, find_row_edges, display_line)
9387 (RECORD_MAX_MIN_POS, Fcurrent_bidi_paragraph_direction)
9388 (display_mode_element, store_mode_line_string)
9389 (pint2str, pint2hrstr, decode_mode_spec)
9390 (display_count_lines, display_string, draw_glyphs)
9391 (x_produce_glyphs, x_insert_glyphs)
9392 (rows_from_pos_range, mouse_face_from_buffer_pos)
9393 (fast_find_string_pos, mouse_face_from_string_pos)
9394 (note_mode_line_or_margin_highlight, note_mouse_highlight):
9395 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9396 (safe_call, init_from_display_pos, handle_fontified_prop)
9397 (handle_single_display_spec, load_overlay_strings)
9398 (with_echo_area_buffer, setup_echo_area_for_printing)
9399 (display_echo_area, echo_area_display)
9400 (x_consider_frame_title, prepare_menu_bars, update_menu_bar)
9401 (update_tool_bar, hscroll_window_tree, redisplay_internal)
9402 (redisplay_window, dump_glyph_row, display_mode_line)
9403 (Fformat_mode_line, decode_mode_spec, on_hot_spot_p):
9404 (handle_display_spec, display_prop_string_p):
9405 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9406 (handle_single_display_spec, build_desired_tool_bar_string)
9407 (redisplay_tool_bar, scroll_window_tree, Fdump_glyph_matrix)
9408 (get_specified_cursor_type):
9409 Check that fixnums are in proper range for system types.
9410 (struct overlay_entry, resize_mini_window, Fdump_glyph_row)
9411 (Flookup_image_map):
9412 Don't assume fixnums fit in int.
9413 (compare_overlay_entries):
9414 Avoid mishandling comparisons due to subtraction overflow.
9415 (load_overlay_strings): Use SAFE_NALLOCA, not alloca.
9416 (last_escape_glyph_face_id, last_glyphless_glyph_face_id):
9417 (handle_tool_bar_click):
9418 Use int, not unsigned, since we prefer signed and the signedness
9419 doesn't matter here.
9420 (get_next_display_element, next_element_from_display_vector):
9421 Use int, not EMACS_INT, when int is wide enough.
9422 (start_hourglass): Use duration_to_sec_usec to do proper
9423 overflow checking on durations.
9424 * xfaces.c (Fbitmap_spec_p):
9425 Check that fixnums are in proper range for system types.
9426 (compare_fonts_by_sort_order):
9427 Avoid mishandling comparisons due to subtraction overflow.
9428 (Fx_family_fonts, realize_basic_faces):
9429 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9430 (Fx_family_fonts):
9431 Don't assume fixnum fits in int.
9432 Use SAFE_ALLOCA_LISP, not alloca.
9433 (merge_face_heights): Remove unnecessary cast to EMACS_INT.
9434 (Finternal_make_lisp_face): Don't allocate more than MAX_FACE_ID.
9435 (face_at_buffer_position, face_for_overlay_string)
9436 (face_at_string_position):
9437 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9438 (merge_faces): Use int, not EMACS_INT, where int is wide enough.
9439 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines, x_icon_verify)
9440 (Fx_show_tip):
9441 Check that fixnums are in proper range for system types.
9442 (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
9443 (Fx_hide_tip, Fx_file_dialog, Fx_select_font):
9444 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9445 (Fx_change_window_property): Don't assume fixnums fit in int.
9446 * xfont.c (xfont_chars_supported):
9447 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9448 * xmenu.c (Fx_popup_dialog, set_frame_menubar)
9449 (create_and_show_popup_menu, create_and_show_dialog, xmenu_show):
9450 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9451 * xml.c (parse_region):
9452 * xrdb.c (magic_file_p):
9453 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9454 * xselect.c (TRACE1): Don't assume pid_t promotes to int.
9455 (x_get_local_selection, x_reply_selection_request)
9456 (x_handle_selection_request, wait_for_property_change):
9457 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9458 (selection_data_to_lisp_data): Use short, not EMACS_INT, where
9459 short is wide enough.
9460 (x_send_client_event): Don't assume fixnum fits in int.
9461 * xterm.c (x_x_to_emacs_modifiers):
9462 Don't assume EMACS_INT overflows nicely into int.
9463 (x_emacs_to_x_modifiers): Use EMACS_INT, not int, because values
9464 may come from Lisp.
9465 (handle_one_xevent): NATNUMP can eval its arg twice.
9466 (x_connection_closed):
9467 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9468 * xterm.h: Adjust decls to match defn changes elsewhere.
9469 (struct scroll_bar): Use struct vectorlike_header
9470 rather than rolling our own approximation.
9471 (SCROLL_BAR_VEC_SIZE): Remove; not used.
9472
9473 2012-05-25 Glenn Morris <rgm@gnu.org>
9474
9475 * lisp.mk (lisp): Update for more files being compiled now.
9476
9477 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
9478
9479 * lread.c: Remove `read_pure' which makes no difference.
9480 (read_pure): Remove var.
9481 (unreadpure): Remove function.
9482 (readevalloop): Don't call read_list with -1 flag.
9483 (read1, read_vector): Don't test read_pure any more.
9484 (read_list): Simplify.
9485
9486 * fileio.c, character.h: Minor style tweaks.
9487
9488 2012-05-24 Dmitry Antipov <dmantipov@yandex.ru>
9489
9490 * window.h (clip_changed): Remove useless declaration.
9491
9492 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
9493
9494 * makefile.w32-in: Follow-up to 2012-05-22T16:20:27Z!eggert@cs.ucla.edu.
9495 (TAGS, TAGS-gmake, CONFIG_H): Remove further references to m/intel386.h.
9496
9497 2012-05-22 Paul Eggert <eggert@cs.ucla.edu>
9498
9499 Remove src/m/*.
9500 This directory predates autoconf and is no longer needed nowadays.
9501 Move its few remaining bits of functionality to where they're needed.
9502 * m/README, m/alpha.h, m/amdx86-64.h, m/ia64.h, m/ibmrs6000.h:
9503 * m/ibms390x.h, m/intel386.h, m/m68k.h, m/macppc.h, m/sparc.h:
9504 * m/template.h: Remove.
9505 * Makefile.in (M_FILE): Remove. All uses removed.
9506 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS):
9507 * lisp.h (USE_LSB_TAG):
9508 * mem-limits.h (EXCEEDS_LISP_PTR):
9509 Use VAL_MAX, not VALBITS, in #if.
9510 * lisp.h (EMACS_INT_MAX): New macro, useful in #if.
9511 (EMACS_UINT): Define unconditionally now.
9512 (BITS_PER_CHAR, BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG)
9513 (BITS_PER_EMACS_INT): New constants, replacing
9514 what used to be in config.h, but not useful in #if.
9515 (GCTYPEBITS, VALBITS): Define unconditionally, since m/* files don't
9516 define them any more.
9517 (VAL_MAX): New macro.
9518 (VALMASK): Use it.
9519 * puresize.h (PURESIZE_RATIO): Use EMACS_INT_MAX, not
9520 BITS_PER_EMACS_INT, in #if.
9521 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
9522 (BROKEN_SIGPOLL): Move here from m/ibmrs6000.h, which was removed.
9523 * s/gnu-linux.h (ULIMIT_BREAK_VALUE) [__i386__]:
9524 * s/ms-w32.h (DATA_START):
9525 Move here from removed file m/intel386.h.
9526 * s/gnu.h (NLIST_STRUCT): Remove undef; 'configure' does this.
9527 * s/irix6-5.h (_LP64): Remove; lisp.h no longer needs this.
9528
9529 2012-05-21 Paul Eggert <eggert@cs.ucla.edu>
9530
9531 Assume C89 or later.
9532 * alloc.c, buffer.c, lisp.h: Replace POINTER_TYPE with void.
9533 * alloc.c (overrun_check_malloc, overrun_check_realloc, xmalloc)
9534 (xrealloc):
9535 * buffer.c (mmap_free_1, mmap_enlarge): Omit needless casts.
9536 * editfns.c, fns.c, gmalloc.c, insdel.c, sysdep.c, termcap.c (NULL):
9537 * textprop.c, tparam.c (NULL): Remove.
9538 * ralloc.c, vm-limit.c (POINTER): Assume void * works.
9539 * regex.c (SIGN_EXTEND_CHAR): Assume signed char works.
9540 * regex.h (_RE_ARGS): Remove. All uses rewritten to use prototypes.
9541 * unexelf.c (ElfBitsW): Assume c89 preprocessor or better.
9542 * xterm.c (input_signal_count): Assume volatile works.
9543
9544 2012-05-21 Ken Brown <kbrown@cornell.edu>
9545
9546 * xgselect.c (xg_select): Fix first argument in call to 'select'
9547 (bug#11508).
9548
9549 2012-05-20 Ken Brown <kbrown@cornell.edu>
9550
9551 * gmalloc.c (_free_internal_nolock, _realloc_internal_nolock)
9552 [CYGWIN]: Cast ptr to (char *) before comparing to _heapbase.
9553
9554 2012-05-19 Ken Brown <kbrown@cornell.edu>
9555
9556 * xfns.c (x_in_use): Remove `static' qualifier.
9557 * xterm.h (x_in_use): Declare.
9558 * xgselect.c: Include xterm.h.
9559 (xg_select): Test `x_in_use' instead of `inhibit_window_system'
9560 and `display_arg' (bug#9754).
9561
9562 2012-05-19 Paul Eggert <eggert@cs.ucla.edu>
9563
9564 * s/ms-w32.h (HAVE_GETDOMAINNAME): Remove; not needed.
9565
9566 * m/vax.h: Remove; no longer needed since HAVE_FTIME is being removed.
9567 * s/ms-w32.h (HAVE_FTIME): Remove; not needed.
9568
9569 2012-05-18 Eli Zaretskii <eliz@gnu.org>
9570
9571 Fix compilation with -DGLYPH_DEBUG=1 on MS-Windows.
9572
9573 * w32term.c [GLYPH_DEBUG]: Add prototype for x_check_font.
9574 (x_check_font) [GLYPH_DEBUG]: New function, copied from xterm.c.
9575
9576 * w32fns.c (unwind_create_frame) [GLYPH_DEBUG]: Fix broken
9577 reference to image_cache->refcount.
9578 (x_create_tip_frame): Fix broken use of FRAME_IMAGE_CACHE.
9579
9580 2012-05-17 Juri Linkov <juri@jurta.org>
9581
9582 * search.c (Fword_search_regexp, Fword_search_backward)
9583 (Fword_search_forward, Fword_search_backward_lax)
9584 (Fword_search_forward_lax): Move functions to isearch.el
9585 (bug#10145, bug#11381).
9586
9587 2012-05-16 Paul Eggert <eggert@cs.ucla.edu>
9588
9589 * xgselect.c (xg_select): Just invoke 'select' if -nw (Bug#9754).
9590
9591 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
9592
9593 * lread.c (init_obarray): Declare Qt and Qnil as special.
9594
9595 2012-05-14 Glenn Morris <rgm@gnu.org>
9596
9597 * nsterm.m (ns_init_paths): Fix typo ("libexec" not "lib-exec").
9598 Put "libexec" before "bin", for the sake of init_callproc_1.
9599
9600 2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
9601
9602 * keyboard.c (kbd_buffer_get_event) [!HAVE_DBUS]: Omit unused local.
9603
9604 * unexaix.c: Port to more-recent AIX compilers.
9605 (report_error, report_error_1, make_hdr, copy_sym)
9606 (mark_x, adjust_lnnoptrs, unrelocate_symbols):
9607 Make arguments const char *, not char *, to avoid violations of C
9608 standard and to fix some AIX warnings reported by Gilles Pion.
9609
9610 2012-05-14 Eli Zaretskii <eliz@gnu.org>
9611
9612 * xdisp.c (handle_stop): Don't call get_overlay_strings_1 if we
9613 already have overlays loaded.
9614 (handle_single_display_spec): Before returning without displaying
9615 fringe bitmap, synchronize the bidi iterator with the main display
9616 iterator, by calling iterate_out_of_display_property.
9617 (iterate_out_of_display_property): Detect buffer iteration by
9618 testing that it->string is a Lisp string.
9619 (get_next_display_element): When the current object is exhausted,
9620 and there's something on it->stack, call set_iterator_to_next to
9621 proceed with what's on the stack, instead of returning zero.
9622 (set_iterator_to_next): If called at the end of a Lisp string,
9623 proceed to consider_string_end without incrementing string
9624 position. Don't increment display vector index past the end of
9625 the display vector. (Bug#11417)
9626 (pos_visible_p): Don't report a position visible when move_it_to
9627 stopped at the last line of window, which happens to be scanned
9628 backwards by the bidi iteration. (Bug#11464)
9629
9630 2012-05-14 Eli Zaretskii <eliz@gnu.org>
9631
9632 * xdisp.c (handle_single_display_spec): Return 1 for left-margin
9633 and right-margin display specs even if the spec is invalid or we
9634 are on a TTY, and thus unable to display on the fringes.
9635 That's because the text with the property will not be displayed anyway,
9636 so we need to signal to the caller that this is a "replacing"
9637 display spec. This fixes display when the spec is invalid or we
9638 are on a TTY.
9639
9640 2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
9641
9642 * unexaix.c (make_hdr): Fix typo in prototype.
9643 This bug broke the build on AIX. Problem reported by Gilles Pion.
9644
9645 2012-05-14 Michael Albinus <michael.albinus@gmx.de>
9646
9647 * keyboard.c (kbd_buffer_get_event): Read special events also in
9648 batch mode. (Bug#11415)
9649
9650 2012-05-12 Glenn Morris <rgm@gnu.org>
9651
9652 * ns.mk: Update for ns_appbindir no longer having trailing "/".
9653
9654 2012-05-12 Eli Zaretskii <eliz@gnu.org>
9655
9656 * lisp.mk (lisp): Add newcomment.elc.
9657
9658 2012-05-12 Glenn Morris <rgm@gnu.org>
9659
9660 * Makefile.in (MKDIR_P): New, set by configure.
9661 * ns.mk (${ns_appdir}, ${ns_appbindir}Emacs): Use $MKDIR_P.
9662
9663 2012-05-11 Paul Eggert <eggert@cs.ucla.edu>
9664
9665 Remove unused function hourglass_started.
9666 * dispextern.h (hourglass_started):
9667 * w32fns.c (hourglass_started):
9668 * xdisp.c (hourglass_started): Remove.
9669
9670 2012-05-10 Juanma Barranquero <lekktu@gmail.com>
9671
9672 * makefile.w32-in ($(BLD)/gmalloc.$(O), $(BLD)/w32menu.$(O)):
9673 Update dependencies.
9674
9675 2012-05-10 Paul Eggert <eggert@cs.ucla.edu>
9676
9677 * xgselect.c (xg_select): Put maxfds+1 into a var.
9678 This is slightly clearer, and pacifies Ubuntu 12.04 gcc.
9679
9680 * sound.c (DEFAULT_ALSA_SOUND_DEVICE): Define only if HAVE_ALSA.
9681
9682 2012-05-10 Dave Abrahams <dave@boostpro.com>
9683
9684 * filelock.c (syms_of_filelock): New boolean create-lockfiles.
9685 (lock_file): If create_lockfiles is 0, do nothing. (Bug#11227)
9686
9687 2012-05-09 Michael Albinus <michael.albinus@gmx.de>
9688
9689 * dbusbind.c (xd_registered_buses): New internal Lisp object.
9690 Rename all occurences of Vdbus_registered_buses to xd_registered_buses.
9691 (syms_of_dbusbind): Remove declaration of Vdbus_registered_buses.
9692 Initialize xd_registered_buses.
9693
9694 2012-05-09 Paul Eggert <eggert@cs.ucla.edu>
9695
9696 Untag more efficiently if USE_LSB_TAG.
9697 This is based on a proposal by YAMAMOTO Mitsuharu in
9698 <http://lists.gnu.org/archive/html/emacs-devel/2008-01/msg01876.html>.
9699 For an admittedly artificial (nth 8000 longlist) benchmark on
9700 Fedora 15 x86-64, this yields a 25% CPU speedup. Also, it shrinks
9701 Emacs's overall text size by 1%.
9702 * lisp.h (XUNTAG): New macro.
9703 (XCONS, XVECTOR, XSTRING, XSYMBOL, XFLOAT, XMISC, XPROCESS, XWINDOW)
9704 (XTERMINAL, XSUBR, XBUFFER, XCHAR_TABLE, XSUB_CHAR_TABLE, XBOOL_VECTOR)
9705 (XSETTYPED_PSEUDOVECTOR, XHASH_TABLE, TYPED_PSEUDOVECTORP): Use it.
9706 * eval.c (Fautoload):
9707 * font.h (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT):
9708 * frame.h (XFRAME): Use XUNTAG.
9709
9710 Port recent dbusbind.c changes to 32-bit --with-wide-int.
9711 * dbusbind.c (xd_append_arg, xd_retrieve_arg, Fdbus_message_internal):
9712 Remove unportable assumptions about print widths of types like
9713 dbus_uint32_t.
9714 (xd_get_connection_address, Fdbus_init_bus): Cast Emacs integer to
9715 intptr_t when converting between pointer and integer, to avoid GCC
9716 warnings about wrong width.
9717
9718 2012-05-09 Eli Zaretskii <eliz@gnu.org>
9719
9720 * w32proc.c (new_child): Force Windows to reserve only 64KB of
9721 stack for each reader_thread, instead of defaulting to 8MB
9722 determined by the linker. This avoids failures in creating
9723 subprocesses on Windows 7, see the discussion in this thread:
9724 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00119.html.
9725
9726 2012-05-07 Jérémy Compostella <jeremy.compostella@gmail.com>
9727
9728 Fix up display of the *Minibuf-0* buffer in the mini window.
9729 * keyboard.c (read_char): Don't clear the echo area if there's no
9730 message to clear.
9731 * xdisp.c (redisplay_internal): Redisplay the mini window (with the
9732 contents of *Minibuf-0*) if there's no message displayed in its stead.
9733
9734 2012-05-07 Michael Albinus <michael.albinus@gmx.de>
9735
9736 * dbusbind.c (XD_DEBUG_MESSAGE): Don't print message twice in
9737 batch mode.
9738
9739 2012-05-06 Chong Yidong <cyd@gnu.org>
9740
9741 * lisp.mk (lisp): Update.
9742
9743 2012-05-05 Jim Meyering <meyering@redhat.com>
9744
9745 * w32font.c (fill_in_logfont): NUL-terminate a string (Bug#11372).
9746
9747 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
9748
9749 * data.c (PUT_ERROR): New macro.
9750 (syms_of_data): Use it. Add new error type `user-error'.
9751 * undo.c (user_error): New function.
9752 (Fprimitive_undo): Use it.
9753 * print.c (print_error_message): Adjust print style for `user-error'.
9754 * keyboard.c (user_error): New function.
9755 (Fexit_recursive_edit, Fabort_recursive_edit): Use it.
9756
9757 2012-05-03 Paul Eggert <eggert@cs.ucla.edu>
9758
9759 Do not limit current-time-string to years 1000..9999.
9760 * editfns.c (TM_YEAR_IN_ASCTIME_RANGE): Remove.
9761 (Fcurrent_time_string): Support any year that is supported by the
9762 underlying localtime representation. Don't use asctime, as it
9763 has undefined behavior for years outside the range -999..9999.
9764
9765 2012-05-02 Paul Eggert <eggert@cs.ucla.edu>
9766
9767 Fix race conditions involving setenv, gmtime, localtime, asctime.
9768 Without this fix, interrupts could mess up code that uses these
9769 nonreentrant functions, since setting TZ invalidates existing
9770 tm_zone or tzname values, and since most of these functions return
9771 pointers to static storage.
9772 * editfns.c (format_time_string, Fdecode_time, Fencode_time)
9773 (Fcurrent_time_string, Fcurrent_time_zone, Fset_time_zone_rule):
9774 Grow the critical sections to include not just invoking
9775 localtime/gmtime, but also accessing these functions' results
9776 including their tm_zone values if any, and any related TZ setting.
9777 (format_time_string): Last arg is now struct tm *, not struct tm **,
9778 so that the struct tm is saved in the critical section.
9779 All callers changed. Simplify allocation of initial buffer, partly
9780 motivated by the fact that memory allocation needs to be outside
9781 the critical section.
9782
9783 2012-05-02 Dmitry Antipov <dmantipov@yandex.ru>
9784
9785 * intervals.c (adjust_intervals_for_insertion): Initialize `newi'
9786 with RESET_INTERVAL.
9787
9788 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
9789 Remove duplicated buffer name initialization.
9790
9791 2012-05-02 Jim Meyering <jim@meyering.net>
9792
9793 * xterm.c (x_term_init): Use memcpy instead of strncpy (Bug#11373).
9794
9795 * xfns.c (x_window): Use xstrdup (Bug#11375).
9796
9797 2012-05-02 Eli Zaretskii <eliz@gnu.org>
9798
9799 * xdisp.c (pos_visible_p): If already at a newline from the
9800 display string before the 'while' loop, don't walk back the glyphs
9801 from it3.glyph_row. Solves assertion violation when the display
9802 string begins with a newline (egg.el). (Bug#11367)
9803
9804 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
9805
9806 * keyboard.c (Fexecute_extended_command, Vsuggest_key_bindings):
9807 Move to simple.el.
9808
9809 2012-05-01 Glenn Morris <rgm@gnu.org>
9810
9811 * syssignal.h: Remove reference to BROKEN_SIGINFO (last used in
9812 s/ptx4.h), BROKEN_SIGTSTP (last used in m/ustation.h, m/dpx2.h),
9813 and BROKEN_SIGURG (was in s/gnu-linux.h prior to 2008-02-10).
9814 All were removed before 23.1.
9815
9816 * dispnew.c: Remove HAVE_LIBNCURSES test;
9817 it is always true on relevant platforms.
9818
9819 * Makefile.in (LD_SWITCH_X_SITE_RPATH):
9820 Rename from LD_SWITCH_X_SITE_AUX_RPATH.
9821
9822 * Makefile.in (LD_SWITCH_X_SITE_AUX): Remove; no longer used.
9823
9824 2012-04-30 Andreas Schwab <schwab@linux-m68k.org>
9825
9826 * .gdbinit (xpr): Remove checks for no longer existing misc types.
9827 (xintfwd, xboolfwd, xobjfwd, xbufobjfwd, xkbobjfwd, xbuflocal):
9828 Remove.
9829
9830 2012-04-28 Paul Eggert <eggert@cs.ucla.edu>
9831
9832 Do not avoid creating empty evaporating overlays (Bug#9642).
9833 * buffer.c (Fmove_overlay): Revert the change of 2012-04-23.
9834 That is, do not delete an evaporating overlay if it becomes
9835 empty after its bounds are adjusted to fit within its buffer.
9836 This fix caused other problems, and I'm reverting it until we get
9837 to the bottom of them.
9838
9839 2012-04-27 Chong Yidong <cyd@gnu.org>
9840
9841 * xselect.c (x_convert_selection): Initialize a pointer (Bug#11315).
9842
9843 2012-04-27 Eli Zaretskii <eliz@gnu.org>
9844
9845 * xdisp.c (pos_visible_p): If the window start position is beyond
9846 ZV, start the display from buffer beginning. Prevents assertion
9847 violation in init_iterator when the minibuffer window is scrolled
9848 via the scroll bar.
9849
9850 * window.c (window_scroll_pixel_based): Likewise.
9851
9852 2012-04-27 Chong Yidong <cyd@gnu.org>
9853
9854 * keymap.c (where_is_internal): Doc fix (Bug#10872).
9855
9856 2012-04-27 Glenn Morris <rgm@gnu.org>
9857
9858 * fileio.c (Fcopy_file, Fset_file_selinux_context):
9859 Ignore ENOTSUP failures from setfilecon functions. (Bug#11245)
9860
9861 2012-04-27 Eli Zaretskii <eliz@gnu.org>
9862
9863 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers):
9864 Don't overrun array limits of glyph row's used[] array. (Bug#11288)
9865
9866 2012-04-26 Eli Zaretskii <eliz@gnu.org>
9867
9868 * xdisp.c (IT_DISPLAYING_WHITESPACE): In addition to the loaded
9869 display element, check also the underlying string or buffer
9870 character. (Bug#11341)
9871
9872 * w32menu.c: Include w32heap.h.
9873 (add_menu_item): If the call to AppendMenuW (via
9874 unicode_append_menu) fails, disable Unicode menus only if we are
9875 running on Windows 9X/Me.
9876
9877 2012-04-24 Andreas Schwab <schwab@linux-m68k.org>
9878
9879 * .gdbinit (xpr): Handle USE_2_TAGS_FOR_INTS.
9880 (xgetint): Add missing shift for LSB tags.
9881
9882 2012-04-24 Martin Rudalics <rudalics@gmx.at>
9883
9884 * keyboard.c (read_char): Don't wipe echo area for select window
9885 events: These might get delayed via `mouse-autoselect-window'
9886 (Bug#11304).
9887
9888 2012-04-24 Juanma Barranquero <lekktu@gmail.com>
9889
9890 * gnutls.c (init_gnutls_functions): Protect against (unlikely)
9891 manipulation of :loaded-from data.
9892
9893 2012-04-23 Juanma Barranquero <lekktu@gmail.com>
9894
9895 * gnutls.c (init_gnutls_functions): The value of :loaded-from is
9896 now a cons (bug#11311).
9897
9898 2012-04-23 Paul Eggert <eggert@cs.ucla.edu>
9899
9900 Do not create empty overlays with the evaporate property (Bug#9642).
9901 * buffer.c (Fmove_overlay): Delete an evaporating overlay
9902 if it becomes empty after its bounds are adjusted to fit within
9903 its buffer. Without this fix, in a nonempty buffer (let ((o
9904 (make-overlay 1 2))) (overlay-put o 'evaporate t) (move-overlay o 0 1))
9905 yields an empty overlay that has the evaporate property, which is
9906 not supposed to happen.
9907
9908 Fix minor GTK3 problems found by static checking.
9909 * emacsgtkfixed.c (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
9910 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
9911 (struct _EmacsFixedClass, emacs_fixed_get_type):
9912 Move decls here from emacsgtkfixed.h, since they needn't be public.
9913 (emacs_fixed_get_type): Now static.
9914 (emacs_fixed_class_init): Omit unused local.
9915 (emacs_fixed_child_type): Remove; unused.
9916 * emacsgtkfixed.h (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
9917 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
9918 (struct _EmacsFixedClass): Move to emacsgtkfixed.c.
9919 (EMACS_FIXED_CLASS, EMACS_IS_FIXED, EMACS_IS_FIXED_CLASS)
9920 (EMACS_FIXED_GET_CLASS): Remove; unused.
9921 * gtkutil.c (xg_create_frame_widgets) [!HAVE_GTK3]: Omit unused local.
9922
9923 * keyboard.c (handle_async_input): Define only if SYNC_INPUT || SIGIO.
9924 Problem reported by Juanma Barranquero for Windows -Wunused-function.
9925
9926 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
9927
9928 Modernize and clean up gmalloc.c to assume C89 (Bug#9119).
9929 * gmalloc.c (_MALLOC_INTERNAL, _MALLOC_H, _PP, __ptr_t)
9930 (__malloc_size_t, __malloc_ptrdiff_t):
9931 Remove. All uses removed, replaced by the definiens if needed,
9932 since we can assume C89 or better now.
9933 Include <stdint.h>, for PTRDIFF_MAX, uintptr_t.
9934 (protect_malloc_state, align, get_contiguous_space)
9935 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
9936 (malloc_atfork_handler_child, malloc_enable_thread)
9937 (malloc_initialize_1, __malloc_initialize, morecore_nolock)
9938 (_malloc_internal_nolock, _malloc_internal, malloc, _malloc)
9939 (_free, _realloc, _free_internal_nolock, _free_internal, free, cfree)
9940 (special_realloc, _realloc_internal_nolock, _realloc_internal)
9941 (realloc, calloc, __default_morecore, memalign, valloc, checkhdr)
9942 (freehook, mallochook, reallochook, mabort, mcheck, mprobe):
9943 Define using prototypes, not old style.
9944 (align, _malloc_internal_nolock, _free_internal_nolock, memalign):
9945 Don't assume ptrdiff_t and uintptr_t are no wider than unsigned long.
9946 (align): Don't assume that signed integer overflow wraps around.
9947 Omit unused local var.
9948 (malloc_initialize_1, morecore_nolock, _malloc_internal_nolock)
9949 (_free_internal_nolock, memalign, mallochook, reallochook):
9950 Omit no-longer-needed casts.
9951 (valloc): Use getpagesize, not __getpagesize.
9952 (MAGICWORD, MAGICFREE): Now randomish size_t values, not 32-bit.
9953 (struct hdr): The 'magic' member is now size_t, not unsigned long.
9954
9955 * dbusbind.c (XD_DBUS_VALIDATE_OBJECT): Define only if needed.
9956
9957 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
9958
9959 Move functions from C to Lisp. Make non-blocking method calls
9960 the default. Implement further D-Bus standard interfaces.
9961
9962 * dbusbind.c (DBUS_NUM_MESSAGE_TYPES): Declare.
9963 (QCdbus_request_name_allow_replacement)
9964 (QCdbus_request_name_replace_existing)
9965 (QCdbus_request_name_do_not_queue)
9966 (QCdbus_request_name_reply_primary_owner)
9967 (QCdbus_request_name_reply_in_queue)
9968 (QCdbus_request_name_reply_exists)
9969 (QCdbus_request_name_reply_already_owner): Move to dbus.el.
9970 (QCdbus_registered_serial, QCdbus_registered_method)
9971 (QCdbus_registered_signal): New Lisp objects.
9972 (XD_DEBUG_MESSAGE): Use sizeof.
9973 (XD_MESSAGE_TYPE_TO_STRING, XD_OBJECT_TO_STRING)
9974 (XD_DBUS_VALIDATE_BUS_ADDRESS, XD_DBUS_VALIDATE_OBJECT)
9975 (XD_DBUS_VALIDATE_BUS_NAME, XD_DBUS_VALIDATE_PATH)
9976 (XD_DBUS_VALIDATE_INTERFACE, XD_DBUS_VALIDATE_MEMBER): New macros.
9977 (XD_CHECK_DBUS_SERIAL): Rename from CHECK_DBUS_SERIAL_GET_SERIAL.
9978 (xd_signature, xd_append_arg): Allow float for integer types.
9979 (xd_get_connection_references): New function.
9980 (xd_get_connection_address): Rename from xd_initialize.
9981 Return cached address.
9982 (xd_remove_watch): Do not unset $DBUS_SESSION_BUS_ADDRESS.
9983 (xd_close_bus): Rename from Fdbus_close_bus. Not needed on Lisp
9984 level.
9985 (Fdbus_init_bus): New optional arg PRIVATE. Cache address.
9986 Return number of refcounts.
9987 (Fdbus_get_unique_name): Make stronger parameter check.
9988 (Fdbus_message_internal): New defun.
9989 (Fdbus_call_method, Fdbus_call_method_asynchronously)
9990 (Fdbus_method_return_internal, Fdbus_method_error_internal)
9991 (Fdbus_send_signal, Fdbus_register_service)
9992 (Fdbus_register_signal, Fdbus_register_method): Move to dbus.el.
9993 (xd_read_message_1): Obey new structure of Vdbus_registered_objects.
9994 (xd_read_queued_messages): Obey new structure of Vdbus_registered_buses.
9995 (Vdbus_compiled_version, Vdbus_runtime_version)
9996 (Vdbus_message_type_invalid, Vdbus_message_type_method_call)
9997 (Vdbus_message_type_method_return, Vdbus_message_type_error)
9998 (Vdbus_message_type_signal): New defvars.
9999 (Vdbus_registered_buses, Vdbus_registered_objects_table):
10000 Adapt docstring.
10001
10002 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
10003
10004 Fix GC_MALLOC_CHECK debugging output on 64-bit hosts.
10005 * alloc.c (emacs_blocked_malloc) [GC_MALLOC_CHECK]:
10006 Do not assume ptrdiff_t is the same width as 'int'.
10007
10008 * alloc.c: Handle unusual debugging option combinations.
10009 (GC_CHECK_MARKED_OBJECTS): Undef if ! GC_MARK_STACK,
10010 since the two debugging options are incompatible.
10011 (GC_MALLOC_CHECK): Similarly, undef if GC_CHECK_MARKED_OBJECTS
10012 is defined.
10013 (mem_init, mem_insert, mem_insert_fixup):
10014 Define if GC_MARK_STACK || GC_MALLOC_CHECK.
10015 (NEED_MEM_INSERT): Remove; no longer needed.
10016
10017 2012-04-22 Leo Liu <sdl.web@gmail.com>
10018
10019 * sysdep.c (list_system_processes): Support Darwin (Bug#5725).
10020
10021 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
10022
10023 * sysdep.c [__FreeBSD__]: Minor cleanups.
10024 (list_system_processes, system_process_attributes) [__FreeBSD__]:
10025 Use Emacs indenting style more consistently. Avoid some casts.
10026 Use 'double' consistently rather than mixing 'float' and 'double'.
10027
10028 2012-04-21 Eduard Wiebe <usenet@pusto.de>
10029
10030 * sysdep.c (list_system_processes, system_process_attributes):
10031 Add implementation for FreeBSD (Bug#5243).
10032
10033 2012-04-21 Andreas Schwab <schwab@linux-m68k.org>
10034
10035 * lisp.mk (lisp): Update.
10036
10037 2012-04-20 Paul Eggert <eggert@cs.ucla.edu>
10038
10039 * keyboard.c (process_pending_signals): Define only if SYNC_INPUT.
10040 It is never used otherwise.
10041
10042 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
10043
10044 * print.c (print_preprocess): Only check print_depth if print-circle
10045 is nil.
10046 (print_object): Check for cycles even when print-circle is nil and
10047 print-gensym is t, but only check print_depth if print-circle is nil.
10048
10049 2012-04-20 Chong Yidong <cyd@gnu.org>
10050
10051 * process.c (wait_reading_process_output): If EIO occurs on a pty,
10052 set the status to "failed" and ensure that sentinel is run.
10053
10054 2012-04-20 Glenn Morris <rgm@gnu.org>
10055
10056 * process.c (Fset_process_inherit_coding_system_flag)
10057 (Fset_process_query_on_exit_flag): Doc fix (mention return value).
10058 (Fmake_network_process, Fmake_serial_process): Doc fix.
10059
10060 2012-04-20 Eli Zaretskii <eliz@gnu.org>
10061
10062 * xdisp.c (string_buffer_position_lim): Limit starting position to
10063 BEGV.
10064 (set_cursor_from_row): If called for a mode-line or header-line
10065 row, return zero immediately.
10066 (try_cursor_movement): If inside continuation line, don't back up
10067 farther than the first row after the header line, if any.
10068 Don't consider the header-line row as "partially visible", even if
10069 MATRIX_ROW_PARTIALLY_VISIBLE_P returns non-zero. (Bug#11261)
10070
10071 2012-04-20 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
10072
10073 * lread.c (lisp_file_lexically_bound_p): Fix hang at ";-*-\n"
10074 (bug#11238).
10075
10076 2012-04-20 Teodor Zlatanov <tzz@lifelogs.com>
10077 2012-04-18 Paul Eggert <eggert@cs.ucla.edu>
10078
10079 configure: new option --enable-gcc-warnings (Bug#11207)
10080 * Makefile.in (C_WARNINGS_SWITCH): Remove.
10081 (WARN_CFLAGS, WERROR_CFLAGS): New macros.
10082 (ALL_CFLAGS): Use new macros rather than old.
10083 * process.c: Ignore -Wstrict-overflow to work around GCC bug 52904.
10084 * regex.c: Ignore -Wstrict-overflow. If !emacs, also ignore
10085 -Wunused-but-set-variable, -Wunused-function, -Wunused-macros,
10086 -Wunused-result, -Wunused-variable. This should go away once
10087 the Emacs and Gnulib regex code is merged.
10088 (xmalloc, xrealloc): Now static.
10089
10090 2012-04-17 Paul Eggert <eggert@cs.ucla.edu>
10091
10092 * dired.c (Fsystem_groups): Remove unused local.
10093
10094 2012-04-17 Glenn Morris <rgm@gnu.org>
10095
10096 * dired.c (Fsystem_users): Doc fix.
10097
10098 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
10099
10100 * dired.c (Fsystem_users, Fsystem_groups): New functions. (Bug#7900)
10101 (syms_of_dired): Add them.
10102
10103 2012-04-16 Paul Eggert <eggert@cs.ucla.edu>
10104
10105 Fix minor alloc.c problems found by static checking.
10106 * alloc.c (_malloc_internal, _free_internal) [!DOUG_LEA_MALLOC]:
10107 New extern decls, to avoid calling undeclared functions.
10108 (dont_register_blocks): Define if ((!SYSTEM_MALLOC && !SYNC_INPUT)
10109 && GC_MALLOC_CHECK), not if ((GC_MARK_STACK || defined
10110 GC_MALLOC_CHECK) && GC_MALLOC_CHECK), to match when it's used.
10111 (NEED_MEM_INSERT): New macro.
10112 (mem_insert, mem_insert_fixup) [!NEED_MEM_INSERT]: Remove; unused.
10113 Remove one incorrect comment and fix another.
10114
10115 Fix minor ralloc.c problems found by static checking.
10116 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
10117 * ralloc.c (ALIGNED, ROUND_TO_PAGE, HEAP_PTR_SIZE)
10118 (r_alloc_size_in_use, r_alloc_freeze, r_alloc_thaw): Remove; unused.
10119 (r_alloc_sbrk): Now static.
10120
10121 Improve ralloc.c interface checking.
10122 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
10123 * buffer.c (ralloc_reset_variable, r_alloc, r_re_alloc)
10124 (r_alloc_free) [REL_ALLOC]: Move decls from here ...
10125 * lisp.h (r_alloc, r_alloc_free, r_re_alloc, r_alloc_reset_variable)
10126 [REL_ALLOC]: ... to here, to check interface.
10127 * m/ia64.h (r_alloc, r_alloc_free) [REL_ALLOC && !_MALLOC_INTERNAL]:
10128 Remove decls. This fixes an "It stinks!".
10129
10130 * alloc.c (which_symbols): Fix alignment issue / type clash.
10131
10132 2012-04-15 Andreas Schwab <schwab@linux-m68k.org>
10133
10134 * lisp.h (struct Lisp_Symbol): Remove explicit padding.
10135 (struct Lisp_Misc_Any): Likewise.
10136 (struct Lisp_Free): Likewise.
10137 * alloc.c (union aligned_Lisp_Symbol): Define.
10138 (SYMBOL_BLOCK_SIZE, struct symbol_block): Use union
10139 aligned_Lisp_Symbol instead of struct Lisp_Symbol.
10140 (union aligned_Lisp_Misc): Define.
10141 (MARKER_BLOCK_SIZE, struct marker_block): Use union
10142 aligned_Lisp_Misc instead of union Lisp_Misc.
10143 (Fmake_symbol, allocate_misc, gc_sweep): Adjust.
10144
10145 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
10146
10147 Make GC_MAKE_GCPROS_NOOPS the default (Bug#9926).
10148 * lisp.h (GC_MARK_STACK): Default to GC_MAKE_GCPROS_NOOPS.
10149 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/gnu.h, s/irix6-5.h, s/msdos.h:
10150 * s/netbsd.h, s/sol2-6.h:
10151 Remove definition of GC_MARK_STACK, since the default now works.
10152 * s/aix4-2.h, s/hpux10-20.h, s/unixware.h:
10153 Define GC_MARK_STACK to GC_USE_GCPROS_AS_BEFORE, since that's
10154 no longer the default.
10155 * s/gnu-linux.h (GC_MARK_STACK): Adjust to change in default.
10156
10157 2012-04-14 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
10158
10159 * lread.c (lisp_file_lexically_bound_p):
10160 Fix hang at ";-*-\n" (bug#11238).
10161
10162 2012-04-14 Eli Zaretskii <eliz@gnu.org>
10163
10164 * xdisp.c (find_last_unchanged_at_beg_row): Don't consider a row
10165 "unchanged" if its end.pos is beyond ZV. (Bug#11199)
10166
10167 2012-04-14 Jan Djärv <jan.h.d@swipnet.se>
10168
10169 * nsterm.m (constrainFrameRect): Always constrain when there is only
10170 one screen (Bug#10962).
10171
10172 2012-04-13 Ken Brown <kbrown@cornell.edu>
10173
10174 * s/cygwin.h (PTY_OPEN): Don't try to close a bogus file descriptor.
10175
10176 2012-04-13 Reuben Thomas <rrt@sc3d.org>
10177
10178 * indent.c (Fmove_to_column): Change interactive spec (Bug#739).
10179
10180 2012-04-11 Daniel Colascione <dancol@dancol.org>
10181
10182 * s/cygwin.h: The vfork the #define in cygwin.h was protecting
10183 against is gone. It's better to use vfork now so that when Cygwin
10184 gains a new, working vfork, we use it automatically (bug#10398).
10185
10186 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
10187
10188 * window.c (save_window_save): Obey window-point-insertion-type.
10189
10190 2012-04-11 Glenn Morris <rgm@gnu.org>
10191
10192 * Makefile.in (GNUSTEP_CFLAGS): Rename from C_SWITCH_X_SYSTEM.
10193
10194 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
10195
10196 * alloc.c (lisp_align_malloc): Remove unneeded prototype.
10197
10198 2012-04-10 Jason S. Cornez <jcornez@ravenpack.com> (tiny change)
10199
10200 * keyboard.c: Override inhibit-quit after the third C-g (bug#6585).
10201 (force_quit_count): New var.
10202 (handle_interrupt): Use it.
10203
10204 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
10205
10206 * w32.c (w32_delayed_load): Record the full path of the library
10207 being loaded (bug#10424).
10208
10209 2012-04-09 Glenn Morris <rgm@gnu.org>
10210
10211 * doc.c (Fsnarf_documentation): Check variables, functions are bound,
10212 not just in the obarray, before snarfing them. (Bug#11036)
10213
10214 * Makefile.in ($(leimdir)/leim-list.el):
10215 Pass EMACS rather than BUILT_EMACS.
10216
10217 2012-04-09 Teodor Zlatanov <tzz@lifelogs.com>
10218
10219 * process.c (make_process):
10220 * process.h: Add integer `gnutls_handshakes_tried' member to
10221 process struct.
10222
10223 * gnutls.h: Add `GNUTLS_EMACS_HANDSHAKES_LIMIT' upper limit.
10224 Add convenience `GNUTLS_LOG2i' macro.
10225
10226 * gnutls.c (gnutls_log_function2i): Convenience log function.
10227 (emacs_gnutls_read): Use new log functions,
10228 `gnutls_handshakes_tried' process member, and
10229 `GNUTLS_EMACS_HANDSHAKES_LIMIT' to limit the number of handshake
10230 attempts per process (connection).
10231
10232 2012-04-09 Chong Yidong <cyd@gnu.org>
10233
10234 * eval.c (Fuser_variable_p, user_variable_p_eh)
10235 (lisp_indirect_variable): Functions deleted.
10236 (Fdefvar): Caller changed.
10237
10238 * callint.c (Finteractive, Fcall_interactively):
10239 * minibuf.c (Fread_variable): Callers changed.
10240
10241 2012-04-09 Eli Zaretskii <eliz@gnu.org>
10242
10243 * xdisp.c (set_cursor_from_row): If the display string appears in
10244 the buffer at position that is closer to point than the position
10245 after the display string, display the cursor on the first glyph of
10246 the display string. Fixes cursor display when a 'display' text
10247 property immediately follows invisible text. (Bug#11094)
10248
10249 2012-04-09 Paul Eggert <eggert@cs.ucla.edu>
10250
10251 composite.c: use 'double' consistently
10252 * composite.c (get_composition_id): Use 'double' consistently
10253 instead of converting 'float' to 'double' and vice versa; this is
10254 easier to understand and avoids a GCC warning.
10255
10256 2012-04-09 Glenn Morris <rgm@gnu.org>
10257
10258 * Makefile.in: Generate leim-list with bootstrap-emacs, in
10259 preparation for dumping it with emacs. (Bug#4789)
10260 (leimdir): New variable.
10261 ($(leimdir)/leim-list.el): New rule.
10262 (emacs$(EXEEXT)): Depend on leim-list.el.
10263
10264 * buffer.c (Qucs_set_table_for_input): Remove. (Bug#9821)
10265 (Fget_buffer_create): Don't call Qucs_set_table_for_input.
10266 (init_buffer_once, syms_of_buffer): Remove Qucs_set_table_for_input.
10267
10268 2012-04-08 Andreas Schwab <schwab@linux-m68k.org>
10269
10270 * lisp.h (struct Lisp_Symbol): Add explicit padding to ensure
10271 proper alignment.
10272
10273 2012-04-07 Juanma Barranquero <lekktu@gmail.com>
10274
10275 * xml.c (init_libxml2_functions) [WINDOWSNT]:
10276 Remove unused local variable.
10277
10278 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
10279
10280 Avoid unnecessary pointer scanning in garbage collection (Bug#10780).
10281 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS): New macro.
10282 (mark_memory): Mark Lisp_Objects only if pointers might hide in
10283 objects, as mark_maybe_pointer will catch them otherwise.
10284 (GC_LISP_OBJECT_ALIGNMENT): Remove; no longer needed.
10285 * s/gnu-linux.h (GC_LISP_OBJECT_ALIGNMENT) [__mc68000__]: Likewise.
10286
10287 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
10288
10289 Fix typo that broke non-Windows builds.
10290 * xml.c (libxml2_loaded_p) [!!WINDOWSNT]: 'inine' -> 'inline'.
10291
10292 2012-04-07 Eli Zaretskii <eliz@gnu.org>
10293
10294 Support building on MS-Windows with libxml2.
10295
10296 * makefile.w32-in (OBJ2): Add xml.$(O).
10297 (GLOBAL_SOURCES): Add xml.c.
10298 ($(BLD)/xml.$(O)): New dependency list.
10299
10300 * xml.c (DEF_XML2_FN, LOAD_XML2_FN) [WINDOWSNT]: New macros.
10301 (fn_htmlReadMemory, fn_xmlReadMemory, fn_xmlDocGetRootElement)
10302 (fn_xmlFreeDoc, fn_xmlCleanupParser, fn_xmlCheckVersion)
10303 [!WINDOWSNT]: New macros.
10304 (init_libxml2_functions, libxml2_loaded_p): New functions.
10305 (parse_region): Call fn_xmlCheckVersion instead of using the macro
10306 LIBXML_TEST_VERSION. Call libxml2 functions via the fn_* macros.
10307 (xml_cleanup_parser): New function, export for fn_xmlCleanupParser.
10308 Calls xmlCleanupParser only if libxml2 was loaded (or statically
10309 linked in).
10310 (Flibxml_parse_html_region, Flibxml_parse_xml_region):
10311 Call init_libxml2_functions before calling libxml2 functions.
10312 (syms_of_xml) <Qlibxml2_dll>: DEFSYM it.
10313
10314 * emacs.c: Don't include libxml/parser.h.
10315 (shut_down_emacs): Call xml_cleanup_parser, instead of calling
10316 xmlCleanupParser directly.
10317
10318 * lisp.h [HAVE_LIBXML2]: Add prototype for xml_cleanup_parser.
10319
10320 2012-04-07 Eli Zaretskii <eliz@gnu.org>
10321
10322 * indent.c (Fvertical_motion): If there is a display string at
10323 point, use it.vpos to compute how many lines to backtrack after
10324 move_it_to point. (Bug#11133)
10325
10326 2012-04-06 Eli Zaretskii <eliz@gnu.org>
10327
10328 * buffer.h (FETCH_CHAR, FETCH_MULTIBYTE_CHAR):
10329 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH): Add comments
10330 about subtle differences between FETCH_CHAR* and STRING_CHAR*
10331 macros related to unification of CJK characters. For the details,
10332 see the discussion following the message here:
10333 http://debbugs.gnu.org/cgi/bugreport.cgi?bug=11073#14.
10334
10335 2012-04-04 Chong Yidong <cyd@gnu.org>
10336
10337 * keyboard.c (Vdelayed_warnings_list): Doc fix.
10338
10339 2012-04-01 Eli Zaretskii <eliz@gnu.org>
10340
10341 * w32menu.c (simple_dialog_show, add_menu_item): Use SAFE_ALLOCA
10342 instead of alloca. (Bug#11138)
10343
10344 2012-04-01 Andreas Schwab <schwab@linux-m68k.org>
10345
10346 * w32menu.c (is_simple_dialog): Properly check lisp types.
10347 (Bug#11141)
10348
10349 2012-03-31 Eli Zaretskii <eliz@gnu.org>
10350
10351 * xdisp.c (move_it_by_lines): When DVPOS is positive, and the
10352 position we get to after a call to move_it_to fails the
10353 IS_POS_VALID_AFTER_MOVE_P test, move to the next buffer position
10354 only if we wind up in a string from display property. (Bug#11063)
10355
10356 * window.c (Fdelete_other_windows_internal): Invalidate the row
10357 and column information about mouse highlight, so that redisplay
10358 restores it after reallocating the glyph matrices. (Bug#7464)
10359
10360 * xdisp.c (set_cursor_from_row): If `cursor' property on a display
10361 string comes from a `display' text property, use the buffer
10362 position of that property as if we actually saw that position in
10363 the row's glyphs.
10364 (move_it_by_lines): Remove the assertion that
10365 "it->current_x == 0 && it->hpos == 0" which can be legitimately
10366 violated when there's a before-string at the beginning of a line.
10367 (Bug#11063)
10368
10369 2012-03-30 Eli Zaretskii <eliz@gnu.org>
10370
10371 * xdisp.c (append_space_for_newline): If the default face was
10372 remapped, use the remapped face for the appended newline.
10373 (extend_face_to_end_of_line): Use the remapped default face for
10374 extending the face to the end of the line.
10375 (display_line): Call extend_face_to_end_of_line when the default
10376 face was remapped. (Bug#11068)
10377
10378 2012-03-29 Eli Zaretskii <eliz@gnu.org>
10379
10380 * s/ms-w32.h: Discourage from defining HAVE_GETCWD.
10381
10382 2012-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
10383
10384 * keyboard.c (safe_run_hooks_error): Don't unquote strings.
10385
10386 2012-03-27 Glenn Morris <rgm@gnu.org>
10387
10388 * search.c (Fword_search_backward_lax, Fword_search_forward_lax):
10389 Doc fixes.
10390
10391 2012-03-26 Kenichi Handa <handa@m17n.org>
10392
10393 * dispextern.h (struct glyph): Fix previous change. Change the
10394 bit length of glyphless.ch to 25 (Bug#11082).
10395
10396 2012-03-26 Chong Yidong <cyd@gnu.org>
10397
10398 * keyboard.c (Vselection_inhibit_update_commands): New variable.
10399 (command_loop_1): Use it; inhibit selection update for
10400 handle-select-window too (Bug#8996).
10401
10402 2012-03-25 Fabrice Popineau <fabrice.popineau@supelec.fr>
10403
10404 * w32heap.c (_heap_init, _heap_term): Remove dead MSVC-specific code.
10405
10406 2012-03-25 Kenichi Handa <handa@m17n.org>
10407
10408 * dispextern.h (struct glyph): Change the bit length of
10409 glyphless.ch to 22 to make the member glyphless fit in 32 bits.
10410
10411 2012-03-24 Eli Zaretskii <eliz@gnu.org>
10412
10413 * s/ms-w32.h (tzname): Include time.h before redirecting to
10414 _tzname. Fixes the MSVC build. (Bug#9960)
10415
10416 2012-03-24 Andreas Schwab <schwab@linux-m68k.org>
10417
10418 * xdisp.c (produce_glyphless_glyph): Limit length of acronym to 6
10419 characters.
10420
10421 * xterm.c (XTread_socket): Only modify handling_signal if
10422 !SYNC_INPUT. (Bug#11080)
10423
10424 2012-03-23 Eli Zaretskii <eliz@gnu.org>
10425
10426 * bidi.c (bidi_fetch_char): Use STRING_CHAR_AND_LENGTH instead of
10427 FETCH_MULTIBYTE_CHAR followed by CHAR_BYTES. Prevents crashes
10428 when fetching a multibyte character consumes more bytes than
10429 CHAR_BYTES returns, due to unification of CJK characters in
10430 string_char. (Bug#11073)
10431
10432 2012-03-23 Troels Nielsen <bn.troels@gmail.com> (tiny change)
10433
10434 * process.c (wait_reading_process_output): Handle pty disconnect
10435 by refraining from sending oneself a SIGCHLD (bug#10933).
10436
10437 2012-03-22 Chong Yidong <cyd@gnu.org>
10438
10439 * dispextern.h (struct it): New member string_from_prefix_prop_p.
10440
10441 * xdisp.c (push_prefix_prop): Rename from push_display_prop.
10442 Mark string as coming from a prefix property.
10443 (handle_face_prop): Use default face for prefix strings (Bug#4281).
10444 (pop_it, reseat_1): Save and restore string_from_prefix_prop_p.
10445
10446 2012-03-21 Chong Yidong <cyd@gnu.org>
10447
10448 * xfaces.c (Vface_remapping_alist): Doc fix.
10449
10450 2012-03-20 Eli Zaretskii <eliz@gnu.org>
10451
10452 * w32proc.c (Fw32_set_console_codepage)
10453 (Fw32_set_console_output_codepage, Fw32_get_codepage_charset):
10454 Doc fixes.
10455
10456 2012-03-20 Chong Yidong <cyd@gnu.org>
10457
10458 * dispnew.c (Fredisplay, Vredisplay_preemption_period): Update doc
10459 to reflect default non-nil value of redisplay-dont-pause.
10460
10461 2012-03-19 Kenichi Handa <handa@m17n.org>
10462
10463 * ftfont.c (ftfont_drive_otf): Mask bits of character code to make
10464 it fit in a valid range (Bug#11003).
10465
10466 2012-03-18 Eli Zaretskii <eliz@gnu.org>
10467
10468 * xdisp.c (cursor_row_p): Even if the glyph row ends in a string
10469 that is not from display property, accept the row as a "cursor
10470 row" if one of the string's character has a non-nil `cursor'
10471 property. Fixes cursor positioning when there are newlines in
10472 overlay strings, e.g. in icomplete.el. (Bug#11035)
10473
10474 2012-03-12 Paul Eggert <eggert@cs.ucla.edu>
10475
10476 * buffer.c (compare_overlays): Don't assume args differ (Bug#6830).
10477
10478 2012-03-12 Chong Yidong <cyd@gnu.org>
10479
10480 * eval.c (inhibit_lisp_code): Rename from
10481 inhibit_window_configuration_change_hook; move from window.c.
10482
10483 * xfns.c (unwind_create_frame_1, Fx_create_frame):
10484 * window.c (run_window_configuration_change_hook)
10485 (syms_of_window): Callers changed.
10486
10487 2012-03-11 Chong Yidong <cyd@gnu.org>
10488
10489 * keymap.c (Fkey_description): Doc fix (Bug#9700).
10490
10491 * editfns.c (Fconstrain_to_field): Doc fix (Bug#9452).
10492
10493 2012-03-10 Chong Yidong <cyd@gnu.org>
10494
10495 * frame.c (other_visible_frames): Don't assume the selected frame
10496 is visible (Bug#10955).
10497
10498 2012-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
10499
10500 * buffer.c (compare_overlays): Avoid qsort's instability (bug#6830).
10501
10502 2012-03-08 Jan Djärv <jan.h.d@swipnet.se>
10503
10504 * gtkutil.c (x_wm_set_size_hint): Use one row in call to
10505 FRAME_TEXT_LINES_TO_PIXEL_HEIGHT so base_height is greater than
10506 zero (Bug#10954).
10507
10508 2012-03-03 Glenn Morris <rgm@gnu.org>
10509
10510 * alloc.c (Fgarbage_collect, misc-objects-consed): Doc fixes.
10511
10512 2012-03-02 Eli Zaretskii <eliz@gnu.org>
10513
10514 * xdisp.c (try_window_reusing_current_matrix): Don't move cursor
10515 position past the first glyph_row that ends at ZV. (Bug#10902)
10516 (redisplay_window, next_element_from_string): Fix typos in
10517 comments.
10518 (redisplay_window): Pass to move_it_vertically the margin in
10519 pixels, not in screen lines.
10520
10521 2012-03-02 Glenn Morris <rgm@gnu.org>
10522
10523 * buffer.c (buffer-list-update-hook): Doc fix.
10524
10525 2012-02-29 Eli Zaretskii <eliz@gnu.org>
10526
10527 * xdisp.c (get_overlay_strings_1): Under bidi redisplay, call
10528 push_it before setting up the iterator for the first overlay
10529 string, even if we have an empty string loaded.
10530 (next_overlay_string): If there's an empty string on the iterator
10531 stack, pop the stack. (Bug#10903)
10532
10533 2012-02-25 Paul Eggert <eggert@cs.ucla.edu>
10534
10535 Generalize fix for crash due to non-contiguous EMACS_INT (Bug#10780).
10536 Suggested by Stefan Monnier in
10537 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00692.html>.
10538 * alloc.c (widen_to_Lisp_Object): New static function.
10539 (mark_memory): Also mark Lisp_Objects by fetching pointer words
10540 and widening them to Lisp_Objects. This would work even if
10541 USE_LSB_TAG is defined and wide integers are used, which might
10542 happen in a future version of Emacs.
10543
10544 2012-02-25 Chong Yidong <cyd@gnu.org>
10545
10546 * fileio.c (Ffile_selinux_context, Fset_file_selinux_context):
10547 Doc fix.
10548
10549 * xselect.c (Fx_selection_exists_p): Doc fix.
10550 (x_clipboard_manager_save_all): Print an informative message
10551 before saving to clipboard manager.
10552
10553 2012-02-24 Chong Yidong <cyd@gnu.org>
10554
10555 * keyboard.c (process_special_events): Handle all X selection
10556 requests in kbd_buffer, not just the next one (Bug#8869).
10557
10558 2012-02-23 Chong Yidong <cyd@gnu.org>
10559
10560 * xfns.c (Fx_create_frame): Avoid window-configuration-change-hook
10561 call when setting menu-bar-lines and tool-bar-lines parameters.
10562 (unwind_create_frame_1): New helper function.
10563
10564 * window.c (inhibit_window_configuration_change_hook): New var.
10565 (run_window_configuration_change_hook): Obey it.
10566 (syms_of_window): Initialize it.
10567
10568 2012-02-22 Chong Yidong <cyd@gnu.org>
10569
10570 * xterm.c (x_draw_image_relief): Add missing type check for
10571 Vtool_bar_button_margin (Bug#10743).
10572
10573 2012-02-21 Chong Yidong <cyd@gnu.org>
10574
10575 * fileio.c (Vfile_name_handler_alist): Doc fix.
10576
10577 * buffer.c (Fget_file_buffer): Protect against invalid file
10578 handler return value.
10579
10580 2012-02-20 Paul Eggert <eggert@cs.ucla.edu>
10581
10582 * .gdbinit (xreload): Don't assume EMACS_INT fits in 'long'
10583 when computing $valmask.
10584
10585 Fix crash due to non-contiguous EMACS_INT (Bug#10780).
10586 * lisp.h (VALBITS): Move definition up, so that USE_LSB_TAG can use it.
10587 (USE_LSB_TAG): Do not define if UINTPTR_MAX >> VALBITS == 0.
10588 It's useless in that case, and it can cause problems on hosts
10589 that allocate halves of EMACS_INT values separately.
10590 Reported by Dan Horák. Diagnosed by Andreas Schwab in
10591 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=10780#30>.
10592 * mem-limits.h (EXCEEDS_LISP_PTR): Define to 0 on hosts where
10593 UINTPTR_MAX >> VALBITS == 0. This is required by the above change;
10594 it avoids undefined behavior on hosts where shifting right by more
10595 than the word width has undefined behavior.
10596
10597 2012-02-19 Chong Yidong <cyd@gnu.org>
10598
10599 * fileio.c (Ffile_name_directory, Ffile_name_nondirectory)
10600 (Funhandled_file_name_directory, Ffile_name_as_directory)
10601 (Fdirectory_file_name, Fexpand_file_name)
10602 (Fsubstitute_in_file_name): Protect against invalid file handler
10603 return values (Bug#10845).
10604
10605 2012-02-18 Eli Zaretskii <eliz@gnu.org>
10606
10607 * .gdbinit (pitx): Fix incorrect references to fields of the
10608 iterator stack.
10609
10610 2012-02-17 Chong Yidong <cyd@gnu.org>
10611
10612 * syntax.c (Fscan_lists): Doc fix (Bug#10833).
10613
10614 2012-02-15 Paul Eggert <eggert@cs.ucla.edu>
10615
10616 * image.c (MAX_IMAGE_SIZE): Increase from 6.0 to 10.0; see
10617 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00540.html>.
10618
10619 2012-02-15 Chong Yidong <cyd@gnu.org>
10620
10621 * eval.c (Fdefvar, Fdefconst): Doc fix; note that the variable is
10622 marked as special. Also, starting docstrings with * is obsolete.
10623
10624 2012-02-13 Andreas Schwab <schwab@linux-m68k.org>
10625
10626 * gnutls.c (emacs_gnutls_write): Fix last change.
10627
10628 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
10629
10630 * gnutls.c (emacs_gnutls_write): Set errno appropriately for
10631 send_process.
10632
10633 2012-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
10634
10635 * keymap.c (Fsingle_key_description): Handle char ranges.
10636
10637 2012-02-12 Chong Yidong <cyd@gnu.org>
10638
10639 * xdisp.c (handle_stop): Avoid assigning -1 to it->face_id here,
10640 as that creates a dangerous corner case.
10641
10642 * window.c (Fdelete_window_internal): Invalidate the mouse
10643 highlight (Bug#9904).
10644
10645 2012-02-12 Glenn Morris <rgm@gnu.org>
10646
10647 * xselect.c (Fx_own_selection_internal)
10648 (Fx_get_selection_internal, Fx_disown_selection_internal)
10649 (Fx_selection_owner_p, Fx_selection_exists_p): Doc fixes.
10650 * nsselect.m (Fx_own_selection_internal)
10651 (Fx_disown_selection_internal, Fx_selection_exists_p)
10652 (Fx_selection_owner_p, Fx_get_selection_internal):
10653 Sync docs and argument specs with the xselect.c versions.
10654
10655 2012-02-11 Lars Ingebrigtsen <larsi@gnus.org>
10656
10657 * gnutls.c (emacs_gnutls_write): Don't infloop if sendto fails.
10658
10659 2012-02-11 Eli Zaretskii <eliz@gnu.org>
10660
10661 * w32select.c (Fx_selection_exists_p): Sync doc string and
10662 argument list with xselect.c. (Bug#10783)
10663
10664 * w16select.c (Fx_selection_exists_p): Sync doc string and
10665 argument list with xselect.c. (Bug#10783)
10666
10667 2012-02-10 Glenn Morris <rgm@gnu.org>
10668
10669 * fns.c (Fsecure_hash): Doc fix.
10670
10671 2012-02-09 Kenichi Handa <handa@m17n.org>
10672
10673 * coding.c (produce_chars): Fix updating of src_end (Bug#10701).
10674
10675 2012-02-07 Chong Yidong <cyd@gnu.org>
10676
10677 * buffer.c (Fbuffer_local_variables)
10678 (buffer_lisp_local_variables): Handle unbound vars correctly;
10679 don't let Qunbound leak into Lisp.
10680
10681 2012-02-07 Glenn Morris <rgm@gnu.org>
10682
10683 * image.c (Fimagemagick_types): Doc fix.
10684
10685 * image.c (imagemagick-render-type): Change it from a lisp object
10686 to an integer. Move the doc here from the lisp manual.
10687 Treat all values not equal to 0 the same.
10688
10689 2012-02-06 Chong Yidong <cyd@gnu.org>
10690
10691 * doc.c (store_function_docstring): Avoid applying docstring of
10692 alias to base function (Bug#2603).
10693
10694 2012-02-04 Andreas Schwab <schwab@linux-m68k.org>
10695
10696 * .gdbinit (pp1, pv1): Remove redundant defines.
10697 (pr): Use pp.
10698
10699 2012-02-04 Chong Yidong <cyd@gnu.org>
10700
10701 * nsterm.m: Declare a global (Bug#10694).
10702
10703 2012-02-04 Eli Zaretskii <eliz@gnu.org>
10704
10705 * w32.c (get_emacs_configuration_options):
10706 Include --enable-checking, if specified, in the return value.
10707
10708 2012-02-04 Martin Rudalics <rudalics@gmx.at>
10709
10710 * dispnew.c (change_frame_size_1): Calculate new_frame_total_cols
10711 after rounding frame sizes. (Bug#9723)
10712
10713 2012-02-04 Eli Zaretskii <eliz@gnu.org>
10714
10715 * keyboard.c (adjust_point_for_property): Don't position point
10716 before BEGV. (Bug#10696)
10717
10718 2012-02-03 Paul Eggert <eggert@cs.ucla.edu>
10719
10720 Handle overflow when computing char display width (Bug#9496).
10721 * character.c (char_width): Return EMACS_INT, not int.
10722 (char_width, c_string_width): Check for overflow when
10723 computing the width; this is possible now that individual
10724 characters can have unbounded width. Problem introduced
10725 by merge from Emacs 23 on 2012-01-19.
10726
10727 2012-02-02 Michael Albinus <michael.albinus@gmx.de>
10728
10729 * dbusbind.c (Fdbus_register_method): Mention the return value
10730 :ignore in the docstring.
10731
10732 2012-02-02 Glenn Morris <rgm@gnu.org>
10733
10734 * callproc.c (Fcall_process, Fcall_process_region): Doc fix.
10735
10736 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
10737 Unconditionally set to t. (Bug#10673)
10738 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
10739 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
10740 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Doc fix.
10741
10742 2012-02-02 Kenichi Handa <handa@m17n.org>
10743
10744 (x_produce_glyphs): Cancel previous change. If cmp->glyph_len is
10745 0, do not call append_composite_glyph.
10746
10747 2012-02-02 Kenichi Handa <handa@m17n.org>
10748
10749 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING): Initialize first_s to
10750 NULL (Bug#6988).
10751 (x_produce_glyphs): If the component of a composition is a null
10752 string, set it->pixel_width to 1 to avoid zero-width glyph.
10753
10754 2012-02-01 Eli Zaretskii <eliz@gnu.org>
10755
10756 * ralloc.c (resize_bloc, r_alloc_sbrk): Don't call memmove if its
10757 first 2 arguments are identical. This makes inserting large
10758 output from a subprocess an order of magnitude faster on
10759 MS-Windows, where all sbrk'ed memory is always contiguous.
10760
10761 2012-01-31 Glenn Morris <rgm@gnu.org>
10762
10763 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
10764 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
10765 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Sync docs.
10766
10767 2012-01-29 Glenn Morris <rgm@gnu.org>
10768
10769 * gnutls.c (syms_of_gnutls): More doc (from etc/NEWS).
10770
10771 2012-01-28 Samuel Thibault <sthibault@debian.org> (tiny change)
10772
10773 * s/gnu.h: Define POSIX_SIGNALS (Bug#10552).
10774
10775 2012-01-28 Chong Yidong <cyd@gnu.org>
10776
10777 * minibuf.c (syms_of_minibuf): Doc fix (Bug#10550).
10778
10779 2012-01-26 Chong Yidong <cyd@gnu.org>
10780
10781 * keyboard.c (Vecho_keystrokes): Document zero value (Bug#10503).
10782
10783 * search.c (Fsearch_forward, Fsearch_backward): Document negative
10784 repeat counts (Bug#10507).
10785
10786 2012-01-26 Glenn Morris <rgm@gnu.org>
10787
10788 * lread.c (syms_of_lread): Doc fix.
10789
10790 2012-01-25 HIROSHI OOTA <nil@mad.dog.cx> (tiny change)
10791
10792 * coding.c (encode_designation_at_bol): Change return value to
10793 EMACS_INT.
10794
10795 2012-01-25 Chong Yidong <cyd@gnu.org>
10796
10797 * eval.c (Fuser_variable_p): Doc fix; mention custom-variable-p.
10798
10799 2012-01-21 Chong Yidong <cyd@gnu.org>
10800
10801 * floatfns.c (Fcopysign): Make the second argument non-optional,
10802 since nil is not allowed anyway.
10803
10804 2012-01-21 Andreas Schwab <schwab@linux-m68k.org>
10805
10806 * process.c (read_process_output): Use p instead of XPROCESS (proc).
10807 (send_process): Likewise.
10808
10809 2012-01-19 Martin Rudalics <rudalics@gmx.at>
10810
10811 * window.c (save_window_save, Fcurrent_window_configuration)
10812 (Vwindow_persistent_parameters): Do not use Qstate.
10813 Rewrite doc-strings.
10814
10815 2012-01-19 Kenichi Handa <handa@m17n.org>
10816
10817 * character.c (char_width): New function.
10818 (Fchar_width, c_string_width, lisp_string_width):
10819 Use char_width (Bug#9496).
10820
10821 2012-01-16 Martin Rudalics <rudalics@gmx.at>
10822
10823 * window.c (Vwindow_persistent_parameters): New variable.
10824 (Fset_window_configuration, save_window_save): Handle persistent
10825 window parameters.
10826
10827 2012-01-14 Eli Zaretskii <eliz@gnu.org>
10828
10829 * w32fns.c (signal_user_input): Don't do a QUIT, to avoid
10830 thrashing the stack of the thread. (Bug#9087)
10831
10832 2012-01-12 Paul Eggert <eggert@cs.ucla.edu>
10833
10834 * xdisp.c (rows_from_pos_range): Add parens as per gcc -Wparentheses.
10835
10836 2012-01-11 Eli Zaretskii <eliz@gnu.org>
10837
10838 * xdisp.c (rows_from_pos_range): Handle the case where the
10839 highlight ends on a newline. (Bug#10464)
10840 (mouse_face_from_buffer_pos): Fix off-by-one error in calculating
10841 he end column for display of highlight that ends on a newline
10842 before a R2L line.
10843
10844 2012-01-11 Glenn Morris <rgm@gnu.org>
10845
10846 * lread.c (init_lread): If no-site-lisp, remove site-lisp dirs
10847 from load-path also when installation-directory is nil. (Bug#10208)
10848
10849 2012-01-10 Glenn Morris <rgm@gnu.org>
10850
10851 * emacs.c (syms_of_emacs) <installation-directory>: Doc fix.
10852
10853 * epaths.in (PATH_LOADSEARCH, PATH_EXEC, PATH_DATA, PATH_DOC):
10854 Update template values to be closer to their typical values these days.
10855
10856 2012-01-09 Eli Zaretskii <eliz@gnu.org>
10857
10858 * xdisp.c (rows_from_pos_range): Accept additional argument
10859 DISP_STRING, and accept any glyph in a row whose object is that
10860 string as eligible for mouse highlight. Fixes mouse highlight of
10861 display strings from overlays. (Bug#10464)
10862
10863 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
10864
10865 emacs: fix an auto-save permissions race condition (Bug#10400)
10866 * fileio.c (auto_saving_dir_umask): New static var.
10867 (Fmake_directory_internal): Use it.
10868 (do_auto_save_make_dir): Set it, instead of invoking chmod after
10869 creating the directory. The old code temporarily assigns
10870 too-generous permissions to the directory.
10871 (do_auto_save_eh): Clear it.
10872 (Fdo_auto_save): Catch all errors, not just file errors, so
10873 that the var is always cleared.
10874
10875 2012-01-07 Eli Zaretskii <eliz@gnu.org>
10876
10877 * search.c (scan_buffer): Pass character positions to
10878 know_region_cache, not byte positions. (Bug#6540)
10879
10880 2012-01-07 LynX <_LynX@bk.ru> (tiny change)
10881
10882 * w32.c (sys_rename): Report EXDEV when rename of a directory
10883 fails because the target is on another logical disk. (Bug#10284)
10884
10885 2012-01-07 David Benjamin <davidben@mit.edu> (tiny change)
10886
10887 * xterm.c (x_embed_request_focus): New function.
10888
10889 * xterm.h: Add prototype.
10890
10891 * xfns.c (Fx_focus_frame): Use it for embedded frames (Bug#9977).
10892
10893 2012-01-05 Glenn Morris <rgm@gnu.org>
10894
10895 * emacs.c (emacs_copyright): Update short copyright year to 2012.
10896
10897 2012-01-01 Eli Zaretskii <eliz@gnu.org>
10898
10899 * gnutls.c (init_gnutls_functions): Load gnutls_check_version.
10900 Load gnutls_transport_set_lowat only if GnuTLS version is below
10901 2.11.1.
10902 (emacs_gnutls_handshake): Call gnutls_transport_set_lowat only for
10903 GnuTLS versions below 2.11.1.
10904
10905 2011-12-31 Antoine Levitt <antoine.levitt@gmail.com>
10906
10907 * xdisp.c (syms_of_xdisp) <window-scroll-functions>: Add warning
10908 to the doc string advising against its use for altering the way
10909 windows are scrolled.
10910
10911 2011-12-28 Kenichi Handa <handa@m17n.org>
10912
10913 * coding.c (Fdefine_coding_system_internal): Make an utf-8 base
10914 coding-system ASCII compatible only when it does not produce BOM
10915 on encoding (Bug#10383).
10916
10917 2011-12-26 Jan Djärv <jan.h.d@swipnet.se>
10918
10919 * xmenu.c (x_menu_wait_for_event): Use xg_select for Gtk3 so menus
10920 can scroll.
10921 (create_and_show_popup_menu): Always use menu_position_func for
10922 Gtk3 (Bug#10361).
10923
10924 2011-12-24 Andreas Schwab <schwab@linux-m68k.org>
10925
10926 * callint.c (Fcall_interactively): Don't truncate prompt string.
10927
10928 2011-12-23 Eli Zaretskii <eliz@gnu.org>
10929
10930 * xdisp.c (handle_invisible_prop): Handle correctly an invisible
10931 property that ends at ZV, so that the bidi iteration could be
10932 resumed from there (after widening). (Bug#10360)
10933
10934 2011-12-22 Jan Djärv <jan.h.d@swipnet.se>
10935
10936 * nsfont.m (ns_spec_to_descriptor): Do not autorelease fdesc.
10937
10938 2011-12-21 Jan Djärv <jan.h.d@swipnet.se>
10939
10940 * nsterm.m (x_free_frame_resources):
10941 Release f->output_data.ns->miniimage.
10942 (ns_index_color): Fix indentation. Do not retain
10943 color_table->colors[i].
10944
10945 * nsmenu.m (ns_update_menubar): Call free_menubar_widget_value_tree
10946 before returning.
10947
10948 * nsfns.m (x_set_background_color): Assign return value from
10949 ns_index_color to face-background instead of NSColor*.
10950 (ns_implicitly_set_icon_type): Fix indentation.
10951 Change assignment in for loop to comparison.
10952
10953 * emacs.c (ns_pool): New variable.
10954 (main): Assign ns_pool.
10955 (Fkill_emacs): Call ns_release_autorelease_pool.
10956
10957 * nsfont.m (ns_spec_to_descriptor): Fix indentation,
10958 autorelease fdesc, release fdAttrs and tdict.
10959 (ns_get_covering_families): Release charset.
10960 (ns_findfonts): Release NSFontDescriptor created with new.
10961 (ns_uni_to_glyphs): Fix indentation.
10962 (setString): Release attrStr before assigning new value.
10963
10964 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
10965
10966 * nsmenu.m (NSMenuDidBeginTrackingNotification): Declare if OSX < 10.5
10967 and NS_IMPL_COCOA.
10968 (trackingNotification): Surround with ifdef NS_IMPL_COCOA.
10969 (syms_of_nsmenu): Set trackingMenu to 1 if not NS_IMPL_COCOA.
10970
10971 2011-12-18 David Reitter <reitter@cmu.edu>
10972
10973 * nsterm.m (ns_term_init): Subscribe for notifications
10974 NSMenuDidBeginTrackingNotification and NSMenuDidEndTrackingNotification
10975 to method trackingNotification in EmacsMenu.
10976
10977 * nsmenu.m (trackingMenu): New variable.
10978 (trackingNotification): New method (from Aquamacs).
10979 (menuNeedsUpdate): Expand comment and return if trackingMenu is 0,
10980 from Aquamacs (Bug#7030).
10981
10982 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
10983
10984 * nsselect.m (CUT_BUFFER_SUPPORT): Remove define.
10985 (symbol_to_nsstring): Fix indentation.
10986 (ns_symbol_to_pb): New function.
10987 (Fns_get_selection_internal): Rename from Fns_get_cut_buffer_internal.
10988 (Fns_rotate_cut_buffers_internal): Remove.
10989 (Fns_store_selection_internal): Rename from
10990 Fns_store_cut_buffer_internal.
10991 (ns_get_foreign_selection, Fx_own_selection_internal)
10992 (Fx_disown_selection_internal, Fx_selection_exists_p)
10993 (Fns_get_selection_internal, Fns_store_selection_internal):
10994 Use ns_symbol_to_pb and check if return value is nil.
10995 (syms_of_nsselect): Remove ifdef CUT_BUFFER_SUPPORT. Remove defsubr
10996 Sns_rotate_cut_buffers_internal. Sns_get_cut_buffer_internal
10997 renamed to Sns_get_selection_internal, Sns_store_cut_buffer_internal
10998 renamed to Sns_store_selection_internal.
10999 (ns_handle_selection_request): Move code to Fx_own_selection_internal
11000 and remove this function.
11001 (ns_handle_selection_clear): Remove, never used.
11002 (Fx_own_selection_internal): Move code from ns_handle_selection_request
11003 here.
11004
11005 2011-12-17 Ken Brown <kbrown@cornell.edu>
11006
11007 * fileio.c (check_writable) [CYGWIN]: Return non-zero if UID or
11008 GID is unknown (Bug#10257).
11009
11010 2011-12-17 Paul Eggert <eggert@cs.ucla.edu>
11011
11012 * s/gnu-linux.h: Fix mark_memory typo (Bug#10286).
11013 (GC_MARK_SECONDARY_STACK): Omit removed 3rd arg to mark_memory,
11014 which caused a build failure on GNU/Linux IA-64. This problem was
11015 introduced by my 2011-10-07 patch.
11016
11017 2011-12-15 Juri Linkov <juri@jurta.org>
11018
11019 * image.c (imagemagick_error): New function. (Bug#10112)
11020 (imagemagick_load_image): Comment out `MagickSetResolution' call.
11021 Use `imagemagick_error' where ImageMagick functions return
11022 `MagickFalse'.
11023 (Fimagemagick_types): Add `Fnreverse' to return the list in the
11024 proper order.
11025
11026 2011-12-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11027
11028 * xftfont.c (xftfont_draw): Use the font metrics of s->font to
11029 fill background (Bug#8992).
11030
11031 2011-12-13 Martin Rudalics <rudalics@gmx.at>
11032
11033 * window.c (Vwindow_combination_resize)
11034 (Vwindow_combination_limit): Use t instead of non-nil in
11035 doc-strings.
11036 (Vrecenter_redisplay): Add first sentence of doc-string on
11037 separate line.
11038 (Frecenter): Fix doc-string typo.
11039
11040 2011-12-11 Kenichi Handa <handa@m17n.org>
11041
11042 * coding.c (Funencodable_char_position): Pay attention to the
11043 buffer text relocation (Bug#9389).
11044
11045 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
11046
11047 * xterm.c (x_term_init): Move call to gdk_window_add_filter before
11048 gtk_init (Bug#10100).
11049
11050 2011-12-10 Eli Zaretskii <eliz@gnu.org>
11051
11052 * xdisp.c (RECORD_MAX_MIN_POS): Use IT->cmp_it.charpos only if
11053 IT->string is nil. (Bug#10263)
11054
11055 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
11056
11057 * nsterm.h (x_free_frame_resources): Declare.
11058
11059 * nsfns.m (ns_get_defaults_value): New function (Bug#10103).
11060 (Fns_get_resource, x_get_string_resource): Call ns_get_defaults_value.
11061
11062 * nsterm.h (ns_get_defaults_value): Declare.
11063
11064 * nsterm.m (ns_default): Call ns_get_defaults_value.
11065
11066 2011-12-09 Eli Zaretskii <eliz@gnu.org>
11067
11068 * xdisp.c (try_scrolling): Don't set scroll_down_p if dy is zero.
11069 (Bug#10170)
11070
11071 2011-12-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11072
11073 * unexelf.c (unexec) [NS_IMPL_GNUSTEP]: Take account of the case
11074 that where the value of an _OBJC_* symbol points to is in the .bss
11075 section (Bug#10240).
11076
11077 2011-12-08 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
11078
11079 * coding.c (encode_coding_ccl): Check (charbuf < charbuf_end)
11080 after the loop to call ccl_driver at least once (Bug#8619).
11081
11082 2011-12-08 Kenichi Handa <handa@m17n.org>
11083
11084 * ftfont.c (get_adstyle_property): Fix previous change
11085 (Bug#10233).
11086
11087 2011-12-07 Juanma Barranquero <lekktu@gmail.com>
11088
11089 * w32.c (init_environment): If no_site_lisp, remove site-lisp
11090 dirs from the default value of EMACSLOADPATH (bug#10208).
11091
11092 2011-12-07 Glenn Morris <rgm@gnu.org>
11093
11094 * lread.c (init_lread): If no_site_lisp, exclude site-lisp/ in
11095 installation and source directories as well. (Bug#10208)
11096
11097 2011-12-06 Chong Yidong <cyd@gnu.org>
11098
11099 * minibuf.c (Fread_from_minibuffer): Doc fix (Bug#10228).
11100
11101 2011-12-06 Glenn Morris <rgm@gnu.org>
11102
11103 * process.c (start_process_unwind): Treat any pid <= 0, except -2,
11104 as an error, not just -1. (Bug#10217)
11105
11106 2011-12-05 Chong Yidong <cyd@gnu.org>
11107
11108 * keyboard.c (process_special_events): New function.
11109 (swallow_events, Finput_pending_p): Use it (Bug#10195).
11110
11111 2011-12-05 Paul Eggert <eggert@cs.ucla.edu>
11112
11113 * coding.c (encode_designation_at_bol): Don't use uninitialized
11114 local variable (Bug#9318).
11115
11116 2011-12-05 Kenichi Handa <handa@m17n.org>
11117
11118 * ftfont.c (get_adstyle_property): If the font is not BDF nor PCF,
11119 return Qnil (Bug#8046, Bug#10193).
11120
11121 2011-12-05 Kenichi Handa <handa@m17n.org>
11122
11123 * coding.c (encode_designation_at_bol): New args charbuf_end and
11124 dst. Return the number of produced bytes. Callers changed.
11125 (coding_set_source): Return how many bytes coding->source was
11126 relocated.
11127 (coding_set_destination): Return how many bytes
11128 coding->destination was relocated.
11129 (CODING_DECODE_CHAR, CODING_ENCODE_CHAR, CODING_CHAR_CHARSET)
11130 (CODING_CHAR_CHARSET_P): Adjust for the avove changes.
11131
11132 2011-12-05 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
11133
11134 * coding.c (CODING_CHAR_CHARSET_P): New macro.
11135 (encode_coding_emacs_mule, encode_coding_iso_2022): Use the above
11136 macro (Bug#9318).
11137
11138 2011-12-05 Andreas Schwab <schwab@linux-m68k.org>
11139
11140 The following changes are to fix Bug#9318.
11141
11142 * coding.c (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET): New macros.
11143 (encode_coding_emacs_mule, ENCODE_ISO_CHARACTER)
11144 (encode_coding_iso_2022, encode_coding_sjis)
11145 (encode_coding_big5, encode_coding_charset): Use the above macros.
11146
11147 2011-12-05 Juanma Barranquero <lekktu@gmail.com>
11148
11149 * lisp.h (process_quit_flag): Fix external declaration.
11150
11151 2011-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
11152
11153 Don't macro-inline non-performance-critical code.
11154 * eval.c (process_quit_flag): New function.
11155 * lisp.h (QUIT): Use it.
11156
11157 2011-12-04 Jan Djärv <jan.h.d@swipnet.se>
11158
11159 * nsfns.m (get_geometry_from_preferences): New function.
11160 (Fx_create_frame): Call get_geometry_from_preferences (Bug#10103).
11161
11162 2011-12-04 Andreas Schwab <schwab@linux-m68k.org>
11163
11164 * emacs.c (Qkill_emacs): Define.
11165 (syms_of_emacs): Initialize it.
11166 * keyboard.c (interrupt_signal): Don't call Fkill_emacs here, set
11167 Qquit_flag to `kill-emacs' instead.
11168 (quit_throw_to_read_char): Add parameter `from_signal'.
11169 All callers changed. Call Fkill_emacs if requested and safe.
11170 * lisp.h (QUIT): Call Fkill_emacs if requested.
11171
11172 2011-12-03 Jan Djärv <jan.h.d@swipnet.se>
11173
11174 * widget.c (update_wm_hints): Return if wmshell is null.
11175 (widget_update_wm_size_hints): New function.
11176
11177 * widget.h (widget_update_wm_size_hints): Declare.
11178
11179 * xterm.c (x_wm_set_size_hint): If USE_X_TOOLKIT, call
11180 widget_update_wm_size_hints (Bug#10104).
11181
11182 2011-12-03 Eli Zaretskii <eliz@gnu.org>
11183
11184 * xdisp.c (handle_invisible_prop): If the invisible text ends just
11185 before a newline, prepare the bidi iterator for consuming the
11186 newline, and keep the current paragraph direction. (Bug#10183)
11187 (redisplay_window): Don't let `margin' become negative. (Bug#10192)
11188
11189 2011-12-02 Juri Linkov <juri@jurta.org>
11190
11191 * search.c (Fword_search_regexp): New Lisp function created from
11192 `wordify'. Change type of arg `lax' from `int' to `Lisp_Object'.
11193 (Fword_search_backward, Fword_search_forward)
11194 (Fword_search_backward_lax, Fword_search_forward_lax):
11195 Use `Fword_search_regexp' instead of `wordify'. Doc fix.
11196 (syms_of_search): Define `Sword_search_regexp'. (Bug#10145)
11197
11198 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
11199
11200 * fileio.c (Finsert_file_contents): Move after-change-function call
11201 to before the "handled:" label, since all "goto handled" appear in
11202 cases where the *-change-functions have already been properly called
11203 (bug#10117).
11204
11205 2011-12-01 Andreas Schwab <schwab@linux-m68k.org>
11206
11207 * keyboard.c (interrupt_signal): Don't call kill-emacs when
11208 waiting for input. (Bug#10169)
11209
11210 2011-11-30 Eli Zaretskii <eliz@gnu.org>
11211
11212 * dispnew.c (adjust_glyph_matrix): Remove the assertion that
11213 verifies glyph row's hash code--we have just reallocated the
11214 glyphs, so their contents can be complete garbage. (Bug#10164)
11215
11216 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
11217
11218 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Add missing check.
11219
11220 2011-11-30 Eli Zaretskii <eliz@gnu.org>
11221
11222 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Ensure ROW's
11223 attributes are tested _before_ calling verify_row_hash, to protect
11224 against GCC re-ordering of the tests. (Bug#10164)
11225
11226 2011-11-29 Jan Djärv <jan.h.d@swipnet.se>
11227
11228 * xterm.h (struct x_output): net_wm_state_hidden_seen is new.
11229
11230 * xterm.c (handle_one_xevent): Only set async_visible and friends
11231 if net_wm_state_hidden_seen is non-zero (Bug#10002)
11232 (get_current_wm_state): Set net_wm_state_hidden_seen to 1 if
11233 _NET_WM_STATE_HIDDEN is in NET_WM_STATE.
11234
11235 2011-11-28 Paul Eggert <eggert@cs.ucla.edu>
11236
11237 Remove GCPRO-related macros that exist only to avoid shadowing locals.
11238 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR)
11239 (GCPRO6_VAR, UNGCPRO_VAR): Remove. See
11240 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
11241 All uses changed to use GCPRO1 etc.
11242 (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6, UNGCPRO):
11243 Revert to old implementation (i.e., before 2011-03-11).
11244
11245 2011-11-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11246
11247 * dispnew.c (scrolling_window): Truncate overlaps in copy destination
11248 of scroll runs so as to avoid assigning disabled bogus rows and
11249 unnecessary graphics copy operations.
11250
11251 2011-11-27 Eli Zaretskii <eliz@gnu.org>
11252
11253 * s/ms-w32.h (utimbuf) [_MSC_VER]: Don't define.
11254 (snprintf) [_MSC_VER]: Redirect to _snprintf.
11255 (strtoll) [_MSC_VER]: Redirect to _strtoi64.
11256 (malloc, free, realloc, calloc): Redirect to e_* only when
11257 compiling Emacs.
11258
11259 * lisp.h (GCTYPEBITS): Move before first use.
11260 (ALIGN_GCTYPEBITS) [_MSC_VER]: Define.
11261 (DECL_ALIGN) [_MSC_VER]: Use it, as MSVC doesn't like bit ops in
11262 this macro definition.
11263
11264 * s/ms-w32.h (tzname): Redirect to _tzname for all values of
11265 _MSC_VER.
11266
11267 2011-11-27 Jan Djärv <jan.h.d@swipnet.se>
11268
11269 * gtkutil.c (xg_create_frame_widgets):
11270 Call gtk_window_set_has_resize_grip (FALSE) if that function is
11271 present with Gtk+ 2.0.
11272
11273 2011-11-26 Paul Eggert <eggert@cs.ucla.edu>
11274
11275 * fileio.c (Finsert_file_contents): Undo previous change; see
11276 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
11277
11278 2011-11-26 Paul Eggert <eggert@cs.ucla.edu>
11279
11280 Rename locals to avoid shadowing.
11281 * fileio.c (Finsert_file_contents):
11282 Rename inner 'gcpro1' to 'inner_gcpro1' to avoid shadowing.
11283 * process.c (wait_reading_process_output):
11284 Rename inner 'proc' to 'p' to avoid shadowing.
11285 Indent for consistency with usual Emacs style.
11286
11287 2011-11-25 Eli Zaretskii <eliz@gnu.org>
11288
11289 * xdisp.c (redisplay_window): If cursor row is not fully visible
11290 after recentering, and scroll-conservatively is set to a large
11291 number, scroll window by a few more lines to make the cursor fully
11292 visible and out of scroll-margin. (Bug#10105)
11293 (start_display): Don't move to the next line if the display should
11294 start at a newline that is part of a display vector or an overlay
11295 string. (Bug#10119)
11296
11297 2011-11-24 Juri Linkov <juri@jurta.org>
11298
11299 * image.c (imagemagick_load_image): Move `MagickSetResolution' down
11300 after the `MagickPingImage' call. (Bug#10112)
11301
11302 2011-11-23 Chong Yidong <cyd@gnu.org>
11303
11304 * window.c (Fcoordinates_in_window_p): Accept only live windows.
11305
11306 2011-11-23 Martin Rudalics <rudalics@gmx.at>
11307
11308 * buffer.c (Fkill_buffer): Run replace_buffer_in_windows before
11309 making another buffer current. (Bug#10114)
11310
11311 2011-11-23 Glenn Morris <rgm@gnu.org>
11312
11313 * font.c (font_find_for_lface) [HAVE_NS]: Ignore case. (Bug#2526)
11314
11315 2011-11-23 Chong Yidong <cyd@gnu.org>
11316
11317 * xdisp.c (compute_stop_pos): Check validity of end_charpos before
11318 using it (Bug#5984).
11319
11320 2011-11-22 Eli Zaretskii <eliz@gnu.org>
11321
11322 * dispnew.c (adjust_glyph_matrix): Don't verify hash code of mode-
11323 and header-lines, as they don't have one computed for them.
11324 (Bug#10098)
11325
11326 * .gdbinit (prow): Make displayed values more self-explaining.
11327 Add row's hash code.
11328
11329 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
11330
11331 * process.c (wait_reading_process_output): Fix asynchrounous
11332 GnuTLS socket handling on some versions of the GnuTLS library.
11333 (wait_reading_process_output): Add comment and URL.
11334
11335 2011-11-21 Jan Djärv <jan.h.d@swipnet.se>
11336
11337 * xterm.c (x_clear_frame): Reinstate the XClearWindow call.
11338
11339 2011-11-21 Chong Yidong <cyd@gnu.org>
11340
11341 * window.c (Fnext_window, Fprevious_window): Doc fix.
11342
11343 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
11344
11345 * window.c (get_phys_cursor_glyph): Fix Lisp_Object/int mixup.
11346
11347 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
11348
11349 * nsfont.m (syms_of_nsfont) <ns-reg-to-script>: Fix typo.
11350
11351 2011-11-20 Martin Rudalics <rudalics@gmx.at>
11352
11353 * window.c (Fset_window_combination_limit): Rename argument
11354 STATUS to LIMIT.
11355 (Vwindow_combination_limit): Remove "status" from doc-string.
11356
11357 2011-11-20 Andreas Schwab <schwab@linux-m68k.org>
11358
11359 * m/ibms390.h: Remove.
11360 * m/ibms390x.h: Don't include "ibms390.h".
11361
11362 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
11363
11364 * fileio.c (Finsert_file_contents): Add missing gcpro1 variable.
11365 Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
11366
11367 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
11368
11369 * casetab.c (Fset_case_table):
11370 * charset.c (Fcharset_after): Fix typos.
11371
11372 2011-11-20 Paul Eggert <eggert@cs.ucla.edu>
11373
11374 Standardize on VIRT_ADDR_VARIES behavior (Bug#10042).
11375 Otherwise, valgrind does not work on some platforms.
11376 Problem reported by Andreas Schwab in
11377 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00081.html>.
11378 * puresize.h (pure, PURE_P): Always behave as if VIRT_ADDR_VARIES
11379 is set, removing the need for VIRT_ADDRESS_VARIES.
11380 (PURE_P): Use a more-efficient implementation that needs just one
11381 comparison, not two: on x86-64 with GCC 4.6.2, this cut down the
11382 number of instructions from 6 (xorl, cmpq, jge, xorl, cmpq, setge)
11383 to 4 (xorl, subq, cmpq, setbe).
11384 * alloc.c (pure): Always extern now, since that's the
11385 VIRT_ADDR_VARIES behavior.
11386 (PURE_POINTER_P): Use a single comparison, not two, for
11387 consistency with the new puresize.h.
11388 * lisp.h (PNTR_COMPARISON_TYPE): Remove; no longer needed.
11389 * m/ibms390.h, m/intel386.h, m/template.h, s/cygwin.h, s/hpux10-20.h:
11390 Remove VIRT_ADDR_VARIES no longer needed.
11391
11392 2011-11-19 Eli Zaretskii <eliz@gnu.org>
11393
11394 * xdisp.c (x_write_glyphs, draw_phys_cursor_glyph)
11395 (erase_phys_cursor, update_window_cursor, show_mouse_face)
11396 (cursor_in_mouse_face_p): If the cursor position is out of bounds,
11397 behave as if the cursor position were at the window margin.
11398
11399 * window.c (get_phys_cursor_glyph): If the window is hscrolled,
11400 and the cursor position is out of bounds, behave as if the cursor
11401 position were at the window margin. (Bug#10075)
11402
11403 2011-11-18 Chong Yidong <cyd@gnu.org>
11404
11405 * window.c (Fwindow_combination_limit): Make first argument
11406 non-optional, since it is meaningless for live windows like the
11407 selected window.
11408
11409 2011-11-18 Dmitry Antipov <dmantipov@yandex.ru>
11410
11411 * keymap.c (Fwhere_is_internal): Add missing RETURN_UNGCPROs.
11412
11413 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
11414
11415 * intervals.c: Fix grafting over the whole buffer (bug#10071).
11416 (graft_intervals_into_buffer): Simplify.
11417
11418 2011-11-18 Eli Zaretskii <eliz@gnu.org>
11419
11420 * dispnew.c (swap_glyph_pointers): Swap the used[] arrays and the
11421 hash values of the two rows.
11422 (copy_row_except_pointers): Preserve the used[] arrays and the
11423 hash values of the two rows. (Bug#10035)
11424 (add_row_entry): Add xassert to verify that ROW's hash code is valid.
11425
11426 * xdisp.c (row_hash): New function, body extracted from
11427 compute_line_metrics.
11428 (compute_line_metrics): Call row_hash, instead of computing the
11429 hash code inline.
11430
11431 * dispnew.c (verify_row_hash): Call row_hash for computing the
11432 hash code of a row, instead of duplicating code from xdisp.c.
11433
11434 * dispextern.h (row_hash): Add prototype.
11435
11436 2011-11-18 Tassilo Horn <tassilo@member.fsf.org>
11437
11438 * frame.c (delete_frame): Don't delete the terminal when the last
11439 X frame is closed if emacs is built with GTK toolkit.
11440
11441 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
11442
11443 * window.c (syms_of_window) <window-combination-resize>: Fix typo.
11444
11445 2011-11-17 Martin Rudalics <rudalics@gmx.at>
11446
11447 * window.c (Vwindow_splits): Rename to
11448 Vwindow_combination_resize. Suggested by Juri Linkov.
11449 (Fsplit_window_internal): Use Vwindow_combination_resize instead
11450 of Vwindow_splits.
11451
11452 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
11453
11454 * nsfns.m (Fns_font_name):
11455 * window.c (syms_of_window) <window-combination-limit>: Fix typos.
11456
11457 2011-11-16 Martin Rudalics <rudalics@gmx.at>
11458
11459 * window.h (window): Rename slot "nest" to "combination_limit".
11460 * window.c (Fwindow_nest): Rename to Fwindow_combination_limit.
11461 (Fset_window_nest): Rename to Fset_window_combination_limit.
11462 (Vwindow_nest): Rename to Vwindow_combination_limit.
11463 (recombine_windows, make_parent_window, make_window)
11464 (Fsplit_window_internal, saved_window)
11465 (Fset_window_configuration, save_window_save): Rename all
11466 occurrences of window_nest to window_combination_limit.
11467
11468 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
11469
11470 * image.c (imagemagick_load_image): Fix typo.
11471
11472 2011-11-14 Eli Zaretskii <eliz@gnu.org>
11473
11474 * xdisp.c (display_line): Move the call to
11475 highlight_trailing_whitespace before the call to
11476 compute_line_metrics, since the latter needs to see the final
11477 faces of all the glyphs to compute ROW's hash value.
11478 Fixes assertion violations in row_equal_p. (Bug#10035)
11479
11480 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
11481
11482 * w32proc.c (reader_thread): Don't check pending input if cp->fd < 0,
11483 just return (bug#10044).
11484
11485 2011-11-12 Eli Zaretskii <eliz@gnu.org>
11486
11487 * makefile.w32-in (HEAPSIZE): New variable, allows to build temacs
11488 with user-defined heap size. Bump the default size of the temacs
11489 heap to 27MB, to avoid memory warning when running temacs.
11490 ($(TEMACS)): Use HEAPSIZE instead of a hardcoded value.
11491
11492 * dispnew.c (scrolling_window): Fix incorrect indices in accessing
11493 current_matrix and desired_matrix. (Bug#9990)
11494 (verify_row_hash) [XASSERTS]: New function.
11495 (adjust_glyph_matrix, row_equal_p): Use it in xassert to verify
11496 that the hash value of glyph rows is correct.
11497
11498 2011-11-12 Martin Rudalics <rudalics@gmx.at>
11499
11500 * window.h (window): Remove splits slot.
11501 * window.c (Fwindow_splits, Fset_window_splits): Remove.
11502 (Fdelete_other_windows_internal, make_parent_window)
11503 (make_window, Fsplit_window_internal, Fdelete_window_internal)
11504 (Fset_window_configuration, save_window_save): Don't deal with
11505 split status of windows.
11506 (saved_window): Remove splits slot.
11507 (Vwindow_splits): Rewrite doc-string.
11508
11509 2011-11-11 Jan Djärv <jan.h.d@swipnet.se>
11510
11511 * xfns.c (unwind_create_frame):
11512 * nsfns.m (unwind_create_frame):
11513 * w32fns.c (unwind_create_frame): Use Fmemq to check if frame is in
11514 Vframe_list (Bug#9999).
11515
11516 2011-11-11 Dmitry Antipov <dmantipov@yandex.ru>
11517
11518 * xdisp.c (syms_of_xdisp): Remove duplicated definition of Qtext.
11519
11520 2011-11-11 Kenichi Handa <handa@m17n.org>
11521
11522 * callproc.c (Fcall_process): Set the member dst_multibyte of
11523 process_coding.
11524
11525 2011-11-11 Johan Bockgård <bojohan@gnu.org>
11526
11527 * xdisp.c (fill_composite_glyph_string): Always set s->face, to
11528 avoid a crash (bug#9496).
11529
11530 2011-11-09 Chong Yidong <cyd@gnu.org>
11531
11532 * window.c (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
11533 (Fwindow_inside_absolute_pixel_edges): Only allow live windows.
11534
11535 2011-11-08 Paul Eggert <eggert@cs.ucla.edu>
11536
11537 * s/gnu.h (GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS (Bug#9926).
11538
11539 2011-11-08 Paul Eggert <eggert@cs.ucla.edu>
11540
11541 Avoid some portability problems by eschewing 'extern inline' functions.
11542 The trivial performance wins aren't worth the portability hassles; see
11543 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>
11544 et seq.
11545 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
11546 (window_box_width, window_box_left, window_box_left_offset)
11547 (window_box_right, window_box_right_offset): Undo previous change,
11548 by removing the "extern"s.
11549 * intervals.c (adjust_intervals_for_insertion)
11550 (adjust_intervals_for_deletion): Undo previous change,
11551 making these static again.
11552 (offset_intervals, temp_set_point_both, temp_set_point)
11553 (copy_intervals_to_string): No longer inline.
11554 * xdisp.c (window_text_bottom_y, window_box_width)
11555 (window_box_height, window_box_left_offset)
11556 (window_box_right_offset, window_box_left, window_box_right)
11557 (window_box): No longer inline.
11558
11559 2011-11-08 Chong Yidong <cyd@gnu.org>
11560
11561 * window.c (Fwindow_left_column, Fwindow_top_line): Doc fix.
11562 (Fwindow_body_height, Fwindow_body_width): Move from Lisp.
11563 Signal an error if not a live window.
11564 (Fwindow_total_width, Fwindow_total_height): Move from Lisp.
11565 (Fwindow_total_size, Fwindow_body_size): Move to Lisp.
11566
11567 2011-11-07 Juanma Barranquero <lekktu@gmail.com>
11568
11569 * lisp.h (syms_of_abbrev): Remove declaration.
11570 Reported by CHENG Gao <chenggao@royau.me>.
11571
11572 2011-11-07 Eli Zaretskii <eliz@gnu.org>
11573
11574 * w32.c (check_windows_init_file): Don't look for term/w32-win.el
11575 if Vpurify_flag is non-nil. Fixes a crash when running w32 build
11576 of temacs in GUI mode.
11577
11578 2011-11-07 Martin Rudalics <rudalics@gmx.at>
11579
11580 * window.h: Declare delete_all_child_windows instead of
11581 delete_all_subwindows.
11582 * window.c (Fwindow_nest, Fset_window_nest)
11583 (Fset_window_new_total, Fset_window_new_normal)
11584 (Fwindow_resize_apply): Don't use term subwindow in doc-strings.
11585 (delete_all_subwindows): Rename to delete_all_child_windows.
11586 (Fdelete_other_windows_internal, Fset_window_configuration):
11587 Call delete_all_child_windows instead of delete_all_subwindows.
11588 * frame.c (delete_frame): Call delete_all_child_windows instead
11589 of delete_all_subwindows.
11590
11591 2011-11-07 Paul Eggert <eggert@cs.ucla.edu>
11592
11593 * alloc.c (DEADP): New macro, for porting to GNU/Hurd (Bug#9926).
11594 This is also needed for porting to any host where GC_MARK_STACK is
11595 not GC_MAKE_GCPROS_NOOPS.
11596 (which_symbols): Use it.
11597
11598 2011-11-07 Kenichi Handa <handa@m17n.org>
11599
11600 * coding.c (coding_set_destination): Check coding->src_pos only
11601 when coding->src_object is a buffer (bug#9910).
11602
11603 * process.c (send_process): Set the member src_multibyte of coding
11604 to 0 (bug#9911) when sending a unibyte text.
11605
11606 * callproc.c (Fcall_process): Set the member src_multibyte of
11607 process_coding to 0 (bug#9912).
11608
11609 2011-11-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11610
11611 * xmenu.c (cleanup_widget_value_tree): New function.
11612 (xmenu_show, xdialog_show): Use it in record_unwind_protect instead of
11613 calling free_menubar_widget_value_tree directly (Bug#9830).
11614
11615 2011-11-06 Paul Eggert <eggert@cs.ucla.edu>
11616
11617 Fix some portability problems with 'inline'.
11618 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
11619 (window_box_width, window_box_left, window_box_left_offset)
11620 (window_box_right, window_box_right_offset): Declare extern.
11621 Otherwise, these inline functions do not conform to C99 and
11622 are miscompiled by Microsoft compilers. Reported by Eli Zaretskii in
11623 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>.
11624 * intervals.c (adjust_intervals_for_insertion)
11625 (adjust_intervals_for_deletion): Now extern, because otherwise the
11626 extern inline functions 'offset_intervals' couldn't refer to it.
11627 (static_offset_intervals): Remove.
11628 (offset_intervals): Rewrite using the old contents of
11629 static_offset_intervals. The old version didn't conform to C99
11630 because an extern inline function contained a reference to an
11631 identifier with static linkage.
11632
11633 2011-11-06 Andreas Schwab <schwab@linux-m68k.org>
11634
11635 * keyboard.c (interrupt_signal): Don't call kill-emacs while in
11636 GC.
11637
11638 2011-11-06 Eli Zaretskii <eliz@gnu.org>
11639
11640 * xdisp.c (init_iterator, reseat_to_string): Don't set the
11641 iterator's bidi_p flag if Vpurify_flag is non-nil. (Bug#9963)
11642 (Fcurrent_bidi_paragraph_direction): If Vpurify_flag is non-nil,
11643 return Qleft_to_right.
11644
11645 2011-11-06 Chong Yidong <cyd@gnu.org>
11646
11647 * window.c (Fwindow_live_p, Fwindow_frame, Fframe_root_window)
11648 (Fminibuffer_window, Fwindow_buffer, Fwindow_splits)
11649 (Fset_window_splits, Fwindow_nest, Fset_window_nest)
11650 (Fwindow_use_time, Fwindow_total_size, Fwindow_normal_size)
11651 (Fwindow_new_normal, Fwindow_left_column, Fwindow_top_line)
11652 (Fwindow_margins, Fwindow_fringes, Fwindow_scroll_bars)
11653 (Fwindow_vscroll): Doc fix.
11654 (Fwindow_top_child, Fwindow_left_child): Eliminate a nil default
11655 argument, since it makes no sense to pass a live window and for
11656 consistency with window-child.
11657
11658 2011-11-05 Christoph Scholtes <cschol2112@googlemail.com>
11659
11660 * makefile.w32-in ($(TEMACS), (gl-stamp)): Use $(THISDIR) to
11661 support MSVC.
11662
11663 2011-11-05 Jason Rumney <jasonr@gnu.org>
11664
11665 * w32font.c (font_matches_spec): Filter out non-Japanese kana fonts.
11666 (add_font_entity_to_list): Filter out non-Japanese Shift-JIS
11667 fonts (Bug#6029).
11668 (add_font_entity_to_list): Fix logic errors in mixed boolean and
11669 bitwise arithmetic preventing use of unicode-sip and non-truetype
11670 opentype fonts.
11671
11672 2011-11-05 Eli Zaretskii <eliz@gnu.org>
11673
11674 * s/ms-w32.h (fstat, stat, utime): Move redirections to
11675 "emacs"-only part.
11676
11677 * w32fns.c (x_create_tip_frame, Fx_create_frame): Rearrange
11678 initialization code to keep similarity to xfns.c after changes
11679 from 2011-11-05.
11680
11681 2011-11-05 Jan Djärv <jan.h.d@swipnet.se>
11682
11683 * nsfns.m: Declare image_cache_refcount if GLYPH_DEBUG.
11684 (unwind_create_frame): New function (Bug#9943).
11685 (Fx_create_frame): Restructure code to be more similar to the one in
11686 xfns.c. Call record_unwind_protect with unwind_create_frame (Bug#9943).
11687 Initialize image_cache_refcount if GLYPH_DEBUG (Bug#9943).
11688 Move terminal->reference_count++ just before making the frame official
11689 (Bug#9943).
11690
11691 * nsterm.m (x_free_frame_resources): New function.
11692 (x_destroy_window): Move code to x_free_frame_resources.
11693
11694 * xfns.c (unwind_create_frame): Fix comment.
11695 (Fx_create_frame, x_create_tip_frame):
11696 Move terminal->reference_count++ just before making the frame
11697 official. Move initialization of image_cache_refcount and
11698 dpyinfo_refcount before calling init_frame_faces (Bug#9943).
11699
11700 2011-11-05 Eli Zaretskii <eliz@gnu.org>
11701
11702 Support MSVC build with newer versions of Visual Studio.
11703 * makefile.w32-in (TAGS-gmake): Don't use $(patsubst ...), as
11704 Nmake barfs on that. Use $(OBJ*_c) variables instead, defined on
11705 nt/gmake.defs.
11706
11707 * lisp.h (ENUM_BF): New macro, for enumerated types in bitfields,
11708 which are not supported by MSVC.
11709 (Lisp_Symbol, Lisp_Misc_Any, Lisp_Marker, Lisp_Misc_Overlay)
11710 (Lisp_Save_Value, Lisp_Free): Use ENUM_BF for enumerated types in
11711 bitfields.
11712 (Lisp_Object) [USE_LISP_UNION_TYPE]: Use ENUM_BF for enumerated
11713 types in bitfields.
11714 (DEFUN) [_MSC_VER]: Define in a different way for MSVC.
11715
11716 * w32fns.c [_MSC_VER]: DECLARE_HANDLE for any MSVC version.
11717
11718 2011-11-05 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
11719
11720 Support MSVC build with newer versions of Visual Studio.
11721 * w32.c: Don't include w32api.h for MSVC.
11722 (init_environment) [_MSC_VER]: Call sys_access, not _access.
11723
11724 * s/ms-w32.h <sigset_t, ssize_t> [_MSC_VER]: Typedefs for MSVC.
11725 [_MSC_VER]: Include sys/timeb.h, sys/stat.h, and signal.h.
11726 (fstat, stat, utime) [_MSC_VER]: Redirect to their sys_* cousins.
11727 (malloc, free, realloc, calloc) [_MSC_VER]: Always redirect to the
11728 e_* cousins.
11729 (alloca) [_MSC_VER]: Define to _alloca.
11730
11731 * lisp.h (DECL_ALIGN) [_MSC_VER]: Define for MSVC.
11732
11733 * regex.c <re_char> [_MSC_VER]: A separate definition for MSVC.
11734
11735 2011-11-04 Eli Zaretskii <eliz@gnu.org>
11736
11737 * xdisp.c (note_mouse_highlight): If either of
11738 previous/next-single-property-change returns nil, treat that as
11739 the beginning or the end of the buffer. (Bug#9955)
11740
11741 2011-11-04 Jan Djärv <jan.h.d@swipnet.se>
11742
11743 * gtkutil.c (xg_make_tool_item): Add callbacks if one of wimage or
11744 label is not null (Bug#9951).
11745 (xg_tool_item_stale_p): Handle the fact that wimage and/or wlbl
11746 may be NULL.
11747
11748 2011-11-04 Eli Zaretskii <eliz@gnu.org>
11749
11750 * window.c (Fwindow_body_size): Mention in the doc string that the
11751 return value is in frame's canonical units. (Bug#9949)
11752
11753 2011-11-03 Eli Zaretskii <eliz@gnu.org>
11754
11755 * xdisp.c (note_mouse_highlight): Initialize `area'. (Bug#9947)
11756
11757 * w32fns.c (unwind_create_frame): If needed, free the glyph
11758 matrices of the partially constructed frame. (Bug#9943)
11759 * xfns.c (unwind_create_frame): Likewise.
11760
11761 2011-11-01 Eli Zaretskii <eliz@gnu.org>
11762
11763 * xdisp.c (mouse_face_from_buffer_pos): Fix a typo in a comment.
11764 Don't stop backward scan on the continuation glyph, even though
11765 its CHARPOS is positive.
11766 (mouse_face_from_buffer_pos, note_mouse_highlight):
11767 Rename cover_string to disp_string.
11768
11769 2011-11-01 Martin Rudalics <rudalics@gmx.at>
11770
11771 * window.c (temp_output_buffer_show): Don't use
11772 Vtemp_buffer_show_specifiers.
11773 (Vtemp_buffer_show_specifiers): Remove unused variable.
11774
11775 2011-10-30 Eli Zaretskii <eliz@gnu.org>
11776
11777 * xdisp.c (try_cursor_movement): Make sure ROW isn't decremented
11778 past the beginning of the current glyph matrix.
11779
11780 2011-10-30 Adam Sjøgren <asjo@koldfront.dk> (tiny change)
11781
11782 * xterm.c: Include X11/Xproto.h if HAVE_GTK3.
11783 (x_error_handler): Ignore BadMatch for X_SetInputFocus for
11784 HAVE_GTK3 (Bug#9869).
11785
11786 * gtkutil.c (xg_win_to_widget, xg_event_is_for_menubar): Initialize
11787 type to GDK_NOTHING so valgrind does not complain (Bug#9901).
11788
11789 * xterm.h (x_display_info): Add Xatom_net_wm_state_hidden (Bug#9893).
11790
11791 * xterm.c: Declare x_handle_net_wm_state to return int.
11792 (handle_one_xevent): Check if we are iconified but don't have
11793 _NET_WM_STATE_HIDDEN. If do, treat as deiconify (Bug#9893).
11794 (get_current_wm_state): Return non-zero if not hidden,
11795 check for _NET_WM_STATE_HIDDEN (Bug#9893).
11796 (do_ewmh_fullscreen): Ignore return value from get_current_wm_state.
11797 (x_handle_net_wm_state): Return what get_current_wm_state returns.
11798 (x_term_init): Initialize dpyinfo->Xatom_net_wm_state_hidden.
11799
11800 2011-10-29 Paul Eggert <eggert@cs.ucla.edu>
11801
11802 * alloc.c (which_symbols): Declare EXTERNALLY_VISIBLE,
11803 so that this new function doesn't get optimized away by a
11804 whole-program optimizer. Make the 2nd arg EMACS_INT, not int.
11805
11806 2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
11807
11808 * frame.h (MOUSE_HL_INFO): Remove excess parens.
11809
11810 2011-10-29 Eli Zaretskii <eliz@gnu.org>
11811
11812 Fix the `xbytecode' command.
11813 * .gdbinit (xprintbytestr): New command.
11814 (xwhichsymbols): Rename from `which'; all callers changed.
11815 (xbytecode): Print the byte-code string as well.
11816
11817 2011-10-29 Kim Storm <storm@cua.dk>
11818
11819 * alloc.c (which_symbols): New function.
11820
11821 2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
11822
11823 * minibuf.c (read_minibuf_noninteractive): Allow reading empty
11824 line. (Bug#9903)
11825
11826 2011-10-29 Glenn Morris <rgm@gnu.org>
11827
11828 * process.c (wait_reading_process_output): Revert 2009-08-30 change.
11829 Not clear what it was for, and it causes various bugs. (Bug#9839)
11830
11831 2011-10-28 Eli Zaretskii <eliz@gnu.org>
11832
11833 * xdisp.c (note_mouse_highlight): Initialize `part', to avoid a
11834 possible random value that matches one of those tested as
11835 condition to clear the mouse face.
11836
11837 2011-10-28 Chong Yidong <cyd@gnu.org>
11838
11839 * xdisp.c (note_mouse_highlight): Fix use of uninitialized var.
11840
11841 2011-10-28 Dan Nicolaescu <dann@ics.uci.edu>
11842
11843 * window.c (make_window): Initialize phys_cursor_on_p.
11844
11845 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
11846
11847 * lisp.h (struct Lisp_Symbol): Update comments.
11848
11849 2011-10-28 Juanma Barranquero <lekktu@gmail.com>
11850
11851 * w32font.c (w32_load_unicows_or_gdi32): Add missing return.
11852
11853 2011-10-28 Eli Zaretskii <eliz@gnu.org>
11854
11855 Fix Emacs on Windows 9X (bug#8562). Thanks to oslsachem
11856 <oslsachem@gmail.com> for helping to debug this.
11857
11858 * w32font.c (g_b_init_is_w9x, g_b_init_get_outline_metrics_w)
11859 (g_b_init_get_text_metrics_w, g_b_init_get_glyph_outline_w)
11860 (g_b_init_get_glyph_outline_w): New static variables.
11861 (GetOutlineTextMetricsW_Proc, GetTextMetricsW_Proc)
11862 (GetGlyphOutlineW_Proc): New typedefs.
11863 (w32_load_unicows_or_gdi32, get_outline_metrics_w)
11864 (get_text_metrics_w, get_glyph_outline_w, globals_of_w32font):
11865 New functions.
11866 (w32font_open_internal, compute_metrics):
11867 Call get_outline_metrics_w, get_text_metrics_w, and get_glyph_outline_w
11868 instead of calling the "wide" APIs directly.
11869
11870 * emacs.c (main) [HAVE_NTGUI]: Call globals_of_w32font.
11871
11872 * w32.h (syms_of_w32font): Add prototype.
11873
11874 2011-10-27 Juanma Barranquero <lekktu@gmail.com>
11875
11876 * window.c (Fframe_root_window, Fframe_first_window, Fwindow_end)
11877 (Fframe_selected_window, Ftemp_output_buffer_show, Fnext_window)
11878 (Fdelete_window_internal, Fwindow_parameters): Fix typos in docstrings.
11879 (Fmove_to_window_line): Doc fix.
11880
11881 2011-10-27 Chong Yidong <cyd@gnu.org>
11882
11883 * process.c (make_process): Set gnutls_state to NULL.
11884
11885 * gnutls.c (emacs_gnutls_deinit): Deinit the gnutls_state if it is
11886 non-NULL, regardless of GNUTLS_INITSTAGE.
11887 (Fgnutls_boot): Cleanups. Call emacs_gnutls_deinit if we signal
11888 an error. Set process slots as soon as we allocate them.
11889
11890 * gnutls.h (GNUTLS_LOG, GNUTLS_LOG2): Fix macros.
11891
11892 2011-10-27 Chong Yidong <cyd@gnu.org>
11893
11894 * gnutls.c (emacs_gnutls_deinit): New function.
11895 Deallocate credentials structures as well as calling gnutls_deinit.
11896 (Fgnutls_deinit, Fgnutls_boot): Use it.
11897
11898 * process.c (make_process): Initialize GnuTLS credentials to NULL.
11899 (deactivate_process): Call emacs_gnutls_deinit.
11900
11901 2011-10-27 Juanma Barranquero <lekktu@gmail.com>
11902
11903 * image.c (x_create_x_image_and_pixmap):
11904 * w32.c (sys_rename, w32_delayed_load):
11905 * w32font.c (fill_in_logfont):
11906 * w32reg.c (x_get_string_resource): Silence compiler warnings.
11907
11908 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
11909
11910 * w32fns.c (w32_default_color_map): New function,
11911 extracted from Fw32_default_color_map.
11912 (Fw32_default_color_map, Fx_open_connection): Use it. (Bug#9785)
11913
11914 2011-10-25 Paul Eggert <eggert@cs.ucla.edu>
11915
11916 * dispextern.h (Fcontrolling_tty_p): New decl (Bug#6649 part 2).
11917
11918 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
11919
11920 * keyboard.c (test_undefined): New function (bug#9751).
11921 (read_key_sequence): Use it to detect when a key is bound to `undefined'.
11922
11923 2011-10-25 Enami Tsugutomo <tsugutomo.enami@jp.sony.com>
11924
11925 * sysdep.c (init_sys_modes): Fix the check for the controlling
11926 terminal (Bug#6649).
11927
11928 2011-10-20 Eli Zaretskii <eliz@gnu.org>
11929
11930 * dispextern.h (struct bidi_it): New member next_en_type.
11931
11932 * bidi.c (bidi_line_init): Initialize the next_en_type member.
11933 (bidi_resolve_explicit_1): When next_en_pos is valid for the
11934 current character, check also for next_en_type being WEAK_EN.
11935 (bidi_resolve_weak): Don't enter the expensive loop if the current
11936 position is before next_en_pos. Record the bidi type of the first
11937 non-ET, non-BN character we find, in addition to its position.
11938 (bidi_level_of_next_char): Invalidate next_en_type when
11939 next_en_pos is over-stepped.
11940
11941 2011-10-20 Paul Eggert <eggert@cs.ucla.edu>
11942
11943 Time zone name fixes for non-ASCII locales (Bug#641, Bug#9794)
11944 * editfns.c: Rewrite current-time-zone so that it invokes
11945 the equivalent of (format-time-string "%Z") to get the time zone name.
11946 This fixes a bug when the time zone name contains characters that
11947 need converting from the system time locale to Emacs internal format.
11948 This fixes a shortcoming that I introduced in my 1999-10-19 patch:
11949 that patch fixed format-time-string to do the conversion, but
11950 I forgot to fix current-time-zone.
11951 (format_time_string): New function, containing most of
11952 what Fformat_time_string used to contain.
11953 (Fformat_time_string): Rewrite in terms of format_time_string.
11954 This doesn't change this function's behavior.
11955 (current-time-zone): Rewrite to use format_time_string.
11956 This fixes the bug reported by Michael Schierl in
11957 <http://lists.gnu.org/archive/html/emacs-devel/2007-06/msg00334.html>.
11958 Jason Rumney's 2007-06-07 change worked around this bug, but
11959 didn't fix it.
11960 * systime.h (tzname, timezone): Remove no-longer-used declarations.
11961
11962 2011-10-19 Eli Zaretskii <eliz@gnu.org>
11963
11964 * xdisp.c (start_display): If the character at POS is displayed
11965 via a display vector, reset IT->current.dpvec_index to zero.
11966 (try_window_reusing_current_matrix): If a line ends in a display
11967 vector or the next line starts in a display vector, continue
11968 redrawing the window even though the character position of
11969 start_row was reached.
11970 (Bug#9771, part 2)
11971
11972 2011-10-18 Chong Yidong <cyd@gnu.org>
11973
11974 * xdisp.c (get_next_display_element): Handle U+2010 and U+2011
11975 with nobreak-char-display too.
11976
11977 2011-10-18 Eli Zaretskii <eliz@gnu.org>
11978
11979 Fix part 3 of bug#9771.
11980 * bidi.c (bidi_line_init): Initialize next_en_pos to zero, not -1.
11981 (bidi_resolve_neutral): Don't enter the expensive loop looking for
11982 non-neutral characters if the current character is a paragraph
11983 separator (a.k.a. Newline). This avoids running the same
11984 expensive loop twice, once when we consume the preceding newline
11985 and the other time when the line actually needs to be displayed.
11986 Avoid the loop when we see neutrals on the base embedding level
11987 following a character whose directionality is the same as the
11988 paragraph's. This avoids running the expensive loop when a line
11989 ends in a long sequence of neutrals, like control characters.
11990 Add assertion against STRONG_AL type. Slightly rearrange code
11991 that determines the type of a neutral given the first non-neutral
11992 that follows it.
11993 (bidi_level_of_next_char): Set next_en_pos to zero when
11994 invalidating its info.
11995
11996 2011-10-17 Eli Zaretskii <eliz@gnu.org>
11997
11998 * xdisp.c (push_display_prop): Determine whether to record string
11999 or buffer position by IT->string, not by IT->method. Allow
12000 GET_FROM_DISPLAY_VECTOR as IT->method on entry. (Bug#9771, part 4)
12001 (move_it_vertically_backward): Don't look for character position
12002 immediately after the newline when in a continuation line.
12003 (Bug#9771, part 1)
12004
12005 2011-10-15 Martin Rudalics <rudalics@gmx.at>
12006
12007 * window.c (coordinates_in_window): Rewrite and delabelize
12008 vertical border check. (Bug#5357) (Bug#9618)
12009
12010 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
12011
12012 * xterm.c (frame_highlight, frame_unhighlight): Ignore unexplained
12013 errors in XSetWindowBorder (bug#9310).
12014
12015 2011-10-13 Dmitry Antipov <dmantipov@yandex.ru>
12016
12017 * editfns.c (Fset_time_zone_rule): Replace free with xfree to
12018 avoid crash when xmalloc overrun checking is enabled.
12019
12020 2011-10-13 Eli Zaretskii <eliz@gnu.org>
12021
12022 * xdisp.c (Fcurrent_bidi_paragraph_direction): Initialize
12023 itb.paragraph_dir to NEUTRAL_DIR. Fixes an occasional incorrect
12024 cursor motion with <left> and <right> arrow keys.
12025
12026 * bidi.c (bidi_init_it): Don't initialize paragraph_dir here, as
12027 some callers set that themselves.
12028
12029 2011-10-12 Eli Zaretskii <eliz@gnu.org>
12030
12031 * xdisp.c (find_row_edges): Handle the case where ROW comes from a
12032 display string and the previous row comes from the same string and
12033 is empty. (Bug#9739) (Bug#9738)
12034
12035 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
12036
12037 * doc.c (get_doc_string): Encode file name (bug#9735).
12038
12039 2011-10-12 Eli Zaretskii <eliz@gnu.org>
12040
12041 * bidi.c (bidi_level_of_next_char):
12042 * xdisp.c (get_visually_first_element): Remove old incorrect
12043 comments regarding the Unicode Line Separator character.
12044
12045 * bidi.c (bidi_init_it): Initialize paragraph_dir to NEUTRAL_DIR.
12046
12047 2011-10-12 Dmitry Antipov <dmantipov@yandex.ru>
12048
12049 * alloc.c (Fgc_status): Do not access beyond zombies array
12050 boundary if nzombies > MAX_ZOMBIES.
12051 * alloc.c (dump_zombies): Add missing format specifier.
12052
12053 2011-10-12 Paul Eggert <eggert@cs.ucla.edu>
12054
12055 * xdisp.c (set_cursor_from_row): Simplify conditionals,
12056 to pacify GCC 4.6.1 x86-64 with -O2 -Wstrict-overflow.
12057
12058 * lread.c (read_escape): Allow hex escapes as large as ?\xfffffff.
12059 Some packages use them to denote characters with modifiers.
12060
12061 2011-10-11 Andreas Schwab <schwab@linux-m68k.org>
12062
12063 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR)
12064 (GCPRO5_VAR, GCPRO6_VAR, UNGCPRO_VAR): Add whitespace to avoid
12065 matching a pp-number. Rename parameter var to var1.
12066
12067 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
12068
12069 * minibuf.c (Finternal_complete_buffer): Fix last change (bug#9709).
12070
12071 2011-10-08 Glenn Morris <rgm@gnu.org>
12072
12073 * callint.c (Fcall_interactively): Give a more explicit error for the
12074 'c' case with a non-character input. (Bug#8479)
12075
12076 2011-10-08 Eli Zaretskii <eliz@gnu.org>
12077
12078 * xdisp.c (hscroll_window_tree): Support hscroll in right-to-left
12079 lines.
12080 (set_cursor_from_row): Fix cursor positioning in mixed L2R+R2L
12081 lines that are hscrolled on the left.
12082
12083 * dispnew.c (buffer_posn_from_coords): Account for a possible
12084 presence of header-line. (Bug#4426)
12085
12086 2011-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
12087
12088 * buffer.c (syms_of_buffer) <enable-multibyte-characters>:
12089 Don't advertise functionality which we discourage or doesn't work.
12090
12091 2011-10-07 Paul Eggert <eggert@cs.ucla.edu>
12092
12093 * alloc.c (GC_LISP_OBJECT_ALIGNMENT): Use offsetof, not __alignof__
12094 or sizeof. __alignof__ gives the wrong answer on Fedora x86-64
12095 with GCC 4.6.1 when configured with CC='gcc -m32' --with-wide-int;
12096 this makes Emacs dump core during garbage collection on rare
12097 occasions. sizeof is obviously inferior to offsetof here, so
12098 stick with offsetof.
12099 (GC_POINTER_ALIGNMENT): New macro.
12100 (mark_memory): Omit 3rd (offset) arg; caller changed.
12101 Don't assume EMACS_INT alignment is the same as pointer alignment.
12102
12103 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
12104
12105 * keyboard.c (read_key_sequence_remapped): New var.
12106 (read_key_sequence): Compute remapping in the right buffer.
12107 (command_loop_1): Use read_key_sequence's remapping directly.
12108
12109 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
12110
12111 * dired.c (file_name_completion): Don't expand file name.
12112 (Ffile_name_completion, Ffile_name_all_completions): Expand file name
12113 before checking file name handler.
12114
12115 * minibuf.c (Finternal_complete_buffer): Only show internal buffers if
12116 they've been requested explicitly (bug#9591).
12117
12118 2011-10-01 Andreas Schwab <schwab@linux-m68k.org>
12119
12120 * keymap.c (Fsingle_key_description): Use make_specified_string
12121 instead of build_string to build string from push_key_description.
12122 (Bug#5193)
12123
12124 2011-09-30 Paul Eggert <eggert@cs.ucla.edu>
12125
12126 * buffer.h (struct buffer): Use time_t, not int, for a time stamp.
12127 This fixes a Y2038 bug on 64-bit hosts.
12128 * buffer.c (reset_buffer):
12129 * fileio.c (Fdo_auto_save, Fset_buffer_auto_saved)
12130 (Fclear_buffer_auto_save_failure):
12131 Use 0, not -1, to represent an unset failure time, since time_t
12132 might not be signed.
12133
12134 Remove dependency on glibc malloc internals.
12135 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
12136 Move back here from lisp.h, but with their new implementations.
12137 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
12138 (XMALLOC_OVERRUN_SIZE_SIZE): Move these new lisp.h macros here.
12139 * charset.c (charset_table_init): New static var.
12140 (syms_of_charset): Use it instead of xmalloc. This removes a
12141 dependency on glibc malloc internals. See Eli Zaretskii's comment in
12142 <http://lists.gnu.org/archive/html/emacs-devel/2011-09/msg00815.html>.
12143 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
12144 Move back to alloc.c.
12145 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
12146 (XMALLOC_OVERRUN_SIZE_SIZE): Move to alloc.c.
12147
12148 2011-09-30 Jan Djärv <jan.h.d@swipnet.se>
12149
12150 * nsterm.m (windowDidResize): Call x_set_window_size only when
12151 ns_in_resize is true. Otherwise set pixelwidth/height and
12152 call change_frame_size (Bug#9628).
12153
12154 2011-09-30 Paul Eggert <eggert@cs.ucla.edu>
12155
12156 Port --enable-checking=all to Fedora 14 x86-64.
12157 * charset.c (syms_of_charset): Also account for glibc malloc's
12158 internal overhead when calculating the initial malloc maximum.
12159
12160 Port --enable-checking=all to Fedora 14 x86.
12161 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
12162 Move to lisp.h.
12163 (xmalloc_put_size, xmalloc_get_size, overrun_check_malloc)
12164 (overrun_check_realloc, overrun_check_free):
12165 Use XMALLOC_OVERRUN_SIZE_SIZE, not sizeof (size_t).
12166 That way, xmalloc returns a properly-aligned pointer even if
12167 XMALLOC_OVERRUN_CHECK is defined. The old debugging code happened
12168 to align OK on typical 64-bit hosts, but not on Fedora 14 x86.
12169 * charset.c (syms_of_charset): Take XMALLOC_OVERRUN_CHECK_OVERHEAD
12170 into account when calculating the initial malloc maximum.
12171 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
12172 Move here from alloc.c, so that charset.c can use it too.
12173 Properly align; the old code wasn't right for common 32-bit hosts
12174 when configured with --enable-checking=all.
12175 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
12176 (XMALLOC_OVERRUN_SIZE_SIZE): New macros.
12177
12178 2011-09-29 Eli Zaretskii <eliz@gnu.org>
12179
12180 * sysdep.c (snprintf) [!EOVERFLOW]: If EOVERFLOW is not defined,
12181 use EDOM.
12182
12183 2011-09-28 Eli Zaretskii <eliz@gnu.org>
12184
12185 * xdisp.c (compute_display_string_end): If there's no display
12186 string at CHARPOS, return -1.
12187
12188 * bidi.c (bidi_fetch_char): When compute_display_string_end
12189 returns a negative value, treat the character as a normal
12190 character not covered by a display string. (Bug#9624)
12191
12192 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
12193
12194 * lread.c (Fread_from_string): Fix typo in docstring.
12195
12196 2011-09-27 Eli Zaretskii <eliz@gnu.org>
12197
12198 * xdisp.c (handle_invisible_prop): If invisible text ends on a
12199 newline, reseat the iterator instead of bidi-iterating there one
12200 character at a time. (Bug#9610)
12201 (BUFFER_POS_REACHED_P, move_it_in_display_line_to): Bail when past
12202 TO_CHARPOS if the bidi iterator is at base embedding level.
12203
12204 2011-09-27 Andreas Schwab <schwab@linux-m68k.org>
12205
12206 * lread.c (readevalloop): Use correct code for NBSP.
12207 (read1): Likewise. (Bug#9608)
12208
12209 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
12210
12211 * dbusbind.c (Fdbus_register_signal): When service is not
12212 registered, use nil in Vdbus_registered_objects_table. (Bug#9581)
12213
12214 2011-09-25 Glenn Morris <rgm@gnu.org>
12215
12216 * buffer.c (truncate-lines): Doc fix.
12217
12218 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
12219
12220 * window.c (Fwindow_prev_buffers, Fset_window_prev_buffers)
12221 (Fset_window_next_buffers): Doc fix.
12222
12223 2011-09-24 Glenn Morris <rgm@gnu.org>
12224
12225 * minibuf.c (read_minibuf): Disable line truncation. (Bug#5715)
12226
12227 2011-09-24 Paul Eggert <eggert@cs.ucla.edu>
12228
12229 Fix minor problems found by static checking.
12230 * xdisp.c (string_from_display_spec): Don't assume vecsize fits in int.
12231 * indent.c (Fvertical_motion): Fix == vs = typo.
12232
12233 2011-09-24 Eli Zaretskii <eliz@gnu.org>
12234
12235 * dispnew.c (syms_of_display) <redisplay-dont-pause>:
12236 Default value is now t. Doc fix.
12237
12238 * indent.c (Fvertical_motion): Compute and apply the overshoot
12239 logic when moving up, not only when moving down. Fix the
12240 confusing name and values of the it_overshoot_expected variable;
12241 logic changes accordingly. (Bug#9254) (Bug#9549)
12242
12243 * xdisp.c (pos_visible_p): Produce correct pixel coordinates when
12244 CHARPOS is covered by a display string which includes newlines.
12245 (move_it_vertically_backward): Avoid inflooping when START_CHARPOS
12246 is covered by a display string with embedded newlines.
12247
12248 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
12249
12250 * dbusbind.c (Fdbus_register_signal): Add match rule to
12251 Vdbus_registered_objects_table. (Bug#9581)
12252 (Fdbus_register_method, Vdbus_registered_objects_table):
12253 Fix docstring.
12254
12255 2011-09-24 Jim Meyering <meyering@redhat.com>
12256
12257 do not ignore write error for any output size
12258 The previous change was incomplete.
12259 While it makes emacs --batch detect the vast majority of stdout
12260 write failures, errors were still ignored whenever the output size is
12261 k * (BUFSIZ+1) - 4. E.g., on a system with BUFSIZ of 4096,
12262 $ emacs --batch --eval '(print (format "%4093d" 0))' > /dev/full \
12263 && echo FAIL: ignored write error
12264 FAIL: ignored write error
12265 $ emacs --batch --eval '(print (format "%20481d" 0))' > /dev/full \
12266 && echo FAIL: ignored write error
12267 FAIL: ignored write error
12268 * emacs.c (Fkill_emacs): Also test ferror. (Bug#9574)
12269
12270 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
12271
12272 * emacs.c (Fkill_emacs): In noninteractive mode exit
12273 non-successfully if a write error occurred on stdout. (Bug#9574)
12274
12275 2011-09-21 Eli Zaretskii <eliz@gnu.org>
12276
12277 * xdisp.c (pop_it): Allow it->object that is a cons cell to pass
12278 the xassert test.
12279
12280 * dispextern.h (struct it): Update the comment documenting what
12281 can it->OBJECT be.
12282
12283 2011-09-20 Eli Zaretskii <eliz@gnu.org>
12284
12285 * xdisp.c (set_cursor_from_row): If the row ends in a newline from
12286 a display string, extend search for cursor position to end of row.
12287 (find_row_edges): If the row ends in a newline from a display
12288 string, increment its MATRIX_ROW_END_CHARPOS by one. (Bug#9549)
12289 Handle the case of a display string with multiple newlines.
12290 (Fcurrent_bidi_paragraph_direction): Fix search for previous
12291 non-empty line. Fixes confusing cursor motion with arrow keys at
12292 the beginning of a line that starts with whitespace.
12293
12294 2011-09-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
12295
12296 * lread.c (Fread_from_string): Document what FINAL-STRING-INDEX is
12297 (bug#9493).
12298
12299 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
12300
12301 * xfns.c (Fx_create_frame): Handle the bitmapIcon resource as
12302 boolean (Bug#9154).
12303
12304 2011-09-18 Eli Zaretskii <eliz@gnu.org>
12305
12306 * xdisp.c (display_line): Record maximum and minimum buffer
12307 positions even if no glyphs were produced (e.g., by a zero-width
12308 stretch). Fixes bug#9530 on a TTY. Under word-wrap, don't record
12309 buffer positions that will be removed from the glyph row because
12310 they don't fit.
12311 (produce_stretch_glyph): Fix a bug in :align-to on a TTY when the
12312 column is beyond frame width: don't subtract 1 "pixel" when
12313 computing width of the stretch.
12314 (reseat_at_next_visible_line_start): Undo the change made on
12315 2011-09-17 that saved paragraph information and restored it after
12316 the call to `reseat'. (Bug#9545)
12317
12318 2011-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12319
12320 * xdisp.c (expose_window): Save original value of phys_cursor_on_p
12321 and turn window cursor on if cleared (Bug#9415).
12322
12323 2011-09-18 Andreas Schwab <schwab@linux-m68k.org>
12324
12325 * search.c (boyer_moore): Take unibyte characters from pattern
12326 literally. (Bug#9458)
12327
12328 2011-09-18 Eli Zaretskii <eliz@gnu.org>
12329
12330 * xdisp.c (reseat_at_next_visible_line_start): Fix last change.
12331
12332 2011-09-18 Paul Eggert <eggert@cs.ucla.edu>
12333
12334 Fix minor problem found by static checking.
12335 * xdisp.c (reseat_at_next_visible_line_start): Mark locals as
12336 initialized, to pacify gcc -Wuninitialized.
12337
12338 * fileio.c: Report proper errno when syscall falls.
12339 (Finsert_file_contents): Save and restore errno,
12340 so that report_file_error outputs the correct diagnostic.
12341 (Fwrite_region) [CLASH_DETECTION]: Likewise.
12342
12343 2011-09-18 Eli Zaretskii <eliz@gnu.org>
12344
12345 * .gdbinit (pgx): Fix references to fields of `struct glyph'.
12346
12347 2011-09-17 Eli Zaretskii <eliz@gnu.org>
12348
12349 * xdisp.c (produce_stretch_glyph): Another fix for changes made on
12350 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9530)
12351
12352 2011-09-17 Eli Zaretskii <eliz@gnu.org>
12353
12354 * xdisp.c (reseat_at_next_visible_line_start): Keep information
12355 about the current paragraph and restore it after the call to reseat.
12356
12357 * bidi.c (MAX_PARAGRAPH_SEARCH): New macro.
12358 (bidi_find_paragraph_start): Search back for paragraph beginning
12359 at most MAX_PARAGRAPH_SEARCH lines; if not found, return BEGV_BYTE.
12360 (bidi_move_to_visually_next): Only trigger paragraph-related
12361 computations when the last character is a newline or at EOB, not
12362 just any NEUTRAL_B. (Bug#9470)
12363
12364 * xdisp.c (set_cursor_from_row): Don't invoke special treatment of
12365 truncated lines if point is covered by a display string. (Bug#9524)
12366
12367 2011-09-16 Paul Eggert <eggert@cs.ucla.edu>
12368
12369 * xselect.c: Relax test for outgoing X longs (Bug#9498).
12370 (cons_to_x_long): New function.
12371 (lisp_data_to_selection_data): Use it. Correct the test for
12372 short-versus-long data; it was negated. Break out of vector
12373 loop, for efficiency, when a long datum is discovered.
12374
12375 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
12376
12377 * eval.c (Fquote): Document its non-consing behavior (bug#9482).
12378
12379 2011-09-16 Eli Zaretskii <eliz@gnu.org>
12380
12381 * image.c (tiff_handler): Work around a bug in MinGW GCC 3.x (see
12382 GCC PR/17406) by declaring this function with external scope.
12383
12384 2011-09-15 Paul Eggert <eggert@cs.ucla.edu>
12385
12386 * editfns.c (Fformat): Fix bug in text-property fix (Bug#9514).
12387 Don't mishandle (length (format "%%")) and (format "%4000s%%" "").
12388
12389 2011-09-15 Andreas Schwab <schwab@linux-m68k.org>
12390
12391 * editfns.c (Fformat): Correctly handle text properties on "%%".
12392
12393 2011-09-15 Eli Zaretskii <eliz@gnu.org>
12394
12395 * xterm.c (x_draw_composite_glyph_string_foreground):
12396 * w32term.c (x_draw_composite_glyph_string_foreground):
12397 * term.c (encode_terminal_code):
12398 * composite.c (composition_update_it, get_composition_id):
12399 * xdisp.c (get_next_display_element)
12400 (fill_composite_glyph_string): Add comments about special meaning
12401 of TAB characters in a composition.
12402
12403 2011-09-15 Paul Eggert <eggert@cs.ucla.edu>
12404
12405 * editfns.c (Fformat): Fix off-by-1 bug for "%%b" (Bug#9514).
12406 This occurs when processing a multibyte format.
12407 Problem reported by Wolfgang Jenker.
12408
12409 2011-09-15 Johan Bockgård <bojohan@gnu.org>
12410
12411 * xdisp.c (try_cursor_movement): Only check for exact match if
12412 cursor hpos found by set_cursor_from_row is valid. (Bug#9495)
12413
12414 2011-09-14 Paul Eggert <eggert@cs.ucla.edu>
12415
12416 Remove unused external symbols.
12417 * dispextern.h (calc_pixel_width_or_height): Remove decl.
12418 * xdisp.c (calc_pixel_width_or_height): Now static.
12419 * doprnt.c (exprintf) [! (HAVE_X_WINDOWS && USE_X_TOOLKIT)]: Remove.
12420 * indent.c (check_display_width):
12421 * w32term.c: Fix comment to match code.
12422 * xterm.c, xterm.h (x_catching_errors): Remove.
12423
12424 2011-09-14 Paul Eggert <eggert@cs.ucla.edu>
12425
12426 * xselect.c: Use signed conversions more consistently (Bug#9498).
12427 (selection_data_to_lisp_data): Assume incoming selection data are
12428 signed integers, not unsigned. This is to be consistent with
12429 outgoing selection data, which was modified to use signed integers
12430 in as part of the fix to Bug#9196 in response to Jan D.'s comment
12431 in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9196#32> that X11
12432 expects long, not unsigned long.
12433
12434 2011-09-14 Eli Zaretskii <eliz@gnu.org>
12435
12436 * xdisp.c (try_window_reusing_current_matrix): Fix incorrect
12437 computation of loop end. Reported by Johan Bockgård
12438 <bojohan@gnu.org>.
12439
12440 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
12441
12442 * frame.c (Fother_visible_frames_p): Function deleted.
12443
12444 2011-09-12 Eli Zaretskii <eliz@gnu.org>
12445
12446 * indent.c (compute_motion): Process display vector front to back
12447 rather than the other way around. (Bug#2496)
12448
12449 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
12450
12451 * fileio.c (Finsert_file_contents): Don't assume beg_offset is 0.
12452
12453 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
12454
12455 * minibuf.c (Fread_from_minibuffer): Doc fix.
12456
12457 2011-09-11 Eli Zaretskii <eliz@gnu.org>
12458
12459 * xdisp.c (produce_stretch_glyph): Fix a typo made in changes from
12460 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9475)
12461
12462 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
12463
12464 * fileio.c (Fvisited_file_modtime): Document `(-1 65535)' as a
12465 value for non-existent files.
12466
12467 2011-09-11 Eli Zaretskii <eliz@gnu.org>
12468
12469 * fileio.c (Finsert_file_contents): If the file cannot be opened,
12470 set its "size" to -1. This will set the modtime_size field of
12471 the corresponding buffer to -1, which is what
12472 verify-visited-file-modtime expects for files that do not exist.
12473 (Bug#9139)
12474
12475 2011-09-11 Paul Eggert <eggert@cs.ucla.edu>
12476
12477 * keymap.h (KEY_DESCRIPTION_SIZE, push_key_description): Move decls
12478 here ...
12479 * lisp.h: ... from here. push_key_description is no longer
12480 defined in keyboard.c, so its declaration should not be in
12481 lisp.h's "Defined in keyboard.c" section, and KEY_DESCRIPTION_SIZE
12482 logically belongs with push_key_description.
12483
12484 2011-09-10 Paul Eggert <eggert@cs.ucla.edu>
12485
12486 * buffer.h: Include <sys/types.h> instead of <time.h>.
12487 Otherwise, off_t wasn't defined on FreeBSD 9.0-BETA2 i386.
12488 Problem reported by Herbert J. Skuhra.
12489
12490 2011-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
12491
12492 * xml.c (parse_region): Make the parsing work for
12493 non-comment-starting XML files again (bug#9144).
12494
12495 2011-09-10 Andreas Schwab <schwab@linux-m68k.org>
12496
12497 * image.c (gif_load): Fix calculation of bottom and right corner.
12498 (Bug#9468)
12499
12500 2011-09-10 Eli Zaretskii <eliz@gnu.org>
12501
12502 * xdisp.c (MAX_DISP_SCAN): Decrease to 250. Prevents sluggish
12503 redisplay in small windows.
12504
12505 2011-09-09 Eli Zaretskii <eliz@gnu.org>
12506
12507 * frame.c (x_report_frame_params): Cast to avoid compiler warnings.
12508
12509 2011-09-08 Martin Rudalics <rudalics@gmx.at>
12510
12511 * window.c (Fset_window_prev_buffers, Fset_window_next_buffers):
12512 Operate on live windows only.
12513
12514 2011-09-08 Juanma Barranquero <lekktu@gmail.com>
12515
12516 * emacs.c (my_heap_start): #ifdef to avoid warnings when unused.
12517
12518 2011-09-07 Eli Zaretskii <eliz@gnu.org>
12519
12520 * xdisp.c (move_it_in_display_line_to): Call RESTORE_IT on ppos_it
12521 only under bidi iteration.
12522
12523 2011-09-07 Jan Djärv <jan.h.d@swipnet.se>
12524
12525 * gtkutil.c (xg_make_tool_item): Insert comment about eventbox.
12526
12527 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
12528
12529 isnan: Fix porting problem to Solaris 10 with bundled gcc.
12530 Without this fix, the command to link temacs failed due to an
12531 undefined symbol __builtin_isnan. This is because
12532 /usr/include/iso/math_c99.h #defines isnan(x) to
12533 __builtin_isnan(x), but the bundled gcc, which identifies itself
12534 as gcc 3.4.3 (csl-sol210-3_4-branch+sol_rpath), does not have
12535 a __builtin_isnan.
12536 * floatfns.c (isnan): #undef, and then #define to a clone of
12537 what's in data.c.
12538 (Fisnan): Always define, since it's always available now.
12539 (syms_of_floatfns): Always define isnan at the Lisp level.
12540
12541 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
12542
12543 * Makefile.in (gl-stamp): move-if-change now in build-aux (Bug#9169).
12544
12545 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
12546
12547 * fileio.c: Fix bugs with large file offsets (Bug#9428).
12548 The previous code assumed that file offsets (off_t values) fit in
12549 EMACS_INT variables, which is not true on typical 32-bit hosts.
12550 The code messed up by falsely reporting buffer overflow in cases
12551 such as (insert-file-contents "big" nil 1 2) into an empty buffer
12552 when "big" contains more than 2**29 bytes, even though this
12553 inserts just one byte and does not overflow the buffer.
12554 (Finsert_file_contents): Store file offsets as off_t
12555 values, not as EMACS_INT values. Check for overflow when
12556 converting between EMACS_INT and off_t. When checking for
12557 buffer overflow or for overlap, take the offsets into account.
12558 Don't use EMACS_INT for small values where int suffices.
12559 When checking for overlap, fix a typo: ZV was used where
12560 ZV_BYTE was intended.
12561 (Fwrite_region): Don't assume off_t fits into 'long'.
12562 * buffer.h (struct buffer.modtime_size): Now off_t, not EMACS_INT.
12563
12564 2011-09-05 Michael Albinus <michael.albinus@gmx.de>
12565
12566 * dbusbind.c (xd_signature_cat): Rename from signature_cat.
12567
12568 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
12569
12570 sprintf-related integer and memory overflow issues (Bug#9412).
12571
12572 * doprnt.c (doprnt): Support printing ptrdiff_t and intmax_t values.
12573 (esprintf, exprintf, evxprintf): New functions.
12574 * keyboard.c (command_loop_level): Now EMACS_INT, not int.
12575 (cmd_error): Kbd macro iterations count is now EMACS_INT, not int.
12576 (modify_event_symbol): Do not assume that the length of
12577 name_alist_or_stem is safe to alloca and fits in int.
12578 (Fexecute_extended_command): Likewise for function name and binding.
12579 (Frecursion_depth): Wrap around reliably on integer overflow.
12580 * keymap.c (push_key_description): First arg is now EMACS_INT, not int,
12581 since some callers pass EMACS_INT values.
12582 (Fsingle_key_description): Don't crash if symbol name contains more
12583 than MAX_ALLOCA bytes.
12584 * minibuf.c (minibuf_level): Now EMACS_INT, not int.
12585 (get_minibuffer): Arg is now EMACS_INT, not int.
12586 * lisp.h (get_minibuffer, push_key_description): Reflect API changes.
12587 (esprintf, exprintf, evxprintf): New decls.
12588 * window.h (command_loop_level, minibuf_level): Reflect API changes.
12589
12590 * dbusbind.c (signature_cat): New function.
12591 (xd_signature, Fdbus_register_signal):
12592 Do not overrun buffer; instead, report string overflow.
12593
12594 * dispnew.c (add_window_display_history): Don't overrun buffer.
12595 Truncate instead; this is OK since it's just a log.
12596
12597 * editfns.c (Fcurrent_time_zone): Don't overrun buffer
12598 even if the time zone offset is outlandishly large.
12599 Don't mishandle offset == INT_MIN.
12600
12601 * emacs.c (main) [NS_IMPL_COCOA]: Don't overrun buffer
12602 when creating daemon; the previous buffer-overflow check was incorrect.
12603
12604 * eval.c (verror): Simplify by rewriting in terms of evxprintf,
12605 which has the guts of the old verror function.
12606
12607 * filelock.c (lock_file_1, lock_file): Don't blindly alloca long name;
12608 use SAFE_ALLOCA instead. Use esprintf to avoid int-overflow issues.
12609
12610 * font.c: Include <float.h>, for DBL_MAX_10_EXP.
12611 (font_unparse_xlfd): Don't blindly alloca long strings.
12612 Don't assume XINT result fits in int, or that XFLOAT_DATA * 10
12613 fits in int, when using sprintf. Use single snprintf to count
12614 length of string rather than counting it via multiple sprintfs;
12615 that's simpler and more reliable.
12616 (font_unparse_fcname): Use it to avoid sprintf buffer overrun.
12617 (generate_otf_features) [0 && HAVE_LIBOTF]: Use esprintf, not
12618 sprintf, in case result does not fit in int.
12619
12620 * fontset.c (num_auto_fontsets): Now printmax_t, not int.
12621 (fontset_from_font): Print it.
12622
12623 * frame.c (tty_frame_count): Now printmax_t, not int.
12624 (make_terminal_frame, set_term_frame_name): Print it.
12625 (x_report_frame_params): In X, window IDs are unsigned long,
12626 not signed long, so print them as unsigned.
12627 (validate_x_resource_name): Check for implausibly long names,
12628 and don't assume name length fits in 'int'.
12629 (x_get_resource_string): Don't blindly alloca invocation name;
12630 use SAFE_ALLOCA. Use esprintf, not sprintf, in case result does
12631 not fit in int.
12632
12633 * gtkutil.c: Include <float.h>, for DBL_MAX_10_EXP.
12634 (xg_check_special_colors, xg_set_geometry):
12635 Make sprintf buffers a bit bigger, to avoid potential buffer overrun.
12636
12637 * lread.c (dir_warning): Don't blindly alloca buffer; use SAFE_ALLOCA.
12638 Use esprintf, not sprintf, in case result does not fit in int.
12639
12640 * macros.c (executing_kbd_macro_iterations): Now EMACS_INT, not int.
12641 (Fend_kbd_macro): Don't mishandle MOST_NEGATIVE_FIXNUM by treating
12642 it as a large positive number.
12643 (Fexecute_kbd_macro): Don't assume repeat count fits in int.
12644 * macros.h (executing_kbd_macro_iterations): Now EMACS_INT, not int.
12645
12646 * nsterm.m ((NSSize)windowWillResize): Use esprintf, not sprintf,
12647 in case result does not fit in int.
12648
12649 * print.c (float_to_string): Detect width overflow more reliably.
12650 (print_object): Make sprintf buffer a bit bigger, to avoid potential
12651 buffer overrun. Don't assume list length fits in 'int'. Treat
12652 print length of 0 as 0, not as infinity; to be consistent with other
12653 uses of print length in this function. Don't overflow print length
12654 index. Don't assume hash table size fits in 'long', or that
12655 vectorlike size fits in 'unsigned long'.
12656
12657 * process.c (make_process): Use printmax_t, not int, to format
12658 process-name gensyms.
12659
12660 * sysdep.c (snprintf) [! HAVE_SNPRINTF]: New function.
12661
12662 * term.c (produce_glyphless_glyph): Make sprintf buffer a bit bigger
12663 to avoid potential buffer overrun.
12664
12665 * xfaces.c (x_update_menu_appearance): Don't overrun buffer
12666 if X resource line is longer than 512 bytes.
12667
12668 * xfns.c (x_window): Make sprintf buffer a bit bigger
12669 to avoid potential buffer overrun.
12670
12671 * xterm.c (x_io_error_quitter): Don't overrun sprintf buffer.
12672
12673 * xterm.h (x_check_errors): Add ATTRIBUTE_FORMAT_PRINTF.
12674
12675 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
12676
12677 Integer overflow fixes for scrolling, etc.
12678 Without these, Emacs silently mishandles large integers sometimes.
12679 For example, "C-u 4294967297 M-x recenter" was treated as if
12680 it were "C-u 1 M-x recenter" on a typical 64-bit host.
12681
12682 * xdisp.c (try_window_id): Check Emacs fixnum range before
12683 converting to 'int'.
12684
12685 * window.c (window_scroll_line_based, Frecenter):
12686 Check that an Emacs fixnum is in range before assigning it to 'int'.
12687 (Frecenter, Fmove_to_window_line): Use EMACS_INT, not int, for
12688 values converted from Emacs fixnums.
12689 (Frecenter): Don't wrap around a line count if it is out of 'int'
12690 range; instead, treat it as an extreme value.
12691 (Fset_window_configuration, compare_window_configurations):
12692 Use ptrdiff_t, not int, for index that might exceed 2 GiB.
12693
12694 * search.c (Freplace_match): Use ptrdiff_t, not int, for indexes
12695 that can exceed INT_MAX. Check that EMACS_INT value is in range
12696 before assigning it to the (possibly-narrower) index.
12697 (match_limit): Don't assume that a fixnum can fit in 'int'.
12698
12699 * print.c (print_object): Use ptrdiff_t, not int, for index that can
12700 exceed INT_MAX.
12701
12702 * indent.c (position_indentation): Now takes ptrdiff_t, not int.
12703 (Fvertical_motion): Don't wrap around LINES values that don't fit
12704 in 'int'. Instead, treat them as extreme values. This is good
12705 enough for windows, which can't have more than INT_MAX lines anyway.
12706
12707 2011-09-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
12708
12709 * Require libxml/parser.h to avoid compilation warning.
12710
12711 * emacs.c (shut_down_emacs): Call xmlCleanupParser on shutdown.
12712
12713 * xml.c (parse_region): Don't call xmlCleanupParser after parsing,
12714 since this reportedly can destroy thread storage.
12715
12716 2011-08-30 Chong Yidong <cyd@stupidchicken.com>
12717
12718 * syntax.c (find_defun_start): Update all cache variables if
12719 exiting early (Bug#9401).
12720
12721 2011-08-30 Eli Zaretskii <eliz@gnu.org>
12722
12723 * image.c (x_bitmap_pixmap): Cast to int to avoid compiler warnings.
12724
12725 * xdisp.c (produce_stretch_glyph): No longer static, compiled also
12726 when HAVE_WINDOW_SYSTEM is not defined. Support both GUI and TTY
12727 frames. Call tty_append_glyph in the TTY case. (Bug#9402)
12728
12729 * term.c (tty_append_glyph): New function.
12730 (produce_stretch_glyph): Static function and its prototype deleted.
12731
12732 * dispextern.h (produce_stretch_glyph, tty_append_glyph):
12733 Add prototypes.
12734
12735 2011-08-29 Paul Eggert <eggert@cs.ucla.edu>
12736
12737 * image.c (parse_image_spec): Check for nonnegative, not for positive,
12738 when checking :margin (Bug#9390).
12739 (IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR):
12740 Rename from IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR,
12741 so that the name doesn't mislead. All uses changed.
12742
12743 2011-08-28 Johan Bockgård <bojohan@gnu.org>
12744
12745 * term.c (init_tty) [HAVE_GPM]: Move mouse settings after
12746 set_tty_hooks.
12747
12748 2011-08-27 Eli Zaretskii <eliz@gnu.org>
12749
12750 * xdisp.c (move_it_to): Don't bail out early when reaching
12751 position beyond to_charpos, if we are scanning backwards.
12752 (move_it_vertically_backward): When DY == 0, make sure we get to
12753 the first character in the line after the newline.
12754
12755 2011-08-27 Paul Eggert <eggert@cs.ucla.edu>
12756
12757 * ccl.c: Improve and simplify overflow checking (Bug#9196).
12758 (ccl_driver): Do not generate an out-of-range pointer.
12759 (Fccl_execute_on_string): Remove unnecessary check for
12760 integer overflow, noted by Stefan Monnier in
12761 <http://lists.gnu.org/archive/html/emacs-devel/2011-08/msg00979.html>.
12762 Remove a FIXME that didn't need fixing.
12763 Simplify the newly-introduced buffer reallocation code.
12764
12765 2011-08-27 Juanma Barranquero <lekktu@gmail.com>
12766
12767 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on lib/verify.h.
12768
12769 2011-08-26 Paul Eggert <eggert@cs.ucla.edu>
12770
12771 Integer and memory overflow issues (Bug#9196).
12772
12773 * doc.c (get_doc_string): Rework so that
12774 get_doc_string_buffer_size is the actual buffer size, rather than
12775 being 1 less than the actual buffer size; this makes xpalloc more
12776 convenient.
12777
12778 * image.c (x_allocate_bitmap_record, cache_image):
12779 * xselect.c (Fx_register_dnd_atom):
12780 Simplify previous changes by using xpalloc.
12781
12782 * buffer.c (overlay_str_len): Now ptrdiff_t, not EMACS_INT,
12783 since either will do and ptrdiff_t is convenient with xpalloc.
12784
12785 * charset.c (charset_table_size)
12786 (struct charset_sort_data.priority): Now ptrdiff_t.
12787 (charset_compare): Don't overflow if priorities differ greatly.
12788 (Fsort_charsets): Don't assume list length fits in int.
12789 Check for size-calculation overflow when allocating sort data.
12790 (syms_of_charset): Allocate an initial charset table that is
12791 just under 64 KiB, to avoid problems with glibc malloc and mmap.
12792
12793 * cmds.c (internal_self_insert): Check for size-calculation overflow.
12794
12795 * composite.h (struct composition.glyph_len): Now int, not unsigned.
12796 The actual value is always <= INT_MAX, and leaving it unsigned made
12797 overflow checking harder.
12798
12799 * dispextern.h (struct glyph_matrix.rows_allocated)
12800 (struct face_cache.size): Now ptrdiff_t, for convenience in use
12801 with xpalloc. The values are still always <= INT_MAX.
12802
12803 * indent.c (compute_motion): Adjust to region_cache_forward sig change.
12804
12805 * lisp.h (xnmalloc, xnrealloc, xpalloc): New decls.
12806 (SAFE_NALLOCA): New macro.
12807
12808 * region-cache.c (struct boundary.pos, find_cache_boundary)
12809 (move_cache_gap, insert_cache_boundary, delete_cache_boundaries)
12810 (set_cache_region, invalidate_region_cache)
12811 (revalidate_region_cache, know_region_cache, region_cache_forward)
12812 (region_cache_backward, pp_cache):
12813 Use ptrdiff_t, not EMACS_INT, since either will do. This is needed
12814 so that ptrdiff_t * can be passed to xpalloc.
12815 (struct region_cache): Similarly, for gap_start, gap_len, cache_len,
12816 beg_unchanged, end_unchanged, buffer_beg, buffer_end members.
12817 (pp_cache): Don't assume cache_len fits in int.
12818 * region-cache.h: Adjust extern decls to match.
12819
12820 * search.c (scan_buffer, Freplace_match): Use ptrdiff_t, not
12821 EMACS_INT, since either will do, for xpalloc.
12822
12823 * alloc.c: Include verify.h, and check that int fits in ptrdiff_t.
12824 (xnmalloc, xnrealloc, xpalloc): New functions.
12825
12826 * bidi.c (bidi_shelve_header_size): New constant.
12827 (bidi_cache_ensure_space, bidi_shelve_cache): Use it.
12828 (bidi_cache_ensure_space): Avoid integer overflow when allocating.
12829
12830 * bidi.c (bidi_cache_shrink):
12831 * buffer.c (overlays_at, overlays_in, record_overlay_string)
12832 (overlay_strings):
12833 Don't update size of array until after memory allocation succeeds,
12834 because xmalloc/xrealloc may not return.
12835 (struct sortstrlist.bytes): Now ptrdiff_t, as EMACS_INT doesn't help
12836 now that we have proper integer overflow checking.
12837 (record_overlay_string, overlay_strings): Catch overflows when
12838 calculating size of overlay_str_buf.
12839
12840 * callproc.c (Fcall_process): Check for size overflow when
12841 calculating size of args2.
12842 (child_setup): Avoid overflow by using size_t rather than ptrdiff_t.
12843 Normally we prefer signed values, but sticking with ptrdiff_t would
12844 require adding more-complicated checks.
12845
12846 * ccl.c (Fccl_execute_on_string): Check for memory overflow.
12847 Use ptrdiff_t rather than EMACS_INT where ptrdiff_t will do.
12848 Redo buffer-overflow calculations to avoid integer overflow.
12849 Add a FIXME comment where memory seems to be over-allocated.
12850
12851 * character.c (Fstring): Check for size-calculation overflow.
12852
12853 * coding.c (produce_chars): Redo buffer-overflow calculations to avoid
12854 unnecessary integer overflow. Check for size overflow.
12855 (encode_coding_object): Don't update size until xmalloc succeeds.
12856
12857 * composite.c (get_composition_id): Check for overflow in glyph
12858 length calculations.
12859
12860 Integer and memory overflow fixes for display code.
12861 * dispextern.h (struct glyph_pool.nglyphs): Now ptrdiff_t, not int.
12862 * dispnew.c (adjust_glyph_matrix, realloc_glyph_pool)
12863 (scrolling_window): Check for overflow in size calculations.
12864 (line_draw_cost, realloc_glyph_pool, add_row_entry):
12865 Don't assume glyph table len fits in int.
12866 (struct row_entry.bucket, row_entry_pool_size, row_entry_idx)
12867 (row_table_size): Now ptrdiff_t, not int.
12868 (scrolling_window): Avoid overflow in size calculations.
12869 Don't update size until allocation succeeds.
12870 * fns.c (concat): Check for overflow in size calculations.
12871 (next_almost_prime): Verify NEXT_ALMOST_PRIME_LIMIT.
12872 * lisp.h (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
12873 (NEXT_ALMOST_PRIME_LIMIT): New constant.
12874
12875 * doc.c (get_doc_string_buffer_size): Now ptrdiff_t, not int.
12876 (get_doc_string): Check for size calculation overflow.
12877 Don't update size until allocation succeeds.
12878 (get_doc_string, Fsubstitute_command_keys): Use ptrdiff_t, not
12879 EMACS_INT, where ptrdiff_t will do.
12880 (Fsubstitute_command_keys): Check for string overflow.
12881
12882 * editfns.c (set_time_zone_rule): Don't assume environment length
12883 fits in int.
12884 (message_length): Now ptrdiff_t, not int.
12885 (Fmessage_box): Don't update size until allocation succeeds.
12886 Don't assume message length fits in int.
12887 (Fformat): Use ptrdiff_t, not EMACS_INT, where ptrdiff_t will do.
12888
12889 * emacs.c (main): Do not reallocate argv, since there is a null at
12890 the end that can be overwritten, and this way there's no need to
12891 worry about size-calculation overflow.
12892 (sort_args): Check for size-calculation overflow.
12893
12894 * eval.c (init_eval_once, grow_specpdl): Don't update size until
12895 alloc succeeds.
12896 (call_debugger, grow_specpdl): Redo calculations to avoid overflow.
12897
12898 * frame.c (set_menu_bar_lines, x_set_frame_parameters)
12899 (x_set_scroll_bar_width, x_figure_window_size):
12900 Check for integer overflow.
12901 (x_set_alpha): Do not assume XINT fits in int.
12902
12903 * frame.h (struct frame): Use int, not EMACS_INT, where int works.
12904 This is for the members text_lines, text_cols, total_lines, total_cols,
12905 where the system imposes an 'int' limit.
12906
12907 * fringe.c (Fdefine_fringe_bitmap):
12908 Don't update size until alloc works.
12909
12910 * ftfont.c (ftfont_get_open_type_spec, setup_otf_gstring)
12911 (ftfont_shape_by_flt): Check for integer overflow in size calculations.
12912
12913 * gtkutil.c (get_utf8_string, xg_store_widget_in_map):
12914 Check for size-calculation overflow.
12915 (get_utf8_string): Use ptrdiff_t, not size_t, where either will
12916 do, as we prefer signed integers.
12917 (id_to_widget.max_size, id_to_widget.used)
12918 (xg_store_widget_in_map, xg_remove_widget_from_map)
12919 (xg_get_widget_from_map, xg_get_scroll_id_for_window)
12920 (xg_remove_scroll_bar, xg_update_scrollbar_pos):
12921 Use and return ptrdiff_t, not int.
12922 (xg_gtk_scroll_destroy): Don't assume ptrdiff_t fits in int.
12923 * gtkutil.h: Change prototypes to match the above.
12924
12925 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): Remove; these
12926 are duplicate now that they've been promoted to lisp.h.
12927 (x_allocate_bitmap_record, x_alloc_image_color)
12928 (make_image_cache, cache_image, xpm_load):
12929 Don't update size until alloc is done.
12930 (xpm_load, lookup_rgb_color, lookup_pixel_color, x_to_xcolors)
12931 (x_detect_edges):
12932 Check for size calculation overflow.
12933 (ct_colors_allocated_max): New constant.
12934 (x_to_xcolors, x_detect_edges): Reorder multiplicands to avoid
12935 overflow.
12936
12937 * keyboard.c (read_char, menu_bar_items, tool_bar_items)
12938 (read_char_x_menu_prompt, read_char_minibuf_menu_width)
12939 (read_char_minibuf_menu_prompt, follow_key, read_key_sequence):
12940 Use ptrdiff_t, not int, to count maps.
12941 (read_char_minibuf_menu_prompt): Check for overflow in size
12942 calculations. Don't update size until allocation succeeds.
12943 Redo calculations to avoid overflow.
12944 * keyboard.h: Change prototypes to match the above.
12945
12946 * keymap.c (cmm_size, current_minor_maps): Use ptrdiff_t, not int,
12947 to count maps.
12948 (current_minor_maps): Check for size calculation overflow.
12949 * keymap.h: Change prototypes to match the above.
12950
12951 * lread.c (read1, init_obarray): Don't update size until alloc done.
12952
12953 * macros.c (Fstart_kbd_macro): Don't update size until alloc done.
12954 (store_kbd_macro_char): Reorder multiplicands to avoid overflow.
12955
12956 * nsterm.h (struct ns_color_table.size, struct ns_color_table.avail):
12957 Now ptrdiff_t, not int.
12958 * nsterm.m (ns_index_color): Use ptrdiff_t, not int, for table indexes.
12959 (ns_draw_fringe_bitmap): Rewrite to avoid overflow.
12960
12961 * process.c (Fnetwork_interface_list): Check for overflow
12962 in size calculation.
12963
12964 * region-cache.c (move_cache_gap): Check for size calculation overflow.
12965
12966 * scroll.c (do_line_insertion_deletion_costs): Check for size calc
12967 overflow. Don't bother calling xmalloc when xrealloc will do.
12968
12969 * search.c (Freplace_match): Check for size calculation overflow.
12970 (Fset_match_data): Don't assume list lengths fit in 'int'.
12971
12972 * sysdep.c (system_process_attributes): Use ptrdiff_t, not int,
12973 for command line length. Do not attempt to address one before the
12974 beginning of an array, as that's not portable.
12975
12976 * term.c (max_frame_lines): Remove; unused.
12977 (encode_terminal_src_size, encode_terminal_dst_size): Now ptrdiff_t,
12978 not int.
12979 (encode_terminal_code, calculate_costs): Check for size
12980 calculation overflow.
12981 (encode_terminal_code): Use ptrdiff_t, not int, to record glyph
12982 table lengths and related sizes. Don't update size until alloc
12983 done. Redo calculations to avoid overflow.
12984 (calculate_costs): Don't bother calling xmalloc when xrealloc will do.
12985
12986 * termcap.c (tgetent): Use ptrdiff_t, not int, to record results of
12987 subtracting pointers.
12988 (gobble_line): Check for overflow more carefully. Don't update size
12989 until alloc done.
12990
12991 * tparam.c (tparam1): Use ptrdiff_t, not int, for sizes.
12992 Don't update size until alloc done.
12993 Redo size calculations to avoid overflow.
12994 Check for size calculation overflow.
12995 (main) [DEBUG]: Fix typo in invoking tparam1.
12996
12997 * xdisp.c (store_mode_line_noprop_char, x_consider_frame_title):
12998 Use ptrdiff_t, not int, for sizes.
12999 (store_mode_line_noprop_char): Don't update size until alloc done.
13000
13001 * xfaces.c (lface_id_to_name_size, Finternal_make_lisp_face):
13002 Use ptrdiff_t, not int, for sizes.
13003 (Finternal_make_lisp_face, cache_face):
13004 Check for size calculation overflow.
13005 (cache_face): Treat size calculation overflows as if they were
13006 memory exhaustion (the usual treatment), rather than aborting.
13007
13008 * xfns.c (x_encode_text, x_set_name_internal)
13009 (Fx_change_window_property): Use ptrdiff_t, not int, to count
13010 sizes, since they can exceed INT_MAX in size. Check for size
13011 calculation overflow.
13012
13013 * xgselect.c (gfds_size): Now ptrdiff_t, for convenience with xpalloc.
13014 (xg_select): Check for size calculation overflow.
13015 Don't update size until alloc done.
13016
13017 * xrdb.c (get_environ_db): Don't assume path length fits in int,
13018 as sprintf is limited to int lengths.
13019
13020 * xselect.c (X_LONG_SIZE, X_SHRT_MAX, X_SHRT_MIN, X_LONG_MAX)
13021 (X_LONG_MIN): New macros.
13022 Use them to make the following changes clearer.
13023 (MAX_SELECTION_QUANTUM): Make the other bounds on this value clearer.
13024 This change doesn't affect the value now, but it may help remind
13025 future maintainers not to raise the value too much later.
13026 (SELECTION_QUANTUM): Remove, replacing with ...
13027 (selection_quantum): ... new function, which avoids overflow.
13028 All uses changed.
13029 (struct selection_data.size): Now ptrdiff_t, not int, to avoid
13030 assumption that selection length fits in 'int'.
13031 (x_reply_selection_request, x_handle_selection_request)
13032 (x_get_window_property, receive_incremental_selection)
13033 (x_get_window_property_as_lisp_data, selection_data_to_lisp_data)
13034 (lisp_data_to_selection_data, clean_local_selection_data):
13035 Use ptrdiff_t, not int, to record length of selection.
13036 (x_reply_selection_request, x_get_window_property)
13037 (receive_incremental_selection, x_property_data_to_lisp):
13038 Redo calculations to avoid overflow.
13039 (x_reply_selection_request): When sending hint, ceiling it at
13040 X_LONG_MAX rather than relying on wraparound overflow to send
13041 something.
13042 (x_get_window_property, receive_incremental_selection)
13043 (lisp_data_to_selection_data, x_property_data_to_lisp):
13044 Check for size-calculation overflow.
13045 (x_get_window_property, receive_incremental_selection)
13046 (lisp_data_to_selection_data, Fx_register_dnd_atom):
13047 Don't store size until memory allocation succeeds.
13048 (x_get_window_property): Plug memory leak on memory exhaustion.
13049 Don't double-block input; malloc is safe here. Don't assume 2**34
13050 - 4 fits in unsigned long. Add an xassert to check
13051 XGetWindowProperty overflow. Be more careful about overflow
13052 calculations, and distinguish size from memory overflow better.
13053 (receive_incremental_selection): When tracing, don't assume
13054 unsigned int is less than INT_MAX.
13055 (x_selection_data_to_lisp_data): Remove unnecessary (and in theory
13056 harmful) conversions of unsigned short to int.
13057 (lisp_data_to_selection_data): Don't assume that integers
13058 in the range -65535 through -1 fit in an X unsigned short.
13059 Don't assume that ULONG_MAX == X_ULONG_MAX. Don't store into
13060 result parameters unless successful. Rely on cons_to_unsigned
13061 to report problems with elements; the old code wasn't right anyway.
13062 (x_check_property_data): Check for int overflow; we cannot use
13063 a wider type due to X limits.
13064 (x_handle_dnd_message): Use unsigned int, to avoid int overflow.
13065
13066 * xsmfns.c (smc_save_yourself_CB): Check for size calc overflow.
13067
13068 * xterm.c (x_color_cells, x_send_scrollbar_event, handle_one_xevent)
13069 (x_term_init): Check for size calculation overflow.
13070 (x_color_cells): Don't store size until memory allocation succeeds.
13071 (handle_one_xevent): Use ptrdiff_t, not int, for byte counts.
13072 Don't assume alloca size is less than MAX_ALLOCA.
13073 (x_term_init): Don't assume length fits in int (sprintf is limited
13074 to int size).
13075
13076 Use ptrdiff_t for composition IDs.
13077 * character.c (lisp_string_width):
13078 * composite.c (composition_table_size, n_compositions)
13079 (get_composition_id, composition_gstring_from_id):
13080 * dispextern.h (struct glyph_string.cmp_id, struct composition_it.id):
13081 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING):
13082 * window.c (Frecenter):
13083 Use ptrdiff_t, not int, for composition IDs.
13084 * composite.c (get_composition_id): Check for integer overflow.
13085 * composite.h: Adjust prototypes to match the above changes.
13086
13087 Use ptrdiff_t for hash table indexes.
13088 * category.c (hash_get_category_set):
13089 * ccl.c (ccl_driver):
13090 * charset.h (struct charset.hash_index, CHECK_CHARSET_GET_ID):
13091 * coding.c (coding_system_charset_list, detect_coding_system):
13092 * coding.h (struct coding_system.id):
13093 * composite.c (get_composition_id, gstring_lookup_cache):
13094 * fns.c (hash_lookup, hash_put, Fgethash, Fputhash):
13095 * image.c (xpm_get_color_table_h):
13096 * lisp.h (hash_lookup, hash_put):
13097 * minibuf.c (Ftest_completion):
13098 Use ptrdiff_t for hash table indexes, not int (which is too
13099 narrow, on 64-bit hosts) or EMACS_INT (which is too wide, on
13100 32-bit --with-wide-int hosts).
13101
13102 * charset.c (Fdefine_charset_internal): Check for integer overflow.
13103 Add a FIXME comment about memory leaks.
13104 (syms_of_charset): Don't assume xmalloc returns.
13105
13106 Don't assume that stated character widths fit in int.
13107 * character.c (Fchar_width, c_string_width, lisp_string_width):
13108 * character.h (CHAR_WIDTH):
13109 * indent.c (MULTIBYTE_BYTES_WIDTH):
13110 Use sanitize_char_width to avoid undefined and/or bad behavior
13111 with outlandish widths.
13112 * character.h (sanitize_tab_width): Rename from sanitize_width,
13113 now that we have two such functions. All uses changed.
13114 (sanitize_char_width): New inline function.
13115
13116 Don't assume that tab-width fits in int.
13117 * character.h (sanitize_width): New inline function.
13118 (SANE_TAB_WIDTH): New macro.
13119 (ASCII_CHAR_WIDTH): Use it.
13120 * indent.c (sane_tab_width): Remove. All uses replaced by
13121 SANE_TAB_WIDTH (current_buffer).
13122 * xdisp.c (init_iterator): Use SANE_TAB_WIDTH.
13123
13124 * fileio.c: Integer overflow issues with file modes.
13125 (Fset_file_modes, auto_save_1): Don't assume EMACS_INT fits in int.
13126
13127 * charset.c (read_hex): New arg OVERFLOW. All uses changed.
13128 Remove unreachable code.
13129 (read_hex, load_charset_map_from_file): Check for integer overflow.
13130
13131 * xterm.c: Don't go over XClientMessageEvent limit.
13132 (scroll_bar_windows_size): Now ptrdiff_t, as we prefer signed.
13133 (x_send_scroll_bar_event): Likewise. Check that the size does not
13134 exceed limits imposed by XClientMessageEvent, as well as the usual
13135 ptrdiff_t and size_t limits.
13136
13137 * keyboard.c: Overflow, signedness and related fixes.
13138 (make_lispy_movement): Use same integer type in forward decl
13139 that is used in the definition.
13140 (read_key_sequence, keyremap_step):
13141 Change bufsize argument back to int, undoing my 2011-03-30 change.
13142 We prefer signed types, and int is wide enough here.
13143 (parse_tool_bar_item): Don't assume tool_bar_max_label_size is less
13144 than TYPE_MAXIMUM (EMACS_INT) / 2. Don't let the label size grow
13145 larger than STRING_BYTES_BOUND. Use ptrdiff_t for Emacs string
13146 length, not size_t. Use ptrdiff_t for index, not int.
13147 (keyremap_step, read_key_sequence): Redo bufsize check to avoid
13148 possibility of integer overflow.
13149
13150 Overflow, signedness and related fixes for images.
13151
13152 * dispextern.h (struct it.stack[0].u.image.image_id)
13153 (struct_it.image_id, struct image.id, struct image_cache.size)
13154 (struct image_cache.used, struct image_cache.ref_count):
13155 * gtkutil.c (update_frame_tool_bar):
13156 * image.c (x_reference_bitmap, Fimage_size, Fimage_mask_p)
13157 (Fimage_metadata, free_image_cache, clear_image_cache, lookup_image)
13158 (cache_image, mark_image_cache, x_kill_gs_process, Flookup_image):
13159 * nsmenu.m (update_frame_tool_bar):
13160 * xdisp.c (calc_pixel_width_or_height):
13161 * xfns.c (image_cache_refcount):
13162 Image IDs are now ptrdiff_t, not int, to avoid arbitrary limits
13163 on typical 64-bit hosts.
13164
13165 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
13166 (x_bitmap_pixmap, x_create_x_image_and_pixmap):
13167 Omit unnecessary casts to int.
13168 (parse_image_spec): Check that integers fall into 'int' range
13169 when the callers expect that.
13170 (image_ascent): Redo ascent calculation to avoid int overflow.
13171 (clear_image_cache): Avoid overflow when sqrt (INT_MAX) < nimages.
13172 (lookup_image): Remove unnecessary tests.
13173 (xbm_image_p): Locals are now of int, not EMACS_INT,
13174 since parse_image_check makes sure they fit into int.
13175 (png_load, gif_load, svg_load_image):
13176 Prefer int to unsigned where either will do.
13177 (tiff_handler): New function, combining the cores of the
13178 old tiff_error_handler and tiff_warning_handler.
13179 This function is rewritten to use vsnprintf and thereby avoid
13180 stack buffer overflows. It uses only the features of vsnprintf
13181 that are common to both POSIX and native Microsoft.
13182 (tiff_error_handler, tiff_warning_handler): Use it.
13183 (tiff_load, gif_load, imagemagick_load_image):
13184 Don't assume :index value fits in 'int'.
13185 (gif_load): Omit unnecessary cast to double, and avoid double-rounding.
13186 (imagemagick_load_image): Check that crop parameters fit into
13187 the integer types that MagickCropImage accepts. Don't assume
13188 Vimagemagick_render_type has a nonnegative value. Don't assume
13189 size_t fits in 'long'.
13190 (gs_load): Use printmax_t to print the widest integers possible.
13191 Check for integer overflow when computing image height and width.
13192
13193 2011-08-26 Eli Zaretskii <eliz@gnu.org>
13194
13195 * xdisp.c (redisplay_window): Don't force window start if point
13196 will be invisible in the resulting window. (Bug#9324)
13197
13198 2011-08-25 Eli Zaretskii <eliz@gnu.org>
13199
13200 * xdisp.c (compute_display_string_pos): Return 2 in DISP_PROP when
13201 the display spec is of the form `(space ...)'.
13202 (handle_display_spec): Return the value returned by
13203 handle_single_display_spec, not just 1 or zero.
13204 (handle_single_display_spec): If the display spec is of the form
13205 `(space ...)', and specifies display in the text area, return 2
13206 rather than 1.
13207 (try_cursor_movement): Check for the need to scroll more
13208 accurately, and prefer exact match for point under bidi.
13209 Don't advance `row' beyond the last row of the window.
13210
13211 * dispextern.h (struct bidi_it): Rename the disp_prop_p member
13212 into disp_prop; all users changed.
13213
13214 * bidi.c (bidi_fetch_char): If compute_display_string_pos returns
13215 DISP_PROP = 2, substitute the u+2029 PARAGRAPH SEPARATOR character
13216 for the text covered by the display property.
13217
13218 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
13219
13220 * buffer.c (Fbury_buffer_internal): Rename from Funrecord_buffer.
13221 Change return value to nil.
13222 (Frecord_buffer): Delete unused function.
13223
13224 2011-08-24 Eli Zaretskii <eliz@gnu.org>
13225
13226 * xdisp.c (Fcurrent_bidi_paragraph_direction): For unibyte
13227 buffers, return left-to-right.
13228 (set_cursor_from_row): Consider candidate row a win if its glyph
13229 represents a newline and point is on that newline. Fixes cursor
13230 positioning on the newline at EOL of R2L text within L2R
13231 paragraph, and vice versa.
13232 (try_cursor_movement): Check continued rows, in addition to
13233 continuation rows. Fixes unwarranted scroll when point enters a
13234 continued line of R2L text within an L2R paragraph, or vice versa.
13235 (cursor_row_p): Consider the case of point being equal to
13236 MATRIX_ROW_END_CHARPOS. Prevents cursor being stuck when moving
13237 from the end of a short line to the beginning of a continued line
13238 of R2L text within L2R paragraph.
13239 (RECORD_MAX_MIN_POS): For max_pos, use IT_CHARPOS even for
13240 composed characters.
13241
13242 * bidi.c (bidi_check_type): Use xassert.
13243 (bidi_cache_iterator_state): Update the disp_pos and disp_prop_p
13244 members.
13245
13246 2011-08-23 Eli Zaretskii <eliz@gnu.org>
13247
13248 * bidi.c (bidi_get_type): Abort if we get zero as the bidi type of
13249 a character.
13250
13251 2011-08-23 Chong Yidong <cyd@stupidchicken.com>
13252
13253 * nsfont.m (ns_otf_to_script): Fix typo.
13254
13255 2011-08-22 Kenichi Handa <handa@m17n.org>
13256
13257 * chartab.c (Fset_char_table_extra_slot): Do not inhibit setting a
13258 extra slot even if the purpose is char-code-property-table.
13259
13260 2011-08-23 Eli Zaretskii <eliz@gnu.org>
13261
13262 * xdisp.c (redisplay_window): When computing centering_position,
13263 account for the height of the header line. (Bug#8874)
13264
13265 * dispnew.c (buffer_posn_from_coords): Use buf_charpos_to_bytepos
13266 instead of CHAR_TO_BYTE. Fixes a crash when a completion
13267 candidate is selected by the mouse, and that candidate has a
13268 composed character under the mouse.
13269
13270 * xdisp.c (x_produce_glyphs): Set it->nglyphs to 1. Fixes pixel
13271 coordinates reported by pos-visible-in-window-p for a composed
13272 character in column zero.
13273
13274 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
13275
13276 * cmds.c (Fself_insert_command): Mention post-self-insert-hook.
13277
13278 2011-08-22 Eli Zaretskii <eliz@gnu.org>
13279
13280 * xdisp.c (BUFFER_POS_REACHED_P): If this is a composition,
13281 consider it a hit if to_charpos is anywhere in the range of the
13282 composed buffer positions.
13283
13284 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
13285
13286 * image.c (gif_load): Don't assume that each subimage has the same
13287 dimensions as the base image. Handle disposal method that is
13288 "undefined" by the gif spec (Bug#9335).
13289
13290 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
13291
13292 * eval.c (Fsignal): Handle `debug' symbol in error handler (Bug#9329).
13293 (Fcondition_case): Document `debug' symbol in error handler.
13294
13295 2011-08-19 Eli Zaretskii <eliz@gnu.org>
13296
13297 * xfaces.c (face_at_buffer_position): Avoid repeated evaluation of
13298 face ID by FACE_FROM_ID, and avoid a crash when mouse is moved
13299 from an Org mode buffer to a Speedbar frame.
13300
13301 * xdisp.c (RECORD_MAX_MIN_POS): If the display element comes from
13302 a composition, take its buffer position from IT->cmp_it.charpos.
13303 Fixes cursor positioning at the beginning of a line that begins
13304 with a composed character.
13305
13306 2011-08-18 Eli Zaretskii <eliz@gnu.org>
13307
13308 * bidi.c (bidi_get_type): If bidi_type_table reports zero as the
13309 character bidirectional type, use STRONG_L instead. Fixes crashes
13310 in a buffer produced by `describe-categories'.
13311
13312 * dispextern.h (struct bidi_it): Move disp_pos and disp_prop_p
13313 members before the level stack, so they would be saved and
13314 restored when copying iterator state. Fixes incorrect reordering
13315 around TABs covered by display properties.
13316
13317 2011-08-18 Andreas Schwab <schwab@linux-m68k.org>
13318
13319 * process.c (Fnetwork_interface_list): Correctly determine buffer size.
13320
13321 2011-08-17 Chong Yidong <cyd@stupidchicken.com>
13322
13323 * eval.c (internal_condition_case, internal_condition_case_1)
13324 (internal_condition_case_2, internal_condition_case_n):
13325 Remove unnecessary aborts (Bug#9081).
13326
13327 2011-08-17 Eli Zaretskii <eliz@gnu.org>
13328
13329 * lread.c (Fload) [DOS_NT]: If `openp' returns -2, but the file
13330 has no `load' handler, try opening the file locally. (Bug#9311)
13331
13332 2011-08-16 Ken Brown <kbrown@cornell.edu>
13333
13334 * gmalloc.c: Expand comment.
13335
13336 2011-08-16 Eli Zaretskii <eliz@gnu.org>
13337
13338 * xdisp.c (set_cursor_from_row): Don't accept a previous candidate
13339 if it fails the cursor_row_p test. Fixes cursor positioning at ZV.
13340
13341 2011-08-16 Ken Brown <kbrown@cornell.edu>
13342
13343 Fix memory allocation problems in Cygwin build (Bug#9273).
13344
13345 * unexcw.c ( __malloc_initialized): Declare external variable.
13346 (fixup_executable): Force the dumped emacs to reinitialize malloc.
13347
13348 * gmalloc.c [CYGWIN] (bss_sbrk_heapbase, bss_sbrk_heapinfo):
13349 New variables.
13350 (malloc_initialize_1) [CYGWIN]: Prepare for reinitializing the
13351 dumped emacs.
13352 (_free_internal_nolock) [CYGWIN]: Ignore requests to free storage
13353 in the static heap.
13354 [CYGWIN] (special_realloc): New function.
13355 (_realloc_internal_nolock) [CYGWIN]: Use the new function on
13356 requests to realloc storage in the static heap.
13357
13358 2011-08-15 Paul Eggert <eggert@cs.ucla.edu>
13359
13360 * bidi.c (bidi_initialize): Remove unused local.
13361
13362 2011-08-15 Eli Zaretskii <eliz@gnu.org>
13363
13364 * bidimirror.h:
13365 * biditype.h: Remove file.
13366 * makefile.w32-in ($(BLD)/bidi.$(O)):
13367 * deps.mk (bidi.o): Remove biditype.h and bidimirror.h.
13368
13369 * dispextern.h: Fix a typo in the comment to bidi_type_t.
13370
13371 * chartab.c: Improve commentary for the uniprop_table API.
13372
13373 * bidi.c (bidi_paragraph_init): Support zero value of
13374 bidi_ignore_explicit_marks_for_paragraph_level.
13375 (bidi_initialize): Use uniprop_table instead of including
13376 biditype.h and bidimirror.h.
13377
13378 * xdisp.c (move_it_in_display_line_to): Don't reset pixel
13379 coordinates of the iterator when restoring from ppos_it.
13380 (Bug#9296)
13381
13382 2011-08-14 Kenichi Handa <handa@m17n.org>
13383
13384 * process.c (create_process): Call setup_process_coding_systems
13385 after the pid of the process is set to -1 (Bug#8162).
13386
13387 2011-08-14 Eli Zaretskii <eliz@gnu.org>
13388
13389 * xdisp.c (move_it_in_display_line_to): Don't invoke
13390 IT_RESET_X_ASCENT_DESCENT when iterator position was restored from
13391 ppos_it. Fixes vertical cursor motion when line beginning is
13392 covered by an image. (Bug#9296)
13393
13394 2011-08-14 Jan Djärv <jan.h.d@swipnet.se>
13395
13396 * nsterm.h (ns_run_ascript): Declare.
13397 (NSAPP_DATA2_RUNASSCRIPT): Define.
13398
13399 * nsfns.m (as_script, as_result, as_status): New static variables.
13400 (ns_run_ascript): New function.
13401 (Fns_do_applescript): Set variables as_*. Make an NSApplicationDefined
13402 event with data2 set to NSAPP_DATA2_RUNASSCRIPT, post it and then start
13403 the event loop. Get status from as_status (Bug#7276).
13404
13405 * nsterm.m (sendEvent): If event is NSApplicationDefined and
13406 data2 is NSAPP_DATA2_RUNASSCRIPT, call ns_run_ascript and then exit
13407 the event loop (Bug#7276).
13408
13409 2011-08-14 Andreas Schwab <schwab@linux-m68k.org>
13410
13411 * gnutls.c (QCgnutls_bootprop_priority)
13412 (QCgnutls_bootprop_trustfiles, QCgnutls_bootprop_keylist)
13413 (QCgnutls_bootprop_crlfiles, QCgnutls_bootprop_callbacks)
13414 (QCgnutls_bootprop_loglevel, QCgnutls_bootprop_hostname)
13415 (QCgnutls_bootprop_min_prime_bits, QCgnutls_bootprop_verify_flags)
13416 (QCgnutls_bootprop_verify_hostname_error)
13417 (QCgnutls_bootprop_callbacks_verify): Rename from
13418 Qgnutls_bootprop_..., all uses changed.
13419
13420 * xfaces.c (QCignore_defface): Rename from Qignore_defface, all
13421 uses changed.
13422
13423 2011-08-14 Paul Eggert <eggert@cs.ucla.edu>
13424
13425 * xfaces.c (Qframe_set_background_mode): Now static.
13426 * dispextern.h (Qframe_set_background_mode): Remove decl.
13427
13428 * process.c (Fnetwork_interface_info): Declare local only if needed.
13429
13430 2011-08-13 Jan Djärv <jan.h.d@swipnet.se>
13431
13432 * process.c: Include ifaddrs.h and net/if_dl.h if available (Bug#8477).
13433 (Fnetwork_interface_list): Allocate in increments of bytes instead
13434 of sizeof (struct ifreq). Iterate over ifconf.ifc_req by counting
13435 bytes (Bug#8477). Count bytes correctly when ifr_addr is a struct
13436 sockaddr.
13437 (struct ifflag_def): notrailers is smart on OSX.
13438 (Fnetwork_interface_info): Handle case when ifr_flags is negative.
13439 Get hardware address with getifaddrs if available.
13440
13441 2011-08-12 Eli Zaretskii <eliz@gnu.org>
13442
13443 * xdisp.c (iterate_out_of_display_property): xassert that
13444 IT->position is set to within IT->object's boundaries. Break from
13445 the loop as soon as EOB is reached; avoids infloops in redisplay
13446 when IT->position is set up wrongly due to some bug.
13447 Set IT->current to match the bidi iterator unconditionally.
13448 (push_display_prop): Allow GET_FROM_STRING as IT->method on
13449 entry. Force push_it to save on the stack the current
13450 buffer/string position, to be restored by pop_it. Fix flags in
13451 the iterator structure wrt the object coming from a display
13452 property, as `line-prefix' and `wrap-prefix' are not ``replacing''
13453 properties. (Bug#9284)
13454
13455 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
13456
13457 * fontset.c (fontset_get_font_group): Add proper type checks.
13458 (Bug#9172)
13459
13460 2011-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13461
13462 * unexmacosx.c (print_load_command_name): Add cases LC_FUNCTION_STARTS
13463 and LC_VERSION_MIN_MACOSX.
13464 (copy_linkedit_data) [LC_FUNCTION_STARTS]: New function.
13465 (dump_it) [LC_FUNCTION_STARTS]: Use it.
13466
13467 2011-08-08 Eli Zaretskii <eliz@gnu.org>
13468
13469 * xdisp.c (forward_to_next_line_start): Allow to use the
13470 no-display-properties-and-no-overlays under bidi display.
13471 Set disp_pos in the bidi iterator to avoid searches for display
13472 properties and overlays.
13473
13474 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
13475
13476 * editfns.c (Fset_time_zone_rule): Document relationship with the
13477 setenv function.
13478
13479 * ftfont.c (ftfont_pattern_entity): Copy the extras argument to
13480 the font entity extracted from the cache (Bug#8109).
13481
13482 2011-08-07 Chong Yidong <cyd@stupidchicken.com>
13483
13484 * composite.c (autocmp_chars): Don't reset point. That is done by
13485 restore_point_unwind (Bug#5984).
13486
13487 2011-08-07 Juri Linkov <juri@jurta.org>
13488
13489 * editfns.c (Fformat_time_string): Doc fix, add tag `usage:'
13490 to show the arg `TIME' instead of `TIMEVAL'.
13491
13492 2011-08-06 Eli Zaretskii <eliz@gnu.org>
13493
13494 * xdisp.c (set_cursor_from_row): Fix cursor positioning when a
13495 display property strides EOL and includes a newline, as in
13496 longlines-mode. (Bug#9254)
13497 (move_it_in_display_line_to): Fix vertical-motion in a buffer with
13498 word-wrap under bidirectional display. (Bug#9224)
13499
13500 * bidi.c (bidi_unshelve_cache): Don't reset the cache if JUST_FREE
13501 is non-zero, even if the data buffer is NULL. Fixes a crash in
13502 vertical-motion with longlines-mode. (Bug#9254)
13503
13504 2011-08-05 Eli Zaretskii <eliz@gnu.org>
13505
13506 * bidi.c <bidi_cache_total_alloc>: Now static.
13507 (bidi_initialize): Initialize bidi_cache_total_alloc.
13508
13509 * xdisp.c (display_line): Release buffer allocated for shelved bidi
13510 cache. (Bug#9221)
13511
13512 * bidi.c (bidi_shelve_cache, bidi_unshelve_cache): Track total
13513 amount allocated this far in `bidi_cache_total_alloc'.
13514 (bidi_unshelve_cache): Accept an additional argument JUST_FREE; if
13515 non-zero, only free the data buffer without restoring the cache
13516 contents. All callers changed.
13517
13518 * dispextern.h (bidi_unshelve_cache): Update prototype.
13519
13520 * xdisp.c (SAVE_IT, pos_visible_p, move_it_in_display_line_to)
13521 (move_it_in_display_line, move_it_to)
13522 (move_it_vertically_backward, move_it_by_lines): Replace the call
13523 to xfree to an equivalent call to bidi_unshelve_cache.
13524 (move_it_in_display_line_to): Fix logic of returning
13525 MOVE_POS_MATCH_OR_ZV in the bidi case. (Bug#9224)
13526
13527 2011-08-05 Eli Zaretskii <eliz@gnu.org>
13528
13529 * xdisp.c (set_cursor_from_row): Prefer the candidate glyph that
13530 came from a string character with a `cursor' property. (Bug#9229)
13531
13532 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
13533
13534 * Makefile.in (LIB_PTHREAD): New variable.
13535 (LIBES): Add LIB_PTHREAD (Bug#9216).
13536
13537 * alloc.c, emacs.c, gmalloc.c, gtkutil.c, keyboard.c, syssignal.h:
13538 Rename HAVE_GTK_AND_PTHREAD to HAVE_PTHREAD (Bug#9216).
13539
13540 2011-08-04 Andreas Schwab <schwab@linux-m68k.org>
13541
13542 * regex.c (re_iswctype): Remove some redundant boolean conversions.
13543
13544 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
13545
13546 * xterm.c (x_find_topmost_parent): New function.
13547 (x_set_frame_alpha): Find topmost parent window with
13548 x_find_topmost_parent and set the property there also (bug#9181).
13549 (handle_one_xevent): Call x_set_frame_alpha on ReparentNotify.
13550
13551 2011-08-04 Paul Eggert <eggert@cs.ucla.edu>
13552
13553 * callproc.c (Fcall_process): Avoid vfork clobbering
13554 the local vars buffer, coding_systems, current_dir.
13555
13556 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
13557
13558 * keymap.c (Fmake_composed_keymap): Move to subr.el.
13559
13560 2011-08-03 Paul Eggert <eggert@cs.ucla.edu>
13561
13562 * fontset.c (dump_fontset) [FONTSET_DEBUG]: Declare EXTERNALLY_VISIBLE
13563 so that it is not optimized away.
13564
13565 * xdisp.c (compute_display_string_pos): Remove unused local.
13566
13567 2011-08-02 Eli Zaretskii <eliz@gnu.org>
13568
13569 Fix slow cursor motion and scrolling in large buffers with
13570 selective display, like Org Mode buffers. (Bug#9218)
13571
13572 * dispextern.h (struct bidi_it): New member disp_prop_p.
13573
13574 * xdisp.c: Remove one-slot cache of display string positions.
13575 (compute_display_string_pos): Accept an additional argument
13576 DISP_PROP_P; callers changed. Scan at most 5K characters forward
13577 for a display string or property. If found, set DISP_PROP_P
13578 non-zero.
13579
13580 * bidi.c (bidi_fetch_char): Accept an additional argument
13581 DISP_PROP_P, and pass it to compute_display_string_pos.
13582 Only handle text covered by a display string if DISP_PROP_P is returned
13583 non-zero. All callers of bidi_fetch_char changed.
13584
13585 2011-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
13586
13587 * keymap.c (Fdefine_key): Fix Lisp_Object/int mixup; apply some CSE.
13588
13589 2010-12-03 Don March <don@ohspite.net>
13590
13591 * keymap.c (Fdefine_key): Fix non-prefix key error message when
13592 last character M-[char] is translated to ESC [char] (bug#7541).
13593
13594 2011-08-02 Kenichi Handa <handa@m17n.org>
13595
13596 * lisp.h (uniprop_table): Extern it.
13597
13598 * chartab.c (uniprop_table): Make it non-static.
13599
13600 2011-08-01 Eli Zaretskii <eliz@gnu.org>
13601
13602 * xdisp.c (forward_to_next_line_start): Accept additional argument
13603 BIDI_IT_PREV, and store into it the state of the bidi iterator had
13604 on the newline.
13605 (reseat_at_next_visible_line_start): Use the bidi iterator state
13606 returned by forward_to_next_line_start to restore the state of
13607 it->bidi_it after backing up to previous newline. (Bug#9212)
13608
13609 2011-07-30 Andreas Schwab <schwab@linux-m68k.org>
13610
13611 * regex.c (re_comp): Protoize.
13612 (re_exec): Fix return type.
13613 (regexec): Fix type of `ret'. (Bug#9203)
13614
13615 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
13616
13617 * image.c (check_image_size): Use 1024x1024 if unknown frame (Bug#9189).
13618 This is needed if max-image-size is a floating-point number.
13619
13620 2011-07-28 Andreas Schwab <schwab@linux-m68k.org>
13621
13622 * print.c (print_object): Print empty symbol as ##.
13623
13624 * lread.c (read1): Read ## as empty symbol.
13625
13626 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
13627
13628 * nsfns.m (x_set_foreground_color): Set f->foreground_pixel when
13629 setting frame foreground color (Bug#9175).
13630 (x_set_background_color): Likewise.
13631
13632 * nsmenu.m (-setText): Size tooltip dimensions precisely to
13633 contents (Bug#9176).
13634 (EmacsTooltip -init): Remove bezels and add shadows to
13635 tooltip windows.
13636
13637 * nsterm.m (ns_dumpglyphs_stretch): Avoid overwriting left fringe
13638 or scroll bar (Bug#8470).
13639
13640 * nsfont.m (nsfont_open): Remove assignment to voffset and
13641 unnecessary vars hshink, expand, hd, full_height, min_height.
13642 (nsfont_draw): Use s->ybase as baseline for glyph drawing (Bug#8913).
13643
13644 * nsterm.h (nsfont_info): Remove voffset field.
13645
13646 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
13647
13648 Implement strike-through and overline on NextStep (Bug#8863).
13649
13650 * nsfont.m (nsfont_open): Use underline position provided by font,
13651 instead of hard-coded value of 2.
13652 (nsfont_draw): Call ns_draw_text_decoration instead.
13653
13654 * nsterm.h: Add declaration for ns_draw_text_decoration.
13655
13656 * nsterm.m (ns_draw_text_decoration): New function for drawing
13657 underline, overline, and strike-through.
13658 (ns_dumpglyphs_image, ns_dumpglyphs_stretch): Add call to
13659 ns_draw_text_decoration. Change treatment of cursor drawing to
13660 accommodate underlining, etc.
13661
13662 2011-07-28 Eli Zaretskii <eliz@gnu.org>
13663
13664 * buffer.c (init_buffer_once): Set bidi-display-reordering to t by
13665 default.
13666
13667 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
13668
13669 * alloc.c (memory_full) [!SYNC_INPUT]: Fix signal-related race.
13670 Without this fix, if a signal arrives just after memory fills up,
13671 'malloc' might be invoked reentrantly.
13672
13673 * image.c (x_check_image_size) [!HAVE_X_WINDOWS]: Return 1.
13674 In other words, assume that every image size is allowed, on non-X
13675 hosts. This assumption is probably wrong, but it lets Emacs compile.
13676
13677 2011-07-28 Andreas Schwab <schwab@linux-m68k.org>
13678
13679 * regex.c (re_iswctype): Convert return values to boolean.
13680
13681 2011-07-28 Eli Zaretskii <eliz@fencepost.gnu.org>
13682
13683 * xdisp.c (compute_display_string_pos): Don't use cached display
13684 string position if the buffer had its restriction changed.
13685 (Bug#9184)
13686
13687 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
13688
13689 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
13690
13691 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
13692
13693 Integer signedness and overflow and related fixes. (Bug#9079)
13694
13695 * bidi.c: Integer size and overflow fixes.
13696 (bidi_cache_size, bidi_cache_idx, bidi_cache_last_idx)
13697 (bidi_cache_start, bidi_cache_fetch_state, bidi_cache_search)
13698 (bidi_cache_find_level_change, bidi_cache_ensure_space)
13699 (bidi_cache_iterator_state, bidi_cache_find, bidi_cache_start_stack)
13700 (bidi_find_other_level_edge):
13701 Use ptrdiff_t instead of EMACS_INT where either will do.
13702 This works better on 32-bit hosts configured --with-wide-int.
13703 (bidi_cache_ensure_space): Check for size-calculation overflow.
13704 Use % rather than repeated addition, for better worst-case speed.
13705 Don't set bidi_cache_size until after xrealloc returns, because it
13706 might not return.
13707 (bidi_dump_cached_states): Use ptrdiff_t, not int, to avoid overflow.
13708 (bidi_cache_ensure_space): Also check that the bidi cache size
13709 does not exceed that of the largest Lisp string or buffer. See Eli
13710 Zaretskii in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#29>.
13711
13712 * alloc.c (__malloc_size_t): Remove.
13713 All uses replaced by size_t. See Andreas Schwab's note
13714 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#8>.
13715
13716 * image.c: Improve checking for integer overflow.
13717 (check_image_size): Assume that f is nonnull, since
13718 it is always nonnull in practice. This is one less thing to
13719 worry about when checking for integer overflow later.
13720 (x_check_image_size): New function, which checks for integer
13721 overflow issues inside X.
13722 (x_create_x_image_and_pixmap, xbm_read_bitmap_data): Use it.
13723 This removes the need for a memory_full check.
13724 (xbm_image_p): Rewrite to avoid integer multiplication overflow.
13725 (Create_Pixmap_From_Bitmap_Data, xbm_load): Use x_check_image_size.
13726 (xbm_read_bitmap_data): Change locals back to 'int', since
13727 their values must fit in 'int'.
13728 (xpm_load_image, png_load, tiff_load):
13729 Invoke x_create_x_image_and_pixmap earlier,
13730 to avoid much needless work if the image is too large.
13731 (tiff_load): Treat overly large images as if
13732 x_create_x_image_and_pixmap failed, not as malloc failures.
13733 (gs_load): Use x_check_image_size.
13734
13735 * gtkutil.c: Omit integer casts.
13736 (xg_get_pixbuf_from_pixmap): Remove unnecessary cast.
13737 (xg_set_toolkit_scroll_bar_thumb): Rewrite to avoid need for cast.
13738
13739 * image.c (png_load): Don't assume height * row_bytes fits in 'int'.
13740
13741 * xfaces.c (Fbitmap_spec_p): Fix integer overflow bug.
13742 Without this fix, (bitmap-spec-p '(34359738368 1 "x"))
13743 would wrongly return t on a 64-bit host.
13744
13745 * dispnew.c (init_display): Use *_RANGE_OVERFLOW macros.
13746 The plain *_OVERFLOW macros run afoul of GCC bug 49705
13747 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49705>
13748 and therefore cause GCC to emit a bogus diagnostic in some cases.
13749
13750 * image.c: Integer signedness and overflow and related fixes.
13751 This is not an exhaustive set of fixes, but it's time to
13752 record what I've got.
13753 (lookup_pixel_color, check_image_size): Remove redundant decls.
13754 (check_image_size): Don't assume that arbitrary EMACS_INT values
13755 fit in 'int', or that arbitrary 'double' values fit in 'int'.
13756 (x_alloc_image_color, x_create_x_image_and_pixmap, png_load)
13757 (tiff_load, imagemagick_load_image):
13758 Check for overflow in size calculations.
13759 (x_create_x_image_and_pixmap): Remove unnecessary test for
13760 xmalloc returning NULL; that can't happen.
13761 (xbm_read_bitmap_data): Don't assume sizes fit into 'int'.
13762 (xpm_color_bucket): Use better integer hashing function.
13763 (xpm_cache_color): Don't possibly over-allocate memory.
13764 (struct png_memory_storage, tiff_memory_source, tiff_seek_in_memory)
13765 (gif_memory_source):
13766 Use ptrdiff_t, not int or size_t, to record sizes.
13767 (png_load): Don't assume values greater than 2**31 fit in 'int'.
13768 (our_stdio_fill_input_buffer): Prefer ptrdiff_t to size_t when
13769 either works, as we prefer signed integers.
13770 (tiff_read_from_memory, tiff_write_from_memory):
13771 Return tsize_t, not size_t, since that's what the TIFF API wants.
13772 (tiff_read_from_memory): Don't fail simply because the read would
13773 go past EOF; instead, return a short read.
13774 (tiff_load): Omit no-longer-needed casts.
13775 (Fimagemagick_types): Don't assume size fits into 'int'.
13776
13777 Improve hashing quality when configured --with-wide-int.
13778 * fns.c (hash_string): New function, taken from sxhash_string.
13779 Do not discard information about ASCII character case; this
13780 discarding is no longer needed.
13781 (sxhash-string): Use it. Change sig to match it. Caller changed.
13782 * lisp.h: Declare it.
13783 * lread.c (hash_string): Remove, since we now use fns.c's version.
13784 The fns.c version returns a wider integer if --with-wide-int is
13785 specified, so this should help the quality of the hashing a bit.
13786
13787 * emacs.c: Integer overflow minor fix.
13788 (heap_bss_diff): Now uprintmax_t, not unsigned long. All used changed.
13789 Define only if GNU_LINUX.
13790 (main, Fdump_emacs): Set and use heap_bss_diff only if GNU_LINUX.
13791
13792 * dispnew.c: Integer signedness and overflow fixes.
13793 Remove unnecessary forward decls, that were a maintenance hassle.
13794 (history_tick): Now uprintmax_t, so it's more likely to avoid overflow.
13795 All uses changed.
13796 (adjust_glyph_matrix, realloc_glyph_pool, adjust_frame_message_buffer)
13797 (scrolling_window): Use ptrdiff_t, not int, for byte count.
13798 (prepare_desired_row, line_draw_cost):
13799 Use int, not unsigned, where either works.
13800 (save_current_matrix, restore_current_matrix):
13801 Use ptrdiff_t, not size_t, where either works.
13802 (init_display): Check for overflow more accurately, and without
13803 relying on undefined behavior.
13804
13805 * editfns.c (pWIDE, pWIDElen, signed_wide, unsigned_wide):
13806 Remove, replacing with the new symbols in lisp.h. All uses changed.
13807 * fileio.c (make_temp_name):
13808 * filelock.c (lock_file_1, lock_file):
13809 * xdisp.c (message_dolog):
13810 Don't assume PRIdMAX etc. works; this isn't portable to pre-C99 hosts.
13811 Use pMd etc. instead.
13812 * lisp.h (printmax_t, uprintmax_t, pMd, pMu): New types and macros,
13813 replacing the pWIDE etc. symbols removed from editfns.c.
13814
13815 * keyboard.h (num_input_events): Now uintmax_t.
13816 This is (very slightly) less likely to mess up due to wraparound.
13817 All uses changed.
13818
13819 * buffer.c: Integer signedness fixes.
13820 (alloc_buffer_text, enlarge_buffer_text):
13821 Use ptrdiff_t rather than size_t when either will do, as we prefer
13822 signed integers.
13823
13824 * alloc.c: Integer signedness and overflow fixes.
13825 Do not impose an arbitrary 32-bit limit on malloc sizes when debugging.
13826 (__malloc_size_t): Default to size_t, not to int.
13827 (pure_size, pure_bytes_used_before_overflow, stack_copy_size)
13828 (Fgarbage_collect, mark_object_loop_halt, mark_object):
13829 Prefer ptrdiff_t to size_t when either would do, as we prefer
13830 signed integers.
13831 (XMALLOC_OVERRUN_CHECK_OVERHEAD): New macro.
13832 (xmalloc_overrun_check_header, xmalloc_overrun_check_trailer):
13833 Now const. Initialize with values that are in range even if char
13834 is signed.
13835 (XMALLOC_PUT_SIZE, XMALLOC_GET_SIZE): Remove, replacing with ...
13836 (xmalloc_put_size, xmalloc_get_size): New functions. All uses changed.
13837 These functions do the right thing with sizes > 2**32.
13838 (check_depth): Now ptrdiff_t, not int.
13839 (overrun_check_malloc, overrun_check_realloc, overrun_check_free):
13840 Adjust to new way of storing sizes. Check for size overflow bugs
13841 in rest of code.
13842 (STRING_BYTES_MAX): Adjust to new overheads. The old code was
13843 slightly wrong anyway, as it missed one instance of
13844 XMALLOC_OVERRUN_CHECK_OVERHEAD.
13845 (refill_memory_reserve): Omit needless cast to size_t.
13846 (mark_object_loop_halt): Mark as externally visible.
13847
13848 * xselect.c: Integer signedness and overflow fixes.
13849 (Fx_register_dnd_atom, x_handle_dnd_message):
13850 Use ptrdiff_t, not size_t, since we prefer signed.
13851 (Fx_register_dnd_atom): Check for ptrdiff_t (and size_t) overflow.
13852 * xterm.h (struct x_display_info): Use ptrdiff_t, not size_t, for
13853 x_dnd_atoms_size and x_dnd_atoms_length.
13854
13855 * doprnt.c: Prefer signed to unsigned when either works.
13856 * eval.c (verror):
13857 * doprnt.c (doprnt):
13858 * lisp.h (doprnt):
13859 * xdisp.c (vmessage):
13860 Use ptrdiff_t, not size_t, when using or implementing doprnt,
13861 since the sizes cannot exceed ptrdiff_t bounds anyway, and we
13862 prefer signed arithmetic to avoid comparison confusion.
13863 * doprnt.c (doprnt): Avoid a "+ 1" that can't overflow,
13864 but is a bit tricky.
13865
13866 Assume freestanding C89 headers, string.h, stdlib.h.
13867 * data.c, doprnt.c, floatfns.c, print.c:
13868 Include float.h unconditionally.
13869 * gmalloc.c: Assume C89-at-least behavior for preprocessor,
13870 limits.h, stddef.h, string.h. Use memset instead of 'flood'.
13871 * regex.c: Likewise for stddef.h, string.h.
13872 (ISASCII): Remove; can assume it returns 1 now. All uses removed.
13873 * s/aix4-2.h (HAVE_STRING_H): Remove obsolete undef.
13874 * s/ms-w32.h (HAVE_LIMITS_H, HAVE_STRING_H, HAVE_STDLIB_H)
13875 (STDC_HEADERS): Remove obsolete defines.
13876 * sysdep.c: Include limits.h unconditionally.
13877
13878 Assume support for memcmp, memcpy, memmove, memset.
13879 * lisp.h, sysdep.c (memcmp, memcpy, memmove, memset):
13880 * regex.c (memcmp, memcpy):
13881 Remove; we assume C89 now.
13882
13883 * gmalloc.c (memcpy, memset, memmove): Remove; we assume C89 now.
13884 (__malloc_safe_bcopy): Remove; no longer needed.
13885
13886 * lisp.h (struct vectorlike_header, struct Lisp_Subr): Signed sizes.
13887 Use EMACS_INT, not EMACS_UINT, for sizes. The code works equally
13888 well either way, and we prefer signed to unsigned.
13889
13890 2011-07-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
13891
13892 * gnutls.c (emacs_gnutls_read): Don't message anything if the peer
13893 closes the connection while we're reading (bug#9182).
13894
13895 2011-07-25 Jan Djärv <jan.h.d@swipnet.se>
13896
13897 * nsmenu.m (ns_popup_dialog): Add an "ok" button if no buttons
13898 are specified (Bug#9168).
13899
13900 2011-07-25 Paul Eggert <eggert@cs.ucla.edu>
13901
13902 * bidi.c (bidi_dump_cached_states): Fix printf format mismatch.
13903 Found by GCC static checking and --with-wide-int on a 32-bit host.
13904
13905 2011-07-25 Eli Zaretskii <eliz@gnu.org>
13906
13907 * xdisp.c (compute_display_string_pos): Fix logic of caching
13908 previous display string position. Initialize cached_prev_pos to
13909 -1. Fixes slow-down at the beginning of a buffer.
13910
13911 2011-07-24 Eli Zaretskii <eliz@gnu.org>
13912
13913 * xfaces.c (check_lface_attrs) [HAVE_WINDOW_SYSTEM]: Allow `nil'
13914 for attrs[LFACE_FONTSET_INDEX].
13915
13916 2011-07-23 Paul Eggert <eggert@cs.ucla.edu>
13917
13918 * xml.c (parse_region): Remove unused local
13919 that was recently introduced.
13920
13921 2011-07-23 Eli Zaretskii <eliz@gnu.org>
13922
13923 * xfns.c (unwind_create_frame) [GLYPH_DEBUG]: Adapt to changes in
13924 2008-02-22T17:42:09Z!monnier@iro.umontreal.ca.
13925
13926 * xdisp.c (move_it_in_display_line_to): Record the best matching
13927 position for TO_CHARPOS while scanning the line, and restore it on
13928 exit if none of the characters scanned was an exact match.
13929 Fixes vertical-motion and pos-visible-in-window-p under bidi redisplay
13930 when exact match is impossible due to invisible text, and the
13931 lines are truncated.
13932
13933 2011-07-23 Jan Djärv <jan.h.d@swipnet.se>
13934
13935 * nsterm.m (initFrameFromEmacs): Set NSTitledWindowMask in styleMask
13936 for OSX >= 10.7.
13937
13938 2011-07-22 Eli Zaretskii <eliz@gnu.org>
13939
13940 Fix a significant slow-down of cursor motion with C-n, C-p,
13941 C-f/C-b, and C-v/M-v that couldn't keep up with keyboard
13942 auto-repeat under bidi redisplay in fontified buffers.
13943 * xdisp.c (compute_stop_pos_backwards): New function.
13944 (next_element_from_buffer): Call compute_stop_pos_backwards to
13945 find a suitable prev_stop when we find ourselves before
13946 base_level_stop.
13947 (reseat): Don't look for prev_stop, as that could mean a very long
13948 run.
13949 <cached_disp_pos, cached_disp_buffer, cached_disp_modiff>
13950 <cached_disp_overlay_modiff>: Cache for last found display string
13951 position.
13952 (compute_display_string_pos): Return the cached position if asked
13953 about the same buffer in the same area of character positions, and
13954 the buffer wasn't changed since the time the display string
13955 position was cached.
13956
13957 2011-07-22 Eli Zaretskii <eliz@gnu.org>
13958
13959 * xdisp.c (rows_from_pos_range): Don't ignore glyphs whose object
13960 is an integer, which is important for empty lines. (Bug#9149)
13961
13962 2011-07-22 Chong Yidong <cyd@stupidchicken.com>
13963
13964 * frame.c (Fmodify_frame_parameters): In tty case, update the
13965 default face if necessary (Bug#4238).
13966
13967 2011-07-21 Chong Yidong <cyd@stupidchicken.com>
13968
13969 * editfns.c (Fstring_to_char): No need to explain what a character
13970 is in the docstring (Bug#6576).
13971
13972 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
13973
13974 * xml.c (parse_region): Make sure we always return a tree.
13975
13976 2011-07-20 HAMANO Kiyoto <khiker.mail@gmail.com>
13977
13978 * xml.c (parse_region): If a document contains only comments,
13979 return that, too.
13980
13981 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
13982
13983 * xml.c (make_dom): Return comments, too.
13984
13985 2011-07-19 Paul Eggert <eggert@cs.ucla.edu>
13986
13987 Port to OpenBSD.
13988 See http://lists.gnu.org/archive/html/emacs-devel/2011-07/msg00688.html
13989 and the surrounding thread.
13990 * minibuf.c (read_minibuf_noninteractive): Rewrite to use getchar
13991 rather than fgets, and retry after EINTR. Otherwise, 'emacs
13992 --batch -f byte-compile-file' fails on OpenBSD if an inactivity
13993 timer goes off.
13994 * s/openbsd.h (BROKEN_SIGIO): Define.
13995 * unexelf.c (unexec) [__OpenBSD__]:
13996 Don't update the .mdebug section of the Alpha COFF symbol table.
13997
13998 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
13999
14000 * lread.c (syms_of_lread): Clarify when `lexical-binding' is used
14001 (bug#8460).
14002
14003 2011-07-18 Paul Eggert <eggert@cs.ucla.edu>
14004
14005 * fileio.c (Fcopy_file) [!MSDOS]: Tighten created file's mask.
14006 This fixes some race conditions on the permissions of any newly
14007 created file.
14008
14009 * alloc.c (valid_pointer_p): Use pipe, not open.
14010 This fixes some permissions issues when debugging.
14011
14012 * fileio.c (Fcopy_file): Adjust mode if fchown fails. (Bug#9002)
14013 If fchown fails to set both uid and gid, try to set just gid,
14014 as that is sometimes allowed. Adjust the file's mode to eliminate
14015 setuid or setgid bits that are inappropriate if fchown fails.
14016
14017 2011-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
14018
14019 * xdisp.c (next_element_from_string, next_element_from_buffer): Use EQ
14020 to compare Lisp_Objects.
14021 * gnutls.c (syms_of_gnutls): Rename Vgnutls_log_level to
14022 global_gnutls_log_level, don't mistake it for a Lisp_Object.
14023 (init_gnutls_functions, emacs_gnutls_handle_error): Fix up uses.
14024
14025 2011-07-17 Andreas Schwab <schwab@linux-m68k.org>
14026
14027 * lread.c (read_integer): Unread even EOF character.
14028 (read1): Likewise. Properly record start position of symbol.
14029
14030 * lread.c (read1): Read `#:' as empty uninterned symbol if no
14031 symbol character follows.
14032
14033 2011-07-17 Paul Eggert <eggert@cs.ucla.edu>
14034
14035 * fileio.c (Fcopy_file): Pacify gcc re fchown. (Bug#9002)
14036 This works around a problem with the previous change to Fcopy_file.
14037 Recent glibc declares fchown with __attribute__((warn_unused_result)),
14038 and without this change, GCC might complain about discarding
14039 fchown's return value.
14040
14041 2011-07-16 Juanma Barranquero <lekktu@gmail.com>
14042
14043 * makefile.w32-in (GLOBAL_SOURCES): Add gnutls.c (followup to bug#9059).
14044
14045 2011-07-16 Paul Eggert <eggert@cs.ucla.edu>
14046
14047 * fileio.c (Fcopy_file): Don't diagnose fchown failures. (Bug#9002)
14048
14049 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
14050
14051 * gnutls.c (syms_of_gnutls): Define `gnutls-log-level' here, since
14052 it's used from the C level.
14053
14054 * process.c: Use the same condition for POLL_FOR_INPUT in both
14055 keyboard.c and process.c (bug#1858).
14056
14057 2011-07-09 Lawrence Mitchell <wence@gmx.li>
14058
14059 * gnutls.c (Qgnutls_bootprop_min_prime_bits): New variable.
14060 (Fgnutls_boot): Use it.
14061
14062 2011-07-15 Andreas Schwab <schwab@linux-m68k.org>
14063
14064 * doc.c (Fsubstitute_command_keys): Revert last change.
14065
14066 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
14067
14068 * doc.c (Fsubstitute_command_keys): Clarify that \= really only
14069 quotes the next character, and doesn't affect other longer
14070 sequences (bug#8935).
14071
14072 * lread.c (syms_of_lread): Clarify that is isn't only
14073 `eval-buffer' and `eval-defun' that's affected by
14074 `lexical-binding' (bug#8460).
14075
14076 2011-07-15 Eli Zaretskii <eliz@gnu.org>
14077
14078 * xdisp.c (move_it_in_display_line_to): Fix vertical motion with
14079 bidi redisplay when a line includes both an image and is truncated.
14080
14081 2011-07-14 Paul Eggert <eggert@cs.ucla.edu>
14082
14083 Fix minor problems found by static checking.
14084 * bidi.c (bidi_cache_size): Now EMACS_INT, not size_t.
14085 (elsz): Now a signed constant, not a size_t var. We prefer signed
14086 types to unsigned, to avoid integer comparison confusion. Without
14087 this change, GCC 4.6.1 with -Wunsafe-loop-optimizations complains
14088 "cannot optimize loop, the loop counter may overflow", a symptom
14089 of the confusion.
14090 * indent.c (Fvertical_motion): Mark locals as initialized.
14091 * xdisp.c (reseat_to_string): Fix pointer signedness issue.
14092
14093 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
14094
14095 * search.c (Fre_search_backward): Mention `case-fold-search' in
14096 all the re_search_* functions (bug#8138).
14097
14098 * keyboard.c (Fopen_dribble_file): Document when the file is
14099 closed (bug#8056).
14100
14101 2011-07-14 Eli Zaretskii <eliz@gnu.org>
14102
14103 * bidi.c (bidi_dump_cached_states): Fix format of displaying
14104 bidi_cache_idx.
14105
14106 Support bidi reordering of display and overlay strings.
14107 * xdisp.c (compute_display_string_pos)
14108 (compute_display_string_end): Accept additional argument STRING.
14109 (init_iterator, reseat_1): Initialize bidi_it->string.s to NULL.
14110 (reseat_to_string): Initialize bidi_it->string.s and
14111 bidi_it->string.schars.
14112 (Fcurrent_bidi_paragraph_direction): Initialize itb.string.s to
14113 NULL (avoids a crash in bidi_paragraph_init).
14114 Initialize itb.string.lstring.
14115 (init_iterator): Call bidi_init_it only of a valid
14116 buffer position was specified. Initialize paragraph_embedding to
14117 L2R.
14118 (reseat_to_string): Initialize the bidi iterator.
14119 (display_string): If we need to ignore text properties of
14120 LISP_STRING, set IT->stop_charpos to IT->end_charpos. (The
14121 original value of -1 will not work with bidi.)
14122 (compute_display_string_pos): First arg is now struct
14123 `text_pos *'; all callers changed. Support display properties on
14124 Lisp strings.
14125 (compute_display_string_end): Support display properties on Lisp
14126 strings.
14127 (init_iterator, reseat_1, reseat_to_string): Initialize the
14128 string.bufpos member to 0 (zero, for compatibility with IT_CHARPOS
14129 when iterating on a string not from display properties).
14130 (compute_display_string_pos, compute_display_string_end):
14131 Fix calculation of the object to scan. Fixes an error when using
14132 arrow keys.
14133 (next_element_from_buffer): Don't abort when IT_CHARPOS is before
14134 base_level_stop; instead, set base_level_stop to BEGV.
14135 Fixes crashes in vertical-motion.
14136 (next_element_from_buffer): Improve commentary for when
14137 the iterator is before prev_stop.
14138 (init_iterator): Initialize bidi_p from the default value of
14139 bidi-display-reordering, not from buffer-local value. Use the
14140 buffer-local value only if initializing for buffer iteration.
14141 (handle_invisible_prop): Support invisible properties on strings
14142 that are being bidi-reordered.
14143 (set_iterator_to_next): Support bidi reordering of C strings and
14144 Lisp strings.
14145 (next_element_from_string): Support bidi reordering of Lisp
14146 strings.
14147 (handle_stop_backwards): Support Lisp strings as well.
14148 (display_string): Support display of R2L glyph rows.
14149 Use IT_STRING_CHARPOS when displaying from a Lisp string.
14150 (init_iterator): Don't initialize it->bidi_p for strings
14151 here.
14152 (reseat_to_string): Initialize it->bidi_p for strings here.
14153 (next_element_from_string, next_element_from_c_string)
14154 (next_element_from_buffer): Add xassert's for correspondence
14155 between IT's object being iterated and it->bidi_it.string
14156 structure.
14157 (face_before_or_after_it_pos): Support bidi iteration.
14158 (next_element_from_c_string): Handle the case of the first string
14159 character that is not the first one in the visual order.
14160 (get_visually_first_element): New function, refactored from common
14161 parts of next_element_from_buffer, next_element_from_string, and
14162 next_element_from_c_string.
14163 (tool_bar_lines_needed, redisplay_tool_bar)
14164 (display_menu_bar): Force left-to-right direction. Add a FIXME
14165 comment for making that be controlled by a user option.
14166 (push_it, pop_it): Save and restore the state of the
14167 bidi iterator. Save and restore the bidi_p flag.
14168 (pop_it): Iterate out of display property for string iteration as
14169 well.
14170 (iterate_out_of_display_property): Support iteration over strings.
14171 (handle_single_display_spec): Set up it->bidi_it for iteration
14172 over a display string, and call bidi_init_it.
14173 (handle_single_display_spec, next_overlay_string)
14174 (get_overlay_strings_1, push_display_prop): Set up the bidi
14175 iterator for displaying display or overlay strings.
14176 (forward_to_next_line_start): Don't use the shortcut if
14177 bidi-iterating.
14178 (back_to_previous_visible_line_start): If handle_display_prop
14179 pushed the iterator stack, restore the internal state of the bidi
14180 iterator by calling bidi_pop_it same number of times.
14181 (reseat_at_next_visible_line_start): If ON_NEWLINE_P is non-zero,
14182 and we are bidi-iterating, don't decrement the iterator position;
14183 instead, set the first_elt flag in the bidi iterator, to produce
14184 the same effect.
14185 (reseat_1): Remove redundant setting of string_from_display_prop_p.
14186 (push_display_prop): xassert that we are iterating a buffer.
14187 (push_it, pop_it): Save and restore paragraph_embedding member.
14188 (handle_single_display_spec, next_overlay_string)
14189 (get_overlay_strings_1, reseat_1, reseat_to_string)
14190 (push_display_prop): Set up the `unibyte' member of bidi_it.string
14191 correctly. Don't assume unibyte strings are not bidi-reordered.
14192 (compute_display_string_pos)
14193 (compute_display_string_end): Fix handling the case of C string.
14194 (push_it, pop_it): Save and restore from_disp_prop_p.
14195 (handle_single_display_spec, push_display_prop): Set the
14196 from_disp_prop_p flag.
14197 (get_overlay_strings_1): Reset the from_disp_prop_p flag.
14198 (pop_it): Call iterate_out_of_display_property only if we are
14199 popping after iteration over a string that came from a display
14200 property. Fix a typo in popping stretch info. Add an assertion
14201 for verifying that the iterator position is in sync with the bidi
14202 iterator.
14203 (handle_single_display_spec, get_overlay_strings_1)
14204 (push_display_prop): Fix initialization of paragraph direction for
14205 string when that of the parent object is not yet determined.
14206 (reseat_1): Call bidi_init_it to resync the bidi
14207 iterator with IT's position. (Bug#7616)
14208 (find_row_edges): If ROW->start.pos gives position
14209 smaller than min_pos, use it as ROW->minpos. (Bug#7616)
14210 (handle_stop, back_to_previous_visible_line_start, reseat_1):
14211 Reset the from_disp_prop_p flag.
14212 (SAVE_IT, RESTORE_IT): New macros.
14213 (pos_visible_p, face_before_or_after_it_pos)
14214 (back_to_previous_visible_line_start)
14215 (move_it_in_display_line_to, move_it_in_display_line)
14216 (move_it_to, move_it_vertically_backward, move_it_by_lines)
14217 (try_scrolling, redisplay_window, display_line): Use them when
14218 saving a temporary copy of the iterator and restoring it back.
14219 (back_to_previous_visible_line_start, reseat_1)
14220 (init_iterator): Empty the bidi cache "stack".
14221 (move_it_in_display_line_to): If iterator ended up at
14222 EOL, but we never saw any buffer positions smaller than
14223 to_charpos, return MOVE_POS_MATCH_OR_ZV. Fixes vertical cursor
14224 motion in bidi-reordered lines.
14225 (move_it_in_display_line_to): Record prev_method and prev_pos
14226 immediately before the call to set_iterator_to_next. Fixes cursor
14227 motion in bidi-reordered lines with stretch glyphs and strings
14228 displayed in margins. (Bug#8133) (Bug#8867)
14229 Return MOVE_POS_MATCH_OR_ZV only if iterator position is past
14230 TO_CHARPOS.
14231 (pos_visible_p): Support positions in bidi-reordered lines.
14232 Save and restore bidi cache.
14233
14234 * bidi.c (bidi_level_of_next_char): clen should be EMACS_NT, not int.
14235 (bidi_paragraph_info): Delete unused struct.
14236 (bidi_cache_idx, bidi_cache_last_idx): Declare EMACS_INT.
14237 (bidi_cache_start): New variable.
14238 (bidi_cache_reset): Reset bidi_cache_idx to bidi_cache_start, not
14239 to zero.
14240 (bidi_cache_fetch_state, bidi_cache_search)
14241 (bidi_cache_find_level_change, bidi_cache_iterator_state)
14242 (bidi_cache_find, bidi_peek_at_next_level)
14243 (bidi_level_of_next_char, bidi_find_other_level_edge)
14244 (bidi_move_to_visually_next): Compare cache index with
14245 bidi_cache_start rather than with zero.
14246 (bidi_fetch_char): Accept new argument STRING; all callers
14247 changed. Support iteration over a string. Support strings with
14248 display properties. Support unibyte strings. Fix the type of
14249 `len' according to what STRING_CHAR_AND_LENGTH expects.
14250 (bidi_paragraph_init, bidi_resolve_explicit_1)
14251 (bidi_resolve_explicit, bidi_resolve_weak)
14252 (bidi_level_of_next_char, bidi_move_to_visually_next):
14253 Support iteration over a string.
14254 (bidi_set_sor_type, bidi_resolve_explicit_1)
14255 (bidi_resolve_explicit, bidi_type_of_next_char): ignore_bn_limit
14256 can now be zero (for strings); special values 0 and -1 were
14257 changed to -1 and -2, respectively.
14258 (bidi_char_at_pos): New function.
14259 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak):
14260 Call it instead of FETCH_MULTIBYTE_CHAR.
14261 (bidi_move_to_visually_next): Abort if charpos or bytepos were not
14262 initialized to valid values.
14263 (bidi_init_it): Don't initialize charpos and bytepos with invalid
14264 values.
14265 (bidi_level_of_next_char): Allow the sentinel "position" to pass
14266 the test for valid cached positions. Fix the logic for looking up
14267 the sentinel state in the cache. GCPRO the Lisp string we are
14268 iterating.
14269 (bidi_push_it, bidi_pop_it): New functions.
14270 (bidi_initialize): Initialize the bidi cache start stack pointer.
14271 (bidi_cache_ensure_space): New function, refactored from part of
14272 bidi_cache_iterator_state. Don't assume the required size is just
14273 one BIDI_CACHE_CHUNK away.
14274 (bidi_cache_start_stack, bidi_push_it): Use IT_STACK_SIZE.
14275 (bidi_count_bytes, bidi_char_at_pos): New functions.
14276 (bidi_cache_search): Don't assume bidi_cache_last_idx is
14277 always valid if bidi_cache_idx is valid.
14278 (bidi_cache_find_level_change): xassert that bidi_cache_last_idx
14279 is valid if it's going to be used.
14280 (bidi_shelve_cache, bidi_unshelve_cache): New functions.
14281 (bidi_cache_fetch_state, bidi_cache_search)
14282 (bidi_cache_find_level_change, bidi_cache_ensure_space)
14283 (bidi_cache_iterator_state, bidi_cache_find)
14284 (bidi_find_other_level_edge, bidi_cache_start_stack):
14285 All variables related to cache indices are now EMACS_INT.
14286
14287 * dispextern.h (struct bidi_string_data): New structure.
14288 (struct bidi_it): New member `string'. Make flag members be 1-bit
14289 fields, and put them last in the struct.
14290 (compute_display_string_pos, compute_display_string_end):
14291 Update prototypes.
14292 (bidi_push_it, bidi_pop_it): Add prototypes.
14293 (struct iterator_stack_entry): New members bidi_p,
14294 paragraph_embedding, and from_disp_prop_p.
14295 (struct it): Member bidi_p is now a bit field 1 bit wide.
14296 (bidi_shelve_cache, bidi_unshelve_cache):
14297 Declare prototypes.
14298
14299 * .gdbinit (xvectype, xvector, xcompiled, xchartable, xboolvector)
14300 (xpr, xfont, xbacktrace): Use "header.size" when accessing vectors
14301 and vector-like objects.
14302
14303 * dispnew.c (buffer_posn_from_coords): Save and restore the bidi
14304 cache around display iteration.
14305
14306 * window.c (Fwindow_end, window_scroll_pixel_based)
14307 (displayed_window_lines, Frecenter): Save and restore the bidi
14308 cache around display iteration.
14309
14310 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
14311
14312 * editfns.c (Fdelete_region): Clarify the use of the named
14313 parameters (bug#6788).
14314
14315 2011-07-14 Martin Rudalics <rudalics@gmx.at>
14316
14317 * indent.c (Fvertical_motion): Set and restore w->pointm when
14318 saving and restoring the window's buffer (Bug#9006).
14319
14320 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
14321
14322 * editfns.c (Fstring_to_char): Clarify just what is returned
14323 (bug#6576). Text by Eli Zaretskii.
14324
14325 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
14326
14327 * gnutls.c (init_gnutls_functions): Honor gnutls_log_level (bug#9059).
14328
14329 2011-07-13 Eli Zaretskii <eliz@gnu.org>
14330
14331 * buffer.c (mmap_find): Fix a typo.
14332
14333 2011-07-13 Johan Bockgård <bojohan@gnu.org>
14334
14335 Fix execution of x selection hooks.
14336 * xselect.c (Qx_lost_selection_functions)
14337 (Qx_sent_selection_functions): New vars.
14338 (syms_of_xselect): DEFSYM them.
14339 (x_handle_selection_request): Pass Qx_sent_selection_functions
14340 rather than Vx_sent_selection_functions to Frun_hook_with_args.
14341 (x_handle_selection_clear,x_clear_frame_selections):
14342 Pass Qx_lost_selection_functions rather than
14343 Vx_lost_selection_functions to Frun_hook_with_args.
14344
14345 2011-07-13 Paul Eggert <eggert@cs.ucla.edu>
14346
14347 * buffer.c (Fget_buffer_create): Initialize inhibit_shrinking.
14348 The old code sometimes used this field without initializing it.
14349
14350 * alloc.c (gc_sweep): Don't read past end of array.
14351 In theory, the old code could also have corrupted Emacs internals,
14352 though it'd be very unlikely.
14353
14354 2011-07-12 Andreas Schwab <schwab@linux-m68k.org>
14355
14356 * character.c (Fcharacterp): Don't advertise optional ignored
14357 argument. (Bug#4026)
14358
14359 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
14360
14361 * keymap.c (syms_of_keymap): Clarify that "modifier" is "modifier
14362 key" (bug#4257).
14363
14364 * window.c (Fset_window_start): Doc fix (bug#4199).
14365 (Fset_window_hscroll): Ditto.
14366
14367 2011-07-12 Paul Eggert <eggert@cs.ucla.edu>
14368
14369 Fix minor new problems caught by GCC 4.6.1.
14370 * term.c (init_tty): Remove unused local.
14371 * xsettings.c (store_monospaced_changed): Define this function only
14372 if (defined HAVE_GSETTINGS || defined HAVE_GCONF), as it's
14373 not used otherwise.
14374
14375 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
14376
14377 * xdisp.c (Vresize_mini_windows): Minor doc fix (Bug#3300).
14378
14379 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
14380
14381 * xdisp.c (syms_of_xdisp): Make it explicit that the mini-windows
14382 are the mini-buffer and the echo area (bug#3320).
14383
14384 * term.c (init_tty): Remove support for supdup, c10 and perq
14385 terminals, which are no longer supported (bug#1482).
14386
14387 2011-07-10 Johan Bockgård <bojohan@gnu.org>
14388
14389 * xdisp.c (Ftool_bar_lines_needed): Fix WINDOWP check.
14390
14391 2011-07-10 Jan Djärv <jan.h.d@swipnet.se>
14392
14393 * xmenu.c (menu_highlight_callback): Only pass frame to show_help_event
14394 for non-popups (Bug#3642).
14395
14396 2011-07-10 Andreas Schwab <schwab@linux-m68k.org>
14397
14398 * alloc.c (reset_malloc_hooks): Protoize.
14399 * buffer.c (mmap_init, mmap_find, mmap_free_1, mmap_enlarge)
14400 (mmap_set_vars, mmap_alloc, mmap_free, mmap_realloc): Likewise.
14401 * cm.c (losecursor): Likewise.
14402 * data.c (fmod): Likewise.
14403 * dispnew.c (swap_glyphs_in_rows): Likewise.
14404 * emacs.c (memory_warning_signal): Likewise.
14405 * floatfns.c (float_error): Likewise.
14406 * font.c (check_gstring, check_otf_features, otf_tag_symbol)
14407 (otf_open, font_otf_capability, generate_otf_features)
14408 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
14409 Likewise.
14410 * image.c (pbm_read_file): Likewise.
14411 * indent.c (string_display_width): Likewise.
14412 * intervals.c (check_for_interval, search_for_interval)
14413 (inc_interval_count, count_intervals, root_interval)
14414 (adjust_intervals_for_insertion, make_new_interval): Likewise.
14415 * lread.c (defalias): Likewise.
14416 * ralloc.c (r_alloc_check): Likewise.
14417 * regex.c (set_image_of_range_1, set_image_of_range)
14418 (regex_grow_registers): Likewise.
14419 * sysdep.c (strerror): Likewise.
14420 * termcap.c (valid_filename_p, tprint, main): Likewise.
14421 * tparam.c (main): Likewise.
14422 * unexhp9k800.c (run_time_remap, save_data_space)
14423 (update_file_ptrs, read_header, write_header, calculate_checksum)
14424 (copy_file, copy_rest, display_header): Likewise.
14425 * widget.c (mark_shell_size_user_specified, create_frame_gcs):
14426 Likewise.
14427 * xdisp.c (check_it): Likewise.
14428 * xfaces.c (register_color, unregister_color, unregister_colors):
14429 Likewise.
14430 * xfns.c (print_fontset_result): Likewise.
14431 * xrdb.c (member, fatal, main): Likewise.
14432
14433 2011-07-10 Paul Eggert <eggert@cs.ucla.edu>
14434
14435 Fix minor problems found by static checking (Bug#9031).
14436 * chartab.c (char_table_set_range, map_sub_char_table):
14437 Remove unused locals.
14438 (uniprop_table): Now static.
14439 * composite.c (_work_char): Remove unused static var.
14440
14441 2011-07-09 Juanma Barranquero <lekktu@gmail.com>
14442
14443 * chartab.c (uniprop_table_uncompress): Remove unused local variable.
14444
14445 2011-07-09 Jan Djärv <jan.h.d@swipnet.se>
14446
14447 * gtkutil.c (qttip_cb): Remove code without function.
14448
14449 2011-07-09 Eli Zaretskii <eliz@gnu.org>
14450
14451 * w32.c (pthread_sigmask): New stub.
14452
14453 2011-07-08 Paul Eggert <eggert@cs.ucla.edu>
14454
14455 Use pthread_sigmask, not sigprocmask (Bug#9010).
14456 sigprocmask is portable only for single-threaded applications, and
14457 Emacs can be multi-threaded when it uses GTK.
14458 * Makefile.in (LIB_PTHREAD_SIGMASK): New macro.
14459 (LIBES): Use it.
14460 * callproc.c (Fcall_process):
14461 * process.c (create_process):
14462 * sysdep.c (sys_sigblock, sys_sigunblock, sys_sigsetmask):
14463 Use pthread_sigmask, not sigprocmask.
14464
14465 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
14466
14467 * gtkutil.c (qttip_cb): Set line wrap to FALSE for tooltip widget.
14468 (xg_prepare_tooltip): Revert text in x->ttip_lbl, margins was
14469 wrong (Bug#8591).
14470
14471 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
14472
14473 * gtkutil.c (xg_prepare_tooltip): Fix indentation and comment.
14474 Put text in x->ttip_lbl instead of gtk_tooltip_set_text (Bug#8591).
14475 (xg_hide_tooltip): Fix comment.
14476
14477 * nsterm.m (initFrameFromEmacs): Don't use ns_return_types
14478 in registerServicesMenuSendTypes.
14479 (validRequestorForSendType): Don't check ns_return_types.
14480
14481 * nsfns.m (Fx_open_connection): Put NSStringPboardType into
14482 ns_return_type.
14483
14484 2011-07-08 Jason Rumney <jasonr@gnu.org>
14485
14486 * w32term.c (x_make_frame_visible): Use SH_SHOWNORMAL rather than
14487 SH_SHOW for hidden windows (Bug#5482).
14488
14489 * w32fns.c (w32_wnd_proc) [WM_TIMER, WM_SET_CURSOR]: Avoid using
14490 frame struct members of non-existent frames (Bug#6284).
14491
14492 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
14493
14494 * nsterm.m (keyDown): Call to wantsToDelayTextChangeNotifications and
14495 variable firstTime not needed on OSX >= 10.6.
14496 (setPosition): setFloatValue:knobProportion: is deprecated on OSX
14497 >= 10.5. Use setKnobProportion, setDoubleValue.
14498
14499 * nsterm.h (MAC_OS_X_VERSION_10_3, MAC_OS_X_VERSION_10_4)
14500 (MAC_OS_X_VERSION_10_5): Define if not defined.
14501 (EmacsView, EmacsTooltip): Implements NSWindowDelegate on OSX >= 10.6.
14502 (EmacsMenu): Implements NSMenuDelegate on OSX >= 10.6.
14503 (EmacsToolbar): Implements NSToolbarDelegate on OSX >= 10.6.
14504
14505 * nsselect.m (ns_string_from_pasteboard): Don't use deprecated methods
14506 cString and lossyCString on OSX >= 10.4.
14507
14508 * nsmenu.m (fillWithWidgetValue): Don't use deprecated method
14509 sizeToFit on OSX >= 10.2.
14510
14511 * nsimage.m (allocInitFromFile): Don't use deprecated method
14512 bestRepresentationForDevice on OSX >= 10.6.
14513
14514 * nsfns.m (check_ns_display_info): Cast to long and use %ld in error
14515 to avoid warning.
14516
14517 * emacs.c: Declare unexec_init_emacs_zone.
14518
14519 * nsgui.h: Fix compiler warning about gnulib redefining verify.
14520
14521 * nsselect.m (ns_get_local_selection): Change to extern (Bug#8842).
14522
14523 * nsmenu.m (ns_update_menubar): Remove useless setDelegate call
14524 on svcsMenu (Bug#8842).
14525
14526 * nsfns.m (Fx_open_connection): Remove NSStringPboardType from
14527 ns_return_types.
14528 (Fns_list_services): Just return Qnil on 10.6, code not working there.
14529
14530 * nsterm.m (QUTF8_STRING): Declare.
14531 (initFrameFromEmacs): Call registerServicesMenuSendTypes.
14532 (validRequestorForSendType): Return type is (id).
14533 Change indexOfObjectIdenticalTo to indexOfObject.
14534 Check if we have local selection before returning self (Bug#8842).
14535 (writeSelectionToPasteboard): Put local selection into paste board
14536 if we have a local selection (Bug#8842).
14537 (syms_of_nsterm): DEFSYM QUTF8_STRING.
14538
14539 * nsterm.h (MAC_OS_X_VERSION_10_6): Define here instead of nsterm.m.
14540 (ns_get_local_selection): Declare.
14541
14542 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
14543
14544 * keymap.c (describe_map_tree): Don't insert a double newline at
14545 the end of the buffer (bug#1169) and return whether we inserted
14546 something.
14547
14548 * callint.c (Fcall_interactively): Change "reading args" to
14549 "providing args" to try to clarify what it does (bug#1010).
14550
14551 2011-07-07 Kenichi Handa <handa@m17n.org>
14552
14553 * composite.c (composition_compute_stop_pos): Ignore a static
14554 composition starting before CHARPOS (Bug#8915).
14555
14556 * xdisp.c (handle_composition_prop): Likewise.
14557
14558 2011-07-07 Eli Zaretskii <eliz@gnu.org>
14559
14560 * term.c (produce_glyphs) <xassert>: Allow IT_GLYPHLESS in it->what.
14561 (Bug#9015)
14562
14563 2011-07-07 Kenichi Handa <handa@m17n.org>
14564
14565 * character.h (unicode_category_t): New enum type.
14566
14567 * chartab.c (uniprop_decoder_t, uniprop_encoder_t): New types.
14568 (Qchar_code_property_table): New variable.
14569 (UNIPROP_TABLE_P, UNIPROP_GET_DECODER)
14570 (UNIPROP_COMPRESSED_FORM_P): New macros.
14571 (char_table_ascii): Uncompress the compressed values.
14572 (sub_char_table_ref): New arg is_uniprop. Callers changed.
14573 Uncompress the compressed values.
14574 (sub_char_table_ref_and_range): Likewise.
14575 (char_table_ref_and_range): Uncompress the compressed values.
14576 (sub_char_table_set): New arg is_uniprop. Callers changed.
14577 Uncompress the compressed values.
14578 (sub_char_table_set_range): Args changed. Callers changed.
14579 (char_table_set_range): Adjuted for the above change.
14580 (map_sub_char_table): Delete args default_val and parent. Add arg
14581 top. Give decoded values to a Lisp function.
14582 (map_char_table): Adjust for the above change. Give decoded
14583 values to a Lisp function. Gcpro more variables.
14584 (uniprop_table_uncompress)
14585 (uniprop_decode_value_run_length): New functions.
14586 (uniprop_decoder, uniprop_decoder_count): New variables.
14587 (uniprop_get_decoder, uniprop_encode_value_character)
14588 (uniprop_encode_value_run_length, uniprop_encode_value_numeric):
14589 New functions.
14590 (uniprop_encoder, uniprop_encoder_count): New variables.
14591 (uniprop_get_encoder, uniprop_table)
14592 (Funicode_property_table_internal, Fget_unicode_property_internal)
14593 (Fput_unicode_property_internal): New functions.
14594 (syms_of_chartab): DEFSYM Qchar_code_property_table, defsubr
14595 Sunicode_property_table_internal, Sget_unicode_property_internal,
14596 and Sput_unicode_property_internal. Defvar_lisp
14597 char-code-property-alist.
14598
14599 * composite.c (CHAR_COMPOSABLE_P): Adjust for the change of
14600 Vunicode_category_table.
14601
14602 * font.c (font_range): Adjust for the change of
14603 Vunicode_category_table.
14604
14605 2011-07-07 Dan Nicolaescu <dann@ics.uci.edu>
14606
14607 * m/iris4d.h: Remove file, move contents ...
14608 * s/irix6-5.h: ... here.
14609
14610 2011-07-06 Paul Eggert <eggert@cs.ucla.edu>
14611
14612 Remove unportable assumption about struct layout (Bug#8884).
14613 * alloc.c (mark_buffer):
14614 * buffer.c (reset_buffer_local_variables, Fbuffer_local_variables)
14615 (clone_per_buffer_values): Don't assume that
14616 sizeof (struct buffer) is a multiple of sizeof (Lisp_Object).
14617 This isn't true in general, and it's particularly not true
14618 if Emacs is configured with --with-wide-int.
14619 * buffer.h (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER):
14620 New macros, used in the buffer.c change.
14621
14622 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
14623
14624 * xsettings.c: Use both GConf and GSettings if both are available.
14625 (store_config_changed_event): Add comment.
14626 (dpyinfo_valid, store_font_name_changed, map_tool_bar_style)
14627 (store_tool_bar_style_changed): New functions.
14628 (store_monospaced_changed): Add comment. Call dpyinfo_valid.
14629 (struct xsettings): Move font inside HAVE_XFT.
14630 (GSETTINGS_TOOL_BAR_STYLE, GSETTINGS_FONT_NAME): New defines.
14631 (GSETTINGS_MONO_FONT): Rename from SYSTEM_MONO_FONT.
14632 Move inside HAVE_XFT.
14633 (something_changed_gsettingsCB): Rename from something_changedCB.
14634 Check for changes in GSETTINGS_TOOL_BAR_STYLE and GSETTINGS_FONT_NAME
14635 also.
14636 (GCONF_TOOL_BAR_STYLE, GCONF_FONT_NAME): New defines.
14637 (GCONF_MONO_FONT): Rename from SYSTEM_MONO_FONT. Move inside HAVE_XFT.
14638 (something_changed_gconfCB): Rename from something_changedCB.
14639 Check for changes in GCONF_TOOL_BAR_STYLE and GCONF_FONT_NAME also.
14640 (parse_settings): Move check for font inside HAVE_XFT.
14641 (read_settings, apply_xft_settings): Add comment.
14642 (read_and_apply_settings): Add comment. Call map_tool_bar_style and
14643 store_tool_bar_style_changed. Move check for font inside HAVE_XFT and
14644 call store_font_name_changed.
14645 (xft_settings_event): Add comment.
14646 (init_gsettings): Add comment. Get values for GSETTINGS_TOOL_BAR_STYLE
14647 and GSETTINGS_FONT_NAME. Move check for fonts within HAVE_XFT.
14648 (init_gconf): Add comment. Get values for GCONF_TOOL_BAR_STYLE
14649 and GCONF_FONT_NAME. Move check for fonts within HAVE_XFT.
14650 (xsettings_initialize): Call init_gsettings last.
14651 (xsettings_get_system_font, xsettings_get_system_normal_font):
14652 Add comment.
14653
14654 2011-07-05 Paul Eggert <eggert@cs.ucla.edu>
14655
14656 Random fixes. E.g., (random) never returned negative values.
14657 * fns.c (Frandom): Use GET_EMACS_TIME for random seed, and add the
14658 subseconds part to the entropy, as that's a bit more random.
14659 Prefer signed to unsigned, since the signedness doesn't matter and
14660 in general we prefer signed. When given a limit, use a
14661 denominator equal to INTMASK + 1, not to VALMASK + 1, because the
14662 latter isn't right if USE_2_TAGS_FOR_INTS.
14663 * sysdep.c (get_random): Return a value in the range 0..INTMASK,
14664 not 0..VALMASK. Don't discard "excess" bits that random () returns.
14665
14666 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
14667
14668 * textprop.c (text_property_stickiness):
14669 Obey Vtext_property_default_nonsticky.
14670 (syms_of_textprop): Add `display' to Vtext_property_default_nonsticky.
14671 * w32fns.c (syms_of_w32fns):
14672 * xfns.c (syms_of_xfns): Don't Add `display' since it's there by default.
14673
14674 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
14675
14676 * fileio.c (barf_or_query_if_file_exists): Use S_ISDIR.
14677 This is more efficient than Ffile_directory_p and avoids a minor race.
14678
14679 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
14680
14681 * buffer.c (Foverlay_put): Say what the return value is
14682 (bug#7835).
14683
14684 * fileio.c (barf_or_query_if_file_exists): Check first if the file
14685 is a directory before asking whether to use the file name
14686 (bug#7564).
14687 (barf_or_query_if_file_exists): Make the "File is a directory"
14688 error be more correct.
14689
14690 * fns.c (Frequire): Remove the mention of the .gz files, since
14691 that's installation-specific, but keep the mention of
14692 `get-load-suffixes'.
14693
14694 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
14695
14696 * editfns.c (Fformat_time_string): Don't assume strlen fits in int.
14697 Report string overflow if the output is too long.
14698
14699 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
14700
14701 * gnutls.c (Fgnutls_boot): Don't mention :verify-error.
14702 (syms_of_gnutls): Remove duplicate DEFSYM for
14703 Qgnutls_bootprop_verify_hostname_error, an error for
14704 Qgnutls_bootprop_verify_error (which is no longer used).
14705
14706 * eval.c (find_handler_clause): Remove parameters `sig' and `data',
14707 unused since 2011-01-26T20:02:07Z!monnier@iro.umontreal.ca. All callers changed.
14708 Also (re)move comments that are misplaced or no longer relevant.
14709
14710 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
14711
14712 * callint.c (Finteractive): Clarify the meaning of "@" (bug#8813).
14713
14714 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
14715
14716 * xfaces.c (Finternal_merge_in_global_face): Modify the foreground
14717 and background color parameters if they have been changed.
14718
14719 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
14720
14721 * editfns.c (Fformat): Clarify the - and 0 flags (bug#6659).
14722
14723 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
14724
14725 * xsettings.c (SYSTEM_FONT): Define only when used.
14726 No need to define when HAVE_GSETTINGS || !HAVE_XFT.
14727
14728 * keymap.c (access_keymap_1): Now static.
14729
14730 2011-07-02 Chong Yidong <cyd@stupidchicken.com>
14731
14732 * keyboard.c (command_loop_1): If a down-mouse event is unbound,
14733 leave any prefix arg for the up event (Bug#1586).
14734
14735 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
14736
14737 * lread.c (syms_of_lread): Mention single symbols defined by
14738 `defvar' or `defconst' (bug#7154).
14739
14740 * fns.c (Frequire): Mention .el.gz files (bug#7314).
14741 (Frequire): Mention get-load-suffixes.
14742
14743 2011-07-02 Martin Rudalics <rudalics@gmx.at>
14744
14745 * window.h (window): Remove clone_number slot.
14746 * window.c (Fwindow_clone_number, Fset_window_clone_number):
14747 Remove.
14748 (make_parent_window, make_window, saved_window)
14749 (Fset_window_configuration, save_window_save): Don't deal with
14750 clone numbers.
14751 * buffer.c (Qclone_number): Remove declaration.
14752 (sort_overlays, overlay_strings): Don't deal with clone numbers.
14753
14754 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
14755
14756 Add multiple inheritance to keymaps.
14757 * keymap.c (Fmake_composed_keymap): New function.
14758 (Fset_keymap_parent): Simplify.
14759 (fix_submap_inheritance): Remove.
14760 (access_keymap_1): New function extracted from access_keymap to handle
14761 embedded parents and handle lists of maps.
14762 (access_keymap): Use it.
14763 (Fkeymap_prompt, map_keymap_internal, map_keymap, store_in_keymap)
14764 (Fcopy_keymap): Handle embedded parents.
14765 (Fcommand_remapping, define_as_prefix): Simplify.
14766 (Fkey_binding): Simplify.
14767 (syms_of_keymap): Move minibuffer-local-completion-map,
14768 minibuffer-local-filename-completion-map,
14769 minibuffer-local-must-match-map, and
14770 minibuffer-local-filename-must-match-map to Elisp.
14771 (syms_of_keymap): Defsubr make-composed-keymap.
14772 * keyboard.c (menu_bar_items): Use map_keymap_canonical.
14773 (parse_menu_item): Trivial simplification.
14774
14775 2011-07-01 Glenn Morris <rgm@gnu.org>
14776
14777 * Makefile.in (SETTINGS_LIBS): Fix typo.
14778
14779 2011-07-01 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
14780
14781 * coding.c (Fencode_coding_string): Record the last coding system
14782 used, as the function doc string says (bug#8738).
14783
14784 2011-07-01 Jan Djärv <jan.h.d@swipnet.se>
14785
14786 * xsettings.c (store_monospaced_changed): Take new font as arg and
14787 check for change against current_mono_font.
14788 (EMACS_TYPE_SETTINGS): Remove this and related defines.
14789 (emacs_settings_constructor, emacs_settings_get_property)
14790 (emacs_settings_set_property, emacs_settings_class_init)
14791 (emacs_settings_init, gsettings_obj): Remove.
14792 (something_changedCB): New function for HAVE_GSETTINGS.
14793 (something_changedCB): HAVE_GCONF: Call store_monospaced_changed
14794 with value as argument.
14795 (init_gsettings): Check that GSETTINGS_SCHEMA exists before calling
14796 g_settings_new (Bug#8967). Do not create gsettings_obj.
14797 Remove calls to g_settings_bind. Connect something_changedCB to
14798 "changed".
14799
14800 * xgselect.c: Add defined (HAVE_GSETTINGS).
14801 (xgselect_initialize): Ditto.
14802
14803 * process.c: Add defined (HAVE_GSETTINGS) for xgselect.h
14804 (wait_reading_process_output): Add defined (HAVE_GSETTINGS) for
14805 xg_select.
14806
14807 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
14808
14809 * eval.c (struct backtrace): Simplify and port the data structure.
14810 Do not assume that "int nargs : BITS_PER_INT - 2;" produces a
14811 signed bit field, as this assumption is not portable and it makes
14812 Emacs crash when compiled with Sun C 5.8 on sparc. Do not use
14813 "char debug_on_exit : 1" as this is not portable either; instead,
14814 use the portable "unsigned int debug_on_exit : 1". Remove unused
14815 member evalargs. Remove obsolete comments about cc bombing out.
14816
14817 2011-06-30 Jan Djärv <jan.h.d@swipnet.se>
14818
14819 * xsettings.c: Include glib-object.h, gio/gio.h if HAVE_GSETTINGS.
14820 Let HAVE_GSETTINGS override HAVE_GCONF.
14821 (store_monospaced_changed): New function.
14822 (EMACS_SETTINGS): A new type derived from GObject to handle
14823 GSettings notifications.
14824 (emacs_settings_constructor, emacs_settings_get_property)
14825 (emacs_settings_set_property, emacs_settings_class_init):
14826 New functions.
14827 (gsettings_client, gsettings_obj): New variables.
14828 (GSETTINGS_SCHEMA): New define.
14829 (something_changedCB): Call store_monospaced_changed.
14830 (init_gsettings): New function.
14831 (xsettings_initialize): Call init_gsettings.
14832 (syms_of_xsettings): Initialize gsettings_client, gsettings_obj
14833 to NULL.
14834
14835 * Makefile.in (SETTINGS_CFLAGS, SETTINGS_LIBS): Rename from
14836 GCONF_CFLAGS/LIBS.
14837
14838 2011-06-29 Martin Rudalics <rudalics@gmx.at>
14839
14840 * window.c (resize_root_window, grow_mini_window)
14841 (shrink_mini_window): Rename Qresize_root_window to
14842 Qwindow_resize_root_window and Qresize_root_window_vertically to
14843 Qwindow_resize_root_window_vertically.
14844
14845 2011-06-28 Paul Eggert <eggert@cs.ucla.edu>
14846
14847 * gnutls.c (Qgnutls_bootprop_verify_error): Remove unused var.
14848
14849 2011-06-27 Juanma Barranquero <lekktu@gmail.com>
14850
14851 * makefile.w32-in: Redesign dependencies so they reflect more
14852 clearly which files are directly included by each source file,
14853 and not through other includes.
14854
14855 2011-06-27 Martin Rudalics <rudalics@gmx.at>
14856
14857 * buffer.c (Qclone_number): Declare static and DEFSYM it.
14858 (sort_overlays, overlay_strings): When an overlay's clone number
14859 matches the window's clone number process the overlay even if
14860 the overlay's window property doesn't match the current window.
14861
14862 * window.c (Fwindow_vchild): Rename to Fwindow_top_child.
14863 (Fwindow_hchild): Rename to Fwindow_left_child.
14864 (Fwindow_next): Rename to Fwindow_next_sibling.
14865 (Fwindow_prev): Rename to Fwindow_prev_sibling.
14866 (resize_window_check): Rename to window_resize_check.
14867 (resize_window_apply): Rename to window_resize_apply.
14868 (Fresize_window_apply): Rename to Fwindow_resize_apply.
14869 (Fdelete_other_windows_internal, resize_frame_windows)
14870 (Fsplit_window_internal, Fdelete_window_internal)
14871 (grow_mini_window, shrink_mini_window)
14872 (Fresize_mini_window_internal): Fix callers accordingly.
14873
14874 2011-06-26 Jan Djärv <jan.h.d@swipnet.se>
14875
14876 * emacsgtkfixed.h: State that this is only used with Gtk+3.
14877 (emacs_fixed_set_min_size): Remove.
14878 (emacs_fixed_new): Take frame as argument.
14879
14880 * emacsgtkfixed.c: State that this is only used with Gtk+3.
14881 (_EmacsFixedPrivate): Remove minwidth/height.
14882 Add struct frame *f.
14883 (emacs_fixed_init): Initialize priv->f.
14884 (get_parent_class, emacs_fixed_set_min_size): Remove.
14885 (emacs_fixed_new): Set priv->f to argument.
14886 (emacs_fixed_get_preferred_width)
14887 (emacs_fixed_get_preferred_height): Use min_width/height from
14888 frames size_hint to set minimum and natural (Bug#8919).
14889 (XSetWMSizeHints, XSetWMNormalHints): Override these functions
14890 and use min_width/height from frames size_hint to set
14891 min_width/height (Bug#8919).
14892
14893 * gtkutil.c (xg_create_frame_widgets): Pass f to emacs_fixed_new.
14894 (x_wm_set_size_hint): Remove call to emacs_fixed_set_min_size.
14895 Fix indentation.
14896
14897 2011-06-26 Eli Zaretskii <eliz@gnu.org>
14898
14899 * bidi.c (bidi_paragraph_init): Test for ZV_BYTE before calling
14900 bidi_at_paragraph_end, since fast_looking_at doesn't like to be
14901 called at ZV.
14902
14903 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
14904
14905 * process.c (wait_reading_process_output): Bypass select if
14906 waiting for a cell while ignoring keyboard input, and input is
14907 pending. Suggested by Jan Djärv (Bug#8869).
14908
14909 2011-06-25 Paul Eggert <eggert@cs.ucla.edu>
14910
14911 Use gnulib's dup2 module instead of rolling our own.
14912 * sysdep.c (dup2) [!HAVE_DUP2]: Remove; gnulib now does this.
14913
14914 2011-06-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14915
14916 * dispnew.c (scrolling_window): Before scrolling, turn off a
14917 mouse-highlight in the window being scrolled.
14918
14919 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
14920
14921 Move DEFSYM to lisp.h and use everywhere.
14922
14923 * character.h (DEFSYM): Move declaration...
14924 * lisp.h (DEFSYM): ...here.
14925
14926 * gnutls.c:
14927 * minibuf.c:
14928 * w32menu.c:
14929 * w32proc.c:
14930 * w32select.c: Don't include character.h.
14931
14932 * alloc.c (syms_of_alloc):
14933 * buffer.c (syms_of_buffer):
14934 * bytecode.c (syms_of_bytecode):
14935 * callint.c (syms_of_callint):
14936 * casefiddle.c (syms_of_casefiddle):
14937 * casetab.c (init_casetab_once):
14938 * category.c (init_category_once, syms_of_category):
14939 * ccl.c (syms_of_ccl):
14940 * cmds.c (syms_of_cmds):
14941 * composite.c (syms_of_composite):
14942 * dbusbind.c (syms_of_dbusbind):
14943 * dired.c (syms_of_dired):
14944 * dispnew.c (syms_of_display):
14945 * doc.c (syms_of_doc):
14946 * editfns.c (syms_of_editfns):
14947 * emacs.c (syms_of_emacs):
14948 * eval.c (syms_of_eval):
14949 * fileio.c (syms_of_fileio):
14950 * fns.c (syms_of_fns):
14951 * frame.c (syms_of_frame):
14952 * fringe.c (syms_of_fringe):
14953 * insdel.c (syms_of_insdel):
14954 * keymap.c (syms_of_keymap):
14955 * lread.c (init_obarray, syms_of_lread):
14956 * macros.c (syms_of_macros):
14957 * msdos.c (syms_of_msdos):
14958 * print.c (syms_of_print):
14959 * process.c (syms_of_process):
14960 * search.c (syms_of_search):
14961 * sound.c (syms_of_sound):
14962 * syntax.c (init_syntax_once, syms_of_syntax):
14963 * terminal.c (syms_of_terminal):
14964 * textprop.c (syms_of_textprop):
14965 * undo.c (syms_of_undo):
14966 * w32.c (globals_of_w32):
14967 * window.c (syms_of_window):
14968 * xdisp.c (syms_of_xdisp):
14969 * xfaces.c (syms_of_xfaces):
14970 * xfns.c (syms_of_xfns):
14971 * xmenu.c (syms_of_xmenu):
14972 * xsettings.c (syms_of_xsettings):
14973 * xterm.c (syms_of_xterm): Use DEFSYM.
14974
14975 2011-06-24 Teodor Zlatanov <tzz@lifelogs.com>
14976
14977 * gnutls.c (syms_of_gnutls): Use the DEFSYM macro from character.h.
14978
14979 2011-06-23 Paul Eggert <eggert@cs.ucla.edu>
14980
14981 Integer and buffer overflow fixes (Bug#8873).
14982
14983 * print.c (printchar, strout): Check for string overflow.
14984 (PRINTPREPARE, printchar, strout):
14985 Don't set size unless allocation succeeds.
14986
14987 * minibuf.c (read_minibuf_noninteractive): Use ptrdiff_t, not int,
14988 for sizes. Check for string overflow more accurately.
14989 Simplify newline removal at end; this suppresses a GCC 4.6.0 warning.
14990
14991 * macros.c: Integer and buffer overflow fixes.
14992 * keyboard.h (struct keyboard.kbd_macro_bufsize):
14993 * macros.c (Fstart_kbd_macro, store_kbd_macro_char):
14994 Use ptrdiff_t, not int, for sizes.
14995 Don't increment bufsize until after realloc succeeds.
14996 Check for size-calculation overflow.
14997 (Fstart_kbd_macro): Use EMACS_INT, not int, for XINT result.
14998
14999 * lisp.h (DEFVAR_KBOARD): Use offsetof instead of char * finagling.
15000
15001 * lread.c: Integer overflow fixes.
15002 (read_integer): Radix is now EMACS_INT, not int,
15003 to improve quality of diagnostics for out-of-range radices.
15004 Calculate buffer size correctly for out-of-range radices.
15005 (read1): Check for integer overflow in radices, and in
15006 read-circle numbers.
15007 (read_escape): Avoid int overflow.
15008 (Fload, openp, read_buffer_size, read1)
15009 (substitute_object_recurse, read_vector, read_list, map_obarray):
15010 Use ptrdiff_t, not int, for sizes.
15011 (read1): Use EMACS_INT, not int, for sizes.
15012 Check for size overflow.
15013
15014 * image.c (cache_image): Check for size arithmetic overflow.
15015
15016 * lread.c: Integer overflow issues.
15017 (saved_doc_string_size, saved_doc_string_length)
15018 (prev_saved_doc_string_size, prev_saved_doc_string_length):
15019 Now ptrdiff_t, not int.
15020 (read1): Don't assume doc string length fits in int. Check for
15021 out-of-range doc string lengths.
15022 (read_list): Don't assume file position fits in int.
15023 (read_escape): Check for hex character overflow.
15024
15025 2011-06-22 Leo Liu <sdl.web@gmail.com>
15026
15027 * minibuf.c (Fcompleting_read_default, Vcompleting_read_function):
15028 Move to minibuffer.el.
15029
15030 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
15031
15032 Fixes for GLYPH_DEBUG found by GCC 4.6.0 static checking.
15033 The following patches are for when GLYPH_DEBUG && !XASSERT.
15034 * dispextern.h (trace_redisplay_p, dump_glyph_string):
15035 * dispnew.c (flush_stdout):
15036 * xdisp.c (dump_glyph_row, dump_glyph_matrix, dump_glyph):
15037 Mark as externally visible.
15038 * dispnew.c (check_window_matrix_pointers): Now static.
15039 * dispnew.c (window_to_frame_vpos):
15040 * xfns.c (unwind_create_frame):
15041 * xterm.c (x_check_font): Remove unused local.
15042 * scroll.c (CHECK_BOUNDS):
15043 * xfaces.c (cache_fache): Rename local to avoid shadowing.
15044 * xfns.c, w32fns.c (image_cache_refcount, dpyinfo_refcount): Now static.
15045 * xdisp.c (check_window_end): Now a no-op if !XASSERTS.
15046 (debug_first_unchanged_at_end_vpos, debug_last_unchanged_at_beg_vpos)
15047 (debug_dvpos, debug_dy, debug_delta, debug_delta_bytes, debug_end_vpos):
15048 Now static.
15049 (debug_method_add): Use va_list and vsprintf rather than relying
15050 on undefined behavior with wrong number of arguments.
15051 (dump_glyph, dump_glyph_row, Fdump_glyph_matrix):
15052 Don't assume ptrdiff_t and EMACS_INT are the same width as int.
15053 In this code, it's OK to assume C99 behavior for ptrdiff_t formats
15054 since we're not interested in debugging glyphs with old libraries.
15055 * xfaces.c (cache_face): Move debugging code earlier; this pacifies
15056 GCC 4.6.0's static checking.
15057
15058 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
15059
15060 Integer overflow and signedness fixes (Bug#8873).
15061 A few related buffer overrun fixes, too.
15062
15063 * font.c (font_score): Use EMACS_INT, not int, to store XINT value.
15064
15065 * dispextern.h (struct face.stipple):
15066 * image.c (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
15067 (x_bitmap_mask, x_allocate_bitmap_record)
15068 (x_create_bitmap_from_data, x_create_bitmap_from_file)
15069 (x_destroy_bitmap, x_destroy_all_bitmaps, x_create_bitmap_mask)
15070 (x_create_bitmap_from_xpm_data):
15071 * nsterm.h (struct ns_display_info.bitmaps_size, .bitmaps_last):
15072 * w32term.h (struct w32_display_info.icon_bitmap_id, .bitmaps_size)
15073 (.bitmaps_last):
15074 * xfaces.c (load_pixmap):
15075 * xterm.c (x_bitmap_icon, x_wm_set_icon_pixmap):
15076 * xterm.h (struct x_display_info.icon_bitmap_id, .bitmaps_size)
15077 (.bitmaps_last, struct x_output.icon_bitmap):
15078 Use ptrdiff_t, not int, for bitmap indexes.
15079 (x_allocate_bitmap_record): Check for size overflow.
15080 * dispextern.h, lisp.h: Adjust to API changes elsewhere.
15081
15082 Use ptrdiff_t, not int, for overlay counts.
15083 * buffer.h (overlays_at, sort_overlays, GET_OVERLAYS_AT):
15084 * editfns.c (overlays_around, get_pos_property):
15085 * textprop.c (get_char_property_and_overlay):
15086 * xdisp.c (next_overlay_change, note_mouse_highlight):
15087 * xfaces.c (face_at_buffer_position):
15088 * buffer.c (OVERLAY_COUNT_MAX): New macro.
15089 (overlays_at, overlays_in, sort_overlays, Foverlays_at)
15090 (Fnext_overlay_change, Fprevious_overlay_change)
15091 (mouse_face_overlay_overlaps, Foverlays_in):
15092 Use ptrdiff_t, not int, for sizes.
15093 (overlays_at, overlays_in): Check for size-calculation overflow.
15094
15095 * xterm.c (xim_initialize, same_x_server): Strlen may not fit in int.
15096
15097 * xsmfns.c (smc_save_yourself_CB, x_session_initialize): Avoid strlen.
15098 (x_session_initialize): Do not assume string length fits in int.
15099
15100 * xsettings.c (apply_xft_settings): Fix potential buffer overrun.
15101 This is unlikely, but can occur if DPI is outlandish.
15102
15103 * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
15104 * xselect.c (Fx_get_atom_name): Avoid need for strlen.
15105
15106 * xrdb.c: Don't assume strlen fits in int; avoid some strlens.
15107 * xrdb.c (magic_file_p, search_magic_path):
15108 Omit last arg SUFFIX; it was always 0. All callers changed.
15109 (magic_file_p): Use ptrdiff_t, not int. Check for size overflow.
15110
15111 * xfont.c (xfont_match): Avoid need for strlen.
15112
15113 * xfns.c: Don't assume strlen fits in int.
15114 (xic_create_fontsetname, x_window): Use ptrdiff_t, not int.
15115
15116 * xdisp.c (message_log_check_duplicate): Return intmax_t,
15117 not unsigned long, as we prefer signed integers. All callers changed.
15118 Detect integer overflow in repeat count.
15119 (message_dolog): Don't assume print length fits in 39 bytes.
15120 (display_mode_element): Don't assume strlen fits in int.
15121
15122 * termcap.c: Don't assume sizes fit in int and never overflow.
15123 (struct termcap_buffer, tgetent): Use ptrdiff_t, not int, for sizes.
15124 (gobble_line): Check for size-calculation overflow.
15125
15126 * minibuf.c (Fread_buffer):
15127 * lread.c (intern, intern_c_string):
15128 * image.c (xpm_scan) [HAVE_NS && !HAVE_XPM]:
15129 Don't assume string length fits in int.
15130
15131 * keyboard.c (parse_tool_bar_item):
15132 * gtkutil.c (style_changed_cb): Avoid need for strlen.
15133
15134 * font.c: Don't assume string length fits in int.
15135 (font_parse_xlfd, font_parse_fcname, font_unparse_fcname):
15136 Use ptrdiff_t, not int.
15137 (font_intern_prop): Don't assume string length fits in int.
15138 Don't assume integer property fits in fixnum.
15139 * font.h (font_intern_prop): 2nd arg is now ptrdiff_t, not int.
15140
15141 * filelock.c: Fix some buffer overrun and integer overflow issues.
15142 (get_boot_time): Don't assume gzip command string fits in 100 bytes.
15143 Reformulate so as not to need the command string.
15144 Invoke gzip -cd rather than gunzip, as it's more portable.
15145 (lock_info_type, lock_file_1, lock_file):
15146 Don't assume pid_t and time_t fit in unsigned long.
15147 (LOCK_PID_MAX): Remove; we now use more-reliable bounds.
15148 (current_lock_owner): Prefer signed type for sizes.
15149 Use memcpy, not strncpy, where memcpy is what is really wanted.
15150 Don't assume (via atoi) that time_t and pid_t fit in int.
15151 Check for time_t and/or pid_t out of range, e.g., via a network share.
15152 Don't alloca where an auto var works fine.
15153
15154 * fileio.c: Fix some integer overflow issues.
15155 (file_name_as_directory, Fexpand_file_name, Fsubstitute_in_file_name):
15156 Don't assume string length fits in int.
15157 (directory_file_name): Don't assume string length fits in long.
15158 (make_temp_name): Don't assume pid fits in int, or that its print
15159 length is less than 20.
15160
15161 * data.c (Fsubr_name): Rewrite to avoid a strlen call.
15162
15163 * coding.c (make_subsidiaries): Don't assume string length fits in int.
15164
15165 * callproc.c (child_setup): Rewrite to avoid two strlen calls.
15166
15167 * process.c (Fformat_network_address): Use EMACS_INT, not EMACS_UINT.
15168 We prefer signed integers, even for size calculations.
15169
15170 * emacs.c: Don't assume string length fits in 'int'.
15171 (DEFINE_DUMMY_FUNCTION, sort_args): Use ptrdiff_t, not int.
15172 (main): Don't invoke strlen when not needed.
15173
15174 * dbusbind.c (XD_ERROR): Don't arbitrarily truncate string.
15175 (XD_DEBUG_MESSAGE): Don't waste a byte.
15176
15177 * callproc.c (getenv_internal_1, getenv_internal)
15178 (Fgetenv_internal):
15179 * buffer.c (init_buffer): Don't assume string length fits in 'int'.
15180
15181 * lread.c (invalid_syntax): Omit length argument.
15182 All uses changed. This doesn't fix a bug, but it simplifies the
15183 code away from its former Hollerith-constant appearance, and it's
15184 one less 'int' to worry about when looking at integer-overflow issues.
15185 (string_to_number): Simplify 2011-04-26 change by invoking xsignal1.
15186
15187 * lisp.h (DEFUN): Remove bogus use of sizeof (struct Lisp_Subr).
15188 This didn't break anything, but it didn't help either.
15189 It's confusing to put a bogus integer in a place where the actual
15190 value does not matter.
15191 (LIST_END_P): Remove unused macro and its bogus comment.
15192 (make_fixnum_or_float): Remove unnecessary cast to EMACS_INT.
15193
15194 * lisp.h (union Lisp_Object.i): EMACS_INT, not EMACS_UINT.
15195 This is for consistency with the ordinary, non-USE_LISP_UNION_TYPE,
15196 implementation.
15197 (struct Lisp_Bool_Vector.size): EMACS_INT, not EMACS_UINT.
15198 We prefer signed types, and the value cannot exceed the EMACS_INT
15199 range anyway (because otherwise the length would not be representable).
15200 (XSET) [USE_LISP_UNION_TYPE]: Use uintptr_t and intptr_t,
15201 not EMACS_UINT and EMACS_INT, when converting pointer to integer.
15202 This avoids a GCC warning when WIDE_EMACS_INT.
15203
15204 * indent.c (sane_tab_width): New function.
15205 (current_column, scan_for_column, Findent_to, position_indentation)
15206 (compute_motion): Use it. This is just for clarity.
15207 (Fcompute_motion): Don't assume hscroll and tab offset fit in int.
15208
15209 * image.c (xbm_image_p): Don't assume stated width, height fit in int.
15210
15211 * lisp.h (lint_assume): New macro.
15212 * composite.c (composition_gstring_put_cache):
15213 * ftfont.c (ftfont_shape_by_flt): Use it to pacify GCC 4.6.0.
15214
15215 * editfns.c, insdel.c:
15216 Omit unnecessary forward decls, to simplify future changes.
15217
15218 * ftfont.c (ftfont_shape_by_flt): Use signed integers for lengths.
15219
15220 * font.c (Ffont_shape_gstring): Don't assume glyph len fits in 'int'.
15221
15222 * fns.c (Ffillarray): Don't assume bool vector size fits in 'int'.
15223 Use much-faster test for byte-length change.
15224 Don't assume string byte-length fits in 'int'.
15225 Check that character arg fits in 'int'.
15226 (mapcar1): Declare byte as byte, for clarity.
15227
15228 * alloc.c (Fmake_bool_vector): Avoid unnecessary multiplication.
15229
15230 * fns.c (concat): Catch string overflow earlier.
15231 Do not rely on integer wraparound.
15232
15233 * dispextern.h (struct it.overlay_strings_charpos)
15234 (struct it.selective): Now EMACS_INT, not int.
15235 * xdisp.c (forward_to_next_line_start)
15236 (back_to_previous_visible_line_start)
15237 (reseat_at_next_visible_line_start, next_element_from_buffer):
15238 Don't arbitrarily truncate the value of 'selective' to int.
15239
15240 * xdisp.c (init_iterator): Use XINT, not XFASTINT; it might be < 0.
15241
15242 * composite.c: Don't truncate sizes to 'int'.
15243 (composition_gstring_p, composition_reseat_it)
15244 (composition_adjust_point): Use EMACS_INT, not int.
15245 (get_composition_id, composition_gstring_put_cache): Use EMACS_INT,
15246 not EMACS_UINT, for indexes.
15247
15248 * category.h (CATEGORY_SET_P): Remove unnecessary cast to EMACS_INT.
15249
15250 * buffer.c: Include <verify.h>.
15251 (struct sortvec.priority, struct sortstr.priority):
15252 Now EMACS_INT, not int.
15253 (compare_overlays, cmp_for_strings): Avoid subtraction overflow.
15254 (struct sortstr.size, record_overlay_string)
15255 (struct sortstrlist.size, struct sortlist.used):
15256 Don't truncate size to int.
15257 (record_overlay_string): Check for size-calculation overflow.
15258 (init_buffer_once): Check at compile-time, not run-time.
15259
15260 2011-06-22 Jim Meyering <meyering@redhat.com>
15261
15262 Don't leak an XBM-image-sized buffer
15263 * image.c (xbm_load): Free the image buffer after using it.
15264
15265 2011-06-21 Paul Eggert <eggert@cs.ucla.edu>
15266
15267 Port to Sun C.
15268 * composite.c (find_automatic_composition): Omit needless 'return 0;'
15269 that Sun C diagnosed.
15270 * fns.c (secure_hash): Fix pointer signedness issue.
15271 * intervals.c (static_offset_intervals): New function.
15272 (offset_intervals): Use it.
15273
15274 2011-06-21 Leo Liu <sdl.web@gmail.com>
15275
15276 * deps.mk (fns.o):
15277 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha256.h and
15278 sha512.h.
15279
15280 * fns.c (secure_hash): Rename from crypto_hash_function and change
15281 the first arg to accept symbols.
15282 (Fsecure_hash): New primitive.
15283 (syms_of_fns): New symbols.
15284
15285 2011-06-20 Deniz Dogan <deniz@dogan.se>
15286
15287 * process.c (Fset_process_buffer): Clarify return value in
15288 docstring.
15289
15290 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
15291
15292 * dispnew.c (add_window_display_history): Use BVAR.
15293
15294 * xdisp.c (debug_method_add): Use BVAR.
15295 (check_window_end, dump_glyph_matrix, dump_glyph)
15296 (dump_glyph_row, dump_glyph_string): Convert arglist to ANSI C.
15297
15298 * xfaces.c (check_lface_attrs, check_lface, dump_realized_face):
15299 Likewise.
15300
15301 * xfns.c (Fx_create_frame, x_create_tip_frame): Delay image cache
15302 check till after the cache is created in init_frame_faces.
15303
15304 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
15305
15306 * fns.c (Fsafe_length): Yet another int/Lisp_Object mixup.
15307
15308 2011-06-16 Paul Eggert <eggert@cs.ucla.edu>
15309
15310 * lisp.h: Include <limits.h>, for INT_MAX, LONG_MAX, LLONG_MAX.
15311 Without this, prin1 mishandles Lisp_Misc_Save_Value printing on
15312 hosts with pre-C99 libraries, because pD is wrongly defined to "t".
15313
15314 Improve buffer-overflow checking (Bug#8873).
15315 * fileio.c (Finsert_file_contents):
15316 * insdel.c (insert_from_buffer_1, replace_range, replace_range_2):
15317 Remove the old (too-loose) buffer overflow checks.
15318 They weren't needed, since make_gap checks for buffer overflow.
15319 * insdel.c (make_gap_larger): Catch buffer overflows that were missed.
15320 The old code merely checked for Emacs fixnum overflow, and relied
15321 on undefined (wraparound) behavior. The new code avoids undefined
15322 behavior, and also checks for ptrdiff_t and/or size_t overflow.
15323
15324 * editfns.c (Finsert_char): Don't dump core with very negative counts.
15325 Tune. Don't use wider integers than needed. Don't use alloca.
15326 Use a bigger 'string' buffer. Rewrite to avoid 'n > 0' test.
15327
15328 * insdel.c (replace_range): Fix buf overflow when insbytes < outgoing.
15329
15330 * insdel.c, lisp.h (buffer_overflow): New function.
15331 (insert_from_buffer_1, replace_range, replace_range_2):
15332 * insdel.c (make_gap_larger):
15333 * editfns.c (Finsert_char):
15334 * fileio.c (Finsert_file_contents): Use it, to normalize wording.
15335
15336 * buffer.h (BUF_BYTES_MAX): Cast to ptrdiff_t so that it's signed.
15337
15338 2011-06-15 Paul Eggert <eggert@cs.ucla.edu>
15339
15340 Integer overflow and signedness fixes (Bug#8873, Bug#8828).
15341
15342 * ccl.c (ASCENDING_ORDER): New macro, to work around GCC bug 43772.
15343 (GET_CCL_RANGE, IN_INT_RANGE): Use it.
15344
15345 * fileio.c: Don't assume EMACS_INT fits in off_t.
15346 (emacs_lseek): New static function.
15347 (Finsert_file_contents, Fwrite_region): Use it.
15348 Use SEEK_SET, SEEK_CUR, SEEK_END as appropriate.
15349
15350 * fns.c (Fload_average): Don't assume 100 * load average fits in int.
15351
15352 * fns.c: Don't overflow int when computing a list length.
15353 * fns.c (QUIT_COUNT_HEURISTIC): New constant.
15354 (Flength, Fsafe_length): Use EMACS_INT, not int, to avoid unwanted
15355 truncation on 64-bit hosts. Check for QUIT every
15356 QUIT_COUNT_HEURISTIC entries rather than every other entry; that's
15357 faster and is responsive enough.
15358 (Flength): Report an error instead of overflowing an integer.
15359 (Fsafe_length): Return a float if the value is not representable
15360 as a fixnum. This shouldn't happen except in contrived situations.
15361 (Fnthcdr, Fsort): Don't assume list length fits in int.
15362 (Fcopy_sequence): Don't assume vector length fits in int.
15363
15364 * alloc.c: Check that resized vectors' lengths fit in fixnums.
15365 (header_size, word_size): New constants.
15366 (allocate_vectorlike): Don't check size overflow here.
15367 (allocate_vector): Check it here instead, since this is the only
15368 caller of allocate_vectorlike that could cause overflow.
15369 Check that the new vector's length is representable as a fixnum.
15370
15371 * fns.c (next_almost_prime): Don't return a multiple of 3 or 5.
15372 The previous code was bogus. For example, next_almost_prime (32)
15373 returned 39, which is undesirable as it is a multiple of 3; and
15374 next_almost_prime (24) returned 25, which is a multiple of 5 so
15375 why was the code bothering to check for multiples of 7?
15376
15377 * bytecode.c (exec_byte_code): Use ptrdiff_t, not int, for vector length.
15378
15379 * eval.c, doprnt.c (SIZE_MAX): Remove; inttypes.h defines this now.
15380
15381 Variadic C functions now count arguments with ptrdiff_t.
15382 This partly undoes my 2011-03-30 change, which replaced int with size_t.
15383 Back then I didn't know that the Emacs coding style prefers signed int.
15384 Also, in the meantime I found a few more instances where arguments
15385 were being counted with int, which may truncate counts on 64-bit
15386 machines, or EMACS_INT, which may be unnecessarily wide.
15387 * lisp.h (struct Lisp_Subr.function.aMANY)
15388 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call):
15389 Arg counts are now ptrdiff_t, not size_t.
15390 All variadic functions and their callers changed accordingly.
15391 (struct gcpro.nvars): Now size_t, not size_t. All uses changed.
15392 * bytecode.c (exec_byte_code): Check maxdepth for overflow,
15393 to avoid potential buffer overrun. Don't assume arg counts fit in 'int'.
15394 * callint.c (Fcall_interactively): Check arg count for overflow,
15395 to avoid potential buffer overrun. Use signed char, not 'int',
15396 for 'varies' array, so that we needn't bother to check its size
15397 calculation for overflow.
15398 * editfns.c (Fformat): Use ptrdiff_t, not EMACS_INT, to count args.
15399 * eval.c (apply_lambda):
15400 * fns.c (Fmapconcat): Use XFASTINT, not XINT, to get args length.
15401 (struct textprop_rec.argnum): Now ptrdiff_t, not int. All uses changed.
15402 (mapconcat): Use ptrdiff_t, not int and EMACS_INT, to count args.
15403
15404 * callint.c (Fcall_interactively): Don't use index var as event count.
15405
15406 * vm-limit.c (check_memory_limits): Fix incorrect extern function decls.
15407 * mem-limits.h (SIZE): Remove; no longer used.
15408
15409 * xterm.c (x_alloc_nearest_color_1): Prefer int to long when int works.
15410
15411 Remove unnecessary casts.
15412 * xterm.c (x_term_init):
15413 * xfns.c (x_set_border_pixel):
15414 * widget.c (create_frame_gcs): Remove casts to unsigned long etc.
15415 These aren't needed now that we assume ANSI C.
15416
15417 * sound.c (Fplay_sound_internal): Remove cast to unsigned long.
15418 It's more likely to cause problems (due to unsigned overflow)
15419 than to cure them.
15420
15421 * dired.c (Ffile_attributes): Don't use 32-bit hack on 64-bit hosts.
15422
15423 * unexelf.c (unexec): Don't assume BSS addr fits in unsigned.
15424
15425 * xterm.c (handle_one_xevent): Omit unnecessary casts to unsigned.
15426
15427 * keyboard.c (modify_event_symbol): Don't limit alist len to UINT_MAX.
15428
15429 * lisp.h (CHAR_TABLE_SET): Omit now-redundant test.
15430
15431 * lread.c (Fload): Don't compare a possibly-garbage time_t value.
15432
15433 GLYPH_CODE_FACE returns EMACS_INT, not int.
15434 * dispextern.h (merge_faces):
15435 * xfaces.c (merge_faces):
15436 * xdisp.c (get_next_display_element, next_element_from_display_vector):
15437 Don't assume EMACS_INT fits in int.
15438
15439 * character.h (CHAR_VALID_P): Remove unused parameter.
15440 * fontset.c, lisp.h, xdisp.c: All uses changed.
15441
15442 * editfns.c (Ftranslate_region_internal): Omit redundant test.
15443
15444 * fns.c (concat): Minor tuning based on overflow analysis.
15445 This doesn't fix any bugs. Use int to hold character, instead
15446 of constantly refetching from Emacs object. Use XFASTINT, not
15447 XINT, for value known to be a character. Don't bother comparing
15448 a single byte to 0400, as it's always less.
15449
15450 * floatfns.c (Fexpt):
15451 * fileio.c (make_temp_name): Omit unnecessary cast to unsigned.
15452
15453 * editfns.c (Ftranslate_region_internal): Use int, not EMACS_INT
15454 for characters.
15455
15456 * doc.c (get_doc_string): Omit (unsigned)c that mishandled negatives.
15457
15458 * data.c (Faset): If ARRAY is a string, check that NEWELT is a char.
15459 Without this fix, on a 64-bit host (aset S 0 4294967386) would
15460 incorrectly succeed when S was a string, because 4294967386 was
15461 truncated before it was used.
15462
15463 * chartab.c (Fchar_table_range): Use CHARACTERP to check range.
15464 Otherwise, an out-of-range integer could cause undefined behavior
15465 on a 64-bit host.
15466
15467 * composite.c: Use int, not EMACS_INT, for characters.
15468 (fill_gstring_body, composition_compute_stop_pos): Use int, not
15469 EMACS_INT, for values that are known to be in character range.
15470 This doesn't fix any bugs but is the usual style inside Emacs and
15471 may generate better code on 32-bit machines.
15472
15473 Make sure a 64-bit char is never passed to ENCODE_CHAR.
15474 This is for reasons similar to the recent CHAR_STRING fix.
15475 * charset.c (Fencode_char): Check that character arg is actually
15476 a character. Pass an int to ENCODE_CHAR.
15477 * charset.h (ENCODE_CHAR): Verify that the character argument is no
15478 wider than 'int', as a compile-time check to prevent future regressions
15479 in this area.
15480
15481 * character.c (char_string): Remove unnecessary casts.
15482
15483 Make sure a 64-bit char is never passed to CHAR_STRING.
15484 Otherwise, CHAR_STRING would do the wrong thing on a 64-bit platform,
15485 by silently ignoring the top 32 bits, allowing some values
15486 that were far too large to be valid characters.
15487 * character.h: Include <verify.h>.
15488 (CHAR_STRING, CHAR_STRING_ADVANCE): Verify that the character
15489 arguments are no wider than unsigned, as a compile-time check
15490 to prevent future regressions in this area.
15491 * data.c (Faset):
15492 * editfns.c (Fchar_to_string, general_insert_function, Finsert_char)
15493 (Fsubst_char_in_region):
15494 * fns.c (concat):
15495 * xdisp.c (decode_mode_spec_coding):
15496 Adjust to CHAR_STRING's new requirement.
15497 * editfns.c (Finsert_char, Fsubst_char_in_region):
15498 * fns.c (concat): Check that character args are actually
15499 characters. Without this test, these functions did the wrong
15500 thing with wildly out-of-range values on 64-bit hosts.
15501
15502 Remove incorrect casts to 'unsigned' that lose info on 64-bit hosts.
15503 These casts should not be needed on 32-bit hosts, either.
15504 * keyboard.c (read_char):
15505 * lread.c (Fload): Remove casts to unsigned.
15506
15507 * lisp.h (UNSIGNED_CMP): New macro.
15508 This fixes comparison bugs on 64-bit hosts.
15509 (ASCII_CHAR_P): Use it.
15510 * casefiddle.c (casify_object):
15511 * character.h (ASCII_BYTE_P, CHAR_VALID_P)
15512 (SINGLE_BYTE_CHAR_P, CHAR_STRING):
15513 * composite.h (COMPOSITION_ENCODE_RULE_VALID):
15514 * dispextern.h (FACE_FROM_ID):
15515 * keyboard.c (read_char): Use UNSIGNED_CMP.
15516
15517 * xmenu.c (dialog_selection_callback) [!USE_GTK]: Cast to intptr_t,
15518 not to EMACS_INT, to avoid GCC warning.
15519
15520 * xfns.c (x_set_scroll_bar_default_width): Remove unused 'int' locals.
15521
15522 * buffer.h (PTR_BYTE_POS, BUF_PTR_BYTE_POS): Remove harmful cast.
15523 The cast incorrectly truncated 64-bit byte offsets to 32 bits, and
15524 isn't needed on 32-bit machines.
15525
15526 * buffer.c (Fgenerate_new_buffer_name):
15527 Use EMACS_INT for count, not int.
15528 (advance_to_char_boundary): Return EMACS_INT, not int.
15529
15530 * data.c (Qcompiled_function): Now static.
15531
15532 * window.c (window_body_lines): Now static.
15533
15534 * image.c (gif_load): Rename local to avoid shadowing.
15535
15536 * lisp.h (SAFE_ALLOCA_LISP): Check for integer overflow.
15537 (struct Lisp_Save_Value): Use ptrdiff_t, not int, for 'integer' member.
15538 * alloc.c (make_save_value): Integer argument is now of type
15539 ptrdiff_t, not int.
15540 (mark_object): Use ptrdiff_t, not int.
15541 * lisp.h (pD): New macro.
15542 * print.c (print_object): Use it.
15543
15544 * alloc.c: Use EMACS_INT, not int, to count objects.
15545 (total_conses, total_markers, total_symbols, total_vector_size)
15546 (total_free_conses, total_free_markers, total_free_symbols)
15547 (total_free_floats, total_floats, total_free_intervals)
15548 (total_intervals, total_strings, total_free_strings):
15549 Now EMACS_INT, not int. All uses changed.
15550 (Fgarbage_collect): Compute overall total using a double, so that
15551 integer overflow is less likely to be a problem. Check for overflow
15552 when converting back to an integer.
15553 (n_interval_blocks, n_string_blocks, n_float_blocks, n_cons_blocks)
15554 (n_vectors, n_symbol_blocks, n_marker_blocks): Remove.
15555 These were 'int' variables that could overflow on 64-bit hosts;
15556 they were never used, so remove them instead of repairing them.
15557 (nzombies, ngcs, max_live, max_zombies): Now EMACS_INT, not 'int'.
15558 (inhibit_garbage_collection): Set gc_cons_threshold to max value.
15559 Previously, this ceilinged at INT_MAX, but that doesn't work on
15560 64-bit machines.
15561 (allocate_pseudovector): Don't use EMACS_INT when int would do.
15562
15563 * alloc.c (Fmake_bool_vector): Don't assume vector size fits in int.
15564 (allocate_vectorlike): Check for ptrdiff_t overflow.
15565 (mark_vectorlike, mark_char_table, mark_object): Avoid EMACS_UINT
15566 when a (possibly-narrower) signed value would do just as well.
15567 We prefer using signed arithmetic, to avoid comparison confusion.
15568
15569 * alloc.c: Catch some string size overflows that we were missing.
15570 (XMALLOC_OVERRUN_CHECK_SIZE) [!XMALLOC_OVERRUN_CHECK]: Define to 0,
15571 for convenience in STRING_BYTES_MAX.
15572 (STRING_BYTES_MAX): New macro, superseding the old one in lisp.h.
15573 The definition here is exact; the one in lisp.h was approximate.
15574 (allocate_string_data): Check for string overflow. This catches
15575 some instances we weren't catching before. Also, it catches
15576 size_t overflow on (unusual) hosts where SIZE_MAX <= min
15577 (PTRDIFF_MAX, MOST_POSITIVE_FIXNUM), e.g., when size_t is 32 bits
15578 and ptrdiff_t and EMACS_INT are both 64 bits.
15579
15580 * character.c, coding.c, doprnt.c, editfns.c, eval.c:
15581 All uses of STRING_BYTES_MAX replaced by STRING_BYTES_BOUND.
15582 * lisp.h (STRING_BYTES_BOUND): Rename from STRING_BYTES_MAX.
15583
15584 * character.c (string_escape_byte8): Fix nbytes/nchars typo.
15585
15586 * alloc.c (Fmake_string): Check for out-of-range init.
15587
15588 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
15589
15590 * eval.c (Fdefvaralias): Also mark the target as variable-special-p.
15591
15592 2011-06-14 Jan Djärv <jan.h.d@swipnet.se>
15593
15594 * xfns.c (x_set_scroll_bar_default_width): Remove argument to
15595 xg_get_default_scrollbar_width.
15596
15597 * gtkutil.c: Include emacsgtkfixed.h if HAVE_GTK3.
15598 (int_gtk_range_get_value): Move to the scroll bar part of the file.
15599 (style_changed_cb): Call update_theme_scrollbar_width and call
15600 x_set_scroll_bar_default_width and xg_frame_set_char_size for
15601 all frames (Bug#8505).
15602 (xg_create_frame_widgets): Call emacs_fixed_new if HAVE_GTK3 (Bug#8505).
15603 Call gtk_window_set_resizable if HAVE_GTK3.
15604 (x_wm_set_size_hint): Call emacs_fixed_set_min_size with min width
15605 and height if HAVE_GTK3 (Bug#8505).
15606 (scroll_bar_width_for_theme): New variable.
15607 (update_theme_scrollbar_width): New function.
15608 (xg_get_default_scrollbar_width): Move code to
15609 update_theme_scrollbar_width, just return scroll_bar_width_for_theme.
15610 (xg_initialize): Call update_theme_scrollbar_width.
15611
15612 * gtkutil.h (xg_get_default_scrollbar_width): Remove argument.
15613
15614 * emacsgtkfixed.c, emacsgtkfixed.h: New files.
15615
15616 2011-06-12 Martin Rudalics <rudalics@gmx.at>
15617
15618 * frame.c (make_frame): Call other_buffer_safely instead of
15619 other_buffer.
15620
15621 * window.c (temp_output_buffer_show): Call display_buffer with
15622 second argument Vtemp_buffer_show_specifiers and reset latter
15623 immediately after the call.
15624 (Vtemp_buffer_show_specifiers): New variable.
15625 (auto_window_vscroll_p, next_screen_context_lines)
15626 (Vscroll_preserve_screen_position): Remove leading asterisks from
15627 doc-strings.
15628
15629 2011-06-12 Paul Eggert <eggert@cs.ucla.edu>
15630
15631 Fix minor problems found by GCC 4.6.0 static checking.
15632 * buffer.c (Qclone_number): Remove for now, as it's unused.
15633 (record_buffer, Funrecord_buffer): Rename local to avoid shadowing.
15634 (record_buffer): Remove unused local.
15635 * frame.c (other_visible_frames, frame_buffer_list): Now static.
15636 (set_frame_buffer_list): Remove; unused.
15637 * frame.h (other_visible_frames): Remove decl.
15638 * keyboard.h (menu_items_inuse): Declare only if USE_GTK || USE_MOTIF.
15639 * lisp.h (frame_buffer_list, set_frame_buffer_list): Remove decls.
15640 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor): Declare only
15641 if HAVE_GPM.
15642 * menu.c (menu_items_inuse): Now static unless USE_GTK || USE_MOTIF.
15643 * process.c (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
15644 Define only if HAVE_GPM.
15645 * widget.c (EmacsFrameResize, emacsFrameClassRec): Now static.
15646 (update_hints_inhibit): Remove; never set. All uses removed.
15647 * widgetprv.h (emacsFrameClassRec): Remove decl.
15648 * window.c (delete_deletable_window): Now returns void, since it
15649 wasn't returning anything.
15650 (compare_window_configurations): Remove unused locals.
15651 * xfns.c (x_set_scroll_bar_default_width): Remove unused locals.
15652 * xmenu.c (x_menu_set_in_use): Define only if USE_GTK || USE_MOTIF.
15653 (dialog_selection_callback) [!USE_GTK]: Prefer intptr_t for integers
15654 the same widths as pointers. This follows up on the 2011-05-06 patch.
15655 * xterm.c (x_alloc_lighter_color_for_widget): Define only if USE_LUCID.
15656 * xterm.h: Likewise.
15657 (x_menu_set_in_use): Declare only if USE_GTK || USE_MOTIF.
15658
15659 2011-06-12 Juanma Barranquero <lekktu@gmail.com>
15660
15661 * makefile.w32-in: Update dependencies.
15662 (LISP_H): Add lib/intprops.h.
15663
15664 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
15665
15666 * image.c (gif_load): Add animation frame delay to the metadata.
15667 (syms_of_image): Use DEFSYM. New symbol `delay'.
15668
15669 2011-06-11 Martin Rudalics <rudalics@gmx.at>
15670
15671 * window.c (delete_deletable_window): Re-add.
15672 (Fset_window_configuration): Rewrite to handle dead buffers and
15673 consequently deletable windows.
15674 (window_tree, Fwindow_tree): Remove. Supply functionality in
15675 window.el.
15676 (compare_window_configurations): Simplify code.
15677
15678 2011-06-11 Andreas Schwab <schwab@linux-m68k.org>
15679
15680 * image.c (imagemagick_load_image): Fix type mismatch.
15681 (Fimagemagick_types): Likewise.
15682
15683 * window.h (replace_buffer_in_windows): Declare.
15684
15685 2011-06-11 Martin Rudalics <rudalics@gmx.at>
15686
15687 * buffer.c: New Lisp objects Qbuffer_list_update_hook and
15688 Qclone_number. Remove external declaration of Qdelete_window.
15689 (Fbuffer_list): Rewrite doc-string. Minor restructuring of
15690 code.
15691 (Fget_buffer_create, Fmake_indirect_buffer, Frename_buffer):
15692 Run Qbuffer_list_update_hook if allowed.
15693 (Fother_buffer): Rewrite doc-string. Major rewrite for new
15694 buffer list implementation.
15695 (other_buffer_safely): New function.
15696 (Fkill_buffer): Replace call to replace_buffer_in_all_windows by
15697 calls to replace_buffer_in_windows and
15698 replace_buffer_in_windows_safely. Run Qbuffer_list_update_hook
15699 if allowed.
15700 (record_buffer): Inhibit quitting and rewrite using quittable
15701 functions. Run Qbuffer_list_update_hook if allowed.
15702 (Frecord_buffer, Funrecord_buffer): New functions.
15703 (switch_to_buffer_1, Fswitch_to_buffer): Remove.
15704 Move switch-to-buffer to window.el.
15705 (bury-buffer): Move to window.el.
15706 (Vbuffer_list_update_hook): New variable.
15707
15708 * lisp.h (other_buffer_safely): Add prototype in buffer.c
15709 section.
15710
15711 * window.h (resize_frame_windows): Move up in code.
15712 (Fwindow_frame): Remove EXFUN.
15713 (replace_buffer_in_all_windows): Remove prototype.
15714 (replace_buffer_in_windows_safely): Add prototype.
15715
15716 * window.c: Declare Qdelete_window static again. Move down
15717 declaration of select_count.
15718 (Fnext_window, Fprevious_window): Rewrite doc-strings.
15719 (Fother_window): Move to window.el.
15720 (window_loop): Remove DELETE_BUFFER_WINDOWS and UNSHOW_BUFFER
15721 cases. Add REPLACE_BUFFER_IN_WINDOWS_SAFELY case.
15722 (Fdelete_windows_on, Freplace_buffer_in_windows): Move to
15723 window.el.
15724 (replace_buffer_in_windows): Implement by calling
15725 Qreplace_buffer_in_windows.
15726 (replace_buffer_in_all_windows): Remove with some functionality
15727 moved into replace_buffer_in_windows_safely.
15728 (replace_buffer_in_windows_safely): New function.
15729 (select_window_norecord, select_frame_norecord): Move in front
15730 of run_window_configuration_change_hook. Remove now obsolete
15731 declarations.
15732 (Fset_window_buffer): Rewrite doc-string.
15733 Call Qrecord_window_buffer.
15734 (keys_of_window): Move binding for other-window to window.el.
15735
15736 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
15737
15738 * dispextern.h (struct image): Replace data member, whose int_val
15739 and ptr_val fields were not used by anything, with a single
15740 lisp_val object.
15741
15742 * image.c (Fimage_metadata, make_image, mark_image, tiff_load)
15743 (gif_clear_image, gif_load, imagemagick_load_image)
15744 (gs_clear_image, gs_load): Callers changed.
15745
15746 2011-06-10 Paul Eggert <eggert@cs.ucla.edu>
15747
15748 * buffer.h: Include <time.h>, for time_t.
15749 Needed to build on FreeBSD 8.2. Problem reported by Herbert J. Skuhra.
15750
15751 Fix minor problems found by static checking.
15752
15753 * image.c (PixelGetMagickColor): Declare if ImageMagick headers don't.
15754
15755 Make identifiers static if they are not used in other modules.
15756 * data.c (Qcompiled_function, Qframe, Qvector):
15757 * image.c (QimageMagick, Qsvg):
15758 * minibuf.c (Qmetadata):
15759 * window.c (resize_window_check, resize_root_window): Now static.
15760 * window.h (resize_window_check, resize_root_window): Remove decls.
15761
15762 * window.c (window_deletion_count, delete_deletable_window):
15763 Remove; unused.
15764 (window_body_lines): Now static.
15765 (Fdelete_other_windows_internal): Mark vars as initialized.
15766 Make sure 'resize_failed' is initialized.
15767 (run_window_configuration_change_hook): Rename local to avoid shadowing.
15768 (resize_window_apply): Remove unused local.
15769 * window.h (delete_deletable_window): Remove decl.
15770
15771 * image.c (gif_load, svg_load_image): Rename locals to avoid shadowing.
15772 (imagemagick_load_image): Fix pointer signedness problem by changing
15773 last arg from unsigned char * to char *. All uses changed.
15774 Also, fix a local for similar reasons.
15775 Remove unused locals. Remove locals to avoid shadowing.
15776 (fn_rsvg_handle_free): Remove; unused.
15777 (svg_load, svg_load_image): Fix pointer signedness problem.
15778 (imagemagick_load_image): Don't use garbage pointer image_wand.
15779
15780 * ftfont.c (ftfont_get_metrics, ftfont_drive_otf): Remove unused locals.
15781
15782 2011-06-10 Chong Yidong <cyd@stupidchicken.com>
15783
15784 * image.c (gif_load): Fix omitted cast error introduced by
15785 2011-06-06 change.
15786
15787 2011-06-10 Martin Rudalics <rudalics@gmx.at>
15788
15789 * window.h (resize_proportionally, orig_total_lines)
15790 (orig_top_line): Remove from window structure.
15791 (set_window_height, set_window_width, change_window_heights)
15792 (Fdelete_window): Remove prototypes.
15793 (resize_frame_windows): Remove duplicate declaration.
15794
15795 2011-06-10 Eli Zaretskii <eliz@gnu.org>
15796
15797 * window.h (resize_frame_windows, resize_window_check)
15798 (delete_deletable_window, resize_root_window)
15799 (resize_frame_windows): Declare prototypes.
15800
15801 * window.c (resize_window_apply): Make definition be "static" to
15802 match the prototype.
15803
15804 2011-06-10 Martin Rudalics <rudalics@gmx.at>
15805
15806 * window.c: Remove declarations of Qwindow_size_fixed,
15807 window_min_size_1, window_min_size_2, window_min_size,
15808 size_window, window_fixed_size_p, enlarge_window, delete_window.
15809 Remove static from declaration of Qdelete_window, it's
15810 temporarily needed by Fbury_buffer.
15811 (replace_window): Don't assign orig_top_line and
15812 orig_total_lines.
15813 (Fdelete_window, delete_window): Remove. Window deletion is
15814 handled by window.el.
15815 (window_loop): Remove DELETE_OTHER_WINDOWS case.
15816 Replace Fdelete_window calls with calls to Qdelete_window.
15817 (Fdelete_other_windows): Remove. Deleting other windows is
15818 handled by window.el.
15819 (window_fixed_size_p): Remove. Fixed-sizeness of windows is
15820 handled in window.el.
15821 (window_min_size_2, window_min_size_1, window_min_size): Remove.
15822 Window minimum sizes are handled in window.el.
15823 (shrink_windows, size_window, set_window_height)
15824 (set_window_width, change_window_heights, window_height)
15825 (window_width, CURBEG, CURSIZE, enlarge_window)
15826 (adjust_window_trailing_edge, Fadjust_window_trailing_edge)
15827 (Fenlarge_window, Fshrink_window): Remove. Window resizing is
15828 handled in window.el.
15829 (make_dummy_parent): Rename to make_parent_window and give it a
15830 second argument horflag.
15831 (make_window): Don't set resize_proportionally any more.
15832 (Fsplit_window): Remove. Windows are split in window.el.
15833 (save_restore_action, save_restore_orig_size)
15834 (shrink_window_lowest_first, save_restore_orig_size): Remove.
15835 Resize mini windows in window.el.
15836 (grow_mini_window, shrink_mini_window): Implement by calling
15837 Qresize_root_window_vertically, resize_window_check and
15838 resize_window_apply.
15839 (saved_window, Fset_window_configuration, save_window_save):
15840 Do not handle orig_top_line, orig_total_lines, and
15841 resize_proportionally.
15842 (window_min_height, window_min_width): Move to window.el.
15843 (keys_of_window): Move bindings for delete-other-windows,
15844 split-window, delete-window and enlarge-window to window.el.
15845
15846 * buffer.c: Temporarily extern Qdelete_window.
15847 (Fbury_buffer): Temporarily call Qdelete_window instead of
15848 Fdelete_window (Fbury_buffer will move to window.el soon).
15849
15850 * frame.c (set_menu_bar_lines_1): Remove code handling
15851 orig_top_line and orig_total_lines.
15852
15853 * dispnew.c (adjust_frame_glyphs_initially): Don't use
15854 set_window_height but set heights directly.
15855 (change_frame_size_1): Use resize_frame_windows.
15856
15857 * xdisp.c (init_xdisp): Don't use set_window_height but set
15858 heights directly.
15859
15860 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines):
15861 Use resize_frame_windows instead of change_window_heights and run
15862 run_window_configuration_change_hook.
15863
15864 * w32fns.c (x_set_tool_bar_lines): Use resize_frame_windows
15865 instead of change_window_heights and run
15866 run_window_configuration_change_hook.
15867
15868 2011-06-09 Martin Rudalics <rudalics@gmx.at>
15869
15870 * window.c (replace_window): Rename second argument REPLACEMENT to
15871 NEW. New third argument SETFLAG. Rewrite.
15872 (delete_window, make_dummy_parent): Call replace_window with
15873 third argument 1.
15874 (window_list_1): Move down in code.
15875 (run_window_configuration_change_hook): Move set_buffer part
15876 before select_frame_norecord part in order to unwind correctly.
15877 Rename count1 to count.
15878 (recombine_windows, delete_deletable_window, resize_root_window)
15879 (Fdelete_other_windows_internal)
15880 (Frun_window_configuration_change_hook, make_parent_window)
15881 (resize_window_check, resize_window_apply, Fresize_window_apply)
15882 (resize_frame_windows, Fsplit_window_internal)
15883 (Fdelete_window_internal, Fresize_mini_window_internal):
15884 New functions.
15885 (syms_of_window): New variables Vwindow_splits and Vwindow_nest.
15886
15887 2011-06-08 Martin Rudalics <rudalics@gmx.at>
15888
15889 * window.h (window): Add some new members to window structure -
15890 normal_lines, normal_cols, new_total, new_normal, clone_number,
15891 splits, nest, prev_buffers, next_buffers.
15892 (WINDOW_TOTAL_SIZE): Move here from window.c.
15893 (MIN_SAFE_WINDOW_WIDTH, MIN_SAFE_WINDOW_HEIGHT): Define here.
15894
15895 * window.c (Fwindow_height, Fwindow_width, Fwindow_full_width_p):
15896 Remove.
15897 (make_dummy_parent): Set new members of windows structure.
15898 (make_window): Move down in code. Handle new members of window
15899 structure.
15900 (Fwindow_clone_number, Fwindow_splits, Fset_window_splits)
15901 (Fwindow_nest, Fset_window_nest, Fwindow_new_total)
15902 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_prev_buffers)
15903 (Fset_window_prev_buffers, Fwindow_next_buffers)
15904 (Fset_window_next_buffers, Fset_window_clone_number):
15905 New functions.
15906 (Fwindow_hscroll, Fwindow_at, Fwindow_point, Fwindow_start)
15907 (Fwindow_end, Fwindow_line_height, Fset_window_dedicated_p):
15908 Doc-string fixes.
15909 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter):
15910 Argument WINDOW can be now internal window too.
15911 (Fwindow_use_time): Move up in code.
15912 (Fget_buffer_window): Rename argument FRAME to ALL-FRAMES.
15913 Rewrite doc-string.
15914 (Fset_window_configuration, saved_window)
15915 (Fcurrent_window_configuration, save_window_save): Handle new
15916 members of window structure.
15917 (WINDOW_TOTAL_SIZE, MIN_SAFE_WINDOW_WIDTH)
15918 (MIN_SAFE_WINDOW_HEIGHT): Move to window.h.
15919 (syms_of_window): New Lisp objects Qrecord_window_buffer,
15920 Qwindow_deletable_p, Qdelete_window, Qreplace_buffer_in_windows,
15921 Qget_mru_window, Qresize_root_window,
15922 Qresize_root_window_vertically, Qsafe, Qabove, Qbelow,
15923 Qauto_buffer_name; staticpro them.
15924
15925 2011-06-07 Martin Rudalics <rudalics@gmx.at>
15926
15927 * window.c (Fwindow_total_size, Fwindow_left_column)
15928 (Fwindow_top_line, window_body_lines, Fwindow_body_size)
15929 (Fwindow_list_1): New functions.
15930 (window_box_text_cols): Replace with window_body_cols.
15931 (Fwindow_width, Fscroll_left, Fscroll_right):
15932 Use window_body_cols instead of window_box_text_cols.
15933 (delete_window, Fset_window_configuration):
15934 Call delete_all_subwindows with window as argument.
15935 (delete_all_subwindows): Take a window as argument and not a
15936 structure. Rewrite.
15937 (window_loop): Remove handling of GET_LRU_WINDOW and
15938 GET_LARGEST_WINDOW.
15939 (Fget_lru_window, Fget_largest_window): Move to window.el.
15940
15941 * window.h: Extern window_body_cols instead of
15942 window_box_text_cols. delete_all_subwindows now takes a
15943 Lisp_Object as argument.
15944
15945 * indent.c (compute_motion, Fcompute_motion):
15946 Use window_body_cols instead of window_box_text_cols.
15947
15948 * frame.c (delete_frame): Call delete_all_subwindows with root
15949 window as argument.
15950
15951 2011-06-07 Daniel Colascione <dan.colascione@gmail.com>
15952
15953 * fns.c (Fputhash): Document return value.
15954
15955 2011-06-06 Chong Yidong <cyd@stupidchicken.com>
15956
15957 * image.c (gif_load): Implement gif89a spec "no disposal" method.
15958
15959 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
15960
15961 Cons<->int and similar integer overflow fixes (Bug#8794).
15962
15963 Check for overflow when converting integer to cons and back.
15964 * charset.c (Fdefine_charset_internal, Fdecode_char):
15965 Use cons_to_unsigned to catch overflow.
15966 (Fencode_char): Use INTEGER_TO_CONS.
15967 * composite.h (LGLYPH_CODE): Use cons_to_unsigned.
15968 (LGLYPH_SET_CODE): Use INTEGER_TO_CONS.
15969 * data.c (long_to_cons, cons_to_long): Remove.
15970 (cons_to_unsigned, cons_to_signed): New functions.
15971 These signal an error for invalid or out-of-range values.
15972 * dired.c (Ffile_attributes): Use INTEGER_TO_CONS.
15973 * fileio.c (Fset_visited_file_modtime): Use CONS_TO_INTEGER.
15974 * font.c (Ffont_variation_glyphs):
15975 * fontset.c (Finternal_char_font): Use INTEGER_TO_CONS.
15976 * lisp.h: Include <intprops.h>.
15977 (INTEGER_TO_CONS, CONS_TO_INTEGER): New macros.
15978 (cons_to_signed, cons_to_unsigned): New decls.
15979 (long_to_cons, cons_to_long): Remove decls.
15980 * undo.c (record_first_change): Use INTEGER_TO_CONS.
15981 (Fprimitive_undo): Use CONS_TO_INTEGER.
15982 * xfns.c (Fx_window_property): Likewise.
15983 * xselect.c: Include <limits.h>.
15984 (x_own_selection, selection_data_to_lisp_data):
15985 Use INTEGER_TO_CONS.
15986 (x_handle_selection_request, x_handle_selection_clear)
15987 (x_get_foreign_selection, Fx_disown_selection_internal)
15988 (Fx_get_atom_name, x_send_client_event): Use CONS_TO_INTEGER.
15989 (lisp_data_to_selection_data): Use cons_to_unsigned.
15990 (x_fill_property_data): Use cons_to_signed.
15991 Report values out of range.
15992
15993 Check for buffer and string overflow more precisely.
15994 * buffer.h (BUF_BYTES_MAX): New macro.
15995 * lisp.h (STRING_BYTES_MAX): New macro.
15996 * alloc.c (Fmake_string):
15997 * character.c (string_escape_byte8):
15998 * coding.c (coding_alloc_by_realloc):
15999 * doprnt.c (doprnt):
16000 * editfns.c (Fformat):
16001 * eval.c (verror):
16002 Use STRING_BYTES_MAX, not MOST_POSITIVE_FIXNUM,
16003 since they may not be the same number.
16004 * editfns.c (Finsert_char):
16005 * fileio.c (Finsert_file_contents):
16006 Likewise for BUF_BYTES_MAX.
16007
16008 * image.c: Use ptrdiff_t, not int, for sizes.
16009 (slurp_file): Switch from int to ptrdiff_t.
16010 All uses changed.
16011 (slurp_file): Check that file size fits in both size_t (for
16012 malloc) and ptrdiff_t (for sanity and safety).
16013
16014 * fileio.c (Fverify_visited_file_modtime): Avoid time overflow
16015 if b->modtime has its maximal value.
16016
16017 * dired.c (Ffile_attributes): Don't assume EMACS_INT has >32 bits.
16018
16019 Don't assume time_t can fit into int.
16020 * buffer.h (struct buffer.modtime): Now time_t, not int.
16021 * fileio.c (Fvisited_file_modtime): No need for time_t cast now.
16022 * undo.c (Fprimitive_undo): Use time_t, not int, for time_t value.
16023
16024 Minor fixes for signed vs unsigned integers.
16025 * character.h (MAYBE_UNIFY_CHAR):
16026 * charset.c (maybe_unify_char):
16027 * keyboard.c (read_char, reorder_modifiers):
16028 XINT -> XFASTINT, since the integer must be nonnegative.
16029 * ftfont.c (ftfont_spec_pattern):
16030 * keymap.c (access_keymap, silly_event_symbol_error):
16031 XUINT -> XFASTINT, since the integer must be nonnegative.
16032 (Fsingle_key_description, preferred_sequence_p): XUINT -> XINT,
16033 since it makes no difference and we prefer signed.
16034 * keyboard.c (record_char): Use XUINT when all the neighbors do.
16035 (access_keymap): NATNUMP -> INTEGERP, since the integer must be
16036 nonnegative.
16037
16038 2011-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
16039
16040 * window.h (Fwindow_frame): Declare.
16041
16042 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
16043
16044 * alloc.c: Simplify handling of large-request failures (Bug#8800).
16045 (SPARE_MEMORY): Always define.
16046 (LARGE_REQUEST): Remove.
16047 (memory_full): Use SPARE_MEMORY rather than LARGE_REQUEST.
16048
16049 2011-06-06 Martin Rudalics <rudalics@gmx.at>
16050
16051 * lisp.h: Move EXFUNS for Fframe_root_window,
16052 Fframe_first_window and Fset_frame_selected_window to window.h.
16053
16054 * window.h: Move EXFUNS for Fframe_root_window,
16055 Fframe_first_window and Fset_frame_selected_window here from
16056 lisp.h.
16057
16058 * frame.c (Fwindow_frame, Fframe_first_window)
16059 (Fframe_root_window, Fframe_selected_window)
16060 (Fset_frame_selected_window): Move to window.c.
16061 (Factive_minibuffer_window): Move to minibuf.c.
16062 (Fother_visible_frames_p): New function.
16063
16064 * minibuf.c (Factive_minibuffer_window): Move here from frame.c.
16065
16066 * window.c (decode_window, decode_any_window): Move up in code.
16067 (Fwindowp, Fwindow_live_p): Rewrite doc-strings.
16068 (inhibit_frame_unsplittable): Remove unused variable.
16069 (Fwindow_buffer): Move up and rewrite doc-string.
16070 (Fwindow_parent, Fwindow_vchild, Fwindow_hchild, Fwindow_next)
16071 (Fwindow_prev): New functions.
16072 (Fwindow_frame): Move here from frame.c. Accept any window as
16073 argument.
16074 (Fframe_root_window, Fframe_first_window)
16075 (Fframe_selected_window): Move here from frame.c. Accept frame
16076 or arbitrary window as argument. Update doc-strings.
16077 (Fminibuffer_window): Move up in code.
16078 (Fwindow_minibuffer_p): Move up in code and simplify.
16079 (Fset_frame_selected_window): Move here from frame.c.
16080 Marginal rewrite.
16081 (Fselected_window, select_window, Fselect_window): Move up in
16082 code. Minor doc-string fixes.
16083
16084 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
16085
16086 * alloc.c (memory_full) [SYSTEM_MALLOC]: Port to MacOS (Bug#8800).
16087 Do not assume that spare memory exists; that assumption is valid
16088 only if SYSTEM_MALLOC.
16089 (LARGE_REQUEST): New macro, so that the issue of large requests
16090 is separated from the issue of spare memory.
16091
16092 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
16093
16094 * editfns.c (Fformat): Correctly handle zero flag with hexadecimal
16095 format. (Bug#8806)
16096
16097 * gtkutil.c (xg_get_default_scrollbar_width): Avoid warning.
16098
16099 * xfns.c (x_set_scroll_bar_default_width): Move declarations
16100 before statements.
16101
16102 2011-06-05 Jan Djärv <jan.h.d@swipnet.se>
16103
16104 * gtkutil.c (xg_get_default_scrollbar_width): New function.
16105
16106 * gtkutil.h: Declare xg_get_default_scrollbar_width.
16107
16108 * xfns.c (x_set_scroll_bar_default_width): If USE_GTK, get
16109 min width by calling x_set_scroll_bar_default_width (Bug#8505).
16110
16111 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
16112
16113 * xdisp.c (single_display_spec_intangible_p): Remove declaration.
16114
16115 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
16116
16117 * xselect.c (x_clipboard_manager_save): Remove redundant arg.
16118 (x_clipboard_manager_save): Add return value.
16119 (x_clipboard_manager_error_1, x_clipboard_manager_error_2):
16120 New error handlers.
16121 (x_clipboard_manager_save_frame, x_clipboard_manager_save_all):
16122 Obey Vx_select_enable_clipboard_manager. Catch errors in
16123 x_clipboard_manager_save (Bug#8779).
16124 (Vx_select_enable_clipboard_manager): New variable.
16125 (x_get_foreign_selection): Reduce scope of x_catch_errors (Bug#8790).
16126
16127 2011-06-04 Dan Nicolaescu <dann@ics.uci.edu>
16128
16129 * emacs.c (main): Warn when starting a GTK emacs in daemon mode.
16130
16131 2011-06-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16132
16133 * fringe.c (update_window_fringes): Don't update overlay arrow bitmap
16134 in the current matrix if keep_current_p is non-zero.
16135
16136 2011-06-04 Eli Zaretskii <eliz@gnu.org>
16137
16138 * bidi.c (bidi_level_of_next_char): Fix last change.
16139
16140 2011-06-03 Eli Zaretskii <eliz@gnu.org>
16141
16142 Support bidi reordering of text covered by display properties.
16143
16144 * bidi.c (bidi_copy_it): Use offsetof instead of emulating it.
16145 (bidi_fetch_char, bidi_fetch_char_advance): New functions.
16146 (bidi_cache_search, bidi_cache_iterator_state)
16147 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
16148 (bidi_level_of_next_char, bidi_move_to_visually_next):
16149 Support character positions inside a run of characters covered by a
16150 display string.
16151 (bidi_paragraph_init, bidi_resolve_explicit_1)
16152 (bidi_level_of_next_char): Call bidi_fetch_char and
16153 bidi_fetch_char_advance instead of FETCH_CHAR and
16154 FETCH_CHAR_ADVANCE.
16155 (bidi_init_it): Initialize new members.
16156 (LRE_CHAR, RLE_CHAR, PDF_CHAR, LRO_CHAR, RLO_CHAR): Remove macro
16157 definitions.
16158 (bidi_explicit_dir_char): Lookup character type in bidi_type_table,
16159 instead of using explicit *_CHAR codes.
16160 (bidi_resolve_explicit, bidi_resolve_weak):
16161 Use FETCH_MULTIBYTE_CHAR instead of FETCH_CHAR, as reordering of
16162 bidirectional text is supported only in multibyte buffers.
16163 (bidi_init_it): Accept additional argument FRAME_WINDOW_P and use
16164 it to initialize the frame_window_p member of struct bidi_it.
16165 (bidi_cache_iterator_state, bidi_resolve_explicit_1)
16166 (bidi_resolve_explicit, bidi_resolve_weak)
16167 (bidi_level_of_next_char, bidi_move_to_visually_next): Abort if
16168 bidi_it->nchars is non-positive.
16169 (bidi_level_of_next_char): Don't try to lookup the cache for the
16170 next/previous character if nothing is cached there yet, or if we
16171 were just reseat()'ed to a new position.
16172
16173 * xdisp.c (set_cursor_from_row): Set start and stop points
16174 according to the row's direction when priming the loop that looks
16175 for the glyph on which to display cursor.
16176 (single_display_spec_intangible_p): Function deleted.
16177 (display_prop_intangible_p): Reimplement to call
16178 handle_display_spec instead of single_display_spec_intangible_p.
16179 Accept 3 additional arguments needed by handle_display_spec.
16180 This fixes incorrect cursor motion across display property with complex
16181 values: lists, `(when COND...)' forms, etc.
16182 (single_display_spec_string_p): Support property values that are
16183 lists with the argument STRING its top-level element.
16184 (display_prop_string_p): Fix the condition for processing a
16185 property that is a list to be consistent with handle_display_spec.
16186 (handle_display_spec): New function, refactored from the
16187 last portion of handle_display_prop.
16188 (compute_display_string_pos): Accept additional argument
16189 FRAME_WINDOW_P. Call handle_display_spec to determine whether the
16190 value of a `display' property is a "replacing spec".
16191 (handle_single_display_spec): Accept 2 additional arguments BUFPOS
16192 and FRAME_WINDOW_P. If IT is NULL, don't set up the iterator from
16193 the display property, but just return a value indicating whether
16194 the display property will replace the characters it covers.
16195 (Fcurrent_bidi_paragraph_direction): Initialize the nchars and
16196 frame_window_p members of struct bidi_it.
16197 (compute_display_string_pos, compute_display_string_end):
16198 New functions.
16199 (push_it): Accept second argument POSITION, where pop_it should
16200 jump to continue iteration.
16201 (reseat_1): Initialize bidi_it.disp_pos.
16202
16203 * keyboard.c (adjust_point_for_property): Adjust the call to
16204 display_prop_intangible_p to its new signature.
16205
16206 * dispextern.h (struct bidi_it): New member frame_window_p.
16207 (bidi_init_it): Update prototypes.
16208 (display_prop_intangible_p): Update prototype.
16209 (compute_display_string_pos, compute_display_string_end):
16210 Declare prototypes.
16211 (struct bidi_it): New members nchars and disp_pos. ch_len is now
16212 EMACS_INT.
16213
16214 2011-06-02 Paul Eggert <eggert@cs.ucla.edu>
16215
16216 Malloc failure behavior now depends on size of allocation.
16217 * alloc.c (buffer_memory_full, memory_full): New arg NBYTES.
16218 * lisp.h: Change signatures accordingly.
16219 * alloc.c, buffer.c, editfns.c, menu.c, minibuf.c, xterm.c:
16220 All callers changed. (Bug#8762)
16221
16222 * gnutls.c: Use Emacs's memory allocators.
16223 Without this change, the gnutls library would invoke malloc etc.
16224 directly, which causes problems on non-SYNC_INPUT hosts, and which
16225 runs afoul of improving memory_full behavior. (Bug#8761)
16226 (fn_gnutls_global_set_mem_functions): New macro or function pointer.
16227 (emacs_gnutls_global_init): Use it to specify xmalloc, xrealloc,
16228 xfree instead of the default malloc, realloc, free.
16229 (Fgnutls_boot): No need to check for memory allocation failure,
16230 since xmalloc does that for us.
16231
16232 Remove arbitrary limit of 2**31 entries in hash tables. (Bug#8771)
16233 * category.c (hash_get_category_set):
16234 * ccl.c (ccl_driver):
16235 * charset.c (Fdefine_charset_internal):
16236 * charset.h (struct charset.hash_index):
16237 * composite.c (get_composition_id, gstring_lookup_cache)
16238 (composition_gstring_put_cache):
16239 * composite.h (struct composition.hash_index):
16240 * dispextern.h (struct image.hash):
16241 * fns.c (next_almost_prime, larger_vector, cmpfn_eql)
16242 (cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
16243 (hashfn_equal, hashfn_user_defined, make_hash_table)
16244 (maybe_resize_hash_table, hash_lookup, hash_put)
16245 (hash_remove_from_table, hash_clear, sweep_weak_table, SXHASH_COMBINE)
16246 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector)
16247 (Fsxhash, Fgethash, Fputhash, Fmaphash):
16248 * image.c (make_image, search_image_cache, lookup_image)
16249 (xpm_put_color_table_h):
16250 * lisp.h (struct Lisp_Hash_Table):
16251 * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
16252 * print.c (print): Use 'EMACS_UINT' and 'EMACS_INT'
16253 for hashes and hash indexes, instead of 'unsigned' and 'int'.
16254 * alloc.c (allocate_vectorlike):
16255 Check for overflow in vector size calculations.
16256 * ccl.c (ccl_driver):
16257 Check for overflow when converting EMACS_INT to int.
16258 * fns.c, image.c: Remove unnecessary static decls that would otherwise
16259 need to be updated by these changes.
16260 * fns.c (make_hash_table, maybe_resize_hash_table):
16261 Check for integer overflow with large hash tables.
16262 (make_hash_table, maybe_resize_hash_table, Fmake_hash_table):
16263 Prefer the faster XFLOAT_DATA to XFLOATINT where either will do.
16264 (SXHASH_REDUCE): New macro.
16265 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector):
16266 Use it instead of discarding useful hash info with large hash values.
16267 (sxhash_float): New function.
16268 (sxhash): Use it. No more need for "& INTMASK" due to above changes.
16269 * lisp.h (FIXNUM_BITS): New macro, useful for SXHASH_REDUCE etc.
16270 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
16271 Rewrite to use FIXNUM_BITS, as this simplifies things.
16272 (next_almost_prime, larger_vector, sxhash, hash_lookup, hash_put):
16273 Adjust signatures to match updated version of code.
16274 (consing_since_gc): Now EMACS_INT, since a single hash table can
16275 use more than INT_MAX bytes.
16276
16277 2011-06-01 Dan Nicolaescu <dann@ics.uci.edu>
16278
16279 Make it possible to build with GCC-4.6+ -O2 -flto.
16280
16281 * emacs.c (__malloc_initialize_hook): Mark as EXTERNALLY_VISIBLE.
16282
16283 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
16284
16285 * minibuf.c (get_minibuffer, read_minibuf_unwind):
16286 Call minibuffer-inactive-mode.
16287
16288 2011-05-31 Juanma Barranquero <lekktu@gmail.com>
16289
16290 * makefile.w32-in ($(BLD)/data.$(O), $(BLD)/editfns.$(O)):
16291 Update dependencies.
16292
16293 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
16294
16295 * data.c (init_data): Remove code for UTS, this system is not
16296 supported anymore.
16297
16298 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
16299
16300 Don't force ./temacs to start in terminal mode.
16301
16302 * frame.c (make_initial_frame): Initialize faces in all cases, not
16303 only when CANNOT_DUMP is defined.
16304 * dispnew.c (init_display): Remove CANNOT_DUMP condition.
16305
16306 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
16307
16308 * dispnew.c (add_window_display_history): Use const for the string
16309 pointer. Remove declaration, not needed.
16310
16311 2011-05-31 Paul Eggert <eggert@cs.ucla.edu>
16312
16313 Use 'inline', not 'INLINE'.
16314 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00914.html>
16315 * alloc.c, fontset.c (INLINE): Remove.
16316 * alloc.c, bidi.c, charset.c, coding.c, dispnew.c, fns.c, image.c:
16317 * intervals.c, keyboard.c, process.c, syntax.c, textprop.c, w32term.c:
16318 * xdisp.c, xfaces.c, xterm.c: Replace all uses of INLINE with inline.
16319 * gmalloc.c (register_heapinfo): Use inline unconditionally.
16320 * lisp.h (LISP_MAKE_RVALUE): Use inline, not __inline__.
16321
16322 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
16323
16324 Make it possible to run ./temacs.
16325
16326 * callproc.c (set_initial_environment): Remove CANNOT_DUMP code,
16327 syms_of_callproc does the same thing. Remove test for
16328 "initialized", do it in the caller.
16329 * emacs.c (main): Avoid calling set_initial_environment when dumping.
16330
16331 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
16332
16333 * minibuf.c (Finternal_complete_buffer): Return `category' metadata.
16334 (read_minibuf): Use get_minibuffer.
16335 (syms_of_minibuf): Use DEFSYM.
16336 (Qmetadata): New var.
16337 * data.c (Qbuffer): Don't make it static.
16338 (syms_of_data): Use DEFSYM.
16339
16340 2011-05-31 Paul Eggert <eggert@cs.ucla.edu>
16341
16342 * ccl.c (CCL_CODE_RANGE): Allow negative numbers. (Bug#8751)
16343 (CCL_CODE_MIN): New macro.
16344
16345 2011-05-30 Paul Eggert <eggert@cs.ucla.edu>
16346
16347 * alloc.c (lisp_align_malloc): Omit unnecessary val==NULL tests.
16348
16349 * eval.c (Qdebug): Now static.
16350 * lisp.h (Qdebug): Remove decl. This reverts a part of the
16351 2011-04-26T11:26:05Z!dan.colascione@gmail.com that inadvertently undid part of
16352 2011-04-14T06:48:41Z!eggert@cs.ucla.edu.
16353
16354 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
16355
16356 * image.c: Various fixes to ImageMagick code comments.
16357 (Fimagemagick_types): Doc fix.
16358
16359 2011-05-29 Paul Eggert <eggert@cs.ucla.edu>
16360
16361 Minor fixes prompted by GCC 4.6.0 warnings.
16362
16363 * xselect.c (converted_selections, conversion_fail_tag): Now static.
16364
16365 * emacs.c [HAVE_X_WINDOWS]: Include "xterm.h".
16366 (x_clipboard_manager_save_all): Move extern decl to ...
16367 * xterm.h: ... here, so that it can be checked for consistency.
16368
16369 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
16370
16371 * xselect.c (x_clipboard_manager_save_frame)
16372 (x_clipboard_manager_save_all): New functions.
16373 (Fx_clipboard_manager_save): Lisp function deleted.
16374
16375 * emacs.c (Fkill_emacs): Call x_clipboard_manager_save_all.
16376 * frame.c (delete_frame): Call x_clipboard_manager_save_frame.
16377
16378 * xterm.h: Update prototype.
16379
16380 2011-05-28 William Xu <william.xwl@gmail.com>
16381
16382 * nsterm.m (ns_term_shutdown): Synchronize user defaults before
16383 exiting (Bug#8239).
16384
16385 2011-05-28 Jim Meyering <meyering@redhat.com>
16386
16387 Avoid a sign-extension bug in crypto_hash_function.
16388 * fns.c (to_uchar): Define.
16389 (crypto_hash_function): Use it to convert some newly-signed
16390 variables to unsigned, to avoid sign-extension bugs. For example,
16391 without this change, (md5 "truc") would evaluate to
16392 45723a2aff78ff4fff7fff1114760e62 rather than the expected
16393 45723a2af3788c4ff17f8d1114760e62. Reported by Antoine Levitt in
16394 https://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00883.html.
16395
16396 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
16397
16398 Integer overflow fixes.
16399
16400 * dbusbind.c: Serial number integer overflow fixes.
16401 (CHECK_DBUS_SERIAL_GET_SERIAL): New macro.
16402 (Fdbus_call_method_asynchronously, xd_read_message_1): Use a float
16403 to hold a serial number that is too large for a fixnum.
16404 (Fdbus_method_return_internal, Fdbus_method_error_internal):
16405 Check for serial numbers out of range. Decode any serial number
16406 that was so large that it became a float. (Bug#8722)
16407
16408 * dbusbind.c: Use XFASTINT rather than XUINT, and check for nonneg.
16409 (Fdbus_call_method, Fdbus_call_method_asynchronously):
16410 Use XFASTINT rather than XUINT when numbers are nonnegative.
16411 (xd_append_arg, Fdbus_method_return_internal):
16412 (Fdbus_method_error_internal): Likewise. Also, for unsigned
16413 arguments, check that Lisp number is nonnegative, rather than
16414 silently wrapping negative numbers around. (Bug#8722)
16415 (xd_read_message_1): Don't assume dbus_uint32_t can fit in int.
16416 (Bug#8722)
16417
16418 * data.c (arith_driver, Flsh): Avoid unnecessary casts to EMACS_UINT.
16419
16420 * ccl.c (ccl_driver): Redo slightly to avoid the need for 'unsigned'.
16421
16422 ccl: Add integer overflow checks.
16423 * ccl.c (CCL_CODE_MAX, GET_CCL_RANGE, GET_CCL_CODE, GET_CCL_INT):
16424 (IN_INT_RANGE): New macros.
16425 (ccl_driver): Use them to check for integer overflow when
16426 decoding a CCL program. Many of the new checks are whether XINT (x)
16427 fits in int; it doesn't always, on 64-bit hosts. The new version
16428 doesn't catch all possible integer overflows, but it's an
16429 improvement. (Bug#8719)
16430
16431 * alloc.c (make_event_array): Use XINT, not XUINT.
16432 There's no need for unsigned here.
16433
16434 * mem-limits.h (EXCEEDS_LISP_PTR) [!USE_LSB_TAG]: EMACS_UINT -> uintptr_t
16435 This follows up to the 2011-05-06 change that substituted uintptr_t
16436 for EMACS_INT. This case wasn't caught back then.
16437
16438 Rework Fformat to avoid integer overflow issues.
16439 * editfns.c: Include <float.h> unconditionally, as it's everywhere
16440 now (part of C89). Include <verify.h>.
16441 (MAX_10_EXP, CONVERTED_BYTE_SIZE): Remove; no longer needed.
16442 (pWIDE, pWIDElen, signed_wide, unsigned_wide): New defns.
16443 (Fformat): Avoid the prepass trying to compute sizes; it was only
16444 approximate and thus did not catch overflow reliably. Instead, walk
16445 through the format just once, formatting and computing sizes as we go,
16446 checking for integer overflow at every step, and allocating a larger
16447 buffer as needed. Keep track separately whether the format is
16448 multibyte. Keep only the most-recently calculated precision, rather
16449 than them all. Record whether each argument has been converted to
16450 string. Use EMACS_INT, not int, for byte and char and arg counts.
16451 Support field widths and precisions larger than INT_MAX. Avoid
16452 sprintf's undefined behavior with conversion specifications such as %#d
16453 and %.0c. Fix bug with strchr succeeding on '\0' when looking for
16454 flags. Fix bug with (format "%c" 256.0). Avoid integer overflow when
16455 formatting out-of-range floating point numbers with int
16456 formats. (Bug#8668)
16457
16458 * lisp.h (FIXNUM_OVERFLOW_P): Work even if arg is a NaN.
16459
16460 * data.c: Avoid integer truncation in expressions involving floats.
16461 * data.c: Include <intprops.h>.
16462 (arith_driver): When there's an integer overflow in an expression
16463 involving floating point, convert the integers to floating point
16464 so that the resulting value does not suffer from catastrophic
16465 integer truncation. For example, on a 64-bit host (* 4
16466 most-negative-fixnum 0.5) should yield about -4.6e+18, not zero.
16467 Do not rely on undefined behavior after integer overflow.
16468
16469 merge count_size_as_multibyte, parse_str_to_multibyte
16470 * character.c, character.h (count_size_as_multibyte):
16471 Rename from parse_str_to_multibyte; all uses changed.
16472 Check for integer overflow.
16473 * insdel.c, lisp.h (count_size_as_multibyte): Remove,
16474 since it's now a duplicate of the other. This is more of
16475 a character than a buffer op, so better that it's in character.c.
16476 * fns.c, print.c: Adjust to above changes.
16477
16478 2011-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
16479
16480 * xselect.c (x_convert_selection): Yet another int/Lisp_Object mixup.
16481
16482 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
16483
16484 * xselect.c: Fix minor problems prompted by GCC 4.6.0 warnings.
16485 (x_handle_selection_request, frame_for_x_selection): Remove unused vars.
16486 (x_clipboard_manager_save): Now static.
16487 (Fx_clipboard_manager_save): Rename local to avoid shadowing.
16488
16489 * fns.c: Fix minor problems prompted by GCC 4.6.0 warnings.
16490 (crypto_hash_function): Now static.
16491 Fix pointer signedness problems. Avoid unnecessary initializations.
16492
16493 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
16494
16495 * termhooks.h (Vselection_alist): Make it terminal-local.
16496
16497 * terminal.c (create_terminal): Initialize it.
16498
16499 * xselect.c: Support for clipboard managers.
16500 (Vselection_alist): Move to termhooks.h as terminal-local var.
16501 (LOCAL_SELECTION): New macro.
16502 (x_atom_to_symbol): Handle x_display_info_for_display fail case.
16503 (symbol_to_x_atom): Remove gratuitous arg.
16504 (x_handle_selection_request, lisp_data_to_selection_data)
16505 (x_get_foreign_selection, Fx_register_dnd_atom): Callers changed.
16506 (x_own_selection, x_get_local_selection, x_convert_selection):
16507 New arg, specifying work frame. Use terminal-local Vselection_alist.
16508 (some_frame_on_display): Delete unused function.
16509 (Fx_own_selection_internal, Fx_get_selection_internal)
16510 (Fx_disown_selection_internal, Fx_selection_owner_p)
16511 (Fx_selection_exists_p): New optional frame arg.
16512 (frame_for_x_selection, Fx_clipboard_manager_save): New functions.
16513 (x_handle_selection_clear): Don't treat other terminals with the
16514 same keyboard specially. Use the terminal-local Vselection_alist.
16515 (x_clear_frame_selections): Use Frun_hook_with_args.
16516
16517 * xterm.c (x_term_init): Intern ATOM and CLIPBOARD_MANAGER atoms.
16518
16519 * xterm.h: Add support for those atoms.
16520
16521 2011-05-26 Chong Yidong <cyd@stupidchicken.com>
16522
16523 * xselect.c: ICCCM-compliant handling of MULTIPLE targets.
16524 (converted_selections, conversion_fail_tag): New global variables.
16525 (x_selection_request_lisp_error): Free the above.
16526 (x_get_local_selection): Remove unnecessary code.
16527 (x_reply_selection_request): Args changed; handle arbitrary array
16528 of converted selections stored in converted_selections.
16529 Separate the XChangeProperty and SelectionNotify steps.
16530 (x_handle_selection_request): Rewrite to handle MULTIPLE target.
16531 (x_convert_selection): New function.
16532 (x_handle_selection_event): Simplify.
16533 (x_get_foreign_selection): Don't ignore incoming requests while
16534 waiting for an answer; this will fail when we implement
16535 SAVE_TARGETS, and seems unnecessary anyway.
16536 (selection_data_to_lisp_data): Recognize ATOM_PAIR type.
16537 (Vx_sent_selection_functions): Doc fix.
16538
16539 2011-05-26 Leo Liu <sdl.web@gmail.com>
16540
16541 * editfns.c (Ftranspose_regions): Allow empty regions. (Bug#8699)
16542
16543 2011-05-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16544
16545 * dispextern.h (struct glyph_row): New member fringe_bitmap_periodic_p.
16546
16547 * dispnew.c (shift_glyph_matrix, scrolling_window): Mark scrolled row
16548 for fringe update if it has periodic bitmap.
16549 (row_equal_p): Also compare left_fringe_offset, right_fringe_offset,
16550 and fringe_bitmap_periodic_p.
16551
16552 * fringe.c (get_fringe_bitmap_data): New function.
16553 (draw_fringe_bitmap_1, update_window_fringes): Use it.
16554 (update_window_fringes): Record periodicity of fringe bitmap in glyph
16555 row. Mark glyph row for fringe update if periodicity changed.
16556
16557 * xdisp.c (try_window_reusing_current_matrix): Don't mark scrolled row
16558 for fringe update unless it has periodic bitmap.
16559
16560 2011-05-25 Kenichi Handa <handa@m17n.org>
16561
16562 * xdisp.c (get_next_display_element): Set correct it->face_id for
16563 a static composition.
16564
16565 2011-05-24 Leo Liu <sdl.web@gmail.com>
16566
16567 * deps.mk (fns.o):
16568 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha1.h.
16569
16570 * fns.c (crypto_hash_function, Fsha1): New function.
16571 (Fmd5): Use crypto_hash_function.
16572 (syms_of_fns): Add Ssha1.
16573
16574 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
16575
16576 * gnutls.c: Remove unused macros.
16577 (fn_gnutls_transport_set_lowat, fn_gnutls_transport_set_pull_function):
16578 (fn_gnutls_transport_set_push_function) [!WINDOWSNT]:
16579 Remove macros that are defined and never used.
16580 Caught by gcc -Wunused-macros (GCC 4.6.0, Fedora 14).
16581
16582 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
16583
16584 * xselect.c (syms_of_xselect): Remove unused symbol SAVE_TARGETS.
16585 (Fx_get_selection_internal): Minor cleanup.
16586 (Fx_own_selection_internal): Rename arguments for consistency with
16587 select.el.
16588
16589 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
16590
16591 * xselect.c (QSAVE_TARGETS): New static var, to fix build failure.
16592
16593 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
16594
16595 * xselect.c (syms_of_xselect): Include character.h; use DEFSYM.
16596
16597 2011-05-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16598
16599 * dispnew.c (scrolling_window): Don't exclude the case that the
16600 last enabled row in the desired matrix touches the bottom boundary.
16601
16602 2011-05-21 Glenn Morris <rgm@gnu.org>
16603
16604 * Makefile.in ($(etc)/DOC): Make second command line even shorter.
16605 (SOME_MACHINE_OBJECTS): Replace FONT_OBJ by its maximal expansion,
16606 and add some more files.
16607
16608 2011-05-20 Eli Zaretskii <eliz@gnu.org>
16609
16610 * callproc.c (Fcall_process) [MSDOS]: Fix arguments to
16611 report_file_error introduced by the change from 2011-05-07.
16612
16613 2011-05-20 Paul Eggert <eggert@cs.ucla.edu>
16614
16615 * systime.h (Time): Define only if emacs is defined.
16616 This is to allow ../lib-src/profile.c to be compiled on FreeBSD,
16617 where the include path doesn't have X11/X.h by default. See
16618 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00561.html>.
16619
16620 2011-05-20 Kenichi Handa <handa@m17n.org>
16621
16622 * composite.c (find_automatic_composition): Fix previous change.
16623
16624 2011-05-20 Glenn Morris <rgm@gnu.org>
16625
16626 * lisp.mk: New file, split from Makefile.in.
16627 * Makefile.in (lisp): Move to separate file, inserted by @lisp_frag@.
16628 (shortlisp): Remove.
16629 ($(etc)/DOC): Edit lisp.mk rather than using $shortlisp.
16630
16631 2011-05-19 Glenn Morris <rgm@gnu.org>
16632
16633 * Makefile.in (MSDOS_SUPPORT_REAL, MSDOS_SUPPORT, NS_SUPPORT)
16634 (REAL_MOUSE_SUPPORT, GPM_MOUSE_SUPPORT, MOUSE_SUPPORT, TOOLTIP_SUPPORT)
16635 (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT, WINDOW_SUPPORT): Remove.
16636 (lisp): Set the order to that of loadup.el.
16637 (shortlisp): Make it a copy of $lisp.
16638 (SOME_MACHINE_LISP): Remove.
16639 ($(etc)/DOC): Depend just on $lisp, not $SOME_MACHINE_LISP too.
16640 Use just $shortlisp, not $SOME_MACHINE_LISP too.
16641
16642 2011-05-18 Kenichi Handa <handa@m17n.org>
16643
16644 * composite.c (CHAR_COMPOSABLE_P): Add more check for efficiency.
16645 (BACKWARD_CHAR): Wrap the arg STOP by parenthesis.
16646 (find_automatic_composition): Mostly rewrite for efficiency.
16647
16648 2011-05-18 Juanma Barranquero <lekktu@gmail.com>
16649
16650 * makefile.w32-in: Update dependencies.
16651
16652 2011-05-18 Christoph Scholtes <cschol2112@googlemail.com>
16653
16654 * menu.c: Include limits.h (fixes the MS-Windows build broken by
16655 2011-06-18T18:49:19Z!cyd@stupidchicken.com).
16656
16657 2011-05-18 Paul Eggert <eggert@cs.ucla.edu>
16658
16659 Fix some integer overflow issues, such as string length overflow.
16660
16661 * insdel.c (count_size_as_multibyte): Check for string overflow.
16662
16663 * character.c (lisp_string_width): Check for string overflow.
16664 Use EMACS_INT, not int, for string indexes and lengths; in
16665 particular, 2nd arg is now EMACS_INT, not int. Do not crash if
16666 the resulting string length overflows an EMACS_INT; instead,
16667 report a string overflow if no precision given. When checking for
16668 precision exhaustion, use a check that cannot possibly have
16669 integer overflow. (Bug#8675)
16670 * character.h (lisp_string_width): Adjust to new signature.
16671
16672 * alloc.c (string_overflow): New function.
16673 (Fmake_string): Use it. This doesn't change behavior, but saves
16674 a few bytes and will simplify future changes.
16675 * character.c (string_escape_byte8): Likewise.
16676 * lisp.h (string_overflow): New decl.
16677
16678 Fixups, following up to the user-interface timestamp change.
16679 * nsterm.m (last_mouse_movement_time, ns_mouse_position): Use Time
16680 for UI timestamps, instead of unsigned long.
16681 * msdos.c (mouse_get_pos): Likewise.
16682 * w32inevt.c (movement_time, w32_console_mouse_position): Likewise.
16683 * w32gui.h (Time): Define by including "systime.h" rather than by
16684 declaring it ourselves. (Bug#8664)
16685
16686 * dispextern.h (struct image): Don't assume time_t <= unsigned long.
16687 * image.c (clear_image_cache): Likewise.
16688
16689 * term.c (term_mouse_position): Don't assume time_t wraparound.
16690
16691 Be more systematic about user-interface timestamps.
16692 Before, the code sometimes used 'Time', sometimes 'unsigned long',
16693 and sometimes 'EMACS_UINT', to represent these timestamps.
16694 This change causes it to use 'Time' uniformly, as that's what X uses.
16695 This makes the code easier to follow, and makes it easier to catch
16696 integer overflow bugs such as Bug#8664.
16697 * frame.c (Fmouse_position, Fmouse_pixel_position):
16698 Use Time, not unsigned long, for user-interface timestamps.
16699 * keyboard.c (last_event_timestamp, kbd_buffer_get_event): Likewise.
16700 (button_down_time, make_lispy_position, make_lispy_movement): Likewise.
16701 * keyboard.h (last_event_timestamp): Likewise.
16702 * menu.c (Fx_popup_menu) [!HAVE_X_WINDOWS]: Likewise.
16703 * menu.h (xmenu_show): Likewise.
16704 * term.c (term_mouse_position): Likewise.
16705 * termhooks.h (struct input_event.timestamp): Likewise.
16706 (struct terminal.mouse_position_hook): Likewise.
16707 * xmenu.c (create_and_show_popup_menu, xmenu_show): Likewise.
16708 * xterm.c (XTmouse_position, x_scroll_bar_report_motion): Likewise.
16709 * systime.h (Time): New decl. Pull it in from <X11/X.h> if
16710 HAVE_X_WINDOWS, otherwise define it as unsigned long, which is
16711 what it was before.
16712 * menu.h, termhooks.h: Include "systime.h", for Time.
16713
16714 * keyboard.c (make_lispy_event): Fix problem in integer overflow.
16715 Don't assume that the difference between two unsigned long values
16716 can fit into an integer. At this point, we know button_down_time
16717 <= event->timestamp, so the difference must be nonnegative, so
16718 there's no need to cast the result if double-click-time is
16719 nonnegative, as it should be; check that it's nonnegative, just in
16720 case. This bug is triggered when events are more than 2**31 ms
16721 apart (about 25 days). (Bug#8664)
16722
16723 * xselect.c (last_event_timestamp): Remove duplicate decl.
16724 (x_own_selection): Remove needless cast to unsigned long.
16725
16726 * xmenu.c (set_frame_menubar): Use int, not EMACS_UINT, for indexes
16727 that always fit in int. Use a sentinel instead of a counter, to
16728 avoid a temp and to allay GCC's concerns about possible int overflow.
16729 * frame.h (struct frame): Use int for menu_bar_items_used
16730 instead of EMACS_INT, since it always fits in int.
16731
16732 * menu.c (grow_menu_items): Check for int overflow.
16733
16734 * xmenu.c (set_frame_menubar): Don't mishandle vectors with no nils.
16735
16736 * xterm.c: Use EMACS_INT for Emacs modifiers, and int for X modifiers.
16737 Before, the code was not consistent. These values cannot exceed
16738 2**31 - 1 so there's no need to make them unsigned.
16739 (x_x_to_emacs_modifiers): Accept int and return EMACS_INT.
16740 (x_emacs_to_x_modifiers): Accept EMACS_INT and return int.
16741 (x_x_to_emacs_modifiers, x_emacs_to_x_modifiers): Reject non-integers
16742 as modifiers.
16743 * xterm.h (x_x_to_emacs_modifiers): Adjust to signature change.
16744
16745 * lisp.h (XINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_INT.
16746 (XUINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_UINT.
16747 Otherwise, GCC 4.6.0 warns about printf (pI, XINT (...)),
16748 presumably because the widths might not match.
16749
16750 * window.c (size_window): Avoid needless test at loop start.
16751
16752 2011-05-18 Courtney Bane <emacs-bugs-7626@cbane.org> (tiny change)
16753
16754 * term.c (Fresume_tty): Restore hooks before reinitializing (bug#8687).
16755
16756 2011-05-12 Drew Adams <drew.adams@oracle.com>
16757
16758 * textprop.c (Fprevious_single_char_property_change): Doc fix (bug#8655).
16759
16760 2011-05-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16761
16762 * w32term.c (w32_draw_fringe_bitmap): Rename local vars `left' and
16763 `width' to `bar_area_x' and `bar_area_width', respectively.
16764 (x_scroll_run): Take account of fringe background extension.
16765
16766 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
16767 Rename local vars `left' and `width' to `bar_area_x' and
16768 `bar_area_width', respectively.
16769 (x_scroll_run) [USE_TOOLKIT_SCROLL_BARS]: Take account of fringe
16770 background extension.
16771
16772 2011-05-10 Jim Meyering <meyering@redhat.com>
16773
16774 * xdisp.c (x_intersect_rectangles): Fix typo "the the -> the".
16775
16776 2011-05-10 Juanma Barranquero <lekktu@gmail.com>
16777
16778 * image.c (Finit_image_library): Return t for built-in image types,
16779 like pbm and xbm. (Bug#8640)
16780
16781 2011-05-09 Andreas Schwab <schwab@linux-m68k.org>
16782
16783 * w32menu.c (set_frame_menubar): Fix submenu allocation.
16784
16785 2011-05-07 Eli Zaretskii <eliz@gnu.org>
16786
16787 * w32console.c (Fset_screen_color): Doc fix.
16788 (Fget_screen_color): New function.
16789 (syms_of_ntterm): Defsubr it.
16790
16791 * callproc.c (call_process_cleanup) [MSDOS]: Don't close and
16792 unlink the temporary file if Fcall_process didn't create it in the
16793 first place.
16794 (Fcall_process) [MSDOS]: Don't create tempfile if stdout of the
16795 child process will be redirected to a file specified with `:file'.
16796 Don't try to re-open tempfile in that case, and set fd[0] to -1 as
16797 cue to call_process_cleanup not to close that handle.
16798
16799 2011-05-07 Ben Key <bkey76@gmail.com>
16800
16801 * makefile.w32-in: The bootstrap-temacs rule now makes use of
16802 one of two shell specific rules, either bootstrap-temacs-CMD or
16803 bootstrap-temacs-SH. The bootstrap-temacs-SH rule is identical
16804 to the previous implementation of the bootstrap-temacs rule.
16805 The bootstrap-temacs-CMD rule is similar to the previous
16806 implementation of the bootstrap-temacs rule except that it
16807 makes use of the ESC_CFLAGS variable instead of the CFLAGS
16808 variable.
16809
16810 These changes, along with some changes to nt/configure.bat,
16811 nt/gmake.defs, and nt/nmake.defs, are required to extend my
16812 earlier fix to add support for --cflags and --ldflags options
16813 that include quotes so that it works whether make uses cmd or
16814 sh as the shell.
16815
16816 2011-05-06 Michael Albinus <michael.albinus@gmx.de>
16817
16818 * dbusbind.c (QCdbus_type_unix_fd): Declare static.
16819 (xd_remove_watch): Don't check QCdbus_type_unix_fd for SYMBOLP, it
16820 is a constant.
16821 (Fdbus_init_bus, xd_read_queued_messages): Bus can be a symbol or
16822 a string. Handle both cases.
16823 (Fdbus_call_method_asynchronously, Fdbus_register_signal)
16824 (Fdbus_register_method): Use Qinvalid_function.
16825
16826 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
16827
16828 * makefile.w32-in: Update dependencies.
16829 (LISP_H): Add inttypes.h and stdin.h.
16830 (PROCESS_H): Add unistd.h.
16831
16832 2011-05-06 Eli Zaretskii <eliz@gnu.org>
16833
16834 * lread.c: Include limits.h (fixes the MS-Windows build broken by
16835 2011-05-06T07:13:19Z!eggert@cs.ucla.edu).
16836
16837 2011-05-06 Paul Eggert <eggert@cs.ucla.edu>
16838
16839 * image.c (Finit_image_library) [!HAVE_NTGUI]: Omit unused local.
16840
16841 * term.c (vfatal): Remove stray call to va_end.
16842 It's not needed and the C Standard doesn't allow it here anyway.
16843
16844 Use C99's va_copy to avoid undefined behavior on x86-64 GNU/Linux.
16845 * eval.c (verror): doprnt a copy of ap, not the original. (Bug#8545)
16846
16847 * eval.c (verror): OK to create a string of up to MOST_POSITIVE_FIXNUM
16848 bytes.
16849
16850 * term.c: Don't include <stdarg.h>, as <lisp.h> does that.
16851
16852 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
16853
16854 * process.c (Fformat_network_address): Fix typo: args2 -> *args2.
16855
16856 * xmenu.c (set_frame_menubar): Fix typo: int * -> int (3 times).
16857
16858 * coding.c (detect_coding_charset): Fix typo: * 2 -> *4 (Bug#8601).
16859
16860 * charset.h (struct charset.code_space): Now has 15 elements, not 16.
16861 * charset.c (Fdefine_charset_internal): Don't initialize
16862 charset.code_space[15]. The value was garbage, on hosts with
16863 32-bit int (Bug#8600).
16864
16865 * lread.c (read_integer): Be more consistent with string-to-number.
16866 Use string_to_number to do the actual conversion; this avoids
16867 rounding errors and fixes some other screwups. Without this fix,
16868 for example, #x1fffffffffffffff was misread as -2305843009213693952.
16869 (digit_to_number): Move earlier, for benefit of read_integer.
16870 Return -1 if the digit is out of range for the base, -2 if it is
16871 not a digit in any supported base. (Bug#8602)
16872
16873 * doprnt.c (doprnt): Support arbitrary pI values, such as "I64".
16874
16875 * dispnew.c (scrolling_window): Return 1 if we scrolled,
16876 to match comment at start of function. This also removes a
16877 GCC warning about overflow in a 32+64-bit port.
16878
16879 * lisp.h (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Simplify.
16880
16881 * dbusbind.c: Do not use XPNTR on a value that may be an integer.
16882 Reported by Stefan Monnier in
16883 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00919.html>.
16884 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
16885 Use SYMBOLP-guarded XSYMBOL, not XPNTR.
16886
16887 * lisp.h (EMACS_INTPTR): Remove. All uses changed to intptr_t.
16888 (EMACS_UINTPTR): Likewise, with uintptr_t.
16889
16890 * lisp.h: Prefer 64-bit EMACS_INT if available.
16891 (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Define to 64-bit
16892 on 32-bit hosts that have 64-bit int, so that they can access
16893 large files.
16894 However, temporarily disable this change unless the temporary
16895 symbol WIDE_EMACS_INT is defined.
16896
16897 * lread.c, process.c: Do not include <inttypes.h>; lisp.h does it now.
16898
16899 Prefer intptr_t/uintptr_t for integers the same widths as pointers.
16900 This removes an assumption that EMACS_INT and long are the same
16901 width as pointers. The assumption is true for Emacs porting targets
16902 now, but we want to make other targets possible.
16903 * lisp.h: Include <inttypes.h>, for INTPTR_MAX, UINTPTR_MAX.
16904 (EMACS_INTPTR, EMACS_UINTPTR): New macros.
16905 In the rest of the code, change types of integers that hold casted
16906 pointers to EMACS_INTPTR and EMACS_UINTPTR, systematically
16907 replacing EMACS_INT, long, EMACS_UINT, and unsigned long.
16908 (XTYPE): Don't cast arg to EMACS_UINT; normally is not needed.
16909 (XSET): Cast type of XTYPE arg to EMACS_INTPTR; it is needed here.
16910 No need to cast type when ORing.
16911 (XPNTR): Return a value of type EMACS_INTPTR or EMACS_UINTPTR.
16912 * alloc.c (lisp_align_malloc): Remove a no-longer-needed cast.
16913 * doc.c (store_function_docstring): Use EMACS_INTPTR, so as not to
16914 assume EMACS_INT is the same width as char *.
16915 * gtkutil.c (xg_gtk_scroll_destroy, xg_tool_bar_button_cb):
16916 (xg_tool_bar_callback, xg_tool_bar_help_callback, xg_make_tool_item):
16917 Remove no-longer-needed casts.
16918 (xg_create_scroll_bar, xg_tool_bar_button_cb, xg_tool_bar_callback):
16919 (xg_tool_bar_help_callback, xg_make_tool_item):
16920 Use EMACS_INTPTR to hold an integer
16921 that will be cast to void *; this can avoid a GCC warning
16922 if EMACS_INT is not the same width as void *.
16923 * menu.c (find_and_call_menu_selection): Remove no-longer-needed cast.
16924 * xdisp.c (display_echo_area_1, resize_mini_window_1):
16925 (current_message_1, set_message_1):
16926 Use a local to convert to proper width without a cast.
16927 * xmenu.c (dialog_selection_callback): Likewise.
16928
16929 * sysdep.c (get_random): Don't assume EMACS_INT is no wider than long.
16930 Also, don't assume VALBITS / RAND_BITS is less than 5,
16931 and don't rely on undefined behavior when shifting a 1 left into
16932 the sign bit.
16933 * lisp.h (get_random): Change signature to match.
16934
16935 * lread.c (hash_string): Use size_t, not int, for hash computation.
16936 Normally we prefer signed values; but hashing is special, because
16937 it's better to use unsigned division on hash table sizes so that
16938 the remainder is nonnegative. Also, size_t is the natural width
16939 for hashing into memory. The previous code used 'int', which doesn't
16940 retain enough info to hash well into very large tables.
16941 (oblookup, oblookup_last_bucket_number, Funintern): Likewise.
16942
16943 * dbusbind.c: Don't possibly lose pointer info when converting.
16944 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
16945 Use XPNTR rather than XHASH, so that the high-order bits of
16946 the pointer aren't lost when converting through void *.
16947
16948 * eval.c (Fautoload): Don't double-shift a pointer.
16949
16950 * fns.c (Frandom): Let EMACS_UINT be wider than unsigned long.
16951
16952 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
16953
16954 * gnutls.c (DEF_GNUTLS_FN):
16955 * image.c (DEF_IMGLIB_FN): Make function pointers static.
16956
16957 2011-05-05 Andreas Schwab <schwab@linux-m68k.org>
16958
16959 * lread.c (lisp_file_lexically_bound_p): Stop scanning at end
16960 marker. (Bug#8610)
16961
16962 2011-05-05 Eli Zaretskii <eliz@gnu.org>
16963
16964 * w32heap.c (allocate_heap) [USE_LISP_UNION_TYPE || USE_LSB_TAG]:
16965 New version that can reserve upto 2GB of heap space.
16966
16967 2011-05-05 Chong Yidong <cyd@stupidchicken.com>
16968
16969 * nsfns.m (Fns_read_file_name): Doc fix (Bug#8534).
16970
16971 2011-05-05 Teodor Zlatanov <tzz@lifelogs.com>
16972
16973 * gnutls.c (fn_gnutls_certificate_set_x509_key_file): Add alias to
16974 `gnutls_certificate_set_x509_key_file'.
16975
16976 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
16977
16978 * makefile.w32-in ($(BLD)/image.$(O), $(BLD)/process.$(O)):
16979 Update dependencies.
16980
16981 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
16982
16983 * gnutls.h (emacs_gnutls_write, emacs_gnutls_read):
16984 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
16985 Remove unused parameter `fildes'.
16986 * process.c (read_process_output, send_process): Don't pass it.
16987
16988 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
16989
16990 Fix previous change: the library cache is defined in w32.c.
16991 * image.c (CACHE_IMAGE_TYPE) [!HAVE_NTGUI]: Define to noop.
16992 (Finit_image_library): Wrap Vlibrary_cache on "#ifdef HAVE_NTGUI".
16993
16994 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
16995
16996 Implement dynamic loading of GnuTLS on Windows.
16997
16998 * gnutls.h (GNUTLS_EMACS_ERROR_NOT_LOADED): New macro.
16999 (emacs_gnutls_write, emacs_gnutls_read): Mark as extern.
17000 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
17001 Declare.
17002
17003 * gnutls.c (Qgnutls_dll): Define.
17004 (DEF_GNUTLS_FN, LOAD_GNUTLS_FN): New macros.
17005 (gnutls_*): Declare function pointers.
17006 (init_gnutls_functions): New function to initialize function pointers.
17007 (emacs_gnutls_handshake, Fgnutls_error_string, Fgnutls_deinit)
17008 (emacs_gnutls_global_init, Fgnutls_bye): Use function pointers.
17009 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
17010 Wrappers for gnutls_record_check_pending and gnutls_transport_set_errno.
17011 (emacs_gnutls_write, emacs_gnutls_read)
17012 (emacs_gnutls_handle_error, Fgnutls_error_fatalp)
17013 (Fgnutls_available_p): New function.
17014 (Fgnutls_boot): Call Fgnutls_available_p. Use function pointers.
17015 (syms_of_gnutls) <Qgnutls_dll>: Initialize and staticpro it.
17016 (syms_of_gnutls) <Sgnutls_available_p>: defsubr it.
17017
17018 * image.c: Include w32.h.
17019 (Vimage_type_cache): Delete.
17020 (syms_of_image) <Vimage_type_cache>: Don't initialize and staticpro it.
17021 (CACHE_IMAGE_TYPE, Finit_image_library): Use Vlibrary_cache instead.
17022 (w32_delayed_load): Move to w32.c.
17023
17024 * w32.h (VlibraryCache, QCloaded_from, w32_delayed_load): Declare.
17025
17026 * w32.c (QCloaded_from, Vlibrary_cache): Define.
17027 (w32_delayed_load): Move from image.c. When loading a library, record
17028 its filename in the :loaded-from property of the library id.
17029 (globals_of_w32) <QCloaded_from, Vlibrary_cache>:
17030 Initialize and staticpro them.
17031 (emacs_gnutls_pull, emacs_gnutls_push): Call emacs_gnutls_* functions.
17032
17033 * process.c: Include lisp.h before w32.h, not after.
17034 (wait_reading_process_output): Call emacs_gnutls_record_check_pending
17035 instead of gnutls_record_check_pending.
17036
17037 * callproc.c, emacs.c: Include lisp.h before w32.h, not after.
17038
17039 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
17040
17041 * gnutls.c (Fgnutls_boot): Support :keylist and :crlfiles options
17042 instead of :keyfiles. Give GnuTLS the keylist and the CRL lists
17043 as passed in.
17044
17045 2011-05-03 Jan Djärv <jan.h.d@swipnet.se>
17046
17047 * xterm.c (x_set_frame_alpha): Do not set property on anything
17048 else than FRAME_X_OUTER_WINDOW (Bug#8608).
17049
17050 2011-05-02 Juanma Barranquero <lekktu@gmail.com>
17051
17052 * sysdep.c (get_tty_size) [WINDOWSNT]: Implement. (Bug#8596)
17053
17054 2011-05-02 Juanma Barranquero <lekktu@gmail.com>
17055
17056 * gnutls.c (Qgnutls_log_level, Qgnutls_code, Qgnutls_anon)
17057 (Qgnutls_x509pki, Qgnutls_e_interrupted, Qgnutls_e_again)
17058 (Qgnutls_e_invalid_session, Qgnutls_e_not_ready_for_handshake)
17059 (gnutls_global_initialized, Qgnutls_bootprop_priority)
17060 (Qgnutls_bootprop_trustfiles, Qgnutls_bootprop_keyfiles)
17061 (Qgnutls_bootprop_callbacks, Qgnutls_bootprop_loglevel)
17062 (Qgnutls_bootprop_hostname, Qgnutls_bootprop_verify_flags)
17063 (Qgnutls_bootprop_verify_error, Qgnutls_bootprop_verify_hostname_error)
17064 (Qgnutls_bootprop_callbacks_verify): Make static.
17065
17066 2011-05-01 Andreas Schwab <schwab@linux-m68k.org>
17067
17068 * callproc.c: Indentation fixup.
17069
17070 * sysdep.c (wait_for_termination_1): Make static.
17071 (wait_for_termination, interruptible_wait_for_termination):
17072 Move after wait_for_termination_1.
17073
17074 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
17075
17076 * sysdep.c (interruptible_wait_for_termination): New function
17077 which is like wait_for_termination, but allows keyboard
17078 interruptions.
17079
17080 * callproc.c (Fcall_process): Add (:file "file") as an option for
17081 the STDOUT buffer.
17082 (Fcall_process_region): Ditto.
17083
17084 2011-04-30 Eli Zaretskii <eliz@gnu.org>
17085
17086 * dosfns.c (Fint86, Fdos_memget, Fdos_memput): Use `ASIZE (FOO)'
17087 rather than `XVECTOR (FOO)->size'.
17088
17089 * process.c: Remove HAVE_INTTYPES_H condition from inclusion of
17090 inttypes.h, as a gnulib replacement is used if it not available in
17091 system headers.
17092
17093 2011-04-21 Eli Zaretskii <eliz@gnu.org>
17094
17095 Lift the MOST_POSITIVE_FIXNUM/4 limitation on visited files.
17096 * fileio.c (Finsert_file_contents): Don't limit file size to 1/4
17097 of MOST_POSITIVE_FIXNUM. (Bug#8528)
17098
17099 * coding.c (coding_alloc_by_realloc): Error out if destination
17100 will grow beyond MOST_POSITIVE_FIXNUM.
17101 (decode_coding_emacs_mule): Abort if there isn't enough place in
17102 charbuf for the composition carryover bytes. Reserve an extra
17103 space for up to 2 characters produced in a loop.
17104 (decode_coding_iso_2022): Abort if there isn't enough place in
17105 charbuf for the composition carryover bytes.
17106
17107 2011-04-21 Eli Zaretskii <eliz@gnu.org>
17108
17109 * doprnt.c (doprnt) [!HAVE_LONG_LONG_INT]: Error out instead of
17110 aborting when %lld or %lll format is passed.
17111 [!HAVE_UNSIGNED_LONG_LONG_INT]: Error out instead of aborting when
17112 %llo or %llx format is passed. (Bug#8545)
17113
17114 * window.c (window_scroll_line_based): Use a marker instead of
17115 simple variables to record original value of point. (Bug#7952)
17116
17117 * doprnt.c (doprnt): Fix the case where a multibyte sequence
17118 produced by %s or %c overflows available buffer space. (Bug#8545)
17119
17120 2011-04-28 Paul Eggert <eggert@cs.ucla.edu>
17121
17122 * doprnt.c (doprnt): Omit useless test; int overflow check (Bug#8545).
17123 (SIZE_MAX): Move defn after all includes, as they might #define it.
17124
17125 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
17126
17127 * w32.c (init_environment): Warn about defaulting HOME to C:\.
17128
17129 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
17130
17131 * keyboard.c (Qdelayed_warnings_hook): Define.
17132 (command_loop_1): Run `delayed-warnings-hook'
17133 if Vdelayed_warnings_list is non-nil.
17134 (syms_of_keyboard) <delayed-warnings-hook>: DEFSYM it.
17135 (syms_of_keyboard) <delayed-warnings-list>: DEFVAR_LISP it.
17136
17137 2011-04-28 Eli Zaretskii <eliz@gnu.org>
17138
17139 * doprnt.c (doprnt): Don't return value smaller than the buffer
17140 size if the message was truncated. (Bug#8545).
17141
17142 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
17143
17144 * w32fns.c (Fx_change_window_property, Fx_delete_window_property)
17145 (Fx_window_property): #if-0 the whole functions, not just the bodies.
17146
17147 2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
17148
17149 * doprnt.c (doprnt): Support "ll" length modifier, for long long.
17150
17151 2011-04-27 Juanma Barranquero <lekktu@gmail.com>
17152
17153 * makefile.w32-in: Update dependencies.
17154
17155 2011-04-27 Eli Zaretskii <eliz@gnu.org>
17156
17157 Improve `doprnt' and its usage. (Bug#8545)
17158 * doprnt.c (doprnt): Make sure `format' is never accessed beyond
17159 `format_end'. Remove support for %l as a conversion specifier.
17160 Don't use xrealloc. Improve diagnostics when the %l size modifier
17161 is used. Update the commentary.
17162
17163 * eval.c (verror): Simplify calculation of size_t.
17164
17165 * coding.c (Ffind_operation_coding_system): Fix diagnostic error
17166 messages.
17167
17168 2011-04-27 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
17169
17170 * buffer.c (init_buffer) [USE_MMAP_FOR_BUFFERS]: Adjust to aliasing
17171 change.
17172
17173 2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
17174
17175 * nsmenu.m: Replace all uses of XVECTOR with ASIZE and AREF.
17176 This makes this file independent of the recent pseudovector change.
17177
17178 2011-04-26 Paul Eggert <eggert@cs.ucla.edu>
17179
17180 * keyboard.c (handle_user_signal): Fix pointer signedness problem.
17181
17182 * gnutls.c (emacs_gnutls_handle_error): Remove unused local.
17183 (Fgnutls_boot): gnutls_certificate_verify_peers2 wants unsigned *.
17184 Remove unused local.
17185 (emacs_gnutls_write): Don't use uninitialized rtnval if nbyte <= 0.
17186
17187 * lisp.h: Fix a problem with aliasing and vector headers. (Bug#8546)
17188 GCC 4.6.0 optimizes based on type-based alias analysis.
17189 For example, if b is of type struct buffer * and v of type struct
17190 Lisp_Vector *, then gcc -O2 was incorrectly assuming that &b->size
17191 != &v->size, and therefore "v->size = 1; b->size = 2; return
17192 v->size;" must therefore return 1. This assumption is incorrect
17193 for Emacs, since it type-puns struct Lisp_Vector * with many other
17194 types. To fix this problem, this patch adds a new type struct
17195 vectorlike_header that documents the constraints on layout of vectors
17196 and pseudovectors, and helps optimizing compilers not get fooled
17197 by Emacs's type punning. It also adds the macros XSETTYPED_PVECTYPE
17198 XSETTYPED_PSEUDOVECTOR, TYPED_PSEUDOVECTORP, for similar reasons.
17199 * lisp.h (XSETTYPED_PVECTYPE): New macro, specifying the name of
17200 the size member.
17201 (XSETPVECTYPE): Rewrite in terms of new macro.
17202 (XSETPVECTYPESIZE): New macro, specifying both type and size.
17203 This is a bit clearer, and further avoids the possibility of
17204 undesirable aliasing.
17205 (XSETTYPED_PSEUDOVECTOR): New macro, specifying the size.
17206 (XSETPSEUDOVECTOR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR.
17207 (XSETSUBR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR and XSIZE,
17208 since Lisp_Subr is a special case (no "next" field).
17209 (ASIZE): Now uses header.size rather than size.
17210 All previous uses of XVECTOR (foo)->size replaced to use this macro,
17211 to avoid the hassle of writing XVECTOR (foo)->header.size.
17212 (struct vectorlike_header): New type.
17213 (TYPED_PSEUDOVECTORP): New macro, also specifying the C type of the
17214 object, to help avoid aliasing.
17215 (PSEUDOVECTORP): Rewrite in terms of TYPED_PSEUDOVECTORP.
17216 (SUBRP): Likewise, since Lisp_Subr is a special case.
17217 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table):
17218 (struct Lisp_Sub_Char_Table, struct Lisp_Bool_Vector):
17219 (struct Lisp_Hash_Table): Combine first two members into a single
17220 struct vectorlike_header member. All uses of "size" and "next" members
17221 changed to be "header.size" and "header.next".
17222 * buffer.h (struct buffer): Likewise.
17223 * font.h (struct font_spec, struct font_entity, struct font): Likewise.
17224 * frame.h (struct frame): Likewise.
17225 * process.h (struct Lisp_Process): Likewise.
17226 * termhooks.h (struct terminal): Likewise.
17227 * window.c (struct save_window_data, struct saved_window): Likewise.
17228 * window.h (struct window): Likewise.
17229 * alloc.c (allocate_buffer, Fmake_bool_vector, allocate_pseudovector):
17230 Use XSETPVECTYPESIZE, not XSETPVECTYPE, to avoid aliasing problems.
17231 * buffer.c (init_buffer_once): Likewise.
17232 * lread.c (defsubr): Use XSETTYPED_PVECTYPE, since Lisp_Subr is a
17233 special case.
17234 * process.c (Fformat_network_address): Use local var for size,
17235 for brevity.
17236
17237 * bytecode.c (exec_byte_code): Don't use XVECTOR before CHECK_VECTOR.
17238
17239 Make the Lisp reader and string-to-float more consistent (Bug#8525)
17240 * data.c (atof): Remove decl; no longer used or needed.
17241 (digit_to_number): Move to lread.c.
17242 (Fstring_to_number): Use new string_to_number function, to be
17243 consistent with how the Lisp reader treats infinities and NaNs.
17244 Do not assume that floating-point numbers represent EMACS_INT
17245 without losing information; this is not true on most 64-bit hosts.
17246 Avoid double-rounding errors, by insisting on integers when
17247 parsing non-base-10 numbers, as the documentation specifies.
17248 * lisp.h (string_to_number): New decl, replacing ...
17249 (isfloat_string): Remove.
17250 * lread.c: Include <inttypes.h>, for uintmax_t and strtoumax.
17251 (read1): Do not accept +. and -. as integers; this
17252 appears to have been a coding error. Similarly, do not accept
17253 strings like +-1e0 as floating point numbers. Do not report
17254 overflow for integer overflows unless the base is not 10 which
17255 means we have no simple and reliable way to continue.
17256 Break out the floating-point parsing into a new
17257 function string_to_number, so that Fstring_to_number parses
17258 floating point numbers consistently with the Lisp reader.
17259 (digit_to_number): Move here from data.c. Make it static inline.
17260 (E_CHAR, EXP_INT): Remove, replacing with ...
17261 (E_EXP): New macro, to solve the "1.0e+" problem mentioned below.
17262 (string_to_number): New function, replacing isfloat_string.
17263 This function checks for valid syntax and produces the resulting
17264 Lisp float number too. Rework it so that string-to-number
17265 no longer mishandles examples like "1.0e+". Use strtoumax,
17266 so that overflow for non-base-10 numbers is reported only when
17267 there's no portable and simple way to convert to floating point.
17268
17269 * textprop.c (set_text_properties_1): Rewrite for clarity,
17270 and to avoid GCC warning about integer overflow.
17271
17272 * intervals.h (struct interval): Use EMACS_INT for members
17273 where EMACS_UINT might cause problems. See
17274 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html>.
17275 (CHECK_TOTAL_LENGTH): Remove cast to EMACS_INT; no longer needed.
17276 * intervals.c (interval_deletion_adjustment): Now returns EMACS_INT.
17277 All uses changed.
17278 (offset_intervals): Tell GCC not to worry about length overflow
17279 when negating a negative length.
17280
17281 * alloc.c (overrun_check_malloc, overrun_check_realloc): Now static.
17282 (overrun_check_free): Likewise.
17283
17284 * alloc.c (SDATA_SIZE) [!GC_CHECK_STRING_BYTES]: Avoid runtime check
17285 in the common case where SDATA_DATA_OFFSET is a multiple of Emacs
17286 word size.
17287
17288 * gnutls.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
17289 (gnutls_make_error): Rename local to avoid shadowing.
17290 (gnutls_emacs_global_deinit): ifdef out; not used.
17291 (Fgnutls_boot): Use const for pointer to readonly storage.
17292 Comment out unused local. Fix pointer signedness problems.
17293
17294 * lread.c (openp): Don't stuff size_t into an 'int'.
17295 Use <= on length, not < on length + 1, to avoid GCC 4.6.0 warning
17296 about possible signed overflow.
17297
17298 * gtkutil.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
17299 (GDK_KEY_g): Don't define if already defined.
17300 (xg_prepare_tooltip): Avoid pointer signedness problem.
17301 (xg_set_toolkit_scroll_bar_thumb): Redo to avoid two casts.
17302
17303 * process.c (Fnetwork_interface_info): Avoid left-shift undefined
17304 behavior with 1 << 31. GCC 4.6.0 warns about this on 32-bit hosts.
17305
17306 * xfns.c (Fx_window_property): Simplify a bit,
17307 to make a bit faster and to avoid GCC 4.6.0 warning.
17308 * xselect.c (x_get_window_property, x_handle_dnd_message): Likewise.
17309
17310 * fns.c (internal_equal): Don't assume size_t fits in int.
17311
17312 * alloc.c (compact_small_strings): Tighten assertion a little.
17313
17314 Replace pEd with more-general pI, and fix some printf arg casts.
17315 * lisp.h (pI): New macro, generalizing old pEd macro to other
17316 conversion specifiers. For example, use "...%"pI"d..." rather
17317 than "...%"pEd"...".
17318 (pEd): Remove. All uses replaced with similar uses of pI.
17319 * m/amdx86-64.h, m/ia64.h, m/ibms390x.h: Likewise.
17320 * alloc.c (check_pure_size): Don't overflow by converting size to int.
17321 * bidi.c (bidi_dump_cached_states): Use pI to avoid cast.
17322 * data.c (Fnumber_to_string): Use pI instead of if-then-else-abort.
17323 * dbusbind.c (xd_append_arg): Use pI to avoid cast.
17324 (Fdbus_method_return_internal, Fdbus_method_error_internal): Likewise.
17325 * font.c (font_unparse_xlfd): Avoid potential buffer overrun on
17326 64-bit hosts.
17327 (font_unparse_xlfd, font_unparse_fcname): Use pI to avoid casts.
17328 * keyboard.c (record_char, modify_event_symbol): Use pI to avoid casts.
17329 * print.c (safe_debug_print, print_object): Likewise.
17330 (print_object): Don't overflow by converting EMACS_INT or EMACS_UINT
17331 to int.
17332 Use pI instead of if-then-else-abort. Use %p to avoid casts,
17333 avoiding the 0 flag, which is not portable.
17334 * process.c (Fmake_network_process): Use pI to avoid cast.
17335 * region-cache.c (pp_cache): Likewise.
17336 * xdisp.c (decode_mode_spec): Likewise.
17337 * xrdb.c (x_load_resources) [USE_MOTIF]: Use pI to avoid undefined
17338 behavior on 64-bit hosts with printf arg.
17339 * xselect.c (x_queue_event): Use %p to avoid casts, avoiding 0 flag.
17340 (x_stop_queuing_selection_requests): Likewise.
17341 (x_get_window_property): Don't truncate byte count to an 'int'
17342 when tracing.
17343
17344 * frame.c (frame_name_fnn_p): Get rid of strtol, which isn't right
17345 here, since it parses constructs like leading '-' and spaces,
17346 which are not wanted; and it overflows with large numbers.
17347 Instead, simply match F[0-9]+, which is what is wanted anyway.
17348
17349 * alloc.c: Remove unportable assumptions about struct layout.
17350 (SDATA_SELECTOR, SDATA_DATA_OFFSET): New macros.
17351 (SDATA_OF_STRING, SDATA_SIZE, allocate_string_data):
17352 (allocate_vectorlike, make_pure_vector): Use the new macros,
17353 plus offsetof, to remove unportable assumptions about struct layout.
17354 These assumptions hold on all porting targets that I know of, but
17355 they are not guaranteed, they're easy to remove, and removing them
17356 makes further changes easier.
17357
17358 * alloc.c (BLOCK BYTES): Fix typo by changing "ablock" to "ablocks".
17359 This doesn't fix a bug but makes the code clearer.
17360 (string_overrun_cookie): Now const. Use initializers that
17361 don't formally overflow signed char, to avoid warnings.
17362 (allocate_string_data) [GC_CHECK_STRING_OVERRUN]: Fix typo that
17363 can cause Emacs to crash when string overrun checking is enabled.
17364 (allocate_buffer): Don't assume sizeof (struct buffer) is a
17365 multiple of sizeof (EMACS_INT); it need not be, if
17366 alignof(EMACS_INT) < sizeof (EMACS_INT).
17367 (check_sblock, check_string_bytes, check_string_free_list): Protoize.
17368
17369 2011-04-26 Juanma Barranquero <lekktu@gmail.com>
17370
17371 * keyboard.c (QCrtl): Rename from Qrtl. All uses changed.
17372
17373 2011-04-26 Teodor Zlatanov <tzz@lifelogs.com>
17374
17375 * gnutls.c (emacs_gnutls_handshake): Return an error if we're not
17376 supposed to be handshaking. (Bug#8556)
17377 Reported by Paul Eggert <eggert@cs.ucla.edu>.
17378
17379 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
17380
17381 * lisp.h (Qdebug): List symbol.
17382 * eval.c (Qdebug): Restore global linkage.
17383 * keyboard.c (debug-on-event): New variable.
17384 (handle_user_signal): Break into debugger when debug-on-event
17385 matches the current signal symbol.
17386
17387 2011-04-25 Dan Nicolaescu <dann@ics.uci.edu>
17388
17389 * alloc.c (check_sblock, check_string_bytes)
17390 (check_string_free_list): Convert to standard C.
17391
17392 2011-04-25 Teodor Zlatanov <tzz@lifelogs.com>
17393
17394 * w32.c (emacs_gnutls_push): Fix typo.
17395
17396 2011-04-25 Eli Zaretskii <eliz@gnu.org>
17397
17398 * gnutls.c (emacs_gnutls_handshake): Avoid compiler warnings about
17399 "cast to pointer from integer of different size".
17400
17401 Improve doprnt and its use in verror. (Bug#8545)
17402 * doprnt.c (doprnt): Document the set of format control sequences
17403 supported by the function. Use SAFE_ALLOCA instead of always
17404 using `alloca'.
17405
17406 * eval.c (verror): Don't limit the buffer size at size_max-1, that
17407 is one byte too soon. Don't use xrealloc; instead xfree and
17408 xmalloc anew.
17409
17410 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
17411
17412 * gnutls.h: Add GNUTLS_STAGE_CALLBACKS enum to denote we're in the
17413 callbacks stage.
17414
17415 * gnutls.c: Renamed global_initialized to
17416 gnutls_global_initialized. Added internals for the
17417 :verify-hostname-error, :verify-error, and :verify-flags
17418 parameters of `gnutls-boot' and documented those parameters in the
17419 docstring. Start callback support.
17420 (emacs_gnutls_handshake): Add Woe32 support. Retry handshake
17421 unless a fatal error occurred. Call gnutls_alert_send_appropriate
17422 on error. Return error code.
17423 (emacs_gnutls_write): Call emacs_gnutls_handle_error.
17424 (emacs_gnutls_read): Likewise.
17425 (Fgnutls_boot): Return handshake error code.
17426 (emacs_gnutls_handle_error): New function.
17427 (wsaerror_to_errno): Likewise.
17428
17429 * w32.h (emacs_gnutls_pull): Add prototype.
17430 (emacs_gnutls_push): Likewise.
17431
17432 * w32.c (emacs_gnutls_pull): New function for GnuTLS on Woe32.
17433 (emacs_gnutls_push): Likewise.
17434
17435 2011-04-24 Claudio Bley <claudio.bley@gmail.com> (tiny change)
17436
17437 * process.c (wait_reading_process_output): Check if GnuTLS
17438 buffered some data internally if no FDs are set for TLS
17439 connections.
17440
17441 * makefile.w32-in (OBJ2): Add gnutls.$(O).
17442 (LIBS): Link to USER_LIBS.
17443 ($(BLD)/gnutls.$(0)): New target.
17444
17445 2011-04-24 Eli Zaretskii <eliz@gnu.org>
17446
17447 * xdisp.c (handle_single_display_spec): Rename the
17448 display_replaced_before_p argument into display_replaced_p, to
17449 make it consistent with the commentary. Fix typos in the
17450 commentary.
17451
17452 * textprop.c (syms_of_textprop): Remove dead code.
17453 (copy_text_properties): Delete obsolete commentary about an
17454 interface that was deleted long ago. Fix typos in the description
17455 of arguments.
17456
17457 * msdos.c (XMenuActivate, XMenuAddSelection): Adjust argument list
17458 to changes in oldXMenu/XMenu.h from 2011-04-16.
17459 <menu_help_message, prev_menu_help_message>: Constify.
17460 (IT_menu_make_room): menu->help_text is now `const char **';
17461 adjust.
17462
17463 * msdos.h (XMenuActivate, XMenuAddSelection): Adjust prototypes
17464 to changes in oldXMenu/XMenu.h from 2011-04-16.
17465 (struct XMenu): Declare `help_text' `const char **'.
17466
17467 * xfaces.c <Qunspecified>: Make extern again.
17468
17469 * syntax.c: Include sys/types.h before including regex.h, as
17470 required by POSIX.
17471
17472 * doc.c (get_doc_string): Improve the format passed to `error'.
17473
17474 * doprnt.c (doprnt): Improve commentary.
17475
17476 * term.c (init_tty) [MSDOS]: Fix 1st argument to maybe_fatal.
17477
17478 * Makefile.in (TAGS): Depend on $(M_FILE) and $(S_FILE), and scan
17479 them with etags.
17480
17481 * makefile.w32-in (globals.h): Add a dummy recipe, to make any
17482 changes in globals.h immediately force recompilation.
17483 (TAGS): Depend on $(CURDIR)/m/intel386.h and
17484 $(CURDIR)/s/ms-w32.h.
17485 (TAGS-gmake): Scan $(CURDIR)/m/intel386.h and $(CURDIR)/s/ms-w32.h.
17486
17487 * character.c (Fchar_direction): Function deleted.
17488 (syms_of_character): Don't defsubr it.
17489 <char-direction-table>: Deleted.
17490
17491 2011-04-23 Eli Zaretskii <eliz@gnu.org>
17492
17493 Fix doprnt so it could be used again safely in `verror'. (Bug#8435)
17494 * doprnt.c: Include limits.h.
17495 (SIZE_MAX): New macro.
17496 (doprnt): Return a size_t value. 2nd arg is now size_t.
17497 Many local variables are now size_t instead of int or unsigned.
17498 Improve overflow protection. Support `l' modifier for integer
17499 conversions. Support %l conversion. Don't assume an EMACS_INT
17500 argument for integer conversions and for %c.
17501
17502 * lisp.h (doprnt): Restore prototype.
17503
17504 * makefile.w32-in ($(BLD)/callint.$(O)): Depend on
17505 $(SRC)/character.h.
17506
17507 * Makefile.in (base_obj): Add back doprnt.o.
17508
17509 * deps.mk (doprnt.o): Add back prerequisites.
17510 (callint.o): Depend on character.h.
17511
17512 * eval.c (internal_lisp_condition_case): Include the handler
17513 representation in the error message.
17514 (verror): Call doprnt instead of vsnprintf. Fix an off-by-one bug
17515 when breaking from the loop.
17516
17517 * xdisp.c (vmessage): Call doprnt instead of vsnprintf.
17518
17519 * callint.c (Fcall_interactively): When displaying error message
17520 about invalid control letter, pass the character's codepoint, not
17521 a pointer to its multibyte form. Improve display of the character
17522 in octal and display also its hex code.
17523
17524 * character.c (char_string): Use %x to display the (unsigned)
17525 codepoint of an invalid character, to avoid displaying a bogus
17526 negative value.
17527
17528 * font.c (check_otf_features): Pass SDATA of SYMBOL_NAME to
17529 `error', not SYMBOL_NAME itself.
17530
17531 * coding.c (Fencode_sjis_char, Fencode_big5_char): Use %c for
17532 character arguments to `error'.
17533
17534 * charset.c (check_iso_charset_parameter): Fix incorrect argument
17535 to `error' in error message about FINAL_CHAR argument. Make sure
17536 FINAL_CHAR is a character, and use %c when it is passed as
17537 argument to `error'.
17538
17539 2011-04-23 Eli Zaretskii <eliz@gnu.org>
17540
17541 * s/ms-w32.h (localtime): Redirect to sys_localtime.
17542
17543 * w32.c: Include <time.h>.
17544 (sys_localtime): New function.
17545
17546 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
17547
17548 * xdisp.c (init_xdisp): Initialize echo_area_window (Bug#6451).
17549
17550 * buffer.c (syms_of_buffer): Doc fix (Bug#6902).
17551
17552 2011-04-23 Samuel Thibault <sthibault@debian.org> (tiny change)
17553
17554 * sysdep.c (wait_for_termination): On GNU Hurd, kill returns -1 on
17555 zombies (Bug#8467).
17556
17557 2011-04-19 Eli Zaretskii <eliz@gnu.org>
17558
17559 * syntax.h (SETUP_SYNTAX_TABLE_FOR_OBJECT): Fix setting of
17560 gl_state.e_property when gl_state.object is Qt.
17561
17562 * insdel.c (make_gap_larger): Remove limitation of buffer size
17563 to <= INT_MAX.
17564
17565 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
17566
17567 * xdisp.c (lookup_glyphless_char_display)
17568 (produce_glyphless_glyph): Handle cons cell entry in
17569 glyphless-char-display.
17570 (Vglyphless_char_display): Document it.
17571
17572 * term.c (produce_glyphless_glyph): Handle cons cell entry in
17573 glyphless-char-display.
17574
17575 2011-04-17 Chong Yidong <cyd@stupidchicken.com>
17576
17577 * xdisp.c (get_next_display_element): Remove unnecessary ifdefs.
17578
17579 * termhooks.h (FRAME_WINDOW_P): Remove duplicated definitions.
17580
17581 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): Add missing
17582 definition for no-X builds.
17583
17584 2011-04-16 Paul Eggert <eggert@cs.ucla.edu>
17585
17586 Static checks with GCC 4.6.0 and non-default toolkits.
17587
17588 * s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF): Protoize decl.
17589
17590 * process.c (keyboard_bit_set): Define only if SIGIO.
17591 (send_process_trap): Mark it with NO_RETURN if it doesn't return.
17592 (send_process): Repair possible setjmp clobbering.
17593
17594 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Don't pass extra arg to 'fatal'.
17595
17596 * eval.c: Include <stdio.h>, for vsnprintf on non-GNU/Linux hosts.
17597
17598 * data.c (arith_error): Mark with NO_RETURN if it doesn't return.
17599
17600 * alloc.c (bytes_used_when_full, SPARE_MEMORY, BYTES_USED):
17601 Define only if needed.
17602
17603 * sysdep.c (_FILE_OFFSET_BITS): Make this hack even uglier
17604 by pacifying GCC about it. Maybe it's time to retire it?
17605 * xfaces.c (USG, __TIMEVAL__): Likewise.
17606
17607 * dispextern.h (struct redisplay_interface): Rename param
17608 to avoid shadowing.
17609 * termhooks.h (struct terminal): Likewise.
17610 * xterm.c (xembed_send_message): Likewise.
17611
17612 * insdel.c (make_gap_smaller): Define only if
17613 USE_MMAP_FOR_BUFFERS || REL_ALLOC || DOUG_LEA_MALLOC.
17614
17615 * keyboard.c (read_char): Make a var volatile so longjmp won't clobber
17616 it.
17617
17618 * emacs.c (MAX_HEAP_BSS_DIFF, my_edata): Move to where they're used,
17619 so that we aren't warned about unused symbols.
17620
17621 * xfns.c (Fx_file_dialog): Rename local to avoid shadowing.
17622
17623 * xdisp.c (x_produce_glyphs): Mark var as initialized (Bug#8512).
17624
17625 * xfns.c (x_real_positions): Mark locals as initialized.
17626
17627 * xmenu.c (xmenu_show): Don't use uninitialized vars.
17628
17629 * xterm.c: Fix problems found by static analysis with other toolkits.
17630 (toolkit_scroll_bar_interaction): Define and use only if USE_X_TOOLKIT.
17631 (x_dispatch_event): Declare static if USE_GTK, and
17632 define if USE_GTK || USE_X_TOOLKIT.
17633 (SET_SAVED_BUTTON_EVENT): Define only if USE_X_TOOLKIT || USE_GTK.
17634 * xterm.h (x_dispatch_event): Extern only if USE_X_TOOLKIT.
17635 * xterm.c, xterm.h (x_mouse_leave): Bring this function back, but only
17636 if defined HAVE_MENUS && !defined USE_X_TOOLKIT && !defined USE_GTK.
17637
17638 * xmenu.c (menu_help_callback): Pointer type fixes.
17639 Use const pointers when pointing at readonly data. Avoid pointer
17640 signedness clashes.
17641 (FALSE): Remove unused macro.
17642 (update_frame_menubar): Remove unused decl.
17643
17644 * xfns.c (Fx_hide_tip): Move locals to avoid shadowing.
17645
17646 * menu.c (push_submenu_start, push_submenu_end): Do not define unless
17647 USE_X_TOOLKIT || USE_GTK || HAVE_NS || defined HAVE_NTGUI.
17648 (single_menu_item): Rename local to avoid shadowing.
17649
17650 * keyboard.c (make_lispy_event): Remove unused local var.
17651
17652 * frame.c, frame.h (x_get_resource_string): Bring this back, but
17653 only if HAVE_X_WINDOWS && !USE_X_TOOLKIT.
17654
17655 * bitmaps: Change bitmaps from unsigned char back to the X11
17656 compatible char. Avoid the old compiler warnings about
17657 out-of-range initializers by using, for example, '\xab' rather
17658 than 0xab.
17659
17660 * xgselect.c (xgselect_initialize): Check vs interface
17661 even if ! (defined (USE_GTK) || defined (HAVE_GCONF)).
17662
17663 * xmenu.c (xmenu_show): Rename parm to avoid shadowing.
17664
17665 * xterm.c (x_create_toolkit_scroll_bar): Use const * for pointers
17666 to read-only memory.
17667
17668 * fns.c (vector): Remove; this old hack is no longer needed.
17669
17670 * xsmfns.c (create_client_leader_window): Rename shadowing arg.
17671 Remove unused var.
17672 (gdk_x11_set_sm_client_id) [!USE_GTK]: Don't define.
17673
17674 * xrdb.c (x_load_resources): Omit unused local.
17675
17676 * xfns.c (free_frame_menubar, atof): Remove duplicate decls.
17677 (x_window): Rename locals to avoid shadowing.
17678 (USG): Use the kludged USG macro, to pacify gcc.
17679
17680 * xterm.c (x_alloc_nearest_color_for_widget): Remove; unused.
17681 (x_term_init): Remove local to avoid shadowing.
17682
17683 * xfns.c, xterm.c (_XEditResCheckMessages): Protoize decl.
17684
17685 * xdisp.c, dispextern.h (set_vertical_scroll_bar): Now extern if
17686 USE_TOOLKIT_SCROLL_BARS && !USE_GTK, as xterm.c needs it then.
17687
17688 2011-04-16 Eli Zaretskii <eliz@gnu.org>
17689
17690 * gnutls.c (Fgnutls_boot): Don't pass Lisp_Object to `error'.
17691
17692 Fix regex.c, syntax.c and friends for buffers > 2GB.
17693 * syntax.h (struct gl_state_s): Declare character position members
17694 EMACS_INT.
17695
17696 * syntax.c (update_syntax_table): Declare 2nd argument EMACS_INT.
17697
17698 * textprop.c (verify_interval_modification, interval_of):
17699 Declare arguments EMACS_INT.
17700
17701 * intervals.c (adjust_intervals_for_insertion): Declare arguments
17702 EMACS_INT.
17703
17704 * intervals.h (CHECK_TOTAL_LENGTH): Cast to EMACS_INT, not `int'.
17705
17706 * indent.c (Fvertical_motion): Local variable it_start is now
17707 EMACS_INT.
17708
17709 * regex.c (re_match, re_match_2, re_match_2_internal)
17710 (bcmp_translate, regcomp, regexec, print_double_string)
17711 (group_in_compile_stack, re_search, re_search_2, regex_compile)
17712 (re_compile_pattern, re_exec): Declare arguments and local
17713 variables `size_t' and `ssize_t' and return values `regoff_t', as
17714 appropriate.
17715 (POP_FAILURE_REG_OR_COUNT) <pfreg>: Declare `long'.
17716 (CHECK_INFINITE_LOOP) <failure>: Declare `ssize_t'.
17717 <compile_stack_type>: `size' and `avail' are now `size_t'.
17718
17719 * regex.h <regoff_t>: Use ssize_t, not int.
17720 (re_search, re_search_2, re_match, re_match_2): Arguments that
17721 specify buffer/string position and length are now ssize_t and
17722 size_t. Return type is regoff_t.
17723
17724 2011-04-16 Ben Key <bkey76@gmail.com>
17725
17726 * nsfont.m: Fixed bugs in ns_get_family and
17727 ns_descriptor_to_entity that were caused by using free to
17728 deallocate memory blocks that were allocated by xmalloc (via
17729 xstrdup). This caused Emacs to crash when compiled with
17730 XMALLOC_OVERRUN_CHECK defined (when Emacs was configured with
17731 --enable-checking=xmallocoverrun). xfree is now used to
17732 deallocate these memory blocks.
17733
17734 2011-04-15 Paul Eggert <eggert@cs.ucla.edu>
17735
17736 * sysdep.c (emacs_read): Remove unnecessary check vs MAX_RW_COUNT.
17737
17738 emacs_write: Accept and return EMACS_INT for sizes.
17739 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html
17740 et seq.
17741 * gnutls.c, gnutls.h (emacs_gnutls_read, emacs_gnutls_write):
17742 Accept and return EMACS_INT.
17743 (emacs_gnutls_write): Return the number of bytes written on
17744 partial writes.
17745 * sysdep.c, lisp.h (emacs_read, emacs_write): Likewise.
17746 (emacs_read, emacs_write): Remove check for negative size, as the
17747 Emacs source code has been audited now.
17748 * sysdep.c (MAX_RW_COUNT): New macro, to work around kernel bugs.
17749 (emacs_read, emacs_write): Use it.
17750 * process.c (send_process): Adjust to the new signatures of
17751 emacs_write and emacs_gnutls_write. Do not attempt to store
17752 a byte offset into an 'int'; it might overflow.
17753 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00483.html
17754
17755 * sound.c: Don't assume sizes fit in 'int'.
17756 (struct sound_device.period_size, alsa_period_size):
17757 Return EMACS_INT, not int.
17758 (struct sound_device.write, vox_write, alsa_write):
17759 Accept EMACS_INT, not int.
17760 (wav_play, au_play): Use EMACS_INT to store sizes and to
17761 record read return values.
17762
17763 2011-04-15 Ben Key <bkey76@gmail.com>
17764
17765 * keyboard.c (Qundefined): Don't declare static since it is used
17766 in nsfns.m.
17767 * xfaces.c (Qbold, Qexpanded, Qitalic, Qcondensed): Don't declare
17768 static since they are used in nsfont.m.
17769
17770 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
17771
17772 * process.c (Qprocessp): Don't declare static.
17773 * lisp.h (Qprocessp): Declare again.
17774
17775 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
17776
17777 * font.c (Qopentype): Don't make static (used from w32uniscribe.c).
17778
17779 2011-04-14 Paul Eggert <eggert@cs.ucla.edu>
17780
17781 Improve C-level modularity by making more things 'static'.
17782
17783 Don't publish debugger-only interfaces to other modules.
17784 * lisp.h (safe_debug_print, debug_output_compilation_hack):
17785 (verify_bytepos, count_markers): Move decls to the only modules
17786 that need them.
17787 * region-cache.h (pp_cache): Likewise.
17788 * window.h (check_all_windows): Likewise.
17789 * marker.c, print.c, region-cache.c, window.c: Decls moved here.
17790
17791 * sysdep.c (croak): Now static, if
17792 defined TIOCNOTTY || defined USG5 || defined CYGWIN.
17793 * syssignal.h (croak): Declare only if not static.
17794
17795 * alloc.c (refill_memory_reserve): Now static if
17796 !defined REL_ALLOC || defined SYSTEM_MALLOC.
17797 * lisp.h (refill_memory_reserve): Declare only if not static.
17798
17799 * xsettings.c, xsettings.h (xsettings_get_system_normal_font):
17800 Define only if USE_LUCID.
17801
17802 * xrdb.c (x_customization_string, x_rm_string): Now static.
17803
17804 * xmenu.c (x_menu_wait_for_event): Export only if USE_MOTIF.
17805 * xterm.h (x_menu_wait_for_event): Declare only if USE_MOTIF.
17806
17807 * xdisp.c (draw_row_with_mouse_face): Now static.
17808 * dispextern.h (draw_row_with_mouse_fave): Remove decl.
17809
17810 * window.h (check_all_windows): Mark externally visible.
17811
17812 * window.c (window_deletion_count): Now static.
17813
17814 * undo.c: Make symbols static if they're not exported.
17815 (last_undo_buffer, last_boundary_position, pending_boundary):
17816 Now static.
17817
17818 * textprop.c (interval_insert_behind_hooks): Now static.
17819 (interval_insert_in_front_hooks): Likewise.
17820
17821 * term.c: Make symbols static if they're not exported.
17822 (tty_turn_off_highlight, get_tty_terminal, max_frame_cols):
17823 (max_frame_lines, tty_set_terminal_modes):
17824 (tty_reset_terminal_modes, tty_turn_off_highlight):
17825 (get_tty_terminal): Now static.
17826 (term_mouse_moveto): Do not define if HAVE_WINDOW_SYSTEM.
17827 * termhooks.h (term_mouse_moveto): Do not declare if
17828 HAVE_WINDOW_SYSTEM.
17829 * dispextern.h (tty_set_terminal_modes, tty_reset_terminal_modes):
17830 (tty_turn_off_highlight, get_tty_terminal): Remove decls.
17831
17832 * sysdep.c: Make symbols static if they're not exported.
17833 (emacs_get_tty, emacs_set_tty, old_fcntl_flags, old_fcntl_owner):
17834 Now static.
17835 (sigprocmask_set, full_mask): Remove; unused.
17836 (wait_debugging): Mark as visible.
17837 * syssignal.h (SIGFULLMASK, full_mask): Remove decls.
17838 * systty.h (emacs_get_tty, emacs_set_tty): Remove decls.
17839
17840 * syntax.c (syntax_temp): Define only if !__GNUC__.
17841
17842 * sound.c (current_sound_device, current_sound): Now static.
17843
17844 * search.c (searchbufs, searchbuf_head): Now static.
17845
17846 * scroll.c (scroll_cost): Remove; unused.
17847 * dispextern.h (scroll_cost): Remove decl.
17848
17849 * region-cache.h (pp_cache): Mark as externally visible.
17850
17851 * process.c: Make symbols static if they're not exported.
17852 (process_tick, update_tick, create_process, chan_process):
17853 (Vprocess_alist, proc_buffered_char, datagram_access):
17854 (fd_callback_data, send_process_frame, process_sent_to): Now static.
17855 (deactivate_process): Mark defn as static, as well as decl.
17856 * lisp.h (create_process): Remove decl.
17857 * process.h (chan_process, Vprocess_alist): Remove decls.
17858
17859 * print.c: Make symbols static if they're not exported.
17860 (print_depth, new_backquote_output, being_printed, print_buffer):
17861 (print_buffer_size, print_buffer_pos, print_buffer_pos_byte):
17862 (print_interval, print_number_index, initial_stderr_stream):
17863 Now static.
17864 * lisp.h (Fprinc): Remove decl.
17865 (debug_output_compilation_hack): Mark as externally visible.
17866
17867 * sysdep.c (croak): Move decl from here to syssignal.h.
17868 * syssignal.h (croak): Put it here, so the API can be checked when
17869 'croak' is called from dissociate_if_controlling_tty.
17870
17871 * minibuf.c: Make symbols static if they're not exported.
17872 (minibuf_save_list, choose_minibuf_frame): Now static.
17873 * lisp.h (choose_minibuf_frame): Remove decl.
17874
17875 * lisp.h (verify_bytepos, count_markers): Mark as externally visible.
17876
17877 * lread.c: Make symbols static if they're not exported.
17878 (read_objects, initial_obarray, oblookup_last_bucket_number):
17879 Now static.
17880 (make_symbol): Remove; unused.
17881 * lisp.h (initial_obarray, make_symbol): Remove decls.
17882
17883 * keyboard.c: Make symbols static if they're not exported.
17884 (single_kboard, recent_keys_index, total_keys, recent_keys):
17885 (this_command_key_count_reset, raw_keybuf, raw_keybuf_count):
17886 (this_single_command_key_start, echoing, last_auto_save):
17887 (read_key_sequence_cmd, dribble, recursive_edit_unwind):
17888 (command_loop, echo_now, keyboard_init_hook, help_char_p):
17889 (quit_throw_to_read_char, command_loop_2, top_level_1, poll_timer):
17890 (Vlispy_mouse_stem, double_click_count):
17891 Now static.
17892 (force_auto_save_soon): Define only if SIGDANGER.
17893 (ignore_mouse_drag_p): Now static if
17894 !defined HAVE_WINDOW_SYSTEM || defined USE_GTK || defined HAVE_NS.
17895 (print_help): Remove; unused.
17896 (stop_character, last_timer_event): Mark as externally visible.
17897 * keyboard.h (ignore_mouse_drag_p): Declare only if
17898 defined HAVE_WINDOW_SYSTEM && !defined USE_GTK && !defined HAVE_NS.
17899 (echo_now, help_char_p, quit_throw_to_read_char): Remove decls.
17900 * lisp.h (echoing): Remove decl.
17901 (force_auto_save_soon): Declare only if SIGDANGER.
17902 * xdisp.c (redisplay_window): Simplify code, to make it more
17903 obvious that ignore_mouse_drag_p is not accessed if !defined
17904 USE_GTK && !defined HAVE_NS.
17905
17906 * intervals.c: Make symbols static if they're not exported.
17907 (merge_properties_sticky, merge_interval_right, delete_interval):
17908 Now static.
17909 * intervals.h (merge_interval_right, delete_interval): Remove decls.
17910
17911 * insdel.c: Make symbols static if they're not exported.
17912 However, leave prepare_to_modify_buffer alone. It's never
17913 called from outside this function, but that appears to be a bug.
17914 (combine_after_change_list, combine_after_change_buffer):
17915 (adjust_after_replace, signal_before_change): Now static.
17916 (adjust_after_replace_noundo): Remove; unused.
17917 * lisp.h (adjust_after_replace, adjust_after_replace_noundo):
17918 (signal_before_change): Remove decls.
17919
17920 * indent.c (val_compute_motion, val_vmotion): Now static.
17921
17922 * image.c: Make symbols static if they're not exported.
17923 * dispextern.h (x_create_bitmap_from_xpm_data): Do not declare
17924 if USE_GTK.
17925 * image.c (x_create_bitmap_from_xpm_data): Do not define if USE_GTK.
17926 (xpm_color_cache, ct_table, ct_colors_allocated): Now static.
17927
17928 * fringe.c (standard_bitmaps): Now static.
17929 (max_used_fringe_bitmap): Now static, unless HAVE_NS.
17930
17931 * frame.c: Make symbols static if they're not exported.
17932 (x_report_frame_params, make_terminal_frame): Now static.
17933 (get_frame_param): Now static, unless HAVE_NS.
17934 (x_fullscreen_adjust): Define if WINDOWSNT, not if HAVE_WINDOW_SYSTEM.
17935 (x_get_resource_string): Remove; not used.
17936 * frame.h (make_terminal_frame, x_report_frame_params):
17937 (x_get_resource_string); Remove decls.
17938 (x_fullscreen_adjust): Declare only if WINDOWSNT.
17939 * lisp.h (get_frame_param): Declare only if HAVE_NS.
17940
17941 * font.c, fontset.c: Make symbols static if they're not exported.
17942 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): New macro.
17943 (FACE_SUITABLE_FOR_CHAR_P): Use it.
17944 * font.c (font_close_object): Now static.
17945 * font.h (font_close_object): Remove.
17946 * fontset.c (FONTSET_OBJLIST): Remove.
17947 (free_realized_fontset) #if-0 the body, which does nothing.
17948 (face_suitable_for_char_p): #if-0, as it's never called.
17949 * fontset.h (face_suitable_for_char_p): Remove decl.
17950 * xfaces.c (face_at_string_position):
17951 Use FACE_SUITABLE_FOR_ASCII_CHAR_P, not FACE_SUITABLE_FOR_CHAR_P,
17952 since 0 is always ASCII.
17953
17954 * fns.c (weak_hash_tables): Now static.
17955
17956 * fileio.c: Make symbols static if they're not exported.
17957 (auto_saving, auto_save_mode_bits, auto_save_error_occurred):
17958 (Vwrite_region_annotation_buffers): Now static.
17959
17960 * eval.c: Make symbols static if they're not exported.
17961 (backtrace_list, lisp_eval_depth, when_entered_debugger): Now static.
17962 * lisp.h (backtrace_list): Remove decl.
17963
17964 * emacs.c: Make symbols static if they're not exported.
17965 (malloc_state_ptr, malloc_using_checking, syms_of_emacs):
17966 (fatal_error_code, fatal_error_signal_hook, standard_args):
17967 Now static.
17968 (fatal_error_signal): Now static, unless FLOAT_CATCH_SIGKILL.
17969 (DEFINE_DUMMY_FUNCTION): Mark function as externally visible.
17970 (__CTOR_LIST__, __DTOR_LIST__): Now externally visible.
17971 * lisp.h (fatal_error_signal_hook): Remove decl.
17972 (fatal_error_signal): Declare only if FLOAT_CATCH_SIGKILL.
17973
17974 * editfns.c: Move a (normally-unused) function to its only use.
17975 * editfns.c, lisp.h (get_operating_system_release): Remove.
17976 * process.c (init_process) [DARWIN_OS]: Do it inline, as it is not
17977 worth the hassle of breaking this out.
17978
17979 * xterm.c: Make symbols static if they're not exported.
17980 (x_raise_frame, x_lower_frame, x_wm_set_window_state):
17981 (x_wm_set_icon_pixmap, x_initialize, XTread_socket_fake_io_error):
17982 (x_destroy_window, x_delete_display):
17983 Now static.
17984 (x_dispatch_event): Now static if ! (USE_MOTIF || USE_X_TOOLKIT).
17985 (x_mouse_leave): Remove; unused.
17986 * xterm.h (x_display_info_for_name, x_raise_frame, x_lower_frame):
17987 (x_destroy_window, x_wm_set_window_state, x_wm_set_icon_pixmap):
17988 (x_delete_display, x_initialize, x_set_border_pixel, x_screen_planes):
17989 Remove decls.
17990 (x_mouse_leave): Declare only if WINDOWSNT.
17991 (x_dispatch_event): Declare only if USE_MOTIF or USE_X_TOOLKIT.
17992 (xic_create_fontsetname): Declare only if HAVE_X_WINDOWS &&
17993 USE_X_TOOLKIT.
17994
17995 * ftxfont.c: Make symbols static if they're not exported.
17996 (ftxfont_driver): Export only if !defined HAVE_XFT && def8ined
17997 HAVE_FREETYPE.
17998 * font.h (ftxfont_driver): Likewise.
17999
18000 * xfns.c: Make symbols static if they're not exported.
18001 (x_last_font_name, x_display_info_for_name):
18002 (x_set_foreground_color, x_set_background_color, x_set_mouse_color):
18003 (x_set_cursor_color, x_set_border_pixel, x_set_border_color):
18004 (x_set_cursor_type, x_set_icon_type, x_set_icon_name):
18005 (x_set_scroll_bar_foreground, x_set_scroll_bar_background):
18006 (x_explicitly_set_name, x_set_title, xic_defaut_fontset, tip_timer):
18007 (last_show_tip_args): Now static.
18008 (xic_defaut_fontset, xic_create_fontsetname): Define only if
18009 defined HAVE_X_WINDOWS && defined USE_X_TOOLKIT
18010 (x_screen_planes): Remove; unused.
18011 * dispextern.h (x_screen_planes): Remove decl.
18012
18013 * dispnew.c: Make symbols static if they're not exported.
18014 * dispextern.h (redraw_garbaged_frames, scrolling):
18015 (increment_row_positions): Remove.
18016 * dispnew.c (new_glyph_matrix, increment_row_positions, scrolling):
18017 (delayed_size_change, glyph_matrix_count, glyph_pool_count):
18018 Now static.
18019 (redraw_garbaged_frames): Remove; unused.
18020
18021 * xfaces.c: Make symbols static if they're not exported.
18022 * dispextern.h (ascii_face_of_lisp_face, free_realized_face):
18023 Remove decls.
18024 * xterm.h (defined_color): Remove decls.
18025 (x_free_dpy_colors): Declare only if USE_X_TOOLKIT.
18026 * xfaces.c (tty_suppress_bold_inverse_default_colors_p):
18027 (menu_face_changed_default, defined_color, free_realized_face):
18028 (x_free_dpy_colors): Define only if USE_X_TOOLKIT.
18029 (ascii_face_of_lisp_face): Remove; unused.
18030
18031 * xdisp.c: Make symbols static if they're not exported.
18032 * dispextern.h (scratch_glyph_row, window_box_edges):
18033 (glyph_to_pixel_coords, set_cursor_from_row):
18034 (get_next_display_element, set_iterator_to_next):
18035 (highlight_trailing_whitespace, frame_to_window_pixel_xy):
18036 (show_mouse_face): Remove decls
18037 * frame.h (message_buf_print): Likewise.
18038 * lisp.h (pop_message, set_message, check_point_in_composition):
18039 Likewise.
18040 * xterm.h (set_vertical_scroll_bar): Likewise.
18041 * xdisp.c (list_of_error, Vmessage_stack, line_number_displayed):
18042 (message_buf_print, scratch_glyph_row, displayed_buffer):
18043 (set_iterator_to_next, pop_message, set_message, set_cursor_from_row):
18044 (get_next_display_element, show_mouse_face, window_box_edges):
18045 (frame_to_window_pixel_xy, check_point_in_composition):
18046 (set_vertical_scroll_bar, highlight_trailing_whitespace): Now static.
18047 (glyph_to_pixel_coords): Remove; unused.
18048
18049 * dired.c (file_name_completion): Now static.
18050
18051 * dbusbind.c (xd_in_read_queued_messages): Now static.
18052
18053 * lisp.h (circular_list_error, FOREACH): Remove; unused.
18054 * data.c (circular_list_error): Remove.
18055
18056 * commands.h (last_point_position, last_point_position_buffer):
18057 (last_point_position_window): Remove decls.
18058 * keyboard.c: Make these variables static.
18059
18060 * coding.h (coding, code_convert_region, encode_coding_gap):
18061 Remove decls.
18062 * coding.c (Vsjis_coding_system, Vbig5_coding_system):
18063 (iso_code_class, detect_coding, code_convert_region): Now static.
18064 (encode_coding_gap): Remove; unused.
18065
18066 * chartab.c (chartab_chars, chartab_bits): Now static.
18067
18068 * charset.h (charset_iso_8859_1): Remove decl.
18069 * charset.c (charset_iso_8859_1, charset_emacs, map_charset_for_dump):
18070 Now static.
18071
18072 * ccl.h (check_ccl_update, Vccl_program_table): Remove decls.
18073 * ccl.c (Vccl_program_table): Now static.
18074 (check_ccl_update): Remove; unused.
18075
18076 * category.c (SET_CATEGORY_SET, set_category_set): Move here.
18077 * category.h: ... from here.
18078 * category.c (check_category_table, set_category_set): Now static.
18079
18080 * casetab.c (Vascii_upcase_table, Vascii_eqv_table): Now static.
18081 * lisp.h: Remove these decls.
18082
18083 * buffer.c (buffer_count): Remove unused var.
18084
18085 * bidi.c (bidi_dump_cached_states): Mark as externally visible,
18086 so that it's not optimized away.
18087 (bidi_ignore_explicit_marks_for_paragraph_level): Likewise.
18088 * dispextern.h (bidi_dump_cached_states): Remove, since it's
18089 exported only to the debugger.
18090
18091 * atimer.c (alarm_signal_handler, run_all_atimers): Now static.
18092 * atimer.h (run_all_atimers): Remove; not exported.
18093
18094 font.c: Make copy_font_spec and merge_font_spec ordinary C functions.
18095 * font.c (copy_font_spec): Rename from Fcopy_font_spec, since it
18096 was inaccessible from Lisp.
18097 (merge_font_spec): Likewise, renaming from Fmerge_font_spec.
18098 * font.c, font.h, fontset.c, xfaces.c, xfont.c: Change all uses.
18099
18100 alloc.c: Import and export fewer symbols, and remove unused items.
18101 * lisp.h (suppress_checking, die): Declare only if ENABLE_CHECKING
18102 is defined.
18103 (suppress_checking): Add EXTERNALLY_VISIBLE attribute, so that
18104 it's not optimized away by whole-program optimization.
18105 (message_enable_multibyte, free_misc): Remove.
18106 (catchlist, handlerlist, mark_backtrace):
18107 Declare only if BYTE_MARK_STACK.
18108 (mark_byte_stack): Likewise, fixing a ifdef-vs-if typo.
18109 * alloc.c (pure): Export only if VIRT_ADDR_VARIES is defined.
18110 (message_enable_multibyte): Remove decl.
18111 (free_misc, interval_free_list, float_block, float_block_index):
18112 (n_float_blocks, float_free_list, cons_block, cons_block_index):
18113 (cons_free_list, last_marked_index):
18114 Now static.
18115 (suppress_checking, die): Define only if ENABLE_CHECKING is defined.
18116 * eval.c (catchlist, handlerlist): Export only if BYTE_MARK_STACK.
18117 (mark_backtrace): Define only if BYTE_MARK_STACK.
18118 * xdisp.c (message_enable_multibyte): Now static.
18119
18120 Declare Lisp_Object Q* variables to be 'static' if not exported.
18121 This makes it easier for human readers (and static analyzers)
18122 to see whether these variables are used from other modules.
18123 * alloc.c, buffer.c, bytecode.c, callint.c, casetab.c, category.c:
18124 * ccl.c, character.c, charset.c, cmds.c, coding.c, composite.c:
18125 * data.c, dbusbind.c, dired.c, editfns.c, eval.c, fileio.c, fns.c:
18126 * font.c, frame.c, fringe.c, ftfont.c, image.c, keyboard.c, keymap.c:
18127 * lread.c, macros.c, minibuf.c, print.c, process.c, search.c:
18128 * sound.c, syntax.c, textprop.c, window.c, xdisp.c, xfaces.c, xfns.c:
18129 * xmenu.c, xselect.c:
18130 Declare Q* vars static if they are not used in other modules.
18131 * ccl.h, character.h, charset.h, coding.h, composite.h, font.h:
18132 * frame.h, intervals.h, keyboard.h, lisp.h, process.h, syntax.h:
18133 Remove decls of unexported vars.
18134 * keyboard.h (EVENT_HEAD_UNMODIFIED): Remove now-unused macro.
18135
18136 * lisp.h (DEFINE_FUNC): Make sname 'static'.
18137
18138 Make Emacs functions such as Fatom 'static' by default.
18139 This makes it easier for human readers (and static analyzers)
18140 to see whether these functions can be called from other modules.
18141 DEFUN now defines a static function. To make the function external
18142 so that it can be used in other C modules, use the new macro DEFUE.
18143 * lisp.h (Funibyte_char_to_multibyte, Fsyntax_table_p):
18144 (Finit_image_library):
18145 (Feval_region, Fbacktrace, Ffetch_bytecode, Fswitch_to_buffer):
18146 (Ffile_executable_p, Fmake_symbolic_link, Fcommand_execute):
18147 (Fget_process, Fdocumentation_property, Fbyte_code, Ffile_attributes):
18148 Remove decls, since these functions are now static.
18149 (Funintern, Fget_internal_run_time): New decls, since these functions
18150 were already external.
18151
18152 * alloc.c, buffer.c, callint.c, callproc.c, casefiddle.c, casetab.c:
18153 * ccl.c, character.c, chartab.c, cmds.c, coding.c, data.c, dispnew.c:
18154 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, floatfns.c:
18155 * fns.c, font.c, fontset.c, frame.c, image.c, indent.c:
18156 * keyboard.c, keymap.c, lread.c:
18157 * macros.c, marker.c, menu.c, minibuf.c, print.c, process.c, search.c:
18158 * syntax.c, term.c, terminal.c, textprop.c, undo.c:
18159 * window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xsettings.c:
18160 Mark functions with DEFUE instead of DEFUN,
18161 if they are used in other modules.
18162 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): New forward
18163 decls for now-static functions.
18164 * buffer.h (Fdelete_overlay): Remove decl.
18165 * callproc.c (Fgetenv_internal): Mark as internal.
18166 * composite.c (Fremove_list_of_text_properties): Remove decl.
18167 (Fcomposition_get_gstring): New forward static decl.
18168 * composite.h (Fcomposite_get_gstring): Remove decl.
18169 * dired.c (Ffile_attributes): New forward static decl.
18170 * doc.c (Fdocumntation_property): New forward static decl.
18171 * eval.c (Ffetch_bytecode): New forward static decl.
18172 (Funintern): Remove extern decl; now in .h file where it belongs.
18173 * fileio.c (Fmake_symbolic_link): New forward static decl.
18174 * image.c (Finit_image_library): New forward static decl.
18175 * insdel.c (Fcombine_after_change_execute): Make forward decl static.
18176 * intervals.h (Fprevious_property_change):
18177 (Fremove_list_of_text_properties): Remove decls.
18178 * keyboard.c (Fthis_command_keys): Remove decl.
18179 (Fcommand_execute): New forward static decl.
18180 * keymap.c (Flookup_key): New forward static decl.
18181 (Fcopy_keymap): Now static.
18182 * keymap.h (Flookup_key): Remove decl.
18183 * process.c (Fget_process): New forward static decl.
18184 (Fprocess_datagram_address): Mark as internal.
18185 * syntax.c (Fsyntax_table_p): New forward static decl.
18186 (skip_chars): Remove duplicate decl.
18187 * textprop.c (Fprevious_property_change): New forward static decl.
18188 * window.c (Fset_window_fringes, Fset_window_scroll_bars):
18189 Now internal.
18190 (Fset_window_margins, Fset_window_vscroll): New forward static decls.
18191 * window.h (Fset_window_vscroll, Fset_window_margins): Remove decls.
18192
18193 * editfns.c (Fformat): Remove unreachable code.
18194
18195 2011-04-14 Andreas Schwab <schwab@linux-m68k.org>
18196
18197 * fileio.c (Finsert_file_contents): Fix typo in 2005-05-13
18198 change. (Bug#8496)
18199
18200 2011-04-13 Eli Zaretskii <eliz@gnu.org>
18201
18202 * xdisp.c (handle_invisible_prop): Don't call bidi_paragraph_init
18203 when at ZV. (Bug#8487)
18204
18205 2011-04-12 Andreas Schwab <schwab@linux-m68k.org>
18206
18207 * charset.c (Fclear_charset_maps): Use xfree instead of free.
18208 (Bug#8437)
18209 * keyboard.c (parse_tool_bar_item): Likewise.
18210 * sound.c (sound_cleanup, alsa_close): Likewise.
18211 * termcap.c (tgetent): Likewise.
18212 * xfns.c (x_default_font_parameter): Likewise.
18213 * xsettings.c (read_and_apply_settings): Likewise.
18214
18215 * alloc.c (overrun_check_malloc, overrun_check_realloc)
18216 (overrun_check_free): Protoize.
18217
18218 2011-04-12 Paul Eggert <eggert@cs.ucla.edu>
18219
18220 * sysdep.c (emacs_read, emacs_write): Check for negative sizes
18221 since callers should never pass a negative size.
18222 Change the signature to match that of plain 'read' and 'write'; see
18223 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00397.html>.
18224 * lisp.h: Update prototypes of emacs_write and emacs_read.
18225
18226 2011-04-11 Eli Zaretskii <eliz@gnu.org>
18227
18228 * xdisp.c (redisplay_window): Don't try to determine the character
18229 position of the scroll margin if the window start point w->startp
18230 is outside the buffer's accessible region. (Bug#8468)
18231
18232 2011-04-10 Eli Zaretskii <eliz@gnu.org>
18233
18234 Fix write-region and its subroutines for buffers > 2GB.
18235 * fileio.c (a_write, e_write): Modify declaration of arguments and
18236 local variables to support buffers larger than 2GB.
18237 (Fcopy_file): Use EMACS_INT for return value of emacs_read.
18238
18239 * sysdep.c (emacs_write, emacs_read): Use ssize_t for last
18240 argument, local variables, and return value.
18241
18242 * lisp.h: Update prototypes of emacs_write and emacs_read.
18243
18244 * sound.c (vox_write): Use ssize_t for return value of emacs_write.
18245
18246 2011-04-10 Paul Eggert <eggert@cs.ucla.edu>
18247
18248 * xdisp.c (vmessage): Use memchr, not strnlen, which some hosts lack.
18249
18250 Fix more problems found by GCC 4.6.0's static checks.
18251
18252 * xdisp.c (vmessage): Use a better test for character truncation.
18253
18254 * charset.c (load_charset_map): <, not <=, for optimization,
18255 and to avoid potential problems with integer overflow.
18256 * chartab.c (sub_char_table_set_range, char_table_set_range): Likewise.
18257 * casetab.c (set_identity, shuffle): Likewise.
18258 * editfns.c (Fformat): Likewise.
18259 * syntax.c (skip_chars): Likewise.
18260
18261 * xmenu.c (set_frame_menubar): Allocate smaller local vectors.
18262 This also lets GCC 4.6.0 generate slightly better loop code.
18263
18264 * callint.c (Fcall_interactively): <, not <=, for optimization.
18265 (Fcall_interactively): Count the number of arguments produced,
18266 not the number of arguments given. This is simpler and lets GCC
18267 4.6.0 generate slightly better code.
18268
18269 * ftfont.c: Distingish more carefully between FcChar8 and char.
18270 The previous code passed unsigned char * to a functions like
18271 strlen and xstrcasecmp that expect char *, which does not
18272 conform to the C standard.
18273 (get_adstyle_property, ftfont_pattern_entity): Use FcChar8 for
18274 arguments to FcPatternGetString, and explicitly cast FcChar8 * to
18275 char * when the C standard requires it.
18276
18277 * keyboard.c (read_char): Remove unused var.
18278
18279 * eval.c: Port to Windows vsnprintf (Bug#8435).
18280 Include <limits.h>.
18281 (SIZE_MAX): Define if the headers do not.
18282 (verror): Do not give up if vsnprintf returns a negative count.
18283 Instead, grow the buffer. This ports to Windows vsnprintf, which
18284 does not conform to C99. Problem reported by Eli Zaretskii.
18285 Also, simplify the allocation scheme, by avoiding the need for
18286 calling realloc, and removing the ALLOCATED variable.
18287
18288 * eval.c (verror): Initial buffer size is 4000 (not 200) bytes.
18289
18290 Remove invocations of doprnt, as Emacs now uses vsnprintf.
18291 But keep the doprint source code for now, as we might revamp it
18292 and use it again (Bug#8435).
18293 * lisp.h (doprnt): Remove.
18294 * Makefile.in (base_obj): Remove doprnt.o.
18295 * deps.mk (doprnt.o): Remove.
18296
18297 error: Print 32- and 64-bit integers portably (Bug#8435).
18298 Without this change, on typical 64-bit hosts error ("...%d...", N)
18299 was used to print both 32- and 64-bit integers N, which relied on
18300 undefined behavior.
18301 * lisp.h, m/amdx86-64.h, m/ia64.h, m/ibms390x.h (pEd): New macro.
18302 * lisp.h (error, verror): Mark as printf-like functions.
18303 * eval.c (verror): Use vsnprintf, not doprnt, to do the real work.
18304 Report overflow in size calculations when allocating printf buffer.
18305 Do not truncate output string at its first null byte.
18306 * xdisp.c (vmessage): Use vsnprintf, not doprnt, to do the real work.
18307 Truncate the output at a character boundary, since vsnprintf does not
18308 do that.
18309 * charset.c (check_iso_charset_parameter): Convert internal
18310 character to string before calling 'error', since %c now has the
18311 printf meaning.
18312 * coding.c (Fdecode_sjis_char, Fdecode_big5_char): Avoid int
18313 overflow when computing char to be passed to 'error'. Do not
18314 pass Lisp_Object to 'error'; pass the integer instead.
18315 * nsfns.m (Fns_do_applescript): Use int, not long, since it's
18316 formatted with plain %d.
18317
18318 * eval.c (internal_lisp_condition_case): Don't pass spurious arg.
18319
18320 * keyboard.c (access_keymap_keyremap): Print func name, not garbage.
18321
18322 * coding.c (Fdecode_sjis_char): Don't assume CODE fits in int.
18323
18324 * xterm.c (x_catch_errors): Remove duplicate declaration.
18325
18326 * term.c (maybe_fatal): Mark its 3rd arg as a printf format, too.
18327
18328 * xdisp.c, lisp.h (message_nolog): Remove; unused.
18329
18330 2011-04-10 Jim Meyering <meyering@redhat.com>
18331
18332 use ssize_t and size_t for read- and write-like emacs_gnutls_* functions
18333 * gnutls.c (emacs_gnutls_read): Adjust signature to be more read-like:
18334 return ssize_t not "int", and use size_t as the buffer length.
18335 (emacs_gnutls_write): Likewise, and make the buffer pointer "const".
18336 * gnutls.h: Update declarations.
18337 * process.c (read_process_output): Use ssize_t, to match.
18338 (send_process): Likewise.
18339
18340 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
18341
18342 * image.c (Fimagemagick_types): Doc fix, and comment cleanup.
18343
18344 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
18345
18346 * ftfont.c (get_adstyle_property, ftfont_pattern_entity):
18347 Use unsigned char, to match FcChar8 type definition.
18348
18349 * xterm.c (handle_one_xevent):
18350 * xmenu.c (create_and_show_popup_menu):
18351 * xselect.c (x_decline_selection_request)
18352 (x_reply_selection_request): Avoid type-punned deref of X events.
18353
18354 2011-04-09 Eli Zaretskii <eliz@gnu.org>
18355
18356 Fix some uses of `int' instead of EMACS_INT.
18357 * search.c (string_match_1, fast_string_match)
18358 (fast_c_string_match_ignore_case, fast_string_match_ignore_case)
18359 (scan_buffer, find_next_newline_no_quit)
18360 (find_before_next_newline, search_command, Freplace_match)
18361 (Fmatch_data): Make some `int' variables be EMACS_INT.
18362
18363 * xdisp.c (display_count_lines): 3rd argument and return value now
18364 EMACS_INT. All callers changed.
18365 (pint2hrstr): Last argument is now EMACS_INT.
18366
18367 * coding.c (detect_coding_utf_8, detect_coding_emacs_mule)
18368 (detect_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
18369 (detect_coding_ccl, detect_coding_charset, decode_coding_utf_8)
18370 (decode_coding_utf_16, decode_coding_emacs_mule)
18371 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
18372 (decode_coding_ccl, decode_coding_charset)
18373 <consumed_chars, consumed_chars_base>: Declare EMACS_INT.
18374 (decode_coding_iso_2022, decode_coding_emacs_mule)
18375 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
18376 <char_offset, last_offset>: Declare EMACS_INT.
18377 (encode_coding_utf_8, encode_coding_utf_16)
18378 (encode_coding_emacs_mule, encode_invocation_designation)
18379 (encode_designation_at_bol, encode_coding_iso_2022)
18380 (encode_coding_sjis, encode_coding_big5, encode_coding_ccl)
18381 (encode_coding_raw_text, encode_coding_charset) <produced_chars>:
18382 Declare EMACS_INT.
18383 (ASSURE_DESTINATION): Declare more_bytes EMACS_INT.
18384 (encode_invocation_designation): Last argument P_NCHARS is now
18385 EMACS_INT.
18386 (decode_eol): Declare pos_byte, pos, and pos_end EMACS_INT.
18387 (produce_chars): from_nchars and to_nchars are now EMACS_INT.
18388
18389 * coding.h (struct coding_system) <head_ascii>: Declare EMACS_INT.
18390 All users changed.
18391
18392 * ccl.c (Fccl_execute_on_string): Declare some variables
18393 EMACS_INT.
18394
18395 2011-04-08 Samuel Thibault <sthibault@debian.org> (tiny change)
18396
18397 * term.c (init_tty): Fix incorrect ifdef placement (Bug#8450).
18398
18399 2011-03-19 Christoph Scholtes <cschol2112@googlemail.com>
18400
18401 * process.c (Fformat_network_address): Doc fix.
18402
18403 2011-04-08 T.V. Raman <tv.raman.tv@gmail.com> (tiny change)
18404
18405 * xml.c (parse_region): Avoid creating spurious whitespace nodes.
18406
18407 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
18408
18409 * keyboard.c (read_char): Call Lisp function help-form-show,
18410 instead of using internal_with_output_to_temp_buffer.
18411 (Qhelp_form_show): New var.
18412 (syms_of_keyboard): Use DEFSYM macro.
18413
18414 * print.c (internal_with_output_to_temp_buffer): Function deleted.
18415
18416 * lisp.h (internal_with_output_to_temp_buffer): Remove prototype.
18417
18418 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
18419
18420 * process.c (Flist_processes): Remove to Lisp.
18421 (list_processes_1): Delete.
18422
18423 2011-04-06 Eli Zaretskii <eliz@gnu.org>
18424
18425 * msdos.c (careadlinkat, careadlinkatcwd): MS-DOS replacements.
18426
18427 * w32.c (careadlinkat, careadlinkatcwd): New always-fail stubs.
18428
18429 2011-04-06 Paul Eggert <eggert@cs.ucla.edu>
18430
18431 Fix more problems found by GCC 4.6.0's static checks.
18432
18433 * xmenu.c (Fx_popup_dialog): Don't assume string is free of formats.
18434
18435 * menu.c (Fx_popup_menu): Don't assume error_name lacks printf formats.
18436
18437 * lisp.h (message, message_nolog, fatal): Mark as printf-like.
18438
18439 * xdisp.c (vmessage): Mark as a printf-like function.
18440
18441 * term.c (vfatal, maybe_fatal): Mark as printf-like functions.
18442
18443 * sound.c (sound_warning): Don't crash if arg contains a printf format.
18444
18445 * image.c (tiff_error_handler, tiff_warning_handler): Mark as
18446 printf-like functions.
18447 (tiff_load): Add casts to remove these marks before passing them
18448 to system-supplied API.
18449
18450 * eval.c (Fsignal): Remove excess argument to 'fatal'.
18451
18452 * coding.c (EMIT_ONE_BYTE, EMIT_TWO_BYTES): Use unsigned, not int.
18453 This avoids several warnings with gcc -Wstrict-overflow.
18454 (DECODE_COMPOSITION_RULE): If the rule is invalid, goto invalid_code
18455 directly, rather than having caller test rule sign. This avoids
18456 some unnecessary tests.
18457 * composite.h (COMPOSITION_ENCODE_RULE_VALID): New macro.
18458 (COMPOSITION_ENCODE_RULE): Arguments now must be valid. This
18459 affects only one use, in DECODE_COMPOSITION_RULE, which is changed.
18460
18461 * xfont.c (xfont_text_extents): Remove var that was set but not used.
18462 (xfont_open): Avoid unnecessary tests.
18463
18464 * composite.c (composition_gstring_put_cache): Use unsigned integer.
18465
18466 * composite.h, composite.c (composition_gstring_put_cache):
18467 Use EMACS_INT, not int, for length.
18468
18469 * composite.h (COMPOSITION_DECODE_REFS): New macro,
18470 breaking out part of COMPOSITION_DECODE_RULE.
18471 (COMPOSITION_DECODE_RULE): Use it.
18472 * composite.c (get_composition_id): Remove unused local vars,
18473 by using the new macro.
18474
18475 * textprop.c (set_text_properties_1): Change while to do-while,
18476 since the condition is always true at first.
18477
18478 * intervals.c (graft_intervals_into_buffer): Mark var as used.
18479 (interval_deletion_adjustment): Return unsigned value.
18480 All uses changed.
18481
18482 * process.c (list_processes_1, create_pty, read_process_output):
18483 (exec_sentinel): Remove vars that were set but not used.
18484 (create_pty): Remove unnecessary "volatile"s.
18485 (Fnetwork_interface_info): Avoid possibility of int overflow.
18486 (read_process_output): Do adaptive read buffering even if carryover.
18487 (read_process_output): Simplify nbytes computation if buffered.
18488
18489 * bytecode.c (exec_byte_code): Rename local to avoid shadowing.
18490
18491 * syntax.c (scan_words): Remove var that was set but not used.
18492 (update_syntax_table): Use unsigned instead of int.
18493
18494 * lread.c (lisp_file_lexically_bound_p): Use ints rather than endptrs.
18495 (lisp_file_lexically_bound_p, read1): Use unsigned instead of int.
18496 (safe_to_load_p): Make the end-of-loop test the inverse of the in-loop.
18497
18498 * print.c (print_error_message): Avoid int overflow.
18499
18500 * font.c (font_list_entities): Redo for clarity,
18501 so that reader need not know FONT_DPI_INDEX + 1 == FONT_SPACING_INDEX.
18502
18503 * font.c (font_find_for_lface, Ffont_get_glyphs): Remove unused vars.
18504 (font_score): Avoid potential overflow in diff calculation.
18505
18506 * fns.c (substring_both): Remove var that is set but not used.
18507 (sxhash): Redo loop for clarity and to avoid wraparound warning.
18508
18509 * eval.c (funcall_lambda): Rename local to avoid shadowing.
18510
18511 * alloc.c (mark_object_loop_halt, mark_object): Use size_t, not int.
18512 Otherwise, GCC 4.6.0 optimizes the loop check away since the check
18513 can always succeed if overflow has undefined behavior.
18514
18515 * search.c (boyer_moore, wordify): Remove vars set but not used.
18516 (wordify): Omit three unnecessary tests.
18517
18518 * indent.c (MULTIBYTE_BYTES_WIDTH): Don't compute wide_column.
18519 All callers changed. This avoids the need for an unused var.
18520
18521 * casefiddle.c (casify_region): Remove var that is set but not used.
18522
18523 * dired.c (file_name_completion): Remove var that is set but not used.
18524
18525 * fileio.c (Finsert_file_contents): Make EOF condition clearer.
18526
18527 * fileio.c (Finsert_file_contents): Avoid signed integer overflow.
18528 (Finsert_file_contents): Remove unnecessary code checking fd.
18529
18530 * minibuf.c (read_minibuf_noninteractive): Use size_t for sizes.
18531 Check for integer overflow on size calculations.
18532
18533 * buffer.c (Fprevious_overlay_change): Remove var that is set
18534 but not used.
18535
18536 * keyboard.c (menu_bar_items, read_char_minibuf_menu_prompt):
18537 Remove vars that are set but not used.
18538 (timer_check_2): Don't assume timer-list and idle-timer-list are lists.
18539 (timer_check_2): Mark vars as initialized.
18540
18541 * gtkutil.c (xg_get_file_with_chooser): Mark var as initialized.
18542
18543 * image.c (lookup_image): Remove var that is set but not used.
18544 (xbm_load): Use parse_p, for gcc -Werror=unused-but-set-variable.
18545
18546 * fontset.c (Finternal_char_font, Ffontset_info): Remove vars
18547 that are set but not used.
18548
18549 * xfns.c (make_invisible_cursor): Don't return garbage
18550 if XCreateBitmapFromData fails (Bug#8410).
18551
18552 * xselect.c (x_get_local_selection, x_handle_property_notify):
18553 Remove vars that are set but not used.
18554
18555 * xfns.c (x_create_tip_frame): Remove var that is set but not used.
18556 (make_invisible_cursor): Initialize a possibly-uninitialized variable.
18557
18558 * xterm.c (x_scroll_bar_to_input_event) [!USE_GTK]:
18559 Remove var that is set but not used.
18560 (scroll_bar_windows_size): Now size_t, not int.
18561 (x_send_scroll_bar_event): Use size_t, not int, for sizes.
18562 Check for overflow.
18563
18564 * xfaces.c (realize_named_face): Remove vars that are set but not used.
18565 (map_tty_color) [!defined MSDOS]: Likewise.
18566
18567 * term.c (tty_write_glyphs): Use size_t; this avoids overflow warning.
18568
18569 * coding.c: Remove vars that are set but not used.
18570 (DECODE_COMPOSITION_RULE): Remove 2nd arg, which is unused.
18571 All callers changed.
18572 (decode_coding_utf_8, decode_coding_utf_16 decode_coding_emacs_mule):
18573 (decode_coding_iso_2022, encode_coding_sjis, encode_coding_big5):
18574 (decode_coding_charset): Remove vars that are set but not used.
18575
18576 * bytecode.c (Fbyte_code) [!defined BYTE_CODE_SAFE]: Remove var
18577 that is set but not used.
18578
18579 * print.c (print_object): Remove var that is set but not used.
18580
18581 Replace 2 copies of readlink code with 1 gnulib version (Bug#8401).
18582 The gnulib version avoids calling malloc in the usual case,
18583 and on 64-bit hosts doesn't have some arbitrary 32-bit limits.
18584 * fileio.c (Ffile_symlink_p): Use emacs_readlink.
18585 * filelock.c (current_lock_owner): Likewise.
18586 * lisp.h (READLINK_BUFSIZE, emacs_readlink): New function.
18587 * sysdep.c: Include allocator.h, careadlinkat.h.
18588 (emacs_no_realloc_allocator): New static constant.
18589 (emacs_readlink): New function.
18590 * deps.mk (sysdep.o): Depend on ../lib/allocator.h and on
18591 ../lib/careadlinkat.h.
18592
18593 2011-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
18594
18595 * keyboard.c (safe_run_hook_funcall): Fix last change (don't stop at the
18596 first non-nil return value).
18597
18598 2011-04-03 Jan Djärv <jan.h.d@swipnet.se>
18599
18600 * nsterm.m (ns_update_auto_hide_menu_bar): Define MAC_OS_X_VERSION_10_6
18601 if not defined (Bug#8403).
18602
18603 2011-04-02 Juanma Barranquero <lekktu@gmail.com>
18604
18605 * xdisp.c (display_count_lines): Remove parameter `start',
18606 unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
18607 (get_char_face_and_encoding): Remove parameter `multibyte_p',
18608 unused since 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
18609 (fill_stretch_glyph_string): Remove parameters `row' and `area',
18610 unused at least since Kim's GUI unification at 2003-03-16T20:45:46Z!storm@cua.dk
18611 and thereabouts. All callers changed.
18612 (get_per_char_metric): Remove parameter `f', unused since
18613 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
18614
18615 2011-04-02 Jim Meyering <meyering@redhat.com>
18616
18617 do not dereference NULL upon failed strdup
18618 * nsfont.m (ns_descriptor_to_entity): Use xstrdup, not strdup.
18619 (ns_get_family): Likewise.
18620
18621 2011-04-02 Juanma Barranquero <lekktu@gmail.com>
18622
18623 * eval.c (unwind_to_catch) [DEBUG_GCPRO]: Remove redundant assignment.
18624
18625 2011-04-02 Jan Djärv <jan.h.d@swipnet.se>
18626
18627 * nsterm.m (ns_update_auto_hide_menu_bar): Only for OSX 10.6 or
18628 later (Bug#8403).
18629
18630 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
18631
18632 Add lexical binding.
18633
18634 * window.c (Ftemp_output_buffer_show): New fun.
18635 (Fsave_window_excursion):
18636 * print.c (Fwith_output_to_temp_buffer): Move to subr.el.
18637
18638 * lread.c (lisp_file_lexically_bound_p): New function.
18639 (Fload): Bind Qlexical_binding.
18640 (readevalloop): Remove `evalfun' arg.
18641 Bind Qinternal_interpreter_environment.
18642 (Feval_buffer): Bind Qlexical_binding.
18643 (defvar_int, defvar_bool, defvar_lisp_nopro, defvar_kboard):
18644 Mark as dynamic.
18645 (syms_of_lread): Declare `lexical-binding'.
18646
18647 * lisp.h (struct Lisp_Symbol): New field `declared_special'.
18648
18649 * keyboard.c (eval_dyn): New fun.
18650 (menu_item_eval_property): Use it.
18651
18652 * image.c (parse_image_spec): Use Ffunctionp.
18653
18654 * fns.c (concat, mapcar1): Accept byte-code-functions.
18655
18656 * eval.c (Fsetq): Handle lexical vars.
18657 (Fdefun, Fdefmacro, Ffunction): Make closures when needed.
18658 (Fdefconst, Fdefvaralias, Fdefvar): Mark as dynamic.
18659 (FletX, Flet): Obey lexical binding.
18660 (Fcommandp): Handle closures.
18661 (Feval): New `lexical' arg.
18662 (eval_sub): New function extracted from Feval. Use it almost
18663 everywhere where Feval was used. Look up vars in lexical env.
18664 Handle closures.
18665 (Ffunctionp): Move from subr.el.
18666 (Ffuncall): Handle closures.
18667 (apply_lambda): Remove `eval_flags'.
18668 (funcall_lambda): Handle closures and new byte-code-functions.
18669 (Fspecial_variable_p): New function.
18670 (syms_of_eval): Initialize the Vinternal_interpreter_environment var,
18671 but without exporting it to Lisp.
18672
18673 * doc.c (Fdocumentation, store_function_docstring):
18674 * data.c (Finteractive_form): Handle closures.
18675
18676 * callint.c (Fcall_interactively): Preserve lexical-binding mode for
18677 interactive spec.
18678
18679 * bytecode.c (Bstack_ref, Bstack_set, Bstack_set2, BdiscardN):
18680 New byte-codes.
18681 (exec_byte_code): New function extracted from Fbyte_code to handle new
18682 calling convention for byte-code-functions. Add new byte-codes.
18683
18684 * buffer.c (defvar_per_buffer): Set new `declared_special' field.
18685
18686 * alloc.c (Fmake_symbol): Init new `declared_special' field.
18687
18688 2011-03-31 Juanma Barranquero <lekktu@gmail.com>
18689
18690 * xdisp.c (redisplay_internal): Fix prototype.
18691
18692 2011-03-31 Eli Zaretskii <eliz@gnu.org>
18693
18694 * xdisp.c (SCROLL_LIMIT): New macro.
18695 (try_scrolling): Use it when setting scroll_limit.
18696 Limit scrolling to 100 screen lines.
18697 (redisplay_window): Even when falling back on "recentering",
18698 position point in the window according to scroll-conservatively,
18699 scroll-margin, and scroll-*-aggressively variables. (Bug#6671)
18700
18701 (try_scrolling): When point is above the window, allow searching
18702 as far as scroll_max, or one screenful, to compute vertical
18703 distance from PT to the scroll margin position. This prevents
18704 try_scrolling from unnecessarily failing when
18705 scroll-conservatively is set to a value slightly larger than the
18706 window height. Clean up the case of PT below the margin at bottom
18707 of window: scroll_max can no longer be INT_MAX. When aggressive
18708 scrolling is in use, don't let point enter the opposite scroll
18709 margin as result of the scroll.
18710 (syms_of_xdisp) <scroll-conservatively>: Document the
18711 threshold of 100 lines for never-recentering scrolling.
18712
18713 2011-03-31 Juanma Barranquero <lekktu@gmail.com>
18714
18715 * dispextern.h (move_it_by_lines):
18716 * xdisp.c (move_it_by_lines): Remove parameter `need_y_p', unused
18717 since 2000-12-29T14:24:09Z!gerd@gnu.org. All callers changed.
18718 (message_log_check_duplicate): Remove parameters `prev_bol' and
18719 `this_bol', unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
18720 (redisplay_internal): Remove parameter `preserve_echo_area',
18721 unused since 1999-07-21T21:43:52Z!gerd@gnu.org. All callers changed.
18722
18723 * indent.c (Fvertical_motion):
18724 * window.c (window_scroll_pixel_based, Frecenter):
18725 Don't pass `need_y_p' to `move_it_by_lines'.
18726
18727 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
18728
18729 * eval.c (struct backtrace): Don't cheat with negative numbers, but do
18730 steal a few bits to be more compact.
18731 (interactive_p, Fbacktrace, Fbacktrace_frame, mark_backtrace):
18732 Remove unneeded casts.
18733
18734 * bytecode.c (Fbyte_code): CAR and CDR can GC.
18735
18736 2011-03-30 Zachary Kanfer <zkanfer@gmail.com> (tiny change)
18737
18738 * keyboard.c (Fexecute_extended_command): Do log the "suggest key
18739 binding" message (bug#7967).
18740
18741 2011-03-30 Paul Eggert <eggert@cs.ucla.edu>
18742
18743 Fix more problems found by GCC 4.6.0's static checks.
18744
18745 * unexelf.c (unexec) [! (defined _SYSTYPE_SYSV || defined __sgi)]:
18746 Remove unused local var.
18747
18748 * editfns.c (Fmessage_box): Remove unused local var.
18749
18750 * xdisp.c (try_window_reusing_current_matrix, x_produce_glyphs):
18751 (note_mode_line_or_margin_highlight, note_mouse_highlight):
18752 Omit unused local vars.
18753 * window.c (shrink_windows): Omit unused local var.
18754 * menu.c (digest_single_submenu): Omit unused local var.
18755 * dispnew.c (update_window) [PERIODIC_PREEMPTION_CHECKING]:
18756 Omit unused local var.
18757
18758 * keyboard.c (parse_modifiers_uncached, parse_modifiers):
18759 Don't assume string length fits in int.
18760 (keyremap_step, read_key_sequence): Use size_t for sizes.
18761 (read_key_sequence): Don't check last_real_key_start redundantly.
18762
18763 * callproc.c (Fcall_process, Fcall_process_region): Use SAFE_ALLOCA
18764 instead of alloca (Bug#8344).
18765
18766 * eval.c (Fbacktrace): Don't assume nargs fits in int.
18767 (Fbacktrace_frame): Don't assume nframes fits in int.
18768
18769 * syntax.c (scan_sexps_forward): Avoid pointer wraparound.
18770
18771 * xterm.c (x_make_frame_visible, same_x_server): Redo to avoid overflow
18772 concerns.
18773
18774 * term.c (produce_glyphless_glyph): Remove unnecessary test.
18775
18776 * cm.c (calccost): Turn while-do into do-while, for clarity.
18777
18778 * keyboard.c (syms_of_keyboard): Use the same style as later
18779 in this function when indexing through an array. This also
18780 works around GCC bug 48267.
18781
18782 * image.c (tiff_load): Fix off-by-one image count (Bug#8336).
18783
18784 * xselect.c (x_check_property_data): Return correct size (Bug#8335).
18785
18786 * chartab.c (sub_char_table_ref_and_range): Redo for slight
18787 efficiency gain, and to bypass a gcc -Wstrict-overflow warning.
18788
18789 * keyboard.c, keyboard.h (num_input_events): Now size_t.
18790 This avoids undefined behavior on integer overflow, and is a bit
18791 more convenient anyway since it is compared to a size_t variable.
18792
18793 Variadic C functions now count arguments with size_t, not int.
18794 This avoids an unnecessary limitation on 64-bit machines, which
18795 caused (substring ...) to crash on large vectors (Bug#8344).
18796 * lisp.h (struct Lisp_Subr.function.aMANY): Now takes size_t, not int.
18797 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call): Likewise.
18798 All variadic functions and their callers changed accordingly.
18799 (struct gcpro.nvars): Now size_t, not int. All uses changed.
18800 * data.c (arith_driver, float_arith_driver): Likewise.
18801 * editfns.c (general_insert_function): Likewise.
18802 * eval.c (struct backtrace.nargs, interactive_p)
18803 (internal_condition_case_n, run_hook_with_args, apply_lambda)
18804 (funcall_lambda, mark_backtrace): Likewise.
18805 * fns.c (concat): Likewise.
18806 * frame.c (x_set_frame_parameters): Likewise.
18807 * fns.c (get_key_arg): Now accepts and returns size_t, and returns
18808 0 if not found, not -1. All callers changed.
18809
18810 * alloc.c (garbage_collect): Don't assume stack size fits in int.
18811 (stack_copy_size): Now size_t, not int.
18812 (stack_copy, stack_copy_size): Define only if MAX_SAVE_STACK > 0.
18813
18814 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
18815
18816 * coding.c (encode_designation_at_bol): Remove parameter `charbuf_end',
18817 unused since 2002-03-01T01:17:24Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
18818 All callers changed.
18819
18820 * lisp.h (multibyte_char_to_unibyte):
18821 * character.c (multibyte_char_to_unibyte): Remove parameter `rev_tbl',
18822 unused since 2002-03-01T01:16:34Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
18823 * character.h (CHAR_TO_BYTE8):
18824 * cmds.c (internal_self_insert):
18825 * editfns.c (general_insert_function):
18826 * keymap.c (push_key_description):
18827 * search.c (Freplace_match):
18828 * xdisp.c (message_dolog, set_message_1): All callers changed.
18829
18830 2011-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
18831
18832 * keyboard.c (safe_run_hook_funcall): New function.
18833 (safe_run_hooks_1, safe_run_hooks_error, safe_run_hooks): On error,
18834 don't set the hook to nil, but remove the offending function instead.
18835 (Qcommand_hook_internal): Remove, unused.
18836 (syms_of_keyboard): Don't initialize Qcommand_hook_internal nor define
18837 Vcommand_hook_internal.
18838
18839 * eval.c (enum run_hooks_condition): Remove.
18840 (funcall_nil, funcall_not): New functions.
18841 (run_hook_with_args): Call each function through a `funcall' argument.
18842 Remove `cond' argument, now redundant.
18843 (Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success)
18844 (Frun_hook_with_args_until_failure): Adjust accordingly.
18845 (run_hook_wrapped_funcall, Frun_hook_wrapped): New functions.
18846
18847 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
18848
18849 * dispextern.h (string_buffer_position): Remove declaration.
18850
18851 * print.c (strout): Remove parameter `multibyte', unused since
18852 1999-08-21T19:30:21Z!gerd@gnu.org. All callers changed.
18853
18854 * search.c (boyer_moore): Remove parameters `len', `pos' and `lim',
18855 never used since function introduction in 1998-02-08T21:33:56Z!rms@gnu.org.
18856 All callers changed.
18857
18858 * w32.c (_wsa_errlist): Use braces for struct initializers.
18859
18860 * xdisp.c (string_buffer_position_lim): Remove parameter `w',
18861 never used since function introduction in 2001-03-09T18:41:50Z!gerd@gnu.org.
18862 All callers changed.
18863 (string_buffer_position): Likewise. Also, make static (it's never
18864 used outside xdisp.c).
18865 (cursor_row_p): Remove parameter `w', unused since
18866 2000-10-17T16:08:57Z!gerd@gnu.org. All callers changed.
18867 (decode_mode_spec): Remove parameter `precision', introduced during
18868 Gerd Moellmann's rewrite at 1999-07-21T21:43:52Z!gerd@gnu.org, but never used.
18869 All callers changed.
18870
18871 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
18872
18873 * nsterm.m (syms_of_nsterm): Use doc: for ns-auto-hide-menu-bar.
18874
18875 2011-03-27 Anders Lindgren <andlind@gmail.com>
18876
18877 * nsterm.m (ns_menu_bar_is_hidden): New variable.
18878 (ns_constrain_all_frames, ns_menu_bar_should_be_hidden)
18879 (ns_update_auto_hide_menu_bar): New functions.
18880 (ns_update_begin): Call ns_update_auto_hide_menu_bar.
18881 (applicationDidBecomeActive): Call ns_update_auto_hide_menu_bar and
18882 ns_constrain_all_frames.
18883 (constrainFrameRect): Return at once if ns_menu_bar_should_be_hidden.
18884 (syms_of_nsterm): DEFVAR ns-auto-hide-menu-bar, init to Qnil.
18885
18886 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
18887
18888 * nsmenu.m (runDialogAt): Remove argument to timer_check.
18889
18890 2011-03-27 Glenn Morris <rgm@gnu.org>
18891
18892 * syssignal.h: Replace RETSIGTYPE with void.
18893 * atimer.c, data.c, dispnew.c, emacs.c, floatfns.c, keyboard.c:
18894 * keyboard.h, lisp.h, process.c, sysdep.c, xterm.c:
18895 Replace SIGTYPE with void everywhere.
18896 * s/usg5-4-common.h (SIGTYPE): Remove definition.
18897 * s/template.h (SIGTYPE): Remove commented out definition.
18898
18899 2011-03-26 Eli Zaretskii <eliz@gnu.org>
18900
18901 * xdisp.c (redisplay_window): Don't check buffer's clip_changed
18902 flag as a prerequisite for invoking try_scrolling. (Bug#6671)
18903
18904 2011-03-26 Juanma Barranquero <lekktu@gmail.com>
18905
18906 * w32.c (read_unc_volume): Use parameter `henum', instead of
18907 global variable `wget_enum_handle'.
18908
18909 * keymap.c (describe_vector): Remove parameters `indices' and
18910 `char_table_depth', unused since 2002-03-01T01:43:26Z!handa@m17n.org.
18911 (describe_map, Fdescribe_vector): Adjust calls to `describe_vector'.
18912
18913 * keyboard.h (timer_check, show_help_echo): Remove unused parameters.
18914
18915 * keyboard.c (timer_check): Remove parameter `do_it_now',
18916 unused since 1996-04-12T06:01:29Z!rms@gnu.org.
18917 (show_help_echo): Remove parameter `ok_to_overwrite_keystroke_echo',
18918 unused since 2008-04-19T19:30:53Z!monnier@iro.umontreal.ca.
18919
18920 * keyboard.c (read_char):
18921 * w32menu.c (w32_menu_display_help):
18922 * xmenu.c (show_help_event, menu_help_callback):
18923 Adjust calls to `show_help_echo'.
18924
18925 * gtkutil.c (xg_maybe_add_timer):
18926 * keyboard.c (readable_events):
18927 * process.c (wait_reading_process_output):
18928 * xmenu.c (x_menu_wait_for_event): Adjust calls to `timer_check'.
18929
18930 * insdel.c (adjust_markers_gap_motion):
18931 Remove; no-op since 1998-01-02T21:29:48Z!rms@gnu.org.
18932 (gap_left, gap_right): Don't call it.
18933
18934 2011-03-25 Chong Yidong <cyd@stupidchicken.com>
18935
18936 * xdisp.c (handle_fontified_prop): Discard changes to clip_changed
18937 incurred during fontification.
18938
18939 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
18940
18941 * buffer.c (defvar_per_buffer): Remove unused parameter `doc'.
18942 (DEFVAR_PER_BUFFER): Don't pass it.
18943
18944 * dispnew.c (row_equal_p, add_row_entry): Remove unused parameter `w'.
18945 (scrolling_window): Don't pass it.
18946
18947 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
18948
18949 * dispextern.h (glyph_matric): Use #if GLYPH_DEBUG, not #ifdef.
18950
18951 * fileio.c (check_executable) [DOS_NT]: Remove unused variables `len'
18952 and `suffix'.
18953 (Fset_file_selinux_context) [HAVE_LIBSELINUX]: Move here declaration
18954 of variables specific to SELinux and computation of `encoded_absname'.
18955
18956 * image.c (XPutPixel): Remove unused variable `height'.
18957
18958 * keyboard.c (make_lispy_event): Remove unused variable `hpos'.
18959
18960 * unexw32.c (get_section_info): Remove unused variable `section'.
18961
18962 * w32.c (stat): Remove unused variables `drive_root' and `devtype'.
18963 (system_process_attributes): Remove unused variable `sess'.
18964 (sys_read): Remove unused variable `err'.
18965
18966 * w32fns.c (top): Wrap variables with #if GLYPH_DEBUG, not #ifdef.
18967 (w32_wnd_proc): Remove unused variable `isdead'.
18968 (unwind_create_frame): Use #if GLYPH_DEBUG, not #ifdef.
18969 (Fx_server_max_request_size): Remove unused variable `dpyinfo'.
18970 (x_create_tip_frame): Remove unused variable `tem'.
18971
18972 * w32inevt.c (w32_console_read_socket):
18973 Remove unused variable `no_events'.
18974
18975 * w32term.c (x_draw_composite_glyph_string_foreground):
18976 Remove unused variable `width'.
18977
18978 2011-03-24 Juanma Barranquero <lekktu@gmail.com>
18979
18980 * w32term.c (x_set_glyph_string_clipping):
18981 Don't pass uninitialized region to CombineRgn.
18982
18983 2011-03-23 Juanma Barranquero <lekktu@gmail.com>
18984
18985 * w32fns.c (x_set_menu_bar_lines): Remove unused variable `olines'.
18986 (w32_wnd_proc): Pass NULL to Windows API, not uninitialized buffer.
18987 (Fx_close_connection): Remove unused variable `i'.
18988
18989 * w32font.c (w32font_draw): Return number of glyphs.
18990 (w32font_open_internal): Remove unused variable `i'.
18991 (w32font_driver): Add missing initializer.
18992
18993 * w32menu.c (utf8to16): Remove unused variable `utf16'.
18994 (fill_in_menu): Remove unused variable `items_added'.
18995
18996 * w32term.c (last_mouse_press_frame): Remove static global variable.
18997 (w32_clip_to_row): Remove unused variable `f'.
18998 (x_delete_terminal): Remove unused variable `i'.
18999
19000 * w32uniscribe.c (uniscribe_shape): Remove unused variable `nclusters'.
19001 (NOTHING): Remove unused static global variable.
19002 (uniscribe_check_otf): Remove unused variable `table'.
19003 (uniscribe_font_driver): Add missing initializers.
19004
19005 2011-03-23 Julien Danjou <julien@danjou.info>
19006
19007 * term.c (Fsuspend_tty, Fresume_tty):
19008 * minibuf.c (read_minibuf, run_exit_minibuf_hook):
19009 * window.c (temp_output_buffer_show):
19010 * insdel.c (signal_before_change):
19011 * frame.c (Fhandle_switch_frame):
19012 * fileio.c (Fdo_auto_save):
19013 * emacs.c (Fkill_emacs):
19014 * editfns.c (save_excursion_restore):
19015 * cmds.c (internal_self_insert):
19016 * callint.c (Fcall_interactively):
19017 * buffer.c (Fkill_all_local_variables):
19018 * keyboard.c (Fcommand_execute, Fsuspend_emacs, safe_run_hooks_1):
19019 Use Frun_hooks.
19020 (command_loop_1): Use Frun_hooks. Call safe_run_hooks
19021 unconditionally since it does the check itself.
19022
19023 2011-03-23 Paul Eggert <eggert@cs.ucla.edu>
19024
19025 Fix more problems found by GCC 4.5.2's static checks.
19026
19027 * coding.c (encode_coding_raw_text): Avoid unnecessary test
19028 the first time through the loop, since we know p0 < p1 then.
19029 This also avoids a gcc -Wstrict-overflow warning.
19030
19031 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP): Avoid 'int' overflow
19032 leading to a memory leak, possible in functions like
19033 load_charset_map_from_file that can allocate an unbounded number
19034 of objects (Bug#8318).
19035
19036 * xmenu.c (set_frame_menubar): Use EMACS_UINT, not int, for indexes
19037 that could (at least in theory) be that large.
19038
19039 * xdisp.c (message_log_check_duplicate): Return unsigned long, not int.
19040 This is less likely to overflow, and avoids undefined behavior if
19041 overflow does occur. All callers changed. Use strtoul to scan
19042 for the unsigned long integer.
19043 (pint2hrstr): Simplify and tune code slightly.
19044 This also avoids a (bogus) GCC warning with gcc -Wstrict-overflow.
19045
19046 * scroll.c (do_scrolling): Work around GCC bug 48228.
19047 See <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48228>.
19048
19049 * frame.c (Fmodify_frame_parameters): Simplify loop counter.
19050 This also avoids a warning with gcc -Wstrict-overflow.
19051 (validate_x_resource_name): Simplify count usage.
19052 This also avoids a warning with gcc -Wstrict-overflow.
19053
19054 * fileio.c (Fcopy_file): Report error if fchown or fchmod
19055 fail (Bug#8306).
19056
19057 * emacs.c (Fdaemon_initialized): Do not ignore I/O errors (Bug#8303).
19058
19059 * process.c (Fmake_network_process): Use socklen_t, not int,
19060 where POSIX says socklen_t is required in portable programs.
19061 This fixes a porting bug on hosts like 64-bit HP-UX, where
19062 socklen_t is wider than int (Bug#8277).
19063 (Fmake_network_process, server_accept_connection):
19064 (wait_reading_process_output, read_process_output):
19065 Likewise.
19066
19067 * process.c: Rename or move locals to avoid shadowing.
19068 (list_processes_1, Fmake_network_process):
19069 (read_process_output_error_handler, exec_sentinel_error_handler):
19070 Rename or move locals.
19071 (Fmake_network_process): Define label "retry_connect" only if needed.
19072 (Fnetwork_interface_info): Fix pointer signedness.
19073 (process_send_signal): Add cast to avoid pointer signedness problem.
19074 (FIRST_PROC_DESC, IF_NON_BLOCKING_CONNECT): Remove unused macros.
19075 (create_process): Use 'volatile' to avoid vfork clobbering (Bug#8298).
19076
19077 Make tparam.h and terminfo.c consistent.
19078 * cm.c (tputs, tgoto, BC, UP): Remove extern decls.
19079 Include tparam.h instead, since it declares them.
19080 * cm.h (PC): Remove extern decl; tparam.h now does this.
19081 * deps.mk (cm.o, terminfo.o): Depend on tparam.h.
19082 * terminfo.c: Include tparam.h, to check interfaces.
19083 (tparm): Make 1st arg a const pointer in decl. Put it at top level.
19084 (tparam): Adjust signature to match interface in tparam.h;
19085 this removes some undefined behavior. Check that outstring and len
19086 are zero, which they always are with Emacs.
19087 * tparam.h (PC, BC, UP): New extern decls.
19088
19089 * xftfont.c (xftfont_shape): Now static, and defined only if needed.
19090 (xftfont_open): Rename locals to avoid shadowing.
19091
19092 * ftfont.c (ftfont_resolve_generic_family): Fix pointer signedness.
19093 (ftfont_otf_capability, ftfont_shape): Omit decls if not needed.
19094 (OTF_TAG_SYM): Omit macro if not needed.
19095 (ftfont_list): Remove unused local.
19096 (get_adstyle_property, ftfont_pattern_entity):
19097 (ftfont_lookup_cache, ftfont_open, ftfont_anchor_point):
19098 Rename locals to avoid shadowing.
19099
19100 * xfont.c (xfont_list_family): Mark var as initialized.
19101
19102 * xml.c (make_dom): Now static.
19103
19104 * composite.c (composition_compute_stop_pos): Rename local to
19105 avoid shadowing.
19106 (composition_reseat_it): Remove unused locals.
19107 (find_automatic_composition, composition_adjust_point): Likewise.
19108 (composition_update_it): Mark var as initialized.
19109 (find_automatic_composition): Mark vars as initialized,
19110 with a FIXME (Bug#8290).
19111
19112 character.h: Rename locals to avoid shadowing.
19113 * character.h (PREV_CHAR_BOUNDARY, FETCH_STRING_CHAR_ADVANCE):
19114 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE, FETCH_CHAR_ADVANCE):
19115 (FETCH_CHAR_ADVANCE_NO_CHECK, INC_POS, DEC_POS, BUF_INC_POS):
19116 (BUF_DEC_POS): Be more systematic about renaming local temporaries
19117 to avoid shadowing.
19118
19119 * textprop.c (property_change_between_p): Remove; unused.
19120
19121 * intervals.c (interval_start_pos): Now static.
19122
19123 * intervals.h (CHECK_TOTAL_LENGTH): Avoid empty "else".
19124
19125 * atimer.c (start_atimer, append_atimer_lists, set_alarm):
19126 Rename locals to avoid shadowing.
19127
19128 * sound.c (wav_play, au_play, Fplay_sound_internal):
19129 Fix pointer signedness.
19130 (alsa_choose_format): Remove unused local var.
19131 (wav_play): Initialize a variable to 0, to prevent undefined
19132 behavior (Bug#8278).
19133
19134 * region-cache.c (insert_cache_boundary): Redo var to avoid shadowing.
19135
19136 * region-cache.h (pp_cache): New decl, for gcc -Wmissing-prototypes.
19137
19138 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork
19139 clobbering (Bug#8298).
19140 * sysdep.c (sys_subshell): Likewise.
19141 Previously, the sys_subshell 'volatile' was incorrectly IF_LINTted out.
19142
19143 * lisp.h (child_setup): Now NO_RETURN unless DOS_NT.
19144 This should get cleaned up, so that child_setup has the
19145 same signature on all platforms.
19146
19147 * callproc.c (call_process_cleanup): Now static.
19148 (relocate_fd): Rename locals to avoid shadowing.
19149
19150 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
19151
19152 * xterm.c (x_clear_frame): Remove XClearWindow call. This appears
19153 not to be necessary, and produces flickering.
19154
19155 2011-03-20 Glenn Morris <rgm@gnu.org>
19156
19157 * config.in: Remove file.
19158
19159 2011-03-20 Juanma Barranquero <lekktu@gmail.com>
19160
19161 * minibuf.c (Vcompleting_read_function): Don't declare, global variables
19162 are now in src/globals.h.
19163 (syms_of_minibuf): Remove spurious & from previous change.
19164
19165 2011-03-20 Leo Liu <sdl.web@gmail.com>
19166
19167 * minibuf.c (completing-read-function): New variable.
19168 (completing-read-default): Rename from completing-read.
19169 (completing-read): Call completing-read-function.
19170
19171 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
19172
19173 * xfaces.c (Fx_load_color_file):
19174 Read color file from absolute filename (bug#8250).
19175
19176 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
19177
19178 * makefile.w32-in: Update dependencies.
19179
19180 2011-03-17 Eli Zaretskii <eliz@gnu.org>
19181
19182 * makefile.w32-in ($(BLD)/unexw32.$(O)): Depend on $(SRC)/unexec.h.
19183
19184 2011-03-17 Paul Eggert <eggert@cs.ucla.edu>
19185
19186 Fix more problems found by GCC 4.5.2's static checks.
19187
19188 * process.c (make_serial_process_unwind, send_process_trap):
19189 (sigchld_handler): Now static.
19190
19191 * process.c (allocate_pty): Let PTY_ITERATION declare iteration vars.
19192 That way, the code declares only the vars that it needs.
19193 * s/aix4-2.h (PTY_ITERATION): Declare iteration vars.
19194 * s/cygwin.h (PTY_ITERATION): Likewise.
19195 * s/darwin.h (PTY_ITERATION): Likewise.
19196 * s/gnu-linux.h (PTY_ITERATION): Likewise.
19197
19198 * s/irix6-5.h (PTY_OPEN): Declare stb, to loosen coupling.
19199 * process.c (allocate_pty): Don't declare stb unless it's needed.
19200
19201 * bytecode.c (MAYBE_GC): Rewrite so as not to use empty "else".
19202 (CONSTANTLIM): Remove; unused.
19203 (METER_CODE, Bscan_buffer, Bread_char, Bset_mark):
19204 Define only if needed.
19205
19206 * unexelf.c (unexec): Name an expression,
19207 to avoid gcc -Wbad-function-cast warning.
19208 Use a different way to cause a compilation error if anyone uses
19209 n rather than nn, a way that does not involve shadowing.
19210 (ELF_BSS_SECTION_NAME, OLD_PROGRAM_H): Remove; unused.
19211
19212 * deps.mk (unexalpha.o): Remove; unused.
19213
19214 New file unexec.h, the (simple) interface for unexec (Bug#8267).
19215 * unexec.h: New file.
19216 * deps.mk (emacs.o, unexaix.o, unexcw.o, unexcoff.o, unexelf.o):
19217 (unexhp9k800.o, unexmacosx.o, unexsol.o, unexw32.o):
19218 Depend on unexec.h.
19219 * emacs.c [!defined CANNOT_DUMP]: Include unexec.h.
19220 * unexaix.c, unexcoff.c, unexcw.c, unexelf.c, unexhp9k800.c:
19221 * unexmacosx.c, unexsol.c, unexw32.c: Include unexec.h.
19222 Change as necessary to match prototype in unexec.h.
19223
19224 * syntax.c (Fforward_comment, scan_lists): Rename locals to avoid
19225 shadowing.
19226 (back_comment, skip_chars): Mark vars as initialized.
19227
19228 * character.h (FETCH_STRING_CHAR_ADVANCE_NO_CHECK, BUF_INC_POS):
19229 Rename locals to avoid shadowing.
19230
19231 * lread.c (read1): Rewrite so as not to use empty "else".
19232 (Fload, readevalloop, read1): Rename locals to avoid shadowing.
19233
19234 * print.c (Fredirect_debugging_output): Fix pointer signedess.
19235
19236 * lisp.h (debug_output_compilation_hack): Add decl here, to avoid
19237 warning when compiling print.c.
19238
19239 * font.c (font_unparse_fcname): Abort in an "impossible" situation
19240 instead of using an uninitialized var.
19241 (font_sort_entities): Mark var as initialized.
19242
19243 * character.h (FETCH_CHAR_ADVANCE): Rename locals to avoid shadowing.
19244
19245 * font.c (font_unparse_xlfd): Don't mix pointers to variables with
19246 pointers to constants.
19247 (font_parse_fcname): Remove unused vars.
19248 (font_delete_unmatched): Now static.
19249 (font_get_spec): Remove; unused.
19250 (font_style_to_value, font_prop_validate_style, font_unparse_fcname):
19251 (font_update_drivers, Ffont_get_glyphs, font_add_log):
19252 Rename or move locals to avoid shadowing.
19253
19254 * fns.c (require_nesting_list, require_unwind): Now static.
19255 (Ffillarray): Rename locals to avoid shadowing.
19256
19257 * floatfns.c (domain_error2): Define only if needed.
19258 (Ffrexp, Fldexp): Rename locals to avoid shadowing.
19259
19260 * alloc.c (mark_backtrace): Move decl from here ...
19261 * lisp.h: ... to here, so that it can be checked.
19262
19263 * eval.c (call_debugger, do_debug_on_call, grow_specpdl): Now static.
19264 (Fdefvar): Rewrite so as not to use empty "else".
19265 (lisp_indirect_variable): Name an expression,
19266 to avoid gcc -Wbad-function-cast warning.
19267 (Fdefvar): Rename locals to avoid shadowing.
19268
19269 * callint.c (quotify_arg, quotify_args): Now static.
19270 (Fcall_interactively): Rename locals to avoid shadowing.
19271 Use const pointer when appropriate.
19272
19273 * lisp.h (get_system_name, get_operating_system_release):
19274 Move decls here, to check interfaces.
19275 * process.c (get_operating_system_release): Move decl to lisp.h.
19276 * xrdb.c (get_system_name): Likewise.
19277 * editfns.c (init_editfns, Fuser_login_name, Fuser_uid):
19278 (Fuser_real_uid, Fuser_full_name): Remove unnecessary casts,
19279 some of which prompt warnings from gcc -Wbad-function-cast.
19280 (Fformat_time_string, Fencode_time, Finsert_char):
19281 (Ftranslate_region_internal, Fformat):
19282 Rename or remove local vars to avoid shadowing.
19283 (Ftranslate_region_internal): Mark var as initialized.
19284
19285 * doc.c (Fdocumentation, Fsnarf_documentation): Move locals to
19286 avoid shadowing.
19287
19288 * lisp.h (eassert): Check that the argument compiles, even if
19289 ENABLE_CHECKING is not defined.
19290
19291 * data.c (Findirect_variable): Name an expression, to avoid
19292 gcc -Wbad-function-cast warning.
19293 (default_value, arithcompare, arith_driver, arith_error): Now static.
19294 (store_symval_forwarding): Rename local to avoid shadowing.
19295 (Fmake_variable_buffer_local, Fmake_local_variable):
19296 Mark variables as initialized.
19297 (do_blv_forwarding, do_symval_forwarding): Remove; unused.
19298
19299 * alloc.c (check_cons_list): Do not define unless GC_CHECK_CONS_LIST.
19300 (Fmake_vector, Fvector, Fmake_byte_code, Fgarbage_collect):
19301 Rename locals to avoid shadowing.
19302 (mark_stack): Move local variables into the #ifdef region where
19303 they're used.
19304 (BLOCK_INPUT_ALLOC, UNBLOCK_INPUT_ALLOC): Define only if
19305 ! defined SYSTEM_MALLOC && ! defined SYNC_INPUT, as they are not
19306 needed otherwise.
19307 (CHECK_ALLOCATED): Define only if GC_CHECK_MARKED_OBJECTS.
19308 (GC_STRING_CHARS): Remove; not used.
19309 (Fmemory_limit): Cast sbrk's returned value to char *.
19310
19311 * lisp.h (check_cons_list): Declare if GC_CHECK_CONS_LIST; this
19312 avoids undefined behavior in theory.
19313
19314 * regex.c (IF_LINT): Add defn, for benefit of ../lib-src.
19315
19316 Use functions, not macros, for up- and down-casing (Bug#8254).
19317 * buffer.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
19318 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Remove. All callers changed
19319 to use the following functions instead of these macros.
19320 (downcase): Adjust to lack of DOWNCASE_TABLE. Return int, not
19321 EMACS_INT, since callers assume the returned value fits in int.
19322 (upcase1): Likewise, for UPCASE_TABLE.
19323 (uppercasep, lowercasep, upcase): New static inline functions.
19324 * editfns.c (Fchar_equal): Remove no-longer-needed workaround for
19325 the race-condition problem in the old DOWNCASE.
19326
19327 * regex.c (CHARSET_LOOKUP_RANGE_TABLE_RAW, POP_FAILURE_REG_OR_COUNT):
19328 Rename locals to avoid shadowing.
19329 (regex_compile, re_match_2_internal): Move locals to avoid shadowing.
19330 (regex_compile, re_search_2, re_match_2_internal):
19331 Remove unused local vars.
19332 (FREE_VAR): Rewrite so as not to use empty "else",
19333 which gcc can warn about.
19334 (regex_compile, re_match_2_internal): Mark locals as initialized.
19335 (RETALLOC_IF): Define only if needed.
19336 (WORDCHAR_P): Likewise. This one is never needed, but is used
19337 only in a comment talking about a compiler bug, so put inside
19338 the #if 0 of that comment.
19339 (CHARSET_LOOKUP_BITMAP, FAIL_STACK_FULL, RESET_FAIL_STACK):
19340 (PUSH_FAILURE_ELT, BUF_PUSH_3, STOP_ADDR_VSTRING):
19341 Remove; unused.
19342
19343 * search.c (boyer_moore): Rename locals to avoid shadowing.
19344 * character.h (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE):
19345 (PREV_CHAR_BOUNDARY): Likewise.
19346
19347 * search.c (simple_search): Remove unused var.
19348
19349 * dired.c (compile_pattern): Move decl from here ...
19350 * lisp.h: ... to here, so that it can be checked.
19351 (struct re_registers): New forward decl.
19352
19353 * character.h (INC_POS, DEC_POS): Rename locals to avoid shadowing.
19354
19355 * indent.c (MULTIBYTE_BYTES_WIDTH): New args bytes, width.
19356 All uses changed.
19357 (MULTIBYTE_BYTES_WIDTH, scan_for_column, compute_motion):
19358 Rename locals to avoid shadowing.
19359 (Fvertical_motion): Mark locals as initialized.
19360
19361 * casefiddle.c (casify_object, casify_region): Now static.
19362 (casify_region): Mark local as initialized.
19363
19364 * cmds.c (internal_self_insert): Rename local to avoid shadowing.
19365
19366 * lisp.h (GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR, GCPRO6_VAR):
19367 New macros, so that the caller can use some names other than
19368 gcpro1, gcpro2, etc.
19369 (GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6): Reimplement in terms
19370 of the new macros.
19371 (GCPRO1_VAR, UNGCPRO_VAR): Change the meaning of the second
19372 argument, for consistency with GCPRO2_VAR, etc: it is now the
19373 prefix of the variable, not the variable itself. All uses
19374 changed.
19375 * dired.c (directory_files_internal, file_name_completion):
19376 Rename locals to avoid shadowing.
19377
19378 Fix a race condition diagnosed by gcc -Wsequence-point (Bug#8254).
19379 An expression of the form (DOWNCASE (x) == DOWNCASE (y)), found in
19380 dired.c's scmp function, had undefined behavior.
19381 * lisp.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
19382 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Move from here ...
19383 * buffer.h: ... to here, because these macros use current_buffer,
19384 and the new implementation with inline functions needs to have
19385 current_buffer in scope now, rather than later when the macros
19386 are used.
19387 (downcase, upcase1): New static inline functions.
19388 (DOWNCASE, UPCASE1): Reimplement using these functions.
19389 This avoids undefined behavior in expressions like
19390 DOWNCASE (x) == DOWNCASE (y), which previously suffered
19391 from race conditions in accessing the global variables
19392 case_temp1 and case_temp2.
19393 * casetab.c (case_temp1, case_temp2): Remove; no longer needed.
19394 * lisp.h (case_temp1, case_temp2): Remove their decls.
19395 * character.h (ASCII_CHAR_P): Move from here ...
19396 * lisp.h: ... to here, so that the inline functions mentioned
19397 above can use them.
19398
19399 * dired.c (directory_files_internal_unwind): Now static.
19400
19401 * fileio.c (file_name_as_directory, directory_file_name):
19402 (barf_or_query_if_file_exists, auto_save_error, auto_save_1):
19403 Now static.
19404 (file_name_as_directory): Use const pointers when appropriate.
19405 (Fexpand_file_name): Likewise. In particular, newdir might
19406 point at constant storage, so make it a const pointer.
19407 (Fmake_directory_internal, Fread_file_name): Remove unused vars.
19408 (Ffile_selinux_context, Fset_file_selinux_context): Fix pointer
19409 signedness issues.
19410 (Fset_file_times, Finsert_file_contents, auto_save_error):
19411 Rename locals to avoid shadowing.
19412
19413 * minibuf.c (choose_minibuf_frame_1): Now static.
19414 (Ftry_completion, Fall_completions): Rename or remove locals
19415 to avoid shadowing.
19416
19417 * marker.c (bytepos_to_charpos): Remove; unused.
19418
19419 * lisp.h (verify_bytepos, count_markers): New decls,
19420 so that gcc does not warn that these functions aren't declared.
19421
19422 * insdel.c (check_markers, make_gap_larger, make_gap_smaller):
19423 (reset_var_on_error, Fcombine_after_change_execute_1): Now static.
19424 (CHECK_MARKERS): Redo to avoid gcc -Wempty-body diagnostic.
19425 (copy_text): Remove unused local var.
19426
19427 * filelock.c (within_one_second): Now static.
19428 (lock_file_1): Rename local to avoid shadowing.
19429
19430 * buffer.c (fix_overlays_before): Mark locals as initialized.
19431 (fix_start_end_in_overlays): Likewise. This function should be
19432 simplified by using pointers-to-pointers, but that's a different
19433 matter.
19434 (switch_to_buffer_1): Now static.
19435 (Fkill_buffer, record_buffer, Fbury_buffer, Fset_buffer_multibyte):
19436 (report_overlay_modification): Rename locals to avoid shadowing.
19437
19438 * sysdep.c (system_process_attributes): Rename vars to avoid shadowing.
19439 Fix pointer signedness issue.
19440 (sys_subshell): Mark local as volatile if checking for lint,
19441 to suppress a gcc -Wclobbered warning that does not seem to be right.
19442 (MAXPATHLEN): Define only if needed.
19443
19444 * process.c (serial_open, serial_configure): Move decls from here ...
19445 * systty.h: ... to here, so that they can be checked.
19446
19447 * fns.c (get_random, seed_random): Move extern decls from here ...
19448 * lisp.h: ... to here, so that they can be checked.
19449
19450 * sysdep.c (reset_io): Now static.
19451 (wait_for_termination_signal): Remove; unused.
19452
19453 * keymap.c (keymap_parent, keymap_memberp, map_keymap_internal):
19454 (copy_keymap_item, append_key, push_text_char_description):
19455 Now static.
19456 (Fwhere_is_internal): Don't test CONSP (sequences) unnecessarily.
19457 (DENSE_TABLE_SIZE): Remove; unused.
19458 (get_keymap, access_keymap, Fdefine_key, Fwhere_is_internal):
19459 (describe_map_tree):
19460 Rename locals to avoid shadowing.
19461
19462 * keyboard.c: Declare functions static if they are not used elsewhere.
19463 (echo_char, echo_dash, cmd_error, top_level_2):
19464 (poll_for_input, handle_async_input): Now static.
19465 (read_char, kbd_buffer_get_event, make_lispy_position):
19466 (make_lispy_event, make_lispy_movement, apply_modifiers):
19467 (decode_keyboard_code, tty_read_avail_input, menu_bar_items):
19468 (parse_tool_bar_item, read_key_sequence, Fread_key_sequence):
19469 (Fread_key_sequence_vector): Rename locals to avoid shadowing.
19470 (read_key_sequence, read_char): Mark locals as initialized.
19471 (Fexit_recursive_edit, Fabort_recursive_edit): Mark with NO_RETURN.
19472
19473 * keyboard.h (make_ctrl_char): New decl.
19474 (mark_kboards): Move decl here ...
19475 * alloc.c (mark_kboards): ... from here.
19476
19477 * lisp.h (force_auto_save_soon): New decl.
19478
19479 * emacs.c (init_cmdargs): Rename local to avoid shadowing.
19480 (DEFINE_DUMMY_FUNCTION): New macro.
19481 (__do_global_ctors, __do_global_ctors_aux, __do_global_dtors, __main):
19482 Use it.
19483 (main): Add casts to avoid warnings
19484 if GCC considers string literals to be constants.
19485
19486 * lisp.h (fatal_error_signal): Add decl, since it's exported.
19487
19488 * dbusbind.c: Pointer signedness fixes.
19489 (xd_signature, xd_append_arg, xd_initialize):
19490 (Fdbus_call_method, Fdbus_call_method_asynchronously):
19491 (Fdbus_method_return_internal, Fdbus_method_error_internal):
19492 (Fdbus_send_signal, xd_read_message_1, Fdbus_register_service):
19493 (Fdbus_register_signal): Use SSDATA when the context wants char *.
19494
19495 * dbusbind.c (Fdbus_init_bus): Add cast to avoid warning
19496 if GCC considers string literals to be constants.
19497 (Fdbus_register_service, Fdbus_register_method): Remove unused vars.
19498
19499 2011-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
19500
19501 * print.c (PRINT_CIRCLE_CANDIDATE_P): New macro.
19502 (print_preprocess, print_object): New macro to fix last change.
19503
19504 * print.c (print_preprocess): Don't forget font objects.
19505
19506 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
19507
19508 * emacs.c (USAGE3): Doc fixes.
19509
19510 2011-03-15 Andreas Schwab <schwab@linux-m68k.org>
19511
19512 * coding.c (detect_coding_iso_2022): Reorganize code to clarify
19513 structure.
19514
19515 2011-03-14 Juanma Barranquero <lekktu@gmail.com>
19516
19517 * lisp.h (VWindow_system, Qfile_name_history):
19518 * keyboard.h (lispy_function_keys) [WINDOWSNT]:
19519 * w32term.h (w32_system_caret_hwnd, w32_system_caret_height)
19520 (w32_system_caret_x, w32_system_caret_y): Declare extern.
19521
19522 * w32select.c: Don't #include "keyboard.h".
19523 (run_protected): Add extern declaration for waiting_for_input.
19524
19525 * w32.c (Qlocal, noninteractive1, inhibit_window_system):
19526 * w32console.c (detect_input_pending, read_input_pending)
19527 (encode_terminal_code):
19528 * w32fns.c (quit_char, lispy_function_keys, Qtooltip)
19529 (w32_system_caret_hwnd, w32_system_caret_height, w32_system_caret_x)
19530 (w32_system_caret_y, Qfile_name_history):
19531 * w32font.c (w32font_driver, QCantialias, QCotf, QClang):
19532 * w32inevt.c (reinvoke_input_signal, lispy_function_keys):
19533 * w32menu.c (Qmenu_bar, QCtoggle, QCradio, Qoverriding_local_map)
19534 (Qoverriding_terminal_local_map, Qmenu_bar_update_hook):
19535 * w32proc.c (Qlocal, report_file_error):
19536 * w32term.c (Vwindow_system, updating_frame):
19537 * w32uniscribe.c (initialized, uniscribe_font_driver):
19538 Remove unneeded extern declarations.
19539
19540 2011-03-14 Chong Yidong <cyd@stupidchicken.com>
19541
19542 * buffer.c (Fmake_indirect_buffer): Fix incorrect assertions.
19543
19544 2011-03-13 Chong Yidong <cyd@stupidchicken.com>
19545
19546 * buffer.h (BUF_BEGV, BUF_BEGV_BYTE, BUF_ZV, BUF_ZV_BYTE, BUF_PT)
19547 (BUF_PT_BYTE): Rewrite to handle indirect buffers (Bug#8219).
19548 These macros can no longer be used for assignment.
19549
19550 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
19551 Assign struct members directly, instead of using BUF_BEGV etc.
19552 (record_buffer_markers, fetch_buffer_markers): New functions for
19553 recording and fetching special buffer markers.
19554 (set_buffer_internal_1, set_buffer_temp): Use them.
19555
19556 * lread.c (unreadchar): Use SET_BUF_PT_BOTH.
19557
19558 * insdel.c (adjust_point): Use SET_BUF_PT_BOTH.
19559
19560 * intervals.c (temp_set_point_both): Use SET_BUF_PT_BOTH.
19561 (get_local_map): Use SET_BUF_BEGV_BOTH and SET_BUF_ZV_BOTH.
19562
19563 * xdisp.c (hscroll_window_tree):
19564 (reconsider_clip_changes): Use PT instead of BUF_PT.
19565
19566 2011-03-13 Eli Zaretskii <eliz@gnu.org>
19567
19568 * makefile.w32-in ($(BLD)/editfns.$(O)): Depend on
19569 $(EMACS_ROOT)/lib/intprops.h.
19570
19571 2011-03-13 Paul Eggert <eggert@cs.ucla.edu>
19572
19573 Fix more problems found by GCC 4.5.2's static checks.
19574
19575 * gtkutil.c (xg_get_pixbuf_from_pixmap): Add cast from char *
19576 to unsigned char * to avoid compiler diagnostic.
19577 (xg_free_frame_widgets): Make it clear that a local variable is
19578 needed only if USE_GTK_TOOLTIP.
19579 (gdk_window_get_screen): Make it clear that this macro is needed
19580 only if USE_GTK_TOOLTIP.
19581 (int_gtk_range_get_value): New function, which avoids a diagnostic
19582 from gcc -Wbad-function-cast.
19583 (xg_set_toolkit_scroll_bar_thumb): Use it.
19584 (xg_tool_bar_callback, xg_tool_item_stale_p): Rewrite to avoid
19585 diagnostic from gcc -Wbad-function-cast.
19586 (get_utf8_string, xg_get_file_with_chooser):
19587 Rename locals to avoid shadowing.
19588 (create_dialog): Move locals to avoid shadowing.
19589
19590 * xgselect.c (xg_select): Remove unused var.
19591
19592 * image.c (four_corners_best): Mark locals as initialized.
19593 (gif_load): Initialize transparent_p to zero (Bug#8238).
19594 Mark another local as initialized.
19595 (my_png_error, my_error_exit): Mark with NO_RETURN.
19596
19597 * image.c (clear_image_cache): Now static.
19598 (DIM, HAVE_STDLIB_H_1): Remove unused macros.
19599 (xpm_load): Redo to avoid "discards qualifiers" gcc warning.
19600 (x_edge_detection): Remove unnecessary cast that
19601 gcc -Wbad-function-cast diagnoses.
19602 (gif_load): Fix pointer signedness.
19603 (clear_image_cache, xbm_read_bitmap_data, x_detect_edges):
19604 (jpeg_load, gif_load): Rename locals to avoid shadowing.
19605
19606 2011-03-12 Paul Eggert <eggert@cs.ucla.edu>
19607
19608 Improve quality of tests for time stamp overflow.
19609 For example, without this patch (encode-time 0 0 0 1 1
19610 1152921504606846976) returns the obviously-bogus value (-948597
19611 62170) on my RHEL 5.5 x86-64 host. With the patch, it correctly
19612 reports time overflow. See
19613 <http://lists.gnu.org/archive/html/emacs-devel/2011-03/msg00470.html>.
19614 * deps.mk (editfns.o): Depend on ../lib/intprops.h.
19615 * editfns.c: Include limits.h and intprops.h.
19616 (TIME_T_MIN, TIME_T_MAX): New macros.
19617 (time_overflow): Move earlier, to before first use.
19618 (hi_time, lo_time): New functions, for an accurate test for
19619 out-of-range times.
19620 (Fcurrent_time, Fget_internal_run_time, make_time): Use them.
19621 (Fget_internal_run_time): Don't assume time_t fits in int.
19622 (make_time): Use list2 instead of Fcons twice.
19623 (Fdecode_time): More accurate test for out-of-range times.
19624 (check_tm_member): New function.
19625 (Fencode_time): Use it, to test for out-of-range times.
19626 (lisp_time_argument): Don't rely on undefined left-shift and
19627 right-shift behavior when checking for time stamp overflow.
19628
19629 * editfns.c (time_overflow): New function, refactoring common code.
19630 (Fformat_time_string, Fdecode_time, Fencode_time):
19631 (Fcurrent_time_string): Use it.
19632
19633 Move 'make_time' to be next to its inverse 'lisp_time_argument'.
19634 * dired.c (make_time): Move to ...
19635 * editfns.c (make_time): ... here.
19636 * systime.h: Note the move.
19637
19638 2011-03-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19639
19640 * fringe.c (update_window_fringes): Remove unused variables.
19641
19642 * unexmacosx.c (copy_data_segment): Also copy __got section.
19643 (Bug#8223)
19644
19645 2011-03-12 Eli Zaretskii <eliz@gnu.org>
19646
19647 * termcap.c [MSDOS]: Include "msdos.h".
19648 (find_capability, tgetnum, tgetflag, tgetstr, tputs, tgetent):
19649 Constify `char *' arguments and their references according to
19650 prototypes in tparam.h.
19651
19652 * deps.mk (termcap.o): Depend on tparam.h and msdos.h.
19653
19654 * msdos.c (XMenuAddPane): 3rd argument is `const char *' now.
19655 Adapt all references accordingly.
19656
19657 * msdos.h (XMenuAddPane): 3rd argument is `const char *' now.
19658
19659 2011-03-11 Tom Tromey <tromey@redhat.com>
19660
19661 * buffer.c (syms_of_buffer): Remove obsolete comment.
19662
19663 2011-03-11 Eli Zaretskii <eliz@gnu.org>
19664
19665 * termhooks.h (encode_terminal_code): Declare prototype.
19666
19667 * msdos.c (encode_terminal_code): Don't declare prototype.
19668
19669 * term.c (encode_terminal_code): Now external again, used by
19670 w32console.c and msdos.c.
19671
19672 * makefile.w32-in ($(BLD)/term.$(O), ($(BLD)/tparam.$(O)):
19673 Depend on $(SRC)/tparam.h, see 2011-03-11T07:24:21Z!eggert@cs.ucla.edu.
19674
19675 2011-03-11 Paul Eggert <eggert@cs.ucla.edu>
19676
19677 Fix some minor problems found by GCC 4.5.2's static checks.
19678
19679 * fringe.c (update_window_fringes): Mark locals as initialized
19680 (Bug#8227).
19681 (destroy_fringe_bitmap, init_fringe_bitmap): Now static.
19682
19683 * alloc.c (mark_fringe_data): Move decl from here ...
19684 * lisp.h (mark_fringe_data) [HAVE_WINDOW_SYSTEM]: ... to here,
19685 to check its interface.
19686 (init_fringe_once): Do not declare unless HAVE_WINDOW_SYSTEM.
19687
19688 * fontset.c (free_realized_fontset): Now static.
19689 (Fset_fontset_font): Rename local to avoid shadowing.
19690 (fontset_font): Mark local as initialized.
19691 (FONTSET_SPEC, FONTSET_REPERTORY, RFONT_DEF_REPERTORY): Remove; unused.
19692
19693 * xrdb.c: Include "xterm.h", to check x_load_resources's interface.
19694
19695 * xselect.c (x_disown_buffer_selections): Remove; not used.
19696 (TRACE3) [!defined TRACE_SELECTION]: Remove; not used.
19697 (x_own_selection, Fx_disown_selection_internal): Rename locals
19698 to avoid shadowing.
19699 (x_handle_dnd_message): Remove local to avoid shadowing.
19700
19701 * lisp.h (GCPRO1_VAR, UNGCPRO_VAR): New macros,
19702 so that the caller can use some name other than gcpro1.
19703 (GCPRO1, UNGCPRO): Reimplement in terms of the new macros.
19704 * xfns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
19705 (Fx_backspace_delete_keys_p):
19706 Use them to avoid shadowing, and rename vars to avoid shadowing.
19707 (x_decode_color, x_set_name, x_window): Now static.
19708 (Fx_create_frame): Add braces to silence GCC warning.
19709 (Fx_file_dialog, Fx_select_font): Fix pointer signedness.
19710 (x_real_positions, xg_set_icon_from_xpm_data, x_create_tip_frame):
19711 Remove unused locals.
19712 (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
19713 (Fx_backspace_delete_keys_p): Rename locals to avoid shadowing.
19714 Some of these renamings use the new GCPRO1_VAR and UNGCPRO_VAR
19715 macros.
19716
19717 * xterm.h (x_mouse_leave): New decl.
19718
19719 * xterm.c (x_copy_dpy_color, x_focus_on_frame, x_unfocus_frame):
19720 Remove unused functions.
19721 (x_shift_glyphs_for_insert, XTflash, XTring_bell):
19722 (x_calc_absolute_position): Now static.
19723 (XTread_socket): Don't define label "out" unless it's used.
19724 Don't declare local "event" unless it's used.
19725 (x_iconify_frame, x_free_frame_resources): Don't declare locals
19726 unless they are used.
19727 (XEMBED_VERSION, xembed_set_info): Don't define unless needed.
19728 (x_fatal_error_signal): Remove; not used.
19729 (x_draw_image_foreground, redo_mouse_highlight, XTmouse_position):
19730 (x_scroll_bar_report_motion, handle_one_xevent, x_draw_bar_cursor):
19731 (x_error_catcher, x_connection_closed, x_error_handler):
19732 (x_error_quitter, xembed_send_message, x_iconify_frame):
19733 (my_log_handler): Rename locals to avoid shadowing.
19734 (x_delete_glyphs, x_ins_del_lines): Mark with NO_RETURN.
19735 (x_connection_closed): Tell GCC not to suggest NO_RETURN.
19736
19737 * xfaces.c (clear_face_cache, Fx_list_fonts, Fface_font):
19738 Rename or move locals to avoid shadowing.
19739 (tty_defined_color, merge_face_heights): Now static.
19740 (free_realized_faces_for_fontset): Remove; not used.
19741 (Fx_list_fonts): Mark variable that gcc -Wuninitialized
19742 does not deduce is never used uninitialized.
19743 (STRDUPA, LSTRDUPA, FONT_POINT_SIZE_QUANTUM): Remove; not used.
19744 (LFACEP): Define only if XASSERTS, as it's not needed otherwise.
19745
19746 * terminal.c (store_terminal_param): Now static.
19747
19748 * xmenu.c (menu_highlight_callback): Now static.
19749 (set_frame_menubar): Remove unused local.
19750 (xmenu_show): Rename parameter to avoid shadowing.
19751 (xmenu_show, xdialog_show, xmenu_show): Make local pointers "const"
19752 since they might point to immutable storage.
19753 (next_menubar_widget_id): Declare only if USE_X_TOOLKIT,
19754 since it's unused otherwise.
19755
19756 * xdisp.c (produce_glyphless_glyph): Initialize lower_xoff.
19757 Add a FIXME, since the code still doesn't look right. (Bug#8215)
19758 (Fcurrent_bidi_paragraph_direction): Simplify slightly; this
19759 avoids a gcc -Wuninitialized diagnostic.
19760 (display_line, BUILD_COMPOSITE_GLYPH_STRING, draw_glyphs):
19761 (note_mouse_highlight): Mark variables that gcc -Wuninitialized
19762 does not deduce are never used uninitialized.
19763
19764 * lisp.h (IF_LINT): New macro, copied from ../lib-src/emacsclient.c.
19765
19766 * xdisp.c (redisplay_window): Rename local to avoid shadowing.
19767 * window.c (window_loop, size_window):
19768 (run_window_configuration_change_hook, enlarge_window): Likewise.
19769
19770 * window.c (display_buffer): Now static.
19771 (size_window): Mark variables that gcc -Wuninitialized
19772 does not deduce are never used uninitialized.
19773 * window.h (check_all_windows): New decl, to forestall
19774 gcc -Wmissing-prototypes diagnostic.
19775 * dispextern.h (bidi_dump_cached_states): Likewise.
19776
19777 * charset.h (CHECK_CHARSET_GET_CHARSET): Rename locals to avoid
19778 shadowing.
19779 * charset.c (map_charset_for_dump, Fchar_charset): Likewise.
19780 Include <limits.h>.
19781 (Fsort_charsets): Redo min/max calculation to shorten the code a bit
19782 and to avoid gcc -Wuninitialized warning.
19783 (load_charset_map): Mark variables that gcc -Wuninitialized
19784 does not deduce are never used uninitialized.
19785 (load_charset): Abort instead of using uninitialized var (Bug#8229).
19786
19787 * coding.c (coding_set_source, coding_set_destination):
19788 Use "else { /* comment */ }" rather than "else /* comment */;"
19789 for clarity, and to avoid gcc -Wempty-body warning.
19790 (Fdefine_coding_system_internal): Don't redeclare 'i' inside
19791 a block, when the outer 'i' will do.
19792 (decode_coding_utf_8, decode_coding_utf_16, detect_coding_emacs_mule):
19793 (emacs_mule_char, decode_coding_emacs_mule, detect_coding_iso_2022):
19794 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5):
19795 (decode_coding_raw_text, decode_coding_charset, get_translation_table):
19796 (Fdecode_sjis_char, Fdefine_coding_system_internal):
19797 Rename locals to avoid shadowing.
19798 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
19799 * coding.c (emacs_mule_char, encode_invocation_designation):
19800 Now static, since they're not used elsewhere.
19801 (decode_coding_iso_2022): Add "default: abort ();" as a safety check.
19802 (decode_coding_object, encode_coding_object, detect_coding_system):
19803 (decode_coding_emacs_mule): Mark variables that gcc
19804 -Wuninitialized does not deduce are never used uninitialized.
19805 (detect_coding_iso_2022): Initialize a local variable that might
19806 be used uninitialized. Leave a FIXME because it's not clear that
19807 this initialization is needed. (Bug#8211)
19808 (ISO_CODE_LF, ISO_CODE_CR, CODING_ISO_FLAG_EUC_TW_SHIFT):
19809 (ONE_MORE_BYTE_NO_CHECK, UTF_BOM, UTF_16_INVALID_P):
19810 (SHIFT_OUT_OK, ENCODE_CONTROL_SEQUENCE_INTRODUCER):
19811 (ENCODE_DIRECTION_R2L, ENCODE_DIRECTION_L2R):
19812 Remove unused macros.
19813
19814 * category.c (hash_get_category_set): Remove unused local var.
19815 (copy_category_table): Now static, since it's not used elsewhere.
19816 * character.c (string_count_byte8): Likewise.
19817
19818 * ccl.c (CCL_WRITE_STRING, CCL_ENCODE_CHAR, Fccl_execute_on_string):
19819 (Fregister_code_conversion_map): Rename locals to avoid shadowing.
19820
19821 * chartab.c (copy_sub_char_table): Now static, since it's not used
19822 elsewhere.
19823 (sub_char_table_ref_and_range, char_table_ref_and_range):
19824 Rename locals to avoid shadowing.
19825 (ASET_RANGE, GET_SUB_CHAR_TABLE): Remove unused macros.
19826
19827 * bidi.c (bidi_check_type): Now static, since it's not used elsewhere.
19828 (BIDI_BOB): Remove unused macro.
19829
19830 * cm.c (cmgoto): Mark variables that gcc -Wuninitialized does not
19831 deduce are never used uninitialized.
19832 * term.c (encode_terminal_code): Likewise.
19833
19834 * term.c (encode_terminal_code): Now static. Remove unused local.
19835
19836 * tparam.h: New file.
19837 * term.c, tparam.h: Include it.
19838 * deps.mk (term.o, tparam.o): Depend on tparam.h.
19839 * term.c (tputs, tgetent, tgetflag, tgetnum, tparam, tgetstr):
19840 Move these decls to tparam.h, and make them agree with what
19841 is actually in tparam.c. The previous trick of using incompatible
19842 decls in different modules does not conform to the C standard.
19843 All callers of tparam changed to use tparam's actual API.
19844 * tparam.c (tparam1, tparam, tgoto):
19845 Use const pointers where appropriate.
19846
19847 * cm.c (calccost, cmgoto): Use const pointers where appropriate.
19848 * cm.h (struct cm): Likewise.
19849 * dispextern.h (do_line_insertion_deletion_costs): Likewise.
19850 * scroll.c (ins_del_costs, do_line_insertion_deletion_costs): Likewise.
19851 * term.c (tty_ins_del_lines, calculate_costs, struct fkey_table):
19852 (term_get_fkeys_1, append_glyphless_glyph, produce_glyphless_glyph):
19853 (turn_on_face, init_tty): Likewise.
19854 * termchar.h (struct tty_display_info): Likewise.
19855
19856 * term.c (term_mouse_position): Rename local to avoid shadowing.
19857
19858 * alloc.c (mark_ttys): Move decl from here ...
19859 * lisp.h (mark_ttys): ... to here, so that it's checked against defn.
19860
19861 2011-03-11 Andreas Schwab <schwab@linux-m68k.org>
19862
19863 * .gdbinit (pwinx, xbuffer): Fix access to buffer name.
19864
19865 2011-03-09 Juanma Barranquero <lekktu@gmail.com>
19866
19867 * search.c (compile_pattern_1): Remove argument regp, unused since
19868 revid:rms@gnu.org-19941211082627-3x1g1wyqkjmwloig.
19869 (compile_pattern): Don't pass it.
19870
19871 2011-03-08 Jan Djärv <jan.h.d@swipnet.se>
19872
19873 * xterm.h (DEFAULT_GDK_DISPLAY): New define.
19874 (GDK_WINDOW_XID, gtk_widget_get_preferred_size): New defines
19875 for ! HAVE_GTK3.
19876 (GTK_WIDGET_TO_X_WIN): Use GDK_WINDOW_XID.
19877
19878 * xmenu.c (menu_position_func): Call gtk_widget_get_preferred_size.
19879
19880 * gtkutil.c: Include gtkx.h if HAVE_GTK3. If ! HAVE_GTK3, define
19881 gdk_window_get_screen, gdk_window_get_geometry,
19882 gdk_x11_window_lookup_for_display and GDK_KEY_g.
19883 (xg_set_screen): Use DEFAULT_GDK_DISPLAY.
19884 (xg_get_pixbuf_from_pixmap): New function.
19885 (xg_get_pixbuf_from_pix_and_mask): Change parameters from GdkPixmap
19886 to Pixmap, take frame as parameter, remove GdkColormap parameter.
19887 Call xg_get_pixbuf_from_pixmap instead of
19888 gdk_pixbuf_get_from_drawable.
19889 (xg_get_image_for_pixmap): Do not make GdkPixmaps, call
19890 xg_get_pixbuf_from_pix_and_mask with Pixmap parameters instead.
19891 (xg_check_special_colors): Use GtkStyleContext and its functions
19892 for HAVE_GTK3.
19893 (xg_prepare_tooltip, xg_hide_tooltip): Call gdk_window_get_screen.
19894 (xg_prepare_tooltip, create_dialog, menubar_map_cb)
19895 (xg_update_frame_menubar, xg_tool_bar_detach_callback)
19896 (xg_tool_bar_attach_callback, xg_update_tool_bar_sizes):
19897 Call gtk_widget_get_preferred_size.
19898 (xg_frame_resized): gdk_window_get_geometry only takes 5
19899 parameters.
19900 (xg_win_to_widget, xg_event_is_for_menubar):
19901 Call gdk_x11_window_lookup_for_display.
19902 (xg_set_widget_bg): New function.
19903 (delete_cb): New function.
19904 (xg_create_frame_widgets): Connect delete-event to delete_cb.
19905 Call xg_set_widget_bg. Only set background pixmap for ! HAVE_GTK3
19906 (xg_set_background_color): Call xg_set_widget_bg.
19907 (xg_set_frame_icon): Call xg_get_pixbuf_from_pix_and_mask.
19908 (xg_create_scroll_bar): vadj is a GtkAdjustment for HAVE_GTK3.
19909 Only call gtk_range_set_update_policy if ! HAVE_GTK3.
19910 (xg_make_tool_item): Only connect xg_tool_bar_item_expose_callback
19911 if ! HAVE_GTK3.
19912 (update_frame_tool_bar): Call gtk_widget_hide.
19913 (xg_initialize): Use GDK_KEY_g.
19914
19915 * xsmfns.c (gdk_set_sm_client_id): Define to gdk_set_sm_client_id
19916 if ! HAVE_GTK3
19917 (x_session_initialize): Call gdk_x11_set_sm_client_id.
19918
19919 * xterm.c (XFillRectangle): Use cairo routines for HAVE_GTK3.
19920 (x_term_init): Disable Xinput(2) with GDK_CORE_DEVICE_EVENTS.
19921 Load ~/emacs.d/gtkrc only for ! HAVE_GTK3.
19922
19923 2011-03-08 Juanma Barranquero <lekktu@gmail.com>
19924
19925 * w32xfns.c (select_palette): Check success of RealizePalette against
19926 GDI_ERROR, not zero.
19927
19928 See ChangeLog.11 for earlier changes.
19929
19930 ;; Local Variables:
19931 ;; coding: utf-8
19932 ;; End:
19933
19934 Copyright (C) 2011-2013 Free Software Foundation, Inc.
19935
19936 This file is part of GNU Emacs.
19937
19938 GNU Emacs is free software: you can redistribute it and/or modify
19939 it under the terms of the GNU General Public License as published by
19940 the Free Software Foundation, either version 3 of the License, or
19941 (at your option) any later version.
19942
19943 GNU Emacs is distributed in the hope that it will be useful,
19944 but WITHOUT ANY WARRANTY; without even the implied warranty of
19945 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19946 GNU General Public License for more details.
19947
19948 You should have received a copy of the GNU General Public License
19949 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.