* alloc.c (free_save_value): New function.
[bpt/emacs.git] / src / ChangeLog
1 2012-12-03 Dmitry Antipov <dmantipov@yandex.ru>
2
3 * alloc.c (free_save_value): New function.
4 (safe_alloca_unwind): Use it.
5 * lisp.h (free_save_value): New prototype.
6 * editfns.c (save_excursion_save): Use Lisp_Misc_Save_Value.
7 Add comment.
8 (save_excursion_restore): Adjust to match saved data structure.
9 Use free_save_value to offload some work from GC. Drop obsolete
10 #if 0 code.
11
12 2012-12-03 Chong Yidong <cyd@gnu.org>
13
14 * fileio.c (Vauto_save_list_file_name): Doc fix.
15
16 2012-12-03 Fabrice Popineau <fabrice.popineau@gmail.com>
17
18 * w32fns.c: Remove prototype of atof.
19 (syspage_mask): Declared DWORD_PTR, for compatibility with 64-bit
20 builds.
21 (file_dialog_callback): Declared UINT_PTR.
22
23 * w32common.h (syspage_mask): Declare DWORD_PTR, for compatibility
24 with 64-bit builds.
25
26 * w32.c (FILE_DEVICE_FILE_SYSTEM, METHOD_BUFFERED)
27 (FILE_ANY_ACCESS, CTL_CODE) [_MSC_VER]: Define only if not already
28 defined.
29
30 2012-12-03 Glenn Morris <rgm@gnu.org>
31
32 * data.c (Fboundp, Fsymbol_value): Doc fix re lexical-binding.
33
34 2012-12-02 Paul Eggert <eggert@cs.ucla.edu>
35
36 Fix xpalloc confusion after memory is exhausted.
37 * alloc.c (xpalloc): Comment fix.
38 * charset.c (Fdefine_charset_internal): If xpalloc exhausts memory
39 and signals an error, do not clear charset_table_size, as
40 charset_table is still valid.
41 * doprnt.c (evxprintf): Clear *BUF after freeing it.
42
43 Use execve to avoid need to munge environ (Bug#13054).
44 * callproc.c (Fcall_process):
45 * process.c (create_process):
46 Don't save and restore environ; no longer needed.
47 * callproc.c (child_setup):
48 Use execve, not execvp, to preserve environ.
49
50 2012-12-01 Paul Eggert <eggert@cs.ucla.edu>
51
52 * xterm.c (x_draw_image_relief): Remove unused locals (Bug#10500).
53
54 2012-12-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
55
56 * xterm.c (x_draw_relief_rect, x_draw_image_relief): Fix relief
57 display for sliced images (Bug#10500).
58
59 * w32term.c (w32_draw_relief_rect, x_draw_image_relief): Likewise.
60
61 2012-11-30 Juanma Barranquero <lekktu@gmail.com>
62
63 * doc.c (Fdocumentation): Re-add handling of function-documentation,
64 accidentally removed in 2012-11-09T04:10:16Z!monnier@iro.umontreal.ca (bug#13034).
65
66 2012-11-29 Dmitry Antipov <dmantipov@yandex.ru>
67
68 * xdisp.c (window_outdated): Remove eassert since it hits
69 some suspicious corner cases (see Bug#13007 and Bug#13012).
70 (mode_line_update_needed): New function.
71 (redisplay_internal, redisplay_window): Use it.
72 (ensure_selected_frame): New function.
73 (redisplay_internal, unwind_redisplay): Use it.
74 (redisplay_internal): Move comment about buffer_shared...
75 (buffer_shared_and_changed): ...near to its real use.
76
77 2012-11-29 Paul Eggert <eggert@cs.ucla.edu>
78
79 * callproc.c (Fcall_process): Don't misreport vfork failure.
80
81 2012-11-28 Paul Eggert <eggert@cs.ucla.edu>
82
83 * callproc.c (Fcall_process): Fix vfork portability problems.
84 Do not assume that fd[0], count, filefd, and save_environ survive
85 vfork. Fix bug whereby wrong errno value could be reported for
86 pipe failure. Some minor cleanups, too, as follows. Move buf and
87 bufsize to the context where they're needed. Change new_argv to
88 be of type char **, as this is more convenient and avoids casts.
89 (CALLPROC_BUFFER_SIZE_MIN, CALLPROC_BUFFER_SIZE_MAX):
90 Now local constants, not macros.
91
92 2012-11-18 Kenichi Handa <handa@gnu.org>
93
94 * font.c (font_unparse_xlfd): Fix previous change. Keep "const"
95 for the variable "f".
96
97 2012-11-13 Kenichi Handa <handa@gnu.org>
98
99 * font.c (font_unparse_xlfd): Exclude special characters from the
100 generating XLFD name.
101
102 2012-11-27 Paul Eggert <eggert@cs.ucla.edu>
103
104 Assume POSIX 1003.1-1988 or later for grp.h, pwd.h.
105 * dired.c (stat_uname, stat_gname):
106 * fileio.c (Fexpand_file_name): Remove no-longer-needed casts.
107
108 Assume POSIX 1003.1-1988 or later for errno.h (Bug#12968).
109 * dired.c (directory_files_internal, file_name_completion):
110 Assume EAGAIN and EINTR are defined.
111
112 * fileio.c (Fcopy_file): Assume EISDIR is defined.
113 * gmalloc.c (ENOMEM, EINVAL): Assume they're defined.
114 * gnutls.c (emacs_gnutls_write): Assume EAGAIN is defined.
115 * lread.c (readbyte_from_file): Assume EINTR is defined.
116 * process.c (wait_reading_process_output, send_process) [subprocesses]:
117 Assume EIO and EAGAIN are defined.
118 * unexcoff.c (write_segment): Assume EFAULT is defined.
119
120 2012-11-27 Eli Zaretskii <eliz@gnu.org>
121
122 * fontset.c (Finternal_char_font): Return nil on non-GUI frames.
123 (Bug#11964)
124
125 * xdisp.c (draw_glyphs): Don't draw in mouse face if mouse
126 highlighting on the frame was cleared. Prevents assertion
127 violations when repeatedly clicking on the "Top" link of the
128 "bread-crumbs" in Info buffers.
129
130 2012-11-25 Paul Eggert <eggert@cs.ucla.edu>
131
132 * sysdep.c (sys_subshell): Don't assume pid_t fits in int.
133
134 2012-11-24 Ken Brown <kbrown@cornell.edu>
135
136 * keyboard.c (HAVE_MOUSE):
137 * frame.c (HAVE_MOUSE): Remove, and rewrite code as if HAVE_MOUSE
138 were always defined.
139
140 2012-11-24 Eli Zaretskii <eliz@gnu.org>
141
142 * xdisp.c (set_cursor_from_row): Skip step 2 only if point is not
143 between bpos_covered and bpos_max. This fixes cursor display when
144 several display strings follow each other.
145
146 * .gdbinit (pgx): If the glyph's object is a string, display the
147 pointer to string data, rather than the value of the string object
148 itself (which barfs under CHECK_LISP_OBJECT_TYPE).
149
150 * indent.c (Fvertical_motion): If the starting position is covered
151 by a display string, return to one position before that, to avoid
152 overshooting it inside move_it_to. (Bug#12930)
153
154 2012-11-23 Dmitry Antipov <dmantipov@yandex.ru>
155
156 * frame.h (struct frame): Remove display_preempted member
157 since all users are dead long ago.
158 * nsterm.h (struct x_output): Use the only dummy member.
159 * w32menu.c (pending_menu_activation): Remove since not
160 really used.
161 (set_frame_menubar): Adjust user.
162 * w32term.h (struct x_output): Drop outdated #if 0 code.
163 (struct w32_output): Use bitfields for explicit_parent,
164 asked_for_visible and menubar_active members. Drop
165 unused pending_menu_activation member.
166 * xterm.h (struct x_output): Drop outdated #if 0 code.
167 Use bitfields for explicit_parent, asked_for_visible,
168 has_been_visible and net_wm_state_hidden_seen members.
169
170 2012-11-23 Eli Zaretskii <eliz@gnu.org>
171
172 * makefile.w32-in (globals.h, gl-stamp): Use $(SWITCHCHAR) instead
173 of a literal "/". (Bug#12955)
174 (gl-stamp): Invoke fc.exe directly, not through cmd.
175
176 2012-11-23 Paul Eggert <eggert@cs.ucla.edu>
177
178 Assume POSIX 1003.1-1988 or later for dirent.h (Bug#12958).
179 * dired.c: Assume HAVE_DIRENT_H.
180 (NAMLEN): Remove, replacing with ...
181 (dirent_namelen): New function. All uses changed. Use the GNU macro
182 _D_EXACT_NAMELEN if available, as it's faster than strlen.
183 (DIRENTRY): Remove, replacing all uses with 'struct dirent'.
184 (DIRENTRY_NONEMPTY): Remove. All callers now assume it's nonzero.
185 * makefile.w32-in (DIR_H): Remove. All uses replaced with
186 $(NT_INC)/dirent.h.
187 ($(BLD)/w32.$(O)): Do not depend on $(SRC)/ndir.h.
188 * ndir.h: Rename to ../nt/inc/dirent.h.
189 * sysdep.h (closedir) [!HAVE_CLOSEDIR]: Remove.
190 Do not include <dirent.h>; no longer needed.
191 * w32.c: Include <dirent.h> rather than "ndir.h".
192
193 2012-11-23 Chong Yidong <cyd@gnu.org>
194
195 * xftfont.c (xftfont_open): Remove duplicate assignment.
196
197 2012-11-22 Dmitry Antipov <dmantipov@yandex.ru>
198
199 * alloc.c (Fgarbage_collect): Unblock input after clearing
200 gc_in_progress to avoid note_mouse_highlight glitch with GC.
201 * frame.h (FRAME_MOUSE_UPDATE): New macro.
202 * msdos.c (IT_frame_up_to_date): Use it here...
203 * w32term.c (w32_frame_up_to_date): ...here...
204 * xterm.c (XTframe_up_to_date): ...and here...
205 * nsterm.m (ns_frame_up_to_date): ...but not here.
206 * lisp.h (Mouse_HLInfo): Remove mouse_face_deferred_gc member.
207 Adjust users.
208 * xdisp.c (message2_nolog, message3_nolog, note_mouse_highlight):
209 Do not check whether GC is in progress.
210
211 2012-11-22 Dmitry Antipov <dmantipov@yandex.ru>
212
213 * xdisp.c (window_buffer_changed): New function.
214 (update_menu_bar, update_tool_bar): Use it to
215 simplify large 'if' statements.
216 (redisplay_internal): Generalize commonly used
217 'tail' and 'frame' local variables.
218
219 2012-11-22 Eli Zaretskii <eliz@gnu.org>
220
221 * w32.c (getcwd): Fix the 2nd argument type, to prevent conflicts
222 with Windows system header.
223
224 2012-11-21 Paul Eggert <eggert@cs.ucla.edu>
225
226 Assume POSIX 1003.1-1988 or later for unistd.h (Bug#12945).
227 * alloc.c: Assume unistd.h exists.
228 * fileio.c (Fexpand_file_name) [DOS_NT]: Use getcwd, not getwd.
229 * sysdep.c (get_current_dir_name): Assume getcwd exists.
230 (getwd) [USG]: Remove; no longer needed.
231 (sys_subshell) [DOS_NT]: Use getcwd, not getwd.
232 * w32.c (getcwd): Rename from getwd, and switch to getcwd's API.
233 * w32.h (getcwd): Remove decl.
234
235 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
236
237 * xdisp.c (fast_set_selected_frame): Rename from update_tool_bar_unwind.
238 Make it set selected_window as well.
239 (update_tool_bar): Use it.
240
241 2012-11-21 Ken Brown <kbrown@cornell.edu>
242
243 * emacs.c (main): Set the G_SLICE environment variable for all
244 Cygwin builds, not just GTK builds. See
245 https://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00368.html.
246
247 2012-11-21 Eli Zaretskii <eliz@gnu.org>
248
249 * w32.c (FILE_DEVICE_FILE_SYSTEM, METHOD_BUFFERED)
250 (FILE_ANY_ACCESS, CTL_CODE, FSCTL_GET_REPARSE_POINT) [_MSC_VER]:
251 Define for the MSVC compiler.
252
253 * w32term.h (EnumSystemLocalesW) [_MSC_VER]: Add a missing semi-colon.
254
255 * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
256 (Fexpand_file_name) [DOS_NT]: Pass encoded file name to
257 dostounix_filename. Prevents crashes down the road, because
258 dostounix_filename assumes it gets a unibyte string. Reported by
259 Michel de Ruiter <michel@sentient.nl>, see
260 http://lists.gnu.org/archive/html/help-emacs-windows/2012-11/msg00017.html
261
262 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
263
264 Conflate Qnil and Qunbound for `symbol-function'.
265 * alloc.c (Fmake_symbol): Initialize `function' to Qnil.
266 * lread.c (init_obarray): Set `function' fields to Qnil.
267 * eval.c (Fcommandp): Ignore Qunbound.
268 (Fautoload, eval_sub, Fapply, Ffuncall, Fmacroexpand):
269 * data.c (Ffset, Ffboundp, indirect_function, Findirect_function):
270 Test NILP rather than Qunbound.
271 (Ffmakunbound): Set to Qnil.
272 (Fsymbol_function): Never signal an error.
273 (Finteractive_form): Ignore Qunbound.
274
275 2012-11-20 Paul Eggert <eggert@cs.ucla.edu>
276
277 * eval.c (interactive_p): Remove no-longer-used decl.
278
279 2012-11-20 Dmitry Antipov <dmantipov@yandex.ru>
280
281 * xdisp.c (buffer_shared): Adjust comment.
282 (buffer_shared_and_changed): New function.
283 (prepare_menu_bars, redisplay_internal): Use it to
284 decide whether all windows or frames should be updated.
285 (window_outdated): New function.
286 (text_outside_line_unchanged_p, redisplay_window): Use it.
287 (redisplay_internal): Likewise. Fix indentation.
288
289 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
290
291 * eval.c (Finteractive_p, Fcalled_interactively_p, interactive_p): Remove.
292 (syms_of_eval): Remove corresponding defsubr.
293 * bytecode.c (exec_byte_code): `interactive-p' is now a Lisp function.
294
295 2012-11-19 Daniel Colascione <dancol@dancol.org>
296
297 * w32fns.c (Fx_file_dialog):
298 (Fx_file_dialog): Accomodate rename of cygwin_convert_path* to
299 cygwin_convert_file_name*.
300
301 * cygw32.c (Fcygwin_convert_path_to_windows, syms_of_cygw32):
302 Rename cygwin_convert_path* to cygwin_convert_file_name*.
303
304 2012-11-18 Paul Eggert <eggert@cs.ucla.edu>
305
306 * nsterm.m (ns_select): Send SIGIO only to self, not to process group.
307
308 2012-11-18 Eli Zaretskii <eliz@gnu.org>
309
310 * w32select.c: Include w32common.h before w32term.h, so that
311 windows.h gets included before w32term.h uses some of its
312 features, see below.
313
314 * w32term.h (LOCALE_ENUMPROCA, LOCALE_ENUMPROCW) [_MSC_VER]:
315 New typedefs.
316 (EnumSystemLocalesA, EnumSystemLocalesW) [_MSC_VER]:
317 New prototypes.
318 (EnumSystemLocales) [_MSC_VER]: Define if undefined. (Bug#12878)
319
320 2012-11-18 Jan Djärv <jan.h.d@swipnet.se>
321
322 * nsterm.m (hold_event): Set send_appdefined to YES (Bug#12834).
323 (ns_select): Return at once if events are held (Bug#12834).
324
325 2012-11-18 enami tsugutomo <tsugutomo.enami@jp.sony.com>
326
327 * unexelf.c (ELFSIZE) [__NetBSD__ && _LP64]: Set to 64.
328 Needed following 2012-10-20 change. (Bug#12902)
329
330 2012-11-18 Juanma Barranquero <lekktu@gmail.com>
331
332 * w32proc.c (waitpid): Remove unused label get_result.
333
334 2012-11-17 Juanma Barranquero <lekktu@gmail.com>
335
336 * makefile.w32-in (SYSWAIT_H): New macro.
337 ($(BLD)/callproc.$(O), $(BLD)/w32proc.$(O), $(BLD)/process.$(O))
338 ($(BLD)/sysdep.$(O)): Update dependencies.
339
340 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
341
342 Assume POSIX 1003.1-1988 or later for fcntl.h (Bug#12881).
343 * callproc.c (relocate_fd): Assume F_DUPFD.
344 * emacs.c, term.c (O_RDWR): Remove.
345 * keyboard.c (tty_read_avail_input): Use O_NONBLOCK rather than
346 O_NDELAY, since O_NONBLOCK is the standard name for this flag.
347 * nsterm.m: Assume <fcntl.h> exists.
348 * process.c (NON_BLOCKING_CONNECT, allocate_pty, create_process)
349 (create_pty, Fmake_network_process, server_accept_connection)
350 (wait_reading_process_output, init_process_emacs):
351 Assume O_NONBLOCK.
352 (wait_reading_process_output): Put in a special case for WINDOWSNT
353 to mimick the older behavior where it had O_NDELAY but not O_NONBLOCK.
354 It's not clear this is needed, but it's a more-conservative change.
355 (create_process): Assume FD_CLOEXEC.
356 (create_process, create_pty): Assume O_NOCTTY.
357 * sysdep.c (init_sys_modes, reset_sys_modes): Assume F_SETFL.
358 (reset_sys_modes): Use O_NONBLOCK rather than O_NDELAY.
359 Omit if not DOS_NT, since F_GETFL is not defined there.
360 (serial_open): Assume O_NONBLOCK and O_NOCTTY.
361 * term.c: Include <fcntl.h>, for flags like O_NOCTTY.
362 (O_NOCTTY): Remove.
363 (init_tty): Assume O_IGNORE_CTTY is defined to 0 on platforms that
364 lack it, since gnulib guarantees this.
365 * w32.c (fcntl): Test for O_NONBLOCK rather than O_NDELAY.
366
367 2012-11-17 Eli Zaretskii <eliz@gnu.org>
368
369 * w32.c (faccessat): Pretend that directories have the execute bit
370 set. Emacs expects that, e.g., in files.el:cd-absolute.
371
372 * w32proc.c (create_child): Don't clip the PID of the child
373 process to fit into an Emacs integer, as this is no longer a
374 restriction.
375 (waitpid): Rename from sys_wait. Emulate a Posix 'waitpid' by
376 reaping only the process specified by PID argument, if that is
377 positive. Use PID instead of dead_child to know which process to
378 reap. Wait for the child to die only if WNOHANG is not in
379 OPTIONS.
380 (sys_select): Don't set dead_child.
381
382 * sysdep.c (wait_for_termination_1): Remove the WINDOWSNT portion,
383 as it is no longer needed.
384
385 * process.c (waitpid, WUNTRACED) [!WNOHANG]: Remove definitions,
386 no longer needed.
387 (record_child_status_change): Remove the setting of
388 record_at_most_one_child for the !WNOHANG case.
389
390 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
391
392 Fix problems in ns port found by static checking.
393 * nsterm.m: Include <pthread.h>, for pthread_mutex_lock etc.
394 (hold_event, setPosition:portion:whole:): Send SIGIO only to self,
395 not to process group.
396 (ns_select): Use emacs_write, not write, as that's more robust
397 in the presence of signals.
398 (fd_handler:): Check for read errors.
399
400 2012-11-16 Glenn Morris <rgm@gnu.org>
401
402 * editfns.c (Fmessage): Mention message-log-max. (Bug#12849)
403
404 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
405
406 * eval.c (Finteractive_p): Revert lexbind-merge mishap.
407
408 2012-11-16 Eli Zaretskii <eliz@gnu.org>
409
410 * w32proc.c (timer_loop): Make sure SuspendThread and ResumeThread
411 use the same value of thread handle.
412 (start_timer_thread): If the timer thread exited (due to error),
413 clean up by closing the two handles it used. Duplicate the caller
414 thread's handle here, so it gets duplicated only once, when
415 launching the timer thread. Set priority of the timer thread, not
416 the caller thread.
417 (getitimer): Don't duplicate the caller thread's handle here.
418 (Bug#12832)
419
420 2012-11-16 Jan Djärv <jan.h.d@swipnet.se>
421
422 * nsterm.m (hold_event): Send SIGIO to make sure ns_read_socket is
423 called (Bug#12834).
424
425 2012-11-16 Paul Eggert <eggert@cs.ucla.edu>
426
427 Remove no-longer-used pty_max_bytes variable.
428 * process.c (pty_max_bytes): Remove; unused.
429 (send_process): Do not set it.
430
431 2012-11-15 Juanma Barranquero <lekktu@gmail.com>
432
433 * makefile.w32-in ($(BLD)/dispnew.$(O), $(BLD)/emacs.$(O)):
434 Update dependencies.
435
436 2012-11-15 Paul Eggert <eggert@cs.ucla.edu>
437
438 * eval.c (mark_backtrace) [BYTE_MARK_STACK]: Remove stray '*'.
439 This follows up on the 2012-09-29 patch that removed indirection
440 for the 'function' field. Reported by Sergey Vinokurov in
441 <http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00263.html>.
442
443 2012-11-14 Eli Zaretskii <eliz@gnu.org>
444
445 * w32.c (faccessat): Rename from sys_faccessat. (No need to use a
446 different name, as the MS runtime does not have such a function,
447 and probably never will.) All callers changed. Ignore DIRFD
448 value if PATH is an absolute file name, to match Posix spec
449 better. If AT_SYMLINK_NOFOLLOW is set in FLAGS, don't resolve
450 symlinks.
451
452 2012-11-14 Dmitry Antipov <dmantipov@yandex.ru>
453
454 * xdisp.c (echo_area_display, redisplay_internal):
455 Omit redundant check whether frame_garbaged is set.
456
457 2012-11-14 Paul Eggert <eggert@cs.ucla.edu>
458
459 Use faccessat, not access, when checking file permissions (Bug#12632).
460 This fixes a bug that has been present in Emacs since its creation.
461 It was reported by Chris Torek in 1983 even before GNU Emacs existed,
462 which must set some sort of record. (Torek's bug report was against
463 a predecessor of GNU Emacs, but GNU Emacs happened to have the
464 same common flaw.) See Torek's Usenet posting
465 "setuid/setgid programs & Emacs" Article-I.D.: sri-arpa.858
466 Posted: Fri Apr 8 14:18:56 1983.
467 * Makefile.in (LIB_EACCESS): New macro.
468 (LIBES): Use it.
469 * callproc.c (init_callproc):
470 * charset.c (init_charset):
471 * fileio.c (check_existing, check_executable, check_writable)
472 (Ffile_readable_p):
473 * lread.c (openp, load_path_check):
474 * process.c (allocate_pty):
475 * xrdb.c (file_p):
476 Use effective UID when checking permissions, not real UID.
477 * callproc.c (init_callproc):
478 * charset.c (init_charset):
479 * lread.c (load_path_check, init_lread):
480 Test whether directories are accessible, not merely whether they exist.
481 * conf_post.h (GNULIB_SUPPORT_ONLY_AT_FDCWD): New macro.
482 * fileio.c (check_existing, check_executable, check_writable)
483 (Ffile_readable_p):
484 Use symbolic names instead of integers for the flags, as they're
485 portable now.
486 (check_writable): New arg AMODE. All uses changed.
487 Set errno on failure.
488 (Ffile_readable_p): Use faccessat, not stat + open + close.
489 (Ffile_writable_p): No need to call check_existing + check_writable.
490 Just call check_writable and then look at errno. This saves a syscall.
491 dir should never be nil; replace an unnecessary runtime check
492 with an eassert. When checking the parent directory of a nonexistent
493 file, check that the directory is searchable as well as writable, as
494 we can't create files in unsearchable directories.
495 (file_directory_p): New function, which uses 'stat' on most platforms
496 but faccessat with D_OK (for efficiency) if WINDOWSNT.
497 (Ffile_directory_p, Fset_file_times): Use it.
498 (file_accessible_directory_p): New function, which uses a single
499 syscall for efficiency.
500 (Ffile_accessible_directory_p): Use it.
501 * xrdb.c (file_p): Use file_directory_p.
502 * lisp.h (file_directory_p, file_accessible_directory_p): New decls.
503 * lread.c (openp): When opening a file, use fstat rather than
504 stat, as that avoids a permissions race. When not opening a file,
505 use file_directory_p rather than stat.
506 (dir_warning): First arg is now a usage string, not a format.
507 Use errno. All uses changed.
508 * nsterm.m (ns_term_init): Remove unnecessary call to file-readable
509 that merely introduced a race.
510 * process.c, sysdep.c, term.c: All uses of '#ifdef O_NONBLOCK'
511 changed to '#if O_NONBLOCK', to accommodate gnulib O_* style,
512 and similarly for the other O_* flags.
513 * w32.c (sys_faccessat): Rename from sys_access and switch to
514 faccessat's API. All uses changed.
515 * xrdb.c: Do not include <sys/stat.h>; no longer needed.
516 (magic_db): Rename from magic_file_p.
517 (magic_db, search_magic_path): Return an XrmDatabase rather than a
518 char *, so that we don't have to test for file existence
519 separately from opening the file for reading. This removes a race
520 fixes a permission-checking problem, and simplifies the code.
521 All uses changed.
522 (file_p): Remove; no longer needed.
523
524 2012-11-13 Dmitry Antipov <dmantipov@yandex.ru>
525
526 Omit glyphs initialization at startup.
527 * dispnew.c (glyphs_initialized_initially_p): Remove.
528 (adjust_frame_glyphs_initially): Likewise. Adjust users.
529 (Fredraw_frame): Move actual code from here...
530 (redraw_frame): ...to here. Add eassert. Adjust comment.
531 (Fredraw_display): Use redraw_frame.
532 * xdisp.c (clear_garbaged_frames): Likewise.
533
534 2012-11-13 Eli Zaretskii <eliz@gnu.org>
535
536 * xdisp.c (decode_mode_spec): Limit the value of WIDTH argument
537 passed to pint2str and pint2hrstr to be at most the size of the
538 frame's decode_mode_spec_buffer. This avoids crashes with very
539 large values of FIELD_WIDTH argument to decode_mode_spec.
540 (Bug#12867)
541
542 2012-11-13 Paul Eggert <eggert@cs.ucla.edu>
543
544 Fix a race with verify-visited-file-modtime (Bug#12863).
545 Since at least 1991 Emacs has ignored an mtime difference of no
546 more than one second, but my guess is that this was to work around
547 file system bugs that were fixed long ago. Since the race is
548 causing problems now, let's remove that code.
549 * fileio.c (Fverify_visited_file_modtime): Do not accept a file
550 whose time stamp is off by no more than a second. Insist that the
551 file time stamps match exactly.
552
553 2012-11-12 Dmitry Antipov <dmantipov@yandex.ru>
554
555 * frame.h (struct frame): Convert external_tool_bar member to
556 1-bit unsigned bitfield.
557 * termhooks.h (struct terminal): Remove mouse_moved member since
558 all users are long dead. Adjust comment on mouse_position_hook.
559
560 2012-11-12 Dmitry Antipov <dmantipov@yandex.ru>
561
562 Simplify by using FOR_EACH_FRAME here and there.
563 * frame.c (next_frame, prev_frame, other_visible_frames)
564 (delete_frame, visible-frame-list): Use FOR_EACH_FRAME.
565 * w32term.c (x_window_to_scroll_bar): Likewise.
566 * window.c (window_list): Likewise.
567 * xdisp.c (x_consider_frame_title): Likewise.
568 * xfaces.c ( Fdisplay_supports_face_attributes_p): Likewise.
569 * xfns.c (x_window_to_frame, x_any_window_to_frame)
570 (x_menubar_window_to_frame, x_top_window_to_frame): Likewise.
571 * xmenu.c (menubar_id_to_frame): Likewise.
572 * xselect.c (frame_for_x_selection): Likewise.
573 * xterm.c (x_frame_of_widget, x_window_to_scroll_bar)
574 (x_window_to_menu_bar): Likewise.
575 * w32fns.c (x_window_to_frame): Likewise. Adjust comment.
576
577 2012-11-12 Paul Eggert <eggert@cs.ucla.edu>
578
579 * data.c (Qdefalias_fset_function): Now static.
580
581 Another tweak to vectorlike_header change.
582 * alloc.c (struct Lisp_Vectorlike_Free, NEXT_IN_FREE_LIST):
583 Remove, and replace all uses with ...
584 (next_in_free_list, set_next_in_free_list):
585 New functions, which respect C's aliasing rules better.
586
587 2012-11-11 Paul Eggert <eggert@cs.ucla.edu>
588
589 * window.c (list4i): Rename from 'quad'. All uses changed.
590 Needed because <sys/types.h> defines 'quad' on Solaris 10.
591
592 2012-11-11 Juanma Barranquero <lekktu@gmail.com>
593
594 * xdisp.c (start_hourglass) [HAVE_NTGUI]: Add block to silence
595 warning about mixing declarations and code in ISO C90.
596
597 2012-11-10 Martin Rudalics <rudalics@gmx.at>
598
599 * window.c (Fsplit_window_internal): Set combination limit of
600 new parent window to t iff Vwindow_combination_limit is t;
601 fixing a regression introduced with the change from 2012-09-22.
602 (Fset_window_combination_limit): Fix doc-string.
603
604 2012-11-10 Eli Zaretskii <eliz@gnu.org>
605
606 * xdisp.c (try_scrolling): Fix correction of aggressive-scroll
607 amount when the scroll margins are too large. When scrolling
608 backwards in the buffer, give up if cannot reach point or the
609 scroll margin within a reasonable number of screen lines.
610 Fixes point position in window under scroll-up/down-aggressively when
611 point is positioned many lines beyond the window top/bottom.
612 (Bug#12811)
613
614 * ralloc.c (relinquish): If real_morecore fails to return memory
615 to the system, don't crash; instead, leave the last heap
616 unchanged and return. (Bug#12774)
617
618 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
619
620 * lisp.h (AUTOLOADP): New macro.
621 * eval.c (Fautoload): Don't attach to loadhist, call Fdefalias instead.
622 * data.c (Ffset): Remove special ad-advice-info handling.
623 (Fdefalias): Handle autoload definitions and new Qdefalias_fset_function.
624 (Fsubr_arity): CSE.
625 (Finteractive_form): Simplify.
626 (Fquo): Don't insist on having at least 2 arguments.
627 (Qdefalias_fset_function): New var.
628
629 2012-11-09 Jan Djärv <jan.h.d@swipnet.se>
630
631 * image.c (xpm_make_color_table_h): Change to hashtest_equal.
632
633 * nsfont.m (Qcondensed, Qexpanded): New variables.
634 (ns_descriptor_to_entity): Restore Qcondensed, Qexpanded setting.
635 (syms_of_nsfont): Defsym Qcondensed, Qexpanded.
636
637 2012-11-09 Dmitry Antipov <dmantipov@yandex.ru>
638
639 Fix recently introduced crash on MS-Windows (Bug#12839).
640 * w32term.h (struct scroll_bar): Use convenient header.
641 (SCROLL_BAR_VEC_SIZE): Remove.
642 * w32term.c (x_scroll_bar_create): Use VECSIZE.
643
644 2012-11-09 Dmitry Antipov <dmantipov@yandex.ru>
645
646 Tweak last vectorlike_header change.
647 * alloc.c (struct Lisp_Vectorlike_Free): Special type to represent
648 vectorlike object on the free list. This is introduced to avoid
649 some (but not all) pointer casting and aliasing problems, see
650 http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00105.html.
651 * .gdbinit (pvectype, pvecsize): New commands to examine vectorlike
652 objects.
653 (xvectype, xvecsize): Use them to examine Lisp_Object values.
654
655 2012-11-09 Jan Djärv <jan.h.d@swipnet.se>
656
657 * nsfont.m (ns_descriptor_to_entity): Qcondensed and Qexpanded has
658 been removed, so remove them here also.
659
660 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
661
662 * doc.c (Fdocumentation): Handle new property
663 dynamic-docstring-function to replace the old ad-advice-info.
664
665 2012-11-09 Paul Eggert <eggert@cs.ucla.edu>
666
667 * fns.c (Qeql, hashtest_eq): Now static.
668
669 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
670
671 * lisp.h (XHASH): Redefine to be imperfect and fit in a Lisp int.
672 * fns.c (hashfn_eq, hashfn_eql, sxhash):
673 * profiler.c (hashfn_profiler): Don't use XUINT on non-integers.
674 * buffer.c (compare_overlays): Use XLI rather than XHASH.
675
676 2012-11-08 Paul Eggert <eggert@cs.ucla.edu>
677
678 Use same hash function for hashfn_profiler as for hash_string etc.
679 * fns.c (SXHASH_COMBINE): Remove. All uses replaced by sxhash_combine.
680 * lisp.h (sxhash_combine): New inline function, with the contents
681 of the old SXHASH_COMBINE.
682 * profiler.c (hashfn_profiler): Use it, instead of having a
683 special hash function containing a comparison that always yields 1.
684
685 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
686
687 * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic)
688 (Qultra_condensed, Qextra_condensed, Qcondensed, Qsemi_condensed)
689 (Qsemi_expanded, Qextra_expanded, Qexpanded, Qultra_expanded):
690 Remove unused vars.
691
692 2012-11-08 Jan Djärv <jan.h.d@swipnet.se>
693
694 * image.c (xpm_make_color_table_h): Fix compiler error because
695 make_hash_table changed.
696
697 2012-11-08 Thomas Kappler <tkappler@gmail.com> (tiny change)
698
699 * nsfont.m (ns_findfonts): Handle empty matchingDescs (Bug#11541).
700
701 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
702
703 Use ad-hoc comparison function for the profiler's hash-tables.
704 * profiler.c (Qprofiler_backtrace_equal, hashtest_profiler): New vars.
705 (make_log): Use them.
706 (handle_profiler_signal): Don't inhibit quit any longer since we don't
707 call Fequal any more.
708 (Ffunction_equal): New function.
709 (cmpfn_profiler, hashfn_profiler): New functions.
710 (syms_of_profiler): Initialize them.
711 * lisp.h (struct hash_table_test): New struct.
712 (struct Lisp_Hash_Table): Use it.
713 * alloc.c (mark_object): Mark hash_table_test fields of hash tables.
714 * fns.c (make_hash_table): Take a struct to describe the test.
715 (cmpfn_eql, cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
716 (hashfn_equal, hashfn_user_defined): Adjust to new calling convention.
717 (hash_lookup, hash_remove_from_table): Move assertion checking of
718 hashfn result here. Check hash-equality before calling cmpfn.
719 (Fmake_hash_table): Adjust call to make_hash_table.
720 (hashtest_eq, hashtest_eql, hashtest_equal): New structs.
721 (syms_of_fns): Initialize them.
722 * emacs.c (main): Move syms_of_fns earlier.
723 * xterm.c (syms_of_xterm):
724 * category.c (hash_get_category_set): Adjust call to make_hash_table.
725 * print.c (print_object): Adjust to new hash-table struct.
726 * composite.c (composition_gstring_put_cache): Adjust to new hashfn.
727
728 2012-11-08 Eli Zaretskii <eliz@gnu.org>
729
730 * w32fns.c (modifier_set): Fix handling of Scroll Lock when the
731 value of w32-scroll-lock-modifier is neither nil nor one of the
732 known key modifiers. (Bug#12806)
733
734 2012-11-08 Dmitry Antipov <dmantipov@yandex.ru>
735
736 Shrink struct vectorlike_header to the only size field.
737 * lisp.h (enum pvec_type): Avoid explicit enum member values.
738 Adjust comment.
739 (enum More_Lisp_Bits): Change PSEUDOVECTOR_SIZE_BITS and
740 PVEC_TYPE_MASK to arrange new bitfield in the vector header.
741 (PSEUDOVECTOR_REST_BITS, PSEUDOVECTOR_REST_MASK): New members.
742 (PSEUDOVECTOR_AREA_BITS): New member used to extract subtype
743 information from the vector header. Adjust comment.
744 (XSETPVECTYPE, XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR)
745 (PSEUDOVECTOR_TYPEP, DEFUN): Adjust to match new vector header
746 layout.
747 (XSETSUBR, SUBRP): Adjust to match new Lisp_Subr layout.
748 (struct vectorlike_header): Remove next member. Adjust comment.
749 (struct Lisp_Subr): Add convenient header. Adjust comment.
750 (allocate_pseudovector): Adjust prototype.
751 * alloc.c (mark_glyph_matrix, mark_face_cache, allocate_string)
752 (sweep_string, lisp_malloc): Remove useless prototypes.
753 (enum mem_type): Adjust comment.
754 (NEXT_IN_FREE_LIST): New macro.
755 (SETUP_ON_FREE_LIST): Adjust XSETPVECTYPESIZE usage.
756 (Fmake_bool_vector): Likewise.
757 (struct large_vector): New type to represent allocation unit for
758 the vectors with the memory footprint more than VBLOOCK_BYTES_MAX.
759 (large_vectors): Change type to struct large_vector.
760 (allocate_vector_from_block): Simplify.
761 (PSEUDOVECTOR_NBYTES): Replace with...
762 (vector_nbytes): ...new function. Adjust users.
763 (sweep_vectors): Adjust processing of large vectors.
764 (allocate_vectorlike): Likewise.
765 (allocate_pseudovector): Change type of 3rd arg to enum pvec_type.
766 Add easserts. Adjust XSETPVECTYPESIZE usage.
767 (allocate_buffer): Use BUFFER_PVEC_INIT.
768 (live_vector_p): Adjust to match large vector.
769 * buffer.c (init_buffer_once): Use BUFFER_PVEC_INIT.
770 * buffer.h (struct buffer): Add next member.
771 (BUFFER_LISP_SIZE, BUFFER_REST_SIZE, BUFFER_PVEC_INIT):
772 New macros.
773 (FOR_EACH_BUFFER): Adjust to match struct buffer change.
774 * fns.c (internal_equal): Adjust to match enum pvec_type change.
775 (copy_hash_table): Adjust to match vector header change.
776 * lread.c (defsubr): Use XSETPVECTYPE.
777 * .gdbinit (xpr, xbacktrace): Adjust to match vector header change.
778 (xvectype): Likewise. Print PVEC_NORMAL_VECTOR for regular vectors.
779 (xvecsize): New command.
780
781 2012-11-08 Dmitry Antipov <dmantipov@yandex.ru>
782
783 * keyboard.c (event_to_kboard): Do not dereference
784 frame_or_window field of SELECTION_REQUEST_EVENT
785 and SELECTION_CLEAR_EVENT events (Bug#12814).
786 * xterm.h (struct selection_input_event): Adjust comment.
787
788 2012-11-07 Eli Zaretskii <eliz@gnu.org>
789
790 * w32fns.c (modifier_set): Don't report modifiers from toggle key,
791 such as Scroll Lock, if the respective keys are treated as
792 function keys, not as modifiers. This avoids destroying non-ASCII
793 keyboard input when Scroll Lock is toggled ON. (Bug#12806)
794
795 2012-11-07 Dmitry Antipov <dmantipov@yandex.ru>
796
797 * xfns.c (Fx_wm_set_size_hint): Use check_x_frame. Adjust docstring.
798
799 2012-11-06 Paul Eggert <eggert@cs.ucla.edu>
800
801 Restore some duplicate definitions (Bug#12814).
802 This undoes part of the 2012-11-03 changes. Some people build
803 with plain -g rather than with -g3, and they need the duplicate
804 definitions for .gdbinit to work; see <http://bugs.gnu.org/12814#26>.
805 * lisp.h (GCTYPEBITS, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK):
806 Define as macros, as well as as enums or as constants.
807
808 2012-11-06 Jan Djärv <jan.h.d@swipnet.se>
809
810 * nsterm.m (convert_ns_to_X_keysym, keyDown:): Add NSNumericPadKeyMask
811 to keypad keys (Bug#12816).
812
813 2012-11-06 Paul Eggert <eggert@cs.ucla.edu>
814
815 Minor adjustments of recently-changed frame functions.
816 * buffer.c (Fbuffer_list): Omit CHECK_FRAME, since arg is already
817 known to be a frame (we're in the FRAMEP branch).
818 * lisp.h (Qframep): Remove decl. frame.h declares this.
819 * window.c (quad): Args are of type EMACS_INT, not ptrdiff_t,
820 since they're meant for Lisp fixnum values.
821
822 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
823
824 * window.c (Fwindow_combination_limit): Revert to the only
825 required argument and adjust docstring as suggested in
826 http://lists.gnu.org/archive/html/emacs-diffs/2012-11/msg01082.html
827 by Martin Rudalics <rudalics@gmx.at>.
828
829 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
830
831 Widely used frame validity and checking functions.
832 * frame.h (decode_live_frame, decode_any_frame): Add prototypes.
833 * frame.c (decode_live_frame, decode_any_frame): New functions.
834 (delete_frame, Fredirect_frame_focus, Fframe_parameters)
835 (Fframe_parameter, Fframe_char_height, Fframe_char_width)
836 (Fframe_pixel_height, Fframe_pixel_width, Ftool_bar_pixel_width)
837 (Fframe_pointer_visible_p): Use decode_any_frame.
838 (Fmake_frame_visible, Fmake_frame_invisible, Ficonify_frame)
839 (Fraise_frame, Flower_frame, Fmodify_frame_parameters)
840 (Fset_frame_height, Fset_frame_width): Use decode_live_frame.
841 (Fframe_focus): Likewise. Allow zero number of arguments.
842 Adjust docstring.
843 (frame_buffer_list, frame_buffer_predicate): Remove.
844 * lisp.h (frame_buffer_predicate): Remove prototype.
845 * buffer.c (Fother_buffer): Use decode_any_frame.
846 * xdisp.c (Ftool_bar_lines_needed): Likewise.
847 * xfaces.c (Fcolor_gray_p, Fcolor_supported_p): Likewise.
848 * font.c (Ffont_face_attributes, Ffont_family_list, Fopen_font)
849 (Fclose_font, Ffont_info): Use decode_live_frame.
850 * fontset.c (check_fontset_name): Likewise.
851 * terminal.c (Fframe_terminal): Likewise.
852 * w32fns.c (check_x_frame): Likewise.
853 * window.c (Fminibuffer_window, Fwindow_at)
854 (Fcurrent_window_configuration): Likewise.
855 (Frun_window_configuration_change_hook, Fwindow_resize_apply):
856 Likewise. Allow zero number of arguments. Adjust docstring.
857 * dispnew.c (Fredraw_frame): Likewise.
858 * xfaces.c (frame_or_selected_frame): Remove.
859 (Fx_list_fonts, Finternal_get_lisp_face_attribute, Fface_font)
860 (Finternal_lisp_face_equal_p, Finternal_lisp_face_empty_p)
861 (Fframe_face_alist): Use decode_live_frame.
862 * xfns.c (check_x_frame): Likewise.
863
864 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
865
866 * window.c (quad): New function.
867 (Fwindow_edges, Fwindow_pixel_edges, Fwindow_inside_edges)
868 (Fwindow_absolute_pixel_edges, Fwindow_inside_absolute_pixel_edges)
869 (Fwindow_inside_pixel_edges, Fpos_visible_in_window_p)
870 (Fwindow_line_height): Use it.
871 (Fwindow_fringes): Use list3.
872 (Fwindow_scroll_bars): Use list4.
873 (Fwindow_frame, Fwindow_top_child, Fwindow_left_child)
874 (Fwindow_combination_limit): Allow zero number of arguments.
875
876 2012-11-05 Eli Zaretskii <eliz@gnu.org>
877
878 * makefile.w32-in ($(BLD)/w32fns.$(O)): Depend on $(NT_INC)/unistd.h.
879
880 * w32fns.c: Include unistd.h, to avoid compiler warnings on Cygwin.
881 (emacs_abort) [CYGWIN]: Don't call _open_osfhandle; instead, use
882 file descriptor 2 for standard error. (Bug#12805)
883
884 2012-11-05 Chong Yidong <cyd@gnu.org>
885
886 * process.c (wait_reading_process_output): Revert previous change.
887
888 2012-11-05 Paul Eggert <eggert@cs.ucla.edu>
889
890 Assume at least POSIX.1-1988 for getpgrp, setpgid, setsid (Bug#12800).
891 This removes code that has been obsolete since around 1990.
892 * callproc.c (Fcall_process):
893 * emacs.c (main):
894 * process.c (create_process):
895 * term.c (dissociate_if_controlling_tty):
896 Assume setsid exists.
897 * callproc.c (child_setup): Assume setpgid exists and behaves as
898 per POSIX.1-1988 or later.
899 * conf_post.h (setpgid) [!HAVE_SETPGID]: Remove.
900 * emacs.c (shut_down_emacs):
901 * sysdep.c (sys_suspend, init_foreground_group):
902 Assume getpgrp behaves as per POSIX.1-1998 or later.
903 * msdos.c (setpgrp): Remove.
904 (tcgetpgrp, setpgid, setsid): New functions.
905 * systty.h (EMACS_GETPGRP): Remove. All callers now use getpgrp.
906 * term.c (no_controlling_tty): Remove; unused.
907 * w32proc.c (setpgrp): Remove.
908 (setsid, tcgetpgrp): New functions.
909
910 Simplify by assuming __fpending.
911 * dispnew.c: Include <fpending.h>, not <stdio_ext.h>.
912 (update_frame_1): Use __fpending, not PENDING_OUTPUT_COUNT.
913 Do not assume that __fpending's result fits in int.
914
915 2012-11-04 Paul Eggert <eggert@cs.ucla.edu>
916
917 Remove EMACS_OUTQSIZE+sleep hack.
918 * dispnew.c (update_frame_1): Remove hack for terminals slower
919 than 2400 bps, which throttled Emacs by having it sleep.
920 This code hasn't worked since at least 2007, when the multi-tty stuff
921 was added, and anyway those old terminals are long dead.
922 * systty.h (EMACS_OUTQSIZE): Remove; unused. The macro isn't used even
923 without the dispnew.c change, as dispnew.c doesn't include systty.h.
924
925 Fix data-loss with --version (Bug#9574).
926 * emacs.c (close_output_streams): Use strerror, not emacs_strerror,
927 as we can't assume that emacs_strerror is initialized, and strerror
928 is good enough here.
929 (main): Invoke atexit earlier, to catch earlier instances of
930 sending data to stdout and exiting, e.g., "emacs --version >/dev/full".
931
932 2012-11-04 Michael Marchionna <tralfaz@pacbell.net>
933
934 * nsterm.m: Add NSClearLineFunctionKey and keypad keys (Bug#8680).
935 (keyDown): Remap keypad keys to X11 virtual key codes.
936
937 2012-11-03 Paul Eggert <eggert@cs.ucla.edu>
938
939 Fix data-loss with --batch (Bug#9574).
940 * emacs.c: Include <close-stream.h>.
941 (close_output_streams): New function.
942 (main): Pass it to atexit, so that Emacs closes stdout and stderr
943 and handles errors appropriately.
944 (Fkill_emacs): Don't worry about flushing, as close_output_stream
945 does that now.
946
947 Fix a race condition that causes Emacs to mess up glib (Bug#8855).
948 The symptom is a diagnostic "GLib-WARNING **: In call to
949 g_spawn_sync(), exit status of a child process was requested but
950 SIGCHLD action was set to SIG_IGN and ECHILD was received by
951 waitpid(), so exit status can't be returned." The diagnostic
952 is partly wrong, as the SIGCHLD action is not set to SIG_IGN.
953 The real bug is a race condition between Emacs and glib: Emacs
954 does a waitpid (-1, ...) and reaps glib's subprocess by mistake,
955 so that glib can't find it. Work around the bug by invoking
956 waitpid only on subprocesses that Emacs itself creates.
957 * process.c (create_process, record_child_status_change):
958 Don't use special value -1 in pid field, as the caller now must
959 know the pid rather than having the callee infer it.
960 The inference was sometimes incorrect anyway, due to another race.
961 (create_process): Set new 'alive' member if child is created.
962 (process_status_retrieved): New function.
963 (record_child_status_change): Use it.
964 Accept negative 1st argument, which means to wait for the
965 processes that Emacs already knows about. Move special-case code
966 for DOS_NT (which lacks WNOHANG) here, from caller. Keep track of
967 processes that have already been waited for, by testing and
968 clearing new 'alive' member.
969 (CAN_HANDLE_MULTIPLE_CHILDREN): Remove, as record_child_status_change
970 now does this internally.
971 (handle_child_signal): Let record_child_status_change do all
972 the work, since we do not want to reap all exited child processes,
973 only the child processes that Emacs itself created.
974 * process.h (Lisp_Process): New boolean member 'alive'.
975
976 Omit duplicate definitions no longer needed with gcc -g3.
977 * lisp.h (GCTYPEBITS, GCALIGNMENT, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG)
978 (VALMASK, MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM):
979 Define only as macros. There's no longer any need to also define
980 these symbols as enums or as constants, since we now assume
981 gcc -g3 when debugging.
982
983 2012-11-03 Eli Zaretskii <eliz@gnu.org>
984
985 * lisp.mk: Adjust comments to the fact that term/internal is now
986 loaded from loadup.el.
987
988 * msdos.c (msdos_abort): Rename from emacs_abort, and make static.
989 (msdos_fatal_signal): New function.
990 (XMenuActivate): Adjust the call to kbd_buffer_events_waiting to
991 its argument list.
992
993 * conf_post.h (_GL_EXECINFO_INLINE) [MSDOS]: Define to "inline"
994 for GCC versions before 4.
995 (emacs_raise): Define to call msdos_fatal_signal.
996
997 * xdisp.c (init_from_display_pos): Fix initialization of the bidi
998 iterator when starting in the middle of a display or overlay
999 string. (Bug#12745)
1000
1001 2012-11-03 Chong Yidong <cyd@gnu.org>
1002
1003 * process.c (wait_reading_process_output): Clean up the last
1004 change.
1005
1006 2012-11-03 Jim Paris <jim@jtan.com> (tiny change)
1007
1008 * process.c (wait_reading_process_output): Avoid a race condition
1009 with SIGIO delivery (Bug#11536).
1010
1011 2012-11-03 Chong Yidong <cyd@gnu.org>
1012
1013 * buffer.c (cursor_type): Untabify docstring.
1014
1015 2012-11-03 Dmitry Antipov <dmantipov@yandex.ru>
1016
1017 * frame.h (struct frame): Drop can_have_scroll_bars member
1018 which is meaningless for a long time. Adjust comments.
1019 (FRAME_CAN_HAVE_SCROLL_BARS): Remove.
1020 * frame.c, nsfns.m, term.c, w32fns.c, xfns.c: Adjust users.
1021
1022 2012-11-03 Dmitry Antipov <dmantipov@yandex.ru>
1023
1024 * window.c (decode_next_window_args): Update window arg after
1025 calling decode_live_window and so fix crash reported at
1026 http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00035.html
1027 by Juanma Barranquero <lekktu@gmail.com>.
1028 (Fwindow_body_width, Fwindow_body_height): Simplify a bit.
1029 * font.c (Ffont_at): Likewise.
1030
1031 2012-11-01 Jan Djärv <jan.h.d@swipnet.se>
1032
1033 * widget.c (resize_cb): New function.
1034 (EmacsFrameRealize): Add resize_cb as event handler (Bug#12733).
1035 (EmacsFrameResize): Check if all is up to date before changing frame
1036 size.
1037
1038 2012-11-02 Eli Zaretskii <eliz@gnu.org>
1039
1040 Implement backtrace output for fatal errors on MS-Windows.
1041 * w32fns.c (CaptureStackBackTrace_proc): New typedef.
1042 (BACKTRACE_LIMIT_MAX): New macro.
1043 (w32_backtrace): New function.
1044 (emacs_abort): Use w32_backtrace when the user chooses not to
1045 attach a debugger. Update the text of the abort dialog.
1046
1047 2012-11-02 Dmitry Antipov <dmantipov@yandex.ru>
1048
1049 Window-related stuff cleanup here and there.
1050 * dispnew.c (Finternal_show_cursor, Finternal_show_cursor_p):
1051 Use decode_any_window.
1052 * fringe.c (Ffringe_bitmaps_at_pos): Likewise.
1053 * xdisp.c (Fformat_mode_line): Likewise.
1054 * font.c (Ffont_at): Use decode_live_window.
1055 * indent.c (Fcompute_motion, Fvertical_motion): Likewise.
1056 * window.c (decode_next_window_args): Likewise.
1057 (decode_any_window): Remove static.
1058 * window.h (decode_any_window): Add prototype.
1059 * lisp.h (CHECK_VALID_WINDOW, CHECK_LIVE_WINDOW): Move from here...
1060 * window.h: ...to here, redefine via WINDOW_VALID_P and WINDOW_LIVE_P,
1061 respectively.
1062
1063 2012-11-02 Dmitry Antipov <dmantipov@yandex.ru>
1064
1065 Remove pad from struct input_event.
1066 * termhooks.h (struct input_event): Remove padding field.
1067 Adjust comment.
1068 * keyboard.c (event_to_kboard): Simplify because frame_or_window
1069 member is never cons for a long time. Adjust comment.
1070 (mark_kboards): Adjust because SELECTION_REQUEST_EVENT and
1071 SELECTION_CLEAR_EVENT has no Lisp_Objects to mark. Add comment.
1072 * xterm.c (handle_one_xevent): Do not initialize frame_or_window
1073 field of SELECTION_REQUEST_EVENT and SELECTION_CLEAR_EVENT.
1074
1075 2012-11-01 Eli Zaretskii <eliz@gnu.org>
1076
1077 * w32proc.c (getpgrp, setpgid): New functions. (Bug#12776)
1078
1079 2012-10-31 Paul Eggert <eggert@cs.ucla.edu>
1080
1081 Fix crash when using Emacs as commit editor for git (Bug#12697).
1082 * callproc.c (setpgrp): Remove macro, as we now use setpgid
1083 and it is configured in conf_post.h.
1084 (Fcall_process): Don't invoke both setsid and setpgid; the former
1085 is enough, if it exists.
1086 * callproc.c (Fcall_process, child_setup):
1087 * process.c (create_process): Use setpgid.
1088 * conf_post.h (setpgid) [!HAVE_SETPGID]: New macro, which substitutes
1089 for the real thing.
1090 * dispnew.c (init_display): Initialize the foreground group
1091 if we are running a tty display.
1092 * emacs.c (main): Do not worry about setpgrp; init_display does it now.
1093 * lisp.h (init_foreground_group): New decl.
1094 * sysdep.c (inherited_pgroup): New static var.
1095 (init_foreground_group, tcsetpgrp_without_stopping)
1096 (narrow_foreground_group, widen_foreground_group): New functions.
1097 (init_sys_modes): Narrow foreground group.
1098 (reset_sys_modes): Widen foreground group.
1099
1100 2012-10-31 Michael Albinus <michael.albinus@gmx.de>
1101
1102 * dbusbind.c: Fix cut'n'waste error. Use HAVE_DBUS_VALIDATE_INTERFACE.
1103
1104 2012-10-31 Martin Rudalics <rudalics@gmx.at>
1105
1106 * minibuf.c (read_minibuf): Restore current buffer since
1107 choose_minibuf_frame calling Fset_frame_selected_window may
1108 change it (Bug#12766).
1109
1110 2012-10-30 Jan Djärv <jan.h.d@swipnet.se>
1111
1112 * frame.c (Fframe_pixel_height): Fix documentation (Bug#12733).
1113
1114 2012-10-30 Kenichi Handa <handa@gnu.org>
1115
1116 * font.c (Ffont_at): If WINDOW is specified and it is not
1117 displaying the current buffer, signal an error.
1118
1119 2012-10-29 Daniel Colascione <dancol@dancol.org>
1120
1121 * cygw32.h, cygw32.c (Qutf_16le, from_unicode, to_unicode):
1122 In preparation for fixing bug#12739, move these functions from
1123 here...
1124
1125 * coding.h, coding.c: ... to here, and compile them only when
1126 WINDOWSNT or CYGWIN. Moving these functions out of cygw32 proper
1127 lets us write cygw32-agnostic code for the HAVE_NTGUI case.
1128
1129 2012-10-28 Eli Zaretskii <eliz@gnu.org>
1130
1131 * w32proc.c (TIMER_TICKS_PER_SEC): New macro.
1132 (timer_loop, getitimer, setitimer): Use it instead of
1133 CLOCKS_PER_SEC, which is no longer pertinent, since we don't use
1134 'clock'.
1135 (w32_get_timer_time): Use 10*TIMER_TICKS_PER_SEC instead of a
1136 literal 10000.
1137
1138 2012-10-28 Jan Djärv <jan.h.d@swipnet.se>
1139
1140 * nsterm.m (NO_APPDEFINED_DATA): New define.
1141 (last_appdefined_event_data): New variable
1142 (last_appdefined_event): Remove.
1143 (ns_select): Initialize t from last_appdefined_event_data instead
1144 of [last_appdefined_event data1].
1145 (sendEvent:): Save [theEvent data1] to last_appdefined_event_data,
1146 remove last_appdefined_event (Bug#12698).
1147
1148 2012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
1149
1150 * frame.c (x_set_font): Catch internal error.
1151
1152 2012-10-27 Eli Zaretskii <eliz@gnu.org>
1153
1154 Avoid overflow in w32 implementation of interval timers.
1155 When possible, for ITIMER_PROF count only times the main thread
1156 actually executes.
1157 * w32proc.c <struct itimer_data>: 'expire' and 'reload' are now
1158 'volatile ULONGLONG' types. All the other data which was
1159 previously clock_t is now ULONGLONG. 'terminate' is 'volatile int'.
1160 (GetThreadTimes_Proc): New typedef.
1161 (w32_get_timer_time): New function, returns a suitable time value
1162 for the timer.
1163 (timer_loop): Enter critical section when accessing ULONGLONG
1164 values of the itimer_data struct, as these accesses are no longer
1165 atomic. Call 'w32_get_timer_time' instead of 'clock'.
1166 Remove unused variable.
1167 (init_timers): Initialize s_pfn_Get_Thread_Times.
1168 (start_timer_thread): Don't assign itimer->caller_thread here.
1169 (getitimer): Assign itimer->caller_thread here.
1170 (setitimer): Always call getitimer to get the value of ticks_now.
1171 (sys_spawnve): Avoid compiler warning about format mismatch.
1172
1173 2012-10-26 Eli Zaretskii <eliz@gnu.org>
1174
1175 * w32fns.c (w32_wnd_proc) <WM_MOUSEMOVE>: Don't enable tracking of
1176 mouse movement events if the menu bar is active. This avoids
1177 producing a busy "hour-glass" cursor by Windows if the mouse
1178 pointer is positioned over a tooltip shown for some menu item.
1179
1180 2012-10-25 Paul Eggert <eggert@cs.ucla.edu>
1181
1182 Don't assume process IDs fit in int.
1183 * emacs.c (shut_down_emacs) [!DOS_NT]:
1184 * sysdep.c (sys_suspend) [SIGTSTP && !MSDOS]:
1185 * term.c (dissociate_if_controlling_tty) [!DOS_NT]:
1186 Use pid_t, not int, to store process IDs, as 'int'
1187 is not wide enough on a few platforms (e.g., AIX and IRIX).
1188
1189 2012-10-23 Kenichi Handa <handa@gnu.org>
1190
1191 The following change is to make face-font-rescale-alist work
1192 correctly for non-ASCII fonts.
1193
1194 * font.c (font_open_entity): Don't handle Vface_font_rescale_alist.
1195 (font_open_for_lface): Handle Vface_font_rescale_alist.
1196
1197 2012-10-23 Chong Yidong <cyd@gnu.org>
1198
1199 * xfaces.c (Vfont_list_limit): Move unused variable to faces.el.
1200
1201 2012-10-21 Jan Djärv <jan.h.d@swipnet.se>
1202
1203 * nsfont.m (nsfont_open, ns_glyph_metrics): Force integer advancement
1204 for screen font.
1205 (nsfont_draw): Turn off LCD-smoothing (Bug#11484).
1206
1207 * xterm.c (x_focus_changed): Check if daemonp when sending focus in
1208 event (Bug#12681).
1209
1210 2012-10-21 Glenn Morris <rgm@gnu.org>
1211
1212 * lisp.mk (lisp): Add cp51932.el and eucjp-ms.el.
1213
1214 2012-10-20 Paul Eggert <eggert@cs.ucla.edu>
1215
1216 Port to OpenBSD 5.1.
1217 * frame.c (Fmouse_position, Fmouse_pixel_position):
1218 * xdisp.c (produce_stretch_glyph):
1219 Declare local vars only when they're needed.
1220 This is clearer and avoids a warning on OpenBSD about unused vars.
1221 * frame.h (FRAME_WINDOW_P): Always evaluate its argument.
1222 This is safer, and avoids OpenBSD warnings about unused vars.
1223 * keyboard.c (record_menu_key): Remove unnecessary decl.
1224 (poll_timer): Define only if POLL_FOR_INPUT is defined.
1225 * unexelf.c (ELFSIZE) [!ElfW]: Do not define if already defined,
1226 as our definition clashes with OpenBSD's.
1227 * xfaces.c (load_face_colors, check_lface_attrs)
1228 (get_lface_attributes_no_remap, get_lface_attributes)
1229 (lface_fully_specified_p, x_supports_face_attributes_p)
1230 (tty_supports_face_attributes_p, face_fontset, realize_face)
1231 (realize_x_face, realize_tty_face):
1232 Declare parameters to be Lisp_Object[LFACE_VECTOR_SIZE], not
1233 merely Lisp_Object *. This is more informative and avoids
1234 a warning on OpenBSD about accessing beyond an object's size.
1235
1236 2012-10-20 Chong Yidong <cyd@gnu.org>
1237
1238 * lread.c (Fload): Doc fix (Bug#12592).
1239
1240 2012-10-19 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
1241
1242 * font.c (Ffont_at): Fix previous change.
1243
1244 2012-10-19 Eli Zaretskii <eliz@gnu.org>
1245
1246 * puresize.h (BASE_PURESIZE): Bump the base value to 1700000.
1247 See http://lists.gnu.org/archive/html/emacs-devel/2012-10/msg00593.html
1248 for the reasons.
1249
1250 * alloc.c (NSTATICS): Decrease to 0x800.
1251
1252 2012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
1253
1254 * fns.c (Fnreverse): Include the problem element when signalling an
1255 error (bug#12677).
1256
1257 2012-10-18 Jan Djärv <jan.h.d@swipnet.se>
1258
1259 * nsterm.m (ns_select): Check writefds before call to
1260 FD_ISSET (Bug#12668).
1261
1262 2012-10-18 Daniel Colascione <dancol@dancol.org>
1263
1264 * alloc.c (NSTATICS): Increase from 0x650 to 0x1000
1265 (staticpro): If we run out of staticpro slots, die with an
1266 informative error instead of just calling emacs_abort.
1267
1268 2012-10-18 Martin Rudalics <rudalics@gmx.at>
1269
1270 Fix two flaws reported by Dmitry Antipov.
1271 * window.c (Ftemp_output_buffer_show): Remove.
1272 (Fwindow_vscroll, Fset_window_vscroll): Use decode_live_window.
1273 (syms_of_window): Remove defsubr for Stemp_output_buffer_show.
1274
1275 2012-10-17 Eli Zaretskii <eliz@gnu.org>
1276
1277 * makefile.w32-in ($(BLD)/w32.$(O)):
1278 ($(BLD)/vm-limit.$(O)):
1279 ($(BLD)/term.$(O)):
1280 ($(BLD)/unexw32.$(O)):
1281 ($(BLD)/fileio.$(O)):
1282 ($(BLD)/dispnew.$(O)): Update dependencies.
1283
1284 * w32term.h (w32_initialize_display_info, initialize_w32_display):
1285 Add prototypes.
1286
1287 * w32proc.c: Include ctype.h.
1288
1289 * w32.h (init_environment, check_windows_init_file)
1290 (syms_of_ntproc, syms_of_ntterm, dostounix_filename)
1291 (unixtodos_filename, init_winsock, srandom, random, sys_pipe)
1292 (set_process_dir, sys_spawnve, register_child, sys_sleep, getwd)
1293 (sys_link): Add prototypes.
1294
1295 * w32.c: Include w32select.h.
1296 (sys_access, e_malloc, sys_select): Add prototypes.
1297 (emacs_gnutls_pull): 'timeout' is now EMACS_TIME, not struct timeval.
1298
1299 * vm-limit.c [WINDOWSNT]: Include w32heap.h.
1300
1301 * unexw32.c: Include lisp.h and w32.h.
1302
1303 * term.c [WINDOWSNT]: Include w32term.h.
1304
1305 * process.c [WINDOWSNT]: Add prototype of sys_select.
1306
1307 * fileio.c [WINDOWSNT]: Include w32.h.
1308
1309 * dispnew.c [WINDOWSNT]: Include w32.h.
1310
1311 * cygw32.c (Fcygwin_convert_path_to_windows)
1312 (Fcygwin_convert_path_from_windows): Use EQ to compare 2
1313 Lisp_Object values. (Bug#12661)
1314
1315 * w32fns.c (w32_msg_pump): Use XIL instead of casting an integer
1316 to Lisp_Object. (Bug#12661)
1317
1318 2012-10-17 Kenichi Handa <handa@gnu.org>
1319
1320 * xdisp.c (reseat_1): Make the information stored in it->cmp_it
1321 invalidate.
1322
1323 2012-10-17 Dmitry Antipov <dmantipov@yandex.ru>
1324
1325 * buffer.c (Fkill_buffer): When unchaining the marker,
1326 reset its buffer pointer to NULL (Bug#12652).
1327
1328 2012-10-17 Dmitry Antipov <dmantipov@yandex.ru>
1329
1330 Do not verify indirection counters of killed buffers (Bug#12579).
1331 * buffer.h (BUFFER_CHECK_INDIRECTION): New macro.
1332 * buffer.c (compact_buffer, set_buffer_internal_1): Use it.
1333
1334 2012-10-16 Dmitry Antipov <dmantipov@yandex.ru>
1335
1336 * alloc.c (Fmake_byte_code): Fix typo in comment.
1337 * print.c (print_interval): Define as static to match prototype.
1338 * indent.c (disptab_matches_widthtab, recompute_width_table):
1339 Convert to eassert.
1340
1341 2012-10-16 Dmitry Antipov <dmantipov@yandex.ru>
1342
1343 * editfns.c (get_system_name): Remove.
1344 * lisp.h (get_system_name): Remove prototype.
1345 * xrdb.c (getenv, getpwuid, getpwnam): Remove prototypes.
1346 (get_environ_db): Use Vsystem_name. Avoid call to strlen.
1347
1348 2012-10-15 Daniel Colascione <dancol@dancol.org>
1349
1350 * dbusbind.c: Add comment explaining reason for previous change.
1351
1352 2012-10-15 Martin Rudalics <rudalics@gmx.at>
1353
1354 * window.c (Fwindow_end): Rewrite check whether cached position
1355 can be used (Bug#12600).
1356 (resize_frame_windows, grow_mini_window, shrink_mini_window):
1357 Set windows_or_buffers_changed.
1358
1359 2012-10-15 Daniel Colascione <dancol@dancol.org>
1360
1361 * dbusbind.c: Fix cygw32 build break when compiling with dbus
1362 enabled by undefining the symbol "interface", which the platform
1363 headers define to something incompatible.
1364
1365 2012-10-14 Daniel Colascione <dancol@dancol.org>
1366
1367 * image.c (init_tiff_functions, init_imagemagick_functions)
1368 (init_svg_functions): Fix cygw32 build break by using these
1369 functions only when WINDOWSNT _and_ HAVE_NTGUI.
1370
1371 2012-10-14 Jan Djärv <jan.h.d@swipnet.se>
1372
1373 * nsterm.m (ns_select): Count fd:s in writefs also (Bug#12422).
1374
1375 2012-10-13 Jan Djärv <jan.h.d@swipnet.se>
1376
1377 * gtkutil.c (xg_set_widget_bg): Divide by 65535 (Bug#12612).
1378
1379 2012-10-13 HANATAKA, Shinya <bogytech@gmail.com> (tiny change)
1380
1381 * coding.c (detect_coding): Set coding->id before calling
1382 this->detector.
1383
1384 2012-10-13 Andreas Schwab <schwab@linux-m68k.org>
1385
1386 * fileio.c: Formatting fixes.
1387
1388 2012-10-13 Paul Eggert <eggert@cs.ucla.edu>
1389
1390 Fix some stat-related races.
1391 * fileio.c (Fwrite_region): Avoid race condition if a file is
1392 removed or renamed by some other process immediately after Emacs
1393 writes it but before Emacs stats it. Do not assume that stat (or
1394 fstat) succeeds.
1395 * image.c (slurp_file): Resolve the file name with fopen + fstat
1396 rather than stat + fopen.
1397 (pbm_read_file) [0]: Remove unused code with stat race.
1398 * process.c (allocate_pty) [HAVE_PTYS && !PTY_ITERATION && !PTY_OPEN]:
1399 Remove ineffective code with stat race.
1400
1401 2012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
1402
1403 * doc.c (get_doc_string): Don't signal an error if the file is missing.
1404
1405 2012-10-12 Jan Djärv <jan.h.d@swipnet.se>
1406
1407 * nsterm.m (hold_event_q): New static variable.
1408 (EV_TRAILER, sendScrollEventAtLoc:fromEvent:): Call hold_event if
1409 ! q_event_ptr.
1410 (hold_event): New function.
1411 (ns_read_socket): If hold_event_q have events, store them and
1412 return (Bug#12384).
1413 (setPosition:portion:whole:): Send SIGIO to ourselves if apploopnr
1414 is zero (Bug#12384).
1415
1416 2012-10-12 Juanma Barranquero <lekktu@gmail.com>
1417
1418 * makefile.w32-in ($(BLD)/w32select.$(O)): Update dependencies.
1419
1420 2012-10-12 Eli Zaretskii <eliz@gnu.org>
1421
1422 * makefile.w32-in ($(BLD)/fileio.$(O)): Add sys/file.h.
1423
1424 * fileio.c (check_existing): New function.
1425 (make_temp_name, Ffile_exists_p, Ffile_writable_p): Call it
1426 instead of calling 'stat', when what's needed is to check whether
1427 a file exists. This avoids expensive system calls on MS-Windows.
1428 (Bug#12587)
1429
1430 * w32.c (init_environment): Call 'check_existing' instead of 'stat'.
1431
1432 * lread.c (openp) [WINDOWSNT]: Call 'access' instead of 'stat' to
1433 determine whether a file exists and is not a directory.
1434
1435 * lisp.h (check_existing): Add prototype.
1436
1437 2012-10-12 Jan Djärv <jan.h.d@swipnet.se>
1438
1439 * nsfont.m (nsfont_open): Remove font cache, it is not GC correct.
1440
1441 2012-10-12 Glenn Morris <rgm@gnu.org>
1442
1443 * buffer.c (Fset_buffer): Doc fix. (Bug#12624)
1444
1445 2012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
1446
1447 * buffer.c (Fkill_buffer): Null out the overlay list(s) as well.
1448
1449 * eval.c (Fautoload): Remember previous autoload status in load-history.
1450
1451 2012-10-11 Paul Eggert <eggert@cs.ucla.edu>
1452
1453 lread.c, macros.c, marker.c, menu.c, minibuf.c: Use bool for booleans.
1454 * lread.c (load_each_byte, new_backquote_flag, readchar)
1455 (read_filtered_event, lisp_file_lexically_bound_p)
1456 (safe_to_load_version, Fload, complete_filename_p, openp)
1457 (build_load_history, readevalloop, read_escape, read1)
1458 (string_to_number, read_vector, read_list):
1459 * macros.c (Fstart_kbd_macro):
1460 * marker.c (CONSIDER):
1461 * menu.c (parse_single_submenu, digest_single_submenu)
1462 (find_and_return_menu_selection, Fx_popup_menu):
1463 * minibuf.c (read_minibuf_noninteractive, read_minibuf)
1464 (Ftry_completion):
1465 * nsmenu.m (ns_update_menubar, runMenuAt:forFrame:keymaps:):
1466 (ns_menu_show):
1467 * xmenu.c (set_frame_menubar, create_and_show_popup_menu)
1468 (xmenu_show, xdialog_show):
1469 Use bool for booleans.
1470 * lread.c (safe_to_load_version): Rename from safe_to_load_p,
1471 as it's not a predicate. All uses changed. Omit unnecessary
1472 buffer termination.
1473
1474 2012-10-11 Dmitry Antipov <dmantipov@yandex.ru>
1475
1476 * editfns.c (save_excursion_save): Use nil if mark points to nowhere.
1477 (save_excursion_restore): Do not restore mark if it was not saved.
1478
1479 2012-10-11 Paul Eggert <eggert@cs.ucla.edu>
1480
1481 * marker.c (cached_modiff): EMACS_INT, not int.
1482
1483 * w32select.c (waiting_for_input): Declare by including "keyboard.h"
1484 instead of having a wrong decl.
1485 * nsmenu.m (waiting_for_input): Remove wrong decl.
1486
1487 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
1488
1489 keyboard.c, keymap.c: Use bool for booleans.
1490 * dispnew.c (sit_for): Distinguish between 3-way display_option
1491 and boolean do_display.
1492 * keyboard.c (single_kboard, this_command_key_count_reset)
1493 (waiting_for_input, echoing, immediate_quit, input_pending)
1494 (interrupt_input, interrupts_deferred, pop_kboard)
1495 (temporarily_switch_to_single_kboard, ignore_mouse_drag_p)
1496 (command_loop_1, adjust_point_for_property)
1497 (safe_run_hooks_error, input_polling_used, read_char):
1498 (help_char_p, readable_events, kbd_buffer_events_waiting)
1499 (kbd_buffer_get_event, timer_check_2, make_lispy_event)
1500 (lucid_event_type_list_p, get_input_pending):
1501 (gobble_input, menu_separator_name_p, menu_bar_item)
1502 (parse_menu_item, parse_tool_bar_item, read_char_x_menu_prompt)
1503 (read_char_minibuf_menu_prompt, access_keymap_keyremap)
1504 (keyremap_step, test_undefined, read_key_sequence)
1505 (detect_input_pending, detect_input_pending_ignore_squeezables)
1506 (detect_input_pending_run_timers, requeued_events_pending_p)
1507 (quit_throw_to_read_char, Fset_input_interrupt_mode):
1508 * keymap.c (get_keymap, keymap_parent, keymap_memberp)
1509 (access_keymap_1, access_keymap, map_keymap, get_keyelt)
1510 (Fdefine_key, Flookup_key, struct accessible_keymaps_data)
1511 (accessible_keymaps_1, Fkey_description, push_key_description):
1512 (shadow_lookup, struct where_is_internal_data)
1513 (where_is_internal, Fwhere_is_internal, where_is_internal_1)
1514 (Fdescribe_buffer_bindings, describe_map_tree, struct describe_map_elt)
1515 (describe_map, describe_vector):
1516 * menu.c (single_menu_item):
1517 * nsmenu.m (ns_update_menubar):
1518 * process.c (wait_reading_process_output):
1519 * search.c (scan_buffer, scan_newline):
1520 Use bool for boolean.
1521 * keyboard.c (timers_run, swallow_events)
1522 (detect_input_pending_run_timers):
1523 * process.c (wait_reading_process_output):
1524 Use unsigned for counter where wraparound-on-overflow is desired,
1525 since unsigned is guaranteed to have that behavior and signed is not.
1526 (read_char): Use ptrdiff_t for string length.
1527 (get_input_pending): Remove first argument, since it was always
1528 the same pointer-to-int (now pointer-to-boolean) &input_pending,
1529 and behave as if it had that value. Return new value of
1530 input_pending. All callers changed.
1531 * keyboard.h (struct kboard): Use unsigned : 1 for boolean member
1532 immediate_echo. Use ptrdiff_t for echo_after_prompt, since it's
1533 a string length.
1534 * keymap.c (push_key_description): Omit last arg, which was always 1.
1535 All callers changed.
1536
1537 * regex.c (immediate_quit) [emacs]: Remove duplicate decl.
1538
1539 2012-10-10 Juanma Barranquero <lekktu@gmail.com>
1540
1541 * makefile.w32-in ($(BLD)/dispnew.$(O), $(BLD)/indent.$(O))
1542 ($(BLD)/term.$(O)): Update dependencies.
1543
1544 2012-10-10 Dmitry Antipov <dmantipov@yandex.ru>
1545
1546 * alloc.c (mark_object): Use meaningful PVEC_NORMAL_VECTOR.
1547 * lisp.h (enum pvec_type): Adjust comments and omit explicit
1548 initializer for PVEC_NORMAL_VECTOR.
1549
1550 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
1551
1552 Clean out old termopts cruft.
1553 * termopts.h (flow_control, meta_key): Remove unused decls.
1554 * dispnew.c, indent.c, nsterm.m, term.c, xsettings.c, xsmfns.c:
1555 Don't include termopts.h.
1556
1557 2012-10-10 Dmitry Antipov <dmantipov@yandex.ru>
1558
1559 * alloc.c (gc_sweep): Use pointer-to-a-pointer loop for buffers.
1560
1561 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
1562
1563 * commands.h (immediate_quit): Remove duplicate decl.
1564
1565 2012-10-09 Jan Djärv <jan.h.d@swipnet.se>
1566
1567 * nsfont.m (Vfonts_in_cache): Remove, not needed as font.c handles
1568 caching.
1569 (nsfont_open): Remove setting of Vfonts_in_cache.
1570 (syms_of_nsfont): Remove initialization of Vfonts_in_cache.
1571
1572 2012-10-09 Eli Zaretskii <eliz@gnu.org>
1573
1574 * w32fns.c (w32_last_error): Change the return value to DWORD, to
1575 match what GetLastError returns. Explain why the function is
1576 needed.
1577
1578 * frame.c (delete_frame): Rename local variable 'tooltip_frame' to
1579 'is_tooltip_frame', to avoid confusion with its global namesake.
1580
1581 2012-10-08 Daniel Colascione <dancol@dancol.org>
1582
1583 * xdisp.c (start_hourglass): Call w32_note_current_window when
1584 HAVE_NTGUI, not just WINDOWSNT, resolving a problem in the cygw32
1585 build that caused Emacs to display the hourglass cursor forever.
1586
1587 * w32fns.c (Fx_display_color_cells): Instead of using NCOLORS,
1588 which is broken under remote desktop, calculate the number of
1589 colors available for a display based on the display's number of
1590 planes and number of bits per pixel per plane. (bug#10397).
1591
1592 2012-10-08 Jan Djärv <jan.h.d@swipnet.se>
1593
1594 * nsfont.m (Vfonts_in_cache): New variable.
1595 (nsfont_open): Use unsignedLongLongValue for cache in case wide ints
1596 are used. Add cached fonts to Vfonts_in_cache.
1597 (syms_of_nsfont): Initialize and staticpro Vfonts_in_cache.
1598
1599 2012-10-08 Juanma Barranquero <lekktu@gmail.com>
1600
1601 * makefile.w32-in (LOCAL_FLAGS): Don't define HAVE_NTGUI, it's now
1602 in nt/config.nt.
1603 (FONT_H): Define after FRAME_H.
1604 ($(BLD)/emacs.$(O), $(BLD)/process.$(O), $(BLD)/w32heap.$(O)):
1605 Update dependencies.
1606
1607 * w32term.c: Remove leftover declaration of keyboard_codepage.
1608
1609 2012-10-08 Eli Zaretskii <eliz@gnu.org>
1610
1611 * makefile.w32-in (FONT_H): Add $(FRAME_H).
1612 (W32TERM_H): Add $(ATIMER_H) and $(FRAME_H).
1613 ($(BLD)/emacs.$(O), $(BLD)/w32console.$(O)): Update dependencies.
1614 (GLOBAL_SOURCES): Add cygw32.c.
1615 ($(BLD)/unexw32.$(O)):
1616 ($(BLD)/w32.$(O)):
1617 ($(BLD)/w32console.$(O)):
1618 ($(BLD)/w32fns.$(O)):
1619 ($(BLD)/w32heap.$(O)):
1620 ($(BLD)/w32menu.$(O)):
1621 ($(BLD)/w32proc.$(O)): Add w32common.h.
1622
1623 * w32fns.c (w32_color_map_lookup, x_to_w32_color): Argument is now
1624 'const char *'.
1625 (x_to_w32_color): Don't modify the argument, modify a copy instead.
1626
1627 2012-10-08 Daniel Colascione <dancol@dancol.org>
1628
1629 * w32term.h (WM_EMACS_BRINGTOTOP, WM_EMACS_INPUT_READY)
1630 (WM_EMACS_END): Change WM_EMACS_BRINGTOTOP from 22 to 21 to close
1631 accidental message numbering hole. Change other messages to
1632 match.
1633
1634 * w32select.h (HAVE_W32SELECT): Remove.
1635
1636 * w32select.c, w32proc.c, w32menu.c, w32console.c, w32.c: Include
1637 w32common.h instead of w32heap.h.
1638
1639 * w32heap.h (ROUND_UP, ROUND_DOWN, get_page_size)
1640 (get_allocation_unit, get_processor_type, get_w32_major_version)
1641 (get_w32_minor_version, sysinfo_cache, osinfo_cache)
1642 (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
1643 (OS_NT, os_subtype, cache_system_info): Move declarations to
1644 w32common.
1645
1646 * w32heap.c: Include w32common.h.
1647 (sysinfo_cache, syspage_mask, osinfo_cache, w32_major_version)
1648 (w32_minor_version, w32_build_number, w32_subtype):
1649 Remove duplicate definitions.
1650
1651 * w32fns.c: Include w32common.h; include w32heap.h only in
1652 WINDOWSNT.
1653
1654 (Fx_file_dialog): Clarify comment on GetOpenFileName structure.
1655 Use `report_file_error' instead of `error' in order to better
1656 inform users of what went wrong. Increase NTGUI_UNICODE file
1657 dialog box file name length to 32k, the maximum allowed by the NT
1658 kernel.
1659
1660 * w32common.h: New file.
1661 (ROUND_UP, ROUND_DOWN, get_page_size)
1662 (get_allocation_unit, get_processor_type, get_w32_major_version)
1663 (get_w32_minor_version, sysinfo_cache, osinfo_cache)
1664 (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
1665 (OS_NT, os_subtype, cache_system_info): Move here.
1666
1667 * unexw32.c, unexcw.c: Include w32common.h.
1668
1669 * emacs.c (main): Use (defined (WINDOWSNT) || defined
1670 HAVE_NTGUI) instead of removed HAVE_W32SELECT to decide whether
1671 to call syms_of_w32select.
1672
1673 * cygw32.h: Remove obsolete EXFUN declarations.
1674
1675 * cygw32.c (Qutf_16_le): Rename to Qutf_16le.
1676
1677 * Makefile.in (SOME_MACHINE_OBJECTS): Reverse accidental removal
1678 of w32inevt.o from SOME_MACHINE_OBJECTS.
1679
1680 2012-10-08 Daniel Colascione <dancol@dancol.org>
1681
1682 * image.c: Permanent fix for JPEG compilation issue --- limit
1683 jpeglib `boolean' redefinition to Cygwin builds.
1684
1685 2012-10-08 Eli Zaretskii <eliz@gnu.org>
1686
1687 * image.c (CHECK_LIB_AVAILABLE): Remove, no longer used.
1688
1689 * emacs.c (DAEMON_MUST_EXEC) [HAVE_NTGUI]: Define this only on
1690 Cygwin.
1691
1692 2012-10-08 Daniel Colascione <dancol@dancol.org>
1693
1694 * xfaces.c, xdisp.c, window.c, w32xfns.c, w32term.h, w32term.c,
1695 w32select.h w32select.c, w32proc.c, w32menu.c, w32inevt.c,
1696 w32help.c, w32font.c, w32font.c, w32fns.c, w32console.c, w32.h,
1697 w32.c, unexw32.c, termhooks.h, process.c, menu.c, keyboard.h,
1698 keyboard.c, image.c, frame.h, frame.c, fontset.c, font.h, font.c,
1699 emacs.c, dispextern.h, cygw32.h, cygw32.c, conf_post.h,
1700 Makefile.in: use HAVE_NTGUI for W32 GUI and WINDOWSNT for the
1701 operating system. defined(HAVE_NTGUI) && !defined(WINDOWSNT) is
1702 now a supported configuration.
1703
1704 * Makefile.in: consolidate image variables into LIBIMAGE; add
1705 W32_OBJ and W32_LIBS. Compile new files.
1706
1707 * conf_post.h:
1708 (_DebPrint) declare tracing facility for W32 debugging. We need
1709 to unify tracing later.
1710
1711 (NTGUI_UNICODE) Define when compiling for Cygwin to allow the
1712 unconditional use of W32 Unicode functions. Cygwin runs only on
1713 100% Unicode operating systems.
1714
1715 * cygw32.c: New file. Define Cygwin-specific facilities.
1716 (Fcygwin_convert_path_to_windows)
1717 (Fcygwin_convert_path_from_windows): New user functions for
1718 accessing Cygwin path-munging routines.
1719
1720 * cygw32.h: New file.
1721 (WCSDATA, to_unicode, from_unicode): Define facilities for storing
1722 UTF-16LE strings temporarily inside non-Lisp-visible string
1723 objects.
1724
1725 (w32_strerror): Just what it says on the tin.
1726
1727 * emacs.c: Make the NS fork-then-exec code for daemon-launching
1728 also run for Cygwin; both systems have the same problem with using
1729 GUI facilities in a forked child. Also call syms_of_cygw32,
1730 syms_of_w32select in correct places.
1731
1732 (DAEMON_MUST_EXEC): new macro defined to signal that a platform
1733 needs fork-then-exec for daemon launching.
1734
1735 * font.h: Include frame.h.
1736
1737 * image.c: Use the image library cache machinery only when we're
1738 compiling for native WINDOWSNT; Cygwin can use shared libraries
1739 like any other Unixlike system.
1740
1741 * keyboard.c: Clarify a comment regarding the input loop.
1742
1743 * menu.c: When NTGUI_UNICODE is defined, use Unicode menu
1744 functions directly instead of trying to detect at runtime that our
1745 host operating system supports them. We make this change for two
1746 reasons: Cygwin lacks support for the multibyte character
1747 conversion functions used by the legacy menu code, and Cygwin
1748 never needs to rely on non-Unicode APIs.
1749
1750 * unexw32.c (hinst): Declare extern.
1751
1752 * w32.c: Change header order;
1753 (w32_strerror): Move to w32fns.c because we need it for
1754 non-WINDOWSNT builds.
1755
1756 * w32.h: Add #error macro to make sure we don't include w32.h for
1757 Cygwin builds. Remove w32select declarations.
1758
1759 * w32console.c (w32_sys_ring_bell, Fset_message_beep): Move to
1760 w32fns.c. w32console.c is WINDOWSNT-only.
1761
1762 * w32fns.c: Include cygw32.h or w32.h depending on CYGWIN; more
1763 NTGUI_UNICODE tweaks. (See above.) Change _snprintf to the more
1764 POSIXy alternative.
1765 (faked_key, sysinfo_cache, osinfo_cahce, syspage_mask)
1766 (w32_major_version, w32_minor_version, w32_build_number)
1767 (os_subtype, sound_type): Define here
1768 (w32_defined_color): Make color parameter const for consistency
1769 with other _defined_color functions.
1770 (w32_createwindow): Unconditionally call w32_init_class instead of
1771 doing so only when hprevinst is non-NULL. Plumbing hprevinst
1772 through the code is complex and unnecessary because class
1773 registration is practically free.
1774 (w32_name_of_message): New EMACSDEBUG-only function.
1775 (Fset_message_beep): Move here
1776 (Fx_open_connection): Require that the display name for Windows be
1777 "w32" for consistency, emacsclient disambiguation, and maybe, one
1778 day, multi-window-system support.
1779 (file_dialog_callback): NTGUI_UNICODE changes; encode and decode
1780 Cygwin files for W32 GUI facilities, since these clearly don't
1781 expect Cygwin names.
1782 (_DebPrint): Define.
1783 (w32_strerror, w32_console_toggle_lock_key, w32_kbd_mods_to_emacs)
1784 (w32_kbd_patch_key, w32_sys_ring_bell): Move here.
1785 (Ssystem_move_file_to_trash): Define only for native WINDOWSNT.
1786 (w32_last_error): Remove.
1787
1788 * w32font.c: Define _strlwr to strlwr for non-WINDOWSNT builds.
1789
1790 * w32heap.c (syspage_mask): Declare here.
1791 (cache_system_info): Remove.
1792
1793 * w32inevt.c (faked_key): Define globally, not statically.
1794 (w32_kbd_mods_to_emacs, w32_kbd_patch_key, faked_key)
1795 (w32_console_toggle_lock_key): Move to w32fns.c.
1796
1797 * w32menu.c: Include setjmp.h. NTGUI_UNICODE changes throughout.
1798
1799 * w32proc.c (_DebPrint): Move to w32fns.c.
1800 * w32select.c: Include string.h, stdio.h for Cygwin.
1801 * w32select.h: New File.
1802
1803 * w32term.c: Include io.h for non-CYGWIN builds; needed for
1804 get_osfhandle.
1805 (w32_message_fd): New variable. Under Cygwin, holds the file
1806 descriptor the system used to tell us about pending thread
1807 messages.
1808
1809 (w32_init_term): Remove incorrect calls to fcntl and init_sigio
1810 that prevented compilation under non-WINDOWSNT systems.
1811
1812 (w32_initialize): Open /dev/windows and assign it to
1813 w32_message_fd. Provide w32 feature.
1814
1815 * w32term.h: Include frame.h, atimer.h. Declare various frame functions.
1816 (WM_EMACS_INPUT_READY): add.
1817 (prepend_msg, w32_message_fd): Declare globally.
1818
1819 * w32xfns.c:
1820 (keyboard_handle): Use only when WINDOWSNT.
1821 (notify_msg_ready): New function. Posts a message to the main
1822 thread's message queue under CYGWIN, which wakes up the main
1823 thread from select(2) by making the /dev/windows file descriptor
1824 ready. Under WINDOWSNT, it sets an event the same way the old
1825 code did.
1826
1827 (post, prepend_msg): Actually call notify_msg_ready instead of
1828 setting the input event directly.
1829
1830 2012-10-07 Eli Zaretskii <eliz@gnu.org>
1831
1832 * ralloc.c (relinquish): If a heap is ready to be relinquished,
1833 but it still has blocs in it, don't return it to the system,
1834 instead of aborting. (Bug#12402)
1835
1836 2012-10-07 Jan Djärv <jan.h.d@swipnet.se>
1837
1838 * nsterm.m (ns_dumpglyphs_image): Only draw slice of image (Bug#12506).
1839
1840 * nsterm.m (ns_update_auto_hide_menu_bar): Remove defintion of
1841 MAC_OS_X_VERSION_10_6.
1842 (syms_of_nsterm): Remove comment about Panther and above for
1843 ns-antialias-text.
1844 * nsterm.h (MAC_OS_X_VERSION_10_3, onTiger): Remove.
1845 (EmacsApp): Remove check for >= MAC_OS_X_VERSION_10_4.
1846 (struct nsfont_info): Remove check for >= MAC_OS_X_VERSION_10_3.
1847
1848 * nsselect.m (ns_string_from_pasteboard): Remove check for >=
1849 MAC_OS_X_VERSION_10_4.
1850
1851 * nsmenu.m (fillWithWidgetValue:): Remove code for <
1852 MAC_OS_X_VERSION_10_2.
1853
1854 * nsimage.m (setPixmapData, getPixelAtX, setAlphaAtX): Remove onTiger.
1855
1856 * nsfns.m (Fns_list_services): Remove comment and check for OSX < 10.4.
1857 (ns_do_applescript): Remove check for >= MAC_OS_X_VERSION_10_4.
1858
1859 * nsterm.m (ns_in_resize): Remove (Bug#12479).
1860 (ns_resize_handle_rect, mouseDown, mouseUp, mouseDragged): Remove.
1861 (ns_clear_frame, sendEvent, windowDidResize, drawRect:):
1862 Remove ns_in_resize check.
1863 (ns_clear_frame_area): Remove resize handle code.
1864
1865 * nsfns.m (ns_in_resize): Remove.
1866 (x_set_icon_name, ns_set_name, ns_set_name_as_filename):
1867 Remove ns_in_resize check.
1868
1869 2012-10-07 Paul Eggert <eggert@cs.ucla.edu>
1870
1871 Improve sys_siglist detection.
1872 * sysdep.c (sys_siglist, init_signals): Use _sys_siglist if it's
1873 defined as a macro, as is done in Solaris.
1874 (sys_siglist_entries): New macro.
1875 (save_strsignal): Use it.
1876 * syssignal.h (safe_strsignal): Now ATTRIBUTE_CONST, to pacify
1877 GCC 4.7.2 on Fedora 17 with the fixed sys_siglist detection.
1878
1879 2012-10-06 Jan Djärv <jan.h.d@swipnet.se>
1880
1881 * nsfns.m (Fx_create_frame): Call x_default_parameter with
1882 fullscreen/Fullscreen.
1883
1884 * nsterm.h (EmacsView): Rename tbar_height to tibar_height.
1885 tobar_height is new.
1886
1887 * nsterm.m (x_make_frame_visible): Check for fullscreen.
1888 (ns_fullscreen_hook): Activate old style fullscreen with a timer.
1889 (ns_term_init): Set activateIgnoringOtherApps if old style fullscreen.
1890 (windowDidResize:): Check for correct window if old style fullscreen.
1891 Capitalize word in comment. Remove incorrect comment.
1892 (initFrameFromEmacs:): tbar_height renamed tibar_height.
1893 (windowDidEnterFullScreen:): Toggle toolbar for fullscreen to fix
1894 error in drawing background.
1895 (toggleFullScreen:): Remove comment. Rearrange calls.
1896 Set toolbar values to zero, save old height in tobar_height.
1897 Restore tool bar height when leaving fullscreen.
1898 (canBecomeMainWindow): New function.
1899
1900 2012-10-06 Paul Eggert <eggert@cs.ucla.edu>
1901
1902 * keyboard.c (read_char): Remove unnecessary 'volatile's and label.
1903
1904 2012-10-05 Eli Zaretskii <eliz@gnu.org>
1905
1906 * w32proc.c (stop_timer_thread): Fix declaration of 'err'.
1907
1908 * w32.c (utime): Open the file with FILE_FLAG_BACKUP_SEMANTICS, so
1909 that time stamps of directories could also be changed.
1910 Don't request the too broad GENERIC_WRITE, only the more restrictive
1911 FILE_WRITE_ATTRIBUTES access rights.
1912
1913 * fileio.c (Fset_file_times): Special-case ignoring errors for
1914 directories only on MSDOS, not on MS-Windows.
1915
1916 2012-10-05 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
1917
1918 * minibuf.c (Fcompleting_read): Doc fix. (Bug#12555)
1919
1920 2012-10-04 Eli Zaretskii <eliz@gnu.org>
1921
1922 * w32.c (utime): Test for INVALID_HANDLE_VALUE, not for NULL, to
1923 see whether CreateFile failed.
1924
1925 2012-10-04 Paul Eggert <eggert@cs.ucla.edu>
1926
1927 * profiler.c (handle_profiler_signal): Inhibit pending signals too,
1928 to avoid similar races.
1929 * keyboard.c (pending_signals): Now bool, not int.
1930
1931 Port timers to OpenBSD, plus check for timer failures.
1932 OpenBSD problem reported by Han Boetes.
1933 * profiler.c (setup_cpu_timer): Check for failure of timer_settime
1934 and/or setitimer.
1935 (Fprofiler_cpu_stop): Don't assume HAVE_SETITIMER.
1936 * syssignal.h (HAVE_ITIMERSPEC): New macro. This is for platforms
1937 like OpenBSD, which has timer_settime but does not declare it.
1938 OpenBSD does not define SIGEV_SIGNAL, so use that when deciding
1939 whether to use itimerspec-related primitives. All uses of
1940 HAVE_TIMER_SETTIME replaced with HAVE_ITIMERSPEC.
1941
1942 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
1943
1944 * profiler.c (handle_profiler_signal): Fix a malloc race
1945 that caused Emacs to hang on Fedora 17 when profiling Lisp.
1946
1947 2012-10-02 Jan Djärv <jan.h.d@swipnet.se>
1948
1949 * nsterm.m (windowDidEnterFullScreen): Remove fprintf.
1950
1951 2012-10-02 Eli Zaretskii <eliz@gnu.org>
1952
1953 * w32proc.c (sys_wait): Declare 'signame' 'const char *', to be
1954 consistent with the change in return value of 'safe_strsignal'.
1955
1956 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
1957
1958 Prefer plain 'static' to 'static inline' (Bug#12541).
1959 * bidi.c (bidi_get_type, bidi_check_type, bidi_get_category)
1960 (bidi_set_sor_type, bidi_push_embedding_level)
1961 (bidi_pop_embedding_level, bidi_remember_char, bidi_copy_it)
1962 (bidi_cache_reset, bidi_cache_shrink, bidi_cache_fetch_state)
1963 (bidi_cache_search, bidi_cache_ensure_space)
1964 (bidi_cache_iterator_state, bidi_cache_find)
1965 (bidi_peek_at_next_level, bidi_set_paragraph_end)
1966 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
1967 (bidi_explicit_dir_char, bidi_resolve_neutral_1):
1968 Now 'static', not 'static inline'.
1969
1970 Count overruns when profiling; change units to ns.
1971 * profiler.c (handle_profiler_signal): Count sampling intervals, not ms.
1972 Give extra weight to samples after overruns, to attempt to count
1973 the time more accurately.
1974 (setup_cpu_timer): Change sampling interval units from ms to ns, since
1975 the underlying primitives nominally do ns.
1976 (Fprofiler_cpu_start): Document the change. Mention that
1977 the sampling intervals are only approximate.
1978
1979 2012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
1980
1981 * frame.c (Fmake_terminal_frame): Prefer safer CONSP over !NILP.
1982
1983 * coding.h (ENCODE_FILE, DECODE_FILE, DECODE_SYSTEM): Remove special
1984 case for the special 0 coding-system.
1985
1986 * buffer.c (Fset_buffer_multibyte): Signal an error instead of widening.
1987 (Fmake_overlay): Remove redundant tests.
1988 (fix_start_end_in_overlays): Remove redundant recentering.
1989
1990 2012-10-02 Juanma Barranquero <lekktu@gmail.com>
1991
1992 * makefile.w32-in ($(BLD)/alloc.$(O), $(BLD)/gmalloc.$(O)):
1993 Update dependencies.
1994
1995 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
1996
1997 Fix a malloc race condition involving strsignal.
1998 A signal can arrive in the middle of a malloc, and Emacs's signal
1999 handler can invoke strsignal, which can invoke malloc, which is
2000 not portable. This race condition bug makes Emacs hang on GNU/Linux.
2001 Fix it by altering the signal handler so that it does not invoke
2002 strsignal.
2003 * emacs.c (shut_down_emacs): Use safe_strsignal, not strsignal.
2004 * process.c (status_message): Use const pointer, in case strsignal
2005 is #defined to safe_strsignal.
2006 * sysdep.c (sys_siglist, init_signals): Always define and
2007 initialize a substitute sys_siglist if the system does not define
2008 one, even if HAVE_STRSIGNAL.
2009 (safe_strsignal): Rename from strsignal. Always define,
2010 using sys_siglist. Return a const pointer.
2011 * syssignal.h (safe_strsignal): New decl.
2012 (strsignal) [!HAVE_STRSIGNAL]: Define in terms of safe_strsignal.
2013
2014 2012-10-01 Eli Zaretskii <eliz@gnu.org>
2015
2016 * w32proc.c (timer_loop): Fix code that waits for timer
2017 expiration, to avoid high CPU usage.
2018
2019 2012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
2020
2021 * fns.c (check_hash_table, get_key_arg, maybe_resize_hash_table)
2022 (sweep_weak_table): Remove redundant prototypes.
2023
2024 2012-10-01 Fabrice Popineau <fabrice.popineau@gmail.com>
2025
2026 * emacs.c: Move the inclusion of TERM_HEADER after including
2027 windows.h on WINDOWSNT. This avoids compilation problems with
2028 MSVC.
2029
2030 2012-10-01 Eli Zaretskii <eliz@gnu.org>
2031
2032 * unexw32.c (OFFSET_TO_RVA, RVA_TO_OFFSET)
2033 (RVA_TO_SECTION_OFFSET): Encode all macro arguments in parentheses.
2034 (RVA_TO_PTR): Cast the result of RVA_TO_OFFSET to 'unsigned char *',
2035 as the previous version used 'void *'.
2036
2037 * ralloc.c (ROUNDUP): Fix last change.
2038 (MEM_ROUNDUP): Don't cast MEM_ALIGN, it is already of type
2039 'size_t'.
2040
2041 * w32proc.c <disable_itimers>: New static flag.
2042 (init_timers): Initialize it to zero, after creating the critical
2043 sections used by the timer threads.
2044 (term_timers): Set to 1 before deleting the critical sections.
2045 (getitimer, setitimer): If disable_itimers is non-zero, return an
2046 error indication without doing anything. Reported by Fabrice
2047 Popineau <fabrice.popineau@supelec.fr> as part of bug#12544.
2048 (alarm) [HAVE_SETITIMER]: Be more conformant to the expected
2049 return results.
2050 [!HAVE_SETITIMER]: Behave as the previous version that didn't
2051 support timers.
2052
2053 * emacs.c (shut_down_emacs) [WINDOWSNT]: Move the call to
2054 term_ntproc after all the other bookkeeping, to get timers working
2055 as long as possible.
2056
2057 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
2058
2059 * xdisp.c (syms_of_xdisp): Default message-log-max to 1000, not 100.
2060 Suggested by Juri Linkov in
2061 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00821.html>.
2062
2063 Prefer plain 'static' to 'static inline' (Bug#12541).
2064 With static functions, modern compilers inline pretty well by
2065 themselves; advice from programmers often hurts as much as it helps.
2066 On my host (x86-64, Fedora 17, GCC 4.7.2, default 'configure'),
2067 this change shrinks the text size of the Emacs executable by 1.1%
2068 without affecting CPU significantly in my benchmark.
2069 * alloc.c (mem_find, live_string_p, live_cons_p, live_symbol_p)
2070 (live_float_p, live_misc_p, live_vector_p, live_buffer_p)
2071 (mark_maybe_object, mark_maybe_pointer, bounded_number):
2072 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
2073 (bset_auto_fill_function, bset_auto_save_file_format)
2074 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
2075 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
2076 (bset_cache_long_line_scans, bset_case_fold_search)
2077 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
2078 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
2079 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
2080 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
2081 (bset_header_line_format, bset_indicate_buffer_boundaries)
2082 (bset_indicate_empty_lines, bset_invisibility_spec)
2083 (bset_left_fringe_width, bset_major_mode, bset_mark)
2084 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
2085 (bset_name, bset_overwrite_mode, bset_pt_marker)
2086 (bset_right_fringe_width, bset_save_length)
2087 (bset_scroll_bar_width, bset_scroll_down_aggressively)
2088 (bset_scroll_up_aggressively, bset_selective_display)
2089 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
2090 (bset_word_wrap, bset_zv_marker, set_buffer_overlays_before)
2091 (set_buffer_overlays_after):
2092 * category.c (bset_category_table):
2093 * charset.c (read_hex):
2094 * coding.c (produce_composition, produce_charset)
2095 (handle_composition_annotation, handle_charset_annotation)
2096 (char_encodable_p):
2097 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers)
2098 (assign_row, set_frame_matrix_frame, make_current)
2099 (add_row_entry):
2100 * eval.c (set_specpdl_symbol, set_specpdl_old_value):
2101 * fns.c (maybe_resize_hash_table):
2102 * frame.c (fset_buffer_predicate, fset_minibuffer_window):
2103 * gmalloc.c (register_heapinfo):
2104 * image.c (lookup_image_type):
2105 * intervals.c (set_interval_object, set_interval_left)
2106 (set_interval_right, copy_interval_parent, rotate_right)
2107 (rotate_left, balance_possible_root_interval):
2108 * keyboard.c (kset_echo_string, kset_kbd_queue)
2109 (kset_keyboard_translate_table, kset_last_prefix_arg)
2110 (kset_last_repeatable_command, kset_local_function_key_map)
2111 (kset_overriding_terminal_local_map, kset_real_last_command)
2112 (kset_system_key_syms, clear_event, set_prop):
2113 * lread.c (digit_to_number):
2114 * marker.c (attach_marker, live_buffer, set_marker_internal):
2115 * nsterm.m (ns_compute_glyph_string_overhangs):
2116 * process.c (pset_buffer, pset_command)
2117 (pset_decode_coding_system, pset_decoding_buf)
2118 (pset_encode_coding_system, pset_encoding_buf, pset_filter)
2119 (pset_log, pset_mark, pset_name, pset_plist, pset_sentinel)
2120 (pset_status, pset_tty_name, pset_type, pset_write_queue):
2121 * syntax.c (bset_syntax_table, dec_bytepos):
2122 * terminal.c (tset_param_alist):
2123 * textprop.c (interval_has_some_properties)
2124 (interval_has_some_properties_list):
2125 * window.c (wset_combination_limit, wset_dedicated)
2126 (wset_display_table, wset_hchild, wset_left_fringe_width)
2127 (wset_left_margin_cols, wset_new_normal, wset_new_total)
2128 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
2129 (wset_right_fringe_width, wset_right_margin_cols)
2130 (wset_scroll_bar_width, wset_start, wset_temslot, wset_vchild)
2131 (wset_vertical_scroll_bar_type, wset_window_parameters):
2132 * xdisp.c (wset_base_line_number, wset_base_line_pos)
2133 (wset_column_number_displayed, wset_region_showing)
2134 (window_box_edges, run_window_scroll_functions)
2135 (append_glyph_string_lists, prepend_glyph_string_lists)
2136 (append_glyph_string, set_glyph_string_background_width)
2137 (append_glyph, append_composite_glyph)
2138 (take_vertical_position_into_account):
2139 * xfaces.c (x_create_gc, x_free_gc, merge_face_vectors)
2140 (face_attr_equal_p, lface_equal_p, hash_string_case_insensitive)
2141 (lface_hash, lface_same_font_attributes_p, lookup_face):
2142 * xml.c (libxml2_loaded_p):
2143 * xterm.c (x_set_mode_line_face_gc, x_set_glyph_string_gc)
2144 (x_set_glyph_string_clipping, x_clear_glyph_string_rect):
2145 Now 'static', not 'static inline'.
2146
2147 * bidi.c: Tune.
2148 (bidi_copy_it): Do the whole copy with a single memcpy.
2149 (bidi_char_at_pos): Merge the two STRING_CHAR calls into one.
2150
2151 Revert the FOLLOW-SYMLINKS change for file-attributes.
2152 Doing it right would require several changes to Tramp, and there's
2153 not enough time to get that tested before the freeze today.
2154 * dired.c (directory_files_internal, Ffile_attributes):
2155 Undo last change.
2156
2157 * frame.c (x_report_frame_params): Port better to wider ints.
2158 Do not assume that EMACS_UINT is the same width as uprintmax_t,
2159 or that pointers can be printed in 15 decimal digits.
2160 Avoid GCC warnings if EMACS_UINT is wider than a pointer.
2161
2162 2012-09-30 Fabrice Popineau <fabrice.popineau@supelec.fr>
2163
2164 Support x64 build on MS-Windows.
2165 * w32term.h (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK): Define for x64.
2166 (SET_SCROLL_BAR_W32_WINDOW): Cast ID to intptr_t, for
2167 compatibility with x64.
2168 (x_get_focus_frame): Add prototype.
2169
2170 * w32term.c (w32_draw_underwave): Don't use GCC extensions for
2171 defining an XRectangle structure.
2172
2173 * w32proc.c (RVA_TO_PTR, w32_executable_type): Fix pointer
2174 arithmetics for compatibility with x64.
2175
2176 * w32menu.c (add_menu_item): Use UINT_PTR instead of UINT, for
2177 compatibility with x64.
2178
2179 * w32heap.h: Adjust prototypes and declarations.
2180
2181 * w32heap.c (RVA_TO_PTR, allocate_heap, sbrk, init_heap)
2182 (round_heap): Use DWORD_PTR, ptrdiff_t and size_t instead of
2183 DWORD, long, and unsigned long, for compatibility with x64.
2184 (allocate_heap) [_WIN64]: Reserve 32GB of memory.
2185 (sbrk): Argument is now of type ptrdiff_t.
2186
2187 * w32fns.c (HMONITOR): Condition declaration on _WIN32_WINNT being
2188 less than 0x0500.
2189 (w32_msg_pump): Use WPARAM type for 'result'.
2190
2191 * w32.c (init_environment, get_emacs_configuration): Support AMD64
2192 architecture.
2193 (init_ntproc): Cast arguments of _open_osfhandle to intptr_t, for
2194 compatibility with x64.
2195
2196 * vm-limit.c (lim_data): Now size_t.
2197 (check_memory_limits): Adjust prototypes of real_morecore and
2198 __morecore to receive argument of type ptrdiff_t. Use size_t for
2199 five_percent and data_size.
2200
2201 * unexw32.c: Use DWORD_PTR instead of DWORD for file-scope
2202 variables, for compatibility with x64.
2203 (rva_to_section, offset_to_section, relocate_offset)
2204 (OFFSET_TO_RVA, RVA_TO_OFFSET, RVA_TO_SECTION_OFFSET)
2205 (PTR_TO_RVA, RVA_TO_PTR, OFFSET_TO_PTR, get_section_info)
2206 (copy_executable_and_dump_data): Use DWORD_PTR instead of DWORD
2207 for compatibility with x64.
2208
2209 * sysdep.c (STDERR_FILENO): Define if not already defined.
2210
2211 * ralloc.c (real_morecore): Argument type is now ptrdiff_t.
2212 (__morecore): Argument type is now ptrdiff_t.
2213 (ROUNDUP, MEM_ROUNDUP): Use size_t instead of 'unsigned long'.
2214 (relinquish): Use ptrdiff_t type for 'excess'.
2215 (r_alloc_sbrk): Argument type is now ptrdiff_t.
2216
2217 * makefile.w32-in (HEAPSIZE): Get value from EMACS_HEAPSIZE.
2218 (bootstrap-temacs-CMD, bootstrap-temacs-SH): Use $(EMACS_PURESIZE)
2219 instead of a literal number.
2220
2221 * gmalloc.c [WINDOWSNT]: Include w32heap.h.
2222 (min): Define only if not already defined.
2223
2224 * frame.c (x_report_frame_params): Use EMACS_UINT for the return
2225 value of FRAME_X_WINDOW, to fit a 64-bit pointer on 64-bit Windows
2226 hosts.
2227
2228 * image.c (x_bitmap_pixmap): Return ptrdiff_t, not int, since
2229 'bitmaps' is a pointer.
2230
2231 * dispextern.h (x_bitmap_pixmap): Adjust prototype.
2232
2233 * alloc.c (gdb_make_enums_visible): Now conditional on __GNUC__.
2234
2235 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
2236
2237 file-attributes has a new optional arg FOLLOW-SYMLINKS.
2238 * dired.c (directory_files_internal, Ffile_attributes):
2239 New arg follow_symlinks. All uses changed.
2240
2241 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
2242
2243 * .gdbinit (xbacktrace): Adjust to recent "struct backtrace" change.
2244
2245 2012-09-30 Eli Zaretskii <eliz@gnu.org>
2246
2247 Support atimers and CPU profiler via profile.c on MS-Windows.
2248 * w32proc.c (sig_mask, crit_sig): New static variables.
2249 (sys_signal): Support SIGALRM and SIGPROF.
2250 (sigemptyset, sigaddset, sigfillset, sigprocmask)
2251 (pthread_sigmask, setpgrp): Move here from w32.c. sigaddset,
2252 sigfillset, and sigprocmask are no longer no-ops.
2253 (sigismember): New function.
2254 (struct itimer_data): New definition.
2255 (ticks_now, real_itimer, prof_itimer, clocks_min, crit_real)
2256 (crit_prof): New static variables.
2257 (MAX_SINGLE_SLEEP): New definition.
2258 (timer_loop, stop_timer_thread, term_timers, init_timers)
2259 (start_timer_thread, getitimer, setitimer): New functions.
2260 (alarm): No longer a no-op, calls setitimer.
2261
2262 * w32.c (term_ntproc): Call term_timers.
2263 (init_ntproc): Make sure all signals are unblocked at startup, to
2264 erase any traces of dumping. Call init_timers.
2265
2266 * w32fns.c (hourglass_timer, HOURGLASS_ID): Remove.
2267 Windows-specific code to display the hourglass mouse pointer is no
2268 longer used.
2269 (w32_wnd_proc): Remove code that handled the WM_TIMER message due
2270 to hourglass timer expiration.
2271 (start_hourglass, cancel_hourglass, DEFAULT_HOURGLASS_DELAY):
2272 Remove, no longer used.
2273 (w32_note_current_window, show_hourglass, hide_hourglass):
2274 New functions, in support of hourglass cursor display similar to other
2275 window systems.
2276 (syms_of_w32fns): Don't initialize hourglass_timer.
2277
2278 * xdisp.c (start_hourglass, cancel_hourglass): Now used on
2279 WINDOWSNT as well.
2280 (start_hourglass) [WINDOWSNT]: Call w32_note_current_window.
2281
2282 * w32.h (init_timers, term_timers): Add prototypes.
2283
2284 2012-09-30 Kenichi Handa <handa@gnu.org>
2285
2286 * coding.c (decode_coding_ccl, encode_coding_ccl): Pay attention
2287 to the buffer relocation which may be caused by ccl_driver.
2288
2289 2012-09-30 Jan Djärv <jan.h.d@swipnet.se>
2290
2291 * xfns.c (Fx_file_dialog): Update comment.
2292
2293 * w32fns.c (Fx_file_dialog): Update comment.
2294
2295 * nsfns.m (Fns_read_file_name): Add argument DIR_ONLY_P.
2296 Initialize panel name field if OSX >= 10.6.
2297
2298 * fileio.c (Fnext_read_file_uses_dialog_p): Add HAVE_NS.
2299
2300 * nsfns.m (ns_frame_parm_handlers): Add x_set_fullscreen.
2301
2302 * nsterm.m (NEW_STYLE_FS): New define.
2303 (ns_fullscreen_hook, windowWillEnterFullScreen)
2304 (windowDidEnterFullScreen, windowWillExitFullScreen)
2305 (windowDidExitFullScreen, toggleFullScreen, handleFS)
2306 (setFSValue): New functions.
2307 (EmacsFSWindow): New implementation.
2308 (canBecomeKeyWindow): New function for EmacsFSWindow.
2309 (ns_create_terminal): Set fullscreen_hook to ns_fullscreen_hook.
2310 (dealloc): Release nonfs_window if in fullscreen.
2311 (updateFrameSize:): Call windowDidMove to update top/left.
2312 (windowWillResize:toSize:): Check if frame is still maximized.
2313 (initFrameFromEmacs:): Initialize fs_state, fs_before_fs,
2314 next_maximized, maximized_width, maximized_height and nonfs_window.
2315 Call setCollectionBehavior if NEW_STYLE_FS. Initialize bwidth and
2316 tbar_height.
2317 (windowWillUseStandardFrame:defaultFrame:): Update frame parameter
2318 fullscreen. Set maximized_width/height. Act on next_maximized.
2319
2320 * nsterm.h (MAC_OS_X_VERSION_10_7, MAC_OS_X_VERSION_10_8): New.
2321 (EmacsView): Add variables for fullscreen.
2322 (handleFS, setFSValue, toggleFullScreen): New in EmacsView.
2323 (EmacsFSWindow): New interface for fullscreen.
2324
2325 2012-09-30 Juanma Barranquero <lekktu@gmail.com>
2326
2327 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
2328
2329 2012-09-30 Chong Yidong <cyd@gnu.org>
2330
2331 * fns.c (Frandom): Doc fix.
2332
2333 2012-09-30 Martin Rudalics <rudalics@gmx.at>
2334
2335 * window.c (Vwindow_combination_limit): New default value.
2336 (Qwindow_size): New symbol replacing Qtemp_buffer_resize.
2337
2338 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
2339
2340 * syssignal.h (PROFILER_CPU_SUPPORT): Don't define if PROFILING.
2341 Suggested by Eli Zaretskii in
2342 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00811.html>.
2343
2344 2012-09-30 Eli Zaretskii <eliz@gnu.org>
2345
2346 * profiler.c (Fprofiler_cpu_stop): Use timer_settime only if
2347 HAVE_TIMER_SETTIME is defined.
2348
2349 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
2350
2351 Profiler improvements: more-accurate timers, overflow checks.
2352 * profiler.c: Don't include stdio.h, limits.h, sys/time.h,
2353 signal.h, setjmp.h. Include systime.h instead.
2354 (saturated_add): New function.
2355 (record_backtrace, current_sample_interval): Use EMACS_INT, not size_t.
2356 (record_backtrace, handle_profiler_signal): Saturate on fixnum overflow.
2357 (profiler_timer, profiler_timer_ok) [HAVE_TIMER_SETTIME]:
2358 New static vars.
2359 (enum profiler_cpu_running): New enum.
2360 (profiler_cpu_running): Now of that enum type, not bool.
2361 All uses changed to store the new value.
2362 (handle_profiler_signal): Rename from sigprof_handler_1,
2363 for consistency with other handlers. Do not check whether
2364 cpu_log is a hash-table if garbage collecting, since it
2365 doesn't matter in that case.
2366 (deliver_profiler_signal): Rename from sigprof_handler,
2367 for consistency with other handlers.
2368 (setup_cpu_timer): New function, with much of what used to be in
2369 Fprofiler_cpu_start. Check for out-of-range argument.
2370 Prefer timer_settime if available, and prefer
2371 thread cputime clocks, then process cputime clocks, then
2372 monotonic clocks, to the old realtime clock. Use make_timeval
2373 to round more-correctly when falling back to setitimer.
2374 (Fprofiler_cpu_start): Use it.
2375 (Fprofiler_cpu_stop): Prefer timer_settime if available.
2376 Don't assume that passing NULL as the 2nd argument of setitimer
2377 is the same as passing a pointer to all-zero storage.
2378 Ignore SIGPROF afterwards.
2379 (malloc_probe): Saturate at MOST_POSITIVE_FIXNUM.
2380 * sysdep.c (emacs_sigaction_init): Also mask out SIGPROF in
2381 non-fatal signal handlers. Ignore SIGPROF on startup.
2382 * syssignal.h (PROFILER_CPU_SUPPORT): Define this macro here, not
2383 in profiler.c, since sysdep.c now uses it.
2384
2385 * sysdep.c (handle_fatal_signal): Bump backtrace size to 40.
2386 Suggested by Eli Zaretskii in
2387 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00796.html>.
2388
2389 2012-09-29 Juanma Barranquero <lekktu@gmail.com>
2390
2391 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
2392
2393 2012-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
2394
2395 * lisp.h (struct backtrace): Remove indirection for `function' field.
2396 * xdisp.c (redisplay_internal):
2397 * profiler.c (record_backtrace, sigprof_handler_1):
2398 * alloc.c (Fgarbage_collect):
2399 * eval.c (interactive_p, Fsignal, eval_sub, Ffuncall, Fbacktrace)
2400 (Fbacktrace_frame): Adjust accordingly.
2401
2402 2012-09-28 Glenn Morris <rgm@gnu.org>
2403
2404 * eval.c (Frun_hook_with_args, Frun_hook_with_args_until_success)
2405 (Frun_hook_with_args_until_failure): Doc fixes.
2406
2407 2012-09-28 Eli Zaretskii <eliz@gnu.org>
2408
2409 * xdisp.c (syms_of_xdisp) <Qredisplay_internal>: Rename from
2410 Qautomatic_redisplay and change the symbol name. All users changed.
2411
2412 2012-09-28 Tomohiro Matsuyama <tomo@cx4a.org>
2413
2414 * profiler.c (sigprof_handler): Fix race condition.
2415
2416 2012-09-28 Glenn Morris <rgm@gnu.org>
2417
2418 * lread.c (lisp_file_lexically_bound_p): Handle #! lines. (Bug#12528)
2419
2420 2012-09-27 Paul Eggert <eggert@cs.ucla.edu>
2421
2422 Check more robustly for timer_settime.
2423 * Makefile.in (LIB_TIMER_TIME): New macro.
2424 (LIBES): Add it.
2425 * atimer.c (alarm_timer, alarm_timer_ok, set_alarm, init_atimer):
2426 Use HAVE_TIMER_SETTIME, not SIGEV_SIGNAL, to decide whether to
2427 call timer_settime.
2428
2429 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
2430
2431 * profiler.c (Fprofiler_cpu_start): Remove unnecessary flag SA_SIGINFO.
2432
2433 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
2434
2435 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
2436
2437 2012-09-26 Paul Eggert <eggert@cs.ucla.edu>
2438
2439 * character.h (MAYBE_UNIFY_CHAR): Remove.
2440 * charset.c, charset.h (maybe_unify_char): Now static.
2441 * charset.c (decode_char): Use maybe_unify_char, not MAYBE_UNIFY_CHAR.
2442 Since this stuff is now private to charset.c, there's no need for
2443 a public macro and no need to inline by hand.
2444
2445 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
2446 Stefan Monnier <monnier@iro.umontreal.ca>
2447 Juanma Barranquero <lekktu@gmail.com>
2448
2449 * profiler.c: New file.
2450 * Makefile.in (base_obj): Add profiler.o.
2451 * makefile.w32-in (OBJ2, GLOBAL_SOURCES): Add profiler.c.
2452 ($(BLD)/profiler.$(O)): New target.
2453 * emacs.c (main): Call syms_of_profiler.
2454 * alloc.c (Qautomatic_gc): New constant.
2455 (MALLOC_PROBE): New macro.
2456 (xmalloc, xzalloc, xrealloc, lisp_malloc, lisp_align_malloc): Use it.
2457 (total_bytes_of_live_objects): New function.
2458 (Fgarbage_collect): Use it. Record itself in backtrace_list.
2459 Call malloc_probe for the memory profiler.
2460 (syms_of_alloc): Define Qautomatic_gc.
2461 * eval.c (eval_sub, Ffuncall): Reorder assignments to avoid
2462 race condition.
2463 (struct backtrace): Move definition...
2464 * lisp.h (struct backtrace): ..here.
2465 (Qautomatic_gc, profiler_memory_running): Declare vars.
2466 (malloc_probe, syms_of_profiler): Declare functions.
2467 * xdisp.c (Qautomatic_redisplay): New constant.
2468 (redisplay_internal): Record itself in backtrace_list.
2469 (syms_of_xdisp): Define Qautomatic_redisplay.
2470
2471 2012-09-25 Eli Zaretskii <eliz@gnu.org>
2472 2012-09-25 Juanma Barranquero <lekktu@gmail.com>
2473
2474 * makefile.w32-in ($(BLD)/callproc.$(O)): Update dependencies.
2475
2476 2012-09-25 Paul Eggert <eggert@cs.ucla.edu>
2477
2478 Prefer POSIX timers if available.
2479 They avoid a race if the timer is too close to the current time.
2480 * atimer.c (alarm_timer, alarm_timer_ok) [SIGEV_SIGNAL]: New static vars.
2481 (set_alarm) [SIGEV_SIGNAL]: Use POSIX timers if available.
2482 (init_atimer) [SIGEV_SIGNAL]: Initialize them.
2483
2484 2012-09-25 Eli Zaretskii <eliz@gnu.org>
2485
2486 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY): Make it an alias of
2487 CHAR_STRING_ADVANCE.
2488 (STRING_CHAR_ADVANCE_NO_UNIFY): Make it an alias of
2489 STRING_CHAR_ADVANCE.
2490
2491 2012-09-25 Juanma Barranquero <lekktu@gmail.com>
2492
2493 Move Vlibrary_cache to emacs.c and reset before dumping.
2494
2495 * lisp.h (reset_image_types): Declare.
2496 [WINDOWSNT] (Vlibrary_cache): Declare.
2497
2498 * image.c (reset_image_types): New function.
2499
2500 * emacs.c [WINDOWSNT] (Vlibrary_cache): Move from w32.c.
2501 (syms_of_emacs) [WINDOWSNT] <Vlibrary_cache>: Initialize and staticpro.
2502 (Fdump_emacs): Reset Vlibrary_cache and image_types.
2503
2504 * w32.c (Vlibrary_cache): Do not define; moved to emacs.c
2505 (globals_of_w32) <Vlibrary_cache>: Do not initialize.
2506
2507 * w32.h (Vlibrary_cache): Do not declare.
2508
2509 2012-09-25 Eli Zaretskii <eliz@gnu.org>
2510
2511 * w32proc.c (sys_signal): Handle all signals defined by the
2512 MS-Windows runtime, not just SIGCHLD. Actually install the signal
2513 handlers for signals supported by Windows. Don't override
2514 term_ntproc as the handler for SIGABRT.
2515 (sigaction): Rewrite to call sys_signal instead of duplicating its
2516 code.
2517 (sys_kill): Improve commentary.
2518
2519 * w32.c (term_ntproc): Accept (and ignore) one argument, for
2520 consistency with a signature of a signal handler. All callers
2521 changed.
2522 (init_ntproc): Accept an argument DUMPING. If dumping, don't
2523 install term_ntproc as a signal handler for SIGABRT, as that
2524 should be done by the dumped Emacs.
2525
2526 * w32.h (init_ntproc, term_ntproc): Adjust prototypes.
2527
2528 * w32select.c (term_w32select): Protect against repeated
2529 invocation by setting clipboard_owner to NULL after calling
2530 DestroyWindow.
2531
2532 * emacs.c (shut_down_emacs, main): Adapt the calls to init_ntproc
2533 and term_ntproc to their modified signatures.
2534
2535 * character.c (char_string, string_char): Remove calls to
2536 MAYBE_UNIFY_CHAR. See the discussion starting at
2537 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00433.html
2538 for the details.
2539
2540 2012-09-25 Chong Yidong <cyd@gnu.org>
2541
2542 * xdisp.c (mode_line_inverse_video): Delete obsolete variable.
2543
2544 2012-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
2545
2546 * bytecode.c (exec_byte_code): Signal an error instead of aborting,
2547 when encountering an unknown bytecode.
2548
2549 2012-09-24 Paul Eggert <eggert@cs.ucla.edu>
2550
2551 image.c, indent.c: Use bool for booleans.
2552 * dispextern.h (struct image_type): Members valid_p, load, init
2553 now return bool, not int. All uses changed.
2554 * image.c: Omit unnecessary static decls.
2555 (x_create_bitmap_mask, x_build_heuristic_mask):
2556 Return void, not int, since callers don't care about the return value.
2557 (x_create_bitmap_mask, define_image_type, valid_image_p)
2558 (struct image_keyword, parse_image_spec, image_spec_value)
2559 (check_image_size, image_background)
2560 (image_background_transparent, x_clear_image_1)
2561 (postprocess_image, lookup_image, x_check_image_size)
2562 (x_create_x_image_and_pixmap, xbm_image_p)
2563 (Create_Pixmap_From_Bitmap_Data, xbm_read_bitmap_data)
2564 (xbm_load_image, xbm_file_p, xbm_load, xpm_lookup_color)
2565 (init_xpm_functions, xpm_valid_color_symbols_p, xpm_image_p)
2566 (xpm_load, xpm_load_image, lookup_rgb_color, lookup_pixel_color)
2567 (x_to_xcolors, x_build_heuristic_mask, pbm_image_p, pbm_load)
2568 (png_image_p, init_png_functions, png_load_body, png_load)
2569 (jpeg_image_p, init_jpeg_functions, jpeg_load_body, jpeg_load)
2570 (tiff_image_p, init_tiff_functions, tiff_load, gif_image_p)
2571 (init_gif_functions, gif_load, imagemagick_image_p)
2572 (imagemagick_load_image, imagemagick_load, svg_image_p)
2573 (init_svg_functions, svg_load, svg_load_image, gs_image_p)
2574 (gs_load):
2575 * nsimage.m (ns_load_image):
2576 * nsterm.m (ns_defined_color):
2577 * xfaces.c (tty_lookup_color, tty_defined_color, defined_color):
2578 * xfns.c (x_defined_color):
2579 * xterm.c (x_alloc_lighter_color_for_widget)
2580 (x_alloc_nearest_color_1, x_alloc_nearest_color)
2581 (x_alloc_lighter_color):
2582 * indent.c (disptab_matches_widthtab, current_column)
2583 (scan_for_column, string_display_width, indented_beyond_p)
2584 (compute_motion, vmotion, Fvertical_motion):
2585 Use bool for booleans.
2586
2587 2012-09-24 Chong Yidong <cyd@gnu.org>
2588
2589 * chartab.c (Fset_char_table_default): Obsolete function removed.
2590
2591 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
2592
2593 Move pid_t related decls out of lisp.h.
2594 * lisp.h, syswait.h (record_child_status_change, wait_for_termination)
2595 (interruptible_wait_for_termination):
2596 Move these decls from lisp.h to syswait.h, since they use pid_t.
2597 Needed on FreeBSD; see Herbert J. Skuhra in
2598 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00571.html>.
2599 * callproc.c: Include syswait.h.
2600
2601 gnutls.c, gtkutil.c: Use bool for boolean.
2602 * gnutls.c (gnutls_global_initialized, init_gnutls_functions)
2603 (emacs_gnutls_handle_error):
2604 * gtkutil.c (xg_check_special_colors, xg_prepare_tooltip)
2605 (xg_hide_tooltip, xg_create_frame_widgets)
2606 (create_dialog, xg_uses_old_file_dialog)
2607 (xg_get_file_with_chooser, xg_get_file_with_selection)
2608 (xg_get_file_name, xg_have_tear_offs, create_menus, xg_create_widget)
2609 (xg_item_label_same_p, xg_update_menubar)
2610 (xg_modify_menubar_widgets, xg_event_is_for_menubar)
2611 (xg_ignore_gtk_scrollbar, xg_set_toolkit_scroll_bar_thumb)
2612 (xg_event_is_for_scrollbar, xg_pack_tool_bar, xg_make_tool_item)
2613 (is_box_type, xg_tool_item_stale_p, xg_update_tool_bar_sizes)
2614 (update_frame_tool_bar, free_frame_tool_bar):
2615 * gtkutil.c, w32term.c, xterm.c (x_wm_set_size_hint):
2616 * nsmenu.m (ns_update_menubar):
2617 * nsmenu.m, w32menu.c, xmenu.c (set_frame_menubar):
2618 * xfns.c (Fx_show_tip) [USE_GTK]:
2619 Use bool for boolean.
2620 * gtkutil.c (xg_update_frame_menubar):
2621 * xmenu.c (update_frame_menubar):
2622 Return void, not int, since caller ignores return value.
2623 * gtkutil.c (xg_change_toolbar_position):
2624 Return void, not 1.
2625
2626 2012-09-23 Juanma Barranquero <lekktu@gmail.com>
2627
2628 * makefile.w32-in (BLOCKINPUT_H): Remove.
2629 (SYSSIGNAL_H): New macro.
2630 ($(BLD)/alloc.$(O), $(BLD)/atimer.$(O), $(BLD)/buffer.$(O))
2631 ($(BLD)/callproc.$(O), $(BLD)/data.$(O), $(BLD)/dired.$(O))
2632 ($(BLD)/dispnew.$(O), $(BLD)/editfns.$(O), $(BLD)/emacs.$(O))
2633 ($(BLD)/eval.$(O), $(BLD)/fileio.$(O), $(BLD)/floatfns.$(O))
2634 ($(BLD)/fns.$(O), $(BLD)/fontset.$(O), $(BLD)/frame.$(O))
2635 ($(BLD)/fringe.$(O), $(BLD)/image.$(O), $(BLD)/insdel.$(O))
2636 ($(BLD)/keyboard.$(O), $(BLD)/keymap.$(O), $(BLD)/lread.$(O))
2637 ($(BLD)/menu.$(O), $(BLD)/w32inevt.$(O), $(BLD)/w32proc.$(O))
2638 ($(BLD)/print.$(O), $(BLD)/process.$(O), $(BLD)/ralloc.$(O))
2639 ($(BLD)/search.$(O), $(BLD)/sound.$(O), $(BLD)/sysdep.$(O))
2640 ($(BLD)/term.$(O), $(BLD)/window.$(O), $(BLD)/xdisp.$(O))
2641 ($(BLD)/xfaces.$(O), $(BLD)/w32fns.$(O), $(BLD)/w32menu.$(O))
2642 ($(BLD)/w32term.$(O), $(BLD)/w32select.$(O), $(BLD)/w32reg.$(O))
2643 ($(BLD)/w32xfns.$(O)): Update dependencies.
2644
2645 2012-09-23 Eli Zaretskii <eliz@gnu.org>
2646
2647 * .gdbinit: Set breakpoint on terminate_due_to_signal, not on
2648 fatal_error_backtrace.
2649
2650 * w32proc.c (sys_kill): Undo last change: don't do anything when
2651 invoked to deliver SIGABRT to our own process. This is now
2652 handled by emacs_raise.
2653
2654 2012-09-23 Juanma Barranquero <lekktu@gmail.com>
2655
2656 * w32term.c (w32_read_socket): Remove leftover reference to
2657 interrupt_input_pending.
2658
2659 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
2660
2661 Do not use SA_NODEFER.
2662 Problem reported by Dani Moncayo in
2663 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00557.html>.
2664 * alloc.c (die):
2665 * sysdep.c (emacs_abort): Do not reset signal handler.
2666 * emacs.c (terminate_due_to_signal): Reset signal handler here.
2667 * sysdep.c (init_signals): Do not use SA_NODEFER. It wasn't
2668 wanted even on POSIXish hosts, and it doesn't work on Windows.
2669
2670 2012-09-23 Jan Djärv <jan.h.d@swipnet.se>
2671
2672 * xterm.c (x_term_init): Call fixup_locale before and after calling
2673 gtk_init (Bug#12392).
2674
2675 2012-09-23 Chong Yidong <cyd@gnu.org>
2676
2677 * w32.c (w32_delayed_load): Remove LIBRARIES argument; always use
2678 Vdynamic_library_alist.
2679
2680 * gnutls.c (init_gnutls_functions): Caller changed; remove arg.
2681 (Fgnutls_available_p): Caller changed.
2682
2683 * xml.c (init_libxml2_functions, Flibxml_parse_html_region)
2684 (Flibxml_parse_xml_region): Likewise.
2685
2686 * dispextern.h (struct image_type): Remove arg from init function.
2687
2688 * image.c (Finit_image_library, lookup_image_type)
2689 (define_image_type): Remove now-unneeded second arg.
2690 (init_xpm_functions, init_png_functions, init_jpeg_functions)
2691 (init_tiff_functions, init_gif_functions, init_svg_functions):
2692 Arglist and w32_delayed_load calling convention changed.
2693 (gs_type): Remove init_gs_functions; there is no such function.
2694 (valid_image_p, make_image): Fix caller to lookup_image_type.
2695
2696 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
2697
2698 Simplify and avoid signal-handling races (Bug#12471).
2699 * alloc.c (die):
2700 * sysdep.c (emacs_abort) [HAVE_NTGUI]:
2701 Avoid recursive loop if there's a fatal error in the function itself.
2702 * atimer.c (pending_atimers):
2703 * blockinput.h: Don't include "atimer.h"; no longer needed.
2704 (interrupt_input_pending): Remove. All uses removed.
2705 pending_signals now counts both atimers and ordinary interrupts.
2706 This is less racy than having three separate pending-signal flags.
2707 (block_input, unblock_input, totally_unblock_input, unblock_input_to)
2708 (input_blocked_p):
2709 Rename from their upper-case counterparts BLOCK_INPUT,
2710 UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT, UNBLOCK_INPUT_TO,
2711 INPUT_BLOCKED_P, and turn into functions. All uses changed.
2712 This makes it easier to access volatile variables more accurately.
2713 (BLOCK_INPUT_RESIGNAL): Remove. All uses replaced by unblock_input ().
2714 (input_blocked_p): Prefer this to 'interrupt_input_blocked', as
2715 that's more reliable if the code is buggy and sets
2716 interrupt_input_blocked to a negative value. All uses changed.
2717 * atimer.c (deliver_alarm_signal):
2718 Remove. No need to deliver this to the parent; any thread can
2719 handle this signal now. All uses replaced by underlying handler.
2720 * atimer.c (turn_on_atimers):
2721 * dispnew.c (handle_window_change_signal):
2722 * emacs.c (handle_danger_signal):
2723 * keyboard.c (kbd_buffer_get_event):
2724 Don't reestablish signal handler; not needed with sigaction.
2725 * blockinput.h (UNBLOCK_INPUT_TO, TOTALLY_UNBLOCK_INPUT)
2726 (UNBLOCK_INPUT_TO):
2727 Rework to avoid unnecessary accesses to volatile variables.
2728 (UNBLOCK_INPUT_TO): Now a function.
2729 (totally_unblock_input, unblock_input): New decls.
2730 * data.c (handle_arith_signal, deliver_arith_signal): Move to sysdep.c
2731 (init_data): Remove. Necessary stuff now done in init_signal.
2732 * emacs.c, xdisp.c: Include "atimer.h", since we invoke atimer functions.
2733 * emacs.c (handle_fatal_signal, deliver_fatal_signal): Move to sysdep.c.
2734 (fatal_error_code): Remove; no longer needed.
2735 (terminate_due_to_signal): Rename from fatal_error_backtrace, since
2736 it doesn't always backtrace. All uses changed. No need to reset
2737 signal to default, since sigaction and/or die does that for us now.
2738 Use emacs_raise (FOO), not kill (getpid (), FOO).
2739 (main): Check more-accurately whether we're dumping.
2740 Move fatal-error setup to sysdep.c
2741 * floatfns.c: Do not include "syssignal.h"; no longer needed.
2742 * gtkutil.c (xg_get_file_name, xg_get_font):
2743 Remove no-longer-needed signal-mask manipulation.
2744 * keyboard.c, process.c (POLL_FOR_INPUT):
2745 Don't depend on USE_ASYNC_EVENTS, a symbol that is never defined.
2746 * keyboard.c (read_avail_input): Remove.
2747 All uses replaced by gobble_input.
2748 (Ftop_level): Use TOTALLY_UNBLOCK_INPUT rather than open code.
2749 (kbd_buffer_store_event_hold, gobble_input):
2750 (record_asynch_buffer_change) [USABLE_SIGIO]:
2751 (store_user_signal_events):
2752 No need to mess with signal mask.
2753 (gobble_input): If blocking input and there are terminals, simply
2754 set pending_signals to 1 and return. All hooks changed to not
2755 worry about whether input is blocked.
2756 (process_pending_signals): Clear pending_signals before processing
2757 them, in case a signal comes in while we're processing.
2758 By convention callers now test pending_signals before calling us.
2759 (UNBLOCK_INPUT_TO, unblock_input, totally_unblock_input):
2760 New functions, to support changes to blockinput.h.
2761 (handle_input_available_signal): Now extern.
2762 (reinvoke_input_signal): Remove. All uses replaced by
2763 handle_async_input.
2764 (quit_count): Now volatile, since a signal handler uses it.
2765 (handle_interrupt): Now takes bool IN_SIGNAL_HANDLER as arg.
2766 All callers changed. Block SIGINT only if not already blocked.
2767 Clear sigmask reliably, even if Fsignal returns, which it can.
2768 Omit unnecessary accesses to volatile var.
2769 (quit_throw_to_read_char): No need to restore sigmask.
2770 * keyboard.c (gobble_input, handle_user_signal):
2771 * process.c (wait_reading_process_output):
2772 Call signal-handling code rather than killing ourselves.
2773 * lisp.h: Include <float.h>, for...
2774 (IEEE_FLOATING_POINT): New macro, moved here to avoid duplication.
2775 (pending_signals): Now volatile.
2776 (syms_of_data): Now const if IEEE floating point.
2777 (handle_input_available_signal) [USABLE_SIGIO]:
2778 (terminate_due_to_signal, record_child_status_change): New decls.
2779 * process.c (create_process): Avoid disaster if memory is exhausted
2780 while we're processing a vfork, by tightening the critical section
2781 around the vfork.
2782 (send_process_frame, process_sent_to, handle_pipe_signal)
2783 (deliver_pipe_signal): Remove. No longer needed, as Emacs now
2784 ignores SIGPIPE.
2785 (send_process): No need for setjmp/longjmp any more, since the
2786 SIGPIPE stuff is now gone. Instead, report an error if errno
2787 is EPIPE.
2788 (record_child_status_change): Now extern. PID and W are now args.
2789 Return void, not bool. All callers changed.
2790 * sysdep.c (wait_debugging) [(BSD_SYSTEM || HPUX) && !defined (__GNU__)]:
2791 Remove. All uses removed. This bug should be fixed now in a
2792 different way.
2793 (wait_for_termination_1): Use waitpid rather than sigsuspend,
2794 and record the child status change directly. This avoids the
2795 need to futz with the signal mask.
2796 (process_fatal_action): Move here from emacs.c.
2797 (emacs_sigaction_flags): New function, containing
2798 much of what used to be in emacs_sigaction_init.
2799 (emacs_sigaction_init): Use it. Block nonfatal system signals that are
2800 caught by emacs, to make races less likely.
2801 (deliver_process_signal): Rename from handle_on_main_thread.
2802 All uses changed.
2803 (BACKTRACE_LIMIT_MAX): Now at top level.
2804 (thread_backtrace_buffer, threadback_backtrace_pointers):
2805 New static vars.
2806 (deliver_thread_signal, deliver_fatal_thread_signal):
2807 New functions, for more-accurate delivery of thread-specific signals.
2808 (handle_fatal_signal, deliver_fatal_signal): Move here from emacs.c.
2809 (deliver_arith_signal): Handle in this thread, not
2810 in the main thread, since it's triggered by this thread.
2811 (maybe_fatal_sig): New function.
2812 (init_signals): New arg DUMPING so that we can be more accurate
2813 about whether we're dumping. Caller changed.
2814 Treat thread-specific signals differently from process-general signals.
2815 Block all signals while handling fatal error; that's safer.
2816 xsignal from SIGFPE only on non-IEEE hosts, treating it as fatal
2817 on IEEE hosts.
2818 When batch, ignore SIGHUP, SIGINT, SIGTERM if they were already ignored.
2819 Ignore SIGPIPE unless batch.
2820 (emacs_backtrace): Output backtrace for the appropriate thread,
2821 which is not necessarily the main thread.
2822 * syssignal.h: Include <stdbool.h>.
2823 (emacs_raise): New macro.
2824 * xterm.c (x_connection_signal): Remove; no longer needed
2825 now that we use sigaction.
2826 (x_connection_closed): No need to mess with sigmask now.
2827 (x_initialize): No need to reset SIGPIPE handler here, since
2828 init_signals does this for us now.
2829
2830 2012-09-23 Jan Djärv <jan.h.d@swipnet.se>
2831
2832 * nsterm.m (ns_dumpglyphs_image): dr is a new rect to draw image into,
2833 background rect may be larger (Bug#12245).
2834
2835 2012-09-23 Chong Yidong <cyd@gnu.org>
2836
2837 * keyboard.c (timer_check): Avoid quitting during Fcopy_sequence.
2838
2839 2012-09-22 Paul Eggert <eggert@cs.ucla.edu>
2840
2841 * .gdbinit: Just stop at fatal_error_backtrace.
2842 See Stefan Monnier's request in
2843 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00549.html>.
2844 Remove no-longer-used query of system type.
2845
2846 2012-09-22 Chong Yidong <cyd@gnu.org>
2847
2848 * search.c (Freplace_match): Doc fix (Bug#12325).
2849
2850 * minibuf.c (Finternal_complete_buffer): Doc fix (Bug#12391).
2851
2852 * editfns.c (Fline_beginning_position): Doc fix (Bug#12416).
2853 (Fline_end_position): Doc fix.
2854
2855 * cmds.c (Fforward_char, Fbackward_char): Doc fix (Bug#12414).
2856
2857 2012-09-22 Chong Yidong <cyd@gnu.org>
2858
2859 * dispextern.h (struct image_type): Add new slot, storing a type
2860 initialization function.
2861
2862 * image.c (define_image_type): Call the image initializer function
2863 if it is defined. Arguments and return value changed.
2864 (valid_image_p, make_image): Callers changed.
2865 (xbm_type, xpm_type, pbm_type, png_type, jpeg_type, tiff_type)
2866 (gif_type, imagemagick_type, svg_type, gs_type):
2867 Add initialization functions.
2868 (Finit_image_library): Call lookup_image_type.
2869 (CHECK_LIB_AVAILABLE): Macro deleted.
2870 (lookup_image_type): Call define_image_type here, rather than via
2871 Finit_image_library, and without using CHECK_LIB_AVAILABLE.
2872 (syms_of_image): Move define_image_type calls for xbm_type and
2873 pbm_type to lookup_image_type.
2874
2875 2012-09-22 Eli Zaretskii <eliz@gnu.org>
2876
2877 * keyboard.c (timer_check_2): Move calculation of 'timers' and
2878 'idle_timers' from here ...
2879 (timer_check): ... to here. Use Fcopy_sequence to copy the timer
2880 lists, to avoid infloops when the timer does something stupid,
2881 like reinvoke itself with the same or smaller time-out.
2882 (Bug#12447)
2883
2884 2012-09-22 Martin Rudalics <rudalics@gmx.at>
2885
2886 * window.c (Fsplit_window_internal): Handle only Qt value of
2887 Vwindow_combination_limit separately.
2888 (Qtemp_buffer_resize): New symbol.
2889 (Vwindow_combination_limit): New default value.
2890 Rewrite doc-string.
2891
2892 2012-09-22 Eli Zaretskii <eliz@gnu.org>
2893
2894 * xdisp.c (next_overlay_string): Initialize it->end_charpos for
2895 the new overlay string. (Bug#10159)
2896
2897 2012-09-22 Paul Eggert <eggert@cs.ucla.edu>
2898
2899 * emacs.c (shut_down_emacs): Don't assume stderr is buffered,
2900 or that fprintf is async-signal-safe. POSIX doesn't require
2901 either assumption.
2902
2903 2012-09-22 Chong Yidong <cyd@gnu.org>
2904
2905 * buffer.c (Fset_buffer_modified_p): Handle indirect buffers
2906 (Bug#8207).
2907
2908 2012-09-22 Kenichi Handa <handa@gnu.org>
2909
2910 * composite.c (composition_reseat_it): Handle the case that a
2911 grapheme cluster is not covered by a single font (Bug#12352).
2912
2913 2012-09-21 Chong Yidong <cyd@gnu.org>
2914
2915 * image.c (define_image_type): Avoid adding duplicate types to
2916 image_types (Bug#12463). Suggested by Jörg Walter.
2917
2918 2012-09-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2919
2920 * unexmacosx.c: Define LC_DATA_IN_CODE if not defined.
2921 (print_load_command_name): Add case LC_DATA_IN_CODE.
2922 (dump_it) [LC_DATA_IN_CODE]: Call copy_linkedit_data.
2923
2924 2012-09-21 Glenn Morris <rgm@gnu.org>
2925
2926 * eval.c (Frun_hook_with_args_until_success)
2927 (Frun_hook_with_args_until_failure): Doc fixes. (Bug#12393)
2928
2929 2012-09-21 Andreas Schwab <schwab@linux-m68k.org>
2930
2931 * fileio.c (Ffile_selinux_context): Only call freecon when
2932 lgetfilecon succeeded.
2933 (Fset_file_selinux_context): Likewise. (Bug#12444)
2934
2935 2012-09-21 Eli Zaretskii <eliz@gnu.org>
2936
2937 * xdisp.c (try_window_reusing_current_matrix): Under bidi
2938 reordering, locate the cursor by calling set_cursor_from_row; if
2939 that fails, clear the desired glyph matrix before returning a
2940 failure indication to the caller. Fixes leaving garbled display
2941 when fast scrolling with a down-key. (Bug#12403)
2942 (compute_stop_pos_backwards): Fix a typo that caused crashes while
2943 scrolling through multibyte text.
2944
2945 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
2946
2947 * alloc.c (mark_object) <PVEC_WINDOW>: Mark prev/next_buffers *after*
2948 calling mark_vectorlike since that's the one that marks the window.
2949 (mark_discard_killed_buffers): Mark the final cdr.
2950 * window.h (struct window): Move prev/next_buffers to the
2951 non-standard fields.
2952 * window.c (make_window): Initialize prev/next_buffers manually.
2953
2954 2012-09-20 Paul Eggert <eggert@cs.ucla.edu>
2955
2956 Omit unused arg EXPECTED from socket hooks.
2957 * keyboard.c (gobble_input, read_avail_input, tty_read_avail_input):
2958 * nsterm.m (ns_term_init):
2959 * termhooks.h (struct terminal.read_socket_hook):
2960 * w32inevt.c (w32_console_read_socket):
2961 * w32term.c (w32_read_socket):
2962 * xterm.c (XTread_socket):
2963 Omit unused arg EXPECTED. All callers changed.
2964 (store_user_signal_events): Return void, not int, since callers no
2965 longer care about the return value. All uses changed.
2966
2967 2012-09-20 Juanma Barranquero <lekktu@gmail.com>
2968
2969 * w32gui.h (XParseGeometry): Do not declare.
2970
2971 2012-09-19 Paul Eggert <eggert@cs.ucla.edu>
2972
2973 * w32inevt.c (w32_console_read_socket): Return -1 on failure, not 0.
2974 Ignore 'expected'. See Eli Zaretskii in
2975 <http://bugs.gnu.org/12471#8> (last line).
2976
2977 * frame.c (read_integer): Remove. All uses replaced by strtol/strtoul.
2978 (XParseGeometry): Now static. Substitute extremal values for
2979 values that are out of range.
2980
2981 2012-09-19 Jan Djärv <jan.h.d@swipnet.se>
2982
2983 * w32xfns.c (read_integer, XParseGeometry): Move to frame.c.
2984
2985 * nsfns.m (XParseGeometry): Remove.
2986 (Fx_create_frame): Call x_set_offset to correctly interpret
2987 top_pos in geometry.
2988
2989 * frame.c (read_integer, XParseGeometry): Move from w32xfns.c.
2990 (Fx_parse_geometry): If there is a space in string, call
2991 Qns_parse_geometry, otherwise do as on other terms (Bug#12368).
2992
2993 2012-09-17 Eli Zaretskii <eliz@gnu.org>
2994
2995 * search.c (scan_buffer): Use character positions in calls to
2996 region_cache_forward and region_cache_backward, not byte
2997 positions. (Bug#12196)
2998
2999 * w32term.c (w32_read_socket): Set pending_signals to 1, like
3000 xterm.c does. Reported by Daniel Colascione <dancol@dancol.org>.
3001
3002 * ralloc.c (r_alloc_init) [!SYSTEM_MALLOC]: Initialize
3003 __malloc_extra_blocks to 32 instead of 64, like alloc.c did in
3004 emacs_blocked_malloc, now deleted.
3005
3006 2012-09-17 Paul Eggert <eggert@cs.ucla.edu>
3007
3008 Remove no-longer-needed Solaris 2.4 vfork bug workaround.
3009 The workaround was for improving performance on Solaris 2.4, but
3010 is getting in the way now. Emacs will still work if someone is
3011 still running Solaris 2.4 in a museum somewhere; Sun dropped
3012 support for Solaris 2.4 in 2003.
3013 * callproc.c (Fcall_process) [HAVE_WORKING_VFORK]:
3014 * process.c (create_process) [HAVE_WORKING_VFORK]:
3015 Omit now-unnecessary workaround for the Solaris 2.4 vfork bug,
3016 since Emacs no longer uses vfork on that platform.
3017
3018 2012-09-17 Glenn Morris <rgm@gnu.org>
3019
3020 * emacs.c: Use COPYRIGHT.
3021
3022 2012-09-16 Paul Eggert <eggert@cs.ucla.edu>
3023
3024 Remove configure's --without-sync-input option (Bug#12450).
3025 When auditing signal-handling in preparation for cleaning it up,
3026 I found that SYNC_INPUT has race conditions and would be a real
3027 pain to fix. Since it's an undocumented and deprecated
3028 configure-time option, now seems like a good time to remove it.
3029 Also see <http://bugs.gnu.org/11080#16>.
3030 * alloc.c (_bytes_used, __malloc_extra_blocks, _malloc_internal)
3031 (_free_internal) [!DOUG_LEA_MALLOC]: Remove decls.
3032 (alloc_mutex) [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
3033 (malloc_hysteresis):
3034 (check_depth) [XMALLOC_OVERRUN_CHECK]:
3035 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT):
3036 (__malloc_hook, __realloc_hook, __free_hook, BYTES_USED)
3037 (dont_register_blocks, bytes_used_when_reconsidered)
3038 (bytes_used_when_full, emacs_blocked_free, emacs_blocked_malloc)
3039 (emacs_blocked_realloc, reset_malloc_hooks, uninterrupt_malloc):
3040 [!SYSTEM_MALLOC && !SYNC_INPUT]:
3041 Remove. All uses removed.
3042 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): Use a different
3043 implementation, one that depends on whether the new macro
3044 XMALLOC_BLOCK_INPUT_CHECK is defined, not on whether SYNC_INPUT
3045 is defined.
3046 * atimer.c (run_timers, handle_alarm_signal):
3047 * keyboard.c (pending_signal, poll_for_input_1, poll_for_input)
3048 (handle_async_input, process_pending_signals)
3049 (handle_input_available_signal, init_keyboard):
3050 * nsterm.m (ns_read_socket):
3051 * process.c (wait_reading_process_output):
3052 * regex.c (immediate_quit, IMMEDIATE_QUIT_CHECK):
3053 * sysdep.c (emacs_sigaction_init) [SA_RESTART]:
3054 (emacs_write):
3055 * xterm.c (XTread_socket):
3056 Assume SYNC_INPUT.
3057 * conf_post.h (SA_RESTART) [IRIX6_5]: Do not #undef.
3058 * eval.c (handling_signal): Remove. All uses removed.
3059 * lisp.h (ELSE_PENDING_SIGNALS): Remove.
3060 All uses replaced with the SYNC_INPUT version.
3061 (reset_malloc_hooks, uninterrupt_malloc, handling_signal):
3062 Remove decls.
3063 * sysdep.c, syssignal.h (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
3064 Now static.
3065
3066 * font.c (Ffont_shape_gstring): Remove unused local.
3067
3068 2012-09-16 Glenn Morris <rgm@gnu.org>
3069
3070 * Makefile.in (clean): No longer run nextstep's clean.
3071
3072 * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Remove variables.
3073 (ns_frag): Remove.
3074 (ns-app): Move here from ns.mk, and simplify.
3075 (clean): Simplify nextstep entry.
3076 * ns.mk: Remove file.
3077
3078 2012-09-17 Kenichi Handa <handa@gnu.org>
3079
3080 * font.c (Ffont_shape_gstring): Fix previous change; GLYPHs may
3081 not covert the last few charactes.
3082
3083 2012-09-16 Kenichi Handa <handa@gnu.org>
3084
3085 * font.c (Ffont_shape_gstring): Don't adjust grapheme cluster
3086 here, but just check the validity of glyphs in the glyph-string.
3087
3088 2012-09-16 Martin Rudalics <rudalics@gmx.at>
3089
3090 * window.c (Fwindow_parameter, Fset_window_parameter):
3091 Accept any window as argument (Bug#12452).
3092
3093 2012-09-16 Jan Djärv <jan.h.d@swipnet.se>
3094
3095 * nsfns.m (Fx_open_connection): Move initialization of ns_*_types
3096 to ns_term_init to avoid memory leak.
3097
3098 * nsterm.m (ns_update_begin): Initialize bp after lcokFocus, use
3099 explicit retain/release.
3100 (ns_term_init): Only allow one display. Initialize outerpool and
3101 ns_*_types.
3102
3103 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
3104
3105 Port _setjmp fix to POSIXish hosts as well as Microsoft.
3106 * image.c (_setjmp) [!HAVE__SETJMP]: Restore definition, as
3107 it's needed on POSIXish hosts that lack _setjmp. Attempt to solve
3108 the Microsoft problem in a different way, by altering ../nt/config.nt.
3109
3110 2012-09-15 Eli Zaretskii <eliz@gnu.org>
3111
3112 * w32xfns.c:
3113 * w32uniscribe.c:
3114 * w32term.c:
3115 * w32select.c:
3116 * w32reg.c:
3117 * w32proc.c:
3118 * w32menu.c:
3119 * w32inevt.c:
3120 * w32heap.c:
3121 * w32font.c:
3122 * w32fns.c:
3123 * w32console.c:
3124 * w32.c:
3125 * w16select.c: Remove inclusion of setjmp.h, as it is now included
3126 by lisp.h. This completes removal of setjmp.h inclusion
3127 erroneously announced in the previous commit. (Bug#12446)
3128
3129 * lisp.h [!HAVE__SETJMP, !HAVE_SIGSETJMP]: Make the commentary
3130 more accurate.
3131
3132 * image.c (_setjmp) [!HAVE__SETJMP]: Define only if 'setjmp' is
3133 not defined as a macro. The latter happens on MS-Windows.
3134 (Bug#12446)
3135
3136 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
3137
3138 Port better to POSIX hosts lacking _setjmp (Bug#12446).
3139 * lisp.h: Include <setjmp.h> here, since we use its symbols here.
3140 Some instances of '#include <setjmp.h>' removed, if the
3141 only reason for the instance was because "lisp.h" was included.
3142 (sys_jmp_buf, sys_setjmp, sys_longjmp): New symbols.
3143 Unless otherwise specified, replace all uses of jmp_buf, _setjmp,
3144 and _longjmp with the new symbols. Emacs already uses _setjmp if
3145 available, so this change affects only POSIXish hosts that have
3146 sigsetjmp but not _setjmp, such as some versions of Solaris and
3147 Unixware. (Also, POSIX-2008 marks _setjmp as obsolescent.)
3148 * image.c (_setjmp, _longjmp) [HAVE_PNG && !HAVE__SETJMP]: New macros.
3149 (png_load_body) [HAVE_PNG]:
3150 (PNG_LONGJMP) [HAVE_PNG && PNG_LIBPNG_VER < 10500]:
3151 (PNG_JMPBUF) [HAVE_PNG && PNG_LIBPNG_VER >= 10500]:
3152 Use _setjmp and _longjmp rather than sys_setjmp and sys_longjmp,
3153 since PNG requires jmp_buf. This is the only exception to the
3154 general rule that we now use sys_setjmp and sys_longjmp.
3155 This exception is OK since this code does not change the signal
3156 mask or longjmp out of a signal handler.
3157
3158 2012-09-14 Paul Eggert <eggert@cs.ucla.edu>
3159
3160 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
3161 Include "syssignal.h", for 'main_thread'.
3162
3163 2012-09-14 Dmitry Antipov <dmantipov@yandex.ru>
3164
3165 Avoid out-of-range marker position (Bug#12426).
3166 * insdel.c (replace_range, replace_range_2):
3167 Adjust markers before overlays, as suggested by comments.
3168 (insert_1_both, insert_from_buffer_1, adjust_after_replace):
3169 Remove redundant check before calling offset_intervals.
3170
3171 2012-09-14 Martin Rudalics <rudalics@gmx.at>
3172
3173 * xdisp.c (Fformat_mode_line): Unconditionally save/restore
3174 current buffer (Bug#12387).
3175
3176 2012-09-14 Juanma Barranquero <lekktu@gmail.com>
3177
3178 * makefile.w32-in ($(BLD)/alloc.$(O)): Update dependencies.
3179
3180 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
3181
3182 Use a more backwards-compatible timer format (Bug#12430).
3183 * keyboard.c (decode_timer): Get PSECS from the 8th (origin-0)
3184 vector element, not from the 4th, since PSECS is now at the end.
3185 (Fcurrent_idle_time): Doc fix.
3186
3187 2012-09-13 Dmitry Antipov <dmantipov@yandex.ru>
3188
3189 Function to mark objects and remove killed buffers at once.
3190 * alloc.c (discard_killed_buffers): Rename to ...
3191 (mark_discard_killed buffers) ... new name. Add marking
3192 of remaining objects. Fix comment. Adjust users.
3193 (mark_object): Do not touch frame buffer lists here.
3194 * frame.c (delete_frame): Reset frame buffer lists here.
3195
3196 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
3197
3198 Better workaround for GNOME bug when --enable-gcc-warnings.
3199 * emacsgtkfixed.c (G_STATIC_ASSERT): Remove, undoing last change.
3200 Instead, disable -Wunused-local-typedefs. See Dmitry Antipov in
3201 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00335.html>.
3202
3203 Simplify SIGIO usage (Bug#12408).
3204 The code that dealt with SIGIO was crufty and confusing, e.g., it
3205 played tricks like "#undef SIGIO" but these tricks were not used
3206 consistently. Simplify mostly by not #undeffing standard symbols,
3207 e.g., use "defined USABLE_SIGIO" (our symbol, which we can define
3208 or not as we please) rather than "defined SIGIO" (standard symbol
3209 that we probably shouldn't #undef).
3210 * conf_post.h [USG5_4]: Do not include <sys/wait.h> here.
3211 Modules that need it can include it.
3212 [USG5_4 && emacs]: Likewise, do not include the streams stuff here.
3213 * dispextern.h (ignore_sigio): New decl.
3214 * emacs.c (shut_down_emacs): Invoke unrequest_sigio
3215 unconditionally, since it's now a no-op if !USABLE_SIGIO.
3216 * emacs.c (shut_down_emacs):
3217 * keyboard.c (kbd_buffer_store_event_hold):
3218 Use ignore_sigio rather than invoking 'signal' directly.
3219 * keyboard.c (USABLE_FIONREAD && USG5_4): Include <sys/filio.h>,
3220 for FIONREAD.
3221 (FIONREAD, SIGIO): Do not #undef.
3222 (tty_read_avail_input): Use #error rather than a syntax error.
3223 * process.c [USG5_4]: Include <sys/stream.h> and <sys/stropts.h>,
3224 for I_PIPE, used by SETUP_SLAVE_PTY.
3225 (DATAGRAM_SOCKETS): Simplify defn, based on USABLE_FIONREAD.
3226 * sysdep.c (croak): Remove; no longer needed. This bit of
3227 temporary code, with Fred N. Fish's comment that it's temporary,
3228 has been in Emacs since at least 1992!
3229 (init_sigio, reset_sigio, request_sigio, unrequest_sigio):
3230 Arrange for them to be no-ops in all cases when ! USABLE_SIGIO.
3231 * syssignal.h (croak): Remove decl.
3232 (SIGIO, SIGPOO, SIGAIO, SIGPTY): Do not #undef; that's too fragile.
3233 * systty.h [!NO_TERMIO]: Do not include <termio.h>; no longer needed
3234 now that we're termios-only.
3235 (FIONREAD, ASYNC) [BROKEN_FIONREAD]: Do not #undef.
3236 * term.c (dissociate_if_controlling_tty): Use #error rather than
3237 a run-time error.
3238
3239 Work around GCC and GNOME bugs when --enable-gcc-warnings.
3240 * emacsgtkfixed.c (G_STATIC_ASSERT): Redefine to use 'verify',
3241 to work around GNOME bug 683906.
3242 * image.c (jpeg_load_body) [HAVE_JPEG && lint]: Pacify gcc -Wclobber.
3243 (struct my_jpeg_error_mgr) [HAVE_JPEG && lint]: New member fp.
3244 This works around GCC bug 54561.
3245
3246 2012-09-12 Paul Eggert <eggert@cs.ucla.edu>
3247
3248 More fixes for 'volatile' and setjmp/longjmp.
3249 * eval.c (Fdefvar, Fcondition_case): Remove unnecessary 'volatile's.
3250 * image.c (struct png_load_context) [HAVE_PNG]: New type.
3251 (png_load_body) [HAVE_PNG]:
3252 (jpeg_load_body) [HAVE_JPEG]:
3253 New function, with most of the old parent function's body.
3254 (png_load) [HAVE_PNG]:
3255 (jpeg_load) [HAVE_JPEG]:
3256 Invoke the new function, to avoid longjmp munging our locals.
3257 (struct my_jpeg_error_mgr) [HAVE_JPEG]: New members cinfo, failure_code.
3258 (my_error_exit) [HAVE_JPEG]: Don't trust 'setjmp' to return 2 when
3259 longjmp is passed 2, as the C standard doesn't guarantee this.
3260 Instead, store the failure code into mgr->failure_code.
3261
3262 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
3263
3264 * keyboard.c (read_char, requeued_events_pending_p, Finput_pending_p)
3265 (Fdiscard_input, quit_throw_to_read_char, init_keyboard)
3266 (syms_of_keyboard): Remove support for unread-command-char.
3267
3268 2012-09-12 Eli Zaretskii <eliz@gnu.org>
3269
3270 * w32proc.c (sys_kill): If PID is our process ID and the signal is
3271 SIGABRT, call emacs_abort. Avoids silently exiting upon assertion
3272 violation. (Bug#12426)
3273
3274 2012-09-12 Paul Eggert <eggert@cs.ucla.edu>
3275
3276 * image.c (jpeg_memory_src): Don't assume string len fits in unsigned.
3277
3278 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
3279
3280 * eval.c: Add `inhibit-debugger'.
3281 (Qinhibit_debugger): New symbol.
3282 (call_debugger): Bind it instead of Qdebug_on_error.
3283 (maybe_call_debugger): Test Vinhibit_debugger.
3284 (syms_of_eval): Define inhibit-debugger.
3285 * xdisp.c (set_message): Don't bind Qinhibit_debug_on_message.
3286 (syms_of_xdisp): Remove inhibit-debug-on-message.
3287
3288 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
3289
3290 Avoid _setjmp/_longjmp problems with local nonvolatile variables.
3291 If a nonvolatile local variable is written before a _longjmp to
3292 the frame containing the variable, and is read after the _longjmp,
3293 the value read is indeterminate. Some local variables of type
3294 'struct handler' and 'struct catchtag' are used in this way, so
3295 mark each of their slots as volatile if the slot can be set before
3296 _longjmp and read afterwards.
3297 * lisp.h (struct handler): var and chosen_clause are now volatile.
3298 (struct catchtag): val, next, and pdlcount are now volatile.
3299
3300 * bidi.c (bidi_push_it, bidi_pop_it):
3301 * fns.c (copy_hash_table):
3302 * image.c (define_image_type):
3303 * keyboard.c (kbd_buffer_store_event_hold):
3304 * process.c (Fprocess_send_eof):
3305 * xfaces.c (x_create_gc) [HAVE_NS]:
3306 * xgselect.c (xg_select):
3307 Prefer assignment to memcpy when either will do.
3308
3309 * alloc.c (discard_killed_buffers): Tune and simplify a bit.
3310 Use pointer-to-a-pointer to simplify and avoid a NILP check each
3311 time an item is removed. No need to mark this function 'inline';
3312 the compiler knows better than we do.
3313
3314 2012-09-11 Jan Djärv <jan.h.d@swipnet.se>
3315
3316 * nsterm.m (ns_judge_scroll_bars): Pass NO to updateFrameSize.
3317 (updateFrameSize:): Add delay parameter to updateFrameSize, send it
3318 to change_frame_size (Bug#12388).
3319 (windowDidResize:): Pass YES to updateFrameSize.
3320
3321 * nsterm.h: Add delay parameter to updateFrameSize.
3322
3323 2012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
3324
3325 Discard killed buffers from deleted window and frame objects.
3326 This reduces an amount of references to killed buffers and
3327 helps GC to reclaim them faster.
3328 * alloc.c (discard_killed_buffers): New function.
3329 (mark_object): Use it for deleted windows and frames.
3330 (mark_object): If symbol's value is set up for a killed buffer
3331 or deleted frame, restore its global binding.
3332 * data.c (swap_in_global_binding): Add GC notice.
3333 (swap_in_symval_forwarding): Use convenient set_blv_where.
3334 * window.c (wset_next_buffers, wset_prev_buffers): Move ...
3335 * window.h: ... to here.
3336
3337 2012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
3338
3339 Convenient macro to check whether the buffer is live.
3340 * buffer.h (BUFFER_LIVE_P): New macro.
3341 * alloc.c, buffer.c, editfns.c, insdel.c, lread.c, marker.c:
3342 * minibuf.c, print.c, process.c, window.c, xdisp.c: Use it.
3343
3344 2012-09-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3345
3346 * xdisp.c (right_overwritten, right_overwriting): Also handle gstring
3347 composition cases (Bug#12364).
3348
3349 * xterm.c (x_draw_glyph_string): Avoid overwriting inverted left
3350 overhang of succeeding glyphs overlapping box cursor.
3351
3352 * w32term.c (x_draw_glyph_string): Likewise.
3353
3354 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
3355
3356 Simplify, document, and port floating-point (Bug#12381).
3357 The porting part of this patch fixes bugs on non-IEEE platforms
3358 with frexp, ldexp, logb.
3359 * data.c, lisp.h (Qdomain_error, Qsingularity_error, Qunderflow_error):
3360 Now static.
3361 * floatfns.c: Simplify discussion of functions that Emacs doesn't
3362 support, by removing commented-out code and briefly listing the
3363 C89 functions excluded. The commented-out stuff was confusing
3364 maintenance, e.g., we thought we needed cbrt but it was commented out.
3365 (logb): Remove decl; no longer needed.
3366 (isfinite): New macro, if not already supplied.
3367 (isnan): Don't replace any existing macro.
3368 (Ffrexp, Fldexp): Define even if !HAVE_COPYSIGN, as frexp and ldexp
3369 are present on all C89 platforms.
3370 (Ffrexp): Do not special-case zero, as frexp does the right thing
3371 for that case.
3372 (Flogb): Do not use logb, as it doesn't have the desired meaning
3373 on hosts that use non-base-2 floating point. Instead, stick with
3374 frexp, which is C89 anyway. Do not pass an infinity or a NaN to
3375 frexp, to avoid getting an unspecified result.
3376
3377 * xdisp.c (Qinhibit_debug_on_message): Now static.
3378
3379 2012-09-10 Jan Djärv <jan.h.d@swipnet.se>
3380
3381 * nsterm.m (ns_update_begin): Set clip path to whole view by using
3382 NSBezierPath (Bug#12131).
3383
3384 2012-09-10 Chong Yidong <cyd@gnu.org>
3385
3386 * fns.c (Fdelq, Fdelete): Doc fix.
3387
3388 2012-09-10 Paul Eggert <eggert@cs.ucla.edu>
3389
3390 * lisp.h (XSETINT, XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL)
3391 (XSETFLOAT, XSETMISC): Parenthesize macro bodies.
3392
3393 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
3394
3395 * lisp.h (make_lisp_ptr): New macro to replace XSET.
3396 (XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL, XSETFLOAT, XSETMISC):
3397 Use it.
3398
3399 2012-09-09 Eli Zaretskii <eliz@gnu.org>
3400
3401 * fringe.c (draw_fringe_bitmap_1): Don't reduce the width of the
3402 left fringe if the window has a left margin. This avoids leaving
3403 traces of the cursor because its leftmost pixel is not drawn over.
3404
3405 * dispnew.c (update_window_line): When the left margin area of a
3406 screen line is updated, set the redraw_fringe_bitmaps_p flag of
3407 that screen line. (Bug#12277)
3408
3409 2012-09-09 Paul Eggert <eggert@cs.ucla.edu>
3410
3411 Assume C89 or later for math functions (Bug#12381).
3412 This simplifies the code, and makes it a bit smaller and faster,
3413 and (most important) makes it easier to clean up signal handling
3414 since we can stop worring about floating-point exceptions in
3415 library code. That was a problem before C89, but the problem
3416 went away many years ago on all practical Emacs targets.
3417 * data.c, image.c, lread.c, print.c:
3418 Don't include <math.h>; no longer needed.
3419 * data.c, floatfns.c (IEEE_FLOATING_POINT): Don't worry that it
3420 might be autoconfigured, as that never happens.
3421 * data.c (fmod):
3422 * doprnt.c (DBL_MAX_10_EXP):
3423 * print.c (DBL_DIG):
3424 Remove. C89 or later always defines these.
3425 * floatfns.c (HAVE_MATHERR, FLOAT_CHECK_ERRNO, FLOAT_CHECK_DOMAIN)
3426 (in_float, float_error_arg, float_error_arg2, float_error_fn_name)
3427 (arith_error, domain_error, domain_error2):
3428 Remove all this pre-C89 cruft. Do not include <errno.h> as that's
3429 no longer needed -- we simply return what C returns. All uses removed.
3430 (IN_FLOAT, IN_FLOAT2): Remove. All uses replaced with
3431 the wrapped code.
3432 (FLOAT_TO_INT, FLOAT_TO_INT2, range_error, range_error2):
3433 Remove. All uses expanded, as these macros are no longer used
3434 more than once and are now more trouble than they're worth.
3435 (Ftan): Use tan, not sin / cos.
3436 (Flogb): Assume C89 frexp.
3437 (fmod_float): Assume C89 fmod.
3438 (matherr) [HAVE_MATHERR]: Remove; no longer needed.
3439 (init_floatfns): Remove. All uses removed.
3440
3441 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
3442
3443 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Take back
3444 compositeToPoint for OSX < 10.6 (Bug#12390).
3445
3446 2012-09-08 Paul Eggert <eggert@cs.ucla.edu>
3447
3448 * floatfns.c (Ftan): Use tan (x), not (sin (x) / cos (x)).
3449 This produces more-accurate results.
3450
3451 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
3452
3453 * nsterm.m (updateFrameSize): Call setFrame: on the view when size
3454 changes (Bug#12088).
3455
3456 2012-09-08 Chong Yidong <cyd@gnu.org>
3457
3458 * syntax.c (Fstring_to_syntax): Doc fix.
3459
3460 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
3461
3462 * nsterm.m (ns_clip_to_row): Remove code that deals with drawing fringe
3463 in the internal border.
3464 (x_set_window_size): Remove static variables and their usage.
3465 (ns_redraw_scroll_bars): Fix NSTRACE arg.
3466 (ns_after_update_window_line, ns_draw_fringe_bitmap):
3467 Remove fringe/internal border adjustment (Bug#11052).
3468 (ns_draw_fringe_bitmap): Make code more like other terms (xterm.c).
3469 (ns_draw_window_cursor): Remove fringe/internal border adjustment.
3470 (ns_fix_rect_ibw): Remove.
3471 (ns_get_glyph_string_clip_rect): Remove call to ns_fix_rect_ibw.
3472 (ns_dumpglyphs_box_or_relief): Ditto.
3473 (ns_maybe_dumpglyphs_background): Remove fringe/internal border
3474 adjustment.
3475 (ns_dumpglyphs_image): Ditto.
3476 (ns_dumpglyphs_stretch): Fix coding style. Remove fringe/internal
3477 border adjustment.
3478 (ns_set_vertical_scroll_bar): Remove variables barOnVeryLeft/Right and
3479 their usage. Add fringe_extended_p and its use as in other terms.
3480 (ns_judge_scroll_bars): Code style fix. Call updateFrameSize if
3481 scroll bar was removed.
3482 (updateFrameSize): New function.
3483 (windowDidResize): Move code to updateFrameSize and call it.
3484
3485 * nsterm.h (EmacsView): Add updateFrameSize.
3486
3487 2012-09-07 Chong Yidong <cyd@gnu.org>
3488
3489 * textprop.c (Fget_text_property): Minor doc fix (Bug#12323).
3490
3491 * data.c (Flocal_variable_if_set_p): Doc fix (Bug#10713).
3492
3493 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
3494
3495 More signal-handler cleanup (Bug#12327).
3496 * emacs.c (main): Convert three 'signal' calls to 'sigaction' calls.
3497 Problem introduced when merging patches. Noted by Eli Zaretskii in
3498 <http://bugs.gnu.org/12327#67>.
3499 * floatfns.c: Comment fix.
3500 * lisp.h (force_auto_save_soon): Declare regardless of SIGDANGER.
3501 SIGDANGER might not be in scope so "#ifdef SIGDANGER" is not right,
3502 and anyway the declaration is harmless even if SIGDANGER is not defined.
3503 * syssignal.h (SIGIO): Also #undef if (! defined FIONREAD ||
3504 defined BROKEN_FIONREAD). systty.h formerly did this, but other
3505 source files not surprisingly expected syssignal.h to define, or
3506 not define, SIGIO, and it's cleaner to do it that way, for consistency.
3507 Include <sys/ioctl.h>, for FIONREAD.
3508 * systty.h (SIGIO): Do not #undef here; it's now syssignal.h's job.
3509 This eliminates a problem whereby other files mysteriously had
3510 to include "syssignal.h" before including "systty.h" if they
3511 wanted to use "#ifdef SIGIO".
3512
3513 2012-09-07 Eli Zaretskii <eliz@gnu.org>
3514
3515 * w32proc.c (sigaction): New function, emulates Posix 'sigaction'.
3516
3517 * w32.c (sigemptyset): Empty the set.
3518 (sigsetmask, sigmask, sigblock, sigunblock): Remove unused functions.
3519
3520 * alloc.c [ENABLE_CHECKING]: Include signal.h, since we need SIGABRT.
3521
3522 2012-09-07 Dmitry Antipov <dmantipov@yandex.ru>
3523
3524 * alloc.c (mark_buffer): Revert unsafe marking optimization.
3525 (mark_object): Likewise for frame objects.
3526
3527 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
3528
3529 * syssignal.h (handle_on_main_thread): Always declare,
3530 even if FORWARD_SIGNAL_TO_MAIN_THREAD is not defined.
3531 This ports to platforms without HAVE_PTHREAD.
3532
3533 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
3534
3535 Signal-handler cleanup (Bug#12327).
3536 Emacs's signal handlers were written in the old 4.2BSD style with
3537 sigblock and sigmask and so forth, and this led to some
3538 inefficiencies and confusion. Rewrite these to use
3539 pthread_sigmask etc. without copying signal sets around. Also,
3540 get rid of the confusing macros 'SIGNAL_THREAD_CHECK' and
3541 'signal', and instead use functions that do not attempt to take
3542 over the system name space. This patch causes Emacs's text
3543 segment to shrink by 0.7% on my platform, Fedora 17 x86-64.
3544 * alloc.c, emacsgtkfixed.c, nsfns.m, widget.c, xmenu.c:
3545 Do not include <signal.h> or "syssignal.h", as these
3546 modules do not use signals.
3547 * atimer.c, callproc.c, data.c, dispnew.c, emacs.c, floatfns.c:
3548 * gtkutil.c, keyboard.c, process.c, sound.c, sysdep.c, term.c, xterm.c:
3549 Do not include <signal.h>, as "syssignal.h" does that for us now.
3550 * atimer.c (sigmask_atimers): New function.
3551 (block_atimers, unblock_atimers): New functions,
3552 replacing the old macros BLOCK_ATIMERS and UNBLOCK_ATIMERS.
3553 All uses replaced.
3554 * conf_post.h [SIGNAL_H_AHB]: Do not include <signal.h>;
3555 no longer needed here.
3556 * emacs.c (main): Inspect existing signal handler with sigaction,
3557 so that there's no need to block and unblock SIGHUP.
3558 * sysdep.c (struct save_signal): New member 'action', replacing
3559 old member 'handler'.
3560 (save_signal_handlers, restore_signal_handlers):
3561 Use sigaction instead of 'signal' to save and restore.
3562 (get_set_sighandler, set_sighandler) [!WINDOWSNT]:
3563 New function. All users of 'signal' modified to use set_sighandler
3564 if they're writeonly, and to use sys_signal if they're read+write.
3565 (emacs_sigaction_init, forwarded_signal): New functions.
3566 (sys_signal): Remove. All uses replaced by calls to sigaction
3567 and emacs_sigaction_init, or by direct calls to 'signal'.
3568 (sys_sigmask) [!__GNUC__]: Remove; no longer needed.
3569 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove;
3570 all uses replaced by pthread_sigmask etc. calls.
3571 * syssignal.h: Include <signal.h>.
3572 (emacs_sigaction_init, forwarded_signal): New decls.
3573 (SIGMASKTYPE): Remove. All uses replaced by its definiens, sigset_t.
3574 (SIGEMPTYMASK): Remove; all uses replaced by its definiens, empty_mask.
3575 (sigmask, sys_sigmask): Remove; no longer needed.
3576 (sigpause): Remove. All uses replaced by its definiens, sigsuspend.
3577 (sigblock, sigunblock, sigfree):
3578 (sigsetmask) [!defined sigsetmask]:
3579 Remove. All uses replaced by pthread_sigmask.
3580 (signal): Remove. Its remaining uses (with SIG_DFL and SIG_IGN)
3581 no longer need to be replaced, and its typical old uses
3582 are now done via emacs_sigaction_init and sigaction.
3583 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove decls.
3584 (sys_sigdel): Remove; unused.
3585 (NSIG): Remove a FIXME; the code's fine. Remove an unnecessary ifdef.
3586
3587 2012-09-06 Eli Zaretskii <eliz@gnu.org>
3588
3589 * process.c (CAN_HANDLE_MULTIPLE_CHILDREN): Fix a typo that broke
3590 SIGCHLD handling on systems that don't have WNOHANG. (Bug#12327)
3591
3592 2012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
3593
3594 Explicitly mark buffer_defaults and buffer_local_symbols.
3595 * alloc.c (Fgarbage_collect): Mark buffer_defaults and
3596 mark_local_symbols here.
3597 (mark_object): If GC_CHECK_MARKED_OBJECTS, simplify checking
3598 since special buffers aren't marked here any more.
3599 (allocate_buffer): Chain new buffer with all_buffers here...
3600 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): ...and
3601 not here.
3602 (Vbuffer_defaults, Vbuffer_local_symbols): Remove.
3603 (syms_of_buffer): Remove staticpro of the above.
3604 (init_buffer_once): Set names for buffer_defaults and
3605 buffer_local_symbols.
3606
3607 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
3608
3609 Use bool for booleans in font-related modules.
3610 * font.c (font_intern_prop, font_style_to_value)
3611 (font_style_symbolic, font_parse_xlfd, font_parse_fcname)
3612 (generate_otf_features, font_check_otf_features, font_check_otf)
3613 (font_match_p, font_list_entities, font_at):
3614 * fontset.c (fontset_id_valid_p, reorder_font_vector
3615 (fontset_find_font, Fset_fontset_font)
3616 (face_suitable_for_char_p) [0]:
3617 * ftfont.c (fc_initialized, ftfont_get_open_type_spec)
3618 (ftfont_open, ftfont_text_extents, ftfont_check_otf):
3619 (m17n_flt_initialized, ftfont_shape_by_flt):
3620 * ftxfont.c (ftxfont_draw_bitmap, ftxfont_draw):
3621 * nsfont.m (nsfont_draw):
3622 * w32font.c (w32font_draw):
3623 * w32term.c (x_draw_glyphless_glyph_string_foreground):
3624 Use bool for booleans.
3625 * font.h: Adjust to above API changes.
3626 (struct font, struct font_driver, struct font_driver_list):
3627 Use bool for booleans.
3628 (struct font): Remove useless member encoding_type.
3629 All users removed.
3630 * fontset.c, xftfont.c: Omit unnecessary static decls.
3631
3632 2012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
3633
3634 * alloc.c (mark_object): Revert window marking code
3635 since it's unsafe for the Fset_window_configuration.
3636
3637 2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
3638
3639 Fix race conditions with signal handlers and errno (Bug#12327).
3640 Be more systematic about preserving errno whenever a signal
3641 handler returns, even if it's not in the main thread. Do this by
3642 renaming signal handlers to distinguish between signal delivery
3643 and signal handling. All uses changed.
3644 * atimer.c (deliver_alarm_signal): Rename from alarm_signal_handler.
3645 * data.c (deliver_arith_signal): Rename from arith_error.
3646 * dispnew.c (deliver_window_change_signal): Rename from
3647 window_change_signal.
3648 * emacs.c (deliver_error_signal): Rename from fatal_error_signal.
3649 (deliver_danger_signal) [SIGDANGER]: Rename from memory_warning_signal.
3650 * keyboard.c (deliver_input_available_signal): Rename from
3651 input_available_signal.
3652 (deliver_user_signal): Rename from handle_user_signal.
3653 (deliver_interrupt_signal): Rename from interrupt_signal.
3654 * process.c (deliver_pipe_signal): Rename from send_process_trap.
3655 (deliver_child_signal): Rename from sigchld_handler.
3656 * atimer.c (handle_alarm_signal):
3657 * data.c (handle_arith_signal):
3658 * dispnew.c (handle_window_change_signal):
3659 * emacs.c (handle_fatal_signal, handle_danger_signal):
3660 * keyboard.c (handle_input_available_signal):
3661 * keyboard.c (handle_user_signal, handle_interrupt_signal):
3662 * process.c (handle_pipe_signal, handle_child_signal):
3663 New functions, with the actual signal-handling code taken from the
3664 original respective signal handlers, sans the sporadic attempts to
3665 preserve errno, since that's now done by handle_on_main_thread.
3666 * atimer.c (alarm_signal_handler): Remove unnecessary decl.
3667 * emacs.c, floatfns.c, lisp.h: Remove unused FLOAT_CATCH_SIGKILL cruft.
3668 * emacs.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
3669 Move to sysdep.c.
3670 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
3671 Move initialization of main_thread to sysdep.c's init_signals.
3672 * process.c (waitpid) [!WNOHANG]: #define to wait; that's good enough for
3673 our usage, and simplifies the mainline code.
3674 (record_child_status_change): New static function, as a helper
3675 for handle_child_signal, and with most of the old child handler's
3676 contents.
3677 (CAN_HANDLE_MULTIPLE_CHILDREN): New constant.
3678 (handle_child_signal): Use the above.
3679 * sysdep.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
3680 Moved here from emacs.c.
3681 (init_signals) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it;
3682 code moved here from emacs.c's main function.
3683 * sysdep.c, syssignal.h (handle_on_main_thread): New function,
3684 replacing the old SIGNAL_THREAD_CHECK. All uses changed.
3685 This lets callers save and restore errno properly.
3686
3687 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
3688
3689 Remove redundant or unused things here and there.
3690 * lisp.h (CYCLE_CHECK, CHAR_TABLE_TRANSLATE): Remove.
3691 * conf_post.h (RE_TRANSLATE): Use char_table_translate.
3692 * editfns.c (Fcompare_buffer_substrings): Likewise.
3693 * frame.h (struct terminal, struct font_driver_list):
3694 Remove redundant declarations.
3695 * window.h (Qleft, Qright): Likewise.
3696
3697 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
3698
3699 Do not mark objects from deleted buffers, windows and frames.
3700 * alloc.c (mark_buffer): Mark just the buffer if it is dead.
3701 (mark_object): Likewise for windows and frames.
3702
3703 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
3704
3705 * alloc.c (valid_lisp_object_p): Treat killed buffers,
3706 buffer_defaults and buffer_local_symbols as valid objects.
3707 Return special value to denote them.
3708
3709 2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
3710
3711 * fileio.c, filelock.c, floatfns.c, fns.c: Use bool for boolean.
3712 * fileio.c (auto_saving, auto_save_error_occurred, make_temp_name)
3713 (Fexpand_file_name, barf_or_query_if_file_exists, Fcopy_file)
3714 (file_name_absolute_p, Fsubstitute_in_file_name):
3715 (check_executable, check_writable, Ffile_accessible_directory_p)
3716 (Fset_file_selinux_context, Fdefault_file_modes)
3717 (Finsert_file_contents, choose_write_coding_system)
3718 (Fwrite_region, build_annotations, a_write, e_write)
3719 (Fdo_auto_save):
3720 * filelock.c (boot_time_initialized, get_boot_time)
3721 (get_boot_time_1, lock_file_1, within_one_second):
3722 * floatfns.c (in_float):
3723 * fns.c (concat, internal_equal, Frequire, base64_encode_1)
3724 (base64_decode_1, cmpfn_eql, cmpfn_user_defined)
3725 (sweep_weak_table, sweep_weak_hash_tables, secure_hash):
3726 * lisp.h (struct Lisp_Hash_Table.cmpfn):
3727 * window.c (compare_window_configurations):
3728 Use bool for booleans.
3729 * fileio.c (auto_saving_dir_umask, auto_saving_mode_bits)
3730 (Fdefault_file_modes): Now mode_t, not int, for modes.
3731 (Fdo_auto_save): Set a boolean to 1 rather than using ++.
3732 (internal_delete_file): Now returns void, not a (boolean) int,
3733 since nobody was looking at the return value.
3734 * lisp.h, window.h: Adjust to above API changes.
3735
3736 * xdisp.c (set_message): Simplify and reindent last change.
3737
3738 2012-09-05 Juanma Barranquero <lekktu@gmail.com>
3739
3740 * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies.
3741
3742 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
3743
3744 * eval.c (call_debugger): Make the function non-static so that we
3745 can call it from set_message.
3746
3747 * xdisp.c (set_message): Implement the new variable `debug-on-message'.
3748 (syms_of_xdisp): Defvar it and `inhibit-debug-on-message'.
3749
3750 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
3751
3752 Give more-useful info on a fatal error (Bug#12328).
3753 * alloc.c [ENABLE_CHECKING]: Do not include <execinfo.h>.
3754 (die) [ENABLE_CHECKING]: Call fatal_error_backtrace instead
3755 of doing the work ourselves.
3756 * emacs.c (fatal_error_signal): Let fatal_error_backtrace
3757 do most of the work.
3758 (fatal_error_backtrace): New function, taken from the guts
3759 of the old fatal_error_signal, but with a new option to output
3760 a backtrace.
3761 (shut_down_emacs) [!DOS_NT]: Use strsignal to give more-useful
3762 info about the signal than just its number.
3763 * lisp.h (fatal_error_backtrace, emacs_backtrace): New decls.
3764 * sysdep.c: Include <execinfo.h>
3765 (emacs_backtrace): New function, taken partly from the previous
3766 code of the 'die' function.
3767 (emacs_abort): Call fatal_error_backtrace rather than abort.
3768
3769 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
3770
3771 * lread.c (readevalloop): Call internal-macroexpand-for-load to perform
3772 eager (load-time) macro-expansion.
3773 * lisp.mk (lisp): Add macroexp.
3774
3775 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
3776
3777 Simplify redefinition of 'abort' (Bug#12316).
3778 Do not try to redefine the 'abort' function. Instead, redo
3779 the code so that it calls 'emacs_abort' rather than 'abort'.
3780 This removes the need for the NO_ABORT configure-time macro
3781 and makes it easier to change the abort code to do a backtrace.
3782 * .gdbinit: Just stop at emacs_abort, not at w32_abort or abort.
3783 * emacs.c (abort) [!DOS_NT && !NO_ABORT]:
3784 Remove; sysdep.c's emacs_abort now takes its place.
3785 * lisp.h (emacs_abort): New decl. All calls from Emacs code to
3786 'abort' changed to use 'emacs_abort'.
3787 * msdos.c (dos_abort) [defined abort]: Remove; not used.
3788 (abort) [!defined abort]: Rename to ...
3789 (emacs_abort): ... new name.
3790 * sysdep.c (emacs_abort) [!HAVE_NTGUI]: New function, taking
3791 the place of the old 'abort' in emacs.c.
3792 * w32.c, w32fns.c (abort): Do not #undef.
3793 * w32.c (emacs_abort): Rename from w32_abort.
3794
3795 2012-09-04 Eli Zaretskii <eliz@gnu.org>
3796
3797 * w32uniscribe.c (uniscribe_shape): Reverse the sign of
3798 offsets[j].dv, since the y axis of the screen coordinates points
3799 down, while the y axis of the font definition coordinates points
3800 up. This fixes display of Arabic diacritics such as KASRA and
3801 KASRATAN. (Bug#11860)
3802
3803 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
3804
3805 Be more systematic about _setjmp vs setjmp.
3806 * alloc.c (test_setjmp, mark_stack):
3807 * image.c (PNG_LONGJMP) [PNG_LIBPNG_VER < 10500]:
3808 (PNG_JMPBUF) [! (PNG_LIBPNG_VER < 10500)]:
3809 (png_load, my_error_exit, jpeg_load):
3810 * process.c (send_process_trap, send_process):
3811 Uniformly prefer _setjmp and _longjmp to setjmp and longjmp.
3812 The underscored versions are up to 30x faster on some hosts.
3813 Formerly, the code used setjmp+longjmp sometimes and
3814 _setjmp+_longjmp at other times, with no particular reason to
3815 prefer setjmp+longjmp.
3816
3817 2012-09-03 Paul Eggert <eggert@cs.ucla.edu>
3818
3819 Fix minor problem found by static checking.
3820 * buffer.c (Fdelete_all_overlays): Return nil.
3821
3822 2012-09-03 Martin Rudalics <rudalics@gmx.at>
3823
3824 * buffer.c (Fdelete_all_overlays): New function.
3825
3826 2012-09-03 Chong Yidong <cyd@gnu.org>
3827
3828 * gtkutil.c: Add extern decl for Qxft.
3829
3830 2012-09-02 Paul Eggert <eggert@cs.ucla.edu>
3831
3832 * emacs.c, eval.c: Use bool for boolean.
3833 * emacs.c (initialized, inhibit_window_system, running_asynch_code):
3834 (malloc_using_checking) [DOUG_LEA_MALLOC]:
3835 (display_arg) [HAVE_X_WINDOWS || HAVE_NS]:
3836 (noninteractive, no_site_lisp, fatal_error_in_progress, argmatch)
3837 (main, decode_env_path, Fdaemon_initialized):
3838 * eval.c (call_debugger, Finteractive_p, interactive_p):
3839 (unwind_to_catch, Fsignal, wants_debugger, skip_debugger)
3840 (maybe_call_debugger, Fbacktrace):
3841 * process.c (read_process_output, exec_sentinel):
3842 Use bool for booleans.
3843 * emacs.c (shut_down_emacs): Omit unused boolean argument NO_X.
3844 All callers changed.
3845 * eval.c (interactive_p): Omit always-true boolean argument
3846 EXCLUDE_SUBRS_P. All callers changed.
3847 * dispextern.h, lisp.h: Reflect above API changes.
3848 * firstfile.c (dummy): Use the address of 'main', whose signature
3849 won't change, instead of the address of 'initialize', whose
3850 signature just changed from int to bool.
3851 * lisp.h (fatal_error_in_progress): New decl of boolean, moved here ...
3852 * msdos.c (fatal_error_in_progress): ... from here.
3853 * xdisp.c (redisplaying_p): Now a boolean. Set it to 1 instead
3854 of incrementing it.
3855 (redisplay_internal, unwind_redisplay): Simply clear
3856 REDISPLAYING_P when unwinding, instead of saving its previous,
3857 always-false value and then restoring it.
3858
3859 Clean up some extern decls.
3860 Mostly, this hoists extern decls out of .c files and into .h files.
3861 That way, we're more likely to catch errors if the interfaces change.
3862 * alloc.c [USE_GTK]: Include "gtkutil.h" so that we need not
3863 declare xg_mark_data.
3864 * dispextern.h (x_frame_parm_handlers):
3865 * font.h (Qxft):
3866 * lisp.h (Qlexical_binding, Qinternal_interpreter_environment)
3867 (Qextra_light, Qlight, Qsemi_light, Qsemi_bold, Qbold, Qextra_bold)
3868 (Qultra_bold, Qoblique, Qitalic):
3869 Move extern decl here from .c file.
3870 * alloc.c (xg_mark_data) [USE_GTK]:
3871 * doc.c (Qclosure):
3872 * eval.c (Qlexical_binding):
3873 * fns.c (time) [!HAVE_UNISTD_H]:
3874 * gtkutil.c (Qxft, Qnormal, Qextra_light, Qlight, Qsemi_light)
3875 (Qsemi_bold, Qbold, Qextra_bold, Qultra_bold, Qoblique, Qitalic):
3876 * image.c (Vlibrary_cache, QCloaded_from) [HAVE_NTGUI]:
3877 * lread.c (Qinternal_interpreter_environment):
3878 * minibuf.c (Qbuffer):
3879 * process.c (QCfamily, QCfilter):
3880 * widget.c (free_frame_faces):
3881 * xfaces.c (free_frame_menubar) [USE_X_TOOLKIT]:
3882 * xfont.c (x_clear_errors):
3883 * xterm.c (x_frame_parm_handlers):
3884 Remove now-redundant extern decls.
3885 * keyboard.c, keyboard.h (ignore_mouse_drag_p) [USE_GTK || HAVE_NS]:
3886 * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic):
3887 Now static.
3888 * xfaces.c: Remove unnecessary static decls.
3889 * xterm.c (updating_frame): Remove decl of nonexistent object.
3890
3891 * Makefile.in (gl-stamp): Don't scan $(SOME_MACHINE_OBJECTS)
3892 when building globals.h, as the objects that are not built on
3893 this host are not needed to compile C files on this host.
3894
3895 2012-09-02 Jan Djärv <jan.h.d@swipnet.se>
3896
3897 * gtkutil.h: Remove prototype for x_wm_set_size_hint.
3898
3899 * frame.h: Add missing prototype for x_wm_set_size_hint.
3900
3901 2012-09-02 Paul Eggert <eggert@cs.ucla.edu>
3902
3903 * doc.c, editfns.c, insdel.c, intervals.c: Use bool for boolean.
3904 * doc.c (read_bytecode_char, get_doc_string, reread_doc_file)
3905 (Fdocumentation, Fdocumentation_property, Fsnarf_documentation)
3906 (Fsubstitute_command_keys):
3907 * editfns.c (region_limit, find_field, Fconstrain_to_field)
3908 (save_excursion_save, save_excursion_restore)
3909 (disassemble_lisp_time, decode_time_components, emacs_nmemftime)
3910 (format_time_string, general_insert_function)
3911 (make_buffer_string, make_buffer_string_both)
3912 (Fsubst_char_in_region, Ftranslate_region_internal, Fformat):
3913 * insdel.c (check_markers, gap_left, adjust_markers_for_insert)
3914 (copy_text, insert_1, insert_1_both, insert_from_string)
3915 (insert_from_string_before_markers, insert_from_string_1)
3916 (insert_from_buffer, insert_from_buffer_1, replace_range)
3917 (replace_range_2, del_range_1, del_range_byte, del_range_both)
3918 (del_range_2, modify_region):
3919 * intervals.c (intervals_equal, balance_possible_root_interval)
3920 (adjust_intervals_for_insertion, merge_properties_sticky)
3921 (graft_intervals_into_buffer, lookup_char_property)
3922 (adjust_for_invis_intang, set_point_both)
3923 (get_property_and_range, compare_string_intervals)
3924 (set_intervals_multibyte_1, set_intervals_multibyte):
3925 * keyboard.c (decode_timer):
3926 Use bool for boolean.
3927 * intervals.h, lisp.h, systime.h: Reflect above API changes.
3928 * editfns.c (struct info): Use 1-bit unsigned bitfields for booleans.
3929
3930 2012-09-02 Chong Yidong <cyd@gnu.org>
3931
3932 * keymap.c (push_key_description): Print M-TAB as C-M-i
3933 (Bug#11758).
3934
3935 2012-09-02 Juanma Barranquero <lekktu@gmail.com>
3936
3937 * makefile.w32-in (CCL_H, W32FONT_H): New macros.
3938 (ATIMER_H, FONT_H, $(BLD)/alloc.$(O), $(BLD)/callproc.$(O))
3939 ($(BLD)/editfns.$(O), $(BLD)/ccl.$(O), $(BLD)/chartab.$(O))
3940 ($(BLD)/coding.$(O), $(BLD)/sysdep.$(O), $(BLD)/fontset.$(O))
3941 ($(BLD)/sysdep.$(O), $(BLD)/w32fns.$(O), $(BLD)/keyboard.$(O))
3942 ($(BLD)/w32term.$(O), $(BLD)/w32menu.$(O), $(BLD)/process.$(O))
3943 ($(BLD)/w32font.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
3944
3945 2012-09-01 Eli Zaretskii <eliz@gnu.org>
3946
3947 * w32uniscribe.c (uniscribe_shape): Handle correctly the case of
3948 more than one grapheme cluster passed to the shaper: compute the
3949 offset adjustment values separately for each cluster. (Bug#11860)
3950
3951 * image.c: Restore mistakenly removed inclusion of w32.h. Without
3952 it, GCC doesn't see prototypes of w32_delayed_load, and complains
3953 about implicit conversions from integer to pointer.
3954
3955 2012-09-01 Daniel Colascione <dancol@dancol.org>
3956
3957 * w32fns.c (x_display_info_for_name): Prevent crash if w32 window
3958 system used too early.
3959
3960 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
3961
3962 Better seed support for (random).
3963 * emacs.c (main): Call init_random.
3964 * fns.c (Frandom): Set the seed from a string argument, if given.
3965 Remove long-obsolete Gentzel cruft.
3966 * lisp.h, sysdep.c (seed_random): Now takes address and size, not long.
3967 (init_random): New function.
3968
3969 2012-09-01 Daniel Colascione <dancol@dancol.org>
3970
3971 * xterm.h: Add header guards. Declare x_menubar_window_to_frame.
3972 Remove x_set_frame_alpha, x_bitmap_icon, x_make_frame_visible,
3973 x_make_frame_invisible, x_iconify_frame, x_free_frame_resources,
3974 x_wm_set_size_hint, x_query_colors, x_real_positions,
3975 x_set_menu_bar_lines, x_char_width, x_char_height, x_sync,
3976 x_set_tool_bar_lines, x_activate_menubar, and free_frame_menubar,
3977 all of which have been moved to common code.
3978
3979 * xfaces.c: Include TERM_HEADER instead of listing all possible
3980 window-system headers.
3981
3982 * w32xfns.c (x_sync): Correct definition of x_sync (a no-op here)
3983 to match header.
3984
3985 * w32term.h (FRAME_X_WINDOW): Use FRAME_W32_WINDOW instead of
3986 directly accessing frame internals.
3987
3988 * w32font.h: Include font.h. Define syms_of_w32font and
3989 globals_of_w32font.
3990
3991 * process.c: Include TERM_HEADER instead of listing all possible
3992 window-system headers.
3993
3994 * nsterm.h: Remove declarations now in frame.h.
3995 Define FRAME_X_SCREEN, FRAME_X_VISUAL.
3996
3997 * menu.c: Include TERM_HEADER instead of listing all possible
3998 window-system headers.
3999
4000 * keyboard.h: Declare ignore_mouse_drag_p whenever we have a
4001 window system.
4002
4003 * keyboard.c: Include TERM_HEADER instead of listing all possible
4004 window-system headers.
4005
4006 * image.c: Include TERM_HEADER instead of listing all possible
4007 window-system headers. Declare Vlibrary_cache when compiling for
4008 Windows.
4009
4010 * gtkutil.h (xg_list_node_): Include xterm.h to pick up needed
4011 window system declarations.
4012
4013 * frame.h: Move common functions here: set_frame_menubar,
4014 x_set_window_size, x_sync, x_get_focus_frame,
4015 x_set_mouse_position, x_set_mouse_pixel_position,
4016 x_make_frame_visible, x_make_frame_invisible, x_iconify_frame,
4017 x_char_width, x_char_height, x_pixel_width, x_pixel_height,
4018 x_set_frame_alpha, x_set_menu_bar_lines, x_set_tool_bar_lines,
4019 x_activate_menubar, x_real_positions, x_bitmap_icon,
4020 x_set_menu_bar_lines, free_frame_menubar, x_free_frame_resources,
4021 and x_query_colors.
4022
4023 * frame.c: Include TERM_HEADER instead of listing all possible
4024 window-system headers.
4025
4026 * font.c: Include TERM_HEADER instead of listing all possible
4027 window-system headers.
4028
4029 * emacs.c: Include TERM_HEADER.
4030
4031 * dispnew.c: Include TERM_HEADER instead of listing all possible
4032 window-system headers.
4033
4034 * ccl.h: Include character.h.
4035
4036 * Makefile.in: Define WINDOW_SYSTEM_OBJ to hold objects needed for
4037 the current window system; include in list of objects to link into
4038 Emacs.
4039
4040 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
4041
4042 Remove mark_ttys function and fix tty_display_info initialization.
4043 * lisp.h (mark_ttys): Remove prototype.
4044 * alloc.c (Fgarbage_collect): Remove redundant (and the only) call
4045 to mark_ttys because all possible values of 'top_frame' slot are
4046 the frames which are reachable from Vframe_list.
4047 * term.c (mark_ttys): Remove.
4048 (init_tty): Safely initialize 'top_frame' slot with Qnil.
4049
4050 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
4051
4052 Change struct frame bitfields from unsigned char to unsigned.
4053 * frame.h (struct frame): Change type of 'display_preempted',
4054 'visible', 'iconified', 'has_minibuffer', 'wants_modeline',
4055 'auto_raise', 'auto_lower', 'no_split', 'explicit_name',
4056 'window_sizes_changed', 'mouse_moved' and 'pointer_invisible'
4057 bitfields from unsigned char to unsigned.
4058
4059 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
4060
4061 Remove unused member of struct x_output and struct w32_output.
4062 * xterm.h (struct x_output): Remove unused field 'needs_exposure'.
4063 * w32term.h (struct w32_output): Likewise.
4064
4065 2012-08-30 Jan Djärv <jan.h.d@swipnet.se>
4066
4067 * gtkutil.c (x_wm_set_size_hint): Use 1 col for base_width so it
4068 does not become zero (Bug#12234).
4069
4070 2012-08-30 Paul Eggert <eggert@cs.ucla.edu>
4071
4072 * dispnew.c (update_frame_1): Pacify gcc -Wstrict-overflow
4073 for GCC 4.7.1 x86-64.
4074
4075 2012-08-30 Glenn Morris <rgm@gnu.org>
4076
4077 * lread.c (init_lread): For out-of-tree builds, only add the
4078 source directory's site-lisp dir to the load-path if it exists,
4079 consistent with in-tree builds. (Bug#12302)
4080
4081 2012-08-28 Jan Djärv <jan.h.d@swipnet.se>
4082
4083 * nsmenu.m (initWithContentRect:styleMask:backing:defer:): Initialize
4084 button_values to NULL. Call setStykeMask so dialogs get a close button.
4085 (windowShouldClose:): Set window_closed.
4086 (dealloc): New member, free button_values.
4087 (process_dialog:): Make member function. Remove window argument,
4088 replace window with self. Count buttons and allocate and store values
4089 in button_values.
4090 (addButton:value:row:): value is int with the name tag. Call setTag
4091 with tag. Remove return self, declare return value as void.
4092 (addString:row:): Remove return self, declare return value as void.
4093 (addSplit): Remove return self, declare return value as void.
4094 (clicked:): Remove return self, declare return value as void.
4095 Set dialog_return to button_values[seltag]. Code formatting change.
4096 (initFromContents:isQuestion:): Adjust call to process_dialog.
4097 Code formatting change.
4098 (timeout_handler:): Set timer_fired to YES.
4099 (runDialogAt:): Set timer_fired to NO.
4100 Handle click on close button as quit.
4101
4102 * nsterm.h (EmacsDialogPanel): Make timer_fired BOOL.
4103 Add window_closed and button_values. Add void as return value for
4104 add(Button|String|Split). addButton takes int instead of Lisp_Object.
4105 Add process_dialog as new member.
4106
4107 2012-08-28 Eli Zaretskii <eliz@gnu.org>
4108
4109 * ralloc.c (free_bloc): Don't dereference a 'heap' structure if it
4110 is not one of the heaps we manage. (Bug#12242)
4111
4112 2012-08-28 Glenn Morris <rgm@gnu.org>
4113
4114 * eval.c (Fcalled_interactively_p): Doc fix. (Bug#11747)
4115
4116 2012-08-28 Martin Rudalics <rudalics@gmx.at>
4117
4118 * window.c (Fset_window_configuration): Remove handling of
4119 auto-buffer-name window parameter. Install revision of reverted
4120 fix.
4121
4122 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
4123
4124 Do not allow to set major mode for a dead buffer.
4125 * buffer.c (Fset_buffer_major_mode): Signal an error
4126 if the buffer is dead.
4127 (Fother_buffer, other_buffer_safely): Remove redundant
4128 nested declaration.
4129
4130 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
4131
4132 Always use set_buffer_if_live to restore original buffer at unwind.
4133 * buffer.h (record_unwind_current_buffer): New function.
4134 * bytecode.c, dispnew.c, editfns.c, fileio.c, fns.c, insdel.c:
4135 * keyboard.c, keymap.c, minibuf.c, print.c, process.c, textprop.c:
4136 * undo.c, window.c: Adjust users.
4137 * buffer.c (set_buffer_if_live): Fix comment.
4138
4139 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
4140
4141 Fix usage of set_buffer_internal.
4142 * buffer.h (set_buffer_internal): Make it BUFFER_INLINE.
4143 * buffer.c (set_buffer_if_live): Use set_buffer_internal.
4144 * coding.c (decode_coding): Omit redundant test.
4145 * fileio.c (decide_coding_unwind): Likewise.
4146 * fns.c (secure_hash): Likewise.
4147 * insdel.c (modify_region): Likewise.
4148 * keyboard.c (command_loop_1): Likewise.
4149 * print.c (PRINTFINISH): Likewise.
4150 * xdisp.c (run_window_scroll_functions): Use set_buffer_internal.
4151
4152 2012-08-27 Paul Eggert <eggert@cs.ucla.edu>
4153
4154 * dispnew.c: Use bool for boolean.
4155 (frame_garbaged, display_completed, delayed_size_change)
4156 (fonts_changed_p, add_window_display_history)
4157 (add_frame_display_history, verify_row_hash)
4158 (adjust_glyph_matrix, clear_window_matrices, glyph_row_slice_p)
4159 (row_equal_p, realloc_glyph_pool)
4160 (allocate_matrices_for_frame_redisplay)
4161 (showing_window_margins_p)
4162 (adjust_frame_glyphs_for_frame_redisplay)
4163 (build_frame_matrix_from_leaf_window, make_current)
4164 (mirrored_line_dance, mirror_line_dance, update_frame)
4165 (update_window_tree, update_single_window)
4166 (check_current_matrix_flags, update_window, update_text_area)
4167 (update_window_line, set_window_update_flags, scrolling_window)
4168 (update_frame_1, scrolling, buffer_posn_from_coords)
4169 (do_pending_window_change, change_frame_size)
4170 (change_frame_size_1, sit_for):
4171 Use bool for boolean.
4172 (clear_glyph_matrix_rows): Rename from enable_glyph_matrix_rows,
4173 and remove last int (actually boolean) argument, which was always 0.
4174 All callers changed.
4175 * dispextern.h, frame.h, lisp.h: Reflect above API changes.
4176 * dispextern.h (struct composition_it): Use bool for boolean.
4177 (struct glyph_matrix): Don't assume buffer sizes can fit in 'int'.
4178 (struct bidi_it): Use unsigned:1, not int, for boolean prev_was_pdf.
4179 * dired.c (file_name_completion):
4180 Use bool for boolean. (This was missed in an earlier change.)
4181
4182 2012-08-27 Martin Rudalics <rudalics@gmx.at>
4183
4184 * window.c (Fset_window_configuration): Revert first part of
4185 last change.
4186
4187 2012-08-27 Jan Djärv <jan.h.d@swipnet.se>
4188
4189 * nsterm.h (NSPanel): New class variable dialog_return.
4190
4191 * nsmenu.m (initWithContentRect:styleMask:backing:defer:):
4192 Initialize dialog_return.
4193 (windowShouldClose:): Use stop instead of stopModalWithCode.
4194 (clicked:): Ditto, and also set dialog_return (Bug#12258).
4195 (timeout_handler:): Use stop instead of abortModal. Send a dummy
4196 event.
4197 (runDialogAt:): Make ret Lisp_Object. Set it from dialog_return when
4198 modal loop returns.
4199
4200 2012-08-27 Paul Eggert <eggert@cs.ucla.edu>
4201
4202 * composite.c, data.c, dbusbind.c, dired.c: Use bool for booleans.
4203 * composite.c (find_composition, composition_gstring_p)
4204 (composition_reseat_it, find_automatic_composition):
4205 * data.c (let_shadows_buffer_binding_p)
4206 (let_shadows_global_binding_p, set_internal, make_blv)
4207 (Fmake_variable_buffer_local, Fmake_local_variable)
4208 (Fmake_variable_frame_local, arithcompare, cons_to_unsigned)
4209 (cons_to_signed, arith_driver):
4210 * dbusbind.c (xd_in_read_queued_messages):
4211 * dired.c (directory_files_internal, file_name_completion):
4212 Use bool for booleans.
4213 * dired.c (file_name_completion):
4214 * process.h (fd_callback):
4215 Omit int (actually boolean) argument. It wasn't being used.
4216 All uses changed.
4217 * composite.h, lisp.h: Reflect above API changes.
4218
4219 * cmds.c, coding.c: Use bool for booleans.
4220 * cmds.c (move_point, Fself_insert_command):
4221 * coding.h (struct composition status, struct coding_system):
4222 * coding.c (detect_coding_utf_8, encode_coding_utf_8)
4223 (detect_coding_utf_16, encode_coding_utf_16, detect_coding_emacs_mule)
4224 (emacs_mule_char, decode_coding_emacs_mule)
4225 (encode_coding_emacs_mule, detect_coding_iso_2022)
4226 (decode_coding_iso_2022, encode_invocation_designation)
4227 (encode_designation_at_bol, encode_coding_iso_2022)
4228 (detect_coding_sjis, detect_coding_big5, decode_coding_sjis)
4229 (decode_coding_big5, encode_coding_sjis, encode_coding_big5)
4230 (detect_coding_ccl, encode_coding_ccl, decode_coding_raw_text)
4231 (encode_coding_raw_text, detect_coding_charset)
4232 (decode_coding_charset, encode_coding_charset, detect_eol)
4233 (detect_coding, get_translation_table, produce_chars)
4234 (consume_chars, reused_workbuf_in_use)
4235 (make_conversion_work_buffer, code_conversion_save)
4236 (decode_coding_object, encode_coding_object)
4237 (detect_coding_system, char_encodable_p)
4238 (Funencodable_char_position, code_convert_region)
4239 (code_convert_string, code_convert_string_norecord)
4240 (Fset_coding_system_priority):
4241 * fileio.c (Finsert_file_contents):
4242 Use bool for booleans.
4243 * coding.h, lisp.h: Reflect above API changes.
4244 * coding.c: Remove unnecessary static function decls.
4245 (detect_coding): Use unsigned, not signed, to copy an unsigned field.
4246 (decode_coding, encode_coding, decode_coding_gap): Return 'void',
4247 not a boolean 'int', since callers never look at the return value.
4248 (ALLOC_CONVERSION_WORK_AREA): Assume caller returns 'void', not 'int'.
4249 * coding.h (decoding_buffer_size, encoding_buffer_size)
4250 (emacs_mule_string_char): Remove unused extern decls.
4251 (struct iso_2022_spec, struct coding_system):
4252 Use 'unsigned int : 1' for boolean fields, since there's more than one.
4253 (struct emacs_mule_spec): Remove unused field 'full_support'.
4254 All initializations removed.
4255 * cmds.c (internal_self_insert): Don't assume EMACS_INT fits in 'int'.
4256
4257 2012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
4258
4259 Fix spare memory change (Bug#12286).
4260 * alloc.c (mark_maybe_pointer): Handle MEM_TYPE_SPARE.
4261 (valid_lisp_object_p): Likewise.
4262
4263 2012-08-27 Martin Rudalics <rudalics@gmx.at>
4264
4265 * window.c (Fset_window_configuration): Record any window's old
4266 buffer if it's replaced (see Bug#8789). If the new current
4267 buffer doesn't appear in the selected window, go to its old
4268 point (Bug#12208).
4269
4270 2012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
4271
4272 Special MEM_TYPE_SPARE to denote reserved memory.
4273 * alloc.c (enum mem_type): New memory type.
4274 (refill_memory_reserve): Use new type for spare memory.
4275 This prevents live_cons_p and live_string_p from incorrect
4276 detection of uninitialized objects from spare memory as live.
4277
4278 2012-08-26 Paul Eggert <eggert@cs.ucla.edu>
4279
4280 Spelling fixes.
4281 * Makefile.in (.PHONY): versioclean -> versionclean.
4282
4283 Remove unused external symbols.
4284 * data.c (Qcons, Qfloat, Qmisc, Qstring, Qvector):
4285 * window.c (Qwindow_valid_p, decode_valid_window):
4286 Now static, not extern.
4287 * data.c (Qinterval): Remove; unused.
4288 (syms_of_data): Do not define 'interval'.
4289 * lisp.h (Qinteger, Qstring, Qmisc, Qvector, Qfloat, Qcons):
4290 * window.h (decode_valid_window):
4291 Remove decls.
4292
4293 * character.c, charset.c, chartab.c: Use bool for booleans.
4294 * character.c (lisp_string_width, string_count_byte8)
4295 (string_escape_byte8):
4296 * charset.c (charset_map_loaded, load_charset_map, read_hex):
4297 (load_charset_map_from_file, map_charset_chars)
4298 (Fdefine_charset_internal, define_charset_internal)
4299 (Fdeclare_equiv_charset, find_charsets_in_text)
4300 (Ffind_charset_region, char_charset, Fiso_charset):
4301 * chartab.c (sub_char_table_ref, sub_char_table_ref_and_range)
4302 (sub_char_table_set, sub_char_table_set_range)
4303 (char_table_set_range, optimize_sub_char_table)
4304 (map_sub_char_table):
4305 Use bool for boolean.
4306 * character.c (str_to_unibyte): Omit last boolean argument; it was
4307 always 0. All callers changed.
4308 * character.h, charset.h: Adjust to match previous changes.
4309 * character.h (char_printable_p): Remove decl of nonexistent function.
4310 * charset.h (struct charset): Members code_linear_p, iso_chars_96,
4311 ascii_compatible_p, supplementary_p, compact_codes_p, unified_p
4312 are all boolean, so make them single-bit bitfields.
4313
4314 * lisp.h (ASET): Remove attempt to detect side effects.
4315 It was meant to be temporary and it often doesn't work,
4316 because when IDX has side effects the behavior of IDX==IDX
4317 is undefined. See Stefan Monnier in
4318 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00762.html>.
4319
4320 2012-08-26 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
4321
4322 * lisp.h (functionp): New function (extracted from Ffunctionp).
4323 (FUNCTIONP): Use it.
4324 * eval.c (Ffunctionp): Use it.
4325
4326 2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
4327
4328 * xgselect.c (xg_select): Use auto storage for the GPollFD buffer
4329 as that's faster and simpler than static storage. Don't bother
4330 with the g_main_context_query overhead if g_main_context_pending
4331 says no events are pending.
4332 (gfds, gfds_size): Remove these static vars.
4333 (xgselect_initialize): Remove; no longer needed.
4334 All uses and decls removed.
4335
4336 * emacs.c (fatal_error_signal_hook): Remove.
4337 All uses removed. This leftover from old code was always 0.
4338
4339 * casefiddle.c, casetab.c, category.c: Use bool for boolean.
4340 * casefiddle.c (casify_object, casify_region):
4341 * casetab.c (set_case_table):
4342 * category.c, category.h (word_boundary_p):
4343 * category.h (CHAR_HAS_CATEGORY):
4344 Use bool for booleans, instead of int.
4345
4346 2012-08-25 Eli Zaretskii <eliz@gnu.org>
4347
4348 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on $(GNU_LIB)/execinfo.h.
4349
4350 2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
4351
4352 On assertion failure, print backtrace if available.
4353 * alloc.c [ENABLE_CHECKING]: Include <execinfo.h>.
4354 (die) [ENABLE_CHECKING]: Print a backtrace if available.
4355 * Makefile.in (LIB_EXECINFO): New macro.
4356 (LIBES): Use it.
4357
4358 * bytecode.c, callint.c, callproc.c: Use bool for boolean.
4359 * bytecode.c (exec_byte_code):
4360 * callint.c (check_mark, Fcall_interactively):
4361 * callproc.c (Fcall_process, add_env, child_setup, getenv_internal_1)
4362 (getenv_internal, sync_process_alive, call_process_exited):
4363 * lisp.h (USE_SAFE_ALLOCA):
4364 Use bool for booleans, instead of int.
4365 * lisp.h, process.h: Adjust prototypes to match above changes.
4366 * callint.c (Fcall_interactively): Don't assume the mark's
4367 offset fits in 'int'.
4368
4369 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
4370
4371 * buffer.c, buffer.h: Use bool for boolean.
4372 * buffer.c (reset_buffer_local_variables)
4373 (buffer_lisp_local_variables, Fset_buffer_modified_p)
4374 (Frestore_buffer_modified_p, Fset_buffer_multibyte):
4375 (overlays_at, overlays_in, mouse_face_overlay_overlaps)
4376 (overlay_touches_p, overlay_strings, Foverlay_put)
4377 (report_overlay_modification, call_overlay_mod_hooks):
4378 (mmap_enlarge, mmap_set_vars):
4379 * buffer.h (buffer_has_overlays, uppercasep, lowercasep):
4380 Use bool for booleans, instead of int.
4381 * buffer.c (compact_buffer, mmap_free_1): Return void, not int,
4382 since the 1-or-0 return value is always ignored anyway.
4383 (mmap_initialized_p):
4384 * buffer.h (struct buffer_text.inhibit_shrinking): Now bool, not int.
4385 * buffer.h, lisp.h: Adjust prototypes to match above changes.
4386
4387 2012-08-23 Paul Eggert <eggert@cs.ucla.edu>
4388
4389 * bidi.c: Use bool for boolean.
4390 This is a bit more readable, and makes the text segment of bidi.o
4391 0.4% smaller on my platform (GCC 4.7.1 x86-64, Fedora 15).
4392 Presumably it's faster too.
4393 (bidi_initialized, bidi_ignore_explicit_marks_for_paragraph_level):
4394 Now bool.
4395 (bidi_cache_find_level_change, bidi_cache_iterator_state)
4396 (bidi_unshelve_cache, bidi_init_it, bidi_count_bytes)
4397 (bidi_char_at_pos, bidi_fetch_char, bidi_paragraph_init)
4398 (bidi_explicit_dir_char, bidi_level_of_next_char)
4399 (bidi_find_other_level_edge, bidi_move_to_visually_next):
4400 Use bool for booleans, instead of int.
4401 * dispextern.h (bidi_init_it, bidi_paragraph_init)
4402 (bidi_unshelve_cache): Adjust decls to match code.
4403
4404 2012-08-23 Martin Rudalics <rudalics@gmx.at>
4405
4406 * keyboard.c (Fposn_at_x_y): Do not allow internal window as
4407 argument.
4408
4409 2012-08-23 Paul Eggert <eggert@cs.ucla.edu>
4410
4411 * atimer.c, atimer.h (turn_on_atimers): Use bool for boolean.
4412 * atimer.h: Include <stdbool.h>.
4413
4414 2012-08-22 Dan Nicolaescu <dann@gnu.org>
4415
4416 * frame.h (FRAME_W32_P, FRAME_MSDOS_P, FRAME_NS_P): Change to
4417 compile time tests instead of run time tests on systems that do
4418 not use them.
4419 (FRAME_MAC_P): Remove leftover from deleted code.
4420 * frame.c (syms_of_frame): Remove leftover from deleted code.
4421
4422 2012-08-22 Jan Djärv <jan.h.d@swipnet.se>
4423
4424 * nsterm.m (insertText:): Don't clear modifiers if code is space.
4425
4426 2012-08-22 Paul Eggert <eggert@cs.ucla.edu>
4427
4428 * fontset.c (FONTSET_ADD): Return void, not Lisp_Object.
4429 Otherwise, the compiler complains about (A?B:C) where B is void
4430 and C is Lisp_Object. This fixes an incompatibility with Sun C 5.12.
4431 (fontset_add): Return void, for FONTSET_ADD.
4432
4433 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
4434
4435 * alloc.c: Use bool for booleans.
4436 (gc_in_progress, abort_on_gc)
4437 (setjmp_tested_p) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
4438 (dont_register_blocks) [GC_MALLOC_CHECK]:
4439 (suppress_checking) [ENABLE_CHECKING]: Now bool, not int.
4440 (check_string_bytes, make_specified_string, memory_full)
4441 (live_string_p, live_cons_p, live_symbol_p, live_float_p)
4442 (live_misc_p, live_vector_p, live_buffer_p, mark_maybe_object)
4443 (mark_stack, valid_pointer_p, make_pure_string)
4444 (Fgarbage_collect, survives_gc_p, gc_sweep):
4445 Use bool for booleans, instead of int.
4446 (test_setjmp) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
4447 Remove unused local.
4448 * alloc.c (PURE_POINTER_P):
4449 * lisp.h (STRING_MULTIBYTE): Document that it returns a boolean.
4450 * editfns.c (Fformat):
4451 * fileio.c (Fexpand_file_name, Fsubstitute_in_file_name)
4452 (Fdo_auto_save):
4453 * fns.c (sweep_weak_table):
4454 * lisp.h (suppress_checking, push_message, survives_gc_p)
4455 (make_pure_string, gc_in_progress, abort_on_gc):
4456 * lread.c (readchar, read1):
4457 * print.c (Fprin1_to_string):
4458 * xdisp.c (push_message):
4459 Use bool for booleans affected directly or indirectly by
4460 alloc.c's changes.
4461
4462 Make recently-introduced setters macros.
4463 * fontset.c (set_fontset_id, set_fontset_name, set_fontset_ascii)
4464 (set_fontset_base, set_fontset_frame, set_fontset_nofont_face)
4465 (set_fontset_default, set_fontset_fallback): Rename from their
4466 upper-case counterparts, and make them functions rather than macros.
4467 This is more consistent with the other recently-introduced setters.
4468 These don't need to be inline, since they're local.
4469
4470 2012-08-21 Jan Djärv <jan.h.d@swipnet.se>
4471
4472 * nsterm.m (fd_handler:): Alloc and release a NSAutoreleasePool in
4473 the loop (Bug#12247).
4474
4475 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
4476
4477 * lisp.h (vcopy): Use memcpy rather than our own loop.
4478 This fixes a performance regression introduced by the recent
4479 addition of vcopy. This means 'vcopy' will need to be modified
4480 for a copying collector, but that's OK. Also, tighten the
4481 checking in the assertion.
4482
4483 2012-08-21 Eli Zaretskii <eliz@gnu.org>
4484
4485 * w32uniscribe.c (uniscribe_shape): Fix producing gstring
4486 components for RTL text (Bug#11860). Adjust X-OFFSET of each
4487 non-base glyph for the width of the base character, according to
4488 what x_draw_composite_glyph_string_foreground expects.
4489 Generate WADJUST value according to composition_gstring_width's
4490 expectations, to produce correct width of the composed character.
4491 Reverse the sign of the DU offset produced by ScriptPlace.
4492
4493 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
4494
4495 * dbusbind.c (xd_remove_watch): Do not assume C99 comments.
4496
4497 2012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
4498
4499 Avoid direct writes to contents member of struct Lisp_Vector.
4500 * lisp.h (vcopy): New function to copy data into vector.
4501 * dispnew.c (Fframe_or_buffer_changed_p): Use AREF and ASET.
4502 * fns.c (Ffillarray): Use ASET.
4503 * keyboard.c (timer_check_2): Use AREF and ASET.
4504 (append_tool_bar_item, Frecent_keys): Use vcopy.
4505 * lread.c (read_vector): Use ASET.
4506 * msdos.c (Frecent_doskeys): Use vcopy.
4507 * xface.c (Finternal_copy_lisp_face): Use vcopy.
4508 (Finternal_merge_in_global_face): Use ASET and vcopy.
4509 * xfont.c (xfont_list_pattern): Likewise.
4510
4511 2012-08-21 Martin Rudalics <rudalics@gmx.at>
4512
4513 * window.c (Fwindow_point): For the selected window always return
4514 the position of its buffer's point.
4515 (Fset_window_point): For the selected window always go in its
4516 buffer to the specified position.
4517
4518 2012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
4519
4520 Setter macros for fontsets.
4521 * fontset.c (SET_FONTSET_ID, SET_FONTSET_NAME, SET_FONTSET_ASCII)
4522 (SET_FONTSET_BASE, SET_FONTSET_FRAME, SET_FONTSET_NOFONT_FACE)
4523 (SET_FONTSET_DEFAULT, SET_FONTSET_FALLBACK): New macros.
4524 Adjust users.
4525
4526 2012-08-20 Glenn Morris <rgm@gnu.org>
4527
4528 * Makefile.in (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
4529 Don't assume that `ln -f' works.
4530
4531 2012-08-20 Eli Zaretskii <eliz@gnu.org>
4532
4533 * .gdbinit: Use "set $dummy = ..." to avoid warnings from GDB 7.5
4534 and later about non-assignments with no effect. See discussion at
4535 http://sourceware.org/ml/gdb-patches/2012-08/msg00518.html for
4536 details.
4537
4538 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
4539
4540 Inline setter functions for Lisp_Objects slots of struct specbinding.
4541 * eval.c (set_specpdl_symbol, set_specpdl_old_value): New functions.
4542 Adjust users.
4543
4544 2012-08-20 Martin Rudalics <rudalics@gmx.at>
4545
4546 * window.c (select_window): Always make selected window's buffer
4547 current.
4548
4549 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
4550
4551 Use AREF and ASET for docstrings of category tables.
4552 * category.h (CATEGORY_DOCSTRING): Use AREF.
4553 (SET_CATEGORY_DOCSTRING): Use ASET.
4554 * category.c (Fdefine_category): Use SET_CATEGORY_DOCSTRING.
4555
4556 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
4557
4558 Inline setter functions for hash table members.
4559 * lisp.h (set_hash_key, set_hash_value, set_hash_next)
4560 (set_hash_hash, set_hash_index): Rename with _slot suffix.
4561 (set_hash_key_and_value, set_hash_index, set_hash_next)
4562 (set_hash_hash): New functions.
4563 * charset.c, fns.c: Adjust users.
4564
4565 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
4566
4567 Inline getter and setter functions for per-buffer values.
4568 * buffer.h (per_buffer_default, set_per_buffer_default)
4569 (per_buffer_value, set_per_buffer_value): New functions.
4570 (PER_BUFFER_VALUE, PER_BUFFER_DEFAULT): Remove.
4571 * buffer.c, data.c: Adjust users.
4572
4573 2012-08-20 Juanma Barranquero <lekktu@gmail.com>
4574
4575 * makefile.w32-in ($(BLD)/vm-limit.$(O)): Update dependencies.
4576
4577 2012-08-19 Paul Eggert <eggert@cs.ucla.edu>
4578
4579 Rely on <config.h> + <unistd.h> to declare 'environ',
4580 as gnulib does this if the system doesn't.
4581 * callproc.c, editfns.c, process.c (environ) [!USE_CRT_DLL]:
4582 Remove declaration. MS-Windows declares it on stdlib.h which is
4583 included by conf_post.h.
4584 * emacs.c (environ) [DOUG_LEA_MALLOC]:
4585 * vm-limit.c (environ) [ORDINARY_LINK]: Remove decl.
4586 * vm-limit.c: Include <unistd.h>, for 'environ'.
4587
4588 * unexaix.c, unexcoff.c: Include "mem-limits.h".
4589 (start_of_data): Remove decl; mem-limits.h provides it.
4590
4591 * xdisp.c (handle_invisible_prop): Make it a bit faster
4592 and avoid a gcc -Wmaybe-uninitialized diagnostic.
4593
4594 2012-08-19 Chong Yidong <cyd@gnu.org>
4595
4596 * xdisp.c (handle_invisible_prop): Fix ellipses at overlay string
4597 ends (Bug#3874).
4598
4599 2012-08-19 Andreas Schwab <schwab@linux-m68k.org>
4600
4601 * .gdbinit: Use call instead of set when calling a function in the
4602 inferior.
4603
4604 * data.c (set_internal): Don't use set_blv_found.
4605 (Fkill_local_variable): Likewise.
4606
4607 2012-08-18 Alp Aker <alp.tekin.aker@gmail.com>
4608
4609 * nsfont.m (ns_ascii_average_width): Ensure the string
4610 ascii_printable is initialized with a null-terminated character
4611 array. Otherwise, it can contain undesired extra characters.
4612
4613 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
4614
4615 port new setting code to Sun C 5.8 2005/10/13
4616 * chartab.c, lisp.h (char_table_set, char_table_set_range):
4617 Return void, not Lisp_Object. Otherwise, the compiler
4618 complains about (A?B:C) where B is void and C is Lisp_Object
4619 when compiling CHAR_TABLE_SET, due to the recent change to
4620 the API of sub_char_table_set_contents.
4621
4622 2012-08-18 Chong Yidong <cyd@gnu.org>
4623
4624 * xdisp.c (handle_invisible_prop): Obey TEXT_PROP_MEANS_INVISIBLE
4625 for the string case (Bug#3874).
4626
4627 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
4628
4629 * buffer.h (BSET): Remove (Bug#12215).
4630 Replace all uses with calls to new setter functions.
4631 (bset_bidi_paragraph_direction, bset_case_canon_table)
4632 (bset_case_eqv_table, bset_directory, bset_display_count)
4633 (bset_display_time, bset_downcase_table)
4634 (bset_enable_multibyte_characters, bset_filename, bset_keymap)
4635 (bset_last_selected_window, bset_local_var_alist)
4636 (bset_mark_active, bset_point_before_scroll, bset_read_only)
4637 (bset_truncate_lines, bset_undo_list, bset_upcase_table)
4638 (bset_width_table):
4639 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
4640 (bset_auto_fill_function, bset_auto_save_file_format)
4641 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
4642 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
4643 (bset_cache_long_line_scans, bset_case_fold_search)
4644 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
4645 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
4646 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
4647 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
4648 (bset_header_line_format, bset_indicate_buffer_boundaries)
4649 (bset_indicate_empty_lines, bset_invisibility_spec)
4650 (bset_left_fringe_width, bset_major_mode, bset_mark)
4651 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
4652 (bset_name, bset_overwrite_mode, bset_pt_marker)
4653 (bset_right_fringe_width, bset_save_length)
4654 (bset_scroll_bar_width, bset_scroll_down_aggressively)
4655 (bset_scroll_up_aggressively, bset_selective_display)
4656 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
4657 (bset_word_wrap, bset_zv_marker):
4658 * category.c (bset_category_table):
4659 * syntax.c (bset_syntax_table):
4660 New setter functions.
4661
4662 * process.h (PSET): Remove (Bug#12215).
4663 Replace all uses with calls to new setter functions.
4664 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
4665 (PROCESS_INLINE): New macro.
4666 (pset_childp): New setter function.
4667 (pset_gnutls_cred_type) [HAVE_GNUTLS]: New setter function.
4668 * process.c (PROCESS_INLINE):
4669 Define to EXTERN_INLINE, so that the corresponding functions
4670 are compiled into code.
4671 (pset_buffer, pset_command, pset_decode_coding_system)
4672 (pset_decoding_buf, pset_encode_coding_system)
4673 (pset_encoding_buf, pset_filter, pset_log, pset_mark, pset_name)
4674 (pset_plist, pset_sentinel, pset_status, pset_tty_name)
4675 (pset_type, pset_write_queue): New setter functions.
4676
4677 * window.h (WSET): Remove (Bug#12215).
4678 Replace all uses with calls to new setter functions.
4679 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
4680 (WINDOW_INLINE): New macro.
4681 (wset_buffer, wset_frame, wset_left_col, wset_next, wset_prev)
4682 (wset_redisplay_end_trigger, wset_top_line, wset_total_cols)
4683 (wset_total_lines, wset_vertical_scroll_bar)
4684 (wset_window_end_pos, wset_window_end_valid)
4685 (wset_window_end_vpos): New setter functions.
4686 * window.c (WINDOW_INLINE):
4687 Define to EXTERN_INLINE, so that the corresponding functions
4688 are compiled into code.
4689 (wset_combination_limit, wset_dedicated, wset_display_table)
4690 (wset_hchild, wset_left_fringe_width, wset_left_margin_cols)
4691 (wset_new_normal, wset_new_total, wset_next_buffers)
4692 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
4693 (wset_prev_buffers, wset_right_fringe_width)
4694 (wset_right_margin_cols, wset_scroll_bar_width, wset_start)
4695 (wset_temslot, wset_vchild, wset_vertical_scroll_bar_type)
4696 (wset_window_parameters):
4697 * xdisp.c (wset_base_line_number, wset_base_line_pos)
4698 (wset_column_number_displayed, wset_region_showing):
4699 New setter functions.
4700
4701 * termhooks.h (TSET): Remove (Bug#12215).
4702 Replace all uses with calls to new setter functions.
4703 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
4704 (TERMHOOKS_INLINE): New macro.
4705 (tset_charset_list, tset_selection_alist): New setter functions.
4706 * terminal.c (TERMHOOKS_INLINE):
4707 Define to EXTERN_INLINE, so that the corresponding functions
4708 are compiled into code.
4709 (tset_param_alist): New setter function.
4710
4711 2012-08-17 Paul Eggert <eggert@cs.ucla.edu>
4712
4713 * keyboard.h (KSET): Remove (Bug#12215).
4714 Replace all uses with calls to new setter functions.
4715 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
4716 (KEYBOARD_INLINE): New macro.
4717 (kset_default_minibuffer_frame, kset_defining_kbd_macro)
4718 (kset_input_decode_map, kset_last_command, kset_last_kbd_macro)
4719 (kset_prefix_arg, kset_system_key_alist, kset_window_system):
4720 New setter functions.
4721 * keyboard.c (KEYBOARD_INLINE):
4722 Define to EXTERN_INLINE, so that the corresponding functions
4723 are compiled into code.
4724 (kset_echo_string, kset_kbd_queue)
4725 (kset_keyboard_translate_table, kset_last_prefix_arg)
4726 (kset_last_repeatable_command, kset_local_function_key_map)
4727 (kset_overriding_terminal_local_map, kset_real_last_command)
4728 (kset_system_key_syms): New setter functions.
4729
4730 * frame.h (FSET): Remove (Bug#12215).
4731 Replace all uses with calls to new setter functions.
4732 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
4733 (FRAME_INLINE): New macro.
4734 (fset_buffer_list, fset_buried_buffer_list, fset_condemned_scroll_bars)
4735 (fset_current_tool_bar_string, fset_desired_tool_bar_string)
4736 (fset_face_alist, fset_focus_frame, fset_icon_name, fset_menu_bar_items)
4737 (fset_menu_bar_vector, fset_menu_bar_window, fset_name)
4738 (fset_param_alist, fset_root_window, fset_scroll_bars)
4739 (fset_selected_window, fset_title, fset_tool_bar_items)
4740 (fset_tool_bar_position, fset_tool_bar_window): New functions.
4741 * frame.c (FRAME_INLINE):
4742 Define to EXTERN_INLINE, so that the corresponding functions
4743 are compiled into code.
4744 (fset_buffer_predicate, fset_minibuffer_window): New setter functions.
4745
4746 A few more naming-convention fixes for getters and setters.
4747 * buffer.c (set_buffer_overlays_before): Move here from buffer.h,
4748 and rename from buffer_overlays_set_before.
4749 (set_buffer_overlays_after): Move here from buffer.h, and rename
4750 from buffer_overlays_set_after.
4751 * buffer.h (buffer_intervals): Rename from buffer_get_intervals.
4752 All uses changed.
4753 (set_buffer_intervals): Rename from buffer_set_intervals.
4754 * intervals.c (set_interval_object): Move here from intervals.h,
4755 and rename from interval_set_object.
4756 (set_interval_left): Move here from intervals.h, and rename from
4757 interval_set_left.
4758 (set_interval_right): Move here from intervals.h, and rename from
4759 interval_set_right.
4760 (copy_interval_parent): Move here from intervals.h, and rename from
4761 interval_copy_parent.
4762 * intervals.h (set_interval_parent): Rename from interval_set_parent.
4763 (set_interval_plist): Rename from interval_set_plist.
4764 Return void, not Lisp_Object, since no caller uses the result.
4765 * lisp.h (string_intervals): Rename from string_get_intervals.
4766 (set_string_intervals): Rename from string_set_intervals.
4767
4768 * lisp.h (set_char_table_extras): Rename from char_table_set_extras.
4769 (set_char_table_contents): Rename from char_table_set_contents.
4770 (set_sub_char_table_contents): Rename from sub_char_table_set_contents.
4771 All uses changed. See the end of
4772 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00549.html>.
4773
4774 * lisp.h (CSET): Remove (Bug#12215).
4775 (set_char_table_ascii, set_char_table_defalt, set_char_table_parent)
4776 (set_char_table_purpose): New functions,
4777 replacing CSET. All uses changed. For example, replace
4778 "CSET (XCHAR_TABLE (char_table), parent, parent);" with
4779 "set_char_table_parent (char_table, parent);".
4780 The old version was confusing because it used the same name
4781 'parent' for two different things.
4782
4783 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
4784
4785 Functions to get and set Lisp_Object fields of buffer-local variables.
4786 * lisp.h (blv_found, set_blv_found, blv_value, set_blv_value)
4787 (set_blv_where, set_blv_defcell, set_blv_valcell): New functions.
4788 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): Remove.
4789 * data.c, eval.c, frame.c: Adjust users.
4790
4791 2012-08-17 Chong Yidong <cyd@gnu.org>
4792
4793 * xfaces.c (merge_face_vectors): If the target font specfies a
4794 font spec, make the font's attributes take precedence over
4795 directly-specified attributes.
4796 (merge_face_ref): Recognize :font.
4797
4798 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
4799
4800 Do not use memcpy for copying intervals.
4801 * intervals.c (reproduce_interval): New function.
4802 (reproduce_tree, reproduce_tree_obj): Use it.
4803 (reproduce_tree_obj): Remove prototype.
4804
4805 2012-08-17 Paul Eggert <eggert@cs.ucla.edu>
4806
4807 * lisp.h (duration_to_sec_usec): Remove unused decl.
4808
4809 2012-08-17 Alp Aker <alp.tekin.aker@gmail.com>
4810
4811 * nsfont.m (ns_ascii_average_width): Send initWithFormat selector
4812 to an allocated instance of NSString, not to the class itself.
4813
4814 2012-08-17 Juanma Barranquero <lekktu@gmail.com>
4815
4816 * makefile.w32-in (C_CTYPE_H): New macro.
4817 (LISP_H, $(BLD)/ccl.$(O), $(BLD)/doc.$(O), $(BLD)/w32console.$(O)):
4818 ($(BLD)/fontset.$(O), $(BLD)/frame.$(O), $(BLD)/composite.$(O)):
4819 ($(BLD)/sysdep.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
4820
4821 2012-08-16 Paul Eggert <eggert@cs.ucla.edu>
4822
4823 Use ASCII tests for character types.
4824 * category.c, dispnew.c, doprnt.c, editfns.c, syntax.c, term.c:
4825 * xfns.c, xterm.c:
4826 Don't include <ctype.h>; was not needed.
4827 * charset.c, doc.c, fileio.c, font.c, frame.c, gtkutil.c, image.c:
4828 * sysdep.c, xfaces.c:
4829 Include <c-ctype.h> instead of <ctype.h>.
4830 * nsterm.m: Include <c-ctype.h>.
4831 * charset.c (read_hex):
4832 * doc.c (Fsnarf_documentation):
4833 * fileio.c (IS_DRIVE) [WINDOWSNT]:
4834 (DRIVE_LETTER) [DOS_NT]:
4835 (Ffile_name_directory, Fexpand_file_name)
4836 (Fsubstitute_in_file_name):
4837 * font.c (font_parse_xlfd, font_parse_fcname):
4838 * frame.c (x_set_font_backend):
4839 * gtkutil.c (xg_get_font):
4840 * image.c (xbm_scan, xpm_scan, pbm_scan_number):
4841 * nsimage.m (hexchar):
4842 * nsterm.m (ns_xlfd_to_fontname):
4843 * sysdep.c (system_process_attributes):
4844 * xfaces.c (hash_string_case_insensitive):
4845 Use C-locale tests instead of locale-specific tests for character
4846 types, since we want the ASCII interpretation here, not the
4847 interpretation suitable for whatever happens to be the current locale.
4848
4849 2012-08-16 Martin Rudalics <rudalics@gmx.at>
4850
4851 Consistently check windows for validity/liveness
4852 (Bug#11984, Bug#12025, Bug#12026).
4853 * lisp.h (CHECK_VALID_WINDOW): New macro.
4854 * window.c (decode_window): Rename to decode_live_window.
4855 (decode_valid_window, Fwindow_valid_p): New functions.
4856 (Fwindow_frame, Fframe_root_window, Fwindow_minibuffer_p)
4857 (Fframe_first_window, Fframe_selected_window, Fwindow_parent)
4858 (Fwindow_top_child, Fwindow_left_child, Fwindow_next_sibling)
4859 (Fwindow_prev_sibling, Fwindow_combination_limit)
4860 (Fset_window_combination_limit, Fwindow_use_time)
4861 (Fwindow_total_height, Fwindow_total_width, Fwindow_new_total)
4862 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_left_column)
4863 (Fwindow_top_line, Fwindow_body_height, Fwindow_body_width)
4864 (Fwindow_hscroll, Fset_window_hscroll)
4865 (Fwindow_redisplay_end_trigger)
4866 (Fset_window_redisplay_end_trigger, Fwindow_edges)
4867 (Fwindow_pixel_edges, Fwindow_absolute_pixel_edges)
4868 (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
4869 (Fcoordinates_in_window_p, Fwindow_point, Fwindow_start)
4870 (Fwindow_end, Fset_window_point, Fset_window_start)
4871 (Fpos_visible_in_window_p, Fwindow_line_height)
4872 (Fwindow_dedicated_p, Fset_window_dedicated_p)
4873 (Fwindow_prev_buffers, Fset_window_prev_buffers)
4874 (Fwindow_next_buffers, Fwindow_parameters, Fwindow_parameter)
4875 (Fset_window_parameter, Fwindow_display_table)
4876 (Fset_window_display_table, Fdelete_other_windows_internal)
4877 (Fset_window_buffer, Fset_window_new_total)
4878 (Fset_window_new_normal, Fdelete_window_internal)
4879 (Fwindow_text_height, Fset_window_margins, Fwindow_margins)
4880 (Fset_window_fringes, Fwindow_fringes, Fset_window_scroll_bars)
4881 (Fwindow_scroll_bars): Check whether argument window is a valid or
4882 live window. Update doc-strings.
4883 (syms_of_window): New symbol Qwindow_valid_p.
4884 * keyboard.c (Fposn_at_x_y): Check whether argument
4885 frame_or_window denotes a valid window.
4886
4887 2012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
4888
4889 Fix previous char table change.
4890 * lisp.h (CHAR_TABLE_SET): Use sub_char_table_set_contents.
4891 * chartab.c (optimize_sub_char_table): Likewise.
4892
4893 2012-08-16 Chong Yidong <cyd@gnu.org>
4894
4895 * gtkutil.c (xg_get_font): Demand an Xft font (Bug#3228).
4896
4897 * xfont.c (xfont_open):
4898 * xftfont.c (xftfont_open): Set the font's max_width field.
4899
4900 * nsfont.m (nsfont_open): Similar to the Xft backend, set
4901 min_width to space_width and average_width to the average over
4902 printable ASCII characters.
4903 (ns_char_width): Code cleanup.
4904 (ns_ascii_average_width): New utility function.
4905
4906 * font.h (struct font): Update comments.
4907
4908 2012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
4909
4910 Simple interface to set Lisp_Object fields of character tables.
4911 * lisp.h (CSET): New macro.
4912 (char_table_set_extras, char_table_set_contents)
4913 (sub_char_table_set_contents): New function.
4914 * casetab.c, category.c, chartab.c, fns.c, fontset.c, search.c:
4915 * syntax.c: Adjust users.
4916
4917 2012-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
4918
4919 * eval.c (eval_sub): Bind lexical-binding.
4920 * lread.c (Qlexical_binding): Make non-static.
4921
4922 2012-08-15 Jan Djärv <jan.h.d@swipnet.se>
4923
4924 * nsmenu.m (popupSession): Remove.
4925 (pop_down_menu): Remove endModalSession.
4926 (timeout_handler:): New method.
4927 (runDialogAt:): Get next timeout. Start a NSTimer with that timeout.
4928 Call runModalForWindow. Check timer_fired when it returns.
4929 If not set, cancel timer and break out of loop.
4930 Otherwise loop again, with a new timeout.
4931
4932 * nsterm.m: Include fcntl.h if present.
4933 (fd_entry, t_readfds, inNsSelect): Remove.
4934 (select_writefds, select_valid, select_timeout, selfds)
4935 (select_mutex, apploopnr): Add.
4936 (EV_TRAILER): Call kbd_buffer_store_event_hold only if q_event_ptr.
4937 Otherwise call kbd_buffer_store_event.
4938 (ns_send_appdefined): Remove release of fd_entry.
4939 (ns_read_socket): Always send appdefined. Remove inNsSelect check.
4940 Increment and decrement apploopnr.
4941 (ns_select): If no file descriptors, just do a NSTimer.
4942 Otherwise copy read/write masks and start select thread (fd_handler).
4943 Start main loop and wait for application defined event.
4944 Inform select thread to stop selecting after main loop is exited.
4945 (ns_term_init): Create selfds pipe and set non-blocking.
4946 Initialize select_mutex. Start the select thread (fd_handler).
4947 (fd_handler:): Loop forever, wait for info from the main thread
4948 to either start or stop selecting. When select returns, send
4949 and appdefined event.
4950 (sendScrollEventAtLoc:fromEvent:): Check if q_event_ptr is set.
4951 If not call kbd_buffer_store_event.
4952
4953 * nsterm.h (EmacsApp): fd_handler takes id argument.
4954 (EmacsDialogPanel): Add timer_fired and timeout_handler.
4955
4956 * gtkutil.c (xg_mark_data): Use FRAME_X_P.
4957
4958 2012-08-15 Eli Zaretskii <eliz@gnu.org>
4959
4960 * region-cache.c (move_cache_gap): Update gap_len using the actual
4961 growth of the boundaries array. Do not change cache_len.
4962 (Bug#12196)
4963
4964 2012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
4965
4966 Generalize and cleanup font subsystem checks.
4967 * font.h (FONT_DEBUG, font_assert): Remove.
4968 * font.c, fontset.c, w32font.c, xfont.c, xftfont.c:
4969 Change font_assert to eassert. Use eassert where appropriate.
4970
4971 2012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
4972
4973 * gtkutil.c (xg_get_font): Use pango_units_to_double.
4974
4975 2012-08-15 Chong Yidong <cyd@gnu.org>
4976
4977 * gtkutil.c (xg_get_font): Rename from xg_get_font_name.
4978 When using the new font chooser, use gtk_font_chooser_get_font_desc to
4979 extract the font descriptor instead of just the font name.
4980 In that case, return a font spec instead of a string.
4981 (x_last_font_name): Move to this file from xfns.c.
4982
4983 * xfns.c (Fx_select_font): The return value can also be a font
4984 spec. Move x_last_font_name management to gtkutil.c.
4985
4986 * xfaces.c: Make font weight and style symbols non-static.
4987
4988 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
4989
4990 * minibuf.c (read_minibuf): Ignore caller's inhibit-read-only
4991 (bug#12117).
4992
4993 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
4994
4995 * alloc.c (Fgarbage_collect): Use plural form consistently.
4996
4997 2012-08-14 Eli Zaretskii <eliz@gnu.org>
4998
4999 * keyboard.c (command_loop_1): Reset ignore_mouse_drag_p flag each
5000 iteration through the command loop. Fixes a problem whereby mouse
5001 movements are ignored until the first mouse click.
5002
5003 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
5004
5005 Use bool, not int, for Lisp booleans.
5006 This is more natural, and on my platform (GCC 4.7.1 x86-64) it
5007 makes Emacs a bit smaller and presumably a bit faster.
5008 * lisp.h: Include <stdbool.h>.
5009 (struct Lisp_Boolfwd, defvar_bool):
5010 * lread.c (defvar_bool): Use bool, not int, for Lisp booleans.
5011 * regex.c [!emacs]: Include <stdbool.h>.
5012 (false, true): Remove; <stdbool.h> does this for us now.
5013
5014 2012-08-14 Chong Yidong <cyd@gnu.org>
5015
5016 * character.c (Fcharacterp): Doc fix (Bug#12076).
5017
5018 * data.c (Findirect_variable): Doc fix (Bug#11040).
5019
5020 * chartab.c (Fmap_char_table): Doc fix (Bug#12061).
5021
5022 * editfns.c (Fformat): Doc fix (Bug#12059).
5023 (Fsave_current_buffer): Doc fix (Bug#11542).
5024
5025 2012-08-14 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
5026
5027 * keyboard.c (access_keymap_keyremap): Accept anonymous functions
5028 (bug#12022).
5029
5030 2012-08-14 Martin Rudalics <rudalics@gmx.at>
5031
5032 * frame.c (make_frame_without_minibuffer, make_minibuffer_frame)
5033 (delete_frame, Fmake_frame_invisible, Ficonify_frame):
5034 * minibuf.c (choose_minibuf_frame, read_minibuf):
5035 * w32fns.c (x_create_tip_frame):
5036 * xfns.c (x_create_tip_frame): Call set_window_buffer instead of
5037 Fset_window_buffer (Bug#11984, Bug#12025, Bug#12026).
5038
5039 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
5040
5041 * intervals.c (offset_intervals): Remove obsolete comment.
5042
5043 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
5044
5045 * gtkutil.c (find_rtl_image, update_frame_tool_bar): Use NILP.
5046
5047 2012-08-14 Gergely Risko <gergely@risko.hu>
5048
5049 * coding.c (decode_coding): Record buffer modification before
5050 disabling undo_list (Bug#11773).
5051
5052 2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
5053
5054 Revert and cleanup some recent overlay changes.
5055 * buffer.h (enum overlay_type): Remove.
5056 (buffer_get_overlays, buffer_set_overlays): Likewise.
5057 (buffer_set_overlays_before, buffer_set_overlays_after):
5058 New function. Adjust users.
5059 (unchain_both): Add eassert.
5060
5061 2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
5062
5063 * gtkutil.c (update_frame_tool_bar): Use EQ where appropriate.
5064
5065 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
5066
5067 * gtkutil.c (xg_mark_data): Don't assume C99.
5068
5069 2012-08-13 Jan Djärv <jan.h.d@swipnet.se>
5070
5071 * gtkutil.c (xg_frame_tb_info): New struct.
5072 (TB_INFO_KEY): New define.
5073 (xg_free_frame_widgets): Free xg_frame_tb_info for frame if present.
5074 (xg_mark_data): Mark Lisp_Objects in xg_frame_tb_info.
5075 (xg_create_tool_bar): Allocate and initialize a xg_frame_tb_info
5076 if not present.
5077 (update_frame_tool_bar): Return early if data in xg_frame_tb_info
5078 is up to date. Otherwise store new data.
5079 (free_frame_tool_bar): Free xg_frame_tb_info if present.
5080
5081 2012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
5082
5083 Use KSET for write access to Lisp_Object members of struct kboard.
5084 * keyboard.h (KSET): New macro.
5085 * callint.c, category.c, frame.c, keyboard.c, keyboard.h, macros.c:
5086 * msdos.c, nsfns.m, nsterm.m, term.c, w32fns.c, w32term.c, xfns.c:
5087 * xterm.c: Adjust users.
5088
5089 2012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
5090
5091 Use BSET for write access to Lisp_Object members of struct buffer.
5092 * buffer.h (BSET): New macro.
5093 * buffer.c, casetab.c, cmds.c, coding.c, data.c, editfns.c:
5094 * fileio.c, frame.c, indent.c, insdel.c, intervals.c, keymap.c:
5095 * minibuf.c, print.c, process.c, syntax.c, undo.c, w32fns.c:
5096 * window.c, xdisp.c, xfns.c: Adjust users.
5097
5098 2012-08-11 BT Templeton <bpt@hcoop.net> (tiny change)
5099
5100 * lread.c (syms_of_lread): Initialize Vlexical_binding.
5101
5102 2012-08-11 Jan Djärv <jan.h.d@swipnet.se>
5103
5104 * nsterm.m (not_in_argv): New function.
5105 (application:openFile, application:openTempFile:):
5106 (application:openFileWithoutUI:, application:openFiles:): Open file
5107 if not_in_argv returns non-zero (bug#12171).
5108
5109 * gtkutil.c (gtk_font_chooser_dialog_new, GTK_FONT_CHOOSER)
5110 (gtk_font_chooser_set_font, gtk_font_chooser_get_font):
5111 Define for Gtk+ versions less than 3.2.
5112 (xg_get_font_name): Use those functions/macros here.
5113 Reported by Frans Oilinki <moilinki@gmail.com>.
5114
5115 2012-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5116
5117 * unexmacosx.c (copy_data_segment): Copy initialized data in
5118 statically linked libraries from input file rather than memory.
5119
5120 * unexmacosx.c (print_load_command_name): Add cases LC_MAIN,
5121 LC_SOURCE_VERSION, and LC_DYLIB_CODE_SIGN_DRS.
5122 (dump_it) [LC_DYLIB_CODE_SIGN_DRS]: Call copy_linkedit_data.
5123
5124 2012-08-10 Glenn Morris <rgm@gnu.org>
5125
5126 * conf_post.h (IF_LINT, lint_assume): Move here from lisp.h.
5127 * lisp.h (IF_LINT, lint_assume): Move to conf_post.h.
5128
5129 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
5130
5131 Fix last change to allow compilation with low optimization levels.
5132 * intervals.c (INTERVALS_INLINE): Define to EXTERN_INLINE.
5133 Reported by Jan Djärv <jan.h.d@swipnet.se>.
5134
5135 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
5136
5137 Use common inline syntax in intervals.h.
5138 * intervals.h (INTERVALS_INLINE): New macro.
5139 Change all users from LISP_INLINE.
5140
5141 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
5142
5143 Define Qnone once for all platforms.
5144 * frame.c (Qnone): Define here.
5145 (syms_of_frame): DEFSYM it.
5146 * lisp.h (Qnone): New declaration.
5147 * nsfns.m, nsterm.h, nsterm.m, w32fns.c, w32font.c:
5148 * xfns.c: Remove duplication. Adjust users.
5149
5150 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
5151
5152 Remove unused macros from intervals.h.
5153 * intervals.h (MERGE_INSERTIONS, DISPLAY_INVISIBLE_GLYPH): Remove.
5154 * intervals.c: Adjust comment.
5155
5156 2012-08-10 Eli Zaretskii <eliz@gnu.org>
5157
5158 * w32fns.c <w32_unicode_gui>: New static variable.
5159 (globals_of_w32fns): Initialize it according to os_subtype.
5160 (w32_init_class, w32_msg_pump, w32_wnd_proc): Use it instead of
5161 testing os_subtype.
5162
5163 2012-08-10 Joakim Hårsman <joakim.harsman@gmail.com> (tiny change)
5164 Eli Zaretskii <eliz@gnu.org>
5165
5166 Fix bug #10299 with Unicode characters sent by customized
5167 keyboards created by MSKLC.
5168 * w32fns.c (INIT_WINDOW_CLASS): New macro.
5169 (w32_init_class): Use it to initialize the Emacs class with either
5170 ANSI or Unicode API calls.
5171 (w32_msg_pump): Call GetMessageW and DispatchMessageW on NT and
5172 later.
5173 (w32_wnd_proc): If the character code sent by WM_CHAR or
5174 WM_SYSCHAR is above 255, post a WM_UNICHAR message, not the
5175 original message. Call DefWindowProcW on NT and later.
5176
5177 2012-08-10 Glenn Morris <rgm@gnu.org>
5178
5179 * Makefile.in (config_h): Fix conf_post.h out-of-tree build location.
5180
5181 * lisp.h (DIRECTORY_SEP): Let configure set it.
5182
5183 2012-08-09 Dmitry Antipov <dmantipov@yandex.ru>
5184
5185 Use TSET for write access to Lisp_Object slots of struct terminal.
5186 * termhooks.h (TSET): New macro.
5187 * coding.c, terminal.c, xselect.c: Adjust users.
5188
5189 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
5190
5191 * xdisp.c (safe_eval_handler): Remove prototype. Receive args describing
5192 the failing expression, include them in the error message.
5193 * eval.c (internal_condition_case_n): Pass nargs and args to hfun.
5194 * lisp.h (internal_condition_case_n): Update declaration.
5195
5196 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
5197
5198 Inline functions to examine and change buffer overlays.
5199 * buffer.c (unchain_both): New function.
5200 * buffer.h (buffer_get_overlays, buffer_set_overlays):
5201 (buffer_has_overlays): New function.
5202 (enum overlay_type): New enum.
5203 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c:
5204 * insdel.c, intervals.c, print.c, xdisp.c: Adjust users.
5205
5206 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
5207
5208 Inline functions to examine and change buffer intervals.
5209 * alloc.c (mark_interval_tree): Remove.
5210 (MARK_INTERVAL_TREE): Simplify.
5211 (UNMARK_BALANCE_INTERVALS): Remove. Adjust users.
5212 * intervals.c (buffer_balance_intervals): New function.
5213 (graft_intervals_into_buffer): Adjust indentation.
5214 (set_intervals_multibyte): Simplify.
5215 * buffer.h (BUF_INTERVALS): Remove.
5216 (buffer_get_intervals, buffer_set_intervals): New function.
5217 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c, insdel.c:
5218 * intervals.c, textprop.c: Adjust users.
5219
5220 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
5221
5222 Inline functions to examine and change string intervals.
5223 * lisp.h (STRING_INTERVALS, STRING_SET_INTERVALS): Remove.
5224 (string_get_intervals, string_set_intervals): New function.
5225 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
5226 * lread.c, print.c, textprop.c: Adjust users.
5227
5228 2012-08-08 Glenn Morris <rgm@gnu.org>
5229
5230 * lisp.mk (lisp): Remove language/persian.elc.
5231
5232 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
5233
5234 Cleanup intervals.
5235 * intervals.h (NULL_INTERVAL, DEFAULT_INTERVAL): Remove.
5236 (NULL_INTERVAL_P): Likewise. Adjust users.
5237 (FRONT_STICKY_P, END_NONSTICKY_P, FRONT_NONSTICKY_P):
5238 Adjust comment. Move under #if 0.
5239 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
5240 * print.c, syntax.c, textprop.c, xdisp.c: Adjust users.
5241
5242 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
5243
5244 Check total length of intervals with eassert.
5245 * intervals.h (CHECK_TOTAL_LENGTH): Remove.
5246 * intervals.c: Change all users to eassert.
5247
5248 2012-08-07 Eli Zaretskii <eliz@gnu.org>
5249
5250 * .gdbinit (xframe, xwindow, nextcons, xcar, xcdr, xlist):
5251 Rename fields to match removal of FGET and WGET and disuse of
5252 INTERNAL_FIELD in Lisp_Cons.
5253
5254 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
5255
5256 Revert and cleanup Lisp_Cons, Lisp_Misc and Lisp_Symbol things.
5257 * lisp.h (struct Lisp_Symbol): Change xname to meaningful
5258 name since all xname users are fixed long time ago. Do not
5259 use INTERNAL_FIELD.
5260 (set_symbol_name, set_symbol_function, set_symbol_plist):
5261 (set_symbol_next, set_overlay_plist): New function.
5262 (struct Lisp_Cons): Do not use INTERNAL_FIELD.
5263 (struct Lisp_Overlay): Likewise.
5264 (CVAR, MVAR, SVAR): Remove.
5265 * alloc.c, buffer.c, buffer.h, bytecode.c, cmds.c, data.c:
5266 * doc.c, eval.c, fns.c, keyboard.c, lread.c, nsselect.m:
5267 * xterm.c: Adjust users.
5268 * .gdbinit: Change to use name field of struct Lisp_Symbol
5269 where appropriate.
5270
5271 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
5272
5273 Basic functions to set Lisp_Object and pointer slots of intervals.
5274 * intervals.h (interval_set_parent, interval_set_object):
5275 (interval_set_left, interval_set_right, interval_set_plist):
5276 (interval_copy_parent): New function.
5277 (SET_INTERVAL_OBJECT, SET_INTERVAL_PARENT, INTERVAL_PTR_SIZE): Remove.
5278 (RESET_INTERVAL, COPY_INTERVAL_CACHE, MERGE_INTERVAL_CACHE):
5279 Adjust indentation.
5280 (INTERVAL_SIZE): Remove. Adjust users.
5281 * alloc.c, intervals.c, lread.c, textprop.c: Use new functions.
5282
5283 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
5284
5285 Drop PGET and revert read access to Lisp_Objects slots of Lisp_Process.
5286 * process.h (PGET): Remove.
5287 (struct Lisp_Process): Do not use INTERNAL_FIELD.
5288 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
5289
5290 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
5291
5292 Drop WGET and revert read access to Lisp_Objects slots of struct window.
5293 * window.h (WGET): Remove.
5294 (struct window): Do not use INTERNAL_FIELD.
5295 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
5296 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
5297 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
5298 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
5299 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
5300 Adjust users.
5301
5302 2012-08-07 Chong Yidong <cyd@gnu.org>
5303
5304 * window.c (Fwindow_edges, Fwindow_pixel_edges)
5305 (Fwindow_absolute_pixel_edges, Fdelete_other_windows_internal)
5306 (Fdelete_window_internal): Signal an error if the window is not on
5307 a live frame (Bug#12025).
5308
5309 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
5310
5311 Drop FGET and revert read access to Lisp_Objects slots of struct frame.
5312 * frame.h (FGET): Remove.
5313 (struct frame): Do not use INTERNAL_FIELD.
5314 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
5315 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
5316 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
5317 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
5318
5319 2012-08-06 Juanma Barranquero <lekktu@gmail.com>
5320
5321 * w32.c: Silence compiler warnings.
5322 (map_w32_filename): Remove unused variable `is_fat'.
5323 (chase_symlinks): Add parentheses around expression.
5324
5325 2012-08-06 Glenn Morris <rgm@gnu.org>
5326
5327 * sysdep.c: Respect BROKEN_GETWD.
5328
5329 * dispnew.c (GNU_LIBRARY_PENDING_OUTPUT_COUNT, PENDING_OUTPUT_COUNT):
5330 Let configure handle it.
5331 (stdio_ext.h) [DISPNEW_NEEDS_STDIO_EXT]: Include it.
5332
5333 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
5334
5335 Use GCALIGNMENT where appropriate.
5336 * alloc.c (XMALLOC_HEADER_ALIGNMENT, roundup_size):
5337 (union aligned_Lisp_Symbol, union aligned_Lisp_Misc):
5338 (mark_maybe_pointer, pure_alloc): Change to use GCALIGNMENT.
5339
5340 2012-08-06 Eli Zaretskii <eliz@gnu.org>
5341
5342 * w32menu.c (set_frame_menubar, initialize_frame_menubar):
5343 Don't use FRAME_MENU_BAR_ITEMS as an lvalue.
5344
5345 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
5346
5347 * buffer.h (struct buffer): Revert `indirections' to a simple int;
5348 that should be sufficient for everyone.
5349
5350 2012-08-06 Jan Djärv <jan.h.d@swipnet.se>
5351
5352 * keyboard.c (timer_check_2): Add break so timer_check returns next
5353 timeout.
5354
5355 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
5356
5357 Fix Windows build errors introduced after converting to WGET and WSET.
5358 * w32term.c (w32_set_vertical_scroll_bar): Change to use WSET.
5359 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
5360
5361 2012-08-06 Jan Djärv <jan.h.d@swipnet.se>
5362
5363 * nsterm.m (ns_frame_rehighlight): Use FSET.
5364
5365 * nsmenu.m (ns_update_menubar): Use FSET.
5366
5367 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
5368
5369 Separate read and write access to Lisp_Object slots of Lisp_Process.
5370 * process.h (PGET, PSET): New macros similar to AREF and ASET.
5371 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
5372
5373 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
5374
5375 Separate read and write access to Lisp_Object slots of struct window.
5376 * window.h (WGET, WSET): New macros similar to AREF and ASET.
5377 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
5378 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
5379 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
5380 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
5381 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
5382 Adjust users.
5383
5384 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
5385
5386 Fix Windows build errors introduced after converting to FGET and FSET.
5387 * w32term.c (x_frame_rehighlight, x_scroll_bar_create):
5388 (w32_condemn_scroll_bars, w32_redeem_scroll_bar):
5389 (w32_judge_scroll_bars): Change to use FSET.
5390 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
5391
5392 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
5393
5394 Fix replacement typo.
5395 * window.c (replace_window): Set root_window instead of
5396 selected_window. This fixes a total window subsystem
5397 malfunction reported by Bastien Guerry <bzg@gnu.org>.
5398
5399 2012-08-06 Glenn Morris <rgm@gnu.org>
5400
5401 * lisp.mk (lisp): Add language/persian.elc.
5402
5403 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
5404
5405 Separate read and write access to Lisp_Object slots of struct frame.
5406 * frame.h (FGET, FSET): New macros similar to AREF and ASET.
5407 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
5408 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
5409 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
5410 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
5411
5412 2012-08-05 Andreas Schwab <schwab@linux-m68k.org>
5413
5414 * emacs.c (decode_env_path): Only use defaulted if WINDOWSNT.
5415
5416 2012-08-05 Dmitry Antipov <dmantipov@yandex.ru>
5417
5418 Generalize common compile-time constants.
5419 * lisp.h (header_size, bool_header_size, word_size): Now here.
5420 (struct Lisp_Vector): Add comment.
5421 (struct Lisp_Bool_Vector): Move up to define handy constants.
5422 (VECSIZE, PSEUDOVECSIZE): Simplify.
5423 (SAFE_ALLOCA_LISP): Use new constant. Adjust indentation.
5424 * buffer.c, buffer.h, bytecode.c, callint.c, eval.c, fns.c:
5425 * font.c, fontset.c, keyboard.c, keymap.c, macros.c, menu.c:
5426 * msdos.c, w32menu.c, w32term.h, window.c, xdisp.c, xfaces.c:
5427 * xfont.c, xmenu.c: Use word_size where appropriate.
5428
5429 2012-08-05 Lawrence Mitchell <wence@gmx.li>
5430
5431 * search.c (Freplace_match): Treat \? in the replacement text
5432 literally (Bug#8161).
5433
5434 2012-08-05 Chong Yidong <cyd@gnu.org>
5435
5436 * term.c (Vsuspend_tty_functions, Vresume_tty_functions):
5437 * frame.c (Vdelete_frame_functions):
5438 * emacs.c (Vkill_emacs_hook): Doc fix.
5439
5440 2012-08-04 Eli Zaretskii <eliz@gnu.org>
5441
5442 * xfns.c (x_set_menu_bar_lines): Fix compilation error in
5443 --with-x-toolkit=no builds.
5444 Reported by Carsten Mattner <carstenmattner@gmail.com>.
5445
5446 2012-08-04 Chong Yidong <cyd@gnu.org>
5447
5448 * syntax.c (Fmodify_syntax_entry): Doc fix.
5449
5450 2012-08-04 Eli Zaretskii <eliz@gnu.org>
5451
5452 Fix startup warnings about ../site-lisp on MS-Windows. (Bug#11959)
5453 * w32.c (init_environment): Change the default values of many
5454 environment variables in dflt_envvars[] to NULL, to avoid pushing
5455 them into environment when they were not already defined.
5456 Remove the code that deletes site-lisp subdirectories from the default
5457 value of EMACSLOADPATH, as it is no longer needed.
5458 (check_windows_init_file): Now external, not static.
5459 Use Vload_path as is, without adding anything, as this function is now
5460 called when Vload_path is already set up.
5461
5462 * w32.h (check_windows_init_file): Add prototype.
5463
5464 * emacs.c (init_cmdargs) [WINDOWSNT]: When running from the build
5465 directory, ignore the /*/i386/ tail in Vinvocation_directory, for
5466 compatibility with Posix platforms.
5467 (main): Move the call to check_windows_init_file to here from
5468 w32.c.
5469 (decode_env_path) [WINDOWSNT]: Expand the %emacs_dir%/ prefix, if
5470 any, in the DEFALT argument into the root of the Emacs build or
5471 installation tree, as appropriate.
5472
5473 * callproc.c (init_callproc_1): Call decode_env_path instead of
5474 doing its equivalent by hand.
5475 (init_callproc): Replace DOS_NT condition with MSDOS, thus letting
5476 the code that sets Vexec_path run on MS-Windows.
5477
5478 * lread.c (init_lread): Add comments to #ifdef's.
5479
5480 * msdos.c (dos_set_window_size, IT_update_begin)
5481 (IT_frame_up_to_date, IT_set_frame_parameters): Use FVAR and WVAR
5482 instead of direct references.
5483
5484 2012-08-04 Paul Eggert <eggert@cs.ucla.edu>
5485
5486 Export DEFAULT_REHASH_* to GDB.
5487 * lisp.h (DEFAULT_REHASH_THRESHOLD, DEFAULT_REHASH_SIZE):
5488 Now constants, not macros.
5489
5490 2012-08-03 Paul Eggert <eggert@cs.ucla.edu>
5491
5492 Remove unnecessary casts involving pointers.
5493 These casts are no longer needed now that we assume C89 or later,
5494 since they involve casting to or from void *.
5495 * alloc.c (make_pure_string, make_pure_c_string, pure_cons)
5496 (make_pure_float, make_pure_vector):
5497 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP):
5498 * macros.c (Fstart_kbd_macro):
5499 * menu.c (find_and_return_menu_selection):
5500 * minibuf.c (read_minibuf_noninteractive):
5501 * sysdep.c (closedir):
5502 * xdisp.c (x_produce_glyphs):
5503 * xfaces.c (compare_fonts_by_sort_order):
5504 * xfns.c (x_real_positions, select_visual):
5505 * xselect.c (x_stop_queuing_selection_requests)
5506 (x_get_window_property, x_get_window_property_as_lisp_data):
5507 * xterm.c (x_set_frame_alpha, x_find_modifier_meanings):
5508 Remove unnecessary pointer casts.
5509 * alloc.c (record_xmalloc): New function.
5510 * lisp.h (record_xmalloc): New decl.
5511 (SAFE_ALLOCA): Now takes just one arg -- the size -- and acts
5512 more like a function. This is because the pointer cast is not
5513 needed. All uses changed.
5514 * print.c (print_string, print_error_message): Avoid length recalc.
5515
5516 Improve fix for macroexp crash with debugging (Bug#12118).
5517 * lisp.h (ASET) [ENABLE_CHECKING]: Pay attention to
5518 ARRAY_MARK_FLAG when checking subscripts, because ASET is
5519 not supposed to be invoked from the garbage collector.
5520 See Andreas Schwab in <http://bugs.gnu.org/12118#25>.
5521 (gc_aset): New function, which is like ASET but can be
5522 used in the garbage collector.
5523 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
5524 (set_hash_index): Use it instead of ASET.
5525
5526 2012-08-03 Eli Zaretskii <eliz@gnu.org>
5527
5528 Support symlinks on latest versions of MS-Windows.
5529 * w32.c: Include winioctl.h and aclapi.h.
5530 (is_symlink, chase_symlinks, enable_privilege, restore_privilege)
5531 (revert_to_self): Forward declarations of static functions.
5532 <static BOOL g_b_init_get_security_info>:
5533 <g_b_init_create_symbolic_link>: New static flags.
5534 (globals_of_w32): Initialize them to zero.
5535 (GetSecurityInfo_Proc, CreateSymbolicLink_Proc): New typedefs.
5536 (map_w32_filename): Improve commentary. Simplify switch.
5537 (SYMBOLIC_LINK_FLAG_DIRECTORY): Define if not defined in system
5538 headers (most versions of MinGW w32api don't).
5539 (get_security_info, create_symbolic_link)
5540 (get_file_security_desc_by_handle, is_symlink, chase_symlinks):
5541 New functions.
5542 (sys_access, sys_chmod): Call 'chase_symlinks' to resolve symlinks
5543 in the argument file name.
5544 (sys_access): Call unc_volume_file_attributes only if
5545 GetFileAttributes fails with network-related error codes.
5546 (sys_rename): Diagnose renaming of a symlink when the user doesn't
5547 have the required privileges.
5548 (get_file_security_desc_by_name): Rename from
5549 get_file_security_desc.
5550 (stat_worker): New function, with most of the guts of 'stat', and
5551 with addition of handling of symlinks and support for 'lstat'.
5552 If possible, get file's attributes and security information by
5553 handle, not by name. Produce S_IFLNK bit for symlinks, when
5554 called from 'lstat'.
5555 (stat, lstat): New functions, call 'stat_worker'.
5556 (symlink, readlink, careadlinkat): Rewritten to create and resolve
5557 symlinks when the underlying filesystem supports them.
5558
5559 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
5560
5561 Fix macroexp crash on Windows with debugging (Bug#12118).
5562 * lisp.h (ASET) [ENABLE_CHECKING]: Ignore ARRAY_MARK_FLAG when
5563 checking subscripts; problem introduced with the recent
5564 "ASET (a, i, v)" rather than "AREF (a, i) = v" patch.
5565 (ARRAY_MARK_FLAG): Now a macro as well as a constant,
5566 since it's used in non-static inline functions now.
5567
5568 * xfaces.c (face_at_buffer_position, face_for_overlay_string):
5569 Don't assume buffer size fits in 'int'. Remove unused local.
5570
5571 Use C99-style 'extern inline' if available.
5572 * buffer.h (BUFFER_INLINE):
5573 * category.h (CATEGORY_INLINE):
5574 * character.h (CHARACTER_INLINE):
5575 * charset.h (CHARSET_INLINE):
5576 * composite.h (COMPOSITE_INLINE):
5577 * dispextern.h (DISPEXTERN_INLINE):
5578 * lisp.h (LISP_INLINE):
5579 * systime.h (SYSTIME_INLINE):
5580 New macro, replacing 'static inline' in this header.
5581 * buffer.h, category.h, character.h, charset.h, composite.h:
5582 * dispextern.h, lisp.h, systime.h:
5583 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
5584 * alloc.c (LISP_INLINE):
5585 * buffer.c (BUFFER_INLINE):
5586 * category.c (CATEGORY_INLINE):
5587 * character.c (CHARACTER_INLINE):
5588 * charset.c (CHARSET_INLINE):
5589 * composite.c (COMPOSITE_INLINE):
5590 * dispnew.c (DISPEXTERN_INLINE):
5591 * sysdep.c (SYSTIME_INLINE):
5592 Define to EXTERN_INLINE, so that the corresponding functions
5593 are compiled into code.
5594 * conf_post.h (INLINE, EXTERN_INLINE, INLINE_HEADER_BEGIN)
5595 (INLINE_HEADER_END): New macros.
5596 * lisp.h (PSEUDOVECTOR_FLAG): Now a macro as well as a constant,
5597 since it's used in non-static inline functions now.
5598 (VALMASK) [!USE_LSB_TAG]: Likewise.
5599
5600 2012-08-02 Glenn Morris <rgm@gnu.org>
5601
5602 * s/: Remove empty directory.
5603
5604 * s/ms-w32.h: Move to ../nt/inc.
5605 * makefile.w32-in (TAGS, TAGS-gmake, MS_W32_H):
5606 Update for new ms-w32.h location.
5607
5608 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
5609
5610 Port to Solaris 8.
5611 * syswait.h (WRETCODE): Remove, consistently with ../configure.ac.
5612
5613 2012-08-02 Glenn Morris <rgm@gnu.org>
5614
5615 * nsterm.m (ns_exec_path, ns_load_path): Use SEPCHAR rather than
5616 hard-coding the path separator.
5617
5618 2012-08-01 Paul Eggert <eggert@cs.ucla.edu>
5619
5620 Use "ASET (a, i, v)" rather than "AREF (a, i) = v".
5621 This how ASET and AREF are supposed to work, and makes
5622 it easier to think about future improvements. See
5623 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00026.html>.
5624 * charset.h (set_charset_attr): New function.
5625 All lvalue-style uses of CHARSET_DECODER etc. changed to use it.
5626 * lisp.h (ASET): Rewrite so as not to use AREF in an lvalue style.
5627 (aref_addr): New function. All uses of &AREF(...) changed.
5628 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
5629 (set_hash_index): New functions. All lvalue-style uses of
5630 HASH_KEY etc. changed.
5631 * keyboard.c (set_prop): New function. All lvalue-style uses
5632 of PROP changed.
5633
5634 2012-08-01 Alp Aker <alp.tekin.aker@gmail.com>
5635
5636 * nsterm.m (ns_set_vertical_scroll_bar, ns_redeem_scroll_bar)
5637 (EmacsWindow-accessibilityAttributeValue, EmacsScroller-initFrame:)
5638 (EmacsScroller-dealloc): Adjust to use WVAR. (Bug#12114)
5639 * nsfns.m (ns_set_name_as_filename): Likewise.
5640 * nsmenu.m (ns_update_menubar): Likewise.
5641 * nsselect.m (symbol_to_nsstring): Adjust to use SVAR.
5642
5643 2012-08-01 Eli Zaretskii <eliz@gnu.org>
5644
5645 * .gdbinit (xcar, xcdr, xlist, xwindow, nextcons, xprintsym):
5646 Adapt to latest changes in field names of the corresponding Lisp
5647 objects.
5648
5649 * xdisp.c (try_window_id): Use WVAR in IF_DEBUG code.
5650
5651 2012-08-01 Glenn Morris <rgm@gnu.org>
5652
5653 * s/msdos.h: Remove file.
5654 * conf_post.h [MSDOS]: New section, moved from s/msdos.h.
5655 * Makefile.in (S_FILE): Remove.
5656 (config_h): Remove S_FILE.
5657
5658 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
5659
5660 * s/ms-w32.h (DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP):
5661 Remove; moved to nt/config.nt.
5662
5663 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
5664
5665 Use INTERNAL_FIELD for conses and overlays.
5666 * lisp.h (struct Lisp_Cons): Use INTERNAL_FIELD.
5667 Remove obsolete comment.
5668 (MVAR): New macro.
5669 (struct Lisp_Overlay): Use INTERNAL_FIELD.
5670 * alloc.c, buffer.c, buffer.h, fns.c: Adjust users.
5671
5672 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
5673
5674 Use INTERNAL_FIELD for symbols.
5675 * lisp.h (SVAR): New macro. Adjust users.
5676 * alloc.c, bytecode.c, cmds.c, data.c, doc.c, eval.c:
5677 * fns.c, keyboard.c, lread.c, xterm.c: Users changed.
5678
5679 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
5680
5681 Use INTERNAL_FIELD for processes.
5682 * process.h (PVAR): New macro. Adjust style.
5683 (struct Lisp_Process): Change Lisp_Object members to INTERNAL_FIELD.
5684 * print.c, process.c, sysdep.c, w32.c, xdisp.c: Users changed.
5685
5686 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
5687
5688 Use INTERNAL_FIELD for windows.
5689 * window.h (WVAR): New macro.
5690 (struct window): Change Lisp_Object members to INTERNAL_FIELD.
5691 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
5692 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
5693 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, nsterm.m, print.c:
5694 * textprop.c, w32fns.c, w32menu.c, w32term.c, window.c, xdisp.c:
5695 * xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
5696
5697 2012-08-01 Paul Eggert <eggert@cs.ucla.edu>
5698
5699 * coding.h (CODING_ATTR_FLUSHING): Remove; unused and wouldn't work.
5700
5701 2012-08-01 Glenn Morris <rgm@gnu.org>
5702
5703 * lisp.h (IS_DIRECTORY_SEP, IS_DEVICE_SEP, IS_ANY_SEP):
5704 Move to configure.ac.
5705
5706 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
5707
5708 * makefile.w32-in (CONFIG_H): Update dependencies.
5709 (CONF_POST_H): New macro.
5710
5711 * s/ms-w32.h (SEPCHAR, NULL_DEVICE): Remove; moved to nt/config.nt.
5712
5713 2012-07-31 Glenn Morris <rgm@gnu.org>
5714
5715 * Makefile.in (S_FILE): No longer set by configure.
5716
5717 * conf_post.h (config_opsysfile): Move earlier, so that WINDOWSNT
5718 is available.
5719 (alloca.h) [WINDOWSNT]: Don't include it on MS Windows.
5720
5721 * process.h (NULL_DEVICE):
5722 * emacs.c (SEPCHAR):
5723 * editfns.c (USER_FULL_NAME): Let configure set them.
5724
5725 * s/README, s/template.h: Remove files.
5726
5727 * conf_post.h [HPUX]: Undefine HAVE_RANDOM and HAVE_RINT.
5728
5729 * conf_post.h (AMPERSAND_FULL_NAME, subprocesses):
5730 Move to configure.ac.
5731
5732 2012-07-31 Eli Zaretskii <eliz@gnu.org>
5733
5734 * .gdbinit (xframe): Adapt to introduction of FVAR and the
5735 resulting renaming of 'struct frame' members.
5736
5737 * w32menu.c (w32_menu_show): Revert bogus introduction of FVAR.
5738
5739 * fontset.c (dump_fontset): Fix compilation with ENABLE_CHECKING
5740 after introduction of FVAR.
5741
5742 2012-07-31 Jan Djärv <jan.h.d@swipnet.se>
5743
5744 * nsmenu.m (update_frame_tool_bar): Change key from NSObject* to id.
5745
5746 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Use drawInRect
5747 instead of compositeToPoint.
5748 (applicationShouldTerminate): Pass NS String literal to NSRunAlertPanel.
5749
5750 * nsfns.m, nsmenu.m, nsterm.m: Adopt to struct frame/FVAR changes.
5751
5752 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
5753
5754 Generalize INTERNAL_FIELD between buffers, keyboards and frames.
5755 * lisp.h (INTERNAL_FIELD): New macro.
5756 * buffer.h (BUFFER_INTERNAL_FIELD): Remove.
5757 (BVAR): Change to use INTERNAL_FIELD.
5758 * keyboard.h (KBOARD_INTERNAL_FIELD): Likewise.
5759 (KVAR): Change to use INTERNAL_FIELD.
5760 * frame.h (FVAR): New macro.
5761 (struct frame): Use INTERNAL_FIELD for all Lisp_Object fields.
5762 * alloc.c, buffer.c, data.c, dispnew.c, dosfns.c, eval.c, frame.c:
5763 * fringe.c, gtkutil.c, minibuf.c, nsfns.m, nsterm.m, print.c:
5764 * term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
5765 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
5766
5767 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
5768
5769 Miscellaneous fixes for non-default X toolkits.
5770 * xfns.c (Fx_file_dialog): Change to SSDATA to avoid warnings.
5771 * xterm.c (x_frame_of_widget): Remove redundant prototype.
5772 Move under #ifdef USE_LUCID.
5773 (x_create_toolkit_scroll_bar): Adjust scroll_bar_name
5774 definition and usage to avoid warnings.
5775
5776 2012-07-31 Jan Djärv <jan.h.d@swipnet.se>
5777
5778 * nsterm.m (openFiles): Fix previous checkin.
5779
5780 2012-07-31 Paul Eggert <eggert@cs.ucla.edu>
5781
5782 * indent.c (compute_motion): Remove unused local.
5783
5784 2012-07-31 Glenn Morris <rgm@gnu.org>
5785
5786 * s/usg5-4-common.h (wait3, WRETCODE): Let configure set them.
5787
5788 * conf_post.h [USG5_4]:
5789 Move remaining contents of s/usg5-4-common.h here.
5790 * s/usg5-4-common.h: Remove file.
5791
5792 * conf_post.h [IRIX6_5]: Move remaining contents of s/irix6-5.h here.
5793 * s/irix6-5.h: Remove file.
5794
5795 * conf_post.h [DARWIN_OS]: Move remaining contents of s/darwin.h here.
5796 * s/darwin.h: Remove file.
5797
5798 * conf_post.h [HPUX]: Move random, srandom here from s/hpux10-20.h.
5799 * s/hpux10-20.h: Remove file, which is now empty.
5800
5801 2012-07-30 Glenn Morris <rgm@gnu.org>
5802
5803 * conf_post.h: New, split from configure.ac's AH_BOTTOM.
5804 * Makefile.in (config_h): Add conf_post.h.
5805 * makefile.w32-in (CONFIG_H): Add conf_post.h.
5806
5807 2012-07-30 Jan Djärv <jan.h.d@swipnet.se>
5808
5809 * nsterm.m (ns_do_open_file): New variable.
5810 (ns_term_init): Set ns_do_open_file to YES after run returns.
5811 (openFile, openTempFile, openFileWithoutUI, openFiles):
5812 Open files only if ns_do_open_file.
5813
5814 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
5815
5816 * lisp.h (SWITCH_ENUM_CAST): Remove. All uses removed.
5817 This no-op macro hasn't been needed for many years.
5818 * src/regex.c (SWITCH_ENUM_CAST) [!emacs]: Likewise.
5819
5820 Export DIRECTORY_SEP, TYPEMASK, VALMASK to GDB.
5821 * alloc.c (gdb_make_enums_visible) [USE_LSB_TAG]: Add lsb_bits.
5822 * lisp.h (enum lsb_bits) [USE_LSB_TAG]: New enum, for
5823 gdb_make_enums_visible.
5824 (TYPEMASK, VALMASK) [USE_LSB_TAGS]: Now enum constants, not macros.
5825 (DIRECTORY_SEP): Now a constant, not a macro.
5826
5827 2012-07-30 Eli Zaretskii <eliz@gnu.org>
5828
5829 * w32fns.c (w32_wnd_proc): Pass w32_keyboard_codepage to
5830 w32_kbd_patch_key as the 2nd arg. (Bug#12082)
5831
5832 * w32term.c <w32_keyboard_codepage>: Renamed from
5833 keyboard_codepage and now external. All users changed.
5834
5835 * w32term.h: Add declaration of w32_keyboard_codepage.
5836
5837 * w32inevt.c (w32_kbd_patch_key): Accept an additional argument --
5838 the codepage to translate keys to Unicode. If this argument is
5839 -1, use the value returned by GetConsoleCP. All callers changed.
5840
5841 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
5842
5843 Update .PHONY listings in makefiles.
5844 * Makefile.in (.PHONY): Add all, mostlyclean, clean,
5845 bootstrap-clean, distclean, maintainer-clean, versioclean,
5846 extraclean, frc.
5847
5848 * lisp.h (STRING_BYTES_BOUND): Cast entire result to ptrdiff_t.
5849 This is a bit clearer. Fix some commentary typos.
5850
5851 2012-07-30 Glenn Morris <rgm@gnu.org>
5852
5853 * s/netbsd.h: Let configure include signal.h if needed.
5854 Remove file, which is now empty.
5855
5856 * s/usg5-4-common.h (_longjmp, _setjmp, TIOCSIGSEND):
5857 Let configure set them.
5858 * s/irix6-5.h (_longjmp, _setjmp, TIOCSIGSEND):
5859 No more need to undefine.
5860
5861 2012-07-30 Andreas Schwab <schwab@linux-m68k.org>
5862
5863 * keymap.c (Fkey_description): Don't remove 0x80 bit from
5864 non-single-byte char when adding meta modifier. (Bug#12090)
5865
5866 2012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
5867
5868 Convert safe_call to use variable number of arguments.
5869 * xdisp.c (safe_call): Convert to use varargs. Adjust users.
5870 (safe_call2): Fix comment.
5871 * lisp.h (safe_call): Adjust prototype.
5872 * coding.c (encode_coding_object): Change to use safe_call2.
5873 * xfaces.c (merge_face_heights): Change to use safe_call1.
5874
5875 2012-07-30 Glenn Morris <rgm@gnu.org>
5876
5877 * s/aix4-2.h (sigmask): No need to undefine it, since syssignal.h
5878 does that unconditionally. Remove file, which is now empty.
5879
5880 * s/freebsd.h, s/gnu-linux.h, s/sol2-6.h, s/unixware.h:
5881 Remove empty files.
5882
5883 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
5884
5885 Export to GDB most of lisp.h's remaining object-like macros.
5886 * lisp.h (min, max): Move earlier, because they're used earlier now.
5887 (INTMASK, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK)
5888 (CHAR_TABLE_STANDARD_SLOTS, CHARTAB_SIZE_BITS_0)
5889 (CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2, CHARTAB_SIZE_BITS_3)
5890 (DEFAULT_HASH_SIZE, COMPILED_ARGLIST, COMPILED_BYTECODE)
5891 (COMPILED_CONSTANTS, COMPILED_STACK_DEPTH, COMPILED_DOC_STRING)
5892 (COMPILED_INTERACTIVE, CHAR_ALT, CHAR_SUPER, CHAR_HYPER, CHAR_SHIFT)
5893 (CHAR_CTL, CHAR_META, CHAR_MODIFIER_MASK, CHARACTERBITS)
5894 (MANY, UNEVALLED, FLOAT_TO_STRING_BUFSIZE, MAX_ALLOCA):
5895 Now constants, for GDB. They need not be macros.
5896 (MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM, STRING_BYTES_BOUND):
5897 Now constants, for GDB, as well as macros, for static initializers.
5898 (CHAR_TABLE_STANDARD_SLOTS, CHAR_TABLE_EXTRA_SLOTS):
5899 Move to after the definition of struct Lisp_Char_Table,
5900 since the former now needs that type defined.
5901 (enum CHARTAB_SIZE_BITS, enum CHAR_TABLE_STANDARD_SLOTS)
5902 (enum DEFAULT_HASH_SIZE, enum Lisp_Compiled, enum char_bits)
5903 (enum maxargs, enum FLOAT_TO_STRING_BUFSIZE, enum MAX_ALLOCA):
5904 New enums, for gdb_make_enums_visible.
5905 (GLYPH_MODE_LINE_FACE): Remove; unused.
5906 * alloc.c (STRING_BYTES_MAX): Now a constant, not a macro.
5907 (gdb_make_enums_visible): Add enum CHARTAB_SIZE_BITS, enum
5908 CHAR_TABLE_STANDARD_SLOTS, enum char_bits, enum DEFAULT_HASH_SIZE,
5909 enum FLOAT_TO_STRING_BUFSIZE, enum Lisp_Bits, enum Lisp_Compiled,
5910 enum maxargs, enum MAX_ALLOCA.
5911 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): Remove.
5912 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Remove;
5913 no longer needed, now that they are done in lisp.h.
5914
5915 2012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
5916
5917 Cleanup string bytes checking.
5918 * alloc.c (GC_STRING_BYTES, CHECK_STRING_BYTES): Remove. Convert
5919 all users to STRING_BYTES or string_bytes if GC_CHECK_STRING_BYTES.
5920 (check_string_bytes): Define to empty if not GC_CHECK_STRING_BYTES.
5921 (check_sblock, compact_small_strings): Simplify.
5922
5923 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
5924
5925 * lisp.h (LISP_INT_TAG, LISP_INT1_TAG, LISP_STRING_TAG): Remove.
5926 These macros are confusing and no longer need to be defined, as
5927 the enum values now suffice. All uses replaced with definiens.
5928 (Lisp_Int1, Lisp_String): Define directly; this is clearer.
5929
5930 2012-07-29 Juanma Barranquero <lekktu@gmail.com>
5931
5932 * makefile.w32-in (LISP_H, $(BLD)/emacs.$(O), $(BLD)/w32inevt.$(O))
5933 ($(BLD)/w32console.$(O)): Update dependencies.
5934
5935 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
5936
5937 Remove HIDE_LISP_IMPLEMENTATION and cleanup cons free list check.
5938 * lisp.h (HIDE_LISP_IMPLEMENTATION): Remove as useless for a long
5939 time. Adjust users.
5940 (CHECK_CONS_LIST): Remove. Convert all users to check_cons_list.
5941
5942 2012-07-29 Jan Djärv <jan.h.d@swipnet.se>
5943
5944 * lread.c (init_lread): Remove if-statement in ifdef HAVE_NS before
5945 setting sitelisp (Bug#12010).
5946
5947 2012-07-29 Eli Zaretskii <eliz@gnu.org>
5948
5949 * w32heap.h (OS_9X): Rename from OS_WINDOWS_95.
5950
5951 * w32heap.c (cache_system_info):
5952 * w32.c (sys_rename):
5953 * w32proc.c (find_child_console, sys_kill): All users changed.
5954
5955 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
5956
5957 * alloc.c (Fgarbage_collect): Indent as per usual Emacs style.
5958
5959 2012-07-29 Eli Zaretskii <eliz@gnu.org>
5960
5961 * makefile.w32-in (LISP_H): Add $(NT_INC)/stdalign.h.
5962
5963 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
5964
5965 Cleanup statistics calculation in Fgarbage_collect.
5966 * alloc.c (Fgarbage_collect): Rename t1 to meaningful start.
5967 Fix zombies percentage calculation. Simplify elapsed time calculation.
5968
5969 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
5970
5971 Generalize marker debugging code under MARKER_DEBUG and use eassert.
5972 * insdel.c (CHECK_MARKERS, check_markers_debug_flag): Remove.
5973 (gap_left, gap_right, adjust_markers_for_delete, insert_1_both)
5974 (insert_from_string_1, insert_from_gap, insert_from_buffer_1)
5975 (replace_range, replace_range_2, del_range_2): Change to eassert.
5976 * marker.c (byte_char_debug_check): Adjust style.
5977
5978 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
5979
5980 Don't use the abbreviation "win" to refer to Windows (Bug#10421).
5981 * regex.c (MAX_BUF_SIZE): Remove some incorrect and
5982 long-ago-commented-out code that talks about "WIN32".
5983 * w32heap.h (OS_WINDOWS_95): Rename from OS_WIN95.
5984 All uses changed.
5985
5986 2012-07-28 Paul Eggert <eggert@cs.ucla.edu>
5987
5988 Use Gnulib stdalign module (Bug#9772, Bug#9960).
5989 * alloc.c (XMALLOC_BASE_ALIGNMENT, GC_POINTER_ALIGNMENT, pure_alloc):
5990 Simplify by using alignof.
5991 (pure_alloc) [! USE_LSB_TAG]: Don't over-align EMACS_INT values.
5992 * lisp.h: Include <stdalign.h>.
5993 (GCALIGNMENT): New macro and constant.
5994 (DECL_ALIGN): Remove. All uses replaced by alignas (GCALIGNMENT).
5995 (USE_LSB_TAG): ifdef on alignas, not on DECL_ALIGN.
5996 (stdalign): New macro, if not already defined.
5997
5998 2012-07-28 Eli Zaretskii <eliz@gnu.org>
5999
6000 Fix non-ASCII input in non-GUI frames on MS-Windows. (Bug#12055)
6001 * w32inevt.c: Include w32inevt.h.
6002 (w32_read_console_input): New inline function, calls either
6003 ReadConsoleInputA or ReadConsoleInputW, depending on the value of
6004 w32_console_unicode_input.
6005 (fill_queue): Call w32_read_console_input instead of ReadConsoleInput.
6006 (w32_kbd_patch_key, key_event): Use the codepage returned by
6007 GetConsoleCP, rather than the ANSI codepage returned by GetLocaleInfo.
6008 (key_event): use uChar.UnicodeChar only if
6009 w32_console_unicode_input is non-zero.
6010
6011 * w32console.c: Include w32heap.h.
6012 <w32_console_unicode_input>: New global variable.
6013 (initialize_w32_display): Set w32_console_unicode_input to 1 on NT
6014 family of Windows, zero otherwise.
6015
6016 * w32inevt.h: Declare w32_console_unicode_input.
6017
6018 * xdisp.c (init_iterator): Don't reference tip_frame in a build
6019 --without-x. (Bug#11742)
6020
6021 2012-07-27 Paul Eggert <eggert@cs.ucla.edu>
6022
6023 Adjust GDB to reflect pvec_type changes (Bug#12036).
6024 * .gdbinit (xvectype, xpr, xbacktrace): Adjust to reflect the
6025 2012-07-04 changes to pseudovector representation.
6026 Problem reported by Eli Zaretskii in <http://bugs.gnu.org/12036#30>.
6027
6028 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
6029
6030 * dbusbind.c (XD_DBUS_VALIDATE_BUS_ADDRESS): Canonicalize session
6031 bus address.
6032 (xd_close_bus, Fdbus_init_bus): Handle reference counter properly.
6033
6034 2012-07-27 Eli Zaretskii <eliz@gnu.org>
6035
6036 * alloc.c (listn): Fix the order the arguments are consed onto the
6037 list.
6038
6039 * lisp.h (enum constype): Use CONSTYPE_HEAP and CONSTYPE_PURE for
6040 enumeration constants, as PURE and HEAP are too general, and clash
6041 with other headers and sources, such as gmalloc.c and the
6042 MS-Windows system headers. All users changed.
6043
6044 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
6045
6046 Revert last save_excursion_save and save_excursion_restore changes.
6047 * alloc.c, editfns.c, marker.c, lisp.h: Revert.
6048 Lots of crashes reported by Chong Yidong <cyd@gnu.org>.
6049
6050 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
6051
6052 Fix recently-introduced typos in Windows port.
6053 Reported by Martin Rudalics <rudalics@gmx.at>.
6054 * w32.c (init_environment): Replace comma with semicolon.
6055 * w32fns.c (syms_of_w32fns): Add missing parenthesis.
6056
6057 2012-07-27 Paul Eggert <eggert@cs.ucla.edu>
6058
6059 Improve GDB symbol export (Bug#12036).
6060 * .gdbinit (xgetptr, xgetint, xgettype): Set $bugfix in different
6061 arms of an 'if', not using conditional expressions; otherwise GDB
6062 complains about the types in the unevaluated arm when the argument
6063 is an integer literal.
6064 (xgetint): Simplify expression.
6065 * alloc.c (gdb_make_enums_visible): New constant. This ports to
6066 GCC 3.4.2 the export of symbols to GDB. Problem reported by Eli
6067 Zaretskii in <http://bugs.gnu.org/12036#13>.
6068 * lisp.h (PUBLISH_TO_GDB): Remove. All uses removed. No longer
6069 needed now that we have gdb_make_enums_visible.
6070 (enum CHECK_LISP_OBJECT_TYPE, enum Lisp_Bits, enum More_Lisp_Bits)
6071 (enum enum_USE_LSB_TAG):
6072 New enum types, packaging up enums that need to be exported to GDB.
6073
6074 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
6075
6076 Utility function to make a list from specified amount of objects.
6077 * lisp.h (enum constype): New datatype.
6078 (listn): New prototype.
6079 * alloc.c (listn): New function.
6080 (Fmemory_use_count, syms_of_alloc): Use it.
6081 * buffer.c (syms_of_buffer): Likewise.
6082 * callint.c (syms_of_callint): Likewise.
6083 * charset.c (define_charset_internal): Likewise.
6084 * coding.c (syms_of_coding): Likewise.
6085 * keymap.c (syms_of_keymap): Likewise.
6086 * search.c (syms_of_search): Likewise.
6087 * syntax.c (syms_of_syntax): Likewise.
6088 * w32.c (init_environment): Likewise.
6089 * w32fns.c (Fw32_battery_status, syms_of_w32fns): Likewise.
6090 * xdisp.c (syms_of_xdisp): Likewise.
6091 * xfns.c (syms_of_xfns): Likewise.
6092
6093 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
6094
6095 Fast save_excursion_save and save_excursion_restore.
6096 * lisp.h (struct Lisp_Excursion): New data type.
6097 (PVEC_EXCURSION): New pseudovector type.
6098 (XEXCURSION, XSETEXCURSION, EXCURSIONP): Convenient macros
6099 to deal with it. Adjust comments.
6100 (init_marker, attach_marker): New prototype.
6101 (unchain_marker): Adjust prototype.
6102 * marker.c (attach_marker): Change to global.
6103 (init_marker): New function.
6104 * alloc.c (Fmake_marker, build_marker): Use it.
6105 (build_marker): More easserts.
6106 (mark_object): Handle struct Lisp_Excursion.
6107 * editfns.c (save_excursion_save, save_excursion_restore):
6108 Reimplement to use struct Lisp_Excursion. Add comments.
6109
6110 2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
6111
6112 Fix export of symbols to GDB (Bug#12036).
6113 * alloc.c (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL)
6114 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Move these here from
6115 emacs.c, as this is a more-suitable home. Had this been done earlier
6116 the fix for 12036 would have avoided some of the problems noted in
6117 <http://bugs.gnu.org/12036#13> by Eli Zaretskii, as the scope problems
6118 would have been more obvious.
6119 * emacs.c: Do not include <verify.h>; no longer needed.
6120 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS)
6121 (gdb_GCTYPEBITS, gdb_USE_LSB_TAG)
6122 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
6123 Remove; now done in lisp.h.
6124 * lisp.h (PUBLISH_TO_GDB): New macro.
6125 (GCTYPEBITS, USE_LSB_TAG, CHECK_LISP_OBJECT_TYPE, enum pvec_type)
6126 (DATA_SEG_BITS): Use it.
6127 (GCTYPEBITS, USE_LSB_TAG): Now also an enum, for GDB.
6128 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Now just an enum, for GDB.
6129 * mem-limits.h (EXCEEDS_LISP_PTR): Redo so that DATA_SEG_BITS need
6130 not be usable in #if. This simplifies things.
6131
6132 2012-07-26 Juanma Barranquero <lekktu@gmail.com>
6133
6134 * makefile.w32-in ($(BLD)/emacs.$(O)): Update dependencies.
6135
6136 2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
6137
6138 Simplify export of symbols to GDB (Bug#12036).
6139 * .gdbinit (xgetptr, xgetint, xgettype): Don't use "set $bugfix =
6140 $bugfix.i", as this doesn't work (with GDB 7.4.1, anyway).
6141 (xgetptr, xgetint, xgettype, xcoding, xcharset, xprintbytestr):
6142 Adjust to changes in lisp.h and emacs.c, by using
6143 CHECK_LISP_OBJECT_TYPE rather than gdb_use_struct, VALMASK instead
6144 of $valmask, DATA_SEG_BITS instead of gdb_data_seg_bits,
6145 INTTYPEBITS instead of gdb_gctypebits - 1, USE_LSB_TAG instead of
6146 gdb_use_lsb, (1 << GCTYPEBITS) - 1 instead of $tagmask, VALBITS
6147 instead of gdb_valbits.
6148 (xvectype, xvector, xpr, xprintstr, xbacktrace): Similarly, use
6149 PSEUDOVECTOR_FLAG instead of PVEC_FLAG, and ARRAY_MARK_FLAG
6150 instead of gdb_array_mark_flag.
6151 (xboolvector): Get size from $->size, not $->header.size.
6152 Use BOOL_VECTOR_BITS_PER_CHAR rather than mystery constants.
6153 (xreload, hook-run, hookpost-run): Remove.
6154 * emacs.c: Include <verify.h>.
6155 (gdb_use_lsb, gdb_use_struct, gdb_valbits, gdb_gctypebits)
6156 (gdb_data_seg_bits, PVEC_FLAG, gdb_array_mark_flag, gdb_pvec_type):
6157 Remove.
6158 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS, gdb_GCTYPEBITS)
6159 (gdb_USE_LSB_TAG): New enum constants.
6160 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
6161 Also define these as enum constants, so they're visible to GDB.
6162 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): New macros.
6163 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Also define these
6164 as constants, so they're visible to GDB.
6165 * lisp.h (VALBITS, INTTYPEBITS, FIXNUM_BITS, PSEUDOVECTOR_SIZE_BITS)
6166 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK, BOOL_VECTOR_BITS_PER_CHAR):
6167 Now enum constants, not macros, so they're visible to GDB.
6168 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Default to 0, as this is
6169 more convenient now. All uses changed.
6170 (VALMASK) [USE_LSB_TAG]: Also define in this case.
6171 * mem-limits.h (EXCEEDS_LISP_PTR): Adjust to DATA_SEG_BITS change.
6172
6173 2012-07-26 Dmitry Antipov <dmantipov@yandex.ru>
6174
6175 Explicitly free restriction data that are not needed anymore.
6176 * editfns.c (save_restriction_restore): Free restriction data.
6177
6178 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
6179
6180 * eval.c (Fautoload_do_load): Rename from do_autoload, export to Lisp,
6181 add argument, tune behavior, and adjust all callers.
6182
6183 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
6184
6185 Use typedef for EMACS_INT, EMACS_UINT.
6186 * lisp.h, s/ms-w32.h (EMACS_INT, EMACS_UINT): Use typedefs rather
6187 than macros. This simplifies debugging in the usual case, since
6188 it lets GDB show addresses as 'EMACS_INT *' rather than 'long int *'
6189 and it allows expressions involving EMACS_INT casts.
6190 * .gdbinit (xreload): Simplify by using EMACS_INT cast.
6191
6192 2012-07-25 Jan Djärv <jan.h.d@swipnet.se>
6193
6194 * nsterm.m (ns_read_socket): Return early if there is a modal
6195 window (Bug#12043).
6196
6197 2012-07-25 Martin Rudalics <rudalics@gmx.at>
6198
6199 * frame.c (Fredirect_frame_focus): In doc-string don't mention
6200 that FOCUS-FRAME can be omitted.
6201
6202 2012-07-25 Dmitry Antipov <dmantipov@yandex.ru>
6203
6204 Adjust buffer text indirection counters at the end of Fkill_buffer.
6205 * buffer.c (Fkill_buffer): Adjust indirection counters when the
6206 buffer is definitely dead. This should really fix an issue reported
6207 by Christoph Scholtes again. (Bug#12007).
6208 (init_buffer_once): Initialize indirection counters of
6209 buffer_defaults and buffer_local_symbols (for sanity and safety).
6210
6211 2012-07-24 Eli Zaretskii <eliz@gnu.org>
6212
6213 * xdisp.c (init_iterator): Don't compute dimensions of truncation
6214 and continuation glyphs on tooltip frames, leave them at zero.
6215 Avoids continued lines in tooltips. (Bug#11832)
6216
6217 2012-07-24 Dmitry Antipov <dmantipov@yandex.ru>
6218
6219 Simplify copy_overlay.
6220 * buffer.c (copy_overlay): Simplify. Use build_marker.
6221 * lisp.h (struct Lisp_Overlay): Restore comment with minor tweaks.
6222
6223 2012-07-23 Eli Zaretskii <eliz@gnu.org>
6224
6225 * print.c (print_object): Don't crash when a frame's name is nil
6226 or invalid. (Bug#12025)
6227
6228 * window.c (decode_any_window): Disable CHECK_LIVE_FRAME test, as
6229 it signals an error when a tooltip frame is being created.
6230
6231 2012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
6232
6233 Cleanup miscellaneous objects allocation and initialization.
6234 * alloc.c (allocate_misc): Change to static. Add argument to
6235 specify the subtype. Adjust comment and users.
6236 (build_overlay): New function.
6237 * buffer.c (copy_overlays, Fmake_overlay): Use it.
6238 * lisp.h (struct Lisp_Overlay): Remove obsolete comment.
6239 (allocate_misc): Remove prototype.
6240 (build_overlay): Add prototype.
6241
6242 2012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
6243
6244 Swap buffer text indirection counters in Fbuffer_swap_text.
6245 * buffer.c (Fbuffer_swap_text): Swap indirections too.
6246 This avoids crash reported by Christoph Scholtes at
6247 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00785.html.
6248
6249 2012-07-22 Jan Djärv <jan.h.d@swipnet.se>
6250
6251 * nsmenu.m (Popdown_data): New struct.
6252 (pop_down_menu): p->pointer is Popdown_data. Release the pool and
6253 free Popdown_data.
6254 (ns_popup_dialog): Use NSAutoreleasePool and pass it to pop_down_menu.
6255 (initWithContentRect): Make imgView and contentView non-static
6256 and autorelease them. Also autorelease img and matrix (Bug#12005).
6257 (dealloc): Remove (Bug#12005).
6258
6259 2012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
6260
6261 Adjust consing_since_gc when objects are explicitly freed.
6262 * alloc.c (GC_DEFAULT_THRESHOLD): New macro.
6263 (Fgarbage_collect): Use it. Change minimum to 1/10 of default.
6264 (free_cons, free_misc): Subtract object size from consing_since_gc.
6265
6266 2012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
6267
6268 Simplify and cleanup markers positioning code.
6269 * marker.c (attach_marker): More useful eassert.
6270 (live_buffer, set_marker_internal): New function.
6271 (Fset_marker, set_marker_restricted): Use set_marker_internal.
6272 (set_marker_both, set_marker_restricted_both): Use live_buffer.
6273
6274 2012-07-22 Paul Eggert <eggert@cs.ucla.edu>
6275
6276 * buffer.h (struct buffer.indirections): Now ptrdiff_t, not int,
6277 as it's limited by the amount of memory, not by INT_MAX.
6278
6279 2012-07-21 Eli Zaretskii <eliz@gnu.org>
6280
6281 * keyboard.c (keys_of_keyboard): Bind language-change to 'ignore'
6282 in special-event-map. See the discussion at
6283 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00417.html
6284 for the reasons.
6285
6286 * w32menu.c (add_menu_item): Cast to ULONG_PTR when assigning
6287 info.dwItemData. Fixes crashes on 64-bit Windows.
6288 Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
6289
6290 2012-07-21 Jan Djärv <jan.h.d@swipnet.se>
6291
6292 * nsterm.m (accessibilityAttributeValue): New function. (Bug#11134).
6293 (conversationIdentifier): Return value is NSInteger.
6294 * nsterm.m (accessibilityAttributeValue): Surround with NS_IMPL_COCOA.
6295
6296 2012-07-21 Chong Yidong <cyd@gnu.org>
6297
6298 * window.c (decode_any_window): Signal an error if the window is
6299 on a dead frame (Bug#11984).
6300
6301 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
6302
6303 Add indirection counting to speed up Fkill_buffer.
6304 * buffer.h (struct buffer): New member.
6305 * buffer.c (Fget_buffer_create): Set indirection counter to 0.
6306 (Fmake_indirect_buffer): Set indirection counter to -1, increment
6307 base buffer indirection counter.
6308 (compact_buffer): If ENABLE_CHECKING, verify indirection counters.
6309 (Fkill_buffer): Adjust indirection counters as needed, don't walk
6310 through buffer list if indirection counter is 0.
6311
6312 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
6313
6314 Extend the value returned by Fgarbage_collect with heap statistics.
6315 * alloc.c (Qheap): New symbol.
6316 (syms_of_alloc): DEFSYM it.
6317 (Fgarbage_collect): If DOUG_LEA_MALLOC, add mallinfo data.
6318 (Fmemory_free): Remove.
6319 (syms_of_alloc): Don't defsubr it.
6320 * buffer.c (Fcompact_buffer): Remove.
6321 (syms_of_buffer): Don't defsubr it.
6322
6323 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
6324
6325 Make maybe_gc inline.
6326 Verify that inlining is always possible (GCC 4.7.1, -O3 -Winline).
6327 * lisp.h (consing_since_gc, gc_relative_threshold)
6328 (memory_full_cons_threshold): Revert declaration.
6329 (maybe_gc): Remove prototype, define as inline.
6330 * alloc.c: Remove old commented-out code.
6331 (consing_since_gc, gc_relative_threshold)
6332 (memory_full_cons_threshold): Revert to global.
6333 (maybe_gc): Remove.
6334
6335 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
6336
6337 Simple wrapper for make_unibyte_string, adjust font_open_by_name.
6338 * lisp.h (build_unibyte_string): New function.
6339 * dosfns.c, fileio.c, fns.c, ftfont.c, process.c:
6340 * sysdep.c, w32fns.c, xfns.c: Use it.
6341 * font.c (font_open_by_name): Change 2nd and 3rd args to the only arg
6342 of type Lisp_Object to avoid redundant calls to make_unibyte_string.
6343 Adjust users accordingly.
6344 * font.h (font_open_by_name): Adjust prototype.
6345
6346 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
6347
6348 Cleanup calls to Fgarbage_collect.
6349 * lisp.h (maybe_gc): New prototype.
6350 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
6351 Remove declarations.
6352 * alloc.c (maybe_gc): New function.
6353 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
6354 Make them static.
6355 * bytecode.c (MAYBE_GC): Use maybe_gc.
6356 * eval.c (eval_sub, Ffuncall): Likewise.
6357 * keyboard.c (read_char): Likewise. Adjust call to maybe_gc
6358 to avoid dependency from auto-save feature.
6359
6360 2012-07-19 Paul Eggert <eggert@cs.ucla.edu>
6361
6362 * buffer.h (FOR_EACH_BUFFER): Rename from 'for_each_buffer'.
6363 (FOR_EACH_PER_BUFFER_OBJECT_AT): Rename from
6364 'for_each_per_buffer_object_at'.
6365 All uses changed. It's better to use upper-case for macros that
6366 cannot be implemented as functions, to give the reader a clue
6367 that they're special.
6368
6369 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
6370
6371 * alloc.c (Fgarbage_collect): Tweak docstring.
6372
6373 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
6374
6375 Tweak the value returned from Fgarbage_collect again.
6376 * alloc.c (Fgarbage_collect): New return value, as confirmed in
6377 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00418.html.
6378 Adjust documentation.
6379 (total_vector_bytes): Rename to total_vector_slots, adjust
6380 accounting.
6381 (total_free_vector_bytes): Rename to total_free_vector_slots,
6382 adjust accounting.
6383 (Qstring_bytes, Qvector_slots): New symbols.
6384 (syms_of_alloc): DEFSYM them.
6385
6386 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
6387
6388 Buffer compaction primitive which may be used from Lisp.
6389 * buffer.c (compact_buffer, Fcompact_buffer): New function.
6390 (syms_of_buffer): Register Fcompact_buffer.
6391 * alloc.c (Fgarbage_collect): Use compact_buffer.
6392 * buffer.h (compact_buffer): New prototype.
6393 (struct buffer_text): New member.
6394
6395 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
6396
6397 New macro to iterate over all buffers, miscellaneous cleanups.
6398 * lisp.h (all_buffers): Remove declaration.
6399 * buffer.h (all_buffers): Add declaration, with comment.
6400 (for_each_buffer): New macro.
6401 * alloc.c (Fgarbage_collect, mark_object): Use it.
6402 * buffer.c (Fkill_buffer, Fbuffer_swap_text, Fset_buffer_multibyte)
6403 (init_buffer): Likewise.
6404 * data.c (Fset_default): Likewise.
6405 * coding.c (code_conversion_restore): Remove redundant check
6406 for dead buffer.
6407 * buffer.c (Fkill_buffer): Likewise. Remove obsolete comment.
6408
6409 2012-07-18 Andreas Schwab <schwab@linux-m68k.org>
6410
6411 Fix bug that created negative-length intervals.
6412 * intervals.c (merge_interval_right, merge_interval_left):
6413 Do not zero out this interval if it is absorbed by its children,
6414 as this interval's total length doesn't change in that case. See
6415 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00403.html>.
6416
6417 2012-07-18 Paul Eggert <eggert@cs.ucla.edu>
6418
6419 * alloc.c (Fmake_bool_vector): Fix off-by-8 bug
6420 when invoking (make-bool-vector N t) and N is a positive
6421 multiple of 8 -- the last 8 bits were mistakenly cleared.
6422
6423 Remove some struct layout assumptions in bool vectors.
6424 * alloc.c (bool_header_size): New constant.
6425 (header_size, word_size): Move earlier, as they're now used earlier.
6426 Use 'word_size' in a few more places, where it's appropriate.
6427 (Fmake_bool_vector, sweep_vectors): Don't assume that there is no
6428 padding before the data member of a bool vector.
6429 (sweep_vectors): Use PSEUDOVECTOR_TYPEP, in an eassert, rather
6430 than doing the check by hand with an abort ().
6431
6432 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
6433
6434 * eval.c (Fdefvar): Don't check constants since we only set the var if
6435 it's not yet defined anyway (bug#11904).
6436
6437 * lisp.h (last_undo_boundary): Declare new var.
6438 * keyboard.c (command_loop_1): Set it.
6439 * cmds.c (Fself_insert_command): Use it to only remove boundaries that
6440 were auto-added by the command loop (bug#11774).
6441
6442 2012-07-18 Andreas Schwab <schwab@linux-m68k.org>
6443
6444 * w32font.c (Qsymbol): Remove local definition.
6445 (syms_of_w32font): Don't DEFSYM it.
6446
6447 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
6448
6449 Fix sweep_vectors to handle large bool vectors correctly.
6450 * alloc.c (sweep_vectors): Account total_vector_bytes for
6451 bool vectors larger than VBLOCK_BYTES_MAX.
6452
6453 2012-07-18 Chong Yidong <cyd@gnu.org>
6454
6455 * frame.c (x_set_frame_parameters): Revert bogus change introduced
6456 in 2012-05-25 commit by Paul Eggert (Bug#11738).
6457
6458 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
6459
6460 Return more descriptive data from Fgarbage_collect.
6461 Suggested by Stefan Monnier in
6462 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00369.html.
6463 * alloc.c (bounded_number): New function.
6464 (total_buffers, total_vectors): New variable.
6465 (total_string_size): Rename to total_string_bytes, adjust users.
6466 (total_vector_size): Rename to total_vector_bytes, adjust users.
6467 (sweep_vectors): Account total_vectors and total_vector_bytes.
6468 (Fgarbage_collect): New return value. Adjust documentation.
6469 (gc_sweep): Account total_buffers.
6470 (Fmemory_free, Fmemory_use_counts): Use bounded_number.
6471 (VECTOR_SIZE): Remove.
6472 * data.c (Qfloat, Qvector, Qsymbol, Qstring, Qcons): Make global.
6473 (Qinterval, Qmisc): New symbols.
6474 (syms_of_data): Initialize them.
6475 * lisp.h (Qinterval, Qsymbol, Qstring, Qmisc, Qvector, Qfloat)
6476 (Qcons, Qbuffer): New declarations.
6477
6478 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
6479
6480 * alloc.c (Fmemory_free): Account for memory-free's own storage.
6481 Round up, not down. Improve doc.
6482
6483 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
6484
6485 Restore old code in allocate_string_data to avoid Faset breakage.
6486 Reported by Julien Danjou <julien@danjou.info> in
6487 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00371.html.
6488 * alloc.c (allocate_string_data): Restore old code with minor
6489 adjustments, fix comment to explain this subtle issue.
6490
6491 2012-07-17 Eli Zaretskii <eliz@gnu.org>
6492
6493 Remove FILE_SYSTEM_CASE.
6494 * s/msdos.h (FILE_SYSTEM_CASE): Don't define.
6495
6496 * fileio.c (FILE_SYSTEM_CASE): Don't define.
6497 (Ffile_name_directory, Fexpand_file_name): Don't use FILE_SYSTEM_CASE.
6498 Fixes problems on MS-DOS with Vtemp_file_name_pattern when
6499 call-process-region passes it through expand-file-name.
6500
6501 * dired.c (file_name_completion): Don't use FILE_SYSTEM_CASE.
6502
6503 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
6504
6505 Fix crash when creating indirect buffer (Bug#11917)
6506 * buffer.c (buffer_lisp_local_variables): Add argument CLONE.
6507 Don't handle unbound variables specially if non-zero.
6508 (Fbuffer_local_variables): Pass zero.
6509 (clone_per_buffer_values): Pass non-zero.
6510
6511 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
6512
6513 * gnutls.c (emacs_gnutls_handshake): Revert last change. Add QUIT
6514 to make the loop interruptible.
6515
6516 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
6517
6518 * gnutls.c (emacs_gnutls_handshake): Only retry if
6519 GNUTLS_E_INTERRUPTED.
6520
6521 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
6522
6523 Cleanup and convert miscellaneous checks to eassert.
6524 * alloc.c (mark_interval): Fix comment, partially rephrase
6525 old comment from intervals.h (see below).
6526 * intervals.c (find_interval, adjust_intervals_for_insertion)
6527 (delete_interval, adjust_intervals_for_deletion)
6528 (graft_intervals_into_buffer, temp_set_point_both, copy_intervals):
6529 Convert to eassert.
6530 (adjust_intervals_for_insertion, make_new_interval):
6531 Remove obsolete and unused code.
6532 * intervals.h (struct interval): Remove obsolete comment.
6533 * textprotp.c (erase_properties): Remove unused code.
6534 (Fadd_text_properties, set_text_properties_1, Fremove_text_properties)
6535 (Fremove_list_of_text_properties): Convert to eassert.
6536
6537 2012-07-17 Chong Yidong <cyd@gnu.org>
6538
6539 * editfns.c (Finsert_char): Doc fix.
6540
6541 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
6542
6543 Fix previous change to make Fmemory_free always accurate.
6544 * alloc.c (make_interval): Update total_free_intervals.
6545 (make_float): Likewise for total_free_floats.
6546 (free_cons, Fcons): Likewise for total_free_conses.
6547 (SETUP_ON_FREE_LIST, allocate_vector_from_block):
6548 Likewise for total_free_vector_bytes.
6549 (Fmake_symbol): Likewise for total_free_symbols.
6550 (bytes_free): Remove.
6551
6552 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
6553
6554 Simple free memory accounting feature.
6555 * alloc.c (bytes_free, total_free_vector_bytes): New variable.
6556 (sweep_vectors): Accumulate size of free vectors.
6557 (Fgarbage_collect): Setup bytes_free.
6558 (Fmemory_free): New function.
6559 (syms_of_alloc): Register it.
6560
6561 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
6562
6563 Cleanup overlays checking.
6564 * buffer.h (OVERLAY_VALID): Remove as useless synonym of OVERLAYP.
6565 * buffer.c (overlay_touches_p, recenter_overlay_lists): Change to
6566 eassert and OVERLAYP.
6567 (sort_overlays): Change to use OVERLAYP.
6568
6569 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
6570
6571 * editfns.c (Finsert_char): Make it interactive, and make the
6572 second arg optional. Copy interactive spec and docstring from
6573 ucs-insert.
6574
6575 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
6576
6577 * floatfns.c (Fabs): Do not wrap fabs inside IN_FLOAT (Bug#11913).
6578 Unlike the other wrapped functions, fabs has an unspecified
6579 effect on errno.
6580
6581 2012-07-16 Jan Djärv <jan.h.d@swipnet.se>
6582
6583 * nsterm.m (keyDown): Interpret flags without left/right bits
6584 as the left key (Bug#11670).
6585
6586 2012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
6587
6588 Remove empty and useless init functions.
6589 * lisp.h (init_character_once, init_fns, init_image)
6590 (init_filelock, init_sound): Remove prototype.
6591 * character.c (init_character_once): Remove.
6592 * filelock.c (init_filelock): Likewise.
6593 * fns.c (init_fns): Likewise.
6594 * image.c (init_image): Likewise.
6595 * sound.c (init_sound): Likewise.
6596 * emacs.c (main): Adjust accordingly.
6597
6598 2012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
6599
6600 * gtkutil.h: Tiny cleanups.
6601 (use_old_gtk_file_dialog): Remove useless declaration.
6602 (xg_uses_old_file_dialog): Add suggested const attribute.
6603
6604 2012-07-15 Eli Zaretskii <eliz@gnu.org>
6605
6606 * bidi.c (MAX_STRONG_CHAR_SEARCH): New macro.
6607 (bidi_paragraph_init): Use it to limit search forward for a strong
6608 directional character in abnormally large paragraphs full of
6609 neutral or weak characters. (Bug#11943)
6610
6611 2012-07-15 Stefano Facchini <stefano.facchini@gmail.com> (tiny change)
6612
6613 * gtkutil.c (xg_create_tool_bar): Apply "primary-toolbar" style to
6614 the toolbar (Bug#9451).
6615 (xg_make_tool_item): Give the widget event box a transparent
6616 background.
6617
6618 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
6619
6620 Cleanup basic allocation variables and functions.
6621 * alloc.c (ignore_warnings, init_intervals, init_float)
6622 (init_cons, init_symbol, init_marker): Remove.
6623 (interval_block_index): Initialize to INTERVAL_BLOCK_SIZE.
6624 (float_block_index): Initialize to FLOAT_BLOCK_SIZE.
6625 (cons_block_index): Initialize to CONS_BLOCK_SIZE.
6626 (symbol_block_size): Initialize to SYMBOL_BLOCK_SIZE.
6627 (marker_block_index): Initialize to MARKER_BLOCK_SIZE.
6628 (staticidx, init_alloc_once, init_strings, free_ablock):
6629 Remove redundant initialization.
6630 * fns.c (init_weak_hash_tables): Remove.
6631 * lisp.h (init_weak_hash_tables): Remove prototype.
6632
6633 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
6634
6635 Use zero_vector where appropriate.
6636 * alloc.c (zero_vector): Define as Lisp_Object. Adjust users
6637 accordingly.
6638 * lisp.h (zero_vector): New declaration.
6639 * font.c (null_vector): Remove.
6640 (syms_of_font): Remove initialization and staticpro.
6641 (font_list_entities, font_find_for_lface): Change to use zero_vector.
6642 * keymap.c (Faccessible_keymaps): Likewise.
6643
6644 2012-07-15 Leo Liu <sdl.web@gmail.com>
6645
6646 * fringe.c: Fix typo in comments.
6647
6648 2012-07-14 Leo Liu <sdl.web@gmail.com>
6649
6650 * fringe.c: Add a new bitmap exclamation-mark.
6651
6652 2012-07-14 Eli Zaretskii <eliz@gnu.org>
6653
6654 * gmalloc.c (GMALLOC_INHIBIT_VALLOC): Don't reference.
6655
6656 * s/msdos.h (BSD_SYSTEM, DATA_START, GC_SETJMP_WORKS, HAVE_MOUSE)
6657 (HAVE_MENUS): Don't define, defined by editing config.in with
6658 msdos/sed2v2.inp.
6659 (GMALLOC_INHIBIT_VALLOC): Don't define.
6660 (MODE_LINE_BINARY_TEXT): Remove, not used anymore.
6661
6662 2012-07-14 Juanma Barranquero <lekktu@gmail.com>
6663
6664 * s/ms-w32.h (GC_SETJMP_WORKS, GC_MARK_STACK): Set in nt/config.nt.
6665
6666 2012-07-14 Glenn Morris <rgm@gnu.org>
6667
6668 * s/aix4-2.h, s/freebsd.h, s/gnu-linux.h, s/hpux10-20.h:
6669 * s/irix6-5.h, s/netbsd.h, s/sol2-6.h, s/unixware.h:
6670 Let configure set GC_SETJMP_WORKS, GC_MARK_STACK.
6671
6672 2012-07-13 Glenn Morris <rgm@gnu.org>
6673
6674 * s/gnu-linux.h (GC_MARK_SECONDARY_STACK): Let configure set it.
6675
6676 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Let configure set it.
6677 * s/irix6-5.h (SETUP_SLAVE_PTY): No more need to unset it.
6678
6679 2012-07-13 Jan Djärv <jan.h.d@swipnet.se>
6680
6681 * nsterm.m (uRect): Only define if NS_IMPL_GNUSTEP.
6682 (x_free_frame_resources): Pass x_free_frame_resources to NSTRACE.
6683 (ns_lisp_to_color, ns_string_to_lispmod, ns_term_init)
6684 (ns_term_shutdown, requestService, initFrameFromEmacs): Use SSDATA
6685 where appropriate.
6686 (ns_exec_path, ns_load_path, changeFont): Put () around assignment used
6687 as boolean expression.
6688 (x_set_window_size): Remove unused variable toolbar.
6689 (ns_get_color_default, ns_mod_to_lisp): Remove.
6690 (ns_mouse_position): Remove unused variables xchar and ychar.
6691 (ns_compute_glyph_string_overhangs): Remove unused variable face.
6692 (ns_set_vertical_scroll_bar): Remove unused variable count.
6693 (ns_delete_terminal): Remove unused variable i.
6694 (ns_term_init): Remove unused variables r, g and b.
6695 (mouseDown): Remove unused variable window.
6696 (windowDidResize): Move definition of theWindow inside NS_IMPL_GNUSTEP.
6697 (initFrameFromEmacs): Remove unused variable vbextra.
6698 (mouseEntered): Remove unused variables p and dpyinfo.
6699 (mouseExited): Remove unused variables p and r.
6700 (ns_define_frame_cursor, ns_clear_frame_area)
6701 (ns_draw_window_cursor, ns_initialize_display_info): Make static.
6702 (menuDown): Assign [sender tag] to variable and cast the variable.
6703
6704 * nsterm.h (menuDown): Add id as type to argument sender.
6705 (ns_display_info_for_name): Add Lisp_Object argument.
6706 (ns_term_init): Add Lisp_Object argument.
6707 (ns_map_event_to_object): Add void argument.
6708 (ns_string_from_pasteboard, ns_string_to_pasteboard): Add correct
6709 prototype with arguments and only declare if __OBJC__.
6710 (nxatoms_of_nsselect): Add void argument.
6711 (ns_lisp_to_cursor_type): Add Lisp_Object argument.
6712 (ns_alloc_autorelease_pool): Add void argument.
6713 (ns_release_autorelease_pool): Add void* argument.
6714 (ns_get_defaults_value): Add const char* argument.
6715
6716 * nsmenu.m (ns_update_menubar, ns_menu_show, process_dialog)
6717 (initFromContents): Use SSDATA where appropriate.
6718 (ns_update_menubar): Add braces to ambigous if-else.
6719 (initWithTitle): Put () around assignment in if statement.
6720 (ns_menu_show): Remove unused variables window and keymap.
6721 (update_frame_tool_bar): Remove unused variable selected_p.
6722 (initWithContentRect): Remove unused variable this_cmd_name.
6723
6724 * nsimage.m (ns_load_image, allocInitFromFile): Use SSDATA where
6725 appropriate.
6726 (setXBMColor): Remove unused variable len.
6727 (setPixmapData): Put () around assignment in loop statement.
6728
6729 * nsfont.m (ns_get_family, ns_lang_to_script, ns_otf_to_script)
6730 (ns_registry_to_script, ns_get_req_script, nsfont_open): Use SSDATA
6731 where appropriate.
6732 (ns_get_covering_families, ns_findfonts, nsfont_list_family): Put ()
6733 around assignment in loop statement.
6734 (nsfont_open): Remove unused variable i.
6735 (nsfont_open): Remove unused variable len.
6736 (nsfont_draw): Remove unused variable cs.
6737
6738 * nsfns.m (x_set_icon_name, ns_set_name_internal)
6739 (ns_set_name_as_filename, ns_implicitly_set_icon_type)
6740 (x_set_icon_type, ns_lisp_to_cursor_type, Fns_read_file_name)
6741 (Fns_get_resource, Fns_set_resource, Fx_open_connection)
6742 (Fns_font_name, Fns_perform_service)
6743 (Fns_convert_utf8_nfd_to_nfc, ns_do_applescript)
6744 (Fns_do_applescript, Fx_show_tip): Use SSDATA where appropriate.
6745 (ns_set_name): Remove unused variable view.
6746 (x_set_menu_bar_lines): Remove unused variable olines.
6747 (x_set_tool_bar_lines): Remove unused variable root_window.
6748 (Fns_list_colors): Put () around assignment in while statement.
6749 (Fns_perform_service): Remove unused variable len.
6750 (Fns_display_usable_bounds): Remove unused variable top.
6751 (syms_of_nsfns): Remove unused variable i.
6752
6753 * nsmenu.m (ns_update_menubar): Exchange place of argument 2 and 3 to
6754 memcpy (Bug#11907).
6755
6756 2012-07-13 Kalle Kankare <kalle.kankare@iki.fi> (tiny change)
6757
6758 * image.c (Fimagemagick_types): Initialize ex with GetExceptionInfo
6759 and free it with DestroyExceptionInfo (Bug#11558).
6760
6761 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
6762
6763 * s/ms-w32.h (FIRST_PTY_LETTER, HAVE_SOCKETS): Move to nt/config.nt.
6764 (HAVE_ATTRIBUTE_ALIGNED, HAVE_C99_STRTOLD, HAVE___BUILTIN_UNWIND_INIT):
6765 Set here, not in nt/config.nt.
6766
6767 2012-07-13 Eli Zaretskii <eliz@gnu.org>
6768
6769 * xdisp.c (move_it_in_display_line_to): On GUI terminals, allow
6770 cursor overflow into the last glyph on display line when the right
6771 fringe is off. (Bug#11832)
6772
6773 2012-07-13 Paul Eggert <eggert@cs.ucla.edu>
6774
6775 * xdisp.c (produce_special_glyphs): Now static.
6776 * dispextern.h (produce_special_glyphs): Remove decl.
6777
6778 2012-07-13 Glenn Morris <rgm@gnu.org>
6779
6780 * s/bsd-common.h, s/cygwin.h: Remove empty files.
6781 * s/freebsd.h, s/netbsd.h: Do not include bsd-common.h.
6782
6783 * s/usg5-4-common.h (USG, USG5):
6784 * s/template.h (USG5, USG, HPUX, BSD4_2, BSD_SYSTEM):
6785 * s/sol2-6.h (SOLARIS2):
6786 * s/irix6-5.h (IRIX6_5):
6787 * s/hpux10-20.h (USG, USG5, HPUX):
6788 * s/gnu-linux.h (USG, GNU_LINUX):
6789 * s/freebsd.h (BSD_SYSTEM):
6790 * s/darwin.h (BSD4_2, BSD_SYSTEM, DARWIN_OS):
6791 * s/cygwin.h (CYGWIN):
6792 * s/bsd-common.h (BSD_SYSTEM, BSD4_2):
6793 * s/aix4-2.h (USG, USG5, _AIX): Move "system type" macros to configure.
6794
6795 2012-07-13 BT Templeton <bpt@hcoop.net> (tiny change)
6796
6797 * nsfont.m (ns_charset_covers): Don't abort if no bitmap (Bug#11853).
6798
6799 2012-07-13 Glenn Morris <rgm@gnu.org>
6800
6801 * s/usg5-4-common.h (NSIG_MINIMUM): Let configure set it.
6802
6803 * s/gnu-linux.h, s/irix6-5.h: Let configure set ULIMIT_BREAK_VALUE.
6804
6805 * process.c (init_process_emacs): Replace MIN_PTY_KERNEL_VERSION.
6806 * s/darwin.h (MIN_PTY_KERNEL_VERSION): Remove single-use macro.
6807
6808 2012-07-12 Glenn Morris <rgm@gnu.org>
6809
6810 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Move to configure.
6811
6812 * process.c (init_process_emacs): Rename from init_process.
6813 The old name is also the name of a Mach system call.
6814 * lisp.h, emacs.c: Update for this name change.
6815 * nsgui.h, sysselect.h, s/darwin.h: Remove workaround that is no
6816 longer needed.
6817
6818 2012-07-12 Eli Zaretskii <eliz@gnu.org>
6819
6820 * xdisp.c (insert_left_trunc_glyphs): Fix incorrect size in
6821 memmove call that removes glyphs covered by the left truncation
6822 glyph. Improve commentary.
6823 (display_line): Fix display of continuation glyphs on GUI frames
6824 when the right fringe is turned off and variable-size fonts are
6825 used in the window. Move the code that appends a stretch glyph to
6826 produce_special_glyphs, so that it could be used for truncation
6827 and continuation glyphs alike.
6828 (produce_special_glyphs) [HAVE_WINDOW_SYSTEM]: Produce a stretch
6829 glyph of a suitably computed width, to align the special glyphs at
6830 the window margin. Code moved from display_line. (Bug#11832)
6831
6832 2012-07-12 Glenn Morris <rgm@gnu.org>
6833
6834 * s/aix4-2.h, s/hpux10-20.h: Let configure set NO_EDITRES.
6835
6836 * s/gnu-linux.h, s/hpux10-20.h:
6837 Do not unconditionally define HAVE_XRMSETDATABASE.
6838
6839 * s/gnu-linux.h (UNIX98_PTYS): Let configure set it.
6840
6841 2012-07-12 Paul Eggert <eggert@cs.ucla.edu>
6842
6843 Fix typos that broke OS X build.
6844 Reported by Randal L. Schwartz in
6845 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00225.html>.
6846 * nsterm.m (ns_timeout): Add missing local decl.
6847 (ns_get_color): snprintf -> sprintf, to fix typo.
6848
6849 2012-07-12 Glenn Morris <rgm@gnu.org>
6850
6851 * src/s/aix4-2.h, src/s/cygwin.h, src/s/darwin.h:
6852 * src/s/gnu-linux.h, src/s/hpux10-20.h, src/s/irix6-5.h:
6853 * src/s/sol2-6.h, src/s/unixware.h, src/s/usg5-4-common.h:
6854 Move PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF to configure.
6855
6856 * s/cygwin.h, s/darwin.h, s/gnu-linux.h, s/irix6-5.h:
6857 Move PTY_OPEN to configure.
6858
6859 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
6860 * s/gnu-linux.h, s/hpux10-20.h, s/irix6-5.h, s/template.h:
6861 * s/usg5-4-common.h: Move FIRST_PTY_LETTER, PTY_ITERATION to configure.
6862
6863 2012-07-12 Dmitry Antipov <dmantipov@yandex.ru>
6864
6865 Use empty_unibyte_string where applicable.
6866 * keyboard.c (parse_tool_bar_item): Use empty_unibyte_string.
6867 * lread.c (read1): Likewise.
6868 * xsettings.c (syms_of_xsettings): Likewise.
6869
6870 2012-07-12 Glenn Morris <rgm@gnu.org>
6871
6872 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC):
6873 * s/freebsd.h (BROKEN_PTY_READ_AFTER_EAGAIN):
6874 * s/irix6-5.h (SETPGRP_RELEASES_CTTY, PREFER_VSUSP):
6875 * s/hpux10-20.h (RUN_TIME_REMAP):
6876 * s/bsd-common.h (TABDLY): Move to configure.
6877
6878 * s/hpux10-20.h, s/sol2-6.h: Move XOS_NEEDS_TIME_H to configure.
6879
6880 * s/bsd-common.h, s/darwin.h: Move TAB3 to configure.
6881
6882 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
6883 (BROKEN_SIGPOLL, BROKEN_GET_CURRENT_DIR_NAME): Let configure set them.
6884
6885 * s/darwin.h (NO_ABORT, NO_MATHERR): Let configure set them.
6886
6887 * s/bsd-common.h, s/cygwin.h, s/gnu-linux.h, s/irix6-5.h:
6888 * s/template.h: Move NARROWPROTO to configure.
6889
6890 2012-07-11 Glenn Morris <rgm@gnu.org>
6891
6892 * s/gnu-linux.h, s/sol2-6.h: No longer define POSIX,
6893 unused since 2011-01-17 change to systty.h.
6894
6895 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h, s/gnu-linux.h:
6896 * s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
6897 Move HAVE_PTYS and HAVE_SOCKETS to configure.
6898
6899 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
6900
6901 * s/sol2-6.h (HAVE_LIBKSTAT): Remove. (Bug#11914)
6902
6903 2012-07-11 Glenn Morris <rgm@gnu.org>
6904
6905 * s/darwin.h, s/gnu-linux.h, s/template.h:
6906 Move INTERRUPT_INPUT to configure.
6907
6908 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
6909
6910 Minor adjustments to interning code.
6911 * lisp.h (intern, intern_c_string): Redefine as static inline
6912 wrappers for intern_1 and intern_c_string_1, respectively.
6913 (intern_1, intern_c_string_1): Rename prototypes.
6914 * lread.c (intern_1, intern_c_string_1, oblookup):
6915 Simplify Vobarray checking.
6916 * font.c (font_intern_prop): Likewise. Adjust comment.
6917 * w32font.c (intern_font_name): Likewise.
6918
6919 2012-07-11 Andreas Schwab <schwab@linux-m68k.org>
6920
6921 * gnutls.c (Fgnutls_boot): Properly parse :keylist argument.
6922
6923 * coding.c (Fdefine_coding_system_internal): Use XCAR/XCDR instead
6924 of Fcar/Fcdr if possible.
6925 * font.c (check_otf_features): Likewise.
6926 * fontset.c (Fnew_fontset): Likewise.
6927 * gnutls.c (Fgnutls_boot): Likewise.
6928 * minibuf.c (read_minibuf): Likewise.
6929 * msdos.c (IT_set_frame_parameters): Likewise.
6930 * xmenu.c (Fx_popup_dialog): Likewise.
6931 * w32menu.c (Fx_popup_dialog): Likewise.
6932
6933 2012-07-11 Glenn Morris <rgm@gnu.org>
6934
6935 * s/bsd-common.h, s/cygwin.h: No need to undefine INTERRUPT_INPUT,
6936 since nothing has defined it on these platforms.
6937
6938 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/gnu-linux.h:
6939 * s/irix6-5.h: Move SIGNALS_VIA_CHARACTERS to configure.
6940
6941 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
6942 * s/gnu-linux.h, s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
6943 Move CLASH_DETECTION to configure.
6944
6945 * s/gnu.h: Remove file, which is now empty.
6946
6947 * s/gnu.h, s/gnu-linux.h:
6948 Move GNU_LIBRARY_PENDING_OUTPUT_COUNT to configure.
6949
6950 2012-07-11 John Wiegley <johnw@newartisans.com>
6951
6952 * alloc.c (mark_memory): Guard the "no_address_safety_analysis"
6953 function attribute, so we only use it if it exists in the
6954 compiler.
6955
6956 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
6957
6958 Avoid call to strlen in fast_c_string_match_ignore_case.
6959 * search.c (fast_c_string_match_ignore_case): Change to use
6960 length argument. Adjust users accordingly.
6961 * lisp.h (fast_c_string_match_ignore_case): Adjust prototype.
6962
6963 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
6964
6965 Assume mkdir, rmdir.
6966 * sysdep.c (mkdir) [!HAVE_MKDIR]: Remove.
6967 * sysdep.c (rmdir) [!HAVE_RMDIR]: Remove.
6968
6969 Assume rename.
6970 * sysdep.c (rename) [!HAVE_RENAME]: Remove.
6971
6972 Assume perror.
6973 * s/hpux10-20.h (HAVE_PERROR): Remove.
6974 * sysdep.c (perror) [HPUX && !HAVE_PERROR]:
6975 Remove dummy definition, as this problem was obsolete long ago.
6976
6977 Assume strerror.
6978 * sysdep.c (strerror) [!HAVE_STRERROR && !WINDOWSNT]: Remove.
6979
6980 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
6981
6982 Avoid calls to strlen in font processing functions.
6983 * font.c (font_parse_name, font_parse_xlfd, font_parse_fcname)
6984 (font_open_by_name): Change to use length argument.
6985 Adjust users accordingly.
6986 * font.h (font_open_by_name, font_parse_xlfd, font_unparse_xlfd):
6987 Adjust prototypes.
6988 * xfont.c (xfont_decode_coding_xlfd, font_unparse_xlfd):
6989 Change to return ptrdiff_t.
6990 (xfont_list_pattern, xfont_match): Use length returned by
6991 xfont_decode_coding_xlfd.
6992 * xfns.c (x_default_font_parameter): Omit useless xstrdup.
6993
6994 2012-07-11 Glenn Morris <rgm@gnu.org>
6995
6996 * s/darwin.h, s/freebsd.h, s/netbsd.h:
6997 Move DONT_REOPEN_PTY to configure.
6998
6999 * sound.c (DEFAULT_SOUND_DEVICE) [!WINDOWSNT]:
7000 * s/netbsd.h (DEFAULT_SOUND_DEVICE): Let configure set it.
7001
7002 2012-07-10 Paul Eggert <eggert@cs.ucla.edu>
7003
7004 Remove "#define unix" that is no longer needed (Bug#11905).
7005 * s/aix4-2.h (unix): Remove; no longer needed.
7006
7007 EMACS_TIME simplification (Bug#11875).
7008 This replaces macros (which typically do not work in GDB)
7009 with functions, typedefs and enums, making the code easier to debug.
7010 The functional style also makes code easier to read and maintain.
7011 * systime.h: Include <sys/time.h> on all hosts, not just if
7012 WINDOWSNT, since 'struct timeval' is needed in general.
7013 (EMACS_TIME): Now a typedef, not a macro.
7014 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): Now constants,
7015 not macros.
7016 (EMACS_SECS, EMACS_NSECS, EMACS_TIME_SIGN, EMACS_TIME_VALID_P)
7017 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE, EMACS_TIME_EQ)
7018 (EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE, EMACS_TIME_LT)
7019 (EMACS_TIME_LE): Now functions, not macros.
7020 (EMACS_SET_SECS, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS)
7021 (EMACS_SET_USECS, EMACS_SET_SECS_USECS): Remove these macros,
7022 which are not functions. All uses rewritten to use:
7023 (make_emacs_time): New function.
7024 (EMACS_SECS_ADDR, EMACS_SET_INVALID_TIME, EMACS_GET_TIME)
7025 (EMACS_ADD_TIME, EMACS_SUB_TIME): Remove these macros, which are
7026 not functions. All uses rewritten to use the following, respectively:
7027 (emacs_secs_addr, invalid_emacs_time, get_emacs_time)
7028 (add_emacs_time, sub_emacs_time): New functions.
7029 * atimer.c: Don't include <sys/time.h>, as "systime.h" does this.
7030 * fileio.c (Fcopy_file):
7031 * xterm.c (XTflash): Get the current time closer to when it's used.
7032 * makefile.w32-in ($(BLD)/atimer.$(O)): Update dependencies.
7033
7034 * bytecode.c (targets): Suppress -Woverride-init warnings.
7035
7036 Simplify by avoiding confusing use of strncpy etc.
7037 * doc.c (Fsnarf_documentation):
7038 * fileio.c (Ffile_name_directory, Fsubstitute_in_file_name):
7039 * frame.c (Fmake_terminal_frame):
7040 * gtkutil.c (get_utf8_string):
7041 * lread.c (openp):
7042 * nsmenu.m (ns_update_menubar):
7043 * regex.c (regerror):
7044 Prefer memcpy to strncpy and strncat when either will do.
7045 * fileio.c (Fsubstitute_in_file_name):
7046 * keyboard.c (MULTI_LETTER_MOD, parse_modifiers_uncached)
7047 (menu_separator_name_p):
7048 * nsmenu.m (ns_update_menubar):
7049 Prefer memcmp to strncmp when either will do.
7050 * nsterm.m: Include <ftoastr.h>.
7051 (ns_get_color):
7052 * s/gnu-linux.h, s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF):
7053 Prefer snprintf to strncpy.
7054 * nsterm.m (ns_term_init):
7055 * widget.c (set_frame_size) [0]: Prefer xstrdup to xmalloc + strncpy.
7056 * nsterm.m (ns_term_init):
7057 Avoid the need for strncpy, by using build_string or
7058 make_unibyte_string directly. Use dtoastr, not snprintf.
7059 * process.c (Fmake_network_process): Diagnose service names that
7060 are too long, rather than silently truncating them or creating
7061 non-null-terminated names.
7062 (Fnetwork_interface_info): Likewise, for interface names.
7063 * sysdep.c (system_process_attributes) [GNU_LINUX]:
7064 Prefer sprintf to strncat.
7065 * xdisp.c (debug_method_add) [GLYPH_DEBUG]:
7066 Prefer vsnprintf to vsprintf + strncpy.
7067
7068 2012-07-10 Glenn Morris <rgm@gnu.org>
7069
7070 * dispnew.c (PENDING_OUTPUT_COUNT) [!__GNU_LIBRARY__]:
7071 Clarify fallback case.
7072
7073 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
7074
7075 Use XCAR and XCDR instead of Fcar and Fcdr where possible.
7076 * callint.c, coding.c, doc.c, editfns.c, eval.c, font.c, fontset.c,
7077 * frame.c, gnutls.c, minibuf.c, msdos.c, textprop.c, w32fns.c,
7078 * w32menu.c, window.c, xmenu.c: Change to use XCAR and XCDR
7079 where argument type is known to be a Lisp_Cons.
7080
7081 2012-07-10 Tom Tromey <tromey@redhat.com>
7082
7083 * bytecode.c (BYTE_CODE_THREADED): New macro.
7084 (BYTE_CODES): New macro. Replaces all old byte-code defines.
7085 (enum byte_code_op): New type.
7086 (CASE, NEXT, FIRST, CASE_DEFAULT, CASE_ABORT): New macros.
7087 (exec_byte_code): Use them. Use token threading when applicable.
7088
7089 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
7090
7091 Optimize pure C strings initialization.
7092 * lisp.h (make_pure_string): Fix prototype.
7093 (build_pure_c_string): New function, defined as static inline. This
7094 provides a better opportunity to optimize away calls to strlen when
7095 the function is called with compile-time constant argument.
7096 * alloc.c (make_pure_c_string): Fix comment. Change to add nchars
7097 argument, adjust users accordingly. Use build_pure_c_string where
7098 appropriate.
7099 * buffer.c, coding.c, data.c, dbusbind.c, fileio.c, fontset.c, frame.c,
7100 * keyboard.c, keymap.c, lread.c, search.c, syntax.c, w32fns.c, xdisp.c,
7101 * xfaces.c, xfns.c, xterm.c: Use build_pure_c_string where appropriate.
7102
7103 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
7104
7105 Avoid calls to strlen in miscellaneous functions.
7106 * buffer.c (init_buffer): Use precalculated len, adjust if needed.
7107 * font.c (Ffont_xlfd_name): Likewise. Change to call make_string.
7108 * lread.c (openp): Likewise.
7109
7110 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
7111
7112 Avoid calls to strlen in path processing functions.
7113 * fileio.c (file_name_as_directory): Add comment. Change to add
7114 srclen argument and return the length of result. Adjust users
7115 accordingly.
7116 (directory_file_name): Fix comment. Change to add srclen argument,
7117 swap 1st and 2nd arguments to obey the common convention.
7118 Adjust users accordingly.
7119 * filelock.c (fill_in_lock_file_name): Avoid calls to strlen.
7120
7121 2012-07-10 Glenn Morris <rgm@gnu.org>
7122
7123 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/netbsd.h, s/unixware.h:
7124 Move PENDING_OUTPUT_COUNT definition to configure.
7125
7126 * s/irix6-5.h (DATA_START, DATA_SEG_BITS):
7127 * s/hpux10-20.h (DATA_SEG_BITS, DATA_START):
7128 * s/gnu.h (DATA_START): Move definitions to configure.
7129
7130 * s/irix6-5.h (SETUP_SLAVE_PTY, PTY_NAME_SPRINTF): Drop ifdef guards.
7131 We include usg5-4-common.h, which defines them both.
7132
7133 * s/gnu.h: Don't include fcntl.h (every file in Emacs that uses
7134 O_RDONLY already includes it).
7135
7136 Stop ns builds setting the EMACSLOADPATH environment variable.
7137 * nsterm.m (ns_load_path): Rename from ns_init_paths.
7138 Now it does not set EMACSLOADPATH, just returns the load-path string.
7139 * nsterm.h: Update accordingly.
7140 * lread.c [HAVE_NS]: Include nsterm.h.
7141 (init_lread) [HAVE_NS]: Use ns_load_path.
7142 * emacs.c (main) [HAVE_NS]: No longer call ns_init_paths.
7143
7144 2012-07-09 Glenn Morris <rgm@gnu.org>
7145
7146 * s/gnu.h (SIGNALS_VIA_CHARACTERS): No need to define it here,
7147 since the included bsd-common.h does so.
7148
7149 Stop ns builds setting the EMACSPATH environment variable.
7150 * nsterm.m (ns_exec_path): New function, split from ns_init_paths.
7151 (ns_init_paths): Do not set EMACSPATH.
7152 * nsterm.h (ns_exec_path): Add it.
7153 * callproc.c (init_callproc_1, init_callproc) [HAVE_NS]:
7154 Use ns_exec_path.
7155
7156 * nsterm.m, nsterm.h (ns_etc_directory): Fix type, empty return.
7157
7158 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
7159
7160 * process.c (wait_reading_process_output): 'waitchannels' was unset
7161 when read_kbd || !NILP (wait_for_cell); fix this.
7162
7163 Add GCC-style 'const' attribute to functions that can use it.
7164 * character.h (char_resolve_modifier_mask):
7165 * keyboard.h (make_ctrl_char):
7166 * lisp.h (multibyte_char_to_unibyte, multibyte_char_to_unibyte_safe)
7167 (init_character_once, next_almost_prime, init_fns, init_image)
7168 (flush_pending_output, init_sound):
7169 * mem-limits.h (start_of_data):
7170 * menu.h (finish_menu_items):
7171 Add ATTRIBUTE_CONST.
7172 * emacs.c (DEFINE_DUMMY_FUNCTION):
7173 Declare the dummy function with ATTRIBUTE_CONST.
7174 * lisp.h (Fbyteorder, Fmax_char, Fidentity):
7175 Add decls with ATTRIBUTE_CONST.
7176
7177 Minor improvements to make_formatted_string.
7178 * alloc.c (make_formatted_string): Prefer int to ptrdiff_t
7179 where int is good enough, as vsprintf returns an int.
7180 * lisp.h (make_formatted_string): Add ATTRIBUTE_FORMAT_PRINTF.
7181
7182 2012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
7183
7184 Use make_formatted_string to avoid double length calculation.
7185 * lisp.h (make_formatted_string): New prototype.
7186 * alloc.c (make_formatted_string): New function.
7187 * buffer.c (Fgenerate_new_buffer_name): Use it.
7188 * dbusbind.c (syms_of_dbusbind): Likewise.
7189 * editfns.c (Fcurrent_time_zone): Likewise.
7190 * filelock.c (get_boot_time): Likewise.
7191 * frame.c (make_terminal_frame, set_term_frame_name)
7192 (x_report_frame_params): Likewise.
7193 * image.c (gs_load): Likewise.
7194 * minibuf.c (get_minibuffer): Likewise.
7195 * msdos.c (dos_set_window_size): Likewise.
7196 * process.c (make_process): Likewise.
7197 * xdisp.c (ensure_echo_area_buffers): Likewise.
7198 * xsettings.c (apply_xft_settings): Likewise.
7199
7200 2012-07-09 Glenn Morris <rgm@gnu.org>
7201
7202 Stop ns builds polluting the environment with EMACSDATA, EMACSDOC.
7203 * nsterm.m (ns_etc_directory): New function, split from ns_init_paths.
7204 (ns_init_paths): Do not set EMACSDATA, EMACSDOC.
7205 * nsterm.h (ns_etc_directory): Add it.
7206 * callproc.c [HAVE_NS]: Include nsterm.h.
7207 (init_callproc_1, init_callproc) [HAVE_NS]: Use ns_etc_directory.
7208
7209 2012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
7210
7211 Move marker debugging code under MARKER_DEBUG.
7212 * marker.c (MARKER_DEBUG): Move marker debugging code under
7213 #ifdef MARKER_DEBUG because byte_char_debug_check is too slow
7214 for bootstrap with --enable-checking (~3x slowdown reported
7215 by Juanma Barranquero <lekktu@gmail.com>).
7216 (verify_bytepos): Move under #ifdef MARKER_DEBUG.
7217
7218 2012-07-08 Paul Eggert <eggert@cs.ucla.edu>
7219
7220 * systime.h (EMACS_SUB_TIME): Clarify behavior with unsigned time_t.
7221 See <http://bugs.gnu.org/11825#29>.
7222
7223 2012-07-08 Eli Zaretskii <eliz@gnu.org>
7224
7225 * xdisp.c (fill_glyphless_glyph_string): If the face of the glyph
7226 has no font, use the frame's font. (Bug#11813)
7227 (display_line): Add commentary about displaying truncation glyphs
7228 on GUI frames.
7229 (produce_special_glyphs): Move here from term.c.
7230
7231 * term.c (produce_special_glyphs): Move to xdisp.c.
7232
7233 * dispextern.h (produce_special_glyphs): Move prototype to xdisp.c
7234 section.
7235
7236 2012-07-07 Andreas Schwab <schwab@linux-m68k.org>
7237
7238 * xdisp.c (display_line): Avoid warning about implicit declaration
7239 of FRAME_FONT.
7240
7241 * frame.c (get_frame_param): Define only if HAVE_WINDOW_SYSTEM.
7242
7243 * lisp.h: Remove empty conditional.
7244
7245 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
7246
7247 * lread.c (load_path_check): Now static.
7248
7249 Fix some minor --with-ns problems found by static checking.
7250 * frame.c (Ftool_bar_pixel_width) [!FRAME_TOOLBAR_WIDTH]:
7251 (x_set_font) [!HAVE_X_WINDOWS]:
7252 * image.c (xpm_load_image) [HAVE_NS]:
7253 (x_to_xcolors) [!HAVE_X_WINDOWS && !HAVE_NTGUI]:
7254 (x_disable_image) [!HAVE_NS && !HAVE_NTGUI]:
7255 Remove unused local.
7256 (Fx_parse_geometry) [HAVE_NS]: Don't return garbage.
7257 (xpm_load_image) [HAVE_NS && !HAVE_XPM]: Remove unused label.
7258 * image.c (x_create_bitmap_from_file) [HAVE_NS]:
7259 (xpm_load_image, xpm_load) [HAVE_NS && !HAVE_XPM]:
7260 * nsselect.m (symbol_to_nsstring, ns_string_to_pasteboard_internal):
7261 * xfaces.c (Fx_load_color_file) [!HAVE_X_WINDOWS]:
7262 Fix pointer signedness problem.
7263 * xfaces.c (FRAME_X_FONT_TABLE):
7264 * xterm.h (FRAME_X_FONT_TABLE): Remove unused, incompatible macros.
7265
7266 2012-07-07 Glenn Morris <rgm@gnu.org>
7267
7268 * lread.c (load_path_check): New function, split from init_lread.
7269 (init_lread): Reorganize. Motivation:
7270 If EMACSLOADPATH is set, check/warn about that rather than the
7271 defaults, which we are not going to use. Hence we can remove
7272 the turn_off_warning and WINDOWSNT || HAVE_NS tests.
7273 Don't warn if site-lisp directories are missing.
7274 If not installed, start from a blank load-path, since
7275 PATH_LOADSEARCH refers to the eventual installation directories.
7276
7277 2012-07-07 Eli Zaretskii <eliz@gnu.org>
7278
7279 Support truncation and continuation glyphs on GUI frames, when
7280 fringes are disabled. (Bug#11832)
7281 * xdisp.c (init_iterator): Get dimensions of truncation and
7282 continuation glyphs even if on GUI frames.
7283 Adjust it->last_visible_x on GUI frames when the left or right fringes,
7284 or both, are absent.
7285 (start_display, move_it_in_display_line_to): Handle the case of a
7286 GUI frame without a fringe to display continuation or truncation
7287 glyphs.
7288 (insert_left_trunc_glyphs): Support GUI frames: make sure
7289 truncation glyphs overwrite enough glyphs from the current line to
7290 have sufficient space in pixels.
7291 (display_line): Support truncation and continuation glyphs on GUI
7292 frames. If some spare pixels are left on the line after inserting
7293 the truncation glyphs, fill that space with a stretch glyph of a
7294 suitably computed width.
7295
7296 * term.c (produce_special_glyphs): Call PRODUCE_GLYPHS, not
7297 produce_glyphs, to support GUI sessions.
7298
7299 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
7300
7301 * sysdep.c (ULLONG_MAX): Define if not already defined (Bug#11781).
7302
7303 * sysdep.c (list_system_processes): Port to NetBSD-current (Bug#11797).
7304
7305 Do not require float-time's arg to fit in time_t (Bug#11825).
7306 This works better on hosts where time_t is unsigned, and where
7307 float-time is applied to the (negative) difference between two times.
7308 * editfns.c (decode_time_components): Last arg is now double *,
7309 not int *, and means to store all the result as a double, without
7310 worrying about whether the seconds part fits in time_t.
7311 All callers changed.
7312 (lisp_time_argument): Remove last int * arg, as it's no longer needed.
7313 All callers changed.
7314 (Ffloat_time): Do not fail merely because the specified time falls
7315 outside of time_t range.
7316
7317 2012-07-07 Glenn Morris <rgm@gnu.org>
7318
7319 * s/darwin.h (HAVE_RES_INIT, HAVE_LIBRESOLV):
7320 * s/hpux10-20.h (HAVE_RINT, HAVE_RANDOM):
7321 * s/unixware.h (HAVE_GETWD): Move undefs to configure (effectively).
7322
7323 2012-07-07 Juanma Barranquero <lekktu@gmail.com>
7324
7325 * makefile.w32-in (DISPEXTERN_H, $(BLD)/regex.$(O)):
7326 Update dependencies.
7327
7328 * s/ms-w32.h [_MSC_VER]: Remove strcasecmp, strncasecmp.
7329
7330 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
7331
7332 Use c_strcasecmp for ASCII case-insensitive comparison (Bug#11786).
7333 * dispextern.h, nsfns.m, nsterm.m: Include <c-strcase.h>.
7334 * dispextern.h (xstrcasecmp): Rewrite using c_strcasecmp.
7335 * nsfns.m (x_get_string_resource): Use c_strncasecmp, not strncasecmp.
7336 * nsterm.m (ns_default): Use c_strcasecmp, not strcasecmp.
7337 * xfaces.c (xstrcasecmp) [!HAVE_STRCASECMP]: Remove.
7338
7339 * xfont.c (compare_font_names): Redo to omit the need for casts.
7340
7341 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
7342
7343 * xfns.c (Fx_change_window_property): Doc fix.
7344 * w32fns.c (Fx_change_window_property): Doc fix.
7345
7346 * w32fns.c (Fx_window_property): Accept the same arguments as the
7347 X Windows version. Doc fix.
7348 * xfns.c (Fx_window_property): Doc fix. (Bug#11870)
7349
7350 2012-07-06 Juanma Barranquero <lekktu@gmail.com>
7351 Eli Zaretskii <eliz@gnu.org>
7352
7353 * s/ms-w32.h: Settings not specific to Windows moved to nt/config.nt.
7354 Windows-specific code from nt/config.nt moved here.
7355 Obsolete settings removed.
7356
7357 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
7358
7359 * process.c: Avoid unnecessary calls to gettime.
7360 (wait_reading_process_output): Don't get the time of day
7361 when gobbling data immediately and not waiting, as there's no need
7362 for it in that case. This removes a FIXME.
7363
7364 2012-07-06 Jan Djärv <jan.h.d@swipnet.se>
7365
7366 * gtkutil.c (xg_event_is_for_scrollbar): Assign gwin when HAVE_GTK3
7367 is defined (Bug#11768).
7368
7369 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
7370
7371 Fix marker debugging code.
7372 * marker.c (byte_char_debug_check): Do not perform the check
7373 if buffer is not multibyte.
7374 (buf_charpos_to_bytepos, buf_bytepos_to_charpos):
7375 Call byte_char_debug_check with correct arguments.
7376
7377 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
7378
7379 Compile marker debugging code only if ENABLE_CHECKING is defined.
7380 * marker.c (byte_char_debug_check, count_markers):
7381 Use only if ENABLE_CHECKING is defined.
7382 (byte_debug_flag): Remove.
7383 (CONSIDER, buf_charpos_to_bytepos, buf_bytepos_to_charpos):
7384 Always call byte_char_debug_check if ENABLE_CHECKING is defined.
7385
7386 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
7387
7388 Avoid code repetition in marker-related functions.
7389 * marker.c (attach_marker): New function.
7390 (Fset_marker, set_marker_restricted, set_marker_both)
7391 (set_marker_restricted_both): Use it.
7392 (Fset_marker, set_marker_restricted, Fbuffer_has_markers_at):
7393 Consistently rename charno to charpos.
7394 (marker_position): Add eassert.
7395 (marker_byte_position): Convert to eassert.
7396
7397 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
7398
7399 Simplify list operations in unchain_overlay and unchain_marker.
7400 * buffer.c (unchain_overlay): Simplify. Add comment.
7401 * marker.c (unchain_marker): Simplify. Fix comments.
7402
7403 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
7404
7405 Introduce fast path for the widely used marker operation.
7406 * alloc.c (build_marker): New function.
7407 * lisp.h (build_marker): New prototype.
7408 * buffer.c (clone_per_buffer_values, Fmake_indirect_buffer): Use it.
7409 * composite.c (autocmp_chars): Likewise.
7410 * editfns.c (buildmark): Remove.
7411 (Fpoint_marker, Fpoint_min_marker, Fpoint_max_marker)
7412 (save_restriction_save): Use build_marker.
7413 * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos): Likewise.
7414 * window.c (save_window_save): Likewise.
7415
7416 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
7417
7418 Do not use Fdelete_overlay in delete_all_overlays
7419 to avoid redundant calls to unchain_overlay.
7420 * buffer.c (drop_overlay): New function.
7421 (delete_all_overlays, Fdelete_overlay): Use it.
7422 * minibuf.c (get_minibuffer): Fix comment.
7423
7424 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
7425
7426 Port to OpenBSD 5.1 amd64.
7427 * sysdep.c [BSD_SYSTEM]: Include <sys/param.h> before <sys/sysctl.h>.
7428 This is needed for OpenBSD, and should be harmless on all BSD systems.
7429 Also, include <sys/sysctl.h>, as it should be available on all
7430 BSD_SYSTEM hosts given that we're already calling sysctl in that case.
7431 (list_system_processes) [__OpenBSD__]: Use DARWIN_OS style mib, but
7432 use p_pid member, not kp_proc.pid.
7433
7434 2012-07-06 Glenn Morris <rgm@gnu.org>
7435
7436 * Makefile.in (emacs$(EXEEXT)): Don't check for load-path shadows.
7437
7438 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
7439
7440 More xmalloc and related cleanup.
7441 * alloc.c, bidi.c, buffer.c, buffer.h, bytecode.c, callint.c:
7442 * callproc.c, charset.c, coding.c, composite.c, data.c, dispnew.c:
7443 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, fns.c:
7444 * font.c, fontset.c, frame.c, fringe.c, ftfont.c, ftxfont.c, gmalloc.c:
7445 * gtkutil.c, image.c, keyboard.c, keymap.c, lread.c, macros.c, menu.c:
7446 * nsfns.m, nsfont.m, nsmenu.m, nsterm.m, print.c, process.c, ralloc.c:
7447 * regex.c, region-cache.c, scroll.c, search.c, sound.c, syntax.c:
7448 * sysdep.c, term.c, termcap.c, unexmacosx.c, window.c, xdisp.c:
7449 * xfaces.c, xfns.c, xftfont.c, xgselect.c, xmenu.c, xrdb.c, xselect.c:
7450 * xterm.c:
7451 Omit needless casts involving void * pointers and allocation.
7452 Prefer "P = xmalloc (sizeof *P)" to "P = xmalloc (sizeof (TYPE_OF_P))",
7453 as the former is more robust if P's type is changed.
7454 Prefer xzalloc to xmalloc + memset 0.
7455 Simplify malloc-or-realloc to realloc.
7456 Don't worry about xmalloc returning a null pointer.
7457 Prefer xstrdup to xmalloc + strcpy.
7458 * editfns.c (Fmessage_box): Grow message_text by at least 80 when
7459 growing it.
7460 * keyboard.c (apply_modifiers_uncached): Prefer local array to
7461 alloca of a constant.
7462
7463 2012-07-05 Eli Zaretskii <eliz@gnu.org>
7464
7465 * xdisp.c (display_line): Fix horizontal pixel coordinates when
7466 hscroll is larger than the line width. Fixes long and futile
7467 looping inside extend_face_to_end_of_line (on a TTY) producing
7468 glyphs that are not needed and thrown away.
7469
7470 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
7471
7472 * marker.c (set_marker_restricted_both): Simplify by using
7473 clip_to_bounds.
7474
7475 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
7476
7477 * editfns.c (region_limit): Simplify by using clip_to_bounds.
7478
7479 2012-07-05 Jan Djärv <jan.h.d@swipnet.se>
7480
7481 * gtkutil.c (gtk_scrollbar_new, gtk_box_new): Define when HAVE_GTK3 is
7482 not defined (Bug#11768).
7483 (xg_create_frame_widgets): Use gtk_plug_new_for_display (Bug#11768).
7484 (xg_create_frame_widgets, create_dialog, xg_get_file_with_chooser)
7485 (make_widget_for_menu_item, xg_make_tool_item): Use gtk_box_new
7486 followed by gtk_box_set_homogeneous (Bug#11768).
7487 (xg_update_menu_item): Use GTK_IS_BOX (Bug#11768).
7488 (update_theme_scrollbar_width, xg_create_scroll_bar):
7489 Use gtk_scrollbar_new (Bug#11768).
7490 (xg_event_is_for_scrollbar): Use Gdk Device functions for HAVE_GTK3.
7491 (is_box_type): New function (Bug#11768).
7492 (xg_tool_item_stale_p): Call is_box_type.
7493 (xg_initialize): Get settings by calling gtk_settings_get_for_screen
7494 with default display (Bug#11768).
7495
7496 2012-07-05 Eli Zaretskii <eliz@gnu.org>
7497
7498 * xdisp.c (window_hscroll_limited): New function.
7499 (pos_visible_p, init_iterator): Use it to avoid overflow of pixel
7500 coordinates when window's hscroll is set to insanely large
7501 values. (Bug#11857)
7502
7503 2012-07-05 Juanma Barranquero <lekktu@gmail.com>
7504
7505 * makefile.w32-in ($(BLD)/dired.$(O), $(BLD)/fileio.$(O)): Fix typo.
7506 ($(BLD)/terminal.$(O), $(BLD)/syntax.$(O)): Update dependencies.
7507
7508 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
7509
7510 Cleanup xmalloc.
7511 * lisp.h (xzalloc): New prototype. Omit needless casts.
7512 * alloc.c (xzalloc): New function. Omit needless casts.
7513 * charset.c: Omit needless casts. Convert all calls to
7514 xmalloc with following memset to xzalloc.
7515 * dispnew.c: Likewise.
7516 * fringe.c: Likewise.
7517 * image.c: Likewise.
7518 * sound.c: Likewise.
7519 * term.c: Likewise.
7520 * w32fns.c: Likewise.
7521 * w32font.c: Likewise.
7522 * w32term.c: Likewise.
7523 * xfaces.c: Likewise.
7524 * xfns.c: Likewise.
7525 * xterm.c: Likewise.
7526 * atimer.c: Omit needless casts.
7527 * buffer.c: Likewise.
7528 * callproc.c: Likewise.
7529 * ccl.c: Likewise.
7530 * coding.c: Likewise.
7531 * composite.c: Likewise.
7532 * doc.c: Likewise.
7533 * doprnt.c: Likewise.
7534 * editfns.c: Likewise.
7535 * emacs.c: Likewise.
7536 * eval.c: Likewise.
7537 * filelock.c: Likewise.
7538 * fns.c: Likewise.
7539 * gtkutil.c: Likewise.
7540 * keyboard.c: Likewise.
7541 * lisp.h: Likewise.
7542 * lread.c: Likewise.
7543 * minibuf.c: Likewise.
7544 * msdos.c: Likewise.
7545 * print.c: Likewise.
7546 * process.c: Likewise.
7547 * region-cache.c: Likewise.
7548 * search.c: Likewise.
7549 * sysdep.c: Likewise.
7550 * termcap.c: Likewise.
7551 * terminal.c: Likewise.
7552 * tparam.c: Likewise.
7553 * w16select.c: Likewise.
7554 * w32.c: Likewise.
7555 * w32reg.c: Likewise.
7556 * w32select.c: Likewise.
7557 * w32uniscribe.c: Likewise.
7558 * widget.c: Likewise.
7559 * xdisp.c: Likewise.
7560 * xmenu.c: Likewise.
7561 * xrdb.c: Likewise.
7562 * xselect.c: Likewise.
7563
7564 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
7565
7566 * fileio.c (time_error_value): Check the right error number.
7567 Problem reported by Troels Nielsen in
7568 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00095.html>.
7569
7570 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
7571
7572 * window.c (set_window_hscroll): Revert the 100000 hscroll limit.
7573 This should be fixed in a better way; see Eli Zaretskii in
7574 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00088.html>.
7575 (HSCROLL_MAX): Remove; this is now internal to set_window_hscroll.
7576
7577 * fileio.c (time_error_value): Rename from special_mtime.
7578 The old name's problems were noted by Eli Zaretskii in
7579 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00087.html>.
7580
7581 * emacs.c (gdb_pvec_type): Change it back to enum pvec_type.
7582 This variable's comment says Emacs needs at least one GDB-visible
7583 symbol of type enum pvec_type, to work around GDB problems.
7584 The symbol's value doesn't matter.
7585
7586 * alloc.c (PSEUDOVECTOR_NBYTES): Remove stray ';'
7587 that causes compilation to fail on pre-C99 compilers.
7588
7589 2012-07-04 Juanma Barranquero <lekktu@gmail.com>
7590
7591 * s/ms-w32.h (LISP_FLOAT_TYPE, HAVE_MEMCMP, HAVE_MEMCPY)
7592 (HAVE_MEMMOVE, HAVE_MEMSET): Don't set, obsolete.
7593
7594 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
7595
7596 * buffer.c (init_buffer_once): Fix initialization of
7597 headers for buffer_defaults and buffer_local_symbols.
7598 Reported by Juanma Barranquero <lekktu@gmail.com>.
7599
7600 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
7601
7602 Turn VECTOR_FREE_LIST_FLAG into PVEC_FREE.
7603 * lisp.h (enum pvec_type): Use fewer bits.
7604 (PSEUDOVECTOR_SIZE_BITS): New constant.
7605 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK): Use it.
7606 (XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR, DEFUN): Adapt code to
7607 change in pvec_type.
7608 (PSEUDOVECTOR_TYPEP): New macro.
7609 (TYPED_PSEUDOVECTORP): Use it.
7610 * fns.c (internal_equal): Adapt code to extract pvectype.
7611 * emacs.c (gdb_pvec_type): Update type.
7612 * alloc.c (PSEUDOVECTOR_NBYTES): New macro.
7613 (VECTOR_FREE_LIST_SIZE_MASK): Remove (=> PSEUDOVECTOR_SIZE_MASK).
7614 (VECTOR_FREE_LIST_FLAG): Remove (=> PVEC_FREE).
7615 (SETUP_ON_FREE_LIST): Use XSETPVECTYPESIZE.
7616 (sweep_vectors): Use it. Use local var `total_bytes' instead of
7617 abusing vector->header.next.nbytes.
7618 (live_vector_p): Use PVEC_TYPE.
7619 (mark_object): Adapt code to extract pvectype. Use switch.
7620
7621 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
7622
7623 * doprnt.c (doprnt): Don't assume string length fits in 'int'.
7624 Tighten new eassert a bit.
7625
7626 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
7627
7628 Fix compilation with --enable-gcc-warnings and -O1
7629 optimization level.
7630 * doprnt.c (doprnt): Change type of tem to int, initialize
7631 to avoid compiler warning. Add eassert.
7632 * search.c (simple_search): Initialize match_byte to avoid
7633 compiler warning. Add eassert.
7634
7635 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
7636
7637 Avoid weird behavior with large horizontal scrolls.
7638 Without this change, for example, large hscroll values would
7639 mess up Emacs's display on Fedora 15 x86, presumably due to
7640 overflows in int calculations in the display code.
7641 Also, if buffers had long lines, Emacs would freeze.
7642 * window.c (HSCROLL_MAX): Reduce to 100000, and make it visible to GDB.
7643 (set_window_hscroll): New function, containing the old guts of
7644 Fset_window_hscroll. Return the clipped value.
7645 (Fset_window_hscroll, Fscroll_left, Fscroll_right): Use it.
7646 This avoids the need to check against PTRDIFF_MAX.
7647
7648 * buffer.c (Fgenerate_new_buffer_name): Fix sprintf format mismatch.
7649
7650 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
7651
7652 * buffer.c (Fgenerate_new_buffer_name): Fix type mismatch.
7653
7654 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
7655
7656 * regex.c: Suppress GCC warning on RHEL 6. (Bug#11207)
7657 Conditionalize the pragmas on GCC 4.5 or later, not GCC 4.3 or later,
7658 since GCC 4.4.6 issues a bogus warning for them.
7659
7660 Fix bugs in file timestamp newness comparisons.
7661 * fileio.c (Ffile_newer_than_file_p):
7662 * lread.c (Fload): Use full timestamp resolution of files,
7663 not just the 1-second resolution, so that files that are only
7664 slightly newer still count as newer.
7665 * fileio.c (Ffile_newer_than_file_p): Don't assume file
7666 timestamps fit in 'int'; this fixes a Y2038 bug on most hosts.
7667
7668 2012-07-03 Paul Eggert <eggert@cs.ucla.edu>
7669
7670 * fileio.c: Improve handling of file time marker. (Bug#11852)
7671 (special_mtime): New function.
7672 (Finsert_file_contents, Fverify_visited_file_modtime):
7673 Use it to set special mtime values consistently.
7674
7675 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
7676
7677 * fileio.c (Finsert_file_contents): Properly handle st_mtime
7678 marker for non-existing file. (Bug#11852)
7679
7680 2012-07-03 Glenn Morris <rgm@gnu.org>
7681
7682 * lisp.h (Fread_file_name): Restore EXFUN (it's not a normal DEFUN
7683 and did not make it into globals.h).
7684
7685 2012-07-03 Tom Tromey <tromey@redhat.com>
7686
7687 * window.c (Fset_window_margins, Fset_window_fringes)
7688 (Fset_window_scroll_bars, Fset_window_vscroll): No longer static.
7689 * textprop.c (Fprevious_property_change): No longer static.
7690 * syntax.c (Fsyntax_table_p): No longer static.
7691 * process.c (Fget_process, Fprocess_datagram_address): No longer
7692 static.
7693 * keymap.c (Flookup_key, Fcopy_keymap): No longer static.
7694 * keyboard.c (Fcommand_execute): No longer static.
7695 Remove EXFUN.
7696 * insdel.c (Fcombine_after_change_execute): No longer static.
7697 * image.c (Finit_image_library): No longer static.
7698 * fileio.c (Fmake_symbolic_link): No longer static.
7699 * eval.c (Ffetch_bytecode): No longer static.
7700 * editfns.c (Fuser_full_name): No longer static.
7701 * doc.c (Fdocumentation_property, Fsnarf_documentation):
7702 No longer static.
7703 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): No longer
7704 static.
7705 * dired.c (Ffile_attributes): No longer static.
7706 * composite.c (Fcomposition_get_gstring): No longer static.
7707 * callproc.c (Fgetenv_internal): No longer static.
7708
7709 * ccl.h: Remove EXFUNs.
7710 * buffer.h: Remove EXFUNs.
7711 * dispextern.h: Remove EXFUNs.
7712 * intervals.h: Remove EXFUNs.
7713 * fontset.h: Remove EXFUN.
7714 * font.h: Remove EXFUNs.
7715 * dosfns.c (system_process_attributes): Remove EXFUN.
7716 * keymap.h: Remove EXFUNs.
7717 * lisp.h: Remove EXFUNs.
7718 * w32term.h: Remove EXFUNs.
7719 * window.h: Remove EXFUNs.
7720 * xsettings.h: Remove EXFUN.
7721 * xterm.h: Remove EXFUN.
7722
7723 2012-07-03 Glenn Morris <rgm@gnu.org>
7724
7725 * lisp.h (Frandom): Make it visible to C.
7726 * buffer.c (Fgenerate_new_buffer_name): Speed up finding a new
7727 buffer for invisible buffers. (Bug#1229)
7728
7729 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
7730
7731 Fix block vector allocation code to allow VECTOR_BLOCK_SIZE
7732 values which aren't power of 2.
7733 * alloc.c (VECTOR_FREE_LIST_SIZE_MASK): New macro.
7734 Verify its value and the value of VECTOR_BLOCK_SIZE. Adjust users
7735 accordingly.
7736
7737 2012-07-03 Stefan Monnier <monnier@iro.umontreal.ca>
7738
7739 * lisp.h (Lisp_Misc, Lisp_Fwd): Move around to group better.
7740
7741 * alloc.c (mark_object): Revert part of last patch to use `switch'.
7742
7743 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
7744
7745 * alloc.c (allocate_vector_block): Remove redundant
7746 calls to mallopt if DOUG_LEA_MALLOC is defined.
7747 (allocate_vectorlike): If DOUG_LEA_MALLOC is defined,
7748 avoid calls to mallopt if zero_vector is returned.
7749
7750 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
7751
7752 * alloc.c (check_string_bytes): If GC_CHECK_STRING_BYTES
7753 is enabled, avoid dereferencing NULL current_sblock if
7754 running undumped.
7755
7756 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
7757
7758 Cleanup basic buffer management.
7759 * buffer.h (struct buffer): Change layout to use generic vector
7760 marking code. Fix some comments. Change type of 'clip_changed'
7761 to bitfield. Remove unused #ifndef old.
7762 (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER): Remove.
7763 (GET_OVERLAYS_AT): Fix indentation.
7764 (for_each_per_buffer_object_at): New macro.
7765 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
7766 (Fbuffer_local_variables): Use it.
7767 (init_buffer_once, syms_of_buffer): Remove unused #ifndef old.
7768 * alloc.c (allocate_buffer): Adjust to match new layout of
7769 struct buffer. Fix comment.
7770 (mark_overlay): New function.
7771 (mark_buffer): Use it. Use mark_vectorlike to mark normal
7772 Lisp area of struct buffer.
7773 (mark_object): Use it. Adjust marking of misc objects
7774 and related comments.
7775
7776 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
7777
7778 * alloc.c (mark_object): Remove "#ifdef GC_CHECK_MARKED_OBJECTS"
7779 wrapper that is not needed because the wrapped code is a no-op (zero
7780 machine instructions) when GC_CHECK_MARKED_OBJECTS is not defined.
7781 This avoids a -Wunused-macros diagnostic with GCC 4.7.1 x86-64.
7782
7783 2012-07-02 Dmitry Antipov <dmantipov@yandex.ru>
7784
7785 * alloc.c (mark_buffer): Simplify. Remove prototype.
7786 (mark_object): Add comment. Reorganize marking of vector-like
7787 objects. Use CHECK_LIVE for all vector-like objects except buffers
7788 and subroutines when GC_CHECK_MARKED_OBJECTS is defined.
7789 Avoid redundant calls to mark_vectorlike for bool vectors.
7790
7791 2012-06-30 Glenn Morris <rgm@gnu.org>
7792
7793 * nsterm.m (ns_init_paths): Ignore site-lisp if --no-site-lisp.
7794
7795 * epaths.in (PATH_SITELOADSEARCH): New.
7796 * lread.c (init_lread): Use PATH_SITELOADSEARCH.
7797 This is rather than relying on --enable-locallisppath elements
7798 having "site-lisp" in their names. (Bug#10208#25, 11658)
7799
7800 2012-06-30 Eli Zaretskii <eliz@gnu.org>
7801
7802 * w32proc.c (sys_select): Accept and ignore one more argument.
7803
7804 * w32.c (emacs_gnutls_pull): Call select with one more argument.
7805
7806 * sysselect.h [DOS_NT]: Don't include sys/select.h.
7807 (pselect) [!MS_DOS]: Redirect to sys_select.
7808
7809 * sysdep.c: Don't include dos.h and dosfns.h.
7810
7811 * process.c (sys_select):
7812 * msdos.c (sys_select): Accept one more argument and ignore it.
7813
7814 * msdos.c (event_timestamp, sys_select): Use gnulib's gettime;
7815 adapt data types and code to that.
7816
7817 * dosfns.c:
7818 * msdos.c (gettime, settime): Define away the prototypes in dos.h,
7819 which clashes with the gnulib function of the same name.
7820
7821 2012-06-30 Andreas Schwab <schwab@linux-m68k.org>
7822
7823 * font.c (font_style_to_value, font_style_symbolic)
7824 (font_prop_validate_style): Add type checks for values in
7825 font_style_table.
7826
7827 * lisp.h (CHECK_RANGED_INTEGER): Make value to check the first
7828 argument.
7829 * character.c, charset.c, menu.c, process.c, window.c: Adjust all
7830 uses.
7831
7832 2012-06-29 Eli Zaretskii <eliz@gnu.org>
7833
7834 * xdisp.c (try_window_id): Undo last change.
7835
7836 * w32.c (getwd): Adjust commentary about startup_dir.
7837 (init_environment): Always call sys_access, even in non-MSVC
7838 builds. Don't chdir to the directory of the Emacs executable.
7839 This undoes code from 1997 which was justified by the need to
7840 "avoid conflicts when removing and renaming directories". But its
7841 downside was that every relative file name was being interpreted
7842 relative to the directory of the Emacs executable, which can never
7843 be TRT. In particular, it broke sys_access when called with
7844 relative file names.
7845 (sys_access): Map GetLastError to errno.
7846
7847 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
7848
7849 * window.h (struct window): Change type of 'fringes_outside_margins'
7850 to bitfield. Fix comment. Adjust users accordingly.
7851 (struct window): Change type of 'window_end_bytepos' to ptrdiff_t.
7852 Adjust comment.
7853 * xdisp.c (try_window_id): Change type of 'first_vpos' and 'vpos'
7854 to ptrdiff_t.
7855
7856 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
7857
7858 * gnutls.c (emacs_gnutls_handshake):
7859 Add QUIT to make the loop interruptible.
7860
7861 2012-06-29 Glenn Morris <rgm@gnu.org>
7862
7863 * charset.c (init_charset): Make lack of etc/charsets fatal.
7864
7865 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
7866
7867 * editfns.c (region_limit): Fix type mismatch.
7868
7869 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
7870
7871 * nsfns.m: Fix GLYPH_DEBUG usage assuming that it may be
7872 undefined. Convert from xassert to eassert.
7873 * nsmenu.m: Convert from xassert to eassert.
7874 * nsterm.m: Likewise.
7875
7876 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
7877
7878 * editfns.c (region_limit): Clip to narrowing (bug#11770).
7879
7880 2012-06-28 Paul Eggert <eggert@cs.ucla.edu>
7881
7882 Avoid integer overflow on scroll-left and scroll-right.
7883 * window.c (HSCROLL_MAX): New macro.
7884 (Fscroll_left, Fscroll_right): Avoid undefined behavior on integer
7885 overflow when requested scroll falls outside ptrdiff_t range.
7886
7887 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
7888
7889 * window.h (struct window): Change type of 'hscroll',
7890 'min_hscroll' and 'last_point' from Lisp_Object to ptrdiff_t,
7891 'last_modified' and 'last_overlay_modified' to EMACS_INT.
7892 Adjust users accordingly.
7893 * xdisp.c (try_cursor_movement): Replace type check with eassert.
7894 * window.c (Fscroll_left, Fscroll_right): Change type of 'hscroll'
7895 from EMACS_INT to ptrdiff_t.
7896 (make_window): Omit redundant initialization.
7897
7898 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
7899
7900 * makefile.w32-in ($(BLD)/regex.$(O)): Update dependencies.
7901
7902 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
7903
7904 * window.h (struct window): Change type of 'use_time' and
7905 'sequence_number' from Lisp_Object to int.
7906 * frame.c (make_frame): Adjust users accordingly.
7907 * print.c (print_object): Likewise.
7908 * window.c (select_window, Fwindow_use_time, make_parent_window)
7909 (make_window): Likewise.
7910
7911 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
7912
7913 * dispextern.h (GLYPH_DEBUG): Now defined in config.h if
7914 enabled with --enable-checking=[all,glyphs] configure option.
7915 Fix GLYPH_DEBUG usage assuming that it may be undefined,
7916 adjust comments accordingly.
7917 * dispnew.c: Fix GLYPH_DEBUG usage assuming that it may be
7918 undefined, adjust comments accordingly.
7919 * image.c: Likewise.
7920 * scroll.c: Likewise.
7921 * w32fns.c: Likewise.
7922 * w32term.c: Likewise.
7923 * xdisp.c: Likewise.
7924 * xfaces.c: Likewise.
7925 * xfns.c: Likewise.
7926 * xterm.c: Likewise.
7927
7928 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
7929
7930 Generalize run-time debugging checks.
7931 * dispextern.h (XASSERTS): Remove.
7932 * fontset.c (xassert): Remove.
7933 Convert from xassert to eassert.
7934 * alloc.c: Convert from xassert to eassert.
7935 * bidi.c: Likewise.
7936 * dispnew.c: Likewise.
7937 * fns.c: Likewise.
7938 * fringe.c: Likewise.
7939 * ftfont.c: Likewise.
7940 * gtkutil.c: Likewise.
7941 * image.c: Likewise.
7942 * keyboard.c: Likewise.
7943 * menu.c: Likewise.
7944 * process.c: Likewise.
7945 * scroll.c: Likewise.
7946 * sound.c: Likewise.
7947 * term.c: Likewise.
7948 * w32console.c: Likewise.
7949 * w32fns.c: Likewise.
7950 * w32term.c: Likewise.
7951 * window.c: Likewise.
7952 * xdisp.c: Likewise.
7953 * xfaces.c: Likewise.
7954 * xfns.c: Likewise.
7955 * xselect.c: Likewise.
7956 * xterm.c: Likewise.
7957
7958 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
7959
7960 * fns.c (maybe_resize_hash_table): Output message when growing the
7961 purify-hashtable.
7962
7963 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
7964
7965 * alloc.c (allocate_string_data): Remove dead code.
7966 * xsettings.c (XSETTINGS_FONT_NAME): Move under HAVE_XFT to
7967 avoid GCC warning about unused macro.
7968
7969 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
7970
7971 * alloc.c (allocate_string): Omit intervals initialization.
7972 * alloc.c (make_uninit_multibyte_string): Initialize intervals
7973 as in make_pure_string and make_pure_c_string.
7974
7975 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
7976
7977 * alloc.c (allocate_string): Fix last change.
7978
7979 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
7980
7981 * alloc.c (allocate_string): Remove two redundant calls
7982 to memset, add explicit initialization where appropriate.
7983
7984 2012-06-27 Glenn Morris <rgm@gnu.org>
7985
7986 * lisp.mk (lisp): Remove paths.elc.
7987
7988 2012-06-27 Chong Yidong <cyd@gnu.org>
7989
7990 * doc.c (Fsubstitute_command_keys): Fix punctuation.
7991
7992 2012-06-26 John Wiegley <johnw@newartisans.com>
7993
7994 * unexmacosx.c (copy_data_segment): Add two section names used
7995 on Mac OS X Lion: __mod_init_func and __mod_term_func.
7996
7997 * alloc.c (mark_memory): Do not check with -faddress-sanitizer
7998 when building with Clang.
7999
8000 2012-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
8001
8002 * eval.c (Fapply): Allow calling it with a single argument.
8003
8004 2012-06-26 Eli Zaretskii <eliz@gnu.org>
8005
8006 * s/ms-w32.h (strcasecmp, strncasecmp) [_MSC_VER]: Redirect to
8007 _stricmp and _strnicmp.
8008 (HAVE_STRCASECMP, HAVE_STRNCASECMP): Define to 1.
8009
8010 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
8011
8012 * alloc.c (allocate_window): Zero out non-Lisp part of newly
8013 allocated window.
8014 (allocate_process): Likewise for new process.
8015 (allocate_terminal): Change to use offsetof.
8016 (allocate_frame): Likewise.
8017 * frame.c (make_frame): Omit redundant initialization.
8018 * window.c (make_parent_window): Use memset.
8019 (make_window): Omit redundant initialization.
8020 * process.c (make_process): Omit redundant initialization.
8021 * terminal.c (create_terminal): Likewise.
8022
8023 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
8024
8025 * term.c (delete_tty): Remove redundant call to memset.
8026
8027 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
8028
8029 * alloc.c: Remove build_string.
8030 * lisp.h: Define build_string as static inline. This provides
8031 a better opportunity to optimize away calls to strlen when the
8032 function is called with compile-time constant argument.
8033 * image.c (imagemagick_error): Convert to build_string.
8034 * w32proc.c (sys_spawnve): Likewise.
8035 * xterm.c (x_term_init): Likewise.
8036
8037 2012-06-26 Paul Eggert <eggert@cs.ucla.edu>
8038
8039 Use sprintf return value instead of invoking strlen on result.
8040 In the old days this wasn't portable, since some sprintf
8041 implementations returned char *. But they died out years ago and
8042 Emacs already assumes sprintf returns int.
8043 Similarly for float_to_string.
8044 This patch speeds up (number-to-string 1000) by 3% on Fedora 15 x86-64.
8045 * ccl.c (ccl_driver):
8046 * character.c (string_escape_byte8):
8047 * data.c (Fnumber_to_string):
8048 * doprnt.c (doprnt):
8049 * print.c (print_object):
8050 * xdisp.c (message_dolog):
8051 * xfns.c (syms_of_xfns):
8052 Use sprintf or float_to_string result to avoid need to call strlen.
8053 * data.c (Fnumber_to_string):
8054 Use make_unibyte_string, since the string must be ASCII.
8055 * lisp.h, print.c (float_to_string): Now returns int length.
8056 * term.c (produce_glyphless_glyph):
8057 Use sprintf result rather than recomputing it.
8058
8059 Clean out last vestiges of the old HAVE_CONFIG_H stuff.
8060 * Makefile.in (ALL_CFLAGS):
8061 * makefile.w32-in (LOCAL_FLAGS): Remove -DHAVE_CONFIG_H.
8062 * gmalloc.c, regex.c: Include <config.h> unconditionally.
8063
8064 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
8065
8066 * dispextern.h (xstrcasecmp): Define to library function
8067 strcasecmp if available.
8068 * xfaces.c: Do not use xstrcasecmp if strcasecmp is available.
8069
8070 2012-06-25 Andreas Schwab <schwab@linux-m68k.org>
8071
8072 * keyboard.c (menu_bar_items, menu_bar_item, read_key_sequence):
8073 Avoid comma operator.
8074 * menu.c (push_submenu_start, push_submenu_end)
8075 (push_left_right_boundary, push_menu_pane): Likewise.
8076 * msdos.c (dos_rawgetc): Likewise.
8077
8078 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
8079
8080 * xfns.c (xic_create_fontsetname): Remove redundant calls
8081 to memset.
8082
8083 2012-06-25 Paul Eggert <eggert@cs.ucla.edu>
8084
8085 * gtkutil.c (get_utf8_string): Remove redundant assignment.
8086 sprintf already null-terminates its output.
8087
8088 * xfns.c (x_window): Remove redundant cast.
8089
8090 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
8091
8092 * xmenu.c (xmenu_show, xdialog_show): Explicit cast from
8093 `const char *' to `char *' to avoid compiler warning.
8094
8095 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
8096
8097 * xterm.c (x_term_init): Build proper-sized _XSETTINGS_Snnn string
8098 instead of truncating it to 63 (admittedly a generous limit).
8099
8100 * process.c: Fix spelling and caps in comments.
8101
8102 2012-06-24 Dan Nicolaescu <dann@ics.uci.edu>
8103
8104 * emacs.c (setpgrp): Remove definition, unused.
8105 * sysdep.c (setpgrp): Remove definition, not used in this file.
8106
8107 2012-06-24 Juanma Barranquero <lekktu@gmail.com>
8108
8109 * makefile.w32-in: Update dependencies.
8110
8111 2012-06-24 Eli Zaretskii <eliz@gnu.org>
8112
8113 * makefile.w32-in (TIMESPEC_H): Remove nt/inc/sys/time.h.
8114 (SYSTIME_H): Add nt/inc/sys/time.h.
8115
8116 * systime.h [WINDOWSNT]: Include sys/time.h.
8117
8118 * s/ms-w32.h (struct timespec): Definition moved from
8119 nt/inc/sys/time.h. Suggested by Paul Eggert <eggert@cs.ucla.edu>.
8120
8121 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
8122
8123 Switch from NO_RETURN to C11's _Noreturn (Bug#11750).
8124 * buffer.h (buffer_slot_type_mismatch):
8125 * data.c (arith_error) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
8126 * eval.c (unwind_to_catch):
8127 * image.c (my_png_error, my_error_exit):
8128 * keyboard.c (quit_throw_to_read_char, user_error)
8129 (Fexit_recursive_edit, Fabort_recursive_edit):
8130 * lisp.h (die, args_out_of_range, args_out_of_range_3)
8131 (wrong_type_argument, buffer_overflow, __executable_start)
8132 (memory_full, buffer_memory_full, string_overflow, Fthrow)
8133 (xsignal, xsignal0, xsignal1, xsignal2, xsignal3, signal_error)
8134 (error, verror, nsberror, report_file_error, Ftop_level, Fkill_emacs)
8135 (fatal):
8136 (child_setup) [!DOS_NT]:
8137 * lread.c (end_of_file_error, invalid_syntax):
8138 * process.c (send_process_trap) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
8139 * puresize.h (pure_write_error):
8140 * search.c (matcher_overflow):
8141 * sound.c (sound_perror, alsa_sound_perror):
8142 * sysdep.c, syssignal.h (croak):
8143 * term.c (maybe_fatal, vfatal):
8144 * textprop.c (text_read_only):
8145 * undo.c (user_error):
8146 * unexmacosx.c (unexec_error):
8147 * xterm.c (x_ins_del_lines, x_delete_glyphs):
8148 Use _Noreturn rather than NO_RETURN.
8149 No need for separate decl merely because of _Noreturn.
8150 * sound.c (sound_warning, parse_sound):
8151 Remove unnecessary forward decls.
8152
8153 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
8154
8155 Fix bug when time_t is unsigned and as wide as intmax_t (Bug#9000).
8156 * lisp.h (WAIT_READING_MAX): New macro.
8157 * dispnew.c (Fsleep_for, sit_for):
8158 * keyboard.c (kbd_buffer_get_event):
8159 * process.c (Faccept_process_output):
8160 Use it to avoid bogus compiler warnings with obsolescent GCC versions.
8161 This improves on the previous patch, which introduced a bug
8162 when time_t is unsigned and as wide as intmax_t.
8163 See <http://bugs.gnu.org/9000#51>.
8164
8165 2012-06-23 Eli Zaretskii <eliz@gnu.org>
8166
8167 * dispnew.c (sit_for, Fsleep_for):
8168 * keyboard.c (kbd_buffer_get_event):
8169 * process.c (Faccept_process_output): Avoid compiler warnings when
8170 comparing a 32-bit time_t with a 64-bit INTMAX_MAX.
8171
8172 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
8173
8174 * makefile.w32-in: Update dependencies.
8175
8176 * w32.c (ltime): Add return type and declare static.
8177 (w32_get_internal_run_time): Remove usused variable `time_100ns'.
8178
8179 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
8180
8181 * sysdep.c [__FreeBSD__]: Fix more recently-introduced typos.
8182 Privately reported by Herbert J. Skuhra.
8183 (make_lisp_timeval) [__FreeBSD__]: Rename from TIMELIST.
8184 All uses changed.
8185 (system_process_attributes) [__FreeBSD__]: Invoke make_lisp_time,
8186 not make_lisp_timeval, when the argument is of type EMACS_TIME.
8187
8188 2012-06-23 Eli Zaretskii <eliz@gnu.org>
8189
8190 * w32proc.c (Fw32_get_locale_info): Fix an off-by-one error in
8191 last argument of make_unibyte_string.
8192
8193 * keyboard.c (kbd_buffer_get_event): Include the codepage and the
8194 language ID in the event parameters.
8195
8196 * w32term.c (w32_read_socket): Put the new keyboard codepage into
8197 event.code, not the obscure "character set ID".
8198
8199 2012-06-23 Chong Yidong <cyd@gnu.org>
8200
8201 * xmenu.c (x_menu_wait_for_event): Adapt GTK3 to new xg_select.
8202
8203 2012-06-23 Eli Zaretskii <eliz@gnu.org>
8204
8205 Fix the MS-Windows build broken by 2012-06-22T21:17:42Z!eggert@cs.ucla.edu.
8206 * w32.c (fdutimens): New function.
8207
8208 * w32proc.c (sys_select): Adapt to change in the EMACS_TIME type.
8209
8210 * s/ms-w32.h (pselect): Redirect to sys_select.
8211
8212 * sysselect.h [WINDOWSNT]: Don't include sys/select.h.
8213
8214 * ralloc.c (r_alloc_inhibit_buffer_relocation): Fix stupid thinko
8215 in the logic of incrementing and decrementing the value of
8216 use_relocatable_buffers.
8217
8218 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
8219
8220 * sysdep.c [__FreeBSD__]: Fix recently-introduced typos.
8221 Privately reported by Herbert J. Skuhra.
8222 [__FreeBSD__]: Remove "*/" typo after "#include".
8223 (timeval_to_EMACS_TIME) [__FreeBSD__]: New static function.
8224 (TIMEVAL) [__FreeBSD__]: Now a static function rather than a macro.
8225 (TIMEVAL, system_process_attributes) [__FreeBSD__]:
8226 Don't assume EMACS_TIME and struct timeval are the same type.
8227
8228 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
8229
8230 Support higher-resolution time stamps (Bug#9000).
8231 The time stamps are only nanosecond-resolution at the C level,
8232 since that's the best that any real-world system supports now.
8233 But they are picosecond-resolution at the Lisp level, as that's
8234 easy, and leaves room for future OS improvements.
8235
8236 * Makefile.in (LIB_CLOCK_GETTIME): New macro.
8237 (LIBES): Use it.
8238
8239 * alloc.c (Fgarbage_collect): Port to higher-res time stamps.
8240 Don't get current time unless it's needed.
8241
8242 * atimer.c: Include <sys/time.h> unconditionally, since gnulib
8243 now provides it if it's absent.
8244 (start_atimer): Port to higher-res time stamps.
8245 Check for time stamp overflow. Don't get current time more
8246 often than is needed.
8247
8248 * buffer.h (struct buffer): Buffer modtime now has high resolution.
8249 Include systime.h, not time.h.
8250 (NONEXISTENT_MODTIME_NSECS, UNKNOWN_MODTIME_NSECS): New macros.
8251
8252 * dired.c: Include stat-time.h.
8253 (Ffile-attributes): File times now have higher resolution.
8254
8255 * dispextern.h [HAVE_WINDOW_SYSTEM]: Include systime.h.
8256 (struct image): Timestamp now has higher resolution.
8257
8258 * dispnew.c (PERIODIC_PREEMPTION_CHECKING): Remove, as Emacs always
8259 has at least microseconds now. All uses removed.
8260 (update_frame, update_single_window, update_window, update_frame_1)
8261 (Fsleep_for, sit_for): Port to higher-resolution time stamps.
8262 (duration_to_sec_usec): Remove; no longer needed.
8263
8264 * editfns.c (time_overflow): Now extern.
8265 (Fcurrent_time, Fget_internal_run_time, make_time, lisp_time_argument)
8266 (float-time, Fformat_time_string, Fcurrent_time_string)
8267 (Fcurrent_time_zone): Accept and generate higher-resolution
8268 time stamps.
8269 (make_time_tail, make_lisp_time, dissassemble_lisp_time)
8270 (decode_time_components, lisp_seconds_argument): New functions.
8271 (make_time): Now static.
8272 (lisp_time_argument): Now returns EMACS_TIME. New arg ppsec.
8273 Report an error if the time is invalid, rather than having the caller
8274 do that.
8275
8276 * fileio.c: Include <stat-time.h>
8277 (Fcopy_file): Copy higher-resolution time stamps.
8278 Prefer to set the time stamp via a file descriptor if that works.
8279 (Fset_file_times, Finsert_file_contents, Fwrite_region)
8280 (Fverify_visited_file_modtime, Fclear_visited_file_modtime)
8281 (Fvisited_file_modtime, Fset_visited_file_modtime):
8282 Support higher-resolution time stamps.
8283
8284 * fns.c (Frandom): Use nanoseconds, not microseconds, for seed.
8285
8286 * gtkutil.c (xg_maybe_add_timer): Port to higher-res time stamps.
8287
8288 * image.c (prepare_image_for_display, clear_image_cache)
8289 (lookup_image): Port to higer-resolution time stamps.
8290
8291 * keyboard.c (start_polling, bind_polling_period):
8292 Check for time stamp overflow.
8293 (read_char, kbd_buffer_get_event, timer_start_idle)
8294 (timer_stop_idle, timer_resume_idle, timer_check_2, timer_check)
8295 (Fcurrent_idle_time, init_keyboard, set_waiting_for_input):
8296 Port to higher-resolution time stamps. Do not assume time_t is signed.
8297 (decode_timer): New function. Timers are now vectors of length 9,
8298 not 8, to accommodate the picosecond component.
8299 (timer_check_2): Use it.
8300
8301 * nsterm.m (select_timeout, timeval_subtract): Remove.
8302 (ns_timeout): Use Emacs's facilities for time stamp arithmetic,
8303 as they're a bit more accurate and handle overflow better.
8304 (ns_select): Change prototype to be compatible with pselect.
8305 (ns_select, ns_term_shutdown): Port to ns-resolution time stamps.
8306 * nsterm.h (ns_select): Adjust prototype.
8307
8308 * msdos.c (EMACS_TIME_ZERO_OR_NEG_P): Remove, as it assumes
8309 us-resolution time stamps.
8310 (sys_select): Use the new EMACS_TIME_SIGN macro instead.
8311
8312 * lread.c (read_filtered_event): Port to ns-resolution time stamps.
8313
8314 * lisp.h (time_overflow): New decl.
8315 (wait_reading_process_output): First arg is now intmax_t, not int,
8316 to accommodate larger waits.
8317
8318 * process.h (struct Lisp_Process.read_output_delay):
8319 Now counts nanoseconds, not microseconds.
8320 * process.c (ADAPTIVE_READ_BUFFERING): Don't worry about
8321 EMACS_HAS_USECS.
8322 (READ_OUTPUT_DELAY_INCREMENT, Faccept_process_output)
8323 (wait_reading_process_output):
8324 Port to ns-resolution time stamps.
8325 (Faccept_process_output, wait_reading_process_output):
8326 Check for time stamp overflow. Do not assume time_t is signed.
8327 (select_wrapper): Remove; we now use pselect.
8328 (Fprocess_attributes): Now generates ns-resolution time stamps.
8329
8330 * sysdep.c: Include utimens.h. Don't include utime.h
8331 or worry about struct utimbuf; gnulib does that for us now.
8332 (gettimeofday): Remove; gnulib provides a substitute.
8333 (make_timeval): New function.
8334 (set_file_times): Now sets ns-resolution time stamps.
8335 New arg FD; all uses changed.
8336 (time_from_jiffies, ltime_from_jiffies, get_up_time)
8337 (system_process_attributes):
8338 Now returns ns-resolution time stamp. All uses changed.
8339 Check for time stamp overflow.
8340
8341 * sysselect.h: Don't depend on HAVE_SYS_SELECT_H; gnulib
8342 provides a substitute now.
8343
8344 * systime.h: Include timespec.h rather than sys/time.h and time.h,
8345 since it guarantees struct timespec.
8346 (EMACS_TIME): Now struct timespec, so that we can support
8347 ns-resolution time stamps.
8348 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): New macros.
8349 (EMACS_HAS_USECS): Remove; Emacs always has sub-second time stamps now.
8350 (EMACS_USECS): Remove.
8351 (EMACS_SET_USECS): The underlying time stamp now has ns resolution,
8352 so multiply the arg by 1000 before storing it.
8353 (EMACS_NSECS, EMACS_SECS_ADDR, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS):
8354 New macros.
8355 (EMACS_GET_TIME, EMACS_ADD_TIME, EMACS_SUB_TIME):
8356 Port to ns-resolution time stamps.
8357 (EMACS_TIME_NEG_P): Remove; replaced by....
8358 (EMACS_TIME_SIGN): New macro.
8359 (EMACS_SET_INVALID_TIME, EMACS_TIME_VALID_P)
8360 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE): New macros.
8361 (set_file_times, make_time, lisp_time_argument): Adjust signature.
8362 (make_timeval, make_lisp_time, decode_time_components): New decls.
8363 (EMACS_TIME_CMP): Remove; no longer used. Plus, it was buggy, in
8364 that it mishandled time_t overflow. You can't compare by subtracting!
8365 (EMACS_TIME_EQ, EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE)
8366 (EMACS_TIME_LT, EMACS_TIME_LE): Rewrite in terms of timespec_cmp.
8367
8368 * term.c: Include <sys/time.h>.
8369 (timeval_to_Time): New function, for proper overflow wraparound.
8370 (term_mouse_position, term_mouse_click): Use it.
8371
8372 * undo.c (record_first_change): Support higher-resolution time stamps
8373 in the undo buffer.
8374 (Fprimitive_undo): Use them when restoring time stamps.
8375
8376 * w32.c (ltime, U64_TO_LISP_TIME, process_times, emacs_gnutls_pull)
8377 (w32_get_internal_run_time):
8378 Port to higher-resolution Emacs time stamps.
8379 (ltime): Now accepts single 64-bit integer, as that's more convenient
8380 for callers.
8381
8382 * xdisp.c (start_hourglass): Port to ns-resolution time stamps.
8383
8384 * xgselect.c, xgselect.h (xg_select): Add sigmask argument,
8385 for compatibility with pselect. Support ns-resolution time stamps.
8386
8387 * xmenu.c (x_menu_wait_for_event): Support ns-resolution time stamps.
8388
8389 * xselect.c (wait_for_property_change, x_get_foreign_selection):
8390 Check for time stamp overflow, and support ns-resolution time stamps.
8391
8392 * xterm.c: Don't include sys/time.h; gnulib does that for us now.
8393 Don't worry about whether HAVE_TIMEVAL and HAVE_SELECT are set.
8394 (timeval_subtract): Remove; no longer needed.
8395 (XTflash, XTring_bell, x_wait_for_event):
8396 Port to ns-resolution time stamps. Don't assume time_t is signed.
8397
8398 2012-06-22 Chong Yidong <cyd@gnu.org>
8399
8400 * xdisp.c (x_consider_frame_title): Revert last change.
8401
8402 2012-06-22 Eli Zaretskii <eliz@gnu.org>
8403
8404 * alloc.c (NSTATICS): Enlarge to 0x650. Otherwise, Emacs compiled
8405 with -DENABLE_CHECKING -DXASSERTS -DGLYPH_DEBUG=1 -DBYTE_CODE_METER
8406 aborts in staticpro during startup. (Without -DBYTE_CODE_METER,
8407 staticidx goes up to 1597 out of 1600 = 0x640.)
8408
8409 2012-06-20 Paul Eggert <eggert@cs.ucla.edu>
8410
8411 * fileio.c (Fdefault_file_modes): Block input while fiddling with umask.
8412 Otherwise, the umask might be mistakenly 0 while handling input signals.
8413
8414 2012-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
8415
8416 * minibuf.c (Fread_string): Bind minibuffer-completion-table.
8417
8418 2012-06-19 Dmitry Antipov <dmantipov@yandex.ru>
8419
8420 * alloc.c, bytecode.c, ccl.c, coding.c, composite.c, data.c, dosfns.c:
8421 * font.c, image.c, keyboard.c, lread.c, menu.c, minibuf.c, msdos.c:
8422 * print.c, syntax.c, window.c, xmenu.c, xselect.c: Replace direct
8423 access to `contents' member of Lisp_Vector objects with AREF and ASET
8424 where appropriate.
8425
8426 2012-06-19 Chong Yidong <cyd@gnu.org>
8427
8428 * frame.c (delete_frame): When selecting a frame on a different
8429 text terminal, do not alter the terminal's top-frame.
8430
8431 * xdisp.c (format_mode_line_unwind_data): Record the target
8432 frame's selected window and its terminal's top-frame.
8433 (unwind_format_mode_line): Restore them.
8434 (x_consider_frame_title, display_mode_line, Fformat_mode_line):
8435 Callers changed.
8436 (x_consider_frame_title): Do not condition on HAVE_WINDOW_SYSTEM,
8437 since tty frames can be explicitly named.
8438 (prepare_menu_bars): Likewise.
8439
8440 * term.c (Ftty_top_frame): New function.
8441
8442 2012-06-18 Paul Eggert <eggert@cs.ucla.edu>
8443
8444 Port byte-code-meter to modern targets.
8445 * bytecode.c (METER_CODE) [BYTE_CODE_METER]: Don't assume
8446 !CHECK_LISP_OBJECT_TYPE && !USE_LSB_TAG. Problem with
8447 CHECK_LISP_OBJECT_TYPE reported by Dmitry Antipov in
8448 <http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00282.html>.
8449 (METER_1, METER_2): Simplify.
8450
8451 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
8452
8453 * data.c (Fdefalias): Return `symbol' (bug#11686).
8454
8455 2012-06-18 Martin Rudalics <rudalics@gmx.at>
8456
8457 * buffer.c (Fkill_buffer): Don't throw an error when the buffer
8458 gets killed during executing of this function (Bug#11665).
8459 Try to always return Qt when the buffer has been actually killed.
8460 (Vkill_buffer_query_functions): In doc-string say that functions
8461 run by this hook should not change the current buffer.
8462
8463 2012-06-18 Paul Eggert <eggert@cs.ucla.edu>
8464
8465 Fix recently-introduced process.c problems found by static checking.
8466 * process.c (write_queue_push, write_queue_pop, send_process):
8467 Use ptrdiff_t, not int or EMACS_INT, for buffer lengths and offsets.
8468 (write_queue_pop): Fix pointer signedness problem.
8469 (send_process): Remove unused local.
8470
8471 2012-06-17 Chong Yidong <cyd@gnu.org>
8472
8473 * xdisp.c (redisplay_internal): No need to redisplay terminal
8474 frames that are not on top.
8475
8476 2012-06-17 Troels Nielsen <bn.troels@gmail.com>
8477
8478 * process.c (make_process): Initialize write_queue.
8479 (write_queue_push, write_queue_pop): New functions.
8480 (send_process): Use them to maintain correct ordering of process
8481 writes (Bug#10815).
8482
8483 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
8484
8485 * lisp.h (eassert): Assume C89 or later.
8486 This removes the need for CHECK.
8487 (CHECK): Remove. Its comments about always evaluating its
8488 argument were confusing, as 'eassert' typically does not evaluate
8489 its argument.
8490
8491 * coding.c (produce_chars): Use ptrdiff_t, not int.
8492
8493 * xterm.c (x_draw_underwave): Check for integer overflow.
8494 This pacifies gcc 4.7.0 -Wunsafe-loop-optimizations on x86-64.
8495
8496 2012-06-17 Jan Djärv <jan.h.d@swipnet.se>
8497
8498 * nsterm.m (x_free_frame_resources): Move xfree so freed memory isn't
8499 referenced (Bug#11583).
8500
8501 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
8502
8503 Implement wave-style variant of underlining.
8504 * dispextern.h (face_underline_type): New enum.
8505 (face): Add field for underline type.
8506 * nsterm.m (ns_draw_underwave): New function.
8507 (ns_draw_text_decoration): Use it.
8508 * w32term.c (w32_restore_glyph_string_clip, w32_draw_underwave):
8509 New functions.
8510 (x_draw_glyph_string): Use them.
8511 * xfaces.c (Qline, Qwave): New Lisp objects.
8512 (check_lface_attrs, merge_face_ref)
8513 (Finternal_set_lisp_face_attribute, realize_x_face):
8514 Handle wave-style underline face attributes.
8515 * xterm.c (x_draw_underwave): New function.
8516 (x_draw_glyph_string): Use it.
8517
8518 2012-06-16 Juanma Barranquero <lekktu@gmail.com>
8519
8520 * makefile.w32-in ($(BLD)/emacs.$(O), $(BLD)/fringe.$(O))
8521 ($(BLD)/xml.$(O), $(BLD)/intervals.$(O), $(BLD)/macros.$(O))
8522 ($(BLD)/minibuf.$(O), $(BLD)/regex.$(O), $(BLD)/region-cache.$(O))
8523 ($(BLD)/textprop.$(O), $(BLD)/undo.$(O), $(BLD)/window.$(O))
8524 ($(BLD)/w32select.$(O)): Update dependencies.
8525
8526 2012-06-16 Andreas Schwab <schwab@linux-m68k.org>
8527
8528 * buffer.h (FETCH_MULTIBYTE_CHAR): Define as inline.
8529 (BUF_FETCH_MULTIBYTE_CHAR): Likewise.
8530 * character.c (_fetch_multibyte_char_p): Remove.
8531 * alloc.c: Include "character.h" before "buffer.h".
8532 * bidi.c: Likewise.
8533 * buffer.c: Likewise.
8534 * bytecode.c: Likewise.
8535 * callint.c: Likewise.
8536 * callproc.c: Likewise.
8537 * casefiddle.c: Likewise.
8538 * casetab.c: Likewise.
8539 * category.c: Likewise.
8540 * cmds.c: Likewise.
8541 * coding.c: Likewise.
8542 * composite.c: Likewise.
8543 * dired.c: Likewise.
8544 * dispnew.c: Likewise.
8545 * doc.c: Likewise.
8546 * dosfns.c: Likewise.
8547 * editfns.c: Likewise.
8548 * emacs.c: Likewise.
8549 * fileio.c: Likewise.
8550 * filelock.c: Likewise.
8551 * font.c: Likewise.
8552 * fontset.c: Likewise.
8553 * fringe.c: Likewise.
8554 * indent.c: Likewise.
8555 * insdel.c: Likewise.
8556 * intervals.c: Likewise.
8557 * keyboard.c: Likewise.
8558 * keymap.c: Likewise.
8559 * lread.c: Likewise.
8560 * macros.c: Likewise.
8561 * marker.c: Likewise.
8562 * minibuf.c: Likewise.
8563 * nsfns.m: Likewise.
8564 * nsmenu.m: Likewise.
8565 * print.c: Likewise.
8566 * process.c: Likewise.
8567 * regex.c: Likewise.
8568 * region-cache.c: Likewise.
8569 * search.c: Likewise.
8570 * syntax.c: Likewise.
8571 * term.c: Likewise.
8572 * textprop.c: Likewise.
8573 * undo.c: Likewise.
8574 * unexsol.c: Likewise.
8575 * w16select.c: Likewise.
8576 * w32fns.c: Likewise.
8577 * w32menu.c: Likewise.
8578 * window.c: Likewise.
8579 * xdisp.c: Likewise.
8580 * xfns.c: Likewise.
8581 * xmenu.c: Likewise.
8582 * xml.c: Likewise.
8583 * xselect.c: Likewise.
8584
8585 2012-06-16 Eli Zaretskii <eliz@gnu.org>
8586
8587 * xdisp.c (set_cursor_from_row): Don't dereference glyphs_end.
8588 If all the glyphs of the glyph row came from strings, and we have no
8589 cursor positioning clues, put the cursor on the first glyph of the
8590 row.
8591 (handle_face_prop): Use chunk-relative overlay string index when
8592 indexing into it->string_overlays array. (Bug#11653)
8593 (set_cursor_from_row): Use the leftmost glyph as GLYPH_BEFORE, not
8594 the rightmost. (Bug#11720)
8595
8596 2012-06-16 Andreas Schwab <schwab@linux-m68k.org>
8597
8598 * category.h (CHAR_HAS_CATEGORY): Define as inline.
8599 (CATEGORY_MEMBER): Enforce 1/0 value.
8600 * category.c (_temp_category_set): Remove.
8601
8602 2012-06-16 Eli Zaretskii <eliz@gnu.org>
8603
8604 * window.c (Fdelete_other_windows_internal)
8605 (Fdelete_window_internal): Don't access frame's mouse highlight
8606 info of the initial frame. (Bug#11677)
8607
8608 2012-06-14 Paul Eggert <eggert@cs.ucla.edu>
8609
8610 * .gdbinit (xgetint): Fix recently-introduced paren typo.
8611 Assume USE_2_TAGS_FOR_INTS.
8612 (xreload): Adjust $tagmask width to match recent lisp.h change.
8613
8614 Simplify lisp.h in minor ways that should not affect code.
8615 * lisp.h (USE_2_TAGS_FOR_INTS): Remove, as it was always defined.
8616 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P)
8617 (LISP_INT1_TAG, enum Lisp_Type, XINT, XUINT, make_number):
8618 Simplify under the assumption that USE_2_TAGS_FOR_INTS is defined.
8619 (INTTYPEBITS): New macro, for clarity.
8620 (INTMASK, MOST_POSITIVE_FIXNUM): Use it.
8621 (LISP_INT1_TAG, LISP_STRING_TAG, LISP_INT_TAG_P):
8622 Simplify now that USE_LSB_TAG is always defined.
8623 (TYPEMASK, XINT) [USE_LSB_TAG]: Remove unnecessary cast.
8624 (make_number) [!USE_LSB_TAG]: Use INTMASK; that's simpler.
8625
8626 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
8627
8628 * makefile.w32-in ($(BLD)/data.$(O)): Update dependencies.
8629
8630 2012-06-13 Glenn Morris <rgm@gnu.org>
8631
8632 * s/bsd-common.h (BSD4_3):
8633 * s/usg5-4-common.h (USG5_4): No longer define; unused.
8634
8635 2012-06-13 Andreas Schwab <schwab@linux-m68k.org>
8636
8637 * lisp.h (Lisp_Object) [CHECK_LISP_OBJECT_TYPE]: Define as struct
8638 instead of union.
8639 (XLI, XIL): Define.
8640 (XHASH, XTYPE, XINT, XUINT, make_number, XSET, XPNTR, XUNTAG):
8641 Use them.
8642 * emacs.c (gdb_use_struct): Rename from gdb_use_union.
8643 * .gdbinit: Check gdb_use_struct instead of gdb_use_union.
8644 * alloc.c (widen_to_Lisp_Object): Remove.
8645 (mark_memory): Use XIL instead of widen_to_Lisp_Object.
8646 * frame.c (delete_frame): Remove outdated comment.
8647 * w32fns.c (Fw32_register_hot_key): Use XLI instead of checking
8648 USE_LISP_UNION_TYPE.
8649 (Fw32_unregister_hot_key): Likewise.
8650 (Fw32_toggle_lock_key): Likewise.
8651 * w32menu.c (add_menu_item): Likewise.
8652 (w32_menu_display_help): Use XIL instead of checking
8653 USE_LISP_UNION_TYPE.
8654 * w32heap.c (allocate_heap): Don't check USE_LISP_UNION_TYPE.
8655 (init_heap): Likewise.
8656 * w32term.c (w32_read_socket): Update comment.
8657
8658 2012-06-13 Glenn Morris <rgm@gnu.org>
8659
8660 * s/usg5-4-common.h, src/s/unixware.h:
8661 Remove define/undef of HAVE_SYSV_SIGPAUSE (not used since 2010-05-04).
8662
8663 * s/gnu.h (POSIX_SIGNALS): Remove (not used since 2010-05-04).
8664
8665 2012-06-13 Paul Eggert <eggert@cs.ucla.edu>
8666
8667 USE_LISP_UNION_TYPE + USE_LSB_TAG cleanup (Bug#11604)
8668 * alloc.c (make_number) [!defined make_number]:
8669 Remove, as lisp.h always defines this now.
8670 (mark_maybe_pointer): Simplify since USE_LSB_TAG is always defined now.
8671 (roundup_size): Verify that it is a power of 2.
8672 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
8673 * ftfont.c (ftfont_driver): Use LISP_INITIALLY_ZERO.
8674 * lisp.h (USE_LSB_TAG): Allow the builder to compile with
8675 -DUSE_LSB_TAG=0, to override the automatically-selected default.
8676 USE_LSB_TAG now is always defined to be either 0 or 1.
8677 All uses changed.
8678 (union Lisp_Object): Don't worry about WORDS_BIGENDIAN; the
8679 code works fine either way, and efficiency is not a concern here,
8680 as the union type is for debugging, not for production.
8681 (LISP_MAKE_RVALUE, make_number) [USE_LISP_UNION_TYPE]:
8682 Use an inline function on all platforms when using the union type,
8683 since this is simpler and 'static inline' can be used portably
8684 within Emacs now.
8685 (LISP_INITIALLY_ZERO): New macro.
8686 (XFASTINT, XSETFASTINT) [USE_LISP_UNION_TYPE]: Remove.
8687 (XSET) [USE_LISP_UNION_TYPE]: Don't overparenthesize.
8688
8689 2012-06-12 Glenn Morris <rgm@gnu.org>
8690
8691 * s/gnu-kfreebsd.h, s/hpux11.h, s/openbsd.h, s/sol2-10.h: Remove files.
8692
8693 * s/gnu-linux.h (HAVE_PROCFS): Move to configure.
8694
8695 * s/hpux10-20.h, s/openbsd.h, s/usg5-4-common.h:
8696 Move BROKEN_SIGIO to configure.
8697
8698 * s/bsd-common.h, s/darwin.h, s/gnu-kfreebsd.h, s/hpux10-20.h:
8699 Move NO_TERMIO to configure.
8700
8701 2012-06-12 Chong Yidong <cyd@gnu.org>
8702
8703 * image.c (imagemagick_load_image): Use MagickFlattenImage if
8704 MagickMergeImageLayers is undefined. Use pixel pusher loop if
8705 MagickExportImagePixels is undefined.
8706
8707 2012-06-12 Paul Eggert <eggert@cs.ucla.edu>
8708
8709 * image.c (imagemagick_load_image): Remove unused label.
8710
8711 2012-06-11 Glenn Morris <rgm@gnu.org>
8712
8713 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
8714 * s/gnu-kfreebsd.h, s/gnu-linux.h, s/gnu.h, s/hpux10-20.h:
8715 * s/irix6-5.h, s/ms-w32.h, s/msdos.h, s/template.h:
8716 * s/usg5-4-common.h: Move SYSTEM_TYPE to configure.
8717
8718 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
8719
8720 * alloc.c (make_byte_code): New function.
8721 (Fmake_byte_code): Use it. Don't purify here.
8722 * lread.c (read1): Use it as well to avoid extra allocation.
8723
8724 2012-06-11 Chong Yidong <cyd@gnu.org>
8725
8726 * image.c (imagemagick_load_image): Implement transparency.
8727
8728 2012-06-10 Andreas Schwab <schwab@linux-m68k.org>
8729
8730 * regex.c (at_begline_loc_p): Also recognize `(?N:' and correctly
8731 account for preceding backslashes. (Bug#11663)
8732
8733 2012-06-09 Chong Yidong <cyd@gnu.org>
8734
8735 * term.c: Support italics in capable terminals (Bug#9652).
8736 (no_color_bit): Replace unused NC_BLINK with NC_ITALIC.
8737 (turn_on_face): Output using TS_enter_italic_mode if available.
8738 Don't handle unused blinking and alt-charset cases.
8739 (turn_off_face): Handle italic case; discard unused tty_blinking_p
8740 and tty_alt_charset_p cases.
8741 (tty_capable_p, init_tty): Support italics.
8742
8743 * termchar.h (struct tty_display_info): Add field for italics.
8744 Remove unused blink field.
8745
8746 * xfaces.c (tty_supports_face_attributes_p, realize_tty_face):
8747 Handle slant.
8748
8749 * dispextern.h: Replace unused TTY_CAP_BLINK with TTY_CAP_ITALIC.
8750 (struct face): Remove unused fields tty_dim_p, tty_blinking_p, and
8751 tty_alt_charset_p. Add tty_italic_p.
8752
8753 2012-06-09 Michael Albinus <michael.albinus@gmx.de>
8754
8755 * dbusbind.c (XD_BASIC_DBUS_TYPE): Use dbus_type_is_valid and
8756 dbus_type_is_basic if available.
8757 (xd_extract_signed, xd_extract_unsigned): Rename from
8758 extract_signed and extract_unsigned, respectively. Adapt callers.
8759
8760 2012-06-09 Chong Yidong <cyd@gnu.org>
8761
8762 * xfaces.c (face_for_overlay_string): Handle face remapping (Bug#2066).
8763
8764 * fringe.c (Fset_fringe_bitmap_face): Handle the noninteractive
8765 case (Bug#9752).
8766
8767 2012-06-08 Paul Eggert <eggert@cs.ucla.edu>
8768
8769 * xdisp.c (vmessage): Treat frame message as multibyte.
8770 Without this change, (let ((§ 1)) (make-variable-buffer-local '§))
8771 would generate the diagnostic "Making \302\247 buffer-local while
8772 let-bound!".
8773
8774 2012-06-08 Eli Zaretskii <eliz@gnu.org>
8775
8776 * dispnew.c (showing_window_margins_p): Undo last change, which
8777 was done due to an inadvertent commit.
8778 (adjust_frame_glyphs_for_frame_redisplay): Do call
8779 showing_window_margins_p.
8780
8781 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
8782
8783 * eval.c (Fmake_var_non_special): New primitive.
8784 (syms_of_eval): Defsubr it.
8785 * lread.c (syms_of_lread): Mark `values' as lexically scoped.
8786
8787 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
8788
8789 * dispnew.c (showing_window_margins_p): Wrap in #if 0 to prevent unused
8790 function warning (the only call is inside #if 0 since 2012-06-08T08:44:45Z!eliz@gnu.org).
8791
8792 2012-06-08 Eli Zaretskii <eliz@gnu.org>
8793
8794 * alloc.c (allocate_vectorlike): Fix last change.
8795
8796 2012-06-08 Dmitry Antipov <dmantipov@yandex.ru>
8797
8798 Block-based vector allocation of small vectors.
8799 * lisp.h (struct vectorlike_header): New field `nbytes',
8800 adjust comment accordingly.
8801 * alloc.c (enum mem_type): New type `MEM_TYPE_VECTOR_BLOCK'
8802 to denote vector blocks. Adjust users (live_vector_p,
8803 mark_maybe_pointer, valid_lisp_object_p) accordingly.
8804 (COMMON_MULTIPLE): Move outside #if USE_LSB_TAG.
8805 (VECTOR_BLOCK_SIZE, vroundup, VECTOR_BLOCK_BYTES),
8806 (VBLOCK_BYTES_MIN, VBLOCK_BYTES_MAX, VECTOR_MAX_FREE_LIST_INDEX),
8807 (VECTOR_FREE_LIST_FLAG, ADVANCE, VINDEX, SETUP_ON_FREE_LIST),
8808 (VECTOR_SIZE, VECTOR_IN_BLOCK): New macros.
8809 (roundup_size): New constant.
8810 (struct vector_block): New data type.
8811 (vector_blocks, vector_free_lists, zero_vector): New variables.
8812 (all_vectors): Rename to `large_vectors'.
8813 (allocate_vector_from_block, init_vectors, allocate_vector_from_block)
8814 (sweep_vectors): New functions.
8815 (allocate_vectorlike): Return `zero_vector' as the only vector of
8816 0 items. Allocate new vector from block if vector size is less than
8817 or equal to VBLOCK_BYTES_MAX.
8818 (Fgarbage_collect): Move all vector sweeping code to sweep_vectors.
8819 (init_alloc_once): Add call to init_vectors.
8820
8821 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
8822
8823 * eval.c (Fmacroexpand): Stop if the macro returns the same form.
8824
8825 2012-06-07 Paul Eggert <eggert@cs.ucla.edu>
8826
8827 * doprnt.c (doprnt): Truncate multibyte char correctly.
8828 Without this change, doprnt (buf, 2, "%s", FORMAT_END, AP)
8829 would mishandle a string argument "Xc" if X was a multibyte
8830 character of length 2: it would truncate after X's first byte
8831 rather than including all of X.
8832
8833 2012-06-06 Chong Yidong <cyd@gnu.org>
8834
8835 * buffer.c (word_wrap): Doc fix.
8836
8837 2012-06-04 Paul Eggert <eggert@cs.ucla.edu>
8838
8839 * xdisp.c (note_mode_line_or_margin_highlight): Pacify gcc -Wall.
8840
8841 2012-06-03 Glenn Morris <rgm@gnu.org>
8842
8843 * xdisp.c (tool-bar-style): Doc fix.
8844
8845 2012-06-03 Ulrich Müller <ulm@gentoo.org>
8846
8847 * Makefile.in (PAXCTL): Define.
8848 (temacs$(EXEEXT)): Disable memory randomization for the temacs
8849 binary via PaX flags if the paxctl utility is available.
8850 (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
8851 Restore PaX flags to their default. (Bug#11398)
8852
8853 2012-06-03 Chong Yidong <cyd@gnu.org>
8854
8855 * xdisp.c (decode_mode_spec_coding): Display a space for a unibyte
8856 buffer (Bug#11226).
8857
8858 2012-06-03 Chong Yidong <cyd@gnu.org>
8859
8860 * xdisp.c (calc_pixel_width_or_height): Use Fbuffer_local_value.
8861 (note_mode_line_or_margin_highlight): If there is no help echo,
8862 use mode-line-default-help-echo. Handle the case where the mouse
8863 position is past the end of the mode line string.
8864
8865 * buffer.c (buffer_local_value_1): New function, split from
8866 Fbuffer_local_value; can return Qunbound.
8867 (Fbuffer_local_value): Use it.
8868 (Vmode_line_format): Docstring tweaks.
8869
8870 2012-06-02 Paul Eggert <eggert@cs.ucla.edu>
8871
8872 * sysdep.c (system_process_attributes): Improve comment.
8873
8874 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
8875
8876 * keyboard.c: Export real-this-command to Elisp.
8877 (syms_of_keyboard): Rename real_this_command to Vreal_this_command
8878 and DEFVAR it. Update all users.
8879
8880 2012-06-02 Paul Eggert <eggert@cs.ucla.edu>
8881
8882 * minibuf.c (Fassoc_string): Remove duplicate declaration.
8883
8884 * sysdep.c (system_process_attributes) [SOLARIS2 && HAVE_PROCFS]:
8885 Convert pctcpu and pctmem to Lisp float properly.
8886 Let the compiler fold better, as 100.0/0x8000 is exact.
8887
8888 2012-06-02 Andreas Schwab <schwab@linux-m68k.org>
8889
8890 * alloc.c (CONS_BLOCK_SIZE): Account for padding at the end of
8891 cons_block.
8892
8893 2012-06-01 Paul Eggert <eggert@cs.ucla.edu>
8894
8895 * xfns.c (x_set_tool_bar_lines) [USE_GTK]: Adjust to bitfield change.
8896
8897 2012-06-01 Dmitry Antipov <dmantipov@yandex.ru>
8898
8899 For a 'struct window', replace some Lisp_Object fields to
8900 bitfields where appropriate, remove unused fields.
8901 * window.h (struct window): Remove unused 'last_mark_x' and
8902 'last_mark_y' fields. Rename 'mini_p' field to 'mini',
8903 change its type from Lisp_Object to bitfield.
8904 Change type of 'force_start', 'optional_new_start',
8905 'last_had_star', 'update_mode_line' and 'start_at_line_beg'
8906 fields from Lisp_Object to bitfield. Adjust users accordingly.
8907
8908 2012-05-31 Paul Eggert <eggert@cs.ucla.edu>
8909
8910 Pacify gcc -Wdouble-precision when using Xaw.
8911 * xterm.c (xaw_jump_callback, x_set_toolkit_scroll_bar_thumb)
8912 [HAVE_X_WINDOWS && USE_TOOLKIT_SCROLL_BARS && !USE_MOTIF && !USE_GTK]:
8913 Use 'float' consistently, rather than 'float' in most places
8914 and 'double' in a couple of places.
8915
8916 2012-05-31 Eli Zaretskii <eliz@gnu.org>
8917
8918 * xdisp.c (handle_stop): Detect whether we have overlay strings
8919 loaded by testing it->current.overlay_string_index to be
8920 non-negative, instead of checking whether n_overlay_strings is
8921 positive. (Bug#11587)
8922
8923 2012-05-31 Chong Yidong <cyd@gnu.org>
8924
8925 * keymap.c (describe_map_tree): Revert 2011-07-07 change (Bug#1169).
8926
8927 * doc.c (Fsubstitute_command_keys): Doc fix.
8928
8929 2012-05-31 Eli Zaretskii <eliz@gnu.org>
8930
8931 * search.c (search_buffer): Remove calls to
8932 r_alloc_inhibit_buffer_relocation, as it is now called by
8933 maybe_unify_char, which was the cause of relocation of buffer text
8934 in bug#11519.
8935
8936 2012-05-31 Eli Zaretskii <eliz@gnu.org>
8937
8938 * charset.c (maybe_unify_char): Inhibit relocation of buffer text
8939 for the duration of call to load_charset, to avoid problems with
8940 callers of maybe_unify_char that access buffer text through C
8941 pointers.
8942
8943 * ralloc.c (r_alloc_inhibit_buffer_relocation): Increment and
8944 decrement the inhibition flag, instead of just setting or
8945 resetting it.
8946
8947 2012-05-31 Paul Eggert <eggert@cs.ucla.edu>
8948
8949 Remove obsolete '#define static' cruft.
8950 * s/hpux10-20.h (_FILE_OFFSET_BITS): Don't #undef.
8951 This #undef was "temporary" in 2000; it is no longer needed
8952 now that '#define static' has gone away.
8953 * xfns.c, xterm.h (gray_bitmap_width, gray_bitmap_height)
8954 (gray_bitmap_bits): Remove; no longer needed.
8955 All uses replaced with definiens.
8956 * xterm.c: Include "bitmaps/gray.xbm".
8957
8958 2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
8959
8960 Clean up __executable_start, monstartup when --enable-profiling.
8961 The following changes affect the code only when profiling.
8962 * dispnew.c (__executable_start): Rename from safe_bcopy.
8963 Define only on platforms that need it.
8964 * emacs.c: Include <sys/gmon.h> when profiling.
8965 (_mcleanup): Remove decl, since <sys/gmon.h> does it now.
8966 (__executable_start): Remove decl, since lisp.h does it now.
8967 (safe_bcopy): Remove decl; no longer has that name.
8968 (main): Coalesce #if into single bit of code, for simplicity.
8969 Cast pointers to uintptr_t, since standard libraries want integers
8970 and not pointers.
8971 * lisp.h (__executable_start): New decl.
8972
8973 2012-05-31 Glenn Morris <rgm@gnu.org>
8974
8975 * image.c (Fimagemagick_types): Doc fix.
8976
8977 2012-05-30 Jim Meyering <meyering@redhat.com>
8978
8979 * callproc.c (Fcall_process_region): Include directory component
8980 in mkstemp error message (Bug#11586).
8981
8982 2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
8983
8984 * alloc.c, lisp.h (make_pure_vector): Now static.
8985
8986 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
8987
8988 * eval.c (Fdefun, Fdefmacro, Vmacro_declaration_function):
8989 Move to byte-run.el.
8990 (Fautoload): Do the hash-doc more carefully.
8991 * data.c (Fdefalias): Purify definition, except for keymaps.
8992 (Qdefun): Move from eval.c.
8993 * lisp.h (Qdefun): Remove.
8994 * lread.c (read1): Tiny simplification.
8995
8996 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
8997
8998 Do not create empty overlays with the evaporate property (Bug#9642).
8999 * buffer.c (Fmove_overlay): Reinstate the earlier fix for
9000 Bug#9642, but explicitly check that the buffer the overlay would
9001 be moved to is live and rearrange lines to make sure that errors
9002 will not put the overlay in an inconsistent state.
9003 (Fdelete_overlay): Cosmetics.
9004
9005 2012-05-28 Eli Zaretskii <eliz@gnu.org>
9006
9007 * w32term.c (my_bring_window_to_top): New function.
9008 (x_raise_frame): Use handle returned by DeferWindowPos, which
9009 could be different from the original one.
9010 Call my_bring_window_to_top instead of my_set_foreground_window.
9011 (Bug#11513)
9012
9013 * w32fns.c (w32_wnd_proc): Accept and process WM_EMACS_BRINGTOTOP
9014 by calling BringWindowToTop.
9015
9016 * w32term.h (WM_EMACS_BRINGTOTOP): New message.
9017 (WM_EMACS_END): Increase by one.
9018
9019 2012-05-28 Paul Eggert <eggert@cs.ucla.edu>
9020
9021 * bidi.c (bidi_mirror_char): Put eassert before conversion to int.
9022 This avoids undefined behavior that might cause the eassert
9023 to not catch an out-of-range value.
9024
9025 2012-05-28 Juanma Barranquero <lekktu@gmail.com>
9026
9027 * makefile.w32-in ($(BLD)/w32inevt.$(O), $(BLD)/w32console.$(O)):
9028 Update dependencies.
9029
9030 2012-05-27 Eli Zaretskii <eliz@gnu.org>
9031
9032 * bidi.c (bidi_mirror_char): Fix last change.
9033
9034 2012-05-27 Andreas Schwab <schwab@linux-m68k.org>
9035
9036 * unexmacosx.c (copy_data_segment): Truncate after 16 characters
9037 when referring to sectname field in printf format.
9038
9039 2012-05-27 Paul Eggert <eggert@cs.ucla.edu>
9040
9041 * lisp.h [REL_ALLOC]: Omit duplicate prototypes.
9042 Only r_alloc_inhibit_buffer_relocation needed to be added;
9043 the others were already declared.
9044
9045 * bidi.c (bidi_mirror_char): Don't possibly truncate the integer
9046 before checking whether it's out of range. Put the check inside
9047 eassert. See
9048 <http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00485.html>.
9049
9050 2012-05-27 Ken Brown <kbrown@cornell.edu>
9051
9052 * callproc.c (Fcall_process): Restore a line that was accidentally
9053 commented out in the 2011-02-13 change (bug#11547).
9054
9055 2012-05-27 Eli Zaretskii <eliz@gnu.org>
9056
9057 * lisp.h [REL_ALLOC]: Add prototypes for external functions
9058 defined on ralloc.c.
9059
9060 * buffer.c [REL_ALLOC]: Remove prototypes of
9061 r_alloc_reset_variable, r_alloc, r_re_alloc, and r_alloc_free,
9062 they are now on lisp.h.
9063
9064 * ralloc.c (r_alloc_inhibit_buffer_relocation): New function.
9065
9066 * search.c (search_buffer): Use it to inhibit relocation of buffer
9067 text while re_search_2 is doing its job, because re_search_2 is
9068 passed C pointers to buffer text. (Bug#11519)
9069
9070 * msdos.c (internal_terminal_init) <Vwindow_system_version>:
9071 Update value to 24.
9072
9073 * xdisp.c (move_it_to): Under MOVE_TO_Y, when restoring iterator
9074 state after an additional call to move_it_in_display_line_to, keep
9075 the values of it->max_ascent and it->max_descent found for the
9076 entire line.
9077 (pos_visible_p): Revert the comparison against bottom_y to what it
9078 was in revid eliz@gnu.org-20120513182235-4p6386j761ld0nwb.
9079 (Bug#11464)
9080
9081 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
9082
9083 Fix coding-related core dumps with gcc -ftrapv.
9084 The code was computing A - B, where A and B are pointers, and B is
9085 random garbage. This can lead to core dumps on platforms that
9086 have special pointer registers, and it also leads to core dumps on
9087 x86-64 when compiled with gcc -ftrapv. The fix is to compute
9088 A - B only when B is initialized properly.
9089 * coding.c (coding_set_source, coding_set_destination): Return void.
9090 (coding_change_source, coding_change_destinations): New functions,
9091 with the old behaviors of coding_set_source and coding_set_destination.
9092 All callers that need an offset changed to use these new functions.
9093
9094 2012-05-26 Glenn Morris <rgm@gnu.org>
9095
9096 * nsterm.m (ns_init_paths): Don't mess with INFOPATH. (Bug#2791)
9097
9098 2012-05-26 Eli Zaretskii <eliz@gnu.org>
9099
9100 Extend mouse support on W32 text-mode console.
9101 * xdisp.c (draw_row_with_mouse_face):
9102 Call tty_draw_row_with_mouse_face for WINDOWSNT as well.
9103
9104 * w32console.c: Include window.h.
9105 (w32con_write_glyphs_with_face, tty_draw_row_with_mouse_face):
9106 New functions.
9107 (initialize_w32_display): Initialize mouse-highlight data.
9108
9109 * w32inevt.c: Include termchar.h and window.h.
9110 (do_mouse_event): Support mouse-autoselect-window. When the mouse
9111 moves, call note_mouse_highlight. If help_echo changed, call
9112 gen_help_event to produce help-echo message in the echo area.
9113 Call clear_mouse_face if mouse_face_hidden is set in the mouse
9114 highlight info.
9115
9116 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
9117
9118 * lread.c (read1): Simplify slightly to avoid an overflow warning
9119 with GCC 4.7.0 on x86-64.
9120
9121 2012-05-26 Eli Zaretskii <eliz@gnu.org>
9122
9123 * bidi.c (bidi_mirror_char): Revert last change: an int is
9124 definitely wide enough here.
9125
9126 2012-05-25 Paul Eggert <eggert@cs.ucla.edu>
9127
9128 Fix integer width and related bugs (Bug#9874).
9129 * alloc.c (pure_bytes_used_lisp, pure_bytes_used_non_lisp):
9130 (allocate_vectorlike, buffer_memory_full, struct sdata, SDATA_SIZE)
9131 (string_bytes, check_sblock, allocate_string_data):
9132 (compact_small_strings, Fmake_bool_vector, make_string)
9133 (make_unibyte_string, make_multibyte_string)
9134 (make_string_from_bytes, make_specified_string)
9135 (allocate_vectorlike, Fmake_vector, find_string_data_in_pure)
9136 (make_pure_string, make_pure_c_string, make_pure_vector, Fpurecopy)
9137 (mark_vectorlike):
9138 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9139 (allocate_pseudovector):
9140 Use int, not EMACS_INT, where int is wide enough.
9141 (inhibit_garbage_collection, Fgarbage_collect):
9142 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9143 * bidi.c (bidi_mirror_char): Use EMACS_INT, not int, where
9144 int might not be wide enough.
9145 (bidi_cache_search, bidi_cache_find, bidi_init_it)
9146 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
9147 (bidi_at_paragraph_end, bidi_find_paragraph_start)
9148 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
9149 (bidi_level_of_next_char, bidi_move_to_visually_next):
9150 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9151 * buffer.c (copy_overlays, Fgenerate_new_buffer_name)
9152 (Fkill_buffer, Fset_buffer_major_mode)
9153 (advance_to_char_boundary, Fbuffer_swap_text)
9154 (Fset_buffer_multibyte, overlays_at, overlays_in)
9155 (overlay_touches_p, struct sortvec, record_overlay_string)
9156 (overlay_strings, recenter_overlay_lists)
9157 (adjust_overlays_for_insert, adjust_overlays_for_delete)
9158 (fix_start_end_in_overlays, fix_overlays_before, modify_overlay)
9159 (Fmove_overlay, Fnext_overlay_change, Fprevious_overlay_change)
9160 (Foverlay_recenter, last_overlay_modification_hooks_used)
9161 (report_overlay_modification, evaporate_overlays, enlarge_buffer_text):
9162 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9163 (validate_region): Omit unnecessary test for b <= e,
9164 since that's guaranteed by the previous test.
9165 (adjust_overlays_for_delete): Avoid pos + length overflow.
9166 (Fmove_overlay, Fdelete_overlay, add_overlay_mod_hooklist)
9167 (report_overlay_modification):
9168 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9169 (Foverlays_at, Fnext_overlay_change, Fprevious_overlay_change):
9170 Omit pointer cast, which isn't needed anyway, and doesn't work
9171 after the EMACS_INT -> ptrdiff_t change.
9172 (Fmove_overlay): Clip BEG and END to ptrdiff_t to avoid overflow.
9173 * buffer.h: Adjust decls to match defn changes elsewhere.
9174 (struct buffer_text, struct buffer):
9175 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9176 Use EMACS_INT, not int, where int might not be wide enough.
9177 * bytecode.c (unmark_byte_stack, exec_byte_code): Use ptrdiff_t,
9178 not int, to avoid needless 32-bit limit on 64-bit hosts.
9179 (exec_byte_code): Use tighter memory-full test, one that checks
9180 for alloca overflow. Don't compute the address of the object just
9181 before an array, as that's not portable. Use EMACS_INT, not
9182 ptrdiff_t or int, where ptrdiff_t or int might not be wide enough.
9183 * callint.c (Fcall_interactively):
9184 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9185 * callproc.c (call_process_kill, Fcall_process):
9186 Don't assume pid_t fits into an Emacs fixnum.
9187 (call_process_cleanup, Fcall_process, child_setup):
9188 Don't assume pid_t fits into int.
9189 (call_process_cleanup, Fcall_process, delete_temp_file)
9190 (Fcall_process_region):
9191 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9192 (Fcall_process): Simplify handling of volatile integers.
9193 Use int, not EMACS_INT, where int will do.
9194 * casefiddle.c (casify_object, casify_region, operate_on_word)
9195 (Fupcase_word, Fdowncase_word, Fcapitalize_word):
9196 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9197 (casify_object): Avoid integer overflow when overallocating buffer.
9198 * casetab.c (set_identity, shuffle): Prefer int to unsigned when
9199 either works. Use lint_assume to convince GCC 4.6.1 that it's OK.
9200 * category.c (Fchar_category_set): Don't assume fixnum fits in int.
9201 * category.h (CATEGORYP): Don't assume arg is nonnegative.
9202 * ccl.c (GET_CCL_INT): Remove; no longer needed, since the
9203 integers are now checked earlier. All uses replaced with XINT.
9204 (ccl_driver):
9205 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9206 For CCL_MapSingle, check that content and value are in int range.
9207 (ccl_driver, Fregister_code_conversion_map):
9208 Check that Vcode_version_map_vector is a vector.
9209 (resolve_symbol_ccl_program): Check that vector header is in range.
9210 Always copy the vector, so that we can check its contents reliably
9211 now rather than having to recheck each instruction as it's being
9212 executed. Check that vector words fit in 'int'.
9213 (ccl_get_compiled_code, Fregister_ccl_program)
9214 (Fregister_code_conversion_map): Use ptrdiff_t, not int, for
9215 program indexes, to avoid needless 32-bit limit on 64-bit hosts.
9216 (Fccl_execute, Fccl_execute_on_string): Check that initial reg
9217 contents are in range.
9218 (Fccl_execute_on_string): Check that status is in range.
9219 * ccl.h (struct ccl_program.idx): Now ptrdiff_t, not int.
9220 * character.c (char_resolve_modifier_mask, Fchar_resolve_modifiers):
9221 Accept and return EMACS_INT, not int, because callers can pass values
9222 out of 'int' range.
9223 (c_string_width, strwidth, lisp_string_width, chars_in_text)
9224 (multibyte_chars_in_text, parse_str_as_multibyte)
9225 (str_as_multibyte, count_size_as_multibyte, str_to_multibyte)
9226 (str_as_unibyte, str_to_unibyte, string_count_byte8)
9227 (string_escape_byte8, Fget_byte):
9228 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9229 (Funibyte_string): Use CHECK_RANGED_INTEGER, not CHECK_NATNUM, to
9230 avoid mishandling large integers.
9231 * character.h: Adjust decls to match defn changes elsewhere.
9232 * charset.c (load_charset_map_from_file, find_charsets_in_text)
9233 (Ffind_charset_region):
9234 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9235 (load_charset_map_from_file): Redo idx calculation to avoid overflow.
9236 (load_charset_map_from_vector, Fdefine_charset_internal):
9237 Don't assume fixnum fits in int.
9238 (load_charset_map_from_vector, Fmap_charset_chars):
9239 Remove now-unnecessary CHECK_NATNUMs.
9240 (Fdefine_charset_internal): Check ranges here, more carefully.
9241 Don't rely on undefined behavior with signed left shift overflow.
9242 Don't assume unsigned int fits into fixnum, or that fixnum fits
9243 into unsigned int. Don't require max_code to be a valid fixnum;
9244 that's not true for gb10830 4-byte on a 32-bit host. Allow
9245 invalid_code to be a cons, for the same reason. Require code_offset
9246 to be a character. Avoid int overflow if max_char is close
9247 to INT_MAX.
9248 (CODE_POINT_TO_INDEX): On 32-bit hosts, return int, not unsigned;
9249 this is intended anyway and avoids some undefined behavior.
9250 (load_charset_map): Pass unsigned, not int, as 2nd arg of
9251 INDEX_TO_CODE_POINT, as that's what it expects.
9252 (Funify_charset, encode_char): Don't stuff unsigned vals into int vars.
9253 * charset.h (DECODE_CHAR): Return int, not unsigned;
9254 this is what was intended anyway, and it avoids undefined behavior.
9255 (CHARSET_OFFSET): Remove unused macro, instead of fixing its
9256 integer-overflow issues.
9257 (ENCODE_CHAR): Return unsigned on all hosts, not just on 32-bit hosts.
9258 Formerly, it returned EMACS_INT on 64-bit hosts in the common case
9259 where the argument is EMACS_INT, and this behavior is not intended.
9260 * chartab.c (Fmake_char_table, Fset_char_table_range)
9261 (uniprop_get_decoder, uniprop_get_encoder):
9262 Don't assume fixnum fits in int.
9263 * cmds.c (move_point): New function, that does the gist of
9264 Fforward_char and Fbackward_char, but does so while checking
9265 for integer overflow more accurately.
9266 (Fforward_char, Fbackward_char): Use it.
9267 (Fforward_line, Fend_of_line, internal_self_insert)
9268 (internal_self_insert):
9269 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9270 Fix a FIXME, by checking for integer overflow when calculating
9271 target_clm and actual_clm.
9272 * coding.c (detect_coding_XXX, encode_coding_XXX, CODING_DECODE_CHAR)
9273 (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET, CODING_CHAR_CHARSET_P)
9274 (ASSURE_DESTINATION, coding_alloc_by_realloc)
9275 (coding_alloc_by_making_gap, alloc_destination)
9276 (detect_coding_utf_8, encode_coding_utf_8, decode_coding_utf_16)
9277 (encode_coding_utf_16, detect_coding_emacs_mule)
9278 (decode_coding_emacs_mule, encode_coding_emacs_mule)
9279 (detect_coding_iso_2022, decode_coding_iso_2022)
9280 (encode_invocation_designation, encode_designation_at_bol)
9281 (encode_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
9282 (decode_coding_sjis, decode_coding_big5, encode_coding_sjis)
9283 (encode_coding_big5, detect_coding_ccl, decode_coding_ccl)
9284 (encode_coding_ccl, encode_coding_raw_text)
9285 (detect_coding_charset, decode_coding_charset)
9286 (encode_coding_charset, detect_eol, decode_eol, produce_chars)
9287 (produce_composition, produce_charset, produce_annotation)
9288 (decode_coding, handle_composition_annotation)
9289 (handle_charset_annotation, consume_chars, decode_coding_gap)
9290 (decode_coding_object, encode_coding_object, detect_coding_system)
9291 (Ffind_coding_systems_region_internal, Fcheck_coding_systems_region)
9292 (code_convert_region, code_convert_string)
9293 (Fdefine_coding_system_internal)
9294 (coding_set_source, coding_set_destination):
9295 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9296 (setup_iso_safe_charsets, consume_chars, Funencodable_char_position)
9297 (Fdefine_coding_system_internal):
9298 Don't assume fixnums fit in int.
9299 (decode_coding_gap, decode_coding_object, encode_coding_object)
9300 (Fread_coding_system, Fdetect_coding_region)
9301 (Funencodable_char_position, Fcheck_coding_systems_region)
9302 (get_translation, handle_composition_annotation, consume_chars):
9303 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9304 (consume_chars): Rewrite to not calculate an address outside buffer.
9305 (Ffind_operation_coding_system): NATNUMP can eval its arg twice.
9306 Don't access memory outside of the args array.
9307 (Fdefine_coding_system_internal): Check for charset-id overflow.
9308 (ENCODE_ISO_CHARACTER): Use unsigned, not int, to store the unsigned
9309 result of ENCODE_CHAR.
9310 * coding.h: Adjust decls to match defn changes elsewhere.
9311 (struct coding_system):
9312 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9313 * composite.c (get_composition_id, find_composition)
9314 (run_composition_function, update_compositions)
9315 (compose_text, composition_gstring_put_cache)
9316 (composition_gstring_p, composition_gstring_width)
9317 (fill_gstring_header, fill_gstring_body, autocmp_chars)
9318 (composition_compute_stop_pos, composition_reseat_it)
9319 (composition_update_it, struct position_record)
9320 (find_automatic_composition, composition_adjust_point)
9321 (Fcomposition_get_gstring, Ffind_composition_internal):
9322 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9323 (update_compositions):
9324 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9325 * composite.h: Adjust decls to match defn changes elsewhere.
9326 (struct composition):
9327 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9328 * data.c (let_shadows_buffer_binding_p, let_shadows_global_binding_p):
9329 Do not attempt to compute the address of the object just before a
9330 buffer; this is not portable.
9331 (Faref, Faset):
9332 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9333 (Faset): Use int, not EMACS_INT, where int is wide enough.
9334 (Fstring_to_number): Don't assume fixnums fit in int.
9335 (Frem): Don't assume arg is nonnegative.
9336 * dbusbind.c (xd_append_arg): Check for integers out of range.
9337 (Fdbus_call_method): Don't overflow the timeout int.
9338 (extract_signed, extract_unsigned): New functions.
9339 (XD_CHECK_DBUS_SERIAL): Remove; superseded by extract_unsigned.
9340 (xd_get_connection_references): Return ptrdiff_t, not int.
9341 All uses changed.
9342 (xd_signature, xd_append_arg, xd_retrieve_arg, Fdbus_message_internal)
9343 (xd_read_message_1):
9344 Use int, not unsigned, where the dbus API uses int.
9345 (Fdbus_message_internal): Don't overflow mtype.
9346 (syms_of_dbusbind): Allocate right-sized buffer for integers.
9347 * dired.c (directory_files_internal, file_name_completion, scmp)
9348 (file_name_completion_stat):
9349 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9350 (file_name_completion): Don't overflow matchcount.
9351 (file_name_completion_stat): Use SAFE_ALLOCA, not alloca.
9352 * dispextern.h: Adjust decls to match defn changes elsewhere.
9353 (struct text_pos, struct glyph, struct bidi_saved_info)
9354 (struct bidi_string_data, struct bidi_it, struct composition_it)
9355 (struct it):
9356 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9357 (struct display_pos, struct composition_it, struct it):
9358 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9359 * dispnew.c (increment_matrix_positions)
9360 (increment_row_positions, mode_line_string)
9361 (marginal_area_string):
9362 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9363 (change_frame_size_1, Fredisplay, Fframe_or_buffer_changed_p):
9364 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9365 (duration_to_sec_usec): New function, to check for overflow better.
9366 (Fsleep_for, sit_for): Use it.
9367 * doc.c (get_doc_string, store_function_docstring):
9368 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9369 (get_doc_string, Fsnarf_documentation):
9370 Use int, not EMACS_INT, where int is wide enough.
9371 (get_doc_string):
9372 Use SAFE_ALLOCA, not alloca.
9373 Check for overflow when converting EMACS_INT to off_t.
9374 * doprnt.c (doprnt):
9375 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9376 * editfns.c (init_editfns, Fuser_uid, Fuser_real_uid):
9377 Don't assume uid_t fits into fixnum.
9378 (buildmark, Fgoto_char, overlays_around, find_field, Fdelete_field)
9379 (Ffield_string, Ffield_string_no_properties, Ffield_beginning)
9380 (Ffield_end, Fconstrain_to_field, Fline_beginning_position)
9381 (Fline_end_position, Fprevious_char, Fchar_after, Fchar_before)
9382 (general_insert_function)
9383 (Finsert_char, make_buffer_string, make_buffer_string_both)
9384 (update_buffer_properties, Fbuffer_substring)
9385 (Fbuffer_substring_no_properties, Fcompare_buffer_substrings)
9386 (Fsubst_char_in_region, check_translation)
9387 (Ftranslate_region_internal, save_restriction_restore, Fformat)
9388 (transpose_markers, Ftranspose_regions):
9389 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9390 (clip_to_bounds): Move to lisp.h as an inline function).
9391 (Fconstrain_to_field): Don't assume integers are nonnegative.
9392 (Fline_beginning_position, Fsave_excursion, Fsave_current_buffer):
9393 (Fsubst_char_in_region, Fsave_restriction):
9394 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9395 (Femacs_pid): Don't assume pid_t fits into fixnum.
9396 (lo_time): Use int, not EMACS_INT, when int suffices.
9397 (lisp_time_argument): Check for usec out of range.
9398 (Fencode_time): Don't assume fixnum fits in int.
9399 (Fuser_login_name, Fuser_full_name): Signal an error
9400 if a uid argument is out of range, rather than relying on
9401 undefined behavior.
9402 (Fformat_time_string): Remove now-unnecessary check.
9403 lisp_time_argument checks for out-of-range usec now.
9404 Use ptrdiff_t, not size_t, where ptrdiff_t will do.
9405 * emacs.c (gdb_valbits, gdb_gctypebits): Now int, not EMACS_INT.
9406 (gdb_data_seg_bits): Now uintptr_t, not EMACS_INT.
9407 (PVEC_FLAG, gdb_array_mark_flag): Now ptrdiff_t, not EMACS_INT.
9408 (init_cmdargs, Fdump_emacs):
9409 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9410 (Fkill_emacs): Don't assume fixnum fits in int; instead, take just
9411 the bottom (typically) 32 bits of the fixnum.
9412 * eval.c (specpdl_size, call_debugger):
9413 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9414 (when_entered_debugger, Fbacktrace_debug):
9415 Don't assume fixnum can fit in int.
9416 (Fdefvaralias, Fdefvar): Do not attempt to compute the address of
9417 the object just before a buffer; this is not portable.
9418 (FletX, Flet, Funwind_protect, do_autoload, Feval, funcall_lambda)
9419 (grow_specpdl, unbind_to):
9420 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9421 (Fapply, apply_lambda): Don't assume ptrdiff_t can hold fixnum.
9422 (grow_specpdl): Simplify allocation by using xpalloc.
9423 (Fprog1, Fprog2): Don't assume list length fits in int. Simplify.
9424 * fileio.c (Ffind_file_name_handler, Fcopy_file, Frename_file)
9425 (Finsert_file_contents, Fwrite_region, Fdo_auto_save):
9426 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9427 (Ffind_file_name_handler, non_regular_inserted, Finsert_file_contents)
9428 (a_write, e_write):
9429 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9430 (Fcopy_file, non_regular_nbytes, read_non_regular)
9431 (Finsert_file_contents):
9432 Use int, not EMACS_INT, where int is wide enough.
9433 (READ_BUF_SIZE): Verify that it fits in int.
9434 (Finsert_file_contents): Check that counts are in proper range,
9435 rather than assuming fixnums fit into ptrdiff_t etc.
9436 Don't assume fixnums fit into int.
9437 * floatfns.c (Fexpt): Avoid undefined signed * signed overflow.
9438 * fns.c (Fcompare_strings, Fstring_lessp, struct textprop_rec, concat)
9439 (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
9440 (string_char_to_byte, string_byte_to_char)
9441 (string_make_multibyte, string_to_multibyte)
9442 (string_make_unibyte, Fstring_as_unibyte, Fstring_as_multibyte)
9443 (Fstring_to_unibyte, Fsubstring, Fsubstring_no_properties)
9444 (substring_both, Fdelete, internal_equal, Ffillarray)
9445 (Fclear_string, mapcar1)
9446 (Fbase64_encode_region, Fbase64_encode_string, base64_encode_1)
9447 (Fbase64_decode_region, Fbase64_decode_string, base64_decode_1)
9448 (larger_vector, make_hash_table, maybe_resize_hash_table)
9449 (hash_lookup, hash_remove_from_table, hash_clear, sweep_weak_table)
9450 (Fmaphash, secure_hash):
9451 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9452 (concat): Check for string index and length overflow.
9453 (Fmapconcat): Don't assume fixnums fit into ptrdiff_t.
9454 (Frequire):
9455 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9456 (larger_vector): New API (vec, incr_min, size_max) replaces old
9457 one (vec, new_size, init). This catches size overflow.
9458 INIT was removed because it was always Qnil.
9459 All callers changed.
9460 (INDEX_SIZE_BOUND): New macro, which calculates more precisely
9461 the upper bound on a hash table index size.
9462 (make_hash_table, maybe_resize_hash_table): Use it.
9463 (secure_hash): Computer start_byte and end_byte only after
9464 they're known to be in ptrdiff_t range.
9465 * font.c (font_intern_prop, font_at, font_range, Ffont_shape_gstring)
9466 (Ffont_get_glyphs, Ffont_at):
9467 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9468 (font_style_to_value, font_prop_validate_style, font_expand_wildcards)
9469 (Flist_fonts, Fopen_font):
9470 Don't assume fixnum can fit in int.
9471 (check_gstring): Don't assume index can fit in int.
9472 (font_match_p): Check that fixnum is a character, not a nonnegative
9473 fixnum, since the later code needs to stuff it into an int.
9474 (font_find_for_lface): Use SAFE_ALLOCA_LISP, not alloca.
9475 (font_fill_lglyph_metrics): Use unsigned, not EMACS_INT, to avoid
9476 conversion overflow issues.
9477 (Fopen_font): Check for integer out of range.
9478 (Ffont_get_glyphs): Don't assume index can fit in int.
9479 * font.h: Adjust decls to match defn changes elsewhere.
9480 * fontset.c (reorder_font_vector): Redo score calculation to avoid
9481 integer overflow.
9482 (num_auto_fontsets, fontset_from_font): Use ptrdiff_t, not
9483 printmax_t, where ptrdiff_t is wide enough.
9484 (Finternal_char_font):
9485 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9486 * frame.c (Fset_mouse_position, Fset_mouse_pixel_position)
9487 (Fset_frame_height, Fset_frame_width, Fset_frame_size)
9488 (Fset_frame_position, x_set_frame_parameters)
9489 (x_set_line_spacing, x_set_border_width)
9490 (x_set_internal_border_width, x_set_alpha, x_figure_window_size):
9491 Check that fixnums are in proper range for system types.
9492 (frame_name_fnn_p, Fframe_parameter, Fmodify_frame_parameters):
9493 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9494 (Fmodify_frame_parameters): Don't assume fixnum fits in int.
9495 Use SAFE_ALLOCA_LISP, not alloca.
9496 * frame.h (struct frame): Use intptr_t, not EMACS_INT, where
9497 intptr_t is wide enough.
9498 * fringe.c (lookup_fringe_bitmap, get_logical_fringe_bitmap)
9499 (Fdefine_fringe_bitmap): Don't assume fixnum fits in int.
9500 (Ffringe_bitmaps_at_pos): Don't assume index fits in int.
9501 Check for fixnum out of range.
9502 * ftfont.c (ftfont_list): Don't assume index fits in int.
9503 Check that fixnums are in proper range for system types.
9504 (ftfont_shape_by_flt):
9505 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9506 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
9507 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9508 (Fgnutls_error_fatalp, Fgnutls_error_string, Fgnutls_boot):
9509 Check that fixnums are in proper range for system types.
9510 * gnutls.h: Adjust decls to match defn changes elsewhere.
9511 * gtkutil.c (xg_dialog_run):
9512 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9513 (update_frame_tool_bar):
9514 Check that fixnums are in proper range for system types.
9515 * image.c (parse_image_spec): Redo count calculation to avoid overflow.
9516 (lookup_image): Check that fixnums are in range for system types.
9517 * indent.c (last_known_column, last_known_column_point):
9518 (current_column_bol_cache):
9519 (skip_invisible, current_column, check_display_width):
9520 (check_display_width, scan_for_column, current_column_1)
9521 (Findent_to, Fcurrent_indentation, position_indentation)
9522 (indented_beyond_p, Fmove_to_column, compute_motion):
9523 (Fcompute_motion, Fvertical_motion):
9524 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9525 (last_known_column_modified): Use EMACS_INT, not int.
9526 (check_display_width):
9527 (Fcompute_motion):
9528 Check that fixnums and floats are in proper range for system types.
9529 (compute_motion): Don't assume index or fixnum fits in int.
9530 (compute_motion, Fcompute_motion):
9531 Use int, not EMACS_INT, when it is wide enough.
9532 (vmotion): Omit local var start_hpos that is always 0; that way
9533 we don't need to worry about overflow in expressions involving it.
9534 * indent.h: Adjust decls to match defn changes elsewhere.
9535 (struct position):
9536 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9537 Use int, not EMACS_INT, where int is wide enough.
9538 Remove unused members ovstring_chars_done and tab_offset;
9539 all uses removed.
9540 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
9541 (adjust_markers_for_delete, adjust_markers_for_insert, adjust_point)
9542 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
9543 (make_gap, copy_text, insert, insert_and_inherit)
9544 (insert_before_markers, insert_before_markers_and_inherit)
9545 (insert_1, count_combining_before, count_combining_after)
9546 (insert_1_both, insert_from_string)
9547 (insert_from_string_before_markers, insert_from_string_1)
9548 (insert_from_gap, insert_from_buffer, insert_from_buffer_1)
9549 (adjust_after_replace, adjust_after_insert, replace_range)
9550 (replace_range_2, del_range, del_range_1, del_range_byte)
9551 (del_range_both, del_range_2, modify_region)
9552 (prepare_to_modify_buffer, signal_before_change)
9553 (signal_after_change, Fcombine_after_change_execute):
9554 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9555 * intervals.c (traverse_intervals, rotate_right, rotate_left)
9556 (balance_an_interval, split_interval_right, split_interval_left)
9557 (find_interval, next_interval, update_interval)
9558 (adjust_intervals_for_insertion, delete_node, delete_interval)
9559 (interval_deletion_adjustment, adjust_intervals_for_deletion)
9560 (static_offset_intervals, offset_intervals)
9561 (merge_interval_right, merge_interval_left, make_new_interval)
9562 (graft_intervals_into_buffer, temp_set_point_both)
9563 (temp_set_point, set_point, adjust_for_invis_intang)
9564 (set_point_both, move_if_not_intangible, get_property_and_range)
9565 (get_local_map, copy_intervals, copy_intervals_to_string)
9566 (compare_string_intervals, set_intervals_multibyte_1):
9567 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9568 * intervals.h: Adjust decls to match defn changes elsewhere.
9569 (struct interval):
9570 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9571 * keyboard.c (this_command_key_count, this_single_command_key_start)
9572 (before_command_key_count, before_command_echo_length, echo_now)
9573 (echo_length, recursive_edit_1, Frecursive_edit, Ftrack_mouse)
9574 (command_loop_1, safe_run_hooks, read_char, timer_check_2)
9575 (menu_item_eval_property, read_key_sequence, Fread_key_sequence)
9576 (Fread_key_sequence_vector, Fexecute_extended_command, Fsuspend_emacs):
9577 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9578 (last_non_minibuf_size, last_point_position, echo_truncate)
9579 (command_loop_1, adjust_point_for_property, read_char, gen_help_event)
9580 (make_lispy_position, make_lispy_event, parse_modifiers_uncached)
9581 (parse_modifiers, modify_event_symbol, Fexecute_extended_command)
9582 (stuff_buffered_input):
9583 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9584 (last_auto_save, command_loop_1, read_char):
9585 Use EMACS_INT, not int, to avoid integer overflow.
9586 (record_char): Avoid overflow in total_keys computation.
9587 (parse_modifiers_uncached): Redo index calculation to avoid overflow.
9588 * keyboard.h: Adjust decls to match defn changes elsewhere.
9589 * keymap.c (Fdefine_key, Fcurrent_active_maps, accessible_keymaps_1)
9590 (Fkey_description, Fdescribe_vector, Flookup_key):
9591 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9592 (click_position): New function, to check that positions are in range.
9593 (Fcurrent_active_maps):
9594 (describe_command):
9595 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9596 (Faccessible_keymaps, Fkey_description):
9597 (preferred_sequence_p):
9598 Don't assume fixnum can fit into int.
9599 (Fkey_description): Use SAFE_ALLOCA_LISP, not alloca.
9600 Check for integer overflow in size calculations.
9601 (Ftext_char_description): Use CHECK_CHARACTER, not CHECK_NUMBER, to
9602 avoid mishandling large integers.
9603 * lisp.h: Adjust decls to match defn changes elsewhere.
9604 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, struct Lisp_String)
9605 (struct vectorlike_header, struct Lisp_Subr, struct Lisp_Hash_Table)
9606 (struct Lisp_Marker):
9607 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9608 (clip_to_bounds): Now an inline function, moved here from editfns.c.
9609 (GLYPH_CODE_P): Check for overflow in system types, subsuming the
9610 need for GLYPH_CODE_CHAR_VALID_P and doing proper checking ourselves.
9611 All callers changed.
9612 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE):
9613 Assume the arg has valid form, since it always does.
9614 (TYPE_RANGED_INTEGERP): Avoid bug when checking against a wide
9615 unsigned integer system type.
9616 (CHECK_RANGED_INTEGER, CHECK_TYPE_RANGED_INTEGER): New macros.
9617 (struct catchtag, specpdl_size, SPECPDL_INDEX, USE_SAFE_ALLOCA):
9618 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9619 (struct catchtag): Use EMACS_INT, not int, since it may be a fixnum.
9620 (duration_to_sec_usec): New decl.
9621 * lread.c (read_from_string_index, read_from_string_index_byte)
9622 (read_from_string_limit, readchar, unreadchar, openp)
9623 (read_internal_start, read1, oblookup):
9624 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9625 (Fload, readevalloop, Feval_buffer, Feval_region):
9626 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9627 (openp): Check for out-of-range argument to 'access'.
9628 (read1): Use int, not EMACS_INT, where int is wide enough.
9629 Don't assume fixnum fits into int.
9630 Fix off-by-one error that can read outside a buffer.
9631 (read_filtered_event): Use duration_to_sec_usec
9632 to do proper overflow checking on durations.
9633 * macros.c (Fstart_kbd_macro): Use xpalloc to check for overflow
9634 in size calculation.
9635 (Fexecute_kbd_macro):
9636 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9637 * marker.c (cached_charpos, cached_bytepos, CONSIDER)
9638 (byte_char_debug_check, buf_charpos_to_bytepos, verify_bytepos)
9639 (buf_bytepos_to_charpos, Fset_marker, set_marker_restricted)
9640 (set_marker_both, set_marker_restricted_both, marker_position)
9641 (marker_byte_position, Fbuffer_has_markers_at):
9642 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9643 (Fset_marker, set_marker_restricted): Don't assume fixnum fits in int.
9644 * menu.c (ensure_menu_items): Rename from grow_menu_items.
9645 It now merely ensures that the menu is large enough, without
9646 necessarily growing it, as this avoids some integer overflow issues.
9647 All callers changed.
9648 (keymap_panes, parse_single_submenu, Fx_popup_menu):
9649 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9650 (parse_single_submenu, Fx_popup_menu): Don't assume fixnum fits in int.
9651 Use SAFE_ALLOCA_LISP, not alloca.
9652 (find_and_return_menu_selection): Avoid unnecessary casts of pointers
9653 to EMACS_INT. Check that fixnums are in proper range for system types.
9654 * minibuf.c (minibuf_prompt_width, string_to_object)
9655 (Fminibuffer_contents, Fminibuffer_contents_no_properties)
9656 (Fminibuffer_completion_contents, Ftry_completion, Fall_completions):
9657 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9658 (get_minibuffer, read_minibuf_unwind):
9659 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9660 (read_minibuf): Omit unnecessary arg BACKUP_N, which is always nil;
9661 this simplifies overflow checking. All callers changed.
9662 (read_minibuf, Fread_buffer, Ftry_completion, Fall_completions)
9663 (Ftest_completion):
9664 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9665 * nsfns.m (check_ns_display_info): Don't assume fixnum fits in long.
9666 (x_set_menu_bar_lines, x_set_tool_bar_lines, Fx_create_frame):
9667 Check that fixnums are in proper range for system types.
9668 (Fx_create_frame, Fx_show_tip):
9669 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9670 * nsfont.m (ns_findfonts, nsfont_list_family):
9671 Don't assume fixnum fits in long.
9672 * nsmenu.m (ns_update_menubar, ns_menu_show, ns_popup_dialog):
9673 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9674 (ns_update_menubar): Use intptr_t, not EMACS_INT, when intptr_t is
9675 wide enough.
9676 * nsselect.m (ns_get_local_selection, clean_local_selection_data):
9677 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9678 * print.c (print_buffer_size, print_buffer_pos, print_buffer_pos_byte)
9679 (PRINTDECLARE, PRINTPREPARE):
9680 (strout, print_string):
9681 (print, print_preprocess, print_check_string_charset_prop)
9682 (print_object):
9683 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9684 (PRINTDECLARE):
9685 (temp_output_buffer_setup, Fprin1_to_string, print_object):
9686 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9687 (PRINTPREPARE): Use int, not ptrdiff_t, where int is wide enough.
9688 (printchar, strout): Use xpalloc to catch size calculation overflow.
9689 (Fexternal_debugging_output): Don't overflow EMACS_INT->int conversion.
9690 (print_error_message): Use SAFE_ALLOCA, not alloca.
9691 (print_object): Use int, not EMACS_INT, where int is wide enough.
9692 (print_depth, new_backquote_output, print_number_index):
9693 Use ptrdiff_t, not int, where int might not be wide enough.
9694 * process.c (Fdelete_process): Don't assume pid fits into EMACS_INT.
9695 (Fset_process_window_size, Fformat_network_address)
9696 (get_lisp_to_sockaddr_size, set_socket_option, Fmake_network_process)
9697 (sigchld_handler):
9698 Check that fixnums are in proper range for system types.
9699 (Fsignal_process): Simplify by avoiding a goto.
9700 Check for process-ids out of pid_t range rather than relying on
9701 undefined behavior.
9702 (process_tick, update_tick): Use EMACS_INT, not int.
9703 (Fformat_network_address, read_process_output, send_process)
9704 (Fprocess_send_region, status_notify):
9705 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9706 (Fformat_network_address, Fmake_serial_process, Fmake_network_process)
9707 (wait_reading_process_output, read_process_output, exec_sentinel):
9708 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9709 (conv_lisp_to_sockaddr): Don't assume fixnums fit into int.
9710 (Faccept_process_output): Use duration_to_sec_usec to do proper
9711 overflow checking on durations.
9712 (emacs_get_tty_pgrp, Fprocess_running_child_p, process_send_signal):
9713 Don't assume pid_t fits in int.
9714 * process.h (struct Lisp_Process): Members tick and update_tick
9715 are now of type EMACS_INT, not int.
9716 * puresize.h (PURESIZE_RATIO): Shrink this to 8/6 on 32-bit hosts
9717 configured --with-wide-int.
9718 * scroll.c (calculate_scrolling, calculate_direct_scrolling)
9719 (line_ins_del): Use int, not EMACS_INT, where int is wide enough.
9720 * search.c (looking_at_1, string_match_1):
9721 (fast_string_match, fast_c_string_match_ignore_case)
9722 (fast_string_match_ignore_case, fast_looking_at, scan_buffer)
9723 (scan_newline, find_before_next_newline, search_command)
9724 (trivial_regexp_p, search_buffer, simple_search, boyer_moore)
9725 (set_search_regs, wordify):
9726 (Freplace_match):
9727 (Fmatch_data):
9728 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9729 (string_match_1, search_buffer, set_search_regs):
9730 (Fmatch_data):
9731 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9732 (wordify): Check for overflow in size calculation.
9733 (Freplace_match): Avoid potential buffer overflow in search_regs.start.
9734 (Fset_match_data): Don't assume fixnum fits in ptrdiff_t.
9735 Check that fixnums are in proper range for system types.
9736 * sound.c (struct sound_device)
9737 (wav_play, au_play, vox_write, alsa_period_size, alsa_write):
9738 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9739 (Fplay_sound_internal):
9740 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9741 * syntax.c (struct lisp_parse_state, find_start_modiff)
9742 (Finternal_describe_syntax_value, scan_lists, scan_sexps_forward):
9743 (Fparse_partial_sexp):
9744 Don't assume fixnums can fit in int.
9745 (struct lisp_parse_state, find_start_pos, find_start_value)
9746 (find_start_value_byte, find_start_begv)
9747 (update_syntax_table, char_quoted, dec_bytepos)
9748 (find_defun_start, prev_char_comend_first, back_comment):
9749 (scan_words, skip_chars, skip_syntaxes, forw_comment, Fforward_comment)
9750 (scan_lists, Fbackward_prefix_chars, scan_sexps_forward):
9751 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9752 (Finternal_describe_syntax_value): Check that match_lisp is a
9753 character, not an integer, since the code stuffs it into int.
9754 (scan_words, scan_sexps_forward):
9755 Check that fixnums are in proper range for system types.
9756 (Fforward_word):
9757 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9758 (scan_sexps_forward):
9759 Use CHARACTERP, not INTEGERP, since the value must fit into int.
9760 (Fparse_partial_sexp): Fix doc; element 8 is not ignored.
9761 * syntax.h: Adjust decls to match defn changes elsewhere.
9762 (struct gl_state_s):
9763 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9764 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Use PTRDIFF_MAX, not
9765 MOST_POSITIVE_FIXNUM.
9766 * sysdep.c (wait_for_termination_1, wait_for_termination)
9767 (interruptible_wait_for_termination, mkdir):
9768 Don't assume pid_t fits in int; on 64-bit AIX pid_t is 64-bit.
9769 (emacs_read, emacs_write):
9770 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9771 (system_process_attributes): Don't assume uid_t, gid_t, EMACS_INT,
9772 and double all fit in int.
9773 * term.c (set_tty_color_mode):
9774 Check that fixnums are in proper range for system types.
9775 * termhooks.h (struct input_event):
9776 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9777 * textprop.c (validate_interval_range, interval_of)
9778 (Fadd_text_properties, set_text_properties_1)
9779 (Fremove_text_properties, Fremove_list_of_text_properties)
9780 (Ftext_property_any, Ftext_property_not_all)
9781 (copy_text_properties, text_property_list, extend_property_ranges)
9782 (verify_interval_modification):
9783 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9784 (Fnext_single_char_property_change)
9785 (Fprevious_single_char_property_change):
9786 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9787 (copy_text_properties):
9788 Check for integer overflow in index calculation.
9789 * undo.c (last_boundary_position, record_point, record_insert)
9790 (record_delete, record_marker_adjustment, record_change)
9791 (record_property_change):
9792 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9793 (truncate_undo_list, Fprimitive_undo): Don't assume fixnum fits in int.
9794 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9795 * w32fns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
9796 (Fx_hide_tip, Fx_file_dialog):
9797 * w32menu.c (set_frame_menubar):
9798 Use ptrdiff_t, not int, for consistency with rest of code.
9799 * window.c (window_scroll_preserve_hpos, window_scroll_preserve_vpos)
9800 (select_window, Fdelete_other_windows_internal)
9801 (window_scroll_pixel_based, window_scroll_line_based)
9802 (Frecenter, Fset_window_configuration):
9803 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9804 (Fset_window_hscroll, run_window_configuration_change_hook)
9805 (set_window_buffer, temp_output_buffer_show, scroll_command)
9806 (Fscroll_other_window, Frecenter):
9807 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9808 (Fwindow_line_height, window_scroll, Fscroll_left, Fscroll_right):
9809 Don't assume fixnum fits in int.
9810 (Fset_window_scroll_bars):
9811 Check that fixnums are in proper range for system types.
9812 * xdisp.c (help_echo_pos, pos_visible_p, string_pos_nchars_ahead)
9813 (string_pos, c_string_pos, number_of_chars, init_iterator)
9814 (in_ellipses_for_invisible_text_p, init_from_display_pos)
9815 (compute_stop_pos, next_overlay_change, compute_display_string_pos)
9816 (compute_display_string_end, handle_face_prop)
9817 (face_before_or_after_it_pos, handle_invisible_prop)
9818 (handle_display_prop, handle_display_spec, handle_single_display_spec)
9819 (display_prop_intangible_p, string_buffer_position_lim)
9820 (string_buffer_position, handle_composition_prop, load_overlay_strings)
9821 (get_overlay_strings_1, get_overlay_strings)
9822 (iterate_out_of_display_property, forward_to_next_line_start)
9823 (back_to_previous_visible_line_start, reseat, reseat_to_string)
9824 (get_next_display_element, set_iterator_to_next)
9825 (get_visually_first_element, compute_stop_pos_backwards)
9826 (handle_stop_backwards, next_element_from_buffer)
9827 (move_it_in_display_line_to, move_it_in_display_line)
9828 (move_it_to, move_it_vertically_backward, move_it_by_lines)
9829 (add_to_log, message_dolog, message_log_check_duplicate)
9830 (message2, message2_nolog, message3, message3_nolog
9831 (with_echo_area_buffer, display_echo_area_1, resize_mini_window_1)
9832 (current_message_1, truncate_echo_area, truncate_message_1)
9833 (set_message, set_message_1, store_mode_line_noprop)
9834 (hscroll_window_tree, debug_delta, debug_delta_bytes, debug_end_vpos)
9835 (text_outside_line_unchanged_p, check_point_in_composition)
9836 (reconsider_clip_changes)
9837 (redisplay_internal, set_cursor_from_row, try_scrolling)
9838 (try_cursor_movement, set_vertical_scroll_bar, redisplay_window)
9839 (redisplay_window, find_last_unchanged_at_beg_row)
9840 (find_first_unchanged_at_end_row, row_containing_pos, try_window_id)
9841 (trailing_whitespace_p, find_row_edges, display_line)
9842 (RECORD_MAX_MIN_POS, Fcurrent_bidi_paragraph_direction)
9843 (display_mode_element, store_mode_line_string)
9844 (pint2str, pint2hrstr, decode_mode_spec)
9845 (display_count_lines, display_string, draw_glyphs)
9846 (x_produce_glyphs, x_insert_glyphs)
9847 (rows_from_pos_range, mouse_face_from_buffer_pos)
9848 (fast_find_string_pos, mouse_face_from_string_pos)
9849 (note_mode_line_or_margin_highlight, note_mouse_highlight):
9850 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9851 (safe_call, init_from_display_pos, handle_fontified_prop)
9852 (handle_single_display_spec, load_overlay_strings)
9853 (with_echo_area_buffer, setup_echo_area_for_printing)
9854 (display_echo_area, echo_area_display)
9855 (x_consider_frame_title, prepare_menu_bars, update_menu_bar)
9856 (update_tool_bar, hscroll_window_tree, redisplay_internal)
9857 (redisplay_window, dump_glyph_row, display_mode_line)
9858 (Fformat_mode_line, decode_mode_spec, on_hot_spot_p):
9859 (handle_display_spec, display_prop_string_p):
9860 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9861 (handle_single_display_spec, build_desired_tool_bar_string)
9862 (redisplay_tool_bar, scroll_window_tree, Fdump_glyph_matrix)
9863 (get_specified_cursor_type):
9864 Check that fixnums are in proper range for system types.
9865 (struct overlay_entry, resize_mini_window, Fdump_glyph_row)
9866 (Flookup_image_map):
9867 Don't assume fixnums fit in int.
9868 (compare_overlay_entries):
9869 Avoid mishandling comparisons due to subtraction overflow.
9870 (load_overlay_strings): Use SAFE_NALLOCA, not alloca.
9871 (last_escape_glyph_face_id, last_glyphless_glyph_face_id):
9872 (handle_tool_bar_click):
9873 Use int, not unsigned, since we prefer signed and the signedness
9874 doesn't matter here.
9875 (get_next_display_element, next_element_from_display_vector):
9876 Use int, not EMACS_INT, when int is wide enough.
9877 (start_hourglass): Use duration_to_sec_usec to do proper
9878 overflow checking on durations.
9879 * xfaces.c (Fbitmap_spec_p):
9880 Check that fixnums are in proper range for system types.
9881 (compare_fonts_by_sort_order):
9882 Avoid mishandling comparisons due to subtraction overflow.
9883 (Fx_family_fonts, realize_basic_faces):
9884 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9885 (Fx_family_fonts):
9886 Don't assume fixnum fits in int.
9887 Use SAFE_ALLOCA_LISP, not alloca.
9888 (merge_face_heights): Remove unnecessary cast to EMACS_INT.
9889 (Finternal_make_lisp_face): Don't allocate more than MAX_FACE_ID.
9890 (face_at_buffer_position, face_for_overlay_string)
9891 (face_at_string_position):
9892 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9893 (merge_faces): Use int, not EMACS_INT, where int is wide enough.
9894 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines, x_icon_verify)
9895 (Fx_show_tip):
9896 Check that fixnums are in proper range for system types.
9897 (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
9898 (Fx_hide_tip, Fx_file_dialog, Fx_select_font):
9899 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9900 (Fx_change_window_property): Don't assume fixnums fit in int.
9901 * xfont.c (xfont_chars_supported):
9902 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9903 * xmenu.c (Fx_popup_dialog, set_frame_menubar)
9904 (create_and_show_popup_menu, create_and_show_dialog, xmenu_show):
9905 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9906 * xml.c (parse_region):
9907 * xrdb.c (magic_file_p):
9908 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9909 * xselect.c (TRACE1): Don't assume pid_t promotes to int.
9910 (x_get_local_selection, x_reply_selection_request)
9911 (x_handle_selection_request, wait_for_property_change):
9912 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9913 (selection_data_to_lisp_data): Use short, not EMACS_INT, where
9914 short is wide enough.
9915 (x_send_client_event): Don't assume fixnum fits in int.
9916 * xterm.c (x_x_to_emacs_modifiers):
9917 Don't assume EMACS_INT overflows nicely into int.
9918 (x_emacs_to_x_modifiers): Use EMACS_INT, not int, because values
9919 may come from Lisp.
9920 (handle_one_xevent): NATNUMP can eval its arg twice.
9921 (x_connection_closed):
9922 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9923 * xterm.h: Adjust decls to match defn changes elsewhere.
9924 (struct scroll_bar): Use struct vectorlike_header
9925 rather than rolling our own approximation.
9926 (SCROLL_BAR_VEC_SIZE): Remove; not used.
9927
9928 2012-05-25 Glenn Morris <rgm@gnu.org>
9929
9930 * lisp.mk (lisp): Update for more files being compiled now.
9931
9932 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
9933
9934 * lread.c: Remove `read_pure' which makes no difference.
9935 (read_pure): Remove var.
9936 (unreadpure): Remove function.
9937 (readevalloop): Don't call read_list with -1 flag.
9938 (read1, read_vector): Don't test read_pure any more.
9939 (read_list): Simplify.
9940
9941 * fileio.c, character.h: Minor style tweaks.
9942
9943 2012-05-24 Dmitry Antipov <dmantipov@yandex.ru>
9944
9945 * window.h (clip_changed): Remove useless declaration.
9946
9947 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
9948
9949 * makefile.w32-in: Follow-up to 2012-05-22T16:20:27Z!eggert@cs.ucla.edu.
9950 (TAGS, TAGS-gmake, CONFIG_H): Remove further references to m/intel386.h.
9951
9952 2012-05-22 Paul Eggert <eggert@cs.ucla.edu>
9953
9954 Remove src/m/*.
9955 This directory predates autoconf and is no longer needed nowadays.
9956 Move its few remaining bits of functionality to where they're needed.
9957 * m/README, m/alpha.h, m/amdx86-64.h, m/ia64.h, m/ibmrs6000.h:
9958 * m/ibms390x.h, m/intel386.h, m/m68k.h, m/macppc.h, m/sparc.h:
9959 * m/template.h: Remove.
9960 * Makefile.in (M_FILE): Remove. All uses removed.
9961 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS):
9962 * lisp.h (USE_LSB_TAG):
9963 * mem-limits.h (EXCEEDS_LISP_PTR):
9964 Use VAL_MAX, not VALBITS, in #if.
9965 * lisp.h (EMACS_INT_MAX): New macro, useful in #if.
9966 (EMACS_UINT): Define unconditionally now.
9967 (BITS_PER_CHAR, BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG)
9968 (BITS_PER_EMACS_INT): New constants, replacing
9969 what used to be in config.h, but not useful in #if.
9970 (GCTYPEBITS, VALBITS): Define unconditionally, since m/* files don't
9971 define them any more.
9972 (VAL_MAX): New macro.
9973 (VALMASK): Use it.
9974 * puresize.h (PURESIZE_RATIO): Use EMACS_INT_MAX, not
9975 BITS_PER_EMACS_INT, in #if.
9976 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
9977 (BROKEN_SIGPOLL): Move here from m/ibmrs6000.h, which was removed.
9978 * s/gnu-linux.h (ULIMIT_BREAK_VALUE) [__i386__]:
9979 * s/ms-w32.h (DATA_START):
9980 Move here from removed file m/intel386.h.
9981 * s/gnu.h (NLIST_STRUCT): Remove undef; 'configure' does this.
9982 * s/irix6-5.h (_LP64): Remove; lisp.h no longer needs this.
9983
9984 2012-05-21 Paul Eggert <eggert@cs.ucla.edu>
9985
9986 Assume C89 or later.
9987 * alloc.c, buffer.c, lisp.h: Replace POINTER_TYPE with void.
9988 * alloc.c (overrun_check_malloc, overrun_check_realloc, xmalloc)
9989 (xrealloc):
9990 * buffer.c (mmap_free_1, mmap_enlarge): Omit needless casts.
9991 * editfns.c, fns.c, gmalloc.c, insdel.c, sysdep.c, termcap.c (NULL):
9992 * textprop.c, tparam.c (NULL): Remove.
9993 * ralloc.c, vm-limit.c (POINTER): Assume void * works.
9994 * regex.c (SIGN_EXTEND_CHAR): Assume signed char works.
9995 * regex.h (_RE_ARGS): Remove. All uses rewritten to use prototypes.
9996 * unexelf.c (ElfBitsW): Assume c89 preprocessor or better.
9997 * xterm.c (input_signal_count): Assume volatile works.
9998
9999 2012-05-21 Ken Brown <kbrown@cornell.edu>
10000
10001 * xgselect.c (xg_select): Fix first argument in call to 'select'
10002 (bug#11508).
10003
10004 2012-05-20 Ken Brown <kbrown@cornell.edu>
10005
10006 * gmalloc.c (_free_internal_nolock, _realloc_internal_nolock)
10007 [CYGWIN]: Cast ptr to (char *) before comparing to _heapbase.
10008
10009 2012-05-19 Ken Brown <kbrown@cornell.edu>
10010
10011 * xfns.c (x_in_use): Remove `static' qualifier.
10012 * xterm.h (x_in_use): Declare.
10013 * xgselect.c: Include xterm.h.
10014 (xg_select): Test `x_in_use' instead of `inhibit_window_system'
10015 and `display_arg' (bug#9754).
10016
10017 2012-05-19 Paul Eggert <eggert@cs.ucla.edu>
10018
10019 * s/ms-w32.h (HAVE_GETDOMAINNAME): Remove; not needed.
10020
10021 * m/vax.h: Remove; no longer needed since HAVE_FTIME is being removed.
10022 * s/ms-w32.h (HAVE_FTIME): Remove; not needed.
10023
10024 2012-05-18 Eli Zaretskii <eliz@gnu.org>
10025
10026 Fix compilation with -DGLYPH_DEBUG=1 on MS-Windows.
10027
10028 * w32term.c [GLYPH_DEBUG]: Add prototype for x_check_font.
10029 (x_check_font) [GLYPH_DEBUG]: New function, copied from xterm.c.
10030
10031 * w32fns.c (unwind_create_frame) [GLYPH_DEBUG]: Fix broken
10032 reference to image_cache->refcount.
10033 (x_create_tip_frame): Fix broken use of FRAME_IMAGE_CACHE.
10034
10035 2012-05-17 Juri Linkov <juri@jurta.org>
10036
10037 * search.c (Fword_search_regexp, Fword_search_backward)
10038 (Fword_search_forward, Fword_search_backward_lax)
10039 (Fword_search_forward_lax): Move functions to isearch.el
10040 (bug#10145, bug#11381).
10041
10042 2012-05-16 Paul Eggert <eggert@cs.ucla.edu>
10043
10044 * xgselect.c (xg_select): Just invoke 'select' if -nw (Bug#9754).
10045
10046 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
10047
10048 * lread.c (init_obarray): Declare Qt and Qnil as special.
10049
10050 2012-05-14 Glenn Morris <rgm@gnu.org>
10051
10052 * nsterm.m (ns_init_paths): Fix typo ("libexec" not "lib-exec").
10053 Put "libexec" before "bin", for the sake of init_callproc_1.
10054
10055 2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
10056
10057 * keyboard.c (kbd_buffer_get_event) [!HAVE_DBUS]: Omit unused local.
10058
10059 * unexaix.c: Port to more-recent AIX compilers.
10060 (report_error, report_error_1, make_hdr, copy_sym)
10061 (mark_x, adjust_lnnoptrs, unrelocate_symbols):
10062 Make arguments const char *, not char *, to avoid violations of C
10063 standard and to fix some AIX warnings reported by Gilles Pion.
10064
10065 2012-05-14 Eli Zaretskii <eliz@gnu.org>
10066
10067 * xdisp.c (handle_stop): Don't call get_overlay_strings_1 if we
10068 already have overlays loaded.
10069 (handle_single_display_spec): Before returning without displaying
10070 fringe bitmap, synchronize the bidi iterator with the main display
10071 iterator, by calling iterate_out_of_display_property.
10072 (iterate_out_of_display_property): Detect buffer iteration by
10073 testing that it->string is a Lisp string.
10074 (get_next_display_element): When the current object is exhausted,
10075 and there's something on it->stack, call set_iterator_to_next to
10076 proceed with what's on the stack, instead of returning zero.
10077 (set_iterator_to_next): If called at the end of a Lisp string,
10078 proceed to consider_string_end without incrementing string
10079 position. Don't increment display vector index past the end of
10080 the display vector. (Bug#11417)
10081 (pos_visible_p): Don't report a position visible when move_it_to
10082 stopped at the last line of window, which happens to be scanned
10083 backwards by the bidi iteration. (Bug#11464)
10084
10085 2012-05-14 Eli Zaretskii <eliz@gnu.org>
10086
10087 * xdisp.c (handle_single_display_spec): Return 1 for left-margin
10088 and right-margin display specs even if the spec is invalid or we
10089 are on a TTY, and thus unable to display on the fringes.
10090 That's because the text with the property will not be displayed anyway,
10091 so we need to signal to the caller that this is a "replacing"
10092 display spec. This fixes display when the spec is invalid or we
10093 are on a TTY.
10094
10095 2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
10096
10097 * unexaix.c (make_hdr): Fix typo in prototype.
10098 This bug broke the build on AIX. Problem reported by Gilles Pion.
10099
10100 2012-05-14 Michael Albinus <michael.albinus@gmx.de>
10101
10102 * keyboard.c (kbd_buffer_get_event): Read special events also in
10103 batch mode. (Bug#11415)
10104
10105 2012-05-12 Glenn Morris <rgm@gnu.org>
10106
10107 * ns.mk: Update for ns_appbindir no longer having trailing "/".
10108
10109 2012-05-12 Eli Zaretskii <eliz@gnu.org>
10110
10111 * lisp.mk (lisp): Add newcomment.elc.
10112
10113 2012-05-12 Glenn Morris <rgm@gnu.org>
10114
10115 * Makefile.in (MKDIR_P): New, set by configure.
10116 * ns.mk (${ns_appdir}, ${ns_appbindir}Emacs): Use $MKDIR_P.
10117
10118 2012-05-11 Paul Eggert <eggert@cs.ucla.edu>
10119
10120 Remove unused function hourglass_started.
10121 * dispextern.h (hourglass_started):
10122 * w32fns.c (hourglass_started):
10123 * xdisp.c (hourglass_started): Remove.
10124
10125 2012-05-10 Juanma Barranquero <lekktu@gmail.com>
10126
10127 * makefile.w32-in ($(BLD)/gmalloc.$(O), $(BLD)/w32menu.$(O)):
10128 Update dependencies.
10129
10130 2012-05-10 Paul Eggert <eggert@cs.ucla.edu>
10131
10132 * xgselect.c (xg_select): Put maxfds+1 into a var.
10133 This is slightly clearer, and pacifies Ubuntu 12.04 gcc.
10134
10135 * sound.c (DEFAULT_ALSA_SOUND_DEVICE): Define only if HAVE_ALSA.
10136
10137 2012-05-10 Dave Abrahams <dave@boostpro.com>
10138
10139 * filelock.c (syms_of_filelock): New boolean create-lockfiles.
10140 (lock_file): If create_lockfiles is 0, do nothing. (Bug#11227)
10141
10142 2012-05-09 Michael Albinus <michael.albinus@gmx.de>
10143
10144 * dbusbind.c (xd_registered_buses): New internal Lisp object.
10145 Rename all occurences of Vdbus_registered_buses to xd_registered_buses.
10146 (syms_of_dbusbind): Remove declaration of Vdbus_registered_buses.
10147 Initialize xd_registered_buses.
10148
10149 2012-05-09 Paul Eggert <eggert@cs.ucla.edu>
10150
10151 Untag more efficiently if USE_LSB_TAG.
10152 This is based on a proposal by YAMAMOTO Mitsuharu in
10153 <http://lists.gnu.org/archive/html/emacs-devel/2008-01/msg01876.html>.
10154 For an admittedly artificial (nth 8000 longlist) benchmark on
10155 Fedora 15 x86-64, this yields a 25% CPU speedup. Also, it shrinks
10156 Emacs's overall text size by 1%.
10157 * lisp.h (XUNTAG): New macro.
10158 (XCONS, XVECTOR, XSTRING, XSYMBOL, XFLOAT, XMISC, XPROCESS, XWINDOW)
10159 (XTERMINAL, XSUBR, XBUFFER, XCHAR_TABLE, XSUB_CHAR_TABLE, XBOOL_VECTOR)
10160 (XSETTYPED_PSEUDOVECTOR, XHASH_TABLE, TYPED_PSEUDOVECTORP): Use it.
10161 * eval.c (Fautoload):
10162 * font.h (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT):
10163 * frame.h (XFRAME): Use XUNTAG.
10164
10165 Port recent dbusbind.c changes to 32-bit --with-wide-int.
10166 * dbusbind.c (xd_append_arg, xd_retrieve_arg, Fdbus_message_internal):
10167 Remove unportable assumptions about print widths of types like
10168 dbus_uint32_t.
10169 (xd_get_connection_address, Fdbus_init_bus): Cast Emacs integer to
10170 intptr_t when converting between pointer and integer, to avoid GCC
10171 warnings about wrong width.
10172
10173 2012-05-09 Eli Zaretskii <eliz@gnu.org>
10174
10175 * w32proc.c (new_child): Force Windows to reserve only 64KB of
10176 stack for each reader_thread, instead of defaulting to 8MB
10177 determined by the linker. This avoids failures in creating
10178 subprocesses on Windows 7, see the discussion in this thread:
10179 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00119.html.
10180
10181 2012-05-07 Jérémy Compostella <jeremy.compostella@gmail.com>
10182
10183 Fix up display of the *Minibuf-0* buffer in the mini window.
10184 * keyboard.c (read_char): Don't clear the echo area if there's no
10185 message to clear.
10186 * xdisp.c (redisplay_internal): Redisplay the mini window (with the
10187 contents of *Minibuf-0*) if there's no message displayed in its stead.
10188
10189 2012-05-07 Michael Albinus <michael.albinus@gmx.de>
10190
10191 * dbusbind.c (XD_DEBUG_MESSAGE): Don't print message twice in
10192 batch mode.
10193
10194 2012-05-06 Chong Yidong <cyd@gnu.org>
10195
10196 * lisp.mk (lisp): Update.
10197
10198 2012-05-05 Jim Meyering <meyering@redhat.com>
10199
10200 * w32font.c (fill_in_logfont): NUL-terminate a string (Bug#11372).
10201
10202 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
10203
10204 * data.c (PUT_ERROR): New macro.
10205 (syms_of_data): Use it. Add new error type `user-error'.
10206 * undo.c (user_error): New function.
10207 (Fprimitive_undo): Use it.
10208 * print.c (print_error_message): Adjust print style for `user-error'.
10209 * keyboard.c (user_error): New function.
10210 (Fexit_recursive_edit, Fabort_recursive_edit): Use it.
10211
10212 2012-05-03 Paul Eggert <eggert@cs.ucla.edu>
10213
10214 Do not limit current-time-string to years 1000..9999.
10215 * editfns.c (TM_YEAR_IN_ASCTIME_RANGE): Remove.
10216 (Fcurrent_time_string): Support any year that is supported by the
10217 underlying localtime representation. Don't use asctime, as it
10218 has undefined behavior for years outside the range -999..9999.
10219
10220 2012-05-02 Paul Eggert <eggert@cs.ucla.edu>
10221
10222 Fix race conditions involving setenv, gmtime, localtime, asctime.
10223 Without this fix, interrupts could mess up code that uses these
10224 nonreentrant functions, since setting TZ invalidates existing
10225 tm_zone or tzname values, and since most of these functions return
10226 pointers to static storage.
10227 * editfns.c (format_time_string, Fdecode_time, Fencode_time)
10228 (Fcurrent_time_string, Fcurrent_time_zone, Fset_time_zone_rule):
10229 Grow the critical sections to include not just invoking
10230 localtime/gmtime, but also accessing these functions' results
10231 including their tm_zone values if any, and any related TZ setting.
10232 (format_time_string): Last arg is now struct tm *, not struct tm **,
10233 so that the struct tm is saved in the critical section.
10234 All callers changed. Simplify allocation of initial buffer, partly
10235 motivated by the fact that memory allocation needs to be outside
10236 the critical section.
10237
10238 2012-05-02 Dmitry Antipov <dmantipov@yandex.ru>
10239
10240 * intervals.c (adjust_intervals_for_insertion): Initialize `newi'
10241 with RESET_INTERVAL.
10242
10243 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
10244 Remove duplicated buffer name initialization.
10245
10246 2012-05-02 Jim Meyering <jim@meyering.net>
10247
10248 * xterm.c (x_term_init): Use memcpy instead of strncpy (Bug#11373).
10249
10250 * xfns.c (x_window): Use xstrdup (Bug#11375).
10251
10252 2012-05-02 Eli Zaretskii <eliz@gnu.org>
10253
10254 * xdisp.c (pos_visible_p): If already at a newline from the
10255 display string before the 'while' loop, don't walk back the glyphs
10256 from it3.glyph_row. Solves assertion violation when the display
10257 string begins with a newline (egg.el). (Bug#11367)
10258
10259 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
10260
10261 * keyboard.c (Fexecute_extended_command, Vsuggest_key_bindings):
10262 Move to simple.el.
10263
10264 2012-05-01 Glenn Morris <rgm@gnu.org>
10265
10266 * syssignal.h: Remove reference to BROKEN_SIGINFO (last used in
10267 s/ptx4.h), BROKEN_SIGTSTP (last used in m/ustation.h, m/dpx2.h),
10268 and BROKEN_SIGURG (was in s/gnu-linux.h prior to 2008-02-10).
10269 All were removed before 23.1.
10270
10271 * dispnew.c: Remove HAVE_LIBNCURSES test;
10272 it is always true on relevant platforms.
10273
10274 * Makefile.in (LD_SWITCH_X_SITE_RPATH):
10275 Rename from LD_SWITCH_X_SITE_AUX_RPATH.
10276
10277 * Makefile.in (LD_SWITCH_X_SITE_AUX): Remove; no longer used.
10278
10279 2012-04-30 Andreas Schwab <schwab@linux-m68k.org>
10280
10281 * .gdbinit (xpr): Remove checks for no longer existing misc types.
10282 (xintfwd, xboolfwd, xobjfwd, xbufobjfwd, xkbobjfwd, xbuflocal):
10283 Remove.
10284
10285 2012-04-28 Paul Eggert <eggert@cs.ucla.edu>
10286
10287 Do not avoid creating empty evaporating overlays (Bug#9642).
10288 * buffer.c (Fmove_overlay): Revert the change of 2012-04-23.
10289 That is, do not delete an evaporating overlay if it becomes
10290 empty after its bounds are adjusted to fit within its buffer.
10291 This fix caused other problems, and I'm reverting it until we get
10292 to the bottom of them.
10293
10294 2012-04-27 Chong Yidong <cyd@gnu.org>
10295
10296 * xselect.c (x_convert_selection): Initialize a pointer (Bug#11315).
10297
10298 2012-04-27 Eli Zaretskii <eliz@gnu.org>
10299
10300 * xdisp.c (pos_visible_p): If the window start position is beyond
10301 ZV, start the display from buffer beginning. Prevents assertion
10302 violation in init_iterator when the minibuffer window is scrolled
10303 via the scroll bar.
10304
10305 * window.c (window_scroll_pixel_based): Likewise.
10306
10307 2012-04-27 Chong Yidong <cyd@gnu.org>
10308
10309 * keymap.c (where_is_internal): Doc fix (Bug#10872).
10310
10311 2012-04-27 Glenn Morris <rgm@gnu.org>
10312
10313 * fileio.c (Fcopy_file, Fset_file_selinux_context):
10314 Ignore ENOTSUP failures from setfilecon functions. (Bug#11245)
10315
10316 2012-04-27 Eli Zaretskii <eliz@gnu.org>
10317
10318 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers):
10319 Don't overrun array limits of glyph row's used[] array. (Bug#11288)
10320
10321 2012-04-26 Eli Zaretskii <eliz@gnu.org>
10322
10323 * xdisp.c (IT_DISPLAYING_WHITESPACE): In addition to the loaded
10324 display element, check also the underlying string or buffer
10325 character. (Bug#11341)
10326
10327 * w32menu.c: Include w32heap.h.
10328 (add_menu_item): If the call to AppendMenuW (via
10329 unicode_append_menu) fails, disable Unicode menus only if we are
10330 running on Windows 9X/Me.
10331
10332 2012-04-24 Andreas Schwab <schwab@linux-m68k.org>
10333
10334 * .gdbinit (xpr): Handle USE_2_TAGS_FOR_INTS.
10335 (xgetint): Add missing shift for LSB tags.
10336
10337 2012-04-24 Martin Rudalics <rudalics@gmx.at>
10338
10339 * keyboard.c (read_char): Don't wipe echo area for select window
10340 events: These might get delayed via `mouse-autoselect-window'
10341 (Bug#11304).
10342
10343 2012-04-24 Juanma Barranquero <lekktu@gmail.com>
10344
10345 * gnutls.c (init_gnutls_functions): Protect against (unlikely)
10346 manipulation of :loaded-from data.
10347
10348 2012-04-23 Juanma Barranquero <lekktu@gmail.com>
10349
10350 * gnutls.c (init_gnutls_functions): The value of :loaded-from is
10351 now a cons (bug#11311).
10352
10353 2012-04-23 Paul Eggert <eggert@cs.ucla.edu>
10354
10355 Do not create empty overlays with the evaporate property (Bug#9642).
10356 * buffer.c (Fmove_overlay): Delete an evaporating overlay
10357 if it becomes empty after its bounds are adjusted to fit within
10358 its buffer. Without this fix, in a nonempty buffer (let ((o
10359 (make-overlay 1 2))) (overlay-put o 'evaporate t) (move-overlay o 0 1))
10360 yields an empty overlay that has the evaporate property, which is
10361 not supposed to happen.
10362
10363 Fix minor GTK3 problems found by static checking.
10364 * emacsgtkfixed.c (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
10365 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
10366 (struct _EmacsFixedClass, emacs_fixed_get_type):
10367 Move decls here from emacsgtkfixed.h, since they needn't be public.
10368 (emacs_fixed_get_type): Now static.
10369 (emacs_fixed_class_init): Omit unused local.
10370 (emacs_fixed_child_type): Remove; unused.
10371 * emacsgtkfixed.h (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
10372 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
10373 (struct _EmacsFixedClass): Move to emacsgtkfixed.c.
10374 (EMACS_FIXED_CLASS, EMACS_IS_FIXED, EMACS_IS_FIXED_CLASS)
10375 (EMACS_FIXED_GET_CLASS): Remove; unused.
10376 * gtkutil.c (xg_create_frame_widgets) [!HAVE_GTK3]: Omit unused local.
10377
10378 * keyboard.c (handle_async_input): Define only if SYNC_INPUT || SIGIO.
10379 Problem reported by Juanma Barranquero for Windows -Wunused-function.
10380
10381 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
10382
10383 Modernize and clean up gmalloc.c to assume C89 (Bug#9119).
10384 * gmalloc.c (_MALLOC_INTERNAL, _MALLOC_H, _PP, __ptr_t)
10385 (__malloc_size_t, __malloc_ptrdiff_t):
10386 Remove. All uses removed, replaced by the definiens if needed,
10387 since we can assume C89 or better now.
10388 Include <stdint.h>, for PTRDIFF_MAX, uintptr_t.
10389 (protect_malloc_state, align, get_contiguous_space)
10390 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
10391 (malloc_atfork_handler_child, malloc_enable_thread)
10392 (malloc_initialize_1, __malloc_initialize, morecore_nolock)
10393 (_malloc_internal_nolock, _malloc_internal, malloc, _malloc)
10394 (_free, _realloc, _free_internal_nolock, _free_internal, free, cfree)
10395 (special_realloc, _realloc_internal_nolock, _realloc_internal)
10396 (realloc, calloc, __default_morecore, memalign, valloc, checkhdr)
10397 (freehook, mallochook, reallochook, mabort, mcheck, mprobe):
10398 Define using prototypes, not old style.
10399 (align, _malloc_internal_nolock, _free_internal_nolock, memalign):
10400 Don't assume ptrdiff_t and uintptr_t are no wider than unsigned long.
10401 (align): Don't assume that signed integer overflow wraps around.
10402 Omit unused local var.
10403 (malloc_initialize_1, morecore_nolock, _malloc_internal_nolock)
10404 (_free_internal_nolock, memalign, mallochook, reallochook):
10405 Omit no-longer-needed casts.
10406 (valloc): Use getpagesize, not __getpagesize.
10407 (MAGICWORD, MAGICFREE): Now randomish size_t values, not 32-bit.
10408 (struct hdr): The 'magic' member is now size_t, not unsigned long.
10409
10410 * dbusbind.c (XD_DBUS_VALIDATE_OBJECT): Define only if needed.
10411
10412 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
10413
10414 Move functions from C to Lisp. Make non-blocking method calls
10415 the default. Implement further D-Bus standard interfaces.
10416
10417 * dbusbind.c (DBUS_NUM_MESSAGE_TYPES): Declare.
10418 (QCdbus_request_name_allow_replacement)
10419 (QCdbus_request_name_replace_existing)
10420 (QCdbus_request_name_do_not_queue)
10421 (QCdbus_request_name_reply_primary_owner)
10422 (QCdbus_request_name_reply_in_queue)
10423 (QCdbus_request_name_reply_exists)
10424 (QCdbus_request_name_reply_already_owner): Move to dbus.el.
10425 (QCdbus_registered_serial, QCdbus_registered_method)
10426 (QCdbus_registered_signal): New Lisp objects.
10427 (XD_DEBUG_MESSAGE): Use sizeof.
10428 (XD_MESSAGE_TYPE_TO_STRING, XD_OBJECT_TO_STRING)
10429 (XD_DBUS_VALIDATE_BUS_ADDRESS, XD_DBUS_VALIDATE_OBJECT)
10430 (XD_DBUS_VALIDATE_BUS_NAME, XD_DBUS_VALIDATE_PATH)
10431 (XD_DBUS_VALIDATE_INTERFACE, XD_DBUS_VALIDATE_MEMBER): New macros.
10432 (XD_CHECK_DBUS_SERIAL): Rename from CHECK_DBUS_SERIAL_GET_SERIAL.
10433 (xd_signature, xd_append_arg): Allow float for integer types.
10434 (xd_get_connection_references): New function.
10435 (xd_get_connection_address): Rename from xd_initialize.
10436 Return cached address.
10437 (xd_remove_watch): Do not unset $DBUS_SESSION_BUS_ADDRESS.
10438 (xd_close_bus): Rename from Fdbus_close_bus. Not needed on Lisp
10439 level.
10440 (Fdbus_init_bus): New optional arg PRIVATE. Cache address.
10441 Return number of refcounts.
10442 (Fdbus_get_unique_name): Make stronger parameter check.
10443 (Fdbus_message_internal): New defun.
10444 (Fdbus_call_method, Fdbus_call_method_asynchronously)
10445 (Fdbus_method_return_internal, Fdbus_method_error_internal)
10446 (Fdbus_send_signal, Fdbus_register_service)
10447 (Fdbus_register_signal, Fdbus_register_method): Move to dbus.el.
10448 (xd_read_message_1): Obey new structure of Vdbus_registered_objects.
10449 (xd_read_queued_messages): Obey new structure of Vdbus_registered_buses.
10450 (Vdbus_compiled_version, Vdbus_runtime_version)
10451 (Vdbus_message_type_invalid, Vdbus_message_type_method_call)
10452 (Vdbus_message_type_method_return, Vdbus_message_type_error)
10453 (Vdbus_message_type_signal): New defvars.
10454 (Vdbus_registered_buses, Vdbus_registered_objects_table):
10455 Adapt docstring.
10456
10457 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
10458
10459 Fix GC_MALLOC_CHECK debugging output on 64-bit hosts.
10460 * alloc.c (emacs_blocked_malloc) [GC_MALLOC_CHECK]:
10461 Do not assume ptrdiff_t is the same width as 'int'.
10462
10463 * alloc.c: Handle unusual debugging option combinations.
10464 (GC_CHECK_MARKED_OBJECTS): Undef if ! GC_MARK_STACK,
10465 since the two debugging options are incompatible.
10466 (GC_MALLOC_CHECK): Similarly, undef if GC_CHECK_MARKED_OBJECTS
10467 is defined.
10468 (mem_init, mem_insert, mem_insert_fixup):
10469 Define if GC_MARK_STACK || GC_MALLOC_CHECK.
10470 (NEED_MEM_INSERT): Remove; no longer needed.
10471
10472 2012-04-22 Leo Liu <sdl.web@gmail.com>
10473
10474 * sysdep.c (list_system_processes): Support Darwin (Bug#5725).
10475
10476 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
10477
10478 * sysdep.c [__FreeBSD__]: Minor cleanups.
10479 (list_system_processes, system_process_attributes) [__FreeBSD__]:
10480 Use Emacs indenting style more consistently. Avoid some casts.
10481 Use 'double' consistently rather than mixing 'float' and 'double'.
10482
10483 2012-04-21 Eduard Wiebe <usenet@pusto.de>
10484
10485 * sysdep.c (list_system_processes, system_process_attributes):
10486 Add implementation for FreeBSD (Bug#5243).
10487
10488 2012-04-21 Andreas Schwab <schwab@linux-m68k.org>
10489
10490 * lisp.mk (lisp): Update.
10491
10492 2012-04-20 Paul Eggert <eggert@cs.ucla.edu>
10493
10494 * keyboard.c (process_pending_signals): Define only if SYNC_INPUT.
10495 It is never used otherwise.
10496
10497 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
10498
10499 * print.c (print_preprocess): Only check print_depth if print-circle
10500 is nil.
10501 (print_object): Check for cycles even when print-circle is nil and
10502 print-gensym is t, but only check print_depth if print-circle is nil.
10503
10504 2012-04-20 Chong Yidong <cyd@gnu.org>
10505
10506 * process.c (wait_reading_process_output): If EIO occurs on a pty,
10507 set the status to "failed" and ensure that sentinel is run.
10508
10509 2012-04-20 Glenn Morris <rgm@gnu.org>
10510
10511 * process.c (Fset_process_inherit_coding_system_flag)
10512 (Fset_process_query_on_exit_flag): Doc fix (mention return value).
10513 (Fmake_network_process, Fmake_serial_process): Doc fix.
10514
10515 2012-04-20 Eli Zaretskii <eliz@gnu.org>
10516
10517 * xdisp.c (string_buffer_position_lim): Limit starting position to
10518 BEGV.
10519 (set_cursor_from_row): If called for a mode-line or header-line
10520 row, return zero immediately.
10521 (try_cursor_movement): If inside continuation line, don't back up
10522 farther than the first row after the header line, if any.
10523 Don't consider the header-line row as "partially visible", even if
10524 MATRIX_ROW_PARTIALLY_VISIBLE_P returns non-zero. (Bug#11261)
10525
10526 2012-04-20 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
10527
10528 * lread.c (lisp_file_lexically_bound_p): Fix hang at ";-*-\n"
10529 (bug#11238).
10530
10531 2012-04-20 Teodor Zlatanov <tzz@lifelogs.com>
10532 2012-04-18 Paul Eggert <eggert@cs.ucla.edu>
10533
10534 configure: new option --enable-gcc-warnings (Bug#11207)
10535 * Makefile.in (C_WARNINGS_SWITCH): Remove.
10536 (WARN_CFLAGS, WERROR_CFLAGS): New macros.
10537 (ALL_CFLAGS): Use new macros rather than old.
10538 * process.c: Ignore -Wstrict-overflow to work around GCC bug 52904.
10539 * regex.c: Ignore -Wstrict-overflow. If !emacs, also ignore
10540 -Wunused-but-set-variable, -Wunused-function, -Wunused-macros,
10541 -Wunused-result, -Wunused-variable. This should go away once
10542 the Emacs and Gnulib regex code is merged.
10543 (xmalloc, xrealloc): Now static.
10544
10545 2012-04-17 Paul Eggert <eggert@cs.ucla.edu>
10546
10547 * dired.c (Fsystem_groups): Remove unused local.
10548
10549 2012-04-17 Glenn Morris <rgm@gnu.org>
10550
10551 * dired.c (Fsystem_users): Doc fix.
10552
10553 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
10554
10555 * dired.c (Fsystem_users, Fsystem_groups): New functions. (Bug#7900)
10556 (syms_of_dired): Add them.
10557
10558 2012-04-16 Paul Eggert <eggert@cs.ucla.edu>
10559
10560 Fix minor alloc.c problems found by static checking.
10561 * alloc.c (_malloc_internal, _free_internal) [!DOUG_LEA_MALLOC]:
10562 New extern decls, to avoid calling undeclared functions.
10563 (dont_register_blocks): Define if ((!SYSTEM_MALLOC && !SYNC_INPUT)
10564 && GC_MALLOC_CHECK), not if ((GC_MARK_STACK || defined
10565 GC_MALLOC_CHECK) && GC_MALLOC_CHECK), to match when it's used.
10566 (NEED_MEM_INSERT): New macro.
10567 (mem_insert, mem_insert_fixup) [!NEED_MEM_INSERT]: Remove; unused.
10568 Remove one incorrect comment and fix another.
10569
10570 Fix minor ralloc.c problems found by static checking.
10571 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
10572 * ralloc.c (ALIGNED, ROUND_TO_PAGE, HEAP_PTR_SIZE)
10573 (r_alloc_size_in_use, r_alloc_freeze, r_alloc_thaw): Remove; unused.
10574 (r_alloc_sbrk): Now static.
10575
10576 Improve ralloc.c interface checking.
10577 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
10578 * buffer.c (ralloc_reset_variable, r_alloc, r_re_alloc)
10579 (r_alloc_free) [REL_ALLOC]: Move decls from here ...
10580 * lisp.h (r_alloc, r_alloc_free, r_re_alloc, r_alloc_reset_variable)
10581 [REL_ALLOC]: ... to here, to check interface.
10582 * m/ia64.h (r_alloc, r_alloc_free) [REL_ALLOC && !_MALLOC_INTERNAL]:
10583 Remove decls. This fixes an "It stinks!".
10584
10585 * alloc.c (which_symbols): Fix alignment issue / type clash.
10586
10587 2012-04-15 Andreas Schwab <schwab@linux-m68k.org>
10588
10589 * lisp.h (struct Lisp_Symbol): Remove explicit padding.
10590 (struct Lisp_Misc_Any): Likewise.
10591 (struct Lisp_Free): Likewise.
10592 * alloc.c (union aligned_Lisp_Symbol): Define.
10593 (SYMBOL_BLOCK_SIZE, struct symbol_block): Use union
10594 aligned_Lisp_Symbol instead of struct Lisp_Symbol.
10595 (union aligned_Lisp_Misc): Define.
10596 (MARKER_BLOCK_SIZE, struct marker_block): Use union
10597 aligned_Lisp_Misc instead of union Lisp_Misc.
10598 (Fmake_symbol, allocate_misc, gc_sweep): Adjust.
10599
10600 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
10601
10602 Make GC_MAKE_GCPROS_NOOPS the default (Bug#9926).
10603 * lisp.h (GC_MARK_STACK): Default to GC_MAKE_GCPROS_NOOPS.
10604 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/gnu.h, s/irix6-5.h, s/msdos.h:
10605 * s/netbsd.h, s/sol2-6.h:
10606 Remove definition of GC_MARK_STACK, since the default now works.
10607 * s/aix4-2.h, s/hpux10-20.h, s/unixware.h:
10608 Define GC_MARK_STACK to GC_USE_GCPROS_AS_BEFORE, since that's
10609 no longer the default.
10610 * s/gnu-linux.h (GC_MARK_STACK): Adjust to change in default.
10611
10612 2012-04-14 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
10613
10614 * lread.c (lisp_file_lexically_bound_p):
10615 Fix hang at ";-*-\n" (bug#11238).
10616
10617 2012-04-14 Eli Zaretskii <eliz@gnu.org>
10618
10619 * xdisp.c (find_last_unchanged_at_beg_row): Don't consider a row
10620 "unchanged" if its end.pos is beyond ZV. (Bug#11199)
10621
10622 2012-04-14 Jan Djärv <jan.h.d@swipnet.se>
10623
10624 * nsterm.m (constrainFrameRect): Always constrain when there is only
10625 one screen (Bug#10962).
10626
10627 2012-04-13 Ken Brown <kbrown@cornell.edu>
10628
10629 * s/cygwin.h (PTY_OPEN): Don't try to close a bogus file descriptor.
10630
10631 2012-04-13 Reuben Thomas <rrt@sc3d.org>
10632
10633 * indent.c (Fmove_to_column): Change interactive spec (Bug#739).
10634
10635 2012-04-11 Daniel Colascione <dancol@dancol.org>
10636
10637 * s/cygwin.h: The vfork the #define in cygwin.h was protecting
10638 against is gone. It's better to use vfork now so that when Cygwin
10639 gains a new, working vfork, we use it automatically (bug#10398).
10640
10641 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
10642
10643 * window.c (save_window_save): Obey window-point-insertion-type.
10644
10645 2012-04-11 Glenn Morris <rgm@gnu.org>
10646
10647 * Makefile.in (GNUSTEP_CFLAGS): Rename from C_SWITCH_X_SYSTEM.
10648
10649 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
10650
10651 * alloc.c (lisp_align_malloc): Remove unneeded prototype.
10652
10653 2012-04-10 Jason S. Cornez <jcornez@ravenpack.com> (tiny change)
10654
10655 * keyboard.c: Override inhibit-quit after the third C-g (bug#6585).
10656 (force_quit_count): New var.
10657 (handle_interrupt): Use it.
10658
10659 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
10660
10661 * w32.c (w32_delayed_load): Record the full path of the library
10662 being loaded (bug#10424).
10663
10664 2012-04-09 Glenn Morris <rgm@gnu.org>
10665
10666 * doc.c (Fsnarf_documentation): Check variables, functions are bound,
10667 not just in the obarray, before snarfing them. (Bug#11036)
10668
10669 * Makefile.in ($(leimdir)/leim-list.el):
10670 Pass EMACS rather than BUILT_EMACS.
10671
10672 2012-04-09 Teodor Zlatanov <tzz@lifelogs.com>
10673
10674 * process.c (make_process):
10675 * process.h: Add integer `gnutls_handshakes_tried' member to
10676 process struct.
10677
10678 * gnutls.h: Add `GNUTLS_EMACS_HANDSHAKES_LIMIT' upper limit.
10679 Add convenience `GNUTLS_LOG2i' macro.
10680
10681 * gnutls.c (gnutls_log_function2i): Convenience log function.
10682 (emacs_gnutls_read): Use new log functions,
10683 `gnutls_handshakes_tried' process member, and
10684 `GNUTLS_EMACS_HANDSHAKES_LIMIT' to limit the number of handshake
10685 attempts per process (connection).
10686
10687 2012-04-09 Chong Yidong <cyd@gnu.org>
10688
10689 * eval.c (Fuser_variable_p, user_variable_p_eh)
10690 (lisp_indirect_variable): Functions deleted.
10691 (Fdefvar): Caller changed.
10692
10693 * callint.c (Finteractive, Fcall_interactively):
10694 * minibuf.c (Fread_variable): Callers changed.
10695
10696 2012-04-09 Eli Zaretskii <eliz@gnu.org>
10697
10698 * xdisp.c (set_cursor_from_row): If the display string appears in
10699 the buffer at position that is closer to point than the position
10700 after the display string, display the cursor on the first glyph of
10701 the display string. Fixes cursor display when a 'display' text
10702 property immediately follows invisible text. (Bug#11094)
10703
10704 2012-04-09 Paul Eggert <eggert@cs.ucla.edu>
10705
10706 composite.c: use 'double' consistently
10707 * composite.c (get_composition_id): Use 'double' consistently
10708 instead of converting 'float' to 'double' and vice versa; this is
10709 easier to understand and avoids a GCC warning.
10710
10711 2012-04-09 Glenn Morris <rgm@gnu.org>
10712
10713 * Makefile.in: Generate leim-list with bootstrap-emacs, in
10714 preparation for dumping it with emacs. (Bug#4789)
10715 (leimdir): New variable.
10716 ($(leimdir)/leim-list.el): New rule.
10717 (emacs$(EXEEXT)): Depend on leim-list.el.
10718
10719 * buffer.c (Qucs_set_table_for_input): Remove. (Bug#9821)
10720 (Fget_buffer_create): Don't call Qucs_set_table_for_input.
10721 (init_buffer_once, syms_of_buffer): Remove Qucs_set_table_for_input.
10722
10723 2012-04-08 Andreas Schwab <schwab@linux-m68k.org>
10724
10725 * lisp.h (struct Lisp_Symbol): Add explicit padding to ensure
10726 proper alignment.
10727
10728 2012-04-07 Juanma Barranquero <lekktu@gmail.com>
10729
10730 * xml.c (init_libxml2_functions) [WINDOWSNT]:
10731 Remove unused local variable.
10732
10733 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
10734
10735 Avoid unnecessary pointer scanning in garbage collection (Bug#10780).
10736 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS): New macro.
10737 (mark_memory): Mark Lisp_Objects only if pointers might hide in
10738 objects, as mark_maybe_pointer will catch them otherwise.
10739 (GC_LISP_OBJECT_ALIGNMENT): Remove; no longer needed.
10740 * s/gnu-linux.h (GC_LISP_OBJECT_ALIGNMENT) [__mc68000__]: Likewise.
10741
10742 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
10743
10744 Fix typo that broke non-Windows builds.
10745 * xml.c (libxml2_loaded_p) [!!WINDOWSNT]: 'inine' -> 'inline'.
10746
10747 2012-04-07 Eli Zaretskii <eliz@gnu.org>
10748
10749 Support building on MS-Windows with libxml2.
10750
10751 * makefile.w32-in (OBJ2): Add xml.$(O).
10752 (GLOBAL_SOURCES): Add xml.c.
10753 ($(BLD)/xml.$(O)): New dependency list.
10754
10755 * xml.c (DEF_XML2_FN, LOAD_XML2_FN) [WINDOWSNT]: New macros.
10756 (fn_htmlReadMemory, fn_xmlReadMemory, fn_xmlDocGetRootElement)
10757 (fn_xmlFreeDoc, fn_xmlCleanupParser, fn_xmlCheckVersion)
10758 [!WINDOWSNT]: New macros.
10759 (init_libxml2_functions, libxml2_loaded_p): New functions.
10760 (parse_region): Call fn_xmlCheckVersion instead of using the macro
10761 LIBXML_TEST_VERSION. Call libxml2 functions via the fn_* macros.
10762 (xml_cleanup_parser): New function, export for fn_xmlCleanupParser.
10763 Calls xmlCleanupParser only if libxml2 was loaded (or statically
10764 linked in).
10765 (Flibxml_parse_html_region, Flibxml_parse_xml_region):
10766 Call init_libxml2_functions before calling libxml2 functions.
10767 (syms_of_xml) <Qlibxml2_dll>: DEFSYM it.
10768
10769 * emacs.c: Don't include libxml/parser.h.
10770 (shut_down_emacs): Call xml_cleanup_parser, instead of calling
10771 xmlCleanupParser directly.
10772
10773 * lisp.h [HAVE_LIBXML2]: Add prototype for xml_cleanup_parser.
10774
10775 2012-04-07 Eli Zaretskii <eliz@gnu.org>
10776
10777 * indent.c (Fvertical_motion): If there is a display string at
10778 point, use it.vpos to compute how many lines to backtrack after
10779 move_it_to point. (Bug#11133)
10780
10781 2012-04-06 Eli Zaretskii <eliz@gnu.org>
10782
10783 * buffer.h (FETCH_CHAR, FETCH_MULTIBYTE_CHAR):
10784 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH): Add comments
10785 about subtle differences between FETCH_CHAR* and STRING_CHAR*
10786 macros related to unification of CJK characters. For the details,
10787 see the discussion following the message here:
10788 http://debbugs.gnu.org/cgi/bugreport.cgi?bug=11073#14.
10789
10790 2012-04-04 Chong Yidong <cyd@gnu.org>
10791
10792 * keyboard.c (Vdelayed_warnings_list): Doc fix.
10793
10794 2012-04-01 Eli Zaretskii <eliz@gnu.org>
10795
10796 * w32menu.c (simple_dialog_show, add_menu_item): Use SAFE_ALLOCA
10797 instead of alloca. (Bug#11138)
10798
10799 2012-04-01 Andreas Schwab <schwab@linux-m68k.org>
10800
10801 * w32menu.c (is_simple_dialog): Properly check lisp types.
10802 (Bug#11141)
10803
10804 2012-03-31 Eli Zaretskii <eliz@gnu.org>
10805
10806 * xdisp.c (move_it_by_lines): When DVPOS is positive, and the
10807 position we get to after a call to move_it_to fails the
10808 IS_POS_VALID_AFTER_MOVE_P test, move to the next buffer position
10809 only if we wind up in a string from display property. (Bug#11063)
10810
10811 * window.c (Fdelete_other_windows_internal): Invalidate the row
10812 and column information about mouse highlight, so that redisplay
10813 restores it after reallocating the glyph matrices. (Bug#7464)
10814
10815 * xdisp.c (set_cursor_from_row): If `cursor' property on a display
10816 string comes from a `display' text property, use the buffer
10817 position of that property as if we actually saw that position in
10818 the row's glyphs.
10819 (move_it_by_lines): Remove the assertion that
10820 "it->current_x == 0 && it->hpos == 0" which can be legitimately
10821 violated when there's a before-string at the beginning of a line.
10822 (Bug#11063)
10823
10824 2012-03-30 Eli Zaretskii <eliz@gnu.org>
10825
10826 * xdisp.c (append_space_for_newline): If the default face was
10827 remapped, use the remapped face for the appended newline.
10828 (extend_face_to_end_of_line): Use the remapped default face for
10829 extending the face to the end of the line.
10830 (display_line): Call extend_face_to_end_of_line when the default
10831 face was remapped. (Bug#11068)
10832
10833 2012-03-29 Eli Zaretskii <eliz@gnu.org>
10834
10835 * s/ms-w32.h: Discourage from defining HAVE_GETCWD.
10836
10837 2012-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
10838
10839 * keyboard.c (safe_run_hooks_error): Don't unquote strings.
10840
10841 2012-03-27 Glenn Morris <rgm@gnu.org>
10842
10843 * search.c (Fword_search_backward_lax, Fword_search_forward_lax):
10844 Doc fixes.
10845
10846 2012-03-26 Kenichi Handa <handa@m17n.org>
10847
10848 * dispextern.h (struct glyph): Fix previous change. Change the
10849 bit length of glyphless.ch to 25 (Bug#11082).
10850
10851 2012-03-26 Chong Yidong <cyd@gnu.org>
10852
10853 * keyboard.c (Vselection_inhibit_update_commands): New variable.
10854 (command_loop_1): Use it; inhibit selection update for
10855 handle-select-window too (Bug#8996).
10856
10857 2012-03-25 Fabrice Popineau <fabrice.popineau@supelec.fr>
10858
10859 * w32heap.c (_heap_init, _heap_term): Remove dead MSVC-specific code.
10860
10861 2012-03-25 Kenichi Handa <handa@m17n.org>
10862
10863 * dispextern.h (struct glyph): Change the bit length of
10864 glyphless.ch to 22 to make the member glyphless fit in 32 bits.
10865
10866 2012-03-24 Eli Zaretskii <eliz@gnu.org>
10867
10868 * s/ms-w32.h (tzname): Include time.h before redirecting to
10869 _tzname. Fixes the MSVC build. (Bug#9960)
10870
10871 2012-03-24 Andreas Schwab <schwab@linux-m68k.org>
10872
10873 * xdisp.c (produce_glyphless_glyph): Limit length of acronym to 6
10874 characters.
10875
10876 * xterm.c (XTread_socket): Only modify handling_signal if
10877 !SYNC_INPUT. (Bug#11080)
10878
10879 2012-03-23 Eli Zaretskii <eliz@gnu.org>
10880
10881 * bidi.c (bidi_fetch_char): Use STRING_CHAR_AND_LENGTH instead of
10882 FETCH_MULTIBYTE_CHAR followed by CHAR_BYTES. Prevents crashes
10883 when fetching a multibyte character consumes more bytes than
10884 CHAR_BYTES returns, due to unification of CJK characters in
10885 string_char. (Bug#11073)
10886
10887 2012-03-23 Troels Nielsen <bn.troels@gmail.com> (tiny change)
10888
10889 * process.c (wait_reading_process_output): Handle pty disconnect
10890 by refraining from sending oneself a SIGCHLD (bug#10933).
10891
10892 2012-03-22 Chong Yidong <cyd@gnu.org>
10893
10894 * dispextern.h (struct it): New member string_from_prefix_prop_p.
10895
10896 * xdisp.c (push_prefix_prop): Rename from push_display_prop.
10897 Mark string as coming from a prefix property.
10898 (handle_face_prop): Use default face for prefix strings (Bug#4281).
10899 (pop_it, reseat_1): Save and restore string_from_prefix_prop_p.
10900
10901 2012-03-21 Chong Yidong <cyd@gnu.org>
10902
10903 * xfaces.c (Vface_remapping_alist): Doc fix.
10904
10905 2012-03-20 Eli Zaretskii <eliz@gnu.org>
10906
10907 * w32proc.c (Fw32_set_console_codepage)
10908 (Fw32_set_console_output_codepage, Fw32_get_codepage_charset):
10909 Doc fixes.
10910
10911 2012-03-20 Chong Yidong <cyd@gnu.org>
10912
10913 * dispnew.c (Fredisplay, Vredisplay_preemption_period): Update doc
10914 to reflect default non-nil value of redisplay-dont-pause.
10915
10916 2012-03-19 Kenichi Handa <handa@m17n.org>
10917
10918 * ftfont.c (ftfont_drive_otf): Mask bits of character code to make
10919 it fit in a valid range (Bug#11003).
10920
10921 2012-03-18 Eli Zaretskii <eliz@gnu.org>
10922
10923 * xdisp.c (cursor_row_p): Even if the glyph row ends in a string
10924 that is not from display property, accept the row as a "cursor
10925 row" if one of the string's character has a non-nil `cursor'
10926 property. Fixes cursor positioning when there are newlines in
10927 overlay strings, e.g. in icomplete.el. (Bug#11035)
10928
10929 2012-03-12 Paul Eggert <eggert@cs.ucla.edu>
10930
10931 * buffer.c (compare_overlays): Don't assume args differ (Bug#6830).
10932
10933 2012-03-12 Chong Yidong <cyd@gnu.org>
10934
10935 * eval.c (inhibit_lisp_code): Rename from
10936 inhibit_window_configuration_change_hook; move from window.c.
10937
10938 * xfns.c (unwind_create_frame_1, Fx_create_frame):
10939 * window.c (run_window_configuration_change_hook)
10940 (syms_of_window): Callers changed.
10941
10942 2012-03-11 Chong Yidong <cyd@gnu.org>
10943
10944 * keymap.c (Fkey_description): Doc fix (Bug#9700).
10945
10946 * editfns.c (Fconstrain_to_field): Doc fix (Bug#9452).
10947
10948 2012-03-10 Chong Yidong <cyd@gnu.org>
10949
10950 * frame.c (other_visible_frames): Don't assume the selected frame
10951 is visible (Bug#10955).
10952
10953 2012-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
10954
10955 * buffer.c (compare_overlays): Avoid qsort's instability (bug#6830).
10956
10957 2012-03-08 Jan Djärv <jan.h.d@swipnet.se>
10958
10959 * gtkutil.c (x_wm_set_size_hint): Use one row in call to
10960 FRAME_TEXT_LINES_TO_PIXEL_HEIGHT so base_height is greater than
10961 zero (Bug#10954).
10962
10963 2012-03-03 Glenn Morris <rgm@gnu.org>
10964
10965 * alloc.c (Fgarbage_collect, misc-objects-consed): Doc fixes.
10966
10967 2012-03-02 Eli Zaretskii <eliz@gnu.org>
10968
10969 * xdisp.c (try_window_reusing_current_matrix): Don't move cursor
10970 position past the first glyph_row that ends at ZV. (Bug#10902)
10971 (redisplay_window, next_element_from_string): Fix typos in
10972 comments.
10973 (redisplay_window): Pass to move_it_vertically the margin in
10974 pixels, not in screen lines.
10975
10976 2012-03-02 Glenn Morris <rgm@gnu.org>
10977
10978 * buffer.c (buffer-list-update-hook): Doc fix.
10979
10980 2012-02-29 Eli Zaretskii <eliz@gnu.org>
10981
10982 * xdisp.c (get_overlay_strings_1): Under bidi redisplay, call
10983 push_it before setting up the iterator for the first overlay
10984 string, even if we have an empty string loaded.
10985 (next_overlay_string): If there's an empty string on the iterator
10986 stack, pop the stack. (Bug#10903)
10987
10988 2012-02-25 Paul Eggert <eggert@cs.ucla.edu>
10989
10990 Generalize fix for crash due to non-contiguous EMACS_INT (Bug#10780).
10991 Suggested by Stefan Monnier in
10992 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00692.html>.
10993 * alloc.c (widen_to_Lisp_Object): New static function.
10994 (mark_memory): Also mark Lisp_Objects by fetching pointer words
10995 and widening them to Lisp_Objects. This would work even if
10996 USE_LSB_TAG is defined and wide integers are used, which might
10997 happen in a future version of Emacs.
10998
10999 2012-02-25 Chong Yidong <cyd@gnu.org>
11000
11001 * fileio.c (Ffile_selinux_context, Fset_file_selinux_context):
11002 Doc fix.
11003
11004 * xselect.c (Fx_selection_exists_p): Doc fix.
11005 (x_clipboard_manager_save_all): Print an informative message
11006 before saving to clipboard manager.
11007
11008 2012-02-24 Chong Yidong <cyd@gnu.org>
11009
11010 * keyboard.c (process_special_events): Handle all X selection
11011 requests in kbd_buffer, not just the next one (Bug#8869).
11012
11013 2012-02-23 Chong Yidong <cyd@gnu.org>
11014
11015 * xfns.c (Fx_create_frame): Avoid window-configuration-change-hook
11016 call when setting menu-bar-lines and tool-bar-lines parameters.
11017 (unwind_create_frame_1): New helper function.
11018
11019 * window.c (inhibit_window_configuration_change_hook): New var.
11020 (run_window_configuration_change_hook): Obey it.
11021 (syms_of_window): Initialize it.
11022
11023 2012-02-22 Chong Yidong <cyd@gnu.org>
11024
11025 * xterm.c (x_draw_image_relief): Add missing type check for
11026 Vtool_bar_button_margin (Bug#10743).
11027
11028 2012-02-21 Chong Yidong <cyd@gnu.org>
11029
11030 * fileio.c (Vfile_name_handler_alist): Doc fix.
11031
11032 * buffer.c (Fget_file_buffer): Protect against invalid file
11033 handler return value.
11034
11035 2012-02-20 Paul Eggert <eggert@cs.ucla.edu>
11036
11037 * .gdbinit (xreload): Don't assume EMACS_INT fits in 'long'
11038 when computing $valmask.
11039
11040 Fix crash due to non-contiguous EMACS_INT (Bug#10780).
11041 * lisp.h (VALBITS): Move definition up, so that USE_LSB_TAG can use it.
11042 (USE_LSB_TAG): Do not define if UINTPTR_MAX >> VALBITS == 0.
11043 It's useless in that case, and it can cause problems on hosts
11044 that allocate halves of EMACS_INT values separately.
11045 Reported by Dan Horák. Diagnosed by Andreas Schwab in
11046 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=10780#30>.
11047 * mem-limits.h (EXCEEDS_LISP_PTR): Define to 0 on hosts where
11048 UINTPTR_MAX >> VALBITS == 0. This is required by the above change;
11049 it avoids undefined behavior on hosts where shifting right by more
11050 than the word width has undefined behavior.
11051
11052 2012-02-19 Chong Yidong <cyd@gnu.org>
11053
11054 * fileio.c (Ffile_name_directory, Ffile_name_nondirectory)
11055 (Funhandled_file_name_directory, Ffile_name_as_directory)
11056 (Fdirectory_file_name, Fexpand_file_name)
11057 (Fsubstitute_in_file_name): Protect against invalid file handler
11058 return values (Bug#10845).
11059
11060 2012-02-18 Eli Zaretskii <eliz@gnu.org>
11061
11062 * .gdbinit (pitx): Fix incorrect references to fields of the
11063 iterator stack.
11064
11065 2012-02-17 Chong Yidong <cyd@gnu.org>
11066
11067 * syntax.c (Fscan_lists): Doc fix (Bug#10833).
11068
11069 2012-02-15 Paul Eggert <eggert@cs.ucla.edu>
11070
11071 * image.c (MAX_IMAGE_SIZE): Increase from 6.0 to 10.0; see
11072 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00540.html>.
11073
11074 2012-02-15 Chong Yidong <cyd@gnu.org>
11075
11076 * eval.c (Fdefvar, Fdefconst): Doc fix; note that the variable is
11077 marked as special. Also, starting docstrings with * is obsolete.
11078
11079 2012-02-13 Andreas Schwab <schwab@linux-m68k.org>
11080
11081 * gnutls.c (emacs_gnutls_write): Fix last change.
11082
11083 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
11084
11085 * gnutls.c (emacs_gnutls_write): Set errno appropriately for
11086 send_process.
11087
11088 2012-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
11089
11090 * keymap.c (Fsingle_key_description): Handle char ranges.
11091
11092 2012-02-12 Chong Yidong <cyd@gnu.org>
11093
11094 * xdisp.c (handle_stop): Avoid assigning -1 to it->face_id here,
11095 as that creates a dangerous corner case.
11096
11097 * window.c (Fdelete_window_internal): Invalidate the mouse
11098 highlight (Bug#9904).
11099
11100 2012-02-12 Glenn Morris <rgm@gnu.org>
11101
11102 * xselect.c (Fx_own_selection_internal)
11103 (Fx_get_selection_internal, Fx_disown_selection_internal)
11104 (Fx_selection_owner_p, Fx_selection_exists_p): Doc fixes.
11105 * nsselect.m (Fx_own_selection_internal)
11106 (Fx_disown_selection_internal, Fx_selection_exists_p)
11107 (Fx_selection_owner_p, Fx_get_selection_internal):
11108 Sync docs and argument specs with the xselect.c versions.
11109
11110 2012-02-11 Lars Ingebrigtsen <larsi@gnus.org>
11111
11112 * gnutls.c (emacs_gnutls_write): Don't infloop if sendto fails.
11113
11114 2012-02-11 Eli Zaretskii <eliz@gnu.org>
11115
11116 * w32select.c (Fx_selection_exists_p): Sync doc string and
11117 argument list with xselect.c. (Bug#10783)
11118
11119 * w16select.c (Fx_selection_exists_p): Sync doc string and
11120 argument list with xselect.c. (Bug#10783)
11121
11122 2012-02-10 Glenn Morris <rgm@gnu.org>
11123
11124 * fns.c (Fsecure_hash): Doc fix.
11125
11126 2012-02-09 Kenichi Handa <handa@m17n.org>
11127
11128 * coding.c (produce_chars): Fix updating of src_end (Bug#10701).
11129
11130 2012-02-07 Chong Yidong <cyd@gnu.org>
11131
11132 * buffer.c (Fbuffer_local_variables)
11133 (buffer_lisp_local_variables): Handle unbound vars correctly;
11134 don't let Qunbound leak into Lisp.
11135
11136 2012-02-07 Glenn Morris <rgm@gnu.org>
11137
11138 * image.c (Fimagemagick_types): Doc fix.
11139
11140 * image.c (imagemagick-render-type): Change it from a lisp object
11141 to an integer. Move the doc here from the lisp manual.
11142 Treat all values not equal to 0 the same.
11143
11144 2012-02-06 Chong Yidong <cyd@gnu.org>
11145
11146 * doc.c (store_function_docstring): Avoid applying docstring of
11147 alias to base function (Bug#2603).
11148
11149 2012-02-04 Andreas Schwab <schwab@linux-m68k.org>
11150
11151 * .gdbinit (pp1, pv1): Remove redundant defines.
11152 (pr): Use pp.
11153
11154 2012-02-04 Chong Yidong <cyd@gnu.org>
11155
11156 * nsterm.m: Declare a global (Bug#10694).
11157
11158 2012-02-04 Eli Zaretskii <eliz@gnu.org>
11159
11160 * w32.c (get_emacs_configuration_options):
11161 Include --enable-checking, if specified, in the return value.
11162
11163 2012-02-04 Martin Rudalics <rudalics@gmx.at>
11164
11165 * dispnew.c (change_frame_size_1): Calculate new_frame_total_cols
11166 after rounding frame sizes. (Bug#9723)
11167
11168 2012-02-04 Eli Zaretskii <eliz@gnu.org>
11169
11170 * keyboard.c (adjust_point_for_property): Don't position point
11171 before BEGV. (Bug#10696)
11172
11173 2012-02-03 Paul Eggert <eggert@cs.ucla.edu>
11174
11175 Handle overflow when computing char display width (Bug#9496).
11176 * character.c (char_width): Return EMACS_INT, not int.
11177 (char_width, c_string_width): Check for overflow when
11178 computing the width; this is possible now that individual
11179 characters can have unbounded width. Problem introduced
11180 by merge from Emacs 23 on 2012-01-19.
11181
11182 2012-02-02 Michael Albinus <michael.albinus@gmx.de>
11183
11184 * dbusbind.c (Fdbus_register_method): Mention the return value
11185 :ignore in the docstring.
11186
11187 2012-02-02 Glenn Morris <rgm@gnu.org>
11188
11189 * callproc.c (Fcall_process, Fcall_process_region): Doc fix.
11190
11191 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
11192 Unconditionally set to t. (Bug#10673)
11193 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
11194 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
11195 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Doc fix.
11196
11197 2012-02-02 Kenichi Handa <handa@m17n.org>
11198
11199 (x_produce_glyphs): Cancel previous change. If cmp->glyph_len is
11200 0, do not call append_composite_glyph.
11201
11202 2012-02-02 Kenichi Handa <handa@m17n.org>
11203
11204 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING): Initialize first_s to
11205 NULL (Bug#6988).
11206 (x_produce_glyphs): If the component of a composition is a null
11207 string, set it->pixel_width to 1 to avoid zero-width glyph.
11208
11209 2012-02-01 Eli Zaretskii <eliz@gnu.org>
11210
11211 * ralloc.c (resize_bloc, r_alloc_sbrk): Don't call memmove if its
11212 first 2 arguments are identical. This makes inserting large
11213 output from a subprocess an order of magnitude faster on
11214 MS-Windows, where all sbrk'ed memory is always contiguous.
11215
11216 2012-01-31 Glenn Morris <rgm@gnu.org>
11217
11218 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
11219 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
11220 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Sync docs.
11221
11222 2012-01-29 Glenn Morris <rgm@gnu.org>
11223
11224 * gnutls.c (syms_of_gnutls): More doc (from etc/NEWS).
11225
11226 2012-01-28 Samuel Thibault <sthibault@debian.org> (tiny change)
11227
11228 * s/gnu.h: Define POSIX_SIGNALS (Bug#10552).
11229
11230 2012-01-28 Chong Yidong <cyd@gnu.org>
11231
11232 * minibuf.c (syms_of_minibuf): Doc fix (Bug#10550).
11233
11234 2012-01-26 Chong Yidong <cyd@gnu.org>
11235
11236 * keyboard.c (Vecho_keystrokes): Document zero value (Bug#10503).
11237
11238 * search.c (Fsearch_forward, Fsearch_backward): Document negative
11239 repeat counts (Bug#10507).
11240
11241 2012-01-26 Glenn Morris <rgm@gnu.org>
11242
11243 * lread.c (syms_of_lread): Doc fix.
11244
11245 2012-01-25 HIROSHI OOTA <nil@mad.dog.cx> (tiny change)
11246
11247 * coding.c (encode_designation_at_bol): Change return value to
11248 EMACS_INT.
11249
11250 2012-01-25 Chong Yidong <cyd@gnu.org>
11251
11252 * eval.c (Fuser_variable_p): Doc fix; mention custom-variable-p.
11253
11254 2012-01-21 Chong Yidong <cyd@gnu.org>
11255
11256 * floatfns.c (Fcopysign): Make the second argument non-optional,
11257 since nil is not allowed anyway.
11258
11259 2012-01-21 Andreas Schwab <schwab@linux-m68k.org>
11260
11261 * process.c (read_process_output): Use p instead of XPROCESS (proc).
11262 (send_process): Likewise.
11263
11264 2012-01-19 Martin Rudalics <rudalics@gmx.at>
11265
11266 * window.c (save_window_save, Fcurrent_window_configuration)
11267 (Vwindow_persistent_parameters): Do not use Qstate.
11268 Rewrite doc-strings.
11269
11270 2012-01-19 Kenichi Handa <handa@m17n.org>
11271
11272 * character.c (char_width): New function.
11273 (Fchar_width, c_string_width, lisp_string_width):
11274 Use char_width (Bug#9496).
11275
11276 2012-01-16 Martin Rudalics <rudalics@gmx.at>
11277
11278 * window.c (Vwindow_persistent_parameters): New variable.
11279 (Fset_window_configuration, save_window_save): Handle persistent
11280 window parameters.
11281
11282 2012-01-14 Eli Zaretskii <eliz@gnu.org>
11283
11284 * w32fns.c (signal_user_input): Don't do a QUIT, to avoid
11285 thrashing the stack of the thread. (Bug#9087)
11286
11287 2012-01-12 Paul Eggert <eggert@cs.ucla.edu>
11288
11289 * xdisp.c (rows_from_pos_range): Add parens as per gcc -Wparentheses.
11290
11291 2012-01-11 Eli Zaretskii <eliz@gnu.org>
11292
11293 * xdisp.c (rows_from_pos_range): Handle the case where the
11294 highlight ends on a newline. (Bug#10464)
11295 (mouse_face_from_buffer_pos): Fix off-by-one error in calculating
11296 he end column for display of highlight that ends on a newline
11297 before a R2L line.
11298
11299 2012-01-11 Glenn Morris <rgm@gnu.org>
11300
11301 * lread.c (init_lread): If no-site-lisp, remove site-lisp dirs
11302 from load-path also when installation-directory is nil. (Bug#10208)
11303
11304 2012-01-10 Glenn Morris <rgm@gnu.org>
11305
11306 * emacs.c (syms_of_emacs) <installation-directory>: Doc fix.
11307
11308 * epaths.in (PATH_LOADSEARCH, PATH_EXEC, PATH_DATA, PATH_DOC):
11309 Update template values to be closer to their typical values these days.
11310
11311 2012-01-09 Eli Zaretskii <eliz@gnu.org>
11312
11313 * xdisp.c (rows_from_pos_range): Accept additional argument
11314 DISP_STRING, and accept any glyph in a row whose object is that
11315 string as eligible for mouse highlight. Fixes mouse highlight of
11316 display strings from overlays. (Bug#10464)
11317
11318 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
11319
11320 emacs: fix an auto-save permissions race condition (Bug#10400)
11321 * fileio.c (auto_saving_dir_umask): New static var.
11322 (Fmake_directory_internal): Use it.
11323 (do_auto_save_make_dir): Set it, instead of invoking chmod after
11324 creating the directory. The old code temporarily assigns
11325 too-generous permissions to the directory.
11326 (do_auto_save_eh): Clear it.
11327 (Fdo_auto_save): Catch all errors, not just file errors, so
11328 that the var is always cleared.
11329
11330 2012-01-07 Eli Zaretskii <eliz@gnu.org>
11331
11332 * search.c (scan_buffer): Pass character positions to
11333 know_region_cache, not byte positions. (Bug#6540)
11334
11335 2012-01-07 LynX <_LynX@bk.ru> (tiny change)
11336
11337 * w32.c (sys_rename): Report EXDEV when rename of a directory
11338 fails because the target is on another logical disk. (Bug#10284)
11339
11340 2012-01-07 David Benjamin <davidben@mit.edu> (tiny change)
11341
11342 * xterm.c (x_embed_request_focus): New function.
11343
11344 * xterm.h: Add prototype.
11345
11346 * xfns.c (Fx_focus_frame): Use it for embedded frames (Bug#9977).
11347
11348 2012-01-05 Glenn Morris <rgm@gnu.org>
11349
11350 * emacs.c (emacs_copyright): Update short copyright year to 2012.
11351
11352 2012-01-01 Eli Zaretskii <eliz@gnu.org>
11353
11354 * gnutls.c (init_gnutls_functions): Load gnutls_check_version.
11355 Load gnutls_transport_set_lowat only if GnuTLS version is below
11356 2.11.1.
11357 (emacs_gnutls_handshake): Call gnutls_transport_set_lowat only for
11358 GnuTLS versions below 2.11.1.
11359
11360 2011-12-31 Antoine Levitt <antoine.levitt@gmail.com>
11361
11362 * xdisp.c (syms_of_xdisp) <window-scroll-functions>: Add warning
11363 to the doc string advising against its use for altering the way
11364 windows are scrolled.
11365
11366 2011-12-28 Kenichi Handa <handa@m17n.org>
11367
11368 * coding.c (Fdefine_coding_system_internal): Make an utf-8 base
11369 coding-system ASCII compatible only when it does not produce BOM
11370 on encoding (Bug#10383).
11371
11372 2011-12-26 Jan Djärv <jan.h.d@swipnet.se>
11373
11374 * xmenu.c (x_menu_wait_for_event): Use xg_select for Gtk3 so menus
11375 can scroll.
11376 (create_and_show_popup_menu): Always use menu_position_func for
11377 Gtk3 (Bug#10361).
11378
11379 2011-12-24 Andreas Schwab <schwab@linux-m68k.org>
11380
11381 * callint.c (Fcall_interactively): Don't truncate prompt string.
11382
11383 2011-12-23 Eli Zaretskii <eliz@gnu.org>
11384
11385 * xdisp.c (handle_invisible_prop): Handle correctly an invisible
11386 property that ends at ZV, so that the bidi iteration could be
11387 resumed from there (after widening). (Bug#10360)
11388
11389 2011-12-22 Jan Djärv <jan.h.d@swipnet.se>
11390
11391 * nsfont.m (ns_spec_to_descriptor): Do not autorelease fdesc.
11392
11393 2011-12-21 Jan Djärv <jan.h.d@swipnet.se>
11394
11395 * nsterm.m (x_free_frame_resources):
11396 Release f->output_data.ns->miniimage.
11397 (ns_index_color): Fix indentation. Do not retain
11398 color_table->colors[i].
11399
11400 * nsmenu.m (ns_update_menubar): Call free_menubar_widget_value_tree
11401 before returning.
11402
11403 * nsfns.m (x_set_background_color): Assign return value from
11404 ns_index_color to face-background instead of NSColor*.
11405 (ns_implicitly_set_icon_type): Fix indentation.
11406 Change assignment in for loop to comparison.
11407
11408 * emacs.c (ns_pool): New variable.
11409 (main): Assign ns_pool.
11410 (Fkill_emacs): Call ns_release_autorelease_pool.
11411
11412 * nsfont.m (ns_spec_to_descriptor): Fix indentation,
11413 autorelease fdesc, release fdAttrs and tdict.
11414 (ns_get_covering_families): Release charset.
11415 (ns_findfonts): Release NSFontDescriptor created with new.
11416 (ns_uni_to_glyphs): Fix indentation.
11417 (setString): Release attrStr before assigning new value.
11418
11419 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
11420
11421 * nsmenu.m (NSMenuDidBeginTrackingNotification): Declare if OSX < 10.5
11422 and NS_IMPL_COCOA.
11423 (trackingNotification): Surround with ifdef NS_IMPL_COCOA.
11424 (syms_of_nsmenu): Set trackingMenu to 1 if not NS_IMPL_COCOA.
11425
11426 2011-12-18 David Reitter <reitter@cmu.edu>
11427
11428 * nsterm.m (ns_term_init): Subscribe for notifications
11429 NSMenuDidBeginTrackingNotification and NSMenuDidEndTrackingNotification
11430 to method trackingNotification in EmacsMenu.
11431
11432 * nsmenu.m (trackingMenu): New variable.
11433 (trackingNotification): New method (from Aquamacs).
11434 (menuNeedsUpdate): Expand comment and return if trackingMenu is 0,
11435 from Aquamacs (Bug#7030).
11436
11437 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
11438
11439 * nsselect.m (CUT_BUFFER_SUPPORT): Remove define.
11440 (symbol_to_nsstring): Fix indentation.
11441 (ns_symbol_to_pb): New function.
11442 (Fns_get_selection_internal): Rename from Fns_get_cut_buffer_internal.
11443 (Fns_rotate_cut_buffers_internal): Remove.
11444 (Fns_store_selection_internal): Rename from
11445 Fns_store_cut_buffer_internal.
11446 (ns_get_foreign_selection, Fx_own_selection_internal)
11447 (Fx_disown_selection_internal, Fx_selection_exists_p)
11448 (Fns_get_selection_internal, Fns_store_selection_internal):
11449 Use ns_symbol_to_pb and check if return value is nil.
11450 (syms_of_nsselect): Remove ifdef CUT_BUFFER_SUPPORT. Remove defsubr
11451 Sns_rotate_cut_buffers_internal. Sns_get_cut_buffer_internal
11452 renamed to Sns_get_selection_internal, Sns_store_cut_buffer_internal
11453 renamed to Sns_store_selection_internal.
11454 (ns_handle_selection_request): Move code to Fx_own_selection_internal
11455 and remove this function.
11456 (ns_handle_selection_clear): Remove, never used.
11457 (Fx_own_selection_internal): Move code from ns_handle_selection_request
11458 here.
11459
11460 2011-12-17 Ken Brown <kbrown@cornell.edu>
11461
11462 * fileio.c (check_writable) [CYGWIN]: Return non-zero if UID or
11463 GID is unknown (Bug#10257).
11464
11465 2011-12-17 Paul Eggert <eggert@cs.ucla.edu>
11466
11467 * s/gnu-linux.h: Fix mark_memory typo (Bug#10286).
11468 (GC_MARK_SECONDARY_STACK): Omit removed 3rd arg to mark_memory,
11469 which caused a build failure on GNU/Linux IA-64. This problem was
11470 introduced by my 2011-10-07 patch.
11471
11472 2011-12-15 Juri Linkov <juri@jurta.org>
11473
11474 * image.c (imagemagick_error): New function. (Bug#10112)
11475 (imagemagick_load_image): Comment out `MagickSetResolution' call.
11476 Use `imagemagick_error' where ImageMagick functions return
11477 `MagickFalse'.
11478 (Fimagemagick_types): Add `Fnreverse' to return the list in the
11479 proper order.
11480
11481 2011-12-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11482
11483 * xftfont.c (xftfont_draw): Use the font metrics of s->font to
11484 fill background (Bug#8992).
11485
11486 2011-12-13 Martin Rudalics <rudalics@gmx.at>
11487
11488 * window.c (Vwindow_combination_resize)
11489 (Vwindow_combination_limit): Use t instead of non-nil in
11490 doc-strings.
11491 (Vrecenter_redisplay): Add first sentence of doc-string on
11492 separate line.
11493 (Frecenter): Fix doc-string typo.
11494
11495 2011-12-11 Kenichi Handa <handa@m17n.org>
11496
11497 * coding.c (Funencodable_char_position): Pay attention to the
11498 buffer text relocation (Bug#9389).
11499
11500 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
11501
11502 * xterm.c (x_term_init): Move call to gdk_window_add_filter before
11503 gtk_init (Bug#10100).
11504
11505 2011-12-10 Eli Zaretskii <eliz@gnu.org>
11506
11507 * xdisp.c (RECORD_MAX_MIN_POS): Use IT->cmp_it.charpos only if
11508 IT->string is nil. (Bug#10263)
11509
11510 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
11511
11512 * nsterm.h (x_free_frame_resources): Declare.
11513
11514 * nsfns.m (ns_get_defaults_value): New function (Bug#10103).
11515 (Fns_get_resource, x_get_string_resource): Call ns_get_defaults_value.
11516
11517 * nsterm.h (ns_get_defaults_value): Declare.
11518
11519 * nsterm.m (ns_default): Call ns_get_defaults_value.
11520
11521 2011-12-09 Eli Zaretskii <eliz@gnu.org>
11522
11523 * xdisp.c (try_scrolling): Don't set scroll_down_p if dy is zero.
11524 (Bug#10170)
11525
11526 2011-12-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11527
11528 * unexelf.c (unexec) [NS_IMPL_GNUSTEP]: Take account of the case
11529 that where the value of an _OBJC_* symbol points to is in the .bss
11530 section (Bug#10240).
11531
11532 2011-12-08 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
11533
11534 * coding.c (encode_coding_ccl): Check (charbuf < charbuf_end)
11535 after the loop to call ccl_driver at least once (Bug#8619).
11536
11537 2011-12-08 Kenichi Handa <handa@m17n.org>
11538
11539 * ftfont.c (get_adstyle_property): Fix previous change
11540 (Bug#10233).
11541
11542 2011-12-07 Juanma Barranquero <lekktu@gmail.com>
11543
11544 * w32.c (init_environment): If no_site_lisp, remove site-lisp
11545 dirs from the default value of EMACSLOADPATH (bug#10208).
11546
11547 2011-12-07 Glenn Morris <rgm@gnu.org>
11548
11549 * lread.c (init_lread): If no_site_lisp, exclude site-lisp/ in
11550 installation and source directories as well. (Bug#10208)
11551
11552 2011-12-06 Chong Yidong <cyd@gnu.org>
11553
11554 * minibuf.c (Fread_from_minibuffer): Doc fix (Bug#10228).
11555
11556 2011-12-06 Glenn Morris <rgm@gnu.org>
11557
11558 * process.c (start_process_unwind): Treat any pid <= 0, except -2,
11559 as an error, not just -1. (Bug#10217)
11560
11561 2011-12-05 Chong Yidong <cyd@gnu.org>
11562
11563 * keyboard.c (process_special_events): New function.
11564 (swallow_events, Finput_pending_p): Use it (Bug#10195).
11565
11566 2011-12-05 Paul Eggert <eggert@cs.ucla.edu>
11567
11568 * coding.c (encode_designation_at_bol): Don't use uninitialized
11569 local variable (Bug#9318).
11570
11571 2011-12-05 Kenichi Handa <handa@m17n.org>
11572
11573 * ftfont.c (get_adstyle_property): If the font is not BDF nor PCF,
11574 return Qnil (Bug#8046, Bug#10193).
11575
11576 2011-12-05 Kenichi Handa <handa@m17n.org>
11577
11578 * coding.c (encode_designation_at_bol): New args charbuf_end and
11579 dst. Return the number of produced bytes. Callers changed.
11580 (coding_set_source): Return how many bytes coding->source was
11581 relocated.
11582 (coding_set_destination): Return how many bytes
11583 coding->destination was relocated.
11584 (CODING_DECODE_CHAR, CODING_ENCODE_CHAR, CODING_CHAR_CHARSET)
11585 (CODING_CHAR_CHARSET_P): Adjust for the avove changes.
11586
11587 2011-12-05 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
11588
11589 * coding.c (CODING_CHAR_CHARSET_P): New macro.
11590 (encode_coding_emacs_mule, encode_coding_iso_2022): Use the above
11591 macro (Bug#9318).
11592
11593 2011-12-05 Andreas Schwab <schwab@linux-m68k.org>
11594
11595 The following changes are to fix Bug#9318.
11596
11597 * coding.c (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET): New macros.
11598 (encode_coding_emacs_mule, ENCODE_ISO_CHARACTER)
11599 (encode_coding_iso_2022, encode_coding_sjis)
11600 (encode_coding_big5, encode_coding_charset): Use the above macros.
11601
11602 2011-12-05 Juanma Barranquero <lekktu@gmail.com>
11603
11604 * lisp.h (process_quit_flag): Fix external declaration.
11605
11606 2011-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
11607
11608 Don't macro-inline non-performance-critical code.
11609 * eval.c (process_quit_flag): New function.
11610 * lisp.h (QUIT): Use it.
11611
11612 2011-12-04 Jan Djärv <jan.h.d@swipnet.se>
11613
11614 * nsfns.m (get_geometry_from_preferences): New function.
11615 (Fx_create_frame): Call get_geometry_from_preferences (Bug#10103).
11616
11617 2011-12-04 Andreas Schwab <schwab@linux-m68k.org>
11618
11619 * emacs.c (Qkill_emacs): Define.
11620 (syms_of_emacs): Initialize it.
11621 * keyboard.c (interrupt_signal): Don't call Fkill_emacs here, set
11622 Qquit_flag to `kill-emacs' instead.
11623 (quit_throw_to_read_char): Add parameter `from_signal'.
11624 All callers changed. Call Fkill_emacs if requested and safe.
11625 * lisp.h (QUIT): Call Fkill_emacs if requested.
11626
11627 2011-12-03 Jan Djärv <jan.h.d@swipnet.se>
11628
11629 * widget.c (update_wm_hints): Return if wmshell is null.
11630 (widget_update_wm_size_hints): New function.
11631
11632 * widget.h (widget_update_wm_size_hints): Declare.
11633
11634 * xterm.c (x_wm_set_size_hint): If USE_X_TOOLKIT, call
11635 widget_update_wm_size_hints (Bug#10104).
11636
11637 2011-12-03 Eli Zaretskii <eliz@gnu.org>
11638
11639 * xdisp.c (handle_invisible_prop): If the invisible text ends just
11640 before a newline, prepare the bidi iterator for consuming the
11641 newline, and keep the current paragraph direction. (Bug#10183)
11642 (redisplay_window): Don't let `margin' become negative. (Bug#10192)
11643
11644 2011-12-02 Juri Linkov <juri@jurta.org>
11645
11646 * search.c (Fword_search_regexp): New Lisp function created from
11647 `wordify'. Change type of arg `lax' from `int' to `Lisp_Object'.
11648 (Fword_search_backward, Fword_search_forward)
11649 (Fword_search_backward_lax, Fword_search_forward_lax):
11650 Use `Fword_search_regexp' instead of `wordify'. Doc fix.
11651 (syms_of_search): Define `Sword_search_regexp'. (Bug#10145)
11652
11653 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
11654
11655 * fileio.c (Finsert_file_contents): Move after-change-function call
11656 to before the "handled:" label, since all "goto handled" appear in
11657 cases where the *-change-functions have already been properly called
11658 (bug#10117).
11659
11660 2011-12-01 Andreas Schwab <schwab@linux-m68k.org>
11661
11662 * keyboard.c (interrupt_signal): Don't call kill-emacs when
11663 waiting for input. (Bug#10169)
11664
11665 2011-11-30 Eli Zaretskii <eliz@gnu.org>
11666
11667 * dispnew.c (adjust_glyph_matrix): Remove the assertion that
11668 verifies glyph row's hash code--we have just reallocated the
11669 glyphs, so their contents can be complete garbage. (Bug#10164)
11670
11671 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
11672
11673 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Add missing check.
11674
11675 2011-11-30 Eli Zaretskii <eliz@gnu.org>
11676
11677 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Ensure ROW's
11678 attributes are tested _before_ calling verify_row_hash, to protect
11679 against GCC re-ordering of the tests. (Bug#10164)
11680
11681 2011-11-29 Jan Djärv <jan.h.d@swipnet.se>
11682
11683 * xterm.h (struct x_output): net_wm_state_hidden_seen is new.
11684
11685 * xterm.c (handle_one_xevent): Only set async_visible and friends
11686 if net_wm_state_hidden_seen is non-zero (Bug#10002)
11687 (get_current_wm_state): Set net_wm_state_hidden_seen to 1 if
11688 _NET_WM_STATE_HIDDEN is in NET_WM_STATE.
11689
11690 2011-11-28 Paul Eggert <eggert@cs.ucla.edu>
11691
11692 Remove GCPRO-related macros that exist only to avoid shadowing locals.
11693 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR)
11694 (GCPRO6_VAR, UNGCPRO_VAR): Remove. See
11695 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
11696 All uses changed to use GCPRO1 etc.
11697 (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6, UNGCPRO):
11698 Revert to old implementation (i.e., before 2011-03-11).
11699
11700 2011-11-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11701
11702 * dispnew.c (scrolling_window): Truncate overlaps in copy destination
11703 of scroll runs so as to avoid assigning disabled bogus rows and
11704 unnecessary graphics copy operations.
11705
11706 2011-11-27 Eli Zaretskii <eliz@gnu.org>
11707
11708 * s/ms-w32.h (utimbuf) [_MSC_VER]: Don't define.
11709 (snprintf) [_MSC_VER]: Redirect to _snprintf.
11710 (strtoll) [_MSC_VER]: Redirect to _strtoi64.
11711 (malloc, free, realloc, calloc): Redirect to e_* only when
11712 compiling Emacs.
11713
11714 * lisp.h (GCTYPEBITS): Move before first use.
11715 (ALIGN_GCTYPEBITS) [_MSC_VER]: Define.
11716 (DECL_ALIGN) [_MSC_VER]: Use it, as MSVC doesn't like bit ops in
11717 this macro definition.
11718
11719 * s/ms-w32.h (tzname): Redirect to _tzname for all values of
11720 _MSC_VER.
11721
11722 2011-11-27 Jan Djärv <jan.h.d@swipnet.se>
11723
11724 * gtkutil.c (xg_create_frame_widgets):
11725 Call gtk_window_set_has_resize_grip (FALSE) if that function is
11726 present with Gtk+ 2.0.
11727
11728 2011-11-26 Paul Eggert <eggert@cs.ucla.edu>
11729
11730 * fileio.c (Finsert_file_contents): Undo previous change; see
11731 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
11732
11733 2011-11-26 Paul Eggert <eggert@cs.ucla.edu>
11734
11735 Rename locals to avoid shadowing.
11736 * fileio.c (Finsert_file_contents):
11737 Rename inner 'gcpro1' to 'inner_gcpro1' to avoid shadowing.
11738 * process.c (wait_reading_process_output):
11739 Rename inner 'proc' to 'p' to avoid shadowing.
11740 Indent for consistency with usual Emacs style.
11741
11742 2011-11-25 Eli Zaretskii <eliz@gnu.org>
11743
11744 * xdisp.c (redisplay_window): If cursor row is not fully visible
11745 after recentering, and scroll-conservatively is set to a large
11746 number, scroll window by a few more lines to make the cursor fully
11747 visible and out of scroll-margin. (Bug#10105)
11748 (start_display): Don't move to the next line if the display should
11749 start at a newline that is part of a display vector or an overlay
11750 string. (Bug#10119)
11751
11752 2011-11-24 Juri Linkov <juri@jurta.org>
11753
11754 * image.c (imagemagick_load_image): Move `MagickSetResolution' down
11755 after the `MagickPingImage' call. (Bug#10112)
11756
11757 2011-11-23 Chong Yidong <cyd@gnu.org>
11758
11759 * window.c (Fcoordinates_in_window_p): Accept only live windows.
11760
11761 2011-11-23 Martin Rudalics <rudalics@gmx.at>
11762
11763 * buffer.c (Fkill_buffer): Run replace_buffer_in_windows before
11764 making another buffer current. (Bug#10114)
11765
11766 2011-11-23 Glenn Morris <rgm@gnu.org>
11767
11768 * font.c (font_find_for_lface) [HAVE_NS]: Ignore case. (Bug#2526)
11769
11770 2011-11-23 Chong Yidong <cyd@gnu.org>
11771
11772 * xdisp.c (compute_stop_pos): Check validity of end_charpos before
11773 using it (Bug#5984).
11774
11775 2011-11-22 Eli Zaretskii <eliz@gnu.org>
11776
11777 * dispnew.c (adjust_glyph_matrix): Don't verify hash code of mode-
11778 and header-lines, as they don't have one computed for them.
11779 (Bug#10098)
11780
11781 * .gdbinit (prow): Make displayed values more self-explaining.
11782 Add row's hash code.
11783
11784 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
11785
11786 * process.c (wait_reading_process_output): Fix asynchrounous
11787 GnuTLS socket handling on some versions of the GnuTLS library.
11788 (wait_reading_process_output): Add comment and URL.
11789
11790 2011-11-21 Jan Djärv <jan.h.d@swipnet.se>
11791
11792 * xterm.c (x_clear_frame): Reinstate the XClearWindow call.
11793
11794 2011-11-21 Chong Yidong <cyd@gnu.org>
11795
11796 * window.c (Fnext_window, Fprevious_window): Doc fix.
11797
11798 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
11799
11800 * window.c (get_phys_cursor_glyph): Fix Lisp_Object/int mixup.
11801
11802 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
11803
11804 * nsfont.m (syms_of_nsfont) <ns-reg-to-script>: Fix typo.
11805
11806 2011-11-20 Martin Rudalics <rudalics@gmx.at>
11807
11808 * window.c (Fset_window_combination_limit): Rename argument
11809 STATUS to LIMIT.
11810 (Vwindow_combination_limit): Remove "status" from doc-string.
11811
11812 2011-11-20 Andreas Schwab <schwab@linux-m68k.org>
11813
11814 * m/ibms390.h: Remove.
11815 * m/ibms390x.h: Don't include "ibms390.h".
11816
11817 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
11818
11819 * fileio.c (Finsert_file_contents): Add missing gcpro1 variable.
11820 Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
11821
11822 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
11823
11824 * casetab.c (Fset_case_table):
11825 * charset.c (Fcharset_after): Fix typos.
11826
11827 2011-11-20 Paul Eggert <eggert@cs.ucla.edu>
11828
11829 Standardize on VIRT_ADDR_VARIES behavior (Bug#10042).
11830 Otherwise, valgrind does not work on some platforms.
11831 Problem reported by Andreas Schwab in
11832 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00081.html>.
11833 * puresize.h (pure, PURE_P): Always behave as if VIRT_ADDR_VARIES
11834 is set, removing the need for VIRT_ADDRESS_VARIES.
11835 (PURE_P): Use a more-efficient implementation that needs just one
11836 comparison, not two: on x86-64 with GCC 4.6.2, this cut down the
11837 number of instructions from 6 (xorl, cmpq, jge, xorl, cmpq, setge)
11838 to 4 (xorl, subq, cmpq, setbe).
11839 * alloc.c (pure): Always extern now, since that's the
11840 VIRT_ADDR_VARIES behavior.
11841 (PURE_POINTER_P): Use a single comparison, not two, for
11842 consistency with the new puresize.h.
11843 * lisp.h (PNTR_COMPARISON_TYPE): Remove; no longer needed.
11844 * m/ibms390.h, m/intel386.h, m/template.h, s/cygwin.h, s/hpux10-20.h:
11845 Remove VIRT_ADDR_VARIES no longer needed.
11846
11847 2011-11-19 Eli Zaretskii <eliz@gnu.org>
11848
11849 * xdisp.c (x_write_glyphs, draw_phys_cursor_glyph)
11850 (erase_phys_cursor, update_window_cursor, show_mouse_face)
11851 (cursor_in_mouse_face_p): If the cursor position is out of bounds,
11852 behave as if the cursor position were at the window margin.
11853
11854 * window.c (get_phys_cursor_glyph): If the window is hscrolled,
11855 and the cursor position is out of bounds, behave as if the cursor
11856 position were at the window margin. (Bug#10075)
11857
11858 2011-11-18 Chong Yidong <cyd@gnu.org>
11859
11860 * window.c (Fwindow_combination_limit): Make first argument
11861 non-optional, since it is meaningless for live windows like the
11862 selected window.
11863
11864 2011-11-18 Dmitry Antipov <dmantipov@yandex.ru>
11865
11866 * keymap.c (Fwhere_is_internal): Add missing RETURN_UNGCPROs.
11867
11868 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
11869
11870 * intervals.c: Fix grafting over the whole buffer (bug#10071).
11871 (graft_intervals_into_buffer): Simplify.
11872
11873 2011-11-18 Eli Zaretskii <eliz@gnu.org>
11874
11875 * dispnew.c (swap_glyph_pointers): Swap the used[] arrays and the
11876 hash values of the two rows.
11877 (copy_row_except_pointers): Preserve the used[] arrays and the
11878 hash values of the two rows. (Bug#10035)
11879 (add_row_entry): Add xassert to verify that ROW's hash code is valid.
11880
11881 * xdisp.c (row_hash): New function, body extracted from
11882 compute_line_metrics.
11883 (compute_line_metrics): Call row_hash, instead of computing the
11884 hash code inline.
11885
11886 * dispnew.c (verify_row_hash): Call row_hash for computing the
11887 hash code of a row, instead of duplicating code from xdisp.c.
11888
11889 * dispextern.h (row_hash): Add prototype.
11890
11891 2011-11-18 Tassilo Horn <tassilo@member.fsf.org>
11892
11893 * frame.c (delete_frame): Don't delete the terminal when the last
11894 X frame is closed if emacs is built with GTK toolkit.
11895
11896 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
11897
11898 * window.c (syms_of_window) <window-combination-resize>: Fix typo.
11899
11900 2011-11-17 Martin Rudalics <rudalics@gmx.at>
11901
11902 * window.c (Vwindow_splits): Rename to
11903 Vwindow_combination_resize. Suggested by Juri Linkov.
11904 (Fsplit_window_internal): Use Vwindow_combination_resize instead
11905 of Vwindow_splits.
11906
11907 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
11908
11909 * nsfns.m (Fns_font_name):
11910 * window.c (syms_of_window) <window-combination-limit>: Fix typos.
11911
11912 2011-11-16 Martin Rudalics <rudalics@gmx.at>
11913
11914 * window.h (window): Rename slot "nest" to "combination_limit".
11915 * window.c (Fwindow_nest): Rename to Fwindow_combination_limit.
11916 (Fset_window_nest): Rename to Fset_window_combination_limit.
11917 (Vwindow_nest): Rename to Vwindow_combination_limit.
11918 (recombine_windows, make_parent_window, make_window)
11919 (Fsplit_window_internal, saved_window)
11920 (Fset_window_configuration, save_window_save): Rename all
11921 occurrences of window_nest to window_combination_limit.
11922
11923 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
11924
11925 * image.c (imagemagick_load_image): Fix typo.
11926
11927 2011-11-14 Eli Zaretskii <eliz@gnu.org>
11928
11929 * xdisp.c (display_line): Move the call to
11930 highlight_trailing_whitespace before the call to
11931 compute_line_metrics, since the latter needs to see the final
11932 faces of all the glyphs to compute ROW's hash value.
11933 Fixes assertion violations in row_equal_p. (Bug#10035)
11934
11935 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
11936
11937 * w32proc.c (reader_thread): Don't check pending input if cp->fd < 0,
11938 just return (bug#10044).
11939
11940 2011-11-12 Eli Zaretskii <eliz@gnu.org>
11941
11942 * makefile.w32-in (HEAPSIZE): New variable, allows to build temacs
11943 with user-defined heap size. Bump the default size of the temacs
11944 heap to 27MB, to avoid memory warning when running temacs.
11945 ($(TEMACS)): Use HEAPSIZE instead of a hardcoded value.
11946
11947 * dispnew.c (scrolling_window): Fix incorrect indices in accessing
11948 current_matrix and desired_matrix. (Bug#9990)
11949 (verify_row_hash) [XASSERTS]: New function.
11950 (adjust_glyph_matrix, row_equal_p): Use it in xassert to verify
11951 that the hash value of glyph rows is correct.
11952
11953 2011-11-12 Martin Rudalics <rudalics@gmx.at>
11954
11955 * window.h (window): Remove splits slot.
11956 * window.c (Fwindow_splits, Fset_window_splits): Remove.
11957 (Fdelete_other_windows_internal, make_parent_window)
11958 (make_window, Fsplit_window_internal, Fdelete_window_internal)
11959 (Fset_window_configuration, save_window_save): Don't deal with
11960 split status of windows.
11961 (saved_window): Remove splits slot.
11962 (Vwindow_splits): Rewrite doc-string.
11963
11964 2011-11-11 Jan Djärv <jan.h.d@swipnet.se>
11965
11966 * xfns.c (unwind_create_frame):
11967 * nsfns.m (unwind_create_frame):
11968 * w32fns.c (unwind_create_frame): Use Fmemq to check if frame is in
11969 Vframe_list (Bug#9999).
11970
11971 2011-11-11 Dmitry Antipov <dmantipov@yandex.ru>
11972
11973 * xdisp.c (syms_of_xdisp): Remove duplicated definition of Qtext.
11974
11975 2011-11-11 Kenichi Handa <handa@m17n.org>
11976
11977 * callproc.c (Fcall_process): Set the member dst_multibyte of
11978 process_coding.
11979
11980 2011-11-11 Johan Bockgård <bojohan@gnu.org>
11981
11982 * xdisp.c (fill_composite_glyph_string): Always set s->face, to
11983 avoid a crash (bug#9496).
11984
11985 2011-11-09 Chong Yidong <cyd@gnu.org>
11986
11987 * window.c (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
11988 (Fwindow_inside_absolute_pixel_edges): Only allow live windows.
11989
11990 2011-11-08 Paul Eggert <eggert@cs.ucla.edu>
11991
11992 * s/gnu.h (GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS (Bug#9926).
11993
11994 2011-11-08 Paul Eggert <eggert@cs.ucla.edu>
11995
11996 Avoid some portability problems by eschewing 'extern inline' functions.
11997 The trivial performance wins aren't worth the portability hassles; see
11998 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>
11999 et seq.
12000 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
12001 (window_box_width, window_box_left, window_box_left_offset)
12002 (window_box_right, window_box_right_offset): Undo previous change,
12003 by removing the "extern"s.
12004 * intervals.c (adjust_intervals_for_insertion)
12005 (adjust_intervals_for_deletion): Undo previous change,
12006 making these static again.
12007 (offset_intervals, temp_set_point_both, temp_set_point)
12008 (copy_intervals_to_string): No longer inline.
12009 * xdisp.c (window_text_bottom_y, window_box_width)
12010 (window_box_height, window_box_left_offset)
12011 (window_box_right_offset, window_box_left, window_box_right)
12012 (window_box): No longer inline.
12013
12014 2011-11-08 Chong Yidong <cyd@gnu.org>
12015
12016 * window.c (Fwindow_left_column, Fwindow_top_line): Doc fix.
12017 (Fwindow_body_height, Fwindow_body_width): Move from Lisp.
12018 Signal an error if not a live window.
12019 (Fwindow_total_width, Fwindow_total_height): Move from Lisp.
12020 (Fwindow_total_size, Fwindow_body_size): Move to Lisp.
12021
12022 2011-11-07 Juanma Barranquero <lekktu@gmail.com>
12023
12024 * lisp.h (syms_of_abbrev): Remove declaration.
12025 Reported by CHENG Gao <chenggao@royau.me>.
12026
12027 2011-11-07 Eli Zaretskii <eliz@gnu.org>
12028
12029 * w32.c (check_windows_init_file): Don't look for term/w32-win.el
12030 if Vpurify_flag is non-nil. Fixes a crash when running w32 build
12031 of temacs in GUI mode.
12032
12033 2011-11-07 Martin Rudalics <rudalics@gmx.at>
12034
12035 * window.h: Declare delete_all_child_windows instead of
12036 delete_all_subwindows.
12037 * window.c (Fwindow_nest, Fset_window_nest)
12038 (Fset_window_new_total, Fset_window_new_normal)
12039 (Fwindow_resize_apply): Don't use term subwindow in doc-strings.
12040 (delete_all_subwindows): Rename to delete_all_child_windows.
12041 (Fdelete_other_windows_internal, Fset_window_configuration):
12042 Call delete_all_child_windows instead of delete_all_subwindows.
12043 * frame.c (delete_frame): Call delete_all_child_windows instead
12044 of delete_all_subwindows.
12045
12046 2011-11-07 Paul Eggert <eggert@cs.ucla.edu>
12047
12048 * alloc.c (DEADP): New macro, for porting to GNU/Hurd (Bug#9926).
12049 This is also needed for porting to any host where GC_MARK_STACK is
12050 not GC_MAKE_GCPROS_NOOPS.
12051 (which_symbols): Use it.
12052
12053 2011-11-07 Kenichi Handa <handa@m17n.org>
12054
12055 * coding.c (coding_set_destination): Check coding->src_pos only
12056 when coding->src_object is a buffer (bug#9910).
12057
12058 * process.c (send_process): Set the member src_multibyte of coding
12059 to 0 (bug#9911) when sending a unibyte text.
12060
12061 * callproc.c (Fcall_process): Set the member src_multibyte of
12062 process_coding to 0 (bug#9912).
12063
12064 2011-11-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12065
12066 * xmenu.c (cleanup_widget_value_tree): New function.
12067 (xmenu_show, xdialog_show): Use it in record_unwind_protect instead of
12068 calling free_menubar_widget_value_tree directly (Bug#9830).
12069
12070 2011-11-06 Paul Eggert <eggert@cs.ucla.edu>
12071
12072 Fix some portability problems with 'inline'.
12073 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
12074 (window_box_width, window_box_left, window_box_left_offset)
12075 (window_box_right, window_box_right_offset): Declare extern.
12076 Otherwise, these inline functions do not conform to C99 and
12077 are miscompiled by Microsoft compilers. Reported by Eli Zaretskii in
12078 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>.
12079 * intervals.c (adjust_intervals_for_insertion)
12080 (adjust_intervals_for_deletion): Now extern, because otherwise the
12081 extern inline functions 'offset_intervals' couldn't refer to it.
12082 (static_offset_intervals): Remove.
12083 (offset_intervals): Rewrite using the old contents of
12084 static_offset_intervals. The old version didn't conform to C99
12085 because an extern inline function contained a reference to an
12086 identifier with static linkage.
12087
12088 2011-11-06 Andreas Schwab <schwab@linux-m68k.org>
12089
12090 * keyboard.c (interrupt_signal): Don't call kill-emacs while in
12091 GC.
12092
12093 2011-11-06 Eli Zaretskii <eliz@gnu.org>
12094
12095 * xdisp.c (init_iterator, reseat_to_string): Don't set the
12096 iterator's bidi_p flag if Vpurify_flag is non-nil. (Bug#9963)
12097 (Fcurrent_bidi_paragraph_direction): If Vpurify_flag is non-nil,
12098 return Qleft_to_right.
12099
12100 2011-11-06 Chong Yidong <cyd@gnu.org>
12101
12102 * window.c (Fwindow_live_p, Fwindow_frame, Fframe_root_window)
12103 (Fminibuffer_window, Fwindow_buffer, Fwindow_splits)
12104 (Fset_window_splits, Fwindow_nest, Fset_window_nest)
12105 (Fwindow_use_time, Fwindow_total_size, Fwindow_normal_size)
12106 (Fwindow_new_normal, Fwindow_left_column, Fwindow_top_line)
12107 (Fwindow_margins, Fwindow_fringes, Fwindow_scroll_bars)
12108 (Fwindow_vscroll): Doc fix.
12109 (Fwindow_top_child, Fwindow_left_child): Eliminate a nil default
12110 argument, since it makes no sense to pass a live window and for
12111 consistency with window-child.
12112
12113 2011-11-05 Christoph Scholtes <cschol2112@googlemail.com>
12114
12115 * makefile.w32-in ($(TEMACS), (gl-stamp)): Use $(THISDIR) to
12116 support MSVC.
12117
12118 2011-11-05 Jason Rumney <jasonr@gnu.org>
12119
12120 * w32font.c (font_matches_spec): Filter out non-Japanese kana fonts.
12121 (add_font_entity_to_list): Filter out non-Japanese Shift-JIS
12122 fonts (Bug#6029).
12123 (add_font_entity_to_list): Fix logic errors in mixed boolean and
12124 bitwise arithmetic preventing use of unicode-sip and non-truetype
12125 opentype fonts.
12126
12127 2011-11-05 Eli Zaretskii <eliz@gnu.org>
12128
12129 * s/ms-w32.h (fstat, stat, utime): Move redirections to
12130 "emacs"-only part.
12131
12132 * w32fns.c (x_create_tip_frame, Fx_create_frame): Rearrange
12133 initialization code to keep similarity to xfns.c after changes
12134 from 2011-11-05.
12135
12136 2011-11-05 Jan Djärv <jan.h.d@swipnet.se>
12137
12138 * nsfns.m: Declare image_cache_refcount if GLYPH_DEBUG.
12139 (unwind_create_frame): New function (Bug#9943).
12140 (Fx_create_frame): Restructure code to be more similar to the one in
12141 xfns.c. Call record_unwind_protect with unwind_create_frame (Bug#9943).
12142 Initialize image_cache_refcount if GLYPH_DEBUG (Bug#9943).
12143 Move terminal->reference_count++ just before making the frame official
12144 (Bug#9943).
12145
12146 * nsterm.m (x_free_frame_resources): New function.
12147 (x_destroy_window): Move code to x_free_frame_resources.
12148
12149 * xfns.c (unwind_create_frame): Fix comment.
12150 (Fx_create_frame, x_create_tip_frame):
12151 Move terminal->reference_count++ just before making the frame
12152 official. Move initialization of image_cache_refcount and
12153 dpyinfo_refcount before calling init_frame_faces (Bug#9943).
12154
12155 2011-11-05 Eli Zaretskii <eliz@gnu.org>
12156
12157 Support MSVC build with newer versions of Visual Studio.
12158 * makefile.w32-in (TAGS-gmake): Don't use $(patsubst ...), as
12159 Nmake barfs on that. Use $(OBJ*_c) variables instead, defined on
12160 nt/gmake.defs.
12161
12162 * lisp.h (ENUM_BF): New macro, for enumerated types in bitfields,
12163 which are not supported by MSVC.
12164 (Lisp_Symbol, Lisp_Misc_Any, Lisp_Marker, Lisp_Misc_Overlay)
12165 (Lisp_Save_Value, Lisp_Free): Use ENUM_BF for enumerated types in
12166 bitfields.
12167 (Lisp_Object) [USE_LISP_UNION_TYPE]: Use ENUM_BF for enumerated
12168 types in bitfields.
12169 (DEFUN) [_MSC_VER]: Define in a different way for MSVC.
12170
12171 * w32fns.c [_MSC_VER]: DECLARE_HANDLE for any MSVC version.
12172
12173 2011-11-05 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
12174
12175 Support MSVC build with newer versions of Visual Studio.
12176 * w32.c: Don't include w32api.h for MSVC.
12177 (init_environment) [_MSC_VER]: Call sys_access, not _access.
12178
12179 * s/ms-w32.h <sigset_t, ssize_t> [_MSC_VER]: Typedefs for MSVC.
12180 [_MSC_VER]: Include sys/timeb.h, sys/stat.h, and signal.h.
12181 (fstat, stat, utime) [_MSC_VER]: Redirect to their sys_* cousins.
12182 (malloc, free, realloc, calloc) [_MSC_VER]: Always redirect to the
12183 e_* cousins.
12184 (alloca) [_MSC_VER]: Define to _alloca.
12185
12186 * lisp.h (DECL_ALIGN) [_MSC_VER]: Define for MSVC.
12187
12188 * regex.c <re_char> [_MSC_VER]: A separate definition for MSVC.
12189
12190 2011-11-04 Eli Zaretskii <eliz@gnu.org>
12191
12192 * xdisp.c (note_mouse_highlight): If either of
12193 previous/next-single-property-change returns nil, treat that as
12194 the beginning or the end of the buffer. (Bug#9955)
12195
12196 2011-11-04 Jan Djärv <jan.h.d@swipnet.se>
12197
12198 * gtkutil.c (xg_make_tool_item): Add callbacks if one of wimage or
12199 label is not null (Bug#9951).
12200 (xg_tool_item_stale_p): Handle the fact that wimage and/or wlbl
12201 may be NULL.
12202
12203 2011-11-04 Eli Zaretskii <eliz@gnu.org>
12204
12205 * window.c (Fwindow_body_size): Mention in the doc string that the
12206 return value is in frame's canonical units. (Bug#9949)
12207
12208 2011-11-03 Eli Zaretskii <eliz@gnu.org>
12209
12210 * xdisp.c (note_mouse_highlight): Initialize `area'. (Bug#9947)
12211
12212 * w32fns.c (unwind_create_frame): If needed, free the glyph
12213 matrices of the partially constructed frame. (Bug#9943)
12214 * xfns.c (unwind_create_frame): Likewise.
12215
12216 2011-11-01 Eli Zaretskii <eliz@gnu.org>
12217
12218 * xdisp.c (mouse_face_from_buffer_pos): Fix a typo in a comment.
12219 Don't stop backward scan on the continuation glyph, even though
12220 its CHARPOS is positive.
12221 (mouse_face_from_buffer_pos, note_mouse_highlight):
12222 Rename cover_string to disp_string.
12223
12224 2011-11-01 Martin Rudalics <rudalics@gmx.at>
12225
12226 * window.c (temp_output_buffer_show): Don't use
12227 Vtemp_buffer_show_specifiers.
12228 (Vtemp_buffer_show_specifiers): Remove unused variable.
12229
12230 2011-10-30 Eli Zaretskii <eliz@gnu.org>
12231
12232 * xdisp.c (try_cursor_movement): Make sure ROW isn't decremented
12233 past the beginning of the current glyph matrix.
12234
12235 2011-10-30 Adam Sjøgren <asjo@koldfront.dk> (tiny change)
12236
12237 * xterm.c: Include X11/Xproto.h if HAVE_GTK3.
12238 (x_error_handler): Ignore BadMatch for X_SetInputFocus for
12239 HAVE_GTK3 (Bug#9869).
12240
12241 * gtkutil.c (xg_win_to_widget, xg_event_is_for_menubar): Initialize
12242 type to GDK_NOTHING so valgrind does not complain (Bug#9901).
12243
12244 * xterm.h (x_display_info): Add Xatom_net_wm_state_hidden (Bug#9893).
12245
12246 * xterm.c: Declare x_handle_net_wm_state to return int.
12247 (handle_one_xevent): Check if we are iconified but don't have
12248 _NET_WM_STATE_HIDDEN. If do, treat as deiconify (Bug#9893).
12249 (get_current_wm_state): Return non-zero if not hidden,
12250 check for _NET_WM_STATE_HIDDEN (Bug#9893).
12251 (do_ewmh_fullscreen): Ignore return value from get_current_wm_state.
12252 (x_handle_net_wm_state): Return what get_current_wm_state returns.
12253 (x_term_init): Initialize dpyinfo->Xatom_net_wm_state_hidden.
12254
12255 2011-10-29 Paul Eggert <eggert@cs.ucla.edu>
12256
12257 * alloc.c (which_symbols): Declare EXTERNALLY_VISIBLE,
12258 so that this new function doesn't get optimized away by a
12259 whole-program optimizer. Make the 2nd arg EMACS_INT, not int.
12260
12261 2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
12262
12263 * frame.h (MOUSE_HL_INFO): Remove excess parens.
12264
12265 2011-10-29 Eli Zaretskii <eliz@gnu.org>
12266
12267 Fix the `xbytecode' command.
12268 * .gdbinit (xprintbytestr): New command.
12269 (xwhichsymbols): Rename from `which'; all callers changed.
12270 (xbytecode): Print the byte-code string as well.
12271
12272 2011-10-29 Kim Storm <storm@cua.dk>
12273
12274 * alloc.c (which_symbols): New function.
12275
12276 2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
12277
12278 * minibuf.c (read_minibuf_noninteractive): Allow reading empty
12279 line. (Bug#9903)
12280
12281 2011-10-29 Glenn Morris <rgm@gnu.org>
12282
12283 * process.c (wait_reading_process_output): Revert 2009-08-30 change.
12284 Not clear what it was for, and it causes various bugs. (Bug#9839)
12285
12286 2011-10-28 Eli Zaretskii <eliz@gnu.org>
12287
12288 * xdisp.c (note_mouse_highlight): Initialize `part', to avoid a
12289 possible random value that matches one of those tested as
12290 condition to clear the mouse face.
12291
12292 2011-10-28 Chong Yidong <cyd@gnu.org>
12293
12294 * xdisp.c (note_mouse_highlight): Fix use of uninitialized var.
12295
12296 2011-10-28 Dan Nicolaescu <dann@ics.uci.edu>
12297
12298 * window.c (make_window): Initialize phys_cursor_on_p.
12299
12300 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
12301
12302 * lisp.h (struct Lisp_Symbol): Update comments.
12303
12304 2011-10-28 Juanma Barranquero <lekktu@gmail.com>
12305
12306 * w32font.c (w32_load_unicows_or_gdi32): Add missing return.
12307
12308 2011-10-28 Eli Zaretskii <eliz@gnu.org>
12309
12310 Fix Emacs on Windows 9X (bug#8562). Thanks to oslsachem
12311 <oslsachem@gmail.com> for helping to debug this.
12312
12313 * w32font.c (g_b_init_is_w9x, g_b_init_get_outline_metrics_w)
12314 (g_b_init_get_text_metrics_w, g_b_init_get_glyph_outline_w)
12315 (g_b_init_get_glyph_outline_w): New static variables.
12316 (GetOutlineTextMetricsW_Proc, GetTextMetricsW_Proc)
12317 (GetGlyphOutlineW_Proc): New typedefs.
12318 (w32_load_unicows_or_gdi32, get_outline_metrics_w)
12319 (get_text_metrics_w, get_glyph_outline_w, globals_of_w32font):
12320 New functions.
12321 (w32font_open_internal, compute_metrics):
12322 Call get_outline_metrics_w, get_text_metrics_w, and get_glyph_outline_w
12323 instead of calling the "wide" APIs directly.
12324
12325 * emacs.c (main) [HAVE_NTGUI]: Call globals_of_w32font.
12326
12327 * w32.h (syms_of_w32font): Add prototype.
12328
12329 2011-10-27 Juanma Barranquero <lekktu@gmail.com>
12330
12331 * window.c (Fframe_root_window, Fframe_first_window, Fwindow_end)
12332 (Fframe_selected_window, Ftemp_output_buffer_show, Fnext_window)
12333 (Fdelete_window_internal, Fwindow_parameters): Fix typos in docstrings.
12334 (Fmove_to_window_line): Doc fix.
12335
12336 2011-10-27 Chong Yidong <cyd@gnu.org>
12337
12338 * process.c (make_process): Set gnutls_state to NULL.
12339
12340 * gnutls.c (emacs_gnutls_deinit): Deinit the gnutls_state if it is
12341 non-NULL, regardless of GNUTLS_INITSTAGE.
12342 (Fgnutls_boot): Cleanups. Call emacs_gnutls_deinit if we signal
12343 an error. Set process slots as soon as we allocate them.
12344
12345 * gnutls.h (GNUTLS_LOG, GNUTLS_LOG2): Fix macros.
12346
12347 2011-10-27 Chong Yidong <cyd@gnu.org>
12348
12349 * gnutls.c (emacs_gnutls_deinit): New function.
12350 Deallocate credentials structures as well as calling gnutls_deinit.
12351 (Fgnutls_deinit, Fgnutls_boot): Use it.
12352
12353 * process.c (make_process): Initialize GnuTLS credentials to NULL.
12354 (deactivate_process): Call emacs_gnutls_deinit.
12355
12356 2011-10-27 Juanma Barranquero <lekktu@gmail.com>
12357
12358 * image.c (x_create_x_image_and_pixmap):
12359 * w32.c (sys_rename, w32_delayed_load):
12360 * w32font.c (fill_in_logfont):
12361 * w32reg.c (x_get_string_resource): Silence compiler warnings.
12362
12363 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
12364
12365 * w32fns.c (w32_default_color_map): New function,
12366 extracted from Fw32_default_color_map.
12367 (Fw32_default_color_map, Fx_open_connection): Use it. (Bug#9785)
12368
12369 2011-10-25 Paul Eggert <eggert@cs.ucla.edu>
12370
12371 * dispextern.h (Fcontrolling_tty_p): New decl (Bug#6649 part 2).
12372
12373 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
12374
12375 * keyboard.c (test_undefined): New function (bug#9751).
12376 (read_key_sequence): Use it to detect when a key is bound to `undefined'.
12377
12378 2011-10-25 Enami Tsugutomo <tsugutomo.enami@jp.sony.com>
12379
12380 * sysdep.c (init_sys_modes): Fix the check for the controlling
12381 terminal (Bug#6649).
12382
12383 2011-10-20 Eli Zaretskii <eliz@gnu.org>
12384
12385 * dispextern.h (struct bidi_it): New member next_en_type.
12386
12387 * bidi.c (bidi_line_init): Initialize the next_en_type member.
12388 (bidi_resolve_explicit_1): When next_en_pos is valid for the
12389 current character, check also for next_en_type being WEAK_EN.
12390 (bidi_resolve_weak): Don't enter the expensive loop if the current
12391 position is before next_en_pos. Record the bidi type of the first
12392 non-ET, non-BN character we find, in addition to its position.
12393 (bidi_level_of_next_char): Invalidate next_en_type when
12394 next_en_pos is over-stepped.
12395
12396 2011-10-20 Paul Eggert <eggert@cs.ucla.edu>
12397
12398 Time zone name fixes for non-ASCII locales (Bug#641, Bug#9794)
12399 * editfns.c: Rewrite current-time-zone so that it invokes
12400 the equivalent of (format-time-string "%Z") to get the time zone name.
12401 This fixes a bug when the time zone name contains characters that
12402 need converting from the system time locale to Emacs internal format.
12403 This fixes a shortcoming that I introduced in my 1999-10-19 patch:
12404 that patch fixed format-time-string to do the conversion, but
12405 I forgot to fix current-time-zone.
12406 (format_time_string): New function, containing most of
12407 what Fformat_time_string used to contain.
12408 (Fformat_time_string): Rewrite in terms of format_time_string.
12409 This doesn't change this function's behavior.
12410 (current-time-zone): Rewrite to use format_time_string.
12411 This fixes the bug reported by Michael Schierl in
12412 <http://lists.gnu.org/archive/html/emacs-devel/2007-06/msg00334.html>.
12413 Jason Rumney's 2007-06-07 change worked around this bug, but
12414 didn't fix it.
12415 * systime.h (tzname, timezone): Remove no-longer-used declarations.
12416
12417 2011-10-19 Eli Zaretskii <eliz@gnu.org>
12418
12419 * xdisp.c (start_display): If the character at POS is displayed
12420 via a display vector, reset IT->current.dpvec_index to zero.
12421 (try_window_reusing_current_matrix): If a line ends in a display
12422 vector or the next line starts in a display vector, continue
12423 redrawing the window even though the character position of
12424 start_row was reached.
12425 (Bug#9771, part 2)
12426
12427 2011-10-18 Chong Yidong <cyd@gnu.org>
12428
12429 * xdisp.c (get_next_display_element): Handle U+2010 and U+2011
12430 with nobreak-char-display too.
12431
12432 2011-10-18 Eli Zaretskii <eliz@gnu.org>
12433
12434 Fix part 3 of bug#9771.
12435 * bidi.c (bidi_line_init): Initialize next_en_pos to zero, not -1.
12436 (bidi_resolve_neutral): Don't enter the expensive loop looking for
12437 non-neutral characters if the current character is a paragraph
12438 separator (a.k.a. Newline). This avoids running the same
12439 expensive loop twice, once when we consume the preceding newline
12440 and the other time when the line actually needs to be displayed.
12441 Avoid the loop when we see neutrals on the base embedding level
12442 following a character whose directionality is the same as the
12443 paragraph's. This avoids running the expensive loop when a line
12444 ends in a long sequence of neutrals, like control characters.
12445 Add assertion against STRONG_AL type. Slightly rearrange code
12446 that determines the type of a neutral given the first non-neutral
12447 that follows it.
12448 (bidi_level_of_next_char): Set next_en_pos to zero when
12449 invalidating its info.
12450
12451 2011-10-17 Eli Zaretskii <eliz@gnu.org>
12452
12453 * xdisp.c (push_display_prop): Determine whether to record string
12454 or buffer position by IT->string, not by IT->method. Allow
12455 GET_FROM_DISPLAY_VECTOR as IT->method on entry. (Bug#9771, part 4)
12456 (move_it_vertically_backward): Don't look for character position
12457 immediately after the newline when in a continuation line.
12458 (Bug#9771, part 1)
12459
12460 2011-10-15 Martin Rudalics <rudalics@gmx.at>
12461
12462 * window.c (coordinates_in_window): Rewrite and delabelize
12463 vertical border check. (Bug#5357) (Bug#9618)
12464
12465 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
12466
12467 * xterm.c (frame_highlight, frame_unhighlight): Ignore unexplained
12468 errors in XSetWindowBorder (bug#9310).
12469
12470 2011-10-13 Dmitry Antipov <dmantipov@yandex.ru>
12471
12472 * editfns.c (Fset_time_zone_rule): Replace free with xfree to
12473 avoid crash when xmalloc overrun checking is enabled.
12474
12475 2011-10-13 Eli Zaretskii <eliz@gnu.org>
12476
12477 * xdisp.c (Fcurrent_bidi_paragraph_direction): Initialize
12478 itb.paragraph_dir to NEUTRAL_DIR. Fixes an occasional incorrect
12479 cursor motion with <left> and <right> arrow keys.
12480
12481 * bidi.c (bidi_init_it): Don't initialize paragraph_dir here, as
12482 some callers set that themselves.
12483
12484 2011-10-12 Eli Zaretskii <eliz@gnu.org>
12485
12486 * xdisp.c (find_row_edges): Handle the case where ROW comes from a
12487 display string and the previous row comes from the same string and
12488 is empty. (Bug#9739) (Bug#9738)
12489
12490 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
12491
12492 * doc.c (get_doc_string): Encode file name (bug#9735).
12493
12494 2011-10-12 Eli Zaretskii <eliz@gnu.org>
12495
12496 * bidi.c (bidi_level_of_next_char):
12497 * xdisp.c (get_visually_first_element): Remove old incorrect
12498 comments regarding the Unicode Line Separator character.
12499
12500 * bidi.c (bidi_init_it): Initialize paragraph_dir to NEUTRAL_DIR.
12501
12502 2011-10-12 Dmitry Antipov <dmantipov@yandex.ru>
12503
12504 * alloc.c (Fgc_status): Do not access beyond zombies array
12505 boundary if nzombies > MAX_ZOMBIES.
12506 * alloc.c (dump_zombies): Add missing format specifier.
12507
12508 2011-10-12 Paul Eggert <eggert@cs.ucla.edu>
12509
12510 * xdisp.c (set_cursor_from_row): Simplify conditionals,
12511 to pacify GCC 4.6.1 x86-64 with -O2 -Wstrict-overflow.
12512
12513 * lread.c (read_escape): Allow hex escapes as large as ?\xfffffff.
12514 Some packages use them to denote characters with modifiers.
12515
12516 2011-10-11 Andreas Schwab <schwab@linux-m68k.org>
12517
12518 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR)
12519 (GCPRO5_VAR, GCPRO6_VAR, UNGCPRO_VAR): Add whitespace to avoid
12520 matching a pp-number. Rename parameter var to var1.
12521
12522 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
12523
12524 * minibuf.c (Finternal_complete_buffer): Fix last change (bug#9709).
12525
12526 2011-10-08 Glenn Morris <rgm@gnu.org>
12527
12528 * callint.c (Fcall_interactively): Give a more explicit error for the
12529 'c' case with a non-character input. (Bug#8479)
12530
12531 2011-10-08 Eli Zaretskii <eliz@gnu.org>
12532
12533 * xdisp.c (hscroll_window_tree): Support hscroll in right-to-left
12534 lines.
12535 (set_cursor_from_row): Fix cursor positioning in mixed L2R+R2L
12536 lines that are hscrolled on the left.
12537
12538 * dispnew.c (buffer_posn_from_coords): Account for a possible
12539 presence of header-line. (Bug#4426)
12540
12541 2011-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
12542
12543 * buffer.c (syms_of_buffer) <enable-multibyte-characters>:
12544 Don't advertise functionality which we discourage or doesn't work.
12545
12546 2011-10-07 Paul Eggert <eggert@cs.ucla.edu>
12547
12548 * alloc.c (GC_LISP_OBJECT_ALIGNMENT): Use offsetof, not __alignof__
12549 or sizeof. __alignof__ gives the wrong answer on Fedora x86-64
12550 with GCC 4.6.1 when configured with CC='gcc -m32' --with-wide-int;
12551 this makes Emacs dump core during garbage collection on rare
12552 occasions. sizeof is obviously inferior to offsetof here, so
12553 stick with offsetof.
12554 (GC_POINTER_ALIGNMENT): New macro.
12555 (mark_memory): Omit 3rd (offset) arg; caller changed.
12556 Don't assume EMACS_INT alignment is the same as pointer alignment.
12557
12558 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
12559
12560 * keyboard.c (read_key_sequence_remapped): New var.
12561 (read_key_sequence): Compute remapping in the right buffer.
12562 (command_loop_1): Use read_key_sequence's remapping directly.
12563
12564 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
12565
12566 * dired.c (file_name_completion): Don't expand file name.
12567 (Ffile_name_completion, Ffile_name_all_completions): Expand file name
12568 before checking file name handler.
12569
12570 * minibuf.c (Finternal_complete_buffer): Only show internal buffers if
12571 they've been requested explicitly (bug#9591).
12572
12573 2011-10-01 Andreas Schwab <schwab@linux-m68k.org>
12574
12575 * keymap.c (Fsingle_key_description): Use make_specified_string
12576 instead of build_string to build string from push_key_description.
12577 (Bug#5193)
12578
12579 2011-09-30 Paul Eggert <eggert@cs.ucla.edu>
12580
12581 * buffer.h (struct buffer): Use time_t, not int, for a time stamp.
12582 This fixes a Y2038 bug on 64-bit hosts.
12583 * buffer.c (reset_buffer):
12584 * fileio.c (Fdo_auto_save, Fset_buffer_auto_saved)
12585 (Fclear_buffer_auto_save_failure):
12586 Use 0, not -1, to represent an unset failure time, since time_t
12587 might not be signed.
12588
12589 Remove dependency on glibc malloc internals.
12590 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
12591 Move back here from lisp.h, but with their new implementations.
12592 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
12593 (XMALLOC_OVERRUN_SIZE_SIZE): Move these new lisp.h macros here.
12594 * charset.c (charset_table_init): New static var.
12595 (syms_of_charset): Use it instead of xmalloc. This removes a
12596 dependency on glibc malloc internals. See Eli Zaretskii's comment in
12597 <http://lists.gnu.org/archive/html/emacs-devel/2011-09/msg00815.html>.
12598 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
12599 Move back to alloc.c.
12600 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
12601 (XMALLOC_OVERRUN_SIZE_SIZE): Move to alloc.c.
12602
12603 2011-09-30 Jan Djärv <jan.h.d@swipnet.se>
12604
12605 * nsterm.m (windowDidResize): Call x_set_window_size only when
12606 ns_in_resize is true. Otherwise set pixelwidth/height and
12607 call change_frame_size (Bug#9628).
12608
12609 2011-09-30 Paul Eggert <eggert@cs.ucla.edu>
12610
12611 Port --enable-checking=all to Fedora 14 x86-64.
12612 * charset.c (syms_of_charset): Also account for glibc malloc's
12613 internal overhead when calculating the initial malloc maximum.
12614
12615 Port --enable-checking=all to Fedora 14 x86.
12616 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
12617 Move to lisp.h.
12618 (xmalloc_put_size, xmalloc_get_size, overrun_check_malloc)
12619 (overrun_check_realloc, overrun_check_free):
12620 Use XMALLOC_OVERRUN_SIZE_SIZE, not sizeof (size_t).
12621 That way, xmalloc returns a properly-aligned pointer even if
12622 XMALLOC_OVERRUN_CHECK is defined. The old debugging code happened
12623 to align OK on typical 64-bit hosts, but not on Fedora 14 x86.
12624 * charset.c (syms_of_charset): Take XMALLOC_OVERRUN_CHECK_OVERHEAD
12625 into account when calculating the initial malloc maximum.
12626 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
12627 Move here from alloc.c, so that charset.c can use it too.
12628 Properly align; the old code wasn't right for common 32-bit hosts
12629 when configured with --enable-checking=all.
12630 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
12631 (XMALLOC_OVERRUN_SIZE_SIZE): New macros.
12632
12633 2011-09-29 Eli Zaretskii <eliz@gnu.org>
12634
12635 * sysdep.c (snprintf) [!EOVERFLOW]: If EOVERFLOW is not defined,
12636 use EDOM.
12637
12638 2011-09-28 Eli Zaretskii <eliz@gnu.org>
12639
12640 * xdisp.c (compute_display_string_end): If there's no display
12641 string at CHARPOS, return -1.
12642
12643 * bidi.c (bidi_fetch_char): When compute_display_string_end
12644 returns a negative value, treat the character as a normal
12645 character not covered by a display string. (Bug#9624)
12646
12647 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
12648
12649 * lread.c (Fread_from_string): Fix typo in docstring.
12650
12651 2011-09-27 Eli Zaretskii <eliz@gnu.org>
12652
12653 * xdisp.c (handle_invisible_prop): If invisible text ends on a
12654 newline, reseat the iterator instead of bidi-iterating there one
12655 character at a time. (Bug#9610)
12656 (BUFFER_POS_REACHED_P, move_it_in_display_line_to): Bail when past
12657 TO_CHARPOS if the bidi iterator is at base embedding level.
12658
12659 2011-09-27 Andreas Schwab <schwab@linux-m68k.org>
12660
12661 * lread.c (readevalloop): Use correct code for NBSP.
12662 (read1): Likewise. (Bug#9608)
12663
12664 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
12665
12666 * dbusbind.c (Fdbus_register_signal): When service is not
12667 registered, use nil in Vdbus_registered_objects_table. (Bug#9581)
12668
12669 2011-09-25 Glenn Morris <rgm@gnu.org>
12670
12671 * buffer.c (truncate-lines): Doc fix.
12672
12673 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
12674
12675 * window.c (Fwindow_prev_buffers, Fset_window_prev_buffers)
12676 (Fset_window_next_buffers): Doc fix.
12677
12678 2011-09-24 Glenn Morris <rgm@gnu.org>
12679
12680 * minibuf.c (read_minibuf): Disable line truncation. (Bug#5715)
12681
12682 2011-09-24 Paul Eggert <eggert@cs.ucla.edu>
12683
12684 Fix minor problems found by static checking.
12685 * xdisp.c (string_from_display_spec): Don't assume vecsize fits in int.
12686 * indent.c (Fvertical_motion): Fix == vs = typo.
12687
12688 2011-09-24 Eli Zaretskii <eliz@gnu.org>
12689
12690 * dispnew.c (syms_of_display) <redisplay-dont-pause>:
12691 Default value is now t. Doc fix.
12692
12693 * indent.c (Fvertical_motion): Compute and apply the overshoot
12694 logic when moving up, not only when moving down. Fix the
12695 confusing name and values of the it_overshoot_expected variable;
12696 logic changes accordingly. (Bug#9254) (Bug#9549)
12697
12698 * xdisp.c (pos_visible_p): Produce correct pixel coordinates when
12699 CHARPOS is covered by a display string which includes newlines.
12700 (move_it_vertically_backward): Avoid inflooping when START_CHARPOS
12701 is covered by a display string with embedded newlines.
12702
12703 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
12704
12705 * dbusbind.c (Fdbus_register_signal): Add match rule to
12706 Vdbus_registered_objects_table. (Bug#9581)
12707 (Fdbus_register_method, Vdbus_registered_objects_table):
12708 Fix docstring.
12709
12710 2011-09-24 Jim Meyering <meyering@redhat.com>
12711
12712 do not ignore write error for any output size
12713 The previous change was incomplete.
12714 While it makes emacs --batch detect the vast majority of stdout
12715 write failures, errors were still ignored whenever the output size is
12716 k * (BUFSIZ+1) - 4. E.g., on a system with BUFSIZ of 4096,
12717 $ emacs --batch --eval '(print (format "%4093d" 0))' > /dev/full \
12718 && echo FAIL: ignored write error
12719 FAIL: ignored write error
12720 $ emacs --batch --eval '(print (format "%20481d" 0))' > /dev/full \
12721 && echo FAIL: ignored write error
12722 FAIL: ignored write error
12723 * emacs.c (Fkill_emacs): Also test ferror. (Bug#9574)
12724
12725 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
12726
12727 * emacs.c (Fkill_emacs): In noninteractive mode exit
12728 non-successfully if a write error occurred on stdout. (Bug#9574)
12729
12730 2011-09-21 Eli Zaretskii <eliz@gnu.org>
12731
12732 * xdisp.c (pop_it): Allow it->object that is a cons cell to pass
12733 the xassert test.
12734
12735 * dispextern.h (struct it): Update the comment documenting what
12736 can it->OBJECT be.
12737
12738 2011-09-20 Eli Zaretskii <eliz@gnu.org>
12739
12740 * xdisp.c (set_cursor_from_row): If the row ends in a newline from
12741 a display string, extend search for cursor position to end of row.
12742 (find_row_edges): If the row ends in a newline from a display
12743 string, increment its MATRIX_ROW_END_CHARPOS by one. (Bug#9549)
12744 Handle the case of a display string with multiple newlines.
12745 (Fcurrent_bidi_paragraph_direction): Fix search for previous
12746 non-empty line. Fixes confusing cursor motion with arrow keys at
12747 the beginning of a line that starts with whitespace.
12748
12749 2011-09-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
12750
12751 * lread.c (Fread_from_string): Document what FINAL-STRING-INDEX is
12752 (bug#9493).
12753
12754 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
12755
12756 * xfns.c (Fx_create_frame): Handle the bitmapIcon resource as
12757 boolean (Bug#9154).
12758
12759 2011-09-18 Eli Zaretskii <eliz@gnu.org>
12760
12761 * xdisp.c (display_line): Record maximum and minimum buffer
12762 positions even if no glyphs were produced (e.g., by a zero-width
12763 stretch). Fixes bug#9530 on a TTY. Under word-wrap, don't record
12764 buffer positions that will be removed from the glyph row because
12765 they don't fit.
12766 (produce_stretch_glyph): Fix a bug in :align-to on a TTY when the
12767 column is beyond frame width: don't subtract 1 "pixel" when
12768 computing width of the stretch.
12769 (reseat_at_next_visible_line_start): Undo the change made on
12770 2011-09-17 that saved paragraph information and restored it after
12771 the call to `reseat'. (Bug#9545)
12772
12773 2011-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12774
12775 * xdisp.c (expose_window): Save original value of phys_cursor_on_p
12776 and turn window cursor on if cleared (Bug#9415).
12777
12778 2011-09-18 Andreas Schwab <schwab@linux-m68k.org>
12779
12780 * search.c (boyer_moore): Take unibyte characters from pattern
12781 literally. (Bug#9458)
12782
12783 2011-09-18 Eli Zaretskii <eliz@gnu.org>
12784
12785 * xdisp.c (reseat_at_next_visible_line_start): Fix last change.
12786
12787 2011-09-18 Paul Eggert <eggert@cs.ucla.edu>
12788
12789 Fix minor problem found by static checking.
12790 * xdisp.c (reseat_at_next_visible_line_start): Mark locals as
12791 initialized, to pacify gcc -Wuninitialized.
12792
12793 * fileio.c: Report proper errno when syscall falls.
12794 (Finsert_file_contents): Save and restore errno,
12795 so that report_file_error outputs the correct diagnostic.
12796 (Fwrite_region) [CLASH_DETECTION]: Likewise.
12797
12798 2011-09-18 Eli Zaretskii <eliz@gnu.org>
12799
12800 * .gdbinit (pgx): Fix references to fields of `struct glyph'.
12801
12802 2011-09-17 Eli Zaretskii <eliz@gnu.org>
12803
12804 * xdisp.c (produce_stretch_glyph): Another fix for changes made on
12805 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9530)
12806
12807 2011-09-17 Eli Zaretskii <eliz@gnu.org>
12808
12809 * xdisp.c (reseat_at_next_visible_line_start): Keep information
12810 about the current paragraph and restore it after the call to reseat.
12811
12812 * bidi.c (MAX_PARAGRAPH_SEARCH): New macro.
12813 (bidi_find_paragraph_start): Search back for paragraph beginning
12814 at most MAX_PARAGRAPH_SEARCH lines; if not found, return BEGV_BYTE.
12815 (bidi_move_to_visually_next): Only trigger paragraph-related
12816 computations when the last character is a newline or at EOB, not
12817 just any NEUTRAL_B. (Bug#9470)
12818
12819 * xdisp.c (set_cursor_from_row): Don't invoke special treatment of
12820 truncated lines if point is covered by a display string. (Bug#9524)
12821
12822 2011-09-16 Paul Eggert <eggert@cs.ucla.edu>
12823
12824 * xselect.c: Relax test for outgoing X longs (Bug#9498).
12825 (cons_to_x_long): New function.
12826 (lisp_data_to_selection_data): Use it. Correct the test for
12827 short-versus-long data; it was negated. Break out of vector
12828 loop, for efficiency, when a long datum is discovered.
12829
12830 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
12831
12832 * eval.c (Fquote): Document its non-consing behavior (bug#9482).
12833
12834 2011-09-16 Eli Zaretskii <eliz@gnu.org>
12835
12836 * image.c (tiff_handler): Work around a bug in MinGW GCC 3.x (see
12837 GCC PR/17406) by declaring this function with external scope.
12838
12839 2011-09-15 Paul Eggert <eggert@cs.ucla.edu>
12840
12841 * editfns.c (Fformat): Fix bug in text-property fix (Bug#9514).
12842 Don't mishandle (length (format "%%")) and (format "%4000s%%" "").
12843
12844 2011-09-15 Andreas Schwab <schwab@linux-m68k.org>
12845
12846 * editfns.c (Fformat): Correctly handle text properties on "%%".
12847
12848 2011-09-15 Eli Zaretskii <eliz@gnu.org>
12849
12850 * xterm.c (x_draw_composite_glyph_string_foreground):
12851 * w32term.c (x_draw_composite_glyph_string_foreground):
12852 * term.c (encode_terminal_code):
12853 * composite.c (composition_update_it, get_composition_id):
12854 * xdisp.c (get_next_display_element)
12855 (fill_composite_glyph_string): Add comments about special meaning
12856 of TAB characters in a composition.
12857
12858 2011-09-15 Paul Eggert <eggert@cs.ucla.edu>
12859
12860 * editfns.c (Fformat): Fix off-by-1 bug for "%%b" (Bug#9514).
12861 This occurs when processing a multibyte format.
12862 Problem reported by Wolfgang Jenker.
12863
12864 2011-09-15 Johan Bockgård <bojohan@gnu.org>
12865
12866 * xdisp.c (try_cursor_movement): Only check for exact match if
12867 cursor hpos found by set_cursor_from_row is valid. (Bug#9495)
12868
12869 2011-09-14 Paul Eggert <eggert@cs.ucla.edu>
12870
12871 Remove unused external symbols.
12872 * dispextern.h (calc_pixel_width_or_height): Remove decl.
12873 * xdisp.c (calc_pixel_width_or_height): Now static.
12874 * doprnt.c (exprintf) [! (HAVE_X_WINDOWS && USE_X_TOOLKIT)]: Remove.
12875 * indent.c (check_display_width):
12876 * w32term.c: Fix comment to match code.
12877 * xterm.c, xterm.h (x_catching_errors): Remove.
12878
12879 2011-09-14 Paul Eggert <eggert@cs.ucla.edu>
12880
12881 * xselect.c: Use signed conversions more consistently (Bug#9498).
12882 (selection_data_to_lisp_data): Assume incoming selection data are
12883 signed integers, not unsigned. This is to be consistent with
12884 outgoing selection data, which was modified to use signed integers
12885 in as part of the fix to Bug#9196 in response to Jan D.'s comment
12886 in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9196#32> that X11
12887 expects long, not unsigned long.
12888
12889 2011-09-14 Eli Zaretskii <eliz@gnu.org>
12890
12891 * xdisp.c (try_window_reusing_current_matrix): Fix incorrect
12892 computation of loop end. Reported by Johan Bockgård
12893 <bojohan@gnu.org>.
12894
12895 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
12896
12897 * frame.c (Fother_visible_frames_p): Function deleted.
12898
12899 2011-09-12 Eli Zaretskii <eliz@gnu.org>
12900
12901 * indent.c (compute_motion): Process display vector front to back
12902 rather than the other way around. (Bug#2496)
12903
12904 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
12905
12906 * fileio.c (Finsert_file_contents): Don't assume beg_offset is 0.
12907
12908 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
12909
12910 * minibuf.c (Fread_from_minibuffer): Doc fix.
12911
12912 2011-09-11 Eli Zaretskii <eliz@gnu.org>
12913
12914 * xdisp.c (produce_stretch_glyph): Fix a typo made in changes from
12915 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9475)
12916
12917 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
12918
12919 * fileio.c (Fvisited_file_modtime): Document `(-1 65535)' as a
12920 value for non-existent files.
12921
12922 2011-09-11 Eli Zaretskii <eliz@gnu.org>
12923
12924 * fileio.c (Finsert_file_contents): If the file cannot be opened,
12925 set its "size" to -1. This will set the modtime_size field of
12926 the corresponding buffer to -1, which is what
12927 verify-visited-file-modtime expects for files that do not exist.
12928 (Bug#9139)
12929
12930 2011-09-11 Paul Eggert <eggert@cs.ucla.edu>
12931
12932 * keymap.h (KEY_DESCRIPTION_SIZE, push_key_description): Move decls
12933 here ...
12934 * lisp.h: ... from here. push_key_description is no longer
12935 defined in keyboard.c, so its declaration should not be in
12936 lisp.h's "Defined in keyboard.c" section, and KEY_DESCRIPTION_SIZE
12937 logically belongs with push_key_description.
12938
12939 2011-09-10 Paul Eggert <eggert@cs.ucla.edu>
12940
12941 * buffer.h: Include <sys/types.h> instead of <time.h>.
12942 Otherwise, off_t wasn't defined on FreeBSD 9.0-BETA2 i386.
12943 Problem reported by Herbert J. Skuhra.
12944
12945 2011-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
12946
12947 * xml.c (parse_region): Make the parsing work for
12948 non-comment-starting XML files again (bug#9144).
12949
12950 2011-09-10 Andreas Schwab <schwab@linux-m68k.org>
12951
12952 * image.c (gif_load): Fix calculation of bottom and right corner.
12953 (Bug#9468)
12954
12955 2011-09-10 Eli Zaretskii <eliz@gnu.org>
12956
12957 * xdisp.c (MAX_DISP_SCAN): Decrease to 250. Prevents sluggish
12958 redisplay in small windows.
12959
12960 2011-09-09 Eli Zaretskii <eliz@gnu.org>
12961
12962 * frame.c (x_report_frame_params): Cast to avoid compiler warnings.
12963
12964 2011-09-08 Martin Rudalics <rudalics@gmx.at>
12965
12966 * window.c (Fset_window_prev_buffers, Fset_window_next_buffers):
12967 Operate on live windows only.
12968
12969 2011-09-08 Juanma Barranquero <lekktu@gmail.com>
12970
12971 * emacs.c (my_heap_start): #ifdef to avoid warnings when unused.
12972
12973 2011-09-07 Eli Zaretskii <eliz@gnu.org>
12974
12975 * xdisp.c (move_it_in_display_line_to): Call RESTORE_IT on ppos_it
12976 only under bidi iteration.
12977
12978 2011-09-07 Jan Djärv <jan.h.d@swipnet.se>
12979
12980 * gtkutil.c (xg_make_tool_item): Insert comment about eventbox.
12981
12982 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
12983
12984 isnan: Fix porting problem to Solaris 10 with bundled gcc.
12985 Without this fix, the command to link temacs failed due to an
12986 undefined symbol __builtin_isnan. This is because
12987 /usr/include/iso/math_c99.h #defines isnan(x) to
12988 __builtin_isnan(x), but the bundled gcc, which identifies itself
12989 as gcc 3.4.3 (csl-sol210-3_4-branch+sol_rpath), does not have
12990 a __builtin_isnan.
12991 * floatfns.c (isnan): #undef, and then #define to a clone of
12992 what's in data.c.
12993 (Fisnan): Always define, since it's always available now.
12994 (syms_of_floatfns): Always define isnan at the Lisp level.
12995
12996 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
12997
12998 * Makefile.in (gl-stamp): move-if-change now in build-aux (Bug#9169).
12999
13000 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
13001
13002 * fileio.c: Fix bugs with large file offsets (Bug#9428).
13003 The previous code assumed that file offsets (off_t values) fit in
13004 EMACS_INT variables, which is not true on typical 32-bit hosts.
13005 The code messed up by falsely reporting buffer overflow in cases
13006 such as (insert-file-contents "big" nil 1 2) into an empty buffer
13007 when "big" contains more than 2**29 bytes, even though this
13008 inserts just one byte and does not overflow the buffer.
13009 (Finsert_file_contents): Store file offsets as off_t
13010 values, not as EMACS_INT values. Check for overflow when
13011 converting between EMACS_INT and off_t. When checking for
13012 buffer overflow or for overlap, take the offsets into account.
13013 Don't use EMACS_INT for small values where int suffices.
13014 When checking for overlap, fix a typo: ZV was used where
13015 ZV_BYTE was intended.
13016 (Fwrite_region): Don't assume off_t fits into 'long'.
13017 * buffer.h (struct buffer.modtime_size): Now off_t, not EMACS_INT.
13018
13019 2011-09-05 Michael Albinus <michael.albinus@gmx.de>
13020
13021 * dbusbind.c (xd_signature_cat): Rename from signature_cat.
13022
13023 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
13024
13025 sprintf-related integer and memory overflow issues (Bug#9412).
13026
13027 * doprnt.c (doprnt): Support printing ptrdiff_t and intmax_t values.
13028 (esprintf, exprintf, evxprintf): New functions.
13029 * keyboard.c (command_loop_level): Now EMACS_INT, not int.
13030 (cmd_error): Kbd macro iterations count is now EMACS_INT, not int.
13031 (modify_event_symbol): Do not assume that the length of
13032 name_alist_or_stem is safe to alloca and fits in int.
13033 (Fexecute_extended_command): Likewise for function name and binding.
13034 (Frecursion_depth): Wrap around reliably on integer overflow.
13035 * keymap.c (push_key_description): First arg is now EMACS_INT, not int,
13036 since some callers pass EMACS_INT values.
13037 (Fsingle_key_description): Don't crash if symbol name contains more
13038 than MAX_ALLOCA bytes.
13039 * minibuf.c (minibuf_level): Now EMACS_INT, not int.
13040 (get_minibuffer): Arg is now EMACS_INT, not int.
13041 * lisp.h (get_minibuffer, push_key_description): Reflect API changes.
13042 (esprintf, exprintf, evxprintf): New decls.
13043 * window.h (command_loop_level, minibuf_level): Reflect API changes.
13044
13045 * dbusbind.c (signature_cat): New function.
13046 (xd_signature, Fdbus_register_signal):
13047 Do not overrun buffer; instead, report string overflow.
13048
13049 * dispnew.c (add_window_display_history): Don't overrun buffer.
13050 Truncate instead; this is OK since it's just a log.
13051
13052 * editfns.c (Fcurrent_time_zone): Don't overrun buffer
13053 even if the time zone offset is outlandishly large.
13054 Don't mishandle offset == INT_MIN.
13055
13056 * emacs.c (main) [NS_IMPL_COCOA]: Don't overrun buffer
13057 when creating daemon; the previous buffer-overflow check was incorrect.
13058
13059 * eval.c (verror): Simplify by rewriting in terms of evxprintf,
13060 which has the guts of the old verror function.
13061
13062 * filelock.c (lock_file_1, lock_file): Don't blindly alloca long name;
13063 use SAFE_ALLOCA instead. Use esprintf to avoid int-overflow issues.
13064
13065 * font.c: Include <float.h>, for DBL_MAX_10_EXP.
13066 (font_unparse_xlfd): Don't blindly alloca long strings.
13067 Don't assume XINT result fits in int, or that XFLOAT_DATA * 10
13068 fits in int, when using sprintf. Use single snprintf to count
13069 length of string rather than counting it via multiple sprintfs;
13070 that's simpler and more reliable.
13071 (font_unparse_fcname): Use it to avoid sprintf buffer overrun.
13072 (generate_otf_features) [0 && HAVE_LIBOTF]: Use esprintf, not
13073 sprintf, in case result does not fit in int.
13074
13075 * fontset.c (num_auto_fontsets): Now printmax_t, not int.
13076 (fontset_from_font): Print it.
13077
13078 * frame.c (tty_frame_count): Now printmax_t, not int.
13079 (make_terminal_frame, set_term_frame_name): Print it.
13080 (x_report_frame_params): In X, window IDs are unsigned long,
13081 not signed long, so print them as unsigned.
13082 (validate_x_resource_name): Check for implausibly long names,
13083 and don't assume name length fits in 'int'.
13084 (x_get_resource_string): Don't blindly alloca invocation name;
13085 use SAFE_ALLOCA. Use esprintf, not sprintf, in case result does
13086 not fit in int.
13087
13088 * gtkutil.c: Include <float.h>, for DBL_MAX_10_EXP.
13089 (xg_check_special_colors, xg_set_geometry):
13090 Make sprintf buffers a bit bigger, to avoid potential buffer overrun.
13091
13092 * lread.c (dir_warning): Don't blindly alloca buffer; use SAFE_ALLOCA.
13093 Use esprintf, not sprintf, in case result does not fit in int.
13094
13095 * macros.c (executing_kbd_macro_iterations): Now EMACS_INT, not int.
13096 (Fend_kbd_macro): Don't mishandle MOST_NEGATIVE_FIXNUM by treating
13097 it as a large positive number.
13098 (Fexecute_kbd_macro): Don't assume repeat count fits in int.
13099 * macros.h (executing_kbd_macro_iterations): Now EMACS_INT, not int.
13100
13101 * nsterm.m ((NSSize)windowWillResize): Use esprintf, not sprintf,
13102 in case result does not fit in int.
13103
13104 * print.c (float_to_string): Detect width overflow more reliably.
13105 (print_object): Make sprintf buffer a bit bigger, to avoid potential
13106 buffer overrun. Don't assume list length fits in 'int'. Treat
13107 print length of 0 as 0, not as infinity; to be consistent with other
13108 uses of print length in this function. Don't overflow print length
13109 index. Don't assume hash table size fits in 'long', or that
13110 vectorlike size fits in 'unsigned long'.
13111
13112 * process.c (make_process): Use printmax_t, not int, to format
13113 process-name gensyms.
13114
13115 * sysdep.c (snprintf) [! HAVE_SNPRINTF]: New function.
13116
13117 * term.c (produce_glyphless_glyph): Make sprintf buffer a bit bigger
13118 to avoid potential buffer overrun.
13119
13120 * xfaces.c (x_update_menu_appearance): Don't overrun buffer
13121 if X resource line is longer than 512 bytes.
13122
13123 * xfns.c (x_window): Make sprintf buffer a bit bigger
13124 to avoid potential buffer overrun.
13125
13126 * xterm.c (x_io_error_quitter): Don't overrun sprintf buffer.
13127
13128 * xterm.h (x_check_errors): Add ATTRIBUTE_FORMAT_PRINTF.
13129
13130 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
13131
13132 Integer overflow fixes for scrolling, etc.
13133 Without these, Emacs silently mishandles large integers sometimes.
13134 For example, "C-u 4294967297 M-x recenter" was treated as if
13135 it were "C-u 1 M-x recenter" on a typical 64-bit host.
13136
13137 * xdisp.c (try_window_id): Check Emacs fixnum range before
13138 converting to 'int'.
13139
13140 * window.c (window_scroll_line_based, Frecenter):
13141 Check that an Emacs fixnum is in range before assigning it to 'int'.
13142 (Frecenter, Fmove_to_window_line): Use EMACS_INT, not int, for
13143 values converted from Emacs fixnums.
13144 (Frecenter): Don't wrap around a line count if it is out of 'int'
13145 range; instead, treat it as an extreme value.
13146 (Fset_window_configuration, compare_window_configurations):
13147 Use ptrdiff_t, not int, for index that might exceed 2 GiB.
13148
13149 * search.c (Freplace_match): Use ptrdiff_t, not int, for indexes
13150 that can exceed INT_MAX. Check that EMACS_INT value is in range
13151 before assigning it to the (possibly-narrower) index.
13152 (match_limit): Don't assume that a fixnum can fit in 'int'.
13153
13154 * print.c (print_object): Use ptrdiff_t, not int, for index that can
13155 exceed INT_MAX.
13156
13157 * indent.c (position_indentation): Now takes ptrdiff_t, not int.
13158 (Fvertical_motion): Don't wrap around LINES values that don't fit
13159 in 'int'. Instead, treat them as extreme values. This is good
13160 enough for windows, which can't have more than INT_MAX lines anyway.
13161
13162 2011-09-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
13163
13164 * Require libxml/parser.h to avoid compilation warning.
13165
13166 * emacs.c (shut_down_emacs): Call xmlCleanupParser on shutdown.
13167
13168 * xml.c (parse_region): Don't call xmlCleanupParser after parsing,
13169 since this reportedly can destroy thread storage.
13170
13171 2011-08-30 Chong Yidong <cyd@stupidchicken.com>
13172
13173 * syntax.c (find_defun_start): Update all cache variables if
13174 exiting early (Bug#9401).
13175
13176 2011-08-30 Eli Zaretskii <eliz@gnu.org>
13177
13178 * image.c (x_bitmap_pixmap): Cast to int to avoid compiler warnings.
13179
13180 * xdisp.c (produce_stretch_glyph): No longer static, compiled also
13181 when HAVE_WINDOW_SYSTEM is not defined. Support both GUI and TTY
13182 frames. Call tty_append_glyph in the TTY case. (Bug#9402)
13183
13184 * term.c (tty_append_glyph): New function.
13185 (produce_stretch_glyph): Static function and its prototype deleted.
13186
13187 * dispextern.h (produce_stretch_glyph, tty_append_glyph):
13188 Add prototypes.
13189
13190 2011-08-29 Paul Eggert <eggert@cs.ucla.edu>
13191
13192 * image.c (parse_image_spec): Check for nonnegative, not for positive,
13193 when checking :margin (Bug#9390).
13194 (IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR):
13195 Rename from IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR,
13196 so that the name doesn't mislead. All uses changed.
13197
13198 2011-08-28 Johan Bockgård <bojohan@gnu.org>
13199
13200 * term.c (init_tty) [HAVE_GPM]: Move mouse settings after
13201 set_tty_hooks.
13202
13203 2011-08-27 Eli Zaretskii <eliz@gnu.org>
13204
13205 * xdisp.c (move_it_to): Don't bail out early when reaching
13206 position beyond to_charpos, if we are scanning backwards.
13207 (move_it_vertically_backward): When DY == 0, make sure we get to
13208 the first character in the line after the newline.
13209
13210 2011-08-27 Paul Eggert <eggert@cs.ucla.edu>
13211
13212 * ccl.c: Improve and simplify overflow checking (Bug#9196).
13213 (ccl_driver): Do not generate an out-of-range pointer.
13214 (Fccl_execute_on_string): Remove unnecessary check for
13215 integer overflow, noted by Stefan Monnier in
13216 <http://lists.gnu.org/archive/html/emacs-devel/2011-08/msg00979.html>.
13217 Remove a FIXME that didn't need fixing.
13218 Simplify the newly-introduced buffer reallocation code.
13219
13220 2011-08-27 Juanma Barranquero <lekktu@gmail.com>
13221
13222 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on lib/verify.h.
13223
13224 2011-08-26 Paul Eggert <eggert@cs.ucla.edu>
13225
13226 Integer and memory overflow issues (Bug#9196).
13227
13228 * doc.c (get_doc_string): Rework so that
13229 get_doc_string_buffer_size is the actual buffer size, rather than
13230 being 1 less than the actual buffer size; this makes xpalloc more
13231 convenient.
13232
13233 * image.c (x_allocate_bitmap_record, cache_image):
13234 * xselect.c (Fx_register_dnd_atom):
13235 Simplify previous changes by using xpalloc.
13236
13237 * buffer.c (overlay_str_len): Now ptrdiff_t, not EMACS_INT,
13238 since either will do and ptrdiff_t is convenient with xpalloc.
13239
13240 * charset.c (charset_table_size)
13241 (struct charset_sort_data.priority): Now ptrdiff_t.
13242 (charset_compare): Don't overflow if priorities differ greatly.
13243 (Fsort_charsets): Don't assume list length fits in int.
13244 Check for size-calculation overflow when allocating sort data.
13245 (syms_of_charset): Allocate an initial charset table that is
13246 just under 64 KiB, to avoid problems with glibc malloc and mmap.
13247
13248 * cmds.c (internal_self_insert): Check for size-calculation overflow.
13249
13250 * composite.h (struct composition.glyph_len): Now int, not unsigned.
13251 The actual value is always <= INT_MAX, and leaving it unsigned made
13252 overflow checking harder.
13253
13254 * dispextern.h (struct glyph_matrix.rows_allocated)
13255 (struct face_cache.size): Now ptrdiff_t, for convenience in use
13256 with xpalloc. The values are still always <= INT_MAX.
13257
13258 * indent.c (compute_motion): Adjust to region_cache_forward sig change.
13259
13260 * lisp.h (xnmalloc, xnrealloc, xpalloc): New decls.
13261 (SAFE_NALLOCA): New macro.
13262
13263 * region-cache.c (struct boundary.pos, find_cache_boundary)
13264 (move_cache_gap, insert_cache_boundary, delete_cache_boundaries)
13265 (set_cache_region, invalidate_region_cache)
13266 (revalidate_region_cache, know_region_cache, region_cache_forward)
13267 (region_cache_backward, pp_cache):
13268 Use ptrdiff_t, not EMACS_INT, since either will do. This is needed
13269 so that ptrdiff_t * can be passed to xpalloc.
13270 (struct region_cache): Similarly, for gap_start, gap_len, cache_len,
13271 beg_unchanged, end_unchanged, buffer_beg, buffer_end members.
13272 (pp_cache): Don't assume cache_len fits in int.
13273 * region-cache.h: Adjust extern decls to match.
13274
13275 * search.c (scan_buffer, Freplace_match): Use ptrdiff_t, not
13276 EMACS_INT, since either will do, for xpalloc.
13277
13278 * alloc.c: Include verify.h, and check that int fits in ptrdiff_t.
13279 (xnmalloc, xnrealloc, xpalloc): New functions.
13280
13281 * bidi.c (bidi_shelve_header_size): New constant.
13282 (bidi_cache_ensure_space, bidi_shelve_cache): Use it.
13283 (bidi_cache_ensure_space): Avoid integer overflow when allocating.
13284
13285 * bidi.c (bidi_cache_shrink):
13286 * buffer.c (overlays_at, overlays_in, record_overlay_string)
13287 (overlay_strings):
13288 Don't update size of array until after memory allocation succeeds,
13289 because xmalloc/xrealloc may not return.
13290 (struct sortstrlist.bytes): Now ptrdiff_t, as EMACS_INT doesn't help
13291 now that we have proper integer overflow checking.
13292 (record_overlay_string, overlay_strings): Catch overflows when
13293 calculating size of overlay_str_buf.
13294
13295 * callproc.c (Fcall_process): Check for size overflow when
13296 calculating size of args2.
13297 (child_setup): Avoid overflow by using size_t rather than ptrdiff_t.
13298 Normally we prefer signed values, but sticking with ptrdiff_t would
13299 require adding more-complicated checks.
13300
13301 * ccl.c (Fccl_execute_on_string): Check for memory overflow.
13302 Use ptrdiff_t rather than EMACS_INT where ptrdiff_t will do.
13303 Redo buffer-overflow calculations to avoid integer overflow.
13304 Add a FIXME comment where memory seems to be over-allocated.
13305
13306 * character.c (Fstring): Check for size-calculation overflow.
13307
13308 * coding.c (produce_chars): Redo buffer-overflow calculations to avoid
13309 unnecessary integer overflow. Check for size overflow.
13310 (encode_coding_object): Don't update size until xmalloc succeeds.
13311
13312 * composite.c (get_composition_id): Check for overflow in glyph
13313 length calculations.
13314
13315 Integer and memory overflow fixes for display code.
13316 * dispextern.h (struct glyph_pool.nglyphs): Now ptrdiff_t, not int.
13317 * dispnew.c (adjust_glyph_matrix, realloc_glyph_pool)
13318 (scrolling_window): Check for overflow in size calculations.
13319 (line_draw_cost, realloc_glyph_pool, add_row_entry):
13320 Don't assume glyph table len fits in int.
13321 (struct row_entry.bucket, row_entry_pool_size, row_entry_idx)
13322 (row_table_size): Now ptrdiff_t, not int.
13323 (scrolling_window): Avoid overflow in size calculations.
13324 Don't update size until allocation succeeds.
13325 * fns.c (concat): Check for overflow in size calculations.
13326 (next_almost_prime): Verify NEXT_ALMOST_PRIME_LIMIT.
13327 * lisp.h (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
13328 (NEXT_ALMOST_PRIME_LIMIT): New constant.
13329
13330 * doc.c (get_doc_string_buffer_size): Now ptrdiff_t, not int.
13331 (get_doc_string): Check for size calculation overflow.
13332 Don't update size until allocation succeeds.
13333 (get_doc_string, Fsubstitute_command_keys): Use ptrdiff_t, not
13334 EMACS_INT, where ptrdiff_t will do.
13335 (Fsubstitute_command_keys): Check for string overflow.
13336
13337 * editfns.c (set_time_zone_rule): Don't assume environment length
13338 fits in int.
13339 (message_length): Now ptrdiff_t, not int.
13340 (Fmessage_box): Don't update size until allocation succeeds.
13341 Don't assume message length fits in int.
13342 (Fformat): Use ptrdiff_t, not EMACS_INT, where ptrdiff_t will do.
13343
13344 * emacs.c (main): Do not reallocate argv, since there is a null at
13345 the end that can be overwritten, and this way there's no need to
13346 worry about size-calculation overflow.
13347 (sort_args): Check for size-calculation overflow.
13348
13349 * eval.c (init_eval_once, grow_specpdl): Don't update size until
13350 alloc succeeds.
13351 (call_debugger, grow_specpdl): Redo calculations to avoid overflow.
13352
13353 * frame.c (set_menu_bar_lines, x_set_frame_parameters)
13354 (x_set_scroll_bar_width, x_figure_window_size):
13355 Check for integer overflow.
13356 (x_set_alpha): Do not assume XINT fits in int.
13357
13358 * frame.h (struct frame): Use int, not EMACS_INT, where int works.
13359 This is for the members text_lines, text_cols, total_lines, total_cols,
13360 where the system imposes an 'int' limit.
13361
13362 * fringe.c (Fdefine_fringe_bitmap):
13363 Don't update size until alloc works.
13364
13365 * ftfont.c (ftfont_get_open_type_spec, setup_otf_gstring)
13366 (ftfont_shape_by_flt): Check for integer overflow in size calculations.
13367
13368 * gtkutil.c (get_utf8_string, xg_store_widget_in_map):
13369 Check for size-calculation overflow.
13370 (get_utf8_string): Use ptrdiff_t, not size_t, where either will
13371 do, as we prefer signed integers.
13372 (id_to_widget.max_size, id_to_widget.used)
13373 (xg_store_widget_in_map, xg_remove_widget_from_map)
13374 (xg_get_widget_from_map, xg_get_scroll_id_for_window)
13375 (xg_remove_scroll_bar, xg_update_scrollbar_pos):
13376 Use and return ptrdiff_t, not int.
13377 (xg_gtk_scroll_destroy): Don't assume ptrdiff_t fits in int.
13378 * gtkutil.h: Change prototypes to match the above.
13379
13380 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): Remove; these
13381 are duplicate now that they've been promoted to lisp.h.
13382 (x_allocate_bitmap_record, x_alloc_image_color)
13383 (make_image_cache, cache_image, xpm_load):
13384 Don't update size until alloc is done.
13385 (xpm_load, lookup_rgb_color, lookup_pixel_color, x_to_xcolors)
13386 (x_detect_edges):
13387 Check for size calculation overflow.
13388 (ct_colors_allocated_max): New constant.
13389 (x_to_xcolors, x_detect_edges): Reorder multiplicands to avoid
13390 overflow.
13391
13392 * keyboard.c (read_char, menu_bar_items, tool_bar_items)
13393 (read_char_x_menu_prompt, read_char_minibuf_menu_width)
13394 (read_char_minibuf_menu_prompt, follow_key, read_key_sequence):
13395 Use ptrdiff_t, not int, to count maps.
13396 (read_char_minibuf_menu_prompt): Check for overflow in size
13397 calculations. Don't update size until allocation succeeds.
13398 Redo calculations to avoid overflow.
13399 * keyboard.h: Change prototypes to match the above.
13400
13401 * keymap.c (cmm_size, current_minor_maps): Use ptrdiff_t, not int,
13402 to count maps.
13403 (current_minor_maps): Check for size calculation overflow.
13404 * keymap.h: Change prototypes to match the above.
13405
13406 * lread.c (read1, init_obarray): Don't update size until alloc done.
13407
13408 * macros.c (Fstart_kbd_macro): Don't update size until alloc done.
13409 (store_kbd_macro_char): Reorder multiplicands to avoid overflow.
13410
13411 * nsterm.h (struct ns_color_table.size, struct ns_color_table.avail):
13412 Now ptrdiff_t, not int.
13413 * nsterm.m (ns_index_color): Use ptrdiff_t, not int, for table indexes.
13414 (ns_draw_fringe_bitmap): Rewrite to avoid overflow.
13415
13416 * process.c (Fnetwork_interface_list): Check for overflow
13417 in size calculation.
13418
13419 * region-cache.c (move_cache_gap): Check for size calculation overflow.
13420
13421 * scroll.c (do_line_insertion_deletion_costs): Check for size calc
13422 overflow. Don't bother calling xmalloc when xrealloc will do.
13423
13424 * search.c (Freplace_match): Check for size calculation overflow.
13425 (Fset_match_data): Don't assume list lengths fit in 'int'.
13426
13427 * sysdep.c (system_process_attributes): Use ptrdiff_t, not int,
13428 for command line length. Do not attempt to address one before the
13429 beginning of an array, as that's not portable.
13430
13431 * term.c (max_frame_lines): Remove; unused.
13432 (encode_terminal_src_size, encode_terminal_dst_size): Now ptrdiff_t,
13433 not int.
13434 (encode_terminal_code, calculate_costs): Check for size
13435 calculation overflow.
13436 (encode_terminal_code): Use ptrdiff_t, not int, to record glyph
13437 table lengths and related sizes. Don't update size until alloc
13438 done. Redo calculations to avoid overflow.
13439 (calculate_costs): Don't bother calling xmalloc when xrealloc will do.
13440
13441 * termcap.c (tgetent): Use ptrdiff_t, not int, to record results of
13442 subtracting pointers.
13443 (gobble_line): Check for overflow more carefully. Don't update size
13444 until alloc done.
13445
13446 * tparam.c (tparam1): Use ptrdiff_t, not int, for sizes.
13447 Don't update size until alloc done.
13448 Redo size calculations to avoid overflow.
13449 Check for size calculation overflow.
13450 (main) [DEBUG]: Fix typo in invoking tparam1.
13451
13452 * xdisp.c (store_mode_line_noprop_char, x_consider_frame_title):
13453 Use ptrdiff_t, not int, for sizes.
13454 (store_mode_line_noprop_char): Don't update size until alloc done.
13455
13456 * xfaces.c (lface_id_to_name_size, Finternal_make_lisp_face):
13457 Use ptrdiff_t, not int, for sizes.
13458 (Finternal_make_lisp_face, cache_face):
13459 Check for size calculation overflow.
13460 (cache_face): Treat size calculation overflows as if they were
13461 memory exhaustion (the usual treatment), rather than aborting.
13462
13463 * xfns.c (x_encode_text, x_set_name_internal)
13464 (Fx_change_window_property): Use ptrdiff_t, not int, to count
13465 sizes, since they can exceed INT_MAX in size. Check for size
13466 calculation overflow.
13467
13468 * xgselect.c (gfds_size): Now ptrdiff_t, for convenience with xpalloc.
13469 (xg_select): Check for size calculation overflow.
13470 Don't update size until alloc done.
13471
13472 * xrdb.c (get_environ_db): Don't assume path length fits in int,
13473 as sprintf is limited to int lengths.
13474
13475 * xselect.c (X_LONG_SIZE, X_SHRT_MAX, X_SHRT_MIN, X_LONG_MAX)
13476 (X_LONG_MIN): New macros.
13477 Use them to make the following changes clearer.
13478 (MAX_SELECTION_QUANTUM): Make the other bounds on this value clearer.
13479 This change doesn't affect the value now, but it may help remind
13480 future maintainers not to raise the value too much later.
13481 (SELECTION_QUANTUM): Remove, replacing with ...
13482 (selection_quantum): ... new function, which avoids overflow.
13483 All uses changed.
13484 (struct selection_data.size): Now ptrdiff_t, not int, to avoid
13485 assumption that selection length fits in 'int'.
13486 (x_reply_selection_request, x_handle_selection_request)
13487 (x_get_window_property, receive_incremental_selection)
13488 (x_get_window_property_as_lisp_data, selection_data_to_lisp_data)
13489 (lisp_data_to_selection_data, clean_local_selection_data):
13490 Use ptrdiff_t, not int, to record length of selection.
13491 (x_reply_selection_request, x_get_window_property)
13492 (receive_incremental_selection, x_property_data_to_lisp):
13493 Redo calculations to avoid overflow.
13494 (x_reply_selection_request): When sending hint, ceiling it at
13495 X_LONG_MAX rather than relying on wraparound overflow to send
13496 something.
13497 (x_get_window_property, receive_incremental_selection)
13498 (lisp_data_to_selection_data, x_property_data_to_lisp):
13499 Check for size-calculation overflow.
13500 (x_get_window_property, receive_incremental_selection)
13501 (lisp_data_to_selection_data, Fx_register_dnd_atom):
13502 Don't store size until memory allocation succeeds.
13503 (x_get_window_property): Plug memory leak on memory exhaustion.
13504 Don't double-block input; malloc is safe here. Don't assume 2**34
13505 - 4 fits in unsigned long. Add an xassert to check
13506 XGetWindowProperty overflow. Be more careful about overflow
13507 calculations, and distinguish size from memory overflow better.
13508 (receive_incremental_selection): When tracing, don't assume
13509 unsigned int is less than INT_MAX.
13510 (x_selection_data_to_lisp_data): Remove unnecessary (and in theory
13511 harmful) conversions of unsigned short to int.
13512 (lisp_data_to_selection_data): Don't assume that integers
13513 in the range -65535 through -1 fit in an X unsigned short.
13514 Don't assume that ULONG_MAX == X_ULONG_MAX. Don't store into
13515 result parameters unless successful. Rely on cons_to_unsigned
13516 to report problems with elements; the old code wasn't right anyway.
13517 (x_check_property_data): Check for int overflow; we cannot use
13518 a wider type due to X limits.
13519 (x_handle_dnd_message): Use unsigned int, to avoid int overflow.
13520
13521 * xsmfns.c (smc_save_yourself_CB): Check for size calc overflow.
13522
13523 * xterm.c (x_color_cells, x_send_scrollbar_event, handle_one_xevent)
13524 (x_term_init): Check for size calculation overflow.
13525 (x_color_cells): Don't store size until memory allocation succeeds.
13526 (handle_one_xevent): Use ptrdiff_t, not int, for byte counts.
13527 Don't assume alloca size is less than MAX_ALLOCA.
13528 (x_term_init): Don't assume length fits in int (sprintf is limited
13529 to int size).
13530
13531 Use ptrdiff_t for composition IDs.
13532 * character.c (lisp_string_width):
13533 * composite.c (composition_table_size, n_compositions)
13534 (get_composition_id, composition_gstring_from_id):
13535 * dispextern.h (struct glyph_string.cmp_id, struct composition_it.id):
13536 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING):
13537 * window.c (Frecenter):
13538 Use ptrdiff_t, not int, for composition IDs.
13539 * composite.c (get_composition_id): Check for integer overflow.
13540 * composite.h: Adjust prototypes to match the above changes.
13541
13542 Use ptrdiff_t for hash table indexes.
13543 * category.c (hash_get_category_set):
13544 * ccl.c (ccl_driver):
13545 * charset.h (struct charset.hash_index, CHECK_CHARSET_GET_ID):
13546 * coding.c (coding_system_charset_list, detect_coding_system):
13547 * coding.h (struct coding_system.id):
13548 * composite.c (get_composition_id, gstring_lookup_cache):
13549 * fns.c (hash_lookup, hash_put, Fgethash, Fputhash):
13550 * image.c (xpm_get_color_table_h):
13551 * lisp.h (hash_lookup, hash_put):
13552 * minibuf.c (Ftest_completion):
13553 Use ptrdiff_t for hash table indexes, not int (which is too
13554 narrow, on 64-bit hosts) or EMACS_INT (which is too wide, on
13555 32-bit --with-wide-int hosts).
13556
13557 * charset.c (Fdefine_charset_internal): Check for integer overflow.
13558 Add a FIXME comment about memory leaks.
13559 (syms_of_charset): Don't assume xmalloc returns.
13560
13561 Don't assume that stated character widths fit in int.
13562 * character.c (Fchar_width, c_string_width, lisp_string_width):
13563 * character.h (CHAR_WIDTH):
13564 * indent.c (MULTIBYTE_BYTES_WIDTH):
13565 Use sanitize_char_width to avoid undefined and/or bad behavior
13566 with outlandish widths.
13567 * character.h (sanitize_tab_width): Rename from sanitize_width,
13568 now that we have two such functions. All uses changed.
13569 (sanitize_char_width): New inline function.
13570
13571 Don't assume that tab-width fits in int.
13572 * character.h (sanitize_width): New inline function.
13573 (SANE_TAB_WIDTH): New macro.
13574 (ASCII_CHAR_WIDTH): Use it.
13575 * indent.c (sane_tab_width): Remove. All uses replaced by
13576 SANE_TAB_WIDTH (current_buffer).
13577 * xdisp.c (init_iterator): Use SANE_TAB_WIDTH.
13578
13579 * fileio.c: Integer overflow issues with file modes.
13580 (Fset_file_modes, auto_save_1): Don't assume EMACS_INT fits in int.
13581
13582 * charset.c (read_hex): New arg OVERFLOW. All uses changed.
13583 Remove unreachable code.
13584 (read_hex, load_charset_map_from_file): Check for integer overflow.
13585
13586 * xterm.c: Don't go over XClientMessageEvent limit.
13587 (scroll_bar_windows_size): Now ptrdiff_t, as we prefer signed.
13588 (x_send_scroll_bar_event): Likewise. Check that the size does not
13589 exceed limits imposed by XClientMessageEvent, as well as the usual
13590 ptrdiff_t and size_t limits.
13591
13592 * keyboard.c: Overflow, signedness and related fixes.
13593 (make_lispy_movement): Use same integer type in forward decl
13594 that is used in the definition.
13595 (read_key_sequence, keyremap_step):
13596 Change bufsize argument back to int, undoing my 2011-03-30 change.
13597 We prefer signed types, and int is wide enough here.
13598 (parse_tool_bar_item): Don't assume tool_bar_max_label_size is less
13599 than TYPE_MAXIMUM (EMACS_INT) / 2. Don't let the label size grow
13600 larger than STRING_BYTES_BOUND. Use ptrdiff_t for Emacs string
13601 length, not size_t. Use ptrdiff_t for index, not int.
13602 (keyremap_step, read_key_sequence): Redo bufsize check to avoid
13603 possibility of integer overflow.
13604
13605 Overflow, signedness and related fixes for images.
13606
13607 * dispextern.h (struct it.stack[0].u.image.image_id)
13608 (struct_it.image_id, struct image.id, struct image_cache.size)
13609 (struct image_cache.used, struct image_cache.ref_count):
13610 * gtkutil.c (update_frame_tool_bar):
13611 * image.c (x_reference_bitmap, Fimage_size, Fimage_mask_p)
13612 (Fimage_metadata, free_image_cache, clear_image_cache, lookup_image)
13613 (cache_image, mark_image_cache, x_kill_gs_process, Flookup_image):
13614 * nsmenu.m (update_frame_tool_bar):
13615 * xdisp.c (calc_pixel_width_or_height):
13616 * xfns.c (image_cache_refcount):
13617 Image IDs are now ptrdiff_t, not int, to avoid arbitrary limits
13618 on typical 64-bit hosts.
13619
13620 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
13621 (x_bitmap_pixmap, x_create_x_image_and_pixmap):
13622 Omit unnecessary casts to int.
13623 (parse_image_spec): Check that integers fall into 'int' range
13624 when the callers expect that.
13625 (image_ascent): Redo ascent calculation to avoid int overflow.
13626 (clear_image_cache): Avoid overflow when sqrt (INT_MAX) < nimages.
13627 (lookup_image): Remove unnecessary tests.
13628 (xbm_image_p): Locals are now of int, not EMACS_INT,
13629 since parse_image_check makes sure they fit into int.
13630 (png_load, gif_load, svg_load_image):
13631 Prefer int to unsigned where either will do.
13632 (tiff_handler): New function, combining the cores of the
13633 old tiff_error_handler and tiff_warning_handler.
13634 This function is rewritten to use vsnprintf and thereby avoid
13635 stack buffer overflows. It uses only the features of vsnprintf
13636 that are common to both POSIX and native Microsoft.
13637 (tiff_error_handler, tiff_warning_handler): Use it.
13638 (tiff_load, gif_load, imagemagick_load_image):
13639 Don't assume :index value fits in 'int'.
13640 (gif_load): Omit unnecessary cast to double, and avoid double-rounding.
13641 (imagemagick_load_image): Check that crop parameters fit into
13642 the integer types that MagickCropImage accepts. Don't assume
13643 Vimagemagick_render_type has a nonnegative value. Don't assume
13644 size_t fits in 'long'.
13645 (gs_load): Use printmax_t to print the widest integers possible.
13646 Check for integer overflow when computing image height and width.
13647
13648 2011-08-26 Eli Zaretskii <eliz@gnu.org>
13649
13650 * xdisp.c (redisplay_window): Don't force window start if point
13651 will be invisible in the resulting window. (Bug#9324)
13652
13653 2011-08-25 Eli Zaretskii <eliz@gnu.org>
13654
13655 * xdisp.c (compute_display_string_pos): Return 2 in DISP_PROP when
13656 the display spec is of the form `(space ...)'.
13657 (handle_display_spec): Return the value returned by
13658 handle_single_display_spec, not just 1 or zero.
13659 (handle_single_display_spec): If the display spec is of the form
13660 `(space ...)', and specifies display in the text area, return 2
13661 rather than 1.
13662 (try_cursor_movement): Check for the need to scroll more
13663 accurately, and prefer exact match for point under bidi.
13664 Don't advance `row' beyond the last row of the window.
13665
13666 * dispextern.h (struct bidi_it): Rename the disp_prop_p member
13667 into disp_prop; all users changed.
13668
13669 * bidi.c (bidi_fetch_char): If compute_display_string_pos returns
13670 DISP_PROP = 2, substitute the u+2029 PARAGRAPH SEPARATOR character
13671 for the text covered by the display property.
13672
13673 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
13674
13675 * buffer.c (Fbury_buffer_internal): Rename from Funrecord_buffer.
13676 Change return value to nil.
13677 (Frecord_buffer): Delete unused function.
13678
13679 2011-08-24 Eli Zaretskii <eliz@gnu.org>
13680
13681 * xdisp.c (Fcurrent_bidi_paragraph_direction): For unibyte
13682 buffers, return left-to-right.
13683 (set_cursor_from_row): Consider candidate row a win if its glyph
13684 represents a newline and point is on that newline. Fixes cursor
13685 positioning on the newline at EOL of R2L text within L2R
13686 paragraph, and vice versa.
13687 (try_cursor_movement): Check continued rows, in addition to
13688 continuation rows. Fixes unwarranted scroll when point enters a
13689 continued line of R2L text within an L2R paragraph, or vice versa.
13690 (cursor_row_p): Consider the case of point being equal to
13691 MATRIX_ROW_END_CHARPOS. Prevents cursor being stuck when moving
13692 from the end of a short line to the beginning of a continued line
13693 of R2L text within L2R paragraph.
13694 (RECORD_MAX_MIN_POS): For max_pos, use IT_CHARPOS even for
13695 composed characters.
13696
13697 * bidi.c (bidi_check_type): Use xassert.
13698 (bidi_cache_iterator_state): Update the disp_pos and disp_prop_p
13699 members.
13700
13701 2011-08-23 Eli Zaretskii <eliz@gnu.org>
13702
13703 * bidi.c (bidi_get_type): Abort if we get zero as the bidi type of
13704 a character.
13705
13706 2011-08-23 Chong Yidong <cyd@stupidchicken.com>
13707
13708 * nsfont.m (ns_otf_to_script): Fix typo.
13709
13710 2011-08-22 Kenichi Handa <handa@m17n.org>
13711
13712 * chartab.c (Fset_char_table_extra_slot): Do not inhibit setting a
13713 extra slot even if the purpose is char-code-property-table.
13714
13715 2011-08-23 Eli Zaretskii <eliz@gnu.org>
13716
13717 * xdisp.c (redisplay_window): When computing centering_position,
13718 account for the height of the header line. (Bug#8874)
13719
13720 * dispnew.c (buffer_posn_from_coords): Use buf_charpos_to_bytepos
13721 instead of CHAR_TO_BYTE. Fixes a crash when a completion
13722 candidate is selected by the mouse, and that candidate has a
13723 composed character under the mouse.
13724
13725 * xdisp.c (x_produce_glyphs): Set it->nglyphs to 1. Fixes pixel
13726 coordinates reported by pos-visible-in-window-p for a composed
13727 character in column zero.
13728
13729 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
13730
13731 * cmds.c (Fself_insert_command): Mention post-self-insert-hook.
13732
13733 2011-08-22 Eli Zaretskii <eliz@gnu.org>
13734
13735 * xdisp.c (BUFFER_POS_REACHED_P): If this is a composition,
13736 consider it a hit if to_charpos is anywhere in the range of the
13737 composed buffer positions.
13738
13739 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
13740
13741 * image.c (gif_load): Don't assume that each subimage has the same
13742 dimensions as the base image. Handle disposal method that is
13743 "undefined" by the gif spec (Bug#9335).
13744
13745 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
13746
13747 * eval.c (Fsignal): Handle `debug' symbol in error handler (Bug#9329).
13748 (Fcondition_case): Document `debug' symbol in error handler.
13749
13750 2011-08-19 Eli Zaretskii <eliz@gnu.org>
13751
13752 * xfaces.c (face_at_buffer_position): Avoid repeated evaluation of
13753 face ID by FACE_FROM_ID, and avoid a crash when mouse is moved
13754 from an Org mode buffer to a Speedbar frame.
13755
13756 * xdisp.c (RECORD_MAX_MIN_POS): If the display element comes from
13757 a composition, take its buffer position from IT->cmp_it.charpos.
13758 Fixes cursor positioning at the beginning of a line that begins
13759 with a composed character.
13760
13761 2011-08-18 Eli Zaretskii <eliz@gnu.org>
13762
13763 * bidi.c (bidi_get_type): If bidi_type_table reports zero as the
13764 character bidirectional type, use STRONG_L instead. Fixes crashes
13765 in a buffer produced by `describe-categories'.
13766
13767 * dispextern.h (struct bidi_it): Move disp_pos and disp_prop_p
13768 members before the level stack, so they would be saved and
13769 restored when copying iterator state. Fixes incorrect reordering
13770 around TABs covered by display properties.
13771
13772 2011-08-18 Andreas Schwab <schwab@linux-m68k.org>
13773
13774 * process.c (Fnetwork_interface_list): Correctly determine buffer size.
13775
13776 2011-08-17 Chong Yidong <cyd@stupidchicken.com>
13777
13778 * eval.c (internal_condition_case, internal_condition_case_1)
13779 (internal_condition_case_2, internal_condition_case_n):
13780 Remove unnecessary aborts (Bug#9081).
13781
13782 2011-08-17 Eli Zaretskii <eliz@gnu.org>
13783
13784 * lread.c (Fload) [DOS_NT]: If `openp' returns -2, but the file
13785 has no `load' handler, try opening the file locally. (Bug#9311)
13786
13787 2011-08-16 Ken Brown <kbrown@cornell.edu>
13788
13789 * gmalloc.c: Expand comment.
13790
13791 2011-08-16 Eli Zaretskii <eliz@gnu.org>
13792
13793 * xdisp.c (set_cursor_from_row): Don't accept a previous candidate
13794 if it fails the cursor_row_p test. Fixes cursor positioning at ZV.
13795
13796 2011-08-16 Ken Brown <kbrown@cornell.edu>
13797
13798 Fix memory allocation problems in Cygwin build (Bug#9273).
13799
13800 * unexcw.c ( __malloc_initialized): Declare external variable.
13801 (fixup_executable): Force the dumped emacs to reinitialize malloc.
13802
13803 * gmalloc.c [CYGWIN] (bss_sbrk_heapbase, bss_sbrk_heapinfo):
13804 New variables.
13805 (malloc_initialize_1) [CYGWIN]: Prepare for reinitializing the
13806 dumped emacs.
13807 (_free_internal_nolock) [CYGWIN]: Ignore requests to free storage
13808 in the static heap.
13809 [CYGWIN] (special_realloc): New function.
13810 (_realloc_internal_nolock) [CYGWIN]: Use the new function on
13811 requests to realloc storage in the static heap.
13812
13813 2011-08-15 Paul Eggert <eggert@cs.ucla.edu>
13814
13815 * bidi.c (bidi_initialize): Remove unused local.
13816
13817 2011-08-15 Eli Zaretskii <eliz@gnu.org>
13818
13819 * bidimirror.h:
13820 * biditype.h: Remove file.
13821 * makefile.w32-in ($(BLD)/bidi.$(O)):
13822 * deps.mk (bidi.o): Remove biditype.h and bidimirror.h.
13823
13824 * dispextern.h: Fix a typo in the comment to bidi_type_t.
13825
13826 * chartab.c: Improve commentary for the uniprop_table API.
13827
13828 * bidi.c (bidi_paragraph_init): Support zero value of
13829 bidi_ignore_explicit_marks_for_paragraph_level.
13830 (bidi_initialize): Use uniprop_table instead of including
13831 biditype.h and bidimirror.h.
13832
13833 * xdisp.c (move_it_in_display_line_to): Don't reset pixel
13834 coordinates of the iterator when restoring from ppos_it.
13835 (Bug#9296)
13836
13837 2011-08-14 Kenichi Handa <handa@m17n.org>
13838
13839 * process.c (create_process): Call setup_process_coding_systems
13840 after the pid of the process is set to -1 (Bug#8162).
13841
13842 2011-08-14 Eli Zaretskii <eliz@gnu.org>
13843
13844 * xdisp.c (move_it_in_display_line_to): Don't invoke
13845 IT_RESET_X_ASCENT_DESCENT when iterator position was restored from
13846 ppos_it. Fixes vertical cursor motion when line beginning is
13847 covered by an image. (Bug#9296)
13848
13849 2011-08-14 Jan Djärv <jan.h.d@swipnet.se>
13850
13851 * nsterm.h (ns_run_ascript): Declare.
13852 (NSAPP_DATA2_RUNASSCRIPT): Define.
13853
13854 * nsfns.m (as_script, as_result, as_status): New static variables.
13855 (ns_run_ascript): New function.
13856 (Fns_do_applescript): Set variables as_*. Make an NSApplicationDefined
13857 event with data2 set to NSAPP_DATA2_RUNASSCRIPT, post it and then start
13858 the event loop. Get status from as_status (Bug#7276).
13859
13860 * nsterm.m (sendEvent): If event is NSApplicationDefined and
13861 data2 is NSAPP_DATA2_RUNASSCRIPT, call ns_run_ascript and then exit
13862 the event loop (Bug#7276).
13863
13864 2011-08-14 Andreas Schwab <schwab@linux-m68k.org>
13865
13866 * gnutls.c (QCgnutls_bootprop_priority)
13867 (QCgnutls_bootprop_trustfiles, QCgnutls_bootprop_keylist)
13868 (QCgnutls_bootprop_crlfiles, QCgnutls_bootprop_callbacks)
13869 (QCgnutls_bootprop_loglevel, QCgnutls_bootprop_hostname)
13870 (QCgnutls_bootprop_min_prime_bits, QCgnutls_bootprop_verify_flags)
13871 (QCgnutls_bootprop_verify_hostname_error)
13872 (QCgnutls_bootprop_callbacks_verify): Rename from
13873 Qgnutls_bootprop_..., all uses changed.
13874
13875 * xfaces.c (QCignore_defface): Rename from Qignore_defface, all
13876 uses changed.
13877
13878 2011-08-14 Paul Eggert <eggert@cs.ucla.edu>
13879
13880 * xfaces.c (Qframe_set_background_mode): Now static.
13881 * dispextern.h (Qframe_set_background_mode): Remove decl.
13882
13883 * process.c (Fnetwork_interface_info): Declare local only if needed.
13884
13885 2011-08-13 Jan Djärv <jan.h.d@swipnet.se>
13886
13887 * process.c: Include ifaddrs.h and net/if_dl.h if available (Bug#8477).
13888 (Fnetwork_interface_list): Allocate in increments of bytes instead
13889 of sizeof (struct ifreq). Iterate over ifconf.ifc_req by counting
13890 bytes (Bug#8477). Count bytes correctly when ifr_addr is a struct
13891 sockaddr.
13892 (struct ifflag_def): notrailers is smart on OSX.
13893 (Fnetwork_interface_info): Handle case when ifr_flags is negative.
13894 Get hardware address with getifaddrs if available.
13895
13896 2011-08-12 Eli Zaretskii <eliz@gnu.org>
13897
13898 * xdisp.c (iterate_out_of_display_property): xassert that
13899 IT->position is set to within IT->object's boundaries. Break from
13900 the loop as soon as EOB is reached; avoids infloops in redisplay
13901 when IT->position is set up wrongly due to some bug.
13902 Set IT->current to match the bidi iterator unconditionally.
13903 (push_display_prop): Allow GET_FROM_STRING as IT->method on
13904 entry. Force push_it to save on the stack the current
13905 buffer/string position, to be restored by pop_it. Fix flags in
13906 the iterator structure wrt the object coming from a display
13907 property, as `line-prefix' and `wrap-prefix' are not ``replacing''
13908 properties. (Bug#9284)
13909
13910 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
13911
13912 * fontset.c (fontset_get_font_group): Add proper type checks.
13913 (Bug#9172)
13914
13915 2011-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13916
13917 * unexmacosx.c (print_load_command_name): Add cases LC_FUNCTION_STARTS
13918 and LC_VERSION_MIN_MACOSX.
13919 (copy_linkedit_data) [LC_FUNCTION_STARTS]: New function.
13920 (dump_it) [LC_FUNCTION_STARTS]: Use it.
13921
13922 2011-08-08 Eli Zaretskii <eliz@gnu.org>
13923
13924 * xdisp.c (forward_to_next_line_start): Allow to use the
13925 no-display-properties-and-no-overlays under bidi display.
13926 Set disp_pos in the bidi iterator to avoid searches for display
13927 properties and overlays.
13928
13929 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
13930
13931 * editfns.c (Fset_time_zone_rule): Document relationship with the
13932 setenv function.
13933
13934 * ftfont.c (ftfont_pattern_entity): Copy the extras argument to
13935 the font entity extracted from the cache (Bug#8109).
13936
13937 2011-08-07 Chong Yidong <cyd@stupidchicken.com>
13938
13939 * composite.c (autocmp_chars): Don't reset point. That is done by
13940 restore_point_unwind (Bug#5984).
13941
13942 2011-08-07 Juri Linkov <juri@jurta.org>
13943
13944 * editfns.c (Fformat_time_string): Doc fix, add tag `usage:'
13945 to show the arg `TIME' instead of `TIMEVAL'.
13946
13947 2011-08-06 Eli Zaretskii <eliz@gnu.org>
13948
13949 * xdisp.c (set_cursor_from_row): Fix cursor positioning when a
13950 display property strides EOL and includes a newline, as in
13951 longlines-mode. (Bug#9254)
13952 (move_it_in_display_line_to): Fix vertical-motion in a buffer with
13953 word-wrap under bidirectional display. (Bug#9224)
13954
13955 * bidi.c (bidi_unshelve_cache): Don't reset the cache if JUST_FREE
13956 is non-zero, even if the data buffer is NULL. Fixes a crash in
13957 vertical-motion with longlines-mode. (Bug#9254)
13958
13959 2011-08-05 Eli Zaretskii <eliz@gnu.org>
13960
13961 * bidi.c <bidi_cache_total_alloc>: Now static.
13962 (bidi_initialize): Initialize bidi_cache_total_alloc.
13963
13964 * xdisp.c (display_line): Release buffer allocated for shelved bidi
13965 cache. (Bug#9221)
13966
13967 * bidi.c (bidi_shelve_cache, bidi_unshelve_cache): Track total
13968 amount allocated this far in `bidi_cache_total_alloc'.
13969 (bidi_unshelve_cache): Accept an additional argument JUST_FREE; if
13970 non-zero, only free the data buffer without restoring the cache
13971 contents. All callers changed.
13972
13973 * dispextern.h (bidi_unshelve_cache): Update prototype.
13974
13975 * xdisp.c (SAVE_IT, pos_visible_p, move_it_in_display_line_to)
13976 (move_it_in_display_line, move_it_to)
13977 (move_it_vertically_backward, move_it_by_lines): Replace the call
13978 to xfree to an equivalent call to bidi_unshelve_cache.
13979 (move_it_in_display_line_to): Fix logic of returning
13980 MOVE_POS_MATCH_OR_ZV in the bidi case. (Bug#9224)
13981
13982 2011-08-05 Eli Zaretskii <eliz@gnu.org>
13983
13984 * xdisp.c (set_cursor_from_row): Prefer the candidate glyph that
13985 came from a string character with a `cursor' property. (Bug#9229)
13986
13987 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
13988
13989 * Makefile.in (LIB_PTHREAD): New variable.
13990 (LIBES): Add LIB_PTHREAD (Bug#9216).
13991
13992 * alloc.c, emacs.c, gmalloc.c, gtkutil.c, keyboard.c, syssignal.h:
13993 Rename HAVE_GTK_AND_PTHREAD to HAVE_PTHREAD (Bug#9216).
13994
13995 2011-08-04 Andreas Schwab <schwab@linux-m68k.org>
13996
13997 * regex.c (re_iswctype): Remove some redundant boolean conversions.
13998
13999 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
14000
14001 * xterm.c (x_find_topmost_parent): New function.
14002 (x_set_frame_alpha): Find topmost parent window with
14003 x_find_topmost_parent and set the property there also (bug#9181).
14004 (handle_one_xevent): Call x_set_frame_alpha on ReparentNotify.
14005
14006 2011-08-04 Paul Eggert <eggert@cs.ucla.edu>
14007
14008 * callproc.c (Fcall_process): Avoid vfork clobbering
14009 the local vars buffer, coding_systems, current_dir.
14010
14011 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
14012
14013 * keymap.c (Fmake_composed_keymap): Move to subr.el.
14014
14015 2011-08-03 Paul Eggert <eggert@cs.ucla.edu>
14016
14017 * fontset.c (dump_fontset) [FONTSET_DEBUG]: Declare EXTERNALLY_VISIBLE
14018 so that it is not optimized away.
14019
14020 * xdisp.c (compute_display_string_pos): Remove unused local.
14021
14022 2011-08-02 Eli Zaretskii <eliz@gnu.org>
14023
14024 Fix slow cursor motion and scrolling in large buffers with
14025 selective display, like Org Mode buffers. (Bug#9218)
14026
14027 * dispextern.h (struct bidi_it): New member disp_prop_p.
14028
14029 * xdisp.c: Remove one-slot cache of display string positions.
14030 (compute_display_string_pos): Accept an additional argument
14031 DISP_PROP_P; callers changed. Scan at most 5K characters forward
14032 for a display string or property. If found, set DISP_PROP_P
14033 non-zero.
14034
14035 * bidi.c (bidi_fetch_char): Accept an additional argument
14036 DISP_PROP_P, and pass it to compute_display_string_pos.
14037 Only handle text covered by a display string if DISP_PROP_P is returned
14038 non-zero. All callers of bidi_fetch_char changed.
14039
14040 2011-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
14041
14042 * keymap.c (Fdefine_key): Fix Lisp_Object/int mixup; apply some CSE.
14043
14044 2010-12-03 Don March <don@ohspite.net>
14045
14046 * keymap.c (Fdefine_key): Fix non-prefix key error message when
14047 last character M-[char] is translated to ESC [char] (bug#7541).
14048
14049 2011-08-02 Kenichi Handa <handa@m17n.org>
14050
14051 * lisp.h (uniprop_table): Extern it.
14052
14053 * chartab.c (uniprop_table): Make it non-static.
14054
14055 2011-08-01 Eli Zaretskii <eliz@gnu.org>
14056
14057 * xdisp.c (forward_to_next_line_start): Accept additional argument
14058 BIDI_IT_PREV, and store into it the state of the bidi iterator had
14059 on the newline.
14060 (reseat_at_next_visible_line_start): Use the bidi iterator state
14061 returned by forward_to_next_line_start to restore the state of
14062 it->bidi_it after backing up to previous newline. (Bug#9212)
14063
14064 2011-07-30 Andreas Schwab <schwab@linux-m68k.org>
14065
14066 * regex.c (re_comp): Protoize.
14067 (re_exec): Fix return type.
14068 (regexec): Fix type of `ret'. (Bug#9203)
14069
14070 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
14071
14072 * image.c (check_image_size): Use 1024x1024 if unknown frame (Bug#9189).
14073 This is needed if max-image-size is a floating-point number.
14074
14075 2011-07-28 Andreas Schwab <schwab@linux-m68k.org>
14076
14077 * print.c (print_object): Print empty symbol as ##.
14078
14079 * lread.c (read1): Read ## as empty symbol.
14080
14081 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
14082
14083 * nsfns.m (x_set_foreground_color): Set f->foreground_pixel when
14084 setting frame foreground color (Bug#9175).
14085 (x_set_background_color): Likewise.
14086
14087 * nsmenu.m (-setText): Size tooltip dimensions precisely to
14088 contents (Bug#9176).
14089 (EmacsTooltip -init): Remove bezels and add shadows to
14090 tooltip windows.
14091
14092 * nsterm.m (ns_dumpglyphs_stretch): Avoid overwriting left fringe
14093 or scroll bar (Bug#8470).
14094
14095 * nsfont.m (nsfont_open): Remove assignment to voffset and
14096 unnecessary vars hshink, expand, hd, full_height, min_height.
14097 (nsfont_draw): Use s->ybase as baseline for glyph drawing (Bug#8913).
14098
14099 * nsterm.h (nsfont_info): Remove voffset field.
14100
14101 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
14102
14103 Implement strike-through and overline on NextStep (Bug#8863).
14104
14105 * nsfont.m (nsfont_open): Use underline position provided by font,
14106 instead of hard-coded value of 2.
14107 (nsfont_draw): Call ns_draw_text_decoration instead.
14108
14109 * nsterm.h: Add declaration for ns_draw_text_decoration.
14110
14111 * nsterm.m (ns_draw_text_decoration): New function for drawing
14112 underline, overline, and strike-through.
14113 (ns_dumpglyphs_image, ns_dumpglyphs_stretch): Add call to
14114 ns_draw_text_decoration. Change treatment of cursor drawing to
14115 accommodate underlining, etc.
14116
14117 2011-07-28 Eli Zaretskii <eliz@gnu.org>
14118
14119 * buffer.c (init_buffer_once): Set bidi-display-reordering to t by
14120 default.
14121
14122 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
14123
14124 * alloc.c (memory_full) [!SYNC_INPUT]: Fix signal-related race.
14125 Without this fix, if a signal arrives just after memory fills up,
14126 'malloc' might be invoked reentrantly.
14127
14128 * image.c (x_check_image_size) [!HAVE_X_WINDOWS]: Return 1.
14129 In other words, assume that every image size is allowed, on non-X
14130 hosts. This assumption is probably wrong, but it lets Emacs compile.
14131
14132 2011-07-28 Andreas Schwab <schwab@linux-m68k.org>
14133
14134 * regex.c (re_iswctype): Convert return values to boolean.
14135
14136 2011-07-28 Eli Zaretskii <eliz@fencepost.gnu.org>
14137
14138 * xdisp.c (compute_display_string_pos): Don't use cached display
14139 string position if the buffer had its restriction changed.
14140 (Bug#9184)
14141
14142 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
14143
14144 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
14145
14146 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
14147
14148 Integer signedness and overflow and related fixes. (Bug#9079)
14149
14150 * bidi.c: Integer size and overflow fixes.
14151 (bidi_cache_size, bidi_cache_idx, bidi_cache_last_idx)
14152 (bidi_cache_start, bidi_cache_fetch_state, bidi_cache_search)
14153 (bidi_cache_find_level_change, bidi_cache_ensure_space)
14154 (bidi_cache_iterator_state, bidi_cache_find, bidi_cache_start_stack)
14155 (bidi_find_other_level_edge):
14156 Use ptrdiff_t instead of EMACS_INT where either will do.
14157 This works better on 32-bit hosts configured --with-wide-int.
14158 (bidi_cache_ensure_space): Check for size-calculation overflow.
14159 Use % rather than repeated addition, for better worst-case speed.
14160 Don't set bidi_cache_size until after xrealloc returns, because it
14161 might not return.
14162 (bidi_dump_cached_states): Use ptrdiff_t, not int, to avoid overflow.
14163 (bidi_cache_ensure_space): Also check that the bidi cache size
14164 does not exceed that of the largest Lisp string or buffer. See Eli
14165 Zaretskii in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#29>.
14166
14167 * alloc.c (__malloc_size_t): Remove.
14168 All uses replaced by size_t. See Andreas Schwab's note
14169 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#8>.
14170
14171 * image.c: Improve checking for integer overflow.
14172 (check_image_size): Assume that f is nonnull, since
14173 it is always nonnull in practice. This is one less thing to
14174 worry about when checking for integer overflow later.
14175 (x_check_image_size): New function, which checks for integer
14176 overflow issues inside X.
14177 (x_create_x_image_and_pixmap, xbm_read_bitmap_data): Use it.
14178 This removes the need for a memory_full check.
14179 (xbm_image_p): Rewrite to avoid integer multiplication overflow.
14180 (Create_Pixmap_From_Bitmap_Data, xbm_load): Use x_check_image_size.
14181 (xbm_read_bitmap_data): Change locals back to 'int', since
14182 their values must fit in 'int'.
14183 (xpm_load_image, png_load, tiff_load):
14184 Invoke x_create_x_image_and_pixmap earlier,
14185 to avoid much needless work if the image is too large.
14186 (tiff_load): Treat overly large images as if
14187 x_create_x_image_and_pixmap failed, not as malloc failures.
14188 (gs_load): Use x_check_image_size.
14189
14190 * gtkutil.c: Omit integer casts.
14191 (xg_get_pixbuf_from_pixmap): Remove unnecessary cast.
14192 (xg_set_toolkit_scroll_bar_thumb): Rewrite to avoid need for cast.
14193
14194 * image.c (png_load): Don't assume height * row_bytes fits in 'int'.
14195
14196 * xfaces.c (Fbitmap_spec_p): Fix integer overflow bug.
14197 Without this fix, (bitmap-spec-p '(34359738368 1 "x"))
14198 would wrongly return t on a 64-bit host.
14199
14200 * dispnew.c (init_display): Use *_RANGE_OVERFLOW macros.
14201 The plain *_OVERFLOW macros run afoul of GCC bug 49705
14202 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49705>
14203 and therefore cause GCC to emit a bogus diagnostic in some cases.
14204
14205 * image.c: Integer signedness and overflow and related fixes.
14206 This is not an exhaustive set of fixes, but it's time to
14207 record what I've got.
14208 (lookup_pixel_color, check_image_size): Remove redundant decls.
14209 (check_image_size): Don't assume that arbitrary EMACS_INT values
14210 fit in 'int', or that arbitrary 'double' values fit in 'int'.
14211 (x_alloc_image_color, x_create_x_image_and_pixmap, png_load)
14212 (tiff_load, imagemagick_load_image):
14213 Check for overflow in size calculations.
14214 (x_create_x_image_and_pixmap): Remove unnecessary test for
14215 xmalloc returning NULL; that can't happen.
14216 (xbm_read_bitmap_data): Don't assume sizes fit into 'int'.
14217 (xpm_color_bucket): Use better integer hashing function.
14218 (xpm_cache_color): Don't possibly over-allocate memory.
14219 (struct png_memory_storage, tiff_memory_source, tiff_seek_in_memory)
14220 (gif_memory_source):
14221 Use ptrdiff_t, not int or size_t, to record sizes.
14222 (png_load): Don't assume values greater than 2**31 fit in 'int'.
14223 (our_stdio_fill_input_buffer): Prefer ptrdiff_t to size_t when
14224 either works, as we prefer signed integers.
14225 (tiff_read_from_memory, tiff_write_from_memory):
14226 Return tsize_t, not size_t, since that's what the TIFF API wants.
14227 (tiff_read_from_memory): Don't fail simply because the read would
14228 go past EOF; instead, return a short read.
14229 (tiff_load): Omit no-longer-needed casts.
14230 (Fimagemagick_types): Don't assume size fits into 'int'.
14231
14232 Improve hashing quality when configured --with-wide-int.
14233 * fns.c (hash_string): New function, taken from sxhash_string.
14234 Do not discard information about ASCII character case; this
14235 discarding is no longer needed.
14236 (sxhash-string): Use it. Change sig to match it. Caller changed.
14237 * lisp.h: Declare it.
14238 * lread.c (hash_string): Remove, since we now use fns.c's version.
14239 The fns.c version returns a wider integer if --with-wide-int is
14240 specified, so this should help the quality of the hashing a bit.
14241
14242 * emacs.c: Integer overflow minor fix.
14243 (heap_bss_diff): Now uprintmax_t, not unsigned long. All used changed.
14244 Define only if GNU_LINUX.
14245 (main, Fdump_emacs): Set and use heap_bss_diff only if GNU_LINUX.
14246
14247 * dispnew.c: Integer signedness and overflow fixes.
14248 Remove unnecessary forward decls, that were a maintenance hassle.
14249 (history_tick): Now uprintmax_t, so it's more likely to avoid overflow.
14250 All uses changed.
14251 (adjust_glyph_matrix, realloc_glyph_pool, adjust_frame_message_buffer)
14252 (scrolling_window): Use ptrdiff_t, not int, for byte count.
14253 (prepare_desired_row, line_draw_cost):
14254 Use int, not unsigned, where either works.
14255 (save_current_matrix, restore_current_matrix):
14256 Use ptrdiff_t, not size_t, where either works.
14257 (init_display): Check for overflow more accurately, and without
14258 relying on undefined behavior.
14259
14260 * editfns.c (pWIDE, pWIDElen, signed_wide, unsigned_wide):
14261 Remove, replacing with the new symbols in lisp.h. All uses changed.
14262 * fileio.c (make_temp_name):
14263 * filelock.c (lock_file_1, lock_file):
14264 * xdisp.c (message_dolog):
14265 Don't assume PRIdMAX etc. works; this isn't portable to pre-C99 hosts.
14266 Use pMd etc. instead.
14267 * lisp.h (printmax_t, uprintmax_t, pMd, pMu): New types and macros,
14268 replacing the pWIDE etc. symbols removed from editfns.c.
14269
14270 * keyboard.h (num_input_events): Now uintmax_t.
14271 This is (very slightly) less likely to mess up due to wraparound.
14272 All uses changed.
14273
14274 * buffer.c: Integer signedness fixes.
14275 (alloc_buffer_text, enlarge_buffer_text):
14276 Use ptrdiff_t rather than size_t when either will do, as we prefer
14277 signed integers.
14278
14279 * alloc.c: Integer signedness and overflow fixes.
14280 Do not impose an arbitrary 32-bit limit on malloc sizes when debugging.
14281 (__malloc_size_t): Default to size_t, not to int.
14282 (pure_size, pure_bytes_used_before_overflow, stack_copy_size)
14283 (Fgarbage_collect, mark_object_loop_halt, mark_object):
14284 Prefer ptrdiff_t to size_t when either would do, as we prefer
14285 signed integers.
14286 (XMALLOC_OVERRUN_CHECK_OVERHEAD): New macro.
14287 (xmalloc_overrun_check_header, xmalloc_overrun_check_trailer):
14288 Now const. Initialize with values that are in range even if char
14289 is signed.
14290 (XMALLOC_PUT_SIZE, XMALLOC_GET_SIZE): Remove, replacing with ...
14291 (xmalloc_put_size, xmalloc_get_size): New functions. All uses changed.
14292 These functions do the right thing with sizes > 2**32.
14293 (check_depth): Now ptrdiff_t, not int.
14294 (overrun_check_malloc, overrun_check_realloc, overrun_check_free):
14295 Adjust to new way of storing sizes. Check for size overflow bugs
14296 in rest of code.
14297 (STRING_BYTES_MAX): Adjust to new overheads. The old code was
14298 slightly wrong anyway, as it missed one instance of
14299 XMALLOC_OVERRUN_CHECK_OVERHEAD.
14300 (refill_memory_reserve): Omit needless cast to size_t.
14301 (mark_object_loop_halt): Mark as externally visible.
14302
14303 * xselect.c: Integer signedness and overflow fixes.
14304 (Fx_register_dnd_atom, x_handle_dnd_message):
14305 Use ptrdiff_t, not size_t, since we prefer signed.
14306 (Fx_register_dnd_atom): Check for ptrdiff_t (and size_t) overflow.
14307 * xterm.h (struct x_display_info): Use ptrdiff_t, not size_t, for
14308 x_dnd_atoms_size and x_dnd_atoms_length.
14309
14310 * doprnt.c: Prefer signed to unsigned when either works.
14311 * eval.c (verror):
14312 * doprnt.c (doprnt):
14313 * lisp.h (doprnt):
14314 * xdisp.c (vmessage):
14315 Use ptrdiff_t, not size_t, when using or implementing doprnt,
14316 since the sizes cannot exceed ptrdiff_t bounds anyway, and we
14317 prefer signed arithmetic to avoid comparison confusion.
14318 * doprnt.c (doprnt): Avoid a "+ 1" that can't overflow,
14319 but is a bit tricky.
14320
14321 Assume freestanding C89 headers, string.h, stdlib.h.
14322 * data.c, doprnt.c, floatfns.c, print.c:
14323 Include float.h unconditionally.
14324 * gmalloc.c: Assume C89-at-least behavior for preprocessor,
14325 limits.h, stddef.h, string.h. Use memset instead of 'flood'.
14326 * regex.c: Likewise for stddef.h, string.h.
14327 (ISASCII): Remove; can assume it returns 1 now. All uses removed.
14328 * s/aix4-2.h (HAVE_STRING_H): Remove obsolete undef.
14329 * s/ms-w32.h (HAVE_LIMITS_H, HAVE_STRING_H, HAVE_STDLIB_H)
14330 (STDC_HEADERS): Remove obsolete defines.
14331 * sysdep.c: Include limits.h unconditionally.
14332
14333 Assume support for memcmp, memcpy, memmove, memset.
14334 * lisp.h, sysdep.c (memcmp, memcpy, memmove, memset):
14335 * regex.c (memcmp, memcpy):
14336 Remove; we assume C89 now.
14337
14338 * gmalloc.c (memcpy, memset, memmove): Remove; we assume C89 now.
14339 (__malloc_safe_bcopy): Remove; no longer needed.
14340
14341 * lisp.h (struct vectorlike_header, struct Lisp_Subr): Signed sizes.
14342 Use EMACS_INT, not EMACS_UINT, for sizes. The code works equally
14343 well either way, and we prefer signed to unsigned.
14344
14345 2011-07-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
14346
14347 * gnutls.c (emacs_gnutls_read): Don't message anything if the peer
14348 closes the connection while we're reading (bug#9182).
14349
14350 2011-07-25 Jan Djärv <jan.h.d@swipnet.se>
14351
14352 * nsmenu.m (ns_popup_dialog): Add an "ok" button if no buttons
14353 are specified (Bug#9168).
14354
14355 2011-07-25 Paul Eggert <eggert@cs.ucla.edu>
14356
14357 * bidi.c (bidi_dump_cached_states): Fix printf format mismatch.
14358 Found by GCC static checking and --with-wide-int on a 32-bit host.
14359
14360 2011-07-25 Eli Zaretskii <eliz@gnu.org>
14361
14362 * xdisp.c (compute_display_string_pos): Fix logic of caching
14363 previous display string position. Initialize cached_prev_pos to
14364 -1. Fixes slow-down at the beginning of a buffer.
14365
14366 2011-07-24 Eli Zaretskii <eliz@gnu.org>
14367
14368 * xfaces.c (check_lface_attrs) [HAVE_WINDOW_SYSTEM]: Allow `nil'
14369 for attrs[LFACE_FONTSET_INDEX].
14370
14371 2011-07-23 Paul Eggert <eggert@cs.ucla.edu>
14372
14373 * xml.c (parse_region): Remove unused local
14374 that was recently introduced.
14375
14376 2011-07-23 Eli Zaretskii <eliz@gnu.org>
14377
14378 * xfns.c (unwind_create_frame) [GLYPH_DEBUG]: Adapt to changes in
14379 2008-02-22T17:42:09Z!monnier@iro.umontreal.ca.
14380
14381 * xdisp.c (move_it_in_display_line_to): Record the best matching
14382 position for TO_CHARPOS while scanning the line, and restore it on
14383 exit if none of the characters scanned was an exact match.
14384 Fixes vertical-motion and pos-visible-in-window-p under bidi redisplay
14385 when exact match is impossible due to invisible text, and the
14386 lines are truncated.
14387
14388 2011-07-23 Jan Djärv <jan.h.d@swipnet.se>
14389
14390 * nsterm.m (initFrameFromEmacs): Set NSTitledWindowMask in styleMask
14391 for OSX >= 10.7.
14392
14393 2011-07-22 Eli Zaretskii <eliz@gnu.org>
14394
14395 Fix a significant slow-down of cursor motion with C-n, C-p,
14396 C-f/C-b, and C-v/M-v that couldn't keep up with keyboard
14397 auto-repeat under bidi redisplay in fontified buffers.
14398 * xdisp.c (compute_stop_pos_backwards): New function.
14399 (next_element_from_buffer): Call compute_stop_pos_backwards to
14400 find a suitable prev_stop when we find ourselves before
14401 base_level_stop.
14402 (reseat): Don't look for prev_stop, as that could mean a very long
14403 run.
14404 <cached_disp_pos, cached_disp_buffer, cached_disp_modiff>
14405 <cached_disp_overlay_modiff>: Cache for last found display string
14406 position.
14407 (compute_display_string_pos): Return the cached position if asked
14408 about the same buffer in the same area of character positions, and
14409 the buffer wasn't changed since the time the display string
14410 position was cached.
14411
14412 2011-07-22 Eli Zaretskii <eliz@gnu.org>
14413
14414 * xdisp.c (rows_from_pos_range): Don't ignore glyphs whose object
14415 is an integer, which is important for empty lines. (Bug#9149)
14416
14417 2011-07-22 Chong Yidong <cyd@stupidchicken.com>
14418
14419 * frame.c (Fmodify_frame_parameters): In tty case, update the
14420 default face if necessary (Bug#4238).
14421
14422 2011-07-21 Chong Yidong <cyd@stupidchicken.com>
14423
14424 * editfns.c (Fstring_to_char): No need to explain what a character
14425 is in the docstring (Bug#6576).
14426
14427 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
14428
14429 * xml.c (parse_region): Make sure we always return a tree.
14430
14431 2011-07-20 HAMANO Kiyoto <khiker.mail@gmail.com>
14432
14433 * xml.c (parse_region): If a document contains only comments,
14434 return that, too.
14435
14436 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
14437
14438 * xml.c (make_dom): Return comments, too.
14439
14440 2011-07-19 Paul Eggert <eggert@cs.ucla.edu>
14441
14442 Port to OpenBSD.
14443 See http://lists.gnu.org/archive/html/emacs-devel/2011-07/msg00688.html
14444 and the surrounding thread.
14445 * minibuf.c (read_minibuf_noninteractive): Rewrite to use getchar
14446 rather than fgets, and retry after EINTR. Otherwise, 'emacs
14447 --batch -f byte-compile-file' fails on OpenBSD if an inactivity
14448 timer goes off.
14449 * s/openbsd.h (BROKEN_SIGIO): Define.
14450 * unexelf.c (unexec) [__OpenBSD__]:
14451 Don't update the .mdebug section of the Alpha COFF symbol table.
14452
14453 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
14454
14455 * lread.c (syms_of_lread): Clarify when `lexical-binding' is used
14456 (bug#8460).
14457
14458 2011-07-18 Paul Eggert <eggert@cs.ucla.edu>
14459
14460 * fileio.c (Fcopy_file) [!MSDOS]: Tighten created file's mask.
14461 This fixes some race conditions on the permissions of any newly
14462 created file.
14463
14464 * alloc.c (valid_pointer_p): Use pipe, not open.
14465 This fixes some permissions issues when debugging.
14466
14467 * fileio.c (Fcopy_file): Adjust mode if fchown fails. (Bug#9002)
14468 If fchown fails to set both uid and gid, try to set just gid,
14469 as that is sometimes allowed. Adjust the file's mode to eliminate
14470 setuid or setgid bits that are inappropriate if fchown fails.
14471
14472 2011-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
14473
14474 * xdisp.c (next_element_from_string, next_element_from_buffer): Use EQ
14475 to compare Lisp_Objects.
14476 * gnutls.c (syms_of_gnutls): Rename Vgnutls_log_level to
14477 global_gnutls_log_level, don't mistake it for a Lisp_Object.
14478 (init_gnutls_functions, emacs_gnutls_handle_error): Fix up uses.
14479
14480 2011-07-17 Andreas Schwab <schwab@linux-m68k.org>
14481
14482 * lread.c (read_integer): Unread even EOF character.
14483 (read1): Likewise. Properly record start position of symbol.
14484
14485 * lread.c (read1): Read `#:' as empty uninterned symbol if no
14486 symbol character follows.
14487
14488 2011-07-17 Paul Eggert <eggert@cs.ucla.edu>
14489
14490 * fileio.c (Fcopy_file): Pacify gcc re fchown. (Bug#9002)
14491 This works around a problem with the previous change to Fcopy_file.
14492 Recent glibc declares fchown with __attribute__((warn_unused_result)),
14493 and without this change, GCC might complain about discarding
14494 fchown's return value.
14495
14496 2011-07-16 Juanma Barranquero <lekktu@gmail.com>
14497
14498 * makefile.w32-in (GLOBAL_SOURCES): Add gnutls.c (followup to bug#9059).
14499
14500 2011-07-16 Paul Eggert <eggert@cs.ucla.edu>
14501
14502 * fileio.c (Fcopy_file): Don't diagnose fchown failures. (Bug#9002)
14503
14504 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
14505
14506 * gnutls.c (syms_of_gnutls): Define `gnutls-log-level' here, since
14507 it's used from the C level.
14508
14509 * process.c: Use the same condition for POLL_FOR_INPUT in both
14510 keyboard.c and process.c (bug#1858).
14511
14512 2011-07-09 Lawrence Mitchell <wence@gmx.li>
14513
14514 * gnutls.c (Qgnutls_bootprop_min_prime_bits): New variable.
14515 (Fgnutls_boot): Use it.
14516
14517 2011-07-15 Andreas Schwab <schwab@linux-m68k.org>
14518
14519 * doc.c (Fsubstitute_command_keys): Revert last change.
14520
14521 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
14522
14523 * doc.c (Fsubstitute_command_keys): Clarify that \= really only
14524 quotes the next character, and doesn't affect other longer
14525 sequences (bug#8935).
14526
14527 * lread.c (syms_of_lread): Clarify that is isn't only
14528 `eval-buffer' and `eval-defun' that's affected by
14529 `lexical-binding' (bug#8460).
14530
14531 2011-07-15 Eli Zaretskii <eliz@gnu.org>
14532
14533 * xdisp.c (move_it_in_display_line_to): Fix vertical motion with
14534 bidi redisplay when a line includes both an image and is truncated.
14535
14536 2011-07-14 Paul Eggert <eggert@cs.ucla.edu>
14537
14538 Fix minor problems found by static checking.
14539 * bidi.c (bidi_cache_size): Now EMACS_INT, not size_t.
14540 (elsz): Now a signed constant, not a size_t var. We prefer signed
14541 types to unsigned, to avoid integer comparison confusion. Without
14542 this change, GCC 4.6.1 with -Wunsafe-loop-optimizations complains
14543 "cannot optimize loop, the loop counter may overflow", a symptom
14544 of the confusion.
14545 * indent.c (Fvertical_motion): Mark locals as initialized.
14546 * xdisp.c (reseat_to_string): Fix pointer signedness issue.
14547
14548 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
14549
14550 * search.c (Fre_search_backward): Mention `case-fold-search' in
14551 all the re_search_* functions (bug#8138).
14552
14553 * keyboard.c (Fopen_dribble_file): Document when the file is
14554 closed (bug#8056).
14555
14556 2011-07-14 Eli Zaretskii <eliz@gnu.org>
14557
14558 * bidi.c (bidi_dump_cached_states): Fix format of displaying
14559 bidi_cache_idx.
14560
14561 Support bidi reordering of display and overlay strings.
14562 * xdisp.c (compute_display_string_pos)
14563 (compute_display_string_end): Accept additional argument STRING.
14564 (init_iterator, reseat_1): Initialize bidi_it->string.s to NULL.
14565 (reseat_to_string): Initialize bidi_it->string.s and
14566 bidi_it->string.schars.
14567 (Fcurrent_bidi_paragraph_direction): Initialize itb.string.s to
14568 NULL (avoids a crash in bidi_paragraph_init).
14569 Initialize itb.string.lstring.
14570 (init_iterator): Call bidi_init_it only of a valid
14571 buffer position was specified. Initialize paragraph_embedding to
14572 L2R.
14573 (reseat_to_string): Initialize the bidi iterator.
14574 (display_string): If we need to ignore text properties of
14575 LISP_STRING, set IT->stop_charpos to IT->end_charpos. (The
14576 original value of -1 will not work with bidi.)
14577 (compute_display_string_pos): First arg is now struct
14578 `text_pos *'; all callers changed. Support display properties on
14579 Lisp strings.
14580 (compute_display_string_end): Support display properties on Lisp
14581 strings.
14582 (init_iterator, reseat_1, reseat_to_string): Initialize the
14583 string.bufpos member to 0 (zero, for compatibility with IT_CHARPOS
14584 when iterating on a string not from display properties).
14585 (compute_display_string_pos, compute_display_string_end):
14586 Fix calculation of the object to scan. Fixes an error when using
14587 arrow keys.
14588 (next_element_from_buffer): Don't abort when IT_CHARPOS is before
14589 base_level_stop; instead, set base_level_stop to BEGV.
14590 Fixes crashes in vertical-motion.
14591 (next_element_from_buffer): Improve commentary for when
14592 the iterator is before prev_stop.
14593 (init_iterator): Initialize bidi_p from the default value of
14594 bidi-display-reordering, not from buffer-local value. Use the
14595 buffer-local value only if initializing for buffer iteration.
14596 (handle_invisible_prop): Support invisible properties on strings
14597 that are being bidi-reordered.
14598 (set_iterator_to_next): Support bidi reordering of C strings and
14599 Lisp strings.
14600 (next_element_from_string): Support bidi reordering of Lisp
14601 strings.
14602 (handle_stop_backwards): Support Lisp strings as well.
14603 (display_string): Support display of R2L glyph rows.
14604 Use IT_STRING_CHARPOS when displaying from a Lisp string.
14605 (init_iterator): Don't initialize it->bidi_p for strings
14606 here.
14607 (reseat_to_string): Initialize it->bidi_p for strings here.
14608 (next_element_from_string, next_element_from_c_string)
14609 (next_element_from_buffer): Add xassert's for correspondence
14610 between IT's object being iterated and it->bidi_it.string
14611 structure.
14612 (face_before_or_after_it_pos): Support bidi iteration.
14613 (next_element_from_c_string): Handle the case of the first string
14614 character that is not the first one in the visual order.
14615 (get_visually_first_element): New function, refactored from common
14616 parts of next_element_from_buffer, next_element_from_string, and
14617 next_element_from_c_string.
14618 (tool_bar_lines_needed, redisplay_tool_bar)
14619 (display_menu_bar): Force left-to-right direction. Add a FIXME
14620 comment for making that be controlled by a user option.
14621 (push_it, pop_it): Save and restore the state of the
14622 bidi iterator. Save and restore the bidi_p flag.
14623 (pop_it): Iterate out of display property for string iteration as
14624 well.
14625 (iterate_out_of_display_property): Support iteration over strings.
14626 (handle_single_display_spec): Set up it->bidi_it for iteration
14627 over a display string, and call bidi_init_it.
14628 (handle_single_display_spec, next_overlay_string)
14629 (get_overlay_strings_1, push_display_prop): Set up the bidi
14630 iterator for displaying display or overlay strings.
14631 (forward_to_next_line_start): Don't use the shortcut if
14632 bidi-iterating.
14633 (back_to_previous_visible_line_start): If handle_display_prop
14634 pushed the iterator stack, restore the internal state of the bidi
14635 iterator by calling bidi_pop_it same number of times.
14636 (reseat_at_next_visible_line_start): If ON_NEWLINE_P is non-zero,
14637 and we are bidi-iterating, don't decrement the iterator position;
14638 instead, set the first_elt flag in the bidi iterator, to produce
14639 the same effect.
14640 (reseat_1): Remove redundant setting of string_from_display_prop_p.
14641 (push_display_prop): xassert that we are iterating a buffer.
14642 (push_it, pop_it): Save and restore paragraph_embedding member.
14643 (handle_single_display_spec, next_overlay_string)
14644 (get_overlay_strings_1, reseat_1, reseat_to_string)
14645 (push_display_prop): Set up the `unibyte' member of bidi_it.string
14646 correctly. Don't assume unibyte strings are not bidi-reordered.
14647 (compute_display_string_pos)
14648 (compute_display_string_end): Fix handling the case of C string.
14649 (push_it, pop_it): Save and restore from_disp_prop_p.
14650 (handle_single_display_spec, push_display_prop): Set the
14651 from_disp_prop_p flag.
14652 (get_overlay_strings_1): Reset the from_disp_prop_p flag.
14653 (pop_it): Call iterate_out_of_display_property only if we are
14654 popping after iteration over a string that came from a display
14655 property. Fix a typo in popping stretch info. Add an assertion
14656 for verifying that the iterator position is in sync with the bidi
14657 iterator.
14658 (handle_single_display_spec, get_overlay_strings_1)
14659 (push_display_prop): Fix initialization of paragraph direction for
14660 string when that of the parent object is not yet determined.
14661 (reseat_1): Call bidi_init_it to resync the bidi
14662 iterator with IT's position. (Bug#7616)
14663 (find_row_edges): If ROW->start.pos gives position
14664 smaller than min_pos, use it as ROW->minpos. (Bug#7616)
14665 (handle_stop, back_to_previous_visible_line_start, reseat_1):
14666 Reset the from_disp_prop_p flag.
14667 (SAVE_IT, RESTORE_IT): New macros.
14668 (pos_visible_p, face_before_or_after_it_pos)
14669 (back_to_previous_visible_line_start)
14670 (move_it_in_display_line_to, move_it_in_display_line)
14671 (move_it_to, move_it_vertically_backward, move_it_by_lines)
14672 (try_scrolling, redisplay_window, display_line): Use them when
14673 saving a temporary copy of the iterator and restoring it back.
14674 (back_to_previous_visible_line_start, reseat_1)
14675 (init_iterator): Empty the bidi cache "stack".
14676 (move_it_in_display_line_to): If iterator ended up at
14677 EOL, but we never saw any buffer positions smaller than
14678 to_charpos, return MOVE_POS_MATCH_OR_ZV. Fixes vertical cursor
14679 motion in bidi-reordered lines.
14680 (move_it_in_display_line_to): Record prev_method and prev_pos
14681 immediately before the call to set_iterator_to_next. Fixes cursor
14682 motion in bidi-reordered lines with stretch glyphs and strings
14683 displayed in margins. (Bug#8133) (Bug#8867)
14684 Return MOVE_POS_MATCH_OR_ZV only if iterator position is past
14685 TO_CHARPOS.
14686 (pos_visible_p): Support positions in bidi-reordered lines.
14687 Save and restore bidi cache.
14688
14689 * bidi.c (bidi_level_of_next_char): clen should be EMACS_NT, not int.
14690 (bidi_paragraph_info): Delete unused struct.
14691 (bidi_cache_idx, bidi_cache_last_idx): Declare EMACS_INT.
14692 (bidi_cache_start): New variable.
14693 (bidi_cache_reset): Reset bidi_cache_idx to bidi_cache_start, not
14694 to zero.
14695 (bidi_cache_fetch_state, bidi_cache_search)
14696 (bidi_cache_find_level_change, bidi_cache_iterator_state)
14697 (bidi_cache_find, bidi_peek_at_next_level)
14698 (bidi_level_of_next_char, bidi_find_other_level_edge)
14699 (bidi_move_to_visually_next): Compare cache index with
14700 bidi_cache_start rather than with zero.
14701 (bidi_fetch_char): Accept new argument STRING; all callers
14702 changed. Support iteration over a string. Support strings with
14703 display properties. Support unibyte strings. Fix the type of
14704 `len' according to what STRING_CHAR_AND_LENGTH expects.
14705 (bidi_paragraph_init, bidi_resolve_explicit_1)
14706 (bidi_resolve_explicit, bidi_resolve_weak)
14707 (bidi_level_of_next_char, bidi_move_to_visually_next):
14708 Support iteration over a string.
14709 (bidi_set_sor_type, bidi_resolve_explicit_1)
14710 (bidi_resolve_explicit, bidi_type_of_next_char): ignore_bn_limit
14711 can now be zero (for strings); special values 0 and -1 were
14712 changed to -1 and -2, respectively.
14713 (bidi_char_at_pos): New function.
14714 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak):
14715 Call it instead of FETCH_MULTIBYTE_CHAR.
14716 (bidi_move_to_visually_next): Abort if charpos or bytepos were not
14717 initialized to valid values.
14718 (bidi_init_it): Don't initialize charpos and bytepos with invalid
14719 values.
14720 (bidi_level_of_next_char): Allow the sentinel "position" to pass
14721 the test for valid cached positions. Fix the logic for looking up
14722 the sentinel state in the cache. GCPRO the Lisp string we are
14723 iterating.
14724 (bidi_push_it, bidi_pop_it): New functions.
14725 (bidi_initialize): Initialize the bidi cache start stack pointer.
14726 (bidi_cache_ensure_space): New function, refactored from part of
14727 bidi_cache_iterator_state. Don't assume the required size is just
14728 one BIDI_CACHE_CHUNK away.
14729 (bidi_cache_start_stack, bidi_push_it): Use IT_STACK_SIZE.
14730 (bidi_count_bytes, bidi_char_at_pos): New functions.
14731 (bidi_cache_search): Don't assume bidi_cache_last_idx is
14732 always valid if bidi_cache_idx is valid.
14733 (bidi_cache_find_level_change): xassert that bidi_cache_last_idx
14734 is valid if it's going to be used.
14735 (bidi_shelve_cache, bidi_unshelve_cache): New functions.
14736 (bidi_cache_fetch_state, bidi_cache_search)
14737 (bidi_cache_find_level_change, bidi_cache_ensure_space)
14738 (bidi_cache_iterator_state, bidi_cache_find)
14739 (bidi_find_other_level_edge, bidi_cache_start_stack):
14740 All variables related to cache indices are now EMACS_INT.
14741
14742 * dispextern.h (struct bidi_string_data): New structure.
14743 (struct bidi_it): New member `string'. Make flag members be 1-bit
14744 fields, and put them last in the struct.
14745 (compute_display_string_pos, compute_display_string_end):
14746 Update prototypes.
14747 (bidi_push_it, bidi_pop_it): Add prototypes.
14748 (struct iterator_stack_entry): New members bidi_p,
14749 paragraph_embedding, and from_disp_prop_p.
14750 (struct it): Member bidi_p is now a bit field 1 bit wide.
14751 (bidi_shelve_cache, bidi_unshelve_cache):
14752 Declare prototypes.
14753
14754 * .gdbinit (xvectype, xvector, xcompiled, xchartable, xboolvector)
14755 (xpr, xfont, xbacktrace): Use "header.size" when accessing vectors
14756 and vector-like objects.
14757
14758 * dispnew.c (buffer_posn_from_coords): Save and restore the bidi
14759 cache around display iteration.
14760
14761 * window.c (Fwindow_end, window_scroll_pixel_based)
14762 (displayed_window_lines, Frecenter): Save and restore the bidi
14763 cache around display iteration.
14764
14765 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
14766
14767 * editfns.c (Fdelete_region): Clarify the use of the named
14768 parameters (bug#6788).
14769
14770 2011-07-14 Martin Rudalics <rudalics@gmx.at>
14771
14772 * indent.c (Fvertical_motion): Set and restore w->pointm when
14773 saving and restoring the window's buffer (Bug#9006).
14774
14775 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
14776
14777 * editfns.c (Fstring_to_char): Clarify just what is returned
14778 (bug#6576). Text by Eli Zaretskii.
14779
14780 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
14781
14782 * gnutls.c (init_gnutls_functions): Honor gnutls_log_level (bug#9059).
14783
14784 2011-07-13 Eli Zaretskii <eliz@gnu.org>
14785
14786 * buffer.c (mmap_find): Fix a typo.
14787
14788 2011-07-13 Johan Bockgård <bojohan@gnu.org>
14789
14790 Fix execution of x selection hooks.
14791 * xselect.c (Qx_lost_selection_functions)
14792 (Qx_sent_selection_functions): New vars.
14793 (syms_of_xselect): DEFSYM them.
14794 (x_handle_selection_request): Pass Qx_sent_selection_functions
14795 rather than Vx_sent_selection_functions to Frun_hook_with_args.
14796 (x_handle_selection_clear,x_clear_frame_selections):
14797 Pass Qx_lost_selection_functions rather than
14798 Vx_lost_selection_functions to Frun_hook_with_args.
14799
14800 2011-07-13 Paul Eggert <eggert@cs.ucla.edu>
14801
14802 * buffer.c (Fget_buffer_create): Initialize inhibit_shrinking.
14803 The old code sometimes used this field without initializing it.
14804
14805 * alloc.c (gc_sweep): Don't read past end of array.
14806 In theory, the old code could also have corrupted Emacs internals,
14807 though it'd be very unlikely.
14808
14809 2011-07-12 Andreas Schwab <schwab@linux-m68k.org>
14810
14811 * character.c (Fcharacterp): Don't advertise optional ignored
14812 argument. (Bug#4026)
14813
14814 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
14815
14816 * keymap.c (syms_of_keymap): Clarify that "modifier" is "modifier
14817 key" (bug#4257).
14818
14819 * window.c (Fset_window_start): Doc fix (bug#4199).
14820 (Fset_window_hscroll): Ditto.
14821
14822 2011-07-12 Paul Eggert <eggert@cs.ucla.edu>
14823
14824 Fix minor new problems caught by GCC 4.6.1.
14825 * term.c (init_tty): Remove unused local.
14826 * xsettings.c (store_monospaced_changed): Define this function only
14827 if (defined HAVE_GSETTINGS || defined HAVE_GCONF), as it's
14828 not used otherwise.
14829
14830 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
14831
14832 * xdisp.c (Vresize_mini_windows): Minor doc fix (Bug#3300).
14833
14834 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
14835
14836 * xdisp.c (syms_of_xdisp): Make it explicit that the mini-windows
14837 are the mini-buffer and the echo area (bug#3320).
14838
14839 * term.c (init_tty): Remove support for supdup, c10 and perq
14840 terminals, which are no longer supported (bug#1482).
14841
14842 2011-07-10 Johan Bockgård <bojohan@gnu.org>
14843
14844 * xdisp.c (Ftool_bar_lines_needed): Fix WINDOWP check.
14845
14846 2011-07-10 Jan Djärv <jan.h.d@swipnet.se>
14847
14848 * xmenu.c (menu_highlight_callback): Only pass frame to show_help_event
14849 for non-popups (Bug#3642).
14850
14851 2011-07-10 Andreas Schwab <schwab@linux-m68k.org>
14852
14853 * alloc.c (reset_malloc_hooks): Protoize.
14854 * buffer.c (mmap_init, mmap_find, mmap_free_1, mmap_enlarge)
14855 (mmap_set_vars, mmap_alloc, mmap_free, mmap_realloc): Likewise.
14856 * cm.c (losecursor): Likewise.
14857 * data.c (fmod): Likewise.
14858 * dispnew.c (swap_glyphs_in_rows): Likewise.
14859 * emacs.c (memory_warning_signal): Likewise.
14860 * floatfns.c (float_error): Likewise.
14861 * font.c (check_gstring, check_otf_features, otf_tag_symbol)
14862 (otf_open, font_otf_capability, generate_otf_features)
14863 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
14864 Likewise.
14865 * image.c (pbm_read_file): Likewise.
14866 * indent.c (string_display_width): Likewise.
14867 * intervals.c (check_for_interval, search_for_interval)
14868 (inc_interval_count, count_intervals, root_interval)
14869 (adjust_intervals_for_insertion, make_new_interval): Likewise.
14870 * lread.c (defalias): Likewise.
14871 * ralloc.c (r_alloc_check): Likewise.
14872 * regex.c (set_image_of_range_1, set_image_of_range)
14873 (regex_grow_registers): Likewise.
14874 * sysdep.c (strerror): Likewise.
14875 * termcap.c (valid_filename_p, tprint, main): Likewise.
14876 * tparam.c (main): Likewise.
14877 * unexhp9k800.c (run_time_remap, save_data_space)
14878 (update_file_ptrs, read_header, write_header, calculate_checksum)
14879 (copy_file, copy_rest, display_header): Likewise.
14880 * widget.c (mark_shell_size_user_specified, create_frame_gcs):
14881 Likewise.
14882 * xdisp.c (check_it): Likewise.
14883 * xfaces.c (register_color, unregister_color, unregister_colors):
14884 Likewise.
14885 * xfns.c (print_fontset_result): Likewise.
14886 * xrdb.c (member, fatal, main): Likewise.
14887
14888 2011-07-10 Paul Eggert <eggert@cs.ucla.edu>
14889
14890 Fix minor problems found by static checking (Bug#9031).
14891 * chartab.c (char_table_set_range, map_sub_char_table):
14892 Remove unused locals.
14893 (uniprop_table): Now static.
14894 * composite.c (_work_char): Remove unused static var.
14895
14896 2011-07-09 Juanma Barranquero <lekktu@gmail.com>
14897
14898 * chartab.c (uniprop_table_uncompress): Remove unused local variable.
14899
14900 2011-07-09 Jan Djärv <jan.h.d@swipnet.se>
14901
14902 * gtkutil.c (qttip_cb): Remove code without function.
14903
14904 2011-07-09 Eli Zaretskii <eliz@gnu.org>
14905
14906 * w32.c (pthread_sigmask): New stub.
14907
14908 2011-07-08 Paul Eggert <eggert@cs.ucla.edu>
14909
14910 Use pthread_sigmask, not sigprocmask (Bug#9010).
14911 sigprocmask is portable only for single-threaded applications, and
14912 Emacs can be multi-threaded when it uses GTK.
14913 * Makefile.in (LIB_PTHREAD_SIGMASK): New macro.
14914 (LIBES): Use it.
14915 * callproc.c (Fcall_process):
14916 * process.c (create_process):
14917 * sysdep.c (sys_sigblock, sys_sigunblock, sys_sigsetmask):
14918 Use pthread_sigmask, not sigprocmask.
14919
14920 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
14921
14922 * gtkutil.c (qttip_cb): Set line wrap to FALSE for tooltip widget.
14923 (xg_prepare_tooltip): Revert text in x->ttip_lbl, margins was
14924 wrong (Bug#8591).
14925
14926 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
14927
14928 * gtkutil.c (xg_prepare_tooltip): Fix indentation and comment.
14929 Put text in x->ttip_lbl instead of gtk_tooltip_set_text (Bug#8591).
14930 (xg_hide_tooltip): Fix comment.
14931
14932 * nsterm.m (initFrameFromEmacs): Don't use ns_return_types
14933 in registerServicesMenuSendTypes.
14934 (validRequestorForSendType): Don't check ns_return_types.
14935
14936 * nsfns.m (Fx_open_connection): Put NSStringPboardType into
14937 ns_return_type.
14938
14939 2011-07-08 Jason Rumney <jasonr@gnu.org>
14940
14941 * w32term.c (x_make_frame_visible): Use SH_SHOWNORMAL rather than
14942 SH_SHOW for hidden windows (Bug#5482).
14943
14944 * w32fns.c (w32_wnd_proc) [WM_TIMER, WM_SET_CURSOR]: Avoid using
14945 frame struct members of non-existent frames (Bug#6284).
14946
14947 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
14948
14949 * nsterm.m (keyDown): Call to wantsToDelayTextChangeNotifications and
14950 variable firstTime not needed on OSX >= 10.6.
14951 (setPosition): setFloatValue:knobProportion: is deprecated on OSX
14952 >= 10.5. Use setKnobProportion, setDoubleValue.
14953
14954 * nsterm.h (MAC_OS_X_VERSION_10_3, MAC_OS_X_VERSION_10_4)
14955 (MAC_OS_X_VERSION_10_5): Define if not defined.
14956 (EmacsView, EmacsTooltip): Implements NSWindowDelegate on OSX >= 10.6.
14957 (EmacsMenu): Implements NSMenuDelegate on OSX >= 10.6.
14958 (EmacsToolbar): Implements NSToolbarDelegate on OSX >= 10.6.
14959
14960 * nsselect.m (ns_string_from_pasteboard): Don't use deprecated methods
14961 cString and lossyCString on OSX >= 10.4.
14962
14963 * nsmenu.m (fillWithWidgetValue): Don't use deprecated method
14964 sizeToFit on OSX >= 10.2.
14965
14966 * nsimage.m (allocInitFromFile): Don't use deprecated method
14967 bestRepresentationForDevice on OSX >= 10.6.
14968
14969 * nsfns.m (check_ns_display_info): Cast to long and use %ld in error
14970 to avoid warning.
14971
14972 * emacs.c: Declare unexec_init_emacs_zone.
14973
14974 * nsgui.h: Fix compiler warning about gnulib redefining verify.
14975
14976 * nsselect.m (ns_get_local_selection): Change to extern (Bug#8842).
14977
14978 * nsmenu.m (ns_update_menubar): Remove useless setDelegate call
14979 on svcsMenu (Bug#8842).
14980
14981 * nsfns.m (Fx_open_connection): Remove NSStringPboardType from
14982 ns_return_types.
14983 (Fns_list_services): Just return Qnil on 10.6, code not working there.
14984
14985 * nsterm.m (QUTF8_STRING): Declare.
14986 (initFrameFromEmacs): Call registerServicesMenuSendTypes.
14987 (validRequestorForSendType): Return type is (id).
14988 Change indexOfObjectIdenticalTo to indexOfObject.
14989 Check if we have local selection before returning self (Bug#8842).
14990 (writeSelectionToPasteboard): Put local selection into paste board
14991 if we have a local selection (Bug#8842).
14992 (syms_of_nsterm): DEFSYM QUTF8_STRING.
14993
14994 * nsterm.h (MAC_OS_X_VERSION_10_6): Define here instead of nsterm.m.
14995 (ns_get_local_selection): Declare.
14996
14997 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
14998
14999 * keymap.c (describe_map_tree): Don't insert a double newline at
15000 the end of the buffer (bug#1169) and return whether we inserted
15001 something.
15002
15003 * callint.c (Fcall_interactively): Change "reading args" to
15004 "providing args" to try to clarify what it does (bug#1010).
15005
15006 2011-07-07 Kenichi Handa <handa@m17n.org>
15007
15008 * composite.c (composition_compute_stop_pos): Ignore a static
15009 composition starting before CHARPOS (Bug#8915).
15010
15011 * xdisp.c (handle_composition_prop): Likewise.
15012
15013 2011-07-07 Eli Zaretskii <eliz@gnu.org>
15014
15015 * term.c (produce_glyphs) <xassert>: Allow IT_GLYPHLESS in it->what.
15016 (Bug#9015)
15017
15018 2011-07-07 Kenichi Handa <handa@m17n.org>
15019
15020 * character.h (unicode_category_t): New enum type.
15021
15022 * chartab.c (uniprop_decoder_t, uniprop_encoder_t): New types.
15023 (Qchar_code_property_table): New variable.
15024 (UNIPROP_TABLE_P, UNIPROP_GET_DECODER)
15025 (UNIPROP_COMPRESSED_FORM_P): New macros.
15026 (char_table_ascii): Uncompress the compressed values.
15027 (sub_char_table_ref): New arg is_uniprop. Callers changed.
15028 Uncompress the compressed values.
15029 (sub_char_table_ref_and_range): Likewise.
15030 (char_table_ref_and_range): Uncompress the compressed values.
15031 (sub_char_table_set): New arg is_uniprop. Callers changed.
15032 Uncompress the compressed values.
15033 (sub_char_table_set_range): Args changed. Callers changed.
15034 (char_table_set_range): Adjuted for the above change.
15035 (map_sub_char_table): Delete args default_val and parent. Add arg
15036 top. Give decoded values to a Lisp function.
15037 (map_char_table): Adjust for the above change. Give decoded
15038 values to a Lisp function. Gcpro more variables.
15039 (uniprop_table_uncompress)
15040 (uniprop_decode_value_run_length): New functions.
15041 (uniprop_decoder, uniprop_decoder_count): New variables.
15042 (uniprop_get_decoder, uniprop_encode_value_character)
15043 (uniprop_encode_value_run_length, uniprop_encode_value_numeric):
15044 New functions.
15045 (uniprop_encoder, uniprop_encoder_count): New variables.
15046 (uniprop_get_encoder, uniprop_table)
15047 (Funicode_property_table_internal, Fget_unicode_property_internal)
15048 (Fput_unicode_property_internal): New functions.
15049 (syms_of_chartab): DEFSYM Qchar_code_property_table, defsubr
15050 Sunicode_property_table_internal, Sget_unicode_property_internal,
15051 and Sput_unicode_property_internal. Defvar_lisp
15052 char-code-property-alist.
15053
15054 * composite.c (CHAR_COMPOSABLE_P): Adjust for the change of
15055 Vunicode_category_table.
15056
15057 * font.c (font_range): Adjust for the change of
15058 Vunicode_category_table.
15059
15060 2011-07-07 Dan Nicolaescu <dann@ics.uci.edu>
15061
15062 * m/iris4d.h: Remove file, move contents ...
15063 * s/irix6-5.h: ... here.
15064
15065 2011-07-06 Paul Eggert <eggert@cs.ucla.edu>
15066
15067 Remove unportable assumption about struct layout (Bug#8884).
15068 * alloc.c (mark_buffer):
15069 * buffer.c (reset_buffer_local_variables, Fbuffer_local_variables)
15070 (clone_per_buffer_values): Don't assume that
15071 sizeof (struct buffer) is a multiple of sizeof (Lisp_Object).
15072 This isn't true in general, and it's particularly not true
15073 if Emacs is configured with --with-wide-int.
15074 * buffer.h (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER):
15075 New macros, used in the buffer.c change.
15076
15077 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
15078
15079 * xsettings.c: Use both GConf and GSettings if both are available.
15080 (store_config_changed_event): Add comment.
15081 (dpyinfo_valid, store_font_name_changed, map_tool_bar_style)
15082 (store_tool_bar_style_changed): New functions.
15083 (store_monospaced_changed): Add comment. Call dpyinfo_valid.
15084 (struct xsettings): Move font inside HAVE_XFT.
15085 (GSETTINGS_TOOL_BAR_STYLE, GSETTINGS_FONT_NAME): New defines.
15086 (GSETTINGS_MONO_FONT): Rename from SYSTEM_MONO_FONT.
15087 Move inside HAVE_XFT.
15088 (something_changed_gsettingsCB): Rename from something_changedCB.
15089 Check for changes in GSETTINGS_TOOL_BAR_STYLE and GSETTINGS_FONT_NAME
15090 also.
15091 (GCONF_TOOL_BAR_STYLE, GCONF_FONT_NAME): New defines.
15092 (GCONF_MONO_FONT): Rename from SYSTEM_MONO_FONT. Move inside HAVE_XFT.
15093 (something_changed_gconfCB): Rename from something_changedCB.
15094 Check for changes in GCONF_TOOL_BAR_STYLE and GCONF_FONT_NAME also.
15095 (parse_settings): Move check for font inside HAVE_XFT.
15096 (read_settings, apply_xft_settings): Add comment.
15097 (read_and_apply_settings): Add comment. Call map_tool_bar_style and
15098 store_tool_bar_style_changed. Move check for font inside HAVE_XFT and
15099 call store_font_name_changed.
15100 (xft_settings_event): Add comment.
15101 (init_gsettings): Add comment. Get values for GSETTINGS_TOOL_BAR_STYLE
15102 and GSETTINGS_FONT_NAME. Move check for fonts within HAVE_XFT.
15103 (init_gconf): Add comment. Get values for GCONF_TOOL_BAR_STYLE
15104 and GCONF_FONT_NAME. Move check for fonts within HAVE_XFT.
15105 (xsettings_initialize): Call init_gsettings last.
15106 (xsettings_get_system_font, xsettings_get_system_normal_font):
15107 Add comment.
15108
15109 2011-07-05 Paul Eggert <eggert@cs.ucla.edu>
15110
15111 Random fixes. E.g., (random) never returned negative values.
15112 * fns.c (Frandom): Use GET_EMACS_TIME for random seed, and add the
15113 subseconds part to the entropy, as that's a bit more random.
15114 Prefer signed to unsigned, since the signedness doesn't matter and
15115 in general we prefer signed. When given a limit, use a
15116 denominator equal to INTMASK + 1, not to VALMASK + 1, because the
15117 latter isn't right if USE_2_TAGS_FOR_INTS.
15118 * sysdep.c (get_random): Return a value in the range 0..INTMASK,
15119 not 0..VALMASK. Don't discard "excess" bits that random () returns.
15120
15121 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
15122
15123 * textprop.c (text_property_stickiness):
15124 Obey Vtext_property_default_nonsticky.
15125 (syms_of_textprop): Add `display' to Vtext_property_default_nonsticky.
15126 * w32fns.c (syms_of_w32fns):
15127 * xfns.c (syms_of_xfns): Don't Add `display' since it's there by default.
15128
15129 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
15130
15131 * fileio.c (barf_or_query_if_file_exists): Use S_ISDIR.
15132 This is more efficient than Ffile_directory_p and avoids a minor race.
15133
15134 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
15135
15136 * buffer.c (Foverlay_put): Say what the return value is
15137 (bug#7835).
15138
15139 * fileio.c (barf_or_query_if_file_exists): Check first if the file
15140 is a directory before asking whether to use the file name
15141 (bug#7564).
15142 (barf_or_query_if_file_exists): Make the "File is a directory"
15143 error be more correct.
15144
15145 * fns.c (Frequire): Remove the mention of the .gz files, since
15146 that's installation-specific, but keep the mention of
15147 `get-load-suffixes'.
15148
15149 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
15150
15151 * editfns.c (Fformat_time_string): Don't assume strlen fits in int.
15152 Report string overflow if the output is too long.
15153
15154 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
15155
15156 * gnutls.c (Fgnutls_boot): Don't mention :verify-error.
15157 (syms_of_gnutls): Remove duplicate DEFSYM for
15158 Qgnutls_bootprop_verify_hostname_error, an error for
15159 Qgnutls_bootprop_verify_error (which is no longer used).
15160
15161 * eval.c (find_handler_clause): Remove parameters `sig' and `data',
15162 unused since 2011-01-26T20:02:07Z!monnier@iro.umontreal.ca. All callers changed.
15163 Also (re)move comments that are misplaced or no longer relevant.
15164
15165 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
15166
15167 * callint.c (Finteractive): Clarify the meaning of "@" (bug#8813).
15168
15169 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
15170
15171 * xfaces.c (Finternal_merge_in_global_face): Modify the foreground
15172 and background color parameters if they have been changed.
15173
15174 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
15175
15176 * editfns.c (Fformat): Clarify the - and 0 flags (bug#6659).
15177
15178 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
15179
15180 * xsettings.c (SYSTEM_FONT): Define only when used.
15181 No need to define when HAVE_GSETTINGS || !HAVE_XFT.
15182
15183 * keymap.c (access_keymap_1): Now static.
15184
15185 2011-07-02 Chong Yidong <cyd@stupidchicken.com>
15186
15187 * keyboard.c (command_loop_1): If a down-mouse event is unbound,
15188 leave any prefix arg for the up event (Bug#1586).
15189
15190 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
15191
15192 * lread.c (syms_of_lread): Mention single symbols defined by
15193 `defvar' or `defconst' (bug#7154).
15194
15195 * fns.c (Frequire): Mention .el.gz files (bug#7314).
15196 (Frequire): Mention get-load-suffixes.
15197
15198 2011-07-02 Martin Rudalics <rudalics@gmx.at>
15199
15200 * window.h (window): Remove clone_number slot.
15201 * window.c (Fwindow_clone_number, Fset_window_clone_number):
15202 Remove.
15203 (make_parent_window, make_window, saved_window)
15204 (Fset_window_configuration, save_window_save): Don't deal with
15205 clone numbers.
15206 * buffer.c (Qclone_number): Remove declaration.
15207 (sort_overlays, overlay_strings): Don't deal with clone numbers.
15208
15209 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
15210
15211 Add multiple inheritance to keymaps.
15212 * keymap.c (Fmake_composed_keymap): New function.
15213 (Fset_keymap_parent): Simplify.
15214 (fix_submap_inheritance): Remove.
15215 (access_keymap_1): New function extracted from access_keymap to handle
15216 embedded parents and handle lists of maps.
15217 (access_keymap): Use it.
15218 (Fkeymap_prompt, map_keymap_internal, map_keymap, store_in_keymap)
15219 (Fcopy_keymap): Handle embedded parents.
15220 (Fcommand_remapping, define_as_prefix): Simplify.
15221 (Fkey_binding): Simplify.
15222 (syms_of_keymap): Move minibuffer-local-completion-map,
15223 minibuffer-local-filename-completion-map,
15224 minibuffer-local-must-match-map, and
15225 minibuffer-local-filename-must-match-map to Elisp.
15226 (syms_of_keymap): Defsubr make-composed-keymap.
15227 * keyboard.c (menu_bar_items): Use map_keymap_canonical.
15228 (parse_menu_item): Trivial simplification.
15229
15230 2011-07-01 Glenn Morris <rgm@gnu.org>
15231
15232 * Makefile.in (SETTINGS_LIBS): Fix typo.
15233
15234 2011-07-01 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
15235
15236 * coding.c (Fencode_coding_string): Record the last coding system
15237 used, as the function doc string says (bug#8738).
15238
15239 2011-07-01 Jan Djärv <jan.h.d@swipnet.se>
15240
15241 * xsettings.c (store_monospaced_changed): Take new font as arg and
15242 check for change against current_mono_font.
15243 (EMACS_TYPE_SETTINGS): Remove this and related defines.
15244 (emacs_settings_constructor, emacs_settings_get_property)
15245 (emacs_settings_set_property, emacs_settings_class_init)
15246 (emacs_settings_init, gsettings_obj): Remove.
15247 (something_changedCB): New function for HAVE_GSETTINGS.
15248 (something_changedCB): HAVE_GCONF: Call store_monospaced_changed
15249 with value as argument.
15250 (init_gsettings): Check that GSETTINGS_SCHEMA exists before calling
15251 g_settings_new (Bug#8967). Do not create gsettings_obj.
15252 Remove calls to g_settings_bind. Connect something_changedCB to
15253 "changed".
15254
15255 * xgselect.c: Add defined (HAVE_GSETTINGS).
15256 (xgselect_initialize): Ditto.
15257
15258 * process.c: Add defined (HAVE_GSETTINGS) for xgselect.h
15259 (wait_reading_process_output): Add defined (HAVE_GSETTINGS) for
15260 xg_select.
15261
15262 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
15263
15264 * eval.c (struct backtrace): Simplify and port the data structure.
15265 Do not assume that "int nargs : BITS_PER_INT - 2;" produces a
15266 signed bit field, as this assumption is not portable and it makes
15267 Emacs crash when compiled with Sun C 5.8 on sparc. Do not use
15268 "char debug_on_exit : 1" as this is not portable either; instead,
15269 use the portable "unsigned int debug_on_exit : 1". Remove unused
15270 member evalargs. Remove obsolete comments about cc bombing out.
15271
15272 2011-06-30 Jan Djärv <jan.h.d@swipnet.se>
15273
15274 * xsettings.c: Include glib-object.h, gio/gio.h if HAVE_GSETTINGS.
15275 Let HAVE_GSETTINGS override HAVE_GCONF.
15276 (store_monospaced_changed): New function.
15277 (EMACS_SETTINGS): A new type derived from GObject to handle
15278 GSettings notifications.
15279 (emacs_settings_constructor, emacs_settings_get_property)
15280 (emacs_settings_set_property, emacs_settings_class_init):
15281 New functions.
15282 (gsettings_client, gsettings_obj): New variables.
15283 (GSETTINGS_SCHEMA): New define.
15284 (something_changedCB): Call store_monospaced_changed.
15285 (init_gsettings): New function.
15286 (xsettings_initialize): Call init_gsettings.
15287 (syms_of_xsettings): Initialize gsettings_client, gsettings_obj
15288 to NULL.
15289
15290 * Makefile.in (SETTINGS_CFLAGS, SETTINGS_LIBS): Rename from
15291 GCONF_CFLAGS/LIBS.
15292
15293 2011-06-29 Martin Rudalics <rudalics@gmx.at>
15294
15295 * window.c (resize_root_window, grow_mini_window)
15296 (shrink_mini_window): Rename Qresize_root_window to
15297 Qwindow_resize_root_window and Qresize_root_window_vertically to
15298 Qwindow_resize_root_window_vertically.
15299
15300 2011-06-28 Paul Eggert <eggert@cs.ucla.edu>
15301
15302 * gnutls.c (Qgnutls_bootprop_verify_error): Remove unused var.
15303
15304 2011-06-27 Juanma Barranquero <lekktu@gmail.com>
15305
15306 * makefile.w32-in: Redesign dependencies so they reflect more
15307 clearly which files are directly included by each source file,
15308 and not through other includes.
15309
15310 2011-06-27 Martin Rudalics <rudalics@gmx.at>
15311
15312 * buffer.c (Qclone_number): Declare static and DEFSYM it.
15313 (sort_overlays, overlay_strings): When an overlay's clone number
15314 matches the window's clone number process the overlay even if
15315 the overlay's window property doesn't match the current window.
15316
15317 * window.c (Fwindow_vchild): Rename to Fwindow_top_child.
15318 (Fwindow_hchild): Rename to Fwindow_left_child.
15319 (Fwindow_next): Rename to Fwindow_next_sibling.
15320 (Fwindow_prev): Rename to Fwindow_prev_sibling.
15321 (resize_window_check): Rename to window_resize_check.
15322 (resize_window_apply): Rename to window_resize_apply.
15323 (Fresize_window_apply): Rename to Fwindow_resize_apply.
15324 (Fdelete_other_windows_internal, resize_frame_windows)
15325 (Fsplit_window_internal, Fdelete_window_internal)
15326 (grow_mini_window, shrink_mini_window)
15327 (Fresize_mini_window_internal): Fix callers accordingly.
15328
15329 2011-06-26 Jan Djärv <jan.h.d@swipnet.se>
15330
15331 * emacsgtkfixed.h: State that this is only used with Gtk+3.
15332 (emacs_fixed_set_min_size): Remove.
15333 (emacs_fixed_new): Take frame as argument.
15334
15335 * emacsgtkfixed.c: State that this is only used with Gtk+3.
15336 (_EmacsFixedPrivate): Remove minwidth/height.
15337 Add struct frame *f.
15338 (emacs_fixed_init): Initialize priv->f.
15339 (get_parent_class, emacs_fixed_set_min_size): Remove.
15340 (emacs_fixed_new): Set priv->f to argument.
15341 (emacs_fixed_get_preferred_width)
15342 (emacs_fixed_get_preferred_height): Use min_width/height from
15343 frames size_hint to set minimum and natural (Bug#8919).
15344 (XSetWMSizeHints, XSetWMNormalHints): Override these functions
15345 and use min_width/height from frames size_hint to set
15346 min_width/height (Bug#8919).
15347
15348 * gtkutil.c (xg_create_frame_widgets): Pass f to emacs_fixed_new.
15349 (x_wm_set_size_hint): Remove call to emacs_fixed_set_min_size.
15350 Fix indentation.
15351
15352 2011-06-26 Eli Zaretskii <eliz@gnu.org>
15353
15354 * bidi.c (bidi_paragraph_init): Test for ZV_BYTE before calling
15355 bidi_at_paragraph_end, since fast_looking_at doesn't like to be
15356 called at ZV.
15357
15358 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
15359
15360 * process.c (wait_reading_process_output): Bypass select if
15361 waiting for a cell while ignoring keyboard input, and input is
15362 pending. Suggested by Jan Djärv (Bug#8869).
15363
15364 2011-06-25 Paul Eggert <eggert@cs.ucla.edu>
15365
15366 Use gnulib's dup2 module instead of rolling our own.
15367 * sysdep.c (dup2) [!HAVE_DUP2]: Remove; gnulib now does this.
15368
15369 2011-06-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15370
15371 * dispnew.c (scrolling_window): Before scrolling, turn off a
15372 mouse-highlight in the window being scrolled.
15373
15374 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
15375
15376 Move DEFSYM to lisp.h and use everywhere.
15377
15378 * character.h (DEFSYM): Move declaration...
15379 * lisp.h (DEFSYM): ...here.
15380
15381 * gnutls.c:
15382 * minibuf.c:
15383 * w32menu.c:
15384 * w32proc.c:
15385 * w32select.c: Don't include character.h.
15386
15387 * alloc.c (syms_of_alloc):
15388 * buffer.c (syms_of_buffer):
15389 * bytecode.c (syms_of_bytecode):
15390 * callint.c (syms_of_callint):
15391 * casefiddle.c (syms_of_casefiddle):
15392 * casetab.c (init_casetab_once):
15393 * category.c (init_category_once, syms_of_category):
15394 * ccl.c (syms_of_ccl):
15395 * cmds.c (syms_of_cmds):
15396 * composite.c (syms_of_composite):
15397 * dbusbind.c (syms_of_dbusbind):
15398 * dired.c (syms_of_dired):
15399 * dispnew.c (syms_of_display):
15400 * doc.c (syms_of_doc):
15401 * editfns.c (syms_of_editfns):
15402 * emacs.c (syms_of_emacs):
15403 * eval.c (syms_of_eval):
15404 * fileio.c (syms_of_fileio):
15405 * fns.c (syms_of_fns):
15406 * frame.c (syms_of_frame):
15407 * fringe.c (syms_of_fringe):
15408 * insdel.c (syms_of_insdel):
15409 * keymap.c (syms_of_keymap):
15410 * lread.c (init_obarray, syms_of_lread):
15411 * macros.c (syms_of_macros):
15412 * msdos.c (syms_of_msdos):
15413 * print.c (syms_of_print):
15414 * process.c (syms_of_process):
15415 * search.c (syms_of_search):
15416 * sound.c (syms_of_sound):
15417 * syntax.c (init_syntax_once, syms_of_syntax):
15418 * terminal.c (syms_of_terminal):
15419 * textprop.c (syms_of_textprop):
15420 * undo.c (syms_of_undo):
15421 * w32.c (globals_of_w32):
15422 * window.c (syms_of_window):
15423 * xdisp.c (syms_of_xdisp):
15424 * xfaces.c (syms_of_xfaces):
15425 * xfns.c (syms_of_xfns):
15426 * xmenu.c (syms_of_xmenu):
15427 * xsettings.c (syms_of_xsettings):
15428 * xterm.c (syms_of_xterm): Use DEFSYM.
15429
15430 2011-06-24 Teodor Zlatanov <tzz@lifelogs.com>
15431
15432 * gnutls.c (syms_of_gnutls): Use the DEFSYM macro from character.h.
15433
15434 2011-06-23 Paul Eggert <eggert@cs.ucla.edu>
15435
15436 Integer and buffer overflow fixes (Bug#8873).
15437
15438 * print.c (printchar, strout): Check for string overflow.
15439 (PRINTPREPARE, printchar, strout):
15440 Don't set size unless allocation succeeds.
15441
15442 * minibuf.c (read_minibuf_noninteractive): Use ptrdiff_t, not int,
15443 for sizes. Check for string overflow more accurately.
15444 Simplify newline removal at end; this suppresses a GCC 4.6.0 warning.
15445
15446 * macros.c: Integer and buffer overflow fixes.
15447 * keyboard.h (struct keyboard.kbd_macro_bufsize):
15448 * macros.c (Fstart_kbd_macro, store_kbd_macro_char):
15449 Use ptrdiff_t, not int, for sizes.
15450 Don't increment bufsize until after realloc succeeds.
15451 Check for size-calculation overflow.
15452 (Fstart_kbd_macro): Use EMACS_INT, not int, for XINT result.
15453
15454 * lisp.h (DEFVAR_KBOARD): Use offsetof instead of char * finagling.
15455
15456 * lread.c: Integer overflow fixes.
15457 (read_integer): Radix is now EMACS_INT, not int,
15458 to improve quality of diagnostics for out-of-range radices.
15459 Calculate buffer size correctly for out-of-range radices.
15460 (read1): Check for integer overflow in radices, and in
15461 read-circle numbers.
15462 (read_escape): Avoid int overflow.
15463 (Fload, openp, read_buffer_size, read1)
15464 (substitute_object_recurse, read_vector, read_list, map_obarray):
15465 Use ptrdiff_t, not int, for sizes.
15466 (read1): Use EMACS_INT, not int, for sizes.
15467 Check for size overflow.
15468
15469 * image.c (cache_image): Check for size arithmetic overflow.
15470
15471 * lread.c: Integer overflow issues.
15472 (saved_doc_string_size, saved_doc_string_length)
15473 (prev_saved_doc_string_size, prev_saved_doc_string_length):
15474 Now ptrdiff_t, not int.
15475 (read1): Don't assume doc string length fits in int. Check for
15476 out-of-range doc string lengths.
15477 (read_list): Don't assume file position fits in int.
15478 (read_escape): Check for hex character overflow.
15479
15480 2011-06-22 Leo Liu <sdl.web@gmail.com>
15481
15482 * minibuf.c (Fcompleting_read_default, Vcompleting_read_function):
15483 Move to minibuffer.el.
15484
15485 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
15486
15487 Fixes for GLYPH_DEBUG found by GCC 4.6.0 static checking.
15488 The following patches are for when GLYPH_DEBUG && !XASSERT.
15489 * dispextern.h (trace_redisplay_p, dump_glyph_string):
15490 * dispnew.c (flush_stdout):
15491 * xdisp.c (dump_glyph_row, dump_glyph_matrix, dump_glyph):
15492 Mark as externally visible.
15493 * dispnew.c (check_window_matrix_pointers): Now static.
15494 * dispnew.c (window_to_frame_vpos):
15495 * xfns.c (unwind_create_frame):
15496 * xterm.c (x_check_font): Remove unused local.
15497 * scroll.c (CHECK_BOUNDS):
15498 * xfaces.c (cache_fache): Rename local to avoid shadowing.
15499 * xfns.c, w32fns.c (image_cache_refcount, dpyinfo_refcount): Now static.
15500 * xdisp.c (check_window_end): Now a no-op if !XASSERTS.
15501 (debug_first_unchanged_at_end_vpos, debug_last_unchanged_at_beg_vpos)
15502 (debug_dvpos, debug_dy, debug_delta, debug_delta_bytes, debug_end_vpos):
15503 Now static.
15504 (debug_method_add): Use va_list and vsprintf rather than relying
15505 on undefined behavior with wrong number of arguments.
15506 (dump_glyph, dump_glyph_row, Fdump_glyph_matrix):
15507 Don't assume ptrdiff_t and EMACS_INT are the same width as int.
15508 In this code, it's OK to assume C99 behavior for ptrdiff_t formats
15509 since we're not interested in debugging glyphs with old libraries.
15510 * xfaces.c (cache_face): Move debugging code earlier; this pacifies
15511 GCC 4.6.0's static checking.
15512
15513 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
15514
15515 Integer overflow and signedness fixes (Bug#8873).
15516 A few related buffer overrun fixes, too.
15517
15518 * font.c (font_score): Use EMACS_INT, not int, to store XINT value.
15519
15520 * dispextern.h (struct face.stipple):
15521 * image.c (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
15522 (x_bitmap_mask, x_allocate_bitmap_record)
15523 (x_create_bitmap_from_data, x_create_bitmap_from_file)
15524 (x_destroy_bitmap, x_destroy_all_bitmaps, x_create_bitmap_mask)
15525 (x_create_bitmap_from_xpm_data):
15526 * nsterm.h (struct ns_display_info.bitmaps_size, .bitmaps_last):
15527 * w32term.h (struct w32_display_info.icon_bitmap_id, .bitmaps_size)
15528 (.bitmaps_last):
15529 * xfaces.c (load_pixmap):
15530 * xterm.c (x_bitmap_icon, x_wm_set_icon_pixmap):
15531 * xterm.h (struct x_display_info.icon_bitmap_id, .bitmaps_size)
15532 (.bitmaps_last, struct x_output.icon_bitmap):
15533 Use ptrdiff_t, not int, for bitmap indexes.
15534 (x_allocate_bitmap_record): Check for size overflow.
15535 * dispextern.h, lisp.h: Adjust to API changes elsewhere.
15536
15537 Use ptrdiff_t, not int, for overlay counts.
15538 * buffer.h (overlays_at, sort_overlays, GET_OVERLAYS_AT):
15539 * editfns.c (overlays_around, get_pos_property):
15540 * textprop.c (get_char_property_and_overlay):
15541 * xdisp.c (next_overlay_change, note_mouse_highlight):
15542 * xfaces.c (face_at_buffer_position):
15543 * buffer.c (OVERLAY_COUNT_MAX): New macro.
15544 (overlays_at, overlays_in, sort_overlays, Foverlays_at)
15545 (Fnext_overlay_change, Fprevious_overlay_change)
15546 (mouse_face_overlay_overlaps, Foverlays_in):
15547 Use ptrdiff_t, not int, for sizes.
15548 (overlays_at, overlays_in): Check for size-calculation overflow.
15549
15550 * xterm.c (xim_initialize, same_x_server): Strlen may not fit in int.
15551
15552 * xsmfns.c (smc_save_yourself_CB, x_session_initialize): Avoid strlen.
15553 (x_session_initialize): Do not assume string length fits in int.
15554
15555 * xsettings.c (apply_xft_settings): Fix potential buffer overrun.
15556 This is unlikely, but can occur if DPI is outlandish.
15557
15558 * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
15559 * xselect.c (Fx_get_atom_name): Avoid need for strlen.
15560
15561 * xrdb.c: Don't assume strlen fits in int; avoid some strlens.
15562 * xrdb.c (magic_file_p, search_magic_path):
15563 Omit last arg SUFFIX; it was always 0. All callers changed.
15564 (magic_file_p): Use ptrdiff_t, not int. Check for size overflow.
15565
15566 * xfont.c (xfont_match): Avoid need for strlen.
15567
15568 * xfns.c: Don't assume strlen fits in int.
15569 (xic_create_fontsetname, x_window): Use ptrdiff_t, not int.
15570
15571 * xdisp.c (message_log_check_duplicate): Return intmax_t,
15572 not unsigned long, as we prefer signed integers. All callers changed.
15573 Detect integer overflow in repeat count.
15574 (message_dolog): Don't assume print length fits in 39 bytes.
15575 (display_mode_element): Don't assume strlen fits in int.
15576
15577 * termcap.c: Don't assume sizes fit in int and never overflow.
15578 (struct termcap_buffer, tgetent): Use ptrdiff_t, not int, for sizes.
15579 (gobble_line): Check for size-calculation overflow.
15580
15581 * minibuf.c (Fread_buffer):
15582 * lread.c (intern, intern_c_string):
15583 * image.c (xpm_scan) [HAVE_NS && !HAVE_XPM]:
15584 Don't assume string length fits in int.
15585
15586 * keyboard.c (parse_tool_bar_item):
15587 * gtkutil.c (style_changed_cb): Avoid need for strlen.
15588
15589 * font.c: Don't assume string length fits in int.
15590 (font_parse_xlfd, font_parse_fcname, font_unparse_fcname):
15591 Use ptrdiff_t, not int.
15592 (font_intern_prop): Don't assume string length fits in int.
15593 Don't assume integer property fits in fixnum.
15594 * font.h (font_intern_prop): 2nd arg is now ptrdiff_t, not int.
15595
15596 * filelock.c: Fix some buffer overrun and integer overflow issues.
15597 (get_boot_time): Don't assume gzip command string fits in 100 bytes.
15598 Reformulate so as not to need the command string.
15599 Invoke gzip -cd rather than gunzip, as it's more portable.
15600 (lock_info_type, lock_file_1, lock_file):
15601 Don't assume pid_t and time_t fit in unsigned long.
15602 (LOCK_PID_MAX): Remove; we now use more-reliable bounds.
15603 (current_lock_owner): Prefer signed type for sizes.
15604 Use memcpy, not strncpy, where memcpy is what is really wanted.
15605 Don't assume (via atoi) that time_t and pid_t fit in int.
15606 Check for time_t and/or pid_t out of range, e.g., via a network share.
15607 Don't alloca where an auto var works fine.
15608
15609 * fileio.c: Fix some integer overflow issues.
15610 (file_name_as_directory, Fexpand_file_name, Fsubstitute_in_file_name):
15611 Don't assume string length fits in int.
15612 (directory_file_name): Don't assume string length fits in long.
15613 (make_temp_name): Don't assume pid fits in int, or that its print
15614 length is less than 20.
15615
15616 * data.c (Fsubr_name): Rewrite to avoid a strlen call.
15617
15618 * coding.c (make_subsidiaries): Don't assume string length fits in int.
15619
15620 * callproc.c (child_setup): Rewrite to avoid two strlen calls.
15621
15622 * process.c (Fformat_network_address): Use EMACS_INT, not EMACS_UINT.
15623 We prefer signed integers, even for size calculations.
15624
15625 * emacs.c: Don't assume string length fits in 'int'.
15626 (DEFINE_DUMMY_FUNCTION, sort_args): Use ptrdiff_t, not int.
15627 (main): Don't invoke strlen when not needed.
15628
15629 * dbusbind.c (XD_ERROR): Don't arbitrarily truncate string.
15630 (XD_DEBUG_MESSAGE): Don't waste a byte.
15631
15632 * callproc.c (getenv_internal_1, getenv_internal)
15633 (Fgetenv_internal):
15634 * buffer.c (init_buffer): Don't assume string length fits in 'int'.
15635
15636 * lread.c (invalid_syntax): Omit length argument.
15637 All uses changed. This doesn't fix a bug, but it simplifies the
15638 code away from its former Hollerith-constant appearance, and it's
15639 one less 'int' to worry about when looking at integer-overflow issues.
15640 (string_to_number): Simplify 2011-04-26 change by invoking xsignal1.
15641
15642 * lisp.h (DEFUN): Remove bogus use of sizeof (struct Lisp_Subr).
15643 This didn't break anything, but it didn't help either.
15644 It's confusing to put a bogus integer in a place where the actual
15645 value does not matter.
15646 (LIST_END_P): Remove unused macro and its bogus comment.
15647 (make_fixnum_or_float): Remove unnecessary cast to EMACS_INT.
15648
15649 * lisp.h (union Lisp_Object.i): EMACS_INT, not EMACS_UINT.
15650 This is for consistency with the ordinary, non-USE_LISP_UNION_TYPE,
15651 implementation.
15652 (struct Lisp_Bool_Vector.size): EMACS_INT, not EMACS_UINT.
15653 We prefer signed types, and the value cannot exceed the EMACS_INT
15654 range anyway (because otherwise the length would not be representable).
15655 (XSET) [USE_LISP_UNION_TYPE]: Use uintptr_t and intptr_t,
15656 not EMACS_UINT and EMACS_INT, when converting pointer to integer.
15657 This avoids a GCC warning when WIDE_EMACS_INT.
15658
15659 * indent.c (sane_tab_width): New function.
15660 (current_column, scan_for_column, Findent_to, position_indentation)
15661 (compute_motion): Use it. This is just for clarity.
15662 (Fcompute_motion): Don't assume hscroll and tab offset fit in int.
15663
15664 * image.c (xbm_image_p): Don't assume stated width, height fit in int.
15665
15666 * lisp.h (lint_assume): New macro.
15667 * composite.c (composition_gstring_put_cache):
15668 * ftfont.c (ftfont_shape_by_flt): Use it to pacify GCC 4.6.0.
15669
15670 * editfns.c, insdel.c:
15671 Omit unnecessary forward decls, to simplify future changes.
15672
15673 * ftfont.c (ftfont_shape_by_flt): Use signed integers for lengths.
15674
15675 * font.c (Ffont_shape_gstring): Don't assume glyph len fits in 'int'.
15676
15677 * fns.c (Ffillarray): Don't assume bool vector size fits in 'int'.
15678 Use much-faster test for byte-length change.
15679 Don't assume string byte-length fits in 'int'.
15680 Check that character arg fits in 'int'.
15681 (mapcar1): Declare byte as byte, for clarity.
15682
15683 * alloc.c (Fmake_bool_vector): Avoid unnecessary multiplication.
15684
15685 * fns.c (concat): Catch string overflow earlier.
15686 Do not rely on integer wraparound.
15687
15688 * dispextern.h (struct it.overlay_strings_charpos)
15689 (struct it.selective): Now EMACS_INT, not int.
15690 * xdisp.c (forward_to_next_line_start)
15691 (back_to_previous_visible_line_start)
15692 (reseat_at_next_visible_line_start, next_element_from_buffer):
15693 Don't arbitrarily truncate the value of 'selective' to int.
15694
15695 * xdisp.c (init_iterator): Use XINT, not XFASTINT; it might be < 0.
15696
15697 * composite.c: Don't truncate sizes to 'int'.
15698 (composition_gstring_p, composition_reseat_it)
15699 (composition_adjust_point): Use EMACS_INT, not int.
15700 (get_composition_id, composition_gstring_put_cache): Use EMACS_INT,
15701 not EMACS_UINT, for indexes.
15702
15703 * category.h (CATEGORY_SET_P): Remove unnecessary cast to EMACS_INT.
15704
15705 * buffer.c: Include <verify.h>.
15706 (struct sortvec.priority, struct sortstr.priority):
15707 Now EMACS_INT, not int.
15708 (compare_overlays, cmp_for_strings): Avoid subtraction overflow.
15709 (struct sortstr.size, record_overlay_string)
15710 (struct sortstrlist.size, struct sortlist.used):
15711 Don't truncate size to int.
15712 (record_overlay_string): Check for size-calculation overflow.
15713 (init_buffer_once): Check at compile-time, not run-time.
15714
15715 2011-06-22 Jim Meyering <meyering@redhat.com>
15716
15717 Don't leak an XBM-image-sized buffer
15718 * image.c (xbm_load): Free the image buffer after using it.
15719
15720 2011-06-21 Paul Eggert <eggert@cs.ucla.edu>
15721
15722 Port to Sun C.
15723 * composite.c (find_automatic_composition): Omit needless 'return 0;'
15724 that Sun C diagnosed.
15725 * fns.c (secure_hash): Fix pointer signedness issue.
15726 * intervals.c (static_offset_intervals): New function.
15727 (offset_intervals): Use it.
15728
15729 2011-06-21 Leo Liu <sdl.web@gmail.com>
15730
15731 * deps.mk (fns.o):
15732 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha256.h and
15733 sha512.h.
15734
15735 * fns.c (secure_hash): Rename from crypto_hash_function and change
15736 the first arg to accept symbols.
15737 (Fsecure_hash): New primitive.
15738 (syms_of_fns): New symbols.
15739
15740 2011-06-20 Deniz Dogan <deniz@dogan.se>
15741
15742 * process.c (Fset_process_buffer): Clarify return value in
15743 docstring.
15744
15745 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
15746
15747 * dispnew.c (add_window_display_history): Use BVAR.
15748
15749 * xdisp.c (debug_method_add): Use BVAR.
15750 (check_window_end, dump_glyph_matrix, dump_glyph)
15751 (dump_glyph_row, dump_glyph_string): Convert arglist to ANSI C.
15752
15753 * xfaces.c (check_lface_attrs, check_lface, dump_realized_face):
15754 Likewise.
15755
15756 * xfns.c (Fx_create_frame, x_create_tip_frame): Delay image cache
15757 check till after the cache is created in init_frame_faces.
15758
15759 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
15760
15761 * fns.c (Fsafe_length): Yet another int/Lisp_Object mixup.
15762
15763 2011-06-16 Paul Eggert <eggert@cs.ucla.edu>
15764
15765 * lisp.h: Include <limits.h>, for INT_MAX, LONG_MAX, LLONG_MAX.
15766 Without this, prin1 mishandles Lisp_Misc_Save_Value printing on
15767 hosts with pre-C99 libraries, because pD is wrongly defined to "t".
15768
15769 Improve buffer-overflow checking (Bug#8873).
15770 * fileio.c (Finsert_file_contents):
15771 * insdel.c (insert_from_buffer_1, replace_range, replace_range_2):
15772 Remove the old (too-loose) buffer overflow checks.
15773 They weren't needed, since make_gap checks for buffer overflow.
15774 * insdel.c (make_gap_larger): Catch buffer overflows that were missed.
15775 The old code merely checked for Emacs fixnum overflow, and relied
15776 on undefined (wraparound) behavior. The new code avoids undefined
15777 behavior, and also checks for ptrdiff_t and/or size_t overflow.
15778
15779 * editfns.c (Finsert_char): Don't dump core with very negative counts.
15780 Tune. Don't use wider integers than needed. Don't use alloca.
15781 Use a bigger 'string' buffer. Rewrite to avoid 'n > 0' test.
15782
15783 * insdel.c (replace_range): Fix buf overflow when insbytes < outgoing.
15784
15785 * insdel.c, lisp.h (buffer_overflow): New function.
15786 (insert_from_buffer_1, replace_range, replace_range_2):
15787 * insdel.c (make_gap_larger):
15788 * editfns.c (Finsert_char):
15789 * fileio.c (Finsert_file_contents): Use it, to normalize wording.
15790
15791 * buffer.h (BUF_BYTES_MAX): Cast to ptrdiff_t so that it's signed.
15792
15793 2011-06-15 Paul Eggert <eggert@cs.ucla.edu>
15794
15795 Integer overflow and signedness fixes (Bug#8873, Bug#8828).
15796
15797 * ccl.c (ASCENDING_ORDER): New macro, to work around GCC bug 43772.
15798 (GET_CCL_RANGE, IN_INT_RANGE): Use it.
15799
15800 * fileio.c: Don't assume EMACS_INT fits in off_t.
15801 (emacs_lseek): New static function.
15802 (Finsert_file_contents, Fwrite_region): Use it.
15803 Use SEEK_SET, SEEK_CUR, SEEK_END as appropriate.
15804
15805 * fns.c (Fload_average): Don't assume 100 * load average fits in int.
15806
15807 * fns.c: Don't overflow int when computing a list length.
15808 * fns.c (QUIT_COUNT_HEURISTIC): New constant.
15809 (Flength, Fsafe_length): Use EMACS_INT, not int, to avoid unwanted
15810 truncation on 64-bit hosts. Check for QUIT every
15811 QUIT_COUNT_HEURISTIC entries rather than every other entry; that's
15812 faster and is responsive enough.
15813 (Flength): Report an error instead of overflowing an integer.
15814 (Fsafe_length): Return a float if the value is not representable
15815 as a fixnum. This shouldn't happen except in contrived situations.
15816 (Fnthcdr, Fsort): Don't assume list length fits in int.
15817 (Fcopy_sequence): Don't assume vector length fits in int.
15818
15819 * alloc.c: Check that resized vectors' lengths fit in fixnums.
15820 (header_size, word_size): New constants.
15821 (allocate_vectorlike): Don't check size overflow here.
15822 (allocate_vector): Check it here instead, since this is the only
15823 caller of allocate_vectorlike that could cause overflow.
15824 Check that the new vector's length is representable as a fixnum.
15825
15826 * fns.c (next_almost_prime): Don't return a multiple of 3 or 5.
15827 The previous code was bogus. For example, next_almost_prime (32)
15828 returned 39, which is undesirable as it is a multiple of 3; and
15829 next_almost_prime (24) returned 25, which is a multiple of 5 so
15830 why was the code bothering to check for multiples of 7?
15831
15832 * bytecode.c (exec_byte_code): Use ptrdiff_t, not int, for vector length.
15833
15834 * eval.c, doprnt.c (SIZE_MAX): Remove; inttypes.h defines this now.
15835
15836 Variadic C functions now count arguments with ptrdiff_t.
15837 This partly undoes my 2011-03-30 change, which replaced int with size_t.
15838 Back then I didn't know that the Emacs coding style prefers signed int.
15839 Also, in the meantime I found a few more instances where arguments
15840 were being counted with int, which may truncate counts on 64-bit
15841 machines, or EMACS_INT, which may be unnecessarily wide.
15842 * lisp.h (struct Lisp_Subr.function.aMANY)
15843 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call):
15844 Arg counts are now ptrdiff_t, not size_t.
15845 All variadic functions and their callers changed accordingly.
15846 (struct gcpro.nvars): Now size_t, not size_t. All uses changed.
15847 * bytecode.c (exec_byte_code): Check maxdepth for overflow,
15848 to avoid potential buffer overrun. Don't assume arg counts fit in 'int'.
15849 * callint.c (Fcall_interactively): Check arg count for overflow,
15850 to avoid potential buffer overrun. Use signed char, not 'int',
15851 for 'varies' array, so that we needn't bother to check its size
15852 calculation for overflow.
15853 * editfns.c (Fformat): Use ptrdiff_t, not EMACS_INT, to count args.
15854 * eval.c (apply_lambda):
15855 * fns.c (Fmapconcat): Use XFASTINT, not XINT, to get args length.
15856 (struct textprop_rec.argnum): Now ptrdiff_t, not int. All uses changed.
15857 (mapconcat): Use ptrdiff_t, not int and EMACS_INT, to count args.
15858
15859 * callint.c (Fcall_interactively): Don't use index var as event count.
15860
15861 * vm-limit.c (check_memory_limits): Fix incorrect extern function decls.
15862 * mem-limits.h (SIZE): Remove; no longer used.
15863
15864 * xterm.c (x_alloc_nearest_color_1): Prefer int to long when int works.
15865
15866 Remove unnecessary casts.
15867 * xterm.c (x_term_init):
15868 * xfns.c (x_set_border_pixel):
15869 * widget.c (create_frame_gcs): Remove casts to unsigned long etc.
15870 These aren't needed now that we assume ANSI C.
15871
15872 * sound.c (Fplay_sound_internal): Remove cast to unsigned long.
15873 It's more likely to cause problems (due to unsigned overflow)
15874 than to cure them.
15875
15876 * dired.c (Ffile_attributes): Don't use 32-bit hack on 64-bit hosts.
15877
15878 * unexelf.c (unexec): Don't assume BSS addr fits in unsigned.
15879
15880 * xterm.c (handle_one_xevent): Omit unnecessary casts to unsigned.
15881
15882 * keyboard.c (modify_event_symbol): Don't limit alist len to UINT_MAX.
15883
15884 * lisp.h (CHAR_TABLE_SET): Omit now-redundant test.
15885
15886 * lread.c (Fload): Don't compare a possibly-garbage time_t value.
15887
15888 GLYPH_CODE_FACE returns EMACS_INT, not int.
15889 * dispextern.h (merge_faces):
15890 * xfaces.c (merge_faces):
15891 * xdisp.c (get_next_display_element, next_element_from_display_vector):
15892 Don't assume EMACS_INT fits in int.
15893
15894 * character.h (CHAR_VALID_P): Remove unused parameter.
15895 * fontset.c, lisp.h, xdisp.c: All uses changed.
15896
15897 * editfns.c (Ftranslate_region_internal): Omit redundant test.
15898
15899 * fns.c (concat): Minor tuning based on overflow analysis.
15900 This doesn't fix any bugs. Use int to hold character, instead
15901 of constantly refetching from Emacs object. Use XFASTINT, not
15902 XINT, for value known to be a character. Don't bother comparing
15903 a single byte to 0400, as it's always less.
15904
15905 * floatfns.c (Fexpt):
15906 * fileio.c (make_temp_name): Omit unnecessary cast to unsigned.
15907
15908 * editfns.c (Ftranslate_region_internal): Use int, not EMACS_INT
15909 for characters.
15910
15911 * doc.c (get_doc_string): Omit (unsigned)c that mishandled negatives.
15912
15913 * data.c (Faset): If ARRAY is a string, check that NEWELT is a char.
15914 Without this fix, on a 64-bit host (aset S 0 4294967386) would
15915 incorrectly succeed when S was a string, because 4294967386 was
15916 truncated before it was used.
15917
15918 * chartab.c (Fchar_table_range): Use CHARACTERP to check range.
15919 Otherwise, an out-of-range integer could cause undefined behavior
15920 on a 64-bit host.
15921
15922 * composite.c: Use int, not EMACS_INT, for characters.
15923 (fill_gstring_body, composition_compute_stop_pos): Use int, not
15924 EMACS_INT, for values that are known to be in character range.
15925 This doesn't fix any bugs but is the usual style inside Emacs and
15926 may generate better code on 32-bit machines.
15927
15928 Make sure a 64-bit char is never passed to ENCODE_CHAR.
15929 This is for reasons similar to the recent CHAR_STRING fix.
15930 * charset.c (Fencode_char): Check that character arg is actually
15931 a character. Pass an int to ENCODE_CHAR.
15932 * charset.h (ENCODE_CHAR): Verify that the character argument is no
15933 wider than 'int', as a compile-time check to prevent future regressions
15934 in this area.
15935
15936 * character.c (char_string): Remove unnecessary casts.
15937
15938 Make sure a 64-bit char is never passed to CHAR_STRING.
15939 Otherwise, CHAR_STRING would do the wrong thing on a 64-bit platform,
15940 by silently ignoring the top 32 bits, allowing some values
15941 that were far too large to be valid characters.
15942 * character.h: Include <verify.h>.
15943 (CHAR_STRING, CHAR_STRING_ADVANCE): Verify that the character
15944 arguments are no wider than unsigned, as a compile-time check
15945 to prevent future regressions in this area.
15946 * data.c (Faset):
15947 * editfns.c (Fchar_to_string, general_insert_function, Finsert_char)
15948 (Fsubst_char_in_region):
15949 * fns.c (concat):
15950 * xdisp.c (decode_mode_spec_coding):
15951 Adjust to CHAR_STRING's new requirement.
15952 * editfns.c (Finsert_char, Fsubst_char_in_region):
15953 * fns.c (concat): Check that character args are actually
15954 characters. Without this test, these functions did the wrong
15955 thing with wildly out-of-range values on 64-bit hosts.
15956
15957 Remove incorrect casts to 'unsigned' that lose info on 64-bit hosts.
15958 These casts should not be needed on 32-bit hosts, either.
15959 * keyboard.c (read_char):
15960 * lread.c (Fload): Remove casts to unsigned.
15961
15962 * lisp.h (UNSIGNED_CMP): New macro.
15963 This fixes comparison bugs on 64-bit hosts.
15964 (ASCII_CHAR_P): Use it.
15965 * casefiddle.c (casify_object):
15966 * character.h (ASCII_BYTE_P, CHAR_VALID_P)
15967 (SINGLE_BYTE_CHAR_P, CHAR_STRING):
15968 * composite.h (COMPOSITION_ENCODE_RULE_VALID):
15969 * dispextern.h (FACE_FROM_ID):
15970 * keyboard.c (read_char): Use UNSIGNED_CMP.
15971
15972 * xmenu.c (dialog_selection_callback) [!USE_GTK]: Cast to intptr_t,
15973 not to EMACS_INT, to avoid GCC warning.
15974
15975 * xfns.c (x_set_scroll_bar_default_width): Remove unused 'int' locals.
15976
15977 * buffer.h (PTR_BYTE_POS, BUF_PTR_BYTE_POS): Remove harmful cast.
15978 The cast incorrectly truncated 64-bit byte offsets to 32 bits, and
15979 isn't needed on 32-bit machines.
15980
15981 * buffer.c (Fgenerate_new_buffer_name):
15982 Use EMACS_INT for count, not int.
15983 (advance_to_char_boundary): Return EMACS_INT, not int.
15984
15985 * data.c (Qcompiled_function): Now static.
15986
15987 * window.c (window_body_lines): Now static.
15988
15989 * image.c (gif_load): Rename local to avoid shadowing.
15990
15991 * lisp.h (SAFE_ALLOCA_LISP): Check for integer overflow.
15992 (struct Lisp_Save_Value): Use ptrdiff_t, not int, for 'integer' member.
15993 * alloc.c (make_save_value): Integer argument is now of type
15994 ptrdiff_t, not int.
15995 (mark_object): Use ptrdiff_t, not int.
15996 * lisp.h (pD): New macro.
15997 * print.c (print_object): Use it.
15998
15999 * alloc.c: Use EMACS_INT, not int, to count objects.
16000 (total_conses, total_markers, total_symbols, total_vector_size)
16001 (total_free_conses, total_free_markers, total_free_symbols)
16002 (total_free_floats, total_floats, total_free_intervals)
16003 (total_intervals, total_strings, total_free_strings):
16004 Now EMACS_INT, not int. All uses changed.
16005 (Fgarbage_collect): Compute overall total using a double, so that
16006 integer overflow is less likely to be a problem. Check for overflow
16007 when converting back to an integer.
16008 (n_interval_blocks, n_string_blocks, n_float_blocks, n_cons_blocks)
16009 (n_vectors, n_symbol_blocks, n_marker_blocks): Remove.
16010 These were 'int' variables that could overflow on 64-bit hosts;
16011 they were never used, so remove them instead of repairing them.
16012 (nzombies, ngcs, max_live, max_zombies): Now EMACS_INT, not 'int'.
16013 (inhibit_garbage_collection): Set gc_cons_threshold to max value.
16014 Previously, this ceilinged at INT_MAX, but that doesn't work on
16015 64-bit machines.
16016 (allocate_pseudovector): Don't use EMACS_INT when int would do.
16017
16018 * alloc.c (Fmake_bool_vector): Don't assume vector size fits in int.
16019 (allocate_vectorlike): Check for ptrdiff_t overflow.
16020 (mark_vectorlike, mark_char_table, mark_object): Avoid EMACS_UINT
16021 when a (possibly-narrower) signed value would do just as well.
16022 We prefer using signed arithmetic, to avoid comparison confusion.
16023
16024 * alloc.c: Catch some string size overflows that we were missing.
16025 (XMALLOC_OVERRUN_CHECK_SIZE) [!XMALLOC_OVERRUN_CHECK]: Define to 0,
16026 for convenience in STRING_BYTES_MAX.
16027 (STRING_BYTES_MAX): New macro, superseding the old one in lisp.h.
16028 The definition here is exact; the one in lisp.h was approximate.
16029 (allocate_string_data): Check for string overflow. This catches
16030 some instances we weren't catching before. Also, it catches
16031 size_t overflow on (unusual) hosts where SIZE_MAX <= min
16032 (PTRDIFF_MAX, MOST_POSITIVE_FIXNUM), e.g., when size_t is 32 bits
16033 and ptrdiff_t and EMACS_INT are both 64 bits.
16034
16035 * character.c, coding.c, doprnt.c, editfns.c, eval.c:
16036 All uses of STRING_BYTES_MAX replaced by STRING_BYTES_BOUND.
16037 * lisp.h (STRING_BYTES_BOUND): Rename from STRING_BYTES_MAX.
16038
16039 * character.c (string_escape_byte8): Fix nbytes/nchars typo.
16040
16041 * alloc.c (Fmake_string): Check for out-of-range init.
16042
16043 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
16044
16045 * eval.c (Fdefvaralias): Also mark the target as variable-special-p.
16046
16047 2011-06-14 Jan Djärv <jan.h.d@swipnet.se>
16048
16049 * xfns.c (x_set_scroll_bar_default_width): Remove argument to
16050 xg_get_default_scrollbar_width.
16051
16052 * gtkutil.c: Include emacsgtkfixed.h if HAVE_GTK3.
16053 (int_gtk_range_get_value): Move to the scroll bar part of the file.
16054 (style_changed_cb): Call update_theme_scrollbar_width and call
16055 x_set_scroll_bar_default_width and xg_frame_set_char_size for
16056 all frames (Bug#8505).
16057 (xg_create_frame_widgets): Call emacs_fixed_new if HAVE_GTK3 (Bug#8505).
16058 Call gtk_window_set_resizable if HAVE_GTK3.
16059 (x_wm_set_size_hint): Call emacs_fixed_set_min_size with min width
16060 and height if HAVE_GTK3 (Bug#8505).
16061 (scroll_bar_width_for_theme): New variable.
16062 (update_theme_scrollbar_width): New function.
16063 (xg_get_default_scrollbar_width): Move code to
16064 update_theme_scrollbar_width, just return scroll_bar_width_for_theme.
16065 (xg_initialize): Call update_theme_scrollbar_width.
16066
16067 * gtkutil.h (xg_get_default_scrollbar_width): Remove argument.
16068
16069 * emacsgtkfixed.c, emacsgtkfixed.h: New files.
16070
16071 2011-06-12 Martin Rudalics <rudalics@gmx.at>
16072
16073 * frame.c (make_frame): Call other_buffer_safely instead of
16074 other_buffer.
16075
16076 * window.c (temp_output_buffer_show): Call display_buffer with
16077 second argument Vtemp_buffer_show_specifiers and reset latter
16078 immediately after the call.
16079 (Vtemp_buffer_show_specifiers): New variable.
16080 (auto_window_vscroll_p, next_screen_context_lines)
16081 (Vscroll_preserve_screen_position): Remove leading asterisks from
16082 doc-strings.
16083
16084 2011-06-12 Paul Eggert <eggert@cs.ucla.edu>
16085
16086 Fix minor problems found by GCC 4.6.0 static checking.
16087 * buffer.c (Qclone_number): Remove for now, as it's unused.
16088 (record_buffer, Funrecord_buffer): Rename local to avoid shadowing.
16089 (record_buffer): Remove unused local.
16090 * frame.c (other_visible_frames, frame_buffer_list): Now static.
16091 (set_frame_buffer_list): Remove; unused.
16092 * frame.h (other_visible_frames): Remove decl.
16093 * keyboard.h (menu_items_inuse): Declare only if USE_GTK || USE_MOTIF.
16094 * lisp.h (frame_buffer_list, set_frame_buffer_list): Remove decls.
16095 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor): Declare only
16096 if HAVE_GPM.
16097 * menu.c (menu_items_inuse): Now static unless USE_GTK || USE_MOTIF.
16098 * process.c (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
16099 Define only if HAVE_GPM.
16100 * widget.c (EmacsFrameResize, emacsFrameClassRec): Now static.
16101 (update_hints_inhibit): Remove; never set. All uses removed.
16102 * widgetprv.h (emacsFrameClassRec): Remove decl.
16103 * window.c (delete_deletable_window): Now returns void, since it
16104 wasn't returning anything.
16105 (compare_window_configurations): Remove unused locals.
16106 * xfns.c (x_set_scroll_bar_default_width): Remove unused locals.
16107 * xmenu.c (x_menu_set_in_use): Define only if USE_GTK || USE_MOTIF.
16108 (dialog_selection_callback) [!USE_GTK]: Prefer intptr_t for integers
16109 the same widths as pointers. This follows up on the 2011-05-06 patch.
16110 * xterm.c (x_alloc_lighter_color_for_widget): Define only if USE_LUCID.
16111 * xterm.h: Likewise.
16112 (x_menu_set_in_use): Declare only if USE_GTK || USE_MOTIF.
16113
16114 2011-06-12 Juanma Barranquero <lekktu@gmail.com>
16115
16116 * makefile.w32-in: Update dependencies.
16117 (LISP_H): Add lib/intprops.h.
16118
16119 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
16120
16121 * image.c (gif_load): Add animation frame delay to the metadata.
16122 (syms_of_image): Use DEFSYM. New symbol `delay'.
16123
16124 2011-06-11 Martin Rudalics <rudalics@gmx.at>
16125
16126 * window.c (delete_deletable_window): Re-add.
16127 (Fset_window_configuration): Rewrite to handle dead buffers and
16128 consequently deletable windows.
16129 (window_tree, Fwindow_tree): Remove. Supply functionality in
16130 window.el.
16131 (compare_window_configurations): Simplify code.
16132
16133 2011-06-11 Andreas Schwab <schwab@linux-m68k.org>
16134
16135 * image.c (imagemagick_load_image): Fix type mismatch.
16136 (Fimagemagick_types): Likewise.
16137
16138 * window.h (replace_buffer_in_windows): Declare.
16139
16140 2011-06-11 Martin Rudalics <rudalics@gmx.at>
16141
16142 * buffer.c: New Lisp objects Qbuffer_list_update_hook and
16143 Qclone_number. Remove external declaration of Qdelete_window.
16144 (Fbuffer_list): Rewrite doc-string. Minor restructuring of
16145 code.
16146 (Fget_buffer_create, Fmake_indirect_buffer, Frename_buffer):
16147 Run Qbuffer_list_update_hook if allowed.
16148 (Fother_buffer): Rewrite doc-string. Major rewrite for new
16149 buffer list implementation.
16150 (other_buffer_safely): New function.
16151 (Fkill_buffer): Replace call to replace_buffer_in_all_windows by
16152 calls to replace_buffer_in_windows and
16153 replace_buffer_in_windows_safely. Run Qbuffer_list_update_hook
16154 if allowed.
16155 (record_buffer): Inhibit quitting and rewrite using quittable
16156 functions. Run Qbuffer_list_update_hook if allowed.
16157 (Frecord_buffer, Funrecord_buffer): New functions.
16158 (switch_to_buffer_1, Fswitch_to_buffer): Remove.
16159 Move switch-to-buffer to window.el.
16160 (bury-buffer): Move to window.el.
16161 (Vbuffer_list_update_hook): New variable.
16162
16163 * lisp.h (other_buffer_safely): Add prototype in buffer.c
16164 section.
16165
16166 * window.h (resize_frame_windows): Move up in code.
16167 (Fwindow_frame): Remove EXFUN.
16168 (replace_buffer_in_all_windows): Remove prototype.
16169 (replace_buffer_in_windows_safely): Add prototype.
16170
16171 * window.c: Declare Qdelete_window static again. Move down
16172 declaration of select_count.
16173 (Fnext_window, Fprevious_window): Rewrite doc-strings.
16174 (Fother_window): Move to window.el.
16175 (window_loop): Remove DELETE_BUFFER_WINDOWS and UNSHOW_BUFFER
16176 cases. Add REPLACE_BUFFER_IN_WINDOWS_SAFELY case.
16177 (Fdelete_windows_on, Freplace_buffer_in_windows): Move to
16178 window.el.
16179 (replace_buffer_in_windows): Implement by calling
16180 Qreplace_buffer_in_windows.
16181 (replace_buffer_in_all_windows): Remove with some functionality
16182 moved into replace_buffer_in_windows_safely.
16183 (replace_buffer_in_windows_safely): New function.
16184 (select_window_norecord, select_frame_norecord): Move in front
16185 of run_window_configuration_change_hook. Remove now obsolete
16186 declarations.
16187 (Fset_window_buffer): Rewrite doc-string.
16188 Call Qrecord_window_buffer.
16189 (keys_of_window): Move binding for other-window to window.el.
16190
16191 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
16192
16193 * dispextern.h (struct image): Replace data member, whose int_val
16194 and ptr_val fields were not used by anything, with a single
16195 lisp_val object.
16196
16197 * image.c (Fimage_metadata, make_image, mark_image, tiff_load)
16198 (gif_clear_image, gif_load, imagemagick_load_image)
16199 (gs_clear_image, gs_load): Callers changed.
16200
16201 2011-06-10 Paul Eggert <eggert@cs.ucla.edu>
16202
16203 * buffer.h: Include <time.h>, for time_t.
16204 Needed to build on FreeBSD 8.2. Problem reported by Herbert J. Skuhra.
16205
16206 Fix minor problems found by static checking.
16207
16208 * image.c (PixelGetMagickColor): Declare if ImageMagick headers don't.
16209
16210 Make identifiers static if they are not used in other modules.
16211 * data.c (Qcompiled_function, Qframe, Qvector):
16212 * image.c (QimageMagick, Qsvg):
16213 * minibuf.c (Qmetadata):
16214 * window.c (resize_window_check, resize_root_window): Now static.
16215 * window.h (resize_window_check, resize_root_window): Remove decls.
16216
16217 * window.c (window_deletion_count, delete_deletable_window):
16218 Remove; unused.
16219 (window_body_lines): Now static.
16220 (Fdelete_other_windows_internal): Mark vars as initialized.
16221 Make sure 'resize_failed' is initialized.
16222 (run_window_configuration_change_hook): Rename local to avoid shadowing.
16223 (resize_window_apply): Remove unused local.
16224 * window.h (delete_deletable_window): Remove decl.
16225
16226 * image.c (gif_load, svg_load_image): Rename locals to avoid shadowing.
16227 (imagemagick_load_image): Fix pointer signedness problem by changing
16228 last arg from unsigned char * to char *. All uses changed.
16229 Also, fix a local for similar reasons.
16230 Remove unused locals. Remove locals to avoid shadowing.
16231 (fn_rsvg_handle_free): Remove; unused.
16232 (svg_load, svg_load_image): Fix pointer signedness problem.
16233 (imagemagick_load_image): Don't use garbage pointer image_wand.
16234
16235 * ftfont.c (ftfont_get_metrics, ftfont_drive_otf): Remove unused locals.
16236
16237 2011-06-10 Chong Yidong <cyd@stupidchicken.com>
16238
16239 * image.c (gif_load): Fix omitted cast error introduced by
16240 2011-06-06 change.
16241
16242 2011-06-10 Martin Rudalics <rudalics@gmx.at>
16243
16244 * window.h (resize_proportionally, orig_total_lines)
16245 (orig_top_line): Remove from window structure.
16246 (set_window_height, set_window_width, change_window_heights)
16247 (Fdelete_window): Remove prototypes.
16248 (resize_frame_windows): Remove duplicate declaration.
16249
16250 2011-06-10 Eli Zaretskii <eliz@gnu.org>
16251
16252 * window.h (resize_frame_windows, resize_window_check)
16253 (delete_deletable_window, resize_root_window)
16254 (resize_frame_windows): Declare prototypes.
16255
16256 * window.c (resize_window_apply): Make definition be "static" to
16257 match the prototype.
16258
16259 2011-06-10 Martin Rudalics <rudalics@gmx.at>
16260
16261 * window.c: Remove declarations of Qwindow_size_fixed,
16262 window_min_size_1, window_min_size_2, window_min_size,
16263 size_window, window_fixed_size_p, enlarge_window, delete_window.
16264 Remove static from declaration of Qdelete_window, it's
16265 temporarily needed by Fbury_buffer.
16266 (replace_window): Don't assign orig_top_line and
16267 orig_total_lines.
16268 (Fdelete_window, delete_window): Remove. Window deletion is
16269 handled by window.el.
16270 (window_loop): Remove DELETE_OTHER_WINDOWS case.
16271 Replace Fdelete_window calls with calls to Qdelete_window.
16272 (Fdelete_other_windows): Remove. Deleting other windows is
16273 handled by window.el.
16274 (window_fixed_size_p): Remove. Fixed-sizeness of windows is
16275 handled in window.el.
16276 (window_min_size_2, window_min_size_1, window_min_size): Remove.
16277 Window minimum sizes are handled in window.el.
16278 (shrink_windows, size_window, set_window_height)
16279 (set_window_width, change_window_heights, window_height)
16280 (window_width, CURBEG, CURSIZE, enlarge_window)
16281 (adjust_window_trailing_edge, Fadjust_window_trailing_edge)
16282 (Fenlarge_window, Fshrink_window): Remove. Window resizing is
16283 handled in window.el.
16284 (make_dummy_parent): Rename to make_parent_window and give it a
16285 second argument horflag.
16286 (make_window): Don't set resize_proportionally any more.
16287 (Fsplit_window): Remove. Windows are split in window.el.
16288 (save_restore_action, save_restore_orig_size)
16289 (shrink_window_lowest_first, save_restore_orig_size): Remove.
16290 Resize mini windows in window.el.
16291 (grow_mini_window, shrink_mini_window): Implement by calling
16292 Qresize_root_window_vertically, resize_window_check and
16293 resize_window_apply.
16294 (saved_window, Fset_window_configuration, save_window_save):
16295 Do not handle orig_top_line, orig_total_lines, and
16296 resize_proportionally.
16297 (window_min_height, window_min_width): Move to window.el.
16298 (keys_of_window): Move bindings for delete-other-windows,
16299 split-window, delete-window and enlarge-window to window.el.
16300
16301 * buffer.c: Temporarily extern Qdelete_window.
16302 (Fbury_buffer): Temporarily call Qdelete_window instead of
16303 Fdelete_window (Fbury_buffer will move to window.el soon).
16304
16305 * frame.c (set_menu_bar_lines_1): Remove code handling
16306 orig_top_line and orig_total_lines.
16307
16308 * dispnew.c (adjust_frame_glyphs_initially): Don't use
16309 set_window_height but set heights directly.
16310 (change_frame_size_1): Use resize_frame_windows.
16311
16312 * xdisp.c (init_xdisp): Don't use set_window_height but set
16313 heights directly.
16314
16315 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines):
16316 Use resize_frame_windows instead of change_window_heights and run
16317 run_window_configuration_change_hook.
16318
16319 * w32fns.c (x_set_tool_bar_lines): Use resize_frame_windows
16320 instead of change_window_heights and run
16321 run_window_configuration_change_hook.
16322
16323 2011-06-09 Martin Rudalics <rudalics@gmx.at>
16324
16325 * window.c (replace_window): Rename second argument REPLACEMENT to
16326 NEW. New third argument SETFLAG. Rewrite.
16327 (delete_window, make_dummy_parent): Call replace_window with
16328 third argument 1.
16329 (window_list_1): Move down in code.
16330 (run_window_configuration_change_hook): Move set_buffer part
16331 before select_frame_norecord part in order to unwind correctly.
16332 Rename count1 to count.
16333 (recombine_windows, delete_deletable_window, resize_root_window)
16334 (Fdelete_other_windows_internal)
16335 (Frun_window_configuration_change_hook, make_parent_window)
16336 (resize_window_check, resize_window_apply, Fresize_window_apply)
16337 (resize_frame_windows, Fsplit_window_internal)
16338 (Fdelete_window_internal, Fresize_mini_window_internal):
16339 New functions.
16340 (syms_of_window): New variables Vwindow_splits and Vwindow_nest.
16341
16342 2011-06-08 Martin Rudalics <rudalics@gmx.at>
16343
16344 * window.h (window): Add some new members to window structure -
16345 normal_lines, normal_cols, new_total, new_normal, clone_number,
16346 splits, nest, prev_buffers, next_buffers.
16347 (WINDOW_TOTAL_SIZE): Move here from window.c.
16348 (MIN_SAFE_WINDOW_WIDTH, MIN_SAFE_WINDOW_HEIGHT): Define here.
16349
16350 * window.c (Fwindow_height, Fwindow_width, Fwindow_full_width_p):
16351 Remove.
16352 (make_dummy_parent): Set new members of windows structure.
16353 (make_window): Move down in code. Handle new members of window
16354 structure.
16355 (Fwindow_clone_number, Fwindow_splits, Fset_window_splits)
16356 (Fwindow_nest, Fset_window_nest, Fwindow_new_total)
16357 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_prev_buffers)
16358 (Fset_window_prev_buffers, Fwindow_next_buffers)
16359 (Fset_window_next_buffers, Fset_window_clone_number):
16360 New functions.
16361 (Fwindow_hscroll, Fwindow_at, Fwindow_point, Fwindow_start)
16362 (Fwindow_end, Fwindow_line_height, Fset_window_dedicated_p):
16363 Doc-string fixes.
16364 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter):
16365 Argument WINDOW can be now internal window too.
16366 (Fwindow_use_time): Move up in code.
16367 (Fget_buffer_window): Rename argument FRAME to ALL-FRAMES.
16368 Rewrite doc-string.
16369 (Fset_window_configuration, saved_window)
16370 (Fcurrent_window_configuration, save_window_save): Handle new
16371 members of window structure.
16372 (WINDOW_TOTAL_SIZE, MIN_SAFE_WINDOW_WIDTH)
16373 (MIN_SAFE_WINDOW_HEIGHT): Move to window.h.
16374 (syms_of_window): New Lisp objects Qrecord_window_buffer,
16375 Qwindow_deletable_p, Qdelete_window, Qreplace_buffer_in_windows,
16376 Qget_mru_window, Qresize_root_window,
16377 Qresize_root_window_vertically, Qsafe, Qabove, Qbelow,
16378 Qauto_buffer_name; staticpro them.
16379
16380 2011-06-07 Martin Rudalics <rudalics@gmx.at>
16381
16382 * window.c (Fwindow_total_size, Fwindow_left_column)
16383 (Fwindow_top_line, window_body_lines, Fwindow_body_size)
16384 (Fwindow_list_1): New functions.
16385 (window_box_text_cols): Replace with window_body_cols.
16386 (Fwindow_width, Fscroll_left, Fscroll_right):
16387 Use window_body_cols instead of window_box_text_cols.
16388 (delete_window, Fset_window_configuration):
16389 Call delete_all_subwindows with window as argument.
16390 (delete_all_subwindows): Take a window as argument and not a
16391 structure. Rewrite.
16392 (window_loop): Remove handling of GET_LRU_WINDOW and
16393 GET_LARGEST_WINDOW.
16394 (Fget_lru_window, Fget_largest_window): Move to window.el.
16395
16396 * window.h: Extern window_body_cols instead of
16397 window_box_text_cols. delete_all_subwindows now takes a
16398 Lisp_Object as argument.
16399
16400 * indent.c (compute_motion, Fcompute_motion):
16401 Use window_body_cols instead of window_box_text_cols.
16402
16403 * frame.c (delete_frame): Call delete_all_subwindows with root
16404 window as argument.
16405
16406 2011-06-07 Daniel Colascione <dan.colascione@gmail.com>
16407
16408 * fns.c (Fputhash): Document return value.
16409
16410 2011-06-06 Chong Yidong <cyd@stupidchicken.com>
16411
16412 * image.c (gif_load): Implement gif89a spec "no disposal" method.
16413
16414 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
16415
16416 Cons<->int and similar integer overflow fixes (Bug#8794).
16417
16418 Check for overflow when converting integer to cons and back.
16419 * charset.c (Fdefine_charset_internal, Fdecode_char):
16420 Use cons_to_unsigned to catch overflow.
16421 (Fencode_char): Use INTEGER_TO_CONS.
16422 * composite.h (LGLYPH_CODE): Use cons_to_unsigned.
16423 (LGLYPH_SET_CODE): Use INTEGER_TO_CONS.
16424 * data.c (long_to_cons, cons_to_long): Remove.
16425 (cons_to_unsigned, cons_to_signed): New functions.
16426 These signal an error for invalid or out-of-range values.
16427 * dired.c (Ffile_attributes): Use INTEGER_TO_CONS.
16428 * fileio.c (Fset_visited_file_modtime): Use CONS_TO_INTEGER.
16429 * font.c (Ffont_variation_glyphs):
16430 * fontset.c (Finternal_char_font): Use INTEGER_TO_CONS.
16431 * lisp.h: Include <intprops.h>.
16432 (INTEGER_TO_CONS, CONS_TO_INTEGER): New macros.
16433 (cons_to_signed, cons_to_unsigned): New decls.
16434 (long_to_cons, cons_to_long): Remove decls.
16435 * undo.c (record_first_change): Use INTEGER_TO_CONS.
16436 (Fprimitive_undo): Use CONS_TO_INTEGER.
16437 * xfns.c (Fx_window_property): Likewise.
16438 * xselect.c: Include <limits.h>.
16439 (x_own_selection, selection_data_to_lisp_data):
16440 Use INTEGER_TO_CONS.
16441 (x_handle_selection_request, x_handle_selection_clear)
16442 (x_get_foreign_selection, Fx_disown_selection_internal)
16443 (Fx_get_atom_name, x_send_client_event): Use CONS_TO_INTEGER.
16444 (lisp_data_to_selection_data): Use cons_to_unsigned.
16445 (x_fill_property_data): Use cons_to_signed.
16446 Report values out of range.
16447
16448 Check for buffer and string overflow more precisely.
16449 * buffer.h (BUF_BYTES_MAX): New macro.
16450 * lisp.h (STRING_BYTES_MAX): New macro.
16451 * alloc.c (Fmake_string):
16452 * character.c (string_escape_byte8):
16453 * coding.c (coding_alloc_by_realloc):
16454 * doprnt.c (doprnt):
16455 * editfns.c (Fformat):
16456 * eval.c (verror):
16457 Use STRING_BYTES_MAX, not MOST_POSITIVE_FIXNUM,
16458 since they may not be the same number.
16459 * editfns.c (Finsert_char):
16460 * fileio.c (Finsert_file_contents):
16461 Likewise for BUF_BYTES_MAX.
16462
16463 * image.c: Use ptrdiff_t, not int, for sizes.
16464 (slurp_file): Switch from int to ptrdiff_t.
16465 All uses changed.
16466 (slurp_file): Check that file size fits in both size_t (for
16467 malloc) and ptrdiff_t (for sanity and safety).
16468
16469 * fileio.c (Fverify_visited_file_modtime): Avoid time overflow
16470 if b->modtime has its maximal value.
16471
16472 * dired.c (Ffile_attributes): Don't assume EMACS_INT has >32 bits.
16473
16474 Don't assume time_t can fit into int.
16475 * buffer.h (struct buffer.modtime): Now time_t, not int.
16476 * fileio.c (Fvisited_file_modtime): No need for time_t cast now.
16477 * undo.c (Fprimitive_undo): Use time_t, not int, for time_t value.
16478
16479 Minor fixes for signed vs unsigned integers.
16480 * character.h (MAYBE_UNIFY_CHAR):
16481 * charset.c (maybe_unify_char):
16482 * keyboard.c (read_char, reorder_modifiers):
16483 XINT -> XFASTINT, since the integer must be nonnegative.
16484 * ftfont.c (ftfont_spec_pattern):
16485 * keymap.c (access_keymap, silly_event_symbol_error):
16486 XUINT -> XFASTINT, since the integer must be nonnegative.
16487 (Fsingle_key_description, preferred_sequence_p): XUINT -> XINT,
16488 since it makes no difference and we prefer signed.
16489 * keyboard.c (record_char): Use XUINT when all the neighbors do.
16490 (access_keymap): NATNUMP -> INTEGERP, since the integer must be
16491 nonnegative.
16492
16493 2011-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
16494
16495 * window.h (Fwindow_frame): Declare.
16496
16497 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
16498
16499 * alloc.c: Simplify handling of large-request failures (Bug#8800).
16500 (SPARE_MEMORY): Always define.
16501 (LARGE_REQUEST): Remove.
16502 (memory_full): Use SPARE_MEMORY rather than LARGE_REQUEST.
16503
16504 2011-06-06 Martin Rudalics <rudalics@gmx.at>
16505
16506 * lisp.h: Move EXFUNS for Fframe_root_window,
16507 Fframe_first_window and Fset_frame_selected_window to window.h.
16508
16509 * window.h: Move EXFUNS for Fframe_root_window,
16510 Fframe_first_window and Fset_frame_selected_window here from
16511 lisp.h.
16512
16513 * frame.c (Fwindow_frame, Fframe_first_window)
16514 (Fframe_root_window, Fframe_selected_window)
16515 (Fset_frame_selected_window): Move to window.c.
16516 (Factive_minibuffer_window): Move to minibuf.c.
16517 (Fother_visible_frames_p): New function.
16518
16519 * minibuf.c (Factive_minibuffer_window): Move here from frame.c.
16520
16521 * window.c (decode_window, decode_any_window): Move up in code.
16522 (Fwindowp, Fwindow_live_p): Rewrite doc-strings.
16523 (inhibit_frame_unsplittable): Remove unused variable.
16524 (Fwindow_buffer): Move up and rewrite doc-string.
16525 (Fwindow_parent, Fwindow_vchild, Fwindow_hchild, Fwindow_next)
16526 (Fwindow_prev): New functions.
16527 (Fwindow_frame): Move here from frame.c. Accept any window as
16528 argument.
16529 (Fframe_root_window, Fframe_first_window)
16530 (Fframe_selected_window): Move here from frame.c. Accept frame
16531 or arbitrary window as argument. Update doc-strings.
16532 (Fminibuffer_window): Move up in code.
16533 (Fwindow_minibuffer_p): Move up in code and simplify.
16534 (Fset_frame_selected_window): Move here from frame.c.
16535 Marginal rewrite.
16536 (Fselected_window, select_window, Fselect_window): Move up in
16537 code. Minor doc-string fixes.
16538
16539 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
16540
16541 * alloc.c (memory_full) [SYSTEM_MALLOC]: Port to MacOS (Bug#8800).
16542 Do not assume that spare memory exists; that assumption is valid
16543 only if SYSTEM_MALLOC.
16544 (LARGE_REQUEST): New macro, so that the issue of large requests
16545 is separated from the issue of spare memory.
16546
16547 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
16548
16549 * editfns.c (Fformat): Correctly handle zero flag with hexadecimal
16550 format. (Bug#8806)
16551
16552 * gtkutil.c (xg_get_default_scrollbar_width): Avoid warning.
16553
16554 * xfns.c (x_set_scroll_bar_default_width): Move declarations
16555 before statements.
16556
16557 2011-06-05 Jan Djärv <jan.h.d@swipnet.se>
16558
16559 * gtkutil.c (xg_get_default_scrollbar_width): New function.
16560
16561 * gtkutil.h: Declare xg_get_default_scrollbar_width.
16562
16563 * xfns.c (x_set_scroll_bar_default_width): If USE_GTK, get
16564 min width by calling x_set_scroll_bar_default_width (Bug#8505).
16565
16566 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
16567
16568 * xdisp.c (single_display_spec_intangible_p): Remove declaration.
16569
16570 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
16571
16572 * xselect.c (x_clipboard_manager_save): Remove redundant arg.
16573 (x_clipboard_manager_save): Add return value.
16574 (x_clipboard_manager_error_1, x_clipboard_manager_error_2):
16575 New error handlers.
16576 (x_clipboard_manager_save_frame, x_clipboard_manager_save_all):
16577 Obey Vx_select_enable_clipboard_manager. Catch errors in
16578 x_clipboard_manager_save (Bug#8779).
16579 (Vx_select_enable_clipboard_manager): New variable.
16580 (x_get_foreign_selection): Reduce scope of x_catch_errors (Bug#8790).
16581
16582 2011-06-04 Dan Nicolaescu <dann@ics.uci.edu>
16583
16584 * emacs.c (main): Warn when starting a GTK emacs in daemon mode.
16585
16586 2011-06-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16587
16588 * fringe.c (update_window_fringes): Don't update overlay arrow bitmap
16589 in the current matrix if keep_current_p is non-zero.
16590
16591 2011-06-04 Eli Zaretskii <eliz@gnu.org>
16592
16593 * bidi.c (bidi_level_of_next_char): Fix last change.
16594
16595 2011-06-03 Eli Zaretskii <eliz@gnu.org>
16596
16597 Support bidi reordering of text covered by display properties.
16598
16599 * bidi.c (bidi_copy_it): Use offsetof instead of emulating it.
16600 (bidi_fetch_char, bidi_fetch_char_advance): New functions.
16601 (bidi_cache_search, bidi_cache_iterator_state)
16602 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
16603 (bidi_level_of_next_char, bidi_move_to_visually_next):
16604 Support character positions inside a run of characters covered by a
16605 display string.
16606 (bidi_paragraph_init, bidi_resolve_explicit_1)
16607 (bidi_level_of_next_char): Call bidi_fetch_char and
16608 bidi_fetch_char_advance instead of FETCH_CHAR and
16609 FETCH_CHAR_ADVANCE.
16610 (bidi_init_it): Initialize new members.
16611 (LRE_CHAR, RLE_CHAR, PDF_CHAR, LRO_CHAR, RLO_CHAR): Remove macro
16612 definitions.
16613 (bidi_explicit_dir_char): Lookup character type in bidi_type_table,
16614 instead of using explicit *_CHAR codes.
16615 (bidi_resolve_explicit, bidi_resolve_weak):
16616 Use FETCH_MULTIBYTE_CHAR instead of FETCH_CHAR, as reordering of
16617 bidirectional text is supported only in multibyte buffers.
16618 (bidi_init_it): Accept additional argument FRAME_WINDOW_P and use
16619 it to initialize the frame_window_p member of struct bidi_it.
16620 (bidi_cache_iterator_state, bidi_resolve_explicit_1)
16621 (bidi_resolve_explicit, bidi_resolve_weak)
16622 (bidi_level_of_next_char, bidi_move_to_visually_next): Abort if
16623 bidi_it->nchars is non-positive.
16624 (bidi_level_of_next_char): Don't try to lookup the cache for the
16625 next/previous character if nothing is cached there yet, or if we
16626 were just reseat()'ed to a new position.
16627
16628 * xdisp.c (set_cursor_from_row): Set start and stop points
16629 according to the row's direction when priming the loop that looks
16630 for the glyph on which to display cursor.
16631 (single_display_spec_intangible_p): Function deleted.
16632 (display_prop_intangible_p): Reimplement to call
16633 handle_display_spec instead of single_display_spec_intangible_p.
16634 Accept 3 additional arguments needed by handle_display_spec.
16635 This fixes incorrect cursor motion across display property with complex
16636 values: lists, `(when COND...)' forms, etc.
16637 (single_display_spec_string_p): Support property values that are
16638 lists with the argument STRING its top-level element.
16639 (display_prop_string_p): Fix the condition for processing a
16640 property that is a list to be consistent with handle_display_spec.
16641 (handle_display_spec): New function, refactored from the
16642 last portion of handle_display_prop.
16643 (compute_display_string_pos): Accept additional argument
16644 FRAME_WINDOW_P. Call handle_display_spec to determine whether the
16645 value of a `display' property is a "replacing spec".
16646 (handle_single_display_spec): Accept 2 additional arguments BUFPOS
16647 and FRAME_WINDOW_P. If IT is NULL, don't set up the iterator from
16648 the display property, but just return a value indicating whether
16649 the display property will replace the characters it covers.
16650 (Fcurrent_bidi_paragraph_direction): Initialize the nchars and
16651 frame_window_p members of struct bidi_it.
16652 (compute_display_string_pos, compute_display_string_end):
16653 New functions.
16654 (push_it): Accept second argument POSITION, where pop_it should
16655 jump to continue iteration.
16656 (reseat_1): Initialize bidi_it.disp_pos.
16657
16658 * keyboard.c (adjust_point_for_property): Adjust the call to
16659 display_prop_intangible_p to its new signature.
16660
16661 * dispextern.h (struct bidi_it): New member frame_window_p.
16662 (bidi_init_it): Update prototypes.
16663 (display_prop_intangible_p): Update prototype.
16664 (compute_display_string_pos, compute_display_string_end):
16665 Declare prototypes.
16666 (struct bidi_it): New members nchars and disp_pos. ch_len is now
16667 EMACS_INT.
16668
16669 2011-06-02 Paul Eggert <eggert@cs.ucla.edu>
16670
16671 Malloc failure behavior now depends on size of allocation.
16672 * alloc.c (buffer_memory_full, memory_full): New arg NBYTES.
16673 * lisp.h: Change signatures accordingly.
16674 * alloc.c, buffer.c, editfns.c, menu.c, minibuf.c, xterm.c:
16675 All callers changed. (Bug#8762)
16676
16677 * gnutls.c: Use Emacs's memory allocators.
16678 Without this change, the gnutls library would invoke malloc etc.
16679 directly, which causes problems on non-SYNC_INPUT hosts, and which
16680 runs afoul of improving memory_full behavior. (Bug#8761)
16681 (fn_gnutls_global_set_mem_functions): New macro or function pointer.
16682 (emacs_gnutls_global_init): Use it to specify xmalloc, xrealloc,
16683 xfree instead of the default malloc, realloc, free.
16684 (Fgnutls_boot): No need to check for memory allocation failure,
16685 since xmalloc does that for us.
16686
16687 Remove arbitrary limit of 2**31 entries in hash tables. (Bug#8771)
16688 * category.c (hash_get_category_set):
16689 * ccl.c (ccl_driver):
16690 * charset.c (Fdefine_charset_internal):
16691 * charset.h (struct charset.hash_index):
16692 * composite.c (get_composition_id, gstring_lookup_cache)
16693 (composition_gstring_put_cache):
16694 * composite.h (struct composition.hash_index):
16695 * dispextern.h (struct image.hash):
16696 * fns.c (next_almost_prime, larger_vector, cmpfn_eql)
16697 (cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
16698 (hashfn_equal, hashfn_user_defined, make_hash_table)
16699 (maybe_resize_hash_table, hash_lookup, hash_put)
16700 (hash_remove_from_table, hash_clear, sweep_weak_table, SXHASH_COMBINE)
16701 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector)
16702 (Fsxhash, Fgethash, Fputhash, Fmaphash):
16703 * image.c (make_image, search_image_cache, lookup_image)
16704 (xpm_put_color_table_h):
16705 * lisp.h (struct Lisp_Hash_Table):
16706 * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
16707 * print.c (print): Use 'EMACS_UINT' and 'EMACS_INT'
16708 for hashes and hash indexes, instead of 'unsigned' and 'int'.
16709 * alloc.c (allocate_vectorlike):
16710 Check for overflow in vector size calculations.
16711 * ccl.c (ccl_driver):
16712 Check for overflow when converting EMACS_INT to int.
16713 * fns.c, image.c: Remove unnecessary static decls that would otherwise
16714 need to be updated by these changes.
16715 * fns.c (make_hash_table, maybe_resize_hash_table):
16716 Check for integer overflow with large hash tables.
16717 (make_hash_table, maybe_resize_hash_table, Fmake_hash_table):
16718 Prefer the faster XFLOAT_DATA to XFLOATINT where either will do.
16719 (SXHASH_REDUCE): New macro.
16720 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector):
16721 Use it instead of discarding useful hash info with large hash values.
16722 (sxhash_float): New function.
16723 (sxhash): Use it. No more need for "& INTMASK" due to above changes.
16724 * lisp.h (FIXNUM_BITS): New macro, useful for SXHASH_REDUCE etc.
16725 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
16726 Rewrite to use FIXNUM_BITS, as this simplifies things.
16727 (next_almost_prime, larger_vector, sxhash, hash_lookup, hash_put):
16728 Adjust signatures to match updated version of code.
16729 (consing_since_gc): Now EMACS_INT, since a single hash table can
16730 use more than INT_MAX bytes.
16731
16732 2011-06-01 Dan Nicolaescu <dann@ics.uci.edu>
16733
16734 Make it possible to build with GCC-4.6+ -O2 -flto.
16735
16736 * emacs.c (__malloc_initialize_hook): Mark as EXTERNALLY_VISIBLE.
16737
16738 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
16739
16740 * minibuf.c (get_minibuffer, read_minibuf_unwind):
16741 Call minibuffer-inactive-mode.
16742
16743 2011-05-31 Juanma Barranquero <lekktu@gmail.com>
16744
16745 * makefile.w32-in ($(BLD)/data.$(O), $(BLD)/editfns.$(O)):
16746 Update dependencies.
16747
16748 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
16749
16750 * data.c (init_data): Remove code for UTS, this system is not
16751 supported anymore.
16752
16753 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
16754
16755 Don't force ./temacs to start in terminal mode.
16756
16757 * frame.c (make_initial_frame): Initialize faces in all cases, not
16758 only when CANNOT_DUMP is defined.
16759 * dispnew.c (init_display): Remove CANNOT_DUMP condition.
16760
16761 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
16762
16763 * dispnew.c (add_window_display_history): Use const for the string
16764 pointer. Remove declaration, not needed.
16765
16766 2011-05-31 Paul Eggert <eggert@cs.ucla.edu>
16767
16768 Use 'inline', not 'INLINE'.
16769 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00914.html>
16770 * alloc.c, fontset.c (INLINE): Remove.
16771 * alloc.c, bidi.c, charset.c, coding.c, dispnew.c, fns.c, image.c:
16772 * intervals.c, keyboard.c, process.c, syntax.c, textprop.c, w32term.c:
16773 * xdisp.c, xfaces.c, xterm.c: Replace all uses of INLINE with inline.
16774 * gmalloc.c (register_heapinfo): Use inline unconditionally.
16775 * lisp.h (LISP_MAKE_RVALUE): Use inline, not __inline__.
16776
16777 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
16778
16779 Make it possible to run ./temacs.
16780
16781 * callproc.c (set_initial_environment): Remove CANNOT_DUMP code,
16782 syms_of_callproc does the same thing. Remove test for
16783 "initialized", do it in the caller.
16784 * emacs.c (main): Avoid calling set_initial_environment when dumping.
16785
16786 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
16787
16788 * minibuf.c (Finternal_complete_buffer): Return `category' metadata.
16789 (read_minibuf): Use get_minibuffer.
16790 (syms_of_minibuf): Use DEFSYM.
16791 (Qmetadata): New var.
16792 * data.c (Qbuffer): Don't make it static.
16793 (syms_of_data): Use DEFSYM.
16794
16795 2011-05-31 Paul Eggert <eggert@cs.ucla.edu>
16796
16797 * ccl.c (CCL_CODE_RANGE): Allow negative numbers. (Bug#8751)
16798 (CCL_CODE_MIN): New macro.
16799
16800 2011-05-30 Paul Eggert <eggert@cs.ucla.edu>
16801
16802 * alloc.c (lisp_align_malloc): Omit unnecessary val==NULL tests.
16803
16804 * eval.c (Qdebug): Now static.
16805 * lisp.h (Qdebug): Remove decl. This reverts a part of the
16806 2011-04-26T11:26:05Z!dan.colascione@gmail.com that inadvertently undid part of
16807 2011-04-14T06:48:41Z!eggert@cs.ucla.edu.
16808
16809 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
16810
16811 * image.c: Various fixes to ImageMagick code comments.
16812 (Fimagemagick_types): Doc fix.
16813
16814 2011-05-29 Paul Eggert <eggert@cs.ucla.edu>
16815
16816 Minor fixes prompted by GCC 4.6.0 warnings.
16817
16818 * xselect.c (converted_selections, conversion_fail_tag): Now static.
16819
16820 * emacs.c [HAVE_X_WINDOWS]: Include "xterm.h".
16821 (x_clipboard_manager_save_all): Move extern decl to ...
16822 * xterm.h: ... here, so that it can be checked for consistency.
16823
16824 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
16825
16826 * xselect.c (x_clipboard_manager_save_frame)
16827 (x_clipboard_manager_save_all): New functions.
16828 (Fx_clipboard_manager_save): Lisp function deleted.
16829
16830 * emacs.c (Fkill_emacs): Call x_clipboard_manager_save_all.
16831 * frame.c (delete_frame): Call x_clipboard_manager_save_frame.
16832
16833 * xterm.h: Update prototype.
16834
16835 2011-05-28 William Xu <william.xwl@gmail.com>
16836
16837 * nsterm.m (ns_term_shutdown): Synchronize user defaults before
16838 exiting (Bug#8239).
16839
16840 2011-05-28 Jim Meyering <meyering@redhat.com>
16841
16842 Avoid a sign-extension bug in crypto_hash_function.
16843 * fns.c (to_uchar): Define.
16844 (crypto_hash_function): Use it to convert some newly-signed
16845 variables to unsigned, to avoid sign-extension bugs. For example,
16846 without this change, (md5 "truc") would evaluate to
16847 45723a2aff78ff4fff7fff1114760e62 rather than the expected
16848 45723a2af3788c4ff17f8d1114760e62. Reported by Antoine Levitt in
16849 https://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00883.html.
16850
16851 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
16852
16853 Integer overflow fixes.
16854
16855 * dbusbind.c: Serial number integer overflow fixes.
16856 (CHECK_DBUS_SERIAL_GET_SERIAL): New macro.
16857 (Fdbus_call_method_asynchronously, xd_read_message_1): Use a float
16858 to hold a serial number that is too large for a fixnum.
16859 (Fdbus_method_return_internal, Fdbus_method_error_internal):
16860 Check for serial numbers out of range. Decode any serial number
16861 that was so large that it became a float. (Bug#8722)
16862
16863 * dbusbind.c: Use XFASTINT rather than XUINT, and check for nonneg.
16864 (Fdbus_call_method, Fdbus_call_method_asynchronously):
16865 Use XFASTINT rather than XUINT when numbers are nonnegative.
16866 (xd_append_arg, Fdbus_method_return_internal):
16867 (Fdbus_method_error_internal): Likewise. Also, for unsigned
16868 arguments, check that Lisp number is nonnegative, rather than
16869 silently wrapping negative numbers around. (Bug#8722)
16870 (xd_read_message_1): Don't assume dbus_uint32_t can fit in int.
16871 (Bug#8722)
16872
16873 * data.c (arith_driver, Flsh): Avoid unnecessary casts to EMACS_UINT.
16874
16875 * ccl.c (ccl_driver): Redo slightly to avoid the need for 'unsigned'.
16876
16877 ccl: Add integer overflow checks.
16878 * ccl.c (CCL_CODE_MAX, GET_CCL_RANGE, GET_CCL_CODE, GET_CCL_INT):
16879 (IN_INT_RANGE): New macros.
16880 (ccl_driver): Use them to check for integer overflow when
16881 decoding a CCL program. Many of the new checks are whether XINT (x)
16882 fits in int; it doesn't always, on 64-bit hosts. The new version
16883 doesn't catch all possible integer overflows, but it's an
16884 improvement. (Bug#8719)
16885
16886 * alloc.c (make_event_array): Use XINT, not XUINT.
16887 There's no need for unsigned here.
16888
16889 * mem-limits.h (EXCEEDS_LISP_PTR) [!USE_LSB_TAG]: EMACS_UINT -> uintptr_t
16890 This follows up to the 2011-05-06 change that substituted uintptr_t
16891 for EMACS_INT. This case wasn't caught back then.
16892
16893 Rework Fformat to avoid integer overflow issues.
16894 * editfns.c: Include <float.h> unconditionally, as it's everywhere
16895 now (part of C89). Include <verify.h>.
16896 (MAX_10_EXP, CONVERTED_BYTE_SIZE): Remove; no longer needed.
16897 (pWIDE, pWIDElen, signed_wide, unsigned_wide): New defns.
16898 (Fformat): Avoid the prepass trying to compute sizes; it was only
16899 approximate and thus did not catch overflow reliably. Instead, walk
16900 through the format just once, formatting and computing sizes as we go,
16901 checking for integer overflow at every step, and allocating a larger
16902 buffer as needed. Keep track separately whether the format is
16903 multibyte. Keep only the most-recently calculated precision, rather
16904 than them all. Record whether each argument has been converted to
16905 string. Use EMACS_INT, not int, for byte and char and arg counts.
16906 Support field widths and precisions larger than INT_MAX. Avoid
16907 sprintf's undefined behavior with conversion specifications such as %#d
16908 and %.0c. Fix bug with strchr succeeding on '\0' when looking for
16909 flags. Fix bug with (format "%c" 256.0). Avoid integer overflow when
16910 formatting out-of-range floating point numbers with int
16911 formats. (Bug#8668)
16912
16913 * lisp.h (FIXNUM_OVERFLOW_P): Work even if arg is a NaN.
16914
16915 * data.c: Avoid integer truncation in expressions involving floats.
16916 * data.c: Include <intprops.h>.
16917 (arith_driver): When there's an integer overflow in an expression
16918 involving floating point, convert the integers to floating point
16919 so that the resulting value does not suffer from catastrophic
16920 integer truncation. For example, on a 64-bit host (* 4
16921 most-negative-fixnum 0.5) should yield about -4.6e+18, not zero.
16922 Do not rely on undefined behavior after integer overflow.
16923
16924 merge count_size_as_multibyte, parse_str_to_multibyte
16925 * character.c, character.h (count_size_as_multibyte):
16926 Rename from parse_str_to_multibyte; all uses changed.
16927 Check for integer overflow.
16928 * insdel.c, lisp.h (count_size_as_multibyte): Remove,
16929 since it's now a duplicate of the other. This is more of
16930 a character than a buffer op, so better that it's in character.c.
16931 * fns.c, print.c: Adjust to above changes.
16932
16933 2011-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
16934
16935 * xselect.c (x_convert_selection): Yet another int/Lisp_Object mixup.
16936
16937 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
16938
16939 * xselect.c: Fix minor problems prompted by GCC 4.6.0 warnings.
16940 (x_handle_selection_request, frame_for_x_selection): Remove unused vars.
16941 (x_clipboard_manager_save): Now static.
16942 (Fx_clipboard_manager_save): Rename local to avoid shadowing.
16943
16944 * fns.c: Fix minor problems prompted by GCC 4.6.0 warnings.
16945 (crypto_hash_function): Now static.
16946 Fix pointer signedness problems. Avoid unnecessary initializations.
16947
16948 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
16949
16950 * termhooks.h (Vselection_alist): Make it terminal-local.
16951
16952 * terminal.c (create_terminal): Initialize it.
16953
16954 * xselect.c: Support for clipboard managers.
16955 (Vselection_alist): Move to termhooks.h as terminal-local var.
16956 (LOCAL_SELECTION): New macro.
16957 (x_atom_to_symbol): Handle x_display_info_for_display fail case.
16958 (symbol_to_x_atom): Remove gratuitous arg.
16959 (x_handle_selection_request, lisp_data_to_selection_data)
16960 (x_get_foreign_selection, Fx_register_dnd_atom): Callers changed.
16961 (x_own_selection, x_get_local_selection, x_convert_selection):
16962 New arg, specifying work frame. Use terminal-local Vselection_alist.
16963 (some_frame_on_display): Delete unused function.
16964 (Fx_own_selection_internal, Fx_get_selection_internal)
16965 (Fx_disown_selection_internal, Fx_selection_owner_p)
16966 (Fx_selection_exists_p): New optional frame arg.
16967 (frame_for_x_selection, Fx_clipboard_manager_save): New functions.
16968 (x_handle_selection_clear): Don't treat other terminals with the
16969 same keyboard specially. Use the terminal-local Vselection_alist.
16970 (x_clear_frame_selections): Use Frun_hook_with_args.
16971
16972 * xterm.c (x_term_init): Intern ATOM and CLIPBOARD_MANAGER atoms.
16973
16974 * xterm.h: Add support for those atoms.
16975
16976 2011-05-26 Chong Yidong <cyd@stupidchicken.com>
16977
16978 * xselect.c: ICCCM-compliant handling of MULTIPLE targets.
16979 (converted_selections, conversion_fail_tag): New global variables.
16980 (x_selection_request_lisp_error): Free the above.
16981 (x_get_local_selection): Remove unnecessary code.
16982 (x_reply_selection_request): Args changed; handle arbitrary array
16983 of converted selections stored in converted_selections.
16984 Separate the XChangeProperty and SelectionNotify steps.
16985 (x_handle_selection_request): Rewrite to handle MULTIPLE target.
16986 (x_convert_selection): New function.
16987 (x_handle_selection_event): Simplify.
16988 (x_get_foreign_selection): Don't ignore incoming requests while
16989 waiting for an answer; this will fail when we implement
16990 SAVE_TARGETS, and seems unnecessary anyway.
16991 (selection_data_to_lisp_data): Recognize ATOM_PAIR type.
16992 (Vx_sent_selection_functions): Doc fix.
16993
16994 2011-05-26 Leo Liu <sdl.web@gmail.com>
16995
16996 * editfns.c (Ftranspose_regions): Allow empty regions. (Bug#8699)
16997
16998 2011-05-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16999
17000 * dispextern.h (struct glyph_row): New member fringe_bitmap_periodic_p.
17001
17002 * dispnew.c (shift_glyph_matrix, scrolling_window): Mark scrolled row
17003 for fringe update if it has periodic bitmap.
17004 (row_equal_p): Also compare left_fringe_offset, right_fringe_offset,
17005 and fringe_bitmap_periodic_p.
17006
17007 * fringe.c (get_fringe_bitmap_data): New function.
17008 (draw_fringe_bitmap_1, update_window_fringes): Use it.
17009 (update_window_fringes): Record periodicity of fringe bitmap in glyph
17010 row. Mark glyph row for fringe update if periodicity changed.
17011
17012 * xdisp.c (try_window_reusing_current_matrix): Don't mark scrolled row
17013 for fringe update unless it has periodic bitmap.
17014
17015 2011-05-25 Kenichi Handa <handa@m17n.org>
17016
17017 * xdisp.c (get_next_display_element): Set correct it->face_id for
17018 a static composition.
17019
17020 2011-05-24 Leo Liu <sdl.web@gmail.com>
17021
17022 * deps.mk (fns.o):
17023 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha1.h.
17024
17025 * fns.c (crypto_hash_function, Fsha1): New function.
17026 (Fmd5): Use crypto_hash_function.
17027 (syms_of_fns): Add Ssha1.
17028
17029 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
17030
17031 * gnutls.c: Remove unused macros.
17032 (fn_gnutls_transport_set_lowat, fn_gnutls_transport_set_pull_function):
17033 (fn_gnutls_transport_set_push_function) [!WINDOWSNT]:
17034 Remove macros that are defined and never used.
17035 Caught by gcc -Wunused-macros (GCC 4.6.0, Fedora 14).
17036
17037 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
17038
17039 * xselect.c (syms_of_xselect): Remove unused symbol SAVE_TARGETS.
17040 (Fx_get_selection_internal): Minor cleanup.
17041 (Fx_own_selection_internal): Rename arguments for consistency with
17042 select.el.
17043
17044 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
17045
17046 * xselect.c (QSAVE_TARGETS): New static var, to fix build failure.
17047
17048 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
17049
17050 * xselect.c (syms_of_xselect): Include character.h; use DEFSYM.
17051
17052 2011-05-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17053
17054 * dispnew.c (scrolling_window): Don't exclude the case that the
17055 last enabled row in the desired matrix touches the bottom boundary.
17056
17057 2011-05-21 Glenn Morris <rgm@gnu.org>
17058
17059 * Makefile.in ($(etc)/DOC): Make second command line even shorter.
17060 (SOME_MACHINE_OBJECTS): Replace FONT_OBJ by its maximal expansion,
17061 and add some more files.
17062
17063 2011-05-20 Eli Zaretskii <eliz@gnu.org>
17064
17065 * callproc.c (Fcall_process) [MSDOS]: Fix arguments to
17066 report_file_error introduced by the change from 2011-05-07.
17067
17068 2011-05-20 Paul Eggert <eggert@cs.ucla.edu>
17069
17070 * systime.h (Time): Define only if emacs is defined.
17071 This is to allow ../lib-src/profile.c to be compiled on FreeBSD,
17072 where the include path doesn't have X11/X.h by default. See
17073 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00561.html>.
17074
17075 2011-05-20 Kenichi Handa <handa@m17n.org>
17076
17077 * composite.c (find_automatic_composition): Fix previous change.
17078
17079 2011-05-20 Glenn Morris <rgm@gnu.org>
17080
17081 * lisp.mk: New file, split from Makefile.in.
17082 * Makefile.in (lisp): Move to separate file, inserted by @lisp_frag@.
17083 (shortlisp): Remove.
17084 ($(etc)/DOC): Edit lisp.mk rather than using $shortlisp.
17085
17086 2011-05-19 Glenn Morris <rgm@gnu.org>
17087
17088 * Makefile.in (MSDOS_SUPPORT_REAL, MSDOS_SUPPORT, NS_SUPPORT)
17089 (REAL_MOUSE_SUPPORT, GPM_MOUSE_SUPPORT, MOUSE_SUPPORT, TOOLTIP_SUPPORT)
17090 (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT, WINDOW_SUPPORT): Remove.
17091 (lisp): Set the order to that of loadup.el.
17092 (shortlisp): Make it a copy of $lisp.
17093 (SOME_MACHINE_LISP): Remove.
17094 ($(etc)/DOC): Depend just on $lisp, not $SOME_MACHINE_LISP too.
17095 Use just $shortlisp, not $SOME_MACHINE_LISP too.
17096
17097 2011-05-18 Kenichi Handa <handa@m17n.org>
17098
17099 * composite.c (CHAR_COMPOSABLE_P): Add more check for efficiency.
17100 (BACKWARD_CHAR): Wrap the arg STOP by parenthesis.
17101 (find_automatic_composition): Mostly rewrite for efficiency.
17102
17103 2011-05-18 Juanma Barranquero <lekktu@gmail.com>
17104
17105 * makefile.w32-in: Update dependencies.
17106
17107 2011-05-18 Christoph Scholtes <cschol2112@googlemail.com>
17108
17109 * menu.c: Include limits.h (fixes the MS-Windows build broken by
17110 2011-06-18T18:49:19Z!cyd@stupidchicken.com).
17111
17112 2011-05-18 Paul Eggert <eggert@cs.ucla.edu>
17113
17114 Fix some integer overflow issues, such as string length overflow.
17115
17116 * insdel.c (count_size_as_multibyte): Check for string overflow.
17117
17118 * character.c (lisp_string_width): Check for string overflow.
17119 Use EMACS_INT, not int, for string indexes and lengths; in
17120 particular, 2nd arg is now EMACS_INT, not int. Do not crash if
17121 the resulting string length overflows an EMACS_INT; instead,
17122 report a string overflow if no precision given. When checking for
17123 precision exhaustion, use a check that cannot possibly have
17124 integer overflow. (Bug#8675)
17125 * character.h (lisp_string_width): Adjust to new signature.
17126
17127 * alloc.c (string_overflow): New function.
17128 (Fmake_string): Use it. This doesn't change behavior, but saves
17129 a few bytes and will simplify future changes.
17130 * character.c (string_escape_byte8): Likewise.
17131 * lisp.h (string_overflow): New decl.
17132
17133 Fixups, following up to the user-interface timestamp change.
17134 * nsterm.m (last_mouse_movement_time, ns_mouse_position): Use Time
17135 for UI timestamps, instead of unsigned long.
17136 * msdos.c (mouse_get_pos): Likewise.
17137 * w32inevt.c (movement_time, w32_console_mouse_position): Likewise.
17138 * w32gui.h (Time): Define by including "systime.h" rather than by
17139 declaring it ourselves. (Bug#8664)
17140
17141 * dispextern.h (struct image): Don't assume time_t <= unsigned long.
17142 * image.c (clear_image_cache): Likewise.
17143
17144 * term.c (term_mouse_position): Don't assume time_t wraparound.
17145
17146 Be more systematic about user-interface timestamps.
17147 Before, the code sometimes used 'Time', sometimes 'unsigned long',
17148 and sometimes 'EMACS_UINT', to represent these timestamps.
17149 This change causes it to use 'Time' uniformly, as that's what X uses.
17150 This makes the code easier to follow, and makes it easier to catch
17151 integer overflow bugs such as Bug#8664.
17152 * frame.c (Fmouse_position, Fmouse_pixel_position):
17153 Use Time, not unsigned long, for user-interface timestamps.
17154 * keyboard.c (last_event_timestamp, kbd_buffer_get_event): Likewise.
17155 (button_down_time, make_lispy_position, make_lispy_movement): Likewise.
17156 * keyboard.h (last_event_timestamp): Likewise.
17157 * menu.c (Fx_popup_menu) [!HAVE_X_WINDOWS]: Likewise.
17158 * menu.h (xmenu_show): Likewise.
17159 * term.c (term_mouse_position): Likewise.
17160 * termhooks.h (struct input_event.timestamp): Likewise.
17161 (struct terminal.mouse_position_hook): Likewise.
17162 * xmenu.c (create_and_show_popup_menu, xmenu_show): Likewise.
17163 * xterm.c (XTmouse_position, x_scroll_bar_report_motion): Likewise.
17164 * systime.h (Time): New decl. Pull it in from <X11/X.h> if
17165 HAVE_X_WINDOWS, otherwise define it as unsigned long, which is
17166 what it was before.
17167 * menu.h, termhooks.h: Include "systime.h", for Time.
17168
17169 * keyboard.c (make_lispy_event): Fix problem in integer overflow.
17170 Don't assume that the difference between two unsigned long values
17171 can fit into an integer. At this point, we know button_down_time
17172 <= event->timestamp, so the difference must be nonnegative, so
17173 there's no need to cast the result if double-click-time is
17174 nonnegative, as it should be; check that it's nonnegative, just in
17175 case. This bug is triggered when events are more than 2**31 ms
17176 apart (about 25 days). (Bug#8664)
17177
17178 * xselect.c (last_event_timestamp): Remove duplicate decl.
17179 (x_own_selection): Remove needless cast to unsigned long.
17180
17181 * xmenu.c (set_frame_menubar): Use int, not EMACS_UINT, for indexes
17182 that always fit in int. Use a sentinel instead of a counter, to
17183 avoid a temp and to allay GCC's concerns about possible int overflow.
17184 * frame.h (struct frame): Use int for menu_bar_items_used
17185 instead of EMACS_INT, since it always fits in int.
17186
17187 * menu.c (grow_menu_items): Check for int overflow.
17188
17189 * xmenu.c (set_frame_menubar): Don't mishandle vectors with no nils.
17190
17191 * xterm.c: Use EMACS_INT for Emacs modifiers, and int for X modifiers.
17192 Before, the code was not consistent. These values cannot exceed
17193 2**31 - 1 so there's no need to make them unsigned.
17194 (x_x_to_emacs_modifiers): Accept int and return EMACS_INT.
17195 (x_emacs_to_x_modifiers): Accept EMACS_INT and return int.
17196 (x_x_to_emacs_modifiers, x_emacs_to_x_modifiers): Reject non-integers
17197 as modifiers.
17198 * xterm.h (x_x_to_emacs_modifiers): Adjust to signature change.
17199
17200 * lisp.h (XINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_INT.
17201 (XUINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_UINT.
17202 Otherwise, GCC 4.6.0 warns about printf (pI, XINT (...)),
17203 presumably because the widths might not match.
17204
17205 * window.c (size_window): Avoid needless test at loop start.
17206
17207 2011-05-18 Courtney Bane <emacs-bugs-7626@cbane.org> (tiny change)
17208
17209 * term.c (Fresume_tty): Restore hooks before reinitializing (bug#8687).
17210
17211 2011-05-12 Drew Adams <drew.adams@oracle.com>
17212
17213 * textprop.c (Fprevious_single_char_property_change): Doc fix (bug#8655).
17214
17215 2011-05-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17216
17217 * w32term.c (w32_draw_fringe_bitmap): Rename local vars `left' and
17218 `width' to `bar_area_x' and `bar_area_width', respectively.
17219 (x_scroll_run): Take account of fringe background extension.
17220
17221 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
17222 Rename local vars `left' and `width' to `bar_area_x' and
17223 `bar_area_width', respectively.
17224 (x_scroll_run) [USE_TOOLKIT_SCROLL_BARS]: Take account of fringe
17225 background extension.
17226
17227 2011-05-10 Jim Meyering <meyering@redhat.com>
17228
17229 * xdisp.c (x_intersect_rectangles): Fix typo "the the -> the".
17230
17231 2011-05-10 Juanma Barranquero <lekktu@gmail.com>
17232
17233 * image.c (Finit_image_library): Return t for built-in image types,
17234 like pbm and xbm. (Bug#8640)
17235
17236 2011-05-09 Andreas Schwab <schwab@linux-m68k.org>
17237
17238 * w32menu.c (set_frame_menubar): Fix submenu allocation.
17239
17240 2011-05-07 Eli Zaretskii <eliz@gnu.org>
17241
17242 * w32console.c (Fset_screen_color): Doc fix.
17243 (Fget_screen_color): New function.
17244 (syms_of_ntterm): Defsubr it.
17245
17246 * callproc.c (call_process_cleanup) [MSDOS]: Don't close and
17247 unlink the temporary file if Fcall_process didn't create it in the
17248 first place.
17249 (Fcall_process) [MSDOS]: Don't create tempfile if stdout of the
17250 child process will be redirected to a file specified with `:file'.
17251 Don't try to re-open tempfile in that case, and set fd[0] to -1 as
17252 cue to call_process_cleanup not to close that handle.
17253
17254 2011-05-07 Ben Key <bkey76@gmail.com>
17255
17256 * makefile.w32-in: The bootstrap-temacs rule now makes use of
17257 one of two shell specific rules, either bootstrap-temacs-CMD or
17258 bootstrap-temacs-SH. The bootstrap-temacs-SH rule is identical
17259 to the previous implementation of the bootstrap-temacs rule.
17260 The bootstrap-temacs-CMD rule is similar to the previous
17261 implementation of the bootstrap-temacs rule except that it
17262 makes use of the ESC_CFLAGS variable instead of the CFLAGS
17263 variable.
17264
17265 These changes, along with some changes to nt/configure.bat,
17266 nt/gmake.defs, and nt/nmake.defs, are required to extend my
17267 earlier fix to add support for --cflags and --ldflags options
17268 that include quotes so that it works whether make uses cmd or
17269 sh as the shell.
17270
17271 2011-05-06 Michael Albinus <michael.albinus@gmx.de>
17272
17273 * dbusbind.c (QCdbus_type_unix_fd): Declare static.
17274 (xd_remove_watch): Don't check QCdbus_type_unix_fd for SYMBOLP, it
17275 is a constant.
17276 (Fdbus_init_bus, xd_read_queued_messages): Bus can be a symbol or
17277 a string. Handle both cases.
17278 (Fdbus_call_method_asynchronously, Fdbus_register_signal)
17279 (Fdbus_register_method): Use Qinvalid_function.
17280
17281 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
17282
17283 * makefile.w32-in: Update dependencies.
17284 (LISP_H): Add inttypes.h and stdin.h.
17285 (PROCESS_H): Add unistd.h.
17286
17287 2011-05-06 Eli Zaretskii <eliz@gnu.org>
17288
17289 * lread.c: Include limits.h (fixes the MS-Windows build broken by
17290 2011-05-06T07:13:19Z!eggert@cs.ucla.edu).
17291
17292 2011-05-06 Paul Eggert <eggert@cs.ucla.edu>
17293
17294 * image.c (Finit_image_library) [!HAVE_NTGUI]: Omit unused local.
17295
17296 * term.c (vfatal): Remove stray call to va_end.
17297 It's not needed and the C Standard doesn't allow it here anyway.
17298
17299 Use C99's va_copy to avoid undefined behavior on x86-64 GNU/Linux.
17300 * eval.c (verror): doprnt a copy of ap, not the original. (Bug#8545)
17301
17302 * eval.c (verror): OK to create a string of up to MOST_POSITIVE_FIXNUM
17303 bytes.
17304
17305 * term.c: Don't include <stdarg.h>, as <lisp.h> does that.
17306
17307 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
17308
17309 * process.c (Fformat_network_address): Fix typo: args2 -> *args2.
17310
17311 * xmenu.c (set_frame_menubar): Fix typo: int * -> int (3 times).
17312
17313 * coding.c (detect_coding_charset): Fix typo: * 2 -> *4 (Bug#8601).
17314
17315 * charset.h (struct charset.code_space): Now has 15 elements, not 16.
17316 * charset.c (Fdefine_charset_internal): Don't initialize
17317 charset.code_space[15]. The value was garbage, on hosts with
17318 32-bit int (Bug#8600).
17319
17320 * lread.c (read_integer): Be more consistent with string-to-number.
17321 Use string_to_number to do the actual conversion; this avoids
17322 rounding errors and fixes some other screwups. Without this fix,
17323 for example, #x1fffffffffffffff was misread as -2305843009213693952.
17324 (digit_to_number): Move earlier, for benefit of read_integer.
17325 Return -1 if the digit is out of range for the base, -2 if it is
17326 not a digit in any supported base. (Bug#8602)
17327
17328 * doprnt.c (doprnt): Support arbitrary pI values, such as "I64".
17329
17330 * dispnew.c (scrolling_window): Return 1 if we scrolled,
17331 to match comment at start of function. This also removes a
17332 GCC warning about overflow in a 32+64-bit port.
17333
17334 * lisp.h (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Simplify.
17335
17336 * dbusbind.c: Do not use XPNTR on a value that may be an integer.
17337 Reported by Stefan Monnier in
17338 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00919.html>.
17339 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
17340 Use SYMBOLP-guarded XSYMBOL, not XPNTR.
17341
17342 * lisp.h (EMACS_INTPTR): Remove. All uses changed to intptr_t.
17343 (EMACS_UINTPTR): Likewise, with uintptr_t.
17344
17345 * lisp.h: Prefer 64-bit EMACS_INT if available.
17346 (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Define to 64-bit
17347 on 32-bit hosts that have 64-bit int, so that they can access
17348 large files.
17349 However, temporarily disable this change unless the temporary
17350 symbol WIDE_EMACS_INT is defined.
17351
17352 * lread.c, process.c: Do not include <inttypes.h>; lisp.h does it now.
17353
17354 Prefer intptr_t/uintptr_t for integers the same widths as pointers.
17355 This removes an assumption that EMACS_INT and long are the same
17356 width as pointers. The assumption is true for Emacs porting targets
17357 now, but we want to make other targets possible.
17358 * lisp.h: Include <inttypes.h>, for INTPTR_MAX, UINTPTR_MAX.
17359 (EMACS_INTPTR, EMACS_UINTPTR): New macros.
17360 In the rest of the code, change types of integers that hold casted
17361 pointers to EMACS_INTPTR and EMACS_UINTPTR, systematically
17362 replacing EMACS_INT, long, EMACS_UINT, and unsigned long.
17363 (XTYPE): Don't cast arg to EMACS_UINT; normally is not needed.
17364 (XSET): Cast type of XTYPE arg to EMACS_INTPTR; it is needed here.
17365 No need to cast type when ORing.
17366 (XPNTR): Return a value of type EMACS_INTPTR or EMACS_UINTPTR.
17367 * alloc.c (lisp_align_malloc): Remove a no-longer-needed cast.
17368 * doc.c (store_function_docstring): Use EMACS_INTPTR, so as not to
17369 assume EMACS_INT is the same width as char *.
17370 * gtkutil.c (xg_gtk_scroll_destroy, xg_tool_bar_button_cb):
17371 (xg_tool_bar_callback, xg_tool_bar_help_callback, xg_make_tool_item):
17372 Remove no-longer-needed casts.
17373 (xg_create_scroll_bar, xg_tool_bar_button_cb, xg_tool_bar_callback):
17374 (xg_tool_bar_help_callback, xg_make_tool_item):
17375 Use EMACS_INTPTR to hold an integer
17376 that will be cast to void *; this can avoid a GCC warning
17377 if EMACS_INT is not the same width as void *.
17378 * menu.c (find_and_call_menu_selection): Remove no-longer-needed cast.
17379 * xdisp.c (display_echo_area_1, resize_mini_window_1):
17380 (current_message_1, set_message_1):
17381 Use a local to convert to proper width without a cast.
17382 * xmenu.c (dialog_selection_callback): Likewise.
17383
17384 * sysdep.c (get_random): Don't assume EMACS_INT is no wider than long.
17385 Also, don't assume VALBITS / RAND_BITS is less than 5,
17386 and don't rely on undefined behavior when shifting a 1 left into
17387 the sign bit.
17388 * lisp.h (get_random): Change signature to match.
17389
17390 * lread.c (hash_string): Use size_t, not int, for hash computation.
17391 Normally we prefer signed values; but hashing is special, because
17392 it's better to use unsigned division on hash table sizes so that
17393 the remainder is nonnegative. Also, size_t is the natural width
17394 for hashing into memory. The previous code used 'int', which doesn't
17395 retain enough info to hash well into very large tables.
17396 (oblookup, oblookup_last_bucket_number, Funintern): Likewise.
17397
17398 * dbusbind.c: Don't possibly lose pointer info when converting.
17399 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
17400 Use XPNTR rather than XHASH, so that the high-order bits of
17401 the pointer aren't lost when converting through void *.
17402
17403 * eval.c (Fautoload): Don't double-shift a pointer.
17404
17405 * fns.c (Frandom): Let EMACS_UINT be wider than unsigned long.
17406
17407 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
17408
17409 * gnutls.c (DEF_GNUTLS_FN):
17410 * image.c (DEF_IMGLIB_FN): Make function pointers static.
17411
17412 2011-05-05 Andreas Schwab <schwab@linux-m68k.org>
17413
17414 * lread.c (lisp_file_lexically_bound_p): Stop scanning at end
17415 marker. (Bug#8610)
17416
17417 2011-05-05 Eli Zaretskii <eliz@gnu.org>
17418
17419 * w32heap.c (allocate_heap) [USE_LISP_UNION_TYPE || USE_LSB_TAG]:
17420 New version that can reserve upto 2GB of heap space.
17421
17422 2011-05-05 Chong Yidong <cyd@stupidchicken.com>
17423
17424 * nsfns.m (Fns_read_file_name): Doc fix (Bug#8534).
17425
17426 2011-05-05 Teodor Zlatanov <tzz@lifelogs.com>
17427
17428 * gnutls.c (fn_gnutls_certificate_set_x509_key_file): Add alias to
17429 `gnutls_certificate_set_x509_key_file'.
17430
17431 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
17432
17433 * makefile.w32-in ($(BLD)/image.$(O), $(BLD)/process.$(O)):
17434 Update dependencies.
17435
17436 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
17437
17438 * gnutls.h (emacs_gnutls_write, emacs_gnutls_read):
17439 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
17440 Remove unused parameter `fildes'.
17441 * process.c (read_process_output, send_process): Don't pass it.
17442
17443 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
17444
17445 Fix previous change: the library cache is defined in w32.c.
17446 * image.c (CACHE_IMAGE_TYPE) [!HAVE_NTGUI]: Define to noop.
17447 (Finit_image_library): Wrap Vlibrary_cache on "#ifdef HAVE_NTGUI".
17448
17449 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
17450
17451 Implement dynamic loading of GnuTLS on Windows.
17452
17453 * gnutls.h (GNUTLS_EMACS_ERROR_NOT_LOADED): New macro.
17454 (emacs_gnutls_write, emacs_gnutls_read): Mark as extern.
17455 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
17456 Declare.
17457
17458 * gnutls.c (Qgnutls_dll): Define.
17459 (DEF_GNUTLS_FN, LOAD_GNUTLS_FN): New macros.
17460 (gnutls_*): Declare function pointers.
17461 (init_gnutls_functions): New function to initialize function pointers.
17462 (emacs_gnutls_handshake, Fgnutls_error_string, Fgnutls_deinit)
17463 (emacs_gnutls_global_init, Fgnutls_bye): Use function pointers.
17464 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
17465 Wrappers for gnutls_record_check_pending and gnutls_transport_set_errno.
17466 (emacs_gnutls_write, emacs_gnutls_read)
17467 (emacs_gnutls_handle_error, Fgnutls_error_fatalp)
17468 (Fgnutls_available_p): New function.
17469 (Fgnutls_boot): Call Fgnutls_available_p. Use function pointers.
17470 (syms_of_gnutls) <Qgnutls_dll>: Initialize and staticpro it.
17471 (syms_of_gnutls) <Sgnutls_available_p>: defsubr it.
17472
17473 * image.c: Include w32.h.
17474 (Vimage_type_cache): Delete.
17475 (syms_of_image) <Vimage_type_cache>: Don't initialize and staticpro it.
17476 (CACHE_IMAGE_TYPE, Finit_image_library): Use Vlibrary_cache instead.
17477 (w32_delayed_load): Move to w32.c.
17478
17479 * w32.h (VlibraryCache, QCloaded_from, w32_delayed_load): Declare.
17480
17481 * w32.c (QCloaded_from, Vlibrary_cache): Define.
17482 (w32_delayed_load): Move from image.c. When loading a library, record
17483 its filename in the :loaded-from property of the library id.
17484 (globals_of_w32) <QCloaded_from, Vlibrary_cache>:
17485 Initialize and staticpro them.
17486 (emacs_gnutls_pull, emacs_gnutls_push): Call emacs_gnutls_* functions.
17487
17488 * process.c: Include lisp.h before w32.h, not after.
17489 (wait_reading_process_output): Call emacs_gnutls_record_check_pending
17490 instead of gnutls_record_check_pending.
17491
17492 * callproc.c, emacs.c: Include lisp.h before w32.h, not after.
17493
17494 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
17495
17496 * gnutls.c (Fgnutls_boot): Support :keylist and :crlfiles options
17497 instead of :keyfiles. Give GnuTLS the keylist and the CRL lists
17498 as passed in.
17499
17500 2011-05-03 Jan Djärv <jan.h.d@swipnet.se>
17501
17502 * xterm.c (x_set_frame_alpha): Do not set property on anything
17503 else than FRAME_X_OUTER_WINDOW (Bug#8608).
17504
17505 2011-05-02 Juanma Barranquero <lekktu@gmail.com>
17506
17507 * sysdep.c (get_tty_size) [WINDOWSNT]: Implement. (Bug#8596)
17508
17509 2011-05-02 Juanma Barranquero <lekktu@gmail.com>
17510
17511 * gnutls.c (Qgnutls_log_level, Qgnutls_code, Qgnutls_anon)
17512 (Qgnutls_x509pki, Qgnutls_e_interrupted, Qgnutls_e_again)
17513 (Qgnutls_e_invalid_session, Qgnutls_e_not_ready_for_handshake)
17514 (gnutls_global_initialized, Qgnutls_bootprop_priority)
17515 (Qgnutls_bootprop_trustfiles, Qgnutls_bootprop_keyfiles)
17516 (Qgnutls_bootprop_callbacks, Qgnutls_bootprop_loglevel)
17517 (Qgnutls_bootprop_hostname, Qgnutls_bootprop_verify_flags)
17518 (Qgnutls_bootprop_verify_error, Qgnutls_bootprop_verify_hostname_error)
17519 (Qgnutls_bootprop_callbacks_verify): Make static.
17520
17521 2011-05-01 Andreas Schwab <schwab@linux-m68k.org>
17522
17523 * callproc.c: Indentation fixup.
17524
17525 * sysdep.c (wait_for_termination_1): Make static.
17526 (wait_for_termination, interruptible_wait_for_termination):
17527 Move after wait_for_termination_1.
17528
17529 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
17530
17531 * sysdep.c (interruptible_wait_for_termination): New function
17532 which is like wait_for_termination, but allows keyboard
17533 interruptions.
17534
17535 * callproc.c (Fcall_process): Add (:file "file") as an option for
17536 the STDOUT buffer.
17537 (Fcall_process_region): Ditto.
17538
17539 2011-04-30 Eli Zaretskii <eliz@gnu.org>
17540
17541 * dosfns.c (Fint86, Fdos_memget, Fdos_memput): Use `ASIZE (FOO)'
17542 rather than `XVECTOR (FOO)->size'.
17543
17544 * process.c: Remove HAVE_INTTYPES_H condition from inclusion of
17545 inttypes.h, as a gnulib replacement is used if it not available in
17546 system headers.
17547
17548 2011-04-21 Eli Zaretskii <eliz@gnu.org>
17549
17550 Lift the MOST_POSITIVE_FIXNUM/4 limitation on visited files.
17551 * fileio.c (Finsert_file_contents): Don't limit file size to 1/4
17552 of MOST_POSITIVE_FIXNUM. (Bug#8528)
17553
17554 * coding.c (coding_alloc_by_realloc): Error out if destination
17555 will grow beyond MOST_POSITIVE_FIXNUM.
17556 (decode_coding_emacs_mule): Abort if there isn't enough place in
17557 charbuf for the composition carryover bytes. Reserve an extra
17558 space for up to 2 characters produced in a loop.
17559 (decode_coding_iso_2022): Abort if there isn't enough place in
17560 charbuf for the composition carryover bytes.
17561
17562 2011-04-21 Eli Zaretskii <eliz@gnu.org>
17563
17564 * doprnt.c (doprnt) [!HAVE_LONG_LONG_INT]: Error out instead of
17565 aborting when %lld or %lll format is passed.
17566 [!HAVE_UNSIGNED_LONG_LONG_INT]: Error out instead of aborting when
17567 %llo or %llx format is passed. (Bug#8545)
17568
17569 * window.c (window_scroll_line_based): Use a marker instead of
17570 simple variables to record original value of point. (Bug#7952)
17571
17572 * doprnt.c (doprnt): Fix the case where a multibyte sequence
17573 produced by %s or %c overflows available buffer space. (Bug#8545)
17574
17575 2011-04-28 Paul Eggert <eggert@cs.ucla.edu>
17576
17577 * doprnt.c (doprnt): Omit useless test; int overflow check (Bug#8545).
17578 (SIZE_MAX): Move defn after all includes, as they might #define it.
17579
17580 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
17581
17582 * w32.c (init_environment): Warn about defaulting HOME to C:\.
17583
17584 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
17585
17586 * keyboard.c (Qdelayed_warnings_hook): Define.
17587 (command_loop_1): Run `delayed-warnings-hook'
17588 if Vdelayed_warnings_list is non-nil.
17589 (syms_of_keyboard) <delayed-warnings-hook>: DEFSYM it.
17590 (syms_of_keyboard) <delayed-warnings-list>: DEFVAR_LISP it.
17591
17592 2011-04-28 Eli Zaretskii <eliz@gnu.org>
17593
17594 * doprnt.c (doprnt): Don't return value smaller than the buffer
17595 size if the message was truncated. (Bug#8545).
17596
17597 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
17598
17599 * w32fns.c (Fx_change_window_property, Fx_delete_window_property)
17600 (Fx_window_property): #if-0 the whole functions, not just the bodies.
17601
17602 2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
17603
17604 * doprnt.c (doprnt): Support "ll" length modifier, for long long.
17605
17606 2011-04-27 Juanma Barranquero <lekktu@gmail.com>
17607
17608 * makefile.w32-in: Update dependencies.
17609
17610 2011-04-27 Eli Zaretskii <eliz@gnu.org>
17611
17612 Improve `doprnt' and its usage. (Bug#8545)
17613 * doprnt.c (doprnt): Make sure `format' is never accessed beyond
17614 `format_end'. Remove support for %l as a conversion specifier.
17615 Don't use xrealloc. Improve diagnostics when the %l size modifier
17616 is used. Update the commentary.
17617
17618 * eval.c (verror): Simplify calculation of size_t.
17619
17620 * coding.c (Ffind_operation_coding_system): Fix diagnostic error
17621 messages.
17622
17623 2011-04-27 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
17624
17625 * buffer.c (init_buffer) [USE_MMAP_FOR_BUFFERS]: Adjust to aliasing
17626 change.
17627
17628 2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
17629
17630 * nsmenu.m: Replace all uses of XVECTOR with ASIZE and AREF.
17631 This makes this file independent of the recent pseudovector change.
17632
17633 2011-04-26 Paul Eggert <eggert@cs.ucla.edu>
17634
17635 * keyboard.c (handle_user_signal): Fix pointer signedness problem.
17636
17637 * gnutls.c (emacs_gnutls_handle_error): Remove unused local.
17638 (Fgnutls_boot): gnutls_certificate_verify_peers2 wants unsigned *.
17639 Remove unused local.
17640 (emacs_gnutls_write): Don't use uninitialized rtnval if nbyte <= 0.
17641
17642 * lisp.h: Fix a problem with aliasing and vector headers. (Bug#8546)
17643 GCC 4.6.0 optimizes based on type-based alias analysis.
17644 For example, if b is of type struct buffer * and v of type struct
17645 Lisp_Vector *, then gcc -O2 was incorrectly assuming that &b->size
17646 != &v->size, and therefore "v->size = 1; b->size = 2; return
17647 v->size;" must therefore return 1. This assumption is incorrect
17648 for Emacs, since it type-puns struct Lisp_Vector * with many other
17649 types. To fix this problem, this patch adds a new type struct
17650 vectorlike_header that documents the constraints on layout of vectors
17651 and pseudovectors, and helps optimizing compilers not get fooled
17652 by Emacs's type punning. It also adds the macros XSETTYPED_PVECTYPE
17653 XSETTYPED_PSEUDOVECTOR, TYPED_PSEUDOVECTORP, for similar reasons.
17654 * lisp.h (XSETTYPED_PVECTYPE): New macro, specifying the name of
17655 the size member.
17656 (XSETPVECTYPE): Rewrite in terms of new macro.
17657 (XSETPVECTYPESIZE): New macro, specifying both type and size.
17658 This is a bit clearer, and further avoids the possibility of
17659 undesirable aliasing.
17660 (XSETTYPED_PSEUDOVECTOR): New macro, specifying the size.
17661 (XSETPSEUDOVECTOR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR.
17662 (XSETSUBR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR and XSIZE,
17663 since Lisp_Subr is a special case (no "next" field).
17664 (ASIZE): Now uses header.size rather than size.
17665 All previous uses of XVECTOR (foo)->size replaced to use this macro,
17666 to avoid the hassle of writing XVECTOR (foo)->header.size.
17667 (struct vectorlike_header): New type.
17668 (TYPED_PSEUDOVECTORP): New macro, also specifying the C type of the
17669 object, to help avoid aliasing.
17670 (PSEUDOVECTORP): Rewrite in terms of TYPED_PSEUDOVECTORP.
17671 (SUBRP): Likewise, since Lisp_Subr is a special case.
17672 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table):
17673 (struct Lisp_Sub_Char_Table, struct Lisp_Bool_Vector):
17674 (struct Lisp_Hash_Table): Combine first two members into a single
17675 struct vectorlike_header member. All uses of "size" and "next" members
17676 changed to be "header.size" and "header.next".
17677 * buffer.h (struct buffer): Likewise.
17678 * font.h (struct font_spec, struct font_entity, struct font): Likewise.
17679 * frame.h (struct frame): Likewise.
17680 * process.h (struct Lisp_Process): Likewise.
17681 * termhooks.h (struct terminal): Likewise.
17682 * window.c (struct save_window_data, struct saved_window): Likewise.
17683 * window.h (struct window): Likewise.
17684 * alloc.c (allocate_buffer, Fmake_bool_vector, allocate_pseudovector):
17685 Use XSETPVECTYPESIZE, not XSETPVECTYPE, to avoid aliasing problems.
17686 * buffer.c (init_buffer_once): Likewise.
17687 * lread.c (defsubr): Use XSETTYPED_PVECTYPE, since Lisp_Subr is a
17688 special case.
17689 * process.c (Fformat_network_address): Use local var for size,
17690 for brevity.
17691
17692 * bytecode.c (exec_byte_code): Don't use XVECTOR before CHECK_VECTOR.
17693
17694 Make the Lisp reader and string-to-float more consistent (Bug#8525)
17695 * data.c (atof): Remove decl; no longer used or needed.
17696 (digit_to_number): Move to lread.c.
17697 (Fstring_to_number): Use new string_to_number function, to be
17698 consistent with how the Lisp reader treats infinities and NaNs.
17699 Do not assume that floating-point numbers represent EMACS_INT
17700 without losing information; this is not true on most 64-bit hosts.
17701 Avoid double-rounding errors, by insisting on integers when
17702 parsing non-base-10 numbers, as the documentation specifies.
17703 * lisp.h (string_to_number): New decl, replacing ...
17704 (isfloat_string): Remove.
17705 * lread.c: Include <inttypes.h>, for uintmax_t and strtoumax.
17706 (read1): Do not accept +. and -. as integers; this
17707 appears to have been a coding error. Similarly, do not accept
17708 strings like +-1e0 as floating point numbers. Do not report
17709 overflow for integer overflows unless the base is not 10 which
17710 means we have no simple and reliable way to continue.
17711 Break out the floating-point parsing into a new
17712 function string_to_number, so that Fstring_to_number parses
17713 floating point numbers consistently with the Lisp reader.
17714 (digit_to_number): Move here from data.c. Make it static inline.
17715 (E_CHAR, EXP_INT): Remove, replacing with ...
17716 (E_EXP): New macro, to solve the "1.0e+" problem mentioned below.
17717 (string_to_number): New function, replacing isfloat_string.
17718 This function checks for valid syntax and produces the resulting
17719 Lisp float number too. Rework it so that string-to-number
17720 no longer mishandles examples like "1.0e+". Use strtoumax,
17721 so that overflow for non-base-10 numbers is reported only when
17722 there's no portable and simple way to convert to floating point.
17723
17724 * textprop.c (set_text_properties_1): Rewrite for clarity,
17725 and to avoid GCC warning about integer overflow.
17726
17727 * intervals.h (struct interval): Use EMACS_INT for members
17728 where EMACS_UINT might cause problems. See
17729 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html>.
17730 (CHECK_TOTAL_LENGTH): Remove cast to EMACS_INT; no longer needed.
17731 * intervals.c (interval_deletion_adjustment): Now returns EMACS_INT.
17732 All uses changed.
17733 (offset_intervals): Tell GCC not to worry about length overflow
17734 when negating a negative length.
17735
17736 * alloc.c (overrun_check_malloc, overrun_check_realloc): Now static.
17737 (overrun_check_free): Likewise.
17738
17739 * alloc.c (SDATA_SIZE) [!GC_CHECK_STRING_BYTES]: Avoid runtime check
17740 in the common case where SDATA_DATA_OFFSET is a multiple of Emacs
17741 word size.
17742
17743 * gnutls.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
17744 (gnutls_make_error): Rename local to avoid shadowing.
17745 (gnutls_emacs_global_deinit): ifdef out; not used.
17746 (Fgnutls_boot): Use const for pointer to readonly storage.
17747 Comment out unused local. Fix pointer signedness problems.
17748
17749 * lread.c (openp): Don't stuff size_t into an 'int'.
17750 Use <= on length, not < on length + 1, to avoid GCC 4.6.0 warning
17751 about possible signed overflow.
17752
17753 * gtkutil.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
17754 (GDK_KEY_g): Don't define if already defined.
17755 (xg_prepare_tooltip): Avoid pointer signedness problem.
17756 (xg_set_toolkit_scroll_bar_thumb): Redo to avoid two casts.
17757
17758 * process.c (Fnetwork_interface_info): Avoid left-shift undefined
17759 behavior with 1 << 31. GCC 4.6.0 warns about this on 32-bit hosts.
17760
17761 * xfns.c (Fx_window_property): Simplify a bit,
17762 to make a bit faster and to avoid GCC 4.6.0 warning.
17763 * xselect.c (x_get_window_property, x_handle_dnd_message): Likewise.
17764
17765 * fns.c (internal_equal): Don't assume size_t fits in int.
17766
17767 * alloc.c (compact_small_strings): Tighten assertion a little.
17768
17769 Replace pEd with more-general pI, and fix some printf arg casts.
17770 * lisp.h (pI): New macro, generalizing old pEd macro to other
17771 conversion specifiers. For example, use "...%"pI"d..." rather
17772 than "...%"pEd"...".
17773 (pEd): Remove. All uses replaced with similar uses of pI.
17774 * m/amdx86-64.h, m/ia64.h, m/ibms390x.h: Likewise.
17775 * alloc.c (check_pure_size): Don't overflow by converting size to int.
17776 * bidi.c (bidi_dump_cached_states): Use pI to avoid cast.
17777 * data.c (Fnumber_to_string): Use pI instead of if-then-else-abort.
17778 * dbusbind.c (xd_append_arg): Use pI to avoid cast.
17779 (Fdbus_method_return_internal, Fdbus_method_error_internal): Likewise.
17780 * font.c (font_unparse_xlfd): Avoid potential buffer overrun on
17781 64-bit hosts.
17782 (font_unparse_xlfd, font_unparse_fcname): Use pI to avoid casts.
17783 * keyboard.c (record_char, modify_event_symbol): Use pI to avoid casts.
17784 * print.c (safe_debug_print, print_object): Likewise.
17785 (print_object): Don't overflow by converting EMACS_INT or EMACS_UINT
17786 to int.
17787 Use pI instead of if-then-else-abort. Use %p to avoid casts,
17788 avoiding the 0 flag, which is not portable.
17789 * process.c (Fmake_network_process): Use pI to avoid cast.
17790 * region-cache.c (pp_cache): Likewise.
17791 * xdisp.c (decode_mode_spec): Likewise.
17792 * xrdb.c (x_load_resources) [USE_MOTIF]: Use pI to avoid undefined
17793 behavior on 64-bit hosts with printf arg.
17794 * xselect.c (x_queue_event): Use %p to avoid casts, avoiding 0 flag.
17795 (x_stop_queuing_selection_requests): Likewise.
17796 (x_get_window_property): Don't truncate byte count to an 'int'
17797 when tracing.
17798
17799 * frame.c (frame_name_fnn_p): Get rid of strtol, which isn't right
17800 here, since it parses constructs like leading '-' and spaces,
17801 which are not wanted; and it overflows with large numbers.
17802 Instead, simply match F[0-9]+, which is what is wanted anyway.
17803
17804 * alloc.c: Remove unportable assumptions about struct layout.
17805 (SDATA_SELECTOR, SDATA_DATA_OFFSET): New macros.
17806 (SDATA_OF_STRING, SDATA_SIZE, allocate_string_data):
17807 (allocate_vectorlike, make_pure_vector): Use the new macros,
17808 plus offsetof, to remove unportable assumptions about struct layout.
17809 These assumptions hold on all porting targets that I know of, but
17810 they are not guaranteed, they're easy to remove, and removing them
17811 makes further changes easier.
17812
17813 * alloc.c (BLOCK BYTES): Fix typo by changing "ablock" to "ablocks".
17814 This doesn't fix a bug but makes the code clearer.
17815 (string_overrun_cookie): Now const. Use initializers that
17816 don't formally overflow signed char, to avoid warnings.
17817 (allocate_string_data) [GC_CHECK_STRING_OVERRUN]: Fix typo that
17818 can cause Emacs to crash when string overrun checking is enabled.
17819 (allocate_buffer): Don't assume sizeof (struct buffer) is a
17820 multiple of sizeof (EMACS_INT); it need not be, if
17821 alignof(EMACS_INT) < sizeof (EMACS_INT).
17822 (check_sblock, check_string_bytes, check_string_free_list): Protoize.
17823
17824 2011-04-26 Juanma Barranquero <lekktu@gmail.com>
17825
17826 * keyboard.c (QCrtl): Rename from Qrtl. All uses changed.
17827
17828 2011-04-26 Teodor Zlatanov <tzz@lifelogs.com>
17829
17830 * gnutls.c (emacs_gnutls_handshake): Return an error if we're not
17831 supposed to be handshaking. (Bug#8556)
17832 Reported by Paul Eggert <eggert@cs.ucla.edu>.
17833
17834 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
17835
17836 * lisp.h (Qdebug): List symbol.
17837 * eval.c (Qdebug): Restore global linkage.
17838 * keyboard.c (debug-on-event): New variable.
17839 (handle_user_signal): Break into debugger when debug-on-event
17840 matches the current signal symbol.
17841
17842 2011-04-25 Dan Nicolaescu <dann@ics.uci.edu>
17843
17844 * alloc.c (check_sblock, check_string_bytes)
17845 (check_string_free_list): Convert to standard C.
17846
17847 2011-04-25 Teodor Zlatanov <tzz@lifelogs.com>
17848
17849 * w32.c (emacs_gnutls_push): Fix typo.
17850
17851 2011-04-25 Eli Zaretskii <eliz@gnu.org>
17852
17853 * gnutls.c (emacs_gnutls_handshake): Avoid compiler warnings about
17854 "cast to pointer from integer of different size".
17855
17856 Improve doprnt and its use in verror. (Bug#8545)
17857 * doprnt.c (doprnt): Document the set of format control sequences
17858 supported by the function. Use SAFE_ALLOCA instead of always
17859 using `alloca'.
17860
17861 * eval.c (verror): Don't limit the buffer size at size_max-1, that
17862 is one byte too soon. Don't use xrealloc; instead xfree and
17863 xmalloc anew.
17864
17865 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
17866
17867 * gnutls.h: Add GNUTLS_STAGE_CALLBACKS enum to denote we're in the
17868 callbacks stage.
17869
17870 * gnutls.c: Renamed global_initialized to
17871 gnutls_global_initialized. Added internals for the
17872 :verify-hostname-error, :verify-error, and :verify-flags
17873 parameters of `gnutls-boot' and documented those parameters in the
17874 docstring. Start callback support.
17875 (emacs_gnutls_handshake): Add Woe32 support. Retry handshake
17876 unless a fatal error occurred. Call gnutls_alert_send_appropriate
17877 on error. Return error code.
17878 (emacs_gnutls_write): Call emacs_gnutls_handle_error.
17879 (emacs_gnutls_read): Likewise.
17880 (Fgnutls_boot): Return handshake error code.
17881 (emacs_gnutls_handle_error): New function.
17882 (wsaerror_to_errno): Likewise.
17883
17884 * w32.h (emacs_gnutls_pull): Add prototype.
17885 (emacs_gnutls_push): Likewise.
17886
17887 * w32.c (emacs_gnutls_pull): New function for GnuTLS on Woe32.
17888 (emacs_gnutls_push): Likewise.
17889
17890 2011-04-24 Claudio Bley <claudio.bley@gmail.com> (tiny change)
17891
17892 * process.c (wait_reading_process_output): Check if GnuTLS
17893 buffered some data internally if no FDs are set for TLS
17894 connections.
17895
17896 * makefile.w32-in (OBJ2): Add gnutls.$(O).
17897 (LIBS): Link to USER_LIBS.
17898 ($(BLD)/gnutls.$(0)): New target.
17899
17900 2011-04-24 Eli Zaretskii <eliz@gnu.org>
17901
17902 * xdisp.c (handle_single_display_spec): Rename the
17903 display_replaced_before_p argument into display_replaced_p, to
17904 make it consistent with the commentary. Fix typos in the
17905 commentary.
17906
17907 * textprop.c (syms_of_textprop): Remove dead code.
17908 (copy_text_properties): Delete obsolete commentary about an
17909 interface that was deleted long ago. Fix typos in the description
17910 of arguments.
17911
17912 * msdos.c (XMenuActivate, XMenuAddSelection): Adjust argument list
17913 to changes in oldXMenu/XMenu.h from 2011-04-16.
17914 <menu_help_message, prev_menu_help_message>: Constify.
17915 (IT_menu_make_room): menu->help_text is now `const char **';
17916 adjust.
17917
17918 * msdos.h (XMenuActivate, XMenuAddSelection): Adjust prototypes
17919 to changes in oldXMenu/XMenu.h from 2011-04-16.
17920 (struct XMenu): Declare `help_text' `const char **'.
17921
17922 * xfaces.c <Qunspecified>: Make extern again.
17923
17924 * syntax.c: Include sys/types.h before including regex.h, as
17925 required by POSIX.
17926
17927 * doc.c (get_doc_string): Improve the format passed to `error'.
17928
17929 * doprnt.c (doprnt): Improve commentary.
17930
17931 * term.c (init_tty) [MSDOS]: Fix 1st argument to maybe_fatal.
17932
17933 * Makefile.in (TAGS): Depend on $(M_FILE) and $(S_FILE), and scan
17934 them with etags.
17935
17936 * makefile.w32-in (globals.h): Add a dummy recipe, to make any
17937 changes in globals.h immediately force recompilation.
17938 (TAGS): Depend on $(CURDIR)/m/intel386.h and
17939 $(CURDIR)/s/ms-w32.h.
17940 (TAGS-gmake): Scan $(CURDIR)/m/intel386.h and $(CURDIR)/s/ms-w32.h.
17941
17942 * character.c (Fchar_direction): Function deleted.
17943 (syms_of_character): Don't defsubr it.
17944 <char-direction-table>: Deleted.
17945
17946 2011-04-23 Eli Zaretskii <eliz@gnu.org>
17947
17948 Fix doprnt so it could be used again safely in `verror'. (Bug#8435)
17949 * doprnt.c: Include limits.h.
17950 (SIZE_MAX): New macro.
17951 (doprnt): Return a size_t value. 2nd arg is now size_t.
17952 Many local variables are now size_t instead of int or unsigned.
17953 Improve overflow protection. Support `l' modifier for integer
17954 conversions. Support %l conversion. Don't assume an EMACS_INT
17955 argument for integer conversions and for %c.
17956
17957 * lisp.h (doprnt): Restore prototype.
17958
17959 * makefile.w32-in ($(BLD)/callint.$(O)): Depend on
17960 $(SRC)/character.h.
17961
17962 * Makefile.in (base_obj): Add back doprnt.o.
17963
17964 * deps.mk (doprnt.o): Add back prerequisites.
17965 (callint.o): Depend on character.h.
17966
17967 * eval.c (internal_lisp_condition_case): Include the handler
17968 representation in the error message.
17969 (verror): Call doprnt instead of vsnprintf. Fix an off-by-one bug
17970 when breaking from the loop.
17971
17972 * xdisp.c (vmessage): Call doprnt instead of vsnprintf.
17973
17974 * callint.c (Fcall_interactively): When displaying error message
17975 about invalid control letter, pass the character's codepoint, not
17976 a pointer to its multibyte form. Improve display of the character
17977 in octal and display also its hex code.
17978
17979 * character.c (char_string): Use %x to display the (unsigned)
17980 codepoint of an invalid character, to avoid displaying a bogus
17981 negative value.
17982
17983 * font.c (check_otf_features): Pass SDATA of SYMBOL_NAME to
17984 `error', not SYMBOL_NAME itself.
17985
17986 * coding.c (Fencode_sjis_char, Fencode_big5_char): Use %c for
17987 character arguments to `error'.
17988
17989 * charset.c (check_iso_charset_parameter): Fix incorrect argument
17990 to `error' in error message about FINAL_CHAR argument. Make sure
17991 FINAL_CHAR is a character, and use %c when it is passed as
17992 argument to `error'.
17993
17994 2011-04-23 Eli Zaretskii <eliz@gnu.org>
17995
17996 * s/ms-w32.h (localtime): Redirect to sys_localtime.
17997
17998 * w32.c: Include <time.h>.
17999 (sys_localtime): New function.
18000
18001 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
18002
18003 * xdisp.c (init_xdisp): Initialize echo_area_window (Bug#6451).
18004
18005 * buffer.c (syms_of_buffer): Doc fix (Bug#6902).
18006
18007 2011-04-23 Samuel Thibault <sthibault@debian.org> (tiny change)
18008
18009 * sysdep.c (wait_for_termination): On GNU Hurd, kill returns -1 on
18010 zombies (Bug#8467).
18011
18012 2011-04-19 Eli Zaretskii <eliz@gnu.org>
18013
18014 * syntax.h (SETUP_SYNTAX_TABLE_FOR_OBJECT): Fix setting of
18015 gl_state.e_property when gl_state.object is Qt.
18016
18017 * insdel.c (make_gap_larger): Remove limitation of buffer size
18018 to <= INT_MAX.
18019
18020 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
18021
18022 * xdisp.c (lookup_glyphless_char_display)
18023 (produce_glyphless_glyph): Handle cons cell entry in
18024 glyphless-char-display.
18025 (Vglyphless_char_display): Document it.
18026
18027 * term.c (produce_glyphless_glyph): Handle cons cell entry in
18028 glyphless-char-display.
18029
18030 2011-04-17 Chong Yidong <cyd@stupidchicken.com>
18031
18032 * xdisp.c (get_next_display_element): Remove unnecessary ifdefs.
18033
18034 * termhooks.h (FRAME_WINDOW_P): Remove duplicated definitions.
18035
18036 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): Add missing
18037 definition for no-X builds.
18038
18039 2011-04-16 Paul Eggert <eggert@cs.ucla.edu>
18040
18041 Static checks with GCC 4.6.0 and non-default toolkits.
18042
18043 * s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF): Protoize decl.
18044
18045 * process.c (keyboard_bit_set): Define only if SIGIO.
18046 (send_process_trap): Mark it with NO_RETURN if it doesn't return.
18047 (send_process): Repair possible setjmp clobbering.
18048
18049 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Don't pass extra arg to 'fatal'.
18050
18051 * eval.c: Include <stdio.h>, for vsnprintf on non-GNU/Linux hosts.
18052
18053 * data.c (arith_error): Mark with NO_RETURN if it doesn't return.
18054
18055 * alloc.c (bytes_used_when_full, SPARE_MEMORY, BYTES_USED):
18056 Define only if needed.
18057
18058 * sysdep.c (_FILE_OFFSET_BITS): Make this hack even uglier
18059 by pacifying GCC about it. Maybe it's time to retire it?
18060 * xfaces.c (USG, __TIMEVAL__): Likewise.
18061
18062 * dispextern.h (struct redisplay_interface): Rename param
18063 to avoid shadowing.
18064 * termhooks.h (struct terminal): Likewise.
18065 * xterm.c (xembed_send_message): Likewise.
18066
18067 * insdel.c (make_gap_smaller): Define only if
18068 USE_MMAP_FOR_BUFFERS || REL_ALLOC || DOUG_LEA_MALLOC.
18069
18070 * keyboard.c (read_char): Make a var volatile so longjmp won't clobber
18071 it.
18072
18073 * emacs.c (MAX_HEAP_BSS_DIFF, my_edata): Move to where they're used,
18074 so that we aren't warned about unused symbols.
18075
18076 * xfns.c (Fx_file_dialog): Rename local to avoid shadowing.
18077
18078 * xdisp.c (x_produce_glyphs): Mark var as initialized (Bug#8512).
18079
18080 * xfns.c (x_real_positions): Mark locals as initialized.
18081
18082 * xmenu.c (xmenu_show): Don't use uninitialized vars.
18083
18084 * xterm.c: Fix problems found by static analysis with other toolkits.
18085 (toolkit_scroll_bar_interaction): Define and use only if USE_X_TOOLKIT.
18086 (x_dispatch_event): Declare static if USE_GTK, and
18087 define if USE_GTK || USE_X_TOOLKIT.
18088 (SET_SAVED_BUTTON_EVENT): Define only if USE_X_TOOLKIT || USE_GTK.
18089 * xterm.h (x_dispatch_event): Extern only if USE_X_TOOLKIT.
18090 * xterm.c, xterm.h (x_mouse_leave): Bring this function back, but only
18091 if defined HAVE_MENUS && !defined USE_X_TOOLKIT && !defined USE_GTK.
18092
18093 * xmenu.c (menu_help_callback): Pointer type fixes.
18094 Use const pointers when pointing at readonly data. Avoid pointer
18095 signedness clashes.
18096 (FALSE): Remove unused macro.
18097 (update_frame_menubar): Remove unused decl.
18098
18099 * xfns.c (Fx_hide_tip): Move locals to avoid shadowing.
18100
18101 * menu.c (push_submenu_start, push_submenu_end): Do not define unless
18102 USE_X_TOOLKIT || USE_GTK || HAVE_NS || defined HAVE_NTGUI.
18103 (single_menu_item): Rename local to avoid shadowing.
18104
18105 * keyboard.c (make_lispy_event): Remove unused local var.
18106
18107 * frame.c, frame.h (x_get_resource_string): Bring this back, but
18108 only if HAVE_X_WINDOWS && !USE_X_TOOLKIT.
18109
18110 * bitmaps: Change bitmaps from unsigned char back to the X11
18111 compatible char. Avoid the old compiler warnings about
18112 out-of-range initializers by using, for example, '\xab' rather
18113 than 0xab.
18114
18115 * xgselect.c (xgselect_initialize): Check vs interface
18116 even if ! (defined (USE_GTK) || defined (HAVE_GCONF)).
18117
18118 * xmenu.c (xmenu_show): Rename parm to avoid shadowing.
18119
18120 * xterm.c (x_create_toolkit_scroll_bar): Use const * for pointers
18121 to read-only memory.
18122
18123 * fns.c (vector): Remove; this old hack is no longer needed.
18124
18125 * xsmfns.c (create_client_leader_window): Rename shadowing arg.
18126 Remove unused var.
18127 (gdk_x11_set_sm_client_id) [!USE_GTK]: Don't define.
18128
18129 * xrdb.c (x_load_resources): Omit unused local.
18130
18131 * xfns.c (free_frame_menubar, atof): Remove duplicate decls.
18132 (x_window): Rename locals to avoid shadowing.
18133 (USG): Use the kludged USG macro, to pacify gcc.
18134
18135 * xterm.c (x_alloc_nearest_color_for_widget): Remove; unused.
18136 (x_term_init): Remove local to avoid shadowing.
18137
18138 * xfns.c, xterm.c (_XEditResCheckMessages): Protoize decl.
18139
18140 * xdisp.c, dispextern.h (set_vertical_scroll_bar): Now extern if
18141 USE_TOOLKIT_SCROLL_BARS && !USE_GTK, as xterm.c needs it then.
18142
18143 2011-04-16 Eli Zaretskii <eliz@gnu.org>
18144
18145 * gnutls.c (Fgnutls_boot): Don't pass Lisp_Object to `error'.
18146
18147 Fix regex.c, syntax.c and friends for buffers > 2GB.
18148 * syntax.h (struct gl_state_s): Declare character position members
18149 EMACS_INT.
18150
18151 * syntax.c (update_syntax_table): Declare 2nd argument EMACS_INT.
18152
18153 * textprop.c (verify_interval_modification, interval_of):
18154 Declare arguments EMACS_INT.
18155
18156 * intervals.c (adjust_intervals_for_insertion): Declare arguments
18157 EMACS_INT.
18158
18159 * intervals.h (CHECK_TOTAL_LENGTH): Cast to EMACS_INT, not `int'.
18160
18161 * indent.c (Fvertical_motion): Local variable it_start is now
18162 EMACS_INT.
18163
18164 * regex.c (re_match, re_match_2, re_match_2_internal)
18165 (bcmp_translate, regcomp, regexec, print_double_string)
18166 (group_in_compile_stack, re_search, re_search_2, regex_compile)
18167 (re_compile_pattern, re_exec): Declare arguments and local
18168 variables `size_t' and `ssize_t' and return values `regoff_t', as
18169 appropriate.
18170 (POP_FAILURE_REG_OR_COUNT) <pfreg>: Declare `long'.
18171 (CHECK_INFINITE_LOOP) <failure>: Declare `ssize_t'.
18172 <compile_stack_type>: `size' and `avail' are now `size_t'.
18173
18174 * regex.h <regoff_t>: Use ssize_t, not int.
18175 (re_search, re_search_2, re_match, re_match_2): Arguments that
18176 specify buffer/string position and length are now ssize_t and
18177 size_t. Return type is regoff_t.
18178
18179 2011-04-16 Ben Key <bkey76@gmail.com>
18180
18181 * nsfont.m: Fixed bugs in ns_get_family and
18182 ns_descriptor_to_entity that were caused by using free to
18183 deallocate memory blocks that were allocated by xmalloc (via
18184 xstrdup). This caused Emacs to crash when compiled with
18185 XMALLOC_OVERRUN_CHECK defined (when Emacs was configured with
18186 --enable-checking=xmallocoverrun). xfree is now used to
18187 deallocate these memory blocks.
18188
18189 2011-04-15 Paul Eggert <eggert@cs.ucla.edu>
18190
18191 * sysdep.c (emacs_read): Remove unnecessary check vs MAX_RW_COUNT.
18192
18193 emacs_write: Accept and return EMACS_INT for sizes.
18194 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html
18195 et seq.
18196 * gnutls.c, gnutls.h (emacs_gnutls_read, emacs_gnutls_write):
18197 Accept and return EMACS_INT.
18198 (emacs_gnutls_write): Return the number of bytes written on
18199 partial writes.
18200 * sysdep.c, lisp.h (emacs_read, emacs_write): Likewise.
18201 (emacs_read, emacs_write): Remove check for negative size, as the
18202 Emacs source code has been audited now.
18203 * sysdep.c (MAX_RW_COUNT): New macro, to work around kernel bugs.
18204 (emacs_read, emacs_write): Use it.
18205 * process.c (send_process): Adjust to the new signatures of
18206 emacs_write and emacs_gnutls_write. Do not attempt to store
18207 a byte offset into an 'int'; it might overflow.
18208 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00483.html
18209
18210 * sound.c: Don't assume sizes fit in 'int'.
18211 (struct sound_device.period_size, alsa_period_size):
18212 Return EMACS_INT, not int.
18213 (struct sound_device.write, vox_write, alsa_write):
18214 Accept EMACS_INT, not int.
18215 (wav_play, au_play): Use EMACS_INT to store sizes and to
18216 record read return values.
18217
18218 2011-04-15 Ben Key <bkey76@gmail.com>
18219
18220 * keyboard.c (Qundefined): Don't declare static since it is used
18221 in nsfns.m.
18222 * xfaces.c (Qbold, Qexpanded, Qitalic, Qcondensed): Don't declare
18223 static since they are used in nsfont.m.
18224
18225 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
18226
18227 * process.c (Qprocessp): Don't declare static.
18228 * lisp.h (Qprocessp): Declare again.
18229
18230 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
18231
18232 * font.c (Qopentype): Don't make static (used from w32uniscribe.c).
18233
18234 2011-04-14 Paul Eggert <eggert@cs.ucla.edu>
18235
18236 Improve C-level modularity by making more things 'static'.
18237
18238 Don't publish debugger-only interfaces to other modules.
18239 * lisp.h (safe_debug_print, debug_output_compilation_hack):
18240 (verify_bytepos, count_markers): Move decls to the only modules
18241 that need them.
18242 * region-cache.h (pp_cache): Likewise.
18243 * window.h (check_all_windows): Likewise.
18244 * marker.c, print.c, region-cache.c, window.c: Decls moved here.
18245
18246 * sysdep.c (croak): Now static, if
18247 defined TIOCNOTTY || defined USG5 || defined CYGWIN.
18248 * syssignal.h (croak): Declare only if not static.
18249
18250 * alloc.c (refill_memory_reserve): Now static if
18251 !defined REL_ALLOC || defined SYSTEM_MALLOC.
18252 * lisp.h (refill_memory_reserve): Declare only if not static.
18253
18254 * xsettings.c, xsettings.h (xsettings_get_system_normal_font):
18255 Define only if USE_LUCID.
18256
18257 * xrdb.c (x_customization_string, x_rm_string): Now static.
18258
18259 * xmenu.c (x_menu_wait_for_event): Export only if USE_MOTIF.
18260 * xterm.h (x_menu_wait_for_event): Declare only if USE_MOTIF.
18261
18262 * xdisp.c (draw_row_with_mouse_face): Now static.
18263 * dispextern.h (draw_row_with_mouse_fave): Remove decl.
18264
18265 * window.h (check_all_windows): Mark externally visible.
18266
18267 * window.c (window_deletion_count): Now static.
18268
18269 * undo.c: Make symbols static if they're not exported.
18270 (last_undo_buffer, last_boundary_position, pending_boundary):
18271 Now static.
18272
18273 * textprop.c (interval_insert_behind_hooks): Now static.
18274 (interval_insert_in_front_hooks): Likewise.
18275
18276 * term.c: Make symbols static if they're not exported.
18277 (tty_turn_off_highlight, get_tty_terminal, max_frame_cols):
18278 (max_frame_lines, tty_set_terminal_modes):
18279 (tty_reset_terminal_modes, tty_turn_off_highlight):
18280 (get_tty_terminal): Now static.
18281 (term_mouse_moveto): Do not define if HAVE_WINDOW_SYSTEM.
18282 * termhooks.h (term_mouse_moveto): Do not declare if
18283 HAVE_WINDOW_SYSTEM.
18284 * dispextern.h (tty_set_terminal_modes, tty_reset_terminal_modes):
18285 (tty_turn_off_highlight, get_tty_terminal): Remove decls.
18286
18287 * sysdep.c: Make symbols static if they're not exported.
18288 (emacs_get_tty, emacs_set_tty, old_fcntl_flags, old_fcntl_owner):
18289 Now static.
18290 (sigprocmask_set, full_mask): Remove; unused.
18291 (wait_debugging): Mark as visible.
18292 * syssignal.h (SIGFULLMASK, full_mask): Remove decls.
18293 * systty.h (emacs_get_tty, emacs_set_tty): Remove decls.
18294
18295 * syntax.c (syntax_temp): Define only if !__GNUC__.
18296
18297 * sound.c (current_sound_device, current_sound): Now static.
18298
18299 * search.c (searchbufs, searchbuf_head): Now static.
18300
18301 * scroll.c (scroll_cost): Remove; unused.
18302 * dispextern.h (scroll_cost): Remove decl.
18303
18304 * region-cache.h (pp_cache): Mark as externally visible.
18305
18306 * process.c: Make symbols static if they're not exported.
18307 (process_tick, update_tick, create_process, chan_process):
18308 (Vprocess_alist, proc_buffered_char, datagram_access):
18309 (fd_callback_data, send_process_frame, process_sent_to): Now static.
18310 (deactivate_process): Mark defn as static, as well as decl.
18311 * lisp.h (create_process): Remove decl.
18312 * process.h (chan_process, Vprocess_alist): Remove decls.
18313
18314 * print.c: Make symbols static if they're not exported.
18315 (print_depth, new_backquote_output, being_printed, print_buffer):
18316 (print_buffer_size, print_buffer_pos, print_buffer_pos_byte):
18317 (print_interval, print_number_index, initial_stderr_stream):
18318 Now static.
18319 * lisp.h (Fprinc): Remove decl.
18320 (debug_output_compilation_hack): Mark as externally visible.
18321
18322 * sysdep.c (croak): Move decl from here to syssignal.h.
18323 * syssignal.h (croak): Put it here, so the API can be checked when
18324 'croak' is called from dissociate_if_controlling_tty.
18325
18326 * minibuf.c: Make symbols static if they're not exported.
18327 (minibuf_save_list, choose_minibuf_frame): Now static.
18328 * lisp.h (choose_minibuf_frame): Remove decl.
18329
18330 * lisp.h (verify_bytepos, count_markers): Mark as externally visible.
18331
18332 * lread.c: Make symbols static if they're not exported.
18333 (read_objects, initial_obarray, oblookup_last_bucket_number):
18334 Now static.
18335 (make_symbol): Remove; unused.
18336 * lisp.h (initial_obarray, make_symbol): Remove decls.
18337
18338 * keyboard.c: Make symbols static if they're not exported.
18339 (single_kboard, recent_keys_index, total_keys, recent_keys):
18340 (this_command_key_count_reset, raw_keybuf, raw_keybuf_count):
18341 (this_single_command_key_start, echoing, last_auto_save):
18342 (read_key_sequence_cmd, dribble, recursive_edit_unwind):
18343 (command_loop, echo_now, keyboard_init_hook, help_char_p):
18344 (quit_throw_to_read_char, command_loop_2, top_level_1, poll_timer):
18345 (Vlispy_mouse_stem, double_click_count):
18346 Now static.
18347 (force_auto_save_soon): Define only if SIGDANGER.
18348 (ignore_mouse_drag_p): Now static if
18349 !defined HAVE_WINDOW_SYSTEM || defined USE_GTK || defined HAVE_NS.
18350 (print_help): Remove; unused.
18351 (stop_character, last_timer_event): Mark as externally visible.
18352 * keyboard.h (ignore_mouse_drag_p): Declare only if
18353 defined HAVE_WINDOW_SYSTEM && !defined USE_GTK && !defined HAVE_NS.
18354 (echo_now, help_char_p, quit_throw_to_read_char): Remove decls.
18355 * lisp.h (echoing): Remove decl.
18356 (force_auto_save_soon): Declare only if SIGDANGER.
18357 * xdisp.c (redisplay_window): Simplify code, to make it more
18358 obvious that ignore_mouse_drag_p is not accessed if !defined
18359 USE_GTK && !defined HAVE_NS.
18360
18361 * intervals.c: Make symbols static if they're not exported.
18362 (merge_properties_sticky, merge_interval_right, delete_interval):
18363 Now static.
18364 * intervals.h (merge_interval_right, delete_interval): Remove decls.
18365
18366 * insdel.c: Make symbols static if they're not exported.
18367 However, leave prepare_to_modify_buffer alone. It's never
18368 called from outside this function, but that appears to be a bug.
18369 (combine_after_change_list, combine_after_change_buffer):
18370 (adjust_after_replace, signal_before_change): Now static.
18371 (adjust_after_replace_noundo): Remove; unused.
18372 * lisp.h (adjust_after_replace, adjust_after_replace_noundo):
18373 (signal_before_change): Remove decls.
18374
18375 * indent.c (val_compute_motion, val_vmotion): Now static.
18376
18377 * image.c: Make symbols static if they're not exported.
18378 * dispextern.h (x_create_bitmap_from_xpm_data): Do not declare
18379 if USE_GTK.
18380 * image.c (x_create_bitmap_from_xpm_data): Do not define if USE_GTK.
18381 (xpm_color_cache, ct_table, ct_colors_allocated): Now static.
18382
18383 * fringe.c (standard_bitmaps): Now static.
18384 (max_used_fringe_bitmap): Now static, unless HAVE_NS.
18385
18386 * frame.c: Make symbols static if they're not exported.
18387 (x_report_frame_params, make_terminal_frame): Now static.
18388 (get_frame_param): Now static, unless HAVE_NS.
18389 (x_fullscreen_adjust): Define if WINDOWSNT, not if HAVE_WINDOW_SYSTEM.
18390 (x_get_resource_string): Remove; not used.
18391 * frame.h (make_terminal_frame, x_report_frame_params):
18392 (x_get_resource_string); Remove decls.
18393 (x_fullscreen_adjust): Declare only if WINDOWSNT.
18394 * lisp.h (get_frame_param): Declare only if HAVE_NS.
18395
18396 * font.c, fontset.c: Make symbols static if they're not exported.
18397 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): New macro.
18398 (FACE_SUITABLE_FOR_CHAR_P): Use it.
18399 * font.c (font_close_object): Now static.
18400 * font.h (font_close_object): Remove.
18401 * fontset.c (FONTSET_OBJLIST): Remove.
18402 (free_realized_fontset) #if-0 the body, which does nothing.
18403 (face_suitable_for_char_p): #if-0, as it's never called.
18404 * fontset.h (face_suitable_for_char_p): Remove decl.
18405 * xfaces.c (face_at_string_position):
18406 Use FACE_SUITABLE_FOR_ASCII_CHAR_P, not FACE_SUITABLE_FOR_CHAR_P,
18407 since 0 is always ASCII.
18408
18409 * fns.c (weak_hash_tables): Now static.
18410
18411 * fileio.c: Make symbols static if they're not exported.
18412 (auto_saving, auto_save_mode_bits, auto_save_error_occurred):
18413 (Vwrite_region_annotation_buffers): Now static.
18414
18415 * eval.c: Make symbols static if they're not exported.
18416 (backtrace_list, lisp_eval_depth, when_entered_debugger): Now static.
18417 * lisp.h (backtrace_list): Remove decl.
18418
18419 * emacs.c: Make symbols static if they're not exported.
18420 (malloc_state_ptr, malloc_using_checking, syms_of_emacs):
18421 (fatal_error_code, fatal_error_signal_hook, standard_args):
18422 Now static.
18423 (fatal_error_signal): Now static, unless FLOAT_CATCH_SIGKILL.
18424 (DEFINE_DUMMY_FUNCTION): Mark function as externally visible.
18425 (__CTOR_LIST__, __DTOR_LIST__): Now externally visible.
18426 * lisp.h (fatal_error_signal_hook): Remove decl.
18427 (fatal_error_signal): Declare only if FLOAT_CATCH_SIGKILL.
18428
18429 * editfns.c: Move a (normally-unused) function to its only use.
18430 * editfns.c, lisp.h (get_operating_system_release): Remove.
18431 * process.c (init_process) [DARWIN_OS]: Do it inline, as it is not
18432 worth the hassle of breaking this out.
18433
18434 * xterm.c: Make symbols static if they're not exported.
18435 (x_raise_frame, x_lower_frame, x_wm_set_window_state):
18436 (x_wm_set_icon_pixmap, x_initialize, XTread_socket_fake_io_error):
18437 (x_destroy_window, x_delete_display):
18438 Now static.
18439 (x_dispatch_event): Now static if ! (USE_MOTIF || USE_X_TOOLKIT).
18440 (x_mouse_leave): Remove; unused.
18441 * xterm.h (x_display_info_for_name, x_raise_frame, x_lower_frame):
18442 (x_destroy_window, x_wm_set_window_state, x_wm_set_icon_pixmap):
18443 (x_delete_display, x_initialize, x_set_border_pixel, x_screen_planes):
18444 Remove decls.
18445 (x_mouse_leave): Declare only if WINDOWSNT.
18446 (x_dispatch_event): Declare only if USE_MOTIF or USE_X_TOOLKIT.
18447 (xic_create_fontsetname): Declare only if HAVE_X_WINDOWS &&
18448 USE_X_TOOLKIT.
18449
18450 * ftxfont.c: Make symbols static if they're not exported.
18451 (ftxfont_driver): Export only if !defined HAVE_XFT && def8ined
18452 HAVE_FREETYPE.
18453 * font.h (ftxfont_driver): Likewise.
18454
18455 * xfns.c: Make symbols static if they're not exported.
18456 (x_last_font_name, x_display_info_for_name):
18457 (x_set_foreground_color, x_set_background_color, x_set_mouse_color):
18458 (x_set_cursor_color, x_set_border_pixel, x_set_border_color):
18459 (x_set_cursor_type, x_set_icon_type, x_set_icon_name):
18460 (x_set_scroll_bar_foreground, x_set_scroll_bar_background):
18461 (x_explicitly_set_name, x_set_title, xic_defaut_fontset, tip_timer):
18462 (last_show_tip_args): Now static.
18463 (xic_defaut_fontset, xic_create_fontsetname): Define only if
18464 defined HAVE_X_WINDOWS && defined USE_X_TOOLKIT
18465 (x_screen_planes): Remove; unused.
18466 * dispextern.h (x_screen_planes): Remove decl.
18467
18468 * dispnew.c: Make symbols static if they're not exported.
18469 * dispextern.h (redraw_garbaged_frames, scrolling):
18470 (increment_row_positions): Remove.
18471 * dispnew.c (new_glyph_matrix, increment_row_positions, scrolling):
18472 (delayed_size_change, glyph_matrix_count, glyph_pool_count):
18473 Now static.
18474 (redraw_garbaged_frames): Remove; unused.
18475
18476 * xfaces.c: Make symbols static if they're not exported.
18477 * dispextern.h (ascii_face_of_lisp_face, free_realized_face):
18478 Remove decls.
18479 * xterm.h (defined_color): Remove decls.
18480 (x_free_dpy_colors): Declare only if USE_X_TOOLKIT.
18481 * xfaces.c (tty_suppress_bold_inverse_default_colors_p):
18482 (menu_face_changed_default, defined_color, free_realized_face):
18483 (x_free_dpy_colors): Define only if USE_X_TOOLKIT.
18484 (ascii_face_of_lisp_face): Remove; unused.
18485
18486 * xdisp.c: Make symbols static if they're not exported.
18487 * dispextern.h (scratch_glyph_row, window_box_edges):
18488 (glyph_to_pixel_coords, set_cursor_from_row):
18489 (get_next_display_element, set_iterator_to_next):
18490 (highlight_trailing_whitespace, frame_to_window_pixel_xy):
18491 (show_mouse_face): Remove decls
18492 * frame.h (message_buf_print): Likewise.
18493 * lisp.h (pop_message, set_message, check_point_in_composition):
18494 Likewise.
18495 * xterm.h (set_vertical_scroll_bar): Likewise.
18496 * xdisp.c (list_of_error, Vmessage_stack, line_number_displayed):
18497 (message_buf_print, scratch_glyph_row, displayed_buffer):
18498 (set_iterator_to_next, pop_message, set_message, set_cursor_from_row):
18499 (get_next_display_element, show_mouse_face, window_box_edges):
18500 (frame_to_window_pixel_xy, check_point_in_composition):
18501 (set_vertical_scroll_bar, highlight_trailing_whitespace): Now static.
18502 (glyph_to_pixel_coords): Remove; unused.
18503
18504 * dired.c (file_name_completion): Now static.
18505
18506 * dbusbind.c (xd_in_read_queued_messages): Now static.
18507
18508 * lisp.h (circular_list_error, FOREACH): Remove; unused.
18509 * data.c (circular_list_error): Remove.
18510
18511 * commands.h (last_point_position, last_point_position_buffer):
18512 (last_point_position_window): Remove decls.
18513 * keyboard.c: Make these variables static.
18514
18515 * coding.h (coding, code_convert_region, encode_coding_gap):
18516 Remove decls.
18517 * coding.c (Vsjis_coding_system, Vbig5_coding_system):
18518 (iso_code_class, detect_coding, code_convert_region): Now static.
18519 (encode_coding_gap): Remove; unused.
18520
18521 * chartab.c (chartab_chars, chartab_bits): Now static.
18522
18523 * charset.h (charset_iso_8859_1): Remove decl.
18524 * charset.c (charset_iso_8859_1, charset_emacs, map_charset_for_dump):
18525 Now static.
18526
18527 * ccl.h (check_ccl_update, Vccl_program_table): Remove decls.
18528 * ccl.c (Vccl_program_table): Now static.
18529 (check_ccl_update): Remove; unused.
18530
18531 * category.c (SET_CATEGORY_SET, set_category_set): Move here.
18532 * category.h: ... from here.
18533 * category.c (check_category_table, set_category_set): Now static.
18534
18535 * casetab.c (Vascii_upcase_table, Vascii_eqv_table): Now static.
18536 * lisp.h: Remove these decls.
18537
18538 * buffer.c (buffer_count): Remove unused var.
18539
18540 * bidi.c (bidi_dump_cached_states): Mark as externally visible,
18541 so that it's not optimized away.
18542 (bidi_ignore_explicit_marks_for_paragraph_level): Likewise.
18543 * dispextern.h (bidi_dump_cached_states): Remove, since it's
18544 exported only to the debugger.
18545
18546 * atimer.c (alarm_signal_handler, run_all_atimers): Now static.
18547 * atimer.h (run_all_atimers): Remove; not exported.
18548
18549 font.c: Make copy_font_spec and merge_font_spec ordinary C functions.
18550 * font.c (copy_font_spec): Rename from Fcopy_font_spec, since it
18551 was inaccessible from Lisp.
18552 (merge_font_spec): Likewise, renaming from Fmerge_font_spec.
18553 * font.c, font.h, fontset.c, xfaces.c, xfont.c: Change all uses.
18554
18555 alloc.c: Import and export fewer symbols, and remove unused items.
18556 * lisp.h (suppress_checking, die): Declare only if ENABLE_CHECKING
18557 is defined.
18558 (suppress_checking): Add EXTERNALLY_VISIBLE attribute, so that
18559 it's not optimized away by whole-program optimization.
18560 (message_enable_multibyte, free_misc): Remove.
18561 (catchlist, handlerlist, mark_backtrace):
18562 Declare only if BYTE_MARK_STACK.
18563 (mark_byte_stack): Likewise, fixing a ifdef-vs-if typo.
18564 * alloc.c (pure): Export only if VIRT_ADDR_VARIES is defined.
18565 (message_enable_multibyte): Remove decl.
18566 (free_misc, interval_free_list, float_block, float_block_index):
18567 (n_float_blocks, float_free_list, cons_block, cons_block_index):
18568 (cons_free_list, last_marked_index):
18569 Now static.
18570 (suppress_checking, die): Define only if ENABLE_CHECKING is defined.
18571 * eval.c (catchlist, handlerlist): Export only if BYTE_MARK_STACK.
18572 (mark_backtrace): Define only if BYTE_MARK_STACK.
18573 * xdisp.c (message_enable_multibyte): Now static.
18574
18575 Declare Lisp_Object Q* variables to be 'static' if not exported.
18576 This makes it easier for human readers (and static analyzers)
18577 to see whether these variables are used from other modules.
18578 * alloc.c, buffer.c, bytecode.c, callint.c, casetab.c, category.c:
18579 * ccl.c, character.c, charset.c, cmds.c, coding.c, composite.c:
18580 * data.c, dbusbind.c, dired.c, editfns.c, eval.c, fileio.c, fns.c:
18581 * font.c, frame.c, fringe.c, ftfont.c, image.c, keyboard.c, keymap.c:
18582 * lread.c, macros.c, minibuf.c, print.c, process.c, search.c:
18583 * sound.c, syntax.c, textprop.c, window.c, xdisp.c, xfaces.c, xfns.c:
18584 * xmenu.c, xselect.c:
18585 Declare Q* vars static if they are not used in other modules.
18586 * ccl.h, character.h, charset.h, coding.h, composite.h, font.h:
18587 * frame.h, intervals.h, keyboard.h, lisp.h, process.h, syntax.h:
18588 Remove decls of unexported vars.
18589 * keyboard.h (EVENT_HEAD_UNMODIFIED): Remove now-unused macro.
18590
18591 * lisp.h (DEFINE_FUNC): Make sname 'static'.
18592
18593 Make Emacs functions such as Fatom 'static' by default.
18594 This makes it easier for human readers (and static analyzers)
18595 to see whether these functions can be called from other modules.
18596 DEFUN now defines a static function. To make the function external
18597 so that it can be used in other C modules, use the new macro DEFUE.
18598 * lisp.h (Funibyte_char_to_multibyte, Fsyntax_table_p):
18599 (Finit_image_library):
18600 (Feval_region, Fbacktrace, Ffetch_bytecode, Fswitch_to_buffer):
18601 (Ffile_executable_p, Fmake_symbolic_link, Fcommand_execute):
18602 (Fget_process, Fdocumentation_property, Fbyte_code, Ffile_attributes):
18603 Remove decls, since these functions are now static.
18604 (Funintern, Fget_internal_run_time): New decls, since these functions
18605 were already external.
18606
18607 * alloc.c, buffer.c, callint.c, callproc.c, casefiddle.c, casetab.c:
18608 * ccl.c, character.c, chartab.c, cmds.c, coding.c, data.c, dispnew.c:
18609 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, floatfns.c:
18610 * fns.c, font.c, fontset.c, frame.c, image.c, indent.c:
18611 * keyboard.c, keymap.c, lread.c:
18612 * macros.c, marker.c, menu.c, minibuf.c, print.c, process.c, search.c:
18613 * syntax.c, term.c, terminal.c, textprop.c, undo.c:
18614 * window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xsettings.c:
18615 Mark functions with DEFUE instead of DEFUN,
18616 if they are used in other modules.
18617 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): New forward
18618 decls for now-static functions.
18619 * buffer.h (Fdelete_overlay): Remove decl.
18620 * callproc.c (Fgetenv_internal): Mark as internal.
18621 * composite.c (Fremove_list_of_text_properties): Remove decl.
18622 (Fcomposition_get_gstring): New forward static decl.
18623 * composite.h (Fcomposite_get_gstring): Remove decl.
18624 * dired.c (Ffile_attributes): New forward static decl.
18625 * doc.c (Fdocumntation_property): New forward static decl.
18626 * eval.c (Ffetch_bytecode): New forward static decl.
18627 (Funintern): Remove extern decl; now in .h file where it belongs.
18628 * fileio.c (Fmake_symbolic_link): New forward static decl.
18629 * image.c (Finit_image_library): New forward static decl.
18630 * insdel.c (Fcombine_after_change_execute): Make forward decl static.
18631 * intervals.h (Fprevious_property_change):
18632 (Fremove_list_of_text_properties): Remove decls.
18633 * keyboard.c (Fthis_command_keys): Remove decl.
18634 (Fcommand_execute): New forward static decl.
18635 * keymap.c (Flookup_key): New forward static decl.
18636 (Fcopy_keymap): Now static.
18637 * keymap.h (Flookup_key): Remove decl.
18638 * process.c (Fget_process): New forward static decl.
18639 (Fprocess_datagram_address): Mark as internal.
18640 * syntax.c (Fsyntax_table_p): New forward static decl.
18641 (skip_chars): Remove duplicate decl.
18642 * textprop.c (Fprevious_property_change): New forward static decl.
18643 * window.c (Fset_window_fringes, Fset_window_scroll_bars):
18644 Now internal.
18645 (Fset_window_margins, Fset_window_vscroll): New forward static decls.
18646 * window.h (Fset_window_vscroll, Fset_window_margins): Remove decls.
18647
18648 * editfns.c (Fformat): Remove unreachable code.
18649
18650 2011-04-14 Andreas Schwab <schwab@linux-m68k.org>
18651
18652 * fileio.c (Finsert_file_contents): Fix typo in 2005-05-13
18653 change. (Bug#8496)
18654
18655 2011-04-13 Eli Zaretskii <eliz@gnu.org>
18656
18657 * xdisp.c (handle_invisible_prop): Don't call bidi_paragraph_init
18658 when at ZV. (Bug#8487)
18659
18660 2011-04-12 Andreas Schwab <schwab@linux-m68k.org>
18661
18662 * charset.c (Fclear_charset_maps): Use xfree instead of free.
18663 (Bug#8437)
18664 * keyboard.c (parse_tool_bar_item): Likewise.
18665 * sound.c (sound_cleanup, alsa_close): Likewise.
18666 * termcap.c (tgetent): Likewise.
18667 * xfns.c (x_default_font_parameter): Likewise.
18668 * xsettings.c (read_and_apply_settings): Likewise.
18669
18670 * alloc.c (overrun_check_malloc, overrun_check_realloc)
18671 (overrun_check_free): Protoize.
18672
18673 2011-04-12 Paul Eggert <eggert@cs.ucla.edu>
18674
18675 * sysdep.c (emacs_read, emacs_write): Check for negative sizes
18676 since callers should never pass a negative size.
18677 Change the signature to match that of plain 'read' and 'write'; see
18678 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00397.html>.
18679 * lisp.h: Update prototypes of emacs_write and emacs_read.
18680
18681 2011-04-11 Eli Zaretskii <eliz@gnu.org>
18682
18683 * xdisp.c (redisplay_window): Don't try to determine the character
18684 position of the scroll margin if the window start point w->startp
18685 is outside the buffer's accessible region. (Bug#8468)
18686
18687 2011-04-10 Eli Zaretskii <eliz@gnu.org>
18688
18689 Fix write-region and its subroutines for buffers > 2GB.
18690 * fileio.c (a_write, e_write): Modify declaration of arguments and
18691 local variables to support buffers larger than 2GB.
18692 (Fcopy_file): Use EMACS_INT for return value of emacs_read.
18693
18694 * sysdep.c (emacs_write, emacs_read): Use ssize_t for last
18695 argument, local variables, and return value.
18696
18697 * lisp.h: Update prototypes of emacs_write and emacs_read.
18698
18699 * sound.c (vox_write): Use ssize_t for return value of emacs_write.
18700
18701 2011-04-10 Paul Eggert <eggert@cs.ucla.edu>
18702
18703 * xdisp.c (vmessage): Use memchr, not strnlen, which some hosts lack.
18704
18705 Fix more problems found by GCC 4.6.0's static checks.
18706
18707 * xdisp.c (vmessage): Use a better test for character truncation.
18708
18709 * charset.c (load_charset_map): <, not <=, for optimization,
18710 and to avoid potential problems with integer overflow.
18711 * chartab.c (sub_char_table_set_range, char_table_set_range): Likewise.
18712 * casetab.c (set_identity, shuffle): Likewise.
18713 * editfns.c (Fformat): Likewise.
18714 * syntax.c (skip_chars): Likewise.
18715
18716 * xmenu.c (set_frame_menubar): Allocate smaller local vectors.
18717 This also lets GCC 4.6.0 generate slightly better loop code.
18718
18719 * callint.c (Fcall_interactively): <, not <=, for optimization.
18720 (Fcall_interactively): Count the number of arguments produced,
18721 not the number of arguments given. This is simpler and lets GCC
18722 4.6.0 generate slightly better code.
18723
18724 * ftfont.c: Distingish more carefully between FcChar8 and char.
18725 The previous code passed unsigned char * to a functions like
18726 strlen and xstrcasecmp that expect char *, which does not
18727 conform to the C standard.
18728 (get_adstyle_property, ftfont_pattern_entity): Use FcChar8 for
18729 arguments to FcPatternGetString, and explicitly cast FcChar8 * to
18730 char * when the C standard requires it.
18731
18732 * keyboard.c (read_char): Remove unused var.
18733
18734 * eval.c: Port to Windows vsnprintf (Bug#8435).
18735 Include <limits.h>.
18736 (SIZE_MAX): Define if the headers do not.
18737 (verror): Do not give up if vsnprintf returns a negative count.
18738 Instead, grow the buffer. This ports to Windows vsnprintf, which
18739 does not conform to C99. Problem reported by Eli Zaretskii.
18740 Also, simplify the allocation scheme, by avoiding the need for
18741 calling realloc, and removing the ALLOCATED variable.
18742
18743 * eval.c (verror): Initial buffer size is 4000 (not 200) bytes.
18744
18745 Remove invocations of doprnt, as Emacs now uses vsnprintf.
18746 But keep the doprint source code for now, as we might revamp it
18747 and use it again (Bug#8435).
18748 * lisp.h (doprnt): Remove.
18749 * Makefile.in (base_obj): Remove doprnt.o.
18750 * deps.mk (doprnt.o): Remove.
18751
18752 error: Print 32- and 64-bit integers portably (Bug#8435).
18753 Without this change, on typical 64-bit hosts error ("...%d...", N)
18754 was used to print both 32- and 64-bit integers N, which relied on
18755 undefined behavior.
18756 * lisp.h, m/amdx86-64.h, m/ia64.h, m/ibms390x.h (pEd): New macro.
18757 * lisp.h (error, verror): Mark as printf-like functions.
18758 * eval.c (verror): Use vsnprintf, not doprnt, to do the real work.
18759 Report overflow in size calculations when allocating printf buffer.
18760 Do not truncate output string at its first null byte.
18761 * xdisp.c (vmessage): Use vsnprintf, not doprnt, to do the real work.
18762 Truncate the output at a character boundary, since vsnprintf does not
18763 do that.
18764 * charset.c (check_iso_charset_parameter): Convert internal
18765 character to string before calling 'error', since %c now has the
18766 printf meaning.
18767 * coding.c (Fdecode_sjis_char, Fdecode_big5_char): Avoid int
18768 overflow when computing char to be passed to 'error'. Do not
18769 pass Lisp_Object to 'error'; pass the integer instead.
18770 * nsfns.m (Fns_do_applescript): Use int, not long, since it's
18771 formatted with plain %d.
18772
18773 * eval.c (internal_lisp_condition_case): Don't pass spurious arg.
18774
18775 * keyboard.c (access_keymap_keyremap): Print func name, not garbage.
18776
18777 * coding.c (Fdecode_sjis_char): Don't assume CODE fits in int.
18778
18779 * xterm.c (x_catch_errors): Remove duplicate declaration.
18780
18781 * term.c (maybe_fatal): Mark its 3rd arg as a printf format, too.
18782
18783 * xdisp.c, lisp.h (message_nolog): Remove; unused.
18784
18785 2011-04-10 Jim Meyering <meyering@redhat.com>
18786
18787 use ssize_t and size_t for read- and write-like emacs_gnutls_* functions
18788 * gnutls.c (emacs_gnutls_read): Adjust signature to be more read-like:
18789 return ssize_t not "int", and use size_t as the buffer length.
18790 (emacs_gnutls_write): Likewise, and make the buffer pointer "const".
18791 * gnutls.h: Update declarations.
18792 * process.c (read_process_output): Use ssize_t, to match.
18793 (send_process): Likewise.
18794
18795 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
18796
18797 * image.c (Fimagemagick_types): Doc fix, and comment cleanup.
18798
18799 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
18800
18801 * ftfont.c (get_adstyle_property, ftfont_pattern_entity):
18802 Use unsigned char, to match FcChar8 type definition.
18803
18804 * xterm.c (handle_one_xevent):
18805 * xmenu.c (create_and_show_popup_menu):
18806 * xselect.c (x_decline_selection_request)
18807 (x_reply_selection_request): Avoid type-punned deref of X events.
18808
18809 2011-04-09 Eli Zaretskii <eliz@gnu.org>
18810
18811 Fix some uses of `int' instead of EMACS_INT.
18812 * search.c (string_match_1, fast_string_match)
18813 (fast_c_string_match_ignore_case, fast_string_match_ignore_case)
18814 (scan_buffer, find_next_newline_no_quit)
18815 (find_before_next_newline, search_command, Freplace_match)
18816 (Fmatch_data): Make some `int' variables be EMACS_INT.
18817
18818 * xdisp.c (display_count_lines): 3rd argument and return value now
18819 EMACS_INT. All callers changed.
18820 (pint2hrstr): Last argument is now EMACS_INT.
18821
18822 * coding.c (detect_coding_utf_8, detect_coding_emacs_mule)
18823 (detect_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
18824 (detect_coding_ccl, detect_coding_charset, decode_coding_utf_8)
18825 (decode_coding_utf_16, decode_coding_emacs_mule)
18826 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
18827 (decode_coding_ccl, decode_coding_charset)
18828 <consumed_chars, consumed_chars_base>: Declare EMACS_INT.
18829 (decode_coding_iso_2022, decode_coding_emacs_mule)
18830 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
18831 <char_offset, last_offset>: Declare EMACS_INT.
18832 (encode_coding_utf_8, encode_coding_utf_16)
18833 (encode_coding_emacs_mule, encode_invocation_designation)
18834 (encode_designation_at_bol, encode_coding_iso_2022)
18835 (encode_coding_sjis, encode_coding_big5, encode_coding_ccl)
18836 (encode_coding_raw_text, encode_coding_charset) <produced_chars>:
18837 Declare EMACS_INT.
18838 (ASSURE_DESTINATION): Declare more_bytes EMACS_INT.
18839 (encode_invocation_designation): Last argument P_NCHARS is now
18840 EMACS_INT.
18841 (decode_eol): Declare pos_byte, pos, and pos_end EMACS_INT.
18842 (produce_chars): from_nchars and to_nchars are now EMACS_INT.
18843
18844 * coding.h (struct coding_system) <head_ascii>: Declare EMACS_INT.
18845 All users changed.
18846
18847 * ccl.c (Fccl_execute_on_string): Declare some variables
18848 EMACS_INT.
18849
18850 2011-04-08 Samuel Thibault <sthibault@debian.org> (tiny change)
18851
18852 * term.c (init_tty): Fix incorrect ifdef placement (Bug#8450).
18853
18854 2011-03-19 Christoph Scholtes <cschol2112@googlemail.com>
18855
18856 * process.c (Fformat_network_address): Doc fix.
18857
18858 2011-04-08 T.V. Raman <tv.raman.tv@gmail.com> (tiny change)
18859
18860 * xml.c (parse_region): Avoid creating spurious whitespace nodes.
18861
18862 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
18863
18864 * keyboard.c (read_char): Call Lisp function help-form-show,
18865 instead of using internal_with_output_to_temp_buffer.
18866 (Qhelp_form_show): New var.
18867 (syms_of_keyboard): Use DEFSYM macro.
18868
18869 * print.c (internal_with_output_to_temp_buffer): Function deleted.
18870
18871 * lisp.h (internal_with_output_to_temp_buffer): Remove prototype.
18872
18873 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
18874
18875 * process.c (Flist_processes): Remove to Lisp.
18876 (list_processes_1): Delete.
18877
18878 2011-04-06 Eli Zaretskii <eliz@gnu.org>
18879
18880 * msdos.c (careadlinkat, careadlinkatcwd): MS-DOS replacements.
18881
18882 * w32.c (careadlinkat, careadlinkatcwd): New always-fail stubs.
18883
18884 2011-04-06 Paul Eggert <eggert@cs.ucla.edu>
18885
18886 Fix more problems found by GCC 4.6.0's static checks.
18887
18888 * xmenu.c (Fx_popup_dialog): Don't assume string is free of formats.
18889
18890 * menu.c (Fx_popup_menu): Don't assume error_name lacks printf formats.
18891
18892 * lisp.h (message, message_nolog, fatal): Mark as printf-like.
18893
18894 * xdisp.c (vmessage): Mark as a printf-like function.
18895
18896 * term.c (vfatal, maybe_fatal): Mark as printf-like functions.
18897
18898 * sound.c (sound_warning): Don't crash if arg contains a printf format.
18899
18900 * image.c (tiff_error_handler, tiff_warning_handler): Mark as
18901 printf-like functions.
18902 (tiff_load): Add casts to remove these marks before passing them
18903 to system-supplied API.
18904
18905 * eval.c (Fsignal): Remove excess argument to 'fatal'.
18906
18907 * coding.c (EMIT_ONE_BYTE, EMIT_TWO_BYTES): Use unsigned, not int.
18908 This avoids several warnings with gcc -Wstrict-overflow.
18909 (DECODE_COMPOSITION_RULE): If the rule is invalid, goto invalid_code
18910 directly, rather than having caller test rule sign. This avoids
18911 some unnecessary tests.
18912 * composite.h (COMPOSITION_ENCODE_RULE_VALID): New macro.
18913 (COMPOSITION_ENCODE_RULE): Arguments now must be valid. This
18914 affects only one use, in DECODE_COMPOSITION_RULE, which is changed.
18915
18916 * xfont.c (xfont_text_extents): Remove var that was set but not used.
18917 (xfont_open): Avoid unnecessary tests.
18918
18919 * composite.c (composition_gstring_put_cache): Use unsigned integer.
18920
18921 * composite.h, composite.c (composition_gstring_put_cache):
18922 Use EMACS_INT, not int, for length.
18923
18924 * composite.h (COMPOSITION_DECODE_REFS): New macro,
18925 breaking out part of COMPOSITION_DECODE_RULE.
18926 (COMPOSITION_DECODE_RULE): Use it.
18927 * composite.c (get_composition_id): Remove unused local vars,
18928 by using the new macro.
18929
18930 * textprop.c (set_text_properties_1): Change while to do-while,
18931 since the condition is always true at first.
18932
18933 * intervals.c (graft_intervals_into_buffer): Mark var as used.
18934 (interval_deletion_adjustment): Return unsigned value.
18935 All uses changed.
18936
18937 * process.c (list_processes_1, create_pty, read_process_output):
18938 (exec_sentinel): Remove vars that were set but not used.
18939 (create_pty): Remove unnecessary "volatile"s.
18940 (Fnetwork_interface_info): Avoid possibility of int overflow.
18941 (read_process_output): Do adaptive read buffering even if carryover.
18942 (read_process_output): Simplify nbytes computation if buffered.
18943
18944 * bytecode.c (exec_byte_code): Rename local to avoid shadowing.
18945
18946 * syntax.c (scan_words): Remove var that was set but not used.
18947 (update_syntax_table): Use unsigned instead of int.
18948
18949 * lread.c (lisp_file_lexically_bound_p): Use ints rather than endptrs.
18950 (lisp_file_lexically_bound_p, read1): Use unsigned instead of int.
18951 (safe_to_load_p): Make the end-of-loop test the inverse of the in-loop.
18952
18953 * print.c (print_error_message): Avoid int overflow.
18954
18955 * font.c (font_list_entities): Redo for clarity,
18956 so that reader need not know FONT_DPI_INDEX + 1 == FONT_SPACING_INDEX.
18957
18958 * font.c (font_find_for_lface, Ffont_get_glyphs): Remove unused vars.
18959 (font_score): Avoid potential overflow in diff calculation.
18960
18961 * fns.c (substring_both): Remove var that is set but not used.
18962 (sxhash): Redo loop for clarity and to avoid wraparound warning.
18963
18964 * eval.c (funcall_lambda): Rename local to avoid shadowing.
18965
18966 * alloc.c (mark_object_loop_halt, mark_object): Use size_t, not int.
18967 Otherwise, GCC 4.6.0 optimizes the loop check away since the check
18968 can always succeed if overflow has undefined behavior.
18969
18970 * search.c (boyer_moore, wordify): Remove vars set but not used.
18971 (wordify): Omit three unnecessary tests.
18972
18973 * indent.c (MULTIBYTE_BYTES_WIDTH): Don't compute wide_column.
18974 All callers changed. This avoids the need for an unused var.
18975
18976 * casefiddle.c (casify_region): Remove var that is set but not used.
18977
18978 * dired.c (file_name_completion): Remove var that is set but not used.
18979
18980 * fileio.c (Finsert_file_contents): Make EOF condition clearer.
18981
18982 * fileio.c (Finsert_file_contents): Avoid signed integer overflow.
18983 (Finsert_file_contents): Remove unnecessary code checking fd.
18984
18985 * minibuf.c (read_minibuf_noninteractive): Use size_t for sizes.
18986 Check for integer overflow on size calculations.
18987
18988 * buffer.c (Fprevious_overlay_change): Remove var that is set
18989 but not used.
18990
18991 * keyboard.c (menu_bar_items, read_char_minibuf_menu_prompt):
18992 Remove vars that are set but not used.
18993 (timer_check_2): Don't assume timer-list and idle-timer-list are lists.
18994 (timer_check_2): Mark vars as initialized.
18995
18996 * gtkutil.c (xg_get_file_with_chooser): Mark var as initialized.
18997
18998 * image.c (lookup_image): Remove var that is set but not used.
18999 (xbm_load): Use parse_p, for gcc -Werror=unused-but-set-variable.
19000
19001 * fontset.c (Finternal_char_font, Ffontset_info): Remove vars
19002 that are set but not used.
19003
19004 * xfns.c (make_invisible_cursor): Don't return garbage
19005 if XCreateBitmapFromData fails (Bug#8410).
19006
19007 * xselect.c (x_get_local_selection, x_handle_property_notify):
19008 Remove vars that are set but not used.
19009
19010 * xfns.c (x_create_tip_frame): Remove var that is set but not used.
19011 (make_invisible_cursor): Initialize a possibly-uninitialized variable.
19012
19013 * xterm.c (x_scroll_bar_to_input_event) [!USE_GTK]:
19014 Remove var that is set but not used.
19015 (scroll_bar_windows_size): Now size_t, not int.
19016 (x_send_scroll_bar_event): Use size_t, not int, for sizes.
19017 Check for overflow.
19018
19019 * xfaces.c (realize_named_face): Remove vars that are set but not used.
19020 (map_tty_color) [!defined MSDOS]: Likewise.
19021
19022 * term.c (tty_write_glyphs): Use size_t; this avoids overflow warning.
19023
19024 * coding.c: Remove vars that are set but not used.
19025 (DECODE_COMPOSITION_RULE): Remove 2nd arg, which is unused.
19026 All callers changed.
19027 (decode_coding_utf_8, decode_coding_utf_16 decode_coding_emacs_mule):
19028 (decode_coding_iso_2022, encode_coding_sjis, encode_coding_big5):
19029 (decode_coding_charset): Remove vars that are set but not used.
19030
19031 * bytecode.c (Fbyte_code) [!defined BYTE_CODE_SAFE]: Remove var
19032 that is set but not used.
19033
19034 * print.c (print_object): Remove var that is set but not used.
19035
19036 Replace 2 copies of readlink code with 1 gnulib version (Bug#8401).
19037 The gnulib version avoids calling malloc in the usual case,
19038 and on 64-bit hosts doesn't have some arbitrary 32-bit limits.
19039 * fileio.c (Ffile_symlink_p): Use emacs_readlink.
19040 * filelock.c (current_lock_owner): Likewise.
19041 * lisp.h (READLINK_BUFSIZE, emacs_readlink): New function.
19042 * sysdep.c: Include allocator.h, careadlinkat.h.
19043 (emacs_no_realloc_allocator): New static constant.
19044 (emacs_readlink): New function.
19045 * deps.mk (sysdep.o): Depend on ../lib/allocator.h and on
19046 ../lib/careadlinkat.h.
19047
19048 2011-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
19049
19050 * keyboard.c (safe_run_hook_funcall): Fix last change (don't stop at the
19051 first non-nil return value).
19052
19053 2011-04-03 Jan Djärv <jan.h.d@swipnet.se>
19054
19055 * nsterm.m (ns_update_auto_hide_menu_bar): Define MAC_OS_X_VERSION_10_6
19056 if not defined (Bug#8403).
19057
19058 2011-04-02 Juanma Barranquero <lekktu@gmail.com>
19059
19060 * xdisp.c (display_count_lines): Remove parameter `start',
19061 unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
19062 (get_char_face_and_encoding): Remove parameter `multibyte_p',
19063 unused since 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
19064 (fill_stretch_glyph_string): Remove parameters `row' and `area',
19065 unused at least since Kim's GUI unification at 2003-03-16T20:45:46Z!storm@cua.dk
19066 and thereabouts. All callers changed.
19067 (get_per_char_metric): Remove parameter `f', unused since
19068 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
19069
19070 2011-04-02 Jim Meyering <meyering@redhat.com>
19071
19072 do not dereference NULL upon failed strdup
19073 * nsfont.m (ns_descriptor_to_entity): Use xstrdup, not strdup.
19074 (ns_get_family): Likewise.
19075
19076 2011-04-02 Juanma Barranquero <lekktu@gmail.com>
19077
19078 * eval.c (unwind_to_catch) [DEBUG_GCPRO]: Remove redundant assignment.
19079
19080 2011-04-02 Jan Djärv <jan.h.d@swipnet.se>
19081
19082 * nsterm.m (ns_update_auto_hide_menu_bar): Only for OSX 10.6 or
19083 later (Bug#8403).
19084
19085 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
19086
19087 Add lexical binding.
19088
19089 * window.c (Ftemp_output_buffer_show): New fun.
19090 (Fsave_window_excursion):
19091 * print.c (Fwith_output_to_temp_buffer): Move to subr.el.
19092
19093 * lread.c (lisp_file_lexically_bound_p): New function.
19094 (Fload): Bind Qlexical_binding.
19095 (readevalloop): Remove `evalfun' arg.
19096 Bind Qinternal_interpreter_environment.
19097 (Feval_buffer): Bind Qlexical_binding.
19098 (defvar_int, defvar_bool, defvar_lisp_nopro, defvar_kboard):
19099 Mark as dynamic.
19100 (syms_of_lread): Declare `lexical-binding'.
19101
19102 * lisp.h (struct Lisp_Symbol): New field `declared_special'.
19103
19104 * keyboard.c (eval_dyn): New fun.
19105 (menu_item_eval_property): Use it.
19106
19107 * image.c (parse_image_spec): Use Ffunctionp.
19108
19109 * fns.c (concat, mapcar1): Accept byte-code-functions.
19110
19111 * eval.c (Fsetq): Handle lexical vars.
19112 (Fdefun, Fdefmacro, Ffunction): Make closures when needed.
19113 (Fdefconst, Fdefvaralias, Fdefvar): Mark as dynamic.
19114 (FletX, Flet): Obey lexical binding.
19115 (Fcommandp): Handle closures.
19116 (Feval): New `lexical' arg.
19117 (eval_sub): New function extracted from Feval. Use it almost
19118 everywhere where Feval was used. Look up vars in lexical env.
19119 Handle closures.
19120 (Ffunctionp): Move from subr.el.
19121 (Ffuncall): Handle closures.
19122 (apply_lambda): Remove `eval_flags'.
19123 (funcall_lambda): Handle closures and new byte-code-functions.
19124 (Fspecial_variable_p): New function.
19125 (syms_of_eval): Initialize the Vinternal_interpreter_environment var,
19126 but without exporting it to Lisp.
19127
19128 * doc.c (Fdocumentation, store_function_docstring):
19129 * data.c (Finteractive_form): Handle closures.
19130
19131 * callint.c (Fcall_interactively): Preserve lexical-binding mode for
19132 interactive spec.
19133
19134 * bytecode.c (Bstack_ref, Bstack_set, Bstack_set2, BdiscardN):
19135 New byte-codes.
19136 (exec_byte_code): New function extracted from Fbyte_code to handle new
19137 calling convention for byte-code-functions. Add new byte-codes.
19138
19139 * buffer.c (defvar_per_buffer): Set new `declared_special' field.
19140
19141 * alloc.c (Fmake_symbol): Init new `declared_special' field.
19142
19143 2011-03-31 Juanma Barranquero <lekktu@gmail.com>
19144
19145 * xdisp.c (redisplay_internal): Fix prototype.
19146
19147 2011-03-31 Eli Zaretskii <eliz@gnu.org>
19148
19149 * xdisp.c (SCROLL_LIMIT): New macro.
19150 (try_scrolling): Use it when setting scroll_limit.
19151 Limit scrolling to 100 screen lines.
19152 (redisplay_window): Even when falling back on "recentering",
19153 position point in the window according to scroll-conservatively,
19154 scroll-margin, and scroll-*-aggressively variables. (Bug#6671)
19155
19156 (try_scrolling): When point is above the window, allow searching
19157 as far as scroll_max, or one screenful, to compute vertical
19158 distance from PT to the scroll margin position. This prevents
19159 try_scrolling from unnecessarily failing when
19160 scroll-conservatively is set to a value slightly larger than the
19161 window height. Clean up the case of PT below the margin at bottom
19162 of window: scroll_max can no longer be INT_MAX. When aggressive
19163 scrolling is in use, don't let point enter the opposite scroll
19164 margin as result of the scroll.
19165 (syms_of_xdisp) <scroll-conservatively>: Document the
19166 threshold of 100 lines for never-recentering scrolling.
19167
19168 2011-03-31 Juanma Barranquero <lekktu@gmail.com>
19169
19170 * dispextern.h (move_it_by_lines):
19171 * xdisp.c (move_it_by_lines): Remove parameter `need_y_p', unused
19172 since 2000-12-29T14:24:09Z!gerd@gnu.org. All callers changed.
19173 (message_log_check_duplicate): Remove parameters `prev_bol' and
19174 `this_bol', unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
19175 (redisplay_internal): Remove parameter `preserve_echo_area',
19176 unused since 1999-07-21T21:43:52Z!gerd@gnu.org. All callers changed.
19177
19178 * indent.c (Fvertical_motion):
19179 * window.c (window_scroll_pixel_based, Frecenter):
19180 Don't pass `need_y_p' to `move_it_by_lines'.
19181
19182 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
19183
19184 * eval.c (struct backtrace): Don't cheat with negative numbers, but do
19185 steal a few bits to be more compact.
19186 (interactive_p, Fbacktrace, Fbacktrace_frame, mark_backtrace):
19187 Remove unneeded casts.
19188
19189 * bytecode.c (Fbyte_code): CAR and CDR can GC.
19190
19191 2011-03-30 Zachary Kanfer <zkanfer@gmail.com> (tiny change)
19192
19193 * keyboard.c (Fexecute_extended_command): Do log the "suggest key
19194 binding" message (bug#7967).
19195
19196 2011-03-30 Paul Eggert <eggert@cs.ucla.edu>
19197
19198 Fix more problems found by GCC 4.6.0's static checks.
19199
19200 * unexelf.c (unexec) [! (defined _SYSTYPE_SYSV || defined __sgi)]:
19201 Remove unused local var.
19202
19203 * editfns.c (Fmessage_box): Remove unused local var.
19204
19205 * xdisp.c (try_window_reusing_current_matrix, x_produce_glyphs):
19206 (note_mode_line_or_margin_highlight, note_mouse_highlight):
19207 Omit unused local vars.
19208 * window.c (shrink_windows): Omit unused local var.
19209 * menu.c (digest_single_submenu): Omit unused local var.
19210 * dispnew.c (update_window) [PERIODIC_PREEMPTION_CHECKING]:
19211 Omit unused local var.
19212
19213 * keyboard.c (parse_modifiers_uncached, parse_modifiers):
19214 Don't assume string length fits in int.
19215 (keyremap_step, read_key_sequence): Use size_t for sizes.
19216 (read_key_sequence): Don't check last_real_key_start redundantly.
19217
19218 * callproc.c (Fcall_process, Fcall_process_region): Use SAFE_ALLOCA
19219 instead of alloca (Bug#8344).
19220
19221 * eval.c (Fbacktrace): Don't assume nargs fits in int.
19222 (Fbacktrace_frame): Don't assume nframes fits in int.
19223
19224 * syntax.c (scan_sexps_forward): Avoid pointer wraparound.
19225
19226 * xterm.c (x_make_frame_visible, same_x_server): Redo to avoid overflow
19227 concerns.
19228
19229 * term.c (produce_glyphless_glyph): Remove unnecessary test.
19230
19231 * cm.c (calccost): Turn while-do into do-while, for clarity.
19232
19233 * keyboard.c (syms_of_keyboard): Use the same style as later
19234 in this function when indexing through an array. This also
19235 works around GCC bug 48267.
19236
19237 * image.c (tiff_load): Fix off-by-one image count (Bug#8336).
19238
19239 * xselect.c (x_check_property_data): Return correct size (Bug#8335).
19240
19241 * chartab.c (sub_char_table_ref_and_range): Redo for slight
19242 efficiency gain, and to bypass a gcc -Wstrict-overflow warning.
19243
19244 * keyboard.c, keyboard.h (num_input_events): Now size_t.
19245 This avoids undefined behavior on integer overflow, and is a bit
19246 more convenient anyway since it is compared to a size_t variable.
19247
19248 Variadic C functions now count arguments with size_t, not int.
19249 This avoids an unnecessary limitation on 64-bit machines, which
19250 caused (substring ...) to crash on large vectors (Bug#8344).
19251 * lisp.h (struct Lisp_Subr.function.aMANY): Now takes size_t, not int.
19252 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call): Likewise.
19253 All variadic functions and their callers changed accordingly.
19254 (struct gcpro.nvars): Now size_t, not int. All uses changed.
19255 * data.c (arith_driver, float_arith_driver): Likewise.
19256 * editfns.c (general_insert_function): Likewise.
19257 * eval.c (struct backtrace.nargs, interactive_p)
19258 (internal_condition_case_n, run_hook_with_args, apply_lambda)
19259 (funcall_lambda, mark_backtrace): Likewise.
19260 * fns.c (concat): Likewise.
19261 * frame.c (x_set_frame_parameters): Likewise.
19262 * fns.c (get_key_arg): Now accepts and returns size_t, and returns
19263 0 if not found, not -1. All callers changed.
19264
19265 * alloc.c (garbage_collect): Don't assume stack size fits in int.
19266 (stack_copy_size): Now size_t, not int.
19267 (stack_copy, stack_copy_size): Define only if MAX_SAVE_STACK > 0.
19268
19269 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
19270
19271 * coding.c (encode_designation_at_bol): Remove parameter `charbuf_end',
19272 unused since 2002-03-01T01:17:24Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
19273 All callers changed.
19274
19275 * lisp.h (multibyte_char_to_unibyte):
19276 * character.c (multibyte_char_to_unibyte): Remove parameter `rev_tbl',
19277 unused since 2002-03-01T01:16:34Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
19278 * character.h (CHAR_TO_BYTE8):
19279 * cmds.c (internal_self_insert):
19280 * editfns.c (general_insert_function):
19281 * keymap.c (push_key_description):
19282 * search.c (Freplace_match):
19283 * xdisp.c (message_dolog, set_message_1): All callers changed.
19284
19285 2011-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
19286
19287 * keyboard.c (safe_run_hook_funcall): New function.
19288 (safe_run_hooks_1, safe_run_hooks_error, safe_run_hooks): On error,
19289 don't set the hook to nil, but remove the offending function instead.
19290 (Qcommand_hook_internal): Remove, unused.
19291 (syms_of_keyboard): Don't initialize Qcommand_hook_internal nor define
19292 Vcommand_hook_internal.
19293
19294 * eval.c (enum run_hooks_condition): Remove.
19295 (funcall_nil, funcall_not): New functions.
19296 (run_hook_with_args): Call each function through a `funcall' argument.
19297 Remove `cond' argument, now redundant.
19298 (Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success)
19299 (Frun_hook_with_args_until_failure): Adjust accordingly.
19300 (run_hook_wrapped_funcall, Frun_hook_wrapped): New functions.
19301
19302 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
19303
19304 * dispextern.h (string_buffer_position): Remove declaration.
19305
19306 * print.c (strout): Remove parameter `multibyte', unused since
19307 1999-08-21T19:30:21Z!gerd@gnu.org. All callers changed.
19308
19309 * search.c (boyer_moore): Remove parameters `len', `pos' and `lim',
19310 never used since function introduction in 1998-02-08T21:33:56Z!rms@gnu.org.
19311 All callers changed.
19312
19313 * w32.c (_wsa_errlist): Use braces for struct initializers.
19314
19315 * xdisp.c (string_buffer_position_lim): Remove parameter `w',
19316 never used since function introduction in 2001-03-09T18:41:50Z!gerd@gnu.org.
19317 All callers changed.
19318 (string_buffer_position): Likewise. Also, make static (it's never
19319 used outside xdisp.c).
19320 (cursor_row_p): Remove parameter `w', unused since
19321 2000-10-17T16:08:57Z!gerd@gnu.org. All callers changed.
19322 (decode_mode_spec): Remove parameter `precision', introduced during
19323 Gerd Moellmann's rewrite at 1999-07-21T21:43:52Z!gerd@gnu.org, but never used.
19324 All callers changed.
19325
19326 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
19327
19328 * nsterm.m (syms_of_nsterm): Use doc: for ns-auto-hide-menu-bar.
19329
19330 2011-03-27 Anders Lindgren <andlind@gmail.com>
19331
19332 * nsterm.m (ns_menu_bar_is_hidden): New variable.
19333 (ns_constrain_all_frames, ns_menu_bar_should_be_hidden)
19334 (ns_update_auto_hide_menu_bar): New functions.
19335 (ns_update_begin): Call ns_update_auto_hide_menu_bar.
19336 (applicationDidBecomeActive): Call ns_update_auto_hide_menu_bar and
19337 ns_constrain_all_frames.
19338 (constrainFrameRect): Return at once if ns_menu_bar_should_be_hidden.
19339 (syms_of_nsterm): DEFVAR ns-auto-hide-menu-bar, init to Qnil.
19340
19341 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
19342
19343 * nsmenu.m (runDialogAt): Remove argument to timer_check.
19344
19345 2011-03-27 Glenn Morris <rgm@gnu.org>
19346
19347 * syssignal.h: Replace RETSIGTYPE with void.
19348 * atimer.c, data.c, dispnew.c, emacs.c, floatfns.c, keyboard.c:
19349 * keyboard.h, lisp.h, process.c, sysdep.c, xterm.c:
19350 Replace SIGTYPE with void everywhere.
19351 * s/usg5-4-common.h (SIGTYPE): Remove definition.
19352 * s/template.h (SIGTYPE): Remove commented out definition.
19353
19354 2011-03-26 Eli Zaretskii <eliz@gnu.org>
19355
19356 * xdisp.c (redisplay_window): Don't check buffer's clip_changed
19357 flag as a prerequisite for invoking try_scrolling. (Bug#6671)
19358
19359 2011-03-26 Juanma Barranquero <lekktu@gmail.com>
19360
19361 * w32.c (read_unc_volume): Use parameter `henum', instead of
19362 global variable `wget_enum_handle'.
19363
19364 * keymap.c (describe_vector): Remove parameters `indices' and
19365 `char_table_depth', unused since 2002-03-01T01:43:26Z!handa@m17n.org.
19366 (describe_map, Fdescribe_vector): Adjust calls to `describe_vector'.
19367
19368 * keyboard.h (timer_check, show_help_echo): Remove unused parameters.
19369
19370 * keyboard.c (timer_check): Remove parameter `do_it_now',
19371 unused since 1996-04-12T06:01:29Z!rms@gnu.org.
19372 (show_help_echo): Remove parameter `ok_to_overwrite_keystroke_echo',
19373 unused since 2008-04-19T19:30:53Z!monnier@iro.umontreal.ca.
19374
19375 * keyboard.c (read_char):
19376 * w32menu.c (w32_menu_display_help):
19377 * xmenu.c (show_help_event, menu_help_callback):
19378 Adjust calls to `show_help_echo'.
19379
19380 * gtkutil.c (xg_maybe_add_timer):
19381 * keyboard.c (readable_events):
19382 * process.c (wait_reading_process_output):
19383 * xmenu.c (x_menu_wait_for_event): Adjust calls to `timer_check'.
19384
19385 * insdel.c (adjust_markers_gap_motion):
19386 Remove; no-op since 1998-01-02T21:29:48Z!rms@gnu.org.
19387 (gap_left, gap_right): Don't call it.
19388
19389 2011-03-25 Chong Yidong <cyd@stupidchicken.com>
19390
19391 * xdisp.c (handle_fontified_prop): Discard changes to clip_changed
19392 incurred during fontification.
19393
19394 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
19395
19396 * buffer.c (defvar_per_buffer): Remove unused parameter `doc'.
19397 (DEFVAR_PER_BUFFER): Don't pass it.
19398
19399 * dispnew.c (row_equal_p, add_row_entry): Remove unused parameter `w'.
19400 (scrolling_window): Don't pass it.
19401
19402 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
19403
19404 * dispextern.h (glyph_matric): Use #if GLYPH_DEBUG, not #ifdef.
19405
19406 * fileio.c (check_executable) [DOS_NT]: Remove unused variables `len'
19407 and `suffix'.
19408 (Fset_file_selinux_context) [HAVE_LIBSELINUX]: Move here declaration
19409 of variables specific to SELinux and computation of `encoded_absname'.
19410
19411 * image.c (XPutPixel): Remove unused variable `height'.
19412
19413 * keyboard.c (make_lispy_event): Remove unused variable `hpos'.
19414
19415 * unexw32.c (get_section_info): Remove unused variable `section'.
19416
19417 * w32.c (stat): Remove unused variables `drive_root' and `devtype'.
19418 (system_process_attributes): Remove unused variable `sess'.
19419 (sys_read): Remove unused variable `err'.
19420
19421 * w32fns.c (top): Wrap variables with #if GLYPH_DEBUG, not #ifdef.
19422 (w32_wnd_proc): Remove unused variable `isdead'.
19423 (unwind_create_frame): Use #if GLYPH_DEBUG, not #ifdef.
19424 (Fx_server_max_request_size): Remove unused variable `dpyinfo'.
19425 (x_create_tip_frame): Remove unused variable `tem'.
19426
19427 * w32inevt.c (w32_console_read_socket):
19428 Remove unused variable `no_events'.
19429
19430 * w32term.c (x_draw_composite_glyph_string_foreground):
19431 Remove unused variable `width'.
19432
19433 2011-03-24 Juanma Barranquero <lekktu@gmail.com>
19434
19435 * w32term.c (x_set_glyph_string_clipping):
19436 Don't pass uninitialized region to CombineRgn.
19437
19438 2011-03-23 Juanma Barranquero <lekktu@gmail.com>
19439
19440 * w32fns.c (x_set_menu_bar_lines): Remove unused variable `olines'.
19441 (w32_wnd_proc): Pass NULL to Windows API, not uninitialized buffer.
19442 (Fx_close_connection): Remove unused variable `i'.
19443
19444 * w32font.c (w32font_draw): Return number of glyphs.
19445 (w32font_open_internal): Remove unused variable `i'.
19446 (w32font_driver): Add missing initializer.
19447
19448 * w32menu.c (utf8to16): Remove unused variable `utf16'.
19449 (fill_in_menu): Remove unused variable `items_added'.
19450
19451 * w32term.c (last_mouse_press_frame): Remove static global variable.
19452 (w32_clip_to_row): Remove unused variable `f'.
19453 (x_delete_terminal): Remove unused variable `i'.
19454
19455 * w32uniscribe.c (uniscribe_shape): Remove unused variable `nclusters'.
19456 (NOTHING): Remove unused static global variable.
19457 (uniscribe_check_otf): Remove unused variable `table'.
19458 (uniscribe_font_driver): Add missing initializers.
19459
19460 2011-03-23 Julien Danjou <julien@danjou.info>
19461
19462 * term.c (Fsuspend_tty, Fresume_tty):
19463 * minibuf.c (read_minibuf, run_exit_minibuf_hook):
19464 * window.c (temp_output_buffer_show):
19465 * insdel.c (signal_before_change):
19466 * frame.c (Fhandle_switch_frame):
19467 * fileio.c (Fdo_auto_save):
19468 * emacs.c (Fkill_emacs):
19469 * editfns.c (save_excursion_restore):
19470 * cmds.c (internal_self_insert):
19471 * callint.c (Fcall_interactively):
19472 * buffer.c (Fkill_all_local_variables):
19473 * keyboard.c (Fcommand_execute, Fsuspend_emacs, safe_run_hooks_1):
19474 Use Frun_hooks.
19475 (command_loop_1): Use Frun_hooks. Call safe_run_hooks
19476 unconditionally since it does the check itself.
19477
19478 2011-03-23 Paul Eggert <eggert@cs.ucla.edu>
19479
19480 Fix more problems found by GCC 4.5.2's static checks.
19481
19482 * coding.c (encode_coding_raw_text): Avoid unnecessary test
19483 the first time through the loop, since we know p0 < p1 then.
19484 This also avoids a gcc -Wstrict-overflow warning.
19485
19486 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP): Avoid 'int' overflow
19487 leading to a memory leak, possible in functions like
19488 load_charset_map_from_file that can allocate an unbounded number
19489 of objects (Bug#8318).
19490
19491 * xmenu.c (set_frame_menubar): Use EMACS_UINT, not int, for indexes
19492 that could (at least in theory) be that large.
19493
19494 * xdisp.c (message_log_check_duplicate): Return unsigned long, not int.
19495 This is less likely to overflow, and avoids undefined behavior if
19496 overflow does occur. All callers changed. Use strtoul to scan
19497 for the unsigned long integer.
19498 (pint2hrstr): Simplify and tune code slightly.
19499 This also avoids a (bogus) GCC warning with gcc -Wstrict-overflow.
19500
19501 * scroll.c (do_scrolling): Work around GCC bug 48228.
19502 See <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48228>.
19503
19504 * frame.c (Fmodify_frame_parameters): Simplify loop counter.
19505 This also avoids a warning with gcc -Wstrict-overflow.
19506 (validate_x_resource_name): Simplify count usage.
19507 This also avoids a warning with gcc -Wstrict-overflow.
19508
19509 * fileio.c (Fcopy_file): Report error if fchown or fchmod
19510 fail (Bug#8306).
19511
19512 * emacs.c (Fdaemon_initialized): Do not ignore I/O errors (Bug#8303).
19513
19514 * process.c (Fmake_network_process): Use socklen_t, not int,
19515 where POSIX says socklen_t is required in portable programs.
19516 This fixes a porting bug on hosts like 64-bit HP-UX, where
19517 socklen_t is wider than int (Bug#8277).
19518 (Fmake_network_process, server_accept_connection):
19519 (wait_reading_process_output, read_process_output):
19520 Likewise.
19521
19522 * process.c: Rename or move locals to avoid shadowing.
19523 (list_processes_1, Fmake_network_process):
19524 (read_process_output_error_handler, exec_sentinel_error_handler):
19525 Rename or move locals.
19526 (Fmake_network_process): Define label "retry_connect" only if needed.
19527 (Fnetwork_interface_info): Fix pointer signedness.
19528 (process_send_signal): Add cast to avoid pointer signedness problem.
19529 (FIRST_PROC_DESC, IF_NON_BLOCKING_CONNECT): Remove unused macros.
19530 (create_process): Use 'volatile' to avoid vfork clobbering (Bug#8298).
19531
19532 Make tparam.h and terminfo.c consistent.
19533 * cm.c (tputs, tgoto, BC, UP): Remove extern decls.
19534 Include tparam.h instead, since it declares them.
19535 * cm.h (PC): Remove extern decl; tparam.h now does this.
19536 * deps.mk (cm.o, terminfo.o): Depend on tparam.h.
19537 * terminfo.c: Include tparam.h, to check interfaces.
19538 (tparm): Make 1st arg a const pointer in decl. Put it at top level.
19539 (tparam): Adjust signature to match interface in tparam.h;
19540 this removes some undefined behavior. Check that outstring and len
19541 are zero, which they always are with Emacs.
19542 * tparam.h (PC, BC, UP): New extern decls.
19543
19544 * xftfont.c (xftfont_shape): Now static, and defined only if needed.
19545 (xftfont_open): Rename locals to avoid shadowing.
19546
19547 * ftfont.c (ftfont_resolve_generic_family): Fix pointer signedness.
19548 (ftfont_otf_capability, ftfont_shape): Omit decls if not needed.
19549 (OTF_TAG_SYM): Omit macro if not needed.
19550 (ftfont_list): Remove unused local.
19551 (get_adstyle_property, ftfont_pattern_entity):
19552 (ftfont_lookup_cache, ftfont_open, ftfont_anchor_point):
19553 Rename locals to avoid shadowing.
19554
19555 * xfont.c (xfont_list_family): Mark var as initialized.
19556
19557 * xml.c (make_dom): Now static.
19558
19559 * composite.c (composition_compute_stop_pos): Rename local to
19560 avoid shadowing.
19561 (composition_reseat_it): Remove unused locals.
19562 (find_automatic_composition, composition_adjust_point): Likewise.
19563 (composition_update_it): Mark var as initialized.
19564 (find_automatic_composition): Mark vars as initialized,
19565 with a FIXME (Bug#8290).
19566
19567 character.h: Rename locals to avoid shadowing.
19568 * character.h (PREV_CHAR_BOUNDARY, FETCH_STRING_CHAR_ADVANCE):
19569 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE, FETCH_CHAR_ADVANCE):
19570 (FETCH_CHAR_ADVANCE_NO_CHECK, INC_POS, DEC_POS, BUF_INC_POS):
19571 (BUF_DEC_POS): Be more systematic about renaming local temporaries
19572 to avoid shadowing.
19573
19574 * textprop.c (property_change_between_p): Remove; unused.
19575
19576 * intervals.c (interval_start_pos): Now static.
19577
19578 * intervals.h (CHECK_TOTAL_LENGTH): Avoid empty "else".
19579
19580 * atimer.c (start_atimer, append_atimer_lists, set_alarm):
19581 Rename locals to avoid shadowing.
19582
19583 * sound.c (wav_play, au_play, Fplay_sound_internal):
19584 Fix pointer signedness.
19585 (alsa_choose_format): Remove unused local var.
19586 (wav_play): Initialize a variable to 0, to prevent undefined
19587 behavior (Bug#8278).
19588
19589 * region-cache.c (insert_cache_boundary): Redo var to avoid shadowing.
19590
19591 * region-cache.h (pp_cache): New decl, for gcc -Wmissing-prototypes.
19592
19593 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork
19594 clobbering (Bug#8298).
19595 * sysdep.c (sys_subshell): Likewise.
19596 Previously, the sys_subshell 'volatile' was incorrectly IF_LINTted out.
19597
19598 * lisp.h (child_setup): Now NO_RETURN unless DOS_NT.
19599 This should get cleaned up, so that child_setup has the
19600 same signature on all platforms.
19601
19602 * callproc.c (call_process_cleanup): Now static.
19603 (relocate_fd): Rename locals to avoid shadowing.
19604
19605 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
19606
19607 * xterm.c (x_clear_frame): Remove XClearWindow call. This appears
19608 not to be necessary, and produces flickering.
19609
19610 2011-03-20 Glenn Morris <rgm@gnu.org>
19611
19612 * config.in: Remove file.
19613
19614 2011-03-20 Juanma Barranquero <lekktu@gmail.com>
19615
19616 * minibuf.c (Vcompleting_read_function): Don't declare, global variables
19617 are now in src/globals.h.
19618 (syms_of_minibuf): Remove spurious & from previous change.
19619
19620 2011-03-20 Leo Liu <sdl.web@gmail.com>
19621
19622 * minibuf.c (completing-read-function): New variable.
19623 (completing-read-default): Rename from completing-read.
19624 (completing-read): Call completing-read-function.
19625
19626 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
19627
19628 * xfaces.c (Fx_load_color_file):
19629 Read color file from absolute filename (bug#8250).
19630
19631 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
19632
19633 * makefile.w32-in: Update dependencies.
19634
19635 2011-03-17 Eli Zaretskii <eliz@gnu.org>
19636
19637 * makefile.w32-in ($(BLD)/unexw32.$(O)): Depend on $(SRC)/unexec.h.
19638
19639 2011-03-17 Paul Eggert <eggert@cs.ucla.edu>
19640
19641 Fix more problems found by GCC 4.5.2's static checks.
19642
19643 * process.c (make_serial_process_unwind, send_process_trap):
19644 (sigchld_handler): Now static.
19645
19646 * process.c (allocate_pty): Let PTY_ITERATION declare iteration vars.
19647 That way, the code declares only the vars that it needs.
19648 * s/aix4-2.h (PTY_ITERATION): Declare iteration vars.
19649 * s/cygwin.h (PTY_ITERATION): Likewise.
19650 * s/darwin.h (PTY_ITERATION): Likewise.
19651 * s/gnu-linux.h (PTY_ITERATION): Likewise.
19652
19653 * s/irix6-5.h (PTY_OPEN): Declare stb, to loosen coupling.
19654 * process.c (allocate_pty): Don't declare stb unless it's needed.
19655
19656 * bytecode.c (MAYBE_GC): Rewrite so as not to use empty "else".
19657 (CONSTANTLIM): Remove; unused.
19658 (METER_CODE, Bscan_buffer, Bread_char, Bset_mark):
19659 Define only if needed.
19660
19661 * unexelf.c (unexec): Name an expression,
19662 to avoid gcc -Wbad-function-cast warning.
19663 Use a different way to cause a compilation error if anyone uses
19664 n rather than nn, a way that does not involve shadowing.
19665 (ELF_BSS_SECTION_NAME, OLD_PROGRAM_H): Remove; unused.
19666
19667 * deps.mk (unexalpha.o): Remove; unused.
19668
19669 New file unexec.h, the (simple) interface for unexec (Bug#8267).
19670 * unexec.h: New file.
19671 * deps.mk (emacs.o, unexaix.o, unexcw.o, unexcoff.o, unexelf.o):
19672 (unexhp9k800.o, unexmacosx.o, unexsol.o, unexw32.o):
19673 Depend on unexec.h.
19674 * emacs.c [!defined CANNOT_DUMP]: Include unexec.h.
19675 * unexaix.c, unexcoff.c, unexcw.c, unexelf.c, unexhp9k800.c:
19676 * unexmacosx.c, unexsol.c, unexw32.c: Include unexec.h.
19677 Change as necessary to match prototype in unexec.h.
19678
19679 * syntax.c (Fforward_comment, scan_lists): Rename locals to avoid
19680 shadowing.
19681 (back_comment, skip_chars): Mark vars as initialized.
19682
19683 * character.h (FETCH_STRING_CHAR_ADVANCE_NO_CHECK, BUF_INC_POS):
19684 Rename locals to avoid shadowing.
19685
19686 * lread.c (read1): Rewrite so as not to use empty "else".
19687 (Fload, readevalloop, read1): Rename locals to avoid shadowing.
19688
19689 * print.c (Fredirect_debugging_output): Fix pointer signedess.
19690
19691 * lisp.h (debug_output_compilation_hack): Add decl here, to avoid
19692 warning when compiling print.c.
19693
19694 * font.c (font_unparse_fcname): Abort in an "impossible" situation
19695 instead of using an uninitialized var.
19696 (font_sort_entities): Mark var as initialized.
19697
19698 * character.h (FETCH_CHAR_ADVANCE): Rename locals to avoid shadowing.
19699
19700 * font.c (font_unparse_xlfd): Don't mix pointers to variables with
19701 pointers to constants.
19702 (font_parse_fcname): Remove unused vars.
19703 (font_delete_unmatched): Now static.
19704 (font_get_spec): Remove; unused.
19705 (font_style_to_value, font_prop_validate_style, font_unparse_fcname):
19706 (font_update_drivers, Ffont_get_glyphs, font_add_log):
19707 Rename or move locals to avoid shadowing.
19708
19709 * fns.c (require_nesting_list, require_unwind): Now static.
19710 (Ffillarray): Rename locals to avoid shadowing.
19711
19712 * floatfns.c (domain_error2): Define only if needed.
19713 (Ffrexp, Fldexp): Rename locals to avoid shadowing.
19714
19715 * alloc.c (mark_backtrace): Move decl from here ...
19716 * lisp.h: ... to here, so that it can be checked.
19717
19718 * eval.c (call_debugger, do_debug_on_call, grow_specpdl): Now static.
19719 (Fdefvar): Rewrite so as not to use empty "else".
19720 (lisp_indirect_variable): Name an expression,
19721 to avoid gcc -Wbad-function-cast warning.
19722 (Fdefvar): Rename locals to avoid shadowing.
19723
19724 * callint.c (quotify_arg, quotify_args): Now static.
19725 (Fcall_interactively): Rename locals to avoid shadowing.
19726 Use const pointer when appropriate.
19727
19728 * lisp.h (get_system_name, get_operating_system_release):
19729 Move decls here, to check interfaces.
19730 * process.c (get_operating_system_release): Move decl to lisp.h.
19731 * xrdb.c (get_system_name): Likewise.
19732 * editfns.c (init_editfns, Fuser_login_name, Fuser_uid):
19733 (Fuser_real_uid, Fuser_full_name): Remove unnecessary casts,
19734 some of which prompt warnings from gcc -Wbad-function-cast.
19735 (Fformat_time_string, Fencode_time, Finsert_char):
19736 (Ftranslate_region_internal, Fformat):
19737 Rename or remove local vars to avoid shadowing.
19738 (Ftranslate_region_internal): Mark var as initialized.
19739
19740 * doc.c (Fdocumentation, Fsnarf_documentation): Move locals to
19741 avoid shadowing.
19742
19743 * lisp.h (eassert): Check that the argument compiles, even if
19744 ENABLE_CHECKING is not defined.
19745
19746 * data.c (Findirect_variable): Name an expression, to avoid
19747 gcc -Wbad-function-cast warning.
19748 (default_value, arithcompare, arith_driver, arith_error): Now static.
19749 (store_symval_forwarding): Rename local to avoid shadowing.
19750 (Fmake_variable_buffer_local, Fmake_local_variable):
19751 Mark variables as initialized.
19752 (do_blv_forwarding, do_symval_forwarding): Remove; unused.
19753
19754 * alloc.c (check_cons_list): Do not define unless GC_CHECK_CONS_LIST.
19755 (Fmake_vector, Fvector, Fmake_byte_code, Fgarbage_collect):
19756 Rename locals to avoid shadowing.
19757 (mark_stack): Move local variables into the #ifdef region where
19758 they're used.
19759 (BLOCK_INPUT_ALLOC, UNBLOCK_INPUT_ALLOC): Define only if
19760 ! defined SYSTEM_MALLOC && ! defined SYNC_INPUT, as they are not
19761 needed otherwise.
19762 (CHECK_ALLOCATED): Define only if GC_CHECK_MARKED_OBJECTS.
19763 (GC_STRING_CHARS): Remove; not used.
19764 (Fmemory_limit): Cast sbrk's returned value to char *.
19765
19766 * lisp.h (check_cons_list): Declare if GC_CHECK_CONS_LIST; this
19767 avoids undefined behavior in theory.
19768
19769 * regex.c (IF_LINT): Add defn, for benefit of ../lib-src.
19770
19771 Use functions, not macros, for up- and down-casing (Bug#8254).
19772 * buffer.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
19773 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Remove. All callers changed
19774 to use the following functions instead of these macros.
19775 (downcase): Adjust to lack of DOWNCASE_TABLE. Return int, not
19776 EMACS_INT, since callers assume the returned value fits in int.
19777 (upcase1): Likewise, for UPCASE_TABLE.
19778 (uppercasep, lowercasep, upcase): New static inline functions.
19779 * editfns.c (Fchar_equal): Remove no-longer-needed workaround for
19780 the race-condition problem in the old DOWNCASE.
19781
19782 * regex.c (CHARSET_LOOKUP_RANGE_TABLE_RAW, POP_FAILURE_REG_OR_COUNT):
19783 Rename locals to avoid shadowing.
19784 (regex_compile, re_match_2_internal): Move locals to avoid shadowing.
19785 (regex_compile, re_search_2, re_match_2_internal):
19786 Remove unused local vars.
19787 (FREE_VAR): Rewrite so as not to use empty "else",
19788 which gcc can warn about.
19789 (regex_compile, re_match_2_internal): Mark locals as initialized.
19790 (RETALLOC_IF): Define only if needed.
19791 (WORDCHAR_P): Likewise. This one is never needed, but is used
19792 only in a comment talking about a compiler bug, so put inside
19793 the #if 0 of that comment.
19794 (CHARSET_LOOKUP_BITMAP, FAIL_STACK_FULL, RESET_FAIL_STACK):
19795 (PUSH_FAILURE_ELT, BUF_PUSH_3, STOP_ADDR_VSTRING):
19796 Remove; unused.
19797
19798 * search.c (boyer_moore): Rename locals to avoid shadowing.
19799 * character.h (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE):
19800 (PREV_CHAR_BOUNDARY): Likewise.
19801
19802 * search.c (simple_search): Remove unused var.
19803
19804 * dired.c (compile_pattern): Move decl from here ...
19805 * lisp.h: ... to here, so that it can be checked.
19806 (struct re_registers): New forward decl.
19807
19808 * character.h (INC_POS, DEC_POS): Rename locals to avoid shadowing.
19809
19810 * indent.c (MULTIBYTE_BYTES_WIDTH): New args bytes, width.
19811 All uses changed.
19812 (MULTIBYTE_BYTES_WIDTH, scan_for_column, compute_motion):
19813 Rename locals to avoid shadowing.
19814 (Fvertical_motion): Mark locals as initialized.
19815
19816 * casefiddle.c (casify_object, casify_region): Now static.
19817 (casify_region): Mark local as initialized.
19818
19819 * cmds.c (internal_self_insert): Rename local to avoid shadowing.
19820
19821 * lisp.h (GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR, GCPRO6_VAR):
19822 New macros, so that the caller can use some names other than
19823 gcpro1, gcpro2, etc.
19824 (GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6): Reimplement in terms
19825 of the new macros.
19826 (GCPRO1_VAR, UNGCPRO_VAR): Change the meaning of the second
19827 argument, for consistency with GCPRO2_VAR, etc: it is now the
19828 prefix of the variable, not the variable itself. All uses
19829 changed.
19830 * dired.c (directory_files_internal, file_name_completion):
19831 Rename locals to avoid shadowing.
19832
19833 Fix a race condition diagnosed by gcc -Wsequence-point (Bug#8254).
19834 An expression of the form (DOWNCASE (x) == DOWNCASE (y)), found in
19835 dired.c's scmp function, had undefined behavior.
19836 * lisp.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
19837 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Move from here ...
19838 * buffer.h: ... to here, because these macros use current_buffer,
19839 and the new implementation with inline functions needs to have
19840 current_buffer in scope now, rather than later when the macros
19841 are used.
19842 (downcase, upcase1): New static inline functions.
19843 (DOWNCASE, UPCASE1): Reimplement using these functions.
19844 This avoids undefined behavior in expressions like
19845 DOWNCASE (x) == DOWNCASE (y), which previously suffered
19846 from race conditions in accessing the global variables
19847 case_temp1 and case_temp2.
19848 * casetab.c (case_temp1, case_temp2): Remove; no longer needed.
19849 * lisp.h (case_temp1, case_temp2): Remove their decls.
19850 * character.h (ASCII_CHAR_P): Move from here ...
19851 * lisp.h: ... to here, so that the inline functions mentioned
19852 above can use them.
19853
19854 * dired.c (directory_files_internal_unwind): Now static.
19855
19856 * fileio.c (file_name_as_directory, directory_file_name):
19857 (barf_or_query_if_file_exists, auto_save_error, auto_save_1):
19858 Now static.
19859 (file_name_as_directory): Use const pointers when appropriate.
19860 (Fexpand_file_name): Likewise. In particular, newdir might
19861 point at constant storage, so make it a const pointer.
19862 (Fmake_directory_internal, Fread_file_name): Remove unused vars.
19863 (Ffile_selinux_context, Fset_file_selinux_context): Fix pointer
19864 signedness issues.
19865 (Fset_file_times, Finsert_file_contents, auto_save_error):
19866 Rename locals to avoid shadowing.
19867
19868 * minibuf.c (choose_minibuf_frame_1): Now static.
19869 (Ftry_completion, Fall_completions): Rename or remove locals
19870 to avoid shadowing.
19871
19872 * marker.c (bytepos_to_charpos): Remove; unused.
19873
19874 * lisp.h (verify_bytepos, count_markers): New decls,
19875 so that gcc does not warn that these functions aren't declared.
19876
19877 * insdel.c (check_markers, make_gap_larger, make_gap_smaller):
19878 (reset_var_on_error, Fcombine_after_change_execute_1): Now static.
19879 (CHECK_MARKERS): Redo to avoid gcc -Wempty-body diagnostic.
19880 (copy_text): Remove unused local var.
19881
19882 * filelock.c (within_one_second): Now static.
19883 (lock_file_1): Rename local to avoid shadowing.
19884
19885 * buffer.c (fix_overlays_before): Mark locals as initialized.
19886 (fix_start_end_in_overlays): Likewise. This function should be
19887 simplified by using pointers-to-pointers, but that's a different
19888 matter.
19889 (switch_to_buffer_1): Now static.
19890 (Fkill_buffer, record_buffer, Fbury_buffer, Fset_buffer_multibyte):
19891 (report_overlay_modification): Rename locals to avoid shadowing.
19892
19893 * sysdep.c (system_process_attributes): Rename vars to avoid shadowing.
19894 Fix pointer signedness issue.
19895 (sys_subshell): Mark local as volatile if checking for lint,
19896 to suppress a gcc -Wclobbered warning that does not seem to be right.
19897 (MAXPATHLEN): Define only if needed.
19898
19899 * process.c (serial_open, serial_configure): Move decls from here ...
19900 * systty.h: ... to here, so that they can be checked.
19901
19902 * fns.c (get_random, seed_random): Move extern decls from here ...
19903 * lisp.h: ... to here, so that they can be checked.
19904
19905 * sysdep.c (reset_io): Now static.
19906 (wait_for_termination_signal): Remove; unused.
19907
19908 * keymap.c (keymap_parent, keymap_memberp, map_keymap_internal):
19909 (copy_keymap_item, append_key, push_text_char_description):
19910 Now static.
19911 (Fwhere_is_internal): Don't test CONSP (sequences) unnecessarily.
19912 (DENSE_TABLE_SIZE): Remove; unused.
19913 (get_keymap, access_keymap, Fdefine_key, Fwhere_is_internal):
19914 (describe_map_tree):
19915 Rename locals to avoid shadowing.
19916
19917 * keyboard.c: Declare functions static if they are not used elsewhere.
19918 (echo_char, echo_dash, cmd_error, top_level_2):
19919 (poll_for_input, handle_async_input): Now static.
19920 (read_char, kbd_buffer_get_event, make_lispy_position):
19921 (make_lispy_event, make_lispy_movement, apply_modifiers):
19922 (decode_keyboard_code, tty_read_avail_input, menu_bar_items):
19923 (parse_tool_bar_item, read_key_sequence, Fread_key_sequence):
19924 (Fread_key_sequence_vector): Rename locals to avoid shadowing.
19925 (read_key_sequence, read_char): Mark locals as initialized.
19926 (Fexit_recursive_edit, Fabort_recursive_edit): Mark with NO_RETURN.
19927
19928 * keyboard.h (make_ctrl_char): New decl.
19929 (mark_kboards): Move decl here ...
19930 * alloc.c (mark_kboards): ... from here.
19931
19932 * lisp.h (force_auto_save_soon): New decl.
19933
19934 * emacs.c (init_cmdargs): Rename local to avoid shadowing.
19935 (DEFINE_DUMMY_FUNCTION): New macro.
19936 (__do_global_ctors, __do_global_ctors_aux, __do_global_dtors, __main):
19937 Use it.
19938 (main): Add casts to avoid warnings
19939 if GCC considers string literals to be constants.
19940
19941 * lisp.h (fatal_error_signal): Add decl, since it's exported.
19942
19943 * dbusbind.c: Pointer signedness fixes.
19944 (xd_signature, xd_append_arg, xd_initialize):
19945 (Fdbus_call_method, Fdbus_call_method_asynchronously):
19946 (Fdbus_method_return_internal, Fdbus_method_error_internal):
19947 (Fdbus_send_signal, xd_read_message_1, Fdbus_register_service):
19948 (Fdbus_register_signal): Use SSDATA when the context wants char *.
19949
19950 * dbusbind.c (Fdbus_init_bus): Add cast to avoid warning
19951 if GCC considers string literals to be constants.
19952 (Fdbus_register_service, Fdbus_register_method): Remove unused vars.
19953
19954 2011-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
19955
19956 * print.c (PRINT_CIRCLE_CANDIDATE_P): New macro.
19957 (print_preprocess, print_object): New macro to fix last change.
19958
19959 * print.c (print_preprocess): Don't forget font objects.
19960
19961 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
19962
19963 * emacs.c (USAGE3): Doc fixes.
19964
19965 2011-03-15 Andreas Schwab <schwab@linux-m68k.org>
19966
19967 * coding.c (detect_coding_iso_2022): Reorganize code to clarify
19968 structure.
19969
19970 2011-03-14 Juanma Barranquero <lekktu@gmail.com>
19971
19972 * lisp.h (VWindow_system, Qfile_name_history):
19973 * keyboard.h (lispy_function_keys) [WINDOWSNT]:
19974 * w32term.h (w32_system_caret_hwnd, w32_system_caret_height)
19975 (w32_system_caret_x, w32_system_caret_y): Declare extern.
19976
19977 * w32select.c: Don't #include "keyboard.h".
19978 (run_protected): Add extern declaration for waiting_for_input.
19979
19980 * w32.c (Qlocal, noninteractive1, inhibit_window_system):
19981 * w32console.c (detect_input_pending, read_input_pending)
19982 (encode_terminal_code):
19983 * w32fns.c (quit_char, lispy_function_keys, Qtooltip)
19984 (w32_system_caret_hwnd, w32_system_caret_height, w32_system_caret_x)
19985 (w32_system_caret_y, Qfile_name_history):
19986 * w32font.c (w32font_driver, QCantialias, QCotf, QClang):
19987 * w32inevt.c (reinvoke_input_signal, lispy_function_keys):
19988 * w32menu.c (Qmenu_bar, QCtoggle, QCradio, Qoverriding_local_map)
19989 (Qoverriding_terminal_local_map, Qmenu_bar_update_hook):
19990 * w32proc.c (Qlocal, report_file_error):
19991 * w32term.c (Vwindow_system, updating_frame):
19992 * w32uniscribe.c (initialized, uniscribe_font_driver):
19993 Remove unneeded extern declarations.
19994
19995 2011-03-14 Chong Yidong <cyd@stupidchicken.com>
19996
19997 * buffer.c (Fmake_indirect_buffer): Fix incorrect assertions.
19998
19999 2011-03-13 Chong Yidong <cyd@stupidchicken.com>
20000
20001 * buffer.h (BUF_BEGV, BUF_BEGV_BYTE, BUF_ZV, BUF_ZV_BYTE, BUF_PT)
20002 (BUF_PT_BYTE): Rewrite to handle indirect buffers (Bug#8219).
20003 These macros can no longer be used for assignment.
20004
20005 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
20006 Assign struct members directly, instead of using BUF_BEGV etc.
20007 (record_buffer_markers, fetch_buffer_markers): New functions for
20008 recording and fetching special buffer markers.
20009 (set_buffer_internal_1, set_buffer_temp): Use them.
20010
20011 * lread.c (unreadchar): Use SET_BUF_PT_BOTH.
20012
20013 * insdel.c (adjust_point): Use SET_BUF_PT_BOTH.
20014
20015 * intervals.c (temp_set_point_both): Use SET_BUF_PT_BOTH.
20016 (get_local_map): Use SET_BUF_BEGV_BOTH and SET_BUF_ZV_BOTH.
20017
20018 * xdisp.c (hscroll_window_tree):
20019 (reconsider_clip_changes): Use PT instead of BUF_PT.
20020
20021 2011-03-13 Eli Zaretskii <eliz@gnu.org>
20022
20023 * makefile.w32-in ($(BLD)/editfns.$(O)): Depend on
20024 $(EMACS_ROOT)/lib/intprops.h.
20025
20026 2011-03-13 Paul Eggert <eggert@cs.ucla.edu>
20027
20028 Fix more problems found by GCC 4.5.2's static checks.
20029
20030 * gtkutil.c (xg_get_pixbuf_from_pixmap): Add cast from char *
20031 to unsigned char * to avoid compiler diagnostic.
20032 (xg_free_frame_widgets): Make it clear that a local variable is
20033 needed only if USE_GTK_TOOLTIP.
20034 (gdk_window_get_screen): Make it clear that this macro is needed
20035 only if USE_GTK_TOOLTIP.
20036 (int_gtk_range_get_value): New function, which avoids a diagnostic
20037 from gcc -Wbad-function-cast.
20038 (xg_set_toolkit_scroll_bar_thumb): Use it.
20039 (xg_tool_bar_callback, xg_tool_item_stale_p): Rewrite to avoid
20040 diagnostic from gcc -Wbad-function-cast.
20041 (get_utf8_string, xg_get_file_with_chooser):
20042 Rename locals to avoid shadowing.
20043 (create_dialog): Move locals to avoid shadowing.
20044
20045 * xgselect.c (xg_select): Remove unused var.
20046
20047 * image.c (four_corners_best): Mark locals as initialized.
20048 (gif_load): Initialize transparent_p to zero (Bug#8238).
20049 Mark another local as initialized.
20050 (my_png_error, my_error_exit): Mark with NO_RETURN.
20051
20052 * image.c (clear_image_cache): Now static.
20053 (DIM, HAVE_STDLIB_H_1): Remove unused macros.
20054 (xpm_load): Redo to avoid "discards qualifiers" gcc warning.
20055 (x_edge_detection): Remove unnecessary cast that
20056 gcc -Wbad-function-cast diagnoses.
20057 (gif_load): Fix pointer signedness.
20058 (clear_image_cache, xbm_read_bitmap_data, x_detect_edges):
20059 (jpeg_load, gif_load): Rename locals to avoid shadowing.
20060
20061 2011-03-12 Paul Eggert <eggert@cs.ucla.edu>
20062
20063 Improve quality of tests for time stamp overflow.
20064 For example, without this patch (encode-time 0 0 0 1 1
20065 1152921504606846976) returns the obviously-bogus value (-948597
20066 62170) on my RHEL 5.5 x86-64 host. With the patch, it correctly
20067 reports time overflow. See
20068 <http://lists.gnu.org/archive/html/emacs-devel/2011-03/msg00470.html>.
20069 * deps.mk (editfns.o): Depend on ../lib/intprops.h.
20070 * editfns.c: Include limits.h and intprops.h.
20071 (TIME_T_MIN, TIME_T_MAX): New macros.
20072 (time_overflow): Move earlier, to before first use.
20073 (hi_time, lo_time): New functions, for an accurate test for
20074 out-of-range times.
20075 (Fcurrent_time, Fget_internal_run_time, make_time): Use them.
20076 (Fget_internal_run_time): Don't assume time_t fits in int.
20077 (make_time): Use list2 instead of Fcons twice.
20078 (Fdecode_time): More accurate test for out-of-range times.
20079 (check_tm_member): New function.
20080 (Fencode_time): Use it, to test for out-of-range times.
20081 (lisp_time_argument): Don't rely on undefined left-shift and
20082 right-shift behavior when checking for time stamp overflow.
20083
20084 * editfns.c (time_overflow): New function, refactoring common code.
20085 (Fformat_time_string, Fdecode_time, Fencode_time):
20086 (Fcurrent_time_string): Use it.
20087
20088 Move 'make_time' to be next to its inverse 'lisp_time_argument'.
20089 * dired.c (make_time): Move to ...
20090 * editfns.c (make_time): ... here.
20091 * systime.h: Note the move.
20092
20093 2011-03-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20094
20095 * fringe.c (update_window_fringes): Remove unused variables.
20096
20097 * unexmacosx.c (copy_data_segment): Also copy __got section.
20098 (Bug#8223)
20099
20100 2011-03-12 Eli Zaretskii <eliz@gnu.org>
20101
20102 * termcap.c [MSDOS]: Include "msdos.h".
20103 (find_capability, tgetnum, tgetflag, tgetstr, tputs, tgetent):
20104 Constify `char *' arguments and their references according to
20105 prototypes in tparam.h.
20106
20107 * deps.mk (termcap.o): Depend on tparam.h and msdos.h.
20108
20109 * msdos.c (XMenuAddPane): 3rd argument is `const char *' now.
20110 Adapt all references accordingly.
20111
20112 * msdos.h (XMenuAddPane): 3rd argument is `const char *' now.
20113
20114 2011-03-11 Tom Tromey <tromey@redhat.com>
20115
20116 * buffer.c (syms_of_buffer): Remove obsolete comment.
20117
20118 2011-03-11 Eli Zaretskii <eliz@gnu.org>
20119
20120 * termhooks.h (encode_terminal_code): Declare prototype.
20121
20122 * msdos.c (encode_terminal_code): Don't declare prototype.
20123
20124 * term.c (encode_terminal_code): Now external again, used by
20125 w32console.c and msdos.c.
20126
20127 * makefile.w32-in ($(BLD)/term.$(O), ($(BLD)/tparam.$(O)):
20128 Depend on $(SRC)/tparam.h, see 2011-03-11T07:24:21Z!eggert@cs.ucla.edu.
20129
20130 2011-03-11 Paul Eggert <eggert@cs.ucla.edu>
20131
20132 Fix some minor problems found by GCC 4.5.2's static checks.
20133
20134 * fringe.c (update_window_fringes): Mark locals as initialized
20135 (Bug#8227).
20136 (destroy_fringe_bitmap, init_fringe_bitmap): Now static.
20137
20138 * alloc.c (mark_fringe_data): Move decl from here ...
20139 * lisp.h (mark_fringe_data) [HAVE_WINDOW_SYSTEM]: ... to here,
20140 to check its interface.
20141 (init_fringe_once): Do not declare unless HAVE_WINDOW_SYSTEM.
20142
20143 * fontset.c (free_realized_fontset): Now static.
20144 (Fset_fontset_font): Rename local to avoid shadowing.
20145 (fontset_font): Mark local as initialized.
20146 (FONTSET_SPEC, FONTSET_REPERTORY, RFONT_DEF_REPERTORY): Remove; unused.
20147
20148 * xrdb.c: Include "xterm.h", to check x_load_resources's interface.
20149
20150 * xselect.c (x_disown_buffer_selections): Remove; not used.
20151 (TRACE3) [!defined TRACE_SELECTION]: Remove; not used.
20152 (x_own_selection, Fx_disown_selection_internal): Rename locals
20153 to avoid shadowing.
20154 (x_handle_dnd_message): Remove local to avoid shadowing.
20155
20156 * lisp.h (GCPRO1_VAR, UNGCPRO_VAR): New macros,
20157 so that the caller can use some name other than gcpro1.
20158 (GCPRO1, UNGCPRO): Reimplement in terms of the new macros.
20159 * xfns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
20160 (Fx_backspace_delete_keys_p):
20161 Use them to avoid shadowing, and rename vars to avoid shadowing.
20162 (x_decode_color, x_set_name, x_window): Now static.
20163 (Fx_create_frame): Add braces to silence GCC warning.
20164 (Fx_file_dialog, Fx_select_font): Fix pointer signedness.
20165 (x_real_positions, xg_set_icon_from_xpm_data, x_create_tip_frame):
20166 Remove unused locals.
20167 (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
20168 (Fx_backspace_delete_keys_p): Rename locals to avoid shadowing.
20169 Some of these renamings use the new GCPRO1_VAR and UNGCPRO_VAR
20170 macros.
20171
20172 * xterm.h (x_mouse_leave): New decl.
20173
20174 * xterm.c (x_copy_dpy_color, x_focus_on_frame, x_unfocus_frame):
20175 Remove unused functions.
20176 (x_shift_glyphs_for_insert, XTflash, XTring_bell):
20177 (x_calc_absolute_position): Now static.
20178 (XTread_socket): Don't define label "out" unless it's used.
20179 Don't declare local "event" unless it's used.
20180 (x_iconify_frame, x_free_frame_resources): Don't declare locals
20181 unless they are used.
20182 (XEMBED_VERSION, xembed_set_info): Don't define unless needed.
20183 (x_fatal_error_signal): Remove; not used.
20184 (x_draw_image_foreground, redo_mouse_highlight, XTmouse_position):
20185 (x_scroll_bar_report_motion, handle_one_xevent, x_draw_bar_cursor):
20186 (x_error_catcher, x_connection_closed, x_error_handler):
20187 (x_error_quitter, xembed_send_message, x_iconify_frame):
20188 (my_log_handler): Rename locals to avoid shadowing.
20189 (x_delete_glyphs, x_ins_del_lines): Mark with NO_RETURN.
20190 (x_connection_closed): Tell GCC not to suggest NO_RETURN.
20191
20192 * xfaces.c (clear_face_cache, Fx_list_fonts, Fface_font):
20193 Rename or move locals to avoid shadowing.
20194 (tty_defined_color, merge_face_heights): Now static.
20195 (free_realized_faces_for_fontset): Remove; not used.
20196 (Fx_list_fonts): Mark variable that gcc -Wuninitialized
20197 does not deduce is never used uninitialized.
20198 (STRDUPA, LSTRDUPA, FONT_POINT_SIZE_QUANTUM): Remove; not used.
20199 (LFACEP): Define only if XASSERTS, as it's not needed otherwise.
20200
20201 * terminal.c (store_terminal_param): Now static.
20202
20203 * xmenu.c (menu_highlight_callback): Now static.
20204 (set_frame_menubar): Remove unused local.
20205 (xmenu_show): Rename parameter to avoid shadowing.
20206 (xmenu_show, xdialog_show, xmenu_show): Make local pointers "const"
20207 since they might point to immutable storage.
20208 (next_menubar_widget_id): Declare only if USE_X_TOOLKIT,
20209 since it's unused otherwise.
20210
20211 * xdisp.c (produce_glyphless_glyph): Initialize lower_xoff.
20212 Add a FIXME, since the code still doesn't look right. (Bug#8215)
20213 (Fcurrent_bidi_paragraph_direction): Simplify slightly; this
20214 avoids a gcc -Wuninitialized diagnostic.
20215 (display_line, BUILD_COMPOSITE_GLYPH_STRING, draw_glyphs):
20216 (note_mouse_highlight): Mark variables that gcc -Wuninitialized
20217 does not deduce are never used uninitialized.
20218
20219 * lisp.h (IF_LINT): New macro, copied from ../lib-src/emacsclient.c.
20220
20221 * xdisp.c (redisplay_window): Rename local to avoid shadowing.
20222 * window.c (window_loop, size_window):
20223 (run_window_configuration_change_hook, enlarge_window): Likewise.
20224
20225 * window.c (display_buffer): Now static.
20226 (size_window): Mark variables that gcc -Wuninitialized
20227 does not deduce are never used uninitialized.
20228 * window.h (check_all_windows): New decl, to forestall
20229 gcc -Wmissing-prototypes diagnostic.
20230 * dispextern.h (bidi_dump_cached_states): Likewise.
20231
20232 * charset.h (CHECK_CHARSET_GET_CHARSET): Rename locals to avoid
20233 shadowing.
20234 * charset.c (map_charset_for_dump, Fchar_charset): Likewise.
20235 Include <limits.h>.
20236 (Fsort_charsets): Redo min/max calculation to shorten the code a bit
20237 and to avoid gcc -Wuninitialized warning.
20238 (load_charset_map): Mark variables that gcc -Wuninitialized
20239 does not deduce are never used uninitialized.
20240 (load_charset): Abort instead of using uninitialized var (Bug#8229).
20241
20242 * coding.c (coding_set_source, coding_set_destination):
20243 Use "else { /* comment */ }" rather than "else /* comment */;"
20244 for clarity, and to avoid gcc -Wempty-body warning.
20245 (Fdefine_coding_system_internal): Don't redeclare 'i' inside
20246 a block, when the outer 'i' will do.
20247 (decode_coding_utf_8, decode_coding_utf_16, detect_coding_emacs_mule):
20248 (emacs_mule_char, decode_coding_emacs_mule, detect_coding_iso_2022):
20249 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5):
20250 (decode_coding_raw_text, decode_coding_charset, get_translation_table):
20251 (Fdecode_sjis_char, Fdefine_coding_system_internal):
20252 Rename locals to avoid shadowing.
20253 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
20254 * coding.c (emacs_mule_char, encode_invocation_designation):
20255 Now static, since they're not used elsewhere.
20256 (decode_coding_iso_2022): Add "default: abort ();" as a safety check.
20257 (decode_coding_object, encode_coding_object, detect_coding_system):
20258 (decode_coding_emacs_mule): Mark variables that gcc
20259 -Wuninitialized does not deduce are never used uninitialized.
20260 (detect_coding_iso_2022): Initialize a local variable that might
20261 be used uninitialized. Leave a FIXME because it's not clear that
20262 this initialization is needed. (Bug#8211)
20263 (ISO_CODE_LF, ISO_CODE_CR, CODING_ISO_FLAG_EUC_TW_SHIFT):
20264 (ONE_MORE_BYTE_NO_CHECK, UTF_BOM, UTF_16_INVALID_P):
20265 (SHIFT_OUT_OK, ENCODE_CONTROL_SEQUENCE_INTRODUCER):
20266 (ENCODE_DIRECTION_R2L, ENCODE_DIRECTION_L2R):
20267 Remove unused macros.
20268
20269 * category.c (hash_get_category_set): Remove unused local var.
20270 (copy_category_table): Now static, since it's not used elsewhere.
20271 * character.c (string_count_byte8): Likewise.
20272
20273 * ccl.c (CCL_WRITE_STRING, CCL_ENCODE_CHAR, Fccl_execute_on_string):
20274 (Fregister_code_conversion_map): Rename locals to avoid shadowing.
20275
20276 * chartab.c (copy_sub_char_table): Now static, since it's not used
20277 elsewhere.
20278 (sub_char_table_ref_and_range, char_table_ref_and_range):
20279 Rename locals to avoid shadowing.
20280 (ASET_RANGE, GET_SUB_CHAR_TABLE): Remove unused macros.
20281
20282 * bidi.c (bidi_check_type): Now static, since it's not used elsewhere.
20283 (BIDI_BOB): Remove unused macro.
20284
20285 * cm.c (cmgoto): Mark variables that gcc -Wuninitialized does not
20286 deduce are never used uninitialized.
20287 * term.c (encode_terminal_code): Likewise.
20288
20289 * term.c (encode_terminal_code): Now static. Remove unused local.
20290
20291 * tparam.h: New file.
20292 * term.c, tparam.h: Include it.
20293 * deps.mk (term.o, tparam.o): Depend on tparam.h.
20294 * term.c (tputs, tgetent, tgetflag, tgetnum, tparam, tgetstr):
20295 Move these decls to tparam.h, and make them agree with what
20296 is actually in tparam.c. The previous trick of using incompatible
20297 decls in different modules does not conform to the C standard.
20298 All callers of tparam changed to use tparam's actual API.
20299 * tparam.c (tparam1, tparam, tgoto):
20300 Use const pointers where appropriate.
20301
20302 * cm.c (calccost, cmgoto): Use const pointers where appropriate.
20303 * cm.h (struct cm): Likewise.
20304 * dispextern.h (do_line_insertion_deletion_costs): Likewise.
20305 * scroll.c (ins_del_costs, do_line_insertion_deletion_costs): Likewise.
20306 * term.c (tty_ins_del_lines, calculate_costs, struct fkey_table):
20307 (term_get_fkeys_1, append_glyphless_glyph, produce_glyphless_glyph):
20308 (turn_on_face, init_tty): Likewise.
20309 * termchar.h (struct tty_display_info): Likewise.
20310
20311 * term.c (term_mouse_position): Rename local to avoid shadowing.
20312
20313 * alloc.c (mark_ttys): Move decl from here ...
20314 * lisp.h (mark_ttys): ... to here, so that it's checked against defn.
20315
20316 2011-03-11 Andreas Schwab <schwab@linux-m68k.org>
20317
20318 * .gdbinit (pwinx, xbuffer): Fix access to buffer name.
20319
20320 2011-03-09 Juanma Barranquero <lekktu@gmail.com>
20321
20322 * search.c (compile_pattern_1): Remove argument regp, unused since
20323 revid:rms@gnu.org-19941211082627-3x1g1wyqkjmwloig.
20324 (compile_pattern): Don't pass it.
20325
20326 2011-03-08 Jan Djärv <jan.h.d@swipnet.se>
20327
20328 * xterm.h (DEFAULT_GDK_DISPLAY): New define.
20329 (GDK_WINDOW_XID, gtk_widget_get_preferred_size): New defines
20330 for ! HAVE_GTK3.
20331 (GTK_WIDGET_TO_X_WIN): Use GDK_WINDOW_XID.
20332
20333 * xmenu.c (menu_position_func): Call gtk_widget_get_preferred_size.
20334
20335 * gtkutil.c: Include gtkx.h if HAVE_GTK3. If ! HAVE_GTK3, define
20336 gdk_window_get_screen, gdk_window_get_geometry,
20337 gdk_x11_window_lookup_for_display and GDK_KEY_g.
20338 (xg_set_screen): Use DEFAULT_GDK_DISPLAY.
20339 (xg_get_pixbuf_from_pixmap): New function.
20340 (xg_get_pixbuf_from_pix_and_mask): Change parameters from GdkPixmap
20341 to Pixmap, take frame as parameter, remove GdkColormap parameter.
20342 Call xg_get_pixbuf_from_pixmap instead of
20343 gdk_pixbuf_get_from_drawable.
20344 (xg_get_image_for_pixmap): Do not make GdkPixmaps, call
20345 xg_get_pixbuf_from_pix_and_mask with Pixmap parameters instead.
20346 (xg_check_special_colors): Use GtkStyleContext and its functions
20347 for HAVE_GTK3.
20348 (xg_prepare_tooltip, xg_hide_tooltip): Call gdk_window_get_screen.
20349 (xg_prepare_tooltip, create_dialog, menubar_map_cb)
20350 (xg_update_frame_menubar, xg_tool_bar_detach_callback)
20351 (xg_tool_bar_attach_callback, xg_update_tool_bar_sizes):
20352 Call gtk_widget_get_preferred_size.
20353 (xg_frame_resized): gdk_window_get_geometry only takes 5
20354 parameters.
20355 (xg_win_to_widget, xg_event_is_for_menubar):
20356 Call gdk_x11_window_lookup_for_display.
20357 (xg_set_widget_bg): New function.
20358 (delete_cb): New function.
20359 (xg_create_frame_widgets): Connect delete-event to delete_cb.
20360 Call xg_set_widget_bg. Only set background pixmap for ! HAVE_GTK3
20361 (xg_set_background_color): Call xg_set_widget_bg.
20362 (xg_set_frame_icon): Call xg_get_pixbuf_from_pix_and_mask.
20363 (xg_create_scroll_bar): vadj is a GtkAdjustment for HAVE_GTK3.
20364 Only call gtk_range_set_update_policy if ! HAVE_GTK3.
20365 (xg_make_tool_item): Only connect xg_tool_bar_item_expose_callback
20366 if ! HAVE_GTK3.
20367 (update_frame_tool_bar): Call gtk_widget_hide.
20368 (xg_initialize): Use GDK_KEY_g.
20369
20370 * xsmfns.c (gdk_set_sm_client_id): Define to gdk_set_sm_client_id
20371 if ! HAVE_GTK3
20372 (x_session_initialize): Call gdk_x11_set_sm_client_id.
20373
20374 * xterm.c (XFillRectangle): Use cairo routines for HAVE_GTK3.
20375 (x_term_init): Disable Xinput(2) with GDK_CORE_DEVICE_EVENTS.
20376 Load ~/emacs.d/gtkrc only for ! HAVE_GTK3.
20377
20378 2011-03-08 Juanma Barranquero <lekktu@gmail.com>
20379
20380 * w32xfns.c (select_palette): Check success of RealizePalette against
20381 GDI_ERROR, not zero.
20382
20383 See ChangeLog.11 for earlier changes.
20384
20385 ;; Local Variables:
20386 ;; coding: utf-8
20387 ;; End:
20388
20389 Copyright (C) 2011-2012 Free Software Foundation, Inc.
20390
20391 This file is part of GNU Emacs.
20392
20393 GNU Emacs is free software: you can redistribute it and/or modify
20394 it under the terms of the GNU General Public License as published by
20395 the Free Software Foundation, either version 3 of the License, or
20396 (at your option) any later version.
20397
20398 GNU Emacs is distributed in the hope that it will be useful,
20399 but WITHOUT ANY WARRANTY; without even the implied warranty of
20400 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20401 GNU General Public License for more details.
20402
20403 You should have received a copy of the GNU General Public License
20404 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.