Minor redisplay optimization when the region length is zero.
[bpt/emacs.git] / src / ChangeLog
1 2012-12-13 Dmitry Antipov <dmantipov@yandex.ru>
2
3 Minor redisplay optimization when the region length is zero.
4 * xdisp.c (markpos_of_region): New function.
5 (init_iterator): Do not highlight the region of zero length.
6 (redisplay_window): Check whether the region is of non-zero length.
7 (try_cursor_movement): Allow if the region length is zero.
8 (try_window_reusing_current_matrix, try_window_id): Likewise.
9
10 2012-12-13 Eli Zaretskii <eliz@gnu.org>
11
12 * search.c (search_buffer): Check the inverse translations of each
13 character in pattern when the buffer being searched is unibyte.
14 (Bug#13084)
15
16 2012-12-13 Paul Eggert <eggert@cs.ucla.edu>
17
18 * fileio.c (Fvisited_file_modtime): Return (-1 ...) for nonexistent
19 files, fixing a regression from 24.2.
20 (Fverify_visited_file_modtime): Don't read uninitialized st.st_size.
21
22 2012-12-13 Paul Eggert <eggert@cs.ucla.edu>
23
24 * fileio.c (Fcopy_file): Make fstat failure as serious as open failure.
25 fstat shouldn't fail, and if it does fail copy-file should not proceed.
26 Remove unnecessary S_ISLNK test, as (contra the comments) this
27 function can't copy symlinks. Improve quality of error message
28 when attempting to copy files that are neither regular files nor
29 directories.
30
31 2012-12-12 Dmitry Antipov <dmantipov@yandex.ru>
32
33 * dispnew.c (set_window_cursor_after_update): Use clip_to_bounds.
34 * gtkutil.c (xg_set_toolkit_scroll_bar_thumb):
35 * window.c (Frecenter):
36 * xdisp.c (resize_mini_window, hscroll_window_tree, draw_glyphs):
37 * xterm.c (x_set_toolkit_scroll_bar_thumb): Likewise.
38
39 2012-12-12 Daniel Colascione <dancol@dancol.org>
40
41 * unexcw.c (fixup_executable): use posix_fallocate to ensure that
42 the dumped Emacs is not a sparse file, greatly improving Cygwin
43 "make bootstrap" performance.
44
45 2012-12-11 Michael Albinus <michael.albinus@gmx.de>
46
47 * inotify.c (inotify_callback): Generate an Emacs event for every
48 incoming inotify event.
49
50 2012-12-11 Eli Zaretskii <eliz@gnu.org>
51
52 * xdisp.c (handle_face_prop): Fix logic of computing
53 it->start_of_box_run_p.
54 (append_space_for_newline): If the glyph row is R2L, reset the
55 iterator's end_of_box_run_p flag before prepending the space glyph.
56 (extend_face_to_end_of_line): If the glyph row is R2L, reset the
57 iterator's start_of_box_run_p flag before prepending the stretch.
58 (append_glyph, produce_image_glyph, append_composite_glyph)
59 (append_stretch_glyph, append_glyphless_glyph): Reverse the
60 left_box_line_p and right_box_line_p flags of the glyph for R2L
61 glyph rows. (Bug#13011)
62
63 2012-12-11 Dmitry Antipov <dmantipov@yandex.ru>
64
65 * buffer.c (Fset_buffer_multibyte): Do not force redisplay
66 if changed buffer is not shown in a window.
67 * insdel.c (prepare_to_modify_buffer): Likewise.
68 * window.c (replace_buffer_in_windows_safely): Do nothing
69 if buffer is not shown in a window.
70 (Fforce_window_update): Likewise if string or buffer argument
71 is passed.
72
73 2012-12-11 Eli Zaretskii <eliz@gnu.org>
74
75 * inotify.c (Finotify_add_watch): Rename decoded_file_name to
76 encoded_file_name, which is what it is.
77
78 2012-12-11 Dmitry Antipov <dmantipov@yandex.ru>
79
80 Consistently use marker_position and marker_byte_position.
81 * fringe.c (Ffringe_bitmaps_at_pos):
82 * indent.c (Fvertical_motion):
83 * insdel.c (prepare_to_modify_buffer):
84 * keyboard.c (make_lispy_position):
85 * window.c (Fwindow_end, Fpos_visible_in_window_p, unshow_buffer)
86 (window_scroll_pixel_based, displayed_window_lines)
87 (Fset_window_configuration):
88 * xdisp.c (message_dolog, with_echo_area_buffer_unwind_data)
89 (mark_window_display_accurate_1, redisplay_window, decode_mode_spec):
90 Replace direct access to marker fields with calls
91 to marker_position and/or marker_byte_position.
92
93 2012-12-11 Juanma Barranquero <lekktu@gmail.com>
94
95 * makefile.w32-in (SIG2STR_H): New macro.
96 (SYSWAIT_H, $(BLD)/emacs.$(O), $(BLD)/process.$(O))
97 ($(BLD)/w32notify.$(O)): Update dependencies.
98
99 2012-12-10 Daniel Colascione <dancol@dancol.org>
100
101 * w32term.c, keyboard.c: Fix build break in cygw32 by omitting
102 Windows file notification functionality unless WINDOWSNT.
103
104 * w32gui.h (hprevinst, lpCmdLine, nCmdShow): Remove unused
105 declarations.
106
107 * w32fns.c (cache_system_info): Initialize the global hinst
108 variable here so various initialization calls DTRT.
109
110 * unexw32.c (hprevinst, lpCmdLine, nCmdShow): Remove unused
111 variables.
112 (hinst): Remove unneeded extern declaration.
113 (_start): Remove initialization of above variables; remove
114 initialization of hinst, as cache_system_info now does that.
115
116 * emacs.c (main): Call cache_system_info early in startup; we
117 previously weren't calling it in Cygwin builds.
118
119 * Makefile.in (ntsource, WINDRES, W32_RES, W#@_RES_LINK): Teach
120 the autoconf build system how to compile a Windows resource file
121 and link it to Emacs.
122
123 2012-12-10 Dmitry Antipov <dmantipov@yandex.ru>
124
125 Per-buffer window counters.
126 * buffer.h (struct buffer): New member window_count.
127 (buffer_window_count): New function.
128 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
129 Initialize window_count.
130 (Fkill_buffer): Verify window_count for the buffer being killed.
131 (modify_overlay): Do not force redisplay if buffer is not shown
132 in any window.
133 (init_buffer_once): Initialize window_count for buffer_defaults
134 and buffer_local_symbols.
135 * window.h (buffer_shared): Remove declaration.
136 (wset_buffer): Convert from inline ...
137 * window.c (wset_buffer): ... to an ordinary function.
138 (adjust_window_count): New function.
139 (make_parent_window): Use it.
140 * xdisp.c (buffer_shared): Remove.
141 (redisplay_internal, redisplay_window): Adjust users.
142 (buffer_shared_and_changed): Use per-buffer window counter.
143
144 2012-12-10 Eli Zaretskii <eliz@gnu.org>
145
146 Support for filesystem notifications on MS-Windows.
147 * w32proc.c (sys_select): If drain_message_queue returns non-zero,
148 and this is a TTY frame, signal the caller that keyboard input is
149 available.
150
151 * w32xfns.c (drain_message_queue): Now returns an int: an
152 indication whether any WM_EMACS_FILENOTIFY messages were found in
153 the queue.
154
155 * w32inevt.c (handle_file_notifications): New function.
156 (w32_console_read_socket): Call it to process file notifications.
157
158 * w32console.c (initialize_w32_display): Record the main thread ID
159 in dwMainThreadId.
160
161 * deps.mk (inotify.o): New dependency list.
162
163 * Makefile.in (SOME_MACHINE_OBJECTS): Add w32notify.o.
164
165 * w32term.h (WM_EMACS_FILENOTIFY): New custom message.
166 (WM_EMACS_END): Bump value by 1.
167 (notification_buffer_in_use, file_notifications)
168 (notifications_size, notifications_desc): Declare.
169 (w32_get_watch_object, lispy_file_action, globals_of_w32notify):
170 Add prototypes.
171
172 * w32term.c (lispy_file_action, queue_notifications): New functions.
173 (syms_of_w32term) <Qadded, Qremoved, Qmodified, Qrenamed_from>
174 <Qrenamed_to>: New symbols.
175 (w32_read_socket): Handle the WM_EMACS_FILENOTIFY message.
176
177 * w32notify.c: New file, implements file event notifications for
178 MS-Windows.
179
180 * w32fns.c (w32_wnd_proc): Handle the WM_EMACS_FILENOTIFY message
181 by posting it to the w32_read_socket queue.
182
183 * termhooks.h (enum event_kind) [HAVE_NTGUI]: Support
184 FILE_NOTIFY_EVENT.
185
186 * makefile.w32-in (OBJ2): Add $(BLD)/w32notify.$(O).
187 (GLOBAL_SOURCES): Add w32notify.c
188 ($(BLD)/w32notify.$(O)): New set of dependencies.
189
190 * lisp.h (syms_of_w32notify) [WINDOWSNT]: Add prototype.
191
192 * keyboard.c (kbd_buffer_get_event) [WINDOWSNT]: Handle
193 FILE_NOTIFY_EVENT.
194 (syms_of_keyboard) [HAVE_NTGUI] <Qfile_notify>: New symbol.
195 (keys_of_keyboard) [WINDOWSNT]: Bind file-notify to
196 w32notify-handle-event by default.
197
198 * emacs.c (main) [WINDOWSNT]: Call globals_of_w32notify and
199 syms_of_w32notify.
200
201 2012-12-10 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
202
203 Support for filesystem notifications on GNU/Linux via inotify.
204 * termhooks.h (enum event_kind) [HAVE_INOTIFY]: Add
205 FILE_NOTIFY_EVENT.
206
207 * lisp.h (syms_of_inotify) [HAVE_INOTIFY]: Add prototype.
208
209 * keyboard.c (Qfile_inotify) [HAVE_INOTIFY]: New variable.
210 (syms_of_keyboard): DEFSYM it.
211 (kbd_buffer_get_event) [HAVE_INOTIFY]: Generate FILE_NOTIFY_EVENT.
212 (make_lispy_event): Support FILE_NOTIFY_EVENT by generating
213 Qfile_inotify events.
214 (keys_of_keyboard) [HAVE_INOTIFY]: Bind file-inotify events in
215 special-event-map to inotify-handle-event.
216
217 * emacs.c (main) [HAVE_INOTIFY]: Call syms_of_inotify.
218
219 * Makefile.in (base_obj): Add inotify.o.
220
221 * inotify.c: New file.
222
223 2012-12-10 Jan Djärv <jan.h.d@swipnet.se>
224
225 * nsterm.m (fd_handler:): FD_ZERO fds (Bug#13103).
226
227 2012-12-10 Fabrice Popineau <fabrice.popineau@gmail.com>
228
229 * w32fns.c (cache_system_info): Cast sysinfo_cache.dwPageSize to
230 DWORD_PTR, for compatibility with 64-bit builds.
231
232 * w32.c (_PROCESS_MEMORY_COUNTERS_EX):
233 (GetProcessWorkingSetSize_Proc, get_process_working_set_size)
234 (system_process_attributes): Use SIZE_T rather than DWORD, for
235 compatibility with 64-bit builds.
236
237 2012-12-10 Christopher Schmidt <christopher@ch.ristopher.com>
238
239 * lread.c (Vload_source_file_function): Doc fix (Bug#11647).
240
241 2012-12-10 Eli Zaretskii <eliz@gnu.org>
242
243 * indent.c (Fvertical_motion): If a display string will be
244 displayed on the left or the right margin, don't consider it as a
245 factor in cursor positioning. (Bug#13108)
246
247 2012-12-10 Martin Rudalics <rudalics@gmx.at>
248
249 * editfns.c (Fcompare_buffer_substrings): Reword doc-string.
250
251 2012-12-10 Paul Eggert <eggert@cs.ucla.edu>
252
253 * fileio.c (Fsubstitute_in_file_name): Use ptrdiff_t, not int,
254 for string length.
255
256 2012-12-08 Eli Zaretskii <eliz@gnu.org>
257
258 * w32.c (unsetenv): Return 0 if the input string is too long.
259
260 2012-12-08 Paul Eggert <eggert@cs.ucla.edu>
261
262 Use putenv+unsetenv instead of modifying environ directly (Bug#13070).
263 * alloc.c (xputenv): New function.
264 * dbusbind.c (Fdbus_init_bus):
265 * emacs.c (main):
266 * xterm.c (x_term_init):
267 Use xputenv instead of setenv or putenv, to detect memory exhaustion.
268 * editfns.c (initial_tz): Move static var decl up.
269 (tzvalbuf_in_environ): New static var.
270 (init_editfns): Initialize these two static vars.
271 (Fencode_time): Don't assume arbitrary limit on EMACS_INT width.
272 Save old TZ value on stack, if it's small.
273 (Fencode_time, set_time_zone_rule): Don't modify 'environ' directly;
274 instead, use xputenv+unsetenv to set and restore TZ.
275 (environbuf): Remove static var. All uses removed.
276 (Fset_time_zone_rule): Do not save TZ and environ;
277 no longer needed here.
278 (set_time_zone_rule_tz1, set_time_zone_rule_tz2) [LOCALTIME_CACHE]:
279 Move to inside set_time_zone_rule; they don't need file scope any more.
280 (set_time_zone_rule): Maintain the TZ=value string separately.
281 (syms_of_editfns): Don't initialize initial_tz;
282 init_editfns now does it.
283 * emacs.c (dump_tz) [HAVE_TZSET]: Now const.
284 * lisp.h (xputenv): New decl.
285
286 2012-12-08 Fabrice Popineau <fabrice.popineau@gmail.com>
287
288 * w32fns.c (emacs_abort): Don't do arithmetics on void pointers.
289
290 2012-12-08 Eli Zaretskii <eliz@gnu.org>
291
292 * w32.c (unsetenv, sys_putenv): New functions.
293
294 2012-12-08 Chong Yidong <cyd@gnu.org>
295
296 * editfns.c (Finsert_char): Make the error message more
297 informative (Bug#12992).
298
299 2012-12-08 Paul Eggert <eggert@cs.ucla.edu>
300
301 Simplify get_lim_data.
302 * vm-limit.c (get_lim_data): Combine RLIMIT_AS and RLIMIT_DATA methods.
303 Remove USG and vlimit methods; no longer used these days.
304 Add #error catchall just in case.
305
306 Assume POSIX 1003.1-1988 or later for signal.h (Bug#13026).
307 Exceptions: do not assume SIGCONT, SIGSTOP, SIGTSTP, SIGTTIN,
308 SIGTTOU, SIGUSR1, SIGUSR2, as Microsoft platforms lack these.
309 * process.c [subprocesses]: Include <c-ctype.h>, <sig2str.h>.
310 (deleted_pid_list, Fdelete_process, create_process)
311 (record_child_status_change, handle_child_signal, deliver_child_signal)
312 (init_process_emacs, syms_of_process):
313 Assume SIGCHLD is defined.
314 (parse_signal): Remove. All uses removed.
315 (abbr_to_signal): New static function.
316 (Fsignal_process): Use it to convert signal names to ints.
317 * sysdep.c (sys_suspend) [!DOS_NT]: Use kill (0, ...) rather than
318 kill (getpgrp (), ...).
319 (emacs_sigaction_init): Assume SIGCHLD is defined.
320 (init_signals): Assume SIGALRM, SIGCHLD, SIGHUP, SIGKILL,
321 SIGPIPE, and SIGQUIT are defined. Do not worry about SIGCLD any more.
322 * syssignal.h (EMACS_KILLPG): Remove.
323 All uses replaced by 'kill' with a negative pid.
324 (SIGCHLD): Remove definition, as we now assume SIGCHLD.
325 * w32proc.c (sys_kill): Support negative pids compatibly with POSIX.
326
327 2012-12-07 Paul Eggert <eggert@cs.ucla.edu>
328
329 * sysdep.c (get_child_status): Abort on internal error (Bug#13086).
330 This will cause a production Emacs to dump core instead of
331 infinite-looping.
332
333 2012-12-07 Dmitry Antipov <dmantipov@yandex.ru>
334
335 * frame.c (make_frame): Do not set window's buffer to t.
336 * window.c (Fsplit_window_internal): Likewise. Previously it was
337 used to indicate that the window is being set up. Now we use
338 set_window_buffer for all new windows, so the condition in ...
339 (Fset_window_buffer): ... is always true and can be removed.
340
341 2012-12-07 Dmitry Antipov <dmantipov@yandex.ru>
342
343 Convenient macro to check whether the buffer is hidden.
344 * buffer.h (BUFFER_HIDDEN_P): New macro.
345 * frame.c (make_frame): Use it. Adjust comment.
346 * buffer.c (candidate_buffer): New function.
347 (Fother_buffer, other_buffer_safely): Use it.
348
349 2012-12-06 Eli Zaretskii <eliz@gnu.org>
350
351 * w32proc.c (waitpid): Avoid busy-waiting when called with WNOHANG
352 if the child process is still running. Instead, exit the wait
353 loop and return zero. (Bug#13086)
354
355 2012-12-06 Dmitry Antipov <dmantipov@yandex.ru>
356
357 * frame.h (x_char_width, x_char_height): Remove prototypes.
358 * w32term.h (x_char_width, x_char_height): Likewise.
359 * xfns.c (x_char_width, x_char_height): Remove.
360 * w32fns.c (x_char_width, x_char_height): Likewise.
361 * nsfns.c (x_char_width, x_char_height): Likewise.
362 * frame.c (Fframe_char_width): Use FRAME_COLUMN_WIDTH for
363 all window frames.
364 (Fframe_char_height): Likewise with FRAME_LINE_HEIGHT.
365 * keyboard.c (command_loop_1): Remove prototype.
366 (command_loop_2, top_level_1): Add static to match prototype.
367
368 2012-12-06 Paul Eggert <eggert@cs.ucla.edu>
369
370 Fix a recently-introduced delete-process race condition.
371 * callproc.c, process.h (record_kill_process):
372 New function, containing part of the old call_process_kill.
373 (call_process_kill): Use it.
374 This does not change call_process_kill's behavior.
375 * process.c (Fdelete_process): Use record_kill_process to fix a
376 race condition that could cause Emacs to lose track of a child.
377
378 2012-12-06 Dmitry Antipov <dmantipov@yandex.ru>
379
380 Avoid code duplication between prev_frame and next_frame.
381 * frame.c (candidate_frame): New function. Add comment.
382 (prev_frame, next_frame): Use it. Adjust comment.
383
384 2012-12-06 Eli Zaretskii <eliz@gnu.org>
385
386 * callproc.c (Fcall_process_region) [!HAVE_MKSTEMP]: If mktemp
387 fails, signal an error instead of continuing with an empty
388 string. (Bug#13079)
389 Encode expanded temp file pattern before passing it to mkstemp or
390 mktemp.
391
392 * fileio.c (file_name_as_directory, directory_file_name) [DOS_NT]:
393 Encode the file name before passing it to dostounix_filename, in
394 case it will downcase it (under w32-downcase-file-names).
395 (Bug#12933)
396
397 2012-12-05 Paul Eggert <eggert@cs.ucla.edu>
398
399 Minor call-process cleanups.
400 * callproc.c (Fcall_process): Do record-unwind-protect on MSDOS
401 at the same time as other platforms, to simplify analysis.
402 No need for fd0_volatile since we have synch_process_fd.
403 Avoid needless emacs_close; arg is always negative.
404
405 2012-12-04 Andreas Schwab <schwab@linux-m68k.org>
406
407 * callproc.c (Fcall_process): Fix specpdl nesting for asynchronous
408 processes.
409
410 2012-12-04 Dmitry Antipov <dmantipov@yandex.ru>
411
412 * lisp.h (Mouse_HLInfo): Remove set-but-unused mouse_face_image_state
413 member. Adjust users. Convert mouse_face_past_end, mouse_face_defer
414 and mouse_face_hidden members to a bitfields.
415 * frame.h (struct frame): Remove set-but-not-used space_width member.
416 (FRAME_SPACE_WIDTH): Remove.
417 * nsterm.m, w32term.c, xterm.c: Adjust users.
418 * termchar.h (struct tty_display_info): Remove set-but-unused se_is_so
419 member. Adjust users. Convert term_initted, delete_in_insert_mode,
420 costs_set, insert_mode, standout_mode, cursor_hidden and flow_control
421 members to a bitfields.
422
423 2012-12-03 Paul Eggert <eggert@cs.ucla.edu>
424
425 Don't let call-process be a zombie factory (Bug#12980).
426 Fixing this bug required some cleanup of the signal-handling code.
427 As a side effect, this change also fixes a longstanding rare race
428 condition whereby Emacs could mistakenly kill unrelated processes,
429 and it fixes a bug where a second C-g does not kill a recalcitrant
430 synchronous process in GNU/Linux and similar platforms.
431 The patch should also fix the last vestiges of Bug#9488,
432 a bug which has mostly been fixed on the trunk by other changes.
433 * callproc.c, process.h (synch_process_alive, synch_process_death)
434 (synch_process_termsig, sync_process_retcode):
435 Remove. All uses removed, to simplify analysis and so that
436 less consing is done inside critical sections.
437 * callproc.c (call_process_exited): Remove. All uses replaced
438 with !synch_process_pid.
439 * callproc.c (synch_process_pid, synch_process_fd): New static vars.
440 These take the role of what used to be in unwind-protect arg.
441 All uses changed.
442 (block_child_signal, unblock_child_signal):
443 New functions, to avoid races that could kill innocent-victim processes.
444 (call_process_kill, call_process_cleanup, Fcall_process): Use them.
445 (call_process_kill): Record killed processes as deleted, so that
446 zombies do not clutter up the system. Do this inside a critical
447 section, to avoid a race that would allow the clutter.
448 (call_process_cleanup): Fix code so that the second C-g works again
449 on common platforms such as GNU/Linux.
450 (Fcall_process): Create the child process in a critical section,
451 to fix a race condition. If creating an asynchronous process,
452 record it as deleted so that zombies do not clutter up the system.
453 Do unwind-protect for WINDOWSNT too, as that's simpler in the
454 light of these changes. Omit unnecessary call to emacs_close
455 before failure, as the unwind-protect code does that.
456 * callproc.c (call_process_cleanup):
457 * w32proc.c (waitpid): Simplify now that synch_process_alive is gone.
458 * process.c (record_deleted_pid): New function, containing
459 code refactored out of Fdelete_process.
460 (Fdelete_process): Use it.
461 (process_status_retrieved): Remove. All callers changed to use
462 child_status_change.
463 (record_child_status_change): Remove, folding its contents into ...
464 (handle_child_signal): ... this signal handler. Now, this
465 function is purely a handler for SIGCHLD, and is not called after
466 a synchronous waitpid returns; the synchronous code is moved to
467 wait_for_termination. There is no need to worry about reaping
468 more than one child now.
469 * sysdep.c (get_child_status, child_status_changed): New functions.
470 (wait_for_termination): Now takes int * status and bool
471 interruptible arguments, too. Do not record child status change;
472 that's now the caller's responsibility. All callers changed.
473 Reimplement in terms of get_child_status.
474 (wait_for_termination_1, interruptible_wait_for_termination):
475 Remove. All callers changed to use wait_for_termination.
476 * syswait.h: Include <stdbool.h>, for bool.
477 (record_child_status_change, interruptible_wait_for_termination):
478 Remove decls.
479 (record_deleted_pid, child_status_changed): New decls.
480 (wait_for_termination): Adjust to API changes noted above.
481
482 * bytecode.c, lisp.h (Qbytecode): Remove.
483 No longer needed after 2012-11-20 interactive-p changes.
484
485 2012-12-03 Eli Zaretskii <eliz@gnu.org>
486
487 * xdisp.c (redisplay_window): If the cursor is visible, but inside
488 the scroll margin, move point outside the margin. (Bug#13055)
489
490 2012-12-03 Jan Djärv <jan.h.d@swipnet.se>
491
492 * gtkutil.c (my_log_handler): New function.
493 (xg_set_geometry): Set log handler to my_log_handler (Bug#11177).
494
495 2012-12-03 Dmitry Antipov <dmantipov@yandex.ru>
496
497 * lisp.h (modify_region): Rename to...
498 (modify_region_1): ...new prototype.
499 * textprop.c (modify_region): Now static. Adjust users.
500 * insdel.c (modify_region): Rename to...
501 (modify_region_1): ...new function to work with current buffer.
502 Adjust comment and users. Use true and false for booleans.
503
504 2012-12-03 Dmitry Antipov <dmantipov@yandex.ru>
505
506 * alloc.c (free_save_value): New function.
507 (safe_alloca_unwind): Use it.
508 * lisp.h (free_save_value): New prototype.
509 * editfns.c (save_excursion_save): Use Lisp_Misc_Save_Value.
510 Add comment.
511 (save_excursion_restore): Adjust to match saved data structure.
512 Use free_save_value to offload some work from GC. Drop obsolete
513 #if 0 code.
514
515 2012-12-03 Chong Yidong <cyd@gnu.org>
516
517 * fileio.c (Vauto_save_list_file_name): Doc fix.
518
519 2012-12-03 Fabrice Popineau <fabrice.popineau@gmail.com>
520
521 * w32fns.c: Remove prototype of atof.
522 (syspage_mask): Declared DWORD_PTR, for compatibility with 64-bit
523 builds.
524 (file_dialog_callback): Declared UINT_PTR.
525
526 * w32common.h (syspage_mask): Declare DWORD_PTR, for compatibility
527 with 64-bit builds.
528
529 * w32.c (FILE_DEVICE_FILE_SYSTEM, METHOD_BUFFERED)
530 (FILE_ANY_ACCESS, CTL_CODE) [_MSC_VER]: Define only if not already
531 defined.
532
533 2012-12-03 Glenn Morris <rgm@gnu.org>
534
535 * data.c (Fboundp, Fsymbol_value): Doc fix re lexical-binding.
536
537 2012-12-02 Paul Eggert <eggert@cs.ucla.edu>
538
539 Fix xpalloc confusion after memory is exhausted.
540 * alloc.c (xpalloc): Comment fix.
541 * charset.c (Fdefine_charset_internal): If xpalloc exhausts memory
542 and signals an error, do not clear charset_table_size, as
543 charset_table is still valid.
544 * doprnt.c (evxprintf): Clear *BUF after freeing it.
545
546 Use execve to avoid need to munge environ (Bug#13054).
547 * callproc.c (Fcall_process):
548 * process.c (create_process):
549 Don't save and restore environ; no longer needed.
550 * callproc.c (child_setup):
551 Use execve, not execvp, to preserve environ.
552
553 2012-12-01 Paul Eggert <eggert@cs.ucla.edu>
554
555 * xterm.c (x_draw_image_relief): Remove unused locals (Bug#10500).
556
557 2012-12-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
558
559 * xterm.c (x_draw_relief_rect, x_draw_image_relief): Fix relief
560 display for sliced images (Bug#10500).
561
562 * w32term.c (w32_draw_relief_rect, x_draw_image_relief): Likewise.
563
564 2012-11-30 Juanma Barranquero <lekktu@gmail.com>
565
566 * doc.c (Fdocumentation): Re-add handling of function-documentation,
567 accidentally removed in 2012-11-09T04:10:16Z!monnier@iro.umontreal.ca (bug#13034).
568
569 2012-11-29 Dmitry Antipov <dmantipov@yandex.ru>
570
571 * xdisp.c (window_outdated): Remove eassert since it hits
572 some suspicious corner cases (see Bug#13007 and Bug#13012).
573 (mode_line_update_needed): New function.
574 (redisplay_internal, redisplay_window): Use it.
575 (ensure_selected_frame): New function.
576 (redisplay_internal, unwind_redisplay): Use it.
577 (redisplay_internal): Move comment about buffer_shared...
578 (buffer_shared_and_changed): ...near to its real use.
579
580 2012-11-29 Paul Eggert <eggert@cs.ucla.edu>
581
582 * callproc.c (Fcall_process): Don't misreport vfork failure.
583
584 2012-11-28 Paul Eggert <eggert@cs.ucla.edu>
585
586 * callproc.c (Fcall_process): Fix vfork portability problems.
587 Do not assume that fd[0], count, filefd, and save_environ survive
588 vfork. Fix bug whereby wrong errno value could be reported for
589 pipe failure. Some minor cleanups, too, as follows. Move buf and
590 bufsize to the context where they're needed. Change new_argv to
591 be of type char **, as this is more convenient and avoids casts.
592 (CALLPROC_BUFFER_SIZE_MIN, CALLPROC_BUFFER_SIZE_MAX):
593 Now local constants, not macros.
594
595 2012-11-18 Kenichi Handa <handa@gnu.org>
596
597 * font.c (font_unparse_xlfd): Fix previous change. Keep "const"
598 for the variable "f".
599
600 2012-11-13 Kenichi Handa <handa@gnu.org>
601
602 * font.c (font_unparse_xlfd): Exclude special characters from the
603 generating XLFD name.
604
605 2012-11-27 Paul Eggert <eggert@cs.ucla.edu>
606
607 Assume POSIX 1003.1-1988 or later for grp.h, pwd.h.
608 * dired.c (stat_uname, stat_gname):
609 * fileio.c (Fexpand_file_name): Remove no-longer-needed casts.
610
611 Assume POSIX 1003.1-1988 or later for errno.h (Bug#12968).
612 * dired.c (directory_files_internal, file_name_completion):
613 Assume EAGAIN and EINTR are defined.
614
615 * fileio.c (Fcopy_file): Assume EISDIR is defined.
616 * gmalloc.c (ENOMEM, EINVAL): Assume they're defined.
617 * gnutls.c (emacs_gnutls_write): Assume EAGAIN is defined.
618 * lread.c (readbyte_from_file): Assume EINTR is defined.
619 * process.c (wait_reading_process_output, send_process) [subprocesses]:
620 Assume EIO and EAGAIN are defined.
621 * unexcoff.c (write_segment): Assume EFAULT is defined.
622
623 2012-11-27 Eli Zaretskii <eliz@gnu.org>
624
625 * fontset.c (Finternal_char_font): Return nil on non-GUI frames.
626 (Bug#11964)
627
628 * xdisp.c (draw_glyphs): Don't draw in mouse face if mouse
629 highlighting on the frame was cleared. Prevents assertion
630 violations when repeatedly clicking on the "Top" link of the
631 "bread-crumbs" in Info buffers.
632
633 2012-11-25 Paul Eggert <eggert@cs.ucla.edu>
634
635 * sysdep.c (sys_subshell): Don't assume pid_t fits in int.
636
637 2012-11-24 Ken Brown <kbrown@cornell.edu>
638
639 * keyboard.c (HAVE_MOUSE):
640 * frame.c (HAVE_MOUSE): Remove, and rewrite code as if HAVE_MOUSE
641 were always defined.
642
643 2012-11-24 Eli Zaretskii <eliz@gnu.org>
644
645 * xdisp.c (set_cursor_from_row): Skip step 2 only if point is not
646 between bpos_covered and bpos_max. This fixes cursor display when
647 several display strings follow each other.
648
649 * .gdbinit (pgx): If the glyph's object is a string, display the
650 pointer to string data, rather than the value of the string object
651 itself (which barfs under CHECK_LISP_OBJECT_TYPE).
652
653 * indent.c (Fvertical_motion): If the starting position is covered
654 by a display string, return to one position before that, to avoid
655 overshooting it inside move_it_to. (Bug#12930)
656
657 2012-11-23 Dmitry Antipov <dmantipov@yandex.ru>
658
659 * frame.h (struct frame): Remove display_preempted member
660 since all users are dead long ago.
661 * nsterm.h (struct x_output): Use the only dummy member.
662 * w32menu.c (pending_menu_activation): Remove since not
663 really used.
664 (set_frame_menubar): Adjust user.
665 * w32term.h (struct x_output): Drop outdated #if 0 code.
666 (struct w32_output): Use bitfields for explicit_parent,
667 asked_for_visible and menubar_active members. Drop
668 unused pending_menu_activation member.
669 * xterm.h (struct x_output): Drop outdated #if 0 code.
670 Use bitfields for explicit_parent, asked_for_visible,
671 has_been_visible and net_wm_state_hidden_seen members.
672
673 2012-11-23 Eli Zaretskii <eliz@gnu.org>
674
675 * makefile.w32-in (globals.h, gl-stamp): Use $(SWITCHCHAR) instead
676 of a literal "/". (Bug#12955)
677 (gl-stamp): Invoke fc.exe directly, not through cmd.
678
679 2012-11-23 Paul Eggert <eggert@cs.ucla.edu>
680
681 Assume POSIX 1003.1-1988 or later for dirent.h (Bug#12958).
682 * dired.c: Assume HAVE_DIRENT_H.
683 (NAMLEN): Remove, replacing with ...
684 (dirent_namelen): New function. All uses changed. Use the GNU macro
685 _D_EXACT_NAMELEN if available, as it's faster than strlen.
686 (DIRENTRY): Remove, replacing all uses with 'struct dirent'.
687 (DIRENTRY_NONEMPTY): Remove. All callers now assume it's nonzero.
688 * makefile.w32-in (DIR_H): Remove. All uses replaced with
689 $(NT_INC)/dirent.h.
690 ($(BLD)/w32.$(O)): Do not depend on $(SRC)/ndir.h.
691 * ndir.h: Rename to ../nt/inc/dirent.h.
692 * sysdep.h (closedir) [!HAVE_CLOSEDIR]: Remove.
693 Do not include <dirent.h>; no longer needed.
694 * w32.c: Include <dirent.h> rather than "ndir.h".
695
696 2012-11-23 Chong Yidong <cyd@gnu.org>
697
698 * xftfont.c (xftfont_open): Remove duplicate assignment.
699
700 2012-11-22 Dmitry Antipov <dmantipov@yandex.ru>
701
702 * alloc.c (Fgarbage_collect): Unblock input after clearing
703 gc_in_progress to avoid note_mouse_highlight glitch with GC.
704 * frame.h (FRAME_MOUSE_UPDATE): New macro.
705 * msdos.c (IT_frame_up_to_date): Use it here...
706 * w32term.c (w32_frame_up_to_date): ...here...
707 * xterm.c (XTframe_up_to_date): ...and here...
708 * nsterm.m (ns_frame_up_to_date): ...but not here.
709 * lisp.h (Mouse_HLInfo): Remove mouse_face_deferred_gc member.
710 Adjust users.
711 * xdisp.c (message2_nolog, message3_nolog, note_mouse_highlight):
712 Do not check whether GC is in progress.
713
714 2012-11-22 Dmitry Antipov <dmantipov@yandex.ru>
715
716 * xdisp.c (window_buffer_changed): New function.
717 (update_menu_bar, update_tool_bar): Use it to
718 simplify large 'if' statements.
719 (redisplay_internal): Generalize commonly used
720 'tail' and 'frame' local variables.
721
722 2012-11-22 Eli Zaretskii <eliz@gnu.org>
723
724 * w32.c (getcwd): Fix the 2nd argument type, to prevent conflicts
725 with Windows system header.
726
727 2012-11-21 Paul Eggert <eggert@cs.ucla.edu>
728
729 Assume POSIX 1003.1-1988 or later for unistd.h (Bug#12945).
730 * alloc.c: Assume unistd.h exists.
731 * fileio.c (Fexpand_file_name) [DOS_NT]: Use getcwd, not getwd.
732 * sysdep.c (get_current_dir_name): Assume getcwd exists.
733 (getwd) [USG]: Remove; no longer needed.
734 (sys_subshell) [DOS_NT]: Use getcwd, not getwd.
735 * w32.c (getcwd): Rename from getwd, and switch to getcwd's API.
736 * w32.h (getcwd): Remove decl.
737
738 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
739
740 * xdisp.c (fast_set_selected_frame): Rename from update_tool_bar_unwind.
741 Make it set selected_window as well.
742 (update_tool_bar): Use it.
743
744 2012-11-21 Ken Brown <kbrown@cornell.edu>
745
746 * emacs.c (main): Set the G_SLICE environment variable for all
747 Cygwin builds, not just GTK builds. See
748 https://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00368.html.
749
750 2012-11-21 Eli Zaretskii <eliz@gnu.org>
751
752 * w32.c (FILE_DEVICE_FILE_SYSTEM, METHOD_BUFFERED)
753 (FILE_ANY_ACCESS, CTL_CODE, FSCTL_GET_REPARSE_POINT) [_MSC_VER]:
754 Define for the MSVC compiler.
755
756 * w32term.h (EnumSystemLocalesW) [_MSC_VER]: Add a missing semi-colon.
757
758 * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
759 (Fexpand_file_name) [DOS_NT]: Pass encoded file name to
760 dostounix_filename. Prevents crashes down the road, because
761 dostounix_filename assumes it gets a unibyte string. Reported by
762 Michel de Ruiter <michel@sentient.nl>, see
763 http://lists.gnu.org/archive/html/help-emacs-windows/2012-11/msg00017.html
764
765 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
766
767 Conflate Qnil and Qunbound for `symbol-function'.
768 * alloc.c (Fmake_symbol): Initialize `function' to Qnil.
769 * lread.c (init_obarray): Set `function' fields to Qnil.
770 * eval.c (Fcommandp): Ignore Qunbound.
771 (Fautoload, eval_sub, Fapply, Ffuncall, Fmacroexpand):
772 * data.c (Ffset, Ffboundp, indirect_function, Findirect_function):
773 Test NILP rather than Qunbound.
774 (Ffmakunbound): Set to Qnil.
775 (Fsymbol_function): Never signal an error.
776 (Finteractive_form): Ignore Qunbound.
777
778 2012-11-20 Paul Eggert <eggert@cs.ucla.edu>
779
780 * eval.c (interactive_p): Remove no-longer-used decl.
781
782 2012-11-20 Dmitry Antipov <dmantipov@yandex.ru>
783
784 * xdisp.c (buffer_shared): Adjust comment.
785 (buffer_shared_and_changed): New function.
786 (prepare_menu_bars, redisplay_internal): Use it to
787 decide whether all windows or frames should be updated.
788 (window_outdated): New function.
789 (text_outside_line_unchanged_p, redisplay_window): Use it.
790 (redisplay_internal): Likewise. Fix indentation.
791
792 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
793
794 * eval.c (Finteractive_p, Fcalled_interactively_p, interactive_p): Remove.
795 (syms_of_eval): Remove corresponding defsubr.
796 * bytecode.c (exec_byte_code): `interactive-p' is now a Lisp function.
797
798 2012-11-19 Daniel Colascione <dancol@dancol.org>
799
800 * w32fns.c (Fx_file_dialog):
801 (Fx_file_dialog): Accomodate rename of cygwin_convert_path* to
802 cygwin_convert_file_name*.
803
804 * cygw32.c (Fcygwin_convert_path_to_windows, syms_of_cygw32):
805 Rename cygwin_convert_path* to cygwin_convert_file_name*.
806
807 2012-11-18 Paul Eggert <eggert@cs.ucla.edu>
808
809 * nsterm.m (ns_select): Send SIGIO only to self, not to process group.
810
811 2012-11-18 Eli Zaretskii <eliz@gnu.org>
812
813 * w32select.c: Include w32common.h before w32term.h, so that
814 windows.h gets included before w32term.h uses some of its
815 features, see below.
816
817 * w32term.h (LOCALE_ENUMPROCA, LOCALE_ENUMPROCW) [_MSC_VER]:
818 New typedefs.
819 (EnumSystemLocalesA, EnumSystemLocalesW) [_MSC_VER]:
820 New prototypes.
821 (EnumSystemLocales) [_MSC_VER]: Define if undefined. (Bug#12878)
822
823 2012-11-18 Jan Djärv <jan.h.d@swipnet.se>
824
825 * nsterm.m (hold_event): Set send_appdefined to YES (Bug#12834).
826 (ns_select): Return at once if events are held (Bug#12834).
827
828 2012-11-18 enami tsugutomo <tsugutomo.enami@jp.sony.com>
829
830 * unexelf.c (ELFSIZE) [__NetBSD__ && _LP64]: Set to 64.
831 Needed following 2012-10-20 change. (Bug#12902)
832
833 2012-11-18 Juanma Barranquero <lekktu@gmail.com>
834
835 * w32proc.c (waitpid): Remove unused label get_result.
836
837 2012-11-17 Juanma Barranquero <lekktu@gmail.com>
838
839 * makefile.w32-in (SYSWAIT_H): New macro.
840 ($(BLD)/callproc.$(O), $(BLD)/w32proc.$(O), $(BLD)/process.$(O))
841 ($(BLD)/sysdep.$(O)): Update dependencies.
842
843 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
844
845 Assume POSIX 1003.1-1988 or later for fcntl.h (Bug#12881).
846 * callproc.c (relocate_fd): Assume F_DUPFD.
847 * emacs.c, term.c (O_RDWR): Remove.
848 * keyboard.c (tty_read_avail_input): Use O_NONBLOCK rather than
849 O_NDELAY, since O_NONBLOCK is the standard name for this flag.
850 * nsterm.m: Assume <fcntl.h> exists.
851 * process.c (NON_BLOCKING_CONNECT, allocate_pty, create_process)
852 (create_pty, Fmake_network_process, server_accept_connection)
853 (wait_reading_process_output, init_process_emacs):
854 Assume O_NONBLOCK.
855 (wait_reading_process_output): Put in a special case for WINDOWSNT
856 to mimick the older behavior where it had O_NDELAY but not O_NONBLOCK.
857 It's not clear this is needed, but it's a more-conservative change.
858 (create_process): Assume FD_CLOEXEC.
859 (create_process, create_pty): Assume O_NOCTTY.
860 * sysdep.c (init_sys_modes, reset_sys_modes): Assume F_SETFL.
861 (reset_sys_modes): Use O_NONBLOCK rather than O_NDELAY.
862 Omit if not DOS_NT, since F_GETFL is not defined there.
863 (serial_open): Assume O_NONBLOCK and O_NOCTTY.
864 * term.c: Include <fcntl.h>, for flags like O_NOCTTY.
865 (O_NOCTTY): Remove.
866 (init_tty): Assume O_IGNORE_CTTY is defined to 0 on platforms that
867 lack it, since gnulib guarantees this.
868 * w32.c (fcntl): Test for O_NONBLOCK rather than O_NDELAY.
869
870 2012-11-17 Eli Zaretskii <eliz@gnu.org>
871
872 * w32.c (faccessat): Pretend that directories have the execute bit
873 set. Emacs expects that, e.g., in files.el:cd-absolute.
874
875 * w32proc.c (create_child): Don't clip the PID of the child
876 process to fit into an Emacs integer, as this is no longer a
877 restriction.
878 (waitpid): Rename from sys_wait. Emulate a Posix 'waitpid' by
879 reaping only the process specified by PID argument, if that is
880 positive. Use PID instead of dead_child to know which process to
881 reap. Wait for the child to die only if WNOHANG is not in
882 OPTIONS.
883 (sys_select): Don't set dead_child.
884
885 * sysdep.c (wait_for_termination_1): Remove the WINDOWSNT portion,
886 as it is no longer needed.
887
888 * process.c (waitpid, WUNTRACED) [!WNOHANG]: Remove definitions,
889 no longer needed.
890 (record_child_status_change): Remove the setting of
891 record_at_most_one_child for the !WNOHANG case.
892
893 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
894
895 Fix problems in ns port found by static checking.
896 * nsterm.m: Include <pthread.h>, for pthread_mutex_lock etc.
897 (hold_event, setPosition:portion:whole:): Send SIGIO only to self,
898 not to process group.
899 (ns_select): Use emacs_write, not write, as that's more robust
900 in the presence of signals.
901 (fd_handler:): Check for read errors.
902
903 2012-11-16 Glenn Morris <rgm@gnu.org>
904
905 * editfns.c (Fmessage): Mention message-log-max. (Bug#12849)
906
907 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
908
909 * eval.c (Finteractive_p): Revert lexbind-merge mishap.
910
911 2012-11-16 Eli Zaretskii <eliz@gnu.org>
912
913 * w32proc.c (timer_loop): Make sure SuspendThread and ResumeThread
914 use the same value of thread handle.
915 (start_timer_thread): If the timer thread exited (due to error),
916 clean up by closing the two handles it used. Duplicate the caller
917 thread's handle here, so it gets duplicated only once, when
918 launching the timer thread. Set priority of the timer thread, not
919 the caller thread.
920 (getitimer): Don't duplicate the caller thread's handle here.
921 (Bug#12832)
922
923 2012-11-16 Jan Djärv <jan.h.d@swipnet.se>
924
925 * nsterm.m (hold_event): Send SIGIO to make sure ns_read_socket is
926 called (Bug#12834).
927
928 2012-11-16 Paul Eggert <eggert@cs.ucla.edu>
929
930 Remove no-longer-used pty_max_bytes variable.
931 * process.c (pty_max_bytes): Remove; unused.
932 (send_process): Do not set it.
933
934 2012-11-15 Juanma Barranquero <lekktu@gmail.com>
935
936 * makefile.w32-in ($(BLD)/dispnew.$(O), $(BLD)/emacs.$(O)):
937 Update dependencies.
938
939 2012-11-15 Paul Eggert <eggert@cs.ucla.edu>
940
941 * eval.c (mark_backtrace) [BYTE_MARK_STACK]: Remove stray '*'.
942 This follows up on the 2012-09-29 patch that removed indirection
943 for the 'function' field. Reported by Sergey Vinokurov in
944 <http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00263.html>.
945
946 2012-11-14 Eli Zaretskii <eliz@gnu.org>
947
948 * w32.c (faccessat): Rename from sys_faccessat. (No need to use a
949 different name, as the MS runtime does not have such a function,
950 and probably never will.) All callers changed. Ignore DIRFD
951 value if PATH is an absolute file name, to match Posix spec
952 better. If AT_SYMLINK_NOFOLLOW is set in FLAGS, don't resolve
953 symlinks.
954
955 2012-11-14 Dmitry Antipov <dmantipov@yandex.ru>
956
957 * xdisp.c (echo_area_display, redisplay_internal):
958 Omit redundant check whether frame_garbaged is set.
959
960 2012-11-14 Paul Eggert <eggert@cs.ucla.edu>
961
962 Use faccessat, not access, when checking file permissions (Bug#12632).
963 This fixes a bug that has been present in Emacs since its creation.
964 It was reported by Chris Torek in 1983 even before GNU Emacs existed,
965 which must set some sort of record. (Torek's bug report was against
966 a predecessor of GNU Emacs, but GNU Emacs happened to have the
967 same common flaw.) See Torek's Usenet posting
968 "setuid/setgid programs & Emacs" Article-I.D.: sri-arpa.858
969 Posted: Fri Apr 8 14:18:56 1983.
970 * Makefile.in (LIB_EACCESS): New macro.
971 (LIBES): Use it.
972 * callproc.c (init_callproc):
973 * charset.c (init_charset):
974 * fileio.c (check_existing, check_executable, check_writable)
975 (Ffile_readable_p):
976 * lread.c (openp, load_path_check):
977 * process.c (allocate_pty):
978 * xrdb.c (file_p):
979 Use effective UID when checking permissions, not real UID.
980 * callproc.c (init_callproc):
981 * charset.c (init_charset):
982 * lread.c (load_path_check, init_lread):
983 Test whether directories are accessible, not merely whether they exist.
984 * conf_post.h (GNULIB_SUPPORT_ONLY_AT_FDCWD): New macro.
985 * fileio.c (check_existing, check_executable, check_writable)
986 (Ffile_readable_p):
987 Use symbolic names instead of integers for the flags, as they're
988 portable now.
989 (check_writable): New arg AMODE. All uses changed.
990 Set errno on failure.
991 (Ffile_readable_p): Use faccessat, not stat + open + close.
992 (Ffile_writable_p): No need to call check_existing + check_writable.
993 Just call check_writable and then look at errno. This saves a syscall.
994 dir should never be nil; replace an unnecessary runtime check
995 with an eassert. When checking the parent directory of a nonexistent
996 file, check that the directory is searchable as well as writable, as
997 we can't create files in unsearchable directories.
998 (file_directory_p): New function, which uses 'stat' on most platforms
999 but faccessat with D_OK (for efficiency) if WINDOWSNT.
1000 (Ffile_directory_p, Fset_file_times): Use it.
1001 (file_accessible_directory_p): New function, which uses a single
1002 syscall for efficiency.
1003 (Ffile_accessible_directory_p): Use it.
1004 * xrdb.c (file_p): Use file_directory_p.
1005 * lisp.h (file_directory_p, file_accessible_directory_p): New decls.
1006 * lread.c (openp): When opening a file, use fstat rather than
1007 stat, as that avoids a permissions race. When not opening a file,
1008 use file_directory_p rather than stat.
1009 (dir_warning): First arg is now a usage string, not a format.
1010 Use errno. All uses changed.
1011 * nsterm.m (ns_term_init): Remove unnecessary call to file-readable
1012 that merely introduced a race.
1013 * process.c, sysdep.c, term.c: All uses of '#ifdef O_NONBLOCK'
1014 changed to '#if O_NONBLOCK', to accommodate gnulib O_* style,
1015 and similarly for the other O_* flags.
1016 * w32.c (sys_faccessat): Rename from sys_access and switch to
1017 faccessat's API. All uses changed.
1018 * xrdb.c: Do not include <sys/stat.h>; no longer needed.
1019 (magic_db): Rename from magic_file_p.
1020 (magic_db, search_magic_path): Return an XrmDatabase rather than a
1021 char *, so that we don't have to test for file existence
1022 separately from opening the file for reading. This removes a race
1023 fixes a permission-checking problem, and simplifies the code.
1024 All uses changed.
1025 (file_p): Remove; no longer needed.
1026
1027 2012-11-13 Dmitry Antipov <dmantipov@yandex.ru>
1028
1029 Omit glyphs initialization at startup.
1030 * dispnew.c (glyphs_initialized_initially_p): Remove.
1031 (adjust_frame_glyphs_initially): Likewise. Adjust users.
1032 (Fredraw_frame): Move actual code from here...
1033 (redraw_frame): ...to here. Add eassert. Adjust comment.
1034 (Fredraw_display): Use redraw_frame.
1035 * xdisp.c (clear_garbaged_frames): Likewise.
1036
1037 2012-11-13 Eli Zaretskii <eliz@gnu.org>
1038
1039 * xdisp.c (decode_mode_spec): Limit the value of WIDTH argument
1040 passed to pint2str and pint2hrstr to be at most the size of the
1041 frame's decode_mode_spec_buffer. This avoids crashes with very
1042 large values of FIELD_WIDTH argument to decode_mode_spec.
1043 (Bug#12867)
1044
1045 2012-11-13 Paul Eggert <eggert@cs.ucla.edu>
1046
1047 Fix a race with verify-visited-file-modtime (Bug#12863).
1048 Since at least 1991 Emacs has ignored an mtime difference of no
1049 more than one second, but my guess is that this was to work around
1050 file system bugs that were fixed long ago. Since the race is
1051 causing problems now, let's remove that code.
1052 * fileio.c (Fverify_visited_file_modtime): Do not accept a file
1053 whose time stamp is off by no more than a second. Insist that the
1054 file time stamps match exactly.
1055
1056 2012-11-12 Dmitry Antipov <dmantipov@yandex.ru>
1057
1058 * frame.h (struct frame): Convert external_tool_bar member to
1059 1-bit unsigned bitfield.
1060 * termhooks.h (struct terminal): Remove mouse_moved member since
1061 all users are long dead. Adjust comment on mouse_position_hook.
1062
1063 2012-11-12 Dmitry Antipov <dmantipov@yandex.ru>
1064
1065 Simplify by using FOR_EACH_FRAME here and there.
1066 * frame.c (next_frame, prev_frame, other_visible_frames)
1067 (delete_frame, visible-frame-list): Use FOR_EACH_FRAME.
1068 * w32term.c (x_window_to_scroll_bar): Likewise.
1069 * window.c (window_list): Likewise.
1070 * xdisp.c (x_consider_frame_title): Likewise.
1071 * xfaces.c ( Fdisplay_supports_face_attributes_p): Likewise.
1072 * xfns.c (x_window_to_frame, x_any_window_to_frame)
1073 (x_menubar_window_to_frame, x_top_window_to_frame): Likewise.
1074 * xmenu.c (menubar_id_to_frame): Likewise.
1075 * xselect.c (frame_for_x_selection): Likewise.
1076 * xterm.c (x_frame_of_widget, x_window_to_scroll_bar)
1077 (x_window_to_menu_bar): Likewise.
1078 * w32fns.c (x_window_to_frame): Likewise. Adjust comment.
1079
1080 2012-11-12 Paul Eggert <eggert@cs.ucla.edu>
1081
1082 * data.c (Qdefalias_fset_function): Now static.
1083
1084 Another tweak to vectorlike_header change.
1085 * alloc.c (struct Lisp_Vectorlike_Free, NEXT_IN_FREE_LIST):
1086 Remove, and replace all uses with ...
1087 (next_in_free_list, set_next_in_free_list):
1088 New functions, which respect C's aliasing rules better.
1089
1090 2012-11-11 Paul Eggert <eggert@cs.ucla.edu>
1091
1092 * window.c (list4i): Rename from 'quad'. All uses changed.
1093 Needed because <sys/types.h> defines 'quad' on Solaris 10.
1094
1095 2012-11-11 Juanma Barranquero <lekktu@gmail.com>
1096
1097 * xdisp.c (start_hourglass) [HAVE_NTGUI]: Add block to silence
1098 warning about mixing declarations and code in ISO C90.
1099
1100 2012-11-10 Martin Rudalics <rudalics@gmx.at>
1101
1102 * window.c (Fsplit_window_internal): Set combination limit of
1103 new parent window to t iff Vwindow_combination_limit is t;
1104 fixing a regression introduced with the change from 2012-09-22.
1105 (Fset_window_combination_limit): Fix doc-string.
1106
1107 2012-11-10 Eli Zaretskii <eliz@gnu.org>
1108
1109 * xdisp.c (try_scrolling): Fix correction of aggressive-scroll
1110 amount when the scroll margins are too large. When scrolling
1111 backwards in the buffer, give up if cannot reach point or the
1112 scroll margin within a reasonable number of screen lines.
1113 Fixes point position in window under scroll-up/down-aggressively when
1114 point is positioned many lines beyond the window top/bottom.
1115 (Bug#12811)
1116
1117 * ralloc.c (relinquish): If real_morecore fails to return memory
1118 to the system, don't crash; instead, leave the last heap
1119 unchanged and return. (Bug#12774)
1120
1121 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
1122
1123 * lisp.h (AUTOLOADP): New macro.
1124 * eval.c (Fautoload): Don't attach to loadhist, call Fdefalias instead.
1125 * data.c (Ffset): Remove special ad-advice-info handling.
1126 (Fdefalias): Handle autoload definitions and new Qdefalias_fset_function.
1127 (Fsubr_arity): CSE.
1128 (Finteractive_form): Simplify.
1129 (Fquo): Don't insist on having at least 2 arguments.
1130 (Qdefalias_fset_function): New var.
1131
1132 2012-11-09 Jan Djärv <jan.h.d@swipnet.se>
1133
1134 * image.c (xpm_make_color_table_h): Change to hashtest_equal.
1135
1136 * nsfont.m (Qcondensed, Qexpanded): New variables.
1137 (ns_descriptor_to_entity): Restore Qcondensed, Qexpanded setting.
1138 (syms_of_nsfont): Defsym Qcondensed, Qexpanded.
1139
1140 2012-11-09 Dmitry Antipov <dmantipov@yandex.ru>
1141
1142 Fix recently introduced crash on MS-Windows (Bug#12839).
1143 * w32term.h (struct scroll_bar): Use convenient header.
1144 (SCROLL_BAR_VEC_SIZE): Remove.
1145 * w32term.c (x_scroll_bar_create): Use VECSIZE.
1146
1147 2012-11-09 Dmitry Antipov <dmantipov@yandex.ru>
1148
1149 Tweak last vectorlike_header change.
1150 * alloc.c (struct Lisp_Vectorlike_Free): Special type to represent
1151 vectorlike object on the free list. This is introduced to avoid
1152 some (but not all) pointer casting and aliasing problems, see
1153 http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00105.html.
1154 * .gdbinit (pvectype, pvecsize): New commands to examine vectorlike
1155 objects.
1156 (xvectype, xvecsize): Use them to examine Lisp_Object values.
1157
1158 2012-11-09 Jan Djärv <jan.h.d@swipnet.se>
1159
1160 * nsfont.m (ns_descriptor_to_entity): Qcondensed and Qexpanded has
1161 been removed, so remove them here also.
1162
1163 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
1164
1165 * doc.c (Fdocumentation): Handle new property
1166 dynamic-docstring-function to replace the old ad-advice-info.
1167
1168 2012-11-09 Paul Eggert <eggert@cs.ucla.edu>
1169
1170 * fns.c (Qeql, hashtest_eq): Now static.
1171
1172 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
1173
1174 * lisp.h (XHASH): Redefine to be imperfect and fit in a Lisp int.
1175 * fns.c (hashfn_eq, hashfn_eql, sxhash):
1176 * profiler.c (hashfn_profiler): Don't use XUINT on non-integers.
1177 * buffer.c (compare_overlays): Use XLI rather than XHASH.
1178
1179 2012-11-08 Paul Eggert <eggert@cs.ucla.edu>
1180
1181 Use same hash function for hashfn_profiler as for hash_string etc.
1182 * fns.c (SXHASH_COMBINE): Remove. All uses replaced by sxhash_combine.
1183 * lisp.h (sxhash_combine): New inline function, with the contents
1184 of the old SXHASH_COMBINE.
1185 * profiler.c (hashfn_profiler): Use it, instead of having a
1186 special hash function containing a comparison that always yields 1.
1187
1188 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
1189
1190 * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic)
1191 (Qultra_condensed, Qextra_condensed, Qcondensed, Qsemi_condensed)
1192 (Qsemi_expanded, Qextra_expanded, Qexpanded, Qultra_expanded):
1193 Remove unused vars.
1194
1195 2012-11-08 Jan Djärv <jan.h.d@swipnet.se>
1196
1197 * image.c (xpm_make_color_table_h): Fix compiler error because
1198 make_hash_table changed.
1199
1200 2012-11-08 Thomas Kappler <tkappler@gmail.com> (tiny change)
1201
1202 * nsfont.m (ns_findfonts): Handle empty matchingDescs (Bug#11541).
1203
1204 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
1205
1206 Use ad-hoc comparison function for the profiler's hash-tables.
1207 * profiler.c (Qprofiler_backtrace_equal, hashtest_profiler): New vars.
1208 (make_log): Use them.
1209 (handle_profiler_signal): Don't inhibit quit any longer since we don't
1210 call Fequal any more.
1211 (Ffunction_equal): New function.
1212 (cmpfn_profiler, hashfn_profiler): New functions.
1213 (syms_of_profiler): Initialize them.
1214 * lisp.h (struct hash_table_test): New struct.
1215 (struct Lisp_Hash_Table): Use it.
1216 * alloc.c (mark_object): Mark hash_table_test fields of hash tables.
1217 * fns.c (make_hash_table): Take a struct to describe the test.
1218 (cmpfn_eql, cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
1219 (hashfn_equal, hashfn_user_defined): Adjust to new calling convention.
1220 (hash_lookup, hash_remove_from_table): Move assertion checking of
1221 hashfn result here. Check hash-equality before calling cmpfn.
1222 (Fmake_hash_table): Adjust call to make_hash_table.
1223 (hashtest_eq, hashtest_eql, hashtest_equal): New structs.
1224 (syms_of_fns): Initialize them.
1225 * emacs.c (main): Move syms_of_fns earlier.
1226 * xterm.c (syms_of_xterm):
1227 * category.c (hash_get_category_set): Adjust call to make_hash_table.
1228 * print.c (print_object): Adjust to new hash-table struct.
1229 * composite.c (composition_gstring_put_cache): Adjust to new hashfn.
1230
1231 2012-11-08 Eli Zaretskii <eliz@gnu.org>
1232
1233 * w32fns.c (modifier_set): Fix handling of Scroll Lock when the
1234 value of w32-scroll-lock-modifier is neither nil nor one of the
1235 known key modifiers. (Bug#12806)
1236
1237 2012-11-08 Dmitry Antipov <dmantipov@yandex.ru>
1238
1239 Shrink struct vectorlike_header to the only size field.
1240 * lisp.h (enum pvec_type): Avoid explicit enum member values.
1241 Adjust comment.
1242 (enum More_Lisp_Bits): Change PSEUDOVECTOR_SIZE_BITS and
1243 PVEC_TYPE_MASK to arrange new bitfield in the vector header.
1244 (PSEUDOVECTOR_REST_BITS, PSEUDOVECTOR_REST_MASK): New members.
1245 (PSEUDOVECTOR_AREA_BITS): New member used to extract subtype
1246 information from the vector header. Adjust comment.
1247 (XSETPVECTYPE, XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR)
1248 (PSEUDOVECTOR_TYPEP, DEFUN): Adjust to match new vector header
1249 layout.
1250 (XSETSUBR, SUBRP): Adjust to match new Lisp_Subr layout.
1251 (struct vectorlike_header): Remove next member. Adjust comment.
1252 (struct Lisp_Subr): Add convenient header. Adjust comment.
1253 (allocate_pseudovector): Adjust prototype.
1254 * alloc.c (mark_glyph_matrix, mark_face_cache, allocate_string)
1255 (sweep_string, lisp_malloc): Remove useless prototypes.
1256 (enum mem_type): Adjust comment.
1257 (NEXT_IN_FREE_LIST): New macro.
1258 (SETUP_ON_FREE_LIST): Adjust XSETPVECTYPESIZE usage.
1259 (Fmake_bool_vector): Likewise.
1260 (struct large_vector): New type to represent allocation unit for
1261 the vectors with the memory footprint more than VBLOOCK_BYTES_MAX.
1262 (large_vectors): Change type to struct large_vector.
1263 (allocate_vector_from_block): Simplify.
1264 (PSEUDOVECTOR_NBYTES): Replace with...
1265 (vector_nbytes): ...new function. Adjust users.
1266 (sweep_vectors): Adjust processing of large vectors.
1267 (allocate_vectorlike): Likewise.
1268 (allocate_pseudovector): Change type of 3rd arg to enum pvec_type.
1269 Add easserts. Adjust XSETPVECTYPESIZE usage.
1270 (allocate_buffer): Use BUFFER_PVEC_INIT.
1271 (live_vector_p): Adjust to match large vector.
1272 * buffer.c (init_buffer_once): Use BUFFER_PVEC_INIT.
1273 * buffer.h (struct buffer): Add next member.
1274 (BUFFER_LISP_SIZE, BUFFER_REST_SIZE, BUFFER_PVEC_INIT):
1275 New macros.
1276 (FOR_EACH_BUFFER): Adjust to match struct buffer change.
1277 * fns.c (internal_equal): Adjust to match enum pvec_type change.
1278 (copy_hash_table): Adjust to match vector header change.
1279 * lread.c (defsubr): Use XSETPVECTYPE.
1280 * .gdbinit (xpr, xbacktrace): Adjust to match vector header change.
1281 (xvectype): Likewise. Print PVEC_NORMAL_VECTOR for regular vectors.
1282 (xvecsize): New command.
1283
1284 2012-11-08 Dmitry Antipov <dmantipov@yandex.ru>
1285
1286 * keyboard.c (event_to_kboard): Do not dereference
1287 frame_or_window field of SELECTION_REQUEST_EVENT
1288 and SELECTION_CLEAR_EVENT events (Bug#12814).
1289 * xterm.h (struct selection_input_event): Adjust comment.
1290
1291 2012-11-07 Eli Zaretskii <eliz@gnu.org>
1292
1293 * w32fns.c (modifier_set): Don't report modifiers from toggle key,
1294 such as Scroll Lock, if the respective keys are treated as
1295 function keys, not as modifiers. This avoids destroying non-ASCII
1296 keyboard input when Scroll Lock is toggled ON. (Bug#12806)
1297
1298 2012-11-07 Dmitry Antipov <dmantipov@yandex.ru>
1299
1300 * xfns.c (Fx_wm_set_size_hint): Use check_x_frame. Adjust docstring.
1301
1302 2012-11-06 Paul Eggert <eggert@cs.ucla.edu>
1303
1304 Restore some duplicate definitions (Bug#12814).
1305 This undoes part of the 2012-11-03 changes. Some people build
1306 with plain -g rather than with -g3, and they need the duplicate
1307 definitions for .gdbinit to work; see <http://bugs.gnu.org/12814#26>.
1308 * lisp.h (GCTYPEBITS, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK):
1309 Define as macros, as well as as enums or as constants.
1310
1311 2012-11-06 Jan Djärv <jan.h.d@swipnet.se>
1312
1313 * nsterm.m (convert_ns_to_X_keysym, keyDown:): Add NSNumericPadKeyMask
1314 to keypad keys (Bug#12816).
1315
1316 2012-11-06 Paul Eggert <eggert@cs.ucla.edu>
1317
1318 Minor adjustments of recently-changed frame functions.
1319 * buffer.c (Fbuffer_list): Omit CHECK_FRAME, since arg is already
1320 known to be a frame (we're in the FRAMEP branch).
1321 * lisp.h (Qframep): Remove decl. frame.h declares this.
1322 * window.c (quad): Args are of type EMACS_INT, not ptrdiff_t,
1323 since they're meant for Lisp fixnum values.
1324
1325 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
1326
1327 * window.c (Fwindow_combination_limit): Revert to the only
1328 required argument and adjust docstring as suggested in
1329 http://lists.gnu.org/archive/html/emacs-diffs/2012-11/msg01082.html
1330 by Martin Rudalics <rudalics@gmx.at>.
1331
1332 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
1333
1334 Widely used frame validity and checking functions.
1335 * frame.h (decode_live_frame, decode_any_frame): Add prototypes.
1336 * frame.c (decode_live_frame, decode_any_frame): New functions.
1337 (delete_frame, Fredirect_frame_focus, Fframe_parameters)
1338 (Fframe_parameter, Fframe_char_height, Fframe_char_width)
1339 (Fframe_pixel_height, Fframe_pixel_width, Ftool_bar_pixel_width)
1340 (Fframe_pointer_visible_p): Use decode_any_frame.
1341 (Fmake_frame_visible, Fmake_frame_invisible, Ficonify_frame)
1342 (Fraise_frame, Flower_frame, Fmodify_frame_parameters)
1343 (Fset_frame_height, Fset_frame_width): Use decode_live_frame.
1344 (Fframe_focus): Likewise. Allow zero number of arguments.
1345 Adjust docstring.
1346 (frame_buffer_list, frame_buffer_predicate): Remove.
1347 * lisp.h (frame_buffer_predicate): Remove prototype.
1348 * buffer.c (Fother_buffer): Use decode_any_frame.
1349 * xdisp.c (Ftool_bar_lines_needed): Likewise.
1350 * xfaces.c (Fcolor_gray_p, Fcolor_supported_p): Likewise.
1351 * font.c (Ffont_face_attributes, Ffont_family_list, Fopen_font)
1352 (Fclose_font, Ffont_info): Use decode_live_frame.
1353 * fontset.c (check_fontset_name): Likewise.
1354 * terminal.c (Fframe_terminal): Likewise.
1355 * w32fns.c (check_x_frame): Likewise.
1356 * window.c (Fminibuffer_window, Fwindow_at)
1357 (Fcurrent_window_configuration): Likewise.
1358 (Frun_window_configuration_change_hook, Fwindow_resize_apply):
1359 Likewise. Allow zero number of arguments. Adjust docstring.
1360 * dispnew.c (Fredraw_frame): Likewise.
1361 * xfaces.c (frame_or_selected_frame): Remove.
1362 (Fx_list_fonts, Finternal_get_lisp_face_attribute, Fface_font)
1363 (Finternal_lisp_face_equal_p, Finternal_lisp_face_empty_p)
1364 (Fframe_face_alist): Use decode_live_frame.
1365 * xfns.c (check_x_frame): Likewise.
1366
1367 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
1368
1369 * window.c (quad): New function.
1370 (Fwindow_edges, Fwindow_pixel_edges, Fwindow_inside_edges)
1371 (Fwindow_absolute_pixel_edges, Fwindow_inside_absolute_pixel_edges)
1372 (Fwindow_inside_pixel_edges, Fpos_visible_in_window_p)
1373 (Fwindow_line_height): Use it.
1374 (Fwindow_fringes): Use list3.
1375 (Fwindow_scroll_bars): Use list4.
1376 (Fwindow_frame, Fwindow_top_child, Fwindow_left_child)
1377 (Fwindow_combination_limit): Allow zero number of arguments.
1378
1379 2012-11-05 Eli Zaretskii <eliz@gnu.org>
1380
1381 * makefile.w32-in ($(BLD)/w32fns.$(O)): Depend on $(NT_INC)/unistd.h.
1382
1383 * w32fns.c: Include unistd.h, to avoid compiler warnings on Cygwin.
1384 (emacs_abort) [CYGWIN]: Don't call _open_osfhandle; instead, use
1385 file descriptor 2 for standard error. (Bug#12805)
1386
1387 2012-11-05 Chong Yidong <cyd@gnu.org>
1388
1389 * process.c (wait_reading_process_output): Revert previous change.
1390
1391 2012-11-05 Paul Eggert <eggert@cs.ucla.edu>
1392
1393 Assume at least POSIX.1-1988 for getpgrp, setpgid, setsid (Bug#12800).
1394 This removes code that has been obsolete since around 1990.
1395 * callproc.c (Fcall_process):
1396 * emacs.c (main):
1397 * process.c (create_process):
1398 * term.c (dissociate_if_controlling_tty):
1399 Assume setsid exists.
1400 * callproc.c (child_setup): Assume setpgid exists and behaves as
1401 per POSIX.1-1988 or later.
1402 * conf_post.h (setpgid) [!HAVE_SETPGID]: Remove.
1403 * emacs.c (shut_down_emacs):
1404 * sysdep.c (sys_suspend, init_foreground_group):
1405 Assume getpgrp behaves as per POSIX.1-1998 or later.
1406 * msdos.c (setpgrp): Remove.
1407 (tcgetpgrp, setpgid, setsid): New functions.
1408 * systty.h (EMACS_GETPGRP): Remove. All callers now use getpgrp.
1409 * term.c (no_controlling_tty): Remove; unused.
1410 * w32proc.c (setpgrp): Remove.
1411 (setsid, tcgetpgrp): New functions.
1412
1413 Simplify by assuming __fpending.
1414 * dispnew.c: Include <fpending.h>, not <stdio_ext.h>.
1415 (update_frame_1): Use __fpending, not PENDING_OUTPUT_COUNT.
1416 Do not assume that __fpending's result fits in int.
1417
1418 2012-11-04 Paul Eggert <eggert@cs.ucla.edu>
1419
1420 Remove EMACS_OUTQSIZE+sleep hack.
1421 * dispnew.c (update_frame_1): Remove hack for terminals slower
1422 than 2400 bps, which throttled Emacs by having it sleep.
1423 This code hasn't worked since at least 2007, when the multi-tty stuff
1424 was added, and anyway those old terminals are long dead.
1425 * systty.h (EMACS_OUTQSIZE): Remove; unused. The macro isn't used even
1426 without the dispnew.c change, as dispnew.c doesn't include systty.h.
1427
1428 Fix data-loss with --version (Bug#9574).
1429 * emacs.c (close_output_streams): Use strerror, not emacs_strerror,
1430 as we can't assume that emacs_strerror is initialized, and strerror
1431 is good enough here.
1432 (main): Invoke atexit earlier, to catch earlier instances of
1433 sending data to stdout and exiting, e.g., "emacs --version >/dev/full".
1434
1435 2012-11-04 Michael Marchionna <tralfaz@pacbell.net>
1436
1437 * nsterm.m: Add NSClearLineFunctionKey and keypad keys (Bug#8680).
1438 (keyDown): Remap keypad keys to X11 virtual key codes.
1439
1440 2012-11-03 Paul Eggert <eggert@cs.ucla.edu>
1441
1442 Fix data-loss with --batch (Bug#9574).
1443 * emacs.c: Include <close-stream.h>.
1444 (close_output_streams): New function.
1445 (main): Pass it to atexit, so that Emacs closes stdout and stderr
1446 and handles errors appropriately.
1447 (Fkill_emacs): Don't worry about flushing, as close_output_stream
1448 does that now.
1449
1450 Fix a race condition that causes Emacs to mess up glib (Bug#8855).
1451 The symptom is a diagnostic "GLib-WARNING **: In call to
1452 g_spawn_sync(), exit status of a child process was requested but
1453 SIGCHLD action was set to SIG_IGN and ECHILD was received by
1454 waitpid(), so exit status can't be returned." The diagnostic
1455 is partly wrong, as the SIGCHLD action is not set to SIG_IGN.
1456 The real bug is a race condition between Emacs and glib: Emacs
1457 does a waitpid (-1, ...) and reaps glib's subprocess by mistake,
1458 so that glib can't find it. Work around the bug by invoking
1459 waitpid only on subprocesses that Emacs itself creates.
1460 * process.c (create_process, record_child_status_change):
1461 Don't use special value -1 in pid field, as the caller now must
1462 know the pid rather than having the callee infer it.
1463 The inference was sometimes incorrect anyway, due to another race.
1464 (create_process): Set new 'alive' member if child is created.
1465 (process_status_retrieved): New function.
1466 (record_child_status_change): Use it.
1467 Accept negative 1st argument, which means to wait for the
1468 processes that Emacs already knows about. Move special-case code
1469 for DOS_NT (which lacks WNOHANG) here, from caller. Keep track of
1470 processes that have already been waited for, by testing and
1471 clearing new 'alive' member.
1472 (CAN_HANDLE_MULTIPLE_CHILDREN): Remove, as record_child_status_change
1473 now does this internally.
1474 (handle_child_signal): Let record_child_status_change do all
1475 the work, since we do not want to reap all exited child processes,
1476 only the child processes that Emacs itself created.
1477 * process.h (Lisp_Process): New boolean member 'alive'.
1478
1479 Omit duplicate definitions no longer needed with gcc -g3.
1480 * lisp.h (GCTYPEBITS, GCALIGNMENT, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG)
1481 (VALMASK, MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM):
1482 Define only as macros. There's no longer any need to also define
1483 these symbols as enums or as constants, since we now assume
1484 gcc -g3 when debugging.
1485
1486 2012-11-03 Eli Zaretskii <eliz@gnu.org>
1487
1488 * lisp.mk: Adjust comments to the fact that term/internal is now
1489 loaded from loadup.el.
1490
1491 * msdos.c (msdos_abort): Rename from emacs_abort, and make static.
1492 (msdos_fatal_signal): New function.
1493 (XMenuActivate): Adjust the call to kbd_buffer_events_waiting to
1494 its argument list.
1495
1496 * conf_post.h (_GL_EXECINFO_INLINE) [MSDOS]: Define to "inline"
1497 for GCC versions before 4.
1498 (emacs_raise): Define to call msdos_fatal_signal.
1499
1500 * xdisp.c (init_from_display_pos): Fix initialization of the bidi
1501 iterator when starting in the middle of a display or overlay
1502 string. (Bug#12745)
1503
1504 2012-11-03 Chong Yidong <cyd@gnu.org>
1505
1506 * process.c (wait_reading_process_output): Clean up the last
1507 change.
1508
1509 2012-11-03 Jim Paris <jim@jtan.com> (tiny change)
1510
1511 * process.c (wait_reading_process_output): Avoid a race condition
1512 with SIGIO delivery (Bug#11536).
1513
1514 2012-11-03 Chong Yidong <cyd@gnu.org>
1515
1516 * buffer.c (cursor_type): Untabify docstring.
1517
1518 2012-11-03 Dmitry Antipov <dmantipov@yandex.ru>
1519
1520 * frame.h (struct frame): Drop can_have_scroll_bars member
1521 which is meaningless for a long time. Adjust comments.
1522 (FRAME_CAN_HAVE_SCROLL_BARS): Remove.
1523 * frame.c, nsfns.m, term.c, w32fns.c, xfns.c: Adjust users.
1524
1525 2012-11-03 Dmitry Antipov <dmantipov@yandex.ru>
1526
1527 * window.c (decode_next_window_args): Update window arg after
1528 calling decode_live_window and so fix crash reported at
1529 http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00035.html
1530 by Juanma Barranquero <lekktu@gmail.com>.
1531 (Fwindow_body_width, Fwindow_body_height): Simplify a bit.
1532 * font.c (Ffont_at): Likewise.
1533
1534 2012-11-01 Jan Djärv <jan.h.d@swipnet.se>
1535
1536 * widget.c (resize_cb): New function.
1537 (EmacsFrameRealize): Add resize_cb as event handler (Bug#12733).
1538 (EmacsFrameResize): Check if all is up to date before changing frame
1539 size.
1540
1541 2012-11-02 Eli Zaretskii <eliz@gnu.org>
1542
1543 Implement backtrace output for fatal errors on MS-Windows.
1544 * w32fns.c (CaptureStackBackTrace_proc): New typedef.
1545 (BACKTRACE_LIMIT_MAX): New macro.
1546 (w32_backtrace): New function.
1547 (emacs_abort): Use w32_backtrace when the user chooses not to
1548 attach a debugger. Update the text of the abort dialog.
1549
1550 2012-11-02 Dmitry Antipov <dmantipov@yandex.ru>
1551
1552 Window-related stuff cleanup here and there.
1553 * dispnew.c (Finternal_show_cursor, Finternal_show_cursor_p):
1554 Use decode_any_window.
1555 * fringe.c (Ffringe_bitmaps_at_pos): Likewise.
1556 * xdisp.c (Fformat_mode_line): Likewise.
1557 * font.c (Ffont_at): Use decode_live_window.
1558 * indent.c (Fcompute_motion, Fvertical_motion): Likewise.
1559 * window.c (decode_next_window_args): Likewise.
1560 (decode_any_window): Remove static.
1561 * window.h (decode_any_window): Add prototype.
1562 * lisp.h (CHECK_VALID_WINDOW, CHECK_LIVE_WINDOW): Move from here...
1563 * window.h: ...to here, redefine via WINDOW_VALID_P and WINDOW_LIVE_P,
1564 respectively.
1565
1566 2012-11-02 Dmitry Antipov <dmantipov@yandex.ru>
1567
1568 Remove pad from struct input_event.
1569 * termhooks.h (struct input_event): Remove padding field.
1570 Adjust comment.
1571 * keyboard.c (event_to_kboard): Simplify because frame_or_window
1572 member is never cons for a long time. Adjust comment.
1573 (mark_kboards): Adjust because SELECTION_REQUEST_EVENT and
1574 SELECTION_CLEAR_EVENT has no Lisp_Objects to mark. Add comment.
1575 * xterm.c (handle_one_xevent): Do not initialize frame_or_window
1576 field of SELECTION_REQUEST_EVENT and SELECTION_CLEAR_EVENT.
1577
1578 2012-11-01 Eli Zaretskii <eliz@gnu.org>
1579
1580 * w32proc.c (getpgrp, setpgid): New functions. (Bug#12776)
1581
1582 2012-10-31 Paul Eggert <eggert@cs.ucla.edu>
1583
1584 Fix crash when using Emacs as commit editor for git (Bug#12697).
1585 * callproc.c (setpgrp): Remove macro, as we now use setpgid
1586 and it is configured in conf_post.h.
1587 (Fcall_process): Don't invoke both setsid and setpgid; the former
1588 is enough, if it exists.
1589 * callproc.c (Fcall_process, child_setup):
1590 * process.c (create_process): Use setpgid.
1591 * conf_post.h (setpgid) [!HAVE_SETPGID]: New macro, which substitutes
1592 for the real thing.
1593 * dispnew.c (init_display): Initialize the foreground group
1594 if we are running a tty display.
1595 * emacs.c (main): Do not worry about setpgrp; init_display does it now.
1596 * lisp.h (init_foreground_group): New decl.
1597 * sysdep.c (inherited_pgroup): New static var.
1598 (init_foreground_group, tcsetpgrp_without_stopping)
1599 (narrow_foreground_group, widen_foreground_group): New functions.
1600 (init_sys_modes): Narrow foreground group.
1601 (reset_sys_modes): Widen foreground group.
1602
1603 2012-10-31 Michael Albinus <michael.albinus@gmx.de>
1604
1605 * dbusbind.c: Fix cut'n'waste error. Use HAVE_DBUS_VALIDATE_INTERFACE.
1606
1607 2012-10-31 Martin Rudalics <rudalics@gmx.at>
1608
1609 * minibuf.c (read_minibuf): Restore current buffer since
1610 choose_minibuf_frame calling Fset_frame_selected_window may
1611 change it (Bug#12766).
1612
1613 2012-10-30 Jan Djärv <jan.h.d@swipnet.se>
1614
1615 * frame.c (Fframe_pixel_height): Fix documentation (Bug#12733).
1616
1617 2012-10-30 Kenichi Handa <handa@gnu.org>
1618
1619 * font.c (Ffont_at): If WINDOW is specified and it is not
1620 displaying the current buffer, signal an error.
1621
1622 2012-10-29 Daniel Colascione <dancol@dancol.org>
1623
1624 * cygw32.h, cygw32.c (Qutf_16le, from_unicode, to_unicode):
1625 In preparation for fixing bug#12739, move these functions from
1626 here...
1627
1628 * coding.h, coding.c: ... to here, and compile them only when
1629 WINDOWSNT or CYGWIN. Moving these functions out of cygw32 proper
1630 lets us write cygw32-agnostic code for the HAVE_NTGUI case.
1631
1632 2012-10-28 Eli Zaretskii <eliz@gnu.org>
1633
1634 * w32proc.c (TIMER_TICKS_PER_SEC): New macro.
1635 (timer_loop, getitimer, setitimer): Use it instead of
1636 CLOCKS_PER_SEC, which is no longer pertinent, since we don't use
1637 'clock'.
1638 (w32_get_timer_time): Use 10*TIMER_TICKS_PER_SEC instead of a
1639 literal 10000.
1640
1641 2012-10-28 Jan Djärv <jan.h.d@swipnet.se>
1642
1643 * nsterm.m (NO_APPDEFINED_DATA): New define.
1644 (last_appdefined_event_data): New variable
1645 (last_appdefined_event): Remove.
1646 (ns_select): Initialize t from last_appdefined_event_data instead
1647 of [last_appdefined_event data1].
1648 (sendEvent:): Save [theEvent data1] to last_appdefined_event_data,
1649 remove last_appdefined_event (Bug#12698).
1650
1651 2012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
1652
1653 * frame.c (x_set_font): Catch internal error.
1654
1655 2012-10-27 Eli Zaretskii <eliz@gnu.org>
1656
1657 Avoid overflow in w32 implementation of interval timers.
1658 When possible, for ITIMER_PROF count only times the main thread
1659 actually executes.
1660 * w32proc.c <struct itimer_data>: 'expire' and 'reload' are now
1661 'volatile ULONGLONG' types. All the other data which was
1662 previously clock_t is now ULONGLONG. 'terminate' is 'volatile int'.
1663 (GetThreadTimes_Proc): New typedef.
1664 (w32_get_timer_time): New function, returns a suitable time value
1665 for the timer.
1666 (timer_loop): Enter critical section when accessing ULONGLONG
1667 values of the itimer_data struct, as these accesses are no longer
1668 atomic. Call 'w32_get_timer_time' instead of 'clock'.
1669 Remove unused variable.
1670 (init_timers): Initialize s_pfn_Get_Thread_Times.
1671 (start_timer_thread): Don't assign itimer->caller_thread here.
1672 (getitimer): Assign itimer->caller_thread here.
1673 (setitimer): Always call getitimer to get the value of ticks_now.
1674 (sys_spawnve): Avoid compiler warning about format mismatch.
1675
1676 2012-10-26 Eli Zaretskii <eliz@gnu.org>
1677
1678 * w32fns.c (w32_wnd_proc) <WM_MOUSEMOVE>: Don't enable tracking of
1679 mouse movement events if the menu bar is active. This avoids
1680 producing a busy "hour-glass" cursor by Windows if the mouse
1681 pointer is positioned over a tooltip shown for some menu item.
1682
1683 2012-10-25 Paul Eggert <eggert@cs.ucla.edu>
1684
1685 Don't assume process IDs fit in int.
1686 * emacs.c (shut_down_emacs) [!DOS_NT]:
1687 * sysdep.c (sys_suspend) [SIGTSTP && !MSDOS]:
1688 * term.c (dissociate_if_controlling_tty) [!DOS_NT]:
1689 Use pid_t, not int, to store process IDs, as 'int'
1690 is not wide enough on a few platforms (e.g., AIX and IRIX).
1691
1692 2012-10-23 Kenichi Handa <handa@gnu.org>
1693
1694 The following change is to make face-font-rescale-alist work
1695 correctly for non-ASCII fonts.
1696
1697 * font.c (font_open_entity): Don't handle Vface_font_rescale_alist.
1698 (font_open_for_lface): Handle Vface_font_rescale_alist.
1699
1700 2012-10-23 Chong Yidong <cyd@gnu.org>
1701
1702 * xfaces.c (Vfont_list_limit): Move unused variable to faces.el.
1703
1704 2012-10-21 Jan Djärv <jan.h.d@swipnet.se>
1705
1706 * nsfont.m (nsfont_open, ns_glyph_metrics): Force integer advancement
1707 for screen font.
1708 (nsfont_draw): Turn off LCD-smoothing (Bug#11484).
1709
1710 * xterm.c (x_focus_changed): Check if daemonp when sending focus in
1711 event (Bug#12681).
1712
1713 2012-10-21 Glenn Morris <rgm@gnu.org>
1714
1715 * lisp.mk (lisp): Add cp51932.el and eucjp-ms.el.
1716
1717 2012-10-20 Paul Eggert <eggert@cs.ucla.edu>
1718
1719 Port to OpenBSD 5.1.
1720 * frame.c (Fmouse_position, Fmouse_pixel_position):
1721 * xdisp.c (produce_stretch_glyph):
1722 Declare local vars only when they're needed.
1723 This is clearer and avoids a warning on OpenBSD about unused vars.
1724 * frame.h (FRAME_WINDOW_P): Always evaluate its argument.
1725 This is safer, and avoids OpenBSD warnings about unused vars.
1726 * keyboard.c (record_menu_key): Remove unnecessary decl.
1727 (poll_timer): Define only if POLL_FOR_INPUT is defined.
1728 * unexelf.c (ELFSIZE) [!ElfW]: Do not define if already defined,
1729 as our definition clashes with OpenBSD's.
1730 * xfaces.c (load_face_colors, check_lface_attrs)
1731 (get_lface_attributes_no_remap, get_lface_attributes)
1732 (lface_fully_specified_p, x_supports_face_attributes_p)
1733 (tty_supports_face_attributes_p, face_fontset, realize_face)
1734 (realize_x_face, realize_tty_face):
1735 Declare parameters to be Lisp_Object[LFACE_VECTOR_SIZE], not
1736 merely Lisp_Object *. This is more informative and avoids
1737 a warning on OpenBSD about accessing beyond an object's size.
1738
1739 2012-10-20 Chong Yidong <cyd@gnu.org>
1740
1741 * lread.c (Fload): Doc fix (Bug#12592).
1742
1743 2012-10-19 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
1744
1745 * font.c (Ffont_at): Fix previous change.
1746
1747 2012-10-19 Eli Zaretskii <eliz@gnu.org>
1748
1749 * puresize.h (BASE_PURESIZE): Bump the base value to 1700000.
1750 See http://lists.gnu.org/archive/html/emacs-devel/2012-10/msg00593.html
1751 for the reasons.
1752
1753 * alloc.c (NSTATICS): Decrease to 0x800.
1754
1755 2012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
1756
1757 * fns.c (Fnreverse): Include the problem element when signaling an
1758 error (bug#12677).
1759
1760 2012-10-18 Jan Djärv <jan.h.d@swipnet.se>
1761
1762 * nsterm.m (ns_select): Check writefds before call to
1763 FD_ISSET (Bug#12668).
1764
1765 2012-10-18 Daniel Colascione <dancol@dancol.org>
1766
1767 * alloc.c (NSTATICS): Increase from 0x650 to 0x1000
1768 (staticpro): If we run out of staticpro slots, die with an
1769 informative error instead of just calling emacs_abort.
1770
1771 2012-10-18 Martin Rudalics <rudalics@gmx.at>
1772
1773 Fix two flaws reported by Dmitry Antipov.
1774 * window.c (Ftemp_output_buffer_show): Remove.
1775 (Fwindow_vscroll, Fset_window_vscroll): Use decode_live_window.
1776 (syms_of_window): Remove defsubr for Stemp_output_buffer_show.
1777
1778 2012-10-17 Eli Zaretskii <eliz@gnu.org>
1779
1780 * makefile.w32-in ($(BLD)/w32.$(O)):
1781 ($(BLD)/vm-limit.$(O)):
1782 ($(BLD)/term.$(O)):
1783 ($(BLD)/unexw32.$(O)):
1784 ($(BLD)/fileio.$(O)):
1785 ($(BLD)/dispnew.$(O)): Update dependencies.
1786
1787 * w32term.h (w32_initialize_display_info, initialize_w32_display):
1788 Add prototypes.
1789
1790 * w32proc.c: Include ctype.h.
1791
1792 * w32.h (init_environment, check_windows_init_file)
1793 (syms_of_ntproc, syms_of_ntterm, dostounix_filename)
1794 (unixtodos_filename, init_winsock, srandom, random, sys_pipe)
1795 (set_process_dir, sys_spawnve, register_child, sys_sleep, getwd)
1796 (sys_link): Add prototypes.
1797
1798 * w32.c: Include w32select.h.
1799 (sys_access, e_malloc, sys_select): Add prototypes.
1800 (emacs_gnutls_pull): 'timeout' is now EMACS_TIME, not struct timeval.
1801
1802 * vm-limit.c [WINDOWSNT]: Include w32heap.h.
1803
1804 * unexw32.c: Include lisp.h and w32.h.
1805
1806 * term.c [WINDOWSNT]: Include w32term.h.
1807
1808 * process.c [WINDOWSNT]: Add prototype of sys_select.
1809
1810 * fileio.c [WINDOWSNT]: Include w32.h.
1811
1812 * dispnew.c [WINDOWSNT]: Include w32.h.
1813
1814 * cygw32.c (Fcygwin_convert_path_to_windows)
1815 (Fcygwin_convert_path_from_windows): Use EQ to compare 2
1816 Lisp_Object values. (Bug#12661)
1817
1818 * w32fns.c (w32_msg_pump): Use XIL instead of casting an integer
1819 to Lisp_Object. (Bug#12661)
1820
1821 2012-10-17 Kenichi Handa <handa@gnu.org>
1822
1823 * xdisp.c (reseat_1): Make the information stored in it->cmp_it
1824 invalidate.
1825
1826 2012-10-17 Dmitry Antipov <dmantipov@yandex.ru>
1827
1828 * buffer.c (Fkill_buffer): When unchaining the marker,
1829 reset its buffer pointer to NULL (Bug#12652).
1830
1831 2012-10-17 Dmitry Antipov <dmantipov@yandex.ru>
1832
1833 Do not verify indirection counters of killed buffers (Bug#12579).
1834 * buffer.h (BUFFER_CHECK_INDIRECTION): New macro.
1835 * buffer.c (compact_buffer, set_buffer_internal_1): Use it.
1836
1837 2012-10-16 Dmitry Antipov <dmantipov@yandex.ru>
1838
1839 * alloc.c (Fmake_byte_code): Fix typo in comment.
1840 * print.c (print_interval): Define as static to match prototype.
1841 * indent.c (disptab_matches_widthtab, recompute_width_table):
1842 Convert to eassert.
1843
1844 2012-10-16 Dmitry Antipov <dmantipov@yandex.ru>
1845
1846 * editfns.c (get_system_name): Remove.
1847 * lisp.h (get_system_name): Remove prototype.
1848 * xrdb.c (getenv, getpwuid, getpwnam): Remove prototypes.
1849 (get_environ_db): Use Vsystem_name. Avoid call to strlen.
1850
1851 2012-10-15 Daniel Colascione <dancol@dancol.org>
1852
1853 * dbusbind.c: Add comment explaining reason for previous change.
1854
1855 2012-10-15 Martin Rudalics <rudalics@gmx.at>
1856
1857 * window.c (Fwindow_end): Rewrite check whether cached position
1858 can be used (Bug#12600).
1859 (resize_frame_windows, grow_mini_window, shrink_mini_window):
1860 Set windows_or_buffers_changed.
1861
1862 2012-10-15 Daniel Colascione <dancol@dancol.org>
1863
1864 * dbusbind.c: Fix cygw32 build break when compiling with dbus
1865 enabled by undefining the symbol "interface", which the platform
1866 headers define to something incompatible.
1867
1868 2012-10-14 Daniel Colascione <dancol@dancol.org>
1869
1870 * image.c (init_tiff_functions, init_imagemagick_functions)
1871 (init_svg_functions): Fix cygw32 build break by using these
1872 functions only when WINDOWSNT _and_ HAVE_NTGUI.
1873
1874 2012-10-14 Jan Djärv <jan.h.d@swipnet.se>
1875
1876 * nsterm.m (ns_select): Count fd:s in writefs also (Bug#12422).
1877
1878 2012-10-13 Jan Djärv <jan.h.d@swipnet.se>
1879
1880 * gtkutil.c (xg_set_widget_bg): Divide by 65535 (Bug#12612).
1881
1882 2012-10-13 HANATAKA, Shinya <bogytech@gmail.com> (tiny change)
1883
1884 * coding.c (detect_coding): Set coding->id before calling
1885 this->detector.
1886
1887 2012-10-13 Andreas Schwab <schwab@linux-m68k.org>
1888
1889 * fileio.c: Formatting fixes.
1890
1891 2012-10-13 Paul Eggert <eggert@cs.ucla.edu>
1892
1893 Fix some stat-related races.
1894 * fileio.c (Fwrite_region): Avoid race condition if a file is
1895 removed or renamed by some other process immediately after Emacs
1896 writes it but before Emacs stats it. Do not assume that stat (or
1897 fstat) succeeds.
1898 * image.c (slurp_file): Resolve the file name with fopen + fstat
1899 rather than stat + fopen.
1900 (pbm_read_file) [0]: Remove unused code with stat race.
1901 * process.c (allocate_pty) [HAVE_PTYS && !PTY_ITERATION && !PTY_OPEN]:
1902 Remove ineffective code with stat race.
1903
1904 2012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
1905
1906 * doc.c (get_doc_string): Don't signal an error if the file is missing.
1907
1908 2012-10-12 Jan Djärv <jan.h.d@swipnet.se>
1909
1910 * nsterm.m (hold_event_q): New static variable.
1911 (EV_TRAILER, sendScrollEventAtLoc:fromEvent:): Call hold_event if
1912 ! q_event_ptr.
1913 (hold_event): New function.
1914 (ns_read_socket): If hold_event_q have events, store them and
1915 return (Bug#12384).
1916 (setPosition:portion:whole:): Send SIGIO to ourselves if apploopnr
1917 is zero (Bug#12384).
1918
1919 2012-10-12 Juanma Barranquero <lekktu@gmail.com>
1920
1921 * makefile.w32-in ($(BLD)/w32select.$(O)): Update dependencies.
1922
1923 2012-10-12 Eli Zaretskii <eliz@gnu.org>
1924
1925 * makefile.w32-in ($(BLD)/fileio.$(O)): Add sys/file.h.
1926
1927 * fileio.c (check_existing): New function.
1928 (make_temp_name, Ffile_exists_p, Ffile_writable_p): Call it
1929 instead of calling 'stat', when what's needed is to check whether
1930 a file exists. This avoids expensive system calls on MS-Windows.
1931 (Bug#12587)
1932
1933 * w32.c (init_environment): Call 'check_existing' instead of 'stat'.
1934
1935 * lread.c (openp) [WINDOWSNT]: Call 'access' instead of 'stat' to
1936 determine whether a file exists and is not a directory.
1937
1938 * lisp.h (check_existing): Add prototype.
1939
1940 2012-10-12 Jan Djärv <jan.h.d@swipnet.se>
1941
1942 * nsfont.m (nsfont_open): Remove font cache, it is not GC correct.
1943
1944 2012-10-12 Glenn Morris <rgm@gnu.org>
1945
1946 * buffer.c (Fset_buffer): Doc fix. (Bug#12624)
1947
1948 2012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
1949
1950 * buffer.c (Fkill_buffer): Null out the overlay list(s) as well.
1951
1952 * eval.c (Fautoload): Remember previous autoload status in load-history.
1953
1954 2012-10-11 Paul Eggert <eggert@cs.ucla.edu>
1955
1956 lread.c, macros.c, marker.c, menu.c, minibuf.c: Use bool for booleans.
1957 * lread.c (load_each_byte, new_backquote_flag, readchar)
1958 (read_filtered_event, lisp_file_lexically_bound_p)
1959 (safe_to_load_version, Fload, complete_filename_p, openp)
1960 (build_load_history, readevalloop, read_escape, read1)
1961 (string_to_number, read_vector, read_list):
1962 * macros.c (Fstart_kbd_macro):
1963 * marker.c (CONSIDER):
1964 * menu.c (parse_single_submenu, digest_single_submenu)
1965 (find_and_return_menu_selection, Fx_popup_menu):
1966 * minibuf.c (read_minibuf_noninteractive, read_minibuf)
1967 (Ftry_completion):
1968 * nsmenu.m (ns_update_menubar, runMenuAt:forFrame:keymaps:):
1969 (ns_menu_show):
1970 * xmenu.c (set_frame_menubar, create_and_show_popup_menu)
1971 (xmenu_show, xdialog_show):
1972 Use bool for booleans.
1973 * lread.c (safe_to_load_version): Rename from safe_to_load_p,
1974 as it's not a predicate. All uses changed. Omit unnecessary
1975 buffer termination.
1976
1977 2012-10-11 Dmitry Antipov <dmantipov@yandex.ru>
1978
1979 * editfns.c (save_excursion_save): Use nil if mark points to nowhere.
1980 (save_excursion_restore): Do not restore mark if it was not saved.
1981
1982 2012-10-11 Paul Eggert <eggert@cs.ucla.edu>
1983
1984 * marker.c (cached_modiff): EMACS_INT, not int.
1985
1986 * w32select.c (waiting_for_input): Declare by including "keyboard.h"
1987 instead of having a wrong decl.
1988 * nsmenu.m (waiting_for_input): Remove wrong decl.
1989
1990 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
1991
1992 keyboard.c, keymap.c: Use bool for booleans.
1993 * dispnew.c (sit_for): Distinguish between 3-way display_option
1994 and boolean do_display.
1995 * keyboard.c (single_kboard, this_command_key_count_reset)
1996 (waiting_for_input, echoing, immediate_quit, input_pending)
1997 (interrupt_input, interrupts_deferred, pop_kboard)
1998 (temporarily_switch_to_single_kboard, ignore_mouse_drag_p)
1999 (command_loop_1, adjust_point_for_property)
2000 (safe_run_hooks_error, input_polling_used, read_char):
2001 (help_char_p, readable_events, kbd_buffer_events_waiting)
2002 (kbd_buffer_get_event, timer_check_2, make_lispy_event)
2003 (lucid_event_type_list_p, get_input_pending):
2004 (gobble_input, menu_separator_name_p, menu_bar_item)
2005 (parse_menu_item, parse_tool_bar_item, read_char_x_menu_prompt)
2006 (read_char_minibuf_menu_prompt, access_keymap_keyremap)
2007 (keyremap_step, test_undefined, read_key_sequence)
2008 (detect_input_pending, detect_input_pending_ignore_squeezables)
2009 (detect_input_pending_run_timers, requeued_events_pending_p)
2010 (quit_throw_to_read_char, Fset_input_interrupt_mode):
2011 * keymap.c (get_keymap, keymap_parent, keymap_memberp)
2012 (access_keymap_1, access_keymap, map_keymap, get_keyelt)
2013 (Fdefine_key, Flookup_key, struct accessible_keymaps_data)
2014 (accessible_keymaps_1, Fkey_description, push_key_description):
2015 (shadow_lookup, struct where_is_internal_data)
2016 (where_is_internal, Fwhere_is_internal, where_is_internal_1)
2017 (Fdescribe_buffer_bindings, describe_map_tree, struct describe_map_elt)
2018 (describe_map, describe_vector):
2019 * menu.c (single_menu_item):
2020 * nsmenu.m (ns_update_menubar):
2021 * process.c (wait_reading_process_output):
2022 * search.c (scan_buffer, scan_newline):
2023 Use bool for boolean.
2024 * keyboard.c (timers_run, swallow_events)
2025 (detect_input_pending_run_timers):
2026 * process.c (wait_reading_process_output):
2027 Use unsigned for counter where wraparound-on-overflow is desired,
2028 since unsigned is guaranteed to have that behavior and signed is not.
2029 (read_char): Use ptrdiff_t for string length.
2030 (get_input_pending): Remove first argument, since it was always
2031 the same pointer-to-int (now pointer-to-boolean) &input_pending,
2032 and behave as if it had that value. Return new value of
2033 input_pending. All callers changed.
2034 * keyboard.h (struct kboard): Use unsigned : 1 for boolean member
2035 immediate_echo. Use ptrdiff_t for echo_after_prompt, since it's
2036 a string length.
2037 * keymap.c (push_key_description): Omit last arg, which was always 1.
2038 All callers changed.
2039
2040 * regex.c (immediate_quit) [emacs]: Remove duplicate decl.
2041
2042 2012-10-10 Juanma Barranquero <lekktu@gmail.com>
2043
2044 * makefile.w32-in ($(BLD)/dispnew.$(O), $(BLD)/indent.$(O))
2045 ($(BLD)/term.$(O)): Update dependencies.
2046
2047 2012-10-10 Dmitry Antipov <dmantipov@yandex.ru>
2048
2049 * alloc.c (mark_object): Use meaningful PVEC_NORMAL_VECTOR.
2050 * lisp.h (enum pvec_type): Adjust comments and omit explicit
2051 initializer for PVEC_NORMAL_VECTOR.
2052
2053 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
2054
2055 Clean out old termopts cruft.
2056 * termopts.h (flow_control, meta_key): Remove unused decls.
2057 * dispnew.c, indent.c, nsterm.m, term.c, xsettings.c, xsmfns.c:
2058 Don't include termopts.h.
2059
2060 2012-10-10 Dmitry Antipov <dmantipov@yandex.ru>
2061
2062 * alloc.c (gc_sweep): Use pointer-to-a-pointer loop for buffers.
2063
2064 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
2065
2066 * commands.h (immediate_quit): Remove duplicate decl.
2067
2068 2012-10-09 Jan Djärv <jan.h.d@swipnet.se>
2069
2070 * nsfont.m (Vfonts_in_cache): Remove, not needed as font.c handles
2071 caching.
2072 (nsfont_open): Remove setting of Vfonts_in_cache.
2073 (syms_of_nsfont): Remove initialization of Vfonts_in_cache.
2074
2075 2012-10-09 Eli Zaretskii <eliz@gnu.org>
2076
2077 * w32fns.c (w32_last_error): Change the return value to DWORD, to
2078 match what GetLastError returns. Explain why the function is
2079 needed.
2080
2081 * frame.c (delete_frame): Rename local variable 'tooltip_frame' to
2082 'is_tooltip_frame', to avoid confusion with its global namesake.
2083
2084 2012-10-08 Daniel Colascione <dancol@dancol.org>
2085
2086 * xdisp.c (start_hourglass): Call w32_note_current_window when
2087 HAVE_NTGUI, not just WINDOWSNT, resolving a problem in the cygw32
2088 build that caused Emacs to display the hourglass cursor forever.
2089
2090 * w32fns.c (Fx_display_color_cells): Instead of using NCOLORS,
2091 which is broken under remote desktop, calculate the number of
2092 colors available for a display based on the display's number of
2093 planes and number of bits per pixel per plane. (bug#10397).
2094
2095 2012-10-08 Jan Djärv <jan.h.d@swipnet.se>
2096
2097 * nsfont.m (Vfonts_in_cache): New variable.
2098 (nsfont_open): Use unsignedLongLongValue for cache in case wide ints
2099 are used. Add cached fonts to Vfonts_in_cache.
2100 (syms_of_nsfont): Initialize and staticpro Vfonts_in_cache.
2101
2102 2012-10-08 Juanma Barranquero <lekktu@gmail.com>
2103
2104 * makefile.w32-in (LOCAL_FLAGS): Don't define HAVE_NTGUI, it's now
2105 in nt/config.nt.
2106 (FONT_H): Define after FRAME_H.
2107 ($(BLD)/emacs.$(O), $(BLD)/process.$(O), $(BLD)/w32heap.$(O)):
2108 Update dependencies.
2109
2110 * w32term.c: Remove leftover declaration of keyboard_codepage.
2111
2112 2012-10-08 Eli Zaretskii <eliz@gnu.org>
2113
2114 * makefile.w32-in (FONT_H): Add $(FRAME_H).
2115 (W32TERM_H): Add $(ATIMER_H) and $(FRAME_H).
2116 ($(BLD)/emacs.$(O), $(BLD)/w32console.$(O)): Update dependencies.
2117 (GLOBAL_SOURCES): Add cygw32.c.
2118 ($(BLD)/unexw32.$(O)):
2119 ($(BLD)/w32.$(O)):
2120 ($(BLD)/w32console.$(O)):
2121 ($(BLD)/w32fns.$(O)):
2122 ($(BLD)/w32heap.$(O)):
2123 ($(BLD)/w32menu.$(O)):
2124 ($(BLD)/w32proc.$(O)): Add w32common.h.
2125
2126 * w32fns.c (w32_color_map_lookup, x_to_w32_color): Argument is now
2127 'const char *'.
2128 (x_to_w32_color): Don't modify the argument, modify a copy instead.
2129
2130 2012-10-08 Daniel Colascione <dancol@dancol.org>
2131
2132 * w32term.h (WM_EMACS_BRINGTOTOP, WM_EMACS_INPUT_READY)
2133 (WM_EMACS_END): Change WM_EMACS_BRINGTOTOP from 22 to 21 to close
2134 accidental message numbering hole. Change other messages to
2135 match.
2136
2137 * w32select.h (HAVE_W32SELECT): Remove.
2138
2139 * w32select.c, w32proc.c, w32menu.c, w32console.c, w32.c: Include
2140 w32common.h instead of w32heap.h.
2141
2142 * w32heap.h (ROUND_UP, ROUND_DOWN, get_page_size)
2143 (get_allocation_unit, get_processor_type, get_w32_major_version)
2144 (get_w32_minor_version, sysinfo_cache, osinfo_cache)
2145 (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
2146 (OS_NT, os_subtype, cache_system_info): Move declarations to
2147 w32common.
2148
2149 * w32heap.c: Include w32common.h.
2150 (sysinfo_cache, syspage_mask, osinfo_cache, w32_major_version)
2151 (w32_minor_version, w32_build_number, w32_subtype):
2152 Remove duplicate definitions.
2153
2154 * w32fns.c: Include w32common.h; include w32heap.h only in
2155 WINDOWSNT.
2156
2157 (Fx_file_dialog): Clarify comment on GetOpenFileName structure.
2158 Use `report_file_error' instead of `error' in order to better
2159 inform users of what went wrong. Increase NTGUI_UNICODE file
2160 dialog box file name length to 32k, the maximum allowed by the NT
2161 kernel.
2162
2163 * w32common.h: New file.
2164 (ROUND_UP, ROUND_DOWN, get_page_size)
2165 (get_allocation_unit, get_processor_type, get_w32_major_version)
2166 (get_w32_minor_version, sysinfo_cache, osinfo_cache)
2167 (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
2168 (OS_NT, os_subtype, cache_system_info): Move here.
2169
2170 * unexw32.c, unexcw.c: Include w32common.h.
2171
2172 * emacs.c (main): Use (defined (WINDOWSNT) || defined
2173 HAVE_NTGUI) instead of removed HAVE_W32SELECT to decide whether
2174 to call syms_of_w32select.
2175
2176 * cygw32.h: Remove obsolete EXFUN declarations.
2177
2178 * cygw32.c (Qutf_16_le): Rename to Qutf_16le.
2179
2180 * Makefile.in (SOME_MACHINE_OBJECTS): Reverse accidental removal
2181 of w32inevt.o from SOME_MACHINE_OBJECTS.
2182
2183 2012-10-08 Daniel Colascione <dancol@dancol.org>
2184
2185 * image.c: Permanent fix for JPEG compilation issue --- limit
2186 jpeglib `boolean' redefinition to Cygwin builds.
2187
2188 2012-10-08 Eli Zaretskii <eliz@gnu.org>
2189
2190 * image.c (CHECK_LIB_AVAILABLE): Remove, no longer used.
2191
2192 * emacs.c (DAEMON_MUST_EXEC) [HAVE_NTGUI]: Define this only on
2193 Cygwin.
2194
2195 2012-10-08 Daniel Colascione <dancol@dancol.org>
2196
2197 * xfaces.c, xdisp.c, window.c, w32xfns.c, w32term.h, w32term.c,
2198 w32select.h w32select.c, w32proc.c, w32menu.c, w32inevt.c,
2199 w32help.c, w32font.c, w32font.c, w32fns.c, w32console.c, w32.h,
2200 w32.c, unexw32.c, termhooks.h, process.c, menu.c, keyboard.h,
2201 keyboard.c, image.c, frame.h, frame.c, fontset.c, font.h, font.c,
2202 emacs.c, dispextern.h, cygw32.h, cygw32.c, conf_post.h,
2203 Makefile.in: use HAVE_NTGUI for W32 GUI and WINDOWSNT for the
2204 operating system. defined(HAVE_NTGUI) && !defined(WINDOWSNT) is
2205 now a supported configuration.
2206
2207 * Makefile.in: consolidate image variables into LIBIMAGE; add
2208 W32_OBJ and W32_LIBS. Compile new files.
2209
2210 * conf_post.h:
2211 (_DebPrint) declare tracing facility for W32 debugging. We need
2212 to unify tracing later.
2213
2214 (NTGUI_UNICODE) Define when compiling for Cygwin to allow the
2215 unconditional use of W32 Unicode functions. Cygwin runs only on
2216 100% Unicode operating systems.
2217
2218 * cygw32.c: New file. Define Cygwin-specific facilities.
2219 (Fcygwin_convert_path_to_windows)
2220 (Fcygwin_convert_path_from_windows): New user functions for
2221 accessing Cygwin path-munging routines.
2222
2223 * cygw32.h: New file.
2224 (WCSDATA, to_unicode, from_unicode): Define facilities for storing
2225 UTF-16LE strings temporarily inside non-Lisp-visible string
2226 objects.
2227
2228 (w32_strerror): Just what it says on the tin.
2229
2230 * emacs.c: Make the NS fork-then-exec code for daemon-launching
2231 also run for Cygwin; both systems have the same problem with using
2232 GUI facilities in a forked child. Also call syms_of_cygw32,
2233 syms_of_w32select in correct places.
2234
2235 (DAEMON_MUST_EXEC): new macro defined to signal that a platform
2236 needs fork-then-exec for daemon launching.
2237
2238 * font.h: Include frame.h.
2239
2240 * image.c: Use the image library cache machinery only when we're
2241 compiling for native WINDOWSNT; Cygwin can use shared libraries
2242 like any other Unixlike system.
2243
2244 * keyboard.c: Clarify a comment regarding the input loop.
2245
2246 * menu.c: When NTGUI_UNICODE is defined, use Unicode menu
2247 functions directly instead of trying to detect at runtime that our
2248 host operating system supports them. We make this change for two
2249 reasons: Cygwin lacks support for the multibyte character
2250 conversion functions used by the legacy menu code, and Cygwin
2251 never needs to rely on non-Unicode APIs.
2252
2253 * unexw32.c (hinst): Declare extern.
2254
2255 * w32.c: Change header order;
2256 (w32_strerror): Move to w32fns.c because we need it for
2257 non-WINDOWSNT builds.
2258
2259 * w32.h: Add #error macro to make sure we don't include w32.h for
2260 Cygwin builds. Remove w32select declarations.
2261
2262 * w32console.c (w32_sys_ring_bell, Fset_message_beep): Move to
2263 w32fns.c. w32console.c is WINDOWSNT-only.
2264
2265 * w32fns.c: Include cygw32.h or w32.h depending on CYGWIN; more
2266 NTGUI_UNICODE tweaks. (See above.) Change _snprintf to the more
2267 POSIXy alternative.
2268 (faked_key, sysinfo_cache, osinfo_cahce, syspage_mask)
2269 (w32_major_version, w32_minor_version, w32_build_number)
2270 (os_subtype, sound_type): Define here
2271 (w32_defined_color): Make color parameter const for consistency
2272 with other _defined_color functions.
2273 (w32_createwindow): Unconditionally call w32_init_class instead of
2274 doing so only when hprevinst is non-NULL. Plumbing hprevinst
2275 through the code is complex and unnecessary because class
2276 registration is practically free.
2277 (w32_name_of_message): New EMACSDEBUG-only function.
2278 (Fset_message_beep): Move here
2279 (Fx_open_connection): Require that the display name for Windows be
2280 "w32" for consistency, emacsclient disambiguation, and maybe, one
2281 day, multi-window-system support.
2282 (file_dialog_callback): NTGUI_UNICODE changes; encode and decode
2283 Cygwin files for W32 GUI facilities, since these clearly don't
2284 expect Cygwin names.
2285 (_DebPrint): Define.
2286 (w32_strerror, w32_console_toggle_lock_key, w32_kbd_mods_to_emacs)
2287 (w32_kbd_patch_key, w32_sys_ring_bell): Move here.
2288 (Ssystem_move_file_to_trash): Define only for native WINDOWSNT.
2289 (w32_last_error): Remove.
2290
2291 * w32font.c: Define _strlwr to strlwr for non-WINDOWSNT builds.
2292
2293 * w32heap.c (syspage_mask): Declare here.
2294 (cache_system_info): Remove.
2295
2296 * w32inevt.c (faked_key): Define globally, not statically.
2297 (w32_kbd_mods_to_emacs, w32_kbd_patch_key, faked_key)
2298 (w32_console_toggle_lock_key): Move to w32fns.c.
2299
2300 * w32menu.c: Include setjmp.h. NTGUI_UNICODE changes throughout.
2301
2302 * w32proc.c (_DebPrint): Move to w32fns.c.
2303 * w32select.c: Include string.h, stdio.h for Cygwin.
2304 * w32select.h: New File.
2305
2306 * w32term.c: Include io.h for non-CYGWIN builds; needed for
2307 get_osfhandle.
2308 (w32_message_fd): New variable. Under Cygwin, holds the file
2309 descriptor the system used to tell us about pending thread
2310 messages.
2311
2312 (w32_init_term): Remove incorrect calls to fcntl and init_sigio
2313 that prevented compilation under non-WINDOWSNT systems.
2314
2315 (w32_initialize): Open /dev/windows and assign it to
2316 w32_message_fd. Provide w32 feature.
2317
2318 * w32term.h: Include frame.h, atimer.h. Declare various frame functions.
2319 (WM_EMACS_INPUT_READY): add.
2320 (prepend_msg, w32_message_fd): Declare globally.
2321
2322 * w32xfns.c:
2323 (keyboard_handle): Use only when WINDOWSNT.
2324 (notify_msg_ready): New function. Posts a message to the main
2325 thread's message queue under CYGWIN, which wakes up the main
2326 thread from select(2) by making the /dev/windows file descriptor
2327 ready. Under WINDOWSNT, it sets an event the same way the old
2328 code did.
2329
2330 (post, prepend_msg): Actually call notify_msg_ready instead of
2331 setting the input event directly.
2332
2333 2012-10-07 Eli Zaretskii <eliz@gnu.org>
2334
2335 * ralloc.c (relinquish): If a heap is ready to be relinquished,
2336 but it still has blocs in it, don't return it to the system,
2337 instead of aborting. (Bug#12402)
2338
2339 2012-10-07 Jan Djärv <jan.h.d@swipnet.se>
2340
2341 * nsterm.m (ns_dumpglyphs_image): Only draw slice of image (Bug#12506).
2342
2343 * nsterm.m (ns_update_auto_hide_menu_bar): Remove defintion of
2344 MAC_OS_X_VERSION_10_6.
2345 (syms_of_nsterm): Remove comment about Panther and above for
2346 ns-antialias-text.
2347 * nsterm.h (MAC_OS_X_VERSION_10_3, onTiger): Remove.
2348 (EmacsApp): Remove check for >= MAC_OS_X_VERSION_10_4.
2349 (struct nsfont_info): Remove check for >= MAC_OS_X_VERSION_10_3.
2350
2351 * nsselect.m (ns_string_from_pasteboard): Remove check for >=
2352 MAC_OS_X_VERSION_10_4.
2353
2354 * nsmenu.m (fillWithWidgetValue:): Remove code for <
2355 MAC_OS_X_VERSION_10_2.
2356
2357 * nsimage.m (setPixmapData, getPixelAtX, setAlphaAtX): Remove onTiger.
2358
2359 * nsfns.m (Fns_list_services): Remove comment and check for OSX < 10.4.
2360 (ns_do_applescript): Remove check for >= MAC_OS_X_VERSION_10_4.
2361
2362 * nsterm.m (ns_in_resize): Remove (Bug#12479).
2363 (ns_resize_handle_rect, mouseDown, mouseUp, mouseDragged): Remove.
2364 (ns_clear_frame, sendEvent, windowDidResize, drawRect:):
2365 Remove ns_in_resize check.
2366 (ns_clear_frame_area): Remove resize handle code.
2367
2368 * nsfns.m (ns_in_resize): Remove.
2369 (x_set_icon_name, ns_set_name, ns_set_name_as_filename):
2370 Remove ns_in_resize check.
2371
2372 2012-10-07 Paul Eggert <eggert@cs.ucla.edu>
2373
2374 Improve sys_siglist detection.
2375 * sysdep.c (sys_siglist, init_signals): Use _sys_siglist if it's
2376 defined as a macro, as is done in Solaris.
2377 (sys_siglist_entries): New macro.
2378 (save_strsignal): Use it.
2379 * syssignal.h (safe_strsignal): Now ATTRIBUTE_CONST, to pacify
2380 GCC 4.7.2 on Fedora 17 with the fixed sys_siglist detection.
2381
2382 2012-10-06 Jan Djärv <jan.h.d@swipnet.se>
2383
2384 * nsfns.m (Fx_create_frame): Call x_default_parameter with
2385 fullscreen/Fullscreen.
2386
2387 * nsterm.h (EmacsView): Rename tbar_height to tibar_height.
2388 tobar_height is new.
2389
2390 * nsterm.m (x_make_frame_visible): Check for fullscreen.
2391 (ns_fullscreen_hook): Activate old style fullscreen with a timer.
2392 (ns_term_init): Set activateIgnoringOtherApps if old style fullscreen.
2393 (windowDidResize:): Check for correct window if old style fullscreen.
2394 Capitalize word in comment. Remove incorrect comment.
2395 (initFrameFromEmacs:): tbar_height renamed tibar_height.
2396 (windowDidEnterFullScreen:): Toggle toolbar for fullscreen to fix
2397 error in drawing background.
2398 (toggleFullScreen:): Remove comment. Rearrange calls.
2399 Set toolbar values to zero, save old height in tobar_height.
2400 Restore tool bar height when leaving fullscreen.
2401 (canBecomeMainWindow): New function.
2402
2403 2012-10-06 Paul Eggert <eggert@cs.ucla.edu>
2404
2405 * keyboard.c (read_char): Remove unnecessary 'volatile's and label.
2406
2407 2012-10-05 Eli Zaretskii <eliz@gnu.org>
2408
2409 * w32proc.c (stop_timer_thread): Fix declaration of 'err'.
2410
2411 * w32.c (utime): Open the file with FILE_FLAG_BACKUP_SEMANTICS, so
2412 that time stamps of directories could also be changed.
2413 Don't request the too broad GENERIC_WRITE, only the more restrictive
2414 FILE_WRITE_ATTRIBUTES access rights.
2415
2416 * fileio.c (Fset_file_times): Special-case ignoring errors for
2417 directories only on MSDOS, not on MS-Windows.
2418
2419 2012-10-05 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
2420
2421 * minibuf.c (Fcompleting_read): Doc fix. (Bug#12555)
2422
2423 2012-10-04 Eli Zaretskii <eliz@gnu.org>
2424
2425 * w32.c (utime): Test for INVALID_HANDLE_VALUE, not for NULL, to
2426 see whether CreateFile failed.
2427
2428 2012-10-04 Paul Eggert <eggert@cs.ucla.edu>
2429
2430 * profiler.c (handle_profiler_signal): Inhibit pending signals too,
2431 to avoid similar races.
2432 * keyboard.c (pending_signals): Now bool, not int.
2433
2434 Port timers to OpenBSD, plus check for timer failures.
2435 OpenBSD problem reported by Han Boetes.
2436 * profiler.c (setup_cpu_timer): Check for failure of timer_settime
2437 and/or setitimer.
2438 (Fprofiler_cpu_stop): Don't assume HAVE_SETITIMER.
2439 * syssignal.h (HAVE_ITIMERSPEC): New macro. This is for platforms
2440 like OpenBSD, which has timer_settime but does not declare it.
2441 OpenBSD does not define SIGEV_SIGNAL, so use that when deciding
2442 whether to use itimerspec-related primitives. All uses of
2443 HAVE_TIMER_SETTIME replaced with HAVE_ITIMERSPEC.
2444
2445 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
2446
2447 * profiler.c (handle_profiler_signal): Fix a malloc race
2448 that caused Emacs to hang on Fedora 17 when profiling Lisp.
2449
2450 2012-10-02 Jan Djärv <jan.h.d@swipnet.se>
2451
2452 * nsterm.m (windowDidEnterFullScreen): Remove fprintf.
2453
2454 2012-10-02 Eli Zaretskii <eliz@gnu.org>
2455
2456 * w32proc.c (sys_wait): Declare 'signame' 'const char *', to be
2457 consistent with the change in return value of 'safe_strsignal'.
2458
2459 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
2460
2461 Prefer plain 'static' to 'static inline' (Bug#12541).
2462 * bidi.c (bidi_get_type, bidi_check_type, bidi_get_category)
2463 (bidi_set_sor_type, bidi_push_embedding_level)
2464 (bidi_pop_embedding_level, bidi_remember_char, bidi_copy_it)
2465 (bidi_cache_reset, bidi_cache_shrink, bidi_cache_fetch_state)
2466 (bidi_cache_search, bidi_cache_ensure_space)
2467 (bidi_cache_iterator_state, bidi_cache_find)
2468 (bidi_peek_at_next_level, bidi_set_paragraph_end)
2469 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
2470 (bidi_explicit_dir_char, bidi_resolve_neutral_1):
2471 Now 'static', not 'static inline'.
2472
2473 Count overruns when profiling; change units to ns.
2474 * profiler.c (handle_profiler_signal): Count sampling intervals, not ms.
2475 Give extra weight to samples after overruns, to attempt to count
2476 the time more accurately.
2477 (setup_cpu_timer): Change sampling interval units from ms to ns, since
2478 the underlying primitives nominally do ns.
2479 (Fprofiler_cpu_start): Document the change. Mention that
2480 the sampling intervals are only approximate.
2481
2482 2012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
2483
2484 * frame.c (Fmake_terminal_frame): Prefer safer CONSP over !NILP.
2485
2486 * coding.h (ENCODE_FILE, DECODE_FILE, DECODE_SYSTEM): Remove special
2487 case for the special 0 coding-system.
2488
2489 * buffer.c (Fset_buffer_multibyte): Signal an error instead of widening.
2490 (Fmake_overlay): Remove redundant tests.
2491 (fix_start_end_in_overlays): Remove redundant recentering.
2492
2493 2012-10-02 Juanma Barranquero <lekktu@gmail.com>
2494
2495 * makefile.w32-in ($(BLD)/alloc.$(O), $(BLD)/gmalloc.$(O)):
2496 Update dependencies.
2497
2498 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
2499
2500 Fix a malloc race condition involving strsignal.
2501 A signal can arrive in the middle of a malloc, and Emacs's signal
2502 handler can invoke strsignal, which can invoke malloc, which is
2503 not portable. This race condition bug makes Emacs hang on GNU/Linux.
2504 Fix it by altering the signal handler so that it does not invoke
2505 strsignal.
2506 * emacs.c (shut_down_emacs): Use safe_strsignal, not strsignal.
2507 * process.c (status_message): Use const pointer, in case strsignal
2508 is #defined to safe_strsignal.
2509 * sysdep.c (sys_siglist, init_signals): Always define and
2510 initialize a substitute sys_siglist if the system does not define
2511 one, even if HAVE_STRSIGNAL.
2512 (safe_strsignal): Rename from strsignal. Always define,
2513 using sys_siglist. Return a const pointer.
2514 * syssignal.h (safe_strsignal): New decl.
2515 (strsignal) [!HAVE_STRSIGNAL]: Define in terms of safe_strsignal.
2516
2517 2012-10-01 Eli Zaretskii <eliz@gnu.org>
2518
2519 * w32proc.c (timer_loop): Fix code that waits for timer
2520 expiration, to avoid high CPU usage.
2521
2522 2012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
2523
2524 * fns.c (check_hash_table, get_key_arg, maybe_resize_hash_table)
2525 (sweep_weak_table): Remove redundant prototypes.
2526
2527 2012-10-01 Fabrice Popineau <fabrice.popineau@gmail.com>
2528
2529 * emacs.c: Move the inclusion of TERM_HEADER after including
2530 windows.h on WINDOWSNT. This avoids compilation problems with
2531 MSVC.
2532
2533 2012-10-01 Eli Zaretskii <eliz@gnu.org>
2534
2535 * unexw32.c (OFFSET_TO_RVA, RVA_TO_OFFSET)
2536 (RVA_TO_SECTION_OFFSET): Encode all macro arguments in parentheses.
2537 (RVA_TO_PTR): Cast the result of RVA_TO_OFFSET to 'unsigned char *',
2538 as the previous version used 'void *'.
2539
2540 * ralloc.c (ROUNDUP): Fix last change.
2541 (MEM_ROUNDUP): Don't cast MEM_ALIGN, it is already of type
2542 'size_t'.
2543
2544 * w32proc.c <disable_itimers>: New static flag.
2545 (init_timers): Initialize it to zero, after creating the critical
2546 sections used by the timer threads.
2547 (term_timers): Set to 1 before deleting the critical sections.
2548 (getitimer, setitimer): If disable_itimers is non-zero, return an
2549 error indication without doing anything. Reported by Fabrice
2550 Popineau <fabrice.popineau@supelec.fr> as part of bug#12544.
2551 (alarm) [HAVE_SETITIMER]: Be more conformant to the expected
2552 return results.
2553 [!HAVE_SETITIMER]: Behave as the previous version that didn't
2554 support timers.
2555
2556 * emacs.c (shut_down_emacs) [WINDOWSNT]: Move the call to
2557 term_ntproc after all the other bookkeeping, to get timers working
2558 as long as possible.
2559
2560 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
2561
2562 * xdisp.c (syms_of_xdisp): Default message-log-max to 1000, not 100.
2563 Suggested by Juri Linkov in
2564 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00821.html>.
2565
2566 Prefer plain 'static' to 'static inline' (Bug#12541).
2567 With static functions, modern compilers inline pretty well by
2568 themselves; advice from programmers often hurts as much as it helps.
2569 On my host (x86-64, Fedora 17, GCC 4.7.2, default 'configure'),
2570 this change shrinks the text size of the Emacs executable by 1.1%
2571 without affecting CPU significantly in my benchmark.
2572 * alloc.c (mem_find, live_string_p, live_cons_p, live_symbol_p)
2573 (live_float_p, live_misc_p, live_vector_p, live_buffer_p)
2574 (mark_maybe_object, mark_maybe_pointer, bounded_number):
2575 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
2576 (bset_auto_fill_function, bset_auto_save_file_format)
2577 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
2578 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
2579 (bset_cache_long_line_scans, bset_case_fold_search)
2580 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
2581 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
2582 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
2583 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
2584 (bset_header_line_format, bset_indicate_buffer_boundaries)
2585 (bset_indicate_empty_lines, bset_invisibility_spec)
2586 (bset_left_fringe_width, bset_major_mode, bset_mark)
2587 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
2588 (bset_name, bset_overwrite_mode, bset_pt_marker)
2589 (bset_right_fringe_width, bset_save_length)
2590 (bset_scroll_bar_width, bset_scroll_down_aggressively)
2591 (bset_scroll_up_aggressively, bset_selective_display)
2592 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
2593 (bset_word_wrap, bset_zv_marker, set_buffer_overlays_before)
2594 (set_buffer_overlays_after):
2595 * category.c (bset_category_table):
2596 * charset.c (read_hex):
2597 * coding.c (produce_composition, produce_charset)
2598 (handle_composition_annotation, handle_charset_annotation)
2599 (char_encodable_p):
2600 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers)
2601 (assign_row, set_frame_matrix_frame, make_current)
2602 (add_row_entry):
2603 * eval.c (set_specpdl_symbol, set_specpdl_old_value):
2604 * fns.c (maybe_resize_hash_table):
2605 * frame.c (fset_buffer_predicate, fset_minibuffer_window):
2606 * gmalloc.c (register_heapinfo):
2607 * image.c (lookup_image_type):
2608 * intervals.c (set_interval_object, set_interval_left)
2609 (set_interval_right, copy_interval_parent, rotate_right)
2610 (rotate_left, balance_possible_root_interval):
2611 * keyboard.c (kset_echo_string, kset_kbd_queue)
2612 (kset_keyboard_translate_table, kset_last_prefix_arg)
2613 (kset_last_repeatable_command, kset_local_function_key_map)
2614 (kset_overriding_terminal_local_map, kset_real_last_command)
2615 (kset_system_key_syms, clear_event, set_prop):
2616 * lread.c (digit_to_number):
2617 * marker.c (attach_marker, live_buffer, set_marker_internal):
2618 * nsterm.m (ns_compute_glyph_string_overhangs):
2619 * process.c (pset_buffer, pset_command)
2620 (pset_decode_coding_system, pset_decoding_buf)
2621 (pset_encode_coding_system, pset_encoding_buf, pset_filter)
2622 (pset_log, pset_mark, pset_name, pset_plist, pset_sentinel)
2623 (pset_status, pset_tty_name, pset_type, pset_write_queue):
2624 * syntax.c (bset_syntax_table, dec_bytepos):
2625 * terminal.c (tset_param_alist):
2626 * textprop.c (interval_has_some_properties)
2627 (interval_has_some_properties_list):
2628 * window.c (wset_combination_limit, wset_dedicated)
2629 (wset_display_table, wset_hchild, wset_left_fringe_width)
2630 (wset_left_margin_cols, wset_new_normal, wset_new_total)
2631 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
2632 (wset_right_fringe_width, wset_right_margin_cols)
2633 (wset_scroll_bar_width, wset_start, wset_temslot, wset_vchild)
2634 (wset_vertical_scroll_bar_type, wset_window_parameters):
2635 * xdisp.c (wset_base_line_number, wset_base_line_pos)
2636 (wset_column_number_displayed, wset_region_showing)
2637 (window_box_edges, run_window_scroll_functions)
2638 (append_glyph_string_lists, prepend_glyph_string_lists)
2639 (append_glyph_string, set_glyph_string_background_width)
2640 (append_glyph, append_composite_glyph)
2641 (take_vertical_position_into_account):
2642 * xfaces.c (x_create_gc, x_free_gc, merge_face_vectors)
2643 (face_attr_equal_p, lface_equal_p, hash_string_case_insensitive)
2644 (lface_hash, lface_same_font_attributes_p, lookup_face):
2645 * xml.c (libxml2_loaded_p):
2646 * xterm.c (x_set_mode_line_face_gc, x_set_glyph_string_gc)
2647 (x_set_glyph_string_clipping, x_clear_glyph_string_rect):
2648 Now 'static', not 'static inline'.
2649
2650 * bidi.c: Tune.
2651 (bidi_copy_it): Do the whole copy with a single memcpy.
2652 (bidi_char_at_pos): Merge the two STRING_CHAR calls into one.
2653
2654 Revert the FOLLOW-SYMLINKS change for file-attributes.
2655 Doing it right would require several changes to Tramp, and there's
2656 not enough time to get that tested before the freeze today.
2657 * dired.c (directory_files_internal, Ffile_attributes):
2658 Undo last change.
2659
2660 * frame.c (x_report_frame_params): Port better to wider ints.
2661 Do not assume that EMACS_UINT is the same width as uprintmax_t,
2662 or that pointers can be printed in 15 decimal digits.
2663 Avoid GCC warnings if EMACS_UINT is wider than a pointer.
2664
2665 2012-09-30 Fabrice Popineau <fabrice.popineau@supelec.fr>
2666
2667 Support x64 build on MS-Windows.
2668 * w32term.h (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK): Define for x64.
2669 (SET_SCROLL_BAR_W32_WINDOW): Cast ID to intptr_t, for
2670 compatibility with x64.
2671 (x_get_focus_frame): Add prototype.
2672
2673 * w32term.c (w32_draw_underwave): Don't use GCC extensions for
2674 defining an XRectangle structure.
2675
2676 * w32proc.c (RVA_TO_PTR, w32_executable_type): Fix pointer
2677 arithmetics for compatibility with x64.
2678
2679 * w32menu.c (add_menu_item): Use UINT_PTR instead of UINT, for
2680 compatibility with x64.
2681
2682 * w32heap.h: Adjust prototypes and declarations.
2683
2684 * w32heap.c (RVA_TO_PTR, allocate_heap, sbrk, init_heap)
2685 (round_heap): Use DWORD_PTR, ptrdiff_t and size_t instead of
2686 DWORD, long, and unsigned long, for compatibility with x64.
2687 (allocate_heap) [_WIN64]: Reserve 32GB of memory.
2688 (sbrk): Argument is now of type ptrdiff_t.
2689
2690 * w32fns.c (HMONITOR): Condition declaration on _WIN32_WINNT being
2691 less than 0x0500.
2692 (w32_msg_pump): Use WPARAM type for 'result'.
2693
2694 * w32.c (init_environment, get_emacs_configuration): Support AMD64
2695 architecture.
2696 (init_ntproc): Cast arguments of _open_osfhandle to intptr_t, for
2697 compatibility with x64.
2698
2699 * vm-limit.c (lim_data): Now size_t.
2700 (check_memory_limits): Adjust prototypes of real_morecore and
2701 __morecore to receive argument of type ptrdiff_t. Use size_t for
2702 five_percent and data_size.
2703
2704 * unexw32.c: Use DWORD_PTR instead of DWORD for file-scope
2705 variables, for compatibility with x64.
2706 (rva_to_section, offset_to_section, relocate_offset)
2707 (OFFSET_TO_RVA, RVA_TO_OFFSET, RVA_TO_SECTION_OFFSET)
2708 (PTR_TO_RVA, RVA_TO_PTR, OFFSET_TO_PTR, get_section_info)
2709 (copy_executable_and_dump_data): Use DWORD_PTR instead of DWORD
2710 for compatibility with x64.
2711
2712 * sysdep.c (STDERR_FILENO): Define if not already defined.
2713
2714 * ralloc.c (real_morecore): Argument type is now ptrdiff_t.
2715 (__morecore): Argument type is now ptrdiff_t.
2716 (ROUNDUP, MEM_ROUNDUP): Use size_t instead of 'unsigned long'.
2717 (relinquish): Use ptrdiff_t type for 'excess'.
2718 (r_alloc_sbrk): Argument type is now ptrdiff_t.
2719
2720 * makefile.w32-in (HEAPSIZE): Get value from EMACS_HEAPSIZE.
2721 (bootstrap-temacs-CMD, bootstrap-temacs-SH): Use $(EMACS_PURESIZE)
2722 instead of a literal number.
2723
2724 * gmalloc.c [WINDOWSNT]: Include w32heap.h.
2725 (min): Define only if not already defined.
2726
2727 * frame.c (x_report_frame_params): Use EMACS_UINT for the return
2728 value of FRAME_X_WINDOW, to fit a 64-bit pointer on 64-bit Windows
2729 hosts.
2730
2731 * image.c (x_bitmap_pixmap): Return ptrdiff_t, not int, since
2732 'bitmaps' is a pointer.
2733
2734 * dispextern.h (x_bitmap_pixmap): Adjust prototype.
2735
2736 * alloc.c (gdb_make_enums_visible): Now conditional on __GNUC__.
2737
2738 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
2739
2740 file-attributes has a new optional arg FOLLOW-SYMLINKS.
2741 * dired.c (directory_files_internal, Ffile_attributes):
2742 New arg follow_symlinks. All uses changed.
2743
2744 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
2745
2746 * .gdbinit (xbacktrace): Adjust to recent "struct backtrace" change.
2747
2748 2012-09-30 Eli Zaretskii <eliz@gnu.org>
2749
2750 Support atimers and CPU profiler via profile.c on MS-Windows.
2751 * w32proc.c (sig_mask, crit_sig): New static variables.
2752 (sys_signal): Support SIGALRM and SIGPROF.
2753 (sigemptyset, sigaddset, sigfillset, sigprocmask)
2754 (pthread_sigmask, setpgrp): Move here from w32.c. sigaddset,
2755 sigfillset, and sigprocmask are no longer no-ops.
2756 (sigismember): New function.
2757 (struct itimer_data): New definition.
2758 (ticks_now, real_itimer, prof_itimer, clocks_min, crit_real)
2759 (crit_prof): New static variables.
2760 (MAX_SINGLE_SLEEP): New definition.
2761 (timer_loop, stop_timer_thread, term_timers, init_timers)
2762 (start_timer_thread, getitimer, setitimer): New functions.
2763 (alarm): No longer a no-op, calls setitimer.
2764
2765 * w32.c (term_ntproc): Call term_timers.
2766 (init_ntproc): Make sure all signals are unblocked at startup, to
2767 erase any traces of dumping. Call init_timers.
2768
2769 * w32fns.c (hourglass_timer, HOURGLASS_ID): Remove.
2770 Windows-specific code to display the hourglass mouse pointer is no
2771 longer used.
2772 (w32_wnd_proc): Remove code that handled the WM_TIMER message due
2773 to hourglass timer expiration.
2774 (start_hourglass, cancel_hourglass, DEFAULT_HOURGLASS_DELAY):
2775 Remove, no longer used.
2776 (w32_note_current_window, show_hourglass, hide_hourglass):
2777 New functions, in support of hourglass cursor display similar to other
2778 window systems.
2779 (syms_of_w32fns): Don't initialize hourglass_timer.
2780
2781 * xdisp.c (start_hourglass, cancel_hourglass): Now used on
2782 WINDOWSNT as well.
2783 (start_hourglass) [WINDOWSNT]: Call w32_note_current_window.
2784
2785 * w32.h (init_timers, term_timers): Add prototypes.
2786
2787 2012-09-30 Kenichi Handa <handa@gnu.org>
2788
2789 * coding.c (decode_coding_ccl, encode_coding_ccl): Pay attention
2790 to the buffer relocation which may be caused by ccl_driver.
2791
2792 2012-09-30 Jan Djärv <jan.h.d@swipnet.se>
2793
2794 * xfns.c (Fx_file_dialog): Update comment.
2795
2796 * w32fns.c (Fx_file_dialog): Update comment.
2797
2798 * nsfns.m (Fns_read_file_name): Add argument DIR_ONLY_P.
2799 Initialize panel name field if OSX >= 10.6.
2800
2801 * fileio.c (Fnext_read_file_uses_dialog_p): Add HAVE_NS.
2802
2803 * nsfns.m (ns_frame_parm_handlers): Add x_set_fullscreen.
2804
2805 * nsterm.m (NEW_STYLE_FS): New define.
2806 (ns_fullscreen_hook, windowWillEnterFullScreen)
2807 (windowDidEnterFullScreen, windowWillExitFullScreen)
2808 (windowDidExitFullScreen, toggleFullScreen, handleFS)
2809 (setFSValue): New functions.
2810 (EmacsFSWindow): New implementation.
2811 (canBecomeKeyWindow): New function for EmacsFSWindow.
2812 (ns_create_terminal): Set fullscreen_hook to ns_fullscreen_hook.
2813 (dealloc): Release nonfs_window if in fullscreen.
2814 (updateFrameSize:): Call windowDidMove to update top/left.
2815 (windowWillResize:toSize:): Check if frame is still maximized.
2816 (initFrameFromEmacs:): Initialize fs_state, fs_before_fs,
2817 next_maximized, maximized_width, maximized_height and nonfs_window.
2818 Call setCollectionBehavior if NEW_STYLE_FS. Initialize bwidth and
2819 tbar_height.
2820 (windowWillUseStandardFrame:defaultFrame:): Update frame parameter
2821 fullscreen. Set maximized_width/height. Act on next_maximized.
2822
2823 * nsterm.h (MAC_OS_X_VERSION_10_7, MAC_OS_X_VERSION_10_8): New.
2824 (EmacsView): Add variables for fullscreen.
2825 (handleFS, setFSValue, toggleFullScreen): New in EmacsView.
2826 (EmacsFSWindow): New interface for fullscreen.
2827
2828 2012-09-30 Juanma Barranquero <lekktu@gmail.com>
2829
2830 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
2831
2832 2012-09-30 Chong Yidong <cyd@gnu.org>
2833
2834 * fns.c (Frandom): Doc fix.
2835
2836 2012-09-30 Martin Rudalics <rudalics@gmx.at>
2837
2838 * window.c (Vwindow_combination_limit): New default value.
2839 (Qwindow_size): New symbol replacing Qtemp_buffer_resize.
2840
2841 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
2842
2843 * syssignal.h (PROFILER_CPU_SUPPORT): Don't define if PROFILING.
2844 Suggested by Eli Zaretskii in
2845 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00811.html>.
2846
2847 2012-09-30 Eli Zaretskii <eliz@gnu.org>
2848
2849 * profiler.c (Fprofiler_cpu_stop): Use timer_settime only if
2850 HAVE_TIMER_SETTIME is defined.
2851
2852 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
2853
2854 Profiler improvements: more-accurate timers, overflow checks.
2855 * profiler.c: Don't include stdio.h, limits.h, sys/time.h,
2856 signal.h, setjmp.h. Include systime.h instead.
2857 (saturated_add): New function.
2858 (record_backtrace, current_sample_interval): Use EMACS_INT, not size_t.
2859 (record_backtrace, handle_profiler_signal): Saturate on fixnum overflow.
2860 (profiler_timer, profiler_timer_ok) [HAVE_TIMER_SETTIME]:
2861 New static vars.
2862 (enum profiler_cpu_running): New enum.
2863 (profiler_cpu_running): Now of that enum type, not bool.
2864 All uses changed to store the new value.
2865 (handle_profiler_signal): Rename from sigprof_handler_1,
2866 for consistency with other handlers. Do not check whether
2867 cpu_log is a hash-table if garbage collecting, since it
2868 doesn't matter in that case.
2869 (deliver_profiler_signal): Rename from sigprof_handler,
2870 for consistency with other handlers.
2871 (setup_cpu_timer): New function, with much of what used to be in
2872 Fprofiler_cpu_start. Check for out-of-range argument.
2873 Prefer timer_settime if available, and prefer
2874 thread cputime clocks, then process cputime clocks, then
2875 monotonic clocks, to the old realtime clock. Use make_timeval
2876 to round more-correctly when falling back to setitimer.
2877 (Fprofiler_cpu_start): Use it.
2878 (Fprofiler_cpu_stop): Prefer timer_settime if available.
2879 Don't assume that passing NULL as the 2nd argument of setitimer
2880 is the same as passing a pointer to all-zero storage.
2881 Ignore SIGPROF afterwards.
2882 (malloc_probe): Saturate at MOST_POSITIVE_FIXNUM.
2883 * sysdep.c (emacs_sigaction_init): Also mask out SIGPROF in
2884 non-fatal signal handlers. Ignore SIGPROF on startup.
2885 * syssignal.h (PROFILER_CPU_SUPPORT): Define this macro here, not
2886 in profiler.c, since sysdep.c now uses it.
2887
2888 * sysdep.c (handle_fatal_signal): Bump backtrace size to 40.
2889 Suggested by Eli Zaretskii in
2890 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00796.html>.
2891
2892 2012-09-29 Juanma Barranquero <lekktu@gmail.com>
2893
2894 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
2895
2896 2012-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
2897
2898 * lisp.h (struct backtrace): Remove indirection for `function' field.
2899 * xdisp.c (redisplay_internal):
2900 * profiler.c (record_backtrace, sigprof_handler_1):
2901 * alloc.c (Fgarbage_collect):
2902 * eval.c (interactive_p, Fsignal, eval_sub, Ffuncall, Fbacktrace)
2903 (Fbacktrace_frame): Adjust accordingly.
2904
2905 2012-09-28 Glenn Morris <rgm@gnu.org>
2906
2907 * eval.c (Frun_hook_with_args, Frun_hook_with_args_until_success)
2908 (Frun_hook_with_args_until_failure): Doc fixes.
2909
2910 2012-09-28 Eli Zaretskii <eliz@gnu.org>
2911
2912 * xdisp.c (syms_of_xdisp) <Qredisplay_internal>: Rename from
2913 Qautomatic_redisplay and change the symbol name. All users changed.
2914
2915 2012-09-28 Tomohiro Matsuyama <tomo@cx4a.org>
2916
2917 * profiler.c (sigprof_handler): Fix race condition.
2918
2919 2012-09-28 Glenn Morris <rgm@gnu.org>
2920
2921 * lread.c (lisp_file_lexically_bound_p): Handle #! lines. (Bug#12528)
2922
2923 2012-09-27 Paul Eggert <eggert@cs.ucla.edu>
2924
2925 Check more robustly for timer_settime.
2926 * Makefile.in (LIB_TIMER_TIME): New macro.
2927 (LIBES): Add it.
2928 * atimer.c (alarm_timer, alarm_timer_ok, set_alarm, init_atimer):
2929 Use HAVE_TIMER_SETTIME, not SIGEV_SIGNAL, to decide whether to
2930 call timer_settime.
2931
2932 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
2933
2934 * profiler.c (Fprofiler_cpu_start): Remove unnecessary flag SA_SIGINFO.
2935
2936 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
2937
2938 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
2939
2940 2012-09-26 Paul Eggert <eggert@cs.ucla.edu>
2941
2942 * character.h (MAYBE_UNIFY_CHAR): Remove.
2943 * charset.c, charset.h (maybe_unify_char): Now static.
2944 * charset.c (decode_char): Use maybe_unify_char, not MAYBE_UNIFY_CHAR.
2945 Since this stuff is now private to charset.c, there's no need for
2946 a public macro and no need to inline by hand.
2947
2948 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
2949 Stefan Monnier <monnier@iro.umontreal.ca>
2950 Juanma Barranquero <lekktu@gmail.com>
2951
2952 * profiler.c: New file.
2953 * Makefile.in (base_obj): Add profiler.o.
2954 * makefile.w32-in (OBJ2, GLOBAL_SOURCES): Add profiler.c.
2955 ($(BLD)/profiler.$(O)): New target.
2956 * emacs.c (main): Call syms_of_profiler.
2957 * alloc.c (Qautomatic_gc): New constant.
2958 (MALLOC_PROBE): New macro.
2959 (xmalloc, xzalloc, xrealloc, lisp_malloc, lisp_align_malloc): Use it.
2960 (total_bytes_of_live_objects): New function.
2961 (Fgarbage_collect): Use it. Record itself in backtrace_list.
2962 Call malloc_probe for the memory profiler.
2963 (syms_of_alloc): Define Qautomatic_gc.
2964 * eval.c (eval_sub, Ffuncall): Reorder assignments to avoid
2965 race condition.
2966 (struct backtrace): Move definition...
2967 * lisp.h (struct backtrace): ..here.
2968 (Qautomatic_gc, profiler_memory_running): Declare vars.
2969 (malloc_probe, syms_of_profiler): Declare functions.
2970 * xdisp.c (Qautomatic_redisplay): New constant.
2971 (redisplay_internal): Record itself in backtrace_list.
2972 (syms_of_xdisp): Define Qautomatic_redisplay.
2973
2974 2012-09-25 Eli Zaretskii <eliz@gnu.org>
2975 2012-09-25 Juanma Barranquero <lekktu@gmail.com>
2976
2977 * makefile.w32-in ($(BLD)/callproc.$(O)): Update dependencies.
2978
2979 2012-09-25 Paul Eggert <eggert@cs.ucla.edu>
2980
2981 Prefer POSIX timers if available.
2982 They avoid a race if the timer is too close to the current time.
2983 * atimer.c (alarm_timer, alarm_timer_ok) [SIGEV_SIGNAL]: New static vars.
2984 (set_alarm) [SIGEV_SIGNAL]: Use POSIX timers if available.
2985 (init_atimer) [SIGEV_SIGNAL]: Initialize them.
2986
2987 2012-09-25 Eli Zaretskii <eliz@gnu.org>
2988
2989 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY): Make it an alias of
2990 CHAR_STRING_ADVANCE.
2991 (STRING_CHAR_ADVANCE_NO_UNIFY): Make it an alias of
2992 STRING_CHAR_ADVANCE.
2993
2994 2012-09-25 Juanma Barranquero <lekktu@gmail.com>
2995
2996 Move Vlibrary_cache to emacs.c and reset before dumping.
2997
2998 * lisp.h (reset_image_types): Declare.
2999 [WINDOWSNT] (Vlibrary_cache): Declare.
3000
3001 * image.c (reset_image_types): New function.
3002
3003 * emacs.c [WINDOWSNT] (Vlibrary_cache): Move from w32.c.
3004 (syms_of_emacs) [WINDOWSNT] <Vlibrary_cache>: Initialize and staticpro.
3005 (Fdump_emacs): Reset Vlibrary_cache and image_types.
3006
3007 * w32.c (Vlibrary_cache): Do not define; moved to emacs.c
3008 (globals_of_w32) <Vlibrary_cache>: Do not initialize.
3009
3010 * w32.h (Vlibrary_cache): Do not declare.
3011
3012 2012-09-25 Eli Zaretskii <eliz@gnu.org>
3013
3014 * w32proc.c (sys_signal): Handle all signals defined by the
3015 MS-Windows runtime, not just SIGCHLD. Actually install the signal
3016 handlers for signals supported by Windows. Don't override
3017 term_ntproc as the handler for SIGABRT.
3018 (sigaction): Rewrite to call sys_signal instead of duplicating its
3019 code.
3020 (sys_kill): Improve commentary.
3021
3022 * w32.c (term_ntproc): Accept (and ignore) one argument, for
3023 consistency with a signature of a signal handler. All callers
3024 changed.
3025 (init_ntproc): Accept an argument DUMPING. If dumping, don't
3026 install term_ntproc as a signal handler for SIGABRT, as that
3027 should be done by the dumped Emacs.
3028
3029 * w32.h (init_ntproc, term_ntproc): Adjust prototypes.
3030
3031 * w32select.c (term_w32select): Protect against repeated
3032 invocation by setting clipboard_owner to NULL after calling
3033 DestroyWindow.
3034
3035 * emacs.c (shut_down_emacs, main): Adapt the calls to init_ntproc
3036 and term_ntproc to their modified signatures.
3037
3038 * character.c (char_string, string_char): Remove calls to
3039 MAYBE_UNIFY_CHAR. See the discussion starting at
3040 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00433.html
3041 for the details.
3042
3043 2012-09-25 Chong Yidong <cyd@gnu.org>
3044
3045 * xdisp.c (mode_line_inverse_video): Delete obsolete variable.
3046
3047 2012-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
3048
3049 * bytecode.c (exec_byte_code): Signal an error instead of aborting,
3050 when encountering an unknown bytecode.
3051
3052 2012-09-24 Paul Eggert <eggert@cs.ucla.edu>
3053
3054 image.c, indent.c: Use bool for booleans.
3055 * dispextern.h (struct image_type): Members valid_p, load, init
3056 now return bool, not int. All uses changed.
3057 * image.c: Omit unnecessary static decls.
3058 (x_create_bitmap_mask, x_build_heuristic_mask):
3059 Return void, not int, since callers don't care about the return value.
3060 (x_create_bitmap_mask, define_image_type, valid_image_p)
3061 (struct image_keyword, parse_image_spec, image_spec_value)
3062 (check_image_size, image_background)
3063 (image_background_transparent, x_clear_image_1)
3064 (postprocess_image, lookup_image, x_check_image_size)
3065 (x_create_x_image_and_pixmap, xbm_image_p)
3066 (Create_Pixmap_From_Bitmap_Data, xbm_read_bitmap_data)
3067 (xbm_load_image, xbm_file_p, xbm_load, xpm_lookup_color)
3068 (init_xpm_functions, xpm_valid_color_symbols_p, xpm_image_p)
3069 (xpm_load, xpm_load_image, lookup_rgb_color, lookup_pixel_color)
3070 (x_to_xcolors, x_build_heuristic_mask, pbm_image_p, pbm_load)
3071 (png_image_p, init_png_functions, png_load_body, png_load)
3072 (jpeg_image_p, init_jpeg_functions, jpeg_load_body, jpeg_load)
3073 (tiff_image_p, init_tiff_functions, tiff_load, gif_image_p)
3074 (init_gif_functions, gif_load, imagemagick_image_p)
3075 (imagemagick_load_image, imagemagick_load, svg_image_p)
3076 (init_svg_functions, svg_load, svg_load_image, gs_image_p)
3077 (gs_load):
3078 * nsimage.m (ns_load_image):
3079 * nsterm.m (ns_defined_color):
3080 * xfaces.c (tty_lookup_color, tty_defined_color, defined_color):
3081 * xfns.c (x_defined_color):
3082 * xterm.c (x_alloc_lighter_color_for_widget)
3083 (x_alloc_nearest_color_1, x_alloc_nearest_color)
3084 (x_alloc_lighter_color):
3085 * indent.c (disptab_matches_widthtab, current_column)
3086 (scan_for_column, string_display_width, indented_beyond_p)
3087 (compute_motion, vmotion, Fvertical_motion):
3088 Use bool for booleans.
3089
3090 2012-09-24 Chong Yidong <cyd@gnu.org>
3091
3092 * chartab.c (Fset_char_table_default): Obsolete function removed.
3093
3094 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
3095
3096 Move pid_t related decls out of lisp.h.
3097 * lisp.h, syswait.h (record_child_status_change, wait_for_termination)
3098 (interruptible_wait_for_termination):
3099 Move these decls from lisp.h to syswait.h, since they use pid_t.
3100 Needed on FreeBSD; see Herbert J. Skuhra in
3101 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00571.html>.
3102 * callproc.c: Include syswait.h.
3103
3104 gnutls.c, gtkutil.c: Use bool for boolean.
3105 * gnutls.c (gnutls_global_initialized, init_gnutls_functions)
3106 (emacs_gnutls_handle_error):
3107 * gtkutil.c (xg_check_special_colors, xg_prepare_tooltip)
3108 (xg_hide_tooltip, xg_create_frame_widgets)
3109 (create_dialog, xg_uses_old_file_dialog)
3110 (xg_get_file_with_chooser, xg_get_file_with_selection)
3111 (xg_get_file_name, xg_have_tear_offs, create_menus, xg_create_widget)
3112 (xg_item_label_same_p, xg_update_menubar)
3113 (xg_modify_menubar_widgets, xg_event_is_for_menubar)
3114 (xg_ignore_gtk_scrollbar, xg_set_toolkit_scroll_bar_thumb)
3115 (xg_event_is_for_scrollbar, xg_pack_tool_bar, xg_make_tool_item)
3116 (is_box_type, xg_tool_item_stale_p, xg_update_tool_bar_sizes)
3117 (update_frame_tool_bar, free_frame_tool_bar):
3118 * gtkutil.c, w32term.c, xterm.c (x_wm_set_size_hint):
3119 * nsmenu.m (ns_update_menubar):
3120 * nsmenu.m, w32menu.c, xmenu.c (set_frame_menubar):
3121 * xfns.c (Fx_show_tip) [USE_GTK]:
3122 Use bool for boolean.
3123 * gtkutil.c (xg_update_frame_menubar):
3124 * xmenu.c (update_frame_menubar):
3125 Return void, not int, since caller ignores return value.
3126 * gtkutil.c (xg_change_toolbar_position):
3127 Return void, not 1.
3128
3129 2012-09-23 Juanma Barranquero <lekktu@gmail.com>
3130
3131 * makefile.w32-in (BLOCKINPUT_H): Remove.
3132 (SYSSIGNAL_H): New macro.
3133 ($(BLD)/alloc.$(O), $(BLD)/atimer.$(O), $(BLD)/buffer.$(O))
3134 ($(BLD)/callproc.$(O), $(BLD)/data.$(O), $(BLD)/dired.$(O))
3135 ($(BLD)/dispnew.$(O), $(BLD)/editfns.$(O), $(BLD)/emacs.$(O))
3136 ($(BLD)/eval.$(O), $(BLD)/fileio.$(O), $(BLD)/floatfns.$(O))
3137 ($(BLD)/fns.$(O), $(BLD)/fontset.$(O), $(BLD)/frame.$(O))
3138 ($(BLD)/fringe.$(O), $(BLD)/image.$(O), $(BLD)/insdel.$(O))
3139 ($(BLD)/keyboard.$(O), $(BLD)/keymap.$(O), $(BLD)/lread.$(O))
3140 ($(BLD)/menu.$(O), $(BLD)/w32inevt.$(O), $(BLD)/w32proc.$(O))
3141 ($(BLD)/print.$(O), $(BLD)/process.$(O), $(BLD)/ralloc.$(O))
3142 ($(BLD)/search.$(O), $(BLD)/sound.$(O), $(BLD)/sysdep.$(O))
3143 ($(BLD)/term.$(O), $(BLD)/window.$(O), $(BLD)/xdisp.$(O))
3144 ($(BLD)/xfaces.$(O), $(BLD)/w32fns.$(O), $(BLD)/w32menu.$(O))
3145 ($(BLD)/w32term.$(O), $(BLD)/w32select.$(O), $(BLD)/w32reg.$(O))
3146 ($(BLD)/w32xfns.$(O)): Update dependencies.
3147
3148 2012-09-23 Eli Zaretskii <eliz@gnu.org>
3149
3150 * .gdbinit: Set breakpoint on terminate_due_to_signal, not on
3151 fatal_error_backtrace.
3152
3153 * w32proc.c (sys_kill): Undo last change: don't do anything when
3154 invoked to deliver SIGABRT to our own process. This is now
3155 handled by emacs_raise.
3156
3157 2012-09-23 Juanma Barranquero <lekktu@gmail.com>
3158
3159 * w32term.c (w32_read_socket): Remove leftover reference to
3160 interrupt_input_pending.
3161
3162 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
3163
3164 Do not use SA_NODEFER.
3165 Problem reported by Dani Moncayo in
3166 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00557.html>.
3167 * alloc.c (die):
3168 * sysdep.c (emacs_abort): Do not reset signal handler.
3169 * emacs.c (terminate_due_to_signal): Reset signal handler here.
3170 * sysdep.c (init_signals): Do not use SA_NODEFER. It wasn't
3171 wanted even on POSIXish hosts, and it doesn't work on Windows.
3172
3173 2012-09-23 Jan Djärv <jan.h.d@swipnet.se>
3174
3175 * xterm.c (x_term_init): Call fixup_locale before and after calling
3176 gtk_init (Bug#12392).
3177
3178 2012-09-23 Chong Yidong <cyd@gnu.org>
3179
3180 * w32.c (w32_delayed_load): Remove LIBRARIES argument; always use
3181 Vdynamic_library_alist.
3182
3183 * gnutls.c (init_gnutls_functions): Caller changed; remove arg.
3184 (Fgnutls_available_p): Caller changed.
3185
3186 * xml.c (init_libxml2_functions, Flibxml_parse_html_region)
3187 (Flibxml_parse_xml_region): Likewise.
3188
3189 * dispextern.h (struct image_type): Remove arg from init function.
3190
3191 * image.c (Finit_image_library, lookup_image_type)
3192 (define_image_type): Remove now-unneeded second arg.
3193 (init_xpm_functions, init_png_functions, init_jpeg_functions)
3194 (init_tiff_functions, init_gif_functions, init_svg_functions):
3195 Arglist and w32_delayed_load calling convention changed.
3196 (gs_type): Remove init_gs_functions; there is no such function.
3197 (valid_image_p, make_image): Fix caller to lookup_image_type.
3198
3199 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
3200
3201 Simplify and avoid signal-handling races (Bug#12471).
3202 * alloc.c (die):
3203 * sysdep.c (emacs_abort) [HAVE_NTGUI]:
3204 Avoid recursive loop if there's a fatal error in the function itself.
3205 * atimer.c (pending_atimers):
3206 * blockinput.h: Don't include "atimer.h"; no longer needed.
3207 (interrupt_input_pending): Remove. All uses removed.
3208 pending_signals now counts both atimers and ordinary interrupts.
3209 This is less racy than having three separate pending-signal flags.
3210 (block_input, unblock_input, totally_unblock_input, unblock_input_to)
3211 (input_blocked_p):
3212 Rename from their upper-case counterparts BLOCK_INPUT,
3213 UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT, UNBLOCK_INPUT_TO,
3214 INPUT_BLOCKED_P, and turn into functions. All uses changed.
3215 This makes it easier to access volatile variables more accurately.
3216 (BLOCK_INPUT_RESIGNAL): Remove. All uses replaced by unblock_input ().
3217 (input_blocked_p): Prefer this to 'interrupt_input_blocked', as
3218 that's more reliable if the code is buggy and sets
3219 interrupt_input_blocked to a negative value. All uses changed.
3220 * atimer.c (deliver_alarm_signal):
3221 Remove. No need to deliver this to the parent; any thread can
3222 handle this signal now. All uses replaced by underlying handler.
3223 * atimer.c (turn_on_atimers):
3224 * dispnew.c (handle_window_change_signal):
3225 * emacs.c (handle_danger_signal):
3226 * keyboard.c (kbd_buffer_get_event):
3227 Don't reestablish signal handler; not needed with sigaction.
3228 * blockinput.h (UNBLOCK_INPUT_TO, TOTALLY_UNBLOCK_INPUT)
3229 (UNBLOCK_INPUT_TO):
3230 Rework to avoid unnecessary accesses to volatile variables.
3231 (UNBLOCK_INPUT_TO): Now a function.
3232 (totally_unblock_input, unblock_input): New decls.
3233 * data.c (handle_arith_signal, deliver_arith_signal): Move to sysdep.c
3234 (init_data): Remove. Necessary stuff now done in init_signal.
3235 * emacs.c, xdisp.c: Include "atimer.h", since we invoke atimer functions.
3236 * emacs.c (handle_fatal_signal, deliver_fatal_signal): Move to sysdep.c.
3237 (fatal_error_code): Remove; no longer needed.
3238 (terminate_due_to_signal): Rename from fatal_error_backtrace, since
3239 it doesn't always backtrace. All uses changed. No need to reset
3240 signal to default, since sigaction and/or die does that for us now.
3241 Use emacs_raise (FOO), not kill (getpid (), FOO).
3242 (main): Check more-accurately whether we're dumping.
3243 Move fatal-error setup to sysdep.c
3244 * floatfns.c: Do not include "syssignal.h"; no longer needed.
3245 * gtkutil.c (xg_get_file_name, xg_get_font):
3246 Remove no-longer-needed signal-mask manipulation.
3247 * keyboard.c, process.c (POLL_FOR_INPUT):
3248 Don't depend on USE_ASYNC_EVENTS, a symbol that is never defined.
3249 * keyboard.c (read_avail_input): Remove.
3250 All uses replaced by gobble_input.
3251 (Ftop_level): Use TOTALLY_UNBLOCK_INPUT rather than open code.
3252 (kbd_buffer_store_event_hold, gobble_input):
3253 (record_asynch_buffer_change) [USABLE_SIGIO]:
3254 (store_user_signal_events):
3255 No need to mess with signal mask.
3256 (gobble_input): If blocking input and there are terminals, simply
3257 set pending_signals to 1 and return. All hooks changed to not
3258 worry about whether input is blocked.
3259 (process_pending_signals): Clear pending_signals before processing
3260 them, in case a signal comes in while we're processing.
3261 By convention callers now test pending_signals before calling us.
3262 (UNBLOCK_INPUT_TO, unblock_input, totally_unblock_input):
3263 New functions, to support changes to blockinput.h.
3264 (handle_input_available_signal): Now extern.
3265 (reinvoke_input_signal): Remove. All uses replaced by
3266 handle_async_input.
3267 (quit_count): Now volatile, since a signal handler uses it.
3268 (handle_interrupt): Now takes bool IN_SIGNAL_HANDLER as arg.
3269 All callers changed. Block SIGINT only if not already blocked.
3270 Clear sigmask reliably, even if Fsignal returns, which it can.
3271 Omit unnecessary accesses to volatile var.
3272 (quit_throw_to_read_char): No need to restore sigmask.
3273 * keyboard.c (gobble_input, handle_user_signal):
3274 * process.c (wait_reading_process_output):
3275 Call signal-handling code rather than killing ourselves.
3276 * lisp.h: Include <float.h>, for...
3277 (IEEE_FLOATING_POINT): New macro, moved here to avoid duplication.
3278 (pending_signals): Now volatile.
3279 (syms_of_data): Now const if IEEE floating point.
3280 (handle_input_available_signal) [USABLE_SIGIO]:
3281 (terminate_due_to_signal, record_child_status_change): New decls.
3282 * process.c (create_process): Avoid disaster if memory is exhausted
3283 while we're processing a vfork, by tightening the critical section
3284 around the vfork.
3285 (send_process_frame, process_sent_to, handle_pipe_signal)
3286 (deliver_pipe_signal): Remove. No longer needed, as Emacs now
3287 ignores SIGPIPE.
3288 (send_process): No need for setjmp/longjmp any more, since the
3289 SIGPIPE stuff is now gone. Instead, report an error if errno
3290 is EPIPE.
3291 (record_child_status_change): Now extern. PID and W are now args.
3292 Return void, not bool. All callers changed.
3293 * sysdep.c (wait_debugging) [(BSD_SYSTEM || HPUX) && !defined (__GNU__)]:
3294 Remove. All uses removed. This bug should be fixed now in a
3295 different way.
3296 (wait_for_termination_1): Use waitpid rather than sigsuspend,
3297 and record the child status change directly. This avoids the
3298 need to futz with the signal mask.
3299 (process_fatal_action): Move here from emacs.c.
3300 (emacs_sigaction_flags): New function, containing
3301 much of what used to be in emacs_sigaction_init.
3302 (emacs_sigaction_init): Use it. Block nonfatal system signals that are
3303 caught by emacs, to make races less likely.
3304 (deliver_process_signal): Rename from handle_on_main_thread.
3305 All uses changed.
3306 (BACKTRACE_LIMIT_MAX): Now at top level.
3307 (thread_backtrace_buffer, threadback_backtrace_pointers):
3308 New static vars.
3309 (deliver_thread_signal, deliver_fatal_thread_signal):
3310 New functions, for more-accurate delivery of thread-specific signals.
3311 (handle_fatal_signal, deliver_fatal_signal): Move here from emacs.c.
3312 (deliver_arith_signal): Handle in this thread, not
3313 in the main thread, since it's triggered by this thread.
3314 (maybe_fatal_sig): New function.
3315 (init_signals): New arg DUMPING so that we can be more accurate
3316 about whether we're dumping. Caller changed.
3317 Treat thread-specific signals differently from process-general signals.
3318 Block all signals while handling fatal error; that's safer.
3319 xsignal from SIGFPE only on non-IEEE hosts, treating it as fatal
3320 on IEEE hosts.
3321 When batch, ignore SIGHUP, SIGINT, SIGTERM if they were already ignored.
3322 Ignore SIGPIPE unless batch.
3323 (emacs_backtrace): Output backtrace for the appropriate thread,
3324 which is not necessarily the main thread.
3325 * syssignal.h: Include <stdbool.h>.
3326 (emacs_raise): New macro.
3327 * xterm.c (x_connection_signal): Remove; no longer needed
3328 now that we use sigaction.
3329 (x_connection_closed): No need to mess with sigmask now.
3330 (x_initialize): No need to reset SIGPIPE handler here, since
3331 init_signals does this for us now.
3332
3333 2012-09-23 Jan Djärv <jan.h.d@swipnet.se>
3334
3335 * nsterm.m (ns_dumpglyphs_image): dr is a new rect to draw image into,
3336 background rect may be larger (Bug#12245).
3337
3338 2012-09-23 Chong Yidong <cyd@gnu.org>
3339
3340 * keyboard.c (timer_check): Avoid quitting during Fcopy_sequence.
3341
3342 2012-09-22 Paul Eggert <eggert@cs.ucla.edu>
3343
3344 * .gdbinit: Just stop at fatal_error_backtrace.
3345 See Stefan Monnier's request in
3346 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00549.html>.
3347 Remove no-longer-used query of system type.
3348
3349 2012-09-22 Chong Yidong <cyd@gnu.org>
3350
3351 * search.c (Freplace_match): Doc fix (Bug#12325).
3352
3353 * minibuf.c (Finternal_complete_buffer): Doc fix (Bug#12391).
3354
3355 * editfns.c (Fline_beginning_position): Doc fix (Bug#12416).
3356 (Fline_end_position): Doc fix.
3357
3358 * cmds.c (Fforward_char, Fbackward_char): Doc fix (Bug#12414).
3359
3360 2012-09-22 Chong Yidong <cyd@gnu.org>
3361
3362 * dispextern.h (struct image_type): Add new slot, storing a type
3363 initialization function.
3364
3365 * image.c (define_image_type): Call the image initializer function
3366 if it is defined. Arguments and return value changed.
3367 (valid_image_p, make_image): Callers changed.
3368 (xbm_type, xpm_type, pbm_type, png_type, jpeg_type, tiff_type)
3369 (gif_type, imagemagick_type, svg_type, gs_type):
3370 Add initialization functions.
3371 (Finit_image_library): Call lookup_image_type.
3372 (CHECK_LIB_AVAILABLE): Macro deleted.
3373 (lookup_image_type): Call define_image_type here, rather than via
3374 Finit_image_library, and without using CHECK_LIB_AVAILABLE.
3375 (syms_of_image): Move define_image_type calls for xbm_type and
3376 pbm_type to lookup_image_type.
3377
3378 2012-09-22 Eli Zaretskii <eliz@gnu.org>
3379
3380 * keyboard.c (timer_check_2): Move calculation of 'timers' and
3381 'idle_timers' from here ...
3382 (timer_check): ... to here. Use Fcopy_sequence to copy the timer
3383 lists, to avoid infloops when the timer does something stupid,
3384 like reinvoke itself with the same or smaller time-out.
3385 (Bug#12447)
3386
3387 2012-09-22 Martin Rudalics <rudalics@gmx.at>
3388
3389 * window.c (Fsplit_window_internal): Handle only Qt value of
3390 Vwindow_combination_limit separately.
3391 (Qtemp_buffer_resize): New symbol.
3392 (Vwindow_combination_limit): New default value.
3393 Rewrite doc-string.
3394
3395 2012-09-22 Eli Zaretskii <eliz@gnu.org>
3396
3397 * xdisp.c (next_overlay_string): Initialize it->end_charpos for
3398 the new overlay string. (Bug#10159)
3399
3400 2012-09-22 Paul Eggert <eggert@cs.ucla.edu>
3401
3402 * emacs.c (shut_down_emacs): Don't assume stderr is buffered,
3403 or that fprintf is async-signal-safe. POSIX doesn't require
3404 either assumption.
3405
3406 2012-09-22 Chong Yidong <cyd@gnu.org>
3407
3408 * buffer.c (Fset_buffer_modified_p): Handle indirect buffers
3409 (Bug#8207).
3410
3411 2012-09-22 Kenichi Handa <handa@gnu.org>
3412
3413 * composite.c (composition_reseat_it): Handle the case that a
3414 grapheme cluster is not covered by a single font (Bug#12352).
3415
3416 2012-09-21 Chong Yidong <cyd@gnu.org>
3417
3418 * image.c (define_image_type): Avoid adding duplicate types to
3419 image_types (Bug#12463). Suggested by Jörg Walter.
3420
3421 2012-09-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3422
3423 * unexmacosx.c: Define LC_DATA_IN_CODE if not defined.
3424 (print_load_command_name): Add case LC_DATA_IN_CODE.
3425 (dump_it) [LC_DATA_IN_CODE]: Call copy_linkedit_data.
3426
3427 2012-09-21 Glenn Morris <rgm@gnu.org>
3428
3429 * eval.c (Frun_hook_with_args_until_success)
3430 (Frun_hook_with_args_until_failure): Doc fixes. (Bug#12393)
3431
3432 2012-09-21 Andreas Schwab <schwab@linux-m68k.org>
3433
3434 * fileio.c (Ffile_selinux_context): Only call freecon when
3435 lgetfilecon succeeded.
3436 (Fset_file_selinux_context): Likewise. (Bug#12444)
3437
3438 2012-09-21 Eli Zaretskii <eliz@gnu.org>
3439
3440 * xdisp.c (try_window_reusing_current_matrix): Under bidi
3441 reordering, locate the cursor by calling set_cursor_from_row; if
3442 that fails, clear the desired glyph matrix before returning a
3443 failure indication to the caller. Fixes leaving garbled display
3444 when fast scrolling with a down-key. (Bug#12403)
3445 (compute_stop_pos_backwards): Fix a typo that caused crashes while
3446 scrolling through multibyte text.
3447
3448 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
3449
3450 * alloc.c (mark_object) <PVEC_WINDOW>: Mark prev/next_buffers *after*
3451 calling mark_vectorlike since that's the one that marks the window.
3452 (mark_discard_killed_buffers): Mark the final cdr.
3453 * window.h (struct window): Move prev/next_buffers to the
3454 non-standard fields.
3455 * window.c (make_window): Initialize prev/next_buffers manually.
3456
3457 2012-09-20 Paul Eggert <eggert@cs.ucla.edu>
3458
3459 Omit unused arg EXPECTED from socket hooks.
3460 * keyboard.c (gobble_input, read_avail_input, tty_read_avail_input):
3461 * nsterm.m (ns_term_init):
3462 * termhooks.h (struct terminal.read_socket_hook):
3463 * w32inevt.c (w32_console_read_socket):
3464 * w32term.c (w32_read_socket):
3465 * xterm.c (XTread_socket):
3466 Omit unused arg EXPECTED. All callers changed.
3467 (store_user_signal_events): Return void, not int, since callers no
3468 longer care about the return value. All uses changed.
3469
3470 2012-09-20 Juanma Barranquero <lekktu@gmail.com>
3471
3472 * w32gui.h (XParseGeometry): Do not declare.
3473
3474 2012-09-19 Paul Eggert <eggert@cs.ucla.edu>
3475
3476 * w32inevt.c (w32_console_read_socket): Return -1 on failure, not 0.
3477 Ignore 'expected'. See Eli Zaretskii in
3478 <http://bugs.gnu.org/12471#8> (last line).
3479
3480 * frame.c (read_integer): Remove. All uses replaced by strtol/strtoul.
3481 (XParseGeometry): Now static. Substitute extremal values for
3482 values that are out of range.
3483
3484 2012-09-19 Jan Djärv <jan.h.d@swipnet.se>
3485
3486 * w32xfns.c (read_integer, XParseGeometry): Move to frame.c.
3487
3488 * nsfns.m (XParseGeometry): Remove.
3489 (Fx_create_frame): Call x_set_offset to correctly interpret
3490 top_pos in geometry.
3491
3492 * frame.c (read_integer, XParseGeometry): Move from w32xfns.c.
3493 (Fx_parse_geometry): If there is a space in string, call
3494 Qns_parse_geometry, otherwise do as on other terms (Bug#12368).
3495
3496 2012-09-17 Eli Zaretskii <eliz@gnu.org>
3497
3498 * search.c (scan_buffer): Use character positions in calls to
3499 region_cache_forward and region_cache_backward, not byte
3500 positions. (Bug#12196)
3501
3502 * w32term.c (w32_read_socket): Set pending_signals to 1, like
3503 xterm.c does. Reported by Daniel Colascione <dancol@dancol.org>.
3504
3505 * ralloc.c (r_alloc_init) [!SYSTEM_MALLOC]: Initialize
3506 __malloc_extra_blocks to 32 instead of 64, like alloc.c did in
3507 emacs_blocked_malloc, now deleted.
3508
3509 2012-09-17 Paul Eggert <eggert@cs.ucla.edu>
3510
3511 Remove no-longer-needed Solaris 2.4 vfork bug workaround.
3512 The workaround was for improving performance on Solaris 2.4, but
3513 is getting in the way now. Emacs will still work if someone is
3514 still running Solaris 2.4 in a museum somewhere; Sun dropped
3515 support for Solaris 2.4 in 2003.
3516 * callproc.c (Fcall_process) [HAVE_WORKING_VFORK]:
3517 * process.c (create_process) [HAVE_WORKING_VFORK]:
3518 Omit now-unnecessary workaround for the Solaris 2.4 vfork bug,
3519 since Emacs no longer uses vfork on that platform.
3520
3521 2012-09-17 Glenn Morris <rgm@gnu.org>
3522
3523 * emacs.c: Use COPYRIGHT.
3524
3525 2012-09-16 Paul Eggert <eggert@cs.ucla.edu>
3526
3527 Remove configure's --without-sync-input option (Bug#12450).
3528 When auditing signal-handling in preparation for cleaning it up,
3529 I found that SYNC_INPUT has race conditions and would be a real
3530 pain to fix. Since it's an undocumented and deprecated
3531 configure-time option, now seems like a good time to remove it.
3532 Also see <http://bugs.gnu.org/11080#16>.
3533 * alloc.c (_bytes_used, __malloc_extra_blocks, _malloc_internal)
3534 (_free_internal) [!DOUG_LEA_MALLOC]: Remove decls.
3535 (alloc_mutex) [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
3536 (malloc_hysteresis):
3537 (check_depth) [XMALLOC_OVERRUN_CHECK]:
3538 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT):
3539 (__malloc_hook, __realloc_hook, __free_hook, BYTES_USED)
3540 (dont_register_blocks, bytes_used_when_reconsidered)
3541 (bytes_used_when_full, emacs_blocked_free, emacs_blocked_malloc)
3542 (emacs_blocked_realloc, reset_malloc_hooks, uninterrupt_malloc):
3543 [!SYSTEM_MALLOC && !SYNC_INPUT]:
3544 Remove. All uses removed.
3545 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): Use a different
3546 implementation, one that depends on whether the new macro
3547 XMALLOC_BLOCK_INPUT_CHECK is defined, not on whether SYNC_INPUT
3548 is defined.
3549 * atimer.c (run_timers, handle_alarm_signal):
3550 * keyboard.c (pending_signal, poll_for_input_1, poll_for_input)
3551 (handle_async_input, process_pending_signals)
3552 (handle_input_available_signal, init_keyboard):
3553 * nsterm.m (ns_read_socket):
3554 * process.c (wait_reading_process_output):
3555 * regex.c (immediate_quit, IMMEDIATE_QUIT_CHECK):
3556 * sysdep.c (emacs_sigaction_init) [SA_RESTART]:
3557 (emacs_write):
3558 * xterm.c (XTread_socket):
3559 Assume SYNC_INPUT.
3560 * conf_post.h (SA_RESTART) [IRIX6_5]: Do not #undef.
3561 * eval.c (handling_signal): Remove. All uses removed.
3562 * lisp.h (ELSE_PENDING_SIGNALS): Remove.
3563 All uses replaced with the SYNC_INPUT version.
3564 (reset_malloc_hooks, uninterrupt_malloc, handling_signal):
3565 Remove decls.
3566 * sysdep.c, syssignal.h (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
3567 Now static.
3568
3569 * font.c (Ffont_shape_gstring): Remove unused local.
3570
3571 2012-09-16 Glenn Morris <rgm@gnu.org>
3572
3573 * Makefile.in (clean): No longer run nextstep's clean.
3574
3575 * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Remove variables.
3576 (ns_frag): Remove.
3577 (ns-app): Move here from ns.mk, and simplify.
3578 (clean): Simplify nextstep entry.
3579 * ns.mk: Remove file.
3580
3581 2012-09-17 Kenichi Handa <handa@gnu.org>
3582
3583 * font.c (Ffont_shape_gstring): Fix previous change; GLYPHs may
3584 not covert the last few charactes.
3585
3586 2012-09-16 Kenichi Handa <handa@gnu.org>
3587
3588 * font.c (Ffont_shape_gstring): Don't adjust grapheme cluster
3589 here, but just check the validity of glyphs in the glyph-string.
3590
3591 2012-09-16 Martin Rudalics <rudalics@gmx.at>
3592
3593 * window.c (Fwindow_parameter, Fset_window_parameter):
3594 Accept any window as argument (Bug#12452).
3595
3596 2012-09-16 Jan Djärv <jan.h.d@swipnet.se>
3597
3598 * nsfns.m (Fx_open_connection): Move initialization of ns_*_types
3599 to ns_term_init to avoid memory leak.
3600
3601 * nsterm.m (ns_update_begin): Initialize bp after lcokFocus, use
3602 explicit retain/release.
3603 (ns_term_init): Only allow one display. Initialize outerpool and
3604 ns_*_types.
3605
3606 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
3607
3608 Port _setjmp fix to POSIXish hosts as well as Microsoft.
3609 * image.c (_setjmp) [!HAVE__SETJMP]: Restore definition, as
3610 it's needed on POSIXish hosts that lack _setjmp. Attempt to solve
3611 the Microsoft problem in a different way, by altering ../nt/config.nt.
3612
3613 2012-09-15 Eli Zaretskii <eliz@gnu.org>
3614
3615 * w32xfns.c:
3616 * w32uniscribe.c:
3617 * w32term.c:
3618 * w32select.c:
3619 * w32reg.c:
3620 * w32proc.c:
3621 * w32menu.c:
3622 * w32inevt.c:
3623 * w32heap.c:
3624 * w32font.c:
3625 * w32fns.c:
3626 * w32console.c:
3627 * w32.c:
3628 * w16select.c: Remove inclusion of setjmp.h, as it is now included
3629 by lisp.h. This completes removal of setjmp.h inclusion
3630 erroneously announced in the previous commit. (Bug#12446)
3631
3632 * lisp.h [!HAVE__SETJMP, !HAVE_SIGSETJMP]: Make the commentary
3633 more accurate.
3634
3635 * image.c (_setjmp) [!HAVE__SETJMP]: Define only if 'setjmp' is
3636 not defined as a macro. The latter happens on MS-Windows.
3637 (Bug#12446)
3638
3639 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
3640
3641 Port better to POSIX hosts lacking _setjmp (Bug#12446).
3642 * lisp.h: Include <setjmp.h> here, since we use its symbols here.
3643 Some instances of '#include <setjmp.h>' removed, if the
3644 only reason for the instance was because "lisp.h" was included.
3645 (sys_jmp_buf, sys_setjmp, sys_longjmp): New symbols.
3646 Unless otherwise specified, replace all uses of jmp_buf, _setjmp,
3647 and _longjmp with the new symbols. Emacs already uses _setjmp if
3648 available, so this change affects only POSIXish hosts that have
3649 sigsetjmp but not _setjmp, such as some versions of Solaris and
3650 Unixware. (Also, POSIX-2008 marks _setjmp as obsolescent.)
3651 * image.c (_setjmp, _longjmp) [HAVE_PNG && !HAVE__SETJMP]: New macros.
3652 (png_load_body) [HAVE_PNG]:
3653 (PNG_LONGJMP) [HAVE_PNG && PNG_LIBPNG_VER < 10500]:
3654 (PNG_JMPBUF) [HAVE_PNG && PNG_LIBPNG_VER >= 10500]:
3655 Use _setjmp and _longjmp rather than sys_setjmp and sys_longjmp,
3656 since PNG requires jmp_buf. This is the only exception to the
3657 general rule that we now use sys_setjmp and sys_longjmp.
3658 This exception is OK since this code does not change the signal
3659 mask or longjmp out of a signal handler.
3660
3661 2012-09-14 Paul Eggert <eggert@cs.ucla.edu>
3662
3663 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
3664 Include "syssignal.h", for 'main_thread'.
3665
3666 2012-09-14 Dmitry Antipov <dmantipov@yandex.ru>
3667
3668 Avoid out-of-range marker position (Bug#12426).
3669 * insdel.c (replace_range, replace_range_2):
3670 Adjust markers before overlays, as suggested by comments.
3671 (insert_1_both, insert_from_buffer_1, adjust_after_replace):
3672 Remove redundant check before calling offset_intervals.
3673
3674 2012-09-14 Martin Rudalics <rudalics@gmx.at>
3675
3676 * xdisp.c (Fformat_mode_line): Unconditionally save/restore
3677 current buffer (Bug#12387).
3678
3679 2012-09-14 Juanma Barranquero <lekktu@gmail.com>
3680
3681 * makefile.w32-in ($(BLD)/alloc.$(O)): Update dependencies.
3682
3683 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
3684
3685 Use a more backwards-compatible timer format (Bug#12430).
3686 * keyboard.c (decode_timer): Get PSECS from the 8th (origin-0)
3687 vector element, not from the 4th, since PSECS is now at the end.
3688 (Fcurrent_idle_time): Doc fix.
3689
3690 2012-09-13 Dmitry Antipov <dmantipov@yandex.ru>
3691
3692 Function to mark objects and remove killed buffers at once.
3693 * alloc.c (discard_killed_buffers): Rename to ...
3694 (mark_discard_killed buffers) ... new name. Add marking
3695 of remaining objects. Fix comment. Adjust users.
3696 (mark_object): Do not touch frame buffer lists here.
3697 * frame.c (delete_frame): Reset frame buffer lists here.
3698
3699 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
3700
3701 Better workaround for GNOME bug when --enable-gcc-warnings.
3702 * emacsgtkfixed.c (G_STATIC_ASSERT): Remove, undoing last change.
3703 Instead, disable -Wunused-local-typedefs. See Dmitry Antipov in
3704 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00335.html>.
3705
3706 Simplify SIGIO usage (Bug#12408).
3707 The code that dealt with SIGIO was crufty and confusing, e.g., it
3708 played tricks like "#undef SIGIO" but these tricks were not used
3709 consistently. Simplify mostly by not #undeffing standard symbols,
3710 e.g., use "defined USABLE_SIGIO" (our symbol, which we can define
3711 or not as we please) rather than "defined SIGIO" (standard symbol
3712 that we probably shouldn't #undef).
3713 * conf_post.h [USG5_4]: Do not include <sys/wait.h> here.
3714 Modules that need it can include it.
3715 [USG5_4 && emacs]: Likewise, do not include the streams stuff here.
3716 * dispextern.h (ignore_sigio): New decl.
3717 * emacs.c (shut_down_emacs): Invoke unrequest_sigio
3718 unconditionally, since it's now a no-op if !USABLE_SIGIO.
3719 * emacs.c (shut_down_emacs):
3720 * keyboard.c (kbd_buffer_store_event_hold):
3721 Use ignore_sigio rather than invoking 'signal' directly.
3722 * keyboard.c (USABLE_FIONREAD && USG5_4): Include <sys/filio.h>,
3723 for FIONREAD.
3724 (FIONREAD, SIGIO): Do not #undef.
3725 (tty_read_avail_input): Use #error rather than a syntax error.
3726 * process.c [USG5_4]: Include <sys/stream.h> and <sys/stropts.h>,
3727 for I_PIPE, used by SETUP_SLAVE_PTY.
3728 (DATAGRAM_SOCKETS): Simplify defn, based on USABLE_FIONREAD.
3729 * sysdep.c (croak): Remove; no longer needed. This bit of
3730 temporary code, with Fred N. Fish's comment that it's temporary,
3731 has been in Emacs since at least 1992!
3732 (init_sigio, reset_sigio, request_sigio, unrequest_sigio):
3733 Arrange for them to be no-ops in all cases when ! USABLE_SIGIO.
3734 * syssignal.h (croak): Remove decl.
3735 (SIGIO, SIGPOO, SIGAIO, SIGPTY): Do not #undef; that's too fragile.
3736 * systty.h [!NO_TERMIO]: Do not include <termio.h>; no longer needed
3737 now that we're termios-only.
3738 (FIONREAD, ASYNC) [BROKEN_FIONREAD]: Do not #undef.
3739 * term.c (dissociate_if_controlling_tty): Use #error rather than
3740 a run-time error.
3741
3742 Work around GCC and GNOME bugs when --enable-gcc-warnings.
3743 * emacsgtkfixed.c (G_STATIC_ASSERT): Redefine to use 'verify',
3744 to work around GNOME bug 683906.
3745 * image.c (jpeg_load_body) [HAVE_JPEG && lint]: Pacify gcc -Wclobber.
3746 (struct my_jpeg_error_mgr) [HAVE_JPEG && lint]: New member fp.
3747 This works around GCC bug 54561.
3748
3749 2012-09-12 Paul Eggert <eggert@cs.ucla.edu>
3750
3751 More fixes for 'volatile' and setjmp/longjmp.
3752 * eval.c (Fdefvar, Fcondition_case): Remove unnecessary 'volatile's.
3753 * image.c (struct png_load_context) [HAVE_PNG]: New type.
3754 (png_load_body) [HAVE_PNG]:
3755 (jpeg_load_body) [HAVE_JPEG]:
3756 New function, with most of the old parent function's body.
3757 (png_load) [HAVE_PNG]:
3758 (jpeg_load) [HAVE_JPEG]:
3759 Invoke the new function, to avoid longjmp munging our locals.
3760 (struct my_jpeg_error_mgr) [HAVE_JPEG]: New members cinfo, failure_code.
3761 (my_error_exit) [HAVE_JPEG]: Don't trust 'setjmp' to return 2 when
3762 longjmp is passed 2, as the C standard doesn't guarantee this.
3763 Instead, store the failure code into mgr->failure_code.
3764
3765 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
3766
3767 * keyboard.c (read_char, requeued_events_pending_p, Finput_pending_p)
3768 (Fdiscard_input, quit_throw_to_read_char, init_keyboard)
3769 (syms_of_keyboard): Remove support for unread-command-char.
3770
3771 2012-09-12 Eli Zaretskii <eliz@gnu.org>
3772
3773 * w32proc.c (sys_kill): If PID is our process ID and the signal is
3774 SIGABRT, call emacs_abort. Avoids silently exiting upon assertion
3775 violation. (Bug#12426)
3776
3777 2012-09-12 Paul Eggert <eggert@cs.ucla.edu>
3778
3779 * image.c (jpeg_memory_src): Don't assume string len fits in unsigned.
3780
3781 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
3782
3783 * eval.c: Add `inhibit-debugger'.
3784 (Qinhibit_debugger): New symbol.
3785 (call_debugger): Bind it instead of Qdebug_on_error.
3786 (maybe_call_debugger): Test Vinhibit_debugger.
3787 (syms_of_eval): Define inhibit-debugger.
3788 * xdisp.c (set_message): Don't bind Qinhibit_debug_on_message.
3789 (syms_of_xdisp): Remove inhibit-debug-on-message.
3790
3791 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
3792
3793 Avoid _setjmp/_longjmp problems with local nonvolatile variables.
3794 If a nonvolatile local variable is written before a _longjmp to
3795 the frame containing the variable, and is read after the _longjmp,
3796 the value read is indeterminate. Some local variables of type
3797 'struct handler' and 'struct catchtag' are used in this way, so
3798 mark each of their slots as volatile if the slot can be set before
3799 _longjmp and read afterwards.
3800 * lisp.h (struct handler): var and chosen_clause are now volatile.
3801 (struct catchtag): val, next, and pdlcount are now volatile.
3802
3803 * bidi.c (bidi_push_it, bidi_pop_it):
3804 * fns.c (copy_hash_table):
3805 * image.c (define_image_type):
3806 * keyboard.c (kbd_buffer_store_event_hold):
3807 * process.c (Fprocess_send_eof):
3808 * xfaces.c (x_create_gc) [HAVE_NS]:
3809 * xgselect.c (xg_select):
3810 Prefer assignment to memcpy when either will do.
3811
3812 * alloc.c (discard_killed_buffers): Tune and simplify a bit.
3813 Use pointer-to-a-pointer to simplify and avoid a NILP check each
3814 time an item is removed. No need to mark this function 'inline';
3815 the compiler knows better than we do.
3816
3817 2012-09-11 Jan Djärv <jan.h.d@swipnet.se>
3818
3819 * nsterm.m (ns_judge_scroll_bars): Pass NO to updateFrameSize.
3820 (updateFrameSize:): Add delay parameter to updateFrameSize, send it
3821 to change_frame_size (Bug#12388).
3822 (windowDidResize:): Pass YES to updateFrameSize.
3823
3824 * nsterm.h: Add delay parameter to updateFrameSize.
3825
3826 2012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
3827
3828 Discard killed buffers from deleted window and frame objects.
3829 This reduces an amount of references to killed buffers and
3830 helps GC to reclaim them faster.
3831 * alloc.c (discard_killed_buffers): New function.
3832 (mark_object): Use it for deleted windows and frames.
3833 (mark_object): If symbol's value is set up for a killed buffer
3834 or deleted frame, restore its global binding.
3835 * data.c (swap_in_global_binding): Add GC notice.
3836 (swap_in_symval_forwarding): Use convenient set_blv_where.
3837 * window.c (wset_next_buffers, wset_prev_buffers): Move ...
3838 * window.h: ... to here.
3839
3840 2012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
3841
3842 Convenient macro to check whether the buffer is live.
3843 * buffer.h (BUFFER_LIVE_P): New macro.
3844 * alloc.c, buffer.c, editfns.c, insdel.c, lread.c, marker.c:
3845 * minibuf.c, print.c, process.c, window.c, xdisp.c: Use it.
3846
3847 2012-09-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3848
3849 * xdisp.c (right_overwritten, right_overwriting): Also handle gstring
3850 composition cases (Bug#12364).
3851
3852 * xterm.c (x_draw_glyph_string): Avoid overwriting inverted left
3853 overhang of succeeding glyphs overlapping box cursor.
3854
3855 * w32term.c (x_draw_glyph_string): Likewise.
3856
3857 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
3858
3859 Simplify, document, and port floating-point (Bug#12381).
3860 The porting part of this patch fixes bugs on non-IEEE platforms
3861 with frexp, ldexp, logb.
3862 * data.c, lisp.h (Qdomain_error, Qsingularity_error, Qunderflow_error):
3863 Now static.
3864 * floatfns.c: Simplify discussion of functions that Emacs doesn't
3865 support, by removing commented-out code and briefly listing the
3866 C89 functions excluded. The commented-out stuff was confusing
3867 maintenance, e.g., we thought we needed cbrt but it was commented out.
3868 (logb): Remove decl; no longer needed.
3869 (isfinite): New macro, if not already supplied.
3870 (isnan): Don't replace any existing macro.
3871 (Ffrexp, Fldexp): Define even if !HAVE_COPYSIGN, as frexp and ldexp
3872 are present on all C89 platforms.
3873 (Ffrexp): Do not special-case zero, as frexp does the right thing
3874 for that case.
3875 (Flogb): Do not use logb, as it doesn't have the desired meaning
3876 on hosts that use non-base-2 floating point. Instead, stick with
3877 frexp, which is C89 anyway. Do not pass an infinity or a NaN to
3878 frexp, to avoid getting an unspecified result.
3879
3880 * xdisp.c (Qinhibit_debug_on_message): Now static.
3881
3882 2012-09-10 Jan Djärv <jan.h.d@swipnet.se>
3883
3884 * nsterm.m (ns_update_begin): Set clip path to whole view by using
3885 NSBezierPath (Bug#12131).
3886
3887 2012-09-10 Chong Yidong <cyd@gnu.org>
3888
3889 * fns.c (Fdelq, Fdelete): Doc fix.
3890
3891 2012-09-10 Paul Eggert <eggert@cs.ucla.edu>
3892
3893 * lisp.h (XSETINT, XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL)
3894 (XSETFLOAT, XSETMISC): Parenthesize macro bodies.
3895
3896 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
3897
3898 * lisp.h (make_lisp_ptr): New macro to replace XSET.
3899 (XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL, XSETFLOAT, XSETMISC):
3900 Use it.
3901
3902 2012-09-09 Eli Zaretskii <eliz@gnu.org>
3903
3904 * fringe.c (draw_fringe_bitmap_1): Don't reduce the width of the
3905 left fringe if the window has a left margin. This avoids leaving
3906 traces of the cursor because its leftmost pixel is not drawn over.
3907
3908 * dispnew.c (update_window_line): When the left margin area of a
3909 screen line is updated, set the redraw_fringe_bitmaps_p flag of
3910 that screen line. (Bug#12277)
3911
3912 2012-09-09 Paul Eggert <eggert@cs.ucla.edu>
3913
3914 Assume C89 or later for math functions (Bug#12381).
3915 This simplifies the code, and makes it a bit smaller and faster,
3916 and (most important) makes it easier to clean up signal handling
3917 since we can stop worring about floating-point exceptions in
3918 library code. That was a problem before C89, but the problem
3919 went away many years ago on all practical Emacs targets.
3920 * data.c, image.c, lread.c, print.c:
3921 Don't include <math.h>; no longer needed.
3922 * data.c, floatfns.c (IEEE_FLOATING_POINT): Don't worry that it
3923 might be autoconfigured, as that never happens.
3924 * data.c (fmod):
3925 * doprnt.c (DBL_MAX_10_EXP):
3926 * print.c (DBL_DIG):
3927 Remove. C89 or later always defines these.
3928 * floatfns.c (HAVE_MATHERR, FLOAT_CHECK_ERRNO, FLOAT_CHECK_DOMAIN)
3929 (in_float, float_error_arg, float_error_arg2, float_error_fn_name)
3930 (arith_error, domain_error, domain_error2):
3931 Remove all this pre-C89 cruft. Do not include <errno.h> as that's
3932 no longer needed -- we simply return what C returns. All uses removed.
3933 (IN_FLOAT, IN_FLOAT2): Remove. All uses replaced with
3934 the wrapped code.
3935 (FLOAT_TO_INT, FLOAT_TO_INT2, range_error, range_error2):
3936 Remove. All uses expanded, as these macros are no longer used
3937 more than once and are now more trouble than they're worth.
3938 (Ftan): Use tan, not sin / cos.
3939 (Flogb): Assume C89 frexp.
3940 (fmod_float): Assume C89 fmod.
3941 (matherr) [HAVE_MATHERR]: Remove; no longer needed.
3942 (init_floatfns): Remove. All uses removed.
3943
3944 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
3945
3946 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Take back
3947 compositeToPoint for OSX < 10.6 (Bug#12390).
3948
3949 2012-09-08 Paul Eggert <eggert@cs.ucla.edu>
3950
3951 * floatfns.c (Ftan): Use tan (x), not (sin (x) / cos (x)).
3952 This produces more-accurate results.
3953
3954 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
3955
3956 * nsterm.m (updateFrameSize): Call setFrame: on the view when size
3957 changes (Bug#12088).
3958
3959 2012-09-08 Chong Yidong <cyd@gnu.org>
3960
3961 * syntax.c (Fstring_to_syntax): Doc fix.
3962
3963 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
3964
3965 * nsterm.m (ns_clip_to_row): Remove code that deals with drawing fringe
3966 in the internal border.
3967 (x_set_window_size): Remove static variables and their usage.
3968 (ns_redraw_scroll_bars): Fix NSTRACE arg.
3969 (ns_after_update_window_line, ns_draw_fringe_bitmap):
3970 Remove fringe/internal border adjustment (Bug#11052).
3971 (ns_draw_fringe_bitmap): Make code more like other terms (xterm.c).
3972 (ns_draw_window_cursor): Remove fringe/internal border adjustment.
3973 (ns_fix_rect_ibw): Remove.
3974 (ns_get_glyph_string_clip_rect): Remove call to ns_fix_rect_ibw.
3975 (ns_dumpglyphs_box_or_relief): Ditto.
3976 (ns_maybe_dumpglyphs_background): Remove fringe/internal border
3977 adjustment.
3978 (ns_dumpglyphs_image): Ditto.
3979 (ns_dumpglyphs_stretch): Fix coding style. Remove fringe/internal
3980 border adjustment.
3981 (ns_set_vertical_scroll_bar): Remove variables barOnVeryLeft/Right and
3982 their usage. Add fringe_extended_p and its use as in other terms.
3983 (ns_judge_scroll_bars): Code style fix. Call updateFrameSize if
3984 scroll bar was removed.
3985 (updateFrameSize): New function.
3986 (windowDidResize): Move code to updateFrameSize and call it.
3987
3988 * nsterm.h (EmacsView): Add updateFrameSize.
3989
3990 2012-09-07 Chong Yidong <cyd@gnu.org>
3991
3992 * textprop.c (Fget_text_property): Minor doc fix (Bug#12323).
3993
3994 * data.c (Flocal_variable_if_set_p): Doc fix (Bug#10713).
3995
3996 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
3997
3998 More signal-handler cleanup (Bug#12327).
3999 * emacs.c (main): Convert three 'signal' calls to 'sigaction' calls.
4000 Problem introduced when merging patches. Noted by Eli Zaretskii in
4001 <http://bugs.gnu.org/12327#67>.
4002 * floatfns.c: Comment fix.
4003 * lisp.h (force_auto_save_soon): Declare regardless of SIGDANGER.
4004 SIGDANGER might not be in scope so "#ifdef SIGDANGER" is not right,
4005 and anyway the declaration is harmless even if SIGDANGER is not defined.
4006 * syssignal.h (SIGIO): Also #undef if (! defined FIONREAD ||
4007 defined BROKEN_FIONREAD). systty.h formerly did this, but other
4008 source files not surprisingly expected syssignal.h to define, or
4009 not define, SIGIO, and it's cleaner to do it that way, for consistency.
4010 Include <sys/ioctl.h>, for FIONREAD.
4011 * systty.h (SIGIO): Do not #undef here; it's now syssignal.h's job.
4012 This eliminates a problem whereby other files mysteriously had
4013 to include "syssignal.h" before including "systty.h" if they
4014 wanted to use "#ifdef SIGIO".
4015
4016 2012-09-07 Eli Zaretskii <eliz@gnu.org>
4017
4018 * w32proc.c (sigaction): New function, emulates Posix 'sigaction'.
4019
4020 * w32.c (sigemptyset): Empty the set.
4021 (sigsetmask, sigmask, sigblock, sigunblock): Remove unused functions.
4022
4023 * alloc.c [ENABLE_CHECKING]: Include signal.h, since we need SIGABRT.
4024
4025 2012-09-07 Dmitry Antipov <dmantipov@yandex.ru>
4026
4027 * alloc.c (mark_buffer): Revert unsafe marking optimization.
4028 (mark_object): Likewise for frame objects.
4029
4030 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
4031
4032 * syssignal.h (handle_on_main_thread): Always declare,
4033 even if FORWARD_SIGNAL_TO_MAIN_THREAD is not defined.
4034 This ports to platforms without HAVE_PTHREAD.
4035
4036 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
4037
4038 Signal-handler cleanup (Bug#12327).
4039 Emacs's signal handlers were written in the old 4.2BSD style with
4040 sigblock and sigmask and so forth, and this led to some
4041 inefficiencies and confusion. Rewrite these to use
4042 pthread_sigmask etc. without copying signal sets around. Also,
4043 get rid of the confusing macros 'SIGNAL_THREAD_CHECK' and
4044 'signal', and instead use functions that do not attempt to take
4045 over the system name space. This patch causes Emacs's text
4046 segment to shrink by 0.7% on my platform, Fedora 17 x86-64.
4047 * alloc.c, emacsgtkfixed.c, nsfns.m, widget.c, xmenu.c:
4048 Do not include <signal.h> or "syssignal.h", as these
4049 modules do not use signals.
4050 * atimer.c, callproc.c, data.c, dispnew.c, emacs.c, floatfns.c:
4051 * gtkutil.c, keyboard.c, process.c, sound.c, sysdep.c, term.c, xterm.c:
4052 Do not include <signal.h>, as "syssignal.h" does that for us now.
4053 * atimer.c (sigmask_atimers): New function.
4054 (block_atimers, unblock_atimers): New functions,
4055 replacing the old macros BLOCK_ATIMERS and UNBLOCK_ATIMERS.
4056 All uses replaced.
4057 * conf_post.h [SIGNAL_H_AHB]: Do not include <signal.h>;
4058 no longer needed here.
4059 * emacs.c (main): Inspect existing signal handler with sigaction,
4060 so that there's no need to block and unblock SIGHUP.
4061 * sysdep.c (struct save_signal): New member 'action', replacing
4062 old member 'handler'.
4063 (save_signal_handlers, restore_signal_handlers):
4064 Use sigaction instead of 'signal' to save and restore.
4065 (get_set_sighandler, set_sighandler) [!WINDOWSNT]:
4066 New function. All users of 'signal' modified to use set_sighandler
4067 if they're writeonly, and to use sys_signal if they're read+write.
4068 (emacs_sigaction_init, forwarded_signal): New functions.
4069 (sys_signal): Remove. All uses replaced by calls to sigaction
4070 and emacs_sigaction_init, or by direct calls to 'signal'.
4071 (sys_sigmask) [!__GNUC__]: Remove; no longer needed.
4072 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove;
4073 all uses replaced by pthread_sigmask etc. calls.
4074 * syssignal.h: Include <signal.h>.
4075 (emacs_sigaction_init, forwarded_signal): New decls.
4076 (SIGMASKTYPE): Remove. All uses replaced by its definiens, sigset_t.
4077 (SIGEMPTYMASK): Remove; all uses replaced by its definiens, empty_mask.
4078 (sigmask, sys_sigmask): Remove; no longer needed.
4079 (sigpause): Remove. All uses replaced by its definiens, sigsuspend.
4080 (sigblock, sigunblock, sigfree):
4081 (sigsetmask) [!defined sigsetmask]:
4082 Remove. All uses replaced by pthread_sigmask.
4083 (signal): Remove. Its remaining uses (with SIG_DFL and SIG_IGN)
4084 no longer need to be replaced, and its typical old uses
4085 are now done via emacs_sigaction_init and sigaction.
4086 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove decls.
4087 (sys_sigdel): Remove; unused.
4088 (NSIG): Remove a FIXME; the code's fine. Remove an unnecessary ifdef.
4089
4090 2012-09-06 Eli Zaretskii <eliz@gnu.org>
4091
4092 * process.c (CAN_HANDLE_MULTIPLE_CHILDREN): Fix a typo that broke
4093 SIGCHLD handling on systems that don't have WNOHANG. (Bug#12327)
4094
4095 2012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
4096
4097 Explicitly mark buffer_defaults and buffer_local_symbols.
4098 * alloc.c (Fgarbage_collect): Mark buffer_defaults and
4099 mark_local_symbols here.
4100 (mark_object): If GC_CHECK_MARKED_OBJECTS, simplify checking
4101 since special buffers aren't marked here any more.
4102 (allocate_buffer): Chain new buffer with all_buffers here...
4103 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): ...and
4104 not here.
4105 (Vbuffer_defaults, Vbuffer_local_symbols): Remove.
4106 (syms_of_buffer): Remove staticpro of the above.
4107 (init_buffer_once): Set names for buffer_defaults and
4108 buffer_local_symbols.
4109
4110 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
4111
4112 Use bool for booleans in font-related modules.
4113 * font.c (font_intern_prop, font_style_to_value)
4114 (font_style_symbolic, font_parse_xlfd, font_parse_fcname)
4115 (generate_otf_features, font_check_otf_features, font_check_otf)
4116 (font_match_p, font_list_entities, font_at):
4117 * fontset.c (fontset_id_valid_p, reorder_font_vector
4118 (fontset_find_font, Fset_fontset_font)
4119 (face_suitable_for_char_p) [0]:
4120 * ftfont.c (fc_initialized, ftfont_get_open_type_spec)
4121 (ftfont_open, ftfont_text_extents, ftfont_check_otf):
4122 (m17n_flt_initialized, ftfont_shape_by_flt):
4123 * ftxfont.c (ftxfont_draw_bitmap, ftxfont_draw):
4124 * nsfont.m (nsfont_draw):
4125 * w32font.c (w32font_draw):
4126 * w32term.c (x_draw_glyphless_glyph_string_foreground):
4127 Use bool for booleans.
4128 * font.h: Adjust to above API changes.
4129 (struct font, struct font_driver, struct font_driver_list):
4130 Use bool for booleans.
4131 (struct font): Remove useless member encoding_type.
4132 All users removed.
4133 * fontset.c, xftfont.c: Omit unnecessary static decls.
4134
4135 2012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
4136
4137 * alloc.c (mark_object): Revert window marking code
4138 since it's unsafe for the Fset_window_configuration.
4139
4140 2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
4141
4142 Fix race conditions with signal handlers and errno (Bug#12327).
4143 Be more systematic about preserving errno whenever a signal
4144 handler returns, even if it's not in the main thread. Do this by
4145 renaming signal handlers to distinguish between signal delivery
4146 and signal handling. All uses changed.
4147 * atimer.c (deliver_alarm_signal): Rename from alarm_signal_handler.
4148 * data.c (deliver_arith_signal): Rename from arith_error.
4149 * dispnew.c (deliver_window_change_signal): Rename from
4150 window_change_signal.
4151 * emacs.c (deliver_error_signal): Rename from fatal_error_signal.
4152 (deliver_danger_signal) [SIGDANGER]: Rename from memory_warning_signal.
4153 * keyboard.c (deliver_input_available_signal): Rename from
4154 input_available_signal.
4155 (deliver_user_signal): Rename from handle_user_signal.
4156 (deliver_interrupt_signal): Rename from interrupt_signal.
4157 * process.c (deliver_pipe_signal): Rename from send_process_trap.
4158 (deliver_child_signal): Rename from sigchld_handler.
4159 * atimer.c (handle_alarm_signal):
4160 * data.c (handle_arith_signal):
4161 * dispnew.c (handle_window_change_signal):
4162 * emacs.c (handle_fatal_signal, handle_danger_signal):
4163 * keyboard.c (handle_input_available_signal):
4164 * keyboard.c (handle_user_signal, handle_interrupt_signal):
4165 * process.c (handle_pipe_signal, handle_child_signal):
4166 New functions, with the actual signal-handling code taken from the
4167 original respective signal handlers, sans the sporadic attempts to
4168 preserve errno, since that's now done by handle_on_main_thread.
4169 * atimer.c (alarm_signal_handler): Remove unnecessary decl.
4170 * emacs.c, floatfns.c, lisp.h: Remove unused FLOAT_CATCH_SIGKILL cruft.
4171 * emacs.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
4172 Move to sysdep.c.
4173 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
4174 Move initialization of main_thread to sysdep.c's init_signals.
4175 * process.c (waitpid) [!WNOHANG]: #define to wait; that's good enough for
4176 our usage, and simplifies the mainline code.
4177 (record_child_status_change): New static function, as a helper
4178 for handle_child_signal, and with most of the old child handler's
4179 contents.
4180 (CAN_HANDLE_MULTIPLE_CHILDREN): New constant.
4181 (handle_child_signal): Use the above.
4182 * sysdep.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
4183 Moved here from emacs.c.
4184 (init_signals) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it;
4185 code moved here from emacs.c's main function.
4186 * sysdep.c, syssignal.h (handle_on_main_thread): New function,
4187 replacing the old SIGNAL_THREAD_CHECK. All uses changed.
4188 This lets callers save and restore errno properly.
4189
4190 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
4191
4192 Remove redundant or unused things here and there.
4193 * lisp.h (CYCLE_CHECK, CHAR_TABLE_TRANSLATE): Remove.
4194 * conf_post.h (RE_TRANSLATE): Use char_table_translate.
4195 * editfns.c (Fcompare_buffer_substrings): Likewise.
4196 * frame.h (struct terminal, struct font_driver_list):
4197 Remove redundant declarations.
4198 * window.h (Qleft, Qright): Likewise.
4199
4200 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
4201
4202 Do not mark objects from deleted buffers, windows and frames.
4203 * alloc.c (mark_buffer): Mark just the buffer if it is dead.
4204 (mark_object): Likewise for windows and frames.
4205
4206 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
4207
4208 * alloc.c (valid_lisp_object_p): Treat killed buffers,
4209 buffer_defaults and buffer_local_symbols as valid objects.
4210 Return special value to denote them.
4211
4212 2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
4213
4214 * fileio.c, filelock.c, floatfns.c, fns.c: Use bool for boolean.
4215 * fileio.c (auto_saving, auto_save_error_occurred, make_temp_name)
4216 (Fexpand_file_name, barf_or_query_if_file_exists, Fcopy_file)
4217 (file_name_absolute_p, Fsubstitute_in_file_name):
4218 (check_executable, check_writable, Ffile_accessible_directory_p)
4219 (Fset_file_selinux_context, Fdefault_file_modes)
4220 (Finsert_file_contents, choose_write_coding_system)
4221 (Fwrite_region, build_annotations, a_write, e_write)
4222 (Fdo_auto_save):
4223 * filelock.c (boot_time_initialized, get_boot_time)
4224 (get_boot_time_1, lock_file_1, within_one_second):
4225 * floatfns.c (in_float):
4226 * fns.c (concat, internal_equal, Frequire, base64_encode_1)
4227 (base64_decode_1, cmpfn_eql, cmpfn_user_defined)
4228 (sweep_weak_table, sweep_weak_hash_tables, secure_hash):
4229 * lisp.h (struct Lisp_Hash_Table.cmpfn):
4230 * window.c (compare_window_configurations):
4231 Use bool for booleans.
4232 * fileio.c (auto_saving_dir_umask, auto_saving_mode_bits)
4233 (Fdefault_file_modes): Now mode_t, not int, for modes.
4234 (Fdo_auto_save): Set a boolean to 1 rather than using ++.
4235 (internal_delete_file): Now returns void, not a (boolean) int,
4236 since nobody was looking at the return value.
4237 * lisp.h, window.h: Adjust to above API changes.
4238
4239 * xdisp.c (set_message): Simplify and reindent last change.
4240
4241 2012-09-05 Juanma Barranquero <lekktu@gmail.com>
4242
4243 * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies.
4244
4245 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
4246
4247 * eval.c (call_debugger): Make the function non-static so that we
4248 can call it from set_message.
4249
4250 * xdisp.c (set_message): Implement the new variable `debug-on-message'.
4251 (syms_of_xdisp): Defvar it and `inhibit-debug-on-message'.
4252
4253 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
4254
4255 Give more-useful info on a fatal error (Bug#12328).
4256 * alloc.c [ENABLE_CHECKING]: Do not include <execinfo.h>.
4257 (die) [ENABLE_CHECKING]: Call fatal_error_backtrace instead
4258 of doing the work ourselves.
4259 * emacs.c (fatal_error_signal): Let fatal_error_backtrace
4260 do most of the work.
4261 (fatal_error_backtrace): New function, taken from the guts
4262 of the old fatal_error_signal, but with a new option to output
4263 a backtrace.
4264 (shut_down_emacs) [!DOS_NT]: Use strsignal to give more-useful
4265 info about the signal than just its number.
4266 * lisp.h (fatal_error_backtrace, emacs_backtrace): New decls.
4267 * sysdep.c: Include <execinfo.h>
4268 (emacs_backtrace): New function, taken partly from the previous
4269 code of the 'die' function.
4270 (emacs_abort): Call fatal_error_backtrace rather than abort.
4271
4272 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
4273
4274 * lread.c (readevalloop): Call internal-macroexpand-for-load to perform
4275 eager (load-time) macro-expansion.
4276 * lisp.mk (lisp): Add macroexp.
4277
4278 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
4279
4280 Simplify redefinition of 'abort' (Bug#12316).
4281 Do not try to redefine the 'abort' function. Instead, redo
4282 the code so that it calls 'emacs_abort' rather than 'abort'.
4283 This removes the need for the NO_ABORT configure-time macro
4284 and makes it easier to change the abort code to do a backtrace.
4285 * .gdbinit: Just stop at emacs_abort, not at w32_abort or abort.
4286 * emacs.c (abort) [!DOS_NT && !NO_ABORT]:
4287 Remove; sysdep.c's emacs_abort now takes its place.
4288 * lisp.h (emacs_abort): New decl. All calls from Emacs code to
4289 'abort' changed to use 'emacs_abort'.
4290 * msdos.c (dos_abort) [defined abort]: Remove; not used.
4291 (abort) [!defined abort]: Rename to ...
4292 (emacs_abort): ... new name.
4293 * sysdep.c (emacs_abort) [!HAVE_NTGUI]: New function, taking
4294 the place of the old 'abort' in emacs.c.
4295 * w32.c, w32fns.c (abort): Do not #undef.
4296 * w32.c (emacs_abort): Rename from w32_abort.
4297
4298 2012-09-04 Eli Zaretskii <eliz@gnu.org>
4299
4300 * w32uniscribe.c (uniscribe_shape): Reverse the sign of
4301 offsets[j].dv, since the y axis of the screen coordinates points
4302 down, while the y axis of the font definition coordinates points
4303 up. This fixes display of Arabic diacritics such as KASRA and
4304 KASRATAN. (Bug#11860)
4305
4306 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
4307
4308 Be more systematic about _setjmp vs setjmp.
4309 * alloc.c (test_setjmp, mark_stack):
4310 * image.c (PNG_LONGJMP) [PNG_LIBPNG_VER < 10500]:
4311 (PNG_JMPBUF) [! (PNG_LIBPNG_VER < 10500)]:
4312 (png_load, my_error_exit, jpeg_load):
4313 * process.c (send_process_trap, send_process):
4314 Uniformly prefer _setjmp and _longjmp to setjmp and longjmp.
4315 The underscored versions are up to 30x faster on some hosts.
4316 Formerly, the code used setjmp+longjmp sometimes and
4317 _setjmp+_longjmp at other times, with no particular reason to
4318 prefer setjmp+longjmp.
4319
4320 2012-09-03 Paul Eggert <eggert@cs.ucla.edu>
4321
4322 Fix minor problem found by static checking.
4323 * buffer.c (Fdelete_all_overlays): Return nil.
4324
4325 2012-09-03 Martin Rudalics <rudalics@gmx.at>
4326
4327 * buffer.c (Fdelete_all_overlays): New function.
4328
4329 2012-09-03 Chong Yidong <cyd@gnu.org>
4330
4331 * gtkutil.c: Add extern decl for Qxft.
4332
4333 2012-09-02 Paul Eggert <eggert@cs.ucla.edu>
4334
4335 * emacs.c, eval.c: Use bool for boolean.
4336 * emacs.c (initialized, inhibit_window_system, running_asynch_code):
4337 (malloc_using_checking) [DOUG_LEA_MALLOC]:
4338 (display_arg) [HAVE_X_WINDOWS || HAVE_NS]:
4339 (noninteractive, no_site_lisp, fatal_error_in_progress, argmatch)
4340 (main, decode_env_path, Fdaemon_initialized):
4341 * eval.c (call_debugger, Finteractive_p, interactive_p):
4342 (unwind_to_catch, Fsignal, wants_debugger, skip_debugger)
4343 (maybe_call_debugger, Fbacktrace):
4344 * process.c (read_process_output, exec_sentinel):
4345 Use bool for booleans.
4346 * emacs.c (shut_down_emacs): Omit unused boolean argument NO_X.
4347 All callers changed.
4348 * eval.c (interactive_p): Omit always-true boolean argument
4349 EXCLUDE_SUBRS_P. All callers changed.
4350 * dispextern.h, lisp.h: Reflect above API changes.
4351 * firstfile.c (dummy): Use the address of 'main', whose signature
4352 won't change, instead of the address of 'initialize', whose
4353 signature just changed from int to bool.
4354 * lisp.h (fatal_error_in_progress): New decl of boolean, moved here ...
4355 * msdos.c (fatal_error_in_progress): ... from here.
4356 * xdisp.c (redisplaying_p): Now a boolean. Set it to 1 instead
4357 of incrementing it.
4358 (redisplay_internal, unwind_redisplay): Simply clear
4359 REDISPLAYING_P when unwinding, instead of saving its previous,
4360 always-false value and then restoring it.
4361
4362 Clean up some extern decls.
4363 Mostly, this hoists extern decls out of .c files and into .h files.
4364 That way, we're more likely to catch errors if the interfaces change.
4365 * alloc.c [USE_GTK]: Include "gtkutil.h" so that we need not
4366 declare xg_mark_data.
4367 * dispextern.h (x_frame_parm_handlers):
4368 * font.h (Qxft):
4369 * lisp.h (Qlexical_binding, Qinternal_interpreter_environment)
4370 (Qextra_light, Qlight, Qsemi_light, Qsemi_bold, Qbold, Qextra_bold)
4371 (Qultra_bold, Qoblique, Qitalic):
4372 Move extern decl here from .c file.
4373 * alloc.c (xg_mark_data) [USE_GTK]:
4374 * doc.c (Qclosure):
4375 * eval.c (Qlexical_binding):
4376 * fns.c (time) [!HAVE_UNISTD_H]:
4377 * gtkutil.c (Qxft, Qnormal, Qextra_light, Qlight, Qsemi_light)
4378 (Qsemi_bold, Qbold, Qextra_bold, Qultra_bold, Qoblique, Qitalic):
4379 * image.c (Vlibrary_cache, QCloaded_from) [HAVE_NTGUI]:
4380 * lread.c (Qinternal_interpreter_environment):
4381 * minibuf.c (Qbuffer):
4382 * process.c (QCfamily, QCfilter):
4383 * widget.c (free_frame_faces):
4384 * xfaces.c (free_frame_menubar) [USE_X_TOOLKIT]:
4385 * xfont.c (x_clear_errors):
4386 * xterm.c (x_frame_parm_handlers):
4387 Remove now-redundant extern decls.
4388 * keyboard.c, keyboard.h (ignore_mouse_drag_p) [USE_GTK || HAVE_NS]:
4389 * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic):
4390 Now static.
4391 * xfaces.c: Remove unnecessary static decls.
4392 * xterm.c (updating_frame): Remove decl of nonexistent object.
4393
4394 * Makefile.in (gl-stamp): Don't scan $(SOME_MACHINE_OBJECTS)
4395 when building globals.h, as the objects that are not built on
4396 this host are not needed to compile C files on this host.
4397
4398 2012-09-02 Jan Djärv <jan.h.d@swipnet.se>
4399
4400 * gtkutil.h: Remove prototype for x_wm_set_size_hint.
4401
4402 * frame.h: Add missing prototype for x_wm_set_size_hint.
4403
4404 2012-09-02 Paul Eggert <eggert@cs.ucla.edu>
4405
4406 * doc.c, editfns.c, insdel.c, intervals.c: Use bool for boolean.
4407 * doc.c (read_bytecode_char, get_doc_string, reread_doc_file)
4408 (Fdocumentation, Fdocumentation_property, Fsnarf_documentation)
4409 (Fsubstitute_command_keys):
4410 * editfns.c (region_limit, find_field, Fconstrain_to_field)
4411 (save_excursion_save, save_excursion_restore)
4412 (disassemble_lisp_time, decode_time_components, emacs_nmemftime)
4413 (format_time_string, general_insert_function)
4414 (make_buffer_string, make_buffer_string_both)
4415 (Fsubst_char_in_region, Ftranslate_region_internal, Fformat):
4416 * insdel.c (check_markers, gap_left, adjust_markers_for_insert)
4417 (copy_text, insert_1, insert_1_both, insert_from_string)
4418 (insert_from_string_before_markers, insert_from_string_1)
4419 (insert_from_buffer, insert_from_buffer_1, replace_range)
4420 (replace_range_2, del_range_1, del_range_byte, del_range_both)
4421 (del_range_2, modify_region):
4422 * intervals.c (intervals_equal, balance_possible_root_interval)
4423 (adjust_intervals_for_insertion, merge_properties_sticky)
4424 (graft_intervals_into_buffer, lookup_char_property)
4425 (adjust_for_invis_intang, set_point_both)
4426 (get_property_and_range, compare_string_intervals)
4427 (set_intervals_multibyte_1, set_intervals_multibyte):
4428 * keyboard.c (decode_timer):
4429 Use bool for boolean.
4430 * intervals.h, lisp.h, systime.h: Reflect above API changes.
4431 * editfns.c (struct info): Use 1-bit unsigned bitfields for booleans.
4432
4433 2012-09-02 Chong Yidong <cyd@gnu.org>
4434
4435 * keymap.c (push_key_description): Print M-TAB as C-M-i
4436 (Bug#11758).
4437
4438 2012-09-02 Juanma Barranquero <lekktu@gmail.com>
4439
4440 * makefile.w32-in (CCL_H, W32FONT_H): New macros.
4441 (ATIMER_H, FONT_H, $(BLD)/alloc.$(O), $(BLD)/callproc.$(O))
4442 ($(BLD)/editfns.$(O), $(BLD)/ccl.$(O), $(BLD)/chartab.$(O))
4443 ($(BLD)/coding.$(O), $(BLD)/sysdep.$(O), $(BLD)/fontset.$(O))
4444 ($(BLD)/sysdep.$(O), $(BLD)/w32fns.$(O), $(BLD)/keyboard.$(O))
4445 ($(BLD)/w32term.$(O), $(BLD)/w32menu.$(O), $(BLD)/process.$(O))
4446 ($(BLD)/w32font.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
4447
4448 2012-09-01 Eli Zaretskii <eliz@gnu.org>
4449
4450 * w32uniscribe.c (uniscribe_shape): Handle correctly the case of
4451 more than one grapheme cluster passed to the shaper: compute the
4452 offset adjustment values separately for each cluster. (Bug#11860)
4453
4454 * image.c: Restore mistakenly removed inclusion of w32.h. Without
4455 it, GCC doesn't see prototypes of w32_delayed_load, and complains
4456 about implicit conversions from integer to pointer.
4457
4458 2012-09-01 Daniel Colascione <dancol@dancol.org>
4459
4460 * w32fns.c (x_display_info_for_name): Prevent crash if w32 window
4461 system used too early.
4462
4463 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
4464
4465 Better seed support for (random).
4466 * emacs.c (main): Call init_random.
4467 * fns.c (Frandom): Set the seed from a string argument, if given.
4468 Remove long-obsolete Gentzel cruft.
4469 * lisp.h, sysdep.c (seed_random): Now takes address and size, not long.
4470 (init_random): New function.
4471
4472 2012-09-01 Daniel Colascione <dancol@dancol.org>
4473
4474 * xterm.h: Add header guards. Declare x_menubar_window_to_frame.
4475 Remove x_set_frame_alpha, x_bitmap_icon, x_make_frame_visible,
4476 x_make_frame_invisible, x_iconify_frame, x_free_frame_resources,
4477 x_wm_set_size_hint, x_query_colors, x_real_positions,
4478 x_set_menu_bar_lines, x_char_width, x_char_height, x_sync,
4479 x_set_tool_bar_lines, x_activate_menubar, and free_frame_menubar,
4480 all of which have been moved to common code.
4481
4482 * xfaces.c: Include TERM_HEADER instead of listing all possible
4483 window-system headers.
4484
4485 * w32xfns.c (x_sync): Correct definition of x_sync (a no-op here)
4486 to match header.
4487
4488 * w32term.h (FRAME_X_WINDOW): Use FRAME_W32_WINDOW instead of
4489 directly accessing frame internals.
4490
4491 * w32font.h: Include font.h. Define syms_of_w32font and
4492 globals_of_w32font.
4493
4494 * process.c: Include TERM_HEADER instead of listing all possible
4495 window-system headers.
4496
4497 * nsterm.h: Remove declarations now in frame.h.
4498 Define FRAME_X_SCREEN, FRAME_X_VISUAL.
4499
4500 * menu.c: Include TERM_HEADER instead of listing all possible
4501 window-system headers.
4502
4503 * keyboard.h: Declare ignore_mouse_drag_p whenever we have a
4504 window system.
4505
4506 * keyboard.c: Include TERM_HEADER instead of listing all possible
4507 window-system headers.
4508
4509 * image.c: Include TERM_HEADER instead of listing all possible
4510 window-system headers. Declare Vlibrary_cache when compiling for
4511 Windows.
4512
4513 * gtkutil.h (xg_list_node_): Include xterm.h to pick up needed
4514 window system declarations.
4515
4516 * frame.h: Move common functions here: set_frame_menubar,
4517 x_set_window_size, x_sync, x_get_focus_frame,
4518 x_set_mouse_position, x_set_mouse_pixel_position,
4519 x_make_frame_visible, x_make_frame_invisible, x_iconify_frame,
4520 x_char_width, x_char_height, x_pixel_width, x_pixel_height,
4521 x_set_frame_alpha, x_set_menu_bar_lines, x_set_tool_bar_lines,
4522 x_activate_menubar, x_real_positions, x_bitmap_icon,
4523 x_set_menu_bar_lines, free_frame_menubar, x_free_frame_resources,
4524 and x_query_colors.
4525
4526 * frame.c: Include TERM_HEADER instead of listing all possible
4527 window-system headers.
4528
4529 * font.c: Include TERM_HEADER instead of listing all possible
4530 window-system headers.
4531
4532 * emacs.c: Include TERM_HEADER.
4533
4534 * dispnew.c: Include TERM_HEADER instead of listing all possible
4535 window-system headers.
4536
4537 * ccl.h: Include character.h.
4538
4539 * Makefile.in: Define WINDOW_SYSTEM_OBJ to hold objects needed for
4540 the current window system; include in list of objects to link into
4541 Emacs.
4542
4543 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
4544
4545 Remove mark_ttys function and fix tty_display_info initialization.
4546 * lisp.h (mark_ttys): Remove prototype.
4547 * alloc.c (Fgarbage_collect): Remove redundant (and the only) call
4548 to mark_ttys because all possible values of 'top_frame' slot are
4549 the frames which are reachable from Vframe_list.
4550 * term.c (mark_ttys): Remove.
4551 (init_tty): Safely initialize 'top_frame' slot with Qnil.
4552
4553 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
4554
4555 Change struct frame bitfields from unsigned char to unsigned.
4556 * frame.h (struct frame): Change type of 'display_preempted',
4557 'visible', 'iconified', 'has_minibuffer', 'wants_modeline',
4558 'auto_raise', 'auto_lower', 'no_split', 'explicit_name',
4559 'window_sizes_changed', 'mouse_moved' and 'pointer_invisible'
4560 bitfields from unsigned char to unsigned.
4561
4562 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
4563
4564 Remove unused member of struct x_output and struct w32_output.
4565 * xterm.h (struct x_output): Remove unused field 'needs_exposure'.
4566 * w32term.h (struct w32_output): Likewise.
4567
4568 2012-08-30 Jan Djärv <jan.h.d@swipnet.se>
4569
4570 * gtkutil.c (x_wm_set_size_hint): Use 1 col for base_width so it
4571 does not become zero (Bug#12234).
4572
4573 2012-08-30 Paul Eggert <eggert@cs.ucla.edu>
4574
4575 * dispnew.c (update_frame_1): Pacify gcc -Wstrict-overflow
4576 for GCC 4.7.1 x86-64.
4577
4578 2012-08-30 Glenn Morris <rgm@gnu.org>
4579
4580 * lread.c (init_lread): For out-of-tree builds, only add the
4581 source directory's site-lisp dir to the load-path if it exists,
4582 consistent with in-tree builds. (Bug#12302)
4583
4584 2012-08-28 Jan Djärv <jan.h.d@swipnet.se>
4585
4586 * nsmenu.m (initWithContentRect:styleMask:backing:defer:): Initialize
4587 button_values to NULL. Call setStykeMask so dialogs get a close button.
4588 (windowShouldClose:): Set window_closed.
4589 (dealloc): New member, free button_values.
4590 (process_dialog:): Make member function. Remove window argument,
4591 replace window with self. Count buttons and allocate and store values
4592 in button_values.
4593 (addButton:value:row:): value is int with the name tag. Call setTag
4594 with tag. Remove return self, declare return value as void.
4595 (addString:row:): Remove return self, declare return value as void.
4596 (addSplit): Remove return self, declare return value as void.
4597 (clicked:): Remove return self, declare return value as void.
4598 Set dialog_return to button_values[seltag]. Code formatting change.
4599 (initFromContents:isQuestion:): Adjust call to process_dialog.
4600 Code formatting change.
4601 (timeout_handler:): Set timer_fired to YES.
4602 (runDialogAt:): Set timer_fired to NO.
4603 Handle click on close button as quit.
4604
4605 * nsterm.h (EmacsDialogPanel): Make timer_fired BOOL.
4606 Add window_closed and button_values. Add void as return value for
4607 add(Button|String|Split). addButton takes int instead of Lisp_Object.
4608 Add process_dialog as new member.
4609
4610 2012-08-28 Eli Zaretskii <eliz@gnu.org>
4611
4612 * ralloc.c (free_bloc): Don't dereference a 'heap' structure if it
4613 is not one of the heaps we manage. (Bug#12242)
4614
4615 2012-08-28 Glenn Morris <rgm@gnu.org>
4616
4617 * eval.c (Fcalled_interactively_p): Doc fix. (Bug#11747)
4618
4619 2012-08-28 Martin Rudalics <rudalics@gmx.at>
4620
4621 * window.c (Fset_window_configuration): Remove handling of
4622 auto-buffer-name window parameter. Install revision of reverted
4623 fix.
4624
4625 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
4626
4627 Do not allow to set major mode for a dead buffer.
4628 * buffer.c (Fset_buffer_major_mode): Signal an error
4629 if the buffer is dead.
4630 (Fother_buffer, other_buffer_safely): Remove redundant
4631 nested declaration.
4632
4633 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
4634
4635 Always use set_buffer_if_live to restore original buffer at unwind.
4636 * buffer.h (record_unwind_current_buffer): New function.
4637 * bytecode.c, dispnew.c, editfns.c, fileio.c, fns.c, insdel.c:
4638 * keyboard.c, keymap.c, minibuf.c, print.c, process.c, textprop.c:
4639 * undo.c, window.c: Adjust users.
4640 * buffer.c (set_buffer_if_live): Fix comment.
4641
4642 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
4643
4644 Fix usage of set_buffer_internal.
4645 * buffer.h (set_buffer_internal): Make it BUFFER_INLINE.
4646 * buffer.c (set_buffer_if_live): Use set_buffer_internal.
4647 * coding.c (decode_coding): Omit redundant test.
4648 * fileio.c (decide_coding_unwind): Likewise.
4649 * fns.c (secure_hash): Likewise.
4650 * insdel.c (modify_region): Likewise.
4651 * keyboard.c (command_loop_1): Likewise.
4652 * print.c (PRINTFINISH): Likewise.
4653 * xdisp.c (run_window_scroll_functions): Use set_buffer_internal.
4654
4655 2012-08-27 Paul Eggert <eggert@cs.ucla.edu>
4656
4657 * dispnew.c: Use bool for boolean.
4658 (frame_garbaged, display_completed, delayed_size_change)
4659 (fonts_changed_p, add_window_display_history)
4660 (add_frame_display_history, verify_row_hash)
4661 (adjust_glyph_matrix, clear_window_matrices, glyph_row_slice_p)
4662 (row_equal_p, realloc_glyph_pool)
4663 (allocate_matrices_for_frame_redisplay)
4664 (showing_window_margins_p)
4665 (adjust_frame_glyphs_for_frame_redisplay)
4666 (build_frame_matrix_from_leaf_window, make_current)
4667 (mirrored_line_dance, mirror_line_dance, update_frame)
4668 (update_window_tree, update_single_window)
4669 (check_current_matrix_flags, update_window, update_text_area)
4670 (update_window_line, set_window_update_flags, scrolling_window)
4671 (update_frame_1, scrolling, buffer_posn_from_coords)
4672 (do_pending_window_change, change_frame_size)
4673 (change_frame_size_1, sit_for):
4674 Use bool for boolean.
4675 (clear_glyph_matrix_rows): Rename from enable_glyph_matrix_rows,
4676 and remove last int (actually boolean) argument, which was always 0.
4677 All callers changed.
4678 * dispextern.h, frame.h, lisp.h: Reflect above API changes.
4679 * dispextern.h (struct composition_it): Use bool for boolean.
4680 (struct glyph_matrix): Don't assume buffer sizes can fit in 'int'.
4681 (struct bidi_it): Use unsigned:1, not int, for boolean prev_was_pdf.
4682 * dired.c (file_name_completion):
4683 Use bool for boolean. (This was missed in an earlier change.)
4684
4685 2012-08-27 Martin Rudalics <rudalics@gmx.at>
4686
4687 * window.c (Fset_window_configuration): Revert first part of
4688 last change.
4689
4690 2012-08-27 Jan Djärv <jan.h.d@swipnet.se>
4691
4692 * nsterm.h (NSPanel): New class variable dialog_return.
4693
4694 * nsmenu.m (initWithContentRect:styleMask:backing:defer:):
4695 Initialize dialog_return.
4696 (windowShouldClose:): Use stop instead of stopModalWithCode.
4697 (clicked:): Ditto, and also set dialog_return (Bug#12258).
4698 (timeout_handler:): Use stop instead of abortModal. Send a dummy
4699 event.
4700 (runDialogAt:): Make ret Lisp_Object. Set it from dialog_return when
4701 modal loop returns.
4702
4703 2012-08-27 Paul Eggert <eggert@cs.ucla.edu>
4704
4705 * composite.c, data.c, dbusbind.c, dired.c: Use bool for booleans.
4706 * composite.c (find_composition, composition_gstring_p)
4707 (composition_reseat_it, find_automatic_composition):
4708 * data.c (let_shadows_buffer_binding_p)
4709 (let_shadows_global_binding_p, set_internal, make_blv)
4710 (Fmake_variable_buffer_local, Fmake_local_variable)
4711 (Fmake_variable_frame_local, arithcompare, cons_to_unsigned)
4712 (cons_to_signed, arith_driver):
4713 * dbusbind.c (xd_in_read_queued_messages):
4714 * dired.c (directory_files_internal, file_name_completion):
4715 Use bool for booleans.
4716 * dired.c (file_name_completion):
4717 * process.h (fd_callback):
4718 Omit int (actually boolean) argument. It wasn't being used.
4719 All uses changed.
4720 * composite.h, lisp.h: Reflect above API changes.
4721
4722 * cmds.c, coding.c: Use bool for booleans.
4723 * cmds.c (move_point, Fself_insert_command):
4724 * coding.h (struct composition status, struct coding_system):
4725 * coding.c (detect_coding_utf_8, encode_coding_utf_8)
4726 (detect_coding_utf_16, encode_coding_utf_16, detect_coding_emacs_mule)
4727 (emacs_mule_char, decode_coding_emacs_mule)
4728 (encode_coding_emacs_mule, detect_coding_iso_2022)
4729 (decode_coding_iso_2022, encode_invocation_designation)
4730 (encode_designation_at_bol, encode_coding_iso_2022)
4731 (detect_coding_sjis, detect_coding_big5, decode_coding_sjis)
4732 (decode_coding_big5, encode_coding_sjis, encode_coding_big5)
4733 (detect_coding_ccl, encode_coding_ccl, decode_coding_raw_text)
4734 (encode_coding_raw_text, detect_coding_charset)
4735 (decode_coding_charset, encode_coding_charset, detect_eol)
4736 (detect_coding, get_translation_table, produce_chars)
4737 (consume_chars, reused_workbuf_in_use)
4738 (make_conversion_work_buffer, code_conversion_save)
4739 (decode_coding_object, encode_coding_object)
4740 (detect_coding_system, char_encodable_p)
4741 (Funencodable_char_position, code_convert_region)
4742 (code_convert_string, code_convert_string_norecord)
4743 (Fset_coding_system_priority):
4744 * fileio.c (Finsert_file_contents):
4745 Use bool for booleans.
4746 * coding.h, lisp.h: Reflect above API changes.
4747 * coding.c: Remove unnecessary static function decls.
4748 (detect_coding): Use unsigned, not signed, to copy an unsigned field.
4749 (decode_coding, encode_coding, decode_coding_gap): Return 'void',
4750 not a boolean 'int', since callers never look at the return value.
4751 (ALLOC_CONVERSION_WORK_AREA): Assume caller returns 'void', not 'int'.
4752 * coding.h (decoding_buffer_size, encoding_buffer_size)
4753 (emacs_mule_string_char): Remove unused extern decls.
4754 (struct iso_2022_spec, struct coding_system):
4755 Use 'unsigned int : 1' for boolean fields, since there's more than one.
4756 (struct emacs_mule_spec): Remove unused field 'full_support'.
4757 All initializations removed.
4758 * cmds.c (internal_self_insert): Don't assume EMACS_INT fits in 'int'.
4759
4760 2012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
4761
4762 Fix spare memory change (Bug#12286).
4763 * alloc.c (mark_maybe_pointer): Handle MEM_TYPE_SPARE.
4764 (valid_lisp_object_p): Likewise.
4765
4766 2012-08-27 Martin Rudalics <rudalics@gmx.at>
4767
4768 * window.c (Fset_window_configuration): Record any window's old
4769 buffer if it's replaced (see Bug#8789). If the new current
4770 buffer doesn't appear in the selected window, go to its old
4771 point (Bug#12208).
4772
4773 2012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
4774
4775 Special MEM_TYPE_SPARE to denote reserved memory.
4776 * alloc.c (enum mem_type): New memory type.
4777 (refill_memory_reserve): Use new type for spare memory.
4778 This prevents live_cons_p and live_string_p from incorrect
4779 detection of uninitialized objects from spare memory as live.
4780
4781 2012-08-26 Paul Eggert <eggert@cs.ucla.edu>
4782
4783 Spelling fixes.
4784 * Makefile.in (.PHONY): versioclean -> versionclean.
4785
4786 Remove unused external symbols.
4787 * data.c (Qcons, Qfloat, Qmisc, Qstring, Qvector):
4788 * window.c (Qwindow_valid_p, decode_valid_window):
4789 Now static, not extern.
4790 * data.c (Qinterval): Remove; unused.
4791 (syms_of_data): Do not define 'interval'.
4792 * lisp.h (Qinteger, Qstring, Qmisc, Qvector, Qfloat, Qcons):
4793 * window.h (decode_valid_window):
4794 Remove decls.
4795
4796 * character.c, charset.c, chartab.c: Use bool for booleans.
4797 * character.c (lisp_string_width, string_count_byte8)
4798 (string_escape_byte8):
4799 * charset.c (charset_map_loaded, load_charset_map, read_hex):
4800 (load_charset_map_from_file, map_charset_chars)
4801 (Fdefine_charset_internal, define_charset_internal)
4802 (Fdeclare_equiv_charset, find_charsets_in_text)
4803 (Ffind_charset_region, char_charset, Fiso_charset):
4804 * chartab.c (sub_char_table_ref, sub_char_table_ref_and_range)
4805 (sub_char_table_set, sub_char_table_set_range)
4806 (char_table_set_range, optimize_sub_char_table)
4807 (map_sub_char_table):
4808 Use bool for boolean.
4809 * character.c (str_to_unibyte): Omit last boolean argument; it was
4810 always 0. All callers changed.
4811 * character.h, charset.h: Adjust to match previous changes.
4812 * character.h (char_printable_p): Remove decl of nonexistent function.
4813 * charset.h (struct charset): Members code_linear_p, iso_chars_96,
4814 ascii_compatible_p, supplementary_p, compact_codes_p, unified_p
4815 are all boolean, so make them single-bit bitfields.
4816
4817 * lisp.h (ASET): Remove attempt to detect side effects.
4818 It was meant to be temporary and it often doesn't work,
4819 because when IDX has side effects the behavior of IDX==IDX
4820 is undefined. See Stefan Monnier in
4821 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00762.html>.
4822
4823 2012-08-26 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
4824
4825 * lisp.h (functionp): New function (extracted from Ffunctionp).
4826 (FUNCTIONP): Use it.
4827 * eval.c (Ffunctionp): Use it.
4828
4829 2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
4830
4831 * xgselect.c (xg_select): Use auto storage for the GPollFD buffer
4832 as that's faster and simpler than static storage. Don't bother
4833 with the g_main_context_query overhead if g_main_context_pending
4834 says no events are pending.
4835 (gfds, gfds_size): Remove these static vars.
4836 (xgselect_initialize): Remove; no longer needed.
4837 All uses and decls removed.
4838
4839 * emacs.c (fatal_error_signal_hook): Remove.
4840 All uses removed. This leftover from old code was always 0.
4841
4842 * casefiddle.c, casetab.c, category.c: Use bool for boolean.
4843 * casefiddle.c (casify_object, casify_region):
4844 * casetab.c (set_case_table):
4845 * category.c, category.h (word_boundary_p):
4846 * category.h (CHAR_HAS_CATEGORY):
4847 Use bool for booleans, instead of int.
4848
4849 2012-08-25 Eli Zaretskii <eliz@gnu.org>
4850
4851 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on $(GNU_LIB)/execinfo.h.
4852
4853 2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
4854
4855 On assertion failure, print backtrace if available.
4856 * alloc.c [ENABLE_CHECKING]: Include <execinfo.h>.
4857 (die) [ENABLE_CHECKING]: Print a backtrace if available.
4858 * Makefile.in (LIB_EXECINFO): New macro.
4859 (LIBES): Use it.
4860
4861 * bytecode.c, callint.c, callproc.c: Use bool for boolean.
4862 * bytecode.c (exec_byte_code):
4863 * callint.c (check_mark, Fcall_interactively):
4864 * callproc.c (Fcall_process, add_env, child_setup, getenv_internal_1)
4865 (getenv_internal, sync_process_alive, call_process_exited):
4866 * lisp.h (USE_SAFE_ALLOCA):
4867 Use bool for booleans, instead of int.
4868 * lisp.h, process.h: Adjust prototypes to match above changes.
4869 * callint.c (Fcall_interactively): Don't assume the mark's
4870 offset fits in 'int'.
4871
4872 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
4873
4874 * buffer.c, buffer.h: Use bool for boolean.
4875 * buffer.c (reset_buffer_local_variables)
4876 (buffer_lisp_local_variables, Fset_buffer_modified_p)
4877 (Frestore_buffer_modified_p, Fset_buffer_multibyte):
4878 (overlays_at, overlays_in, mouse_face_overlay_overlaps)
4879 (overlay_touches_p, overlay_strings, Foverlay_put)
4880 (report_overlay_modification, call_overlay_mod_hooks):
4881 (mmap_enlarge, mmap_set_vars):
4882 * buffer.h (buffer_has_overlays, uppercasep, lowercasep):
4883 Use bool for booleans, instead of int.
4884 * buffer.c (compact_buffer, mmap_free_1): Return void, not int,
4885 since the 1-or-0 return value is always ignored anyway.
4886 (mmap_initialized_p):
4887 * buffer.h (struct buffer_text.inhibit_shrinking): Now bool, not int.
4888 * buffer.h, lisp.h: Adjust prototypes to match above changes.
4889
4890 2012-08-23 Paul Eggert <eggert@cs.ucla.edu>
4891
4892 * bidi.c: Use bool for boolean.
4893 This is a bit more readable, and makes the text segment of bidi.o
4894 0.4% smaller on my platform (GCC 4.7.1 x86-64, Fedora 15).
4895 Presumably it's faster too.
4896 (bidi_initialized, bidi_ignore_explicit_marks_for_paragraph_level):
4897 Now bool.
4898 (bidi_cache_find_level_change, bidi_cache_iterator_state)
4899 (bidi_unshelve_cache, bidi_init_it, bidi_count_bytes)
4900 (bidi_char_at_pos, bidi_fetch_char, bidi_paragraph_init)
4901 (bidi_explicit_dir_char, bidi_level_of_next_char)
4902 (bidi_find_other_level_edge, bidi_move_to_visually_next):
4903 Use bool for booleans, instead of int.
4904 * dispextern.h (bidi_init_it, bidi_paragraph_init)
4905 (bidi_unshelve_cache): Adjust decls to match code.
4906
4907 2012-08-23 Martin Rudalics <rudalics@gmx.at>
4908
4909 * keyboard.c (Fposn_at_x_y): Do not allow internal window as
4910 argument.
4911
4912 2012-08-23 Paul Eggert <eggert@cs.ucla.edu>
4913
4914 * atimer.c, atimer.h (turn_on_atimers): Use bool for boolean.
4915 * atimer.h: Include <stdbool.h>.
4916
4917 2012-08-22 Dan Nicolaescu <dann@gnu.org>
4918
4919 * frame.h (FRAME_W32_P, FRAME_MSDOS_P, FRAME_NS_P): Change to
4920 compile time tests instead of run time tests on systems that do
4921 not use them.
4922 (FRAME_MAC_P): Remove leftover from deleted code.
4923 * frame.c (syms_of_frame): Remove leftover from deleted code.
4924
4925 2012-08-22 Jan Djärv <jan.h.d@swipnet.se>
4926
4927 * nsterm.m (insertText:): Don't clear modifiers if code is space.
4928
4929 2012-08-22 Paul Eggert <eggert@cs.ucla.edu>
4930
4931 * fontset.c (FONTSET_ADD): Return void, not Lisp_Object.
4932 Otherwise, the compiler complains about (A?B:C) where B is void
4933 and C is Lisp_Object. This fixes an incompatibility with Sun C 5.12.
4934 (fontset_add): Return void, for FONTSET_ADD.
4935
4936 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
4937
4938 * alloc.c: Use bool for booleans.
4939 (gc_in_progress, abort_on_gc)
4940 (setjmp_tested_p) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
4941 (dont_register_blocks) [GC_MALLOC_CHECK]:
4942 (suppress_checking) [ENABLE_CHECKING]: Now bool, not int.
4943 (check_string_bytes, make_specified_string, memory_full)
4944 (live_string_p, live_cons_p, live_symbol_p, live_float_p)
4945 (live_misc_p, live_vector_p, live_buffer_p, mark_maybe_object)
4946 (mark_stack, valid_pointer_p, make_pure_string)
4947 (Fgarbage_collect, survives_gc_p, gc_sweep):
4948 Use bool for booleans, instead of int.
4949 (test_setjmp) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
4950 Remove unused local.
4951 * alloc.c (PURE_POINTER_P):
4952 * lisp.h (STRING_MULTIBYTE): Document that it returns a boolean.
4953 * editfns.c (Fformat):
4954 * fileio.c (Fexpand_file_name, Fsubstitute_in_file_name)
4955 (Fdo_auto_save):
4956 * fns.c (sweep_weak_table):
4957 * lisp.h (suppress_checking, push_message, survives_gc_p)
4958 (make_pure_string, gc_in_progress, abort_on_gc):
4959 * lread.c (readchar, read1):
4960 * print.c (Fprin1_to_string):
4961 * xdisp.c (push_message):
4962 Use bool for booleans affected directly or indirectly by
4963 alloc.c's changes.
4964
4965 Make recently-introduced setters macros.
4966 * fontset.c (set_fontset_id, set_fontset_name, set_fontset_ascii)
4967 (set_fontset_base, set_fontset_frame, set_fontset_nofont_face)
4968 (set_fontset_default, set_fontset_fallback): Rename from their
4969 upper-case counterparts, and make them functions rather than macros.
4970 This is more consistent with the other recently-introduced setters.
4971 These don't need to be inline, since they're local.
4972
4973 2012-08-21 Jan Djärv <jan.h.d@swipnet.se>
4974
4975 * nsterm.m (fd_handler:): Alloc and release a NSAutoreleasePool in
4976 the loop (Bug#12247).
4977
4978 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
4979
4980 * lisp.h (vcopy): Use memcpy rather than our own loop.
4981 This fixes a performance regression introduced by the recent
4982 addition of vcopy. This means 'vcopy' will need to be modified
4983 for a copying collector, but that's OK. Also, tighten the
4984 checking in the assertion.
4985
4986 2012-08-21 Eli Zaretskii <eliz@gnu.org>
4987
4988 * w32uniscribe.c (uniscribe_shape): Fix producing gstring
4989 components for RTL text (Bug#11860). Adjust X-OFFSET of each
4990 non-base glyph for the width of the base character, according to
4991 what x_draw_composite_glyph_string_foreground expects.
4992 Generate WADJUST value according to composition_gstring_width's
4993 expectations, to produce correct width of the composed character.
4994 Reverse the sign of the DU offset produced by ScriptPlace.
4995
4996 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
4997
4998 * dbusbind.c (xd_remove_watch): Do not assume C99 comments.
4999
5000 2012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
5001
5002 Avoid direct writes to contents member of struct Lisp_Vector.
5003 * lisp.h (vcopy): New function to copy data into vector.
5004 * dispnew.c (Fframe_or_buffer_changed_p): Use AREF and ASET.
5005 * fns.c (Ffillarray): Use ASET.
5006 * keyboard.c (timer_check_2): Use AREF and ASET.
5007 (append_tool_bar_item, Frecent_keys): Use vcopy.
5008 * lread.c (read_vector): Use ASET.
5009 * msdos.c (Frecent_doskeys): Use vcopy.
5010 * xface.c (Finternal_copy_lisp_face): Use vcopy.
5011 (Finternal_merge_in_global_face): Use ASET and vcopy.
5012 * xfont.c (xfont_list_pattern): Likewise.
5013
5014 2012-08-21 Martin Rudalics <rudalics@gmx.at>
5015
5016 * window.c (Fwindow_point): For the selected window always return
5017 the position of its buffer's point.
5018 (Fset_window_point): For the selected window always go in its
5019 buffer to the specified position.
5020
5021 2012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
5022
5023 Setter macros for fontsets.
5024 * fontset.c (SET_FONTSET_ID, SET_FONTSET_NAME, SET_FONTSET_ASCII)
5025 (SET_FONTSET_BASE, SET_FONTSET_FRAME, SET_FONTSET_NOFONT_FACE)
5026 (SET_FONTSET_DEFAULT, SET_FONTSET_FALLBACK): New macros.
5027 Adjust users.
5028
5029 2012-08-20 Glenn Morris <rgm@gnu.org>
5030
5031 * Makefile.in (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
5032 Don't assume that `ln -f' works.
5033
5034 2012-08-20 Eli Zaretskii <eliz@gnu.org>
5035
5036 * .gdbinit: Use "set $dummy = ..." to avoid warnings from GDB 7.5
5037 and later about non-assignments with no effect. See discussion at
5038 http://sourceware.org/ml/gdb-patches/2012-08/msg00518.html for
5039 details.
5040
5041 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
5042
5043 Inline setter functions for Lisp_Objects slots of struct specbinding.
5044 * eval.c (set_specpdl_symbol, set_specpdl_old_value): New functions.
5045 Adjust users.
5046
5047 2012-08-20 Martin Rudalics <rudalics@gmx.at>
5048
5049 * window.c (select_window): Always make selected window's buffer
5050 current.
5051
5052 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
5053
5054 Use AREF and ASET for docstrings of category tables.
5055 * category.h (CATEGORY_DOCSTRING): Use AREF.
5056 (SET_CATEGORY_DOCSTRING): Use ASET.
5057 * category.c (Fdefine_category): Use SET_CATEGORY_DOCSTRING.
5058
5059 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
5060
5061 Inline setter functions for hash table members.
5062 * lisp.h (set_hash_key, set_hash_value, set_hash_next)
5063 (set_hash_hash, set_hash_index): Rename with _slot suffix.
5064 (set_hash_key_and_value, set_hash_index, set_hash_next)
5065 (set_hash_hash): New functions.
5066 * charset.c, fns.c: Adjust users.
5067
5068 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
5069
5070 Inline getter and setter functions for per-buffer values.
5071 * buffer.h (per_buffer_default, set_per_buffer_default)
5072 (per_buffer_value, set_per_buffer_value): New functions.
5073 (PER_BUFFER_VALUE, PER_BUFFER_DEFAULT): Remove.
5074 * buffer.c, data.c: Adjust users.
5075
5076 2012-08-20 Juanma Barranquero <lekktu@gmail.com>
5077
5078 * makefile.w32-in ($(BLD)/vm-limit.$(O)): Update dependencies.
5079
5080 2012-08-19 Paul Eggert <eggert@cs.ucla.edu>
5081
5082 Rely on <config.h> + <unistd.h> to declare 'environ',
5083 as gnulib does this if the system doesn't.
5084 * callproc.c, editfns.c, process.c (environ) [!USE_CRT_DLL]:
5085 Remove declaration. MS-Windows declares it on stdlib.h which is
5086 included by conf_post.h.
5087 * emacs.c (environ) [DOUG_LEA_MALLOC]:
5088 * vm-limit.c (environ) [ORDINARY_LINK]: Remove decl.
5089 * vm-limit.c: Include <unistd.h>, for 'environ'.
5090
5091 * unexaix.c, unexcoff.c: Include "mem-limits.h".
5092 (start_of_data): Remove decl; mem-limits.h provides it.
5093
5094 * xdisp.c (handle_invisible_prop): Make it a bit faster
5095 and avoid a gcc -Wmaybe-uninitialized diagnostic.
5096
5097 2012-08-19 Chong Yidong <cyd@gnu.org>
5098
5099 * xdisp.c (handle_invisible_prop): Fix ellipses at overlay string
5100 ends (Bug#3874).
5101
5102 2012-08-19 Andreas Schwab <schwab@linux-m68k.org>
5103
5104 * .gdbinit: Use call instead of set when calling a function in the
5105 inferior.
5106
5107 * data.c (set_internal): Don't use set_blv_found.
5108 (Fkill_local_variable): Likewise.
5109
5110 2012-08-18 Alp Aker <alp.tekin.aker@gmail.com>
5111
5112 * nsfont.m (ns_ascii_average_width): Ensure the string
5113 ascii_printable is initialized with a null-terminated character
5114 array. Otherwise, it can contain undesired extra characters.
5115
5116 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
5117
5118 port new setting code to Sun C 5.8 2005/10/13
5119 * chartab.c, lisp.h (char_table_set, char_table_set_range):
5120 Return void, not Lisp_Object. Otherwise, the compiler
5121 complains about (A?B:C) where B is void and C is Lisp_Object
5122 when compiling CHAR_TABLE_SET, due to the recent change to
5123 the API of sub_char_table_set_contents.
5124
5125 2012-08-18 Chong Yidong <cyd@gnu.org>
5126
5127 * xdisp.c (handle_invisible_prop): Obey TEXT_PROP_MEANS_INVISIBLE
5128 for the string case (Bug#3874).
5129
5130 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
5131
5132 * buffer.h (BSET): Remove (Bug#12215).
5133 Replace all uses with calls to new setter functions.
5134 (bset_bidi_paragraph_direction, bset_case_canon_table)
5135 (bset_case_eqv_table, bset_directory, bset_display_count)
5136 (bset_display_time, bset_downcase_table)
5137 (bset_enable_multibyte_characters, bset_filename, bset_keymap)
5138 (bset_last_selected_window, bset_local_var_alist)
5139 (bset_mark_active, bset_point_before_scroll, bset_read_only)
5140 (bset_truncate_lines, bset_undo_list, bset_upcase_table)
5141 (bset_width_table):
5142 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
5143 (bset_auto_fill_function, bset_auto_save_file_format)
5144 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
5145 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
5146 (bset_cache_long_line_scans, bset_case_fold_search)
5147 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
5148 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
5149 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
5150 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
5151 (bset_header_line_format, bset_indicate_buffer_boundaries)
5152 (bset_indicate_empty_lines, bset_invisibility_spec)
5153 (bset_left_fringe_width, bset_major_mode, bset_mark)
5154 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
5155 (bset_name, bset_overwrite_mode, bset_pt_marker)
5156 (bset_right_fringe_width, bset_save_length)
5157 (bset_scroll_bar_width, bset_scroll_down_aggressively)
5158 (bset_scroll_up_aggressively, bset_selective_display)
5159 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
5160 (bset_word_wrap, bset_zv_marker):
5161 * category.c (bset_category_table):
5162 * syntax.c (bset_syntax_table):
5163 New setter functions.
5164
5165 * process.h (PSET): Remove (Bug#12215).
5166 Replace all uses with calls to new setter functions.
5167 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
5168 (PROCESS_INLINE): New macro.
5169 (pset_childp): New setter function.
5170 (pset_gnutls_cred_type) [HAVE_GNUTLS]: New setter function.
5171 * process.c (PROCESS_INLINE):
5172 Define to EXTERN_INLINE, so that the corresponding functions
5173 are compiled into code.
5174 (pset_buffer, pset_command, pset_decode_coding_system)
5175 (pset_decoding_buf, pset_encode_coding_system)
5176 (pset_encoding_buf, pset_filter, pset_log, pset_mark, pset_name)
5177 (pset_plist, pset_sentinel, pset_status, pset_tty_name)
5178 (pset_type, pset_write_queue): New setter functions.
5179
5180 * window.h (WSET): Remove (Bug#12215).
5181 Replace all uses with calls to new setter functions.
5182 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
5183 (WINDOW_INLINE): New macro.
5184 (wset_buffer, wset_frame, wset_left_col, wset_next, wset_prev)
5185 (wset_redisplay_end_trigger, wset_top_line, wset_total_cols)
5186 (wset_total_lines, wset_vertical_scroll_bar)
5187 (wset_window_end_pos, wset_window_end_valid)
5188 (wset_window_end_vpos): New setter functions.
5189 * window.c (WINDOW_INLINE):
5190 Define to EXTERN_INLINE, so that the corresponding functions
5191 are compiled into code.
5192 (wset_combination_limit, wset_dedicated, wset_display_table)
5193 (wset_hchild, wset_left_fringe_width, wset_left_margin_cols)
5194 (wset_new_normal, wset_new_total, wset_next_buffers)
5195 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
5196 (wset_prev_buffers, wset_right_fringe_width)
5197 (wset_right_margin_cols, wset_scroll_bar_width, wset_start)
5198 (wset_temslot, wset_vchild, wset_vertical_scroll_bar_type)
5199 (wset_window_parameters):
5200 * xdisp.c (wset_base_line_number, wset_base_line_pos)
5201 (wset_column_number_displayed, wset_region_showing):
5202 New setter functions.
5203
5204 * termhooks.h (TSET): Remove (Bug#12215).
5205 Replace all uses with calls to new setter functions.
5206 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
5207 (TERMHOOKS_INLINE): New macro.
5208 (tset_charset_list, tset_selection_alist): New setter functions.
5209 * terminal.c (TERMHOOKS_INLINE):
5210 Define to EXTERN_INLINE, so that the corresponding functions
5211 are compiled into code.
5212 (tset_param_alist): New setter function.
5213
5214 2012-08-17 Paul Eggert <eggert@cs.ucla.edu>
5215
5216 * keyboard.h (KSET): Remove (Bug#12215).
5217 Replace all uses with calls to new setter functions.
5218 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
5219 (KEYBOARD_INLINE): New macro.
5220 (kset_default_minibuffer_frame, kset_defining_kbd_macro)
5221 (kset_input_decode_map, kset_last_command, kset_last_kbd_macro)
5222 (kset_prefix_arg, kset_system_key_alist, kset_window_system):
5223 New setter functions.
5224 * keyboard.c (KEYBOARD_INLINE):
5225 Define to EXTERN_INLINE, so that the corresponding functions
5226 are compiled into code.
5227 (kset_echo_string, kset_kbd_queue)
5228 (kset_keyboard_translate_table, kset_last_prefix_arg)
5229 (kset_last_repeatable_command, kset_local_function_key_map)
5230 (kset_overriding_terminal_local_map, kset_real_last_command)
5231 (kset_system_key_syms): New setter functions.
5232
5233 * frame.h (FSET): Remove (Bug#12215).
5234 Replace all uses with calls to new setter functions.
5235 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
5236 (FRAME_INLINE): New macro.
5237 (fset_buffer_list, fset_buried_buffer_list, fset_condemned_scroll_bars)
5238 (fset_current_tool_bar_string, fset_desired_tool_bar_string)
5239 (fset_face_alist, fset_focus_frame, fset_icon_name, fset_menu_bar_items)
5240 (fset_menu_bar_vector, fset_menu_bar_window, fset_name)
5241 (fset_param_alist, fset_root_window, fset_scroll_bars)
5242 (fset_selected_window, fset_title, fset_tool_bar_items)
5243 (fset_tool_bar_position, fset_tool_bar_window): New functions.
5244 * frame.c (FRAME_INLINE):
5245 Define to EXTERN_INLINE, so that the corresponding functions
5246 are compiled into code.
5247 (fset_buffer_predicate, fset_minibuffer_window): New setter functions.
5248
5249 A few more naming-convention fixes for getters and setters.
5250 * buffer.c (set_buffer_overlays_before): Move here from buffer.h,
5251 and rename from buffer_overlays_set_before.
5252 (set_buffer_overlays_after): Move here from buffer.h, and rename
5253 from buffer_overlays_set_after.
5254 * buffer.h (buffer_intervals): Rename from buffer_get_intervals.
5255 All uses changed.
5256 (set_buffer_intervals): Rename from buffer_set_intervals.
5257 * intervals.c (set_interval_object): Move here from intervals.h,
5258 and rename from interval_set_object.
5259 (set_interval_left): Move here from intervals.h, and rename from
5260 interval_set_left.
5261 (set_interval_right): Move here from intervals.h, and rename from
5262 interval_set_right.
5263 (copy_interval_parent): Move here from intervals.h, and rename from
5264 interval_copy_parent.
5265 * intervals.h (set_interval_parent): Rename from interval_set_parent.
5266 (set_interval_plist): Rename from interval_set_plist.
5267 Return void, not Lisp_Object, since no caller uses the result.
5268 * lisp.h (string_intervals): Rename from string_get_intervals.
5269 (set_string_intervals): Rename from string_set_intervals.
5270
5271 * lisp.h (set_char_table_extras): Rename from char_table_set_extras.
5272 (set_char_table_contents): Rename from char_table_set_contents.
5273 (set_sub_char_table_contents): Rename from sub_char_table_set_contents.
5274 All uses changed. See the end of
5275 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00549.html>.
5276
5277 * lisp.h (CSET): Remove (Bug#12215).
5278 (set_char_table_ascii, set_char_table_defalt, set_char_table_parent)
5279 (set_char_table_purpose): New functions,
5280 replacing CSET. All uses changed. For example, replace
5281 "CSET (XCHAR_TABLE (char_table), parent, parent);" with
5282 "set_char_table_parent (char_table, parent);".
5283 The old version was confusing because it used the same name
5284 'parent' for two different things.
5285
5286 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
5287
5288 Functions to get and set Lisp_Object fields of buffer-local variables.
5289 * lisp.h (blv_found, set_blv_found, blv_value, set_blv_value)
5290 (set_blv_where, set_blv_defcell, set_blv_valcell): New functions.
5291 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): Remove.
5292 * data.c, eval.c, frame.c: Adjust users.
5293
5294 2012-08-17 Chong Yidong <cyd@gnu.org>
5295
5296 * xfaces.c (merge_face_vectors): If the target font specfies a
5297 font spec, make the font's attributes take precedence over
5298 directly-specified attributes.
5299 (merge_face_ref): Recognize :font.
5300
5301 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
5302
5303 Do not use memcpy for copying intervals.
5304 * intervals.c (reproduce_interval): New function.
5305 (reproduce_tree, reproduce_tree_obj): Use it.
5306 (reproduce_tree_obj): Remove prototype.
5307
5308 2012-08-17 Paul Eggert <eggert@cs.ucla.edu>
5309
5310 * lisp.h (duration_to_sec_usec): Remove unused decl.
5311
5312 2012-08-17 Alp Aker <alp.tekin.aker@gmail.com>
5313
5314 * nsfont.m (ns_ascii_average_width): Send initWithFormat selector
5315 to an allocated instance of NSString, not to the class itself.
5316
5317 2012-08-17 Juanma Barranquero <lekktu@gmail.com>
5318
5319 * makefile.w32-in (C_CTYPE_H): New macro.
5320 (LISP_H, $(BLD)/ccl.$(O), $(BLD)/doc.$(O), $(BLD)/w32console.$(O)):
5321 ($(BLD)/fontset.$(O), $(BLD)/frame.$(O), $(BLD)/composite.$(O)):
5322 ($(BLD)/sysdep.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
5323
5324 2012-08-16 Paul Eggert <eggert@cs.ucla.edu>
5325
5326 Use ASCII tests for character types.
5327 * category.c, dispnew.c, doprnt.c, editfns.c, syntax.c, term.c:
5328 * xfns.c, xterm.c:
5329 Don't include <ctype.h>; was not needed.
5330 * charset.c, doc.c, fileio.c, font.c, frame.c, gtkutil.c, image.c:
5331 * sysdep.c, xfaces.c:
5332 Include <c-ctype.h> instead of <ctype.h>.
5333 * nsterm.m: Include <c-ctype.h>.
5334 * charset.c (read_hex):
5335 * doc.c (Fsnarf_documentation):
5336 * fileio.c (IS_DRIVE) [WINDOWSNT]:
5337 (DRIVE_LETTER) [DOS_NT]:
5338 (Ffile_name_directory, Fexpand_file_name)
5339 (Fsubstitute_in_file_name):
5340 * font.c (font_parse_xlfd, font_parse_fcname):
5341 * frame.c (x_set_font_backend):
5342 * gtkutil.c (xg_get_font):
5343 * image.c (xbm_scan, xpm_scan, pbm_scan_number):
5344 * nsimage.m (hexchar):
5345 * nsterm.m (ns_xlfd_to_fontname):
5346 * sysdep.c (system_process_attributes):
5347 * xfaces.c (hash_string_case_insensitive):
5348 Use C-locale tests instead of locale-specific tests for character
5349 types, since we want the ASCII interpretation here, not the
5350 interpretation suitable for whatever happens to be the current locale.
5351
5352 2012-08-16 Martin Rudalics <rudalics@gmx.at>
5353
5354 Consistently check windows for validity/liveness
5355 (Bug#11984, Bug#12025, Bug#12026).
5356 * lisp.h (CHECK_VALID_WINDOW): New macro.
5357 * window.c (decode_window): Rename to decode_live_window.
5358 (decode_valid_window, Fwindow_valid_p): New functions.
5359 (Fwindow_frame, Fframe_root_window, Fwindow_minibuffer_p)
5360 (Fframe_first_window, Fframe_selected_window, Fwindow_parent)
5361 (Fwindow_top_child, Fwindow_left_child, Fwindow_next_sibling)
5362 (Fwindow_prev_sibling, Fwindow_combination_limit)
5363 (Fset_window_combination_limit, Fwindow_use_time)
5364 (Fwindow_total_height, Fwindow_total_width, Fwindow_new_total)
5365 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_left_column)
5366 (Fwindow_top_line, Fwindow_body_height, Fwindow_body_width)
5367 (Fwindow_hscroll, Fset_window_hscroll)
5368 (Fwindow_redisplay_end_trigger)
5369 (Fset_window_redisplay_end_trigger, Fwindow_edges)
5370 (Fwindow_pixel_edges, Fwindow_absolute_pixel_edges)
5371 (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
5372 (Fcoordinates_in_window_p, Fwindow_point, Fwindow_start)
5373 (Fwindow_end, Fset_window_point, Fset_window_start)
5374 (Fpos_visible_in_window_p, Fwindow_line_height)
5375 (Fwindow_dedicated_p, Fset_window_dedicated_p)
5376 (Fwindow_prev_buffers, Fset_window_prev_buffers)
5377 (Fwindow_next_buffers, Fwindow_parameters, Fwindow_parameter)
5378 (Fset_window_parameter, Fwindow_display_table)
5379 (Fset_window_display_table, Fdelete_other_windows_internal)
5380 (Fset_window_buffer, Fset_window_new_total)
5381 (Fset_window_new_normal, Fdelete_window_internal)
5382 (Fwindow_text_height, Fset_window_margins, Fwindow_margins)
5383 (Fset_window_fringes, Fwindow_fringes, Fset_window_scroll_bars)
5384 (Fwindow_scroll_bars): Check whether argument window is a valid or
5385 live window. Update doc-strings.
5386 (syms_of_window): New symbol Qwindow_valid_p.
5387 * keyboard.c (Fposn_at_x_y): Check whether argument
5388 frame_or_window denotes a valid window.
5389
5390 2012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
5391
5392 Fix previous char table change.
5393 * lisp.h (CHAR_TABLE_SET): Use sub_char_table_set_contents.
5394 * chartab.c (optimize_sub_char_table): Likewise.
5395
5396 2012-08-16 Chong Yidong <cyd@gnu.org>
5397
5398 * gtkutil.c (xg_get_font): Demand an Xft font (Bug#3228).
5399
5400 * xfont.c (xfont_open):
5401 * xftfont.c (xftfont_open): Set the font's max_width field.
5402
5403 * nsfont.m (nsfont_open): Similar to the Xft backend, set
5404 min_width to space_width and average_width to the average over
5405 printable ASCII characters.
5406 (ns_char_width): Code cleanup.
5407 (ns_ascii_average_width): New utility function.
5408
5409 * font.h (struct font): Update comments.
5410
5411 2012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
5412
5413 Simple interface to set Lisp_Object fields of character tables.
5414 * lisp.h (CSET): New macro.
5415 (char_table_set_extras, char_table_set_contents)
5416 (sub_char_table_set_contents): New function.
5417 * casetab.c, category.c, chartab.c, fns.c, fontset.c, search.c:
5418 * syntax.c: Adjust users.
5419
5420 2012-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
5421
5422 * eval.c (eval_sub): Bind lexical-binding.
5423 * lread.c (Qlexical_binding): Make non-static.
5424
5425 2012-08-15 Jan Djärv <jan.h.d@swipnet.se>
5426
5427 * nsmenu.m (popupSession): Remove.
5428 (pop_down_menu): Remove endModalSession.
5429 (timeout_handler:): New method.
5430 (runDialogAt:): Get next timeout. Start a NSTimer with that timeout.
5431 Call runModalForWindow. Check timer_fired when it returns.
5432 If not set, cancel timer and break out of loop.
5433 Otherwise loop again, with a new timeout.
5434
5435 * nsterm.m: Include fcntl.h if present.
5436 (fd_entry, t_readfds, inNsSelect): Remove.
5437 (select_writefds, select_valid, select_timeout, selfds)
5438 (select_mutex, apploopnr): Add.
5439 (EV_TRAILER): Call kbd_buffer_store_event_hold only if q_event_ptr.
5440 Otherwise call kbd_buffer_store_event.
5441 (ns_send_appdefined): Remove release of fd_entry.
5442 (ns_read_socket): Always send appdefined. Remove inNsSelect check.
5443 Increment and decrement apploopnr.
5444 (ns_select): If no file descriptors, just do a NSTimer.
5445 Otherwise copy read/write masks and start select thread (fd_handler).
5446 Start main loop and wait for application defined event.
5447 Inform select thread to stop selecting after main loop is exited.
5448 (ns_term_init): Create selfds pipe and set non-blocking.
5449 Initialize select_mutex. Start the select thread (fd_handler).
5450 (fd_handler:): Loop forever, wait for info from the main thread
5451 to either start or stop selecting. When select returns, send
5452 and appdefined event.
5453 (sendScrollEventAtLoc:fromEvent:): Check if q_event_ptr is set.
5454 If not call kbd_buffer_store_event.
5455
5456 * nsterm.h (EmacsApp): fd_handler takes id argument.
5457 (EmacsDialogPanel): Add timer_fired and timeout_handler.
5458
5459 * gtkutil.c (xg_mark_data): Use FRAME_X_P.
5460
5461 2012-08-15 Eli Zaretskii <eliz@gnu.org>
5462
5463 * region-cache.c (move_cache_gap): Update gap_len using the actual
5464 growth of the boundaries array. Do not change cache_len.
5465 (Bug#12196)
5466
5467 2012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
5468
5469 Generalize and cleanup font subsystem checks.
5470 * font.h (FONT_DEBUG, font_assert): Remove.
5471 * font.c, fontset.c, w32font.c, xfont.c, xftfont.c:
5472 Change font_assert to eassert. Use eassert where appropriate.
5473
5474 2012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
5475
5476 * gtkutil.c (xg_get_font): Use pango_units_to_double.
5477
5478 2012-08-15 Chong Yidong <cyd@gnu.org>
5479
5480 * gtkutil.c (xg_get_font): Rename from xg_get_font_name.
5481 When using the new font chooser, use gtk_font_chooser_get_font_desc to
5482 extract the font descriptor instead of just the font name.
5483 In that case, return a font spec instead of a string.
5484 (x_last_font_name): Move to this file from xfns.c.
5485
5486 * xfns.c (Fx_select_font): The return value can also be a font
5487 spec. Move x_last_font_name management to gtkutil.c.
5488
5489 * xfaces.c: Make font weight and style symbols non-static.
5490
5491 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
5492
5493 * minibuf.c (read_minibuf): Ignore caller's inhibit-read-only
5494 (bug#12117).
5495
5496 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
5497
5498 * alloc.c (Fgarbage_collect): Use plural form consistently.
5499
5500 2012-08-14 Eli Zaretskii <eliz@gnu.org>
5501
5502 * keyboard.c (command_loop_1): Reset ignore_mouse_drag_p flag each
5503 iteration through the command loop. Fixes a problem whereby mouse
5504 movements are ignored until the first mouse click.
5505
5506 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
5507
5508 Use bool, not int, for Lisp booleans.
5509 This is more natural, and on my platform (GCC 4.7.1 x86-64) it
5510 makes Emacs a bit smaller and presumably a bit faster.
5511 * lisp.h: Include <stdbool.h>.
5512 (struct Lisp_Boolfwd, defvar_bool):
5513 * lread.c (defvar_bool): Use bool, not int, for Lisp booleans.
5514 * regex.c [!emacs]: Include <stdbool.h>.
5515 (false, true): Remove; <stdbool.h> does this for us now.
5516
5517 2012-08-14 Chong Yidong <cyd@gnu.org>
5518
5519 * character.c (Fcharacterp): Doc fix (Bug#12076).
5520
5521 * data.c (Findirect_variable): Doc fix (Bug#11040).
5522
5523 * chartab.c (Fmap_char_table): Doc fix (Bug#12061).
5524
5525 * editfns.c (Fformat): Doc fix (Bug#12059).
5526 (Fsave_current_buffer): Doc fix (Bug#11542).
5527
5528 2012-08-14 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
5529
5530 * keyboard.c (access_keymap_keyremap): Accept anonymous functions
5531 (bug#12022).
5532
5533 2012-08-14 Martin Rudalics <rudalics@gmx.at>
5534
5535 * frame.c (make_frame_without_minibuffer, make_minibuffer_frame)
5536 (delete_frame, Fmake_frame_invisible, Ficonify_frame):
5537 * minibuf.c (choose_minibuf_frame, read_minibuf):
5538 * w32fns.c (x_create_tip_frame):
5539 * xfns.c (x_create_tip_frame): Call set_window_buffer instead of
5540 Fset_window_buffer (Bug#11984, Bug#12025, Bug#12026).
5541
5542 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
5543
5544 * intervals.c (offset_intervals): Remove obsolete comment.
5545
5546 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
5547
5548 * gtkutil.c (find_rtl_image, update_frame_tool_bar): Use NILP.
5549
5550 2012-08-14 Gergely Risko <gergely@risko.hu>
5551
5552 * coding.c (decode_coding): Record buffer modification before
5553 disabling undo_list (Bug#11773).
5554
5555 2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
5556
5557 Revert and cleanup some recent overlay changes.
5558 * buffer.h (enum overlay_type): Remove.
5559 (buffer_get_overlays, buffer_set_overlays): Likewise.
5560 (buffer_set_overlays_before, buffer_set_overlays_after):
5561 New function. Adjust users.
5562 (unchain_both): Add eassert.
5563
5564 2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
5565
5566 * gtkutil.c (update_frame_tool_bar): Use EQ where appropriate.
5567
5568 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
5569
5570 * gtkutil.c (xg_mark_data): Don't assume C99.
5571
5572 2012-08-13 Jan Djärv <jan.h.d@swipnet.se>
5573
5574 * gtkutil.c (xg_frame_tb_info): New struct.
5575 (TB_INFO_KEY): New define.
5576 (xg_free_frame_widgets): Free xg_frame_tb_info for frame if present.
5577 (xg_mark_data): Mark Lisp_Objects in xg_frame_tb_info.
5578 (xg_create_tool_bar): Allocate and initialize a xg_frame_tb_info
5579 if not present.
5580 (update_frame_tool_bar): Return early if data in xg_frame_tb_info
5581 is up to date. Otherwise store new data.
5582 (free_frame_tool_bar): Free xg_frame_tb_info if present.
5583
5584 2012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
5585
5586 Use KSET for write access to Lisp_Object members of struct kboard.
5587 * keyboard.h (KSET): New macro.
5588 * callint.c, category.c, frame.c, keyboard.c, keyboard.h, macros.c:
5589 * msdos.c, nsfns.m, nsterm.m, term.c, w32fns.c, w32term.c, xfns.c:
5590 * xterm.c: Adjust users.
5591
5592 2012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
5593
5594 Use BSET for write access to Lisp_Object members of struct buffer.
5595 * buffer.h (BSET): New macro.
5596 * buffer.c, casetab.c, cmds.c, coding.c, data.c, editfns.c:
5597 * fileio.c, frame.c, indent.c, insdel.c, intervals.c, keymap.c:
5598 * minibuf.c, print.c, process.c, syntax.c, undo.c, w32fns.c:
5599 * window.c, xdisp.c, xfns.c: Adjust users.
5600
5601 2012-08-11 BT Templeton <bpt@hcoop.net> (tiny change)
5602
5603 * lread.c (syms_of_lread): Initialize Vlexical_binding.
5604
5605 2012-08-11 Jan Djärv <jan.h.d@swipnet.se>
5606
5607 * nsterm.m (not_in_argv): New function.
5608 (application:openFile, application:openTempFile:):
5609 (application:openFileWithoutUI:, application:openFiles:): Open file
5610 if not_in_argv returns non-zero (bug#12171).
5611
5612 * gtkutil.c (gtk_font_chooser_dialog_new, GTK_FONT_CHOOSER)
5613 (gtk_font_chooser_set_font, gtk_font_chooser_get_font):
5614 Define for Gtk+ versions less than 3.2.
5615 (xg_get_font_name): Use those functions/macros here.
5616 Reported by Frans Oilinki <moilinki@gmail.com>.
5617
5618 2012-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5619
5620 * unexmacosx.c (copy_data_segment): Copy initialized data in
5621 statically linked libraries from input file rather than memory.
5622
5623 * unexmacosx.c (print_load_command_name): Add cases LC_MAIN,
5624 LC_SOURCE_VERSION, and LC_DYLIB_CODE_SIGN_DRS.
5625 (dump_it) [LC_DYLIB_CODE_SIGN_DRS]: Call copy_linkedit_data.
5626
5627 2012-08-10 Glenn Morris <rgm@gnu.org>
5628
5629 * conf_post.h (IF_LINT, lint_assume): Move here from lisp.h.
5630 * lisp.h (IF_LINT, lint_assume): Move to conf_post.h.
5631
5632 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
5633
5634 Fix last change to allow compilation with low optimization levels.
5635 * intervals.c (INTERVALS_INLINE): Define to EXTERN_INLINE.
5636 Reported by Jan Djärv <jan.h.d@swipnet.se>.
5637
5638 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
5639
5640 Use common inline syntax in intervals.h.
5641 * intervals.h (INTERVALS_INLINE): New macro.
5642 Change all users from LISP_INLINE.
5643
5644 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
5645
5646 Define Qnone once for all platforms.
5647 * frame.c (Qnone): Define here.
5648 (syms_of_frame): DEFSYM it.
5649 * lisp.h (Qnone): New declaration.
5650 * nsfns.m, nsterm.h, nsterm.m, w32fns.c, w32font.c:
5651 * xfns.c: Remove duplication. Adjust users.
5652
5653 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
5654
5655 Remove unused macros from intervals.h.
5656 * intervals.h (MERGE_INSERTIONS, DISPLAY_INVISIBLE_GLYPH): Remove.
5657 * intervals.c: Adjust comment.
5658
5659 2012-08-10 Eli Zaretskii <eliz@gnu.org>
5660
5661 * w32fns.c <w32_unicode_gui>: New static variable.
5662 (globals_of_w32fns): Initialize it according to os_subtype.
5663 (w32_init_class, w32_msg_pump, w32_wnd_proc): Use it instead of
5664 testing os_subtype.
5665
5666 2012-08-10 Joakim Hårsman <joakim.harsman@gmail.com> (tiny change)
5667 Eli Zaretskii <eliz@gnu.org>
5668
5669 Fix bug #10299 with Unicode characters sent by customized
5670 keyboards created by MSKLC.
5671 * w32fns.c (INIT_WINDOW_CLASS): New macro.
5672 (w32_init_class): Use it to initialize the Emacs class with either
5673 ANSI or Unicode API calls.
5674 (w32_msg_pump): Call GetMessageW and DispatchMessageW on NT and
5675 later.
5676 (w32_wnd_proc): If the character code sent by WM_CHAR or
5677 WM_SYSCHAR is above 255, post a WM_UNICHAR message, not the
5678 original message. Call DefWindowProcW on NT and later.
5679
5680 2012-08-10 Glenn Morris <rgm@gnu.org>
5681
5682 * Makefile.in (config_h): Fix conf_post.h out-of-tree build location.
5683
5684 * lisp.h (DIRECTORY_SEP): Let configure set it.
5685
5686 2012-08-09 Dmitry Antipov <dmantipov@yandex.ru>
5687
5688 Use TSET for write access to Lisp_Object slots of struct terminal.
5689 * termhooks.h (TSET): New macro.
5690 * coding.c, terminal.c, xselect.c: Adjust users.
5691
5692 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
5693
5694 * xdisp.c (safe_eval_handler): Remove prototype. Receive args describing
5695 the failing expression, include them in the error message.
5696 * eval.c (internal_condition_case_n): Pass nargs and args to hfun.
5697 * lisp.h (internal_condition_case_n): Update declaration.
5698
5699 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
5700
5701 Inline functions to examine and change buffer overlays.
5702 * buffer.c (unchain_both): New function.
5703 * buffer.h (buffer_get_overlays, buffer_set_overlays):
5704 (buffer_has_overlays): New function.
5705 (enum overlay_type): New enum.
5706 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c:
5707 * insdel.c, intervals.c, print.c, xdisp.c: Adjust users.
5708
5709 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
5710
5711 Inline functions to examine and change buffer intervals.
5712 * alloc.c (mark_interval_tree): Remove.
5713 (MARK_INTERVAL_TREE): Simplify.
5714 (UNMARK_BALANCE_INTERVALS): Remove. Adjust users.
5715 * intervals.c (buffer_balance_intervals): New function.
5716 (graft_intervals_into_buffer): Adjust indentation.
5717 (set_intervals_multibyte): Simplify.
5718 * buffer.h (BUF_INTERVALS): Remove.
5719 (buffer_get_intervals, buffer_set_intervals): New function.
5720 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c, insdel.c:
5721 * intervals.c, textprop.c: Adjust users.
5722
5723 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
5724
5725 Inline functions to examine and change string intervals.
5726 * lisp.h (STRING_INTERVALS, STRING_SET_INTERVALS): Remove.
5727 (string_get_intervals, string_set_intervals): New function.
5728 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
5729 * lread.c, print.c, textprop.c: Adjust users.
5730
5731 2012-08-08 Glenn Morris <rgm@gnu.org>
5732
5733 * lisp.mk (lisp): Remove language/persian.elc.
5734
5735 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
5736
5737 Cleanup intervals.
5738 * intervals.h (NULL_INTERVAL, DEFAULT_INTERVAL): Remove.
5739 (NULL_INTERVAL_P): Likewise. Adjust users.
5740 (FRONT_STICKY_P, END_NONSTICKY_P, FRONT_NONSTICKY_P):
5741 Adjust comment. Move under #if 0.
5742 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
5743 * print.c, syntax.c, textprop.c, xdisp.c: Adjust users.
5744
5745 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
5746
5747 Check total length of intervals with eassert.
5748 * intervals.h (CHECK_TOTAL_LENGTH): Remove.
5749 * intervals.c: Change all users to eassert.
5750
5751 2012-08-07 Eli Zaretskii <eliz@gnu.org>
5752
5753 * .gdbinit (xframe, xwindow, nextcons, xcar, xcdr, xlist):
5754 Rename fields to match removal of FGET and WGET and disuse of
5755 INTERNAL_FIELD in Lisp_Cons.
5756
5757 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
5758
5759 Revert and cleanup Lisp_Cons, Lisp_Misc and Lisp_Symbol things.
5760 * lisp.h (struct Lisp_Symbol): Change xname to meaningful
5761 name since all xname users are fixed long time ago. Do not
5762 use INTERNAL_FIELD.
5763 (set_symbol_name, set_symbol_function, set_symbol_plist):
5764 (set_symbol_next, set_overlay_plist): New function.
5765 (struct Lisp_Cons): Do not use INTERNAL_FIELD.
5766 (struct Lisp_Overlay): Likewise.
5767 (CVAR, MVAR, SVAR): Remove.
5768 * alloc.c, buffer.c, buffer.h, bytecode.c, cmds.c, data.c:
5769 * doc.c, eval.c, fns.c, keyboard.c, lread.c, nsselect.m:
5770 * xterm.c: Adjust users.
5771 * .gdbinit: Change to use name field of struct Lisp_Symbol
5772 where appropriate.
5773
5774 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
5775
5776 Basic functions to set Lisp_Object and pointer slots of intervals.
5777 * intervals.h (interval_set_parent, interval_set_object):
5778 (interval_set_left, interval_set_right, interval_set_plist):
5779 (interval_copy_parent): New function.
5780 (SET_INTERVAL_OBJECT, SET_INTERVAL_PARENT, INTERVAL_PTR_SIZE): Remove.
5781 (RESET_INTERVAL, COPY_INTERVAL_CACHE, MERGE_INTERVAL_CACHE):
5782 Adjust indentation.
5783 (INTERVAL_SIZE): Remove. Adjust users.
5784 * alloc.c, intervals.c, lread.c, textprop.c: Use new functions.
5785
5786 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
5787
5788 Drop PGET and revert read access to Lisp_Objects slots of Lisp_Process.
5789 * process.h (PGET): Remove.
5790 (struct Lisp_Process): Do not use INTERNAL_FIELD.
5791 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
5792
5793 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
5794
5795 Drop WGET and revert read access to Lisp_Objects slots of struct window.
5796 * window.h (WGET): Remove.
5797 (struct window): Do not use INTERNAL_FIELD.
5798 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
5799 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
5800 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
5801 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
5802 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
5803 Adjust users.
5804
5805 2012-08-07 Chong Yidong <cyd@gnu.org>
5806
5807 * window.c (Fwindow_edges, Fwindow_pixel_edges)
5808 (Fwindow_absolute_pixel_edges, Fdelete_other_windows_internal)
5809 (Fdelete_window_internal): Signal an error if the window is not on
5810 a live frame (Bug#12025).
5811
5812 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
5813
5814 Drop FGET and revert read access to Lisp_Objects slots of struct frame.
5815 * frame.h (FGET): Remove.
5816 (struct frame): Do not use INTERNAL_FIELD.
5817 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
5818 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
5819 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
5820 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
5821
5822 2012-08-06 Juanma Barranquero <lekktu@gmail.com>
5823
5824 * w32.c: Silence compiler warnings.
5825 (map_w32_filename): Remove unused variable `is_fat'.
5826 (chase_symlinks): Add parentheses around expression.
5827
5828 2012-08-06 Glenn Morris <rgm@gnu.org>
5829
5830 * sysdep.c: Respect BROKEN_GETWD.
5831
5832 * dispnew.c (GNU_LIBRARY_PENDING_OUTPUT_COUNT, PENDING_OUTPUT_COUNT):
5833 Let configure handle it.
5834 (stdio_ext.h) [DISPNEW_NEEDS_STDIO_EXT]: Include it.
5835
5836 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
5837
5838 Use GCALIGNMENT where appropriate.
5839 * alloc.c (XMALLOC_HEADER_ALIGNMENT, roundup_size):
5840 (union aligned_Lisp_Symbol, union aligned_Lisp_Misc):
5841 (mark_maybe_pointer, pure_alloc): Change to use GCALIGNMENT.
5842
5843 2012-08-06 Eli Zaretskii <eliz@gnu.org>
5844
5845 * w32menu.c (set_frame_menubar, initialize_frame_menubar):
5846 Don't use FRAME_MENU_BAR_ITEMS as an lvalue.
5847
5848 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
5849
5850 * buffer.h (struct buffer): Revert `indirections' to a simple int;
5851 that should be sufficient for everyone.
5852
5853 2012-08-06 Jan Djärv <jan.h.d@swipnet.se>
5854
5855 * keyboard.c (timer_check_2): Add break so timer_check returns next
5856 timeout.
5857
5858 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
5859
5860 Fix Windows build errors introduced after converting to WGET and WSET.
5861 * w32term.c (w32_set_vertical_scroll_bar): Change to use WSET.
5862 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
5863
5864 2012-08-06 Jan Djärv <jan.h.d@swipnet.se>
5865
5866 * nsterm.m (ns_frame_rehighlight): Use FSET.
5867
5868 * nsmenu.m (ns_update_menubar): Use FSET.
5869
5870 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
5871
5872 Separate read and write access to Lisp_Object slots of Lisp_Process.
5873 * process.h (PGET, PSET): New macros similar to AREF and ASET.
5874 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
5875
5876 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
5877
5878 Separate read and write access to Lisp_Object slots of struct window.
5879 * window.h (WGET, WSET): New macros similar to AREF and ASET.
5880 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
5881 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
5882 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
5883 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
5884 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
5885 Adjust users.
5886
5887 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
5888
5889 Fix Windows build errors introduced after converting to FGET and FSET.
5890 * w32term.c (x_frame_rehighlight, x_scroll_bar_create):
5891 (w32_condemn_scroll_bars, w32_redeem_scroll_bar):
5892 (w32_judge_scroll_bars): Change to use FSET.
5893 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
5894
5895 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
5896
5897 Fix replacement typo.
5898 * window.c (replace_window): Set root_window instead of
5899 selected_window. This fixes a total window subsystem
5900 malfunction reported by Bastien Guerry <bzg@gnu.org>.
5901
5902 2012-08-06 Glenn Morris <rgm@gnu.org>
5903
5904 * lisp.mk (lisp): Add language/persian.elc.
5905
5906 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
5907
5908 Separate read and write access to Lisp_Object slots of struct frame.
5909 * frame.h (FGET, FSET): New macros similar to AREF and ASET.
5910 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
5911 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
5912 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
5913 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
5914
5915 2012-08-05 Andreas Schwab <schwab@linux-m68k.org>
5916
5917 * emacs.c (decode_env_path): Only use defaulted if WINDOWSNT.
5918
5919 2012-08-05 Dmitry Antipov <dmantipov@yandex.ru>
5920
5921 Generalize common compile-time constants.
5922 * lisp.h (header_size, bool_header_size, word_size): Now here.
5923 (struct Lisp_Vector): Add comment.
5924 (struct Lisp_Bool_Vector): Move up to define handy constants.
5925 (VECSIZE, PSEUDOVECSIZE): Simplify.
5926 (SAFE_ALLOCA_LISP): Use new constant. Adjust indentation.
5927 * buffer.c, buffer.h, bytecode.c, callint.c, eval.c, fns.c:
5928 * font.c, fontset.c, keyboard.c, keymap.c, macros.c, menu.c:
5929 * msdos.c, w32menu.c, w32term.h, window.c, xdisp.c, xfaces.c:
5930 * xfont.c, xmenu.c: Use word_size where appropriate.
5931
5932 2012-08-05 Lawrence Mitchell <wence@gmx.li>
5933
5934 * search.c (Freplace_match): Treat \? in the replacement text
5935 literally (Bug#8161).
5936
5937 2012-08-05 Chong Yidong <cyd@gnu.org>
5938
5939 * term.c (Vsuspend_tty_functions, Vresume_tty_functions):
5940 * frame.c (Vdelete_frame_functions):
5941 * emacs.c (Vkill_emacs_hook): Doc fix.
5942
5943 2012-08-04 Eli Zaretskii <eliz@gnu.org>
5944
5945 * xfns.c (x_set_menu_bar_lines): Fix compilation error in
5946 --with-x-toolkit=no builds.
5947 Reported by Carsten Mattner <carstenmattner@gmail.com>.
5948
5949 2012-08-04 Chong Yidong <cyd@gnu.org>
5950
5951 * syntax.c (Fmodify_syntax_entry): Doc fix.
5952
5953 2012-08-04 Eli Zaretskii <eliz@gnu.org>
5954
5955 Fix startup warnings about ../site-lisp on MS-Windows. (Bug#11959)
5956 * w32.c (init_environment): Change the default values of many
5957 environment variables in dflt_envvars[] to NULL, to avoid pushing
5958 them into environment when they were not already defined.
5959 Remove the code that deletes site-lisp subdirectories from the default
5960 value of EMACSLOADPATH, as it is no longer needed.
5961 (check_windows_init_file): Now external, not static.
5962 Use Vload_path as is, without adding anything, as this function is now
5963 called when Vload_path is already set up.
5964
5965 * w32.h (check_windows_init_file): Add prototype.
5966
5967 * emacs.c (init_cmdargs) [WINDOWSNT]: When running from the build
5968 directory, ignore the /*/i386/ tail in Vinvocation_directory, for
5969 compatibility with Posix platforms.
5970 (main): Move the call to check_windows_init_file to here from
5971 w32.c.
5972 (decode_env_path) [WINDOWSNT]: Expand the %emacs_dir%/ prefix, if
5973 any, in the DEFALT argument into the root of the Emacs build or
5974 installation tree, as appropriate.
5975
5976 * callproc.c (init_callproc_1): Call decode_env_path instead of
5977 doing its equivalent by hand.
5978 (init_callproc): Replace DOS_NT condition with MSDOS, thus letting
5979 the code that sets Vexec_path run on MS-Windows.
5980
5981 * lread.c (init_lread): Add comments to #ifdef's.
5982
5983 * msdos.c (dos_set_window_size, IT_update_begin)
5984 (IT_frame_up_to_date, IT_set_frame_parameters): Use FVAR and WVAR
5985 instead of direct references.
5986
5987 2012-08-04 Paul Eggert <eggert@cs.ucla.edu>
5988
5989 Export DEFAULT_REHASH_* to GDB.
5990 * lisp.h (DEFAULT_REHASH_THRESHOLD, DEFAULT_REHASH_SIZE):
5991 Now constants, not macros.
5992
5993 2012-08-03 Paul Eggert <eggert@cs.ucla.edu>
5994
5995 Remove unnecessary casts involving pointers.
5996 These casts are no longer needed now that we assume C89 or later,
5997 since they involve casting to or from void *.
5998 * alloc.c (make_pure_string, make_pure_c_string, pure_cons)
5999 (make_pure_float, make_pure_vector):
6000 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP):
6001 * macros.c (Fstart_kbd_macro):
6002 * menu.c (find_and_return_menu_selection):
6003 * minibuf.c (read_minibuf_noninteractive):
6004 * sysdep.c (closedir):
6005 * xdisp.c (x_produce_glyphs):
6006 * xfaces.c (compare_fonts_by_sort_order):
6007 * xfns.c (x_real_positions, select_visual):
6008 * xselect.c (x_stop_queuing_selection_requests)
6009 (x_get_window_property, x_get_window_property_as_lisp_data):
6010 * xterm.c (x_set_frame_alpha, x_find_modifier_meanings):
6011 Remove unnecessary pointer casts.
6012 * alloc.c (record_xmalloc): New function.
6013 * lisp.h (record_xmalloc): New decl.
6014 (SAFE_ALLOCA): Now takes just one arg -- the size -- and acts
6015 more like a function. This is because the pointer cast is not
6016 needed. All uses changed.
6017 * print.c (print_string, print_error_message): Avoid length recalc.
6018
6019 Improve fix for macroexp crash with debugging (Bug#12118).
6020 * lisp.h (ASET) [ENABLE_CHECKING]: Pay attention to
6021 ARRAY_MARK_FLAG when checking subscripts, because ASET is
6022 not supposed to be invoked from the garbage collector.
6023 See Andreas Schwab in <http://bugs.gnu.org/12118#25>.
6024 (gc_aset): New function, which is like ASET but can be
6025 used in the garbage collector.
6026 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
6027 (set_hash_index): Use it instead of ASET.
6028
6029 2012-08-03 Eli Zaretskii <eliz@gnu.org>
6030
6031 Support symlinks on latest versions of MS-Windows.
6032 * w32.c: Include winioctl.h and aclapi.h.
6033 (is_symlink, chase_symlinks, enable_privilege, restore_privilege)
6034 (revert_to_self): Forward declarations of static functions.
6035 <static BOOL g_b_init_get_security_info>:
6036 <g_b_init_create_symbolic_link>: New static flags.
6037 (globals_of_w32): Initialize them to zero.
6038 (GetSecurityInfo_Proc, CreateSymbolicLink_Proc): New typedefs.
6039 (map_w32_filename): Improve commentary. Simplify switch.
6040 (SYMBOLIC_LINK_FLAG_DIRECTORY): Define if not defined in system
6041 headers (most versions of MinGW w32api don't).
6042 (get_security_info, create_symbolic_link)
6043 (get_file_security_desc_by_handle, is_symlink, chase_symlinks):
6044 New functions.
6045 (sys_access, sys_chmod): Call 'chase_symlinks' to resolve symlinks
6046 in the argument file name.
6047 (sys_access): Call unc_volume_file_attributes only if
6048 GetFileAttributes fails with network-related error codes.
6049 (sys_rename): Diagnose renaming of a symlink when the user doesn't
6050 have the required privileges.
6051 (get_file_security_desc_by_name): Rename from
6052 get_file_security_desc.
6053 (stat_worker): New function, with most of the guts of 'stat', and
6054 with addition of handling of symlinks and support for 'lstat'.
6055 If possible, get file's attributes and security information by
6056 handle, not by name. Produce S_IFLNK bit for symlinks, when
6057 called from 'lstat'.
6058 (stat, lstat): New functions, call 'stat_worker'.
6059 (symlink, readlink, careadlinkat): Rewritten to create and resolve
6060 symlinks when the underlying filesystem supports them.
6061
6062 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
6063
6064 Fix macroexp crash on Windows with debugging (Bug#12118).
6065 * lisp.h (ASET) [ENABLE_CHECKING]: Ignore ARRAY_MARK_FLAG when
6066 checking subscripts; problem introduced with the recent
6067 "ASET (a, i, v)" rather than "AREF (a, i) = v" patch.
6068 (ARRAY_MARK_FLAG): Now a macro as well as a constant,
6069 since it's used in non-static inline functions now.
6070
6071 * xfaces.c (face_at_buffer_position, face_for_overlay_string):
6072 Don't assume buffer size fits in 'int'. Remove unused local.
6073
6074 Use C99-style 'extern inline' if available.
6075 * buffer.h (BUFFER_INLINE):
6076 * category.h (CATEGORY_INLINE):
6077 * character.h (CHARACTER_INLINE):
6078 * charset.h (CHARSET_INLINE):
6079 * composite.h (COMPOSITE_INLINE):
6080 * dispextern.h (DISPEXTERN_INLINE):
6081 * lisp.h (LISP_INLINE):
6082 * systime.h (SYSTIME_INLINE):
6083 New macro, replacing 'static inline' in this header.
6084 * buffer.h, category.h, character.h, charset.h, composite.h:
6085 * dispextern.h, lisp.h, systime.h:
6086 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
6087 * alloc.c (LISP_INLINE):
6088 * buffer.c (BUFFER_INLINE):
6089 * category.c (CATEGORY_INLINE):
6090 * character.c (CHARACTER_INLINE):
6091 * charset.c (CHARSET_INLINE):
6092 * composite.c (COMPOSITE_INLINE):
6093 * dispnew.c (DISPEXTERN_INLINE):
6094 * sysdep.c (SYSTIME_INLINE):
6095 Define to EXTERN_INLINE, so that the corresponding functions
6096 are compiled into code.
6097 * conf_post.h (INLINE, EXTERN_INLINE, INLINE_HEADER_BEGIN)
6098 (INLINE_HEADER_END): New macros.
6099 * lisp.h (PSEUDOVECTOR_FLAG): Now a macro as well as a constant,
6100 since it's used in non-static inline functions now.
6101 (VALMASK) [!USE_LSB_TAG]: Likewise.
6102
6103 2012-08-02 Glenn Morris <rgm@gnu.org>
6104
6105 * s/: Remove empty directory.
6106
6107 * s/ms-w32.h: Move to ../nt/inc.
6108 * makefile.w32-in (TAGS, TAGS-gmake, MS_W32_H):
6109 Update for new ms-w32.h location.
6110
6111 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
6112
6113 Port to Solaris 8.
6114 * syswait.h (WRETCODE): Remove, consistently with ../configure.ac.
6115
6116 2012-08-02 Glenn Morris <rgm@gnu.org>
6117
6118 * nsterm.m (ns_exec_path, ns_load_path): Use SEPCHAR rather than
6119 hard-coding the path separator.
6120
6121 2012-08-01 Paul Eggert <eggert@cs.ucla.edu>
6122
6123 Use "ASET (a, i, v)" rather than "AREF (a, i) = v".
6124 This how ASET and AREF are supposed to work, and makes
6125 it easier to think about future improvements. See
6126 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00026.html>.
6127 * charset.h (set_charset_attr): New function.
6128 All lvalue-style uses of CHARSET_DECODER etc. changed to use it.
6129 * lisp.h (ASET): Rewrite so as not to use AREF in an lvalue style.
6130 (aref_addr): New function. All uses of &AREF(...) changed.
6131 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
6132 (set_hash_index): New functions. All lvalue-style uses of
6133 HASH_KEY etc. changed.
6134 * keyboard.c (set_prop): New function. All lvalue-style uses
6135 of PROP changed.
6136
6137 2012-08-01 Alp Aker <alp.tekin.aker@gmail.com>
6138
6139 * nsterm.m (ns_set_vertical_scroll_bar, ns_redeem_scroll_bar)
6140 (EmacsWindow-accessibilityAttributeValue, EmacsScroller-initFrame:)
6141 (EmacsScroller-dealloc): Adjust to use WVAR. (Bug#12114)
6142 * nsfns.m (ns_set_name_as_filename): Likewise.
6143 * nsmenu.m (ns_update_menubar): Likewise.
6144 * nsselect.m (symbol_to_nsstring): Adjust to use SVAR.
6145
6146 2012-08-01 Eli Zaretskii <eliz@gnu.org>
6147
6148 * .gdbinit (xcar, xcdr, xlist, xwindow, nextcons, xprintsym):
6149 Adapt to latest changes in field names of the corresponding Lisp
6150 objects.
6151
6152 * xdisp.c (try_window_id): Use WVAR in IF_DEBUG code.
6153
6154 2012-08-01 Glenn Morris <rgm@gnu.org>
6155
6156 * s/msdos.h: Remove file.
6157 * conf_post.h [MSDOS]: New section, moved from s/msdos.h.
6158 * Makefile.in (S_FILE): Remove.
6159 (config_h): Remove S_FILE.
6160
6161 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
6162
6163 * s/ms-w32.h (DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP):
6164 Remove; moved to nt/config.nt.
6165
6166 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
6167
6168 Use INTERNAL_FIELD for conses and overlays.
6169 * lisp.h (struct Lisp_Cons): Use INTERNAL_FIELD.
6170 Remove obsolete comment.
6171 (MVAR): New macro.
6172 (struct Lisp_Overlay): Use INTERNAL_FIELD.
6173 * alloc.c, buffer.c, buffer.h, fns.c: Adjust users.
6174
6175 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
6176
6177 Use INTERNAL_FIELD for symbols.
6178 * lisp.h (SVAR): New macro. Adjust users.
6179 * alloc.c, bytecode.c, cmds.c, data.c, doc.c, eval.c:
6180 * fns.c, keyboard.c, lread.c, xterm.c: Users changed.
6181
6182 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
6183
6184 Use INTERNAL_FIELD for processes.
6185 * process.h (PVAR): New macro. Adjust style.
6186 (struct Lisp_Process): Change Lisp_Object members to INTERNAL_FIELD.
6187 * print.c, process.c, sysdep.c, w32.c, xdisp.c: Users changed.
6188
6189 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
6190
6191 Use INTERNAL_FIELD for windows.
6192 * window.h (WVAR): New macro.
6193 (struct window): Change Lisp_Object members to INTERNAL_FIELD.
6194 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
6195 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
6196 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, nsterm.m, print.c:
6197 * textprop.c, w32fns.c, w32menu.c, w32term.c, window.c, xdisp.c:
6198 * xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
6199
6200 2012-08-01 Paul Eggert <eggert@cs.ucla.edu>
6201
6202 * coding.h (CODING_ATTR_FLUSHING): Remove; unused and wouldn't work.
6203
6204 2012-08-01 Glenn Morris <rgm@gnu.org>
6205
6206 * lisp.h (IS_DIRECTORY_SEP, IS_DEVICE_SEP, IS_ANY_SEP):
6207 Move to configure.ac.
6208
6209 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
6210
6211 * makefile.w32-in (CONFIG_H): Update dependencies.
6212 (CONF_POST_H): New macro.
6213
6214 * s/ms-w32.h (SEPCHAR, NULL_DEVICE): Remove; moved to nt/config.nt.
6215
6216 2012-07-31 Glenn Morris <rgm@gnu.org>
6217
6218 * Makefile.in (S_FILE): No longer set by configure.
6219
6220 * conf_post.h (config_opsysfile): Move earlier, so that WINDOWSNT
6221 is available.
6222 (alloca.h) [WINDOWSNT]: Don't include it on MS Windows.
6223
6224 * process.h (NULL_DEVICE):
6225 * emacs.c (SEPCHAR):
6226 * editfns.c (USER_FULL_NAME): Let configure set them.
6227
6228 * s/README, s/template.h: Remove files.
6229
6230 * conf_post.h [HPUX]: Undefine HAVE_RANDOM and HAVE_RINT.
6231
6232 * conf_post.h (AMPERSAND_FULL_NAME, subprocesses):
6233 Move to configure.ac.
6234
6235 2012-07-31 Eli Zaretskii <eliz@gnu.org>
6236
6237 * .gdbinit (xframe): Adapt to introduction of FVAR and the
6238 resulting renaming of 'struct frame' members.
6239
6240 * w32menu.c (w32_menu_show): Revert bogus introduction of FVAR.
6241
6242 * fontset.c (dump_fontset): Fix compilation with ENABLE_CHECKING
6243 after introduction of FVAR.
6244
6245 2012-07-31 Jan Djärv <jan.h.d@swipnet.se>
6246
6247 * nsmenu.m (update_frame_tool_bar): Change key from NSObject* to id.
6248
6249 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Use drawInRect
6250 instead of compositeToPoint.
6251 (applicationShouldTerminate): Pass NS String literal to NSRunAlertPanel.
6252
6253 * nsfns.m, nsmenu.m, nsterm.m: Adopt to struct frame/FVAR changes.
6254
6255 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
6256
6257 Generalize INTERNAL_FIELD between buffers, keyboards and frames.
6258 * lisp.h (INTERNAL_FIELD): New macro.
6259 * buffer.h (BUFFER_INTERNAL_FIELD): Remove.
6260 (BVAR): Change to use INTERNAL_FIELD.
6261 * keyboard.h (KBOARD_INTERNAL_FIELD): Likewise.
6262 (KVAR): Change to use INTERNAL_FIELD.
6263 * frame.h (FVAR): New macro.
6264 (struct frame): Use INTERNAL_FIELD for all Lisp_Object fields.
6265 * alloc.c, buffer.c, data.c, dispnew.c, dosfns.c, eval.c, frame.c:
6266 * fringe.c, gtkutil.c, minibuf.c, nsfns.m, nsterm.m, print.c:
6267 * term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
6268 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
6269
6270 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
6271
6272 Miscellaneous fixes for non-default X toolkits.
6273 * xfns.c (Fx_file_dialog): Change to SSDATA to avoid warnings.
6274 * xterm.c (x_frame_of_widget): Remove redundant prototype.
6275 Move under #ifdef USE_LUCID.
6276 (x_create_toolkit_scroll_bar): Adjust scroll_bar_name
6277 definition and usage to avoid warnings.
6278
6279 2012-07-31 Jan Djärv <jan.h.d@swipnet.se>
6280
6281 * nsterm.m (openFiles): Fix previous checkin.
6282
6283 2012-07-31 Paul Eggert <eggert@cs.ucla.edu>
6284
6285 * indent.c (compute_motion): Remove unused local.
6286
6287 2012-07-31 Glenn Morris <rgm@gnu.org>
6288
6289 * s/usg5-4-common.h (wait3, WRETCODE): Let configure set them.
6290
6291 * conf_post.h [USG5_4]:
6292 Move remaining contents of s/usg5-4-common.h here.
6293 * s/usg5-4-common.h: Remove file.
6294
6295 * conf_post.h [IRIX6_5]: Move remaining contents of s/irix6-5.h here.
6296 * s/irix6-5.h: Remove file.
6297
6298 * conf_post.h [DARWIN_OS]: Move remaining contents of s/darwin.h here.
6299 * s/darwin.h: Remove file.
6300
6301 * conf_post.h [HPUX]: Move random, srandom here from s/hpux10-20.h.
6302 * s/hpux10-20.h: Remove file, which is now empty.
6303
6304 2012-07-30 Glenn Morris <rgm@gnu.org>
6305
6306 * conf_post.h: New, split from configure.ac's AH_BOTTOM.
6307 * Makefile.in (config_h): Add conf_post.h.
6308 * makefile.w32-in (CONFIG_H): Add conf_post.h.
6309
6310 2012-07-30 Jan Djärv <jan.h.d@swipnet.se>
6311
6312 * nsterm.m (ns_do_open_file): New variable.
6313 (ns_term_init): Set ns_do_open_file to YES after run returns.
6314 (openFile, openTempFile, openFileWithoutUI, openFiles):
6315 Open files only if ns_do_open_file.
6316
6317 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
6318
6319 * lisp.h (SWITCH_ENUM_CAST): Remove. All uses removed.
6320 This no-op macro hasn't been needed for many years.
6321 * src/regex.c (SWITCH_ENUM_CAST) [!emacs]: Likewise.
6322
6323 Export DIRECTORY_SEP, TYPEMASK, VALMASK to GDB.
6324 * alloc.c (gdb_make_enums_visible) [USE_LSB_TAG]: Add lsb_bits.
6325 * lisp.h (enum lsb_bits) [USE_LSB_TAG]: New enum, for
6326 gdb_make_enums_visible.
6327 (TYPEMASK, VALMASK) [USE_LSB_TAGS]: Now enum constants, not macros.
6328 (DIRECTORY_SEP): Now a constant, not a macro.
6329
6330 2012-07-30 Eli Zaretskii <eliz@gnu.org>
6331
6332 * w32fns.c (w32_wnd_proc): Pass w32_keyboard_codepage to
6333 w32_kbd_patch_key as the 2nd arg. (Bug#12082)
6334
6335 * w32term.c <w32_keyboard_codepage>: Renamed from
6336 keyboard_codepage and now external. All users changed.
6337
6338 * w32term.h: Add declaration of w32_keyboard_codepage.
6339
6340 * w32inevt.c (w32_kbd_patch_key): Accept an additional argument --
6341 the codepage to translate keys to Unicode. If this argument is
6342 -1, use the value returned by GetConsoleCP. All callers changed.
6343
6344 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
6345
6346 Update .PHONY listings in makefiles.
6347 * Makefile.in (.PHONY): Add all, mostlyclean, clean,
6348 bootstrap-clean, distclean, maintainer-clean, versioclean,
6349 extraclean, frc.
6350
6351 * lisp.h (STRING_BYTES_BOUND): Cast entire result to ptrdiff_t.
6352 This is a bit clearer. Fix some commentary typos.
6353
6354 2012-07-30 Glenn Morris <rgm@gnu.org>
6355
6356 * s/netbsd.h: Let configure include signal.h if needed.
6357 Remove file, which is now empty.
6358
6359 * s/usg5-4-common.h (_longjmp, _setjmp, TIOCSIGSEND):
6360 Let configure set them.
6361 * s/irix6-5.h (_longjmp, _setjmp, TIOCSIGSEND):
6362 No more need to undefine.
6363
6364 2012-07-30 Andreas Schwab <schwab@linux-m68k.org>
6365
6366 * keymap.c (Fkey_description): Don't remove 0x80 bit from
6367 non-single-byte char when adding meta modifier. (Bug#12090)
6368
6369 2012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
6370
6371 Convert safe_call to use variable number of arguments.
6372 * xdisp.c (safe_call): Convert to use varargs. Adjust users.
6373 (safe_call2): Fix comment.
6374 * lisp.h (safe_call): Adjust prototype.
6375 * coding.c (encode_coding_object): Change to use safe_call2.
6376 * xfaces.c (merge_face_heights): Change to use safe_call1.
6377
6378 2012-07-30 Glenn Morris <rgm@gnu.org>
6379
6380 * s/aix4-2.h (sigmask): No need to undefine it, since syssignal.h
6381 does that unconditionally. Remove file, which is now empty.
6382
6383 * s/freebsd.h, s/gnu-linux.h, s/sol2-6.h, s/unixware.h:
6384 Remove empty files.
6385
6386 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
6387
6388 Export to GDB most of lisp.h's remaining object-like macros.
6389 * lisp.h (min, max): Move earlier, because they're used earlier now.
6390 (INTMASK, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK)
6391 (CHAR_TABLE_STANDARD_SLOTS, CHARTAB_SIZE_BITS_0)
6392 (CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2, CHARTAB_SIZE_BITS_3)
6393 (DEFAULT_HASH_SIZE, COMPILED_ARGLIST, COMPILED_BYTECODE)
6394 (COMPILED_CONSTANTS, COMPILED_STACK_DEPTH, COMPILED_DOC_STRING)
6395 (COMPILED_INTERACTIVE, CHAR_ALT, CHAR_SUPER, CHAR_HYPER, CHAR_SHIFT)
6396 (CHAR_CTL, CHAR_META, CHAR_MODIFIER_MASK, CHARACTERBITS)
6397 (MANY, UNEVALLED, FLOAT_TO_STRING_BUFSIZE, MAX_ALLOCA):
6398 Now constants, for GDB. They need not be macros.
6399 (MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM, STRING_BYTES_BOUND):
6400 Now constants, for GDB, as well as macros, for static initializers.
6401 (CHAR_TABLE_STANDARD_SLOTS, CHAR_TABLE_EXTRA_SLOTS):
6402 Move to after the definition of struct Lisp_Char_Table,
6403 since the former now needs that type defined.
6404 (enum CHARTAB_SIZE_BITS, enum CHAR_TABLE_STANDARD_SLOTS)
6405 (enum DEFAULT_HASH_SIZE, enum Lisp_Compiled, enum char_bits)
6406 (enum maxargs, enum FLOAT_TO_STRING_BUFSIZE, enum MAX_ALLOCA):
6407 New enums, for gdb_make_enums_visible.
6408 (GLYPH_MODE_LINE_FACE): Remove; unused.
6409 * alloc.c (STRING_BYTES_MAX): Now a constant, not a macro.
6410 (gdb_make_enums_visible): Add enum CHARTAB_SIZE_BITS, enum
6411 CHAR_TABLE_STANDARD_SLOTS, enum char_bits, enum DEFAULT_HASH_SIZE,
6412 enum FLOAT_TO_STRING_BUFSIZE, enum Lisp_Bits, enum Lisp_Compiled,
6413 enum maxargs, enum MAX_ALLOCA.
6414 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): Remove.
6415 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Remove;
6416 no longer needed, now that they are done in lisp.h.
6417
6418 2012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
6419
6420 Cleanup string bytes checking.
6421 * alloc.c (GC_STRING_BYTES, CHECK_STRING_BYTES): Remove. Convert
6422 all users to STRING_BYTES or string_bytes if GC_CHECK_STRING_BYTES.
6423 (check_string_bytes): Define to empty if not GC_CHECK_STRING_BYTES.
6424 (check_sblock, compact_small_strings): Simplify.
6425
6426 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
6427
6428 * lisp.h (LISP_INT_TAG, LISP_INT1_TAG, LISP_STRING_TAG): Remove.
6429 These macros are confusing and no longer need to be defined, as
6430 the enum values now suffice. All uses replaced with definiens.
6431 (Lisp_Int1, Lisp_String): Define directly; this is clearer.
6432
6433 2012-07-29 Juanma Barranquero <lekktu@gmail.com>
6434
6435 * makefile.w32-in (LISP_H, $(BLD)/emacs.$(O), $(BLD)/w32inevt.$(O))
6436 ($(BLD)/w32console.$(O)): Update dependencies.
6437
6438 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
6439
6440 Remove HIDE_LISP_IMPLEMENTATION and cleanup cons free list check.
6441 * lisp.h (HIDE_LISP_IMPLEMENTATION): Remove as useless for a long
6442 time. Adjust users.
6443 (CHECK_CONS_LIST): Remove. Convert all users to check_cons_list.
6444
6445 2012-07-29 Jan Djärv <jan.h.d@swipnet.se>
6446
6447 * lread.c (init_lread): Remove if-statement in ifdef HAVE_NS before
6448 setting sitelisp (Bug#12010).
6449
6450 2012-07-29 Eli Zaretskii <eliz@gnu.org>
6451
6452 * w32heap.h (OS_9X): Rename from OS_WINDOWS_95.
6453
6454 * w32heap.c (cache_system_info):
6455 * w32.c (sys_rename):
6456 * w32proc.c (find_child_console, sys_kill): All users changed.
6457
6458 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
6459
6460 * alloc.c (Fgarbage_collect): Indent as per usual Emacs style.
6461
6462 2012-07-29 Eli Zaretskii <eliz@gnu.org>
6463
6464 * makefile.w32-in (LISP_H): Add $(NT_INC)/stdalign.h.
6465
6466 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
6467
6468 Cleanup statistics calculation in Fgarbage_collect.
6469 * alloc.c (Fgarbage_collect): Rename t1 to meaningful start.
6470 Fix zombies percentage calculation. Simplify elapsed time calculation.
6471
6472 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
6473
6474 Generalize marker debugging code under MARKER_DEBUG and use eassert.
6475 * insdel.c (CHECK_MARKERS, check_markers_debug_flag): Remove.
6476 (gap_left, gap_right, adjust_markers_for_delete, insert_1_both)
6477 (insert_from_string_1, insert_from_gap, insert_from_buffer_1)
6478 (replace_range, replace_range_2, del_range_2): Change to eassert.
6479 * marker.c (byte_char_debug_check): Adjust style.
6480
6481 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
6482
6483 Don't use the abbreviation "win" to refer to Windows (Bug#10421).
6484 * regex.c (MAX_BUF_SIZE): Remove some incorrect and
6485 long-ago-commented-out code that talks about "WIN32".
6486 * w32heap.h (OS_WINDOWS_95): Rename from OS_WIN95.
6487 All uses changed.
6488
6489 2012-07-28 Paul Eggert <eggert@cs.ucla.edu>
6490
6491 Use Gnulib stdalign module (Bug#9772, Bug#9960).
6492 * alloc.c (XMALLOC_BASE_ALIGNMENT, GC_POINTER_ALIGNMENT, pure_alloc):
6493 Simplify by using alignof.
6494 (pure_alloc) [! USE_LSB_TAG]: Don't over-align EMACS_INT values.
6495 * lisp.h: Include <stdalign.h>.
6496 (GCALIGNMENT): New macro and constant.
6497 (DECL_ALIGN): Remove. All uses replaced by alignas (GCALIGNMENT).
6498 (USE_LSB_TAG): ifdef on alignas, not on DECL_ALIGN.
6499 (stdalign): New macro, if not already defined.
6500
6501 2012-07-28 Eli Zaretskii <eliz@gnu.org>
6502
6503 Fix non-ASCII input in non-GUI frames on MS-Windows. (Bug#12055)
6504 * w32inevt.c: Include w32inevt.h.
6505 (w32_read_console_input): New inline function, calls either
6506 ReadConsoleInputA or ReadConsoleInputW, depending on the value of
6507 w32_console_unicode_input.
6508 (fill_queue): Call w32_read_console_input instead of ReadConsoleInput.
6509 (w32_kbd_patch_key, key_event): Use the codepage returned by
6510 GetConsoleCP, rather than the ANSI codepage returned by GetLocaleInfo.
6511 (key_event): use uChar.UnicodeChar only if
6512 w32_console_unicode_input is non-zero.
6513
6514 * w32console.c: Include w32heap.h.
6515 <w32_console_unicode_input>: New global variable.
6516 (initialize_w32_display): Set w32_console_unicode_input to 1 on NT
6517 family of Windows, zero otherwise.
6518
6519 * w32inevt.h: Declare w32_console_unicode_input.
6520
6521 * xdisp.c (init_iterator): Don't reference tip_frame in a build
6522 --without-x. (Bug#11742)
6523
6524 2012-07-27 Paul Eggert <eggert@cs.ucla.edu>
6525
6526 Adjust GDB to reflect pvec_type changes (Bug#12036).
6527 * .gdbinit (xvectype, xpr, xbacktrace): Adjust to reflect the
6528 2012-07-04 changes to pseudovector representation.
6529 Problem reported by Eli Zaretskii in <http://bugs.gnu.org/12036#30>.
6530
6531 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
6532
6533 * dbusbind.c (XD_DBUS_VALIDATE_BUS_ADDRESS): Canonicalize session
6534 bus address.
6535 (xd_close_bus, Fdbus_init_bus): Handle reference counter properly.
6536
6537 2012-07-27 Eli Zaretskii <eliz@gnu.org>
6538
6539 * alloc.c (listn): Fix the order the arguments are consed onto the
6540 list.
6541
6542 * lisp.h (enum constype): Use CONSTYPE_HEAP and CONSTYPE_PURE for
6543 enumeration constants, as PURE and HEAP are too general, and clash
6544 with other headers and sources, such as gmalloc.c and the
6545 MS-Windows system headers. All users changed.
6546
6547 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
6548
6549 Revert last save_excursion_save and save_excursion_restore changes.
6550 * alloc.c, editfns.c, marker.c, lisp.h: Revert.
6551 Lots of crashes reported by Chong Yidong <cyd@gnu.org>.
6552
6553 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
6554
6555 Fix recently-introduced typos in Windows port.
6556 Reported by Martin Rudalics <rudalics@gmx.at>.
6557 * w32.c (init_environment): Replace comma with semicolon.
6558 * w32fns.c (syms_of_w32fns): Add missing parenthesis.
6559
6560 2012-07-27 Paul Eggert <eggert@cs.ucla.edu>
6561
6562 Improve GDB symbol export (Bug#12036).
6563 * .gdbinit (xgetptr, xgetint, xgettype): Set $bugfix in different
6564 arms of an 'if', not using conditional expressions; otherwise GDB
6565 complains about the types in the unevaluated arm when the argument
6566 is an integer literal.
6567 (xgetint): Simplify expression.
6568 * alloc.c (gdb_make_enums_visible): New constant. This ports to
6569 GCC 3.4.2 the export of symbols to GDB. Problem reported by Eli
6570 Zaretskii in <http://bugs.gnu.org/12036#13>.
6571 * lisp.h (PUBLISH_TO_GDB): Remove. All uses removed. No longer
6572 needed now that we have gdb_make_enums_visible.
6573 (enum CHECK_LISP_OBJECT_TYPE, enum Lisp_Bits, enum More_Lisp_Bits)
6574 (enum enum_USE_LSB_TAG):
6575 New enum types, packaging up enums that need to be exported to GDB.
6576
6577 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
6578
6579 Utility function to make a list from specified amount of objects.
6580 * lisp.h (enum constype): New datatype.
6581 (listn): New prototype.
6582 * alloc.c (listn): New function.
6583 (Fmemory_use_count, syms_of_alloc): Use it.
6584 * buffer.c (syms_of_buffer): Likewise.
6585 * callint.c (syms_of_callint): Likewise.
6586 * charset.c (define_charset_internal): Likewise.
6587 * coding.c (syms_of_coding): Likewise.
6588 * keymap.c (syms_of_keymap): Likewise.
6589 * search.c (syms_of_search): Likewise.
6590 * syntax.c (syms_of_syntax): Likewise.
6591 * w32.c (init_environment): Likewise.
6592 * w32fns.c (Fw32_battery_status, syms_of_w32fns): Likewise.
6593 * xdisp.c (syms_of_xdisp): Likewise.
6594 * xfns.c (syms_of_xfns): Likewise.
6595
6596 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
6597
6598 Fast save_excursion_save and save_excursion_restore.
6599 * lisp.h (struct Lisp_Excursion): New data type.
6600 (PVEC_EXCURSION): New pseudovector type.
6601 (XEXCURSION, XSETEXCURSION, EXCURSIONP): Convenient macros
6602 to deal with it. Adjust comments.
6603 (init_marker, attach_marker): New prototype.
6604 (unchain_marker): Adjust prototype.
6605 * marker.c (attach_marker): Change to global.
6606 (init_marker): New function.
6607 * alloc.c (Fmake_marker, build_marker): Use it.
6608 (build_marker): More easserts.
6609 (mark_object): Handle struct Lisp_Excursion.
6610 * editfns.c (save_excursion_save, save_excursion_restore):
6611 Reimplement to use struct Lisp_Excursion. Add comments.
6612
6613 2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
6614
6615 Fix export of symbols to GDB (Bug#12036).
6616 * alloc.c (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL)
6617 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Move these here from
6618 emacs.c, as this is a more-suitable home. Had this been done earlier
6619 the fix for 12036 would have avoided some of the problems noted in
6620 <http://bugs.gnu.org/12036#13> by Eli Zaretskii, as the scope problems
6621 would have been more obvious.
6622 * emacs.c: Do not include <verify.h>; no longer needed.
6623 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS)
6624 (gdb_GCTYPEBITS, gdb_USE_LSB_TAG)
6625 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
6626 Remove; now done in lisp.h.
6627 * lisp.h (PUBLISH_TO_GDB): New macro.
6628 (GCTYPEBITS, USE_LSB_TAG, CHECK_LISP_OBJECT_TYPE, enum pvec_type)
6629 (DATA_SEG_BITS): Use it.
6630 (GCTYPEBITS, USE_LSB_TAG): Now also an enum, for GDB.
6631 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Now just an enum, for GDB.
6632 * mem-limits.h (EXCEEDS_LISP_PTR): Redo so that DATA_SEG_BITS need
6633 not be usable in #if. This simplifies things.
6634
6635 2012-07-26 Juanma Barranquero <lekktu@gmail.com>
6636
6637 * makefile.w32-in ($(BLD)/emacs.$(O)): Update dependencies.
6638
6639 2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
6640
6641 Simplify export of symbols to GDB (Bug#12036).
6642 * .gdbinit (xgetptr, xgetint, xgettype): Don't use "set $bugfix =
6643 $bugfix.i", as this doesn't work (with GDB 7.4.1, anyway).
6644 (xgetptr, xgetint, xgettype, xcoding, xcharset, xprintbytestr):
6645 Adjust to changes in lisp.h and emacs.c, by using
6646 CHECK_LISP_OBJECT_TYPE rather than gdb_use_struct, VALMASK instead
6647 of $valmask, DATA_SEG_BITS instead of gdb_data_seg_bits,
6648 INTTYPEBITS instead of gdb_gctypebits - 1, USE_LSB_TAG instead of
6649 gdb_use_lsb, (1 << GCTYPEBITS) - 1 instead of $tagmask, VALBITS
6650 instead of gdb_valbits.
6651 (xvectype, xvector, xpr, xprintstr, xbacktrace): Similarly, use
6652 PSEUDOVECTOR_FLAG instead of PVEC_FLAG, and ARRAY_MARK_FLAG
6653 instead of gdb_array_mark_flag.
6654 (xboolvector): Get size from $->size, not $->header.size.
6655 Use BOOL_VECTOR_BITS_PER_CHAR rather than mystery constants.
6656 (xreload, hook-run, hookpost-run): Remove.
6657 * emacs.c: Include <verify.h>.
6658 (gdb_use_lsb, gdb_use_struct, gdb_valbits, gdb_gctypebits)
6659 (gdb_data_seg_bits, PVEC_FLAG, gdb_array_mark_flag, gdb_pvec_type):
6660 Remove.
6661 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS, gdb_GCTYPEBITS)
6662 (gdb_USE_LSB_TAG): New enum constants.
6663 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
6664 Also define these as enum constants, so they're visible to GDB.
6665 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): New macros.
6666 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Also define these
6667 as constants, so they're visible to GDB.
6668 * lisp.h (VALBITS, INTTYPEBITS, FIXNUM_BITS, PSEUDOVECTOR_SIZE_BITS)
6669 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK, BOOL_VECTOR_BITS_PER_CHAR):
6670 Now enum constants, not macros, so they're visible to GDB.
6671 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Default to 0, as this is
6672 more convenient now. All uses changed.
6673 (VALMASK) [USE_LSB_TAG]: Also define in this case.
6674 * mem-limits.h (EXCEEDS_LISP_PTR): Adjust to DATA_SEG_BITS change.
6675
6676 2012-07-26 Dmitry Antipov <dmantipov@yandex.ru>
6677
6678 Explicitly free restriction data that are not needed anymore.
6679 * editfns.c (save_restriction_restore): Free restriction data.
6680
6681 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
6682
6683 * eval.c (Fautoload_do_load): Rename from do_autoload, export to Lisp,
6684 add argument, tune behavior, and adjust all callers.
6685
6686 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
6687
6688 Use typedef for EMACS_INT, EMACS_UINT.
6689 * lisp.h, s/ms-w32.h (EMACS_INT, EMACS_UINT): Use typedefs rather
6690 than macros. This simplifies debugging in the usual case, since
6691 it lets GDB show addresses as 'EMACS_INT *' rather than 'long int *'
6692 and it allows expressions involving EMACS_INT casts.
6693 * .gdbinit (xreload): Simplify by using EMACS_INT cast.
6694
6695 2012-07-25 Jan Djärv <jan.h.d@swipnet.se>
6696
6697 * nsterm.m (ns_read_socket): Return early if there is a modal
6698 window (Bug#12043).
6699
6700 2012-07-25 Martin Rudalics <rudalics@gmx.at>
6701
6702 * frame.c (Fredirect_frame_focus): In doc-string don't mention
6703 that FOCUS-FRAME can be omitted.
6704
6705 2012-07-25 Dmitry Antipov <dmantipov@yandex.ru>
6706
6707 Adjust buffer text indirection counters at the end of Fkill_buffer.
6708 * buffer.c (Fkill_buffer): Adjust indirection counters when the
6709 buffer is definitely dead. This should really fix an issue reported
6710 by Christoph Scholtes again. (Bug#12007).
6711 (init_buffer_once): Initialize indirection counters of
6712 buffer_defaults and buffer_local_symbols (for sanity and safety).
6713
6714 2012-07-24 Eli Zaretskii <eliz@gnu.org>
6715
6716 * xdisp.c (init_iterator): Don't compute dimensions of truncation
6717 and continuation glyphs on tooltip frames, leave them at zero.
6718 Avoids continued lines in tooltips. (Bug#11832)
6719
6720 2012-07-24 Dmitry Antipov <dmantipov@yandex.ru>
6721
6722 Simplify copy_overlay.
6723 * buffer.c (copy_overlay): Simplify. Use build_marker.
6724 * lisp.h (struct Lisp_Overlay): Restore comment with minor tweaks.
6725
6726 2012-07-23 Eli Zaretskii <eliz@gnu.org>
6727
6728 * print.c (print_object): Don't crash when a frame's name is nil
6729 or invalid. (Bug#12025)
6730
6731 * window.c (decode_any_window): Disable CHECK_LIVE_FRAME test, as
6732 it signals an error when a tooltip frame is being created.
6733
6734 2012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
6735
6736 Cleanup miscellaneous objects allocation and initialization.
6737 * alloc.c (allocate_misc): Change to static. Add argument to
6738 specify the subtype. Adjust comment and users.
6739 (build_overlay): New function.
6740 * buffer.c (copy_overlays, Fmake_overlay): Use it.
6741 * lisp.h (struct Lisp_Overlay): Remove obsolete comment.
6742 (allocate_misc): Remove prototype.
6743 (build_overlay): Add prototype.
6744
6745 2012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
6746
6747 Swap buffer text indirection counters in Fbuffer_swap_text.
6748 * buffer.c (Fbuffer_swap_text): Swap indirections too.
6749 This avoids crash reported by Christoph Scholtes at
6750 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00785.html.
6751
6752 2012-07-22 Jan Djärv <jan.h.d@swipnet.se>
6753
6754 * nsmenu.m (Popdown_data): New struct.
6755 (pop_down_menu): p->pointer is Popdown_data. Release the pool and
6756 free Popdown_data.
6757 (ns_popup_dialog): Use NSAutoreleasePool and pass it to pop_down_menu.
6758 (initWithContentRect): Make imgView and contentView non-static
6759 and autorelease them. Also autorelease img and matrix (Bug#12005).
6760 (dealloc): Remove (Bug#12005).
6761
6762 2012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
6763
6764 Adjust consing_since_gc when objects are explicitly freed.
6765 * alloc.c (GC_DEFAULT_THRESHOLD): New macro.
6766 (Fgarbage_collect): Use it. Change minimum to 1/10 of default.
6767 (free_cons, free_misc): Subtract object size from consing_since_gc.
6768
6769 2012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
6770
6771 Simplify and cleanup markers positioning code.
6772 * marker.c (attach_marker): More useful eassert.
6773 (live_buffer, set_marker_internal): New function.
6774 (Fset_marker, set_marker_restricted): Use set_marker_internal.
6775 (set_marker_both, set_marker_restricted_both): Use live_buffer.
6776
6777 2012-07-22 Paul Eggert <eggert@cs.ucla.edu>
6778
6779 * buffer.h (struct buffer.indirections): Now ptrdiff_t, not int,
6780 as it's limited by the amount of memory, not by INT_MAX.
6781
6782 2012-07-21 Eli Zaretskii <eliz@gnu.org>
6783
6784 * keyboard.c (keys_of_keyboard): Bind language-change to 'ignore'
6785 in special-event-map. See the discussion at
6786 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00417.html
6787 for the reasons.
6788
6789 * w32menu.c (add_menu_item): Cast to ULONG_PTR when assigning
6790 info.dwItemData. Fixes crashes on 64-bit Windows.
6791 Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
6792
6793 2012-07-21 Jan Djärv <jan.h.d@swipnet.se>
6794
6795 * nsterm.m (accessibilityAttributeValue): New function. (Bug#11134).
6796 (conversationIdentifier): Return value is NSInteger.
6797 * nsterm.m (accessibilityAttributeValue): Surround with NS_IMPL_COCOA.
6798
6799 2012-07-21 Chong Yidong <cyd@gnu.org>
6800
6801 * window.c (decode_any_window): Signal an error if the window is
6802 on a dead frame (Bug#11984).
6803
6804 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
6805
6806 Add indirection counting to speed up Fkill_buffer.
6807 * buffer.h (struct buffer): New member.
6808 * buffer.c (Fget_buffer_create): Set indirection counter to 0.
6809 (Fmake_indirect_buffer): Set indirection counter to -1, increment
6810 base buffer indirection counter.
6811 (compact_buffer): If ENABLE_CHECKING, verify indirection counters.
6812 (Fkill_buffer): Adjust indirection counters as needed, don't walk
6813 through buffer list if indirection counter is 0.
6814
6815 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
6816
6817 Extend the value returned by Fgarbage_collect with heap statistics.
6818 * alloc.c (Qheap): New symbol.
6819 (syms_of_alloc): DEFSYM it.
6820 (Fgarbage_collect): If DOUG_LEA_MALLOC, add mallinfo data.
6821 (Fmemory_free): Remove.
6822 (syms_of_alloc): Don't defsubr it.
6823 * buffer.c (Fcompact_buffer): Remove.
6824 (syms_of_buffer): Don't defsubr it.
6825
6826 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
6827
6828 Make maybe_gc inline.
6829 Verify that inlining is always possible (GCC 4.7.1, -O3 -Winline).
6830 * lisp.h (consing_since_gc, gc_relative_threshold)
6831 (memory_full_cons_threshold): Revert declaration.
6832 (maybe_gc): Remove prototype, define as inline.
6833 * alloc.c: Remove old commented-out code.
6834 (consing_since_gc, gc_relative_threshold)
6835 (memory_full_cons_threshold): Revert to global.
6836 (maybe_gc): Remove.
6837
6838 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
6839
6840 Simple wrapper for make_unibyte_string, adjust font_open_by_name.
6841 * lisp.h (build_unibyte_string): New function.
6842 * dosfns.c, fileio.c, fns.c, ftfont.c, process.c:
6843 * sysdep.c, w32fns.c, xfns.c: Use it.
6844 * font.c (font_open_by_name): Change 2nd and 3rd args to the only arg
6845 of type Lisp_Object to avoid redundant calls to make_unibyte_string.
6846 Adjust users accordingly.
6847 * font.h (font_open_by_name): Adjust prototype.
6848
6849 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
6850
6851 Cleanup calls to Fgarbage_collect.
6852 * lisp.h (maybe_gc): New prototype.
6853 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
6854 Remove declarations.
6855 * alloc.c (maybe_gc): New function.
6856 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
6857 Make them static.
6858 * bytecode.c (MAYBE_GC): Use maybe_gc.
6859 * eval.c (eval_sub, Ffuncall): Likewise.
6860 * keyboard.c (read_char): Likewise. Adjust call to maybe_gc
6861 to avoid dependency from auto-save feature.
6862
6863 2012-07-19 Paul Eggert <eggert@cs.ucla.edu>
6864
6865 * buffer.h (FOR_EACH_BUFFER): Rename from 'for_each_buffer'.
6866 (FOR_EACH_PER_BUFFER_OBJECT_AT): Rename from
6867 'for_each_per_buffer_object_at'.
6868 All uses changed. It's better to use upper-case for macros that
6869 cannot be implemented as functions, to give the reader a clue
6870 that they're special.
6871
6872 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
6873
6874 * alloc.c (Fgarbage_collect): Tweak docstring.
6875
6876 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
6877
6878 Tweak the value returned from Fgarbage_collect again.
6879 * alloc.c (Fgarbage_collect): New return value, as confirmed in
6880 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00418.html.
6881 Adjust documentation.
6882 (total_vector_bytes): Rename to total_vector_slots, adjust
6883 accounting.
6884 (total_free_vector_bytes): Rename to total_free_vector_slots,
6885 adjust accounting.
6886 (Qstring_bytes, Qvector_slots): New symbols.
6887 (syms_of_alloc): DEFSYM them.
6888
6889 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
6890
6891 Buffer compaction primitive which may be used from Lisp.
6892 * buffer.c (compact_buffer, Fcompact_buffer): New function.
6893 (syms_of_buffer): Register Fcompact_buffer.
6894 * alloc.c (Fgarbage_collect): Use compact_buffer.
6895 * buffer.h (compact_buffer): New prototype.
6896 (struct buffer_text): New member.
6897
6898 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
6899
6900 New macro to iterate over all buffers, miscellaneous cleanups.
6901 * lisp.h (all_buffers): Remove declaration.
6902 * buffer.h (all_buffers): Add declaration, with comment.
6903 (for_each_buffer): New macro.
6904 * alloc.c (Fgarbage_collect, mark_object): Use it.
6905 * buffer.c (Fkill_buffer, Fbuffer_swap_text, Fset_buffer_multibyte)
6906 (init_buffer): Likewise.
6907 * data.c (Fset_default): Likewise.
6908 * coding.c (code_conversion_restore): Remove redundant check
6909 for dead buffer.
6910 * buffer.c (Fkill_buffer): Likewise. Remove obsolete comment.
6911
6912 2012-07-18 Andreas Schwab <schwab@linux-m68k.org>
6913
6914 Fix bug that created negative-length intervals.
6915 * intervals.c (merge_interval_right, merge_interval_left):
6916 Do not zero out this interval if it is absorbed by its children,
6917 as this interval's total length doesn't change in that case. See
6918 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00403.html>.
6919
6920 2012-07-18 Paul Eggert <eggert@cs.ucla.edu>
6921
6922 * alloc.c (Fmake_bool_vector): Fix off-by-8 bug
6923 when invoking (make-bool-vector N t) and N is a positive
6924 multiple of 8 -- the last 8 bits were mistakenly cleared.
6925
6926 Remove some struct layout assumptions in bool vectors.
6927 * alloc.c (bool_header_size): New constant.
6928 (header_size, word_size): Move earlier, as they're now used earlier.
6929 Use 'word_size' in a few more places, where it's appropriate.
6930 (Fmake_bool_vector, sweep_vectors): Don't assume that there is no
6931 padding before the data member of a bool vector.
6932 (sweep_vectors): Use PSEUDOVECTOR_TYPEP, in an eassert, rather
6933 than doing the check by hand with an abort ().
6934
6935 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
6936
6937 * eval.c (Fdefvar): Don't check constants since we only set the var if
6938 it's not yet defined anyway (bug#11904).
6939
6940 * lisp.h (last_undo_boundary): Declare new var.
6941 * keyboard.c (command_loop_1): Set it.
6942 * cmds.c (Fself_insert_command): Use it to only remove boundaries that
6943 were auto-added by the command loop (bug#11774).
6944
6945 2012-07-18 Andreas Schwab <schwab@linux-m68k.org>
6946
6947 * w32font.c (Qsymbol): Remove local definition.
6948 (syms_of_w32font): Don't DEFSYM it.
6949
6950 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
6951
6952 Fix sweep_vectors to handle large bool vectors correctly.
6953 * alloc.c (sweep_vectors): Account total_vector_bytes for
6954 bool vectors larger than VBLOCK_BYTES_MAX.
6955
6956 2012-07-18 Chong Yidong <cyd@gnu.org>
6957
6958 * frame.c (x_set_frame_parameters): Revert bogus change introduced
6959 in 2012-05-25 commit by Paul Eggert (Bug#11738).
6960
6961 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
6962
6963 Return more descriptive data from Fgarbage_collect.
6964 Suggested by Stefan Monnier in
6965 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00369.html.
6966 * alloc.c (bounded_number): New function.
6967 (total_buffers, total_vectors): New variable.
6968 (total_string_size): Rename to total_string_bytes, adjust users.
6969 (total_vector_size): Rename to total_vector_bytes, adjust users.
6970 (sweep_vectors): Account total_vectors and total_vector_bytes.
6971 (Fgarbage_collect): New return value. Adjust documentation.
6972 (gc_sweep): Account total_buffers.
6973 (Fmemory_free, Fmemory_use_counts): Use bounded_number.
6974 (VECTOR_SIZE): Remove.
6975 * data.c (Qfloat, Qvector, Qsymbol, Qstring, Qcons): Make global.
6976 (Qinterval, Qmisc): New symbols.
6977 (syms_of_data): Initialize them.
6978 * lisp.h (Qinterval, Qsymbol, Qstring, Qmisc, Qvector, Qfloat)
6979 (Qcons, Qbuffer): New declarations.
6980
6981 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
6982
6983 * alloc.c (Fmemory_free): Account for memory-free's own storage.
6984 Round up, not down. Improve doc.
6985
6986 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
6987
6988 Restore old code in allocate_string_data to avoid Faset breakage.
6989 Reported by Julien Danjou <julien@danjou.info> in
6990 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00371.html.
6991 * alloc.c (allocate_string_data): Restore old code with minor
6992 adjustments, fix comment to explain this subtle issue.
6993
6994 2012-07-17 Eli Zaretskii <eliz@gnu.org>
6995
6996 Remove FILE_SYSTEM_CASE.
6997 * s/msdos.h (FILE_SYSTEM_CASE): Don't define.
6998
6999 * fileio.c (FILE_SYSTEM_CASE): Don't define.
7000 (Ffile_name_directory, Fexpand_file_name): Don't use FILE_SYSTEM_CASE.
7001 Fixes problems on MS-DOS with Vtemp_file_name_pattern when
7002 call-process-region passes it through expand-file-name.
7003
7004 * dired.c (file_name_completion): Don't use FILE_SYSTEM_CASE.
7005
7006 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
7007
7008 Fix crash when creating indirect buffer (Bug#11917)
7009 * buffer.c (buffer_lisp_local_variables): Add argument CLONE.
7010 Don't handle unbound variables specially if non-zero.
7011 (Fbuffer_local_variables): Pass zero.
7012 (clone_per_buffer_values): Pass non-zero.
7013
7014 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
7015
7016 * gnutls.c (emacs_gnutls_handshake): Revert last change. Add QUIT
7017 to make the loop interruptible.
7018
7019 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
7020
7021 * gnutls.c (emacs_gnutls_handshake): Only retry if
7022 GNUTLS_E_INTERRUPTED.
7023
7024 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
7025
7026 Cleanup and convert miscellaneous checks to eassert.
7027 * alloc.c (mark_interval): Fix comment, partially rephrase
7028 old comment from intervals.h (see below).
7029 * intervals.c (find_interval, adjust_intervals_for_insertion)
7030 (delete_interval, adjust_intervals_for_deletion)
7031 (graft_intervals_into_buffer, temp_set_point_both, copy_intervals):
7032 Convert to eassert.
7033 (adjust_intervals_for_insertion, make_new_interval):
7034 Remove obsolete and unused code.
7035 * intervals.h (struct interval): Remove obsolete comment.
7036 * textprotp.c (erase_properties): Remove unused code.
7037 (Fadd_text_properties, set_text_properties_1, Fremove_text_properties)
7038 (Fremove_list_of_text_properties): Convert to eassert.
7039
7040 2012-07-17 Chong Yidong <cyd@gnu.org>
7041
7042 * editfns.c (Finsert_char): Doc fix.
7043
7044 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
7045
7046 Fix previous change to make Fmemory_free always accurate.
7047 * alloc.c (make_interval): Update total_free_intervals.
7048 (make_float): Likewise for total_free_floats.
7049 (free_cons, Fcons): Likewise for total_free_conses.
7050 (SETUP_ON_FREE_LIST, allocate_vector_from_block):
7051 Likewise for total_free_vector_bytes.
7052 (Fmake_symbol): Likewise for total_free_symbols.
7053 (bytes_free): Remove.
7054
7055 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
7056
7057 Simple free memory accounting feature.
7058 * alloc.c (bytes_free, total_free_vector_bytes): New variable.
7059 (sweep_vectors): Accumulate size of free vectors.
7060 (Fgarbage_collect): Setup bytes_free.
7061 (Fmemory_free): New function.
7062 (syms_of_alloc): Register it.
7063
7064 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
7065
7066 Cleanup overlays checking.
7067 * buffer.h (OVERLAY_VALID): Remove as useless synonym of OVERLAYP.
7068 * buffer.c (overlay_touches_p, recenter_overlay_lists): Change to
7069 eassert and OVERLAYP.
7070 (sort_overlays): Change to use OVERLAYP.
7071
7072 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
7073
7074 * editfns.c (Finsert_char): Make it interactive, and make the
7075 second arg optional. Copy interactive spec and docstring from
7076 ucs-insert.
7077
7078 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
7079
7080 * floatfns.c (Fabs): Do not wrap fabs inside IN_FLOAT (Bug#11913).
7081 Unlike the other wrapped functions, fabs has an unspecified
7082 effect on errno.
7083
7084 2012-07-16 Jan Djärv <jan.h.d@swipnet.se>
7085
7086 * nsterm.m (keyDown): Interpret flags without left/right bits
7087 as the left key (Bug#11670).
7088
7089 2012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
7090
7091 Remove empty and useless init functions.
7092 * lisp.h (init_character_once, init_fns, init_image)
7093 (init_filelock, init_sound): Remove prototype.
7094 * character.c (init_character_once): Remove.
7095 * filelock.c (init_filelock): Likewise.
7096 * fns.c (init_fns): Likewise.
7097 * image.c (init_image): Likewise.
7098 * sound.c (init_sound): Likewise.
7099 * emacs.c (main): Adjust accordingly.
7100
7101 2012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
7102
7103 * gtkutil.h: Tiny cleanups.
7104 (use_old_gtk_file_dialog): Remove useless declaration.
7105 (xg_uses_old_file_dialog): Add suggested const attribute.
7106
7107 2012-07-15 Eli Zaretskii <eliz@gnu.org>
7108
7109 * bidi.c (MAX_STRONG_CHAR_SEARCH): New macro.
7110 (bidi_paragraph_init): Use it to limit search forward for a strong
7111 directional character in abnormally large paragraphs full of
7112 neutral or weak characters. (Bug#11943)
7113
7114 2012-07-15 Stefano Facchini <stefano.facchini@gmail.com> (tiny change)
7115
7116 * gtkutil.c (xg_create_tool_bar): Apply "primary-toolbar" style to
7117 the toolbar (Bug#9451).
7118 (xg_make_tool_item): Give the widget event box a transparent
7119 background.
7120
7121 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
7122
7123 Cleanup basic allocation variables and functions.
7124 * alloc.c (ignore_warnings, init_intervals, init_float)
7125 (init_cons, init_symbol, init_marker): Remove.
7126 (interval_block_index): Initialize to INTERVAL_BLOCK_SIZE.
7127 (float_block_index): Initialize to FLOAT_BLOCK_SIZE.
7128 (cons_block_index): Initialize to CONS_BLOCK_SIZE.
7129 (symbol_block_size): Initialize to SYMBOL_BLOCK_SIZE.
7130 (marker_block_index): Initialize to MARKER_BLOCK_SIZE.
7131 (staticidx, init_alloc_once, init_strings, free_ablock):
7132 Remove redundant initialization.
7133 * fns.c (init_weak_hash_tables): Remove.
7134 * lisp.h (init_weak_hash_tables): Remove prototype.
7135
7136 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
7137
7138 Use zero_vector where appropriate.
7139 * alloc.c (zero_vector): Define as Lisp_Object. Adjust users
7140 accordingly.
7141 * lisp.h (zero_vector): New declaration.
7142 * font.c (null_vector): Remove.
7143 (syms_of_font): Remove initialization and staticpro.
7144 (font_list_entities, font_find_for_lface): Change to use zero_vector.
7145 * keymap.c (Faccessible_keymaps): Likewise.
7146
7147 2012-07-15 Leo Liu <sdl.web@gmail.com>
7148
7149 * fringe.c: Fix typo in comments.
7150
7151 2012-07-14 Leo Liu <sdl.web@gmail.com>
7152
7153 * fringe.c: Add a new bitmap exclamation-mark.
7154
7155 2012-07-14 Eli Zaretskii <eliz@gnu.org>
7156
7157 * gmalloc.c (GMALLOC_INHIBIT_VALLOC): Don't reference.
7158
7159 * s/msdos.h (BSD_SYSTEM, DATA_START, GC_SETJMP_WORKS, HAVE_MOUSE)
7160 (HAVE_MENUS): Don't define, defined by editing config.in with
7161 msdos/sed2v2.inp.
7162 (GMALLOC_INHIBIT_VALLOC): Don't define.
7163 (MODE_LINE_BINARY_TEXT): Remove, not used anymore.
7164
7165 2012-07-14 Juanma Barranquero <lekktu@gmail.com>
7166
7167 * s/ms-w32.h (GC_SETJMP_WORKS, GC_MARK_STACK): Set in nt/config.nt.
7168
7169 2012-07-14 Glenn Morris <rgm@gnu.org>
7170
7171 * s/aix4-2.h, s/freebsd.h, s/gnu-linux.h, s/hpux10-20.h:
7172 * s/irix6-5.h, s/netbsd.h, s/sol2-6.h, s/unixware.h:
7173 Let configure set GC_SETJMP_WORKS, GC_MARK_STACK.
7174
7175 2012-07-13 Glenn Morris <rgm@gnu.org>
7176
7177 * s/gnu-linux.h (GC_MARK_SECONDARY_STACK): Let configure set it.
7178
7179 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Let configure set it.
7180 * s/irix6-5.h (SETUP_SLAVE_PTY): No more need to unset it.
7181
7182 2012-07-13 Jan Djärv <jan.h.d@swipnet.se>
7183
7184 * nsterm.m (uRect): Only define if NS_IMPL_GNUSTEP.
7185 (x_free_frame_resources): Pass x_free_frame_resources to NSTRACE.
7186 (ns_lisp_to_color, ns_string_to_lispmod, ns_term_init)
7187 (ns_term_shutdown, requestService, initFrameFromEmacs): Use SSDATA
7188 where appropriate.
7189 (ns_exec_path, ns_load_path, changeFont): Put () around assignment used
7190 as boolean expression.
7191 (x_set_window_size): Remove unused variable toolbar.
7192 (ns_get_color_default, ns_mod_to_lisp): Remove.
7193 (ns_mouse_position): Remove unused variables xchar and ychar.
7194 (ns_compute_glyph_string_overhangs): Remove unused variable face.
7195 (ns_set_vertical_scroll_bar): Remove unused variable count.
7196 (ns_delete_terminal): Remove unused variable i.
7197 (ns_term_init): Remove unused variables r, g and b.
7198 (mouseDown): Remove unused variable window.
7199 (windowDidResize): Move definition of theWindow inside NS_IMPL_GNUSTEP.
7200 (initFrameFromEmacs): Remove unused variable vbextra.
7201 (mouseEntered): Remove unused variables p and dpyinfo.
7202 (mouseExited): Remove unused variables p and r.
7203 (ns_define_frame_cursor, ns_clear_frame_area)
7204 (ns_draw_window_cursor, ns_initialize_display_info): Make static.
7205 (menuDown): Assign [sender tag] to variable and cast the variable.
7206
7207 * nsterm.h (menuDown): Add id as type to argument sender.
7208 (ns_display_info_for_name): Add Lisp_Object argument.
7209 (ns_term_init): Add Lisp_Object argument.
7210 (ns_map_event_to_object): Add void argument.
7211 (ns_string_from_pasteboard, ns_string_to_pasteboard): Add correct
7212 prototype with arguments and only declare if __OBJC__.
7213 (nxatoms_of_nsselect): Add void argument.
7214 (ns_lisp_to_cursor_type): Add Lisp_Object argument.
7215 (ns_alloc_autorelease_pool): Add void argument.
7216 (ns_release_autorelease_pool): Add void* argument.
7217 (ns_get_defaults_value): Add const char* argument.
7218
7219 * nsmenu.m (ns_update_menubar, ns_menu_show, process_dialog)
7220 (initFromContents): Use SSDATA where appropriate.
7221 (ns_update_menubar): Add braces to ambigous if-else.
7222 (initWithTitle): Put () around assignment in if statement.
7223 (ns_menu_show): Remove unused variables window and keymap.
7224 (update_frame_tool_bar): Remove unused variable selected_p.
7225 (initWithContentRect): Remove unused variable this_cmd_name.
7226
7227 * nsimage.m (ns_load_image, allocInitFromFile): Use SSDATA where
7228 appropriate.
7229 (setXBMColor): Remove unused variable len.
7230 (setPixmapData): Put () around assignment in loop statement.
7231
7232 * nsfont.m (ns_get_family, ns_lang_to_script, ns_otf_to_script)
7233 (ns_registry_to_script, ns_get_req_script, nsfont_open): Use SSDATA
7234 where appropriate.
7235 (ns_get_covering_families, ns_findfonts, nsfont_list_family): Put ()
7236 around assignment in loop statement.
7237 (nsfont_open): Remove unused variable i.
7238 (nsfont_open): Remove unused variable len.
7239 (nsfont_draw): Remove unused variable cs.
7240
7241 * nsfns.m (x_set_icon_name, ns_set_name_internal)
7242 (ns_set_name_as_filename, ns_implicitly_set_icon_type)
7243 (x_set_icon_type, ns_lisp_to_cursor_type, Fns_read_file_name)
7244 (Fns_get_resource, Fns_set_resource, Fx_open_connection)
7245 (Fns_font_name, Fns_perform_service)
7246 (Fns_convert_utf8_nfd_to_nfc, ns_do_applescript)
7247 (Fns_do_applescript, Fx_show_tip): Use SSDATA where appropriate.
7248 (ns_set_name): Remove unused variable view.
7249 (x_set_menu_bar_lines): Remove unused variable olines.
7250 (x_set_tool_bar_lines): Remove unused variable root_window.
7251 (Fns_list_colors): Put () around assignment in while statement.
7252 (Fns_perform_service): Remove unused variable len.
7253 (Fns_display_usable_bounds): Remove unused variable top.
7254 (syms_of_nsfns): Remove unused variable i.
7255
7256 * nsmenu.m (ns_update_menubar): Exchange place of argument 2 and 3 to
7257 memcpy (Bug#11907).
7258
7259 2012-07-13 Kalle Kankare <kalle.kankare@iki.fi> (tiny change)
7260
7261 * image.c (Fimagemagick_types): Initialize ex with GetExceptionInfo
7262 and free it with DestroyExceptionInfo (Bug#11558).
7263
7264 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
7265
7266 * s/ms-w32.h (FIRST_PTY_LETTER, HAVE_SOCKETS): Move to nt/config.nt.
7267 (HAVE_ATTRIBUTE_ALIGNED, HAVE_C99_STRTOLD, HAVE___BUILTIN_UNWIND_INIT):
7268 Set here, not in nt/config.nt.
7269
7270 2012-07-13 Eli Zaretskii <eliz@gnu.org>
7271
7272 * xdisp.c (move_it_in_display_line_to): On GUI terminals, allow
7273 cursor overflow into the last glyph on display line when the right
7274 fringe is off. (Bug#11832)
7275
7276 2012-07-13 Paul Eggert <eggert@cs.ucla.edu>
7277
7278 * xdisp.c (produce_special_glyphs): Now static.
7279 * dispextern.h (produce_special_glyphs): Remove decl.
7280
7281 2012-07-13 Glenn Morris <rgm@gnu.org>
7282
7283 * s/bsd-common.h, s/cygwin.h: Remove empty files.
7284 * s/freebsd.h, s/netbsd.h: Do not include bsd-common.h.
7285
7286 * s/usg5-4-common.h (USG, USG5):
7287 * s/template.h (USG5, USG, HPUX, BSD4_2, BSD_SYSTEM):
7288 * s/sol2-6.h (SOLARIS2):
7289 * s/irix6-5.h (IRIX6_5):
7290 * s/hpux10-20.h (USG, USG5, HPUX):
7291 * s/gnu-linux.h (USG, GNU_LINUX):
7292 * s/freebsd.h (BSD_SYSTEM):
7293 * s/darwin.h (BSD4_2, BSD_SYSTEM, DARWIN_OS):
7294 * s/cygwin.h (CYGWIN):
7295 * s/bsd-common.h (BSD_SYSTEM, BSD4_2):
7296 * s/aix4-2.h (USG, USG5, _AIX): Move "system type" macros to configure.
7297
7298 2012-07-13 BT Templeton <bpt@hcoop.net> (tiny change)
7299
7300 * nsfont.m (ns_charset_covers): Don't abort if no bitmap (Bug#11853).
7301
7302 2012-07-13 Glenn Morris <rgm@gnu.org>
7303
7304 * s/usg5-4-common.h (NSIG_MINIMUM): Let configure set it.
7305
7306 * s/gnu-linux.h, s/irix6-5.h: Let configure set ULIMIT_BREAK_VALUE.
7307
7308 * process.c (init_process_emacs): Replace MIN_PTY_KERNEL_VERSION.
7309 * s/darwin.h (MIN_PTY_KERNEL_VERSION): Remove single-use macro.
7310
7311 2012-07-12 Glenn Morris <rgm@gnu.org>
7312
7313 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Move to configure.
7314
7315 * process.c (init_process_emacs): Rename from init_process.
7316 The old name is also the name of a Mach system call.
7317 * lisp.h, emacs.c: Update for this name change.
7318 * nsgui.h, sysselect.h, s/darwin.h: Remove workaround that is no
7319 longer needed.
7320
7321 2012-07-12 Eli Zaretskii <eliz@gnu.org>
7322
7323 * xdisp.c (insert_left_trunc_glyphs): Fix incorrect size in
7324 memmove call that removes glyphs covered by the left truncation
7325 glyph. Improve commentary.
7326 (display_line): Fix display of continuation glyphs on GUI frames
7327 when the right fringe is turned off and variable-size fonts are
7328 used in the window. Move the code that appends a stretch glyph to
7329 produce_special_glyphs, so that it could be used for truncation
7330 and continuation glyphs alike.
7331 (produce_special_glyphs) [HAVE_WINDOW_SYSTEM]: Produce a stretch
7332 glyph of a suitably computed width, to align the special glyphs at
7333 the window margin. Code moved from display_line. (Bug#11832)
7334
7335 2012-07-12 Glenn Morris <rgm@gnu.org>
7336
7337 * s/aix4-2.h, s/hpux10-20.h: Let configure set NO_EDITRES.
7338
7339 * s/gnu-linux.h, s/hpux10-20.h:
7340 Do not unconditionally define HAVE_XRMSETDATABASE.
7341
7342 * s/gnu-linux.h (UNIX98_PTYS): Let configure set it.
7343
7344 2012-07-12 Paul Eggert <eggert@cs.ucla.edu>
7345
7346 Fix typos that broke OS X build.
7347 Reported by Randal L. Schwartz in
7348 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00225.html>.
7349 * nsterm.m (ns_timeout): Add missing local decl.
7350 (ns_get_color): snprintf -> sprintf, to fix typo.
7351
7352 2012-07-12 Glenn Morris <rgm@gnu.org>
7353
7354 * src/s/aix4-2.h, src/s/cygwin.h, src/s/darwin.h:
7355 * src/s/gnu-linux.h, src/s/hpux10-20.h, src/s/irix6-5.h:
7356 * src/s/sol2-6.h, src/s/unixware.h, src/s/usg5-4-common.h:
7357 Move PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF to configure.
7358
7359 * s/cygwin.h, s/darwin.h, s/gnu-linux.h, s/irix6-5.h:
7360 Move PTY_OPEN to configure.
7361
7362 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
7363 * s/gnu-linux.h, s/hpux10-20.h, s/irix6-5.h, s/template.h:
7364 * s/usg5-4-common.h: Move FIRST_PTY_LETTER, PTY_ITERATION to configure.
7365
7366 2012-07-12 Dmitry Antipov <dmantipov@yandex.ru>
7367
7368 Use empty_unibyte_string where applicable.
7369 * keyboard.c (parse_tool_bar_item): Use empty_unibyte_string.
7370 * lread.c (read1): Likewise.
7371 * xsettings.c (syms_of_xsettings): Likewise.
7372
7373 2012-07-12 Glenn Morris <rgm@gnu.org>
7374
7375 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC):
7376 * s/freebsd.h (BROKEN_PTY_READ_AFTER_EAGAIN):
7377 * s/irix6-5.h (SETPGRP_RELEASES_CTTY, PREFER_VSUSP):
7378 * s/hpux10-20.h (RUN_TIME_REMAP):
7379 * s/bsd-common.h (TABDLY): Move to configure.
7380
7381 * s/hpux10-20.h, s/sol2-6.h: Move XOS_NEEDS_TIME_H to configure.
7382
7383 * s/bsd-common.h, s/darwin.h: Move TAB3 to configure.
7384
7385 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
7386 (BROKEN_SIGPOLL, BROKEN_GET_CURRENT_DIR_NAME): Let configure set them.
7387
7388 * s/darwin.h (NO_ABORT, NO_MATHERR): Let configure set them.
7389
7390 * s/bsd-common.h, s/cygwin.h, s/gnu-linux.h, s/irix6-5.h:
7391 * s/template.h: Move NARROWPROTO to configure.
7392
7393 2012-07-11 Glenn Morris <rgm@gnu.org>
7394
7395 * s/gnu-linux.h, s/sol2-6.h: No longer define POSIX,
7396 unused since 2011-01-17 change to systty.h.
7397
7398 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h, s/gnu-linux.h:
7399 * s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
7400 Move HAVE_PTYS and HAVE_SOCKETS to configure.
7401
7402 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
7403
7404 * s/sol2-6.h (HAVE_LIBKSTAT): Remove. (Bug#11914)
7405
7406 2012-07-11 Glenn Morris <rgm@gnu.org>
7407
7408 * s/darwin.h, s/gnu-linux.h, s/template.h:
7409 Move INTERRUPT_INPUT to configure.
7410
7411 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
7412
7413 Minor adjustments to interning code.
7414 * lisp.h (intern, intern_c_string): Redefine as static inline
7415 wrappers for intern_1 and intern_c_string_1, respectively.
7416 (intern_1, intern_c_string_1): Rename prototypes.
7417 * lread.c (intern_1, intern_c_string_1, oblookup):
7418 Simplify Vobarray checking.
7419 * font.c (font_intern_prop): Likewise. Adjust comment.
7420 * w32font.c (intern_font_name): Likewise.
7421
7422 2012-07-11 Andreas Schwab <schwab@linux-m68k.org>
7423
7424 * gnutls.c (Fgnutls_boot): Properly parse :keylist argument.
7425
7426 * coding.c (Fdefine_coding_system_internal): Use XCAR/XCDR instead
7427 of Fcar/Fcdr if possible.
7428 * font.c (check_otf_features): Likewise.
7429 * fontset.c (Fnew_fontset): Likewise.
7430 * gnutls.c (Fgnutls_boot): Likewise.
7431 * minibuf.c (read_minibuf): Likewise.
7432 * msdos.c (IT_set_frame_parameters): Likewise.
7433 * xmenu.c (Fx_popup_dialog): Likewise.
7434 * w32menu.c (Fx_popup_dialog): Likewise.
7435
7436 2012-07-11 Glenn Morris <rgm@gnu.org>
7437
7438 * s/bsd-common.h, s/cygwin.h: No need to undefine INTERRUPT_INPUT,
7439 since nothing has defined it on these platforms.
7440
7441 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/gnu-linux.h:
7442 * s/irix6-5.h: Move SIGNALS_VIA_CHARACTERS to configure.
7443
7444 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
7445 * s/gnu-linux.h, s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
7446 Move CLASH_DETECTION to configure.
7447
7448 * s/gnu.h: Remove file, which is now empty.
7449
7450 * s/gnu.h, s/gnu-linux.h:
7451 Move GNU_LIBRARY_PENDING_OUTPUT_COUNT to configure.
7452
7453 2012-07-11 John Wiegley <johnw@newartisans.com>
7454
7455 * alloc.c (mark_memory): Guard the "no_address_safety_analysis"
7456 function attribute, so we only use it if it exists in the
7457 compiler.
7458
7459 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
7460
7461 Avoid call to strlen in fast_c_string_match_ignore_case.
7462 * search.c (fast_c_string_match_ignore_case): Change to use
7463 length argument. Adjust users accordingly.
7464 * lisp.h (fast_c_string_match_ignore_case): Adjust prototype.
7465
7466 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
7467
7468 Assume mkdir, rmdir.
7469 * sysdep.c (mkdir) [!HAVE_MKDIR]: Remove.
7470 * sysdep.c (rmdir) [!HAVE_RMDIR]: Remove.
7471
7472 Assume rename.
7473 * sysdep.c (rename) [!HAVE_RENAME]: Remove.
7474
7475 Assume perror.
7476 * s/hpux10-20.h (HAVE_PERROR): Remove.
7477 * sysdep.c (perror) [HPUX && !HAVE_PERROR]:
7478 Remove dummy definition, as this problem was obsolete long ago.
7479
7480 Assume strerror.
7481 * sysdep.c (strerror) [!HAVE_STRERROR && !WINDOWSNT]: Remove.
7482
7483 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
7484
7485 Avoid calls to strlen in font processing functions.
7486 * font.c (font_parse_name, font_parse_xlfd, font_parse_fcname)
7487 (font_open_by_name): Change to use length argument.
7488 Adjust users accordingly.
7489 * font.h (font_open_by_name, font_parse_xlfd, font_unparse_xlfd):
7490 Adjust prototypes.
7491 * xfont.c (xfont_decode_coding_xlfd, font_unparse_xlfd):
7492 Change to return ptrdiff_t.
7493 (xfont_list_pattern, xfont_match): Use length returned by
7494 xfont_decode_coding_xlfd.
7495 * xfns.c (x_default_font_parameter): Omit useless xstrdup.
7496
7497 2012-07-11 Glenn Morris <rgm@gnu.org>
7498
7499 * s/darwin.h, s/freebsd.h, s/netbsd.h:
7500 Move DONT_REOPEN_PTY to configure.
7501
7502 * sound.c (DEFAULT_SOUND_DEVICE) [!WINDOWSNT]:
7503 * s/netbsd.h (DEFAULT_SOUND_DEVICE): Let configure set it.
7504
7505 2012-07-10 Paul Eggert <eggert@cs.ucla.edu>
7506
7507 Remove "#define unix" that is no longer needed (Bug#11905).
7508 * s/aix4-2.h (unix): Remove; no longer needed.
7509
7510 EMACS_TIME simplification (Bug#11875).
7511 This replaces macros (which typically do not work in GDB)
7512 with functions, typedefs and enums, making the code easier to debug.
7513 The functional style also makes code easier to read and maintain.
7514 * systime.h: Include <sys/time.h> on all hosts, not just if
7515 WINDOWSNT, since 'struct timeval' is needed in general.
7516 (EMACS_TIME): Now a typedef, not a macro.
7517 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): Now constants,
7518 not macros.
7519 (EMACS_SECS, EMACS_NSECS, EMACS_TIME_SIGN, EMACS_TIME_VALID_P)
7520 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE, EMACS_TIME_EQ)
7521 (EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE, EMACS_TIME_LT)
7522 (EMACS_TIME_LE): Now functions, not macros.
7523 (EMACS_SET_SECS, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS)
7524 (EMACS_SET_USECS, EMACS_SET_SECS_USECS): Remove these macros,
7525 which are not functions. All uses rewritten to use:
7526 (make_emacs_time): New function.
7527 (EMACS_SECS_ADDR, EMACS_SET_INVALID_TIME, EMACS_GET_TIME)
7528 (EMACS_ADD_TIME, EMACS_SUB_TIME): Remove these macros, which are
7529 not functions. All uses rewritten to use the following, respectively:
7530 (emacs_secs_addr, invalid_emacs_time, get_emacs_time)
7531 (add_emacs_time, sub_emacs_time): New functions.
7532 * atimer.c: Don't include <sys/time.h>, as "systime.h" does this.
7533 * fileio.c (Fcopy_file):
7534 * xterm.c (XTflash): Get the current time closer to when it's used.
7535 * makefile.w32-in ($(BLD)/atimer.$(O)): Update dependencies.
7536
7537 * bytecode.c (targets): Suppress -Woverride-init warnings.
7538
7539 Simplify by avoiding confusing use of strncpy etc.
7540 * doc.c (Fsnarf_documentation):
7541 * fileio.c (Ffile_name_directory, Fsubstitute_in_file_name):
7542 * frame.c (Fmake_terminal_frame):
7543 * gtkutil.c (get_utf8_string):
7544 * lread.c (openp):
7545 * nsmenu.m (ns_update_menubar):
7546 * regex.c (regerror):
7547 Prefer memcpy to strncpy and strncat when either will do.
7548 * fileio.c (Fsubstitute_in_file_name):
7549 * keyboard.c (MULTI_LETTER_MOD, parse_modifiers_uncached)
7550 (menu_separator_name_p):
7551 * nsmenu.m (ns_update_menubar):
7552 Prefer memcmp to strncmp when either will do.
7553 * nsterm.m: Include <ftoastr.h>.
7554 (ns_get_color):
7555 * s/gnu-linux.h, s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF):
7556 Prefer snprintf to strncpy.
7557 * nsterm.m (ns_term_init):
7558 * widget.c (set_frame_size) [0]: Prefer xstrdup to xmalloc + strncpy.
7559 * nsterm.m (ns_term_init):
7560 Avoid the need for strncpy, by using build_string or
7561 make_unibyte_string directly. Use dtoastr, not snprintf.
7562 * process.c (Fmake_network_process): Diagnose service names that
7563 are too long, rather than silently truncating them or creating
7564 non-null-terminated names.
7565 (Fnetwork_interface_info): Likewise, for interface names.
7566 * sysdep.c (system_process_attributes) [GNU_LINUX]:
7567 Prefer sprintf to strncat.
7568 * xdisp.c (debug_method_add) [GLYPH_DEBUG]:
7569 Prefer vsnprintf to vsprintf + strncpy.
7570
7571 2012-07-10 Glenn Morris <rgm@gnu.org>
7572
7573 * dispnew.c (PENDING_OUTPUT_COUNT) [!__GNU_LIBRARY__]:
7574 Clarify fallback case.
7575
7576 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
7577
7578 Use XCAR and XCDR instead of Fcar and Fcdr where possible.
7579 * callint.c, coding.c, doc.c, editfns.c, eval.c, font.c, fontset.c,
7580 * frame.c, gnutls.c, minibuf.c, msdos.c, textprop.c, w32fns.c,
7581 * w32menu.c, window.c, xmenu.c: Change to use XCAR and XCDR
7582 where argument type is known to be a Lisp_Cons.
7583
7584 2012-07-10 Tom Tromey <tromey@redhat.com>
7585
7586 * bytecode.c (BYTE_CODE_THREADED): New macro.
7587 (BYTE_CODES): New macro. Replaces all old byte-code defines.
7588 (enum byte_code_op): New type.
7589 (CASE, NEXT, FIRST, CASE_DEFAULT, CASE_ABORT): New macros.
7590 (exec_byte_code): Use them. Use token threading when applicable.
7591
7592 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
7593
7594 Optimize pure C strings initialization.
7595 * lisp.h (make_pure_string): Fix prototype.
7596 (build_pure_c_string): New function, defined as static inline. This
7597 provides a better opportunity to optimize away calls to strlen when
7598 the function is called with compile-time constant argument.
7599 * alloc.c (make_pure_c_string): Fix comment. Change to add nchars
7600 argument, adjust users accordingly. Use build_pure_c_string where
7601 appropriate.
7602 * buffer.c, coding.c, data.c, dbusbind.c, fileio.c, fontset.c, frame.c,
7603 * keyboard.c, keymap.c, lread.c, search.c, syntax.c, w32fns.c, xdisp.c,
7604 * xfaces.c, xfns.c, xterm.c: Use build_pure_c_string where appropriate.
7605
7606 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
7607
7608 Avoid calls to strlen in miscellaneous functions.
7609 * buffer.c (init_buffer): Use precalculated len, adjust if needed.
7610 * font.c (Ffont_xlfd_name): Likewise. Change to call make_string.
7611 * lread.c (openp): Likewise.
7612
7613 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
7614
7615 Avoid calls to strlen in path processing functions.
7616 * fileio.c (file_name_as_directory): Add comment. Change to add
7617 srclen argument and return the length of result. Adjust users
7618 accordingly.
7619 (directory_file_name): Fix comment. Change to add srclen argument,
7620 swap 1st and 2nd arguments to obey the common convention.
7621 Adjust users accordingly.
7622 * filelock.c (fill_in_lock_file_name): Avoid calls to strlen.
7623
7624 2012-07-10 Glenn Morris <rgm@gnu.org>
7625
7626 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/netbsd.h, s/unixware.h:
7627 Move PENDING_OUTPUT_COUNT definition to configure.
7628
7629 * s/irix6-5.h (DATA_START, DATA_SEG_BITS):
7630 * s/hpux10-20.h (DATA_SEG_BITS, DATA_START):
7631 * s/gnu.h (DATA_START): Move definitions to configure.
7632
7633 * s/irix6-5.h (SETUP_SLAVE_PTY, PTY_NAME_SPRINTF): Drop ifdef guards.
7634 We include usg5-4-common.h, which defines them both.
7635
7636 * s/gnu.h: Don't include fcntl.h (every file in Emacs that uses
7637 O_RDONLY already includes it).
7638
7639 Stop ns builds setting the EMACSLOADPATH environment variable.
7640 * nsterm.m (ns_load_path): Rename from ns_init_paths.
7641 Now it does not set EMACSLOADPATH, just returns the load-path string.
7642 * nsterm.h: Update accordingly.
7643 * lread.c [HAVE_NS]: Include nsterm.h.
7644 (init_lread) [HAVE_NS]: Use ns_load_path.
7645 * emacs.c (main) [HAVE_NS]: No longer call ns_init_paths.
7646
7647 2012-07-09 Glenn Morris <rgm@gnu.org>
7648
7649 * s/gnu.h (SIGNALS_VIA_CHARACTERS): No need to define it here,
7650 since the included bsd-common.h does so.
7651
7652 Stop ns builds setting the EMACSPATH environment variable.
7653 * nsterm.m (ns_exec_path): New function, split from ns_init_paths.
7654 (ns_init_paths): Do not set EMACSPATH.
7655 * nsterm.h (ns_exec_path): Add it.
7656 * callproc.c (init_callproc_1, init_callproc) [HAVE_NS]:
7657 Use ns_exec_path.
7658
7659 * nsterm.m, nsterm.h (ns_etc_directory): Fix type, empty return.
7660
7661 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
7662
7663 * process.c (wait_reading_process_output): 'waitchannels' was unset
7664 when read_kbd || !NILP (wait_for_cell); fix this.
7665
7666 Add GCC-style 'const' attribute to functions that can use it.
7667 * character.h (char_resolve_modifier_mask):
7668 * keyboard.h (make_ctrl_char):
7669 * lisp.h (multibyte_char_to_unibyte, multibyte_char_to_unibyte_safe)
7670 (init_character_once, next_almost_prime, init_fns, init_image)
7671 (flush_pending_output, init_sound):
7672 * mem-limits.h (start_of_data):
7673 * menu.h (finish_menu_items):
7674 Add ATTRIBUTE_CONST.
7675 * emacs.c (DEFINE_DUMMY_FUNCTION):
7676 Declare the dummy function with ATTRIBUTE_CONST.
7677 * lisp.h (Fbyteorder, Fmax_char, Fidentity):
7678 Add decls with ATTRIBUTE_CONST.
7679
7680 Minor improvements to make_formatted_string.
7681 * alloc.c (make_formatted_string): Prefer int to ptrdiff_t
7682 where int is good enough, as vsprintf returns an int.
7683 * lisp.h (make_formatted_string): Add ATTRIBUTE_FORMAT_PRINTF.
7684
7685 2012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
7686
7687 Use make_formatted_string to avoid double length calculation.
7688 * lisp.h (make_formatted_string): New prototype.
7689 * alloc.c (make_formatted_string): New function.
7690 * buffer.c (Fgenerate_new_buffer_name): Use it.
7691 * dbusbind.c (syms_of_dbusbind): Likewise.
7692 * editfns.c (Fcurrent_time_zone): Likewise.
7693 * filelock.c (get_boot_time): Likewise.
7694 * frame.c (make_terminal_frame, set_term_frame_name)
7695 (x_report_frame_params): Likewise.
7696 * image.c (gs_load): Likewise.
7697 * minibuf.c (get_minibuffer): Likewise.
7698 * msdos.c (dos_set_window_size): Likewise.
7699 * process.c (make_process): Likewise.
7700 * xdisp.c (ensure_echo_area_buffers): Likewise.
7701 * xsettings.c (apply_xft_settings): Likewise.
7702
7703 2012-07-09 Glenn Morris <rgm@gnu.org>
7704
7705 Stop ns builds polluting the environment with EMACSDATA, EMACSDOC.
7706 * nsterm.m (ns_etc_directory): New function, split from ns_init_paths.
7707 (ns_init_paths): Do not set EMACSDATA, EMACSDOC.
7708 * nsterm.h (ns_etc_directory): Add it.
7709 * callproc.c [HAVE_NS]: Include nsterm.h.
7710 (init_callproc_1, init_callproc) [HAVE_NS]: Use ns_etc_directory.
7711
7712 2012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
7713
7714 Move marker debugging code under MARKER_DEBUG.
7715 * marker.c (MARKER_DEBUG): Move marker debugging code under
7716 #ifdef MARKER_DEBUG because byte_char_debug_check is too slow
7717 for bootstrap with --enable-checking (~3x slowdown reported
7718 by Juanma Barranquero <lekktu@gmail.com>).
7719 (verify_bytepos): Move under #ifdef MARKER_DEBUG.
7720
7721 2012-07-08 Paul Eggert <eggert@cs.ucla.edu>
7722
7723 * systime.h (EMACS_SUB_TIME): Clarify behavior with unsigned time_t.
7724 See <http://bugs.gnu.org/11825#29>.
7725
7726 2012-07-08 Eli Zaretskii <eliz@gnu.org>
7727
7728 * xdisp.c (fill_glyphless_glyph_string): If the face of the glyph
7729 has no font, use the frame's font. (Bug#11813)
7730 (display_line): Add commentary about displaying truncation glyphs
7731 on GUI frames.
7732 (produce_special_glyphs): Move here from term.c.
7733
7734 * term.c (produce_special_glyphs): Move to xdisp.c.
7735
7736 * dispextern.h (produce_special_glyphs): Move prototype to xdisp.c
7737 section.
7738
7739 2012-07-07 Andreas Schwab <schwab@linux-m68k.org>
7740
7741 * xdisp.c (display_line): Avoid warning about implicit declaration
7742 of FRAME_FONT.
7743
7744 * frame.c (get_frame_param): Define only if HAVE_WINDOW_SYSTEM.
7745
7746 * lisp.h: Remove empty conditional.
7747
7748 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
7749
7750 * lread.c (load_path_check): Now static.
7751
7752 Fix some minor --with-ns problems found by static checking.
7753 * frame.c (Ftool_bar_pixel_width) [!FRAME_TOOLBAR_WIDTH]:
7754 (x_set_font) [!HAVE_X_WINDOWS]:
7755 * image.c (xpm_load_image) [HAVE_NS]:
7756 (x_to_xcolors) [!HAVE_X_WINDOWS && !HAVE_NTGUI]:
7757 (x_disable_image) [!HAVE_NS && !HAVE_NTGUI]:
7758 Remove unused local.
7759 (Fx_parse_geometry) [HAVE_NS]: Don't return garbage.
7760 (xpm_load_image) [HAVE_NS && !HAVE_XPM]: Remove unused label.
7761 * image.c (x_create_bitmap_from_file) [HAVE_NS]:
7762 (xpm_load_image, xpm_load) [HAVE_NS && !HAVE_XPM]:
7763 * nsselect.m (symbol_to_nsstring, ns_string_to_pasteboard_internal):
7764 * xfaces.c (Fx_load_color_file) [!HAVE_X_WINDOWS]:
7765 Fix pointer signedness problem.
7766 * xfaces.c (FRAME_X_FONT_TABLE):
7767 * xterm.h (FRAME_X_FONT_TABLE): Remove unused, incompatible macros.
7768
7769 2012-07-07 Glenn Morris <rgm@gnu.org>
7770
7771 * lread.c (load_path_check): New function, split from init_lread.
7772 (init_lread): Reorganize. Motivation:
7773 If EMACSLOADPATH is set, check/warn about that rather than the
7774 defaults, which we are not going to use. Hence we can remove
7775 the turn_off_warning and WINDOWSNT || HAVE_NS tests.
7776 Don't warn if site-lisp directories are missing.
7777 If not installed, start from a blank load-path, since
7778 PATH_LOADSEARCH refers to the eventual installation directories.
7779
7780 2012-07-07 Eli Zaretskii <eliz@gnu.org>
7781
7782 Support truncation and continuation glyphs on GUI frames, when
7783 fringes are disabled. (Bug#11832)
7784 * xdisp.c (init_iterator): Get dimensions of truncation and
7785 continuation glyphs even if on GUI frames.
7786 Adjust it->last_visible_x on GUI frames when the left or right fringes,
7787 or both, are absent.
7788 (start_display, move_it_in_display_line_to): Handle the case of a
7789 GUI frame without a fringe to display continuation or truncation
7790 glyphs.
7791 (insert_left_trunc_glyphs): Support GUI frames: make sure
7792 truncation glyphs overwrite enough glyphs from the current line to
7793 have sufficient space in pixels.
7794 (display_line): Support truncation and continuation glyphs on GUI
7795 frames. If some spare pixels are left on the line after inserting
7796 the truncation glyphs, fill that space with a stretch glyph of a
7797 suitably computed width.
7798
7799 * term.c (produce_special_glyphs): Call PRODUCE_GLYPHS, not
7800 produce_glyphs, to support GUI sessions.
7801
7802 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
7803
7804 * sysdep.c (ULLONG_MAX): Define if not already defined (Bug#11781).
7805
7806 * sysdep.c (list_system_processes): Port to NetBSD-current (Bug#11797).
7807
7808 Do not require float-time's arg to fit in time_t (Bug#11825).
7809 This works better on hosts where time_t is unsigned, and where
7810 float-time is applied to the (negative) difference between two times.
7811 * editfns.c (decode_time_components): Last arg is now double *,
7812 not int *, and means to store all the result as a double, without
7813 worrying about whether the seconds part fits in time_t.
7814 All callers changed.
7815 (lisp_time_argument): Remove last int * arg, as it's no longer needed.
7816 All callers changed.
7817 (Ffloat_time): Do not fail merely because the specified time falls
7818 outside of time_t range.
7819
7820 2012-07-07 Glenn Morris <rgm@gnu.org>
7821
7822 * s/darwin.h (HAVE_RES_INIT, HAVE_LIBRESOLV):
7823 * s/hpux10-20.h (HAVE_RINT, HAVE_RANDOM):
7824 * s/unixware.h (HAVE_GETWD): Move undefs to configure (effectively).
7825
7826 2012-07-07 Juanma Barranquero <lekktu@gmail.com>
7827
7828 * makefile.w32-in (DISPEXTERN_H, $(BLD)/regex.$(O)):
7829 Update dependencies.
7830
7831 * s/ms-w32.h [_MSC_VER]: Remove strcasecmp, strncasecmp.
7832
7833 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
7834
7835 Use c_strcasecmp for ASCII case-insensitive comparison (Bug#11786).
7836 * dispextern.h, nsfns.m, nsterm.m: Include <c-strcase.h>.
7837 * dispextern.h (xstrcasecmp): Rewrite using c_strcasecmp.
7838 * nsfns.m (x_get_string_resource): Use c_strncasecmp, not strncasecmp.
7839 * nsterm.m (ns_default): Use c_strcasecmp, not strcasecmp.
7840 * xfaces.c (xstrcasecmp) [!HAVE_STRCASECMP]: Remove.
7841
7842 * xfont.c (compare_font_names): Redo to omit the need for casts.
7843
7844 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
7845
7846 * xfns.c (Fx_change_window_property): Doc fix.
7847 * w32fns.c (Fx_change_window_property): Doc fix.
7848
7849 * w32fns.c (Fx_window_property): Accept the same arguments as the
7850 X Windows version. Doc fix.
7851 * xfns.c (Fx_window_property): Doc fix. (Bug#11870)
7852
7853 2012-07-06 Juanma Barranquero <lekktu@gmail.com>
7854 Eli Zaretskii <eliz@gnu.org>
7855
7856 * s/ms-w32.h: Settings not specific to Windows moved to nt/config.nt.
7857 Windows-specific code from nt/config.nt moved here.
7858 Obsolete settings removed.
7859
7860 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
7861
7862 * process.c: Avoid unnecessary calls to gettime.
7863 (wait_reading_process_output): Don't get the time of day
7864 when gobbling data immediately and not waiting, as there's no need
7865 for it in that case. This removes a FIXME.
7866
7867 2012-07-06 Jan Djärv <jan.h.d@swipnet.se>
7868
7869 * gtkutil.c (xg_event_is_for_scrollbar): Assign gwin when HAVE_GTK3
7870 is defined (Bug#11768).
7871
7872 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
7873
7874 Fix marker debugging code.
7875 * marker.c (byte_char_debug_check): Do not perform the check
7876 if buffer is not multibyte.
7877 (buf_charpos_to_bytepos, buf_bytepos_to_charpos):
7878 Call byte_char_debug_check with correct arguments.
7879
7880 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
7881
7882 Compile marker debugging code only if ENABLE_CHECKING is defined.
7883 * marker.c (byte_char_debug_check, count_markers):
7884 Use only if ENABLE_CHECKING is defined.
7885 (byte_debug_flag): Remove.
7886 (CONSIDER, buf_charpos_to_bytepos, buf_bytepos_to_charpos):
7887 Always call byte_char_debug_check if ENABLE_CHECKING is defined.
7888
7889 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
7890
7891 Avoid code repetition in marker-related functions.
7892 * marker.c (attach_marker): New function.
7893 (Fset_marker, set_marker_restricted, set_marker_both)
7894 (set_marker_restricted_both): Use it.
7895 (Fset_marker, set_marker_restricted, Fbuffer_has_markers_at):
7896 Consistently rename charno to charpos.
7897 (marker_position): Add eassert.
7898 (marker_byte_position): Convert to eassert.
7899
7900 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
7901
7902 Simplify list operations in unchain_overlay and unchain_marker.
7903 * buffer.c (unchain_overlay): Simplify. Add comment.
7904 * marker.c (unchain_marker): Simplify. Fix comments.
7905
7906 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
7907
7908 Introduce fast path for the widely used marker operation.
7909 * alloc.c (build_marker): New function.
7910 * lisp.h (build_marker): New prototype.
7911 * buffer.c (clone_per_buffer_values, Fmake_indirect_buffer): Use it.
7912 * composite.c (autocmp_chars): Likewise.
7913 * editfns.c (buildmark): Remove.
7914 (Fpoint_marker, Fpoint_min_marker, Fpoint_max_marker)
7915 (save_restriction_save): Use build_marker.
7916 * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos): Likewise.
7917 * window.c (save_window_save): Likewise.
7918
7919 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
7920
7921 Do not use Fdelete_overlay in delete_all_overlays
7922 to avoid redundant calls to unchain_overlay.
7923 * buffer.c (drop_overlay): New function.
7924 (delete_all_overlays, Fdelete_overlay): Use it.
7925 * minibuf.c (get_minibuffer): Fix comment.
7926
7927 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
7928
7929 Port to OpenBSD 5.1 amd64.
7930 * sysdep.c [BSD_SYSTEM]: Include <sys/param.h> before <sys/sysctl.h>.
7931 This is needed for OpenBSD, and should be harmless on all BSD systems.
7932 Also, include <sys/sysctl.h>, as it should be available on all
7933 BSD_SYSTEM hosts given that we're already calling sysctl in that case.
7934 (list_system_processes) [__OpenBSD__]: Use DARWIN_OS style mib, but
7935 use p_pid member, not kp_proc.pid.
7936
7937 2012-07-06 Glenn Morris <rgm@gnu.org>
7938
7939 * Makefile.in (emacs$(EXEEXT)): Don't check for load-path shadows.
7940
7941 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
7942
7943 More xmalloc and related cleanup.
7944 * alloc.c, bidi.c, buffer.c, buffer.h, bytecode.c, callint.c:
7945 * callproc.c, charset.c, coding.c, composite.c, data.c, dispnew.c:
7946 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, fns.c:
7947 * font.c, fontset.c, frame.c, fringe.c, ftfont.c, ftxfont.c, gmalloc.c:
7948 * gtkutil.c, image.c, keyboard.c, keymap.c, lread.c, macros.c, menu.c:
7949 * nsfns.m, nsfont.m, nsmenu.m, nsterm.m, print.c, process.c, ralloc.c:
7950 * regex.c, region-cache.c, scroll.c, search.c, sound.c, syntax.c:
7951 * sysdep.c, term.c, termcap.c, unexmacosx.c, window.c, xdisp.c:
7952 * xfaces.c, xfns.c, xftfont.c, xgselect.c, xmenu.c, xrdb.c, xselect.c:
7953 * xterm.c:
7954 Omit needless casts involving void * pointers and allocation.
7955 Prefer "P = xmalloc (sizeof *P)" to "P = xmalloc (sizeof (TYPE_OF_P))",
7956 as the former is more robust if P's type is changed.
7957 Prefer xzalloc to xmalloc + memset 0.
7958 Simplify malloc-or-realloc to realloc.
7959 Don't worry about xmalloc returning a null pointer.
7960 Prefer xstrdup to xmalloc + strcpy.
7961 * editfns.c (Fmessage_box): Grow message_text by at least 80 when
7962 growing it.
7963 * keyboard.c (apply_modifiers_uncached): Prefer local array to
7964 alloca of a constant.
7965
7966 2012-07-05 Eli Zaretskii <eliz@gnu.org>
7967
7968 * xdisp.c (display_line): Fix horizontal pixel coordinates when
7969 hscroll is larger than the line width. Fixes long and futile
7970 looping inside extend_face_to_end_of_line (on a TTY) producing
7971 glyphs that are not needed and thrown away.
7972
7973 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
7974
7975 * marker.c (set_marker_restricted_both): Simplify by using
7976 clip_to_bounds.
7977
7978 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
7979
7980 * editfns.c (region_limit): Simplify by using clip_to_bounds.
7981
7982 2012-07-05 Jan Djärv <jan.h.d@swipnet.se>
7983
7984 * gtkutil.c (gtk_scrollbar_new, gtk_box_new): Define when HAVE_GTK3 is
7985 not defined (Bug#11768).
7986 (xg_create_frame_widgets): Use gtk_plug_new_for_display (Bug#11768).
7987 (xg_create_frame_widgets, create_dialog, xg_get_file_with_chooser)
7988 (make_widget_for_menu_item, xg_make_tool_item): Use gtk_box_new
7989 followed by gtk_box_set_homogeneous (Bug#11768).
7990 (xg_update_menu_item): Use GTK_IS_BOX (Bug#11768).
7991 (update_theme_scrollbar_width, xg_create_scroll_bar):
7992 Use gtk_scrollbar_new (Bug#11768).
7993 (xg_event_is_for_scrollbar): Use Gdk Device functions for HAVE_GTK3.
7994 (is_box_type): New function (Bug#11768).
7995 (xg_tool_item_stale_p): Call is_box_type.
7996 (xg_initialize): Get settings by calling gtk_settings_get_for_screen
7997 with default display (Bug#11768).
7998
7999 2012-07-05 Eli Zaretskii <eliz@gnu.org>
8000
8001 * xdisp.c (window_hscroll_limited): New function.
8002 (pos_visible_p, init_iterator): Use it to avoid overflow of pixel
8003 coordinates when window's hscroll is set to insanely large
8004 values. (Bug#11857)
8005
8006 2012-07-05 Juanma Barranquero <lekktu@gmail.com>
8007
8008 * makefile.w32-in ($(BLD)/dired.$(O), $(BLD)/fileio.$(O)): Fix typo.
8009 ($(BLD)/terminal.$(O), $(BLD)/syntax.$(O)): Update dependencies.
8010
8011 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
8012
8013 Cleanup xmalloc.
8014 * lisp.h (xzalloc): New prototype. Omit needless casts.
8015 * alloc.c (xzalloc): New function. Omit needless casts.
8016 * charset.c: Omit needless casts. Convert all calls to
8017 xmalloc with following memset to xzalloc.
8018 * dispnew.c: Likewise.
8019 * fringe.c: Likewise.
8020 * image.c: Likewise.
8021 * sound.c: Likewise.
8022 * term.c: Likewise.
8023 * w32fns.c: Likewise.
8024 * w32font.c: Likewise.
8025 * w32term.c: Likewise.
8026 * xfaces.c: Likewise.
8027 * xfns.c: Likewise.
8028 * xterm.c: Likewise.
8029 * atimer.c: Omit needless casts.
8030 * buffer.c: Likewise.
8031 * callproc.c: Likewise.
8032 * ccl.c: Likewise.
8033 * coding.c: Likewise.
8034 * composite.c: Likewise.
8035 * doc.c: Likewise.
8036 * doprnt.c: Likewise.
8037 * editfns.c: Likewise.
8038 * emacs.c: Likewise.
8039 * eval.c: Likewise.
8040 * filelock.c: Likewise.
8041 * fns.c: Likewise.
8042 * gtkutil.c: Likewise.
8043 * keyboard.c: Likewise.
8044 * lisp.h: Likewise.
8045 * lread.c: Likewise.
8046 * minibuf.c: Likewise.
8047 * msdos.c: Likewise.
8048 * print.c: Likewise.
8049 * process.c: Likewise.
8050 * region-cache.c: Likewise.
8051 * search.c: Likewise.
8052 * sysdep.c: Likewise.
8053 * termcap.c: Likewise.
8054 * terminal.c: Likewise.
8055 * tparam.c: Likewise.
8056 * w16select.c: Likewise.
8057 * w32.c: Likewise.
8058 * w32reg.c: Likewise.
8059 * w32select.c: Likewise.
8060 * w32uniscribe.c: Likewise.
8061 * widget.c: Likewise.
8062 * xdisp.c: Likewise.
8063 * xmenu.c: Likewise.
8064 * xrdb.c: Likewise.
8065 * xselect.c: Likewise.
8066
8067 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
8068
8069 * fileio.c (time_error_value): Check the right error number.
8070 Problem reported by Troels Nielsen in
8071 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00095.html>.
8072
8073 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
8074
8075 * window.c (set_window_hscroll): Revert the 100000 hscroll limit.
8076 This should be fixed in a better way; see Eli Zaretskii in
8077 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00088.html>.
8078 (HSCROLL_MAX): Remove; this is now internal to set_window_hscroll.
8079
8080 * fileio.c (time_error_value): Rename from special_mtime.
8081 The old name's problems were noted by Eli Zaretskii in
8082 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00087.html>.
8083
8084 * emacs.c (gdb_pvec_type): Change it back to enum pvec_type.
8085 This variable's comment says Emacs needs at least one GDB-visible
8086 symbol of type enum pvec_type, to work around GDB problems.
8087 The symbol's value doesn't matter.
8088
8089 * alloc.c (PSEUDOVECTOR_NBYTES): Remove stray ';'
8090 that causes compilation to fail on pre-C99 compilers.
8091
8092 2012-07-04 Juanma Barranquero <lekktu@gmail.com>
8093
8094 * s/ms-w32.h (LISP_FLOAT_TYPE, HAVE_MEMCMP, HAVE_MEMCPY)
8095 (HAVE_MEMMOVE, HAVE_MEMSET): Don't set, obsolete.
8096
8097 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
8098
8099 * buffer.c (init_buffer_once): Fix initialization of
8100 headers for buffer_defaults and buffer_local_symbols.
8101 Reported by Juanma Barranquero <lekktu@gmail.com>.
8102
8103 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
8104
8105 Turn VECTOR_FREE_LIST_FLAG into PVEC_FREE.
8106 * lisp.h (enum pvec_type): Use fewer bits.
8107 (PSEUDOVECTOR_SIZE_BITS): New constant.
8108 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK): Use it.
8109 (XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR, DEFUN): Adapt code to
8110 change in pvec_type.
8111 (PSEUDOVECTOR_TYPEP): New macro.
8112 (TYPED_PSEUDOVECTORP): Use it.
8113 * fns.c (internal_equal): Adapt code to extract pvectype.
8114 * emacs.c (gdb_pvec_type): Update type.
8115 * alloc.c (PSEUDOVECTOR_NBYTES): New macro.
8116 (VECTOR_FREE_LIST_SIZE_MASK): Remove (=> PSEUDOVECTOR_SIZE_MASK).
8117 (VECTOR_FREE_LIST_FLAG): Remove (=> PVEC_FREE).
8118 (SETUP_ON_FREE_LIST): Use XSETPVECTYPESIZE.
8119 (sweep_vectors): Use it. Use local var `total_bytes' instead of
8120 abusing vector->header.next.nbytes.
8121 (live_vector_p): Use PVEC_TYPE.
8122 (mark_object): Adapt code to extract pvectype. Use switch.
8123
8124 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
8125
8126 * doprnt.c (doprnt): Don't assume string length fits in 'int'.
8127 Tighten new eassert a bit.
8128
8129 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
8130
8131 Fix compilation with --enable-gcc-warnings and -O1
8132 optimization level.
8133 * doprnt.c (doprnt): Change type of tem to int, initialize
8134 to avoid compiler warning. Add eassert.
8135 * search.c (simple_search): Initialize match_byte to avoid
8136 compiler warning. Add eassert.
8137
8138 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
8139
8140 Avoid weird behavior with large horizontal scrolls.
8141 Without this change, for example, large hscroll values would
8142 mess up Emacs's display on Fedora 15 x86, presumably due to
8143 overflows in int calculations in the display code.
8144 Also, if buffers had long lines, Emacs would freeze.
8145 * window.c (HSCROLL_MAX): Reduce to 100000, and make it visible to GDB.
8146 (set_window_hscroll): New function, containing the old guts of
8147 Fset_window_hscroll. Return the clipped value.
8148 (Fset_window_hscroll, Fscroll_left, Fscroll_right): Use it.
8149 This avoids the need to check against PTRDIFF_MAX.
8150
8151 * buffer.c (Fgenerate_new_buffer_name): Fix sprintf format mismatch.
8152
8153 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
8154
8155 * buffer.c (Fgenerate_new_buffer_name): Fix type mismatch.
8156
8157 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
8158
8159 * regex.c: Suppress GCC warning on RHEL 6. (Bug#11207)
8160 Conditionalize the pragmas on GCC 4.5 or later, not GCC 4.3 or later,
8161 since GCC 4.4.6 issues a bogus warning for them.
8162
8163 Fix bugs in file timestamp newness comparisons.
8164 * fileio.c (Ffile_newer_than_file_p):
8165 * lread.c (Fload): Use full timestamp resolution of files,
8166 not just the 1-second resolution, so that files that are only
8167 slightly newer still count as newer.
8168 * fileio.c (Ffile_newer_than_file_p): Don't assume file
8169 timestamps fit in 'int'; this fixes a Y2038 bug on most hosts.
8170
8171 2012-07-03 Paul Eggert <eggert@cs.ucla.edu>
8172
8173 * fileio.c: Improve handling of file time marker. (Bug#11852)
8174 (special_mtime): New function.
8175 (Finsert_file_contents, Fverify_visited_file_modtime):
8176 Use it to set special mtime values consistently.
8177
8178 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
8179
8180 * fileio.c (Finsert_file_contents): Properly handle st_mtime
8181 marker for non-existing file. (Bug#11852)
8182
8183 2012-07-03 Glenn Morris <rgm@gnu.org>
8184
8185 * lisp.h (Fread_file_name): Restore EXFUN (it's not a normal DEFUN
8186 and did not make it into globals.h).
8187
8188 2012-07-03 Tom Tromey <tromey@redhat.com>
8189
8190 * window.c (Fset_window_margins, Fset_window_fringes)
8191 (Fset_window_scroll_bars, Fset_window_vscroll): No longer static.
8192 * textprop.c (Fprevious_property_change): No longer static.
8193 * syntax.c (Fsyntax_table_p): No longer static.
8194 * process.c (Fget_process, Fprocess_datagram_address): No longer
8195 static.
8196 * keymap.c (Flookup_key, Fcopy_keymap): No longer static.
8197 * keyboard.c (Fcommand_execute): No longer static.
8198 Remove EXFUN.
8199 * insdel.c (Fcombine_after_change_execute): No longer static.
8200 * image.c (Finit_image_library): No longer static.
8201 * fileio.c (Fmake_symbolic_link): No longer static.
8202 * eval.c (Ffetch_bytecode): No longer static.
8203 * editfns.c (Fuser_full_name): No longer static.
8204 * doc.c (Fdocumentation_property, Fsnarf_documentation):
8205 No longer static.
8206 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): No longer
8207 static.
8208 * dired.c (Ffile_attributes): No longer static.
8209 * composite.c (Fcomposition_get_gstring): No longer static.
8210 * callproc.c (Fgetenv_internal): No longer static.
8211
8212 * ccl.h: Remove EXFUNs.
8213 * buffer.h: Remove EXFUNs.
8214 * dispextern.h: Remove EXFUNs.
8215 * intervals.h: Remove EXFUNs.
8216 * fontset.h: Remove EXFUN.
8217 * font.h: Remove EXFUNs.
8218 * dosfns.c (system_process_attributes): Remove EXFUN.
8219 * keymap.h: Remove EXFUNs.
8220 * lisp.h: Remove EXFUNs.
8221 * w32term.h: Remove EXFUNs.
8222 * window.h: Remove EXFUNs.
8223 * xsettings.h: Remove EXFUN.
8224 * xterm.h: Remove EXFUN.
8225
8226 2012-07-03 Glenn Morris <rgm@gnu.org>
8227
8228 * lisp.h (Frandom): Make it visible to C.
8229 * buffer.c (Fgenerate_new_buffer_name): Speed up finding a new
8230 buffer for invisible buffers. (Bug#1229)
8231
8232 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
8233
8234 Fix block vector allocation code to allow VECTOR_BLOCK_SIZE
8235 values which aren't power of 2.
8236 * alloc.c (VECTOR_FREE_LIST_SIZE_MASK): New macro.
8237 Verify its value and the value of VECTOR_BLOCK_SIZE. Adjust users
8238 accordingly.
8239
8240 2012-07-03 Stefan Monnier <monnier@iro.umontreal.ca>
8241
8242 * lisp.h (Lisp_Misc, Lisp_Fwd): Move around to group better.
8243
8244 * alloc.c (mark_object): Revert part of last patch to use `switch'.
8245
8246 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
8247
8248 * alloc.c (allocate_vector_block): Remove redundant
8249 calls to mallopt if DOUG_LEA_MALLOC is defined.
8250 (allocate_vectorlike): If DOUG_LEA_MALLOC is defined,
8251 avoid calls to mallopt if zero_vector is returned.
8252
8253 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
8254
8255 * alloc.c (check_string_bytes): If GC_CHECK_STRING_BYTES
8256 is enabled, avoid dereferencing NULL current_sblock if
8257 running undumped.
8258
8259 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
8260
8261 Cleanup basic buffer management.
8262 * buffer.h (struct buffer): Change layout to use generic vector
8263 marking code. Fix some comments. Change type of 'clip_changed'
8264 to bitfield. Remove unused #ifndef old.
8265 (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER): Remove.
8266 (GET_OVERLAYS_AT): Fix indentation.
8267 (for_each_per_buffer_object_at): New macro.
8268 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
8269 (Fbuffer_local_variables): Use it.
8270 (init_buffer_once, syms_of_buffer): Remove unused #ifndef old.
8271 * alloc.c (allocate_buffer): Adjust to match new layout of
8272 struct buffer. Fix comment.
8273 (mark_overlay): New function.
8274 (mark_buffer): Use it. Use mark_vectorlike to mark normal
8275 Lisp area of struct buffer.
8276 (mark_object): Use it. Adjust marking of misc objects
8277 and related comments.
8278
8279 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
8280
8281 * alloc.c (mark_object): Remove "#ifdef GC_CHECK_MARKED_OBJECTS"
8282 wrapper that is not needed because the wrapped code is a no-op (zero
8283 machine instructions) when GC_CHECK_MARKED_OBJECTS is not defined.
8284 This avoids a -Wunused-macros diagnostic with GCC 4.7.1 x86-64.
8285
8286 2012-07-02 Dmitry Antipov <dmantipov@yandex.ru>
8287
8288 * alloc.c (mark_buffer): Simplify. Remove prototype.
8289 (mark_object): Add comment. Reorganize marking of vector-like
8290 objects. Use CHECK_LIVE for all vector-like objects except buffers
8291 and subroutines when GC_CHECK_MARKED_OBJECTS is defined.
8292 Avoid redundant calls to mark_vectorlike for bool vectors.
8293
8294 2012-06-30 Glenn Morris <rgm@gnu.org>
8295
8296 * nsterm.m (ns_init_paths): Ignore site-lisp if --no-site-lisp.
8297
8298 * epaths.in (PATH_SITELOADSEARCH): New.
8299 * lread.c (init_lread): Use PATH_SITELOADSEARCH.
8300 This is rather than relying on --enable-locallisppath elements
8301 having "site-lisp" in their names. (Bug#10208#25, 11658)
8302
8303 2012-06-30 Eli Zaretskii <eliz@gnu.org>
8304
8305 * w32proc.c (sys_select): Accept and ignore one more argument.
8306
8307 * w32.c (emacs_gnutls_pull): Call select with one more argument.
8308
8309 * sysselect.h [DOS_NT]: Don't include sys/select.h.
8310 (pselect) [!MS_DOS]: Redirect to sys_select.
8311
8312 * sysdep.c: Don't include dos.h and dosfns.h.
8313
8314 * process.c (sys_select):
8315 * msdos.c (sys_select): Accept one more argument and ignore it.
8316
8317 * msdos.c (event_timestamp, sys_select): Use gnulib's gettime;
8318 adapt data types and code to that.
8319
8320 * dosfns.c:
8321 * msdos.c (gettime, settime): Define away the prototypes in dos.h,
8322 which clashes with the gnulib function of the same name.
8323
8324 2012-06-30 Andreas Schwab <schwab@linux-m68k.org>
8325
8326 * font.c (font_style_to_value, font_style_symbolic)
8327 (font_prop_validate_style): Add type checks for values in
8328 font_style_table.
8329
8330 * lisp.h (CHECK_RANGED_INTEGER): Make value to check the first
8331 argument.
8332 * character.c, charset.c, menu.c, process.c, window.c: Adjust all
8333 uses.
8334
8335 2012-06-29 Eli Zaretskii <eliz@gnu.org>
8336
8337 * xdisp.c (try_window_id): Undo last change.
8338
8339 * w32.c (getwd): Adjust commentary about startup_dir.
8340 (init_environment): Always call sys_access, even in non-MSVC
8341 builds. Don't chdir to the directory of the Emacs executable.
8342 This undoes code from 1997 which was justified by the need to
8343 "avoid conflicts when removing and renaming directories". But its
8344 downside was that every relative file name was being interpreted
8345 relative to the directory of the Emacs executable, which can never
8346 be TRT. In particular, it broke sys_access when called with
8347 relative file names.
8348 (sys_access): Map GetLastError to errno.
8349
8350 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
8351
8352 * window.h (struct window): Change type of 'fringes_outside_margins'
8353 to bitfield. Fix comment. Adjust users accordingly.
8354 (struct window): Change type of 'window_end_bytepos' to ptrdiff_t.
8355 Adjust comment.
8356 * xdisp.c (try_window_id): Change type of 'first_vpos' and 'vpos'
8357 to ptrdiff_t.
8358
8359 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
8360
8361 * gnutls.c (emacs_gnutls_handshake):
8362 Add QUIT to make the loop interruptible.
8363
8364 2012-06-29 Glenn Morris <rgm@gnu.org>
8365
8366 * charset.c (init_charset): Make lack of etc/charsets fatal.
8367
8368 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
8369
8370 * editfns.c (region_limit): Fix type mismatch.
8371
8372 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
8373
8374 * nsfns.m: Fix GLYPH_DEBUG usage assuming that it may be
8375 undefined. Convert from xassert to eassert.
8376 * nsmenu.m: Convert from xassert to eassert.
8377 * nsterm.m: Likewise.
8378
8379 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
8380
8381 * editfns.c (region_limit): Clip to narrowing (bug#11770).
8382
8383 2012-06-28 Paul Eggert <eggert@cs.ucla.edu>
8384
8385 Avoid integer overflow on scroll-left and scroll-right.
8386 * window.c (HSCROLL_MAX): New macro.
8387 (Fscroll_left, Fscroll_right): Avoid undefined behavior on integer
8388 overflow when requested scroll falls outside ptrdiff_t range.
8389
8390 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
8391
8392 * window.h (struct window): Change type of 'hscroll',
8393 'min_hscroll' and 'last_point' from Lisp_Object to ptrdiff_t,
8394 'last_modified' and 'last_overlay_modified' to EMACS_INT.
8395 Adjust users accordingly.
8396 * xdisp.c (try_cursor_movement): Replace type check with eassert.
8397 * window.c (Fscroll_left, Fscroll_right): Change type of 'hscroll'
8398 from EMACS_INT to ptrdiff_t.
8399 (make_window): Omit redundant initialization.
8400
8401 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
8402
8403 * makefile.w32-in ($(BLD)/regex.$(O)): Update dependencies.
8404
8405 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
8406
8407 * window.h (struct window): Change type of 'use_time' and
8408 'sequence_number' from Lisp_Object to int.
8409 * frame.c (make_frame): Adjust users accordingly.
8410 * print.c (print_object): Likewise.
8411 * window.c (select_window, Fwindow_use_time, make_parent_window)
8412 (make_window): Likewise.
8413
8414 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
8415
8416 * dispextern.h (GLYPH_DEBUG): Now defined in config.h if
8417 enabled with --enable-checking=[all,glyphs] configure option.
8418 Fix GLYPH_DEBUG usage assuming that it may be undefined,
8419 adjust comments accordingly.
8420 * dispnew.c: Fix GLYPH_DEBUG usage assuming that it may be
8421 undefined, adjust comments accordingly.
8422 * image.c: Likewise.
8423 * scroll.c: Likewise.
8424 * w32fns.c: Likewise.
8425 * w32term.c: Likewise.
8426 * xdisp.c: Likewise.
8427 * xfaces.c: Likewise.
8428 * xfns.c: Likewise.
8429 * xterm.c: Likewise.
8430
8431 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
8432
8433 Generalize run-time debugging checks.
8434 * dispextern.h (XASSERTS): Remove.
8435 * fontset.c (xassert): Remove.
8436 Convert from xassert to eassert.
8437 * alloc.c: Convert from xassert to eassert.
8438 * bidi.c: Likewise.
8439 * dispnew.c: Likewise.
8440 * fns.c: Likewise.
8441 * fringe.c: Likewise.
8442 * ftfont.c: Likewise.
8443 * gtkutil.c: Likewise.
8444 * image.c: Likewise.
8445 * keyboard.c: Likewise.
8446 * menu.c: Likewise.
8447 * process.c: Likewise.
8448 * scroll.c: Likewise.
8449 * sound.c: Likewise.
8450 * term.c: Likewise.
8451 * w32console.c: Likewise.
8452 * w32fns.c: Likewise.
8453 * w32term.c: Likewise.
8454 * window.c: Likewise.
8455 * xdisp.c: Likewise.
8456 * xfaces.c: Likewise.
8457 * xfns.c: Likewise.
8458 * xselect.c: Likewise.
8459 * xterm.c: Likewise.
8460
8461 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
8462
8463 * fns.c (maybe_resize_hash_table): Output message when growing the
8464 purify-hashtable.
8465
8466 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
8467
8468 * alloc.c (allocate_string_data): Remove dead code.
8469 * xsettings.c (XSETTINGS_FONT_NAME): Move under HAVE_XFT to
8470 avoid GCC warning about unused macro.
8471
8472 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
8473
8474 * alloc.c (allocate_string): Omit intervals initialization.
8475 * alloc.c (make_uninit_multibyte_string): Initialize intervals
8476 as in make_pure_string and make_pure_c_string.
8477
8478 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
8479
8480 * alloc.c (allocate_string): Fix last change.
8481
8482 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
8483
8484 * alloc.c (allocate_string): Remove two redundant calls
8485 to memset, add explicit initialization where appropriate.
8486
8487 2012-06-27 Glenn Morris <rgm@gnu.org>
8488
8489 * lisp.mk (lisp): Remove paths.elc.
8490
8491 2012-06-27 Chong Yidong <cyd@gnu.org>
8492
8493 * doc.c (Fsubstitute_command_keys): Fix punctuation.
8494
8495 2012-06-26 John Wiegley <johnw@newartisans.com>
8496
8497 * unexmacosx.c (copy_data_segment): Add two section names used
8498 on Mac OS X Lion: __mod_init_func and __mod_term_func.
8499
8500 * alloc.c (mark_memory): Do not check with -faddress-sanitizer
8501 when building with Clang.
8502
8503 2012-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
8504
8505 * eval.c (Fapply): Allow calling it with a single argument.
8506
8507 2012-06-26 Eli Zaretskii <eliz@gnu.org>
8508
8509 * s/ms-w32.h (strcasecmp, strncasecmp) [_MSC_VER]: Redirect to
8510 _stricmp and _strnicmp.
8511 (HAVE_STRCASECMP, HAVE_STRNCASECMP): Define to 1.
8512
8513 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
8514
8515 * alloc.c (allocate_window): Zero out non-Lisp part of newly
8516 allocated window.
8517 (allocate_process): Likewise for new process.
8518 (allocate_terminal): Change to use offsetof.
8519 (allocate_frame): Likewise.
8520 * frame.c (make_frame): Omit redundant initialization.
8521 * window.c (make_parent_window): Use memset.
8522 (make_window): Omit redundant initialization.
8523 * process.c (make_process): Omit redundant initialization.
8524 * terminal.c (create_terminal): Likewise.
8525
8526 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
8527
8528 * term.c (delete_tty): Remove redundant call to memset.
8529
8530 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
8531
8532 * alloc.c: Remove build_string.
8533 * lisp.h: Define build_string as static inline. This provides
8534 a better opportunity to optimize away calls to strlen when the
8535 function is called with compile-time constant argument.
8536 * image.c (imagemagick_error): Convert to build_string.
8537 * w32proc.c (sys_spawnve): Likewise.
8538 * xterm.c (x_term_init): Likewise.
8539
8540 2012-06-26 Paul Eggert <eggert@cs.ucla.edu>
8541
8542 Use sprintf return value instead of invoking strlen on result.
8543 In the old days this wasn't portable, since some sprintf
8544 implementations returned char *. But they died out years ago and
8545 Emacs already assumes sprintf returns int.
8546 Similarly for float_to_string.
8547 This patch speeds up (number-to-string 1000) by 3% on Fedora 15 x86-64.
8548 * ccl.c (ccl_driver):
8549 * character.c (string_escape_byte8):
8550 * data.c (Fnumber_to_string):
8551 * doprnt.c (doprnt):
8552 * print.c (print_object):
8553 * xdisp.c (message_dolog):
8554 * xfns.c (syms_of_xfns):
8555 Use sprintf or float_to_string result to avoid need to call strlen.
8556 * data.c (Fnumber_to_string):
8557 Use make_unibyte_string, since the string must be ASCII.
8558 * lisp.h, print.c (float_to_string): Now returns int length.
8559 * term.c (produce_glyphless_glyph):
8560 Use sprintf result rather than recomputing it.
8561
8562 Clean out last vestiges of the old HAVE_CONFIG_H stuff.
8563 * Makefile.in (ALL_CFLAGS):
8564 * makefile.w32-in (LOCAL_FLAGS): Remove -DHAVE_CONFIG_H.
8565 * gmalloc.c, regex.c: Include <config.h> unconditionally.
8566
8567 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
8568
8569 * dispextern.h (xstrcasecmp): Define to library function
8570 strcasecmp if available.
8571 * xfaces.c: Do not use xstrcasecmp if strcasecmp is available.
8572
8573 2012-06-25 Andreas Schwab <schwab@linux-m68k.org>
8574
8575 * keyboard.c (menu_bar_items, menu_bar_item, read_key_sequence):
8576 Avoid comma operator.
8577 * menu.c (push_submenu_start, push_submenu_end)
8578 (push_left_right_boundary, push_menu_pane): Likewise.
8579 * msdos.c (dos_rawgetc): Likewise.
8580
8581 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
8582
8583 * xfns.c (xic_create_fontsetname): Remove redundant calls
8584 to memset.
8585
8586 2012-06-25 Paul Eggert <eggert@cs.ucla.edu>
8587
8588 * gtkutil.c (get_utf8_string): Remove redundant assignment.
8589 sprintf already null-terminates its output.
8590
8591 * xfns.c (x_window): Remove redundant cast.
8592
8593 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
8594
8595 * xmenu.c (xmenu_show, xdialog_show): Explicit cast from
8596 `const char *' to `char *' to avoid compiler warning.
8597
8598 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
8599
8600 * xterm.c (x_term_init): Build proper-sized _XSETTINGS_Snnn string
8601 instead of truncating it to 63 (admittedly a generous limit).
8602
8603 * process.c: Fix spelling and caps in comments.
8604
8605 2012-06-24 Dan Nicolaescu <dann@ics.uci.edu>
8606
8607 * emacs.c (setpgrp): Remove definition, unused.
8608 * sysdep.c (setpgrp): Remove definition, not used in this file.
8609
8610 2012-06-24 Juanma Barranquero <lekktu@gmail.com>
8611
8612 * makefile.w32-in: Update dependencies.
8613
8614 2012-06-24 Eli Zaretskii <eliz@gnu.org>
8615
8616 * makefile.w32-in (TIMESPEC_H): Remove nt/inc/sys/time.h.
8617 (SYSTIME_H): Add nt/inc/sys/time.h.
8618
8619 * systime.h [WINDOWSNT]: Include sys/time.h.
8620
8621 * s/ms-w32.h (struct timespec): Definition moved from
8622 nt/inc/sys/time.h. Suggested by Paul Eggert <eggert@cs.ucla.edu>.
8623
8624 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
8625
8626 Switch from NO_RETURN to C11's _Noreturn (Bug#11750).
8627 * buffer.h (buffer_slot_type_mismatch):
8628 * data.c (arith_error) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
8629 * eval.c (unwind_to_catch):
8630 * image.c (my_png_error, my_error_exit):
8631 * keyboard.c (quit_throw_to_read_char, user_error)
8632 (Fexit_recursive_edit, Fabort_recursive_edit):
8633 * lisp.h (die, args_out_of_range, args_out_of_range_3)
8634 (wrong_type_argument, buffer_overflow, __executable_start)
8635 (memory_full, buffer_memory_full, string_overflow, Fthrow)
8636 (xsignal, xsignal0, xsignal1, xsignal2, xsignal3, signal_error)
8637 (error, verror, nsberror, report_file_error, Ftop_level, Fkill_emacs)
8638 (fatal):
8639 (child_setup) [!DOS_NT]:
8640 * lread.c (end_of_file_error, invalid_syntax):
8641 * process.c (send_process_trap) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
8642 * puresize.h (pure_write_error):
8643 * search.c (matcher_overflow):
8644 * sound.c (sound_perror, alsa_sound_perror):
8645 * sysdep.c, syssignal.h (croak):
8646 * term.c (maybe_fatal, vfatal):
8647 * textprop.c (text_read_only):
8648 * undo.c (user_error):
8649 * unexmacosx.c (unexec_error):
8650 * xterm.c (x_ins_del_lines, x_delete_glyphs):
8651 Use _Noreturn rather than NO_RETURN.
8652 No need for separate decl merely because of _Noreturn.
8653 * sound.c (sound_warning, parse_sound):
8654 Remove unnecessary forward decls.
8655
8656 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
8657
8658 Fix bug when time_t is unsigned and as wide as intmax_t (Bug#9000).
8659 * lisp.h (WAIT_READING_MAX): New macro.
8660 * dispnew.c (Fsleep_for, sit_for):
8661 * keyboard.c (kbd_buffer_get_event):
8662 * process.c (Faccept_process_output):
8663 Use it to avoid bogus compiler warnings with obsolescent GCC versions.
8664 This improves on the previous patch, which introduced a bug
8665 when time_t is unsigned and as wide as intmax_t.
8666 See <http://bugs.gnu.org/9000#51>.
8667
8668 2012-06-23 Eli Zaretskii <eliz@gnu.org>
8669
8670 * dispnew.c (sit_for, Fsleep_for):
8671 * keyboard.c (kbd_buffer_get_event):
8672 * process.c (Faccept_process_output): Avoid compiler warnings when
8673 comparing a 32-bit time_t with a 64-bit INTMAX_MAX.
8674
8675 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
8676
8677 * makefile.w32-in: Update dependencies.
8678
8679 * w32.c (ltime): Add return type and declare static.
8680 (w32_get_internal_run_time): Remove usused variable `time_100ns'.
8681
8682 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
8683
8684 * sysdep.c [__FreeBSD__]: Fix more recently-introduced typos.
8685 Privately reported by Herbert J. Skuhra.
8686 (make_lisp_timeval) [__FreeBSD__]: Rename from TIMELIST.
8687 All uses changed.
8688 (system_process_attributes) [__FreeBSD__]: Invoke make_lisp_time,
8689 not make_lisp_timeval, when the argument is of type EMACS_TIME.
8690
8691 2012-06-23 Eli Zaretskii <eliz@gnu.org>
8692
8693 * w32proc.c (Fw32_get_locale_info): Fix an off-by-one error in
8694 last argument of make_unibyte_string.
8695
8696 * keyboard.c (kbd_buffer_get_event): Include the codepage and the
8697 language ID in the event parameters.
8698
8699 * w32term.c (w32_read_socket): Put the new keyboard codepage into
8700 event.code, not the obscure "character set ID".
8701
8702 2012-06-23 Chong Yidong <cyd@gnu.org>
8703
8704 * xmenu.c (x_menu_wait_for_event): Adapt GTK3 to new xg_select.
8705
8706 2012-06-23 Eli Zaretskii <eliz@gnu.org>
8707
8708 Fix the MS-Windows build broken by 2012-06-22T21:17:42Z!eggert@cs.ucla.edu.
8709 * w32.c (fdutimens): New function.
8710
8711 * w32proc.c (sys_select): Adapt to change in the EMACS_TIME type.
8712
8713 * s/ms-w32.h (pselect): Redirect to sys_select.
8714
8715 * sysselect.h [WINDOWSNT]: Don't include sys/select.h.
8716
8717 * ralloc.c (r_alloc_inhibit_buffer_relocation): Fix stupid thinko
8718 in the logic of incrementing and decrementing the value of
8719 use_relocatable_buffers.
8720
8721 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
8722
8723 * sysdep.c [__FreeBSD__]: Fix recently-introduced typos.
8724 Privately reported by Herbert J. Skuhra.
8725 [__FreeBSD__]: Remove "*/" typo after "#include".
8726 (timeval_to_EMACS_TIME) [__FreeBSD__]: New static function.
8727 (TIMEVAL) [__FreeBSD__]: Now a static function rather than a macro.
8728 (TIMEVAL, system_process_attributes) [__FreeBSD__]:
8729 Don't assume EMACS_TIME and struct timeval are the same type.
8730
8731 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
8732
8733 Support higher-resolution time stamps (Bug#9000).
8734 The time stamps are only nanosecond-resolution at the C level,
8735 since that's the best that any real-world system supports now.
8736 But they are picosecond-resolution at the Lisp level, as that's
8737 easy, and leaves room for future OS improvements.
8738
8739 * Makefile.in (LIB_CLOCK_GETTIME): New macro.
8740 (LIBES): Use it.
8741
8742 * alloc.c (Fgarbage_collect): Port to higher-res time stamps.
8743 Don't get current time unless it's needed.
8744
8745 * atimer.c: Include <sys/time.h> unconditionally, since gnulib
8746 now provides it if it's absent.
8747 (start_atimer): Port to higher-res time stamps.
8748 Check for time stamp overflow. Don't get current time more
8749 often than is needed.
8750
8751 * buffer.h (struct buffer): Buffer modtime now has high resolution.
8752 Include systime.h, not time.h.
8753 (NONEXISTENT_MODTIME_NSECS, UNKNOWN_MODTIME_NSECS): New macros.
8754
8755 * dired.c: Include stat-time.h.
8756 (Ffile-attributes): File times now have higher resolution.
8757
8758 * dispextern.h [HAVE_WINDOW_SYSTEM]: Include systime.h.
8759 (struct image): Timestamp now has higher resolution.
8760
8761 * dispnew.c (PERIODIC_PREEMPTION_CHECKING): Remove, as Emacs always
8762 has at least microseconds now. All uses removed.
8763 (update_frame, update_single_window, update_window, update_frame_1)
8764 (Fsleep_for, sit_for): Port to higher-resolution time stamps.
8765 (duration_to_sec_usec): Remove; no longer needed.
8766
8767 * editfns.c (time_overflow): Now extern.
8768 (Fcurrent_time, Fget_internal_run_time, make_time, lisp_time_argument)
8769 (float-time, Fformat_time_string, Fcurrent_time_string)
8770 (Fcurrent_time_zone): Accept and generate higher-resolution
8771 time stamps.
8772 (make_time_tail, make_lisp_time, dissassemble_lisp_time)
8773 (decode_time_components, lisp_seconds_argument): New functions.
8774 (make_time): Now static.
8775 (lisp_time_argument): Now returns EMACS_TIME. New arg ppsec.
8776 Report an error if the time is invalid, rather than having the caller
8777 do that.
8778
8779 * fileio.c: Include <stat-time.h>
8780 (Fcopy_file): Copy higher-resolution time stamps.
8781 Prefer to set the time stamp via a file descriptor if that works.
8782 (Fset_file_times, Finsert_file_contents, Fwrite_region)
8783 (Fverify_visited_file_modtime, Fclear_visited_file_modtime)
8784 (Fvisited_file_modtime, Fset_visited_file_modtime):
8785 Support higher-resolution time stamps.
8786
8787 * fns.c (Frandom): Use nanoseconds, not microseconds, for seed.
8788
8789 * gtkutil.c (xg_maybe_add_timer): Port to higher-res time stamps.
8790
8791 * image.c (prepare_image_for_display, clear_image_cache)
8792 (lookup_image): Port to higer-resolution time stamps.
8793
8794 * keyboard.c (start_polling, bind_polling_period):
8795 Check for time stamp overflow.
8796 (read_char, kbd_buffer_get_event, timer_start_idle)
8797 (timer_stop_idle, timer_resume_idle, timer_check_2, timer_check)
8798 (Fcurrent_idle_time, init_keyboard, set_waiting_for_input):
8799 Port to higher-resolution time stamps. Do not assume time_t is signed.
8800 (decode_timer): New function. Timers are now vectors of length 9,
8801 not 8, to accommodate the picosecond component.
8802 (timer_check_2): Use it.
8803
8804 * nsterm.m (select_timeout, timeval_subtract): Remove.
8805 (ns_timeout): Use Emacs's facilities for time stamp arithmetic,
8806 as they're a bit more accurate and handle overflow better.
8807 (ns_select): Change prototype to be compatible with pselect.
8808 (ns_select, ns_term_shutdown): Port to ns-resolution time stamps.
8809 * nsterm.h (ns_select): Adjust prototype.
8810
8811 * msdos.c (EMACS_TIME_ZERO_OR_NEG_P): Remove, as it assumes
8812 us-resolution time stamps.
8813 (sys_select): Use the new EMACS_TIME_SIGN macro instead.
8814
8815 * lread.c (read_filtered_event): Port to ns-resolution time stamps.
8816
8817 * lisp.h (time_overflow): New decl.
8818 (wait_reading_process_output): First arg is now intmax_t, not int,
8819 to accommodate larger waits.
8820
8821 * process.h (struct Lisp_Process.read_output_delay):
8822 Now counts nanoseconds, not microseconds.
8823 * process.c (ADAPTIVE_READ_BUFFERING): Don't worry about
8824 EMACS_HAS_USECS.
8825 (READ_OUTPUT_DELAY_INCREMENT, Faccept_process_output)
8826 (wait_reading_process_output):
8827 Port to ns-resolution time stamps.
8828 (Faccept_process_output, wait_reading_process_output):
8829 Check for time stamp overflow. Do not assume time_t is signed.
8830 (select_wrapper): Remove; we now use pselect.
8831 (Fprocess_attributes): Now generates ns-resolution time stamps.
8832
8833 * sysdep.c: Include utimens.h. Don't include utime.h
8834 or worry about struct utimbuf; gnulib does that for us now.
8835 (gettimeofday): Remove; gnulib provides a substitute.
8836 (make_timeval): New function.
8837 (set_file_times): Now sets ns-resolution time stamps.
8838 New arg FD; all uses changed.
8839 (time_from_jiffies, ltime_from_jiffies, get_up_time)
8840 (system_process_attributes):
8841 Now returns ns-resolution time stamp. All uses changed.
8842 Check for time stamp overflow.
8843
8844 * sysselect.h: Don't depend on HAVE_SYS_SELECT_H; gnulib
8845 provides a substitute now.
8846
8847 * systime.h: Include timespec.h rather than sys/time.h and time.h,
8848 since it guarantees struct timespec.
8849 (EMACS_TIME): Now struct timespec, so that we can support
8850 ns-resolution time stamps.
8851 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): New macros.
8852 (EMACS_HAS_USECS): Remove; Emacs always has sub-second time stamps now.
8853 (EMACS_USECS): Remove.
8854 (EMACS_SET_USECS): The underlying time stamp now has ns resolution,
8855 so multiply the arg by 1000 before storing it.
8856 (EMACS_NSECS, EMACS_SECS_ADDR, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS):
8857 New macros.
8858 (EMACS_GET_TIME, EMACS_ADD_TIME, EMACS_SUB_TIME):
8859 Port to ns-resolution time stamps.
8860 (EMACS_TIME_NEG_P): Remove; replaced by....
8861 (EMACS_TIME_SIGN): New macro.
8862 (EMACS_SET_INVALID_TIME, EMACS_TIME_VALID_P)
8863 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE): New macros.
8864 (set_file_times, make_time, lisp_time_argument): Adjust signature.
8865 (make_timeval, make_lisp_time, decode_time_components): New decls.
8866 (EMACS_TIME_CMP): Remove; no longer used. Plus, it was buggy, in
8867 that it mishandled time_t overflow. You can't compare by subtracting!
8868 (EMACS_TIME_EQ, EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE)
8869 (EMACS_TIME_LT, EMACS_TIME_LE): Rewrite in terms of timespec_cmp.
8870
8871 * term.c: Include <sys/time.h>.
8872 (timeval_to_Time): New function, for proper overflow wraparound.
8873 (term_mouse_position, term_mouse_click): Use it.
8874
8875 * undo.c (record_first_change): Support higher-resolution time stamps
8876 in the undo buffer.
8877 (Fprimitive_undo): Use them when restoring time stamps.
8878
8879 * w32.c (ltime, U64_TO_LISP_TIME, process_times, emacs_gnutls_pull)
8880 (w32_get_internal_run_time):
8881 Port to higher-resolution Emacs time stamps.
8882 (ltime): Now accepts single 64-bit integer, as that's more convenient
8883 for callers.
8884
8885 * xdisp.c (start_hourglass): Port to ns-resolution time stamps.
8886
8887 * xgselect.c, xgselect.h (xg_select): Add sigmask argument,
8888 for compatibility with pselect. Support ns-resolution time stamps.
8889
8890 * xmenu.c (x_menu_wait_for_event): Support ns-resolution time stamps.
8891
8892 * xselect.c (wait_for_property_change, x_get_foreign_selection):
8893 Check for time stamp overflow, and support ns-resolution time stamps.
8894
8895 * xterm.c: Don't include sys/time.h; gnulib does that for us now.
8896 Don't worry about whether HAVE_TIMEVAL and HAVE_SELECT are set.
8897 (timeval_subtract): Remove; no longer needed.
8898 (XTflash, XTring_bell, x_wait_for_event):
8899 Port to ns-resolution time stamps. Don't assume time_t is signed.
8900
8901 2012-06-22 Chong Yidong <cyd@gnu.org>
8902
8903 * xdisp.c (x_consider_frame_title): Revert last change.
8904
8905 2012-06-22 Eli Zaretskii <eliz@gnu.org>
8906
8907 * alloc.c (NSTATICS): Enlarge to 0x650. Otherwise, Emacs compiled
8908 with -DENABLE_CHECKING -DXASSERTS -DGLYPH_DEBUG=1 -DBYTE_CODE_METER
8909 aborts in staticpro during startup. (Without -DBYTE_CODE_METER,
8910 staticidx goes up to 1597 out of 1600 = 0x640.)
8911
8912 2012-06-20 Paul Eggert <eggert@cs.ucla.edu>
8913
8914 * fileio.c (Fdefault_file_modes): Block input while fiddling with umask.
8915 Otherwise, the umask might be mistakenly 0 while handling input signals.
8916
8917 2012-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
8918
8919 * minibuf.c (Fread_string): Bind minibuffer-completion-table.
8920
8921 2012-06-19 Dmitry Antipov <dmantipov@yandex.ru>
8922
8923 * alloc.c, bytecode.c, ccl.c, coding.c, composite.c, data.c, dosfns.c:
8924 * font.c, image.c, keyboard.c, lread.c, menu.c, minibuf.c, msdos.c:
8925 * print.c, syntax.c, window.c, xmenu.c, xselect.c: Replace direct
8926 access to `contents' member of Lisp_Vector objects with AREF and ASET
8927 where appropriate.
8928
8929 2012-06-19 Chong Yidong <cyd@gnu.org>
8930
8931 * frame.c (delete_frame): When selecting a frame on a different
8932 text terminal, do not alter the terminal's top-frame.
8933
8934 * xdisp.c (format_mode_line_unwind_data): Record the target
8935 frame's selected window and its terminal's top-frame.
8936 (unwind_format_mode_line): Restore them.
8937 (x_consider_frame_title, display_mode_line, Fformat_mode_line):
8938 Callers changed.
8939 (x_consider_frame_title): Do not condition on HAVE_WINDOW_SYSTEM,
8940 since tty frames can be explicitly named.
8941 (prepare_menu_bars): Likewise.
8942
8943 * term.c (Ftty_top_frame): New function.
8944
8945 2012-06-18 Paul Eggert <eggert@cs.ucla.edu>
8946
8947 Port byte-code-meter to modern targets.
8948 * bytecode.c (METER_CODE) [BYTE_CODE_METER]: Don't assume
8949 !CHECK_LISP_OBJECT_TYPE && !USE_LSB_TAG. Problem with
8950 CHECK_LISP_OBJECT_TYPE reported by Dmitry Antipov in
8951 <http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00282.html>.
8952 (METER_1, METER_2): Simplify.
8953
8954 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
8955
8956 * data.c (Fdefalias): Return `symbol' (bug#11686).
8957
8958 2012-06-18 Martin Rudalics <rudalics@gmx.at>
8959
8960 * buffer.c (Fkill_buffer): Don't throw an error when the buffer
8961 gets killed during executing of this function (Bug#11665).
8962 Try to always return Qt when the buffer has been actually killed.
8963 (Vkill_buffer_query_functions): In doc-string say that functions
8964 run by this hook should not change the current buffer.
8965
8966 2012-06-18 Paul Eggert <eggert@cs.ucla.edu>
8967
8968 Fix recently-introduced process.c problems found by static checking.
8969 * process.c (write_queue_push, write_queue_pop, send_process):
8970 Use ptrdiff_t, not int or EMACS_INT, for buffer lengths and offsets.
8971 (write_queue_pop): Fix pointer signedness problem.
8972 (send_process): Remove unused local.
8973
8974 2012-06-17 Chong Yidong <cyd@gnu.org>
8975
8976 * xdisp.c (redisplay_internal): No need to redisplay terminal
8977 frames that are not on top.
8978
8979 2012-06-17 Troels Nielsen <bn.troels@gmail.com>
8980
8981 * process.c (make_process): Initialize write_queue.
8982 (write_queue_push, write_queue_pop): New functions.
8983 (send_process): Use them to maintain correct ordering of process
8984 writes (Bug#10815).
8985
8986 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
8987
8988 * lisp.h (eassert): Assume C89 or later.
8989 This removes the need for CHECK.
8990 (CHECK): Remove. Its comments about always evaluating its
8991 argument were confusing, as 'eassert' typically does not evaluate
8992 its argument.
8993
8994 * coding.c (produce_chars): Use ptrdiff_t, not int.
8995
8996 * xterm.c (x_draw_underwave): Check for integer overflow.
8997 This pacifies gcc 4.7.0 -Wunsafe-loop-optimizations on x86-64.
8998
8999 2012-06-17 Jan Djärv <jan.h.d@swipnet.se>
9000
9001 * nsterm.m (x_free_frame_resources): Move xfree so freed memory isn't
9002 referenced (Bug#11583).
9003
9004 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
9005
9006 Implement wave-style variant of underlining.
9007 * dispextern.h (face_underline_type): New enum.
9008 (face): Add field for underline type.
9009 * nsterm.m (ns_draw_underwave): New function.
9010 (ns_draw_text_decoration): Use it.
9011 * w32term.c (w32_restore_glyph_string_clip, w32_draw_underwave):
9012 New functions.
9013 (x_draw_glyph_string): Use them.
9014 * xfaces.c (Qline, Qwave): New Lisp objects.
9015 (check_lface_attrs, merge_face_ref)
9016 (Finternal_set_lisp_face_attribute, realize_x_face):
9017 Handle wave-style underline face attributes.
9018 * xterm.c (x_draw_underwave): New function.
9019 (x_draw_glyph_string): Use it.
9020
9021 2012-06-16 Juanma Barranquero <lekktu@gmail.com>
9022
9023 * makefile.w32-in ($(BLD)/emacs.$(O), $(BLD)/fringe.$(O))
9024 ($(BLD)/xml.$(O), $(BLD)/intervals.$(O), $(BLD)/macros.$(O))
9025 ($(BLD)/minibuf.$(O), $(BLD)/regex.$(O), $(BLD)/region-cache.$(O))
9026 ($(BLD)/textprop.$(O), $(BLD)/undo.$(O), $(BLD)/window.$(O))
9027 ($(BLD)/w32select.$(O)): Update dependencies.
9028
9029 2012-06-16 Andreas Schwab <schwab@linux-m68k.org>
9030
9031 * buffer.h (FETCH_MULTIBYTE_CHAR): Define as inline.
9032 (BUF_FETCH_MULTIBYTE_CHAR): Likewise.
9033 * character.c (_fetch_multibyte_char_p): Remove.
9034 * alloc.c: Include "character.h" before "buffer.h".
9035 * bidi.c: Likewise.
9036 * buffer.c: Likewise.
9037 * bytecode.c: Likewise.
9038 * callint.c: Likewise.
9039 * callproc.c: Likewise.
9040 * casefiddle.c: Likewise.
9041 * casetab.c: Likewise.
9042 * category.c: Likewise.
9043 * cmds.c: Likewise.
9044 * coding.c: Likewise.
9045 * composite.c: Likewise.
9046 * dired.c: Likewise.
9047 * dispnew.c: Likewise.
9048 * doc.c: Likewise.
9049 * dosfns.c: Likewise.
9050 * editfns.c: Likewise.
9051 * emacs.c: Likewise.
9052 * fileio.c: Likewise.
9053 * filelock.c: Likewise.
9054 * font.c: Likewise.
9055 * fontset.c: Likewise.
9056 * fringe.c: Likewise.
9057 * indent.c: Likewise.
9058 * insdel.c: Likewise.
9059 * intervals.c: Likewise.
9060 * keyboard.c: Likewise.
9061 * keymap.c: Likewise.
9062 * lread.c: Likewise.
9063 * macros.c: Likewise.
9064 * marker.c: Likewise.
9065 * minibuf.c: Likewise.
9066 * nsfns.m: Likewise.
9067 * nsmenu.m: Likewise.
9068 * print.c: Likewise.
9069 * process.c: Likewise.
9070 * regex.c: Likewise.
9071 * region-cache.c: Likewise.
9072 * search.c: Likewise.
9073 * syntax.c: Likewise.
9074 * term.c: Likewise.
9075 * textprop.c: Likewise.
9076 * undo.c: Likewise.
9077 * unexsol.c: Likewise.
9078 * w16select.c: Likewise.
9079 * w32fns.c: Likewise.
9080 * w32menu.c: Likewise.
9081 * window.c: Likewise.
9082 * xdisp.c: Likewise.
9083 * xfns.c: Likewise.
9084 * xmenu.c: Likewise.
9085 * xml.c: Likewise.
9086 * xselect.c: Likewise.
9087
9088 2012-06-16 Eli Zaretskii <eliz@gnu.org>
9089
9090 * xdisp.c (set_cursor_from_row): Don't dereference glyphs_end.
9091 If all the glyphs of the glyph row came from strings, and we have no
9092 cursor positioning clues, put the cursor on the first glyph of the
9093 row.
9094 (handle_face_prop): Use chunk-relative overlay string index when
9095 indexing into it->string_overlays array. (Bug#11653)
9096 (set_cursor_from_row): Use the leftmost glyph as GLYPH_BEFORE, not
9097 the rightmost. (Bug#11720)
9098
9099 2012-06-16 Andreas Schwab <schwab@linux-m68k.org>
9100
9101 * category.h (CHAR_HAS_CATEGORY): Define as inline.
9102 (CATEGORY_MEMBER): Enforce 1/0 value.
9103 * category.c (_temp_category_set): Remove.
9104
9105 2012-06-16 Eli Zaretskii <eliz@gnu.org>
9106
9107 * window.c (Fdelete_other_windows_internal)
9108 (Fdelete_window_internal): Don't access frame's mouse highlight
9109 info of the initial frame. (Bug#11677)
9110
9111 2012-06-14 Paul Eggert <eggert@cs.ucla.edu>
9112
9113 * .gdbinit (xgetint): Fix recently-introduced paren typo.
9114 Assume USE_2_TAGS_FOR_INTS.
9115 (xreload): Adjust $tagmask width to match recent lisp.h change.
9116
9117 Simplify lisp.h in minor ways that should not affect code.
9118 * lisp.h (USE_2_TAGS_FOR_INTS): Remove, as it was always defined.
9119 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P)
9120 (LISP_INT1_TAG, enum Lisp_Type, XINT, XUINT, make_number):
9121 Simplify under the assumption that USE_2_TAGS_FOR_INTS is defined.
9122 (INTTYPEBITS): New macro, for clarity.
9123 (INTMASK, MOST_POSITIVE_FIXNUM): Use it.
9124 (LISP_INT1_TAG, LISP_STRING_TAG, LISP_INT_TAG_P):
9125 Simplify now that USE_LSB_TAG is always defined.
9126 (TYPEMASK, XINT) [USE_LSB_TAG]: Remove unnecessary cast.
9127 (make_number) [!USE_LSB_TAG]: Use INTMASK; that's simpler.
9128
9129 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
9130
9131 * makefile.w32-in ($(BLD)/data.$(O)): Update dependencies.
9132
9133 2012-06-13 Glenn Morris <rgm@gnu.org>
9134
9135 * s/bsd-common.h (BSD4_3):
9136 * s/usg5-4-common.h (USG5_4): No longer define; unused.
9137
9138 2012-06-13 Andreas Schwab <schwab@linux-m68k.org>
9139
9140 * lisp.h (Lisp_Object) [CHECK_LISP_OBJECT_TYPE]: Define as struct
9141 instead of union.
9142 (XLI, XIL): Define.
9143 (XHASH, XTYPE, XINT, XUINT, make_number, XSET, XPNTR, XUNTAG):
9144 Use them.
9145 * emacs.c (gdb_use_struct): Rename from gdb_use_union.
9146 * .gdbinit: Check gdb_use_struct instead of gdb_use_union.
9147 * alloc.c (widen_to_Lisp_Object): Remove.
9148 (mark_memory): Use XIL instead of widen_to_Lisp_Object.
9149 * frame.c (delete_frame): Remove outdated comment.
9150 * w32fns.c (Fw32_register_hot_key): Use XLI instead of checking
9151 USE_LISP_UNION_TYPE.
9152 (Fw32_unregister_hot_key): Likewise.
9153 (Fw32_toggle_lock_key): Likewise.
9154 * w32menu.c (add_menu_item): Likewise.
9155 (w32_menu_display_help): Use XIL instead of checking
9156 USE_LISP_UNION_TYPE.
9157 * w32heap.c (allocate_heap): Don't check USE_LISP_UNION_TYPE.
9158 (init_heap): Likewise.
9159 * w32term.c (w32_read_socket): Update comment.
9160
9161 2012-06-13 Glenn Morris <rgm@gnu.org>
9162
9163 * s/usg5-4-common.h, src/s/unixware.h:
9164 Remove define/undef of HAVE_SYSV_SIGPAUSE (not used since 2010-05-04).
9165
9166 * s/gnu.h (POSIX_SIGNALS): Remove (not used since 2010-05-04).
9167
9168 2012-06-13 Paul Eggert <eggert@cs.ucla.edu>
9169
9170 USE_LISP_UNION_TYPE + USE_LSB_TAG cleanup (Bug#11604)
9171 * alloc.c (make_number) [!defined make_number]:
9172 Remove, as lisp.h always defines this now.
9173 (mark_maybe_pointer): Simplify since USE_LSB_TAG is always defined now.
9174 (roundup_size): Verify that it is a power of 2.
9175 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
9176 * ftfont.c (ftfont_driver): Use LISP_INITIALLY_ZERO.
9177 * lisp.h (USE_LSB_TAG): Allow the builder to compile with
9178 -DUSE_LSB_TAG=0, to override the automatically-selected default.
9179 USE_LSB_TAG now is always defined to be either 0 or 1.
9180 All uses changed.
9181 (union Lisp_Object): Don't worry about WORDS_BIGENDIAN; the
9182 code works fine either way, and efficiency is not a concern here,
9183 as the union type is for debugging, not for production.
9184 (LISP_MAKE_RVALUE, make_number) [USE_LISP_UNION_TYPE]:
9185 Use an inline function on all platforms when using the union type,
9186 since this is simpler and 'static inline' can be used portably
9187 within Emacs now.
9188 (LISP_INITIALLY_ZERO): New macro.
9189 (XFASTINT, XSETFASTINT) [USE_LISP_UNION_TYPE]: Remove.
9190 (XSET) [USE_LISP_UNION_TYPE]: Don't overparenthesize.
9191
9192 2012-06-12 Glenn Morris <rgm@gnu.org>
9193
9194 * s/gnu-kfreebsd.h, s/hpux11.h, s/openbsd.h, s/sol2-10.h: Remove files.
9195
9196 * s/gnu-linux.h (HAVE_PROCFS): Move to configure.
9197
9198 * s/hpux10-20.h, s/openbsd.h, s/usg5-4-common.h:
9199 Move BROKEN_SIGIO to configure.
9200
9201 * s/bsd-common.h, s/darwin.h, s/gnu-kfreebsd.h, s/hpux10-20.h:
9202 Move NO_TERMIO to configure.
9203
9204 2012-06-12 Chong Yidong <cyd@gnu.org>
9205
9206 * image.c (imagemagick_load_image): Use MagickFlattenImage if
9207 MagickMergeImageLayers is undefined. Use pixel pusher loop if
9208 MagickExportImagePixels is undefined.
9209
9210 2012-06-12 Paul Eggert <eggert@cs.ucla.edu>
9211
9212 * image.c (imagemagick_load_image): Remove unused label.
9213
9214 2012-06-11 Glenn Morris <rgm@gnu.org>
9215
9216 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
9217 * s/gnu-kfreebsd.h, s/gnu-linux.h, s/gnu.h, s/hpux10-20.h:
9218 * s/irix6-5.h, s/ms-w32.h, s/msdos.h, s/template.h:
9219 * s/usg5-4-common.h: Move SYSTEM_TYPE to configure.
9220
9221 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
9222
9223 * alloc.c (make_byte_code): New function.
9224 (Fmake_byte_code): Use it. Don't purify here.
9225 * lread.c (read1): Use it as well to avoid extra allocation.
9226
9227 2012-06-11 Chong Yidong <cyd@gnu.org>
9228
9229 * image.c (imagemagick_load_image): Implement transparency.
9230
9231 2012-06-10 Andreas Schwab <schwab@linux-m68k.org>
9232
9233 * regex.c (at_begline_loc_p): Also recognize `(?N:' and correctly
9234 account for preceding backslashes. (Bug#11663)
9235
9236 2012-06-09 Chong Yidong <cyd@gnu.org>
9237
9238 * term.c: Support italics in capable terminals (Bug#9652).
9239 (no_color_bit): Replace unused NC_BLINK with NC_ITALIC.
9240 (turn_on_face): Output using TS_enter_italic_mode if available.
9241 Don't handle unused blinking and alt-charset cases.
9242 (turn_off_face): Handle italic case; discard unused tty_blinking_p
9243 and tty_alt_charset_p cases.
9244 (tty_capable_p, init_tty): Support italics.
9245
9246 * termchar.h (struct tty_display_info): Add field for italics.
9247 Remove unused blink field.
9248
9249 * xfaces.c (tty_supports_face_attributes_p, realize_tty_face):
9250 Handle slant.
9251
9252 * dispextern.h: Replace unused TTY_CAP_BLINK with TTY_CAP_ITALIC.
9253 (struct face): Remove unused fields tty_dim_p, tty_blinking_p, and
9254 tty_alt_charset_p. Add tty_italic_p.
9255
9256 2012-06-09 Michael Albinus <michael.albinus@gmx.de>
9257
9258 * dbusbind.c (XD_BASIC_DBUS_TYPE): Use dbus_type_is_valid and
9259 dbus_type_is_basic if available.
9260 (xd_extract_signed, xd_extract_unsigned): Rename from
9261 extract_signed and extract_unsigned, respectively. Adapt callers.
9262
9263 2012-06-09 Chong Yidong <cyd@gnu.org>
9264
9265 * xfaces.c (face_for_overlay_string): Handle face remapping (Bug#2066).
9266
9267 * fringe.c (Fset_fringe_bitmap_face): Handle the noninteractive
9268 case (Bug#9752).
9269
9270 2012-06-08 Paul Eggert <eggert@cs.ucla.edu>
9271
9272 * xdisp.c (vmessage): Treat frame message as multibyte.
9273 Without this change, (let ((§ 1)) (make-variable-buffer-local '§))
9274 would generate the diagnostic "Making \302\247 buffer-local while
9275 let-bound!".
9276
9277 2012-06-08 Eli Zaretskii <eliz@gnu.org>
9278
9279 * dispnew.c (showing_window_margins_p): Undo last change, which
9280 was done due to an inadvertent commit.
9281 (adjust_frame_glyphs_for_frame_redisplay): Do call
9282 showing_window_margins_p.
9283
9284 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
9285
9286 * eval.c (Fmake_var_non_special): New primitive.
9287 (syms_of_eval): Defsubr it.
9288 * lread.c (syms_of_lread): Mark `values' as lexically scoped.
9289
9290 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
9291
9292 * dispnew.c (showing_window_margins_p): Wrap in #if 0 to prevent unused
9293 function warning (the only call is inside #if 0 since 2012-06-08T08:44:45Z!eliz@gnu.org).
9294
9295 2012-06-08 Eli Zaretskii <eliz@gnu.org>
9296
9297 * alloc.c (allocate_vectorlike): Fix last change.
9298
9299 2012-06-08 Dmitry Antipov <dmantipov@yandex.ru>
9300
9301 Block-based vector allocation of small vectors.
9302 * lisp.h (struct vectorlike_header): New field `nbytes',
9303 adjust comment accordingly.
9304 * alloc.c (enum mem_type): New type `MEM_TYPE_VECTOR_BLOCK'
9305 to denote vector blocks. Adjust users (live_vector_p,
9306 mark_maybe_pointer, valid_lisp_object_p) accordingly.
9307 (COMMON_MULTIPLE): Move outside #if USE_LSB_TAG.
9308 (VECTOR_BLOCK_SIZE, vroundup, VECTOR_BLOCK_BYTES),
9309 (VBLOCK_BYTES_MIN, VBLOCK_BYTES_MAX, VECTOR_MAX_FREE_LIST_INDEX),
9310 (VECTOR_FREE_LIST_FLAG, ADVANCE, VINDEX, SETUP_ON_FREE_LIST),
9311 (VECTOR_SIZE, VECTOR_IN_BLOCK): New macros.
9312 (roundup_size): New constant.
9313 (struct vector_block): New data type.
9314 (vector_blocks, vector_free_lists, zero_vector): New variables.
9315 (all_vectors): Rename to `large_vectors'.
9316 (allocate_vector_from_block, init_vectors, allocate_vector_from_block)
9317 (sweep_vectors): New functions.
9318 (allocate_vectorlike): Return `zero_vector' as the only vector of
9319 0 items. Allocate new vector from block if vector size is less than
9320 or equal to VBLOCK_BYTES_MAX.
9321 (Fgarbage_collect): Move all vector sweeping code to sweep_vectors.
9322 (init_alloc_once): Add call to init_vectors.
9323
9324 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
9325
9326 * eval.c (Fmacroexpand): Stop if the macro returns the same form.
9327
9328 2012-06-07 Paul Eggert <eggert@cs.ucla.edu>
9329
9330 * doprnt.c (doprnt): Truncate multibyte char correctly.
9331 Without this change, doprnt (buf, 2, "%s", FORMAT_END, AP)
9332 would mishandle a string argument "Xc" if X was a multibyte
9333 character of length 2: it would truncate after X's first byte
9334 rather than including all of X.
9335
9336 2012-06-06 Chong Yidong <cyd@gnu.org>
9337
9338 * buffer.c (word_wrap): Doc fix.
9339
9340 2012-06-04 Paul Eggert <eggert@cs.ucla.edu>
9341
9342 * xdisp.c (note_mode_line_or_margin_highlight): Pacify gcc -Wall.
9343
9344 2012-06-03 Glenn Morris <rgm@gnu.org>
9345
9346 * xdisp.c (tool-bar-style): Doc fix.
9347
9348 2012-06-03 Ulrich Müller <ulm@gentoo.org>
9349
9350 * Makefile.in (PAXCTL): Define.
9351 (temacs$(EXEEXT)): Disable memory randomization for the temacs
9352 binary via PaX flags if the paxctl utility is available.
9353 (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
9354 Restore PaX flags to their default. (Bug#11398)
9355
9356 2012-06-03 Chong Yidong <cyd@gnu.org>
9357
9358 * xdisp.c (decode_mode_spec_coding): Display a space for a unibyte
9359 buffer (Bug#11226).
9360
9361 2012-06-03 Chong Yidong <cyd@gnu.org>
9362
9363 * xdisp.c (calc_pixel_width_or_height): Use Fbuffer_local_value.
9364 (note_mode_line_or_margin_highlight): If there is no help echo,
9365 use mode-line-default-help-echo. Handle the case where the mouse
9366 position is past the end of the mode line string.
9367
9368 * buffer.c (buffer_local_value_1): New function, split from
9369 Fbuffer_local_value; can return Qunbound.
9370 (Fbuffer_local_value): Use it.
9371 (Vmode_line_format): Docstring tweaks.
9372
9373 2012-06-02 Paul Eggert <eggert@cs.ucla.edu>
9374
9375 * sysdep.c (system_process_attributes): Improve comment.
9376
9377 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
9378
9379 * keyboard.c: Export real-this-command to Elisp.
9380 (syms_of_keyboard): Rename real_this_command to Vreal_this_command
9381 and DEFVAR it. Update all users.
9382
9383 2012-06-02 Paul Eggert <eggert@cs.ucla.edu>
9384
9385 * minibuf.c (Fassoc_string): Remove duplicate declaration.
9386
9387 * sysdep.c (system_process_attributes) [SOLARIS2 && HAVE_PROCFS]:
9388 Convert pctcpu and pctmem to Lisp float properly.
9389 Let the compiler fold better, as 100.0/0x8000 is exact.
9390
9391 2012-06-02 Andreas Schwab <schwab@linux-m68k.org>
9392
9393 * alloc.c (CONS_BLOCK_SIZE): Account for padding at the end of
9394 cons_block.
9395
9396 2012-06-01 Paul Eggert <eggert@cs.ucla.edu>
9397
9398 * xfns.c (x_set_tool_bar_lines) [USE_GTK]: Adjust to bitfield change.
9399
9400 2012-06-01 Dmitry Antipov <dmantipov@yandex.ru>
9401
9402 For a 'struct window', replace some Lisp_Object fields to
9403 bitfields where appropriate, remove unused fields.
9404 * window.h (struct window): Remove unused 'last_mark_x' and
9405 'last_mark_y' fields. Rename 'mini_p' field to 'mini',
9406 change its type from Lisp_Object to bitfield.
9407 Change type of 'force_start', 'optional_new_start',
9408 'last_had_star', 'update_mode_line' and 'start_at_line_beg'
9409 fields from Lisp_Object to bitfield. Adjust users accordingly.
9410
9411 2012-05-31 Paul Eggert <eggert@cs.ucla.edu>
9412
9413 Pacify gcc -Wdouble-precision when using Xaw.
9414 * xterm.c (xaw_jump_callback, x_set_toolkit_scroll_bar_thumb)
9415 [HAVE_X_WINDOWS && USE_TOOLKIT_SCROLL_BARS && !USE_MOTIF && !USE_GTK]:
9416 Use 'float' consistently, rather than 'float' in most places
9417 and 'double' in a couple of places.
9418
9419 2012-05-31 Eli Zaretskii <eliz@gnu.org>
9420
9421 * xdisp.c (handle_stop): Detect whether we have overlay strings
9422 loaded by testing it->current.overlay_string_index to be
9423 non-negative, instead of checking whether n_overlay_strings is
9424 positive. (Bug#11587)
9425
9426 2012-05-31 Chong Yidong <cyd@gnu.org>
9427
9428 * keymap.c (describe_map_tree): Revert 2011-07-07 change (Bug#1169).
9429
9430 * doc.c (Fsubstitute_command_keys): Doc fix.
9431
9432 2012-05-31 Eli Zaretskii <eliz@gnu.org>
9433
9434 * search.c (search_buffer): Remove calls to
9435 r_alloc_inhibit_buffer_relocation, as it is now called by
9436 maybe_unify_char, which was the cause of relocation of buffer text
9437 in bug#11519.
9438
9439 2012-05-31 Eli Zaretskii <eliz@gnu.org>
9440
9441 * charset.c (maybe_unify_char): Inhibit relocation of buffer text
9442 for the duration of call to load_charset, to avoid problems with
9443 callers of maybe_unify_char that access buffer text through C
9444 pointers.
9445
9446 * ralloc.c (r_alloc_inhibit_buffer_relocation): Increment and
9447 decrement the inhibition flag, instead of just setting or
9448 resetting it.
9449
9450 2012-05-31 Paul Eggert <eggert@cs.ucla.edu>
9451
9452 Remove obsolete '#define static' cruft.
9453 * s/hpux10-20.h (_FILE_OFFSET_BITS): Don't #undef.
9454 This #undef was "temporary" in 2000; it is no longer needed
9455 now that '#define static' has gone away.
9456 * xfns.c, xterm.h (gray_bitmap_width, gray_bitmap_height)
9457 (gray_bitmap_bits): Remove; no longer needed.
9458 All uses replaced with definiens.
9459 * xterm.c: Include "bitmaps/gray.xbm".
9460
9461 2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
9462
9463 Clean up __executable_start, monstartup when --enable-profiling.
9464 The following changes affect the code only when profiling.
9465 * dispnew.c (__executable_start): Rename from safe_bcopy.
9466 Define only on platforms that need it.
9467 * emacs.c: Include <sys/gmon.h> when profiling.
9468 (_mcleanup): Remove decl, since <sys/gmon.h> does it now.
9469 (__executable_start): Remove decl, since lisp.h does it now.
9470 (safe_bcopy): Remove decl; no longer has that name.
9471 (main): Coalesce #if into single bit of code, for simplicity.
9472 Cast pointers to uintptr_t, since standard libraries want integers
9473 and not pointers.
9474 * lisp.h (__executable_start): New decl.
9475
9476 2012-05-31 Glenn Morris <rgm@gnu.org>
9477
9478 * image.c (Fimagemagick_types): Doc fix.
9479
9480 2012-05-30 Jim Meyering <meyering@redhat.com>
9481
9482 * callproc.c (Fcall_process_region): Include directory component
9483 in mkstemp error message (Bug#11586).
9484
9485 2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
9486
9487 * alloc.c, lisp.h (make_pure_vector): Now static.
9488
9489 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
9490
9491 * eval.c (Fdefun, Fdefmacro, Vmacro_declaration_function):
9492 Move to byte-run.el.
9493 (Fautoload): Do the hash-doc more carefully.
9494 * data.c (Fdefalias): Purify definition, except for keymaps.
9495 (Qdefun): Move from eval.c.
9496 * lisp.h (Qdefun): Remove.
9497 * lread.c (read1): Tiny simplification.
9498
9499 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
9500
9501 Do not create empty overlays with the evaporate property (Bug#9642).
9502 * buffer.c (Fmove_overlay): Reinstate the earlier fix for
9503 Bug#9642, but explicitly check that the buffer the overlay would
9504 be moved to is live and rearrange lines to make sure that errors
9505 will not put the overlay in an inconsistent state.
9506 (Fdelete_overlay): Cosmetics.
9507
9508 2012-05-28 Eli Zaretskii <eliz@gnu.org>
9509
9510 * w32term.c (my_bring_window_to_top): New function.
9511 (x_raise_frame): Use handle returned by DeferWindowPos, which
9512 could be different from the original one.
9513 Call my_bring_window_to_top instead of my_set_foreground_window.
9514 (Bug#11513)
9515
9516 * w32fns.c (w32_wnd_proc): Accept and process WM_EMACS_BRINGTOTOP
9517 by calling BringWindowToTop.
9518
9519 * w32term.h (WM_EMACS_BRINGTOTOP): New message.
9520 (WM_EMACS_END): Increase by one.
9521
9522 2012-05-28 Paul Eggert <eggert@cs.ucla.edu>
9523
9524 * bidi.c (bidi_mirror_char): Put eassert before conversion to int.
9525 This avoids undefined behavior that might cause the eassert
9526 to not catch an out-of-range value.
9527
9528 2012-05-28 Juanma Barranquero <lekktu@gmail.com>
9529
9530 * makefile.w32-in ($(BLD)/w32inevt.$(O), $(BLD)/w32console.$(O)):
9531 Update dependencies.
9532
9533 2012-05-27 Eli Zaretskii <eliz@gnu.org>
9534
9535 * bidi.c (bidi_mirror_char): Fix last change.
9536
9537 2012-05-27 Andreas Schwab <schwab@linux-m68k.org>
9538
9539 * unexmacosx.c (copy_data_segment): Truncate after 16 characters
9540 when referring to sectname field in printf format.
9541
9542 2012-05-27 Paul Eggert <eggert@cs.ucla.edu>
9543
9544 * lisp.h [REL_ALLOC]: Omit duplicate prototypes.
9545 Only r_alloc_inhibit_buffer_relocation needed to be added;
9546 the others were already declared.
9547
9548 * bidi.c (bidi_mirror_char): Don't possibly truncate the integer
9549 before checking whether it's out of range. Put the check inside
9550 eassert. See
9551 <http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00485.html>.
9552
9553 2012-05-27 Ken Brown <kbrown@cornell.edu>
9554
9555 * callproc.c (Fcall_process): Restore a line that was accidentally
9556 commented out in the 2011-02-13 change (bug#11547).
9557
9558 2012-05-27 Eli Zaretskii <eliz@gnu.org>
9559
9560 * lisp.h [REL_ALLOC]: Add prototypes for external functions
9561 defined on ralloc.c.
9562
9563 * buffer.c [REL_ALLOC]: Remove prototypes of
9564 r_alloc_reset_variable, r_alloc, r_re_alloc, and r_alloc_free,
9565 they are now on lisp.h.
9566
9567 * ralloc.c (r_alloc_inhibit_buffer_relocation): New function.
9568
9569 * search.c (search_buffer): Use it to inhibit relocation of buffer
9570 text while re_search_2 is doing its job, because re_search_2 is
9571 passed C pointers to buffer text. (Bug#11519)
9572
9573 * msdos.c (internal_terminal_init) <Vwindow_system_version>:
9574 Update value to 24.
9575
9576 * xdisp.c (move_it_to): Under MOVE_TO_Y, when restoring iterator
9577 state after an additional call to move_it_in_display_line_to, keep
9578 the values of it->max_ascent and it->max_descent found for the
9579 entire line.
9580 (pos_visible_p): Revert the comparison against bottom_y to what it
9581 was in revid eliz@gnu.org-20120513182235-4p6386j761ld0nwb.
9582 (Bug#11464)
9583
9584 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
9585
9586 Fix coding-related core dumps with gcc -ftrapv.
9587 The code was computing A - B, where A and B are pointers, and B is
9588 random garbage. This can lead to core dumps on platforms that
9589 have special pointer registers, and it also leads to core dumps on
9590 x86-64 when compiled with gcc -ftrapv. The fix is to compute
9591 A - B only when B is initialized properly.
9592 * coding.c (coding_set_source, coding_set_destination): Return void.
9593 (coding_change_source, coding_change_destinations): New functions,
9594 with the old behaviors of coding_set_source and coding_set_destination.
9595 All callers that need an offset changed to use these new functions.
9596
9597 2012-05-26 Glenn Morris <rgm@gnu.org>
9598
9599 * nsterm.m (ns_init_paths): Don't mess with INFOPATH. (Bug#2791)
9600
9601 2012-05-26 Eli Zaretskii <eliz@gnu.org>
9602
9603 Extend mouse support on W32 text-mode console.
9604 * xdisp.c (draw_row_with_mouse_face):
9605 Call tty_draw_row_with_mouse_face for WINDOWSNT as well.
9606
9607 * w32console.c: Include window.h.
9608 (w32con_write_glyphs_with_face, tty_draw_row_with_mouse_face):
9609 New functions.
9610 (initialize_w32_display): Initialize mouse-highlight data.
9611
9612 * w32inevt.c: Include termchar.h and window.h.
9613 (do_mouse_event): Support mouse-autoselect-window. When the mouse
9614 moves, call note_mouse_highlight. If help_echo changed, call
9615 gen_help_event to produce help-echo message in the echo area.
9616 Call clear_mouse_face if mouse_face_hidden is set in the mouse
9617 highlight info.
9618
9619 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
9620
9621 * lread.c (read1): Simplify slightly to avoid an overflow warning
9622 with GCC 4.7.0 on x86-64.
9623
9624 2012-05-26 Eli Zaretskii <eliz@gnu.org>
9625
9626 * bidi.c (bidi_mirror_char): Revert last change: an int is
9627 definitely wide enough here.
9628
9629 2012-05-25 Paul Eggert <eggert@cs.ucla.edu>
9630
9631 Fix integer width and related bugs (Bug#9874).
9632 * alloc.c (pure_bytes_used_lisp, pure_bytes_used_non_lisp):
9633 (allocate_vectorlike, buffer_memory_full, struct sdata, SDATA_SIZE)
9634 (string_bytes, check_sblock, allocate_string_data):
9635 (compact_small_strings, Fmake_bool_vector, make_string)
9636 (make_unibyte_string, make_multibyte_string)
9637 (make_string_from_bytes, make_specified_string)
9638 (allocate_vectorlike, Fmake_vector, find_string_data_in_pure)
9639 (make_pure_string, make_pure_c_string, make_pure_vector, Fpurecopy)
9640 (mark_vectorlike):
9641 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9642 (allocate_pseudovector):
9643 Use int, not EMACS_INT, where int is wide enough.
9644 (inhibit_garbage_collection, Fgarbage_collect):
9645 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9646 * bidi.c (bidi_mirror_char): Use EMACS_INT, not int, where
9647 int might not be wide enough.
9648 (bidi_cache_search, bidi_cache_find, bidi_init_it)
9649 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
9650 (bidi_at_paragraph_end, bidi_find_paragraph_start)
9651 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
9652 (bidi_level_of_next_char, bidi_move_to_visually_next):
9653 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9654 * buffer.c (copy_overlays, Fgenerate_new_buffer_name)
9655 (Fkill_buffer, Fset_buffer_major_mode)
9656 (advance_to_char_boundary, Fbuffer_swap_text)
9657 (Fset_buffer_multibyte, overlays_at, overlays_in)
9658 (overlay_touches_p, struct sortvec, record_overlay_string)
9659 (overlay_strings, recenter_overlay_lists)
9660 (adjust_overlays_for_insert, adjust_overlays_for_delete)
9661 (fix_start_end_in_overlays, fix_overlays_before, modify_overlay)
9662 (Fmove_overlay, Fnext_overlay_change, Fprevious_overlay_change)
9663 (Foverlay_recenter, last_overlay_modification_hooks_used)
9664 (report_overlay_modification, evaporate_overlays, enlarge_buffer_text):
9665 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9666 (validate_region): Omit unnecessary test for b <= e,
9667 since that's guaranteed by the previous test.
9668 (adjust_overlays_for_delete): Avoid pos + length overflow.
9669 (Fmove_overlay, Fdelete_overlay, add_overlay_mod_hooklist)
9670 (report_overlay_modification):
9671 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9672 (Foverlays_at, Fnext_overlay_change, Fprevious_overlay_change):
9673 Omit pointer cast, which isn't needed anyway, and doesn't work
9674 after the EMACS_INT -> ptrdiff_t change.
9675 (Fmove_overlay): Clip BEG and END to ptrdiff_t to avoid overflow.
9676 * buffer.h: Adjust decls to match defn changes elsewhere.
9677 (struct buffer_text, struct buffer):
9678 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9679 Use EMACS_INT, not int, where int might not be wide enough.
9680 * bytecode.c (unmark_byte_stack, exec_byte_code): Use ptrdiff_t,
9681 not int, to avoid needless 32-bit limit on 64-bit hosts.
9682 (exec_byte_code): Use tighter memory-full test, one that checks
9683 for alloca overflow. Don't compute the address of the object just
9684 before an array, as that's not portable. Use EMACS_INT, not
9685 ptrdiff_t or int, where ptrdiff_t or int might not be wide enough.
9686 * callint.c (Fcall_interactively):
9687 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9688 * callproc.c (call_process_kill, Fcall_process):
9689 Don't assume pid_t fits into an Emacs fixnum.
9690 (call_process_cleanup, Fcall_process, child_setup):
9691 Don't assume pid_t fits into int.
9692 (call_process_cleanup, Fcall_process, delete_temp_file)
9693 (Fcall_process_region):
9694 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9695 (Fcall_process): Simplify handling of volatile integers.
9696 Use int, not EMACS_INT, where int will do.
9697 * casefiddle.c (casify_object, casify_region, operate_on_word)
9698 (Fupcase_word, Fdowncase_word, Fcapitalize_word):
9699 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9700 (casify_object): Avoid integer overflow when overallocating buffer.
9701 * casetab.c (set_identity, shuffle): Prefer int to unsigned when
9702 either works. Use lint_assume to convince GCC 4.6.1 that it's OK.
9703 * category.c (Fchar_category_set): Don't assume fixnum fits in int.
9704 * category.h (CATEGORYP): Don't assume arg is nonnegative.
9705 * ccl.c (GET_CCL_INT): Remove; no longer needed, since the
9706 integers are now checked earlier. All uses replaced with XINT.
9707 (ccl_driver):
9708 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9709 For CCL_MapSingle, check that content and value are in int range.
9710 (ccl_driver, Fregister_code_conversion_map):
9711 Check that Vcode_version_map_vector is a vector.
9712 (resolve_symbol_ccl_program): Check that vector header is in range.
9713 Always copy the vector, so that we can check its contents reliably
9714 now rather than having to recheck each instruction as it's being
9715 executed. Check that vector words fit in 'int'.
9716 (ccl_get_compiled_code, Fregister_ccl_program)
9717 (Fregister_code_conversion_map): Use ptrdiff_t, not int, for
9718 program indexes, to avoid needless 32-bit limit on 64-bit hosts.
9719 (Fccl_execute, Fccl_execute_on_string): Check that initial reg
9720 contents are in range.
9721 (Fccl_execute_on_string): Check that status is in range.
9722 * ccl.h (struct ccl_program.idx): Now ptrdiff_t, not int.
9723 * character.c (char_resolve_modifier_mask, Fchar_resolve_modifiers):
9724 Accept and return EMACS_INT, not int, because callers can pass values
9725 out of 'int' range.
9726 (c_string_width, strwidth, lisp_string_width, chars_in_text)
9727 (multibyte_chars_in_text, parse_str_as_multibyte)
9728 (str_as_multibyte, count_size_as_multibyte, str_to_multibyte)
9729 (str_as_unibyte, str_to_unibyte, string_count_byte8)
9730 (string_escape_byte8, Fget_byte):
9731 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9732 (Funibyte_string): Use CHECK_RANGED_INTEGER, not CHECK_NATNUM, to
9733 avoid mishandling large integers.
9734 * character.h: Adjust decls to match defn changes elsewhere.
9735 * charset.c (load_charset_map_from_file, find_charsets_in_text)
9736 (Ffind_charset_region):
9737 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9738 (load_charset_map_from_file): Redo idx calculation to avoid overflow.
9739 (load_charset_map_from_vector, Fdefine_charset_internal):
9740 Don't assume fixnum fits in int.
9741 (load_charset_map_from_vector, Fmap_charset_chars):
9742 Remove now-unnecessary CHECK_NATNUMs.
9743 (Fdefine_charset_internal): Check ranges here, more carefully.
9744 Don't rely on undefined behavior with signed left shift overflow.
9745 Don't assume unsigned int fits into fixnum, or that fixnum fits
9746 into unsigned int. Don't require max_code to be a valid fixnum;
9747 that's not true for gb10830 4-byte on a 32-bit host. Allow
9748 invalid_code to be a cons, for the same reason. Require code_offset
9749 to be a character. Avoid int overflow if max_char is close
9750 to INT_MAX.
9751 (CODE_POINT_TO_INDEX): On 32-bit hosts, return int, not unsigned;
9752 this is intended anyway and avoids some undefined behavior.
9753 (load_charset_map): Pass unsigned, not int, as 2nd arg of
9754 INDEX_TO_CODE_POINT, as that's what it expects.
9755 (Funify_charset, encode_char): Don't stuff unsigned vals into int vars.
9756 * charset.h (DECODE_CHAR): Return int, not unsigned;
9757 this is what was intended anyway, and it avoids undefined behavior.
9758 (CHARSET_OFFSET): Remove unused macro, instead of fixing its
9759 integer-overflow issues.
9760 (ENCODE_CHAR): Return unsigned on all hosts, not just on 32-bit hosts.
9761 Formerly, it returned EMACS_INT on 64-bit hosts in the common case
9762 where the argument is EMACS_INT, and this behavior is not intended.
9763 * chartab.c (Fmake_char_table, Fset_char_table_range)
9764 (uniprop_get_decoder, uniprop_get_encoder):
9765 Don't assume fixnum fits in int.
9766 * cmds.c (move_point): New function, that does the gist of
9767 Fforward_char and Fbackward_char, but does so while checking
9768 for integer overflow more accurately.
9769 (Fforward_char, Fbackward_char): Use it.
9770 (Fforward_line, Fend_of_line, internal_self_insert)
9771 (internal_self_insert):
9772 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9773 Fix a FIXME, by checking for integer overflow when calculating
9774 target_clm and actual_clm.
9775 * coding.c (detect_coding_XXX, encode_coding_XXX, CODING_DECODE_CHAR)
9776 (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET, CODING_CHAR_CHARSET_P)
9777 (ASSURE_DESTINATION, coding_alloc_by_realloc)
9778 (coding_alloc_by_making_gap, alloc_destination)
9779 (detect_coding_utf_8, encode_coding_utf_8, decode_coding_utf_16)
9780 (encode_coding_utf_16, detect_coding_emacs_mule)
9781 (decode_coding_emacs_mule, encode_coding_emacs_mule)
9782 (detect_coding_iso_2022, decode_coding_iso_2022)
9783 (encode_invocation_designation, encode_designation_at_bol)
9784 (encode_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
9785 (decode_coding_sjis, decode_coding_big5, encode_coding_sjis)
9786 (encode_coding_big5, detect_coding_ccl, decode_coding_ccl)
9787 (encode_coding_ccl, encode_coding_raw_text)
9788 (detect_coding_charset, decode_coding_charset)
9789 (encode_coding_charset, detect_eol, decode_eol, produce_chars)
9790 (produce_composition, produce_charset, produce_annotation)
9791 (decode_coding, handle_composition_annotation)
9792 (handle_charset_annotation, consume_chars, decode_coding_gap)
9793 (decode_coding_object, encode_coding_object, detect_coding_system)
9794 (Ffind_coding_systems_region_internal, Fcheck_coding_systems_region)
9795 (code_convert_region, code_convert_string)
9796 (Fdefine_coding_system_internal)
9797 (coding_set_source, coding_set_destination):
9798 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9799 (setup_iso_safe_charsets, consume_chars, Funencodable_char_position)
9800 (Fdefine_coding_system_internal):
9801 Don't assume fixnums fit in int.
9802 (decode_coding_gap, decode_coding_object, encode_coding_object)
9803 (Fread_coding_system, Fdetect_coding_region)
9804 (Funencodable_char_position, Fcheck_coding_systems_region)
9805 (get_translation, handle_composition_annotation, consume_chars):
9806 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9807 (consume_chars): Rewrite to not calculate an address outside buffer.
9808 (Ffind_operation_coding_system): NATNUMP can eval its arg twice.
9809 Don't access memory outside of the args array.
9810 (Fdefine_coding_system_internal): Check for charset-id overflow.
9811 (ENCODE_ISO_CHARACTER): Use unsigned, not int, to store the unsigned
9812 result of ENCODE_CHAR.
9813 * coding.h: Adjust decls to match defn changes elsewhere.
9814 (struct coding_system):
9815 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9816 * composite.c (get_composition_id, find_composition)
9817 (run_composition_function, update_compositions)
9818 (compose_text, composition_gstring_put_cache)
9819 (composition_gstring_p, composition_gstring_width)
9820 (fill_gstring_header, fill_gstring_body, autocmp_chars)
9821 (composition_compute_stop_pos, composition_reseat_it)
9822 (composition_update_it, struct position_record)
9823 (find_automatic_composition, composition_adjust_point)
9824 (Fcomposition_get_gstring, Ffind_composition_internal):
9825 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9826 (update_compositions):
9827 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9828 * composite.h: Adjust decls to match defn changes elsewhere.
9829 (struct composition):
9830 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9831 * data.c (let_shadows_buffer_binding_p, let_shadows_global_binding_p):
9832 Do not attempt to compute the address of the object just before a
9833 buffer; this is not portable.
9834 (Faref, Faset):
9835 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9836 (Faset): Use int, not EMACS_INT, where int is wide enough.
9837 (Fstring_to_number): Don't assume fixnums fit in int.
9838 (Frem): Don't assume arg is nonnegative.
9839 * dbusbind.c (xd_append_arg): Check for integers out of range.
9840 (Fdbus_call_method): Don't overflow the timeout int.
9841 (extract_signed, extract_unsigned): New functions.
9842 (XD_CHECK_DBUS_SERIAL): Remove; superseded by extract_unsigned.
9843 (xd_get_connection_references): Return ptrdiff_t, not int.
9844 All uses changed.
9845 (xd_signature, xd_append_arg, xd_retrieve_arg, Fdbus_message_internal)
9846 (xd_read_message_1):
9847 Use int, not unsigned, where the dbus API uses int.
9848 (Fdbus_message_internal): Don't overflow mtype.
9849 (syms_of_dbusbind): Allocate right-sized buffer for integers.
9850 * dired.c (directory_files_internal, file_name_completion, scmp)
9851 (file_name_completion_stat):
9852 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9853 (file_name_completion): Don't overflow matchcount.
9854 (file_name_completion_stat): Use SAFE_ALLOCA, not alloca.
9855 * dispextern.h: Adjust decls to match defn changes elsewhere.
9856 (struct text_pos, struct glyph, struct bidi_saved_info)
9857 (struct bidi_string_data, struct bidi_it, struct composition_it)
9858 (struct it):
9859 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9860 (struct display_pos, struct composition_it, struct it):
9861 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9862 * dispnew.c (increment_matrix_positions)
9863 (increment_row_positions, mode_line_string)
9864 (marginal_area_string):
9865 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9866 (change_frame_size_1, Fredisplay, Fframe_or_buffer_changed_p):
9867 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9868 (duration_to_sec_usec): New function, to check for overflow better.
9869 (Fsleep_for, sit_for): Use it.
9870 * doc.c (get_doc_string, store_function_docstring):
9871 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9872 (get_doc_string, Fsnarf_documentation):
9873 Use int, not EMACS_INT, where int is wide enough.
9874 (get_doc_string):
9875 Use SAFE_ALLOCA, not alloca.
9876 Check for overflow when converting EMACS_INT to off_t.
9877 * doprnt.c (doprnt):
9878 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9879 * editfns.c (init_editfns, Fuser_uid, Fuser_real_uid):
9880 Don't assume uid_t fits into fixnum.
9881 (buildmark, Fgoto_char, overlays_around, find_field, Fdelete_field)
9882 (Ffield_string, Ffield_string_no_properties, Ffield_beginning)
9883 (Ffield_end, Fconstrain_to_field, Fline_beginning_position)
9884 (Fline_end_position, Fprevious_char, Fchar_after, Fchar_before)
9885 (general_insert_function)
9886 (Finsert_char, make_buffer_string, make_buffer_string_both)
9887 (update_buffer_properties, Fbuffer_substring)
9888 (Fbuffer_substring_no_properties, Fcompare_buffer_substrings)
9889 (Fsubst_char_in_region, check_translation)
9890 (Ftranslate_region_internal, save_restriction_restore, Fformat)
9891 (transpose_markers, Ftranspose_regions):
9892 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9893 (clip_to_bounds): Move to lisp.h as an inline function).
9894 (Fconstrain_to_field): Don't assume integers are nonnegative.
9895 (Fline_beginning_position, Fsave_excursion, Fsave_current_buffer):
9896 (Fsubst_char_in_region, Fsave_restriction):
9897 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9898 (Femacs_pid): Don't assume pid_t fits into fixnum.
9899 (lo_time): Use int, not EMACS_INT, when int suffices.
9900 (lisp_time_argument): Check for usec out of range.
9901 (Fencode_time): Don't assume fixnum fits in int.
9902 (Fuser_login_name, Fuser_full_name): Signal an error
9903 if a uid argument is out of range, rather than relying on
9904 undefined behavior.
9905 (Fformat_time_string): Remove now-unnecessary check.
9906 lisp_time_argument checks for out-of-range usec now.
9907 Use ptrdiff_t, not size_t, where ptrdiff_t will do.
9908 * emacs.c (gdb_valbits, gdb_gctypebits): Now int, not EMACS_INT.
9909 (gdb_data_seg_bits): Now uintptr_t, not EMACS_INT.
9910 (PVEC_FLAG, gdb_array_mark_flag): Now ptrdiff_t, not EMACS_INT.
9911 (init_cmdargs, Fdump_emacs):
9912 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9913 (Fkill_emacs): Don't assume fixnum fits in int; instead, take just
9914 the bottom (typically) 32 bits of the fixnum.
9915 * eval.c (specpdl_size, call_debugger):
9916 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9917 (when_entered_debugger, Fbacktrace_debug):
9918 Don't assume fixnum can fit in int.
9919 (Fdefvaralias, Fdefvar): Do not attempt to compute the address of
9920 the object just before a buffer; this is not portable.
9921 (FletX, Flet, Funwind_protect, do_autoload, Feval, funcall_lambda)
9922 (grow_specpdl, unbind_to):
9923 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9924 (Fapply, apply_lambda): Don't assume ptrdiff_t can hold fixnum.
9925 (grow_specpdl): Simplify allocation by using xpalloc.
9926 (Fprog1, Fprog2): Don't assume list length fits in int. Simplify.
9927 * fileio.c (Ffind_file_name_handler, Fcopy_file, Frename_file)
9928 (Finsert_file_contents, Fwrite_region, Fdo_auto_save):
9929 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9930 (Ffind_file_name_handler, non_regular_inserted, Finsert_file_contents)
9931 (a_write, e_write):
9932 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9933 (Fcopy_file, non_regular_nbytes, read_non_regular)
9934 (Finsert_file_contents):
9935 Use int, not EMACS_INT, where int is wide enough.
9936 (READ_BUF_SIZE): Verify that it fits in int.
9937 (Finsert_file_contents): Check that counts are in proper range,
9938 rather than assuming fixnums fit into ptrdiff_t etc.
9939 Don't assume fixnums fit into int.
9940 * floatfns.c (Fexpt): Avoid undefined signed * signed overflow.
9941 * fns.c (Fcompare_strings, Fstring_lessp, struct textprop_rec, concat)
9942 (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
9943 (string_char_to_byte, string_byte_to_char)
9944 (string_make_multibyte, string_to_multibyte)
9945 (string_make_unibyte, Fstring_as_unibyte, Fstring_as_multibyte)
9946 (Fstring_to_unibyte, Fsubstring, Fsubstring_no_properties)
9947 (substring_both, Fdelete, internal_equal, Ffillarray)
9948 (Fclear_string, mapcar1)
9949 (Fbase64_encode_region, Fbase64_encode_string, base64_encode_1)
9950 (Fbase64_decode_region, Fbase64_decode_string, base64_decode_1)
9951 (larger_vector, make_hash_table, maybe_resize_hash_table)
9952 (hash_lookup, hash_remove_from_table, hash_clear, sweep_weak_table)
9953 (Fmaphash, secure_hash):
9954 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9955 (concat): Check for string index and length overflow.
9956 (Fmapconcat): Don't assume fixnums fit into ptrdiff_t.
9957 (Frequire):
9958 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9959 (larger_vector): New API (vec, incr_min, size_max) replaces old
9960 one (vec, new_size, init). This catches size overflow.
9961 INIT was removed because it was always Qnil.
9962 All callers changed.
9963 (INDEX_SIZE_BOUND): New macro, which calculates more precisely
9964 the upper bound on a hash table index size.
9965 (make_hash_table, maybe_resize_hash_table): Use it.
9966 (secure_hash): Computer start_byte and end_byte only after
9967 they're known to be in ptrdiff_t range.
9968 * font.c (font_intern_prop, font_at, font_range, Ffont_shape_gstring)
9969 (Ffont_get_glyphs, Ffont_at):
9970 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9971 (font_style_to_value, font_prop_validate_style, font_expand_wildcards)
9972 (Flist_fonts, Fopen_font):
9973 Don't assume fixnum can fit in int.
9974 (check_gstring): Don't assume index can fit in int.
9975 (font_match_p): Check that fixnum is a character, not a nonnegative
9976 fixnum, since the later code needs to stuff it into an int.
9977 (font_find_for_lface): Use SAFE_ALLOCA_LISP, not alloca.
9978 (font_fill_lglyph_metrics): Use unsigned, not EMACS_INT, to avoid
9979 conversion overflow issues.
9980 (Fopen_font): Check for integer out of range.
9981 (Ffont_get_glyphs): Don't assume index can fit in int.
9982 * font.h: Adjust decls to match defn changes elsewhere.
9983 * fontset.c (reorder_font_vector): Redo score calculation to avoid
9984 integer overflow.
9985 (num_auto_fontsets, fontset_from_font): Use ptrdiff_t, not
9986 printmax_t, where ptrdiff_t is wide enough.
9987 (Finternal_char_font):
9988 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9989 * frame.c (Fset_mouse_position, Fset_mouse_pixel_position)
9990 (Fset_frame_height, Fset_frame_width, Fset_frame_size)
9991 (Fset_frame_position, x_set_frame_parameters)
9992 (x_set_line_spacing, x_set_border_width)
9993 (x_set_internal_border_width, x_set_alpha, x_figure_window_size):
9994 Check that fixnums are in proper range for system types.
9995 (frame_name_fnn_p, Fframe_parameter, Fmodify_frame_parameters):
9996 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9997 (Fmodify_frame_parameters): Don't assume fixnum fits in int.
9998 Use SAFE_ALLOCA_LISP, not alloca.
9999 * frame.h (struct frame): Use intptr_t, not EMACS_INT, where
10000 intptr_t is wide enough.
10001 * fringe.c (lookup_fringe_bitmap, get_logical_fringe_bitmap)
10002 (Fdefine_fringe_bitmap): Don't assume fixnum fits in int.
10003 (Ffringe_bitmaps_at_pos): Don't assume index fits in int.
10004 Check for fixnum out of range.
10005 * ftfont.c (ftfont_list): Don't assume index fits in int.
10006 Check that fixnums are in proper range for system types.
10007 (ftfont_shape_by_flt):
10008 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10009 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
10010 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10011 (Fgnutls_error_fatalp, Fgnutls_error_string, Fgnutls_boot):
10012 Check that fixnums are in proper range for system types.
10013 * gnutls.h: Adjust decls to match defn changes elsewhere.
10014 * gtkutil.c (xg_dialog_run):
10015 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10016 (update_frame_tool_bar):
10017 Check that fixnums are in proper range for system types.
10018 * image.c (parse_image_spec): Redo count calculation to avoid overflow.
10019 (lookup_image): Check that fixnums are in range for system types.
10020 * indent.c (last_known_column, last_known_column_point):
10021 (current_column_bol_cache):
10022 (skip_invisible, current_column, check_display_width):
10023 (check_display_width, scan_for_column, current_column_1)
10024 (Findent_to, Fcurrent_indentation, position_indentation)
10025 (indented_beyond_p, Fmove_to_column, compute_motion):
10026 (Fcompute_motion, Fvertical_motion):
10027 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10028 (last_known_column_modified): Use EMACS_INT, not int.
10029 (check_display_width):
10030 (Fcompute_motion):
10031 Check that fixnums and floats are in proper range for system types.
10032 (compute_motion): Don't assume index or fixnum fits in int.
10033 (compute_motion, Fcompute_motion):
10034 Use int, not EMACS_INT, when it is wide enough.
10035 (vmotion): Omit local var start_hpos that is always 0; that way
10036 we don't need to worry about overflow in expressions involving it.
10037 * indent.h: Adjust decls to match defn changes elsewhere.
10038 (struct position):
10039 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10040 Use int, not EMACS_INT, where int is wide enough.
10041 Remove unused members ovstring_chars_done and tab_offset;
10042 all uses removed.
10043 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
10044 (adjust_markers_for_delete, adjust_markers_for_insert, adjust_point)
10045 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
10046 (make_gap, copy_text, insert, insert_and_inherit)
10047 (insert_before_markers, insert_before_markers_and_inherit)
10048 (insert_1, count_combining_before, count_combining_after)
10049 (insert_1_both, insert_from_string)
10050 (insert_from_string_before_markers, insert_from_string_1)
10051 (insert_from_gap, insert_from_buffer, insert_from_buffer_1)
10052 (adjust_after_replace, adjust_after_insert, replace_range)
10053 (replace_range_2, del_range, del_range_1, del_range_byte)
10054 (del_range_both, del_range_2, modify_region)
10055 (prepare_to_modify_buffer, signal_before_change)
10056 (signal_after_change, Fcombine_after_change_execute):
10057 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10058 * intervals.c (traverse_intervals, rotate_right, rotate_left)
10059 (balance_an_interval, split_interval_right, split_interval_left)
10060 (find_interval, next_interval, update_interval)
10061 (adjust_intervals_for_insertion, delete_node, delete_interval)
10062 (interval_deletion_adjustment, adjust_intervals_for_deletion)
10063 (static_offset_intervals, offset_intervals)
10064 (merge_interval_right, merge_interval_left, make_new_interval)
10065 (graft_intervals_into_buffer, temp_set_point_both)
10066 (temp_set_point, set_point, adjust_for_invis_intang)
10067 (set_point_both, move_if_not_intangible, get_property_and_range)
10068 (get_local_map, copy_intervals, copy_intervals_to_string)
10069 (compare_string_intervals, set_intervals_multibyte_1):
10070 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10071 * intervals.h: Adjust decls to match defn changes elsewhere.
10072 (struct interval):
10073 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10074 * keyboard.c (this_command_key_count, this_single_command_key_start)
10075 (before_command_key_count, before_command_echo_length, echo_now)
10076 (echo_length, recursive_edit_1, Frecursive_edit, Ftrack_mouse)
10077 (command_loop_1, safe_run_hooks, read_char, timer_check_2)
10078 (menu_item_eval_property, read_key_sequence, Fread_key_sequence)
10079 (Fread_key_sequence_vector, Fexecute_extended_command, Fsuspend_emacs):
10080 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10081 (last_non_minibuf_size, last_point_position, echo_truncate)
10082 (command_loop_1, adjust_point_for_property, read_char, gen_help_event)
10083 (make_lispy_position, make_lispy_event, parse_modifiers_uncached)
10084 (parse_modifiers, modify_event_symbol, Fexecute_extended_command)
10085 (stuff_buffered_input):
10086 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10087 (last_auto_save, command_loop_1, read_char):
10088 Use EMACS_INT, not int, to avoid integer overflow.
10089 (record_char): Avoid overflow in total_keys computation.
10090 (parse_modifiers_uncached): Redo index calculation to avoid overflow.
10091 * keyboard.h: Adjust decls to match defn changes elsewhere.
10092 * keymap.c (Fdefine_key, Fcurrent_active_maps, accessible_keymaps_1)
10093 (Fkey_description, Fdescribe_vector, Flookup_key):
10094 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10095 (click_position): New function, to check that positions are in range.
10096 (Fcurrent_active_maps):
10097 (describe_command):
10098 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10099 (Faccessible_keymaps, Fkey_description):
10100 (preferred_sequence_p):
10101 Don't assume fixnum can fit into int.
10102 (Fkey_description): Use SAFE_ALLOCA_LISP, not alloca.
10103 Check for integer overflow in size calculations.
10104 (Ftext_char_description): Use CHECK_CHARACTER, not CHECK_NUMBER, to
10105 avoid mishandling large integers.
10106 * lisp.h: Adjust decls to match defn changes elsewhere.
10107 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, struct Lisp_String)
10108 (struct vectorlike_header, struct Lisp_Subr, struct Lisp_Hash_Table)
10109 (struct Lisp_Marker):
10110 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10111 (clip_to_bounds): Now an inline function, moved here from editfns.c.
10112 (GLYPH_CODE_P): Check for overflow in system types, subsuming the
10113 need for GLYPH_CODE_CHAR_VALID_P and doing proper checking ourselves.
10114 All callers changed.
10115 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE):
10116 Assume the arg has valid form, since it always does.
10117 (TYPE_RANGED_INTEGERP): Avoid bug when checking against a wide
10118 unsigned integer system type.
10119 (CHECK_RANGED_INTEGER, CHECK_TYPE_RANGED_INTEGER): New macros.
10120 (struct catchtag, specpdl_size, SPECPDL_INDEX, USE_SAFE_ALLOCA):
10121 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10122 (struct catchtag): Use EMACS_INT, not int, since it may be a fixnum.
10123 (duration_to_sec_usec): New decl.
10124 * lread.c (read_from_string_index, read_from_string_index_byte)
10125 (read_from_string_limit, readchar, unreadchar, openp)
10126 (read_internal_start, read1, oblookup):
10127 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10128 (Fload, readevalloop, Feval_buffer, Feval_region):
10129 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10130 (openp): Check for out-of-range argument to 'access'.
10131 (read1): Use int, not EMACS_INT, where int is wide enough.
10132 Don't assume fixnum fits into int.
10133 Fix off-by-one error that can read outside a buffer.
10134 (read_filtered_event): Use duration_to_sec_usec
10135 to do proper overflow checking on durations.
10136 * macros.c (Fstart_kbd_macro): Use xpalloc to check for overflow
10137 in size calculation.
10138 (Fexecute_kbd_macro):
10139 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10140 * marker.c (cached_charpos, cached_bytepos, CONSIDER)
10141 (byte_char_debug_check, buf_charpos_to_bytepos, verify_bytepos)
10142 (buf_bytepos_to_charpos, Fset_marker, set_marker_restricted)
10143 (set_marker_both, set_marker_restricted_both, marker_position)
10144 (marker_byte_position, Fbuffer_has_markers_at):
10145 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10146 (Fset_marker, set_marker_restricted): Don't assume fixnum fits in int.
10147 * menu.c (ensure_menu_items): Rename from grow_menu_items.
10148 It now merely ensures that the menu is large enough, without
10149 necessarily growing it, as this avoids some integer overflow issues.
10150 All callers changed.
10151 (keymap_panes, parse_single_submenu, Fx_popup_menu):
10152 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10153 (parse_single_submenu, Fx_popup_menu): Don't assume fixnum fits in int.
10154 Use SAFE_ALLOCA_LISP, not alloca.
10155 (find_and_return_menu_selection): Avoid unnecessary casts of pointers
10156 to EMACS_INT. Check that fixnums are in proper range for system types.
10157 * minibuf.c (minibuf_prompt_width, string_to_object)
10158 (Fminibuffer_contents, Fminibuffer_contents_no_properties)
10159 (Fminibuffer_completion_contents, Ftry_completion, Fall_completions):
10160 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10161 (get_minibuffer, read_minibuf_unwind):
10162 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10163 (read_minibuf): Omit unnecessary arg BACKUP_N, which is always nil;
10164 this simplifies overflow checking. All callers changed.
10165 (read_minibuf, Fread_buffer, Ftry_completion, Fall_completions)
10166 (Ftest_completion):
10167 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10168 * nsfns.m (check_ns_display_info): Don't assume fixnum fits in long.
10169 (x_set_menu_bar_lines, x_set_tool_bar_lines, Fx_create_frame):
10170 Check that fixnums are in proper range for system types.
10171 (Fx_create_frame, Fx_show_tip):
10172 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10173 * nsfont.m (ns_findfonts, nsfont_list_family):
10174 Don't assume fixnum fits in long.
10175 * nsmenu.m (ns_update_menubar, ns_menu_show, ns_popup_dialog):
10176 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10177 (ns_update_menubar): Use intptr_t, not EMACS_INT, when intptr_t is
10178 wide enough.
10179 * nsselect.m (ns_get_local_selection, clean_local_selection_data):
10180 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10181 * print.c (print_buffer_size, print_buffer_pos, print_buffer_pos_byte)
10182 (PRINTDECLARE, PRINTPREPARE):
10183 (strout, print_string):
10184 (print, print_preprocess, print_check_string_charset_prop)
10185 (print_object):
10186 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10187 (PRINTDECLARE):
10188 (temp_output_buffer_setup, Fprin1_to_string, print_object):
10189 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10190 (PRINTPREPARE): Use int, not ptrdiff_t, where int is wide enough.
10191 (printchar, strout): Use xpalloc to catch size calculation overflow.
10192 (Fexternal_debugging_output): Don't overflow EMACS_INT->int conversion.
10193 (print_error_message): Use SAFE_ALLOCA, not alloca.
10194 (print_object): Use int, not EMACS_INT, where int is wide enough.
10195 (print_depth, new_backquote_output, print_number_index):
10196 Use ptrdiff_t, not int, where int might not be wide enough.
10197 * process.c (Fdelete_process): Don't assume pid fits into EMACS_INT.
10198 (Fset_process_window_size, Fformat_network_address)
10199 (get_lisp_to_sockaddr_size, set_socket_option, Fmake_network_process)
10200 (sigchld_handler):
10201 Check that fixnums are in proper range for system types.
10202 (Fsignal_process): Simplify by avoiding a goto.
10203 Check for process-ids out of pid_t range rather than relying on
10204 undefined behavior.
10205 (process_tick, update_tick): Use EMACS_INT, not int.
10206 (Fformat_network_address, read_process_output, send_process)
10207 (Fprocess_send_region, status_notify):
10208 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10209 (Fformat_network_address, Fmake_serial_process, Fmake_network_process)
10210 (wait_reading_process_output, read_process_output, exec_sentinel):
10211 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10212 (conv_lisp_to_sockaddr): Don't assume fixnums fit into int.
10213 (Faccept_process_output): Use duration_to_sec_usec to do proper
10214 overflow checking on durations.
10215 (emacs_get_tty_pgrp, Fprocess_running_child_p, process_send_signal):
10216 Don't assume pid_t fits in int.
10217 * process.h (struct Lisp_Process): Members tick and update_tick
10218 are now of type EMACS_INT, not int.
10219 * puresize.h (PURESIZE_RATIO): Shrink this to 8/6 on 32-bit hosts
10220 configured --with-wide-int.
10221 * scroll.c (calculate_scrolling, calculate_direct_scrolling)
10222 (line_ins_del): Use int, not EMACS_INT, where int is wide enough.
10223 * search.c (looking_at_1, string_match_1):
10224 (fast_string_match, fast_c_string_match_ignore_case)
10225 (fast_string_match_ignore_case, fast_looking_at, scan_buffer)
10226 (scan_newline, find_before_next_newline, search_command)
10227 (trivial_regexp_p, search_buffer, simple_search, boyer_moore)
10228 (set_search_regs, wordify):
10229 (Freplace_match):
10230 (Fmatch_data):
10231 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10232 (string_match_1, search_buffer, set_search_regs):
10233 (Fmatch_data):
10234 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10235 (wordify): Check for overflow in size calculation.
10236 (Freplace_match): Avoid potential buffer overflow in search_regs.start.
10237 (Fset_match_data): Don't assume fixnum fits in ptrdiff_t.
10238 Check that fixnums are in proper range for system types.
10239 * sound.c (struct sound_device)
10240 (wav_play, au_play, vox_write, alsa_period_size, alsa_write):
10241 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10242 (Fplay_sound_internal):
10243 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10244 * syntax.c (struct lisp_parse_state, find_start_modiff)
10245 (Finternal_describe_syntax_value, scan_lists, scan_sexps_forward):
10246 (Fparse_partial_sexp):
10247 Don't assume fixnums can fit in int.
10248 (struct lisp_parse_state, find_start_pos, find_start_value)
10249 (find_start_value_byte, find_start_begv)
10250 (update_syntax_table, char_quoted, dec_bytepos)
10251 (find_defun_start, prev_char_comend_first, back_comment):
10252 (scan_words, skip_chars, skip_syntaxes, forw_comment, Fforward_comment)
10253 (scan_lists, Fbackward_prefix_chars, scan_sexps_forward):
10254 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10255 (Finternal_describe_syntax_value): Check that match_lisp is a
10256 character, not an integer, since the code stuffs it into int.
10257 (scan_words, scan_sexps_forward):
10258 Check that fixnums are in proper range for system types.
10259 (Fforward_word):
10260 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10261 (scan_sexps_forward):
10262 Use CHARACTERP, not INTEGERP, since the value must fit into int.
10263 (Fparse_partial_sexp): Fix doc; element 8 is not ignored.
10264 * syntax.h: Adjust decls to match defn changes elsewhere.
10265 (struct gl_state_s):
10266 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10267 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Use PTRDIFF_MAX, not
10268 MOST_POSITIVE_FIXNUM.
10269 * sysdep.c (wait_for_termination_1, wait_for_termination)
10270 (interruptible_wait_for_termination, mkdir):
10271 Don't assume pid_t fits in int; on 64-bit AIX pid_t is 64-bit.
10272 (emacs_read, emacs_write):
10273 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10274 (system_process_attributes): Don't assume uid_t, gid_t, EMACS_INT,
10275 and double all fit in int.
10276 * term.c (set_tty_color_mode):
10277 Check that fixnums are in proper range for system types.
10278 * termhooks.h (struct input_event):
10279 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10280 * textprop.c (validate_interval_range, interval_of)
10281 (Fadd_text_properties, set_text_properties_1)
10282 (Fremove_text_properties, Fremove_list_of_text_properties)
10283 (Ftext_property_any, Ftext_property_not_all)
10284 (copy_text_properties, text_property_list, extend_property_ranges)
10285 (verify_interval_modification):
10286 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10287 (Fnext_single_char_property_change)
10288 (Fprevious_single_char_property_change):
10289 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10290 (copy_text_properties):
10291 Check for integer overflow in index calculation.
10292 * undo.c (last_boundary_position, record_point, record_insert)
10293 (record_delete, record_marker_adjustment, record_change)
10294 (record_property_change):
10295 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10296 (truncate_undo_list, Fprimitive_undo): Don't assume fixnum fits in int.
10297 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10298 * w32fns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
10299 (Fx_hide_tip, Fx_file_dialog):
10300 * w32menu.c (set_frame_menubar):
10301 Use ptrdiff_t, not int, for consistency with rest of code.
10302 * window.c (window_scroll_preserve_hpos, window_scroll_preserve_vpos)
10303 (select_window, Fdelete_other_windows_internal)
10304 (window_scroll_pixel_based, window_scroll_line_based)
10305 (Frecenter, Fset_window_configuration):
10306 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10307 (Fset_window_hscroll, run_window_configuration_change_hook)
10308 (set_window_buffer, temp_output_buffer_show, scroll_command)
10309 (Fscroll_other_window, Frecenter):
10310 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10311 (Fwindow_line_height, window_scroll, Fscroll_left, Fscroll_right):
10312 Don't assume fixnum fits in int.
10313 (Fset_window_scroll_bars):
10314 Check that fixnums are in proper range for system types.
10315 * xdisp.c (help_echo_pos, pos_visible_p, string_pos_nchars_ahead)
10316 (string_pos, c_string_pos, number_of_chars, init_iterator)
10317 (in_ellipses_for_invisible_text_p, init_from_display_pos)
10318 (compute_stop_pos, next_overlay_change, compute_display_string_pos)
10319 (compute_display_string_end, handle_face_prop)
10320 (face_before_or_after_it_pos, handle_invisible_prop)
10321 (handle_display_prop, handle_display_spec, handle_single_display_spec)
10322 (display_prop_intangible_p, string_buffer_position_lim)
10323 (string_buffer_position, handle_composition_prop, load_overlay_strings)
10324 (get_overlay_strings_1, get_overlay_strings)
10325 (iterate_out_of_display_property, forward_to_next_line_start)
10326 (back_to_previous_visible_line_start, reseat, reseat_to_string)
10327 (get_next_display_element, set_iterator_to_next)
10328 (get_visually_first_element, compute_stop_pos_backwards)
10329 (handle_stop_backwards, next_element_from_buffer)
10330 (move_it_in_display_line_to, move_it_in_display_line)
10331 (move_it_to, move_it_vertically_backward, move_it_by_lines)
10332 (add_to_log, message_dolog, message_log_check_duplicate)
10333 (message2, message2_nolog, message3, message3_nolog
10334 (with_echo_area_buffer, display_echo_area_1, resize_mini_window_1)
10335 (current_message_1, truncate_echo_area, truncate_message_1)
10336 (set_message, set_message_1, store_mode_line_noprop)
10337 (hscroll_window_tree, debug_delta, debug_delta_bytes, debug_end_vpos)
10338 (text_outside_line_unchanged_p, check_point_in_composition)
10339 (reconsider_clip_changes)
10340 (redisplay_internal, set_cursor_from_row, try_scrolling)
10341 (try_cursor_movement, set_vertical_scroll_bar, redisplay_window)
10342 (redisplay_window, find_last_unchanged_at_beg_row)
10343 (find_first_unchanged_at_end_row, row_containing_pos, try_window_id)
10344 (trailing_whitespace_p, find_row_edges, display_line)
10345 (RECORD_MAX_MIN_POS, Fcurrent_bidi_paragraph_direction)
10346 (display_mode_element, store_mode_line_string)
10347 (pint2str, pint2hrstr, decode_mode_spec)
10348 (display_count_lines, display_string, draw_glyphs)
10349 (x_produce_glyphs, x_insert_glyphs)
10350 (rows_from_pos_range, mouse_face_from_buffer_pos)
10351 (fast_find_string_pos, mouse_face_from_string_pos)
10352 (note_mode_line_or_margin_highlight, note_mouse_highlight):
10353 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10354 (safe_call, init_from_display_pos, handle_fontified_prop)
10355 (handle_single_display_spec, load_overlay_strings)
10356 (with_echo_area_buffer, setup_echo_area_for_printing)
10357 (display_echo_area, echo_area_display)
10358 (x_consider_frame_title, prepare_menu_bars, update_menu_bar)
10359 (update_tool_bar, hscroll_window_tree, redisplay_internal)
10360 (redisplay_window, dump_glyph_row, display_mode_line)
10361 (Fformat_mode_line, decode_mode_spec, on_hot_spot_p):
10362 (handle_display_spec, display_prop_string_p):
10363 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10364 (handle_single_display_spec, build_desired_tool_bar_string)
10365 (redisplay_tool_bar, scroll_window_tree, Fdump_glyph_matrix)
10366 (get_specified_cursor_type):
10367 Check that fixnums are in proper range for system types.
10368 (struct overlay_entry, resize_mini_window, Fdump_glyph_row)
10369 (Flookup_image_map):
10370 Don't assume fixnums fit in int.
10371 (compare_overlay_entries):
10372 Avoid mishandling comparisons due to subtraction overflow.
10373 (load_overlay_strings): Use SAFE_NALLOCA, not alloca.
10374 (last_escape_glyph_face_id, last_glyphless_glyph_face_id):
10375 (handle_tool_bar_click):
10376 Use int, not unsigned, since we prefer signed and the signedness
10377 doesn't matter here.
10378 (get_next_display_element, next_element_from_display_vector):
10379 Use int, not EMACS_INT, when int is wide enough.
10380 (start_hourglass): Use duration_to_sec_usec to do proper
10381 overflow checking on durations.
10382 * xfaces.c (Fbitmap_spec_p):
10383 Check that fixnums are in proper range for system types.
10384 (compare_fonts_by_sort_order):
10385 Avoid mishandling comparisons due to subtraction overflow.
10386 (Fx_family_fonts, realize_basic_faces):
10387 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10388 (Fx_family_fonts):
10389 Don't assume fixnum fits in int.
10390 Use SAFE_ALLOCA_LISP, not alloca.
10391 (merge_face_heights): Remove unnecessary cast to EMACS_INT.
10392 (Finternal_make_lisp_face): Don't allocate more than MAX_FACE_ID.
10393 (face_at_buffer_position, face_for_overlay_string)
10394 (face_at_string_position):
10395 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10396 (merge_faces): Use int, not EMACS_INT, where int is wide enough.
10397 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines, x_icon_verify)
10398 (Fx_show_tip):
10399 Check that fixnums are in proper range for system types.
10400 (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
10401 (Fx_hide_tip, Fx_file_dialog, Fx_select_font):
10402 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10403 (Fx_change_window_property): Don't assume fixnums fit in int.
10404 * xfont.c (xfont_chars_supported):
10405 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10406 * xmenu.c (Fx_popup_dialog, set_frame_menubar)
10407 (create_and_show_popup_menu, create_and_show_dialog, xmenu_show):
10408 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10409 * xml.c (parse_region):
10410 * xrdb.c (magic_file_p):
10411 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10412 * xselect.c (TRACE1): Don't assume pid_t promotes to int.
10413 (x_get_local_selection, x_reply_selection_request)
10414 (x_handle_selection_request, wait_for_property_change):
10415 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10416 (selection_data_to_lisp_data): Use short, not EMACS_INT, where
10417 short is wide enough.
10418 (x_send_client_event): Don't assume fixnum fits in int.
10419 * xterm.c (x_x_to_emacs_modifiers):
10420 Don't assume EMACS_INT overflows nicely into int.
10421 (x_emacs_to_x_modifiers): Use EMACS_INT, not int, because values
10422 may come from Lisp.
10423 (handle_one_xevent): NATNUMP can eval its arg twice.
10424 (x_connection_closed):
10425 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10426 * xterm.h: Adjust decls to match defn changes elsewhere.
10427 (struct scroll_bar): Use struct vectorlike_header
10428 rather than rolling our own approximation.
10429 (SCROLL_BAR_VEC_SIZE): Remove; not used.
10430
10431 2012-05-25 Glenn Morris <rgm@gnu.org>
10432
10433 * lisp.mk (lisp): Update for more files being compiled now.
10434
10435 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
10436
10437 * lread.c: Remove `read_pure' which makes no difference.
10438 (read_pure): Remove var.
10439 (unreadpure): Remove function.
10440 (readevalloop): Don't call read_list with -1 flag.
10441 (read1, read_vector): Don't test read_pure any more.
10442 (read_list): Simplify.
10443
10444 * fileio.c, character.h: Minor style tweaks.
10445
10446 2012-05-24 Dmitry Antipov <dmantipov@yandex.ru>
10447
10448 * window.h (clip_changed): Remove useless declaration.
10449
10450 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
10451
10452 * makefile.w32-in: Follow-up to 2012-05-22T16:20:27Z!eggert@cs.ucla.edu.
10453 (TAGS, TAGS-gmake, CONFIG_H): Remove further references to m/intel386.h.
10454
10455 2012-05-22 Paul Eggert <eggert@cs.ucla.edu>
10456
10457 Remove src/m/*.
10458 This directory predates autoconf and is no longer needed nowadays.
10459 Move its few remaining bits of functionality to where they're needed.
10460 * m/README, m/alpha.h, m/amdx86-64.h, m/ia64.h, m/ibmrs6000.h:
10461 * m/ibms390x.h, m/intel386.h, m/m68k.h, m/macppc.h, m/sparc.h:
10462 * m/template.h: Remove.
10463 * Makefile.in (M_FILE): Remove. All uses removed.
10464 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS):
10465 * lisp.h (USE_LSB_TAG):
10466 * mem-limits.h (EXCEEDS_LISP_PTR):
10467 Use VAL_MAX, not VALBITS, in #if.
10468 * lisp.h (EMACS_INT_MAX): New macro, useful in #if.
10469 (EMACS_UINT): Define unconditionally now.
10470 (BITS_PER_CHAR, BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG)
10471 (BITS_PER_EMACS_INT): New constants, replacing
10472 what used to be in config.h, but not useful in #if.
10473 (GCTYPEBITS, VALBITS): Define unconditionally, since m/* files don't
10474 define them any more.
10475 (VAL_MAX): New macro.
10476 (VALMASK): Use it.
10477 * puresize.h (PURESIZE_RATIO): Use EMACS_INT_MAX, not
10478 BITS_PER_EMACS_INT, in #if.
10479 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
10480 (BROKEN_SIGPOLL): Move here from m/ibmrs6000.h, which was removed.
10481 * s/gnu-linux.h (ULIMIT_BREAK_VALUE) [__i386__]:
10482 * s/ms-w32.h (DATA_START):
10483 Move here from removed file m/intel386.h.
10484 * s/gnu.h (NLIST_STRUCT): Remove undef; 'configure' does this.
10485 * s/irix6-5.h (_LP64): Remove; lisp.h no longer needs this.
10486
10487 2012-05-21 Paul Eggert <eggert@cs.ucla.edu>
10488
10489 Assume C89 or later.
10490 * alloc.c, buffer.c, lisp.h: Replace POINTER_TYPE with void.
10491 * alloc.c (overrun_check_malloc, overrun_check_realloc, xmalloc)
10492 (xrealloc):
10493 * buffer.c (mmap_free_1, mmap_enlarge): Omit needless casts.
10494 * editfns.c, fns.c, gmalloc.c, insdel.c, sysdep.c, termcap.c (NULL):
10495 * textprop.c, tparam.c (NULL): Remove.
10496 * ralloc.c, vm-limit.c (POINTER): Assume void * works.
10497 * regex.c (SIGN_EXTEND_CHAR): Assume signed char works.
10498 * regex.h (_RE_ARGS): Remove. All uses rewritten to use prototypes.
10499 * unexelf.c (ElfBitsW): Assume c89 preprocessor or better.
10500 * xterm.c (input_signal_count): Assume volatile works.
10501
10502 2012-05-21 Ken Brown <kbrown@cornell.edu>
10503
10504 * xgselect.c (xg_select): Fix first argument in call to 'select'
10505 (bug#11508).
10506
10507 2012-05-20 Ken Brown <kbrown@cornell.edu>
10508
10509 * gmalloc.c (_free_internal_nolock, _realloc_internal_nolock)
10510 [CYGWIN]: Cast ptr to (char *) before comparing to _heapbase.
10511
10512 2012-05-19 Ken Brown <kbrown@cornell.edu>
10513
10514 * xfns.c (x_in_use): Remove `static' qualifier.
10515 * xterm.h (x_in_use): Declare.
10516 * xgselect.c: Include xterm.h.
10517 (xg_select): Test `x_in_use' instead of `inhibit_window_system'
10518 and `display_arg' (bug#9754).
10519
10520 2012-05-19 Paul Eggert <eggert@cs.ucla.edu>
10521
10522 * s/ms-w32.h (HAVE_GETDOMAINNAME): Remove; not needed.
10523
10524 * m/vax.h: Remove; no longer needed since HAVE_FTIME is being removed.
10525 * s/ms-w32.h (HAVE_FTIME): Remove; not needed.
10526
10527 2012-05-18 Eli Zaretskii <eliz@gnu.org>
10528
10529 Fix compilation with -DGLYPH_DEBUG=1 on MS-Windows.
10530
10531 * w32term.c [GLYPH_DEBUG]: Add prototype for x_check_font.
10532 (x_check_font) [GLYPH_DEBUG]: New function, copied from xterm.c.
10533
10534 * w32fns.c (unwind_create_frame) [GLYPH_DEBUG]: Fix broken
10535 reference to image_cache->refcount.
10536 (x_create_tip_frame): Fix broken use of FRAME_IMAGE_CACHE.
10537
10538 2012-05-17 Juri Linkov <juri@jurta.org>
10539
10540 * search.c (Fword_search_regexp, Fword_search_backward)
10541 (Fword_search_forward, Fword_search_backward_lax)
10542 (Fword_search_forward_lax): Move functions to isearch.el
10543 (bug#10145, bug#11381).
10544
10545 2012-05-16 Paul Eggert <eggert@cs.ucla.edu>
10546
10547 * xgselect.c (xg_select): Just invoke 'select' if -nw (Bug#9754).
10548
10549 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
10550
10551 * lread.c (init_obarray): Declare Qt and Qnil as special.
10552
10553 2012-05-14 Glenn Morris <rgm@gnu.org>
10554
10555 * nsterm.m (ns_init_paths): Fix typo ("libexec" not "lib-exec").
10556 Put "libexec" before "bin", for the sake of init_callproc_1.
10557
10558 2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
10559
10560 * keyboard.c (kbd_buffer_get_event) [!HAVE_DBUS]: Omit unused local.
10561
10562 * unexaix.c: Port to more-recent AIX compilers.
10563 (report_error, report_error_1, make_hdr, copy_sym)
10564 (mark_x, adjust_lnnoptrs, unrelocate_symbols):
10565 Make arguments const char *, not char *, to avoid violations of C
10566 standard and to fix some AIX warnings reported by Gilles Pion.
10567
10568 2012-05-14 Eli Zaretskii <eliz@gnu.org>
10569
10570 * xdisp.c (handle_stop): Don't call get_overlay_strings_1 if we
10571 already have overlays loaded.
10572 (handle_single_display_spec): Before returning without displaying
10573 fringe bitmap, synchronize the bidi iterator with the main display
10574 iterator, by calling iterate_out_of_display_property.
10575 (iterate_out_of_display_property): Detect buffer iteration by
10576 testing that it->string is a Lisp string.
10577 (get_next_display_element): When the current object is exhausted,
10578 and there's something on it->stack, call set_iterator_to_next to
10579 proceed with what's on the stack, instead of returning zero.
10580 (set_iterator_to_next): If called at the end of a Lisp string,
10581 proceed to consider_string_end without incrementing string
10582 position. Don't increment display vector index past the end of
10583 the display vector. (Bug#11417)
10584 (pos_visible_p): Don't report a position visible when move_it_to
10585 stopped at the last line of window, which happens to be scanned
10586 backwards by the bidi iteration. (Bug#11464)
10587
10588 2012-05-14 Eli Zaretskii <eliz@gnu.org>
10589
10590 * xdisp.c (handle_single_display_spec): Return 1 for left-margin
10591 and right-margin display specs even if the spec is invalid or we
10592 are on a TTY, and thus unable to display on the fringes.
10593 That's because the text with the property will not be displayed anyway,
10594 so we need to signal to the caller that this is a "replacing"
10595 display spec. This fixes display when the spec is invalid or we
10596 are on a TTY.
10597
10598 2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
10599
10600 * unexaix.c (make_hdr): Fix typo in prototype.
10601 This bug broke the build on AIX. Problem reported by Gilles Pion.
10602
10603 2012-05-14 Michael Albinus <michael.albinus@gmx.de>
10604
10605 * keyboard.c (kbd_buffer_get_event): Read special events also in
10606 batch mode. (Bug#11415)
10607
10608 2012-05-12 Glenn Morris <rgm@gnu.org>
10609
10610 * ns.mk: Update for ns_appbindir no longer having trailing "/".
10611
10612 2012-05-12 Eli Zaretskii <eliz@gnu.org>
10613
10614 * lisp.mk (lisp): Add newcomment.elc.
10615
10616 2012-05-12 Glenn Morris <rgm@gnu.org>
10617
10618 * Makefile.in (MKDIR_P): New, set by configure.
10619 * ns.mk (${ns_appdir}, ${ns_appbindir}Emacs): Use $MKDIR_P.
10620
10621 2012-05-11 Paul Eggert <eggert@cs.ucla.edu>
10622
10623 Remove unused function hourglass_started.
10624 * dispextern.h (hourglass_started):
10625 * w32fns.c (hourglass_started):
10626 * xdisp.c (hourglass_started): Remove.
10627
10628 2012-05-10 Juanma Barranquero <lekktu@gmail.com>
10629
10630 * makefile.w32-in ($(BLD)/gmalloc.$(O), $(BLD)/w32menu.$(O)):
10631 Update dependencies.
10632
10633 2012-05-10 Paul Eggert <eggert@cs.ucla.edu>
10634
10635 * xgselect.c (xg_select): Put maxfds+1 into a var.
10636 This is slightly clearer, and pacifies Ubuntu 12.04 gcc.
10637
10638 * sound.c (DEFAULT_ALSA_SOUND_DEVICE): Define only if HAVE_ALSA.
10639
10640 2012-05-10 Dave Abrahams <dave@boostpro.com>
10641
10642 * filelock.c (syms_of_filelock): New boolean create-lockfiles.
10643 (lock_file): If create_lockfiles is 0, do nothing. (Bug#11227)
10644
10645 2012-05-09 Michael Albinus <michael.albinus@gmx.de>
10646
10647 * dbusbind.c (xd_registered_buses): New internal Lisp object.
10648 Rename all occurences of Vdbus_registered_buses to xd_registered_buses.
10649 (syms_of_dbusbind): Remove declaration of Vdbus_registered_buses.
10650 Initialize xd_registered_buses.
10651
10652 2012-05-09 Paul Eggert <eggert@cs.ucla.edu>
10653
10654 Untag more efficiently if USE_LSB_TAG.
10655 This is based on a proposal by YAMAMOTO Mitsuharu in
10656 <http://lists.gnu.org/archive/html/emacs-devel/2008-01/msg01876.html>.
10657 For an admittedly artificial (nth 8000 longlist) benchmark on
10658 Fedora 15 x86-64, this yields a 25% CPU speedup. Also, it shrinks
10659 Emacs's overall text size by 1%.
10660 * lisp.h (XUNTAG): New macro.
10661 (XCONS, XVECTOR, XSTRING, XSYMBOL, XFLOAT, XMISC, XPROCESS, XWINDOW)
10662 (XTERMINAL, XSUBR, XBUFFER, XCHAR_TABLE, XSUB_CHAR_TABLE, XBOOL_VECTOR)
10663 (XSETTYPED_PSEUDOVECTOR, XHASH_TABLE, TYPED_PSEUDOVECTORP): Use it.
10664 * eval.c (Fautoload):
10665 * font.h (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT):
10666 * frame.h (XFRAME): Use XUNTAG.
10667
10668 Port recent dbusbind.c changes to 32-bit --with-wide-int.
10669 * dbusbind.c (xd_append_arg, xd_retrieve_arg, Fdbus_message_internal):
10670 Remove unportable assumptions about print widths of types like
10671 dbus_uint32_t.
10672 (xd_get_connection_address, Fdbus_init_bus): Cast Emacs integer to
10673 intptr_t when converting between pointer and integer, to avoid GCC
10674 warnings about wrong width.
10675
10676 2012-05-09 Eli Zaretskii <eliz@gnu.org>
10677
10678 * w32proc.c (new_child): Force Windows to reserve only 64KB of
10679 stack for each reader_thread, instead of defaulting to 8MB
10680 determined by the linker. This avoids failures in creating
10681 subprocesses on Windows 7, see the discussion in this thread:
10682 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00119.html.
10683
10684 2012-05-07 Jérémy Compostella <jeremy.compostella@gmail.com>
10685
10686 Fix up display of the *Minibuf-0* buffer in the mini window.
10687 * keyboard.c (read_char): Don't clear the echo area if there's no
10688 message to clear.
10689 * xdisp.c (redisplay_internal): Redisplay the mini window (with the
10690 contents of *Minibuf-0*) if there's no message displayed in its stead.
10691
10692 2012-05-07 Michael Albinus <michael.albinus@gmx.de>
10693
10694 * dbusbind.c (XD_DEBUG_MESSAGE): Don't print message twice in
10695 batch mode.
10696
10697 2012-05-06 Chong Yidong <cyd@gnu.org>
10698
10699 * lisp.mk (lisp): Update.
10700
10701 2012-05-05 Jim Meyering <meyering@redhat.com>
10702
10703 * w32font.c (fill_in_logfont): NUL-terminate a string (Bug#11372).
10704
10705 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
10706
10707 * data.c (PUT_ERROR): New macro.
10708 (syms_of_data): Use it. Add new error type `user-error'.
10709 * undo.c (user_error): New function.
10710 (Fprimitive_undo): Use it.
10711 * print.c (print_error_message): Adjust print style for `user-error'.
10712 * keyboard.c (user_error): New function.
10713 (Fexit_recursive_edit, Fabort_recursive_edit): Use it.
10714
10715 2012-05-03 Paul Eggert <eggert@cs.ucla.edu>
10716
10717 Do not limit current-time-string to years 1000..9999.
10718 * editfns.c (TM_YEAR_IN_ASCTIME_RANGE): Remove.
10719 (Fcurrent_time_string): Support any year that is supported by the
10720 underlying localtime representation. Don't use asctime, as it
10721 has undefined behavior for years outside the range -999..9999.
10722
10723 2012-05-02 Paul Eggert <eggert@cs.ucla.edu>
10724
10725 Fix race conditions involving setenv, gmtime, localtime, asctime.
10726 Without this fix, interrupts could mess up code that uses these
10727 nonreentrant functions, since setting TZ invalidates existing
10728 tm_zone or tzname values, and since most of these functions return
10729 pointers to static storage.
10730 * editfns.c (format_time_string, Fdecode_time, Fencode_time)
10731 (Fcurrent_time_string, Fcurrent_time_zone, Fset_time_zone_rule):
10732 Grow the critical sections to include not just invoking
10733 localtime/gmtime, but also accessing these functions' results
10734 including their tm_zone values if any, and any related TZ setting.
10735 (format_time_string): Last arg is now struct tm *, not struct tm **,
10736 so that the struct tm is saved in the critical section.
10737 All callers changed. Simplify allocation of initial buffer, partly
10738 motivated by the fact that memory allocation needs to be outside
10739 the critical section.
10740
10741 2012-05-02 Dmitry Antipov <dmantipov@yandex.ru>
10742
10743 * intervals.c (adjust_intervals_for_insertion): Initialize `newi'
10744 with RESET_INTERVAL.
10745
10746 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
10747 Remove duplicated buffer name initialization.
10748
10749 2012-05-02 Jim Meyering <jim@meyering.net>
10750
10751 * xterm.c (x_term_init): Use memcpy instead of strncpy (Bug#11373).
10752
10753 * xfns.c (x_window): Use xstrdup (Bug#11375).
10754
10755 2012-05-02 Eli Zaretskii <eliz@gnu.org>
10756
10757 * xdisp.c (pos_visible_p): If already at a newline from the
10758 display string before the 'while' loop, don't walk back the glyphs
10759 from it3.glyph_row. Solves assertion violation when the display
10760 string begins with a newline (egg.el). (Bug#11367)
10761
10762 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
10763
10764 * keyboard.c (Fexecute_extended_command, Vsuggest_key_bindings):
10765 Move to simple.el.
10766
10767 2012-05-01 Glenn Morris <rgm@gnu.org>
10768
10769 * syssignal.h: Remove reference to BROKEN_SIGINFO (last used in
10770 s/ptx4.h), BROKEN_SIGTSTP (last used in m/ustation.h, m/dpx2.h),
10771 and BROKEN_SIGURG (was in s/gnu-linux.h prior to 2008-02-10).
10772 All were removed before 23.1.
10773
10774 * dispnew.c: Remove HAVE_LIBNCURSES test;
10775 it is always true on relevant platforms.
10776
10777 * Makefile.in (LD_SWITCH_X_SITE_RPATH):
10778 Rename from LD_SWITCH_X_SITE_AUX_RPATH.
10779
10780 * Makefile.in (LD_SWITCH_X_SITE_AUX): Remove; no longer used.
10781
10782 2012-04-30 Andreas Schwab <schwab@linux-m68k.org>
10783
10784 * .gdbinit (xpr): Remove checks for no longer existing misc types.
10785 (xintfwd, xboolfwd, xobjfwd, xbufobjfwd, xkbobjfwd, xbuflocal):
10786 Remove.
10787
10788 2012-04-28 Paul Eggert <eggert@cs.ucla.edu>
10789
10790 Do not avoid creating empty evaporating overlays (Bug#9642).
10791 * buffer.c (Fmove_overlay): Revert the change of 2012-04-23.
10792 That is, do not delete an evaporating overlay if it becomes
10793 empty after its bounds are adjusted to fit within its buffer.
10794 This fix caused other problems, and I'm reverting it until we get
10795 to the bottom of them.
10796
10797 2012-04-27 Chong Yidong <cyd@gnu.org>
10798
10799 * xselect.c (x_convert_selection): Initialize a pointer (Bug#11315).
10800
10801 2012-04-27 Eli Zaretskii <eliz@gnu.org>
10802
10803 * xdisp.c (pos_visible_p): If the window start position is beyond
10804 ZV, start the display from buffer beginning. Prevents assertion
10805 violation in init_iterator when the minibuffer window is scrolled
10806 via the scroll bar.
10807
10808 * window.c (window_scroll_pixel_based): Likewise.
10809
10810 2012-04-27 Chong Yidong <cyd@gnu.org>
10811
10812 * keymap.c (where_is_internal): Doc fix (Bug#10872).
10813
10814 2012-04-27 Glenn Morris <rgm@gnu.org>
10815
10816 * fileio.c (Fcopy_file, Fset_file_selinux_context):
10817 Ignore ENOTSUP failures from setfilecon functions. (Bug#11245)
10818
10819 2012-04-27 Eli Zaretskii <eliz@gnu.org>
10820
10821 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers):
10822 Don't overrun array limits of glyph row's used[] array. (Bug#11288)
10823
10824 2012-04-26 Eli Zaretskii <eliz@gnu.org>
10825
10826 * xdisp.c (IT_DISPLAYING_WHITESPACE): In addition to the loaded
10827 display element, check also the underlying string or buffer
10828 character. (Bug#11341)
10829
10830 * w32menu.c: Include w32heap.h.
10831 (add_menu_item): If the call to AppendMenuW (via
10832 unicode_append_menu) fails, disable Unicode menus only if we are
10833 running on Windows 9X/Me.
10834
10835 2012-04-24 Andreas Schwab <schwab@linux-m68k.org>
10836
10837 * .gdbinit (xpr): Handle USE_2_TAGS_FOR_INTS.
10838 (xgetint): Add missing shift for LSB tags.
10839
10840 2012-04-24 Martin Rudalics <rudalics@gmx.at>
10841
10842 * keyboard.c (read_char): Don't wipe echo area for select window
10843 events: These might get delayed via `mouse-autoselect-window'
10844 (Bug#11304).
10845
10846 2012-04-24 Juanma Barranquero <lekktu@gmail.com>
10847
10848 * gnutls.c (init_gnutls_functions): Protect against (unlikely)
10849 manipulation of :loaded-from data.
10850
10851 2012-04-23 Juanma Barranquero <lekktu@gmail.com>
10852
10853 * gnutls.c (init_gnutls_functions): The value of :loaded-from is
10854 now a cons (bug#11311).
10855
10856 2012-04-23 Paul Eggert <eggert@cs.ucla.edu>
10857
10858 Do not create empty overlays with the evaporate property (Bug#9642).
10859 * buffer.c (Fmove_overlay): Delete an evaporating overlay
10860 if it becomes empty after its bounds are adjusted to fit within
10861 its buffer. Without this fix, in a nonempty buffer (let ((o
10862 (make-overlay 1 2))) (overlay-put o 'evaporate t) (move-overlay o 0 1))
10863 yields an empty overlay that has the evaporate property, which is
10864 not supposed to happen.
10865
10866 Fix minor GTK3 problems found by static checking.
10867 * emacsgtkfixed.c (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
10868 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
10869 (struct _EmacsFixedClass, emacs_fixed_get_type):
10870 Move decls here from emacsgtkfixed.h, since they needn't be public.
10871 (emacs_fixed_get_type): Now static.
10872 (emacs_fixed_class_init): Omit unused local.
10873 (emacs_fixed_child_type): Remove; unused.
10874 * emacsgtkfixed.h (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
10875 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
10876 (struct _EmacsFixedClass): Move to emacsgtkfixed.c.
10877 (EMACS_FIXED_CLASS, EMACS_IS_FIXED, EMACS_IS_FIXED_CLASS)
10878 (EMACS_FIXED_GET_CLASS): Remove; unused.
10879 * gtkutil.c (xg_create_frame_widgets) [!HAVE_GTK3]: Omit unused local.
10880
10881 * keyboard.c (handle_async_input): Define only if SYNC_INPUT || SIGIO.
10882 Problem reported by Juanma Barranquero for Windows -Wunused-function.
10883
10884 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
10885
10886 Modernize and clean up gmalloc.c to assume C89 (Bug#9119).
10887 * gmalloc.c (_MALLOC_INTERNAL, _MALLOC_H, _PP, __ptr_t)
10888 (__malloc_size_t, __malloc_ptrdiff_t):
10889 Remove. All uses removed, replaced by the definiens if needed,
10890 since we can assume C89 or better now.
10891 Include <stdint.h>, for PTRDIFF_MAX, uintptr_t.
10892 (protect_malloc_state, align, get_contiguous_space)
10893 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
10894 (malloc_atfork_handler_child, malloc_enable_thread)
10895 (malloc_initialize_1, __malloc_initialize, morecore_nolock)
10896 (_malloc_internal_nolock, _malloc_internal, malloc, _malloc)
10897 (_free, _realloc, _free_internal_nolock, _free_internal, free, cfree)
10898 (special_realloc, _realloc_internal_nolock, _realloc_internal)
10899 (realloc, calloc, __default_morecore, memalign, valloc, checkhdr)
10900 (freehook, mallochook, reallochook, mabort, mcheck, mprobe):
10901 Define using prototypes, not old style.
10902 (align, _malloc_internal_nolock, _free_internal_nolock, memalign):
10903 Don't assume ptrdiff_t and uintptr_t are no wider than unsigned long.
10904 (align): Don't assume that signed integer overflow wraps around.
10905 Omit unused local var.
10906 (malloc_initialize_1, morecore_nolock, _malloc_internal_nolock)
10907 (_free_internal_nolock, memalign, mallochook, reallochook):
10908 Omit no-longer-needed casts.
10909 (valloc): Use getpagesize, not __getpagesize.
10910 (MAGICWORD, MAGICFREE): Now randomish size_t values, not 32-bit.
10911 (struct hdr): The 'magic' member is now size_t, not unsigned long.
10912
10913 * dbusbind.c (XD_DBUS_VALIDATE_OBJECT): Define only if needed.
10914
10915 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
10916
10917 Move functions from C to Lisp. Make non-blocking method calls
10918 the default. Implement further D-Bus standard interfaces.
10919
10920 * dbusbind.c (DBUS_NUM_MESSAGE_TYPES): Declare.
10921 (QCdbus_request_name_allow_replacement)
10922 (QCdbus_request_name_replace_existing)
10923 (QCdbus_request_name_do_not_queue)
10924 (QCdbus_request_name_reply_primary_owner)
10925 (QCdbus_request_name_reply_in_queue)
10926 (QCdbus_request_name_reply_exists)
10927 (QCdbus_request_name_reply_already_owner): Move to dbus.el.
10928 (QCdbus_registered_serial, QCdbus_registered_method)
10929 (QCdbus_registered_signal): New Lisp objects.
10930 (XD_DEBUG_MESSAGE): Use sizeof.
10931 (XD_MESSAGE_TYPE_TO_STRING, XD_OBJECT_TO_STRING)
10932 (XD_DBUS_VALIDATE_BUS_ADDRESS, XD_DBUS_VALIDATE_OBJECT)
10933 (XD_DBUS_VALIDATE_BUS_NAME, XD_DBUS_VALIDATE_PATH)
10934 (XD_DBUS_VALIDATE_INTERFACE, XD_DBUS_VALIDATE_MEMBER): New macros.
10935 (XD_CHECK_DBUS_SERIAL): Rename from CHECK_DBUS_SERIAL_GET_SERIAL.
10936 (xd_signature, xd_append_arg): Allow float for integer types.
10937 (xd_get_connection_references): New function.
10938 (xd_get_connection_address): Rename from xd_initialize.
10939 Return cached address.
10940 (xd_remove_watch): Do not unset $DBUS_SESSION_BUS_ADDRESS.
10941 (xd_close_bus): Rename from Fdbus_close_bus. Not needed on Lisp
10942 level.
10943 (Fdbus_init_bus): New optional arg PRIVATE. Cache address.
10944 Return number of refcounts.
10945 (Fdbus_get_unique_name): Make stronger parameter check.
10946 (Fdbus_message_internal): New defun.
10947 (Fdbus_call_method, Fdbus_call_method_asynchronously)
10948 (Fdbus_method_return_internal, Fdbus_method_error_internal)
10949 (Fdbus_send_signal, Fdbus_register_service)
10950 (Fdbus_register_signal, Fdbus_register_method): Move to dbus.el.
10951 (xd_read_message_1): Obey new structure of Vdbus_registered_objects.
10952 (xd_read_queued_messages): Obey new structure of Vdbus_registered_buses.
10953 (Vdbus_compiled_version, Vdbus_runtime_version)
10954 (Vdbus_message_type_invalid, Vdbus_message_type_method_call)
10955 (Vdbus_message_type_method_return, Vdbus_message_type_error)
10956 (Vdbus_message_type_signal): New defvars.
10957 (Vdbus_registered_buses, Vdbus_registered_objects_table):
10958 Adapt docstring.
10959
10960 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
10961
10962 Fix GC_MALLOC_CHECK debugging output on 64-bit hosts.
10963 * alloc.c (emacs_blocked_malloc) [GC_MALLOC_CHECK]:
10964 Do not assume ptrdiff_t is the same width as 'int'.
10965
10966 * alloc.c: Handle unusual debugging option combinations.
10967 (GC_CHECK_MARKED_OBJECTS): Undef if ! GC_MARK_STACK,
10968 since the two debugging options are incompatible.
10969 (GC_MALLOC_CHECK): Similarly, undef if GC_CHECK_MARKED_OBJECTS
10970 is defined.
10971 (mem_init, mem_insert, mem_insert_fixup):
10972 Define if GC_MARK_STACK || GC_MALLOC_CHECK.
10973 (NEED_MEM_INSERT): Remove; no longer needed.
10974
10975 2012-04-22 Leo Liu <sdl.web@gmail.com>
10976
10977 * sysdep.c (list_system_processes): Support Darwin (Bug#5725).
10978
10979 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
10980
10981 * sysdep.c [__FreeBSD__]: Minor cleanups.
10982 (list_system_processes, system_process_attributes) [__FreeBSD__]:
10983 Use Emacs indenting style more consistently. Avoid some casts.
10984 Use 'double' consistently rather than mixing 'float' and 'double'.
10985
10986 2012-04-21 Eduard Wiebe <usenet@pusto.de>
10987
10988 * sysdep.c (list_system_processes, system_process_attributes):
10989 Add implementation for FreeBSD (Bug#5243).
10990
10991 2012-04-21 Andreas Schwab <schwab@linux-m68k.org>
10992
10993 * lisp.mk (lisp): Update.
10994
10995 2012-04-20 Paul Eggert <eggert@cs.ucla.edu>
10996
10997 * keyboard.c (process_pending_signals): Define only if SYNC_INPUT.
10998 It is never used otherwise.
10999
11000 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
11001
11002 * print.c (print_preprocess): Only check print_depth if print-circle
11003 is nil.
11004 (print_object): Check for cycles even when print-circle is nil and
11005 print-gensym is t, but only check print_depth if print-circle is nil.
11006
11007 2012-04-20 Chong Yidong <cyd@gnu.org>
11008
11009 * process.c (wait_reading_process_output): If EIO occurs on a pty,
11010 set the status to "failed" and ensure that sentinel is run.
11011
11012 2012-04-20 Glenn Morris <rgm@gnu.org>
11013
11014 * process.c (Fset_process_inherit_coding_system_flag)
11015 (Fset_process_query_on_exit_flag): Doc fix (mention return value).
11016 (Fmake_network_process, Fmake_serial_process): Doc fix.
11017
11018 2012-04-20 Eli Zaretskii <eliz@gnu.org>
11019
11020 * xdisp.c (string_buffer_position_lim): Limit starting position to
11021 BEGV.
11022 (set_cursor_from_row): If called for a mode-line or header-line
11023 row, return zero immediately.
11024 (try_cursor_movement): If inside continuation line, don't back up
11025 farther than the first row after the header line, if any.
11026 Don't consider the header-line row as "partially visible", even if
11027 MATRIX_ROW_PARTIALLY_VISIBLE_P returns non-zero. (Bug#11261)
11028
11029 2012-04-20 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
11030
11031 * lread.c (lisp_file_lexically_bound_p): Fix hang at ";-*-\n"
11032 (bug#11238).
11033
11034 2012-04-20 Teodor Zlatanov <tzz@lifelogs.com>
11035 2012-04-18 Paul Eggert <eggert@cs.ucla.edu>
11036
11037 configure: new option --enable-gcc-warnings (Bug#11207)
11038 * Makefile.in (C_WARNINGS_SWITCH): Remove.
11039 (WARN_CFLAGS, WERROR_CFLAGS): New macros.
11040 (ALL_CFLAGS): Use new macros rather than old.
11041 * process.c: Ignore -Wstrict-overflow to work around GCC bug 52904.
11042 * regex.c: Ignore -Wstrict-overflow. If !emacs, also ignore
11043 -Wunused-but-set-variable, -Wunused-function, -Wunused-macros,
11044 -Wunused-result, -Wunused-variable. This should go away once
11045 the Emacs and Gnulib regex code is merged.
11046 (xmalloc, xrealloc): Now static.
11047
11048 2012-04-17 Paul Eggert <eggert@cs.ucla.edu>
11049
11050 * dired.c (Fsystem_groups): Remove unused local.
11051
11052 2012-04-17 Glenn Morris <rgm@gnu.org>
11053
11054 * dired.c (Fsystem_users): Doc fix.
11055
11056 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
11057
11058 * dired.c (Fsystem_users, Fsystem_groups): New functions. (Bug#7900)
11059 (syms_of_dired): Add them.
11060
11061 2012-04-16 Paul Eggert <eggert@cs.ucla.edu>
11062
11063 Fix minor alloc.c problems found by static checking.
11064 * alloc.c (_malloc_internal, _free_internal) [!DOUG_LEA_MALLOC]:
11065 New extern decls, to avoid calling undeclared functions.
11066 (dont_register_blocks): Define if ((!SYSTEM_MALLOC && !SYNC_INPUT)
11067 && GC_MALLOC_CHECK), not if ((GC_MARK_STACK || defined
11068 GC_MALLOC_CHECK) && GC_MALLOC_CHECK), to match when it's used.
11069 (NEED_MEM_INSERT): New macro.
11070 (mem_insert, mem_insert_fixup) [!NEED_MEM_INSERT]: Remove; unused.
11071 Remove one incorrect comment and fix another.
11072
11073 Fix minor ralloc.c problems found by static checking.
11074 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
11075 * ralloc.c (ALIGNED, ROUND_TO_PAGE, HEAP_PTR_SIZE)
11076 (r_alloc_size_in_use, r_alloc_freeze, r_alloc_thaw): Remove; unused.
11077 (r_alloc_sbrk): Now static.
11078
11079 Improve ralloc.c interface checking.
11080 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
11081 * buffer.c (ralloc_reset_variable, r_alloc, r_re_alloc)
11082 (r_alloc_free) [REL_ALLOC]: Move decls from here ...
11083 * lisp.h (r_alloc, r_alloc_free, r_re_alloc, r_alloc_reset_variable)
11084 [REL_ALLOC]: ... to here, to check interface.
11085 * m/ia64.h (r_alloc, r_alloc_free) [REL_ALLOC && !_MALLOC_INTERNAL]:
11086 Remove decls. This fixes an "It stinks!".
11087
11088 * alloc.c (which_symbols): Fix alignment issue / type clash.
11089
11090 2012-04-15 Andreas Schwab <schwab@linux-m68k.org>
11091
11092 * lisp.h (struct Lisp_Symbol): Remove explicit padding.
11093 (struct Lisp_Misc_Any): Likewise.
11094 (struct Lisp_Free): Likewise.
11095 * alloc.c (union aligned_Lisp_Symbol): Define.
11096 (SYMBOL_BLOCK_SIZE, struct symbol_block): Use union
11097 aligned_Lisp_Symbol instead of struct Lisp_Symbol.
11098 (union aligned_Lisp_Misc): Define.
11099 (MARKER_BLOCK_SIZE, struct marker_block): Use union
11100 aligned_Lisp_Misc instead of union Lisp_Misc.
11101 (Fmake_symbol, allocate_misc, gc_sweep): Adjust.
11102
11103 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
11104
11105 Make GC_MAKE_GCPROS_NOOPS the default (Bug#9926).
11106 * lisp.h (GC_MARK_STACK): Default to GC_MAKE_GCPROS_NOOPS.
11107 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/gnu.h, s/irix6-5.h, s/msdos.h:
11108 * s/netbsd.h, s/sol2-6.h:
11109 Remove definition of GC_MARK_STACK, since the default now works.
11110 * s/aix4-2.h, s/hpux10-20.h, s/unixware.h:
11111 Define GC_MARK_STACK to GC_USE_GCPROS_AS_BEFORE, since that's
11112 no longer the default.
11113 * s/gnu-linux.h (GC_MARK_STACK): Adjust to change in default.
11114
11115 2012-04-14 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
11116
11117 * lread.c (lisp_file_lexically_bound_p):
11118 Fix hang at ";-*-\n" (bug#11238).
11119
11120 2012-04-14 Eli Zaretskii <eliz@gnu.org>
11121
11122 * xdisp.c (find_last_unchanged_at_beg_row): Don't consider a row
11123 "unchanged" if its end.pos is beyond ZV. (Bug#11199)
11124
11125 2012-04-14 Jan Djärv <jan.h.d@swipnet.se>
11126
11127 * nsterm.m (constrainFrameRect): Always constrain when there is only
11128 one screen (Bug#10962).
11129
11130 2012-04-13 Ken Brown <kbrown@cornell.edu>
11131
11132 * s/cygwin.h (PTY_OPEN): Don't try to close a bogus file descriptor.
11133
11134 2012-04-13 Reuben Thomas <rrt@sc3d.org>
11135
11136 * indent.c (Fmove_to_column): Change interactive spec (Bug#739).
11137
11138 2012-04-11 Daniel Colascione <dancol@dancol.org>
11139
11140 * s/cygwin.h: The vfork the #define in cygwin.h was protecting
11141 against is gone. It's better to use vfork now so that when Cygwin
11142 gains a new, working vfork, we use it automatically (bug#10398).
11143
11144 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
11145
11146 * window.c (save_window_save): Obey window-point-insertion-type.
11147
11148 2012-04-11 Glenn Morris <rgm@gnu.org>
11149
11150 * Makefile.in (GNUSTEP_CFLAGS): Rename from C_SWITCH_X_SYSTEM.
11151
11152 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
11153
11154 * alloc.c (lisp_align_malloc): Remove unneeded prototype.
11155
11156 2012-04-10 Jason S. Cornez <jcornez@ravenpack.com> (tiny change)
11157
11158 * keyboard.c: Override inhibit-quit after the third C-g (bug#6585).
11159 (force_quit_count): New var.
11160 (handle_interrupt): Use it.
11161
11162 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
11163
11164 * w32.c (w32_delayed_load): Record the full path of the library
11165 being loaded (bug#10424).
11166
11167 2012-04-09 Glenn Morris <rgm@gnu.org>
11168
11169 * doc.c (Fsnarf_documentation): Check variables, functions are bound,
11170 not just in the obarray, before snarfing them. (Bug#11036)
11171
11172 * Makefile.in ($(leimdir)/leim-list.el):
11173 Pass EMACS rather than BUILT_EMACS.
11174
11175 2012-04-09 Teodor Zlatanov <tzz@lifelogs.com>
11176
11177 * process.c (make_process):
11178 * process.h: Add integer `gnutls_handshakes_tried' member to
11179 process struct.
11180
11181 * gnutls.h: Add `GNUTLS_EMACS_HANDSHAKES_LIMIT' upper limit.
11182 Add convenience `GNUTLS_LOG2i' macro.
11183
11184 * gnutls.c (gnutls_log_function2i): Convenience log function.
11185 (emacs_gnutls_read): Use new log functions,
11186 `gnutls_handshakes_tried' process member, and
11187 `GNUTLS_EMACS_HANDSHAKES_LIMIT' to limit the number of handshake
11188 attempts per process (connection).
11189
11190 2012-04-09 Chong Yidong <cyd@gnu.org>
11191
11192 * eval.c (Fuser_variable_p, user_variable_p_eh)
11193 (lisp_indirect_variable): Functions deleted.
11194 (Fdefvar): Caller changed.
11195
11196 * callint.c (Finteractive, Fcall_interactively):
11197 * minibuf.c (Fread_variable): Callers changed.
11198
11199 2012-04-09 Eli Zaretskii <eliz@gnu.org>
11200
11201 * xdisp.c (set_cursor_from_row): If the display string appears in
11202 the buffer at position that is closer to point than the position
11203 after the display string, display the cursor on the first glyph of
11204 the display string. Fixes cursor display when a 'display' text
11205 property immediately follows invisible text. (Bug#11094)
11206
11207 2012-04-09 Paul Eggert <eggert@cs.ucla.edu>
11208
11209 composite.c: use 'double' consistently
11210 * composite.c (get_composition_id): Use 'double' consistently
11211 instead of converting 'float' to 'double' and vice versa; this is
11212 easier to understand and avoids a GCC warning.
11213
11214 2012-04-09 Glenn Morris <rgm@gnu.org>
11215
11216 * Makefile.in: Generate leim-list with bootstrap-emacs, in
11217 preparation for dumping it with emacs. (Bug#4789)
11218 (leimdir): New variable.
11219 ($(leimdir)/leim-list.el): New rule.
11220 (emacs$(EXEEXT)): Depend on leim-list.el.
11221
11222 * buffer.c (Qucs_set_table_for_input): Remove. (Bug#9821)
11223 (Fget_buffer_create): Don't call Qucs_set_table_for_input.
11224 (init_buffer_once, syms_of_buffer): Remove Qucs_set_table_for_input.
11225
11226 2012-04-08 Andreas Schwab <schwab@linux-m68k.org>
11227
11228 * lisp.h (struct Lisp_Symbol): Add explicit padding to ensure
11229 proper alignment.
11230
11231 2012-04-07 Juanma Barranquero <lekktu@gmail.com>
11232
11233 * xml.c (init_libxml2_functions) [WINDOWSNT]:
11234 Remove unused local variable.
11235
11236 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
11237
11238 Avoid unnecessary pointer scanning in garbage collection (Bug#10780).
11239 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS): New macro.
11240 (mark_memory): Mark Lisp_Objects only if pointers might hide in
11241 objects, as mark_maybe_pointer will catch them otherwise.
11242 (GC_LISP_OBJECT_ALIGNMENT): Remove; no longer needed.
11243 * s/gnu-linux.h (GC_LISP_OBJECT_ALIGNMENT) [__mc68000__]: Likewise.
11244
11245 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
11246
11247 Fix typo that broke non-Windows builds.
11248 * xml.c (libxml2_loaded_p) [!!WINDOWSNT]: 'inine' -> 'inline'.
11249
11250 2012-04-07 Eli Zaretskii <eliz@gnu.org>
11251
11252 Support building on MS-Windows with libxml2.
11253
11254 * makefile.w32-in (OBJ2): Add xml.$(O).
11255 (GLOBAL_SOURCES): Add xml.c.
11256 ($(BLD)/xml.$(O)): New dependency list.
11257
11258 * xml.c (DEF_XML2_FN, LOAD_XML2_FN) [WINDOWSNT]: New macros.
11259 (fn_htmlReadMemory, fn_xmlReadMemory, fn_xmlDocGetRootElement)
11260 (fn_xmlFreeDoc, fn_xmlCleanupParser, fn_xmlCheckVersion)
11261 [!WINDOWSNT]: New macros.
11262 (init_libxml2_functions, libxml2_loaded_p): New functions.
11263 (parse_region): Call fn_xmlCheckVersion instead of using the macro
11264 LIBXML_TEST_VERSION. Call libxml2 functions via the fn_* macros.
11265 (xml_cleanup_parser): New function, export for fn_xmlCleanupParser.
11266 Calls xmlCleanupParser only if libxml2 was loaded (or statically
11267 linked in).
11268 (Flibxml_parse_html_region, Flibxml_parse_xml_region):
11269 Call init_libxml2_functions before calling libxml2 functions.
11270 (syms_of_xml) <Qlibxml2_dll>: DEFSYM it.
11271
11272 * emacs.c: Don't include libxml/parser.h.
11273 (shut_down_emacs): Call xml_cleanup_parser, instead of calling
11274 xmlCleanupParser directly.
11275
11276 * lisp.h [HAVE_LIBXML2]: Add prototype for xml_cleanup_parser.
11277
11278 2012-04-07 Eli Zaretskii <eliz@gnu.org>
11279
11280 * indent.c (Fvertical_motion): If there is a display string at
11281 point, use it.vpos to compute how many lines to backtrack after
11282 move_it_to point. (Bug#11133)
11283
11284 2012-04-06 Eli Zaretskii <eliz@gnu.org>
11285
11286 * buffer.h (FETCH_CHAR, FETCH_MULTIBYTE_CHAR):
11287 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH): Add comments
11288 about subtle differences between FETCH_CHAR* and STRING_CHAR*
11289 macros related to unification of CJK characters. For the details,
11290 see the discussion following the message here:
11291 http://debbugs.gnu.org/cgi/bugreport.cgi?bug=11073#14.
11292
11293 2012-04-04 Chong Yidong <cyd@gnu.org>
11294
11295 * keyboard.c (Vdelayed_warnings_list): Doc fix.
11296
11297 2012-04-01 Eli Zaretskii <eliz@gnu.org>
11298
11299 * w32menu.c (simple_dialog_show, add_menu_item): Use SAFE_ALLOCA
11300 instead of alloca. (Bug#11138)
11301
11302 2012-04-01 Andreas Schwab <schwab@linux-m68k.org>
11303
11304 * w32menu.c (is_simple_dialog): Properly check lisp types.
11305 (Bug#11141)
11306
11307 2012-03-31 Eli Zaretskii <eliz@gnu.org>
11308
11309 * xdisp.c (move_it_by_lines): When DVPOS is positive, and the
11310 position we get to after a call to move_it_to fails the
11311 IS_POS_VALID_AFTER_MOVE_P test, move to the next buffer position
11312 only if we wind up in a string from display property. (Bug#11063)
11313
11314 * window.c (Fdelete_other_windows_internal): Invalidate the row
11315 and column information about mouse highlight, so that redisplay
11316 restores it after reallocating the glyph matrices. (Bug#7464)
11317
11318 * xdisp.c (set_cursor_from_row): If `cursor' property on a display
11319 string comes from a `display' text property, use the buffer
11320 position of that property as if we actually saw that position in
11321 the row's glyphs.
11322 (move_it_by_lines): Remove the assertion that
11323 "it->current_x == 0 && it->hpos == 0" which can be legitimately
11324 violated when there's a before-string at the beginning of a line.
11325 (Bug#11063)
11326
11327 2012-03-30 Eli Zaretskii <eliz@gnu.org>
11328
11329 * xdisp.c (append_space_for_newline): If the default face was
11330 remapped, use the remapped face for the appended newline.
11331 (extend_face_to_end_of_line): Use the remapped default face for
11332 extending the face to the end of the line.
11333 (display_line): Call extend_face_to_end_of_line when the default
11334 face was remapped. (Bug#11068)
11335
11336 2012-03-29 Eli Zaretskii <eliz@gnu.org>
11337
11338 * s/ms-w32.h: Discourage from defining HAVE_GETCWD.
11339
11340 2012-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
11341
11342 * keyboard.c (safe_run_hooks_error): Don't unquote strings.
11343
11344 2012-03-27 Glenn Morris <rgm@gnu.org>
11345
11346 * search.c (Fword_search_backward_lax, Fword_search_forward_lax):
11347 Doc fixes.
11348
11349 2012-03-26 Kenichi Handa <handa@m17n.org>
11350
11351 * dispextern.h (struct glyph): Fix previous change. Change the
11352 bit length of glyphless.ch to 25 (Bug#11082).
11353
11354 2012-03-26 Chong Yidong <cyd@gnu.org>
11355
11356 * keyboard.c (Vselection_inhibit_update_commands): New variable.
11357 (command_loop_1): Use it; inhibit selection update for
11358 handle-select-window too (Bug#8996).
11359
11360 2012-03-25 Fabrice Popineau <fabrice.popineau@supelec.fr>
11361
11362 * w32heap.c (_heap_init, _heap_term): Remove dead MSVC-specific code.
11363
11364 2012-03-25 Kenichi Handa <handa@m17n.org>
11365
11366 * dispextern.h (struct glyph): Change the bit length of
11367 glyphless.ch to 22 to make the member glyphless fit in 32 bits.
11368
11369 2012-03-24 Eli Zaretskii <eliz@gnu.org>
11370
11371 * s/ms-w32.h (tzname): Include time.h before redirecting to
11372 _tzname. Fixes the MSVC build. (Bug#9960)
11373
11374 2012-03-24 Andreas Schwab <schwab@linux-m68k.org>
11375
11376 * xdisp.c (produce_glyphless_glyph): Limit length of acronym to 6
11377 characters.
11378
11379 * xterm.c (XTread_socket): Only modify handling_signal if
11380 !SYNC_INPUT. (Bug#11080)
11381
11382 2012-03-23 Eli Zaretskii <eliz@gnu.org>
11383
11384 * bidi.c (bidi_fetch_char): Use STRING_CHAR_AND_LENGTH instead of
11385 FETCH_MULTIBYTE_CHAR followed by CHAR_BYTES. Prevents crashes
11386 when fetching a multibyte character consumes more bytes than
11387 CHAR_BYTES returns, due to unification of CJK characters in
11388 string_char. (Bug#11073)
11389
11390 2012-03-23 Troels Nielsen <bn.troels@gmail.com> (tiny change)
11391
11392 * process.c (wait_reading_process_output): Handle pty disconnect
11393 by refraining from sending oneself a SIGCHLD (bug#10933).
11394
11395 2012-03-22 Chong Yidong <cyd@gnu.org>
11396
11397 * dispextern.h (struct it): New member string_from_prefix_prop_p.
11398
11399 * xdisp.c (push_prefix_prop): Rename from push_display_prop.
11400 Mark string as coming from a prefix property.
11401 (handle_face_prop): Use default face for prefix strings (Bug#4281).
11402 (pop_it, reseat_1): Save and restore string_from_prefix_prop_p.
11403
11404 2012-03-21 Chong Yidong <cyd@gnu.org>
11405
11406 * xfaces.c (Vface_remapping_alist): Doc fix.
11407
11408 2012-03-20 Eli Zaretskii <eliz@gnu.org>
11409
11410 * w32proc.c (Fw32_set_console_codepage)
11411 (Fw32_set_console_output_codepage, Fw32_get_codepage_charset):
11412 Doc fixes.
11413
11414 2012-03-20 Chong Yidong <cyd@gnu.org>
11415
11416 * dispnew.c (Fredisplay, Vredisplay_preemption_period): Update doc
11417 to reflect default non-nil value of redisplay-dont-pause.
11418
11419 2012-03-19 Kenichi Handa <handa@m17n.org>
11420
11421 * ftfont.c (ftfont_drive_otf): Mask bits of character code to make
11422 it fit in a valid range (Bug#11003).
11423
11424 2012-03-18 Eli Zaretskii <eliz@gnu.org>
11425
11426 * xdisp.c (cursor_row_p): Even if the glyph row ends in a string
11427 that is not from display property, accept the row as a "cursor
11428 row" if one of the string's character has a non-nil `cursor'
11429 property. Fixes cursor positioning when there are newlines in
11430 overlay strings, e.g. in icomplete.el. (Bug#11035)
11431
11432 2012-03-12 Paul Eggert <eggert@cs.ucla.edu>
11433
11434 * buffer.c (compare_overlays): Don't assume args differ (Bug#6830).
11435
11436 2012-03-12 Chong Yidong <cyd@gnu.org>
11437
11438 * eval.c (inhibit_lisp_code): Rename from
11439 inhibit_window_configuration_change_hook; move from window.c.
11440
11441 * xfns.c (unwind_create_frame_1, Fx_create_frame):
11442 * window.c (run_window_configuration_change_hook)
11443 (syms_of_window): Callers changed.
11444
11445 2012-03-11 Chong Yidong <cyd@gnu.org>
11446
11447 * keymap.c (Fkey_description): Doc fix (Bug#9700).
11448
11449 * editfns.c (Fconstrain_to_field): Doc fix (Bug#9452).
11450
11451 2012-03-10 Chong Yidong <cyd@gnu.org>
11452
11453 * frame.c (other_visible_frames): Don't assume the selected frame
11454 is visible (Bug#10955).
11455
11456 2012-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
11457
11458 * buffer.c (compare_overlays): Avoid qsort's instability (bug#6830).
11459
11460 2012-03-08 Jan Djärv <jan.h.d@swipnet.se>
11461
11462 * gtkutil.c (x_wm_set_size_hint): Use one row in call to
11463 FRAME_TEXT_LINES_TO_PIXEL_HEIGHT so base_height is greater than
11464 zero (Bug#10954).
11465
11466 2012-03-03 Glenn Morris <rgm@gnu.org>
11467
11468 * alloc.c (Fgarbage_collect, misc-objects-consed): Doc fixes.
11469
11470 2012-03-02 Eli Zaretskii <eliz@gnu.org>
11471
11472 * xdisp.c (try_window_reusing_current_matrix): Don't move cursor
11473 position past the first glyph_row that ends at ZV. (Bug#10902)
11474 (redisplay_window, next_element_from_string): Fix typos in
11475 comments.
11476 (redisplay_window): Pass to move_it_vertically the margin in
11477 pixels, not in screen lines.
11478
11479 2012-03-02 Glenn Morris <rgm@gnu.org>
11480
11481 * buffer.c (buffer-list-update-hook): Doc fix.
11482
11483 2012-02-29 Eli Zaretskii <eliz@gnu.org>
11484
11485 * xdisp.c (get_overlay_strings_1): Under bidi redisplay, call
11486 push_it before setting up the iterator for the first overlay
11487 string, even if we have an empty string loaded.
11488 (next_overlay_string): If there's an empty string on the iterator
11489 stack, pop the stack. (Bug#10903)
11490
11491 2012-02-25 Paul Eggert <eggert@cs.ucla.edu>
11492
11493 Generalize fix for crash due to non-contiguous EMACS_INT (Bug#10780).
11494 Suggested by Stefan Monnier in
11495 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00692.html>.
11496 * alloc.c (widen_to_Lisp_Object): New static function.
11497 (mark_memory): Also mark Lisp_Objects by fetching pointer words
11498 and widening them to Lisp_Objects. This would work even if
11499 USE_LSB_TAG is defined and wide integers are used, which might
11500 happen in a future version of Emacs.
11501
11502 2012-02-25 Chong Yidong <cyd@gnu.org>
11503
11504 * fileio.c (Ffile_selinux_context, Fset_file_selinux_context):
11505 Doc fix.
11506
11507 * xselect.c (Fx_selection_exists_p): Doc fix.
11508 (x_clipboard_manager_save_all): Print an informative message
11509 before saving to clipboard manager.
11510
11511 2012-02-24 Chong Yidong <cyd@gnu.org>
11512
11513 * keyboard.c (process_special_events): Handle all X selection
11514 requests in kbd_buffer, not just the next one (Bug#8869).
11515
11516 2012-02-23 Chong Yidong <cyd@gnu.org>
11517
11518 * xfns.c (Fx_create_frame): Avoid window-configuration-change-hook
11519 call when setting menu-bar-lines and tool-bar-lines parameters.
11520 (unwind_create_frame_1): New helper function.
11521
11522 * window.c (inhibit_window_configuration_change_hook): New var.
11523 (run_window_configuration_change_hook): Obey it.
11524 (syms_of_window): Initialize it.
11525
11526 2012-02-22 Chong Yidong <cyd@gnu.org>
11527
11528 * xterm.c (x_draw_image_relief): Add missing type check for
11529 Vtool_bar_button_margin (Bug#10743).
11530
11531 2012-02-21 Chong Yidong <cyd@gnu.org>
11532
11533 * fileio.c (Vfile_name_handler_alist): Doc fix.
11534
11535 * buffer.c (Fget_file_buffer): Protect against invalid file
11536 handler return value.
11537
11538 2012-02-20 Paul Eggert <eggert@cs.ucla.edu>
11539
11540 * .gdbinit (xreload): Don't assume EMACS_INT fits in 'long'
11541 when computing $valmask.
11542
11543 Fix crash due to non-contiguous EMACS_INT (Bug#10780).
11544 * lisp.h (VALBITS): Move definition up, so that USE_LSB_TAG can use it.
11545 (USE_LSB_TAG): Do not define if UINTPTR_MAX >> VALBITS == 0.
11546 It's useless in that case, and it can cause problems on hosts
11547 that allocate halves of EMACS_INT values separately.
11548 Reported by Dan Horák. Diagnosed by Andreas Schwab in
11549 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=10780#30>.
11550 * mem-limits.h (EXCEEDS_LISP_PTR): Define to 0 on hosts where
11551 UINTPTR_MAX >> VALBITS == 0. This is required by the above change;
11552 it avoids undefined behavior on hosts where shifting right by more
11553 than the word width has undefined behavior.
11554
11555 2012-02-19 Chong Yidong <cyd@gnu.org>
11556
11557 * fileio.c (Ffile_name_directory, Ffile_name_nondirectory)
11558 (Funhandled_file_name_directory, Ffile_name_as_directory)
11559 (Fdirectory_file_name, Fexpand_file_name)
11560 (Fsubstitute_in_file_name): Protect against invalid file handler
11561 return values (Bug#10845).
11562
11563 2012-02-18 Eli Zaretskii <eliz@gnu.org>
11564
11565 * .gdbinit (pitx): Fix incorrect references to fields of the
11566 iterator stack.
11567
11568 2012-02-17 Chong Yidong <cyd@gnu.org>
11569
11570 * syntax.c (Fscan_lists): Doc fix (Bug#10833).
11571
11572 2012-02-15 Paul Eggert <eggert@cs.ucla.edu>
11573
11574 * image.c (MAX_IMAGE_SIZE): Increase from 6.0 to 10.0; see
11575 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00540.html>.
11576
11577 2012-02-15 Chong Yidong <cyd@gnu.org>
11578
11579 * eval.c (Fdefvar, Fdefconst): Doc fix; note that the variable is
11580 marked as special. Also, starting docstrings with * is obsolete.
11581
11582 2012-02-13 Andreas Schwab <schwab@linux-m68k.org>
11583
11584 * gnutls.c (emacs_gnutls_write): Fix last change.
11585
11586 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
11587
11588 * gnutls.c (emacs_gnutls_write): Set errno appropriately for
11589 send_process.
11590
11591 2012-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
11592
11593 * keymap.c (Fsingle_key_description): Handle char ranges.
11594
11595 2012-02-12 Chong Yidong <cyd@gnu.org>
11596
11597 * xdisp.c (handle_stop): Avoid assigning -1 to it->face_id here,
11598 as that creates a dangerous corner case.
11599
11600 * window.c (Fdelete_window_internal): Invalidate the mouse
11601 highlight (Bug#9904).
11602
11603 2012-02-12 Glenn Morris <rgm@gnu.org>
11604
11605 * xselect.c (Fx_own_selection_internal)
11606 (Fx_get_selection_internal, Fx_disown_selection_internal)
11607 (Fx_selection_owner_p, Fx_selection_exists_p): Doc fixes.
11608 * nsselect.m (Fx_own_selection_internal)
11609 (Fx_disown_selection_internal, Fx_selection_exists_p)
11610 (Fx_selection_owner_p, Fx_get_selection_internal):
11611 Sync docs and argument specs with the xselect.c versions.
11612
11613 2012-02-11 Lars Ingebrigtsen <larsi@gnus.org>
11614
11615 * gnutls.c (emacs_gnutls_write): Don't infloop if sendto fails.
11616
11617 2012-02-11 Eli Zaretskii <eliz@gnu.org>
11618
11619 * w32select.c (Fx_selection_exists_p): Sync doc string and
11620 argument list with xselect.c. (Bug#10783)
11621
11622 * w16select.c (Fx_selection_exists_p): Sync doc string and
11623 argument list with xselect.c. (Bug#10783)
11624
11625 2012-02-10 Glenn Morris <rgm@gnu.org>
11626
11627 * fns.c (Fsecure_hash): Doc fix.
11628
11629 2012-02-09 Kenichi Handa <handa@m17n.org>
11630
11631 * coding.c (produce_chars): Fix updating of src_end (Bug#10701).
11632
11633 2012-02-07 Chong Yidong <cyd@gnu.org>
11634
11635 * buffer.c (Fbuffer_local_variables)
11636 (buffer_lisp_local_variables): Handle unbound vars correctly;
11637 don't let Qunbound leak into Lisp.
11638
11639 2012-02-07 Glenn Morris <rgm@gnu.org>
11640
11641 * image.c (Fimagemagick_types): Doc fix.
11642
11643 * image.c (imagemagick-render-type): Change it from a lisp object
11644 to an integer. Move the doc here from the lisp manual.
11645 Treat all values not equal to 0 the same.
11646
11647 2012-02-06 Chong Yidong <cyd@gnu.org>
11648
11649 * doc.c (store_function_docstring): Avoid applying docstring of
11650 alias to base function (Bug#2603).
11651
11652 2012-02-04 Andreas Schwab <schwab@linux-m68k.org>
11653
11654 * .gdbinit (pp1, pv1): Remove redundant defines.
11655 (pr): Use pp.
11656
11657 2012-02-04 Chong Yidong <cyd@gnu.org>
11658
11659 * nsterm.m: Declare a global (Bug#10694).
11660
11661 2012-02-04 Eli Zaretskii <eliz@gnu.org>
11662
11663 * w32.c (get_emacs_configuration_options):
11664 Include --enable-checking, if specified, in the return value.
11665
11666 2012-02-04 Martin Rudalics <rudalics@gmx.at>
11667
11668 * dispnew.c (change_frame_size_1): Calculate new_frame_total_cols
11669 after rounding frame sizes. (Bug#9723)
11670
11671 2012-02-04 Eli Zaretskii <eliz@gnu.org>
11672
11673 * keyboard.c (adjust_point_for_property): Don't position point
11674 before BEGV. (Bug#10696)
11675
11676 2012-02-03 Paul Eggert <eggert@cs.ucla.edu>
11677
11678 Handle overflow when computing char display width (Bug#9496).
11679 * character.c (char_width): Return EMACS_INT, not int.
11680 (char_width, c_string_width): Check for overflow when
11681 computing the width; this is possible now that individual
11682 characters can have unbounded width. Problem introduced
11683 by merge from Emacs 23 on 2012-01-19.
11684
11685 2012-02-02 Michael Albinus <michael.albinus@gmx.de>
11686
11687 * dbusbind.c (Fdbus_register_method): Mention the return value
11688 :ignore in the docstring.
11689
11690 2012-02-02 Glenn Morris <rgm@gnu.org>
11691
11692 * callproc.c (Fcall_process, Fcall_process_region): Doc fix.
11693
11694 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
11695 Unconditionally set to t. (Bug#10673)
11696 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
11697 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
11698 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Doc fix.
11699
11700 2012-02-02 Kenichi Handa <handa@m17n.org>
11701
11702 (x_produce_glyphs): Cancel previous change. If cmp->glyph_len is
11703 0, do not call append_composite_glyph.
11704
11705 2012-02-02 Kenichi Handa <handa@m17n.org>
11706
11707 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING): Initialize first_s to
11708 NULL (Bug#6988).
11709 (x_produce_glyphs): If the component of a composition is a null
11710 string, set it->pixel_width to 1 to avoid zero-width glyph.
11711
11712 2012-02-01 Eli Zaretskii <eliz@gnu.org>
11713
11714 * ralloc.c (resize_bloc, r_alloc_sbrk): Don't call memmove if its
11715 first 2 arguments are identical. This makes inserting large
11716 output from a subprocess an order of magnitude faster on
11717 MS-Windows, where all sbrk'ed memory is always contiguous.
11718
11719 2012-01-31 Glenn Morris <rgm@gnu.org>
11720
11721 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
11722 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
11723 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Sync docs.
11724
11725 2012-01-29 Glenn Morris <rgm@gnu.org>
11726
11727 * gnutls.c (syms_of_gnutls): More doc (from etc/NEWS).
11728
11729 2012-01-28 Samuel Thibault <sthibault@debian.org> (tiny change)
11730
11731 * s/gnu.h: Define POSIX_SIGNALS (Bug#10552).
11732
11733 2012-01-28 Chong Yidong <cyd@gnu.org>
11734
11735 * minibuf.c (syms_of_minibuf): Doc fix (Bug#10550).
11736
11737 2012-01-26 Chong Yidong <cyd@gnu.org>
11738
11739 * keyboard.c (Vecho_keystrokes): Document zero value (Bug#10503).
11740
11741 * search.c (Fsearch_forward, Fsearch_backward): Document negative
11742 repeat counts (Bug#10507).
11743
11744 2012-01-26 Glenn Morris <rgm@gnu.org>
11745
11746 * lread.c (syms_of_lread): Doc fix.
11747
11748 2012-01-25 HIROSHI OOTA <nil@mad.dog.cx> (tiny change)
11749
11750 * coding.c (encode_designation_at_bol): Change return value to
11751 EMACS_INT.
11752
11753 2012-01-25 Chong Yidong <cyd@gnu.org>
11754
11755 * eval.c (Fuser_variable_p): Doc fix; mention custom-variable-p.
11756
11757 2012-01-21 Chong Yidong <cyd@gnu.org>
11758
11759 * floatfns.c (Fcopysign): Make the second argument non-optional,
11760 since nil is not allowed anyway.
11761
11762 2012-01-21 Andreas Schwab <schwab@linux-m68k.org>
11763
11764 * process.c (read_process_output): Use p instead of XPROCESS (proc).
11765 (send_process): Likewise.
11766
11767 2012-01-19 Martin Rudalics <rudalics@gmx.at>
11768
11769 * window.c (save_window_save, Fcurrent_window_configuration)
11770 (Vwindow_persistent_parameters): Do not use Qstate.
11771 Rewrite doc-strings.
11772
11773 2012-01-19 Kenichi Handa <handa@m17n.org>
11774
11775 * character.c (char_width): New function.
11776 (Fchar_width, c_string_width, lisp_string_width):
11777 Use char_width (Bug#9496).
11778
11779 2012-01-16 Martin Rudalics <rudalics@gmx.at>
11780
11781 * window.c (Vwindow_persistent_parameters): New variable.
11782 (Fset_window_configuration, save_window_save): Handle persistent
11783 window parameters.
11784
11785 2012-01-14 Eli Zaretskii <eliz@gnu.org>
11786
11787 * w32fns.c (signal_user_input): Don't do a QUIT, to avoid
11788 thrashing the stack of the thread. (Bug#9087)
11789
11790 2012-01-12 Paul Eggert <eggert@cs.ucla.edu>
11791
11792 * xdisp.c (rows_from_pos_range): Add parens as per gcc -Wparentheses.
11793
11794 2012-01-11 Eli Zaretskii <eliz@gnu.org>
11795
11796 * xdisp.c (rows_from_pos_range): Handle the case where the
11797 highlight ends on a newline. (Bug#10464)
11798 (mouse_face_from_buffer_pos): Fix off-by-one error in calculating
11799 he end column for display of highlight that ends on a newline
11800 before a R2L line.
11801
11802 2012-01-11 Glenn Morris <rgm@gnu.org>
11803
11804 * lread.c (init_lread): If no-site-lisp, remove site-lisp dirs
11805 from load-path also when installation-directory is nil. (Bug#10208)
11806
11807 2012-01-10 Glenn Morris <rgm@gnu.org>
11808
11809 * emacs.c (syms_of_emacs) <installation-directory>: Doc fix.
11810
11811 * epaths.in (PATH_LOADSEARCH, PATH_EXEC, PATH_DATA, PATH_DOC):
11812 Update template values to be closer to their typical values these days.
11813
11814 2012-01-09 Eli Zaretskii <eliz@gnu.org>
11815
11816 * xdisp.c (rows_from_pos_range): Accept additional argument
11817 DISP_STRING, and accept any glyph in a row whose object is that
11818 string as eligible for mouse highlight. Fixes mouse highlight of
11819 display strings from overlays. (Bug#10464)
11820
11821 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
11822
11823 emacs: fix an auto-save permissions race condition (Bug#10400)
11824 * fileio.c (auto_saving_dir_umask): New static var.
11825 (Fmake_directory_internal): Use it.
11826 (do_auto_save_make_dir): Set it, instead of invoking chmod after
11827 creating the directory. The old code temporarily assigns
11828 too-generous permissions to the directory.
11829 (do_auto_save_eh): Clear it.
11830 (Fdo_auto_save): Catch all errors, not just file errors, so
11831 that the var is always cleared.
11832
11833 2012-01-07 Eli Zaretskii <eliz@gnu.org>
11834
11835 * search.c (scan_buffer): Pass character positions to
11836 know_region_cache, not byte positions. (Bug#6540)
11837
11838 2012-01-07 LynX <_LynX@bk.ru> (tiny change)
11839
11840 * w32.c (sys_rename): Report EXDEV when rename of a directory
11841 fails because the target is on another logical disk. (Bug#10284)
11842
11843 2012-01-07 David Benjamin <davidben@mit.edu> (tiny change)
11844
11845 * xterm.c (x_embed_request_focus): New function.
11846
11847 * xterm.h: Add prototype.
11848
11849 * xfns.c (Fx_focus_frame): Use it for embedded frames (Bug#9977).
11850
11851 2012-01-05 Glenn Morris <rgm@gnu.org>
11852
11853 * emacs.c (emacs_copyright): Update short copyright year to 2012.
11854
11855 2012-01-01 Eli Zaretskii <eliz@gnu.org>
11856
11857 * gnutls.c (init_gnutls_functions): Load gnutls_check_version.
11858 Load gnutls_transport_set_lowat only if GnuTLS version is below
11859 2.11.1.
11860 (emacs_gnutls_handshake): Call gnutls_transport_set_lowat only for
11861 GnuTLS versions below 2.11.1.
11862
11863 2011-12-31 Antoine Levitt <antoine.levitt@gmail.com>
11864
11865 * xdisp.c (syms_of_xdisp) <window-scroll-functions>: Add warning
11866 to the doc string advising against its use for altering the way
11867 windows are scrolled.
11868
11869 2011-12-28 Kenichi Handa <handa@m17n.org>
11870
11871 * coding.c (Fdefine_coding_system_internal): Make an utf-8 base
11872 coding-system ASCII compatible only when it does not produce BOM
11873 on encoding (Bug#10383).
11874
11875 2011-12-26 Jan Djärv <jan.h.d@swipnet.se>
11876
11877 * xmenu.c (x_menu_wait_for_event): Use xg_select for Gtk3 so menus
11878 can scroll.
11879 (create_and_show_popup_menu): Always use menu_position_func for
11880 Gtk3 (Bug#10361).
11881
11882 2011-12-24 Andreas Schwab <schwab@linux-m68k.org>
11883
11884 * callint.c (Fcall_interactively): Don't truncate prompt string.
11885
11886 2011-12-23 Eli Zaretskii <eliz@gnu.org>
11887
11888 * xdisp.c (handle_invisible_prop): Handle correctly an invisible
11889 property that ends at ZV, so that the bidi iteration could be
11890 resumed from there (after widening). (Bug#10360)
11891
11892 2011-12-22 Jan Djärv <jan.h.d@swipnet.se>
11893
11894 * nsfont.m (ns_spec_to_descriptor): Do not autorelease fdesc.
11895
11896 2011-12-21 Jan Djärv <jan.h.d@swipnet.se>
11897
11898 * nsterm.m (x_free_frame_resources):
11899 Release f->output_data.ns->miniimage.
11900 (ns_index_color): Fix indentation. Do not retain
11901 color_table->colors[i].
11902
11903 * nsmenu.m (ns_update_menubar): Call free_menubar_widget_value_tree
11904 before returning.
11905
11906 * nsfns.m (x_set_background_color): Assign return value from
11907 ns_index_color to face-background instead of NSColor*.
11908 (ns_implicitly_set_icon_type): Fix indentation.
11909 Change assignment in for loop to comparison.
11910
11911 * emacs.c (ns_pool): New variable.
11912 (main): Assign ns_pool.
11913 (Fkill_emacs): Call ns_release_autorelease_pool.
11914
11915 * nsfont.m (ns_spec_to_descriptor): Fix indentation,
11916 autorelease fdesc, release fdAttrs and tdict.
11917 (ns_get_covering_families): Release charset.
11918 (ns_findfonts): Release NSFontDescriptor created with new.
11919 (ns_uni_to_glyphs): Fix indentation.
11920 (setString): Release attrStr before assigning new value.
11921
11922 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
11923
11924 * nsmenu.m (NSMenuDidBeginTrackingNotification): Declare if OSX < 10.5
11925 and NS_IMPL_COCOA.
11926 (trackingNotification): Surround with ifdef NS_IMPL_COCOA.
11927 (syms_of_nsmenu): Set trackingMenu to 1 if not NS_IMPL_COCOA.
11928
11929 2011-12-18 David Reitter <reitter@cmu.edu>
11930
11931 * nsterm.m (ns_term_init): Subscribe for notifications
11932 NSMenuDidBeginTrackingNotification and NSMenuDidEndTrackingNotification
11933 to method trackingNotification in EmacsMenu.
11934
11935 * nsmenu.m (trackingMenu): New variable.
11936 (trackingNotification): New method (from Aquamacs).
11937 (menuNeedsUpdate): Expand comment and return if trackingMenu is 0,
11938 from Aquamacs (Bug#7030).
11939
11940 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
11941
11942 * nsselect.m (CUT_BUFFER_SUPPORT): Remove define.
11943 (symbol_to_nsstring): Fix indentation.
11944 (ns_symbol_to_pb): New function.
11945 (Fns_get_selection_internal): Rename from Fns_get_cut_buffer_internal.
11946 (Fns_rotate_cut_buffers_internal): Remove.
11947 (Fns_store_selection_internal): Rename from
11948 Fns_store_cut_buffer_internal.
11949 (ns_get_foreign_selection, Fx_own_selection_internal)
11950 (Fx_disown_selection_internal, Fx_selection_exists_p)
11951 (Fns_get_selection_internal, Fns_store_selection_internal):
11952 Use ns_symbol_to_pb and check if return value is nil.
11953 (syms_of_nsselect): Remove ifdef CUT_BUFFER_SUPPORT. Remove defsubr
11954 Sns_rotate_cut_buffers_internal. Sns_get_cut_buffer_internal
11955 renamed to Sns_get_selection_internal, Sns_store_cut_buffer_internal
11956 renamed to Sns_store_selection_internal.
11957 (ns_handle_selection_request): Move code to Fx_own_selection_internal
11958 and remove this function.
11959 (ns_handle_selection_clear): Remove, never used.
11960 (Fx_own_selection_internal): Move code from ns_handle_selection_request
11961 here.
11962
11963 2011-12-17 Ken Brown <kbrown@cornell.edu>
11964
11965 * fileio.c (check_writable) [CYGWIN]: Return non-zero if UID or
11966 GID is unknown (Bug#10257).
11967
11968 2011-12-17 Paul Eggert <eggert@cs.ucla.edu>
11969
11970 * s/gnu-linux.h: Fix mark_memory typo (Bug#10286).
11971 (GC_MARK_SECONDARY_STACK): Omit removed 3rd arg to mark_memory,
11972 which caused a build failure on GNU/Linux IA-64. This problem was
11973 introduced by my 2011-10-07 patch.
11974
11975 2011-12-15 Juri Linkov <juri@jurta.org>
11976
11977 * image.c (imagemagick_error): New function. (Bug#10112)
11978 (imagemagick_load_image): Comment out `MagickSetResolution' call.
11979 Use `imagemagick_error' where ImageMagick functions return
11980 `MagickFalse'.
11981 (Fimagemagick_types): Add `Fnreverse' to return the list in the
11982 proper order.
11983
11984 2011-12-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11985
11986 * xftfont.c (xftfont_draw): Use the font metrics of s->font to
11987 fill background (Bug#8992).
11988
11989 2011-12-13 Martin Rudalics <rudalics@gmx.at>
11990
11991 * window.c (Vwindow_combination_resize)
11992 (Vwindow_combination_limit): Use t instead of non-nil in
11993 doc-strings.
11994 (Vrecenter_redisplay): Add first sentence of doc-string on
11995 separate line.
11996 (Frecenter): Fix doc-string typo.
11997
11998 2011-12-11 Kenichi Handa <handa@m17n.org>
11999
12000 * coding.c (Funencodable_char_position): Pay attention to the
12001 buffer text relocation (Bug#9389).
12002
12003 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
12004
12005 * xterm.c (x_term_init): Move call to gdk_window_add_filter before
12006 gtk_init (Bug#10100).
12007
12008 2011-12-10 Eli Zaretskii <eliz@gnu.org>
12009
12010 * xdisp.c (RECORD_MAX_MIN_POS): Use IT->cmp_it.charpos only if
12011 IT->string is nil. (Bug#10263)
12012
12013 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
12014
12015 * nsterm.h (x_free_frame_resources): Declare.
12016
12017 * nsfns.m (ns_get_defaults_value): New function (Bug#10103).
12018 (Fns_get_resource, x_get_string_resource): Call ns_get_defaults_value.
12019
12020 * nsterm.h (ns_get_defaults_value): Declare.
12021
12022 * nsterm.m (ns_default): Call ns_get_defaults_value.
12023
12024 2011-12-09 Eli Zaretskii <eliz@gnu.org>
12025
12026 * xdisp.c (try_scrolling): Don't set scroll_down_p if dy is zero.
12027 (Bug#10170)
12028
12029 2011-12-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12030
12031 * unexelf.c (unexec) [NS_IMPL_GNUSTEP]: Take account of the case
12032 that where the value of an _OBJC_* symbol points to is in the .bss
12033 section (Bug#10240).
12034
12035 2011-12-08 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
12036
12037 * coding.c (encode_coding_ccl): Check (charbuf < charbuf_end)
12038 after the loop to call ccl_driver at least once (Bug#8619).
12039
12040 2011-12-08 Kenichi Handa <handa@m17n.org>
12041
12042 * ftfont.c (get_adstyle_property): Fix previous change
12043 (Bug#10233).
12044
12045 2011-12-07 Juanma Barranquero <lekktu@gmail.com>
12046
12047 * w32.c (init_environment): If no_site_lisp, remove site-lisp
12048 dirs from the default value of EMACSLOADPATH (bug#10208).
12049
12050 2011-12-07 Glenn Morris <rgm@gnu.org>
12051
12052 * lread.c (init_lread): If no_site_lisp, exclude site-lisp/ in
12053 installation and source directories as well. (Bug#10208)
12054
12055 2011-12-06 Chong Yidong <cyd@gnu.org>
12056
12057 * minibuf.c (Fread_from_minibuffer): Doc fix (Bug#10228).
12058
12059 2011-12-06 Glenn Morris <rgm@gnu.org>
12060
12061 * process.c (start_process_unwind): Treat any pid <= 0, except -2,
12062 as an error, not just -1. (Bug#10217)
12063
12064 2011-12-05 Chong Yidong <cyd@gnu.org>
12065
12066 * keyboard.c (process_special_events): New function.
12067 (swallow_events, Finput_pending_p): Use it (Bug#10195).
12068
12069 2011-12-05 Paul Eggert <eggert@cs.ucla.edu>
12070
12071 * coding.c (encode_designation_at_bol): Don't use uninitialized
12072 local variable (Bug#9318).
12073
12074 2011-12-05 Kenichi Handa <handa@m17n.org>
12075
12076 * ftfont.c (get_adstyle_property): If the font is not BDF nor PCF,
12077 return Qnil (Bug#8046, Bug#10193).
12078
12079 2011-12-05 Kenichi Handa <handa@m17n.org>
12080
12081 * coding.c (encode_designation_at_bol): New args charbuf_end and
12082 dst. Return the number of produced bytes. Callers changed.
12083 (coding_set_source): Return how many bytes coding->source was
12084 relocated.
12085 (coding_set_destination): Return how many bytes
12086 coding->destination was relocated.
12087 (CODING_DECODE_CHAR, CODING_ENCODE_CHAR, CODING_CHAR_CHARSET)
12088 (CODING_CHAR_CHARSET_P): Adjust for the avove changes.
12089
12090 2011-12-05 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
12091
12092 * coding.c (CODING_CHAR_CHARSET_P): New macro.
12093 (encode_coding_emacs_mule, encode_coding_iso_2022): Use the above
12094 macro (Bug#9318).
12095
12096 2011-12-05 Andreas Schwab <schwab@linux-m68k.org>
12097
12098 The following changes are to fix Bug#9318.
12099
12100 * coding.c (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET): New macros.
12101 (encode_coding_emacs_mule, ENCODE_ISO_CHARACTER)
12102 (encode_coding_iso_2022, encode_coding_sjis)
12103 (encode_coding_big5, encode_coding_charset): Use the above macros.
12104
12105 2011-12-05 Juanma Barranquero <lekktu@gmail.com>
12106
12107 * lisp.h (process_quit_flag): Fix external declaration.
12108
12109 2011-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
12110
12111 Don't macro-inline non-performance-critical code.
12112 * eval.c (process_quit_flag): New function.
12113 * lisp.h (QUIT): Use it.
12114
12115 2011-12-04 Jan Djärv <jan.h.d@swipnet.se>
12116
12117 * nsfns.m (get_geometry_from_preferences): New function.
12118 (Fx_create_frame): Call get_geometry_from_preferences (Bug#10103).
12119
12120 2011-12-04 Andreas Schwab <schwab@linux-m68k.org>
12121
12122 * emacs.c (Qkill_emacs): Define.
12123 (syms_of_emacs): Initialize it.
12124 * keyboard.c (interrupt_signal): Don't call Fkill_emacs here, set
12125 Qquit_flag to `kill-emacs' instead.
12126 (quit_throw_to_read_char): Add parameter `from_signal'.
12127 All callers changed. Call Fkill_emacs if requested and safe.
12128 * lisp.h (QUIT): Call Fkill_emacs if requested.
12129
12130 2011-12-03 Jan Djärv <jan.h.d@swipnet.se>
12131
12132 * widget.c (update_wm_hints): Return if wmshell is null.
12133 (widget_update_wm_size_hints): New function.
12134
12135 * widget.h (widget_update_wm_size_hints): Declare.
12136
12137 * xterm.c (x_wm_set_size_hint): If USE_X_TOOLKIT, call
12138 widget_update_wm_size_hints (Bug#10104).
12139
12140 2011-12-03 Eli Zaretskii <eliz@gnu.org>
12141
12142 * xdisp.c (handle_invisible_prop): If the invisible text ends just
12143 before a newline, prepare the bidi iterator for consuming the
12144 newline, and keep the current paragraph direction. (Bug#10183)
12145 (redisplay_window): Don't let `margin' become negative. (Bug#10192)
12146
12147 2011-12-02 Juri Linkov <juri@jurta.org>
12148
12149 * search.c (Fword_search_regexp): New Lisp function created from
12150 `wordify'. Change type of arg `lax' from `int' to `Lisp_Object'.
12151 (Fword_search_backward, Fword_search_forward)
12152 (Fword_search_backward_lax, Fword_search_forward_lax):
12153 Use `Fword_search_regexp' instead of `wordify'. Doc fix.
12154 (syms_of_search): Define `Sword_search_regexp'. (Bug#10145)
12155
12156 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
12157
12158 * fileio.c (Finsert_file_contents): Move after-change-function call
12159 to before the "handled:" label, since all "goto handled" appear in
12160 cases where the *-change-functions have already been properly called
12161 (bug#10117).
12162
12163 2011-12-01 Andreas Schwab <schwab@linux-m68k.org>
12164
12165 * keyboard.c (interrupt_signal): Don't call kill-emacs when
12166 waiting for input. (Bug#10169)
12167
12168 2011-11-30 Eli Zaretskii <eliz@gnu.org>
12169
12170 * dispnew.c (adjust_glyph_matrix): Remove the assertion that
12171 verifies glyph row's hash code--we have just reallocated the
12172 glyphs, so their contents can be complete garbage. (Bug#10164)
12173
12174 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
12175
12176 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Add missing check.
12177
12178 2011-11-30 Eli Zaretskii <eliz@gnu.org>
12179
12180 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Ensure ROW's
12181 attributes are tested _before_ calling verify_row_hash, to protect
12182 against GCC re-ordering of the tests. (Bug#10164)
12183
12184 2011-11-29 Jan Djärv <jan.h.d@swipnet.se>
12185
12186 * xterm.h (struct x_output): net_wm_state_hidden_seen is new.
12187
12188 * xterm.c (handle_one_xevent): Only set async_visible and friends
12189 if net_wm_state_hidden_seen is non-zero (Bug#10002)
12190 (get_current_wm_state): Set net_wm_state_hidden_seen to 1 if
12191 _NET_WM_STATE_HIDDEN is in NET_WM_STATE.
12192
12193 2011-11-28 Paul Eggert <eggert@cs.ucla.edu>
12194
12195 Remove GCPRO-related macros that exist only to avoid shadowing locals.
12196 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR)
12197 (GCPRO6_VAR, UNGCPRO_VAR): Remove. See
12198 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
12199 All uses changed to use GCPRO1 etc.
12200 (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6, UNGCPRO):
12201 Revert to old implementation (i.e., before 2011-03-11).
12202
12203 2011-11-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12204
12205 * dispnew.c (scrolling_window): Truncate overlaps in copy destination
12206 of scroll runs so as to avoid assigning disabled bogus rows and
12207 unnecessary graphics copy operations.
12208
12209 2011-11-27 Eli Zaretskii <eliz@gnu.org>
12210
12211 * s/ms-w32.h (utimbuf) [_MSC_VER]: Don't define.
12212 (snprintf) [_MSC_VER]: Redirect to _snprintf.
12213 (strtoll) [_MSC_VER]: Redirect to _strtoi64.
12214 (malloc, free, realloc, calloc): Redirect to e_* only when
12215 compiling Emacs.
12216
12217 * lisp.h (GCTYPEBITS): Move before first use.
12218 (ALIGN_GCTYPEBITS) [_MSC_VER]: Define.
12219 (DECL_ALIGN) [_MSC_VER]: Use it, as MSVC doesn't like bit ops in
12220 this macro definition.
12221
12222 * s/ms-w32.h (tzname): Redirect to _tzname for all values of
12223 _MSC_VER.
12224
12225 2011-11-27 Jan Djärv <jan.h.d@swipnet.se>
12226
12227 * gtkutil.c (xg_create_frame_widgets):
12228 Call gtk_window_set_has_resize_grip (FALSE) if that function is
12229 present with Gtk+ 2.0.
12230
12231 2011-11-26 Paul Eggert <eggert@cs.ucla.edu>
12232
12233 * fileio.c (Finsert_file_contents): Undo previous change; see
12234 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
12235
12236 2011-11-26 Paul Eggert <eggert@cs.ucla.edu>
12237
12238 Rename locals to avoid shadowing.
12239 * fileio.c (Finsert_file_contents):
12240 Rename inner 'gcpro1' to 'inner_gcpro1' to avoid shadowing.
12241 * process.c (wait_reading_process_output):
12242 Rename inner 'proc' to 'p' to avoid shadowing.
12243 Indent for consistency with usual Emacs style.
12244
12245 2011-11-25 Eli Zaretskii <eliz@gnu.org>
12246
12247 * xdisp.c (redisplay_window): If cursor row is not fully visible
12248 after recentering, and scroll-conservatively is set to a large
12249 number, scroll window by a few more lines to make the cursor fully
12250 visible and out of scroll-margin. (Bug#10105)
12251 (start_display): Don't move to the next line if the display should
12252 start at a newline that is part of a display vector or an overlay
12253 string. (Bug#10119)
12254
12255 2011-11-24 Juri Linkov <juri@jurta.org>
12256
12257 * image.c (imagemagick_load_image): Move `MagickSetResolution' down
12258 after the `MagickPingImage' call. (Bug#10112)
12259
12260 2011-11-23 Chong Yidong <cyd@gnu.org>
12261
12262 * window.c (Fcoordinates_in_window_p): Accept only live windows.
12263
12264 2011-11-23 Martin Rudalics <rudalics@gmx.at>
12265
12266 * buffer.c (Fkill_buffer): Run replace_buffer_in_windows before
12267 making another buffer current. (Bug#10114)
12268
12269 2011-11-23 Glenn Morris <rgm@gnu.org>
12270
12271 * font.c (font_find_for_lface) [HAVE_NS]: Ignore case. (Bug#2526)
12272
12273 2011-11-23 Chong Yidong <cyd@gnu.org>
12274
12275 * xdisp.c (compute_stop_pos): Check validity of end_charpos before
12276 using it (Bug#5984).
12277
12278 2011-11-22 Eli Zaretskii <eliz@gnu.org>
12279
12280 * dispnew.c (adjust_glyph_matrix): Don't verify hash code of mode-
12281 and header-lines, as they don't have one computed for them.
12282 (Bug#10098)
12283
12284 * .gdbinit (prow): Make displayed values more self-explaining.
12285 Add row's hash code.
12286
12287 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
12288
12289 * process.c (wait_reading_process_output): Fix asynchrounous
12290 GnuTLS socket handling on some versions of the GnuTLS library.
12291 (wait_reading_process_output): Add comment and URL.
12292
12293 2011-11-21 Jan Djärv <jan.h.d@swipnet.se>
12294
12295 * xterm.c (x_clear_frame): Reinstate the XClearWindow call.
12296
12297 2011-11-21 Chong Yidong <cyd@gnu.org>
12298
12299 * window.c (Fnext_window, Fprevious_window): Doc fix.
12300
12301 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
12302
12303 * window.c (get_phys_cursor_glyph): Fix Lisp_Object/int mixup.
12304
12305 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
12306
12307 * nsfont.m (syms_of_nsfont) <ns-reg-to-script>: Fix typo.
12308
12309 2011-11-20 Martin Rudalics <rudalics@gmx.at>
12310
12311 * window.c (Fset_window_combination_limit): Rename argument
12312 STATUS to LIMIT.
12313 (Vwindow_combination_limit): Remove "status" from doc-string.
12314
12315 2011-11-20 Andreas Schwab <schwab@linux-m68k.org>
12316
12317 * m/ibms390.h: Remove.
12318 * m/ibms390x.h: Don't include "ibms390.h".
12319
12320 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
12321
12322 * fileio.c (Finsert_file_contents): Add missing gcpro1 variable.
12323 Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
12324
12325 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
12326
12327 * casetab.c (Fset_case_table):
12328 * charset.c (Fcharset_after): Fix typos.
12329
12330 2011-11-20 Paul Eggert <eggert@cs.ucla.edu>
12331
12332 Standardize on VIRT_ADDR_VARIES behavior (Bug#10042).
12333 Otherwise, valgrind does not work on some platforms.
12334 Problem reported by Andreas Schwab in
12335 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00081.html>.
12336 * puresize.h (pure, PURE_P): Always behave as if VIRT_ADDR_VARIES
12337 is set, removing the need for VIRT_ADDRESS_VARIES.
12338 (PURE_P): Use a more-efficient implementation that needs just one
12339 comparison, not two: on x86-64 with GCC 4.6.2, this cut down the
12340 number of instructions from 6 (xorl, cmpq, jge, xorl, cmpq, setge)
12341 to 4 (xorl, subq, cmpq, setbe).
12342 * alloc.c (pure): Always extern now, since that's the
12343 VIRT_ADDR_VARIES behavior.
12344 (PURE_POINTER_P): Use a single comparison, not two, for
12345 consistency with the new puresize.h.
12346 * lisp.h (PNTR_COMPARISON_TYPE): Remove; no longer needed.
12347 * m/ibms390.h, m/intel386.h, m/template.h, s/cygwin.h, s/hpux10-20.h:
12348 Remove VIRT_ADDR_VARIES no longer needed.
12349
12350 2011-11-19 Eli Zaretskii <eliz@gnu.org>
12351
12352 * xdisp.c (x_write_glyphs, draw_phys_cursor_glyph)
12353 (erase_phys_cursor, update_window_cursor, show_mouse_face)
12354 (cursor_in_mouse_face_p): If the cursor position is out of bounds,
12355 behave as if the cursor position were at the window margin.
12356
12357 * window.c (get_phys_cursor_glyph): If the window is hscrolled,
12358 and the cursor position is out of bounds, behave as if the cursor
12359 position were at the window margin. (Bug#10075)
12360
12361 2011-11-18 Chong Yidong <cyd@gnu.org>
12362
12363 * window.c (Fwindow_combination_limit): Make first argument
12364 non-optional, since it is meaningless for live windows like the
12365 selected window.
12366
12367 2011-11-18 Dmitry Antipov <dmantipov@yandex.ru>
12368
12369 * keymap.c (Fwhere_is_internal): Add missing RETURN_UNGCPROs.
12370
12371 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
12372
12373 * intervals.c: Fix grafting over the whole buffer (bug#10071).
12374 (graft_intervals_into_buffer): Simplify.
12375
12376 2011-11-18 Eli Zaretskii <eliz@gnu.org>
12377
12378 * dispnew.c (swap_glyph_pointers): Swap the used[] arrays and the
12379 hash values of the two rows.
12380 (copy_row_except_pointers): Preserve the used[] arrays and the
12381 hash values of the two rows. (Bug#10035)
12382 (add_row_entry): Add xassert to verify that ROW's hash code is valid.
12383
12384 * xdisp.c (row_hash): New function, body extracted from
12385 compute_line_metrics.
12386 (compute_line_metrics): Call row_hash, instead of computing the
12387 hash code inline.
12388
12389 * dispnew.c (verify_row_hash): Call row_hash for computing the
12390 hash code of a row, instead of duplicating code from xdisp.c.
12391
12392 * dispextern.h (row_hash): Add prototype.
12393
12394 2011-11-18 Tassilo Horn <tassilo@member.fsf.org>
12395
12396 * frame.c (delete_frame): Don't delete the terminal when the last
12397 X frame is closed if emacs is built with GTK toolkit.
12398
12399 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
12400
12401 * window.c (syms_of_window) <window-combination-resize>: Fix typo.
12402
12403 2011-11-17 Martin Rudalics <rudalics@gmx.at>
12404
12405 * window.c (Vwindow_splits): Rename to
12406 Vwindow_combination_resize. Suggested by Juri Linkov.
12407 (Fsplit_window_internal): Use Vwindow_combination_resize instead
12408 of Vwindow_splits.
12409
12410 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
12411
12412 * nsfns.m (Fns_font_name):
12413 * window.c (syms_of_window) <window-combination-limit>: Fix typos.
12414
12415 2011-11-16 Martin Rudalics <rudalics@gmx.at>
12416
12417 * window.h (window): Rename slot "nest" to "combination_limit".
12418 * window.c (Fwindow_nest): Rename to Fwindow_combination_limit.
12419 (Fset_window_nest): Rename to Fset_window_combination_limit.
12420 (Vwindow_nest): Rename to Vwindow_combination_limit.
12421 (recombine_windows, make_parent_window, make_window)
12422 (Fsplit_window_internal, saved_window)
12423 (Fset_window_configuration, save_window_save): Rename all
12424 occurrences of window_nest to window_combination_limit.
12425
12426 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
12427
12428 * image.c (imagemagick_load_image): Fix typo.
12429
12430 2011-11-14 Eli Zaretskii <eliz@gnu.org>
12431
12432 * xdisp.c (display_line): Move the call to
12433 highlight_trailing_whitespace before the call to
12434 compute_line_metrics, since the latter needs to see the final
12435 faces of all the glyphs to compute ROW's hash value.
12436 Fixes assertion violations in row_equal_p. (Bug#10035)
12437
12438 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
12439
12440 * w32proc.c (reader_thread): Don't check pending input if cp->fd < 0,
12441 just return (bug#10044).
12442
12443 2011-11-12 Eli Zaretskii <eliz@gnu.org>
12444
12445 * makefile.w32-in (HEAPSIZE): New variable, allows to build temacs
12446 with user-defined heap size. Bump the default size of the temacs
12447 heap to 27MB, to avoid memory warning when running temacs.
12448 ($(TEMACS)): Use HEAPSIZE instead of a hardcoded value.
12449
12450 * dispnew.c (scrolling_window): Fix incorrect indices in accessing
12451 current_matrix and desired_matrix. (Bug#9990)
12452 (verify_row_hash) [XASSERTS]: New function.
12453 (adjust_glyph_matrix, row_equal_p): Use it in xassert to verify
12454 that the hash value of glyph rows is correct.
12455
12456 2011-11-12 Martin Rudalics <rudalics@gmx.at>
12457
12458 * window.h (window): Remove splits slot.
12459 * window.c (Fwindow_splits, Fset_window_splits): Remove.
12460 (Fdelete_other_windows_internal, make_parent_window)
12461 (make_window, Fsplit_window_internal, Fdelete_window_internal)
12462 (Fset_window_configuration, save_window_save): Don't deal with
12463 split status of windows.
12464 (saved_window): Remove splits slot.
12465 (Vwindow_splits): Rewrite doc-string.
12466
12467 2011-11-11 Jan Djärv <jan.h.d@swipnet.se>
12468
12469 * xfns.c (unwind_create_frame):
12470 * nsfns.m (unwind_create_frame):
12471 * w32fns.c (unwind_create_frame): Use Fmemq to check if frame is in
12472 Vframe_list (Bug#9999).
12473
12474 2011-11-11 Dmitry Antipov <dmantipov@yandex.ru>
12475
12476 * xdisp.c (syms_of_xdisp): Remove duplicated definition of Qtext.
12477
12478 2011-11-11 Kenichi Handa <handa@m17n.org>
12479
12480 * callproc.c (Fcall_process): Set the member dst_multibyte of
12481 process_coding.
12482
12483 2011-11-11 Johan Bockgård <bojohan@gnu.org>
12484
12485 * xdisp.c (fill_composite_glyph_string): Always set s->face, to
12486 avoid a crash (bug#9496).
12487
12488 2011-11-09 Chong Yidong <cyd@gnu.org>
12489
12490 * window.c (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
12491 (Fwindow_inside_absolute_pixel_edges): Only allow live windows.
12492
12493 2011-11-08 Paul Eggert <eggert@cs.ucla.edu>
12494
12495 * s/gnu.h (GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS (Bug#9926).
12496
12497 2011-11-08 Paul Eggert <eggert@cs.ucla.edu>
12498
12499 Avoid some portability problems by eschewing 'extern inline' functions.
12500 The trivial performance wins aren't worth the portability hassles; see
12501 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>
12502 et seq.
12503 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
12504 (window_box_width, window_box_left, window_box_left_offset)
12505 (window_box_right, window_box_right_offset): Undo previous change,
12506 by removing the "extern"s.
12507 * intervals.c (adjust_intervals_for_insertion)
12508 (adjust_intervals_for_deletion): Undo previous change,
12509 making these static again.
12510 (offset_intervals, temp_set_point_both, temp_set_point)
12511 (copy_intervals_to_string): No longer inline.
12512 * xdisp.c (window_text_bottom_y, window_box_width)
12513 (window_box_height, window_box_left_offset)
12514 (window_box_right_offset, window_box_left, window_box_right)
12515 (window_box): No longer inline.
12516
12517 2011-11-08 Chong Yidong <cyd@gnu.org>
12518
12519 * window.c (Fwindow_left_column, Fwindow_top_line): Doc fix.
12520 (Fwindow_body_height, Fwindow_body_width): Move from Lisp.
12521 Signal an error if not a live window.
12522 (Fwindow_total_width, Fwindow_total_height): Move from Lisp.
12523 (Fwindow_total_size, Fwindow_body_size): Move to Lisp.
12524
12525 2011-11-07 Juanma Barranquero <lekktu@gmail.com>
12526
12527 * lisp.h (syms_of_abbrev): Remove declaration.
12528 Reported by CHENG Gao <chenggao@royau.me>.
12529
12530 2011-11-07 Eli Zaretskii <eliz@gnu.org>
12531
12532 * w32.c (check_windows_init_file): Don't look for term/w32-win.el
12533 if Vpurify_flag is non-nil. Fixes a crash when running w32 build
12534 of temacs in GUI mode.
12535
12536 2011-11-07 Martin Rudalics <rudalics@gmx.at>
12537
12538 * window.h: Declare delete_all_child_windows instead of
12539 delete_all_subwindows.
12540 * window.c (Fwindow_nest, Fset_window_nest)
12541 (Fset_window_new_total, Fset_window_new_normal)
12542 (Fwindow_resize_apply): Don't use term subwindow in doc-strings.
12543 (delete_all_subwindows): Rename to delete_all_child_windows.
12544 (Fdelete_other_windows_internal, Fset_window_configuration):
12545 Call delete_all_child_windows instead of delete_all_subwindows.
12546 * frame.c (delete_frame): Call delete_all_child_windows instead
12547 of delete_all_subwindows.
12548
12549 2011-11-07 Paul Eggert <eggert@cs.ucla.edu>
12550
12551 * alloc.c (DEADP): New macro, for porting to GNU/Hurd (Bug#9926).
12552 This is also needed for porting to any host where GC_MARK_STACK is
12553 not GC_MAKE_GCPROS_NOOPS.
12554 (which_symbols): Use it.
12555
12556 2011-11-07 Kenichi Handa <handa@m17n.org>
12557
12558 * coding.c (coding_set_destination): Check coding->src_pos only
12559 when coding->src_object is a buffer (bug#9910).
12560
12561 * process.c (send_process): Set the member src_multibyte of coding
12562 to 0 (bug#9911) when sending a unibyte text.
12563
12564 * callproc.c (Fcall_process): Set the member src_multibyte of
12565 process_coding to 0 (bug#9912).
12566
12567 2011-11-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12568
12569 * xmenu.c (cleanup_widget_value_tree): New function.
12570 (xmenu_show, xdialog_show): Use it in record_unwind_protect instead of
12571 calling free_menubar_widget_value_tree directly (Bug#9830).
12572
12573 2011-11-06 Paul Eggert <eggert@cs.ucla.edu>
12574
12575 Fix some portability problems with 'inline'.
12576 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
12577 (window_box_width, window_box_left, window_box_left_offset)
12578 (window_box_right, window_box_right_offset): Declare extern.
12579 Otherwise, these inline functions do not conform to C99 and
12580 are miscompiled by Microsoft compilers. Reported by Eli Zaretskii in
12581 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>.
12582 * intervals.c (adjust_intervals_for_insertion)
12583 (adjust_intervals_for_deletion): Now extern, because otherwise the
12584 extern inline functions 'offset_intervals' couldn't refer to it.
12585 (static_offset_intervals): Remove.
12586 (offset_intervals): Rewrite using the old contents of
12587 static_offset_intervals. The old version didn't conform to C99
12588 because an extern inline function contained a reference to an
12589 identifier with static linkage.
12590
12591 2011-11-06 Andreas Schwab <schwab@linux-m68k.org>
12592
12593 * keyboard.c (interrupt_signal): Don't call kill-emacs while in
12594 GC.
12595
12596 2011-11-06 Eli Zaretskii <eliz@gnu.org>
12597
12598 * xdisp.c (init_iterator, reseat_to_string): Don't set the
12599 iterator's bidi_p flag if Vpurify_flag is non-nil. (Bug#9963)
12600 (Fcurrent_bidi_paragraph_direction): If Vpurify_flag is non-nil,
12601 return Qleft_to_right.
12602
12603 2011-11-06 Chong Yidong <cyd@gnu.org>
12604
12605 * window.c (Fwindow_live_p, Fwindow_frame, Fframe_root_window)
12606 (Fminibuffer_window, Fwindow_buffer, Fwindow_splits)
12607 (Fset_window_splits, Fwindow_nest, Fset_window_nest)
12608 (Fwindow_use_time, Fwindow_total_size, Fwindow_normal_size)
12609 (Fwindow_new_normal, Fwindow_left_column, Fwindow_top_line)
12610 (Fwindow_margins, Fwindow_fringes, Fwindow_scroll_bars)
12611 (Fwindow_vscroll): Doc fix.
12612 (Fwindow_top_child, Fwindow_left_child): Eliminate a nil default
12613 argument, since it makes no sense to pass a live window and for
12614 consistency with window-child.
12615
12616 2011-11-05 Christoph Scholtes <cschol2112@googlemail.com>
12617
12618 * makefile.w32-in ($(TEMACS), (gl-stamp)): Use $(THISDIR) to
12619 support MSVC.
12620
12621 2011-11-05 Jason Rumney <jasonr@gnu.org>
12622
12623 * w32font.c (font_matches_spec): Filter out non-Japanese kana fonts.
12624 (add_font_entity_to_list): Filter out non-Japanese Shift-JIS
12625 fonts (Bug#6029).
12626 (add_font_entity_to_list): Fix logic errors in mixed boolean and
12627 bitwise arithmetic preventing use of unicode-sip and non-truetype
12628 opentype fonts.
12629
12630 2011-11-05 Eli Zaretskii <eliz@gnu.org>
12631
12632 * s/ms-w32.h (fstat, stat, utime): Move redirections to
12633 "emacs"-only part.
12634
12635 * w32fns.c (x_create_tip_frame, Fx_create_frame): Rearrange
12636 initialization code to keep similarity to xfns.c after changes
12637 from 2011-11-05.
12638
12639 2011-11-05 Jan Djärv <jan.h.d@swipnet.se>
12640
12641 * nsfns.m: Declare image_cache_refcount if GLYPH_DEBUG.
12642 (unwind_create_frame): New function (Bug#9943).
12643 (Fx_create_frame): Restructure code to be more similar to the one in
12644 xfns.c. Call record_unwind_protect with unwind_create_frame (Bug#9943).
12645 Initialize image_cache_refcount if GLYPH_DEBUG (Bug#9943).
12646 Move terminal->reference_count++ just before making the frame official
12647 (Bug#9943).
12648
12649 * nsterm.m (x_free_frame_resources): New function.
12650 (x_destroy_window): Move code to x_free_frame_resources.
12651
12652 * xfns.c (unwind_create_frame): Fix comment.
12653 (Fx_create_frame, x_create_tip_frame):
12654 Move terminal->reference_count++ just before making the frame
12655 official. Move initialization of image_cache_refcount and
12656 dpyinfo_refcount before calling init_frame_faces (Bug#9943).
12657
12658 2011-11-05 Eli Zaretskii <eliz@gnu.org>
12659
12660 Support MSVC build with newer versions of Visual Studio.
12661 * makefile.w32-in (TAGS-gmake): Don't use $(patsubst ...), as
12662 Nmake barfs on that. Use $(OBJ*_c) variables instead, defined on
12663 nt/gmake.defs.
12664
12665 * lisp.h (ENUM_BF): New macro, for enumerated types in bitfields,
12666 which are not supported by MSVC.
12667 (Lisp_Symbol, Lisp_Misc_Any, Lisp_Marker, Lisp_Misc_Overlay)
12668 (Lisp_Save_Value, Lisp_Free): Use ENUM_BF for enumerated types in
12669 bitfields.
12670 (Lisp_Object) [USE_LISP_UNION_TYPE]: Use ENUM_BF for enumerated
12671 types in bitfields.
12672 (DEFUN) [_MSC_VER]: Define in a different way for MSVC.
12673
12674 * w32fns.c [_MSC_VER]: DECLARE_HANDLE for any MSVC version.
12675
12676 2011-11-05 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
12677
12678 Support MSVC build with newer versions of Visual Studio.
12679 * w32.c: Don't include w32api.h for MSVC.
12680 (init_environment) [_MSC_VER]: Call sys_access, not _access.
12681
12682 * s/ms-w32.h <sigset_t, ssize_t> [_MSC_VER]: Typedefs for MSVC.
12683 [_MSC_VER]: Include sys/timeb.h, sys/stat.h, and signal.h.
12684 (fstat, stat, utime) [_MSC_VER]: Redirect to their sys_* cousins.
12685 (malloc, free, realloc, calloc) [_MSC_VER]: Always redirect to the
12686 e_* cousins.
12687 (alloca) [_MSC_VER]: Define to _alloca.
12688
12689 * lisp.h (DECL_ALIGN) [_MSC_VER]: Define for MSVC.
12690
12691 * regex.c <re_char> [_MSC_VER]: A separate definition for MSVC.
12692
12693 2011-11-04 Eli Zaretskii <eliz@gnu.org>
12694
12695 * xdisp.c (note_mouse_highlight): If either of
12696 previous/next-single-property-change returns nil, treat that as
12697 the beginning or the end of the buffer. (Bug#9955)
12698
12699 2011-11-04 Jan Djärv <jan.h.d@swipnet.se>
12700
12701 * gtkutil.c (xg_make_tool_item): Add callbacks if one of wimage or
12702 label is not null (Bug#9951).
12703 (xg_tool_item_stale_p): Handle the fact that wimage and/or wlbl
12704 may be NULL.
12705
12706 2011-11-04 Eli Zaretskii <eliz@gnu.org>
12707
12708 * window.c (Fwindow_body_size): Mention in the doc string that the
12709 return value is in frame's canonical units. (Bug#9949)
12710
12711 2011-11-03 Eli Zaretskii <eliz@gnu.org>
12712
12713 * xdisp.c (note_mouse_highlight): Initialize `area'. (Bug#9947)
12714
12715 * w32fns.c (unwind_create_frame): If needed, free the glyph
12716 matrices of the partially constructed frame. (Bug#9943)
12717 * xfns.c (unwind_create_frame): Likewise.
12718
12719 2011-11-01 Eli Zaretskii <eliz@gnu.org>
12720
12721 * xdisp.c (mouse_face_from_buffer_pos): Fix a typo in a comment.
12722 Don't stop backward scan on the continuation glyph, even though
12723 its CHARPOS is positive.
12724 (mouse_face_from_buffer_pos, note_mouse_highlight):
12725 Rename cover_string to disp_string.
12726
12727 2011-11-01 Martin Rudalics <rudalics@gmx.at>
12728
12729 * window.c (temp_output_buffer_show): Don't use
12730 Vtemp_buffer_show_specifiers.
12731 (Vtemp_buffer_show_specifiers): Remove unused variable.
12732
12733 2011-10-30 Eli Zaretskii <eliz@gnu.org>
12734
12735 * xdisp.c (try_cursor_movement): Make sure ROW isn't decremented
12736 past the beginning of the current glyph matrix.
12737
12738 2011-10-30 Adam Sjøgren <asjo@koldfront.dk> (tiny change)
12739
12740 * xterm.c: Include X11/Xproto.h if HAVE_GTK3.
12741 (x_error_handler): Ignore BadMatch for X_SetInputFocus for
12742 HAVE_GTK3 (Bug#9869).
12743
12744 * gtkutil.c (xg_win_to_widget, xg_event_is_for_menubar): Initialize
12745 type to GDK_NOTHING so valgrind does not complain (Bug#9901).
12746
12747 * xterm.h (x_display_info): Add Xatom_net_wm_state_hidden (Bug#9893).
12748
12749 * xterm.c: Declare x_handle_net_wm_state to return int.
12750 (handle_one_xevent): Check if we are iconified but don't have
12751 _NET_WM_STATE_HIDDEN. If do, treat as deiconify (Bug#9893).
12752 (get_current_wm_state): Return non-zero if not hidden,
12753 check for _NET_WM_STATE_HIDDEN (Bug#9893).
12754 (do_ewmh_fullscreen): Ignore return value from get_current_wm_state.
12755 (x_handle_net_wm_state): Return what get_current_wm_state returns.
12756 (x_term_init): Initialize dpyinfo->Xatom_net_wm_state_hidden.
12757
12758 2011-10-29 Paul Eggert <eggert@cs.ucla.edu>
12759
12760 * alloc.c (which_symbols): Declare EXTERNALLY_VISIBLE,
12761 so that this new function doesn't get optimized away by a
12762 whole-program optimizer. Make the 2nd arg EMACS_INT, not int.
12763
12764 2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
12765
12766 * frame.h (MOUSE_HL_INFO): Remove excess parens.
12767
12768 2011-10-29 Eli Zaretskii <eliz@gnu.org>
12769
12770 Fix the `xbytecode' command.
12771 * .gdbinit (xprintbytestr): New command.
12772 (xwhichsymbols): Rename from `which'; all callers changed.
12773 (xbytecode): Print the byte-code string as well.
12774
12775 2011-10-29 Kim Storm <storm@cua.dk>
12776
12777 * alloc.c (which_symbols): New function.
12778
12779 2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
12780
12781 * minibuf.c (read_minibuf_noninteractive): Allow reading empty
12782 line. (Bug#9903)
12783
12784 2011-10-29 Glenn Morris <rgm@gnu.org>
12785
12786 * process.c (wait_reading_process_output): Revert 2009-08-30 change.
12787 Not clear what it was for, and it causes various bugs. (Bug#9839)
12788
12789 2011-10-28 Eli Zaretskii <eliz@gnu.org>
12790
12791 * xdisp.c (note_mouse_highlight): Initialize `part', to avoid a
12792 possible random value that matches one of those tested as
12793 condition to clear the mouse face.
12794
12795 2011-10-28 Chong Yidong <cyd@gnu.org>
12796
12797 * xdisp.c (note_mouse_highlight): Fix use of uninitialized var.
12798
12799 2011-10-28 Dan Nicolaescu <dann@ics.uci.edu>
12800
12801 * window.c (make_window): Initialize phys_cursor_on_p.
12802
12803 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
12804
12805 * lisp.h (struct Lisp_Symbol): Update comments.
12806
12807 2011-10-28 Juanma Barranquero <lekktu@gmail.com>
12808
12809 * w32font.c (w32_load_unicows_or_gdi32): Add missing return.
12810
12811 2011-10-28 Eli Zaretskii <eliz@gnu.org>
12812
12813 Fix Emacs on Windows 9X (bug#8562). Thanks to oslsachem
12814 <oslsachem@gmail.com> for helping to debug this.
12815
12816 * w32font.c (g_b_init_is_w9x, g_b_init_get_outline_metrics_w)
12817 (g_b_init_get_text_metrics_w, g_b_init_get_glyph_outline_w)
12818 (g_b_init_get_glyph_outline_w): New static variables.
12819 (GetOutlineTextMetricsW_Proc, GetTextMetricsW_Proc)
12820 (GetGlyphOutlineW_Proc): New typedefs.
12821 (w32_load_unicows_or_gdi32, get_outline_metrics_w)
12822 (get_text_metrics_w, get_glyph_outline_w, globals_of_w32font):
12823 New functions.
12824 (w32font_open_internal, compute_metrics):
12825 Call get_outline_metrics_w, get_text_metrics_w, and get_glyph_outline_w
12826 instead of calling the "wide" APIs directly.
12827
12828 * emacs.c (main) [HAVE_NTGUI]: Call globals_of_w32font.
12829
12830 * w32.h (syms_of_w32font): Add prototype.
12831
12832 2011-10-27 Juanma Barranquero <lekktu@gmail.com>
12833
12834 * window.c (Fframe_root_window, Fframe_first_window, Fwindow_end)
12835 (Fframe_selected_window, Ftemp_output_buffer_show, Fnext_window)
12836 (Fdelete_window_internal, Fwindow_parameters): Fix typos in docstrings.
12837 (Fmove_to_window_line): Doc fix.
12838
12839 2011-10-27 Chong Yidong <cyd@gnu.org>
12840
12841 * process.c (make_process): Set gnutls_state to NULL.
12842
12843 * gnutls.c (emacs_gnutls_deinit): Deinit the gnutls_state if it is
12844 non-NULL, regardless of GNUTLS_INITSTAGE.
12845 (Fgnutls_boot): Cleanups. Call emacs_gnutls_deinit if we signal
12846 an error. Set process slots as soon as we allocate them.
12847
12848 * gnutls.h (GNUTLS_LOG, GNUTLS_LOG2): Fix macros.
12849
12850 2011-10-27 Chong Yidong <cyd@gnu.org>
12851
12852 * gnutls.c (emacs_gnutls_deinit): New function.
12853 Deallocate credentials structures as well as calling gnutls_deinit.
12854 (Fgnutls_deinit, Fgnutls_boot): Use it.
12855
12856 * process.c (make_process): Initialize GnuTLS credentials to NULL.
12857 (deactivate_process): Call emacs_gnutls_deinit.
12858
12859 2011-10-27 Juanma Barranquero <lekktu@gmail.com>
12860
12861 * image.c (x_create_x_image_and_pixmap):
12862 * w32.c (sys_rename, w32_delayed_load):
12863 * w32font.c (fill_in_logfont):
12864 * w32reg.c (x_get_string_resource): Silence compiler warnings.
12865
12866 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
12867
12868 * w32fns.c (w32_default_color_map): New function,
12869 extracted from Fw32_default_color_map.
12870 (Fw32_default_color_map, Fx_open_connection): Use it. (Bug#9785)
12871
12872 2011-10-25 Paul Eggert <eggert@cs.ucla.edu>
12873
12874 * dispextern.h (Fcontrolling_tty_p): New decl (Bug#6649 part 2).
12875
12876 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
12877
12878 * keyboard.c (test_undefined): New function (bug#9751).
12879 (read_key_sequence): Use it to detect when a key is bound to `undefined'.
12880
12881 2011-10-25 Enami Tsugutomo <tsugutomo.enami@jp.sony.com>
12882
12883 * sysdep.c (init_sys_modes): Fix the check for the controlling
12884 terminal (Bug#6649).
12885
12886 2011-10-20 Eli Zaretskii <eliz@gnu.org>
12887
12888 * dispextern.h (struct bidi_it): New member next_en_type.
12889
12890 * bidi.c (bidi_line_init): Initialize the next_en_type member.
12891 (bidi_resolve_explicit_1): When next_en_pos is valid for the
12892 current character, check also for next_en_type being WEAK_EN.
12893 (bidi_resolve_weak): Don't enter the expensive loop if the current
12894 position is before next_en_pos. Record the bidi type of the first
12895 non-ET, non-BN character we find, in addition to its position.
12896 (bidi_level_of_next_char): Invalidate next_en_type when
12897 next_en_pos is over-stepped.
12898
12899 2011-10-20 Paul Eggert <eggert@cs.ucla.edu>
12900
12901 Time zone name fixes for non-ASCII locales (Bug#641, Bug#9794)
12902 * editfns.c: Rewrite current-time-zone so that it invokes
12903 the equivalent of (format-time-string "%Z") to get the time zone name.
12904 This fixes a bug when the time zone name contains characters that
12905 need converting from the system time locale to Emacs internal format.
12906 This fixes a shortcoming that I introduced in my 1999-10-19 patch:
12907 that patch fixed format-time-string to do the conversion, but
12908 I forgot to fix current-time-zone.
12909 (format_time_string): New function, containing most of
12910 what Fformat_time_string used to contain.
12911 (Fformat_time_string): Rewrite in terms of format_time_string.
12912 This doesn't change this function's behavior.
12913 (current-time-zone): Rewrite to use format_time_string.
12914 This fixes the bug reported by Michael Schierl in
12915 <http://lists.gnu.org/archive/html/emacs-devel/2007-06/msg00334.html>.
12916 Jason Rumney's 2007-06-07 change worked around this bug, but
12917 didn't fix it.
12918 * systime.h (tzname, timezone): Remove no-longer-used declarations.
12919
12920 2011-10-19 Eli Zaretskii <eliz@gnu.org>
12921
12922 * xdisp.c (start_display): If the character at POS is displayed
12923 via a display vector, reset IT->current.dpvec_index to zero.
12924 (try_window_reusing_current_matrix): If a line ends in a display
12925 vector or the next line starts in a display vector, continue
12926 redrawing the window even though the character position of
12927 start_row was reached.
12928 (Bug#9771, part 2)
12929
12930 2011-10-18 Chong Yidong <cyd@gnu.org>
12931
12932 * xdisp.c (get_next_display_element): Handle U+2010 and U+2011
12933 with nobreak-char-display too.
12934
12935 2011-10-18 Eli Zaretskii <eliz@gnu.org>
12936
12937 Fix part 3 of bug#9771.
12938 * bidi.c (bidi_line_init): Initialize next_en_pos to zero, not -1.
12939 (bidi_resolve_neutral): Don't enter the expensive loop looking for
12940 non-neutral characters if the current character is a paragraph
12941 separator (a.k.a. Newline). This avoids running the same
12942 expensive loop twice, once when we consume the preceding newline
12943 and the other time when the line actually needs to be displayed.
12944 Avoid the loop when we see neutrals on the base embedding level
12945 following a character whose directionality is the same as the
12946 paragraph's. This avoids running the expensive loop when a line
12947 ends in a long sequence of neutrals, like control characters.
12948 Add assertion against STRONG_AL type. Slightly rearrange code
12949 that determines the type of a neutral given the first non-neutral
12950 that follows it.
12951 (bidi_level_of_next_char): Set next_en_pos to zero when
12952 invalidating its info.
12953
12954 2011-10-17 Eli Zaretskii <eliz@gnu.org>
12955
12956 * xdisp.c (push_display_prop): Determine whether to record string
12957 or buffer position by IT->string, not by IT->method. Allow
12958 GET_FROM_DISPLAY_VECTOR as IT->method on entry. (Bug#9771, part 4)
12959 (move_it_vertically_backward): Don't look for character position
12960 immediately after the newline when in a continuation line.
12961 (Bug#9771, part 1)
12962
12963 2011-10-15 Martin Rudalics <rudalics@gmx.at>
12964
12965 * window.c (coordinates_in_window): Rewrite and delabelize
12966 vertical border check. (Bug#5357) (Bug#9618)
12967
12968 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
12969
12970 * xterm.c (frame_highlight, frame_unhighlight): Ignore unexplained
12971 errors in XSetWindowBorder (bug#9310).
12972
12973 2011-10-13 Dmitry Antipov <dmantipov@yandex.ru>
12974
12975 * editfns.c (Fset_time_zone_rule): Replace free with xfree to
12976 avoid crash when xmalloc overrun checking is enabled.
12977
12978 2011-10-13 Eli Zaretskii <eliz@gnu.org>
12979
12980 * xdisp.c (Fcurrent_bidi_paragraph_direction): Initialize
12981 itb.paragraph_dir to NEUTRAL_DIR. Fixes an occasional incorrect
12982 cursor motion with <left> and <right> arrow keys.
12983
12984 * bidi.c (bidi_init_it): Don't initialize paragraph_dir here, as
12985 some callers set that themselves.
12986
12987 2011-10-12 Eli Zaretskii <eliz@gnu.org>
12988
12989 * xdisp.c (find_row_edges): Handle the case where ROW comes from a
12990 display string and the previous row comes from the same string and
12991 is empty. (Bug#9739) (Bug#9738)
12992
12993 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
12994
12995 * doc.c (get_doc_string): Encode file name (bug#9735).
12996
12997 2011-10-12 Eli Zaretskii <eliz@gnu.org>
12998
12999 * bidi.c (bidi_level_of_next_char):
13000 * xdisp.c (get_visually_first_element): Remove old incorrect
13001 comments regarding the Unicode Line Separator character.
13002
13003 * bidi.c (bidi_init_it): Initialize paragraph_dir to NEUTRAL_DIR.
13004
13005 2011-10-12 Dmitry Antipov <dmantipov@yandex.ru>
13006
13007 * alloc.c (Fgc_status): Do not access beyond zombies array
13008 boundary if nzombies > MAX_ZOMBIES.
13009 * alloc.c (dump_zombies): Add missing format specifier.
13010
13011 2011-10-12 Paul Eggert <eggert@cs.ucla.edu>
13012
13013 * xdisp.c (set_cursor_from_row): Simplify conditionals,
13014 to pacify GCC 4.6.1 x86-64 with -O2 -Wstrict-overflow.
13015
13016 * lread.c (read_escape): Allow hex escapes as large as ?\xfffffff.
13017 Some packages use them to denote characters with modifiers.
13018
13019 2011-10-11 Andreas Schwab <schwab@linux-m68k.org>
13020
13021 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR)
13022 (GCPRO5_VAR, GCPRO6_VAR, UNGCPRO_VAR): Add whitespace to avoid
13023 matching a pp-number. Rename parameter var to var1.
13024
13025 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
13026
13027 * minibuf.c (Finternal_complete_buffer): Fix last change (bug#9709).
13028
13029 2011-10-08 Glenn Morris <rgm@gnu.org>
13030
13031 * callint.c (Fcall_interactively): Give a more explicit error for the
13032 'c' case with a non-character input. (Bug#8479)
13033
13034 2011-10-08 Eli Zaretskii <eliz@gnu.org>
13035
13036 * xdisp.c (hscroll_window_tree): Support hscroll in right-to-left
13037 lines.
13038 (set_cursor_from_row): Fix cursor positioning in mixed L2R+R2L
13039 lines that are hscrolled on the left.
13040
13041 * dispnew.c (buffer_posn_from_coords): Account for a possible
13042 presence of header-line. (Bug#4426)
13043
13044 2011-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
13045
13046 * buffer.c (syms_of_buffer) <enable-multibyte-characters>:
13047 Don't advertise functionality which we discourage or doesn't work.
13048
13049 2011-10-07 Paul Eggert <eggert@cs.ucla.edu>
13050
13051 * alloc.c (GC_LISP_OBJECT_ALIGNMENT): Use offsetof, not __alignof__
13052 or sizeof. __alignof__ gives the wrong answer on Fedora x86-64
13053 with GCC 4.6.1 when configured with CC='gcc -m32' --with-wide-int;
13054 this makes Emacs dump core during garbage collection on rare
13055 occasions. sizeof is obviously inferior to offsetof here, so
13056 stick with offsetof.
13057 (GC_POINTER_ALIGNMENT): New macro.
13058 (mark_memory): Omit 3rd (offset) arg; caller changed.
13059 Don't assume EMACS_INT alignment is the same as pointer alignment.
13060
13061 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
13062
13063 * keyboard.c (read_key_sequence_remapped): New var.
13064 (read_key_sequence): Compute remapping in the right buffer.
13065 (command_loop_1): Use read_key_sequence's remapping directly.
13066
13067 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
13068
13069 * dired.c (file_name_completion): Don't expand file name.
13070 (Ffile_name_completion, Ffile_name_all_completions): Expand file name
13071 before checking file name handler.
13072
13073 * minibuf.c (Finternal_complete_buffer): Only show internal buffers if
13074 they've been requested explicitly (bug#9591).
13075
13076 2011-10-01 Andreas Schwab <schwab@linux-m68k.org>
13077
13078 * keymap.c (Fsingle_key_description): Use make_specified_string
13079 instead of build_string to build string from push_key_description.
13080 (Bug#5193)
13081
13082 2011-09-30 Paul Eggert <eggert@cs.ucla.edu>
13083
13084 * buffer.h (struct buffer): Use time_t, not int, for a time stamp.
13085 This fixes a Y2038 bug on 64-bit hosts.
13086 * buffer.c (reset_buffer):
13087 * fileio.c (Fdo_auto_save, Fset_buffer_auto_saved)
13088 (Fclear_buffer_auto_save_failure):
13089 Use 0, not -1, to represent an unset failure time, since time_t
13090 might not be signed.
13091
13092 Remove dependency on glibc malloc internals.
13093 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
13094 Move back here from lisp.h, but with their new implementations.
13095 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
13096 (XMALLOC_OVERRUN_SIZE_SIZE): Move these new lisp.h macros here.
13097 * charset.c (charset_table_init): New static var.
13098 (syms_of_charset): Use it instead of xmalloc. This removes a
13099 dependency on glibc malloc internals. See Eli Zaretskii's comment in
13100 <http://lists.gnu.org/archive/html/emacs-devel/2011-09/msg00815.html>.
13101 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
13102 Move back to alloc.c.
13103 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
13104 (XMALLOC_OVERRUN_SIZE_SIZE): Move to alloc.c.
13105
13106 2011-09-30 Jan Djärv <jan.h.d@swipnet.se>
13107
13108 * nsterm.m (windowDidResize): Call x_set_window_size only when
13109 ns_in_resize is true. Otherwise set pixelwidth/height and
13110 call change_frame_size (Bug#9628).
13111
13112 2011-09-30 Paul Eggert <eggert@cs.ucla.edu>
13113
13114 Port --enable-checking=all to Fedora 14 x86-64.
13115 * charset.c (syms_of_charset): Also account for glibc malloc's
13116 internal overhead when calculating the initial malloc maximum.
13117
13118 Port --enable-checking=all to Fedora 14 x86.
13119 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
13120 Move to lisp.h.
13121 (xmalloc_put_size, xmalloc_get_size, overrun_check_malloc)
13122 (overrun_check_realloc, overrun_check_free):
13123 Use XMALLOC_OVERRUN_SIZE_SIZE, not sizeof (size_t).
13124 That way, xmalloc returns a properly-aligned pointer even if
13125 XMALLOC_OVERRUN_CHECK is defined. The old debugging code happened
13126 to align OK on typical 64-bit hosts, but not on Fedora 14 x86.
13127 * charset.c (syms_of_charset): Take XMALLOC_OVERRUN_CHECK_OVERHEAD
13128 into account when calculating the initial malloc maximum.
13129 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
13130 Move here from alloc.c, so that charset.c can use it too.
13131 Properly align; the old code wasn't right for common 32-bit hosts
13132 when configured with --enable-checking=all.
13133 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
13134 (XMALLOC_OVERRUN_SIZE_SIZE): New macros.
13135
13136 2011-09-29 Eli Zaretskii <eliz@gnu.org>
13137
13138 * sysdep.c (snprintf) [!EOVERFLOW]: If EOVERFLOW is not defined,
13139 use EDOM.
13140
13141 2011-09-28 Eli Zaretskii <eliz@gnu.org>
13142
13143 * xdisp.c (compute_display_string_end): If there's no display
13144 string at CHARPOS, return -1.
13145
13146 * bidi.c (bidi_fetch_char): When compute_display_string_end
13147 returns a negative value, treat the character as a normal
13148 character not covered by a display string. (Bug#9624)
13149
13150 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
13151
13152 * lread.c (Fread_from_string): Fix typo in docstring.
13153
13154 2011-09-27 Eli Zaretskii <eliz@gnu.org>
13155
13156 * xdisp.c (handle_invisible_prop): If invisible text ends on a
13157 newline, reseat the iterator instead of bidi-iterating there one
13158 character at a time. (Bug#9610)
13159 (BUFFER_POS_REACHED_P, move_it_in_display_line_to): Bail when past
13160 TO_CHARPOS if the bidi iterator is at base embedding level.
13161
13162 2011-09-27 Andreas Schwab <schwab@linux-m68k.org>
13163
13164 * lread.c (readevalloop): Use correct code for NBSP.
13165 (read1): Likewise. (Bug#9608)
13166
13167 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
13168
13169 * dbusbind.c (Fdbus_register_signal): When service is not
13170 registered, use nil in Vdbus_registered_objects_table. (Bug#9581)
13171
13172 2011-09-25 Glenn Morris <rgm@gnu.org>
13173
13174 * buffer.c (truncate-lines): Doc fix.
13175
13176 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
13177
13178 * window.c (Fwindow_prev_buffers, Fset_window_prev_buffers)
13179 (Fset_window_next_buffers): Doc fix.
13180
13181 2011-09-24 Glenn Morris <rgm@gnu.org>
13182
13183 * minibuf.c (read_minibuf): Disable line truncation. (Bug#5715)
13184
13185 2011-09-24 Paul Eggert <eggert@cs.ucla.edu>
13186
13187 Fix minor problems found by static checking.
13188 * xdisp.c (string_from_display_spec): Don't assume vecsize fits in int.
13189 * indent.c (Fvertical_motion): Fix == vs = typo.
13190
13191 2011-09-24 Eli Zaretskii <eliz@gnu.org>
13192
13193 * dispnew.c (syms_of_display) <redisplay-dont-pause>:
13194 Default value is now t. Doc fix.
13195
13196 * indent.c (Fvertical_motion): Compute and apply the overshoot
13197 logic when moving up, not only when moving down. Fix the
13198 confusing name and values of the it_overshoot_expected variable;
13199 logic changes accordingly. (Bug#9254) (Bug#9549)
13200
13201 * xdisp.c (pos_visible_p): Produce correct pixel coordinates when
13202 CHARPOS is covered by a display string which includes newlines.
13203 (move_it_vertically_backward): Avoid inflooping when START_CHARPOS
13204 is covered by a display string with embedded newlines.
13205
13206 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
13207
13208 * dbusbind.c (Fdbus_register_signal): Add match rule to
13209 Vdbus_registered_objects_table. (Bug#9581)
13210 (Fdbus_register_method, Vdbus_registered_objects_table):
13211 Fix docstring.
13212
13213 2011-09-24 Jim Meyering <meyering@redhat.com>
13214
13215 do not ignore write error for any output size
13216 The previous change was incomplete.
13217 While it makes emacs --batch detect the vast majority of stdout
13218 write failures, errors were still ignored whenever the output size is
13219 k * (BUFSIZ+1) - 4. E.g., on a system with BUFSIZ of 4096,
13220 $ emacs --batch --eval '(print (format "%4093d" 0))' > /dev/full \
13221 && echo FAIL: ignored write error
13222 FAIL: ignored write error
13223 $ emacs --batch --eval '(print (format "%20481d" 0))' > /dev/full \
13224 && echo FAIL: ignored write error
13225 FAIL: ignored write error
13226 * emacs.c (Fkill_emacs): Also test ferror. (Bug#9574)
13227
13228 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
13229
13230 * emacs.c (Fkill_emacs): In noninteractive mode exit
13231 non-successfully if a write error occurred on stdout. (Bug#9574)
13232
13233 2011-09-21 Eli Zaretskii <eliz@gnu.org>
13234
13235 * xdisp.c (pop_it): Allow it->object that is a cons cell to pass
13236 the xassert test.
13237
13238 * dispextern.h (struct it): Update the comment documenting what
13239 can it->OBJECT be.
13240
13241 2011-09-20 Eli Zaretskii <eliz@gnu.org>
13242
13243 * xdisp.c (set_cursor_from_row): If the row ends in a newline from
13244 a display string, extend search for cursor position to end of row.
13245 (find_row_edges): If the row ends in a newline from a display
13246 string, increment its MATRIX_ROW_END_CHARPOS by one. (Bug#9549)
13247 Handle the case of a display string with multiple newlines.
13248 (Fcurrent_bidi_paragraph_direction): Fix search for previous
13249 non-empty line. Fixes confusing cursor motion with arrow keys at
13250 the beginning of a line that starts with whitespace.
13251
13252 2011-09-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
13253
13254 * lread.c (Fread_from_string): Document what FINAL-STRING-INDEX is
13255 (bug#9493).
13256
13257 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
13258
13259 * xfns.c (Fx_create_frame): Handle the bitmapIcon resource as
13260 boolean (Bug#9154).
13261
13262 2011-09-18 Eli Zaretskii <eliz@gnu.org>
13263
13264 * xdisp.c (display_line): Record maximum and minimum buffer
13265 positions even if no glyphs were produced (e.g., by a zero-width
13266 stretch). Fixes bug#9530 on a TTY. Under word-wrap, don't record
13267 buffer positions that will be removed from the glyph row because
13268 they don't fit.
13269 (produce_stretch_glyph): Fix a bug in :align-to on a TTY when the
13270 column is beyond frame width: don't subtract 1 "pixel" when
13271 computing width of the stretch.
13272 (reseat_at_next_visible_line_start): Undo the change made on
13273 2011-09-17 that saved paragraph information and restored it after
13274 the call to `reseat'. (Bug#9545)
13275
13276 2011-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13277
13278 * xdisp.c (expose_window): Save original value of phys_cursor_on_p
13279 and turn window cursor on if cleared (Bug#9415).
13280
13281 2011-09-18 Andreas Schwab <schwab@linux-m68k.org>
13282
13283 * search.c (boyer_moore): Take unibyte characters from pattern
13284 literally. (Bug#9458)
13285
13286 2011-09-18 Eli Zaretskii <eliz@gnu.org>
13287
13288 * xdisp.c (reseat_at_next_visible_line_start): Fix last change.
13289
13290 2011-09-18 Paul Eggert <eggert@cs.ucla.edu>
13291
13292 Fix minor problem found by static checking.
13293 * xdisp.c (reseat_at_next_visible_line_start): Mark locals as
13294 initialized, to pacify gcc -Wuninitialized.
13295
13296 * fileio.c: Report proper errno when syscall falls.
13297 (Finsert_file_contents): Save and restore errno,
13298 so that report_file_error outputs the correct diagnostic.
13299 (Fwrite_region) [CLASH_DETECTION]: Likewise.
13300
13301 2011-09-18 Eli Zaretskii <eliz@gnu.org>
13302
13303 * .gdbinit (pgx): Fix references to fields of `struct glyph'.
13304
13305 2011-09-17 Eli Zaretskii <eliz@gnu.org>
13306
13307 * xdisp.c (produce_stretch_glyph): Another fix for changes made on
13308 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9530)
13309
13310 2011-09-17 Eli Zaretskii <eliz@gnu.org>
13311
13312 * xdisp.c (reseat_at_next_visible_line_start): Keep information
13313 about the current paragraph and restore it after the call to reseat.
13314
13315 * bidi.c (MAX_PARAGRAPH_SEARCH): New macro.
13316 (bidi_find_paragraph_start): Search back for paragraph beginning
13317 at most MAX_PARAGRAPH_SEARCH lines; if not found, return BEGV_BYTE.
13318 (bidi_move_to_visually_next): Only trigger paragraph-related
13319 computations when the last character is a newline or at EOB, not
13320 just any NEUTRAL_B. (Bug#9470)
13321
13322 * xdisp.c (set_cursor_from_row): Don't invoke special treatment of
13323 truncated lines if point is covered by a display string. (Bug#9524)
13324
13325 2011-09-16 Paul Eggert <eggert@cs.ucla.edu>
13326
13327 * xselect.c: Relax test for outgoing X longs (Bug#9498).
13328 (cons_to_x_long): New function.
13329 (lisp_data_to_selection_data): Use it. Correct the test for
13330 short-versus-long data; it was negated. Break out of vector
13331 loop, for efficiency, when a long datum is discovered.
13332
13333 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
13334
13335 * eval.c (Fquote): Document its non-consing behavior (bug#9482).
13336
13337 2011-09-16 Eli Zaretskii <eliz@gnu.org>
13338
13339 * image.c (tiff_handler): Work around a bug in MinGW GCC 3.x (see
13340 GCC PR/17406) by declaring this function with external scope.
13341
13342 2011-09-15 Paul Eggert <eggert@cs.ucla.edu>
13343
13344 * editfns.c (Fformat): Fix bug in text-property fix (Bug#9514).
13345 Don't mishandle (length (format "%%")) and (format "%4000s%%" "").
13346
13347 2011-09-15 Andreas Schwab <schwab@linux-m68k.org>
13348
13349 * editfns.c (Fformat): Correctly handle text properties on "%%".
13350
13351 2011-09-15 Eli Zaretskii <eliz@gnu.org>
13352
13353 * xterm.c (x_draw_composite_glyph_string_foreground):
13354 * w32term.c (x_draw_composite_glyph_string_foreground):
13355 * term.c (encode_terminal_code):
13356 * composite.c (composition_update_it, get_composition_id):
13357 * xdisp.c (get_next_display_element)
13358 (fill_composite_glyph_string): Add comments about special meaning
13359 of TAB characters in a composition.
13360
13361 2011-09-15 Paul Eggert <eggert@cs.ucla.edu>
13362
13363 * editfns.c (Fformat): Fix off-by-1 bug for "%%b" (Bug#9514).
13364 This occurs when processing a multibyte format.
13365 Problem reported by Wolfgang Jenker.
13366
13367 2011-09-15 Johan Bockgård <bojohan@gnu.org>
13368
13369 * xdisp.c (try_cursor_movement): Only check for exact match if
13370 cursor hpos found by set_cursor_from_row is valid. (Bug#9495)
13371
13372 2011-09-14 Paul Eggert <eggert@cs.ucla.edu>
13373
13374 Remove unused external symbols.
13375 * dispextern.h (calc_pixel_width_or_height): Remove decl.
13376 * xdisp.c (calc_pixel_width_or_height): Now static.
13377 * doprnt.c (exprintf) [! (HAVE_X_WINDOWS && USE_X_TOOLKIT)]: Remove.
13378 * indent.c (check_display_width):
13379 * w32term.c: Fix comment to match code.
13380 * xterm.c, xterm.h (x_catching_errors): Remove.
13381
13382 2011-09-14 Paul Eggert <eggert@cs.ucla.edu>
13383
13384 * xselect.c: Use signed conversions more consistently (Bug#9498).
13385 (selection_data_to_lisp_data): Assume incoming selection data are
13386 signed integers, not unsigned. This is to be consistent with
13387 outgoing selection data, which was modified to use signed integers
13388 in as part of the fix to Bug#9196 in response to Jan D.'s comment
13389 in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9196#32> that X11
13390 expects long, not unsigned long.
13391
13392 2011-09-14 Eli Zaretskii <eliz@gnu.org>
13393
13394 * xdisp.c (try_window_reusing_current_matrix): Fix incorrect
13395 computation of loop end. Reported by Johan Bockgård
13396 <bojohan@gnu.org>.
13397
13398 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
13399
13400 * frame.c (Fother_visible_frames_p): Function deleted.
13401
13402 2011-09-12 Eli Zaretskii <eliz@gnu.org>
13403
13404 * indent.c (compute_motion): Process display vector front to back
13405 rather than the other way around. (Bug#2496)
13406
13407 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
13408
13409 * fileio.c (Finsert_file_contents): Don't assume beg_offset is 0.
13410
13411 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
13412
13413 * minibuf.c (Fread_from_minibuffer): Doc fix.
13414
13415 2011-09-11 Eli Zaretskii <eliz@gnu.org>
13416
13417 * xdisp.c (produce_stretch_glyph): Fix a typo made in changes from
13418 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9475)
13419
13420 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
13421
13422 * fileio.c (Fvisited_file_modtime): Document `(-1 65535)' as a
13423 value for non-existent files.
13424
13425 2011-09-11 Eli Zaretskii <eliz@gnu.org>
13426
13427 * fileio.c (Finsert_file_contents): If the file cannot be opened,
13428 set its "size" to -1. This will set the modtime_size field of
13429 the corresponding buffer to -1, which is what
13430 verify-visited-file-modtime expects for files that do not exist.
13431 (Bug#9139)
13432
13433 2011-09-11 Paul Eggert <eggert@cs.ucla.edu>
13434
13435 * keymap.h (KEY_DESCRIPTION_SIZE, push_key_description): Move decls
13436 here ...
13437 * lisp.h: ... from here. push_key_description is no longer
13438 defined in keyboard.c, so its declaration should not be in
13439 lisp.h's "Defined in keyboard.c" section, and KEY_DESCRIPTION_SIZE
13440 logically belongs with push_key_description.
13441
13442 2011-09-10 Paul Eggert <eggert@cs.ucla.edu>
13443
13444 * buffer.h: Include <sys/types.h> instead of <time.h>.
13445 Otherwise, off_t wasn't defined on FreeBSD 9.0-BETA2 i386.
13446 Problem reported by Herbert J. Skuhra.
13447
13448 2011-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
13449
13450 * xml.c (parse_region): Make the parsing work for
13451 non-comment-starting XML files again (bug#9144).
13452
13453 2011-09-10 Andreas Schwab <schwab@linux-m68k.org>
13454
13455 * image.c (gif_load): Fix calculation of bottom and right corner.
13456 (Bug#9468)
13457
13458 2011-09-10 Eli Zaretskii <eliz@gnu.org>
13459
13460 * xdisp.c (MAX_DISP_SCAN): Decrease to 250. Prevents sluggish
13461 redisplay in small windows.
13462
13463 2011-09-09 Eli Zaretskii <eliz@gnu.org>
13464
13465 * frame.c (x_report_frame_params): Cast to avoid compiler warnings.
13466
13467 2011-09-08 Martin Rudalics <rudalics@gmx.at>
13468
13469 * window.c (Fset_window_prev_buffers, Fset_window_next_buffers):
13470 Operate on live windows only.
13471
13472 2011-09-08 Juanma Barranquero <lekktu@gmail.com>
13473
13474 * emacs.c (my_heap_start): #ifdef to avoid warnings when unused.
13475
13476 2011-09-07 Eli Zaretskii <eliz@gnu.org>
13477
13478 * xdisp.c (move_it_in_display_line_to): Call RESTORE_IT on ppos_it
13479 only under bidi iteration.
13480
13481 2011-09-07 Jan Djärv <jan.h.d@swipnet.se>
13482
13483 * gtkutil.c (xg_make_tool_item): Insert comment about eventbox.
13484
13485 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
13486
13487 isnan: Fix porting problem to Solaris 10 with bundled gcc.
13488 Without this fix, the command to link temacs failed due to an
13489 undefined symbol __builtin_isnan. This is because
13490 /usr/include/iso/math_c99.h #defines isnan(x) to
13491 __builtin_isnan(x), but the bundled gcc, which identifies itself
13492 as gcc 3.4.3 (csl-sol210-3_4-branch+sol_rpath), does not have
13493 a __builtin_isnan.
13494 * floatfns.c (isnan): #undef, and then #define to a clone of
13495 what's in data.c.
13496 (Fisnan): Always define, since it's always available now.
13497 (syms_of_floatfns): Always define isnan at the Lisp level.
13498
13499 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
13500
13501 * Makefile.in (gl-stamp): move-if-change now in build-aux (Bug#9169).
13502
13503 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
13504
13505 * fileio.c: Fix bugs with large file offsets (Bug#9428).
13506 The previous code assumed that file offsets (off_t values) fit in
13507 EMACS_INT variables, which is not true on typical 32-bit hosts.
13508 The code messed up by falsely reporting buffer overflow in cases
13509 such as (insert-file-contents "big" nil 1 2) into an empty buffer
13510 when "big" contains more than 2**29 bytes, even though this
13511 inserts just one byte and does not overflow the buffer.
13512 (Finsert_file_contents): Store file offsets as off_t
13513 values, not as EMACS_INT values. Check for overflow when
13514 converting between EMACS_INT and off_t. When checking for
13515 buffer overflow or for overlap, take the offsets into account.
13516 Don't use EMACS_INT for small values where int suffices.
13517 When checking for overlap, fix a typo: ZV was used where
13518 ZV_BYTE was intended.
13519 (Fwrite_region): Don't assume off_t fits into 'long'.
13520 * buffer.h (struct buffer.modtime_size): Now off_t, not EMACS_INT.
13521
13522 2011-09-05 Michael Albinus <michael.albinus@gmx.de>
13523
13524 * dbusbind.c (xd_signature_cat): Rename from signature_cat.
13525
13526 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
13527
13528 sprintf-related integer and memory overflow issues (Bug#9412).
13529
13530 * doprnt.c (doprnt): Support printing ptrdiff_t and intmax_t values.
13531 (esprintf, exprintf, evxprintf): New functions.
13532 * keyboard.c (command_loop_level): Now EMACS_INT, not int.
13533 (cmd_error): Kbd macro iterations count is now EMACS_INT, not int.
13534 (modify_event_symbol): Do not assume that the length of
13535 name_alist_or_stem is safe to alloca and fits in int.
13536 (Fexecute_extended_command): Likewise for function name and binding.
13537 (Frecursion_depth): Wrap around reliably on integer overflow.
13538 * keymap.c (push_key_description): First arg is now EMACS_INT, not int,
13539 since some callers pass EMACS_INT values.
13540 (Fsingle_key_description): Don't crash if symbol name contains more
13541 than MAX_ALLOCA bytes.
13542 * minibuf.c (minibuf_level): Now EMACS_INT, not int.
13543 (get_minibuffer): Arg is now EMACS_INT, not int.
13544 * lisp.h (get_minibuffer, push_key_description): Reflect API changes.
13545 (esprintf, exprintf, evxprintf): New decls.
13546 * window.h (command_loop_level, minibuf_level): Reflect API changes.
13547
13548 * dbusbind.c (signature_cat): New function.
13549 (xd_signature, Fdbus_register_signal):
13550 Do not overrun buffer; instead, report string overflow.
13551
13552 * dispnew.c (add_window_display_history): Don't overrun buffer.
13553 Truncate instead; this is OK since it's just a log.
13554
13555 * editfns.c (Fcurrent_time_zone): Don't overrun buffer
13556 even if the time zone offset is outlandishly large.
13557 Don't mishandle offset == INT_MIN.
13558
13559 * emacs.c (main) [NS_IMPL_COCOA]: Don't overrun buffer
13560 when creating daemon; the previous buffer-overflow check was incorrect.
13561
13562 * eval.c (verror): Simplify by rewriting in terms of evxprintf,
13563 which has the guts of the old verror function.
13564
13565 * filelock.c (lock_file_1, lock_file): Don't blindly alloca long name;
13566 use SAFE_ALLOCA instead. Use esprintf to avoid int-overflow issues.
13567
13568 * font.c: Include <float.h>, for DBL_MAX_10_EXP.
13569 (font_unparse_xlfd): Don't blindly alloca long strings.
13570 Don't assume XINT result fits in int, or that XFLOAT_DATA * 10
13571 fits in int, when using sprintf. Use single snprintf to count
13572 length of string rather than counting it via multiple sprintfs;
13573 that's simpler and more reliable.
13574 (font_unparse_fcname): Use it to avoid sprintf buffer overrun.
13575 (generate_otf_features) [0 && HAVE_LIBOTF]: Use esprintf, not
13576 sprintf, in case result does not fit in int.
13577
13578 * fontset.c (num_auto_fontsets): Now printmax_t, not int.
13579 (fontset_from_font): Print it.
13580
13581 * frame.c (tty_frame_count): Now printmax_t, not int.
13582 (make_terminal_frame, set_term_frame_name): Print it.
13583 (x_report_frame_params): In X, window IDs are unsigned long,
13584 not signed long, so print them as unsigned.
13585 (validate_x_resource_name): Check for implausibly long names,
13586 and don't assume name length fits in 'int'.
13587 (x_get_resource_string): Don't blindly alloca invocation name;
13588 use SAFE_ALLOCA. Use esprintf, not sprintf, in case result does
13589 not fit in int.
13590
13591 * gtkutil.c: Include <float.h>, for DBL_MAX_10_EXP.
13592 (xg_check_special_colors, xg_set_geometry):
13593 Make sprintf buffers a bit bigger, to avoid potential buffer overrun.
13594
13595 * lread.c (dir_warning): Don't blindly alloca buffer; use SAFE_ALLOCA.
13596 Use esprintf, not sprintf, in case result does not fit in int.
13597
13598 * macros.c (executing_kbd_macro_iterations): Now EMACS_INT, not int.
13599 (Fend_kbd_macro): Don't mishandle MOST_NEGATIVE_FIXNUM by treating
13600 it as a large positive number.
13601 (Fexecute_kbd_macro): Don't assume repeat count fits in int.
13602 * macros.h (executing_kbd_macro_iterations): Now EMACS_INT, not int.
13603
13604 * nsterm.m ((NSSize)windowWillResize): Use esprintf, not sprintf,
13605 in case result does not fit in int.
13606
13607 * print.c (float_to_string): Detect width overflow more reliably.
13608 (print_object): Make sprintf buffer a bit bigger, to avoid potential
13609 buffer overrun. Don't assume list length fits in 'int'. Treat
13610 print length of 0 as 0, not as infinity; to be consistent with other
13611 uses of print length in this function. Don't overflow print length
13612 index. Don't assume hash table size fits in 'long', or that
13613 vectorlike size fits in 'unsigned long'.
13614
13615 * process.c (make_process): Use printmax_t, not int, to format
13616 process-name gensyms.
13617
13618 * sysdep.c (snprintf) [! HAVE_SNPRINTF]: New function.
13619
13620 * term.c (produce_glyphless_glyph): Make sprintf buffer a bit bigger
13621 to avoid potential buffer overrun.
13622
13623 * xfaces.c (x_update_menu_appearance): Don't overrun buffer
13624 if X resource line is longer than 512 bytes.
13625
13626 * xfns.c (x_window): Make sprintf buffer a bit bigger
13627 to avoid potential buffer overrun.
13628
13629 * xterm.c (x_io_error_quitter): Don't overrun sprintf buffer.
13630
13631 * xterm.h (x_check_errors): Add ATTRIBUTE_FORMAT_PRINTF.
13632
13633 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
13634
13635 Integer overflow fixes for scrolling, etc.
13636 Without these, Emacs silently mishandles large integers sometimes.
13637 For example, "C-u 4294967297 M-x recenter" was treated as if
13638 it were "C-u 1 M-x recenter" on a typical 64-bit host.
13639
13640 * xdisp.c (try_window_id): Check Emacs fixnum range before
13641 converting to 'int'.
13642
13643 * window.c (window_scroll_line_based, Frecenter):
13644 Check that an Emacs fixnum is in range before assigning it to 'int'.
13645 (Frecenter, Fmove_to_window_line): Use EMACS_INT, not int, for
13646 values converted from Emacs fixnums.
13647 (Frecenter): Don't wrap around a line count if it is out of 'int'
13648 range; instead, treat it as an extreme value.
13649 (Fset_window_configuration, compare_window_configurations):
13650 Use ptrdiff_t, not int, for index that might exceed 2 GiB.
13651
13652 * search.c (Freplace_match): Use ptrdiff_t, not int, for indexes
13653 that can exceed INT_MAX. Check that EMACS_INT value is in range
13654 before assigning it to the (possibly-narrower) index.
13655 (match_limit): Don't assume that a fixnum can fit in 'int'.
13656
13657 * print.c (print_object): Use ptrdiff_t, not int, for index that can
13658 exceed INT_MAX.
13659
13660 * indent.c (position_indentation): Now takes ptrdiff_t, not int.
13661 (Fvertical_motion): Don't wrap around LINES values that don't fit
13662 in 'int'. Instead, treat them as extreme values. This is good
13663 enough for windows, which can't have more than INT_MAX lines anyway.
13664
13665 2011-09-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
13666
13667 * Require libxml/parser.h to avoid compilation warning.
13668
13669 * emacs.c (shut_down_emacs): Call xmlCleanupParser on shutdown.
13670
13671 * xml.c (parse_region): Don't call xmlCleanupParser after parsing,
13672 since this reportedly can destroy thread storage.
13673
13674 2011-08-30 Chong Yidong <cyd@stupidchicken.com>
13675
13676 * syntax.c (find_defun_start): Update all cache variables if
13677 exiting early (Bug#9401).
13678
13679 2011-08-30 Eli Zaretskii <eliz@gnu.org>
13680
13681 * image.c (x_bitmap_pixmap): Cast to int to avoid compiler warnings.
13682
13683 * xdisp.c (produce_stretch_glyph): No longer static, compiled also
13684 when HAVE_WINDOW_SYSTEM is not defined. Support both GUI and TTY
13685 frames. Call tty_append_glyph in the TTY case. (Bug#9402)
13686
13687 * term.c (tty_append_glyph): New function.
13688 (produce_stretch_glyph): Static function and its prototype deleted.
13689
13690 * dispextern.h (produce_stretch_glyph, tty_append_glyph):
13691 Add prototypes.
13692
13693 2011-08-29 Paul Eggert <eggert@cs.ucla.edu>
13694
13695 * image.c (parse_image_spec): Check for nonnegative, not for positive,
13696 when checking :margin (Bug#9390).
13697 (IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR):
13698 Rename from IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR,
13699 so that the name doesn't mislead. All uses changed.
13700
13701 2011-08-28 Johan Bockgård <bojohan@gnu.org>
13702
13703 * term.c (init_tty) [HAVE_GPM]: Move mouse settings after
13704 set_tty_hooks.
13705
13706 2011-08-27 Eli Zaretskii <eliz@gnu.org>
13707
13708 * xdisp.c (move_it_to): Don't bail out early when reaching
13709 position beyond to_charpos, if we are scanning backwards.
13710 (move_it_vertically_backward): When DY == 0, make sure we get to
13711 the first character in the line after the newline.
13712
13713 2011-08-27 Paul Eggert <eggert@cs.ucla.edu>
13714
13715 * ccl.c: Improve and simplify overflow checking (Bug#9196).
13716 (ccl_driver): Do not generate an out-of-range pointer.
13717 (Fccl_execute_on_string): Remove unnecessary check for
13718 integer overflow, noted by Stefan Monnier in
13719 <http://lists.gnu.org/archive/html/emacs-devel/2011-08/msg00979.html>.
13720 Remove a FIXME that didn't need fixing.
13721 Simplify the newly-introduced buffer reallocation code.
13722
13723 2011-08-27 Juanma Barranquero <lekktu@gmail.com>
13724
13725 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on lib/verify.h.
13726
13727 2011-08-26 Paul Eggert <eggert@cs.ucla.edu>
13728
13729 Integer and memory overflow issues (Bug#9196).
13730
13731 * doc.c (get_doc_string): Rework so that
13732 get_doc_string_buffer_size is the actual buffer size, rather than
13733 being 1 less than the actual buffer size; this makes xpalloc more
13734 convenient.
13735
13736 * image.c (x_allocate_bitmap_record, cache_image):
13737 * xselect.c (Fx_register_dnd_atom):
13738 Simplify previous changes by using xpalloc.
13739
13740 * buffer.c (overlay_str_len): Now ptrdiff_t, not EMACS_INT,
13741 since either will do and ptrdiff_t is convenient with xpalloc.
13742
13743 * charset.c (charset_table_size)
13744 (struct charset_sort_data.priority): Now ptrdiff_t.
13745 (charset_compare): Don't overflow if priorities differ greatly.
13746 (Fsort_charsets): Don't assume list length fits in int.
13747 Check for size-calculation overflow when allocating sort data.
13748 (syms_of_charset): Allocate an initial charset table that is
13749 just under 64 KiB, to avoid problems with glibc malloc and mmap.
13750
13751 * cmds.c (internal_self_insert): Check for size-calculation overflow.
13752
13753 * composite.h (struct composition.glyph_len): Now int, not unsigned.
13754 The actual value is always <= INT_MAX, and leaving it unsigned made
13755 overflow checking harder.
13756
13757 * dispextern.h (struct glyph_matrix.rows_allocated)
13758 (struct face_cache.size): Now ptrdiff_t, for convenience in use
13759 with xpalloc. The values are still always <= INT_MAX.
13760
13761 * indent.c (compute_motion): Adjust to region_cache_forward sig change.
13762
13763 * lisp.h (xnmalloc, xnrealloc, xpalloc): New decls.
13764 (SAFE_NALLOCA): New macro.
13765
13766 * region-cache.c (struct boundary.pos, find_cache_boundary)
13767 (move_cache_gap, insert_cache_boundary, delete_cache_boundaries)
13768 (set_cache_region, invalidate_region_cache)
13769 (revalidate_region_cache, know_region_cache, region_cache_forward)
13770 (region_cache_backward, pp_cache):
13771 Use ptrdiff_t, not EMACS_INT, since either will do. This is needed
13772 so that ptrdiff_t * can be passed to xpalloc.
13773 (struct region_cache): Similarly, for gap_start, gap_len, cache_len,
13774 beg_unchanged, end_unchanged, buffer_beg, buffer_end members.
13775 (pp_cache): Don't assume cache_len fits in int.
13776 * region-cache.h: Adjust extern decls to match.
13777
13778 * search.c (scan_buffer, Freplace_match): Use ptrdiff_t, not
13779 EMACS_INT, since either will do, for xpalloc.
13780
13781 * alloc.c: Include verify.h, and check that int fits in ptrdiff_t.
13782 (xnmalloc, xnrealloc, xpalloc): New functions.
13783
13784 * bidi.c (bidi_shelve_header_size): New constant.
13785 (bidi_cache_ensure_space, bidi_shelve_cache): Use it.
13786 (bidi_cache_ensure_space): Avoid integer overflow when allocating.
13787
13788 * bidi.c (bidi_cache_shrink):
13789 * buffer.c (overlays_at, overlays_in, record_overlay_string)
13790 (overlay_strings):
13791 Don't update size of array until after memory allocation succeeds,
13792 because xmalloc/xrealloc may not return.
13793 (struct sortstrlist.bytes): Now ptrdiff_t, as EMACS_INT doesn't help
13794 now that we have proper integer overflow checking.
13795 (record_overlay_string, overlay_strings): Catch overflows when
13796 calculating size of overlay_str_buf.
13797
13798 * callproc.c (Fcall_process): Check for size overflow when
13799 calculating size of args2.
13800 (child_setup): Avoid overflow by using size_t rather than ptrdiff_t.
13801 Normally we prefer signed values, but sticking with ptrdiff_t would
13802 require adding more-complicated checks.
13803
13804 * ccl.c (Fccl_execute_on_string): Check for memory overflow.
13805 Use ptrdiff_t rather than EMACS_INT where ptrdiff_t will do.
13806 Redo buffer-overflow calculations to avoid integer overflow.
13807 Add a FIXME comment where memory seems to be over-allocated.
13808
13809 * character.c (Fstring): Check for size-calculation overflow.
13810
13811 * coding.c (produce_chars): Redo buffer-overflow calculations to avoid
13812 unnecessary integer overflow. Check for size overflow.
13813 (encode_coding_object): Don't update size until xmalloc succeeds.
13814
13815 * composite.c (get_composition_id): Check for overflow in glyph
13816 length calculations.
13817
13818 Integer and memory overflow fixes for display code.
13819 * dispextern.h (struct glyph_pool.nglyphs): Now ptrdiff_t, not int.
13820 * dispnew.c (adjust_glyph_matrix, realloc_glyph_pool)
13821 (scrolling_window): Check for overflow in size calculations.
13822 (line_draw_cost, realloc_glyph_pool, add_row_entry):
13823 Don't assume glyph table len fits in int.
13824 (struct row_entry.bucket, row_entry_pool_size, row_entry_idx)
13825 (row_table_size): Now ptrdiff_t, not int.
13826 (scrolling_window): Avoid overflow in size calculations.
13827 Don't update size until allocation succeeds.
13828 * fns.c (concat): Check for overflow in size calculations.
13829 (next_almost_prime): Verify NEXT_ALMOST_PRIME_LIMIT.
13830 * lisp.h (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
13831 (NEXT_ALMOST_PRIME_LIMIT): New constant.
13832
13833 * doc.c (get_doc_string_buffer_size): Now ptrdiff_t, not int.
13834 (get_doc_string): Check for size calculation overflow.
13835 Don't update size until allocation succeeds.
13836 (get_doc_string, Fsubstitute_command_keys): Use ptrdiff_t, not
13837 EMACS_INT, where ptrdiff_t will do.
13838 (Fsubstitute_command_keys): Check for string overflow.
13839
13840 * editfns.c (set_time_zone_rule): Don't assume environment length
13841 fits in int.
13842 (message_length): Now ptrdiff_t, not int.
13843 (Fmessage_box): Don't update size until allocation succeeds.
13844 Don't assume message length fits in int.
13845 (Fformat): Use ptrdiff_t, not EMACS_INT, where ptrdiff_t will do.
13846
13847 * emacs.c (main): Do not reallocate argv, since there is a null at
13848 the end that can be overwritten, and this way there's no need to
13849 worry about size-calculation overflow.
13850 (sort_args): Check for size-calculation overflow.
13851
13852 * eval.c (init_eval_once, grow_specpdl): Don't update size until
13853 alloc succeeds.
13854 (call_debugger, grow_specpdl): Redo calculations to avoid overflow.
13855
13856 * frame.c (set_menu_bar_lines, x_set_frame_parameters)
13857 (x_set_scroll_bar_width, x_figure_window_size):
13858 Check for integer overflow.
13859 (x_set_alpha): Do not assume XINT fits in int.
13860
13861 * frame.h (struct frame): Use int, not EMACS_INT, where int works.
13862 This is for the members text_lines, text_cols, total_lines, total_cols,
13863 where the system imposes an 'int' limit.
13864
13865 * fringe.c (Fdefine_fringe_bitmap):
13866 Don't update size until alloc works.
13867
13868 * ftfont.c (ftfont_get_open_type_spec, setup_otf_gstring)
13869 (ftfont_shape_by_flt): Check for integer overflow in size calculations.
13870
13871 * gtkutil.c (get_utf8_string, xg_store_widget_in_map):
13872 Check for size-calculation overflow.
13873 (get_utf8_string): Use ptrdiff_t, not size_t, where either will
13874 do, as we prefer signed integers.
13875 (id_to_widget.max_size, id_to_widget.used)
13876 (xg_store_widget_in_map, xg_remove_widget_from_map)
13877 (xg_get_widget_from_map, xg_get_scroll_id_for_window)
13878 (xg_remove_scroll_bar, xg_update_scrollbar_pos):
13879 Use and return ptrdiff_t, not int.
13880 (xg_gtk_scroll_destroy): Don't assume ptrdiff_t fits in int.
13881 * gtkutil.h: Change prototypes to match the above.
13882
13883 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): Remove; these
13884 are duplicate now that they've been promoted to lisp.h.
13885 (x_allocate_bitmap_record, x_alloc_image_color)
13886 (make_image_cache, cache_image, xpm_load):
13887 Don't update size until alloc is done.
13888 (xpm_load, lookup_rgb_color, lookup_pixel_color, x_to_xcolors)
13889 (x_detect_edges):
13890 Check for size calculation overflow.
13891 (ct_colors_allocated_max): New constant.
13892 (x_to_xcolors, x_detect_edges): Reorder multiplicands to avoid
13893 overflow.
13894
13895 * keyboard.c (read_char, menu_bar_items, tool_bar_items)
13896 (read_char_x_menu_prompt, read_char_minibuf_menu_width)
13897 (read_char_minibuf_menu_prompt, follow_key, read_key_sequence):
13898 Use ptrdiff_t, not int, to count maps.
13899 (read_char_minibuf_menu_prompt): Check for overflow in size
13900 calculations. Don't update size until allocation succeeds.
13901 Redo calculations to avoid overflow.
13902 * keyboard.h: Change prototypes to match the above.
13903
13904 * keymap.c (cmm_size, current_minor_maps): Use ptrdiff_t, not int,
13905 to count maps.
13906 (current_minor_maps): Check for size calculation overflow.
13907 * keymap.h: Change prototypes to match the above.
13908
13909 * lread.c (read1, init_obarray): Don't update size until alloc done.
13910
13911 * macros.c (Fstart_kbd_macro): Don't update size until alloc done.
13912 (store_kbd_macro_char): Reorder multiplicands to avoid overflow.
13913
13914 * nsterm.h (struct ns_color_table.size, struct ns_color_table.avail):
13915 Now ptrdiff_t, not int.
13916 * nsterm.m (ns_index_color): Use ptrdiff_t, not int, for table indexes.
13917 (ns_draw_fringe_bitmap): Rewrite to avoid overflow.
13918
13919 * process.c (Fnetwork_interface_list): Check for overflow
13920 in size calculation.
13921
13922 * region-cache.c (move_cache_gap): Check for size calculation overflow.
13923
13924 * scroll.c (do_line_insertion_deletion_costs): Check for size calc
13925 overflow. Don't bother calling xmalloc when xrealloc will do.
13926
13927 * search.c (Freplace_match): Check for size calculation overflow.
13928 (Fset_match_data): Don't assume list lengths fit in 'int'.
13929
13930 * sysdep.c (system_process_attributes): Use ptrdiff_t, not int,
13931 for command line length. Do not attempt to address one before the
13932 beginning of an array, as that's not portable.
13933
13934 * term.c (max_frame_lines): Remove; unused.
13935 (encode_terminal_src_size, encode_terminal_dst_size): Now ptrdiff_t,
13936 not int.
13937 (encode_terminal_code, calculate_costs): Check for size
13938 calculation overflow.
13939 (encode_terminal_code): Use ptrdiff_t, not int, to record glyph
13940 table lengths and related sizes. Don't update size until alloc
13941 done. Redo calculations to avoid overflow.
13942 (calculate_costs): Don't bother calling xmalloc when xrealloc will do.
13943
13944 * termcap.c (tgetent): Use ptrdiff_t, not int, to record results of
13945 subtracting pointers.
13946 (gobble_line): Check for overflow more carefully. Don't update size
13947 until alloc done.
13948
13949 * tparam.c (tparam1): Use ptrdiff_t, not int, for sizes.
13950 Don't update size until alloc done.
13951 Redo size calculations to avoid overflow.
13952 Check for size calculation overflow.
13953 (main) [DEBUG]: Fix typo in invoking tparam1.
13954
13955 * xdisp.c (store_mode_line_noprop_char, x_consider_frame_title):
13956 Use ptrdiff_t, not int, for sizes.
13957 (store_mode_line_noprop_char): Don't update size until alloc done.
13958
13959 * xfaces.c (lface_id_to_name_size, Finternal_make_lisp_face):
13960 Use ptrdiff_t, not int, for sizes.
13961 (Finternal_make_lisp_face, cache_face):
13962 Check for size calculation overflow.
13963 (cache_face): Treat size calculation overflows as if they were
13964 memory exhaustion (the usual treatment), rather than aborting.
13965
13966 * xfns.c (x_encode_text, x_set_name_internal)
13967 (Fx_change_window_property): Use ptrdiff_t, not int, to count
13968 sizes, since they can exceed INT_MAX in size. Check for size
13969 calculation overflow.
13970
13971 * xgselect.c (gfds_size): Now ptrdiff_t, for convenience with xpalloc.
13972 (xg_select): Check for size calculation overflow.
13973 Don't update size until alloc done.
13974
13975 * xrdb.c (get_environ_db): Don't assume path length fits in int,
13976 as sprintf is limited to int lengths.
13977
13978 * xselect.c (X_LONG_SIZE, X_SHRT_MAX, X_SHRT_MIN, X_LONG_MAX)
13979 (X_LONG_MIN): New macros.
13980 Use them to make the following changes clearer.
13981 (MAX_SELECTION_QUANTUM): Make the other bounds on this value clearer.
13982 This change doesn't affect the value now, but it may help remind
13983 future maintainers not to raise the value too much later.
13984 (SELECTION_QUANTUM): Remove, replacing with ...
13985 (selection_quantum): ... new function, which avoids overflow.
13986 All uses changed.
13987 (struct selection_data.size): Now ptrdiff_t, not int, to avoid
13988 assumption that selection length fits in 'int'.
13989 (x_reply_selection_request, x_handle_selection_request)
13990 (x_get_window_property, receive_incremental_selection)
13991 (x_get_window_property_as_lisp_data, selection_data_to_lisp_data)
13992 (lisp_data_to_selection_data, clean_local_selection_data):
13993 Use ptrdiff_t, not int, to record length of selection.
13994 (x_reply_selection_request, x_get_window_property)
13995 (receive_incremental_selection, x_property_data_to_lisp):
13996 Redo calculations to avoid overflow.
13997 (x_reply_selection_request): When sending hint, ceiling it at
13998 X_LONG_MAX rather than relying on wraparound overflow to send
13999 something.
14000 (x_get_window_property, receive_incremental_selection)
14001 (lisp_data_to_selection_data, x_property_data_to_lisp):
14002 Check for size-calculation overflow.
14003 (x_get_window_property, receive_incremental_selection)
14004 (lisp_data_to_selection_data, Fx_register_dnd_atom):
14005 Don't store size until memory allocation succeeds.
14006 (x_get_window_property): Plug memory leak on memory exhaustion.
14007 Don't double-block input; malloc is safe here. Don't assume 2**34
14008 - 4 fits in unsigned long. Add an xassert to check
14009 XGetWindowProperty overflow. Be more careful about overflow
14010 calculations, and distinguish size from memory overflow better.
14011 (receive_incremental_selection): When tracing, don't assume
14012 unsigned int is less than INT_MAX.
14013 (x_selection_data_to_lisp_data): Remove unnecessary (and in theory
14014 harmful) conversions of unsigned short to int.
14015 (lisp_data_to_selection_data): Don't assume that integers
14016 in the range -65535 through -1 fit in an X unsigned short.
14017 Don't assume that ULONG_MAX == X_ULONG_MAX. Don't store into
14018 result parameters unless successful. Rely on cons_to_unsigned
14019 to report problems with elements; the old code wasn't right anyway.
14020 (x_check_property_data): Check for int overflow; we cannot use
14021 a wider type due to X limits.
14022 (x_handle_dnd_message): Use unsigned int, to avoid int overflow.
14023
14024 * xsmfns.c (smc_save_yourself_CB): Check for size calc overflow.
14025
14026 * xterm.c (x_color_cells, x_send_scrollbar_event, handle_one_xevent)
14027 (x_term_init): Check for size calculation overflow.
14028 (x_color_cells): Don't store size until memory allocation succeeds.
14029 (handle_one_xevent): Use ptrdiff_t, not int, for byte counts.
14030 Don't assume alloca size is less than MAX_ALLOCA.
14031 (x_term_init): Don't assume length fits in int (sprintf is limited
14032 to int size).
14033
14034 Use ptrdiff_t for composition IDs.
14035 * character.c (lisp_string_width):
14036 * composite.c (composition_table_size, n_compositions)
14037 (get_composition_id, composition_gstring_from_id):
14038 * dispextern.h (struct glyph_string.cmp_id, struct composition_it.id):
14039 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING):
14040 * window.c (Frecenter):
14041 Use ptrdiff_t, not int, for composition IDs.
14042 * composite.c (get_composition_id): Check for integer overflow.
14043 * composite.h: Adjust prototypes to match the above changes.
14044
14045 Use ptrdiff_t for hash table indexes.
14046 * category.c (hash_get_category_set):
14047 * ccl.c (ccl_driver):
14048 * charset.h (struct charset.hash_index, CHECK_CHARSET_GET_ID):
14049 * coding.c (coding_system_charset_list, detect_coding_system):
14050 * coding.h (struct coding_system.id):
14051 * composite.c (get_composition_id, gstring_lookup_cache):
14052 * fns.c (hash_lookup, hash_put, Fgethash, Fputhash):
14053 * image.c (xpm_get_color_table_h):
14054 * lisp.h (hash_lookup, hash_put):
14055 * minibuf.c (Ftest_completion):
14056 Use ptrdiff_t for hash table indexes, not int (which is too
14057 narrow, on 64-bit hosts) or EMACS_INT (which is too wide, on
14058 32-bit --with-wide-int hosts).
14059
14060 * charset.c (Fdefine_charset_internal): Check for integer overflow.
14061 Add a FIXME comment about memory leaks.
14062 (syms_of_charset): Don't assume xmalloc returns.
14063
14064 Don't assume that stated character widths fit in int.
14065 * character.c (Fchar_width, c_string_width, lisp_string_width):
14066 * character.h (CHAR_WIDTH):
14067 * indent.c (MULTIBYTE_BYTES_WIDTH):
14068 Use sanitize_char_width to avoid undefined and/or bad behavior
14069 with outlandish widths.
14070 * character.h (sanitize_tab_width): Rename from sanitize_width,
14071 now that we have two such functions. All uses changed.
14072 (sanitize_char_width): New inline function.
14073
14074 Don't assume that tab-width fits in int.
14075 * character.h (sanitize_width): New inline function.
14076 (SANE_TAB_WIDTH): New macro.
14077 (ASCII_CHAR_WIDTH): Use it.
14078 * indent.c (sane_tab_width): Remove. All uses replaced by
14079 SANE_TAB_WIDTH (current_buffer).
14080 * xdisp.c (init_iterator): Use SANE_TAB_WIDTH.
14081
14082 * fileio.c: Integer overflow issues with file modes.
14083 (Fset_file_modes, auto_save_1): Don't assume EMACS_INT fits in int.
14084
14085 * charset.c (read_hex): New arg OVERFLOW. All uses changed.
14086 Remove unreachable code.
14087 (read_hex, load_charset_map_from_file): Check for integer overflow.
14088
14089 * xterm.c: Don't go over XClientMessageEvent limit.
14090 (scroll_bar_windows_size): Now ptrdiff_t, as we prefer signed.
14091 (x_send_scroll_bar_event): Likewise. Check that the size does not
14092 exceed limits imposed by XClientMessageEvent, as well as the usual
14093 ptrdiff_t and size_t limits.
14094
14095 * keyboard.c: Overflow, signedness and related fixes.
14096 (make_lispy_movement): Use same integer type in forward decl
14097 that is used in the definition.
14098 (read_key_sequence, keyremap_step):
14099 Change bufsize argument back to int, undoing my 2011-03-30 change.
14100 We prefer signed types, and int is wide enough here.
14101 (parse_tool_bar_item): Don't assume tool_bar_max_label_size is less
14102 than TYPE_MAXIMUM (EMACS_INT) / 2. Don't let the label size grow
14103 larger than STRING_BYTES_BOUND. Use ptrdiff_t for Emacs string
14104 length, not size_t. Use ptrdiff_t for index, not int.
14105 (keyremap_step, read_key_sequence): Redo bufsize check to avoid
14106 possibility of integer overflow.
14107
14108 Overflow, signedness and related fixes for images.
14109
14110 * dispextern.h (struct it.stack[0].u.image.image_id)
14111 (struct_it.image_id, struct image.id, struct image_cache.size)
14112 (struct image_cache.used, struct image_cache.ref_count):
14113 * gtkutil.c (update_frame_tool_bar):
14114 * image.c (x_reference_bitmap, Fimage_size, Fimage_mask_p)
14115 (Fimage_metadata, free_image_cache, clear_image_cache, lookup_image)
14116 (cache_image, mark_image_cache, x_kill_gs_process, Flookup_image):
14117 * nsmenu.m (update_frame_tool_bar):
14118 * xdisp.c (calc_pixel_width_or_height):
14119 * xfns.c (image_cache_refcount):
14120 Image IDs are now ptrdiff_t, not int, to avoid arbitrary limits
14121 on typical 64-bit hosts.
14122
14123 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
14124 (x_bitmap_pixmap, x_create_x_image_and_pixmap):
14125 Omit unnecessary casts to int.
14126 (parse_image_spec): Check that integers fall into 'int' range
14127 when the callers expect that.
14128 (image_ascent): Redo ascent calculation to avoid int overflow.
14129 (clear_image_cache): Avoid overflow when sqrt (INT_MAX) < nimages.
14130 (lookup_image): Remove unnecessary tests.
14131 (xbm_image_p): Locals are now of int, not EMACS_INT,
14132 since parse_image_check makes sure they fit into int.
14133 (png_load, gif_load, svg_load_image):
14134 Prefer int to unsigned where either will do.
14135 (tiff_handler): New function, combining the cores of the
14136 old tiff_error_handler and tiff_warning_handler.
14137 This function is rewritten to use vsnprintf and thereby avoid
14138 stack buffer overflows. It uses only the features of vsnprintf
14139 that are common to both POSIX and native Microsoft.
14140 (tiff_error_handler, tiff_warning_handler): Use it.
14141 (tiff_load, gif_load, imagemagick_load_image):
14142 Don't assume :index value fits in 'int'.
14143 (gif_load): Omit unnecessary cast to double, and avoid double-rounding.
14144 (imagemagick_load_image): Check that crop parameters fit into
14145 the integer types that MagickCropImage accepts. Don't assume
14146 Vimagemagick_render_type has a nonnegative value. Don't assume
14147 size_t fits in 'long'.
14148 (gs_load): Use printmax_t to print the widest integers possible.
14149 Check for integer overflow when computing image height and width.
14150
14151 2011-08-26 Eli Zaretskii <eliz@gnu.org>
14152
14153 * xdisp.c (redisplay_window): Don't force window start if point
14154 will be invisible in the resulting window. (Bug#9324)
14155
14156 2011-08-25 Eli Zaretskii <eliz@gnu.org>
14157
14158 * xdisp.c (compute_display_string_pos): Return 2 in DISP_PROP when
14159 the display spec is of the form `(space ...)'.
14160 (handle_display_spec): Return the value returned by
14161 handle_single_display_spec, not just 1 or zero.
14162 (handle_single_display_spec): If the display spec is of the form
14163 `(space ...)', and specifies display in the text area, return 2
14164 rather than 1.
14165 (try_cursor_movement): Check for the need to scroll more
14166 accurately, and prefer exact match for point under bidi.
14167 Don't advance `row' beyond the last row of the window.
14168
14169 * dispextern.h (struct bidi_it): Rename the disp_prop_p member
14170 into disp_prop; all users changed.
14171
14172 * bidi.c (bidi_fetch_char): If compute_display_string_pos returns
14173 DISP_PROP = 2, substitute the u+2029 PARAGRAPH SEPARATOR character
14174 for the text covered by the display property.
14175
14176 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
14177
14178 * buffer.c (Fbury_buffer_internal): Rename from Funrecord_buffer.
14179 Change return value to nil.
14180 (Frecord_buffer): Delete unused function.
14181
14182 2011-08-24 Eli Zaretskii <eliz@gnu.org>
14183
14184 * xdisp.c (Fcurrent_bidi_paragraph_direction): For unibyte
14185 buffers, return left-to-right.
14186 (set_cursor_from_row): Consider candidate row a win if its glyph
14187 represents a newline and point is on that newline. Fixes cursor
14188 positioning on the newline at EOL of R2L text within L2R
14189 paragraph, and vice versa.
14190 (try_cursor_movement): Check continued rows, in addition to
14191 continuation rows. Fixes unwarranted scroll when point enters a
14192 continued line of R2L text within an L2R paragraph, or vice versa.
14193 (cursor_row_p): Consider the case of point being equal to
14194 MATRIX_ROW_END_CHARPOS. Prevents cursor being stuck when moving
14195 from the end of a short line to the beginning of a continued line
14196 of R2L text within L2R paragraph.
14197 (RECORD_MAX_MIN_POS): For max_pos, use IT_CHARPOS even for
14198 composed characters.
14199
14200 * bidi.c (bidi_check_type): Use xassert.
14201 (bidi_cache_iterator_state): Update the disp_pos and disp_prop_p
14202 members.
14203
14204 2011-08-23 Eli Zaretskii <eliz@gnu.org>
14205
14206 * bidi.c (bidi_get_type): Abort if we get zero as the bidi type of
14207 a character.
14208
14209 2011-08-23 Chong Yidong <cyd@stupidchicken.com>
14210
14211 * nsfont.m (ns_otf_to_script): Fix typo.
14212
14213 2011-08-22 Kenichi Handa <handa@m17n.org>
14214
14215 * chartab.c (Fset_char_table_extra_slot): Do not inhibit setting a
14216 extra slot even if the purpose is char-code-property-table.
14217
14218 2011-08-23 Eli Zaretskii <eliz@gnu.org>
14219
14220 * xdisp.c (redisplay_window): When computing centering_position,
14221 account for the height of the header line. (Bug#8874)
14222
14223 * dispnew.c (buffer_posn_from_coords): Use buf_charpos_to_bytepos
14224 instead of CHAR_TO_BYTE. Fixes a crash when a completion
14225 candidate is selected by the mouse, and that candidate has a
14226 composed character under the mouse.
14227
14228 * xdisp.c (x_produce_glyphs): Set it->nglyphs to 1. Fixes pixel
14229 coordinates reported by pos-visible-in-window-p for a composed
14230 character in column zero.
14231
14232 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
14233
14234 * cmds.c (Fself_insert_command): Mention post-self-insert-hook.
14235
14236 2011-08-22 Eli Zaretskii <eliz@gnu.org>
14237
14238 * xdisp.c (BUFFER_POS_REACHED_P): If this is a composition,
14239 consider it a hit if to_charpos is anywhere in the range of the
14240 composed buffer positions.
14241
14242 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
14243
14244 * image.c (gif_load): Don't assume that each subimage has the same
14245 dimensions as the base image. Handle disposal method that is
14246 "undefined" by the gif spec (Bug#9335).
14247
14248 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
14249
14250 * eval.c (Fsignal): Handle `debug' symbol in error handler (Bug#9329).
14251 (Fcondition_case): Document `debug' symbol in error handler.
14252
14253 2011-08-19 Eli Zaretskii <eliz@gnu.org>
14254
14255 * xfaces.c (face_at_buffer_position): Avoid repeated evaluation of
14256 face ID by FACE_FROM_ID, and avoid a crash when mouse is moved
14257 from an Org mode buffer to a Speedbar frame.
14258
14259 * xdisp.c (RECORD_MAX_MIN_POS): If the display element comes from
14260 a composition, take its buffer position from IT->cmp_it.charpos.
14261 Fixes cursor positioning at the beginning of a line that begins
14262 with a composed character.
14263
14264 2011-08-18 Eli Zaretskii <eliz@gnu.org>
14265
14266 * bidi.c (bidi_get_type): If bidi_type_table reports zero as the
14267 character bidirectional type, use STRONG_L instead. Fixes crashes
14268 in a buffer produced by `describe-categories'.
14269
14270 * dispextern.h (struct bidi_it): Move disp_pos and disp_prop_p
14271 members before the level stack, so they would be saved and
14272 restored when copying iterator state. Fixes incorrect reordering
14273 around TABs covered by display properties.
14274
14275 2011-08-18 Andreas Schwab <schwab@linux-m68k.org>
14276
14277 * process.c (Fnetwork_interface_list): Correctly determine buffer size.
14278
14279 2011-08-17 Chong Yidong <cyd@stupidchicken.com>
14280
14281 * eval.c (internal_condition_case, internal_condition_case_1)
14282 (internal_condition_case_2, internal_condition_case_n):
14283 Remove unnecessary aborts (Bug#9081).
14284
14285 2011-08-17 Eli Zaretskii <eliz@gnu.org>
14286
14287 * lread.c (Fload) [DOS_NT]: If `openp' returns -2, but the file
14288 has no `load' handler, try opening the file locally. (Bug#9311)
14289
14290 2011-08-16 Ken Brown <kbrown@cornell.edu>
14291
14292 * gmalloc.c: Expand comment.
14293
14294 2011-08-16 Eli Zaretskii <eliz@gnu.org>
14295
14296 * xdisp.c (set_cursor_from_row): Don't accept a previous candidate
14297 if it fails the cursor_row_p test. Fixes cursor positioning at ZV.
14298
14299 2011-08-16 Ken Brown <kbrown@cornell.edu>
14300
14301 Fix memory allocation problems in Cygwin build (Bug#9273).
14302
14303 * unexcw.c ( __malloc_initialized): Declare external variable.
14304 (fixup_executable): Force the dumped emacs to reinitialize malloc.
14305
14306 * gmalloc.c [CYGWIN] (bss_sbrk_heapbase, bss_sbrk_heapinfo):
14307 New variables.
14308 (malloc_initialize_1) [CYGWIN]: Prepare for reinitializing the
14309 dumped emacs.
14310 (_free_internal_nolock) [CYGWIN]: Ignore requests to free storage
14311 in the static heap.
14312 [CYGWIN] (special_realloc): New function.
14313 (_realloc_internal_nolock) [CYGWIN]: Use the new function on
14314 requests to realloc storage in the static heap.
14315
14316 2011-08-15 Paul Eggert <eggert@cs.ucla.edu>
14317
14318 * bidi.c (bidi_initialize): Remove unused local.
14319
14320 2011-08-15 Eli Zaretskii <eliz@gnu.org>
14321
14322 * bidimirror.h:
14323 * biditype.h: Remove file.
14324 * makefile.w32-in ($(BLD)/bidi.$(O)):
14325 * deps.mk (bidi.o): Remove biditype.h and bidimirror.h.
14326
14327 * dispextern.h: Fix a typo in the comment to bidi_type_t.
14328
14329 * chartab.c: Improve commentary for the uniprop_table API.
14330
14331 * bidi.c (bidi_paragraph_init): Support zero value of
14332 bidi_ignore_explicit_marks_for_paragraph_level.
14333 (bidi_initialize): Use uniprop_table instead of including
14334 biditype.h and bidimirror.h.
14335
14336 * xdisp.c (move_it_in_display_line_to): Don't reset pixel
14337 coordinates of the iterator when restoring from ppos_it.
14338 (Bug#9296)
14339
14340 2011-08-14 Kenichi Handa <handa@m17n.org>
14341
14342 * process.c (create_process): Call setup_process_coding_systems
14343 after the pid of the process is set to -1 (Bug#8162).
14344
14345 2011-08-14 Eli Zaretskii <eliz@gnu.org>
14346
14347 * xdisp.c (move_it_in_display_line_to): Don't invoke
14348 IT_RESET_X_ASCENT_DESCENT when iterator position was restored from
14349 ppos_it. Fixes vertical cursor motion when line beginning is
14350 covered by an image. (Bug#9296)
14351
14352 2011-08-14 Jan Djärv <jan.h.d@swipnet.se>
14353
14354 * nsterm.h (ns_run_ascript): Declare.
14355 (NSAPP_DATA2_RUNASSCRIPT): Define.
14356
14357 * nsfns.m (as_script, as_result, as_status): New static variables.
14358 (ns_run_ascript): New function.
14359 (Fns_do_applescript): Set variables as_*. Make an NSApplicationDefined
14360 event with data2 set to NSAPP_DATA2_RUNASSCRIPT, post it and then start
14361 the event loop. Get status from as_status (Bug#7276).
14362
14363 * nsterm.m (sendEvent): If event is NSApplicationDefined and
14364 data2 is NSAPP_DATA2_RUNASSCRIPT, call ns_run_ascript and then exit
14365 the event loop (Bug#7276).
14366
14367 2011-08-14 Andreas Schwab <schwab@linux-m68k.org>
14368
14369 * gnutls.c (QCgnutls_bootprop_priority)
14370 (QCgnutls_bootprop_trustfiles, QCgnutls_bootprop_keylist)
14371 (QCgnutls_bootprop_crlfiles, QCgnutls_bootprop_callbacks)
14372 (QCgnutls_bootprop_loglevel, QCgnutls_bootprop_hostname)
14373 (QCgnutls_bootprop_min_prime_bits, QCgnutls_bootprop_verify_flags)
14374 (QCgnutls_bootprop_verify_hostname_error)
14375 (QCgnutls_bootprop_callbacks_verify): Rename from
14376 Qgnutls_bootprop_..., all uses changed.
14377
14378 * xfaces.c (QCignore_defface): Rename from Qignore_defface, all
14379 uses changed.
14380
14381 2011-08-14 Paul Eggert <eggert@cs.ucla.edu>
14382
14383 * xfaces.c (Qframe_set_background_mode): Now static.
14384 * dispextern.h (Qframe_set_background_mode): Remove decl.
14385
14386 * process.c (Fnetwork_interface_info): Declare local only if needed.
14387
14388 2011-08-13 Jan Djärv <jan.h.d@swipnet.se>
14389
14390 * process.c: Include ifaddrs.h and net/if_dl.h if available (Bug#8477).
14391 (Fnetwork_interface_list): Allocate in increments of bytes instead
14392 of sizeof (struct ifreq). Iterate over ifconf.ifc_req by counting
14393 bytes (Bug#8477). Count bytes correctly when ifr_addr is a struct
14394 sockaddr.
14395 (struct ifflag_def): notrailers is smart on OSX.
14396 (Fnetwork_interface_info): Handle case when ifr_flags is negative.
14397 Get hardware address with getifaddrs if available.
14398
14399 2011-08-12 Eli Zaretskii <eliz@gnu.org>
14400
14401 * xdisp.c (iterate_out_of_display_property): xassert that
14402 IT->position is set to within IT->object's boundaries. Break from
14403 the loop as soon as EOB is reached; avoids infloops in redisplay
14404 when IT->position is set up wrongly due to some bug.
14405 Set IT->current to match the bidi iterator unconditionally.
14406 (push_display_prop): Allow GET_FROM_STRING as IT->method on
14407 entry. Force push_it to save on the stack the current
14408 buffer/string position, to be restored by pop_it. Fix flags in
14409 the iterator structure wrt the object coming from a display
14410 property, as `line-prefix' and `wrap-prefix' are not ``replacing''
14411 properties. (Bug#9284)
14412
14413 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
14414
14415 * fontset.c (fontset_get_font_group): Add proper type checks.
14416 (Bug#9172)
14417
14418 2011-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14419
14420 * unexmacosx.c (print_load_command_name): Add cases LC_FUNCTION_STARTS
14421 and LC_VERSION_MIN_MACOSX.
14422 (copy_linkedit_data) [LC_FUNCTION_STARTS]: New function.
14423 (dump_it) [LC_FUNCTION_STARTS]: Use it.
14424
14425 2011-08-08 Eli Zaretskii <eliz@gnu.org>
14426
14427 * xdisp.c (forward_to_next_line_start): Allow to use the
14428 no-display-properties-and-no-overlays under bidi display.
14429 Set disp_pos in the bidi iterator to avoid searches for display
14430 properties and overlays.
14431
14432 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
14433
14434 * editfns.c (Fset_time_zone_rule): Document relationship with the
14435 setenv function.
14436
14437 * ftfont.c (ftfont_pattern_entity): Copy the extras argument to
14438 the font entity extracted from the cache (Bug#8109).
14439
14440 2011-08-07 Chong Yidong <cyd@stupidchicken.com>
14441
14442 * composite.c (autocmp_chars): Don't reset point. That is done by
14443 restore_point_unwind (Bug#5984).
14444
14445 2011-08-07 Juri Linkov <juri@jurta.org>
14446
14447 * editfns.c (Fformat_time_string): Doc fix, add tag `usage:'
14448 to show the arg `TIME' instead of `TIMEVAL'.
14449
14450 2011-08-06 Eli Zaretskii <eliz@gnu.org>
14451
14452 * xdisp.c (set_cursor_from_row): Fix cursor positioning when a
14453 display property strides EOL and includes a newline, as in
14454 longlines-mode. (Bug#9254)
14455 (move_it_in_display_line_to): Fix vertical-motion in a buffer with
14456 word-wrap under bidirectional display. (Bug#9224)
14457
14458 * bidi.c (bidi_unshelve_cache): Don't reset the cache if JUST_FREE
14459 is non-zero, even if the data buffer is NULL. Fixes a crash in
14460 vertical-motion with longlines-mode. (Bug#9254)
14461
14462 2011-08-05 Eli Zaretskii <eliz@gnu.org>
14463
14464 * bidi.c <bidi_cache_total_alloc>: Now static.
14465 (bidi_initialize): Initialize bidi_cache_total_alloc.
14466
14467 * xdisp.c (display_line): Release buffer allocated for shelved bidi
14468 cache. (Bug#9221)
14469
14470 * bidi.c (bidi_shelve_cache, bidi_unshelve_cache): Track total
14471 amount allocated this far in `bidi_cache_total_alloc'.
14472 (bidi_unshelve_cache): Accept an additional argument JUST_FREE; if
14473 non-zero, only free the data buffer without restoring the cache
14474 contents. All callers changed.
14475
14476 * dispextern.h (bidi_unshelve_cache): Update prototype.
14477
14478 * xdisp.c (SAVE_IT, pos_visible_p, move_it_in_display_line_to)
14479 (move_it_in_display_line, move_it_to)
14480 (move_it_vertically_backward, move_it_by_lines): Replace the call
14481 to xfree to an equivalent call to bidi_unshelve_cache.
14482 (move_it_in_display_line_to): Fix logic of returning
14483 MOVE_POS_MATCH_OR_ZV in the bidi case. (Bug#9224)
14484
14485 2011-08-05 Eli Zaretskii <eliz@gnu.org>
14486
14487 * xdisp.c (set_cursor_from_row): Prefer the candidate glyph that
14488 came from a string character with a `cursor' property. (Bug#9229)
14489
14490 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
14491
14492 * Makefile.in (LIB_PTHREAD): New variable.
14493 (LIBES): Add LIB_PTHREAD (Bug#9216).
14494
14495 * alloc.c, emacs.c, gmalloc.c, gtkutil.c, keyboard.c, syssignal.h:
14496 Rename HAVE_GTK_AND_PTHREAD to HAVE_PTHREAD (Bug#9216).
14497
14498 2011-08-04 Andreas Schwab <schwab@linux-m68k.org>
14499
14500 * regex.c (re_iswctype): Remove some redundant boolean conversions.
14501
14502 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
14503
14504 * xterm.c (x_find_topmost_parent): New function.
14505 (x_set_frame_alpha): Find topmost parent window with
14506 x_find_topmost_parent and set the property there also (bug#9181).
14507 (handle_one_xevent): Call x_set_frame_alpha on ReparentNotify.
14508
14509 2011-08-04 Paul Eggert <eggert@cs.ucla.edu>
14510
14511 * callproc.c (Fcall_process): Avoid vfork clobbering
14512 the local vars buffer, coding_systems, current_dir.
14513
14514 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
14515
14516 * keymap.c (Fmake_composed_keymap): Move to subr.el.
14517
14518 2011-08-03 Paul Eggert <eggert@cs.ucla.edu>
14519
14520 * fontset.c (dump_fontset) [FONTSET_DEBUG]: Declare EXTERNALLY_VISIBLE
14521 so that it is not optimized away.
14522
14523 * xdisp.c (compute_display_string_pos): Remove unused local.
14524
14525 2011-08-02 Eli Zaretskii <eliz@gnu.org>
14526
14527 Fix slow cursor motion and scrolling in large buffers with
14528 selective display, like Org Mode buffers. (Bug#9218)
14529
14530 * dispextern.h (struct bidi_it): New member disp_prop_p.
14531
14532 * xdisp.c: Remove one-slot cache of display string positions.
14533 (compute_display_string_pos): Accept an additional argument
14534 DISP_PROP_P; callers changed. Scan at most 5K characters forward
14535 for a display string or property. If found, set DISP_PROP_P
14536 non-zero.
14537
14538 * bidi.c (bidi_fetch_char): Accept an additional argument
14539 DISP_PROP_P, and pass it to compute_display_string_pos.
14540 Only handle text covered by a display string if DISP_PROP_P is returned
14541 non-zero. All callers of bidi_fetch_char changed.
14542
14543 2011-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
14544
14545 * keymap.c (Fdefine_key): Fix Lisp_Object/int mixup; apply some CSE.
14546
14547 2010-12-03 Don March <don@ohspite.net>
14548
14549 * keymap.c (Fdefine_key): Fix non-prefix key error message when
14550 last character M-[char] is translated to ESC [char] (bug#7541).
14551
14552 2011-08-02 Kenichi Handa <handa@m17n.org>
14553
14554 * lisp.h (uniprop_table): Extern it.
14555
14556 * chartab.c (uniprop_table): Make it non-static.
14557
14558 2011-08-01 Eli Zaretskii <eliz@gnu.org>
14559
14560 * xdisp.c (forward_to_next_line_start): Accept additional argument
14561 BIDI_IT_PREV, and store into it the state of the bidi iterator had
14562 on the newline.
14563 (reseat_at_next_visible_line_start): Use the bidi iterator state
14564 returned by forward_to_next_line_start to restore the state of
14565 it->bidi_it after backing up to previous newline. (Bug#9212)
14566
14567 2011-07-30 Andreas Schwab <schwab@linux-m68k.org>
14568
14569 * regex.c (re_comp): Protoize.
14570 (re_exec): Fix return type.
14571 (regexec): Fix type of `ret'. (Bug#9203)
14572
14573 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
14574
14575 * image.c (check_image_size): Use 1024x1024 if unknown frame (Bug#9189).
14576 This is needed if max-image-size is a floating-point number.
14577
14578 2011-07-28 Andreas Schwab <schwab@linux-m68k.org>
14579
14580 * print.c (print_object): Print empty symbol as ##.
14581
14582 * lread.c (read1): Read ## as empty symbol.
14583
14584 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
14585
14586 * nsfns.m (x_set_foreground_color): Set f->foreground_pixel when
14587 setting frame foreground color (Bug#9175).
14588 (x_set_background_color): Likewise.
14589
14590 * nsmenu.m (-setText): Size tooltip dimensions precisely to
14591 contents (Bug#9176).
14592 (EmacsTooltip -init): Remove bezels and add shadows to
14593 tooltip windows.
14594
14595 * nsterm.m (ns_dumpglyphs_stretch): Avoid overwriting left fringe
14596 or scroll bar (Bug#8470).
14597
14598 * nsfont.m (nsfont_open): Remove assignment to voffset and
14599 unnecessary vars hshink, expand, hd, full_height, min_height.
14600 (nsfont_draw): Use s->ybase as baseline for glyph drawing (Bug#8913).
14601
14602 * nsterm.h (nsfont_info): Remove voffset field.
14603
14604 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
14605
14606 Implement strike-through and overline on NextStep (Bug#8863).
14607
14608 * nsfont.m (nsfont_open): Use underline position provided by font,
14609 instead of hard-coded value of 2.
14610 (nsfont_draw): Call ns_draw_text_decoration instead.
14611
14612 * nsterm.h: Add declaration for ns_draw_text_decoration.
14613
14614 * nsterm.m (ns_draw_text_decoration): New function for drawing
14615 underline, overline, and strike-through.
14616 (ns_dumpglyphs_image, ns_dumpglyphs_stretch): Add call to
14617 ns_draw_text_decoration. Change treatment of cursor drawing to
14618 accommodate underlining, etc.
14619
14620 2011-07-28 Eli Zaretskii <eliz@gnu.org>
14621
14622 * buffer.c (init_buffer_once): Set bidi-display-reordering to t by
14623 default.
14624
14625 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
14626
14627 * alloc.c (memory_full) [!SYNC_INPUT]: Fix signal-related race.
14628 Without this fix, if a signal arrives just after memory fills up,
14629 'malloc' might be invoked reentrantly.
14630
14631 * image.c (x_check_image_size) [!HAVE_X_WINDOWS]: Return 1.
14632 In other words, assume that every image size is allowed, on non-X
14633 hosts. This assumption is probably wrong, but it lets Emacs compile.
14634
14635 2011-07-28 Andreas Schwab <schwab@linux-m68k.org>
14636
14637 * regex.c (re_iswctype): Convert return values to boolean.
14638
14639 2011-07-28 Eli Zaretskii <eliz@fencepost.gnu.org>
14640
14641 * xdisp.c (compute_display_string_pos): Don't use cached display
14642 string position if the buffer had its restriction changed.
14643 (Bug#9184)
14644
14645 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
14646
14647 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
14648
14649 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
14650
14651 Integer signedness and overflow and related fixes. (Bug#9079)
14652
14653 * bidi.c: Integer size and overflow fixes.
14654 (bidi_cache_size, bidi_cache_idx, bidi_cache_last_idx)
14655 (bidi_cache_start, bidi_cache_fetch_state, bidi_cache_search)
14656 (bidi_cache_find_level_change, bidi_cache_ensure_space)
14657 (bidi_cache_iterator_state, bidi_cache_find, bidi_cache_start_stack)
14658 (bidi_find_other_level_edge):
14659 Use ptrdiff_t instead of EMACS_INT where either will do.
14660 This works better on 32-bit hosts configured --with-wide-int.
14661 (bidi_cache_ensure_space): Check for size-calculation overflow.
14662 Use % rather than repeated addition, for better worst-case speed.
14663 Don't set bidi_cache_size until after xrealloc returns, because it
14664 might not return.
14665 (bidi_dump_cached_states): Use ptrdiff_t, not int, to avoid overflow.
14666 (bidi_cache_ensure_space): Also check that the bidi cache size
14667 does not exceed that of the largest Lisp string or buffer. See Eli
14668 Zaretskii in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#29>.
14669
14670 * alloc.c (__malloc_size_t): Remove.
14671 All uses replaced by size_t. See Andreas Schwab's note
14672 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#8>.
14673
14674 * image.c: Improve checking for integer overflow.
14675 (check_image_size): Assume that f is nonnull, since
14676 it is always nonnull in practice. This is one less thing to
14677 worry about when checking for integer overflow later.
14678 (x_check_image_size): New function, which checks for integer
14679 overflow issues inside X.
14680 (x_create_x_image_and_pixmap, xbm_read_bitmap_data): Use it.
14681 This removes the need for a memory_full check.
14682 (xbm_image_p): Rewrite to avoid integer multiplication overflow.
14683 (Create_Pixmap_From_Bitmap_Data, xbm_load): Use x_check_image_size.
14684 (xbm_read_bitmap_data): Change locals back to 'int', since
14685 their values must fit in 'int'.
14686 (xpm_load_image, png_load, tiff_load):
14687 Invoke x_create_x_image_and_pixmap earlier,
14688 to avoid much needless work if the image is too large.
14689 (tiff_load): Treat overly large images as if
14690 x_create_x_image_and_pixmap failed, not as malloc failures.
14691 (gs_load): Use x_check_image_size.
14692
14693 * gtkutil.c: Omit integer casts.
14694 (xg_get_pixbuf_from_pixmap): Remove unnecessary cast.
14695 (xg_set_toolkit_scroll_bar_thumb): Rewrite to avoid need for cast.
14696
14697 * image.c (png_load): Don't assume height * row_bytes fits in 'int'.
14698
14699 * xfaces.c (Fbitmap_spec_p): Fix integer overflow bug.
14700 Without this fix, (bitmap-spec-p '(34359738368 1 "x"))
14701 would wrongly return t on a 64-bit host.
14702
14703 * dispnew.c (init_display): Use *_RANGE_OVERFLOW macros.
14704 The plain *_OVERFLOW macros run afoul of GCC bug 49705
14705 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49705>
14706 and therefore cause GCC to emit a bogus diagnostic in some cases.
14707
14708 * image.c: Integer signedness and overflow and related fixes.
14709 This is not an exhaustive set of fixes, but it's time to
14710 record what I've got.
14711 (lookup_pixel_color, check_image_size): Remove redundant decls.
14712 (check_image_size): Don't assume that arbitrary EMACS_INT values
14713 fit in 'int', or that arbitrary 'double' values fit in 'int'.
14714 (x_alloc_image_color, x_create_x_image_and_pixmap, png_load)
14715 (tiff_load, imagemagick_load_image):
14716 Check for overflow in size calculations.
14717 (x_create_x_image_and_pixmap): Remove unnecessary test for
14718 xmalloc returning NULL; that can't happen.
14719 (xbm_read_bitmap_data): Don't assume sizes fit into 'int'.
14720 (xpm_color_bucket): Use better integer hashing function.
14721 (xpm_cache_color): Don't possibly over-allocate memory.
14722 (struct png_memory_storage, tiff_memory_source, tiff_seek_in_memory)
14723 (gif_memory_source):
14724 Use ptrdiff_t, not int or size_t, to record sizes.
14725 (png_load): Don't assume values greater than 2**31 fit in 'int'.
14726 (our_stdio_fill_input_buffer): Prefer ptrdiff_t to size_t when
14727 either works, as we prefer signed integers.
14728 (tiff_read_from_memory, tiff_write_from_memory):
14729 Return tsize_t, not size_t, since that's what the TIFF API wants.
14730 (tiff_read_from_memory): Don't fail simply because the read would
14731 go past EOF; instead, return a short read.
14732 (tiff_load): Omit no-longer-needed casts.
14733 (Fimagemagick_types): Don't assume size fits into 'int'.
14734
14735 Improve hashing quality when configured --with-wide-int.
14736 * fns.c (hash_string): New function, taken from sxhash_string.
14737 Do not discard information about ASCII character case; this
14738 discarding is no longer needed.
14739 (sxhash-string): Use it. Change sig to match it. Caller changed.
14740 * lisp.h: Declare it.
14741 * lread.c (hash_string): Remove, since we now use fns.c's version.
14742 The fns.c version returns a wider integer if --with-wide-int is
14743 specified, so this should help the quality of the hashing a bit.
14744
14745 * emacs.c: Integer overflow minor fix.
14746 (heap_bss_diff): Now uprintmax_t, not unsigned long. All used changed.
14747 Define only if GNU_LINUX.
14748 (main, Fdump_emacs): Set and use heap_bss_diff only if GNU_LINUX.
14749
14750 * dispnew.c: Integer signedness and overflow fixes.
14751 Remove unnecessary forward decls, that were a maintenance hassle.
14752 (history_tick): Now uprintmax_t, so it's more likely to avoid overflow.
14753 All uses changed.
14754 (adjust_glyph_matrix, realloc_glyph_pool, adjust_frame_message_buffer)
14755 (scrolling_window): Use ptrdiff_t, not int, for byte count.
14756 (prepare_desired_row, line_draw_cost):
14757 Use int, not unsigned, where either works.
14758 (save_current_matrix, restore_current_matrix):
14759 Use ptrdiff_t, not size_t, where either works.
14760 (init_display): Check for overflow more accurately, and without
14761 relying on undefined behavior.
14762
14763 * editfns.c (pWIDE, pWIDElen, signed_wide, unsigned_wide):
14764 Remove, replacing with the new symbols in lisp.h. All uses changed.
14765 * fileio.c (make_temp_name):
14766 * filelock.c (lock_file_1, lock_file):
14767 * xdisp.c (message_dolog):
14768 Don't assume PRIdMAX etc. works; this isn't portable to pre-C99 hosts.
14769 Use pMd etc. instead.
14770 * lisp.h (printmax_t, uprintmax_t, pMd, pMu): New types and macros,
14771 replacing the pWIDE etc. symbols removed from editfns.c.
14772
14773 * keyboard.h (num_input_events): Now uintmax_t.
14774 This is (very slightly) less likely to mess up due to wraparound.
14775 All uses changed.
14776
14777 * buffer.c: Integer signedness fixes.
14778 (alloc_buffer_text, enlarge_buffer_text):
14779 Use ptrdiff_t rather than size_t when either will do, as we prefer
14780 signed integers.
14781
14782 * alloc.c: Integer signedness and overflow fixes.
14783 Do not impose an arbitrary 32-bit limit on malloc sizes when debugging.
14784 (__malloc_size_t): Default to size_t, not to int.
14785 (pure_size, pure_bytes_used_before_overflow, stack_copy_size)
14786 (Fgarbage_collect, mark_object_loop_halt, mark_object):
14787 Prefer ptrdiff_t to size_t when either would do, as we prefer
14788 signed integers.
14789 (XMALLOC_OVERRUN_CHECK_OVERHEAD): New macro.
14790 (xmalloc_overrun_check_header, xmalloc_overrun_check_trailer):
14791 Now const. Initialize with values that are in range even if char
14792 is signed.
14793 (XMALLOC_PUT_SIZE, XMALLOC_GET_SIZE): Remove, replacing with ...
14794 (xmalloc_put_size, xmalloc_get_size): New functions. All uses changed.
14795 These functions do the right thing with sizes > 2**32.
14796 (check_depth): Now ptrdiff_t, not int.
14797 (overrun_check_malloc, overrun_check_realloc, overrun_check_free):
14798 Adjust to new way of storing sizes. Check for size overflow bugs
14799 in rest of code.
14800 (STRING_BYTES_MAX): Adjust to new overheads. The old code was
14801 slightly wrong anyway, as it missed one instance of
14802 XMALLOC_OVERRUN_CHECK_OVERHEAD.
14803 (refill_memory_reserve): Omit needless cast to size_t.
14804 (mark_object_loop_halt): Mark as externally visible.
14805
14806 * xselect.c: Integer signedness and overflow fixes.
14807 (Fx_register_dnd_atom, x_handle_dnd_message):
14808 Use ptrdiff_t, not size_t, since we prefer signed.
14809 (Fx_register_dnd_atom): Check for ptrdiff_t (and size_t) overflow.
14810 * xterm.h (struct x_display_info): Use ptrdiff_t, not size_t, for
14811 x_dnd_atoms_size and x_dnd_atoms_length.
14812
14813 * doprnt.c: Prefer signed to unsigned when either works.
14814 * eval.c (verror):
14815 * doprnt.c (doprnt):
14816 * lisp.h (doprnt):
14817 * xdisp.c (vmessage):
14818 Use ptrdiff_t, not size_t, when using or implementing doprnt,
14819 since the sizes cannot exceed ptrdiff_t bounds anyway, and we
14820 prefer signed arithmetic to avoid comparison confusion.
14821 * doprnt.c (doprnt): Avoid a "+ 1" that can't overflow,
14822 but is a bit tricky.
14823
14824 Assume freestanding C89 headers, string.h, stdlib.h.
14825 * data.c, doprnt.c, floatfns.c, print.c:
14826 Include float.h unconditionally.
14827 * gmalloc.c: Assume C89-at-least behavior for preprocessor,
14828 limits.h, stddef.h, string.h. Use memset instead of 'flood'.
14829 * regex.c: Likewise for stddef.h, string.h.
14830 (ISASCII): Remove; can assume it returns 1 now. All uses removed.
14831 * s/aix4-2.h (HAVE_STRING_H): Remove obsolete undef.
14832 * s/ms-w32.h (HAVE_LIMITS_H, HAVE_STRING_H, HAVE_STDLIB_H)
14833 (STDC_HEADERS): Remove obsolete defines.
14834 * sysdep.c: Include limits.h unconditionally.
14835
14836 Assume support for memcmp, memcpy, memmove, memset.
14837 * lisp.h, sysdep.c (memcmp, memcpy, memmove, memset):
14838 * regex.c (memcmp, memcpy):
14839 Remove; we assume C89 now.
14840
14841 * gmalloc.c (memcpy, memset, memmove): Remove; we assume C89 now.
14842 (__malloc_safe_bcopy): Remove; no longer needed.
14843
14844 * lisp.h (struct vectorlike_header, struct Lisp_Subr): Signed sizes.
14845 Use EMACS_INT, not EMACS_UINT, for sizes. The code works equally
14846 well either way, and we prefer signed to unsigned.
14847
14848 2011-07-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
14849
14850 * gnutls.c (emacs_gnutls_read): Don't message anything if the peer
14851 closes the connection while we're reading (bug#9182).
14852
14853 2011-07-25 Jan Djärv <jan.h.d@swipnet.se>
14854
14855 * nsmenu.m (ns_popup_dialog): Add an "ok" button if no buttons
14856 are specified (Bug#9168).
14857
14858 2011-07-25 Paul Eggert <eggert@cs.ucla.edu>
14859
14860 * bidi.c (bidi_dump_cached_states): Fix printf format mismatch.
14861 Found by GCC static checking and --with-wide-int on a 32-bit host.
14862
14863 2011-07-25 Eli Zaretskii <eliz@gnu.org>
14864
14865 * xdisp.c (compute_display_string_pos): Fix logic of caching
14866 previous display string position. Initialize cached_prev_pos to
14867 -1. Fixes slow-down at the beginning of a buffer.
14868
14869 2011-07-24 Eli Zaretskii <eliz@gnu.org>
14870
14871 * xfaces.c (check_lface_attrs) [HAVE_WINDOW_SYSTEM]: Allow `nil'
14872 for attrs[LFACE_FONTSET_INDEX].
14873
14874 2011-07-23 Paul Eggert <eggert@cs.ucla.edu>
14875
14876 * xml.c (parse_region): Remove unused local
14877 that was recently introduced.
14878
14879 2011-07-23 Eli Zaretskii <eliz@gnu.org>
14880
14881 * xfns.c (unwind_create_frame) [GLYPH_DEBUG]: Adapt to changes in
14882 2008-02-22T17:42:09Z!monnier@iro.umontreal.ca.
14883
14884 * xdisp.c (move_it_in_display_line_to): Record the best matching
14885 position for TO_CHARPOS while scanning the line, and restore it on
14886 exit if none of the characters scanned was an exact match.
14887 Fixes vertical-motion and pos-visible-in-window-p under bidi redisplay
14888 when exact match is impossible due to invisible text, and the
14889 lines are truncated.
14890
14891 2011-07-23 Jan Djärv <jan.h.d@swipnet.se>
14892
14893 * nsterm.m (initFrameFromEmacs): Set NSTitledWindowMask in styleMask
14894 for OSX >= 10.7.
14895
14896 2011-07-22 Eli Zaretskii <eliz@gnu.org>
14897
14898 Fix a significant slow-down of cursor motion with C-n, C-p,
14899 C-f/C-b, and C-v/M-v that couldn't keep up with keyboard
14900 auto-repeat under bidi redisplay in fontified buffers.
14901 * xdisp.c (compute_stop_pos_backwards): New function.
14902 (next_element_from_buffer): Call compute_stop_pos_backwards to
14903 find a suitable prev_stop when we find ourselves before
14904 base_level_stop.
14905 (reseat): Don't look for prev_stop, as that could mean a very long
14906 run.
14907 <cached_disp_pos, cached_disp_buffer, cached_disp_modiff>
14908 <cached_disp_overlay_modiff>: Cache for last found display string
14909 position.
14910 (compute_display_string_pos): Return the cached position if asked
14911 about the same buffer in the same area of character positions, and
14912 the buffer wasn't changed since the time the display string
14913 position was cached.
14914
14915 2011-07-22 Eli Zaretskii <eliz@gnu.org>
14916
14917 * xdisp.c (rows_from_pos_range): Don't ignore glyphs whose object
14918 is an integer, which is important for empty lines. (Bug#9149)
14919
14920 2011-07-22 Chong Yidong <cyd@stupidchicken.com>
14921
14922 * frame.c (Fmodify_frame_parameters): In tty case, update the
14923 default face if necessary (Bug#4238).
14924
14925 2011-07-21 Chong Yidong <cyd@stupidchicken.com>
14926
14927 * editfns.c (Fstring_to_char): No need to explain what a character
14928 is in the docstring (Bug#6576).
14929
14930 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
14931
14932 * xml.c (parse_region): Make sure we always return a tree.
14933
14934 2011-07-20 HAMANO Kiyoto <khiker.mail@gmail.com>
14935
14936 * xml.c (parse_region): If a document contains only comments,
14937 return that, too.
14938
14939 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
14940
14941 * xml.c (make_dom): Return comments, too.
14942
14943 2011-07-19 Paul Eggert <eggert@cs.ucla.edu>
14944
14945 Port to OpenBSD.
14946 See http://lists.gnu.org/archive/html/emacs-devel/2011-07/msg00688.html
14947 and the surrounding thread.
14948 * minibuf.c (read_minibuf_noninteractive): Rewrite to use getchar
14949 rather than fgets, and retry after EINTR. Otherwise, 'emacs
14950 --batch -f byte-compile-file' fails on OpenBSD if an inactivity
14951 timer goes off.
14952 * s/openbsd.h (BROKEN_SIGIO): Define.
14953 * unexelf.c (unexec) [__OpenBSD__]:
14954 Don't update the .mdebug section of the Alpha COFF symbol table.
14955
14956 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
14957
14958 * lread.c (syms_of_lread): Clarify when `lexical-binding' is used
14959 (bug#8460).
14960
14961 2011-07-18 Paul Eggert <eggert@cs.ucla.edu>
14962
14963 * fileio.c (Fcopy_file) [!MSDOS]: Tighten created file's mask.
14964 This fixes some race conditions on the permissions of any newly
14965 created file.
14966
14967 * alloc.c (valid_pointer_p): Use pipe, not open.
14968 This fixes some permissions issues when debugging.
14969
14970 * fileio.c (Fcopy_file): Adjust mode if fchown fails. (Bug#9002)
14971 If fchown fails to set both uid and gid, try to set just gid,
14972 as that is sometimes allowed. Adjust the file's mode to eliminate
14973 setuid or setgid bits that are inappropriate if fchown fails.
14974
14975 2011-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
14976
14977 * xdisp.c (next_element_from_string, next_element_from_buffer): Use EQ
14978 to compare Lisp_Objects.
14979 * gnutls.c (syms_of_gnutls): Rename Vgnutls_log_level to
14980 global_gnutls_log_level, don't mistake it for a Lisp_Object.
14981 (init_gnutls_functions, emacs_gnutls_handle_error): Fix up uses.
14982
14983 2011-07-17 Andreas Schwab <schwab@linux-m68k.org>
14984
14985 * lread.c (read_integer): Unread even EOF character.
14986 (read1): Likewise. Properly record start position of symbol.
14987
14988 * lread.c (read1): Read `#:' as empty uninterned symbol if no
14989 symbol character follows.
14990
14991 2011-07-17 Paul Eggert <eggert@cs.ucla.edu>
14992
14993 * fileio.c (Fcopy_file): Pacify gcc re fchown. (Bug#9002)
14994 This works around a problem with the previous change to Fcopy_file.
14995 Recent glibc declares fchown with __attribute__((warn_unused_result)),
14996 and without this change, GCC might complain about discarding
14997 fchown's return value.
14998
14999 2011-07-16 Juanma Barranquero <lekktu@gmail.com>
15000
15001 * makefile.w32-in (GLOBAL_SOURCES): Add gnutls.c (followup to bug#9059).
15002
15003 2011-07-16 Paul Eggert <eggert@cs.ucla.edu>
15004
15005 * fileio.c (Fcopy_file): Don't diagnose fchown failures. (Bug#9002)
15006
15007 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
15008
15009 * gnutls.c (syms_of_gnutls): Define `gnutls-log-level' here, since
15010 it's used from the C level.
15011
15012 * process.c: Use the same condition for POLL_FOR_INPUT in both
15013 keyboard.c and process.c (bug#1858).
15014
15015 2011-07-09 Lawrence Mitchell <wence@gmx.li>
15016
15017 * gnutls.c (Qgnutls_bootprop_min_prime_bits): New variable.
15018 (Fgnutls_boot): Use it.
15019
15020 2011-07-15 Andreas Schwab <schwab@linux-m68k.org>
15021
15022 * doc.c (Fsubstitute_command_keys): Revert last change.
15023
15024 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
15025
15026 * doc.c (Fsubstitute_command_keys): Clarify that \= really only
15027 quotes the next character, and doesn't affect other longer
15028 sequences (bug#8935).
15029
15030 * lread.c (syms_of_lread): Clarify that is isn't only
15031 `eval-buffer' and `eval-defun' that's affected by
15032 `lexical-binding' (bug#8460).
15033
15034 2011-07-15 Eli Zaretskii <eliz@gnu.org>
15035
15036 * xdisp.c (move_it_in_display_line_to): Fix vertical motion with
15037 bidi redisplay when a line includes both an image and is truncated.
15038
15039 2011-07-14 Paul Eggert <eggert@cs.ucla.edu>
15040
15041 Fix minor problems found by static checking.
15042 * bidi.c (bidi_cache_size): Now EMACS_INT, not size_t.
15043 (elsz): Now a signed constant, not a size_t var. We prefer signed
15044 types to unsigned, to avoid integer comparison confusion. Without
15045 this change, GCC 4.6.1 with -Wunsafe-loop-optimizations complains
15046 "cannot optimize loop, the loop counter may overflow", a symptom
15047 of the confusion.
15048 * indent.c (Fvertical_motion): Mark locals as initialized.
15049 * xdisp.c (reseat_to_string): Fix pointer signedness issue.
15050
15051 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
15052
15053 * search.c (Fre_search_backward): Mention `case-fold-search' in
15054 all the re_search_* functions (bug#8138).
15055
15056 * keyboard.c (Fopen_dribble_file): Document when the file is
15057 closed (bug#8056).
15058
15059 2011-07-14 Eli Zaretskii <eliz@gnu.org>
15060
15061 * bidi.c (bidi_dump_cached_states): Fix format of displaying
15062 bidi_cache_idx.
15063
15064 Support bidi reordering of display and overlay strings.
15065 * xdisp.c (compute_display_string_pos)
15066 (compute_display_string_end): Accept additional argument STRING.
15067 (init_iterator, reseat_1): Initialize bidi_it->string.s to NULL.
15068 (reseat_to_string): Initialize bidi_it->string.s and
15069 bidi_it->string.schars.
15070 (Fcurrent_bidi_paragraph_direction): Initialize itb.string.s to
15071 NULL (avoids a crash in bidi_paragraph_init).
15072 Initialize itb.string.lstring.
15073 (init_iterator): Call bidi_init_it only of a valid
15074 buffer position was specified. Initialize paragraph_embedding to
15075 L2R.
15076 (reseat_to_string): Initialize the bidi iterator.
15077 (display_string): If we need to ignore text properties of
15078 LISP_STRING, set IT->stop_charpos to IT->end_charpos. (The
15079 original value of -1 will not work with bidi.)
15080 (compute_display_string_pos): First arg is now struct
15081 `text_pos *'; all callers changed. Support display properties on
15082 Lisp strings.
15083 (compute_display_string_end): Support display properties on Lisp
15084 strings.
15085 (init_iterator, reseat_1, reseat_to_string): Initialize the
15086 string.bufpos member to 0 (zero, for compatibility with IT_CHARPOS
15087 when iterating on a string not from display properties).
15088 (compute_display_string_pos, compute_display_string_end):
15089 Fix calculation of the object to scan. Fixes an error when using
15090 arrow keys.
15091 (next_element_from_buffer): Don't abort when IT_CHARPOS is before
15092 base_level_stop; instead, set base_level_stop to BEGV.
15093 Fixes crashes in vertical-motion.
15094 (next_element_from_buffer): Improve commentary for when
15095 the iterator is before prev_stop.
15096 (init_iterator): Initialize bidi_p from the default value of
15097 bidi-display-reordering, not from buffer-local value. Use the
15098 buffer-local value only if initializing for buffer iteration.
15099 (handle_invisible_prop): Support invisible properties on strings
15100 that are being bidi-reordered.
15101 (set_iterator_to_next): Support bidi reordering of C strings and
15102 Lisp strings.
15103 (next_element_from_string): Support bidi reordering of Lisp
15104 strings.
15105 (handle_stop_backwards): Support Lisp strings as well.
15106 (display_string): Support display of R2L glyph rows.
15107 Use IT_STRING_CHARPOS when displaying from a Lisp string.
15108 (init_iterator): Don't initialize it->bidi_p for strings
15109 here.
15110 (reseat_to_string): Initialize it->bidi_p for strings here.
15111 (next_element_from_string, next_element_from_c_string)
15112 (next_element_from_buffer): Add xassert's for correspondence
15113 between IT's object being iterated and it->bidi_it.string
15114 structure.
15115 (face_before_or_after_it_pos): Support bidi iteration.
15116 (next_element_from_c_string): Handle the case of the first string
15117 character that is not the first one in the visual order.
15118 (get_visually_first_element): New function, refactored from common
15119 parts of next_element_from_buffer, next_element_from_string, and
15120 next_element_from_c_string.
15121 (tool_bar_lines_needed, redisplay_tool_bar)
15122 (display_menu_bar): Force left-to-right direction. Add a FIXME
15123 comment for making that be controlled by a user option.
15124 (push_it, pop_it): Save and restore the state of the
15125 bidi iterator. Save and restore the bidi_p flag.
15126 (pop_it): Iterate out of display property for string iteration as
15127 well.
15128 (iterate_out_of_display_property): Support iteration over strings.
15129 (handle_single_display_spec): Set up it->bidi_it for iteration
15130 over a display string, and call bidi_init_it.
15131 (handle_single_display_spec, next_overlay_string)
15132 (get_overlay_strings_1, push_display_prop): Set up the bidi
15133 iterator for displaying display or overlay strings.
15134 (forward_to_next_line_start): Don't use the shortcut if
15135 bidi-iterating.
15136 (back_to_previous_visible_line_start): If handle_display_prop
15137 pushed the iterator stack, restore the internal state of the bidi
15138 iterator by calling bidi_pop_it same number of times.
15139 (reseat_at_next_visible_line_start): If ON_NEWLINE_P is non-zero,
15140 and we are bidi-iterating, don't decrement the iterator position;
15141 instead, set the first_elt flag in the bidi iterator, to produce
15142 the same effect.
15143 (reseat_1): Remove redundant setting of string_from_display_prop_p.
15144 (push_display_prop): xassert that we are iterating a buffer.
15145 (push_it, pop_it): Save and restore paragraph_embedding member.
15146 (handle_single_display_spec, next_overlay_string)
15147 (get_overlay_strings_1, reseat_1, reseat_to_string)
15148 (push_display_prop): Set up the `unibyte' member of bidi_it.string
15149 correctly. Don't assume unibyte strings are not bidi-reordered.
15150 (compute_display_string_pos)
15151 (compute_display_string_end): Fix handling the case of C string.
15152 (push_it, pop_it): Save and restore from_disp_prop_p.
15153 (handle_single_display_spec, push_display_prop): Set the
15154 from_disp_prop_p flag.
15155 (get_overlay_strings_1): Reset the from_disp_prop_p flag.
15156 (pop_it): Call iterate_out_of_display_property only if we are
15157 popping after iteration over a string that came from a display
15158 property. Fix a typo in popping stretch info. Add an assertion
15159 for verifying that the iterator position is in sync with the bidi
15160 iterator.
15161 (handle_single_display_spec, get_overlay_strings_1)
15162 (push_display_prop): Fix initialization of paragraph direction for
15163 string when that of the parent object is not yet determined.
15164 (reseat_1): Call bidi_init_it to resync the bidi
15165 iterator with IT's position. (Bug#7616)
15166 (find_row_edges): If ROW->start.pos gives position
15167 smaller than min_pos, use it as ROW->minpos. (Bug#7616)
15168 (handle_stop, back_to_previous_visible_line_start, reseat_1):
15169 Reset the from_disp_prop_p flag.
15170 (SAVE_IT, RESTORE_IT): New macros.
15171 (pos_visible_p, face_before_or_after_it_pos)
15172 (back_to_previous_visible_line_start)
15173 (move_it_in_display_line_to, move_it_in_display_line)
15174 (move_it_to, move_it_vertically_backward, move_it_by_lines)
15175 (try_scrolling, redisplay_window, display_line): Use them when
15176 saving a temporary copy of the iterator and restoring it back.
15177 (back_to_previous_visible_line_start, reseat_1)
15178 (init_iterator): Empty the bidi cache "stack".
15179 (move_it_in_display_line_to): If iterator ended up at
15180 EOL, but we never saw any buffer positions smaller than
15181 to_charpos, return MOVE_POS_MATCH_OR_ZV. Fixes vertical cursor
15182 motion in bidi-reordered lines.
15183 (move_it_in_display_line_to): Record prev_method and prev_pos
15184 immediately before the call to set_iterator_to_next. Fixes cursor
15185 motion in bidi-reordered lines with stretch glyphs and strings
15186 displayed in margins. (Bug#8133) (Bug#8867)
15187 Return MOVE_POS_MATCH_OR_ZV only if iterator position is past
15188 TO_CHARPOS.
15189 (pos_visible_p): Support positions in bidi-reordered lines.
15190 Save and restore bidi cache.
15191
15192 * bidi.c (bidi_level_of_next_char): clen should be EMACS_NT, not int.
15193 (bidi_paragraph_info): Delete unused struct.
15194 (bidi_cache_idx, bidi_cache_last_idx): Declare EMACS_INT.
15195 (bidi_cache_start): New variable.
15196 (bidi_cache_reset): Reset bidi_cache_idx to bidi_cache_start, not
15197 to zero.
15198 (bidi_cache_fetch_state, bidi_cache_search)
15199 (bidi_cache_find_level_change, bidi_cache_iterator_state)
15200 (bidi_cache_find, bidi_peek_at_next_level)
15201 (bidi_level_of_next_char, bidi_find_other_level_edge)
15202 (bidi_move_to_visually_next): Compare cache index with
15203 bidi_cache_start rather than with zero.
15204 (bidi_fetch_char): Accept new argument STRING; all callers
15205 changed. Support iteration over a string. Support strings with
15206 display properties. Support unibyte strings. Fix the type of
15207 `len' according to what STRING_CHAR_AND_LENGTH expects.
15208 (bidi_paragraph_init, bidi_resolve_explicit_1)
15209 (bidi_resolve_explicit, bidi_resolve_weak)
15210 (bidi_level_of_next_char, bidi_move_to_visually_next):
15211 Support iteration over a string.
15212 (bidi_set_sor_type, bidi_resolve_explicit_1)
15213 (bidi_resolve_explicit, bidi_type_of_next_char): ignore_bn_limit
15214 can now be zero (for strings); special values 0 and -1 were
15215 changed to -1 and -2, respectively.
15216 (bidi_char_at_pos): New function.
15217 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak):
15218 Call it instead of FETCH_MULTIBYTE_CHAR.
15219 (bidi_move_to_visually_next): Abort if charpos or bytepos were not
15220 initialized to valid values.
15221 (bidi_init_it): Don't initialize charpos and bytepos with invalid
15222 values.
15223 (bidi_level_of_next_char): Allow the sentinel "position" to pass
15224 the test for valid cached positions. Fix the logic for looking up
15225 the sentinel state in the cache. GCPRO the Lisp string we are
15226 iterating.
15227 (bidi_push_it, bidi_pop_it): New functions.
15228 (bidi_initialize): Initialize the bidi cache start stack pointer.
15229 (bidi_cache_ensure_space): New function, refactored from part of
15230 bidi_cache_iterator_state. Don't assume the required size is just
15231 one BIDI_CACHE_CHUNK away.
15232 (bidi_cache_start_stack, bidi_push_it): Use IT_STACK_SIZE.
15233 (bidi_count_bytes, bidi_char_at_pos): New functions.
15234 (bidi_cache_search): Don't assume bidi_cache_last_idx is
15235 always valid if bidi_cache_idx is valid.
15236 (bidi_cache_find_level_change): xassert that bidi_cache_last_idx
15237 is valid if it's going to be used.
15238 (bidi_shelve_cache, bidi_unshelve_cache): New functions.
15239 (bidi_cache_fetch_state, bidi_cache_search)
15240 (bidi_cache_find_level_change, bidi_cache_ensure_space)
15241 (bidi_cache_iterator_state, bidi_cache_find)
15242 (bidi_find_other_level_edge, bidi_cache_start_stack):
15243 All variables related to cache indices are now EMACS_INT.
15244
15245 * dispextern.h (struct bidi_string_data): New structure.
15246 (struct bidi_it): New member `string'. Make flag members be 1-bit
15247 fields, and put them last in the struct.
15248 (compute_display_string_pos, compute_display_string_end):
15249 Update prototypes.
15250 (bidi_push_it, bidi_pop_it): Add prototypes.
15251 (struct iterator_stack_entry): New members bidi_p,
15252 paragraph_embedding, and from_disp_prop_p.
15253 (struct it): Member bidi_p is now a bit field 1 bit wide.
15254 (bidi_shelve_cache, bidi_unshelve_cache):
15255 Declare prototypes.
15256
15257 * .gdbinit (xvectype, xvector, xcompiled, xchartable, xboolvector)
15258 (xpr, xfont, xbacktrace): Use "header.size" when accessing vectors
15259 and vector-like objects.
15260
15261 * dispnew.c (buffer_posn_from_coords): Save and restore the bidi
15262 cache around display iteration.
15263
15264 * window.c (Fwindow_end, window_scroll_pixel_based)
15265 (displayed_window_lines, Frecenter): Save and restore the bidi
15266 cache around display iteration.
15267
15268 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
15269
15270 * editfns.c (Fdelete_region): Clarify the use of the named
15271 parameters (bug#6788).
15272
15273 2011-07-14 Martin Rudalics <rudalics@gmx.at>
15274
15275 * indent.c (Fvertical_motion): Set and restore w->pointm when
15276 saving and restoring the window's buffer (Bug#9006).
15277
15278 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
15279
15280 * editfns.c (Fstring_to_char): Clarify just what is returned
15281 (bug#6576). Text by Eli Zaretskii.
15282
15283 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
15284
15285 * gnutls.c (init_gnutls_functions): Honor gnutls_log_level (bug#9059).
15286
15287 2011-07-13 Eli Zaretskii <eliz@gnu.org>
15288
15289 * buffer.c (mmap_find): Fix a typo.
15290
15291 2011-07-13 Johan Bockgård <bojohan@gnu.org>
15292
15293 Fix execution of x selection hooks.
15294 * xselect.c (Qx_lost_selection_functions)
15295 (Qx_sent_selection_functions): New vars.
15296 (syms_of_xselect): DEFSYM them.
15297 (x_handle_selection_request): Pass Qx_sent_selection_functions
15298 rather than Vx_sent_selection_functions to Frun_hook_with_args.
15299 (x_handle_selection_clear,x_clear_frame_selections):
15300 Pass Qx_lost_selection_functions rather than
15301 Vx_lost_selection_functions to Frun_hook_with_args.
15302
15303 2011-07-13 Paul Eggert <eggert@cs.ucla.edu>
15304
15305 * buffer.c (Fget_buffer_create): Initialize inhibit_shrinking.
15306 The old code sometimes used this field without initializing it.
15307
15308 * alloc.c (gc_sweep): Don't read past end of array.
15309 In theory, the old code could also have corrupted Emacs internals,
15310 though it'd be very unlikely.
15311
15312 2011-07-12 Andreas Schwab <schwab@linux-m68k.org>
15313
15314 * character.c (Fcharacterp): Don't advertise optional ignored
15315 argument. (Bug#4026)
15316
15317 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
15318
15319 * keymap.c (syms_of_keymap): Clarify that "modifier" is "modifier
15320 key" (bug#4257).
15321
15322 * window.c (Fset_window_start): Doc fix (bug#4199).
15323 (Fset_window_hscroll): Ditto.
15324
15325 2011-07-12 Paul Eggert <eggert@cs.ucla.edu>
15326
15327 Fix minor new problems caught by GCC 4.6.1.
15328 * term.c (init_tty): Remove unused local.
15329 * xsettings.c (store_monospaced_changed): Define this function only
15330 if (defined HAVE_GSETTINGS || defined HAVE_GCONF), as it's
15331 not used otherwise.
15332
15333 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
15334
15335 * xdisp.c (Vresize_mini_windows): Minor doc fix (Bug#3300).
15336
15337 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
15338
15339 * xdisp.c (syms_of_xdisp): Make it explicit that the mini-windows
15340 are the mini-buffer and the echo area (bug#3320).
15341
15342 * term.c (init_tty): Remove support for supdup, c10 and perq
15343 terminals, which are no longer supported (bug#1482).
15344
15345 2011-07-10 Johan Bockgård <bojohan@gnu.org>
15346
15347 * xdisp.c (Ftool_bar_lines_needed): Fix WINDOWP check.
15348
15349 2011-07-10 Jan Djärv <jan.h.d@swipnet.se>
15350
15351 * xmenu.c (menu_highlight_callback): Only pass frame to show_help_event
15352 for non-popups (Bug#3642).
15353
15354 2011-07-10 Andreas Schwab <schwab@linux-m68k.org>
15355
15356 * alloc.c (reset_malloc_hooks): Protoize.
15357 * buffer.c (mmap_init, mmap_find, mmap_free_1, mmap_enlarge)
15358 (mmap_set_vars, mmap_alloc, mmap_free, mmap_realloc): Likewise.
15359 * cm.c (losecursor): Likewise.
15360 * data.c (fmod): Likewise.
15361 * dispnew.c (swap_glyphs_in_rows): Likewise.
15362 * emacs.c (memory_warning_signal): Likewise.
15363 * floatfns.c (float_error): Likewise.
15364 * font.c (check_gstring, check_otf_features, otf_tag_symbol)
15365 (otf_open, font_otf_capability, generate_otf_features)
15366 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
15367 Likewise.
15368 * image.c (pbm_read_file): Likewise.
15369 * indent.c (string_display_width): Likewise.
15370 * intervals.c (check_for_interval, search_for_interval)
15371 (inc_interval_count, count_intervals, root_interval)
15372 (adjust_intervals_for_insertion, make_new_interval): Likewise.
15373 * lread.c (defalias): Likewise.
15374 * ralloc.c (r_alloc_check): Likewise.
15375 * regex.c (set_image_of_range_1, set_image_of_range)
15376 (regex_grow_registers): Likewise.
15377 * sysdep.c (strerror): Likewise.
15378 * termcap.c (valid_filename_p, tprint, main): Likewise.
15379 * tparam.c (main): Likewise.
15380 * unexhp9k800.c (run_time_remap, save_data_space)
15381 (update_file_ptrs, read_header, write_header, calculate_checksum)
15382 (copy_file, copy_rest, display_header): Likewise.
15383 * widget.c (mark_shell_size_user_specified, create_frame_gcs):
15384 Likewise.
15385 * xdisp.c (check_it): Likewise.
15386 * xfaces.c (register_color, unregister_color, unregister_colors):
15387 Likewise.
15388 * xfns.c (print_fontset_result): Likewise.
15389 * xrdb.c (member, fatal, main): Likewise.
15390
15391 2011-07-10 Paul Eggert <eggert@cs.ucla.edu>
15392
15393 Fix minor problems found by static checking (Bug#9031).
15394 * chartab.c (char_table_set_range, map_sub_char_table):
15395 Remove unused locals.
15396 (uniprop_table): Now static.
15397 * composite.c (_work_char): Remove unused static var.
15398
15399 2011-07-09 Juanma Barranquero <lekktu@gmail.com>
15400
15401 * chartab.c (uniprop_table_uncompress): Remove unused local variable.
15402
15403 2011-07-09 Jan Djärv <jan.h.d@swipnet.se>
15404
15405 * gtkutil.c (qttip_cb): Remove code without function.
15406
15407 2011-07-09 Eli Zaretskii <eliz@gnu.org>
15408
15409 * w32.c (pthread_sigmask): New stub.
15410
15411 2011-07-08 Paul Eggert <eggert@cs.ucla.edu>
15412
15413 Use pthread_sigmask, not sigprocmask (Bug#9010).
15414 sigprocmask is portable only for single-threaded applications, and
15415 Emacs can be multi-threaded when it uses GTK.
15416 * Makefile.in (LIB_PTHREAD_SIGMASK): New macro.
15417 (LIBES): Use it.
15418 * callproc.c (Fcall_process):
15419 * process.c (create_process):
15420 * sysdep.c (sys_sigblock, sys_sigunblock, sys_sigsetmask):
15421 Use pthread_sigmask, not sigprocmask.
15422
15423 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
15424
15425 * gtkutil.c (qttip_cb): Set line wrap to FALSE for tooltip widget.
15426 (xg_prepare_tooltip): Revert text in x->ttip_lbl, margins was
15427 wrong (Bug#8591).
15428
15429 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
15430
15431 * gtkutil.c (xg_prepare_tooltip): Fix indentation and comment.
15432 Put text in x->ttip_lbl instead of gtk_tooltip_set_text (Bug#8591).
15433 (xg_hide_tooltip): Fix comment.
15434
15435 * nsterm.m (initFrameFromEmacs): Don't use ns_return_types
15436 in registerServicesMenuSendTypes.
15437 (validRequestorForSendType): Don't check ns_return_types.
15438
15439 * nsfns.m (Fx_open_connection): Put NSStringPboardType into
15440 ns_return_type.
15441
15442 2011-07-08 Jason Rumney <jasonr@gnu.org>
15443
15444 * w32term.c (x_make_frame_visible): Use SH_SHOWNORMAL rather than
15445 SH_SHOW for hidden windows (Bug#5482).
15446
15447 * w32fns.c (w32_wnd_proc) [WM_TIMER, WM_SET_CURSOR]: Avoid using
15448 frame struct members of non-existent frames (Bug#6284).
15449
15450 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
15451
15452 * nsterm.m (keyDown): Call to wantsToDelayTextChangeNotifications and
15453 variable firstTime not needed on OSX >= 10.6.
15454 (setPosition): setFloatValue:knobProportion: is deprecated on OSX
15455 >= 10.5. Use setKnobProportion, setDoubleValue.
15456
15457 * nsterm.h (MAC_OS_X_VERSION_10_3, MAC_OS_X_VERSION_10_4)
15458 (MAC_OS_X_VERSION_10_5): Define if not defined.
15459 (EmacsView, EmacsTooltip): Implements NSWindowDelegate on OSX >= 10.6.
15460 (EmacsMenu): Implements NSMenuDelegate on OSX >= 10.6.
15461 (EmacsToolbar): Implements NSToolbarDelegate on OSX >= 10.6.
15462
15463 * nsselect.m (ns_string_from_pasteboard): Don't use deprecated methods
15464 cString and lossyCString on OSX >= 10.4.
15465
15466 * nsmenu.m (fillWithWidgetValue): Don't use deprecated method
15467 sizeToFit on OSX >= 10.2.
15468
15469 * nsimage.m (allocInitFromFile): Don't use deprecated method
15470 bestRepresentationForDevice on OSX >= 10.6.
15471
15472 * nsfns.m (check_ns_display_info): Cast to long and use %ld in error
15473 to avoid warning.
15474
15475 * emacs.c: Declare unexec_init_emacs_zone.
15476
15477 * nsgui.h: Fix compiler warning about gnulib redefining verify.
15478
15479 * nsselect.m (ns_get_local_selection): Change to extern (Bug#8842).
15480
15481 * nsmenu.m (ns_update_menubar): Remove useless setDelegate call
15482 on svcsMenu (Bug#8842).
15483
15484 * nsfns.m (Fx_open_connection): Remove NSStringPboardType from
15485 ns_return_types.
15486 (Fns_list_services): Just return Qnil on 10.6, code not working there.
15487
15488 * nsterm.m (QUTF8_STRING): Declare.
15489 (initFrameFromEmacs): Call registerServicesMenuSendTypes.
15490 (validRequestorForSendType): Return type is (id).
15491 Change indexOfObjectIdenticalTo to indexOfObject.
15492 Check if we have local selection before returning self (Bug#8842).
15493 (writeSelectionToPasteboard): Put local selection into paste board
15494 if we have a local selection (Bug#8842).
15495 (syms_of_nsterm): DEFSYM QUTF8_STRING.
15496
15497 * nsterm.h (MAC_OS_X_VERSION_10_6): Define here instead of nsterm.m.
15498 (ns_get_local_selection): Declare.
15499
15500 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
15501
15502 * keymap.c (describe_map_tree): Don't insert a double newline at
15503 the end of the buffer (bug#1169) and return whether we inserted
15504 something.
15505
15506 * callint.c (Fcall_interactively): Change "reading args" to
15507 "providing args" to try to clarify what it does (bug#1010).
15508
15509 2011-07-07 Kenichi Handa <handa@m17n.org>
15510
15511 * composite.c (composition_compute_stop_pos): Ignore a static
15512 composition starting before CHARPOS (Bug#8915).
15513
15514 * xdisp.c (handle_composition_prop): Likewise.
15515
15516 2011-07-07 Eli Zaretskii <eliz@gnu.org>
15517
15518 * term.c (produce_glyphs) <xassert>: Allow IT_GLYPHLESS in it->what.
15519 (Bug#9015)
15520
15521 2011-07-07 Kenichi Handa <handa@m17n.org>
15522
15523 * character.h (unicode_category_t): New enum type.
15524
15525 * chartab.c (uniprop_decoder_t, uniprop_encoder_t): New types.
15526 (Qchar_code_property_table): New variable.
15527 (UNIPROP_TABLE_P, UNIPROP_GET_DECODER)
15528 (UNIPROP_COMPRESSED_FORM_P): New macros.
15529 (char_table_ascii): Uncompress the compressed values.
15530 (sub_char_table_ref): New arg is_uniprop. Callers changed.
15531 Uncompress the compressed values.
15532 (sub_char_table_ref_and_range): Likewise.
15533 (char_table_ref_and_range): Uncompress the compressed values.
15534 (sub_char_table_set): New arg is_uniprop. Callers changed.
15535 Uncompress the compressed values.
15536 (sub_char_table_set_range): Args changed. Callers changed.
15537 (char_table_set_range): Adjuted for the above change.
15538 (map_sub_char_table): Delete args default_val and parent. Add arg
15539 top. Give decoded values to a Lisp function.
15540 (map_char_table): Adjust for the above change. Give decoded
15541 values to a Lisp function. Gcpro more variables.
15542 (uniprop_table_uncompress)
15543 (uniprop_decode_value_run_length): New functions.
15544 (uniprop_decoder, uniprop_decoder_count): New variables.
15545 (uniprop_get_decoder, uniprop_encode_value_character)
15546 (uniprop_encode_value_run_length, uniprop_encode_value_numeric):
15547 New functions.
15548 (uniprop_encoder, uniprop_encoder_count): New variables.
15549 (uniprop_get_encoder, uniprop_table)
15550 (Funicode_property_table_internal, Fget_unicode_property_internal)
15551 (Fput_unicode_property_internal): New functions.
15552 (syms_of_chartab): DEFSYM Qchar_code_property_table, defsubr
15553 Sunicode_property_table_internal, Sget_unicode_property_internal,
15554 and Sput_unicode_property_internal. Defvar_lisp
15555 char-code-property-alist.
15556
15557 * composite.c (CHAR_COMPOSABLE_P): Adjust for the change of
15558 Vunicode_category_table.
15559
15560 * font.c (font_range): Adjust for the change of
15561 Vunicode_category_table.
15562
15563 2011-07-07 Dan Nicolaescu <dann@ics.uci.edu>
15564
15565 * m/iris4d.h: Remove file, move contents ...
15566 * s/irix6-5.h: ... here.
15567
15568 2011-07-06 Paul Eggert <eggert@cs.ucla.edu>
15569
15570 Remove unportable assumption about struct layout (Bug#8884).
15571 * alloc.c (mark_buffer):
15572 * buffer.c (reset_buffer_local_variables, Fbuffer_local_variables)
15573 (clone_per_buffer_values): Don't assume that
15574 sizeof (struct buffer) is a multiple of sizeof (Lisp_Object).
15575 This isn't true in general, and it's particularly not true
15576 if Emacs is configured with --with-wide-int.
15577 * buffer.h (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER):
15578 New macros, used in the buffer.c change.
15579
15580 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
15581
15582 * xsettings.c: Use both GConf and GSettings if both are available.
15583 (store_config_changed_event): Add comment.
15584 (dpyinfo_valid, store_font_name_changed, map_tool_bar_style)
15585 (store_tool_bar_style_changed): New functions.
15586 (store_monospaced_changed): Add comment. Call dpyinfo_valid.
15587 (struct xsettings): Move font inside HAVE_XFT.
15588 (GSETTINGS_TOOL_BAR_STYLE, GSETTINGS_FONT_NAME): New defines.
15589 (GSETTINGS_MONO_FONT): Rename from SYSTEM_MONO_FONT.
15590 Move inside HAVE_XFT.
15591 (something_changed_gsettingsCB): Rename from something_changedCB.
15592 Check for changes in GSETTINGS_TOOL_BAR_STYLE and GSETTINGS_FONT_NAME
15593 also.
15594 (GCONF_TOOL_BAR_STYLE, GCONF_FONT_NAME): New defines.
15595 (GCONF_MONO_FONT): Rename from SYSTEM_MONO_FONT. Move inside HAVE_XFT.
15596 (something_changed_gconfCB): Rename from something_changedCB.
15597 Check for changes in GCONF_TOOL_BAR_STYLE and GCONF_FONT_NAME also.
15598 (parse_settings): Move check for font inside HAVE_XFT.
15599 (read_settings, apply_xft_settings): Add comment.
15600 (read_and_apply_settings): Add comment. Call map_tool_bar_style and
15601 store_tool_bar_style_changed. Move check for font inside HAVE_XFT and
15602 call store_font_name_changed.
15603 (xft_settings_event): Add comment.
15604 (init_gsettings): Add comment. Get values for GSETTINGS_TOOL_BAR_STYLE
15605 and GSETTINGS_FONT_NAME. Move check for fonts within HAVE_XFT.
15606 (init_gconf): Add comment. Get values for GCONF_TOOL_BAR_STYLE
15607 and GCONF_FONT_NAME. Move check for fonts within HAVE_XFT.
15608 (xsettings_initialize): Call init_gsettings last.
15609 (xsettings_get_system_font, xsettings_get_system_normal_font):
15610 Add comment.
15611
15612 2011-07-05 Paul Eggert <eggert@cs.ucla.edu>
15613
15614 Random fixes. E.g., (random) never returned negative values.
15615 * fns.c (Frandom): Use GET_EMACS_TIME for random seed, and add the
15616 subseconds part to the entropy, as that's a bit more random.
15617 Prefer signed to unsigned, since the signedness doesn't matter and
15618 in general we prefer signed. When given a limit, use a
15619 denominator equal to INTMASK + 1, not to VALMASK + 1, because the
15620 latter isn't right if USE_2_TAGS_FOR_INTS.
15621 * sysdep.c (get_random): Return a value in the range 0..INTMASK,
15622 not 0..VALMASK. Don't discard "excess" bits that random () returns.
15623
15624 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
15625
15626 * textprop.c (text_property_stickiness):
15627 Obey Vtext_property_default_nonsticky.
15628 (syms_of_textprop): Add `display' to Vtext_property_default_nonsticky.
15629 * w32fns.c (syms_of_w32fns):
15630 * xfns.c (syms_of_xfns): Don't Add `display' since it's there by default.
15631
15632 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
15633
15634 * fileio.c (barf_or_query_if_file_exists): Use S_ISDIR.
15635 This is more efficient than Ffile_directory_p and avoids a minor race.
15636
15637 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
15638
15639 * buffer.c (Foverlay_put): Say what the return value is
15640 (bug#7835).
15641
15642 * fileio.c (barf_or_query_if_file_exists): Check first if the file
15643 is a directory before asking whether to use the file name
15644 (bug#7564).
15645 (barf_or_query_if_file_exists): Make the "File is a directory"
15646 error be more correct.
15647
15648 * fns.c (Frequire): Remove the mention of the .gz files, since
15649 that's installation-specific, but keep the mention of
15650 `get-load-suffixes'.
15651
15652 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
15653
15654 * editfns.c (Fformat_time_string): Don't assume strlen fits in int.
15655 Report string overflow if the output is too long.
15656
15657 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
15658
15659 * gnutls.c (Fgnutls_boot): Don't mention :verify-error.
15660 (syms_of_gnutls): Remove duplicate DEFSYM for
15661 Qgnutls_bootprop_verify_hostname_error, an error for
15662 Qgnutls_bootprop_verify_error (which is no longer used).
15663
15664 * eval.c (find_handler_clause): Remove parameters `sig' and `data',
15665 unused since 2011-01-26T20:02:07Z!monnier@iro.umontreal.ca. All callers changed.
15666 Also (re)move comments that are misplaced or no longer relevant.
15667
15668 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
15669
15670 * callint.c (Finteractive): Clarify the meaning of "@" (bug#8813).
15671
15672 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
15673
15674 * xfaces.c (Finternal_merge_in_global_face): Modify the foreground
15675 and background color parameters if they have been changed.
15676
15677 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
15678
15679 * editfns.c (Fformat): Clarify the - and 0 flags (bug#6659).
15680
15681 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
15682
15683 * xsettings.c (SYSTEM_FONT): Define only when used.
15684 No need to define when HAVE_GSETTINGS || !HAVE_XFT.
15685
15686 * keymap.c (access_keymap_1): Now static.
15687
15688 2011-07-02 Chong Yidong <cyd@stupidchicken.com>
15689
15690 * keyboard.c (command_loop_1): If a down-mouse event is unbound,
15691 leave any prefix arg for the up event (Bug#1586).
15692
15693 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
15694
15695 * lread.c (syms_of_lread): Mention single symbols defined by
15696 `defvar' or `defconst' (bug#7154).
15697
15698 * fns.c (Frequire): Mention .el.gz files (bug#7314).
15699 (Frequire): Mention get-load-suffixes.
15700
15701 2011-07-02 Martin Rudalics <rudalics@gmx.at>
15702
15703 * window.h (window): Remove clone_number slot.
15704 * window.c (Fwindow_clone_number, Fset_window_clone_number):
15705 Remove.
15706 (make_parent_window, make_window, saved_window)
15707 (Fset_window_configuration, save_window_save): Don't deal with
15708 clone numbers.
15709 * buffer.c (Qclone_number): Remove declaration.
15710 (sort_overlays, overlay_strings): Don't deal with clone numbers.
15711
15712 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
15713
15714 Add multiple inheritance to keymaps.
15715 * keymap.c (Fmake_composed_keymap): New function.
15716 (Fset_keymap_parent): Simplify.
15717 (fix_submap_inheritance): Remove.
15718 (access_keymap_1): New function extracted from access_keymap to handle
15719 embedded parents and handle lists of maps.
15720 (access_keymap): Use it.
15721 (Fkeymap_prompt, map_keymap_internal, map_keymap, store_in_keymap)
15722 (Fcopy_keymap): Handle embedded parents.
15723 (Fcommand_remapping, define_as_prefix): Simplify.
15724 (Fkey_binding): Simplify.
15725 (syms_of_keymap): Move minibuffer-local-completion-map,
15726 minibuffer-local-filename-completion-map,
15727 minibuffer-local-must-match-map, and
15728 minibuffer-local-filename-must-match-map to Elisp.
15729 (syms_of_keymap): Defsubr make-composed-keymap.
15730 * keyboard.c (menu_bar_items): Use map_keymap_canonical.
15731 (parse_menu_item): Trivial simplification.
15732
15733 2011-07-01 Glenn Morris <rgm@gnu.org>
15734
15735 * Makefile.in (SETTINGS_LIBS): Fix typo.
15736
15737 2011-07-01 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
15738
15739 * coding.c (Fencode_coding_string): Record the last coding system
15740 used, as the function doc string says (bug#8738).
15741
15742 2011-07-01 Jan Djärv <jan.h.d@swipnet.se>
15743
15744 * xsettings.c (store_monospaced_changed): Take new font as arg and
15745 check for change against current_mono_font.
15746 (EMACS_TYPE_SETTINGS): Remove this and related defines.
15747 (emacs_settings_constructor, emacs_settings_get_property)
15748 (emacs_settings_set_property, emacs_settings_class_init)
15749 (emacs_settings_init, gsettings_obj): Remove.
15750 (something_changedCB): New function for HAVE_GSETTINGS.
15751 (something_changedCB): HAVE_GCONF: Call store_monospaced_changed
15752 with value as argument.
15753 (init_gsettings): Check that GSETTINGS_SCHEMA exists before calling
15754 g_settings_new (Bug#8967). Do not create gsettings_obj.
15755 Remove calls to g_settings_bind. Connect something_changedCB to
15756 "changed".
15757
15758 * xgselect.c: Add defined (HAVE_GSETTINGS).
15759 (xgselect_initialize): Ditto.
15760
15761 * process.c: Add defined (HAVE_GSETTINGS) for xgselect.h
15762 (wait_reading_process_output): Add defined (HAVE_GSETTINGS) for
15763 xg_select.
15764
15765 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
15766
15767 * eval.c (struct backtrace): Simplify and port the data structure.
15768 Do not assume that "int nargs : BITS_PER_INT - 2;" produces a
15769 signed bit field, as this assumption is not portable and it makes
15770 Emacs crash when compiled with Sun C 5.8 on sparc. Do not use
15771 "char debug_on_exit : 1" as this is not portable either; instead,
15772 use the portable "unsigned int debug_on_exit : 1". Remove unused
15773 member evalargs. Remove obsolete comments about cc bombing out.
15774
15775 2011-06-30 Jan Djärv <jan.h.d@swipnet.se>
15776
15777 * xsettings.c: Include glib-object.h, gio/gio.h if HAVE_GSETTINGS.
15778 Let HAVE_GSETTINGS override HAVE_GCONF.
15779 (store_monospaced_changed): New function.
15780 (EMACS_SETTINGS): A new type derived from GObject to handle
15781 GSettings notifications.
15782 (emacs_settings_constructor, emacs_settings_get_property)
15783 (emacs_settings_set_property, emacs_settings_class_init):
15784 New functions.
15785 (gsettings_client, gsettings_obj): New variables.
15786 (GSETTINGS_SCHEMA): New define.
15787 (something_changedCB): Call store_monospaced_changed.
15788 (init_gsettings): New function.
15789 (xsettings_initialize): Call init_gsettings.
15790 (syms_of_xsettings): Initialize gsettings_client, gsettings_obj
15791 to NULL.
15792
15793 * Makefile.in (SETTINGS_CFLAGS, SETTINGS_LIBS): Rename from
15794 GCONF_CFLAGS/LIBS.
15795
15796 2011-06-29 Martin Rudalics <rudalics@gmx.at>
15797
15798 * window.c (resize_root_window, grow_mini_window)
15799 (shrink_mini_window): Rename Qresize_root_window to
15800 Qwindow_resize_root_window and Qresize_root_window_vertically to
15801 Qwindow_resize_root_window_vertically.
15802
15803 2011-06-28 Paul Eggert <eggert@cs.ucla.edu>
15804
15805 * gnutls.c (Qgnutls_bootprop_verify_error): Remove unused var.
15806
15807 2011-06-27 Juanma Barranquero <lekktu@gmail.com>
15808
15809 * makefile.w32-in: Redesign dependencies so they reflect more
15810 clearly which files are directly included by each source file,
15811 and not through other includes.
15812
15813 2011-06-27 Martin Rudalics <rudalics@gmx.at>
15814
15815 * buffer.c (Qclone_number): Declare static and DEFSYM it.
15816 (sort_overlays, overlay_strings): When an overlay's clone number
15817 matches the window's clone number process the overlay even if
15818 the overlay's window property doesn't match the current window.
15819
15820 * window.c (Fwindow_vchild): Rename to Fwindow_top_child.
15821 (Fwindow_hchild): Rename to Fwindow_left_child.
15822 (Fwindow_next): Rename to Fwindow_next_sibling.
15823 (Fwindow_prev): Rename to Fwindow_prev_sibling.
15824 (resize_window_check): Rename to window_resize_check.
15825 (resize_window_apply): Rename to window_resize_apply.
15826 (Fresize_window_apply): Rename to Fwindow_resize_apply.
15827 (Fdelete_other_windows_internal, resize_frame_windows)
15828 (Fsplit_window_internal, Fdelete_window_internal)
15829 (grow_mini_window, shrink_mini_window)
15830 (Fresize_mini_window_internal): Fix callers accordingly.
15831
15832 2011-06-26 Jan Djärv <jan.h.d@swipnet.se>
15833
15834 * emacsgtkfixed.h: State that this is only used with Gtk+3.
15835 (emacs_fixed_set_min_size): Remove.
15836 (emacs_fixed_new): Take frame as argument.
15837
15838 * emacsgtkfixed.c: State that this is only used with Gtk+3.
15839 (_EmacsFixedPrivate): Remove minwidth/height.
15840 Add struct frame *f.
15841 (emacs_fixed_init): Initialize priv->f.
15842 (get_parent_class, emacs_fixed_set_min_size): Remove.
15843 (emacs_fixed_new): Set priv->f to argument.
15844 (emacs_fixed_get_preferred_width)
15845 (emacs_fixed_get_preferred_height): Use min_width/height from
15846 frames size_hint to set minimum and natural (Bug#8919).
15847 (XSetWMSizeHints, XSetWMNormalHints): Override these functions
15848 and use min_width/height from frames size_hint to set
15849 min_width/height (Bug#8919).
15850
15851 * gtkutil.c (xg_create_frame_widgets): Pass f to emacs_fixed_new.
15852 (x_wm_set_size_hint): Remove call to emacs_fixed_set_min_size.
15853 Fix indentation.
15854
15855 2011-06-26 Eli Zaretskii <eliz@gnu.org>
15856
15857 * bidi.c (bidi_paragraph_init): Test for ZV_BYTE before calling
15858 bidi_at_paragraph_end, since fast_looking_at doesn't like to be
15859 called at ZV.
15860
15861 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
15862
15863 * process.c (wait_reading_process_output): Bypass select if
15864 waiting for a cell while ignoring keyboard input, and input is
15865 pending. Suggested by Jan Djärv (Bug#8869).
15866
15867 2011-06-25 Paul Eggert <eggert@cs.ucla.edu>
15868
15869 Use gnulib's dup2 module instead of rolling our own.
15870 * sysdep.c (dup2) [!HAVE_DUP2]: Remove; gnulib now does this.
15871
15872 2011-06-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15873
15874 * dispnew.c (scrolling_window): Before scrolling, turn off a
15875 mouse-highlight in the window being scrolled.
15876
15877 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
15878
15879 Move DEFSYM to lisp.h and use everywhere.
15880
15881 * character.h (DEFSYM): Move declaration...
15882 * lisp.h (DEFSYM): ...here.
15883
15884 * gnutls.c:
15885 * minibuf.c:
15886 * w32menu.c:
15887 * w32proc.c:
15888 * w32select.c: Don't include character.h.
15889
15890 * alloc.c (syms_of_alloc):
15891 * buffer.c (syms_of_buffer):
15892 * bytecode.c (syms_of_bytecode):
15893 * callint.c (syms_of_callint):
15894 * casefiddle.c (syms_of_casefiddle):
15895 * casetab.c (init_casetab_once):
15896 * category.c (init_category_once, syms_of_category):
15897 * ccl.c (syms_of_ccl):
15898 * cmds.c (syms_of_cmds):
15899 * composite.c (syms_of_composite):
15900 * dbusbind.c (syms_of_dbusbind):
15901 * dired.c (syms_of_dired):
15902 * dispnew.c (syms_of_display):
15903 * doc.c (syms_of_doc):
15904 * editfns.c (syms_of_editfns):
15905 * emacs.c (syms_of_emacs):
15906 * eval.c (syms_of_eval):
15907 * fileio.c (syms_of_fileio):
15908 * fns.c (syms_of_fns):
15909 * frame.c (syms_of_frame):
15910 * fringe.c (syms_of_fringe):
15911 * insdel.c (syms_of_insdel):
15912 * keymap.c (syms_of_keymap):
15913 * lread.c (init_obarray, syms_of_lread):
15914 * macros.c (syms_of_macros):
15915 * msdos.c (syms_of_msdos):
15916 * print.c (syms_of_print):
15917 * process.c (syms_of_process):
15918 * search.c (syms_of_search):
15919 * sound.c (syms_of_sound):
15920 * syntax.c (init_syntax_once, syms_of_syntax):
15921 * terminal.c (syms_of_terminal):
15922 * textprop.c (syms_of_textprop):
15923 * undo.c (syms_of_undo):
15924 * w32.c (globals_of_w32):
15925 * window.c (syms_of_window):
15926 * xdisp.c (syms_of_xdisp):
15927 * xfaces.c (syms_of_xfaces):
15928 * xfns.c (syms_of_xfns):
15929 * xmenu.c (syms_of_xmenu):
15930 * xsettings.c (syms_of_xsettings):
15931 * xterm.c (syms_of_xterm): Use DEFSYM.
15932
15933 2011-06-24 Teodor Zlatanov <tzz@lifelogs.com>
15934
15935 * gnutls.c (syms_of_gnutls): Use the DEFSYM macro from character.h.
15936
15937 2011-06-23 Paul Eggert <eggert@cs.ucla.edu>
15938
15939 Integer and buffer overflow fixes (Bug#8873).
15940
15941 * print.c (printchar, strout): Check for string overflow.
15942 (PRINTPREPARE, printchar, strout):
15943 Don't set size unless allocation succeeds.
15944
15945 * minibuf.c (read_minibuf_noninteractive): Use ptrdiff_t, not int,
15946 for sizes. Check for string overflow more accurately.
15947 Simplify newline removal at end; this suppresses a GCC 4.6.0 warning.
15948
15949 * macros.c: Integer and buffer overflow fixes.
15950 * keyboard.h (struct keyboard.kbd_macro_bufsize):
15951 * macros.c (Fstart_kbd_macro, store_kbd_macro_char):
15952 Use ptrdiff_t, not int, for sizes.
15953 Don't increment bufsize until after realloc succeeds.
15954 Check for size-calculation overflow.
15955 (Fstart_kbd_macro): Use EMACS_INT, not int, for XINT result.
15956
15957 * lisp.h (DEFVAR_KBOARD): Use offsetof instead of char * finagling.
15958
15959 * lread.c: Integer overflow fixes.
15960 (read_integer): Radix is now EMACS_INT, not int,
15961 to improve quality of diagnostics for out-of-range radices.
15962 Calculate buffer size correctly for out-of-range radices.
15963 (read1): Check for integer overflow in radices, and in
15964 read-circle numbers.
15965 (read_escape): Avoid int overflow.
15966 (Fload, openp, read_buffer_size, read1)
15967 (substitute_object_recurse, read_vector, read_list, map_obarray):
15968 Use ptrdiff_t, not int, for sizes.
15969 (read1): Use EMACS_INT, not int, for sizes.
15970 Check for size overflow.
15971
15972 * image.c (cache_image): Check for size arithmetic overflow.
15973
15974 * lread.c: Integer overflow issues.
15975 (saved_doc_string_size, saved_doc_string_length)
15976 (prev_saved_doc_string_size, prev_saved_doc_string_length):
15977 Now ptrdiff_t, not int.
15978 (read1): Don't assume doc string length fits in int. Check for
15979 out-of-range doc string lengths.
15980 (read_list): Don't assume file position fits in int.
15981 (read_escape): Check for hex character overflow.
15982
15983 2011-06-22 Leo Liu <sdl.web@gmail.com>
15984
15985 * minibuf.c (Fcompleting_read_default, Vcompleting_read_function):
15986 Move to minibuffer.el.
15987
15988 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
15989
15990 Fixes for GLYPH_DEBUG found by GCC 4.6.0 static checking.
15991 The following patches are for when GLYPH_DEBUG && !XASSERT.
15992 * dispextern.h (trace_redisplay_p, dump_glyph_string):
15993 * dispnew.c (flush_stdout):
15994 * xdisp.c (dump_glyph_row, dump_glyph_matrix, dump_glyph):
15995 Mark as externally visible.
15996 * dispnew.c (check_window_matrix_pointers): Now static.
15997 * dispnew.c (window_to_frame_vpos):
15998 * xfns.c (unwind_create_frame):
15999 * xterm.c (x_check_font): Remove unused local.
16000 * scroll.c (CHECK_BOUNDS):
16001 * xfaces.c (cache_fache): Rename local to avoid shadowing.
16002 * xfns.c, w32fns.c (image_cache_refcount, dpyinfo_refcount): Now static.
16003 * xdisp.c (check_window_end): Now a no-op if !XASSERTS.
16004 (debug_first_unchanged_at_end_vpos, debug_last_unchanged_at_beg_vpos)
16005 (debug_dvpos, debug_dy, debug_delta, debug_delta_bytes, debug_end_vpos):
16006 Now static.
16007 (debug_method_add): Use va_list and vsprintf rather than relying
16008 on undefined behavior with wrong number of arguments.
16009 (dump_glyph, dump_glyph_row, Fdump_glyph_matrix):
16010 Don't assume ptrdiff_t and EMACS_INT are the same width as int.
16011 In this code, it's OK to assume C99 behavior for ptrdiff_t formats
16012 since we're not interested in debugging glyphs with old libraries.
16013 * xfaces.c (cache_face): Move debugging code earlier; this pacifies
16014 GCC 4.6.0's static checking.
16015
16016 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
16017
16018 Integer overflow and signedness fixes (Bug#8873).
16019 A few related buffer overrun fixes, too.
16020
16021 * font.c (font_score): Use EMACS_INT, not int, to store XINT value.
16022
16023 * dispextern.h (struct face.stipple):
16024 * image.c (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
16025 (x_bitmap_mask, x_allocate_bitmap_record)
16026 (x_create_bitmap_from_data, x_create_bitmap_from_file)
16027 (x_destroy_bitmap, x_destroy_all_bitmaps, x_create_bitmap_mask)
16028 (x_create_bitmap_from_xpm_data):
16029 * nsterm.h (struct ns_display_info.bitmaps_size, .bitmaps_last):
16030 * w32term.h (struct w32_display_info.icon_bitmap_id, .bitmaps_size)
16031 (.bitmaps_last):
16032 * xfaces.c (load_pixmap):
16033 * xterm.c (x_bitmap_icon, x_wm_set_icon_pixmap):
16034 * xterm.h (struct x_display_info.icon_bitmap_id, .bitmaps_size)
16035 (.bitmaps_last, struct x_output.icon_bitmap):
16036 Use ptrdiff_t, not int, for bitmap indexes.
16037 (x_allocate_bitmap_record): Check for size overflow.
16038 * dispextern.h, lisp.h: Adjust to API changes elsewhere.
16039
16040 Use ptrdiff_t, not int, for overlay counts.
16041 * buffer.h (overlays_at, sort_overlays, GET_OVERLAYS_AT):
16042 * editfns.c (overlays_around, get_pos_property):
16043 * textprop.c (get_char_property_and_overlay):
16044 * xdisp.c (next_overlay_change, note_mouse_highlight):
16045 * xfaces.c (face_at_buffer_position):
16046 * buffer.c (OVERLAY_COUNT_MAX): New macro.
16047 (overlays_at, overlays_in, sort_overlays, Foverlays_at)
16048 (Fnext_overlay_change, Fprevious_overlay_change)
16049 (mouse_face_overlay_overlaps, Foverlays_in):
16050 Use ptrdiff_t, not int, for sizes.
16051 (overlays_at, overlays_in): Check for size-calculation overflow.
16052
16053 * xterm.c (xim_initialize, same_x_server): Strlen may not fit in int.
16054
16055 * xsmfns.c (smc_save_yourself_CB, x_session_initialize): Avoid strlen.
16056 (x_session_initialize): Do not assume string length fits in int.
16057
16058 * xsettings.c (apply_xft_settings): Fix potential buffer overrun.
16059 This is unlikely, but can occur if DPI is outlandish.
16060
16061 * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
16062 * xselect.c (Fx_get_atom_name): Avoid need for strlen.
16063
16064 * xrdb.c: Don't assume strlen fits in int; avoid some strlens.
16065 * xrdb.c (magic_file_p, search_magic_path):
16066 Omit last arg SUFFIX; it was always 0. All callers changed.
16067 (magic_file_p): Use ptrdiff_t, not int. Check for size overflow.
16068
16069 * xfont.c (xfont_match): Avoid need for strlen.
16070
16071 * xfns.c: Don't assume strlen fits in int.
16072 (xic_create_fontsetname, x_window): Use ptrdiff_t, not int.
16073
16074 * xdisp.c (message_log_check_duplicate): Return intmax_t,
16075 not unsigned long, as we prefer signed integers. All callers changed.
16076 Detect integer overflow in repeat count.
16077 (message_dolog): Don't assume print length fits in 39 bytes.
16078 (display_mode_element): Don't assume strlen fits in int.
16079
16080 * termcap.c: Don't assume sizes fit in int and never overflow.
16081 (struct termcap_buffer, tgetent): Use ptrdiff_t, not int, for sizes.
16082 (gobble_line): Check for size-calculation overflow.
16083
16084 * minibuf.c (Fread_buffer):
16085 * lread.c (intern, intern_c_string):
16086 * image.c (xpm_scan) [HAVE_NS && !HAVE_XPM]:
16087 Don't assume string length fits in int.
16088
16089 * keyboard.c (parse_tool_bar_item):
16090 * gtkutil.c (style_changed_cb): Avoid need for strlen.
16091
16092 * font.c: Don't assume string length fits in int.
16093 (font_parse_xlfd, font_parse_fcname, font_unparse_fcname):
16094 Use ptrdiff_t, not int.
16095 (font_intern_prop): Don't assume string length fits in int.
16096 Don't assume integer property fits in fixnum.
16097 * font.h (font_intern_prop): 2nd arg is now ptrdiff_t, not int.
16098
16099 * filelock.c: Fix some buffer overrun and integer overflow issues.
16100 (get_boot_time): Don't assume gzip command string fits in 100 bytes.
16101 Reformulate so as not to need the command string.
16102 Invoke gzip -cd rather than gunzip, as it's more portable.
16103 (lock_info_type, lock_file_1, lock_file):
16104 Don't assume pid_t and time_t fit in unsigned long.
16105 (LOCK_PID_MAX): Remove; we now use more-reliable bounds.
16106 (current_lock_owner): Prefer signed type for sizes.
16107 Use memcpy, not strncpy, where memcpy is what is really wanted.
16108 Don't assume (via atoi) that time_t and pid_t fit in int.
16109 Check for time_t and/or pid_t out of range, e.g., via a network share.
16110 Don't alloca where an auto var works fine.
16111
16112 * fileio.c: Fix some integer overflow issues.
16113 (file_name_as_directory, Fexpand_file_name, Fsubstitute_in_file_name):
16114 Don't assume string length fits in int.
16115 (directory_file_name): Don't assume string length fits in long.
16116 (make_temp_name): Don't assume pid fits in int, or that its print
16117 length is less than 20.
16118
16119 * data.c (Fsubr_name): Rewrite to avoid a strlen call.
16120
16121 * coding.c (make_subsidiaries): Don't assume string length fits in int.
16122
16123 * callproc.c (child_setup): Rewrite to avoid two strlen calls.
16124
16125 * process.c (Fformat_network_address): Use EMACS_INT, not EMACS_UINT.
16126 We prefer signed integers, even for size calculations.
16127
16128 * emacs.c: Don't assume string length fits in 'int'.
16129 (DEFINE_DUMMY_FUNCTION, sort_args): Use ptrdiff_t, not int.
16130 (main): Don't invoke strlen when not needed.
16131
16132 * dbusbind.c (XD_ERROR): Don't arbitrarily truncate string.
16133 (XD_DEBUG_MESSAGE): Don't waste a byte.
16134
16135 * callproc.c (getenv_internal_1, getenv_internal)
16136 (Fgetenv_internal):
16137 * buffer.c (init_buffer): Don't assume string length fits in 'int'.
16138
16139 * lread.c (invalid_syntax): Omit length argument.
16140 All uses changed. This doesn't fix a bug, but it simplifies the
16141 code away from its former Hollerith-constant appearance, and it's
16142 one less 'int' to worry about when looking at integer-overflow issues.
16143 (string_to_number): Simplify 2011-04-26 change by invoking xsignal1.
16144
16145 * lisp.h (DEFUN): Remove bogus use of sizeof (struct Lisp_Subr).
16146 This didn't break anything, but it didn't help either.
16147 It's confusing to put a bogus integer in a place where the actual
16148 value does not matter.
16149 (LIST_END_P): Remove unused macro and its bogus comment.
16150 (make_fixnum_or_float): Remove unnecessary cast to EMACS_INT.
16151
16152 * lisp.h (union Lisp_Object.i): EMACS_INT, not EMACS_UINT.
16153 This is for consistency with the ordinary, non-USE_LISP_UNION_TYPE,
16154 implementation.
16155 (struct Lisp_Bool_Vector.size): EMACS_INT, not EMACS_UINT.
16156 We prefer signed types, and the value cannot exceed the EMACS_INT
16157 range anyway (because otherwise the length would not be representable).
16158 (XSET) [USE_LISP_UNION_TYPE]: Use uintptr_t and intptr_t,
16159 not EMACS_UINT and EMACS_INT, when converting pointer to integer.
16160 This avoids a GCC warning when WIDE_EMACS_INT.
16161
16162 * indent.c (sane_tab_width): New function.
16163 (current_column, scan_for_column, Findent_to, position_indentation)
16164 (compute_motion): Use it. This is just for clarity.
16165 (Fcompute_motion): Don't assume hscroll and tab offset fit in int.
16166
16167 * image.c (xbm_image_p): Don't assume stated width, height fit in int.
16168
16169 * lisp.h (lint_assume): New macro.
16170 * composite.c (composition_gstring_put_cache):
16171 * ftfont.c (ftfont_shape_by_flt): Use it to pacify GCC 4.6.0.
16172
16173 * editfns.c, insdel.c:
16174 Omit unnecessary forward decls, to simplify future changes.
16175
16176 * ftfont.c (ftfont_shape_by_flt): Use signed integers for lengths.
16177
16178 * font.c (Ffont_shape_gstring): Don't assume glyph len fits in 'int'.
16179
16180 * fns.c (Ffillarray): Don't assume bool vector size fits in 'int'.
16181 Use much-faster test for byte-length change.
16182 Don't assume string byte-length fits in 'int'.
16183 Check that character arg fits in 'int'.
16184 (mapcar1): Declare byte as byte, for clarity.
16185
16186 * alloc.c (Fmake_bool_vector): Avoid unnecessary multiplication.
16187
16188 * fns.c (concat): Catch string overflow earlier.
16189 Do not rely on integer wraparound.
16190
16191 * dispextern.h (struct it.overlay_strings_charpos)
16192 (struct it.selective): Now EMACS_INT, not int.
16193 * xdisp.c (forward_to_next_line_start)
16194 (back_to_previous_visible_line_start)
16195 (reseat_at_next_visible_line_start, next_element_from_buffer):
16196 Don't arbitrarily truncate the value of 'selective' to int.
16197
16198 * xdisp.c (init_iterator): Use XINT, not XFASTINT; it might be < 0.
16199
16200 * composite.c: Don't truncate sizes to 'int'.
16201 (composition_gstring_p, composition_reseat_it)
16202 (composition_adjust_point): Use EMACS_INT, not int.
16203 (get_composition_id, composition_gstring_put_cache): Use EMACS_INT,
16204 not EMACS_UINT, for indexes.
16205
16206 * category.h (CATEGORY_SET_P): Remove unnecessary cast to EMACS_INT.
16207
16208 * buffer.c: Include <verify.h>.
16209 (struct sortvec.priority, struct sortstr.priority):
16210 Now EMACS_INT, not int.
16211 (compare_overlays, cmp_for_strings): Avoid subtraction overflow.
16212 (struct sortstr.size, record_overlay_string)
16213 (struct sortstrlist.size, struct sortlist.used):
16214 Don't truncate size to int.
16215 (record_overlay_string): Check for size-calculation overflow.
16216 (init_buffer_once): Check at compile-time, not run-time.
16217
16218 2011-06-22 Jim Meyering <meyering@redhat.com>
16219
16220 Don't leak an XBM-image-sized buffer
16221 * image.c (xbm_load): Free the image buffer after using it.
16222
16223 2011-06-21 Paul Eggert <eggert@cs.ucla.edu>
16224
16225 Port to Sun C.
16226 * composite.c (find_automatic_composition): Omit needless 'return 0;'
16227 that Sun C diagnosed.
16228 * fns.c (secure_hash): Fix pointer signedness issue.
16229 * intervals.c (static_offset_intervals): New function.
16230 (offset_intervals): Use it.
16231
16232 2011-06-21 Leo Liu <sdl.web@gmail.com>
16233
16234 * deps.mk (fns.o):
16235 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha256.h and
16236 sha512.h.
16237
16238 * fns.c (secure_hash): Rename from crypto_hash_function and change
16239 the first arg to accept symbols.
16240 (Fsecure_hash): New primitive.
16241 (syms_of_fns): New symbols.
16242
16243 2011-06-20 Deniz Dogan <deniz@dogan.se>
16244
16245 * process.c (Fset_process_buffer): Clarify return value in
16246 docstring.
16247
16248 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
16249
16250 * dispnew.c (add_window_display_history): Use BVAR.
16251
16252 * xdisp.c (debug_method_add): Use BVAR.
16253 (check_window_end, dump_glyph_matrix, dump_glyph)
16254 (dump_glyph_row, dump_glyph_string): Convert arglist to ANSI C.
16255
16256 * xfaces.c (check_lface_attrs, check_lface, dump_realized_face):
16257 Likewise.
16258
16259 * xfns.c (Fx_create_frame, x_create_tip_frame): Delay image cache
16260 check till after the cache is created in init_frame_faces.
16261
16262 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
16263
16264 * fns.c (Fsafe_length): Yet another int/Lisp_Object mixup.
16265
16266 2011-06-16 Paul Eggert <eggert@cs.ucla.edu>
16267
16268 * lisp.h: Include <limits.h>, for INT_MAX, LONG_MAX, LLONG_MAX.
16269 Without this, prin1 mishandles Lisp_Misc_Save_Value printing on
16270 hosts with pre-C99 libraries, because pD is wrongly defined to "t".
16271
16272 Improve buffer-overflow checking (Bug#8873).
16273 * fileio.c (Finsert_file_contents):
16274 * insdel.c (insert_from_buffer_1, replace_range, replace_range_2):
16275 Remove the old (too-loose) buffer overflow checks.
16276 They weren't needed, since make_gap checks for buffer overflow.
16277 * insdel.c (make_gap_larger): Catch buffer overflows that were missed.
16278 The old code merely checked for Emacs fixnum overflow, and relied
16279 on undefined (wraparound) behavior. The new code avoids undefined
16280 behavior, and also checks for ptrdiff_t and/or size_t overflow.
16281
16282 * editfns.c (Finsert_char): Don't dump core with very negative counts.
16283 Tune. Don't use wider integers than needed. Don't use alloca.
16284 Use a bigger 'string' buffer. Rewrite to avoid 'n > 0' test.
16285
16286 * insdel.c (replace_range): Fix buf overflow when insbytes < outgoing.
16287
16288 * insdel.c, lisp.h (buffer_overflow): New function.
16289 (insert_from_buffer_1, replace_range, replace_range_2):
16290 * insdel.c (make_gap_larger):
16291 * editfns.c (Finsert_char):
16292 * fileio.c (Finsert_file_contents): Use it, to normalize wording.
16293
16294 * buffer.h (BUF_BYTES_MAX): Cast to ptrdiff_t so that it's signed.
16295
16296 2011-06-15 Paul Eggert <eggert@cs.ucla.edu>
16297
16298 Integer overflow and signedness fixes (Bug#8873, Bug#8828).
16299
16300 * ccl.c (ASCENDING_ORDER): New macro, to work around GCC bug 43772.
16301 (GET_CCL_RANGE, IN_INT_RANGE): Use it.
16302
16303 * fileio.c: Don't assume EMACS_INT fits in off_t.
16304 (emacs_lseek): New static function.
16305 (Finsert_file_contents, Fwrite_region): Use it.
16306 Use SEEK_SET, SEEK_CUR, SEEK_END as appropriate.
16307
16308 * fns.c (Fload_average): Don't assume 100 * load average fits in int.
16309
16310 * fns.c: Don't overflow int when computing a list length.
16311 * fns.c (QUIT_COUNT_HEURISTIC): New constant.
16312 (Flength, Fsafe_length): Use EMACS_INT, not int, to avoid unwanted
16313 truncation on 64-bit hosts. Check for QUIT every
16314 QUIT_COUNT_HEURISTIC entries rather than every other entry; that's
16315 faster and is responsive enough.
16316 (Flength): Report an error instead of overflowing an integer.
16317 (Fsafe_length): Return a float if the value is not representable
16318 as a fixnum. This shouldn't happen except in contrived situations.
16319 (Fnthcdr, Fsort): Don't assume list length fits in int.
16320 (Fcopy_sequence): Don't assume vector length fits in int.
16321
16322 * alloc.c: Check that resized vectors' lengths fit in fixnums.
16323 (header_size, word_size): New constants.
16324 (allocate_vectorlike): Don't check size overflow here.
16325 (allocate_vector): Check it here instead, since this is the only
16326 caller of allocate_vectorlike that could cause overflow.
16327 Check that the new vector's length is representable as a fixnum.
16328
16329 * fns.c (next_almost_prime): Don't return a multiple of 3 or 5.
16330 The previous code was bogus. For example, next_almost_prime (32)
16331 returned 39, which is undesirable as it is a multiple of 3; and
16332 next_almost_prime (24) returned 25, which is a multiple of 5 so
16333 why was the code bothering to check for multiples of 7?
16334
16335 * bytecode.c (exec_byte_code): Use ptrdiff_t, not int, for vector length.
16336
16337 * eval.c, doprnt.c (SIZE_MAX): Remove; inttypes.h defines this now.
16338
16339 Variadic C functions now count arguments with ptrdiff_t.
16340 This partly undoes my 2011-03-30 change, which replaced int with size_t.
16341 Back then I didn't know that the Emacs coding style prefers signed int.
16342 Also, in the meantime I found a few more instances where arguments
16343 were being counted with int, which may truncate counts on 64-bit
16344 machines, or EMACS_INT, which may be unnecessarily wide.
16345 * lisp.h (struct Lisp_Subr.function.aMANY)
16346 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call):
16347 Arg counts are now ptrdiff_t, not size_t.
16348 All variadic functions and their callers changed accordingly.
16349 (struct gcpro.nvars): Now size_t, not size_t. All uses changed.
16350 * bytecode.c (exec_byte_code): Check maxdepth for overflow,
16351 to avoid potential buffer overrun. Don't assume arg counts fit in 'int'.
16352 * callint.c (Fcall_interactively): Check arg count for overflow,
16353 to avoid potential buffer overrun. Use signed char, not 'int',
16354 for 'varies' array, so that we needn't bother to check its size
16355 calculation for overflow.
16356 * editfns.c (Fformat): Use ptrdiff_t, not EMACS_INT, to count args.
16357 * eval.c (apply_lambda):
16358 * fns.c (Fmapconcat): Use XFASTINT, not XINT, to get args length.
16359 (struct textprop_rec.argnum): Now ptrdiff_t, not int. All uses changed.
16360 (mapconcat): Use ptrdiff_t, not int and EMACS_INT, to count args.
16361
16362 * callint.c (Fcall_interactively): Don't use index var as event count.
16363
16364 * vm-limit.c (check_memory_limits): Fix incorrect extern function decls.
16365 * mem-limits.h (SIZE): Remove; no longer used.
16366
16367 * xterm.c (x_alloc_nearest_color_1): Prefer int to long when int works.
16368
16369 Remove unnecessary casts.
16370 * xterm.c (x_term_init):
16371 * xfns.c (x_set_border_pixel):
16372 * widget.c (create_frame_gcs): Remove casts to unsigned long etc.
16373 These aren't needed now that we assume ANSI C.
16374
16375 * sound.c (Fplay_sound_internal): Remove cast to unsigned long.
16376 It's more likely to cause problems (due to unsigned overflow)
16377 than to cure them.
16378
16379 * dired.c (Ffile_attributes): Don't use 32-bit hack on 64-bit hosts.
16380
16381 * unexelf.c (unexec): Don't assume BSS addr fits in unsigned.
16382
16383 * xterm.c (handle_one_xevent): Omit unnecessary casts to unsigned.
16384
16385 * keyboard.c (modify_event_symbol): Don't limit alist len to UINT_MAX.
16386
16387 * lisp.h (CHAR_TABLE_SET): Omit now-redundant test.
16388
16389 * lread.c (Fload): Don't compare a possibly-garbage time_t value.
16390
16391 GLYPH_CODE_FACE returns EMACS_INT, not int.
16392 * dispextern.h (merge_faces):
16393 * xfaces.c (merge_faces):
16394 * xdisp.c (get_next_display_element, next_element_from_display_vector):
16395 Don't assume EMACS_INT fits in int.
16396
16397 * character.h (CHAR_VALID_P): Remove unused parameter.
16398 * fontset.c, lisp.h, xdisp.c: All uses changed.
16399
16400 * editfns.c (Ftranslate_region_internal): Omit redundant test.
16401
16402 * fns.c (concat): Minor tuning based on overflow analysis.
16403 This doesn't fix any bugs. Use int to hold character, instead
16404 of constantly refetching from Emacs object. Use XFASTINT, not
16405 XINT, for value known to be a character. Don't bother comparing
16406 a single byte to 0400, as it's always less.
16407
16408 * floatfns.c (Fexpt):
16409 * fileio.c (make_temp_name): Omit unnecessary cast to unsigned.
16410
16411 * editfns.c (Ftranslate_region_internal): Use int, not EMACS_INT
16412 for characters.
16413
16414 * doc.c (get_doc_string): Omit (unsigned)c that mishandled negatives.
16415
16416 * data.c (Faset): If ARRAY is a string, check that NEWELT is a char.
16417 Without this fix, on a 64-bit host (aset S 0 4294967386) would
16418 incorrectly succeed when S was a string, because 4294967386 was
16419 truncated before it was used.
16420
16421 * chartab.c (Fchar_table_range): Use CHARACTERP to check range.
16422 Otherwise, an out-of-range integer could cause undefined behavior
16423 on a 64-bit host.
16424
16425 * composite.c: Use int, not EMACS_INT, for characters.
16426 (fill_gstring_body, composition_compute_stop_pos): Use int, not
16427 EMACS_INT, for values that are known to be in character range.
16428 This doesn't fix any bugs but is the usual style inside Emacs and
16429 may generate better code on 32-bit machines.
16430
16431 Make sure a 64-bit char is never passed to ENCODE_CHAR.
16432 This is for reasons similar to the recent CHAR_STRING fix.
16433 * charset.c (Fencode_char): Check that character arg is actually
16434 a character. Pass an int to ENCODE_CHAR.
16435 * charset.h (ENCODE_CHAR): Verify that the character argument is no
16436 wider than 'int', as a compile-time check to prevent future regressions
16437 in this area.
16438
16439 * character.c (char_string): Remove unnecessary casts.
16440
16441 Make sure a 64-bit char is never passed to CHAR_STRING.
16442 Otherwise, CHAR_STRING would do the wrong thing on a 64-bit platform,
16443 by silently ignoring the top 32 bits, allowing some values
16444 that were far too large to be valid characters.
16445 * character.h: Include <verify.h>.
16446 (CHAR_STRING, CHAR_STRING_ADVANCE): Verify that the character
16447 arguments are no wider than unsigned, as a compile-time check
16448 to prevent future regressions in this area.
16449 * data.c (Faset):
16450 * editfns.c (Fchar_to_string, general_insert_function, Finsert_char)
16451 (Fsubst_char_in_region):
16452 * fns.c (concat):
16453 * xdisp.c (decode_mode_spec_coding):
16454 Adjust to CHAR_STRING's new requirement.
16455 * editfns.c (Finsert_char, Fsubst_char_in_region):
16456 * fns.c (concat): Check that character args are actually
16457 characters. Without this test, these functions did the wrong
16458 thing with wildly out-of-range values on 64-bit hosts.
16459
16460 Remove incorrect casts to 'unsigned' that lose info on 64-bit hosts.
16461 These casts should not be needed on 32-bit hosts, either.
16462 * keyboard.c (read_char):
16463 * lread.c (Fload): Remove casts to unsigned.
16464
16465 * lisp.h (UNSIGNED_CMP): New macro.
16466 This fixes comparison bugs on 64-bit hosts.
16467 (ASCII_CHAR_P): Use it.
16468 * casefiddle.c (casify_object):
16469 * character.h (ASCII_BYTE_P, CHAR_VALID_P)
16470 (SINGLE_BYTE_CHAR_P, CHAR_STRING):
16471 * composite.h (COMPOSITION_ENCODE_RULE_VALID):
16472 * dispextern.h (FACE_FROM_ID):
16473 * keyboard.c (read_char): Use UNSIGNED_CMP.
16474
16475 * xmenu.c (dialog_selection_callback) [!USE_GTK]: Cast to intptr_t,
16476 not to EMACS_INT, to avoid GCC warning.
16477
16478 * xfns.c (x_set_scroll_bar_default_width): Remove unused 'int' locals.
16479
16480 * buffer.h (PTR_BYTE_POS, BUF_PTR_BYTE_POS): Remove harmful cast.
16481 The cast incorrectly truncated 64-bit byte offsets to 32 bits, and
16482 isn't needed on 32-bit machines.
16483
16484 * buffer.c (Fgenerate_new_buffer_name):
16485 Use EMACS_INT for count, not int.
16486 (advance_to_char_boundary): Return EMACS_INT, not int.
16487
16488 * data.c (Qcompiled_function): Now static.
16489
16490 * window.c (window_body_lines): Now static.
16491
16492 * image.c (gif_load): Rename local to avoid shadowing.
16493
16494 * lisp.h (SAFE_ALLOCA_LISP): Check for integer overflow.
16495 (struct Lisp_Save_Value): Use ptrdiff_t, not int, for 'integer' member.
16496 * alloc.c (make_save_value): Integer argument is now of type
16497 ptrdiff_t, not int.
16498 (mark_object): Use ptrdiff_t, not int.
16499 * lisp.h (pD): New macro.
16500 * print.c (print_object): Use it.
16501
16502 * alloc.c: Use EMACS_INT, not int, to count objects.
16503 (total_conses, total_markers, total_symbols, total_vector_size)
16504 (total_free_conses, total_free_markers, total_free_symbols)
16505 (total_free_floats, total_floats, total_free_intervals)
16506 (total_intervals, total_strings, total_free_strings):
16507 Now EMACS_INT, not int. All uses changed.
16508 (Fgarbage_collect): Compute overall total using a double, so that
16509 integer overflow is less likely to be a problem. Check for overflow
16510 when converting back to an integer.
16511 (n_interval_blocks, n_string_blocks, n_float_blocks, n_cons_blocks)
16512 (n_vectors, n_symbol_blocks, n_marker_blocks): Remove.
16513 These were 'int' variables that could overflow on 64-bit hosts;
16514 they were never used, so remove them instead of repairing them.
16515 (nzombies, ngcs, max_live, max_zombies): Now EMACS_INT, not 'int'.
16516 (inhibit_garbage_collection): Set gc_cons_threshold to max value.
16517 Previously, this ceilinged at INT_MAX, but that doesn't work on
16518 64-bit machines.
16519 (allocate_pseudovector): Don't use EMACS_INT when int would do.
16520
16521 * alloc.c (Fmake_bool_vector): Don't assume vector size fits in int.
16522 (allocate_vectorlike): Check for ptrdiff_t overflow.
16523 (mark_vectorlike, mark_char_table, mark_object): Avoid EMACS_UINT
16524 when a (possibly-narrower) signed value would do just as well.
16525 We prefer using signed arithmetic, to avoid comparison confusion.
16526
16527 * alloc.c: Catch some string size overflows that we were missing.
16528 (XMALLOC_OVERRUN_CHECK_SIZE) [!XMALLOC_OVERRUN_CHECK]: Define to 0,
16529 for convenience in STRING_BYTES_MAX.
16530 (STRING_BYTES_MAX): New macro, superseding the old one in lisp.h.
16531 The definition here is exact; the one in lisp.h was approximate.
16532 (allocate_string_data): Check for string overflow. This catches
16533 some instances we weren't catching before. Also, it catches
16534 size_t overflow on (unusual) hosts where SIZE_MAX <= min
16535 (PTRDIFF_MAX, MOST_POSITIVE_FIXNUM), e.g., when size_t is 32 bits
16536 and ptrdiff_t and EMACS_INT are both 64 bits.
16537
16538 * character.c, coding.c, doprnt.c, editfns.c, eval.c:
16539 All uses of STRING_BYTES_MAX replaced by STRING_BYTES_BOUND.
16540 * lisp.h (STRING_BYTES_BOUND): Rename from STRING_BYTES_MAX.
16541
16542 * character.c (string_escape_byte8): Fix nbytes/nchars typo.
16543
16544 * alloc.c (Fmake_string): Check for out-of-range init.
16545
16546 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
16547
16548 * eval.c (Fdefvaralias): Also mark the target as variable-special-p.
16549
16550 2011-06-14 Jan Djärv <jan.h.d@swipnet.se>
16551
16552 * xfns.c (x_set_scroll_bar_default_width): Remove argument to
16553 xg_get_default_scrollbar_width.
16554
16555 * gtkutil.c: Include emacsgtkfixed.h if HAVE_GTK3.
16556 (int_gtk_range_get_value): Move to the scroll bar part of the file.
16557 (style_changed_cb): Call update_theme_scrollbar_width and call
16558 x_set_scroll_bar_default_width and xg_frame_set_char_size for
16559 all frames (Bug#8505).
16560 (xg_create_frame_widgets): Call emacs_fixed_new if HAVE_GTK3 (Bug#8505).
16561 Call gtk_window_set_resizable if HAVE_GTK3.
16562 (x_wm_set_size_hint): Call emacs_fixed_set_min_size with min width
16563 and height if HAVE_GTK3 (Bug#8505).
16564 (scroll_bar_width_for_theme): New variable.
16565 (update_theme_scrollbar_width): New function.
16566 (xg_get_default_scrollbar_width): Move code to
16567 update_theme_scrollbar_width, just return scroll_bar_width_for_theme.
16568 (xg_initialize): Call update_theme_scrollbar_width.
16569
16570 * gtkutil.h (xg_get_default_scrollbar_width): Remove argument.
16571
16572 * emacsgtkfixed.c, emacsgtkfixed.h: New files.
16573
16574 2011-06-12 Martin Rudalics <rudalics@gmx.at>
16575
16576 * frame.c (make_frame): Call other_buffer_safely instead of
16577 other_buffer.
16578
16579 * window.c (temp_output_buffer_show): Call display_buffer with
16580 second argument Vtemp_buffer_show_specifiers and reset latter
16581 immediately after the call.
16582 (Vtemp_buffer_show_specifiers): New variable.
16583 (auto_window_vscroll_p, next_screen_context_lines)
16584 (Vscroll_preserve_screen_position): Remove leading asterisks from
16585 doc-strings.
16586
16587 2011-06-12 Paul Eggert <eggert@cs.ucla.edu>
16588
16589 Fix minor problems found by GCC 4.6.0 static checking.
16590 * buffer.c (Qclone_number): Remove for now, as it's unused.
16591 (record_buffer, Funrecord_buffer): Rename local to avoid shadowing.
16592 (record_buffer): Remove unused local.
16593 * frame.c (other_visible_frames, frame_buffer_list): Now static.
16594 (set_frame_buffer_list): Remove; unused.
16595 * frame.h (other_visible_frames): Remove decl.
16596 * keyboard.h (menu_items_inuse): Declare only if USE_GTK || USE_MOTIF.
16597 * lisp.h (frame_buffer_list, set_frame_buffer_list): Remove decls.
16598 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor): Declare only
16599 if HAVE_GPM.
16600 * menu.c (menu_items_inuse): Now static unless USE_GTK || USE_MOTIF.
16601 * process.c (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
16602 Define only if HAVE_GPM.
16603 * widget.c (EmacsFrameResize, emacsFrameClassRec): Now static.
16604 (update_hints_inhibit): Remove; never set. All uses removed.
16605 * widgetprv.h (emacsFrameClassRec): Remove decl.
16606 * window.c (delete_deletable_window): Now returns void, since it
16607 wasn't returning anything.
16608 (compare_window_configurations): Remove unused locals.
16609 * xfns.c (x_set_scroll_bar_default_width): Remove unused locals.
16610 * xmenu.c (x_menu_set_in_use): Define only if USE_GTK || USE_MOTIF.
16611 (dialog_selection_callback) [!USE_GTK]: Prefer intptr_t for integers
16612 the same widths as pointers. This follows up on the 2011-05-06 patch.
16613 * xterm.c (x_alloc_lighter_color_for_widget): Define only if USE_LUCID.
16614 * xterm.h: Likewise.
16615 (x_menu_set_in_use): Declare only if USE_GTK || USE_MOTIF.
16616
16617 2011-06-12 Juanma Barranquero <lekktu@gmail.com>
16618
16619 * makefile.w32-in: Update dependencies.
16620 (LISP_H): Add lib/intprops.h.
16621
16622 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
16623
16624 * image.c (gif_load): Add animation frame delay to the metadata.
16625 (syms_of_image): Use DEFSYM. New symbol `delay'.
16626
16627 2011-06-11 Martin Rudalics <rudalics@gmx.at>
16628
16629 * window.c (delete_deletable_window): Re-add.
16630 (Fset_window_configuration): Rewrite to handle dead buffers and
16631 consequently deletable windows.
16632 (window_tree, Fwindow_tree): Remove. Supply functionality in
16633 window.el.
16634 (compare_window_configurations): Simplify code.
16635
16636 2011-06-11 Andreas Schwab <schwab@linux-m68k.org>
16637
16638 * image.c (imagemagick_load_image): Fix type mismatch.
16639 (Fimagemagick_types): Likewise.
16640
16641 * window.h (replace_buffer_in_windows): Declare.
16642
16643 2011-06-11 Martin Rudalics <rudalics@gmx.at>
16644
16645 * buffer.c: New Lisp objects Qbuffer_list_update_hook and
16646 Qclone_number. Remove external declaration of Qdelete_window.
16647 (Fbuffer_list): Rewrite doc-string. Minor restructuring of
16648 code.
16649 (Fget_buffer_create, Fmake_indirect_buffer, Frename_buffer):
16650 Run Qbuffer_list_update_hook if allowed.
16651 (Fother_buffer): Rewrite doc-string. Major rewrite for new
16652 buffer list implementation.
16653 (other_buffer_safely): New function.
16654 (Fkill_buffer): Replace call to replace_buffer_in_all_windows by
16655 calls to replace_buffer_in_windows and
16656 replace_buffer_in_windows_safely. Run Qbuffer_list_update_hook
16657 if allowed.
16658 (record_buffer): Inhibit quitting and rewrite using quittable
16659 functions. Run Qbuffer_list_update_hook if allowed.
16660 (Frecord_buffer, Funrecord_buffer): New functions.
16661 (switch_to_buffer_1, Fswitch_to_buffer): Remove.
16662 Move switch-to-buffer to window.el.
16663 (bury-buffer): Move to window.el.
16664 (Vbuffer_list_update_hook): New variable.
16665
16666 * lisp.h (other_buffer_safely): Add prototype in buffer.c
16667 section.
16668
16669 * window.h (resize_frame_windows): Move up in code.
16670 (Fwindow_frame): Remove EXFUN.
16671 (replace_buffer_in_all_windows): Remove prototype.
16672 (replace_buffer_in_windows_safely): Add prototype.
16673
16674 * window.c: Declare Qdelete_window static again. Move down
16675 declaration of select_count.
16676 (Fnext_window, Fprevious_window): Rewrite doc-strings.
16677 (Fother_window): Move to window.el.
16678 (window_loop): Remove DELETE_BUFFER_WINDOWS and UNSHOW_BUFFER
16679 cases. Add REPLACE_BUFFER_IN_WINDOWS_SAFELY case.
16680 (Fdelete_windows_on, Freplace_buffer_in_windows): Move to
16681 window.el.
16682 (replace_buffer_in_windows): Implement by calling
16683 Qreplace_buffer_in_windows.
16684 (replace_buffer_in_all_windows): Remove with some functionality
16685 moved into replace_buffer_in_windows_safely.
16686 (replace_buffer_in_windows_safely): New function.
16687 (select_window_norecord, select_frame_norecord): Move in front
16688 of run_window_configuration_change_hook. Remove now obsolete
16689 declarations.
16690 (Fset_window_buffer): Rewrite doc-string.
16691 Call Qrecord_window_buffer.
16692 (keys_of_window): Move binding for other-window to window.el.
16693
16694 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
16695
16696 * dispextern.h (struct image): Replace data member, whose int_val
16697 and ptr_val fields were not used by anything, with a single
16698 lisp_val object.
16699
16700 * image.c (Fimage_metadata, make_image, mark_image, tiff_load)
16701 (gif_clear_image, gif_load, imagemagick_load_image)
16702 (gs_clear_image, gs_load): Callers changed.
16703
16704 2011-06-10 Paul Eggert <eggert@cs.ucla.edu>
16705
16706 * buffer.h: Include <time.h>, for time_t.
16707 Needed to build on FreeBSD 8.2. Problem reported by Herbert J. Skuhra.
16708
16709 Fix minor problems found by static checking.
16710
16711 * image.c (PixelGetMagickColor): Declare if ImageMagick headers don't.
16712
16713 Make identifiers static if they are not used in other modules.
16714 * data.c (Qcompiled_function, Qframe, Qvector):
16715 * image.c (QimageMagick, Qsvg):
16716 * minibuf.c (Qmetadata):
16717 * window.c (resize_window_check, resize_root_window): Now static.
16718 * window.h (resize_window_check, resize_root_window): Remove decls.
16719
16720 * window.c (window_deletion_count, delete_deletable_window):
16721 Remove; unused.
16722 (window_body_lines): Now static.
16723 (Fdelete_other_windows_internal): Mark vars as initialized.
16724 Make sure 'resize_failed' is initialized.
16725 (run_window_configuration_change_hook): Rename local to avoid shadowing.
16726 (resize_window_apply): Remove unused local.
16727 * window.h (delete_deletable_window): Remove decl.
16728
16729 * image.c (gif_load, svg_load_image): Rename locals to avoid shadowing.
16730 (imagemagick_load_image): Fix pointer signedness problem by changing
16731 last arg from unsigned char * to char *. All uses changed.
16732 Also, fix a local for similar reasons.
16733 Remove unused locals. Remove locals to avoid shadowing.
16734 (fn_rsvg_handle_free): Remove; unused.
16735 (svg_load, svg_load_image): Fix pointer signedness problem.
16736 (imagemagick_load_image): Don't use garbage pointer image_wand.
16737
16738 * ftfont.c (ftfont_get_metrics, ftfont_drive_otf): Remove unused locals.
16739
16740 2011-06-10 Chong Yidong <cyd@stupidchicken.com>
16741
16742 * image.c (gif_load): Fix omitted cast error introduced by
16743 2011-06-06 change.
16744
16745 2011-06-10 Martin Rudalics <rudalics@gmx.at>
16746
16747 * window.h (resize_proportionally, orig_total_lines)
16748 (orig_top_line): Remove from window structure.
16749 (set_window_height, set_window_width, change_window_heights)
16750 (Fdelete_window): Remove prototypes.
16751 (resize_frame_windows): Remove duplicate declaration.
16752
16753 2011-06-10 Eli Zaretskii <eliz@gnu.org>
16754
16755 * window.h (resize_frame_windows, resize_window_check)
16756 (delete_deletable_window, resize_root_window)
16757 (resize_frame_windows): Declare prototypes.
16758
16759 * window.c (resize_window_apply): Make definition be "static" to
16760 match the prototype.
16761
16762 2011-06-10 Martin Rudalics <rudalics@gmx.at>
16763
16764 * window.c: Remove declarations of Qwindow_size_fixed,
16765 window_min_size_1, window_min_size_2, window_min_size,
16766 size_window, window_fixed_size_p, enlarge_window, delete_window.
16767 Remove static from declaration of Qdelete_window, it's
16768 temporarily needed by Fbury_buffer.
16769 (replace_window): Don't assign orig_top_line and
16770 orig_total_lines.
16771 (Fdelete_window, delete_window): Remove. Window deletion is
16772 handled by window.el.
16773 (window_loop): Remove DELETE_OTHER_WINDOWS case.
16774 Replace Fdelete_window calls with calls to Qdelete_window.
16775 (Fdelete_other_windows): Remove. Deleting other windows is
16776 handled by window.el.
16777 (window_fixed_size_p): Remove. Fixed-sizeness of windows is
16778 handled in window.el.
16779 (window_min_size_2, window_min_size_1, window_min_size): Remove.
16780 Window minimum sizes are handled in window.el.
16781 (shrink_windows, size_window, set_window_height)
16782 (set_window_width, change_window_heights, window_height)
16783 (window_width, CURBEG, CURSIZE, enlarge_window)
16784 (adjust_window_trailing_edge, Fadjust_window_trailing_edge)
16785 (Fenlarge_window, Fshrink_window): Remove. Window resizing is
16786 handled in window.el.
16787 (make_dummy_parent): Rename to make_parent_window and give it a
16788 second argument horflag.
16789 (make_window): Don't set resize_proportionally any more.
16790 (Fsplit_window): Remove. Windows are split in window.el.
16791 (save_restore_action, save_restore_orig_size)
16792 (shrink_window_lowest_first, save_restore_orig_size): Remove.
16793 Resize mini windows in window.el.
16794 (grow_mini_window, shrink_mini_window): Implement by calling
16795 Qresize_root_window_vertically, resize_window_check and
16796 resize_window_apply.
16797 (saved_window, Fset_window_configuration, save_window_save):
16798 Do not handle orig_top_line, orig_total_lines, and
16799 resize_proportionally.
16800 (window_min_height, window_min_width): Move to window.el.
16801 (keys_of_window): Move bindings for delete-other-windows,
16802 split-window, delete-window and enlarge-window to window.el.
16803
16804 * buffer.c: Temporarily extern Qdelete_window.
16805 (Fbury_buffer): Temporarily call Qdelete_window instead of
16806 Fdelete_window (Fbury_buffer will move to window.el soon).
16807
16808 * frame.c (set_menu_bar_lines_1): Remove code handling
16809 orig_top_line and orig_total_lines.
16810
16811 * dispnew.c (adjust_frame_glyphs_initially): Don't use
16812 set_window_height but set heights directly.
16813 (change_frame_size_1): Use resize_frame_windows.
16814
16815 * xdisp.c (init_xdisp): Don't use set_window_height but set
16816 heights directly.
16817
16818 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines):
16819 Use resize_frame_windows instead of change_window_heights and run
16820 run_window_configuration_change_hook.
16821
16822 * w32fns.c (x_set_tool_bar_lines): Use resize_frame_windows
16823 instead of change_window_heights and run
16824 run_window_configuration_change_hook.
16825
16826 2011-06-09 Martin Rudalics <rudalics@gmx.at>
16827
16828 * window.c (replace_window): Rename second argument REPLACEMENT to
16829 NEW. New third argument SETFLAG. Rewrite.
16830 (delete_window, make_dummy_parent): Call replace_window with
16831 third argument 1.
16832 (window_list_1): Move down in code.
16833 (run_window_configuration_change_hook): Move set_buffer part
16834 before select_frame_norecord part in order to unwind correctly.
16835 Rename count1 to count.
16836 (recombine_windows, delete_deletable_window, resize_root_window)
16837 (Fdelete_other_windows_internal)
16838 (Frun_window_configuration_change_hook, make_parent_window)
16839 (resize_window_check, resize_window_apply, Fresize_window_apply)
16840 (resize_frame_windows, Fsplit_window_internal)
16841 (Fdelete_window_internal, Fresize_mini_window_internal):
16842 New functions.
16843 (syms_of_window): New variables Vwindow_splits and Vwindow_nest.
16844
16845 2011-06-08 Martin Rudalics <rudalics@gmx.at>
16846
16847 * window.h (window): Add some new members to window structure -
16848 normal_lines, normal_cols, new_total, new_normal, clone_number,
16849 splits, nest, prev_buffers, next_buffers.
16850 (WINDOW_TOTAL_SIZE): Move here from window.c.
16851 (MIN_SAFE_WINDOW_WIDTH, MIN_SAFE_WINDOW_HEIGHT): Define here.
16852
16853 * window.c (Fwindow_height, Fwindow_width, Fwindow_full_width_p):
16854 Remove.
16855 (make_dummy_parent): Set new members of windows structure.
16856 (make_window): Move down in code. Handle new members of window
16857 structure.
16858 (Fwindow_clone_number, Fwindow_splits, Fset_window_splits)
16859 (Fwindow_nest, Fset_window_nest, Fwindow_new_total)
16860 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_prev_buffers)
16861 (Fset_window_prev_buffers, Fwindow_next_buffers)
16862 (Fset_window_next_buffers, Fset_window_clone_number):
16863 New functions.
16864 (Fwindow_hscroll, Fwindow_at, Fwindow_point, Fwindow_start)
16865 (Fwindow_end, Fwindow_line_height, Fset_window_dedicated_p):
16866 Doc-string fixes.
16867 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter):
16868 Argument WINDOW can be now internal window too.
16869 (Fwindow_use_time): Move up in code.
16870 (Fget_buffer_window): Rename argument FRAME to ALL-FRAMES.
16871 Rewrite doc-string.
16872 (Fset_window_configuration, saved_window)
16873 (Fcurrent_window_configuration, save_window_save): Handle new
16874 members of window structure.
16875 (WINDOW_TOTAL_SIZE, MIN_SAFE_WINDOW_WIDTH)
16876 (MIN_SAFE_WINDOW_HEIGHT): Move to window.h.
16877 (syms_of_window): New Lisp objects Qrecord_window_buffer,
16878 Qwindow_deletable_p, Qdelete_window, Qreplace_buffer_in_windows,
16879 Qget_mru_window, Qresize_root_window,
16880 Qresize_root_window_vertically, Qsafe, Qabove, Qbelow,
16881 Qauto_buffer_name; staticpro them.
16882
16883 2011-06-07 Martin Rudalics <rudalics@gmx.at>
16884
16885 * window.c (Fwindow_total_size, Fwindow_left_column)
16886 (Fwindow_top_line, window_body_lines, Fwindow_body_size)
16887 (Fwindow_list_1): New functions.
16888 (window_box_text_cols): Replace with window_body_cols.
16889 (Fwindow_width, Fscroll_left, Fscroll_right):
16890 Use window_body_cols instead of window_box_text_cols.
16891 (delete_window, Fset_window_configuration):
16892 Call delete_all_subwindows with window as argument.
16893 (delete_all_subwindows): Take a window as argument and not a
16894 structure. Rewrite.
16895 (window_loop): Remove handling of GET_LRU_WINDOW and
16896 GET_LARGEST_WINDOW.
16897 (Fget_lru_window, Fget_largest_window): Move to window.el.
16898
16899 * window.h: Extern window_body_cols instead of
16900 window_box_text_cols. delete_all_subwindows now takes a
16901 Lisp_Object as argument.
16902
16903 * indent.c (compute_motion, Fcompute_motion):
16904 Use window_body_cols instead of window_box_text_cols.
16905
16906 * frame.c (delete_frame): Call delete_all_subwindows with root
16907 window as argument.
16908
16909 2011-06-07 Daniel Colascione <dan.colascione@gmail.com>
16910
16911 * fns.c (Fputhash): Document return value.
16912
16913 2011-06-06 Chong Yidong <cyd@stupidchicken.com>
16914
16915 * image.c (gif_load): Implement gif89a spec "no disposal" method.
16916
16917 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
16918
16919 Cons<->int and similar integer overflow fixes (Bug#8794).
16920
16921 Check for overflow when converting integer to cons and back.
16922 * charset.c (Fdefine_charset_internal, Fdecode_char):
16923 Use cons_to_unsigned to catch overflow.
16924 (Fencode_char): Use INTEGER_TO_CONS.
16925 * composite.h (LGLYPH_CODE): Use cons_to_unsigned.
16926 (LGLYPH_SET_CODE): Use INTEGER_TO_CONS.
16927 * data.c (long_to_cons, cons_to_long): Remove.
16928 (cons_to_unsigned, cons_to_signed): New functions.
16929 These signal an error for invalid or out-of-range values.
16930 * dired.c (Ffile_attributes): Use INTEGER_TO_CONS.
16931 * fileio.c (Fset_visited_file_modtime): Use CONS_TO_INTEGER.
16932 * font.c (Ffont_variation_glyphs):
16933 * fontset.c (Finternal_char_font): Use INTEGER_TO_CONS.
16934 * lisp.h: Include <intprops.h>.
16935 (INTEGER_TO_CONS, CONS_TO_INTEGER): New macros.
16936 (cons_to_signed, cons_to_unsigned): New decls.
16937 (long_to_cons, cons_to_long): Remove decls.
16938 * undo.c (record_first_change): Use INTEGER_TO_CONS.
16939 (Fprimitive_undo): Use CONS_TO_INTEGER.
16940 * xfns.c (Fx_window_property): Likewise.
16941 * xselect.c: Include <limits.h>.
16942 (x_own_selection, selection_data_to_lisp_data):
16943 Use INTEGER_TO_CONS.
16944 (x_handle_selection_request, x_handle_selection_clear)
16945 (x_get_foreign_selection, Fx_disown_selection_internal)
16946 (Fx_get_atom_name, x_send_client_event): Use CONS_TO_INTEGER.
16947 (lisp_data_to_selection_data): Use cons_to_unsigned.
16948 (x_fill_property_data): Use cons_to_signed.
16949 Report values out of range.
16950
16951 Check for buffer and string overflow more precisely.
16952 * buffer.h (BUF_BYTES_MAX): New macro.
16953 * lisp.h (STRING_BYTES_MAX): New macro.
16954 * alloc.c (Fmake_string):
16955 * character.c (string_escape_byte8):
16956 * coding.c (coding_alloc_by_realloc):
16957 * doprnt.c (doprnt):
16958 * editfns.c (Fformat):
16959 * eval.c (verror):
16960 Use STRING_BYTES_MAX, not MOST_POSITIVE_FIXNUM,
16961 since they may not be the same number.
16962 * editfns.c (Finsert_char):
16963 * fileio.c (Finsert_file_contents):
16964 Likewise for BUF_BYTES_MAX.
16965
16966 * image.c: Use ptrdiff_t, not int, for sizes.
16967 (slurp_file): Switch from int to ptrdiff_t.
16968 All uses changed.
16969 (slurp_file): Check that file size fits in both size_t (for
16970 malloc) and ptrdiff_t (for sanity and safety).
16971
16972 * fileio.c (Fverify_visited_file_modtime): Avoid time overflow
16973 if b->modtime has its maximal value.
16974
16975 * dired.c (Ffile_attributes): Don't assume EMACS_INT has >32 bits.
16976
16977 Don't assume time_t can fit into int.
16978 * buffer.h (struct buffer.modtime): Now time_t, not int.
16979 * fileio.c (Fvisited_file_modtime): No need for time_t cast now.
16980 * undo.c (Fprimitive_undo): Use time_t, not int, for time_t value.
16981
16982 Minor fixes for signed vs unsigned integers.
16983 * character.h (MAYBE_UNIFY_CHAR):
16984 * charset.c (maybe_unify_char):
16985 * keyboard.c (read_char, reorder_modifiers):
16986 XINT -> XFASTINT, since the integer must be nonnegative.
16987 * ftfont.c (ftfont_spec_pattern):
16988 * keymap.c (access_keymap, silly_event_symbol_error):
16989 XUINT -> XFASTINT, since the integer must be nonnegative.
16990 (Fsingle_key_description, preferred_sequence_p): XUINT -> XINT,
16991 since it makes no difference and we prefer signed.
16992 * keyboard.c (record_char): Use XUINT when all the neighbors do.
16993 (access_keymap): NATNUMP -> INTEGERP, since the integer must be
16994 nonnegative.
16995
16996 2011-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
16997
16998 * window.h (Fwindow_frame): Declare.
16999
17000 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
17001
17002 * alloc.c: Simplify handling of large-request failures (Bug#8800).
17003 (SPARE_MEMORY): Always define.
17004 (LARGE_REQUEST): Remove.
17005 (memory_full): Use SPARE_MEMORY rather than LARGE_REQUEST.
17006
17007 2011-06-06 Martin Rudalics <rudalics@gmx.at>
17008
17009 * lisp.h: Move EXFUNS for Fframe_root_window,
17010 Fframe_first_window and Fset_frame_selected_window to window.h.
17011
17012 * window.h: Move EXFUNS for Fframe_root_window,
17013 Fframe_first_window and Fset_frame_selected_window here from
17014 lisp.h.
17015
17016 * frame.c (Fwindow_frame, Fframe_first_window)
17017 (Fframe_root_window, Fframe_selected_window)
17018 (Fset_frame_selected_window): Move to window.c.
17019 (Factive_minibuffer_window): Move to minibuf.c.
17020 (Fother_visible_frames_p): New function.
17021
17022 * minibuf.c (Factive_minibuffer_window): Move here from frame.c.
17023
17024 * window.c (decode_window, decode_any_window): Move up in code.
17025 (Fwindowp, Fwindow_live_p): Rewrite doc-strings.
17026 (inhibit_frame_unsplittable): Remove unused variable.
17027 (Fwindow_buffer): Move up and rewrite doc-string.
17028 (Fwindow_parent, Fwindow_vchild, Fwindow_hchild, Fwindow_next)
17029 (Fwindow_prev): New functions.
17030 (Fwindow_frame): Move here from frame.c. Accept any window as
17031 argument.
17032 (Fframe_root_window, Fframe_first_window)
17033 (Fframe_selected_window): Move here from frame.c. Accept frame
17034 or arbitrary window as argument. Update doc-strings.
17035 (Fminibuffer_window): Move up in code.
17036 (Fwindow_minibuffer_p): Move up in code and simplify.
17037 (Fset_frame_selected_window): Move here from frame.c.
17038 Marginal rewrite.
17039 (Fselected_window, select_window, Fselect_window): Move up in
17040 code. Minor doc-string fixes.
17041
17042 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
17043
17044 * alloc.c (memory_full) [SYSTEM_MALLOC]: Port to MacOS (Bug#8800).
17045 Do not assume that spare memory exists; that assumption is valid
17046 only if SYSTEM_MALLOC.
17047 (LARGE_REQUEST): New macro, so that the issue of large requests
17048 is separated from the issue of spare memory.
17049
17050 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
17051
17052 * editfns.c (Fformat): Correctly handle zero flag with hexadecimal
17053 format. (Bug#8806)
17054
17055 * gtkutil.c (xg_get_default_scrollbar_width): Avoid warning.
17056
17057 * xfns.c (x_set_scroll_bar_default_width): Move declarations
17058 before statements.
17059
17060 2011-06-05 Jan Djärv <jan.h.d@swipnet.se>
17061
17062 * gtkutil.c (xg_get_default_scrollbar_width): New function.
17063
17064 * gtkutil.h: Declare xg_get_default_scrollbar_width.
17065
17066 * xfns.c (x_set_scroll_bar_default_width): If USE_GTK, get
17067 min width by calling x_set_scroll_bar_default_width (Bug#8505).
17068
17069 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
17070
17071 * xdisp.c (single_display_spec_intangible_p): Remove declaration.
17072
17073 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
17074
17075 * xselect.c (x_clipboard_manager_save): Remove redundant arg.
17076 (x_clipboard_manager_save): Add return value.
17077 (x_clipboard_manager_error_1, x_clipboard_manager_error_2):
17078 New error handlers.
17079 (x_clipboard_manager_save_frame, x_clipboard_manager_save_all):
17080 Obey Vx_select_enable_clipboard_manager. Catch errors in
17081 x_clipboard_manager_save (Bug#8779).
17082 (Vx_select_enable_clipboard_manager): New variable.
17083 (x_get_foreign_selection): Reduce scope of x_catch_errors (Bug#8790).
17084
17085 2011-06-04 Dan Nicolaescu <dann@ics.uci.edu>
17086
17087 * emacs.c (main): Warn when starting a GTK emacs in daemon mode.
17088
17089 2011-06-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17090
17091 * fringe.c (update_window_fringes): Don't update overlay arrow bitmap
17092 in the current matrix if keep_current_p is non-zero.
17093
17094 2011-06-04 Eli Zaretskii <eliz@gnu.org>
17095
17096 * bidi.c (bidi_level_of_next_char): Fix last change.
17097
17098 2011-06-03 Eli Zaretskii <eliz@gnu.org>
17099
17100 Support bidi reordering of text covered by display properties.
17101
17102 * bidi.c (bidi_copy_it): Use offsetof instead of emulating it.
17103 (bidi_fetch_char, bidi_fetch_char_advance): New functions.
17104 (bidi_cache_search, bidi_cache_iterator_state)
17105 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
17106 (bidi_level_of_next_char, bidi_move_to_visually_next):
17107 Support character positions inside a run of characters covered by a
17108 display string.
17109 (bidi_paragraph_init, bidi_resolve_explicit_1)
17110 (bidi_level_of_next_char): Call bidi_fetch_char and
17111 bidi_fetch_char_advance instead of FETCH_CHAR and
17112 FETCH_CHAR_ADVANCE.
17113 (bidi_init_it): Initialize new members.
17114 (LRE_CHAR, RLE_CHAR, PDF_CHAR, LRO_CHAR, RLO_CHAR): Remove macro
17115 definitions.
17116 (bidi_explicit_dir_char): Lookup character type in bidi_type_table,
17117 instead of using explicit *_CHAR codes.
17118 (bidi_resolve_explicit, bidi_resolve_weak):
17119 Use FETCH_MULTIBYTE_CHAR instead of FETCH_CHAR, as reordering of
17120 bidirectional text is supported only in multibyte buffers.
17121 (bidi_init_it): Accept additional argument FRAME_WINDOW_P and use
17122 it to initialize the frame_window_p member of struct bidi_it.
17123 (bidi_cache_iterator_state, bidi_resolve_explicit_1)
17124 (bidi_resolve_explicit, bidi_resolve_weak)
17125 (bidi_level_of_next_char, bidi_move_to_visually_next): Abort if
17126 bidi_it->nchars is non-positive.
17127 (bidi_level_of_next_char): Don't try to lookup the cache for the
17128 next/previous character if nothing is cached there yet, or if we
17129 were just reseat()'ed to a new position.
17130
17131 * xdisp.c (set_cursor_from_row): Set start and stop points
17132 according to the row's direction when priming the loop that looks
17133 for the glyph on which to display cursor.
17134 (single_display_spec_intangible_p): Function deleted.
17135 (display_prop_intangible_p): Reimplement to call
17136 handle_display_spec instead of single_display_spec_intangible_p.
17137 Accept 3 additional arguments needed by handle_display_spec.
17138 This fixes incorrect cursor motion across display property with complex
17139 values: lists, `(when COND...)' forms, etc.
17140 (single_display_spec_string_p): Support property values that are
17141 lists with the argument STRING its top-level element.
17142 (display_prop_string_p): Fix the condition for processing a
17143 property that is a list to be consistent with handle_display_spec.
17144 (handle_display_spec): New function, refactored from the
17145 last portion of handle_display_prop.
17146 (compute_display_string_pos): Accept additional argument
17147 FRAME_WINDOW_P. Call handle_display_spec to determine whether the
17148 value of a `display' property is a "replacing spec".
17149 (handle_single_display_spec): Accept 2 additional arguments BUFPOS
17150 and FRAME_WINDOW_P. If IT is NULL, don't set up the iterator from
17151 the display property, but just return a value indicating whether
17152 the display property will replace the characters it covers.
17153 (Fcurrent_bidi_paragraph_direction): Initialize the nchars and
17154 frame_window_p members of struct bidi_it.
17155 (compute_display_string_pos, compute_display_string_end):
17156 New functions.
17157 (push_it): Accept second argument POSITION, where pop_it should
17158 jump to continue iteration.
17159 (reseat_1): Initialize bidi_it.disp_pos.
17160
17161 * keyboard.c (adjust_point_for_property): Adjust the call to
17162 display_prop_intangible_p to its new signature.
17163
17164 * dispextern.h (struct bidi_it): New member frame_window_p.
17165 (bidi_init_it): Update prototypes.
17166 (display_prop_intangible_p): Update prototype.
17167 (compute_display_string_pos, compute_display_string_end):
17168 Declare prototypes.
17169 (struct bidi_it): New members nchars and disp_pos. ch_len is now
17170 EMACS_INT.
17171
17172 2011-06-02 Paul Eggert <eggert@cs.ucla.edu>
17173
17174 Malloc failure behavior now depends on size of allocation.
17175 * alloc.c (buffer_memory_full, memory_full): New arg NBYTES.
17176 * lisp.h: Change signatures accordingly.
17177 * alloc.c, buffer.c, editfns.c, menu.c, minibuf.c, xterm.c:
17178 All callers changed. (Bug#8762)
17179
17180 * gnutls.c: Use Emacs's memory allocators.
17181 Without this change, the gnutls library would invoke malloc etc.
17182 directly, which causes problems on non-SYNC_INPUT hosts, and which
17183 runs afoul of improving memory_full behavior. (Bug#8761)
17184 (fn_gnutls_global_set_mem_functions): New macro or function pointer.
17185 (emacs_gnutls_global_init): Use it to specify xmalloc, xrealloc,
17186 xfree instead of the default malloc, realloc, free.
17187 (Fgnutls_boot): No need to check for memory allocation failure,
17188 since xmalloc does that for us.
17189
17190 Remove arbitrary limit of 2**31 entries in hash tables. (Bug#8771)
17191 * category.c (hash_get_category_set):
17192 * ccl.c (ccl_driver):
17193 * charset.c (Fdefine_charset_internal):
17194 * charset.h (struct charset.hash_index):
17195 * composite.c (get_composition_id, gstring_lookup_cache)
17196 (composition_gstring_put_cache):
17197 * composite.h (struct composition.hash_index):
17198 * dispextern.h (struct image.hash):
17199 * fns.c (next_almost_prime, larger_vector, cmpfn_eql)
17200 (cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
17201 (hashfn_equal, hashfn_user_defined, make_hash_table)
17202 (maybe_resize_hash_table, hash_lookup, hash_put)
17203 (hash_remove_from_table, hash_clear, sweep_weak_table, SXHASH_COMBINE)
17204 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector)
17205 (Fsxhash, Fgethash, Fputhash, Fmaphash):
17206 * image.c (make_image, search_image_cache, lookup_image)
17207 (xpm_put_color_table_h):
17208 * lisp.h (struct Lisp_Hash_Table):
17209 * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
17210 * print.c (print): Use 'EMACS_UINT' and 'EMACS_INT'
17211 for hashes and hash indexes, instead of 'unsigned' and 'int'.
17212 * alloc.c (allocate_vectorlike):
17213 Check for overflow in vector size calculations.
17214 * ccl.c (ccl_driver):
17215 Check for overflow when converting EMACS_INT to int.
17216 * fns.c, image.c: Remove unnecessary static decls that would otherwise
17217 need to be updated by these changes.
17218 * fns.c (make_hash_table, maybe_resize_hash_table):
17219 Check for integer overflow with large hash tables.
17220 (make_hash_table, maybe_resize_hash_table, Fmake_hash_table):
17221 Prefer the faster XFLOAT_DATA to XFLOATINT where either will do.
17222 (SXHASH_REDUCE): New macro.
17223 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector):
17224 Use it instead of discarding useful hash info with large hash values.
17225 (sxhash_float): New function.
17226 (sxhash): Use it. No more need for "& INTMASK" due to above changes.
17227 * lisp.h (FIXNUM_BITS): New macro, useful for SXHASH_REDUCE etc.
17228 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
17229 Rewrite to use FIXNUM_BITS, as this simplifies things.
17230 (next_almost_prime, larger_vector, sxhash, hash_lookup, hash_put):
17231 Adjust signatures to match updated version of code.
17232 (consing_since_gc): Now EMACS_INT, since a single hash table can
17233 use more than INT_MAX bytes.
17234
17235 2011-06-01 Dan Nicolaescu <dann@ics.uci.edu>
17236
17237 Make it possible to build with GCC-4.6+ -O2 -flto.
17238
17239 * emacs.c (__malloc_initialize_hook): Mark as EXTERNALLY_VISIBLE.
17240
17241 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
17242
17243 * minibuf.c (get_minibuffer, read_minibuf_unwind):
17244 Call minibuffer-inactive-mode.
17245
17246 2011-05-31 Juanma Barranquero <lekktu@gmail.com>
17247
17248 * makefile.w32-in ($(BLD)/data.$(O), $(BLD)/editfns.$(O)):
17249 Update dependencies.
17250
17251 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
17252
17253 * data.c (init_data): Remove code for UTS, this system is not
17254 supported anymore.
17255
17256 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
17257
17258 Don't force ./temacs to start in terminal mode.
17259
17260 * frame.c (make_initial_frame): Initialize faces in all cases, not
17261 only when CANNOT_DUMP is defined.
17262 * dispnew.c (init_display): Remove CANNOT_DUMP condition.
17263
17264 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
17265
17266 * dispnew.c (add_window_display_history): Use const for the string
17267 pointer. Remove declaration, not needed.
17268
17269 2011-05-31 Paul Eggert <eggert@cs.ucla.edu>
17270
17271 Use 'inline', not 'INLINE'.
17272 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00914.html>
17273 * alloc.c, fontset.c (INLINE): Remove.
17274 * alloc.c, bidi.c, charset.c, coding.c, dispnew.c, fns.c, image.c:
17275 * intervals.c, keyboard.c, process.c, syntax.c, textprop.c, w32term.c:
17276 * xdisp.c, xfaces.c, xterm.c: Replace all uses of INLINE with inline.
17277 * gmalloc.c (register_heapinfo): Use inline unconditionally.
17278 * lisp.h (LISP_MAKE_RVALUE): Use inline, not __inline__.
17279
17280 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
17281
17282 Make it possible to run ./temacs.
17283
17284 * callproc.c (set_initial_environment): Remove CANNOT_DUMP code,
17285 syms_of_callproc does the same thing. Remove test for
17286 "initialized", do it in the caller.
17287 * emacs.c (main): Avoid calling set_initial_environment when dumping.
17288
17289 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
17290
17291 * minibuf.c (Finternal_complete_buffer): Return `category' metadata.
17292 (read_minibuf): Use get_minibuffer.
17293 (syms_of_minibuf): Use DEFSYM.
17294 (Qmetadata): New var.
17295 * data.c (Qbuffer): Don't make it static.
17296 (syms_of_data): Use DEFSYM.
17297
17298 2011-05-31 Paul Eggert <eggert@cs.ucla.edu>
17299
17300 * ccl.c (CCL_CODE_RANGE): Allow negative numbers. (Bug#8751)
17301 (CCL_CODE_MIN): New macro.
17302
17303 2011-05-30 Paul Eggert <eggert@cs.ucla.edu>
17304
17305 * alloc.c (lisp_align_malloc): Omit unnecessary val==NULL tests.
17306
17307 * eval.c (Qdebug): Now static.
17308 * lisp.h (Qdebug): Remove decl. This reverts a part of the
17309 2011-04-26T11:26:05Z!dan.colascione@gmail.com that inadvertently undid part of
17310 2011-04-14T06:48:41Z!eggert@cs.ucla.edu.
17311
17312 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
17313
17314 * image.c: Various fixes to ImageMagick code comments.
17315 (Fimagemagick_types): Doc fix.
17316
17317 2011-05-29 Paul Eggert <eggert@cs.ucla.edu>
17318
17319 Minor fixes prompted by GCC 4.6.0 warnings.
17320
17321 * xselect.c (converted_selections, conversion_fail_tag): Now static.
17322
17323 * emacs.c [HAVE_X_WINDOWS]: Include "xterm.h".
17324 (x_clipboard_manager_save_all): Move extern decl to ...
17325 * xterm.h: ... here, so that it can be checked for consistency.
17326
17327 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
17328
17329 * xselect.c (x_clipboard_manager_save_frame)
17330 (x_clipboard_manager_save_all): New functions.
17331 (Fx_clipboard_manager_save): Lisp function deleted.
17332
17333 * emacs.c (Fkill_emacs): Call x_clipboard_manager_save_all.
17334 * frame.c (delete_frame): Call x_clipboard_manager_save_frame.
17335
17336 * xterm.h: Update prototype.
17337
17338 2011-05-28 William Xu <william.xwl@gmail.com>
17339
17340 * nsterm.m (ns_term_shutdown): Synchronize user defaults before
17341 exiting (Bug#8239).
17342
17343 2011-05-28 Jim Meyering <meyering@redhat.com>
17344
17345 Avoid a sign-extension bug in crypto_hash_function.
17346 * fns.c (to_uchar): Define.
17347 (crypto_hash_function): Use it to convert some newly-signed
17348 variables to unsigned, to avoid sign-extension bugs. For example,
17349 without this change, (md5 "truc") would evaluate to
17350 45723a2aff78ff4fff7fff1114760e62 rather than the expected
17351 45723a2af3788c4ff17f8d1114760e62. Reported by Antoine Levitt in
17352 https://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00883.html.
17353
17354 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
17355
17356 Integer overflow fixes.
17357
17358 * dbusbind.c: Serial number integer overflow fixes.
17359 (CHECK_DBUS_SERIAL_GET_SERIAL): New macro.
17360 (Fdbus_call_method_asynchronously, xd_read_message_1): Use a float
17361 to hold a serial number that is too large for a fixnum.
17362 (Fdbus_method_return_internal, Fdbus_method_error_internal):
17363 Check for serial numbers out of range. Decode any serial number
17364 that was so large that it became a float. (Bug#8722)
17365
17366 * dbusbind.c: Use XFASTINT rather than XUINT, and check for nonneg.
17367 (Fdbus_call_method, Fdbus_call_method_asynchronously):
17368 Use XFASTINT rather than XUINT when numbers are nonnegative.
17369 (xd_append_arg, Fdbus_method_return_internal):
17370 (Fdbus_method_error_internal): Likewise. Also, for unsigned
17371 arguments, check that Lisp number is nonnegative, rather than
17372 silently wrapping negative numbers around. (Bug#8722)
17373 (xd_read_message_1): Don't assume dbus_uint32_t can fit in int.
17374 (Bug#8722)
17375
17376 * data.c (arith_driver, Flsh): Avoid unnecessary casts to EMACS_UINT.
17377
17378 * ccl.c (ccl_driver): Redo slightly to avoid the need for 'unsigned'.
17379
17380 ccl: Add integer overflow checks.
17381 * ccl.c (CCL_CODE_MAX, GET_CCL_RANGE, GET_CCL_CODE, GET_CCL_INT):
17382 (IN_INT_RANGE): New macros.
17383 (ccl_driver): Use them to check for integer overflow when
17384 decoding a CCL program. Many of the new checks are whether XINT (x)
17385 fits in int; it doesn't always, on 64-bit hosts. The new version
17386 doesn't catch all possible integer overflows, but it's an
17387 improvement. (Bug#8719)
17388
17389 * alloc.c (make_event_array): Use XINT, not XUINT.
17390 There's no need for unsigned here.
17391
17392 * mem-limits.h (EXCEEDS_LISP_PTR) [!USE_LSB_TAG]: EMACS_UINT -> uintptr_t
17393 This follows up to the 2011-05-06 change that substituted uintptr_t
17394 for EMACS_INT. This case wasn't caught back then.
17395
17396 Rework Fformat to avoid integer overflow issues.
17397 * editfns.c: Include <float.h> unconditionally, as it's everywhere
17398 now (part of C89). Include <verify.h>.
17399 (MAX_10_EXP, CONVERTED_BYTE_SIZE): Remove; no longer needed.
17400 (pWIDE, pWIDElen, signed_wide, unsigned_wide): New defns.
17401 (Fformat): Avoid the prepass trying to compute sizes; it was only
17402 approximate and thus did not catch overflow reliably. Instead, walk
17403 through the format just once, formatting and computing sizes as we go,
17404 checking for integer overflow at every step, and allocating a larger
17405 buffer as needed. Keep track separately whether the format is
17406 multibyte. Keep only the most-recently calculated precision, rather
17407 than them all. Record whether each argument has been converted to
17408 string. Use EMACS_INT, not int, for byte and char and arg counts.
17409 Support field widths and precisions larger than INT_MAX. Avoid
17410 sprintf's undefined behavior with conversion specifications such as %#d
17411 and %.0c. Fix bug with strchr succeeding on '\0' when looking for
17412 flags. Fix bug with (format "%c" 256.0). Avoid integer overflow when
17413 formatting out-of-range floating point numbers with int
17414 formats. (Bug#8668)
17415
17416 * lisp.h (FIXNUM_OVERFLOW_P): Work even if arg is a NaN.
17417
17418 * data.c: Avoid integer truncation in expressions involving floats.
17419 * data.c: Include <intprops.h>.
17420 (arith_driver): When there's an integer overflow in an expression
17421 involving floating point, convert the integers to floating point
17422 so that the resulting value does not suffer from catastrophic
17423 integer truncation. For example, on a 64-bit host (* 4
17424 most-negative-fixnum 0.5) should yield about -4.6e+18, not zero.
17425 Do not rely on undefined behavior after integer overflow.
17426
17427 merge count_size_as_multibyte, parse_str_to_multibyte
17428 * character.c, character.h (count_size_as_multibyte):
17429 Rename from parse_str_to_multibyte; all uses changed.
17430 Check for integer overflow.
17431 * insdel.c, lisp.h (count_size_as_multibyte): Remove,
17432 since it's now a duplicate of the other. This is more of
17433 a character than a buffer op, so better that it's in character.c.
17434 * fns.c, print.c: Adjust to above changes.
17435
17436 2011-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
17437
17438 * xselect.c (x_convert_selection): Yet another int/Lisp_Object mixup.
17439
17440 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
17441
17442 * xselect.c: Fix minor problems prompted by GCC 4.6.0 warnings.
17443 (x_handle_selection_request, frame_for_x_selection): Remove unused vars.
17444 (x_clipboard_manager_save): Now static.
17445 (Fx_clipboard_manager_save): Rename local to avoid shadowing.
17446
17447 * fns.c: Fix minor problems prompted by GCC 4.6.0 warnings.
17448 (crypto_hash_function): Now static.
17449 Fix pointer signedness problems. Avoid unnecessary initializations.
17450
17451 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
17452
17453 * termhooks.h (Vselection_alist): Make it terminal-local.
17454
17455 * terminal.c (create_terminal): Initialize it.
17456
17457 * xselect.c: Support for clipboard managers.
17458 (Vselection_alist): Move to termhooks.h as terminal-local var.
17459 (LOCAL_SELECTION): New macro.
17460 (x_atom_to_symbol): Handle x_display_info_for_display fail case.
17461 (symbol_to_x_atom): Remove gratuitous arg.
17462 (x_handle_selection_request, lisp_data_to_selection_data)
17463 (x_get_foreign_selection, Fx_register_dnd_atom): Callers changed.
17464 (x_own_selection, x_get_local_selection, x_convert_selection):
17465 New arg, specifying work frame. Use terminal-local Vselection_alist.
17466 (some_frame_on_display): Delete unused function.
17467 (Fx_own_selection_internal, Fx_get_selection_internal)
17468 (Fx_disown_selection_internal, Fx_selection_owner_p)
17469 (Fx_selection_exists_p): New optional frame arg.
17470 (frame_for_x_selection, Fx_clipboard_manager_save): New functions.
17471 (x_handle_selection_clear): Don't treat other terminals with the
17472 same keyboard specially. Use the terminal-local Vselection_alist.
17473 (x_clear_frame_selections): Use Frun_hook_with_args.
17474
17475 * xterm.c (x_term_init): Intern ATOM and CLIPBOARD_MANAGER atoms.
17476
17477 * xterm.h: Add support for those atoms.
17478
17479 2011-05-26 Chong Yidong <cyd@stupidchicken.com>
17480
17481 * xselect.c: ICCCM-compliant handling of MULTIPLE targets.
17482 (converted_selections, conversion_fail_tag): New global variables.
17483 (x_selection_request_lisp_error): Free the above.
17484 (x_get_local_selection): Remove unnecessary code.
17485 (x_reply_selection_request): Args changed; handle arbitrary array
17486 of converted selections stored in converted_selections.
17487 Separate the XChangeProperty and SelectionNotify steps.
17488 (x_handle_selection_request): Rewrite to handle MULTIPLE target.
17489 (x_convert_selection): New function.
17490 (x_handle_selection_event): Simplify.
17491 (x_get_foreign_selection): Don't ignore incoming requests while
17492 waiting for an answer; this will fail when we implement
17493 SAVE_TARGETS, and seems unnecessary anyway.
17494 (selection_data_to_lisp_data): Recognize ATOM_PAIR type.
17495 (Vx_sent_selection_functions): Doc fix.
17496
17497 2011-05-26 Leo Liu <sdl.web@gmail.com>
17498
17499 * editfns.c (Ftranspose_regions): Allow empty regions. (Bug#8699)
17500
17501 2011-05-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17502
17503 * dispextern.h (struct glyph_row): New member fringe_bitmap_periodic_p.
17504
17505 * dispnew.c (shift_glyph_matrix, scrolling_window): Mark scrolled row
17506 for fringe update if it has periodic bitmap.
17507 (row_equal_p): Also compare left_fringe_offset, right_fringe_offset,
17508 and fringe_bitmap_periodic_p.
17509
17510 * fringe.c (get_fringe_bitmap_data): New function.
17511 (draw_fringe_bitmap_1, update_window_fringes): Use it.
17512 (update_window_fringes): Record periodicity of fringe bitmap in glyph
17513 row. Mark glyph row for fringe update if periodicity changed.
17514
17515 * xdisp.c (try_window_reusing_current_matrix): Don't mark scrolled row
17516 for fringe update unless it has periodic bitmap.
17517
17518 2011-05-25 Kenichi Handa <handa@m17n.org>
17519
17520 * xdisp.c (get_next_display_element): Set correct it->face_id for
17521 a static composition.
17522
17523 2011-05-24 Leo Liu <sdl.web@gmail.com>
17524
17525 * deps.mk (fns.o):
17526 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha1.h.
17527
17528 * fns.c (crypto_hash_function, Fsha1): New function.
17529 (Fmd5): Use crypto_hash_function.
17530 (syms_of_fns): Add Ssha1.
17531
17532 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
17533
17534 * gnutls.c: Remove unused macros.
17535 (fn_gnutls_transport_set_lowat, fn_gnutls_transport_set_pull_function):
17536 (fn_gnutls_transport_set_push_function) [!WINDOWSNT]:
17537 Remove macros that are defined and never used.
17538 Caught by gcc -Wunused-macros (GCC 4.6.0, Fedora 14).
17539
17540 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
17541
17542 * xselect.c (syms_of_xselect): Remove unused symbol SAVE_TARGETS.
17543 (Fx_get_selection_internal): Minor cleanup.
17544 (Fx_own_selection_internal): Rename arguments for consistency with
17545 select.el.
17546
17547 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
17548
17549 * xselect.c (QSAVE_TARGETS): New static var, to fix build failure.
17550
17551 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
17552
17553 * xselect.c (syms_of_xselect): Include character.h; use DEFSYM.
17554
17555 2011-05-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17556
17557 * dispnew.c (scrolling_window): Don't exclude the case that the
17558 last enabled row in the desired matrix touches the bottom boundary.
17559
17560 2011-05-21 Glenn Morris <rgm@gnu.org>
17561
17562 * Makefile.in ($(etc)/DOC): Make second command line even shorter.
17563 (SOME_MACHINE_OBJECTS): Replace FONT_OBJ by its maximal expansion,
17564 and add some more files.
17565
17566 2011-05-20 Eli Zaretskii <eliz@gnu.org>
17567
17568 * callproc.c (Fcall_process) [MSDOS]: Fix arguments to
17569 report_file_error introduced by the change from 2011-05-07.
17570
17571 2011-05-20 Paul Eggert <eggert@cs.ucla.edu>
17572
17573 * systime.h (Time): Define only if emacs is defined.
17574 This is to allow ../lib-src/profile.c to be compiled on FreeBSD,
17575 where the include path doesn't have X11/X.h by default. See
17576 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00561.html>.
17577
17578 2011-05-20 Kenichi Handa <handa@m17n.org>
17579
17580 * composite.c (find_automatic_composition): Fix previous change.
17581
17582 2011-05-20 Glenn Morris <rgm@gnu.org>
17583
17584 * lisp.mk: New file, split from Makefile.in.
17585 * Makefile.in (lisp): Move to separate file, inserted by @lisp_frag@.
17586 (shortlisp): Remove.
17587 ($(etc)/DOC): Edit lisp.mk rather than using $shortlisp.
17588
17589 2011-05-19 Glenn Morris <rgm@gnu.org>
17590
17591 * Makefile.in (MSDOS_SUPPORT_REAL, MSDOS_SUPPORT, NS_SUPPORT)
17592 (REAL_MOUSE_SUPPORT, GPM_MOUSE_SUPPORT, MOUSE_SUPPORT, TOOLTIP_SUPPORT)
17593 (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT, WINDOW_SUPPORT): Remove.
17594 (lisp): Set the order to that of loadup.el.
17595 (shortlisp): Make it a copy of $lisp.
17596 (SOME_MACHINE_LISP): Remove.
17597 ($(etc)/DOC): Depend just on $lisp, not $SOME_MACHINE_LISP too.
17598 Use just $shortlisp, not $SOME_MACHINE_LISP too.
17599
17600 2011-05-18 Kenichi Handa <handa@m17n.org>
17601
17602 * composite.c (CHAR_COMPOSABLE_P): Add more check for efficiency.
17603 (BACKWARD_CHAR): Wrap the arg STOP by parenthesis.
17604 (find_automatic_composition): Mostly rewrite for efficiency.
17605
17606 2011-05-18 Juanma Barranquero <lekktu@gmail.com>
17607
17608 * makefile.w32-in: Update dependencies.
17609
17610 2011-05-18 Christoph Scholtes <cschol2112@googlemail.com>
17611
17612 * menu.c: Include limits.h (fixes the MS-Windows build broken by
17613 2011-06-18T18:49:19Z!cyd@stupidchicken.com).
17614
17615 2011-05-18 Paul Eggert <eggert@cs.ucla.edu>
17616
17617 Fix some integer overflow issues, such as string length overflow.
17618
17619 * insdel.c (count_size_as_multibyte): Check for string overflow.
17620
17621 * character.c (lisp_string_width): Check for string overflow.
17622 Use EMACS_INT, not int, for string indexes and lengths; in
17623 particular, 2nd arg is now EMACS_INT, not int. Do not crash if
17624 the resulting string length overflows an EMACS_INT; instead,
17625 report a string overflow if no precision given. When checking for
17626 precision exhaustion, use a check that cannot possibly have
17627 integer overflow. (Bug#8675)
17628 * character.h (lisp_string_width): Adjust to new signature.
17629
17630 * alloc.c (string_overflow): New function.
17631 (Fmake_string): Use it. This doesn't change behavior, but saves
17632 a few bytes and will simplify future changes.
17633 * character.c (string_escape_byte8): Likewise.
17634 * lisp.h (string_overflow): New decl.
17635
17636 Fixups, following up to the user-interface timestamp change.
17637 * nsterm.m (last_mouse_movement_time, ns_mouse_position): Use Time
17638 for UI timestamps, instead of unsigned long.
17639 * msdos.c (mouse_get_pos): Likewise.
17640 * w32inevt.c (movement_time, w32_console_mouse_position): Likewise.
17641 * w32gui.h (Time): Define by including "systime.h" rather than by
17642 declaring it ourselves. (Bug#8664)
17643
17644 * dispextern.h (struct image): Don't assume time_t <= unsigned long.
17645 * image.c (clear_image_cache): Likewise.
17646
17647 * term.c (term_mouse_position): Don't assume time_t wraparound.
17648
17649 Be more systematic about user-interface timestamps.
17650 Before, the code sometimes used 'Time', sometimes 'unsigned long',
17651 and sometimes 'EMACS_UINT', to represent these timestamps.
17652 This change causes it to use 'Time' uniformly, as that's what X uses.
17653 This makes the code easier to follow, and makes it easier to catch
17654 integer overflow bugs such as Bug#8664.
17655 * frame.c (Fmouse_position, Fmouse_pixel_position):
17656 Use Time, not unsigned long, for user-interface timestamps.
17657 * keyboard.c (last_event_timestamp, kbd_buffer_get_event): Likewise.
17658 (button_down_time, make_lispy_position, make_lispy_movement): Likewise.
17659 * keyboard.h (last_event_timestamp): Likewise.
17660 * menu.c (Fx_popup_menu) [!HAVE_X_WINDOWS]: Likewise.
17661 * menu.h (xmenu_show): Likewise.
17662 * term.c (term_mouse_position): Likewise.
17663 * termhooks.h (struct input_event.timestamp): Likewise.
17664 (struct terminal.mouse_position_hook): Likewise.
17665 * xmenu.c (create_and_show_popup_menu, xmenu_show): Likewise.
17666 * xterm.c (XTmouse_position, x_scroll_bar_report_motion): Likewise.
17667 * systime.h (Time): New decl. Pull it in from <X11/X.h> if
17668 HAVE_X_WINDOWS, otherwise define it as unsigned long, which is
17669 what it was before.
17670 * menu.h, termhooks.h: Include "systime.h", for Time.
17671
17672 * keyboard.c (make_lispy_event): Fix problem in integer overflow.
17673 Don't assume that the difference between two unsigned long values
17674 can fit into an integer. At this point, we know button_down_time
17675 <= event->timestamp, so the difference must be nonnegative, so
17676 there's no need to cast the result if double-click-time is
17677 nonnegative, as it should be; check that it's nonnegative, just in
17678 case. This bug is triggered when events are more than 2**31 ms
17679 apart (about 25 days). (Bug#8664)
17680
17681 * xselect.c (last_event_timestamp): Remove duplicate decl.
17682 (x_own_selection): Remove needless cast to unsigned long.
17683
17684 * xmenu.c (set_frame_menubar): Use int, not EMACS_UINT, for indexes
17685 that always fit in int. Use a sentinel instead of a counter, to
17686 avoid a temp and to allay GCC's concerns about possible int overflow.
17687 * frame.h (struct frame): Use int for menu_bar_items_used
17688 instead of EMACS_INT, since it always fits in int.
17689
17690 * menu.c (grow_menu_items): Check for int overflow.
17691
17692 * xmenu.c (set_frame_menubar): Don't mishandle vectors with no nils.
17693
17694 * xterm.c: Use EMACS_INT for Emacs modifiers, and int for X modifiers.
17695 Before, the code was not consistent. These values cannot exceed
17696 2**31 - 1 so there's no need to make them unsigned.
17697 (x_x_to_emacs_modifiers): Accept int and return EMACS_INT.
17698 (x_emacs_to_x_modifiers): Accept EMACS_INT and return int.
17699 (x_x_to_emacs_modifiers, x_emacs_to_x_modifiers): Reject non-integers
17700 as modifiers.
17701 * xterm.h (x_x_to_emacs_modifiers): Adjust to signature change.
17702
17703 * lisp.h (XINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_INT.
17704 (XUINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_UINT.
17705 Otherwise, GCC 4.6.0 warns about printf (pI, XINT (...)),
17706 presumably because the widths might not match.
17707
17708 * window.c (size_window): Avoid needless test at loop start.
17709
17710 2011-05-18 Courtney Bane <emacs-bugs-7626@cbane.org> (tiny change)
17711
17712 * term.c (Fresume_tty): Restore hooks before reinitializing (bug#8687).
17713
17714 2011-05-12 Drew Adams <drew.adams@oracle.com>
17715
17716 * textprop.c (Fprevious_single_char_property_change): Doc fix (bug#8655).
17717
17718 2011-05-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17719
17720 * w32term.c (w32_draw_fringe_bitmap): Rename local vars `left' and
17721 `width' to `bar_area_x' and `bar_area_width', respectively.
17722 (x_scroll_run): Take account of fringe background extension.
17723
17724 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
17725 Rename local vars `left' and `width' to `bar_area_x' and
17726 `bar_area_width', respectively.
17727 (x_scroll_run) [USE_TOOLKIT_SCROLL_BARS]: Take account of fringe
17728 background extension.
17729
17730 2011-05-10 Jim Meyering <meyering@redhat.com>
17731
17732 * xdisp.c (x_intersect_rectangles): Fix typo "the the -> the".
17733
17734 2011-05-10 Juanma Barranquero <lekktu@gmail.com>
17735
17736 * image.c (Finit_image_library): Return t for built-in image types,
17737 like pbm and xbm. (Bug#8640)
17738
17739 2011-05-09 Andreas Schwab <schwab@linux-m68k.org>
17740
17741 * w32menu.c (set_frame_menubar): Fix submenu allocation.
17742
17743 2011-05-07 Eli Zaretskii <eliz@gnu.org>
17744
17745 * w32console.c (Fset_screen_color): Doc fix.
17746 (Fget_screen_color): New function.
17747 (syms_of_ntterm): Defsubr it.
17748
17749 * callproc.c (call_process_cleanup) [MSDOS]: Don't close and
17750 unlink the temporary file if Fcall_process didn't create it in the
17751 first place.
17752 (Fcall_process) [MSDOS]: Don't create tempfile if stdout of the
17753 child process will be redirected to a file specified with `:file'.
17754 Don't try to re-open tempfile in that case, and set fd[0] to -1 as
17755 cue to call_process_cleanup not to close that handle.
17756
17757 2011-05-07 Ben Key <bkey76@gmail.com>
17758
17759 * makefile.w32-in: The bootstrap-temacs rule now makes use of
17760 one of two shell specific rules, either bootstrap-temacs-CMD or
17761 bootstrap-temacs-SH. The bootstrap-temacs-SH rule is identical
17762 to the previous implementation of the bootstrap-temacs rule.
17763 The bootstrap-temacs-CMD rule is similar to the previous
17764 implementation of the bootstrap-temacs rule except that it
17765 makes use of the ESC_CFLAGS variable instead of the CFLAGS
17766 variable.
17767
17768 These changes, along with some changes to nt/configure.bat,
17769 nt/gmake.defs, and nt/nmake.defs, are required to extend my
17770 earlier fix to add support for --cflags and --ldflags options
17771 that include quotes so that it works whether make uses cmd or
17772 sh as the shell.
17773
17774 2011-05-06 Michael Albinus <michael.albinus@gmx.de>
17775
17776 * dbusbind.c (QCdbus_type_unix_fd): Declare static.
17777 (xd_remove_watch): Don't check QCdbus_type_unix_fd for SYMBOLP, it
17778 is a constant.
17779 (Fdbus_init_bus, xd_read_queued_messages): Bus can be a symbol or
17780 a string. Handle both cases.
17781 (Fdbus_call_method_asynchronously, Fdbus_register_signal)
17782 (Fdbus_register_method): Use Qinvalid_function.
17783
17784 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
17785
17786 * makefile.w32-in: Update dependencies.
17787 (LISP_H): Add inttypes.h and stdin.h.
17788 (PROCESS_H): Add unistd.h.
17789
17790 2011-05-06 Eli Zaretskii <eliz@gnu.org>
17791
17792 * lread.c: Include limits.h (fixes the MS-Windows build broken by
17793 2011-05-06T07:13:19Z!eggert@cs.ucla.edu).
17794
17795 2011-05-06 Paul Eggert <eggert@cs.ucla.edu>
17796
17797 * image.c (Finit_image_library) [!HAVE_NTGUI]: Omit unused local.
17798
17799 * term.c (vfatal): Remove stray call to va_end.
17800 It's not needed and the C Standard doesn't allow it here anyway.
17801
17802 Use C99's va_copy to avoid undefined behavior on x86-64 GNU/Linux.
17803 * eval.c (verror): doprnt a copy of ap, not the original. (Bug#8545)
17804
17805 * eval.c (verror): OK to create a string of up to MOST_POSITIVE_FIXNUM
17806 bytes.
17807
17808 * term.c: Don't include <stdarg.h>, as <lisp.h> does that.
17809
17810 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
17811
17812 * process.c (Fformat_network_address): Fix typo: args2 -> *args2.
17813
17814 * xmenu.c (set_frame_menubar): Fix typo: int * -> int (3 times).
17815
17816 * coding.c (detect_coding_charset): Fix typo: * 2 -> *4 (Bug#8601).
17817
17818 * charset.h (struct charset.code_space): Now has 15 elements, not 16.
17819 * charset.c (Fdefine_charset_internal): Don't initialize
17820 charset.code_space[15]. The value was garbage, on hosts with
17821 32-bit int (Bug#8600).
17822
17823 * lread.c (read_integer): Be more consistent with string-to-number.
17824 Use string_to_number to do the actual conversion; this avoids
17825 rounding errors and fixes some other screwups. Without this fix,
17826 for example, #x1fffffffffffffff was misread as -2305843009213693952.
17827 (digit_to_number): Move earlier, for benefit of read_integer.
17828 Return -1 if the digit is out of range for the base, -2 if it is
17829 not a digit in any supported base. (Bug#8602)
17830
17831 * doprnt.c (doprnt): Support arbitrary pI values, such as "I64".
17832
17833 * dispnew.c (scrolling_window): Return 1 if we scrolled,
17834 to match comment at start of function. This also removes a
17835 GCC warning about overflow in a 32+64-bit port.
17836
17837 * lisp.h (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Simplify.
17838
17839 * dbusbind.c: Do not use XPNTR on a value that may be an integer.
17840 Reported by Stefan Monnier in
17841 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00919.html>.
17842 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
17843 Use SYMBOLP-guarded XSYMBOL, not XPNTR.
17844
17845 * lisp.h (EMACS_INTPTR): Remove. All uses changed to intptr_t.
17846 (EMACS_UINTPTR): Likewise, with uintptr_t.
17847
17848 * lisp.h: Prefer 64-bit EMACS_INT if available.
17849 (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Define to 64-bit
17850 on 32-bit hosts that have 64-bit int, so that they can access
17851 large files.
17852 However, temporarily disable this change unless the temporary
17853 symbol WIDE_EMACS_INT is defined.
17854
17855 * lread.c, process.c: Do not include <inttypes.h>; lisp.h does it now.
17856
17857 Prefer intptr_t/uintptr_t for integers the same widths as pointers.
17858 This removes an assumption that EMACS_INT and long are the same
17859 width as pointers. The assumption is true for Emacs porting targets
17860 now, but we want to make other targets possible.
17861 * lisp.h: Include <inttypes.h>, for INTPTR_MAX, UINTPTR_MAX.
17862 (EMACS_INTPTR, EMACS_UINTPTR): New macros.
17863 In the rest of the code, change types of integers that hold casted
17864 pointers to EMACS_INTPTR and EMACS_UINTPTR, systematically
17865 replacing EMACS_INT, long, EMACS_UINT, and unsigned long.
17866 (XTYPE): Don't cast arg to EMACS_UINT; normally is not needed.
17867 (XSET): Cast type of XTYPE arg to EMACS_INTPTR; it is needed here.
17868 No need to cast type when ORing.
17869 (XPNTR): Return a value of type EMACS_INTPTR or EMACS_UINTPTR.
17870 * alloc.c (lisp_align_malloc): Remove a no-longer-needed cast.
17871 * doc.c (store_function_docstring): Use EMACS_INTPTR, so as not to
17872 assume EMACS_INT is the same width as char *.
17873 * gtkutil.c (xg_gtk_scroll_destroy, xg_tool_bar_button_cb):
17874 (xg_tool_bar_callback, xg_tool_bar_help_callback, xg_make_tool_item):
17875 Remove no-longer-needed casts.
17876 (xg_create_scroll_bar, xg_tool_bar_button_cb, xg_tool_bar_callback):
17877 (xg_tool_bar_help_callback, xg_make_tool_item):
17878 Use EMACS_INTPTR to hold an integer
17879 that will be cast to void *; this can avoid a GCC warning
17880 if EMACS_INT is not the same width as void *.
17881 * menu.c (find_and_call_menu_selection): Remove no-longer-needed cast.
17882 * xdisp.c (display_echo_area_1, resize_mini_window_1):
17883 (current_message_1, set_message_1):
17884 Use a local to convert to proper width without a cast.
17885 * xmenu.c (dialog_selection_callback): Likewise.
17886
17887 * sysdep.c (get_random): Don't assume EMACS_INT is no wider than long.
17888 Also, don't assume VALBITS / RAND_BITS is less than 5,
17889 and don't rely on undefined behavior when shifting a 1 left into
17890 the sign bit.
17891 * lisp.h (get_random): Change signature to match.
17892
17893 * lread.c (hash_string): Use size_t, not int, for hash computation.
17894 Normally we prefer signed values; but hashing is special, because
17895 it's better to use unsigned division on hash table sizes so that
17896 the remainder is nonnegative. Also, size_t is the natural width
17897 for hashing into memory. The previous code used 'int', which doesn't
17898 retain enough info to hash well into very large tables.
17899 (oblookup, oblookup_last_bucket_number, Funintern): Likewise.
17900
17901 * dbusbind.c: Don't possibly lose pointer info when converting.
17902 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
17903 Use XPNTR rather than XHASH, so that the high-order bits of
17904 the pointer aren't lost when converting through void *.
17905
17906 * eval.c (Fautoload): Don't double-shift a pointer.
17907
17908 * fns.c (Frandom): Let EMACS_UINT be wider than unsigned long.
17909
17910 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
17911
17912 * gnutls.c (DEF_GNUTLS_FN):
17913 * image.c (DEF_IMGLIB_FN): Make function pointers static.
17914
17915 2011-05-05 Andreas Schwab <schwab@linux-m68k.org>
17916
17917 * lread.c (lisp_file_lexically_bound_p): Stop scanning at end
17918 marker. (Bug#8610)
17919
17920 2011-05-05 Eli Zaretskii <eliz@gnu.org>
17921
17922 * w32heap.c (allocate_heap) [USE_LISP_UNION_TYPE || USE_LSB_TAG]:
17923 New version that can reserve upto 2GB of heap space.
17924
17925 2011-05-05 Chong Yidong <cyd@stupidchicken.com>
17926
17927 * nsfns.m (Fns_read_file_name): Doc fix (Bug#8534).
17928
17929 2011-05-05 Teodor Zlatanov <tzz@lifelogs.com>
17930
17931 * gnutls.c (fn_gnutls_certificate_set_x509_key_file): Add alias to
17932 `gnutls_certificate_set_x509_key_file'.
17933
17934 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
17935
17936 * makefile.w32-in ($(BLD)/image.$(O), $(BLD)/process.$(O)):
17937 Update dependencies.
17938
17939 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
17940
17941 * gnutls.h (emacs_gnutls_write, emacs_gnutls_read):
17942 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
17943 Remove unused parameter `fildes'.
17944 * process.c (read_process_output, send_process): Don't pass it.
17945
17946 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
17947
17948 Fix previous change: the library cache is defined in w32.c.
17949 * image.c (CACHE_IMAGE_TYPE) [!HAVE_NTGUI]: Define to noop.
17950 (Finit_image_library): Wrap Vlibrary_cache on "#ifdef HAVE_NTGUI".
17951
17952 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
17953
17954 Implement dynamic loading of GnuTLS on Windows.
17955
17956 * gnutls.h (GNUTLS_EMACS_ERROR_NOT_LOADED): New macro.
17957 (emacs_gnutls_write, emacs_gnutls_read): Mark as extern.
17958 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
17959 Declare.
17960
17961 * gnutls.c (Qgnutls_dll): Define.
17962 (DEF_GNUTLS_FN, LOAD_GNUTLS_FN): New macros.
17963 (gnutls_*): Declare function pointers.
17964 (init_gnutls_functions): New function to initialize function pointers.
17965 (emacs_gnutls_handshake, Fgnutls_error_string, Fgnutls_deinit)
17966 (emacs_gnutls_global_init, Fgnutls_bye): Use function pointers.
17967 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
17968 Wrappers for gnutls_record_check_pending and gnutls_transport_set_errno.
17969 (emacs_gnutls_write, emacs_gnutls_read)
17970 (emacs_gnutls_handle_error, Fgnutls_error_fatalp)
17971 (Fgnutls_available_p): New function.
17972 (Fgnutls_boot): Call Fgnutls_available_p. Use function pointers.
17973 (syms_of_gnutls) <Qgnutls_dll>: Initialize and staticpro it.
17974 (syms_of_gnutls) <Sgnutls_available_p>: defsubr it.
17975
17976 * image.c: Include w32.h.
17977 (Vimage_type_cache): Delete.
17978 (syms_of_image) <Vimage_type_cache>: Don't initialize and staticpro it.
17979 (CACHE_IMAGE_TYPE, Finit_image_library): Use Vlibrary_cache instead.
17980 (w32_delayed_load): Move to w32.c.
17981
17982 * w32.h (VlibraryCache, QCloaded_from, w32_delayed_load): Declare.
17983
17984 * w32.c (QCloaded_from, Vlibrary_cache): Define.
17985 (w32_delayed_load): Move from image.c. When loading a library, record
17986 its filename in the :loaded-from property of the library id.
17987 (globals_of_w32) <QCloaded_from, Vlibrary_cache>:
17988 Initialize and staticpro them.
17989 (emacs_gnutls_pull, emacs_gnutls_push): Call emacs_gnutls_* functions.
17990
17991 * process.c: Include lisp.h before w32.h, not after.
17992 (wait_reading_process_output): Call emacs_gnutls_record_check_pending
17993 instead of gnutls_record_check_pending.
17994
17995 * callproc.c, emacs.c: Include lisp.h before w32.h, not after.
17996
17997 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
17998
17999 * gnutls.c (Fgnutls_boot): Support :keylist and :crlfiles options
18000 instead of :keyfiles. Give GnuTLS the keylist and the CRL lists
18001 as passed in.
18002
18003 2011-05-03 Jan Djärv <jan.h.d@swipnet.se>
18004
18005 * xterm.c (x_set_frame_alpha): Do not set property on anything
18006 else than FRAME_X_OUTER_WINDOW (Bug#8608).
18007
18008 2011-05-02 Juanma Barranquero <lekktu@gmail.com>
18009
18010 * sysdep.c (get_tty_size) [WINDOWSNT]: Implement. (Bug#8596)
18011
18012 2011-05-02 Juanma Barranquero <lekktu@gmail.com>
18013
18014 * gnutls.c (Qgnutls_log_level, Qgnutls_code, Qgnutls_anon)
18015 (Qgnutls_x509pki, Qgnutls_e_interrupted, Qgnutls_e_again)
18016 (Qgnutls_e_invalid_session, Qgnutls_e_not_ready_for_handshake)
18017 (gnutls_global_initialized, Qgnutls_bootprop_priority)
18018 (Qgnutls_bootprop_trustfiles, Qgnutls_bootprop_keyfiles)
18019 (Qgnutls_bootprop_callbacks, Qgnutls_bootprop_loglevel)
18020 (Qgnutls_bootprop_hostname, Qgnutls_bootprop_verify_flags)
18021 (Qgnutls_bootprop_verify_error, Qgnutls_bootprop_verify_hostname_error)
18022 (Qgnutls_bootprop_callbacks_verify): Make static.
18023
18024 2011-05-01 Andreas Schwab <schwab@linux-m68k.org>
18025
18026 * callproc.c: Indentation fixup.
18027
18028 * sysdep.c (wait_for_termination_1): Make static.
18029 (wait_for_termination, interruptible_wait_for_termination):
18030 Move after wait_for_termination_1.
18031
18032 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
18033
18034 * sysdep.c (interruptible_wait_for_termination): New function
18035 which is like wait_for_termination, but allows keyboard
18036 interruptions.
18037
18038 * callproc.c (Fcall_process): Add (:file "file") as an option for
18039 the STDOUT buffer.
18040 (Fcall_process_region): Ditto.
18041
18042 2011-04-30 Eli Zaretskii <eliz@gnu.org>
18043
18044 * dosfns.c (Fint86, Fdos_memget, Fdos_memput): Use `ASIZE (FOO)'
18045 rather than `XVECTOR (FOO)->size'.
18046
18047 * process.c: Remove HAVE_INTTYPES_H condition from inclusion of
18048 inttypes.h, as a gnulib replacement is used if it not available in
18049 system headers.
18050
18051 2011-04-21 Eli Zaretskii <eliz@gnu.org>
18052
18053 Lift the MOST_POSITIVE_FIXNUM/4 limitation on visited files.
18054 * fileio.c (Finsert_file_contents): Don't limit file size to 1/4
18055 of MOST_POSITIVE_FIXNUM. (Bug#8528)
18056
18057 * coding.c (coding_alloc_by_realloc): Error out if destination
18058 will grow beyond MOST_POSITIVE_FIXNUM.
18059 (decode_coding_emacs_mule): Abort if there isn't enough place in
18060 charbuf for the composition carryover bytes. Reserve an extra
18061 space for up to 2 characters produced in a loop.
18062 (decode_coding_iso_2022): Abort if there isn't enough place in
18063 charbuf for the composition carryover bytes.
18064
18065 2011-04-21 Eli Zaretskii <eliz@gnu.org>
18066
18067 * doprnt.c (doprnt) [!HAVE_LONG_LONG_INT]: Error out instead of
18068 aborting when %lld or %lll format is passed.
18069 [!HAVE_UNSIGNED_LONG_LONG_INT]: Error out instead of aborting when
18070 %llo or %llx format is passed. (Bug#8545)
18071
18072 * window.c (window_scroll_line_based): Use a marker instead of
18073 simple variables to record original value of point. (Bug#7952)
18074
18075 * doprnt.c (doprnt): Fix the case where a multibyte sequence
18076 produced by %s or %c overflows available buffer space. (Bug#8545)
18077
18078 2011-04-28 Paul Eggert <eggert@cs.ucla.edu>
18079
18080 * doprnt.c (doprnt): Omit useless test; int overflow check (Bug#8545).
18081 (SIZE_MAX): Move defn after all includes, as they might #define it.
18082
18083 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
18084
18085 * w32.c (init_environment): Warn about defaulting HOME to C:\.
18086
18087 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
18088
18089 * keyboard.c (Qdelayed_warnings_hook): Define.
18090 (command_loop_1): Run `delayed-warnings-hook'
18091 if Vdelayed_warnings_list is non-nil.
18092 (syms_of_keyboard) <delayed-warnings-hook>: DEFSYM it.
18093 (syms_of_keyboard) <delayed-warnings-list>: DEFVAR_LISP it.
18094
18095 2011-04-28 Eli Zaretskii <eliz@gnu.org>
18096
18097 * doprnt.c (doprnt): Don't return value smaller than the buffer
18098 size if the message was truncated. (Bug#8545).
18099
18100 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
18101
18102 * w32fns.c (Fx_change_window_property, Fx_delete_window_property)
18103 (Fx_window_property): #if-0 the whole functions, not just the bodies.
18104
18105 2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
18106
18107 * doprnt.c (doprnt): Support "ll" length modifier, for long long.
18108
18109 2011-04-27 Juanma Barranquero <lekktu@gmail.com>
18110
18111 * makefile.w32-in: Update dependencies.
18112
18113 2011-04-27 Eli Zaretskii <eliz@gnu.org>
18114
18115 Improve `doprnt' and its usage. (Bug#8545)
18116 * doprnt.c (doprnt): Make sure `format' is never accessed beyond
18117 `format_end'. Remove support for %l as a conversion specifier.
18118 Don't use xrealloc. Improve diagnostics when the %l size modifier
18119 is used. Update the commentary.
18120
18121 * eval.c (verror): Simplify calculation of size_t.
18122
18123 * coding.c (Ffind_operation_coding_system): Fix diagnostic error
18124 messages.
18125
18126 2011-04-27 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
18127
18128 * buffer.c (init_buffer) [USE_MMAP_FOR_BUFFERS]: Adjust to aliasing
18129 change.
18130
18131 2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
18132
18133 * nsmenu.m: Replace all uses of XVECTOR with ASIZE and AREF.
18134 This makes this file independent of the recent pseudovector change.
18135
18136 2011-04-26 Paul Eggert <eggert@cs.ucla.edu>
18137
18138 * keyboard.c (handle_user_signal): Fix pointer signedness problem.
18139
18140 * gnutls.c (emacs_gnutls_handle_error): Remove unused local.
18141 (Fgnutls_boot): gnutls_certificate_verify_peers2 wants unsigned *.
18142 Remove unused local.
18143 (emacs_gnutls_write): Don't use uninitialized rtnval if nbyte <= 0.
18144
18145 * lisp.h: Fix a problem with aliasing and vector headers. (Bug#8546)
18146 GCC 4.6.0 optimizes based on type-based alias analysis.
18147 For example, if b is of type struct buffer * and v of type struct
18148 Lisp_Vector *, then gcc -O2 was incorrectly assuming that &b->size
18149 != &v->size, and therefore "v->size = 1; b->size = 2; return
18150 v->size;" must therefore return 1. This assumption is incorrect
18151 for Emacs, since it type-puns struct Lisp_Vector * with many other
18152 types. To fix this problem, this patch adds a new type struct
18153 vectorlike_header that documents the constraints on layout of vectors
18154 and pseudovectors, and helps optimizing compilers not get fooled
18155 by Emacs's type punning. It also adds the macros XSETTYPED_PVECTYPE
18156 XSETTYPED_PSEUDOVECTOR, TYPED_PSEUDOVECTORP, for similar reasons.
18157 * lisp.h (XSETTYPED_PVECTYPE): New macro, specifying the name of
18158 the size member.
18159 (XSETPVECTYPE): Rewrite in terms of new macro.
18160 (XSETPVECTYPESIZE): New macro, specifying both type and size.
18161 This is a bit clearer, and further avoids the possibility of
18162 undesirable aliasing.
18163 (XSETTYPED_PSEUDOVECTOR): New macro, specifying the size.
18164 (XSETPSEUDOVECTOR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR.
18165 (XSETSUBR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR and XSIZE,
18166 since Lisp_Subr is a special case (no "next" field).
18167 (ASIZE): Now uses header.size rather than size.
18168 All previous uses of XVECTOR (foo)->size replaced to use this macro,
18169 to avoid the hassle of writing XVECTOR (foo)->header.size.
18170 (struct vectorlike_header): New type.
18171 (TYPED_PSEUDOVECTORP): New macro, also specifying the C type of the
18172 object, to help avoid aliasing.
18173 (PSEUDOVECTORP): Rewrite in terms of TYPED_PSEUDOVECTORP.
18174 (SUBRP): Likewise, since Lisp_Subr is a special case.
18175 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table):
18176 (struct Lisp_Sub_Char_Table, struct Lisp_Bool_Vector):
18177 (struct Lisp_Hash_Table): Combine first two members into a single
18178 struct vectorlike_header member. All uses of "size" and "next" members
18179 changed to be "header.size" and "header.next".
18180 * buffer.h (struct buffer): Likewise.
18181 * font.h (struct font_spec, struct font_entity, struct font): Likewise.
18182 * frame.h (struct frame): Likewise.
18183 * process.h (struct Lisp_Process): Likewise.
18184 * termhooks.h (struct terminal): Likewise.
18185 * window.c (struct save_window_data, struct saved_window): Likewise.
18186 * window.h (struct window): Likewise.
18187 * alloc.c (allocate_buffer, Fmake_bool_vector, allocate_pseudovector):
18188 Use XSETPVECTYPESIZE, not XSETPVECTYPE, to avoid aliasing problems.
18189 * buffer.c (init_buffer_once): Likewise.
18190 * lread.c (defsubr): Use XSETTYPED_PVECTYPE, since Lisp_Subr is a
18191 special case.
18192 * process.c (Fformat_network_address): Use local var for size,
18193 for brevity.
18194
18195 * bytecode.c (exec_byte_code): Don't use XVECTOR before CHECK_VECTOR.
18196
18197 Make the Lisp reader and string-to-float more consistent (Bug#8525)
18198 * data.c (atof): Remove decl; no longer used or needed.
18199 (digit_to_number): Move to lread.c.
18200 (Fstring_to_number): Use new string_to_number function, to be
18201 consistent with how the Lisp reader treats infinities and NaNs.
18202 Do not assume that floating-point numbers represent EMACS_INT
18203 without losing information; this is not true on most 64-bit hosts.
18204 Avoid double-rounding errors, by insisting on integers when
18205 parsing non-base-10 numbers, as the documentation specifies.
18206 * lisp.h (string_to_number): New decl, replacing ...
18207 (isfloat_string): Remove.
18208 * lread.c: Include <inttypes.h>, for uintmax_t and strtoumax.
18209 (read1): Do not accept +. and -. as integers; this
18210 appears to have been a coding error. Similarly, do not accept
18211 strings like +-1e0 as floating point numbers. Do not report
18212 overflow for integer overflows unless the base is not 10 which
18213 means we have no simple and reliable way to continue.
18214 Break out the floating-point parsing into a new
18215 function string_to_number, so that Fstring_to_number parses
18216 floating point numbers consistently with the Lisp reader.
18217 (digit_to_number): Move here from data.c. Make it static inline.
18218 (E_CHAR, EXP_INT): Remove, replacing with ...
18219 (E_EXP): New macro, to solve the "1.0e+" problem mentioned below.
18220 (string_to_number): New function, replacing isfloat_string.
18221 This function checks for valid syntax and produces the resulting
18222 Lisp float number too. Rework it so that string-to-number
18223 no longer mishandles examples like "1.0e+". Use strtoumax,
18224 so that overflow for non-base-10 numbers is reported only when
18225 there's no portable and simple way to convert to floating point.
18226
18227 * textprop.c (set_text_properties_1): Rewrite for clarity,
18228 and to avoid GCC warning about integer overflow.
18229
18230 * intervals.h (struct interval): Use EMACS_INT for members
18231 where EMACS_UINT might cause problems. See
18232 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html>.
18233 (CHECK_TOTAL_LENGTH): Remove cast to EMACS_INT; no longer needed.
18234 * intervals.c (interval_deletion_adjustment): Now returns EMACS_INT.
18235 All uses changed.
18236 (offset_intervals): Tell GCC not to worry about length overflow
18237 when negating a negative length.
18238
18239 * alloc.c (overrun_check_malloc, overrun_check_realloc): Now static.
18240 (overrun_check_free): Likewise.
18241
18242 * alloc.c (SDATA_SIZE) [!GC_CHECK_STRING_BYTES]: Avoid runtime check
18243 in the common case where SDATA_DATA_OFFSET is a multiple of Emacs
18244 word size.
18245
18246 * gnutls.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
18247 (gnutls_make_error): Rename local to avoid shadowing.
18248 (gnutls_emacs_global_deinit): ifdef out; not used.
18249 (Fgnutls_boot): Use const for pointer to readonly storage.
18250 Comment out unused local. Fix pointer signedness problems.
18251
18252 * lread.c (openp): Don't stuff size_t into an 'int'.
18253 Use <= on length, not < on length + 1, to avoid GCC 4.6.0 warning
18254 about possible signed overflow.
18255
18256 * gtkutil.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
18257 (GDK_KEY_g): Don't define if already defined.
18258 (xg_prepare_tooltip): Avoid pointer signedness problem.
18259 (xg_set_toolkit_scroll_bar_thumb): Redo to avoid two casts.
18260
18261 * process.c (Fnetwork_interface_info): Avoid left-shift undefined
18262 behavior with 1 << 31. GCC 4.6.0 warns about this on 32-bit hosts.
18263
18264 * xfns.c (Fx_window_property): Simplify a bit,
18265 to make a bit faster and to avoid GCC 4.6.0 warning.
18266 * xselect.c (x_get_window_property, x_handle_dnd_message): Likewise.
18267
18268 * fns.c (internal_equal): Don't assume size_t fits in int.
18269
18270 * alloc.c (compact_small_strings): Tighten assertion a little.
18271
18272 Replace pEd with more-general pI, and fix some printf arg casts.
18273 * lisp.h (pI): New macro, generalizing old pEd macro to other
18274 conversion specifiers. For example, use "...%"pI"d..." rather
18275 than "...%"pEd"...".
18276 (pEd): Remove. All uses replaced with similar uses of pI.
18277 * m/amdx86-64.h, m/ia64.h, m/ibms390x.h: Likewise.
18278 * alloc.c (check_pure_size): Don't overflow by converting size to int.
18279 * bidi.c (bidi_dump_cached_states): Use pI to avoid cast.
18280 * data.c (Fnumber_to_string): Use pI instead of if-then-else-abort.
18281 * dbusbind.c (xd_append_arg): Use pI to avoid cast.
18282 (Fdbus_method_return_internal, Fdbus_method_error_internal): Likewise.
18283 * font.c (font_unparse_xlfd): Avoid potential buffer overrun on
18284 64-bit hosts.
18285 (font_unparse_xlfd, font_unparse_fcname): Use pI to avoid casts.
18286 * keyboard.c (record_char, modify_event_symbol): Use pI to avoid casts.
18287 * print.c (safe_debug_print, print_object): Likewise.
18288 (print_object): Don't overflow by converting EMACS_INT or EMACS_UINT
18289 to int.
18290 Use pI instead of if-then-else-abort. Use %p to avoid casts,
18291 avoiding the 0 flag, which is not portable.
18292 * process.c (Fmake_network_process): Use pI to avoid cast.
18293 * region-cache.c (pp_cache): Likewise.
18294 * xdisp.c (decode_mode_spec): Likewise.
18295 * xrdb.c (x_load_resources) [USE_MOTIF]: Use pI to avoid undefined
18296 behavior on 64-bit hosts with printf arg.
18297 * xselect.c (x_queue_event): Use %p to avoid casts, avoiding 0 flag.
18298 (x_stop_queuing_selection_requests): Likewise.
18299 (x_get_window_property): Don't truncate byte count to an 'int'
18300 when tracing.
18301
18302 * frame.c (frame_name_fnn_p): Get rid of strtol, which isn't right
18303 here, since it parses constructs like leading '-' and spaces,
18304 which are not wanted; and it overflows with large numbers.
18305 Instead, simply match F[0-9]+, which is what is wanted anyway.
18306
18307 * alloc.c: Remove unportable assumptions about struct layout.
18308 (SDATA_SELECTOR, SDATA_DATA_OFFSET): New macros.
18309 (SDATA_OF_STRING, SDATA_SIZE, allocate_string_data):
18310 (allocate_vectorlike, make_pure_vector): Use the new macros,
18311 plus offsetof, to remove unportable assumptions about struct layout.
18312 These assumptions hold on all porting targets that I know of, but
18313 they are not guaranteed, they're easy to remove, and removing them
18314 makes further changes easier.
18315
18316 * alloc.c (BLOCK BYTES): Fix typo by changing "ablock" to "ablocks".
18317 This doesn't fix a bug but makes the code clearer.
18318 (string_overrun_cookie): Now const. Use initializers that
18319 don't formally overflow signed char, to avoid warnings.
18320 (allocate_string_data) [GC_CHECK_STRING_OVERRUN]: Fix typo that
18321 can cause Emacs to crash when string overrun checking is enabled.
18322 (allocate_buffer): Don't assume sizeof (struct buffer) is a
18323 multiple of sizeof (EMACS_INT); it need not be, if
18324 alignof(EMACS_INT) < sizeof (EMACS_INT).
18325 (check_sblock, check_string_bytes, check_string_free_list): Protoize.
18326
18327 2011-04-26 Juanma Barranquero <lekktu@gmail.com>
18328
18329 * keyboard.c (QCrtl): Rename from Qrtl. All uses changed.
18330
18331 2011-04-26 Teodor Zlatanov <tzz@lifelogs.com>
18332
18333 * gnutls.c (emacs_gnutls_handshake): Return an error if we're not
18334 supposed to be handshaking. (Bug#8556)
18335 Reported by Paul Eggert <eggert@cs.ucla.edu>.
18336
18337 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
18338
18339 * lisp.h (Qdebug): List symbol.
18340 * eval.c (Qdebug): Restore global linkage.
18341 * keyboard.c (debug-on-event): New variable.
18342 (handle_user_signal): Break into debugger when debug-on-event
18343 matches the current signal symbol.
18344
18345 2011-04-25 Dan Nicolaescu <dann@ics.uci.edu>
18346
18347 * alloc.c (check_sblock, check_string_bytes)
18348 (check_string_free_list): Convert to standard C.
18349
18350 2011-04-25 Teodor Zlatanov <tzz@lifelogs.com>
18351
18352 * w32.c (emacs_gnutls_push): Fix typo.
18353
18354 2011-04-25 Eli Zaretskii <eliz@gnu.org>
18355
18356 * gnutls.c (emacs_gnutls_handshake): Avoid compiler warnings about
18357 "cast to pointer from integer of different size".
18358
18359 Improve doprnt and its use in verror. (Bug#8545)
18360 * doprnt.c (doprnt): Document the set of format control sequences
18361 supported by the function. Use SAFE_ALLOCA instead of always
18362 using `alloca'.
18363
18364 * eval.c (verror): Don't limit the buffer size at size_max-1, that
18365 is one byte too soon. Don't use xrealloc; instead xfree and
18366 xmalloc anew.
18367
18368 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
18369
18370 * gnutls.h: Add GNUTLS_STAGE_CALLBACKS enum to denote we're in the
18371 callbacks stage.
18372
18373 * gnutls.c: Renamed global_initialized to
18374 gnutls_global_initialized. Added internals for the
18375 :verify-hostname-error, :verify-error, and :verify-flags
18376 parameters of `gnutls-boot' and documented those parameters in the
18377 docstring. Start callback support.
18378 (emacs_gnutls_handshake): Add Woe32 support. Retry handshake
18379 unless a fatal error occurred. Call gnutls_alert_send_appropriate
18380 on error. Return error code.
18381 (emacs_gnutls_write): Call emacs_gnutls_handle_error.
18382 (emacs_gnutls_read): Likewise.
18383 (Fgnutls_boot): Return handshake error code.
18384 (emacs_gnutls_handle_error): New function.
18385 (wsaerror_to_errno): Likewise.
18386
18387 * w32.h (emacs_gnutls_pull): Add prototype.
18388 (emacs_gnutls_push): Likewise.
18389
18390 * w32.c (emacs_gnutls_pull): New function for GnuTLS on Woe32.
18391 (emacs_gnutls_push): Likewise.
18392
18393 2011-04-24 Claudio Bley <claudio.bley@gmail.com> (tiny change)
18394
18395 * process.c (wait_reading_process_output): Check if GnuTLS
18396 buffered some data internally if no FDs are set for TLS
18397 connections.
18398
18399 * makefile.w32-in (OBJ2): Add gnutls.$(O).
18400 (LIBS): Link to USER_LIBS.
18401 ($(BLD)/gnutls.$(0)): New target.
18402
18403 2011-04-24 Eli Zaretskii <eliz@gnu.org>
18404
18405 * xdisp.c (handle_single_display_spec): Rename the
18406 display_replaced_before_p argument into display_replaced_p, to
18407 make it consistent with the commentary. Fix typos in the
18408 commentary.
18409
18410 * textprop.c (syms_of_textprop): Remove dead code.
18411 (copy_text_properties): Delete obsolete commentary about an
18412 interface that was deleted long ago. Fix typos in the description
18413 of arguments.
18414
18415 * msdos.c (XMenuActivate, XMenuAddSelection): Adjust argument list
18416 to changes in oldXMenu/XMenu.h from 2011-04-16.
18417 <menu_help_message, prev_menu_help_message>: Constify.
18418 (IT_menu_make_room): menu->help_text is now `const char **';
18419 adjust.
18420
18421 * msdos.h (XMenuActivate, XMenuAddSelection): Adjust prototypes
18422 to changes in oldXMenu/XMenu.h from 2011-04-16.
18423 (struct XMenu): Declare `help_text' `const char **'.
18424
18425 * xfaces.c <Qunspecified>: Make extern again.
18426
18427 * syntax.c: Include sys/types.h before including regex.h, as
18428 required by POSIX.
18429
18430 * doc.c (get_doc_string): Improve the format passed to `error'.
18431
18432 * doprnt.c (doprnt): Improve commentary.
18433
18434 * term.c (init_tty) [MSDOS]: Fix 1st argument to maybe_fatal.
18435
18436 * Makefile.in (TAGS): Depend on $(M_FILE) and $(S_FILE), and scan
18437 them with etags.
18438
18439 * makefile.w32-in (globals.h): Add a dummy recipe, to make any
18440 changes in globals.h immediately force recompilation.
18441 (TAGS): Depend on $(CURDIR)/m/intel386.h and
18442 $(CURDIR)/s/ms-w32.h.
18443 (TAGS-gmake): Scan $(CURDIR)/m/intel386.h and $(CURDIR)/s/ms-w32.h.
18444
18445 * character.c (Fchar_direction): Function deleted.
18446 (syms_of_character): Don't defsubr it.
18447 <char-direction-table>: Deleted.
18448
18449 2011-04-23 Eli Zaretskii <eliz@gnu.org>
18450
18451 Fix doprnt so it could be used again safely in `verror'. (Bug#8435)
18452 * doprnt.c: Include limits.h.
18453 (SIZE_MAX): New macro.
18454 (doprnt): Return a size_t value. 2nd arg is now size_t.
18455 Many local variables are now size_t instead of int or unsigned.
18456 Improve overflow protection. Support `l' modifier for integer
18457 conversions. Support %l conversion. Don't assume an EMACS_INT
18458 argument for integer conversions and for %c.
18459
18460 * lisp.h (doprnt): Restore prototype.
18461
18462 * makefile.w32-in ($(BLD)/callint.$(O)): Depend on
18463 $(SRC)/character.h.
18464
18465 * Makefile.in (base_obj): Add back doprnt.o.
18466
18467 * deps.mk (doprnt.o): Add back prerequisites.
18468 (callint.o): Depend on character.h.
18469
18470 * eval.c (internal_lisp_condition_case): Include the handler
18471 representation in the error message.
18472 (verror): Call doprnt instead of vsnprintf. Fix an off-by-one bug
18473 when breaking from the loop.
18474
18475 * xdisp.c (vmessage): Call doprnt instead of vsnprintf.
18476
18477 * callint.c (Fcall_interactively): When displaying error message
18478 about invalid control letter, pass the character's codepoint, not
18479 a pointer to its multibyte form. Improve display of the character
18480 in octal and display also its hex code.
18481
18482 * character.c (char_string): Use %x to display the (unsigned)
18483 codepoint of an invalid character, to avoid displaying a bogus
18484 negative value.
18485
18486 * font.c (check_otf_features): Pass SDATA of SYMBOL_NAME to
18487 `error', not SYMBOL_NAME itself.
18488
18489 * coding.c (Fencode_sjis_char, Fencode_big5_char): Use %c for
18490 character arguments to `error'.
18491
18492 * charset.c (check_iso_charset_parameter): Fix incorrect argument
18493 to `error' in error message about FINAL_CHAR argument. Make sure
18494 FINAL_CHAR is a character, and use %c when it is passed as
18495 argument to `error'.
18496
18497 2011-04-23 Eli Zaretskii <eliz@gnu.org>
18498
18499 * s/ms-w32.h (localtime): Redirect to sys_localtime.
18500
18501 * w32.c: Include <time.h>.
18502 (sys_localtime): New function.
18503
18504 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
18505
18506 * xdisp.c (init_xdisp): Initialize echo_area_window (Bug#6451).
18507
18508 * buffer.c (syms_of_buffer): Doc fix (Bug#6902).
18509
18510 2011-04-23 Samuel Thibault <sthibault@debian.org> (tiny change)
18511
18512 * sysdep.c (wait_for_termination): On GNU Hurd, kill returns -1 on
18513 zombies (Bug#8467).
18514
18515 2011-04-19 Eli Zaretskii <eliz@gnu.org>
18516
18517 * syntax.h (SETUP_SYNTAX_TABLE_FOR_OBJECT): Fix setting of
18518 gl_state.e_property when gl_state.object is Qt.
18519
18520 * insdel.c (make_gap_larger): Remove limitation of buffer size
18521 to <= INT_MAX.
18522
18523 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
18524
18525 * xdisp.c (lookup_glyphless_char_display)
18526 (produce_glyphless_glyph): Handle cons cell entry in
18527 glyphless-char-display.
18528 (Vglyphless_char_display): Document it.
18529
18530 * term.c (produce_glyphless_glyph): Handle cons cell entry in
18531 glyphless-char-display.
18532
18533 2011-04-17 Chong Yidong <cyd@stupidchicken.com>
18534
18535 * xdisp.c (get_next_display_element): Remove unnecessary ifdefs.
18536
18537 * termhooks.h (FRAME_WINDOW_P): Remove duplicated definitions.
18538
18539 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): Add missing
18540 definition for no-X builds.
18541
18542 2011-04-16 Paul Eggert <eggert@cs.ucla.edu>
18543
18544 Static checks with GCC 4.6.0 and non-default toolkits.
18545
18546 * s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF): Protoize decl.
18547
18548 * process.c (keyboard_bit_set): Define only if SIGIO.
18549 (send_process_trap): Mark it with NO_RETURN if it doesn't return.
18550 (send_process): Repair possible setjmp clobbering.
18551
18552 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Don't pass extra arg to 'fatal'.
18553
18554 * eval.c: Include <stdio.h>, for vsnprintf on non-GNU/Linux hosts.
18555
18556 * data.c (arith_error): Mark with NO_RETURN if it doesn't return.
18557
18558 * alloc.c (bytes_used_when_full, SPARE_MEMORY, BYTES_USED):
18559 Define only if needed.
18560
18561 * sysdep.c (_FILE_OFFSET_BITS): Make this hack even uglier
18562 by pacifying GCC about it. Maybe it's time to retire it?
18563 * xfaces.c (USG, __TIMEVAL__): Likewise.
18564
18565 * dispextern.h (struct redisplay_interface): Rename param
18566 to avoid shadowing.
18567 * termhooks.h (struct terminal): Likewise.
18568 * xterm.c (xembed_send_message): Likewise.
18569
18570 * insdel.c (make_gap_smaller): Define only if
18571 USE_MMAP_FOR_BUFFERS || REL_ALLOC || DOUG_LEA_MALLOC.
18572
18573 * keyboard.c (read_char): Make a var volatile so longjmp won't clobber
18574 it.
18575
18576 * emacs.c (MAX_HEAP_BSS_DIFF, my_edata): Move to where they're used,
18577 so that we aren't warned about unused symbols.
18578
18579 * xfns.c (Fx_file_dialog): Rename local to avoid shadowing.
18580
18581 * xdisp.c (x_produce_glyphs): Mark var as initialized (Bug#8512).
18582
18583 * xfns.c (x_real_positions): Mark locals as initialized.
18584
18585 * xmenu.c (xmenu_show): Don't use uninitialized vars.
18586
18587 * xterm.c: Fix problems found by static analysis with other toolkits.
18588 (toolkit_scroll_bar_interaction): Define and use only if USE_X_TOOLKIT.
18589 (x_dispatch_event): Declare static if USE_GTK, and
18590 define if USE_GTK || USE_X_TOOLKIT.
18591 (SET_SAVED_BUTTON_EVENT): Define only if USE_X_TOOLKIT || USE_GTK.
18592 * xterm.h (x_dispatch_event): Extern only if USE_X_TOOLKIT.
18593 * xterm.c, xterm.h (x_mouse_leave): Bring this function back, but only
18594 if defined HAVE_MENUS && !defined USE_X_TOOLKIT && !defined USE_GTK.
18595
18596 * xmenu.c (menu_help_callback): Pointer type fixes.
18597 Use const pointers when pointing at readonly data. Avoid pointer
18598 signedness clashes.
18599 (FALSE): Remove unused macro.
18600 (update_frame_menubar): Remove unused decl.
18601
18602 * xfns.c (Fx_hide_tip): Move locals to avoid shadowing.
18603
18604 * menu.c (push_submenu_start, push_submenu_end): Do not define unless
18605 USE_X_TOOLKIT || USE_GTK || HAVE_NS || defined HAVE_NTGUI.
18606 (single_menu_item): Rename local to avoid shadowing.
18607
18608 * keyboard.c (make_lispy_event): Remove unused local var.
18609
18610 * frame.c, frame.h (x_get_resource_string): Bring this back, but
18611 only if HAVE_X_WINDOWS && !USE_X_TOOLKIT.
18612
18613 * bitmaps: Change bitmaps from unsigned char back to the X11
18614 compatible char. Avoid the old compiler warnings about
18615 out-of-range initializers by using, for example, '\xab' rather
18616 than 0xab.
18617
18618 * xgselect.c (xgselect_initialize): Check vs interface
18619 even if ! (defined (USE_GTK) || defined (HAVE_GCONF)).
18620
18621 * xmenu.c (xmenu_show): Rename parm to avoid shadowing.
18622
18623 * xterm.c (x_create_toolkit_scroll_bar): Use const * for pointers
18624 to read-only memory.
18625
18626 * fns.c (vector): Remove; this old hack is no longer needed.
18627
18628 * xsmfns.c (create_client_leader_window): Rename shadowing arg.
18629 Remove unused var.
18630 (gdk_x11_set_sm_client_id) [!USE_GTK]: Don't define.
18631
18632 * xrdb.c (x_load_resources): Omit unused local.
18633
18634 * xfns.c (free_frame_menubar, atof): Remove duplicate decls.
18635 (x_window): Rename locals to avoid shadowing.
18636 (USG): Use the kludged USG macro, to pacify gcc.
18637
18638 * xterm.c (x_alloc_nearest_color_for_widget): Remove; unused.
18639 (x_term_init): Remove local to avoid shadowing.
18640
18641 * xfns.c, xterm.c (_XEditResCheckMessages): Protoize decl.
18642
18643 * xdisp.c, dispextern.h (set_vertical_scroll_bar): Now extern if
18644 USE_TOOLKIT_SCROLL_BARS && !USE_GTK, as xterm.c needs it then.
18645
18646 2011-04-16 Eli Zaretskii <eliz@gnu.org>
18647
18648 * gnutls.c (Fgnutls_boot): Don't pass Lisp_Object to `error'.
18649
18650 Fix regex.c, syntax.c and friends for buffers > 2GB.
18651 * syntax.h (struct gl_state_s): Declare character position members
18652 EMACS_INT.
18653
18654 * syntax.c (update_syntax_table): Declare 2nd argument EMACS_INT.
18655
18656 * textprop.c (verify_interval_modification, interval_of):
18657 Declare arguments EMACS_INT.
18658
18659 * intervals.c (adjust_intervals_for_insertion): Declare arguments
18660 EMACS_INT.
18661
18662 * intervals.h (CHECK_TOTAL_LENGTH): Cast to EMACS_INT, not `int'.
18663
18664 * indent.c (Fvertical_motion): Local variable it_start is now
18665 EMACS_INT.
18666
18667 * regex.c (re_match, re_match_2, re_match_2_internal)
18668 (bcmp_translate, regcomp, regexec, print_double_string)
18669 (group_in_compile_stack, re_search, re_search_2, regex_compile)
18670 (re_compile_pattern, re_exec): Declare arguments and local
18671 variables `size_t' and `ssize_t' and return values `regoff_t', as
18672 appropriate.
18673 (POP_FAILURE_REG_OR_COUNT) <pfreg>: Declare `long'.
18674 (CHECK_INFINITE_LOOP) <failure>: Declare `ssize_t'.
18675 <compile_stack_type>: `size' and `avail' are now `size_t'.
18676
18677 * regex.h <regoff_t>: Use ssize_t, not int.
18678 (re_search, re_search_2, re_match, re_match_2): Arguments that
18679 specify buffer/string position and length are now ssize_t and
18680 size_t. Return type is regoff_t.
18681
18682 2011-04-16 Ben Key <bkey76@gmail.com>
18683
18684 * nsfont.m: Fixed bugs in ns_get_family and
18685 ns_descriptor_to_entity that were caused by using free to
18686 deallocate memory blocks that were allocated by xmalloc (via
18687 xstrdup). This caused Emacs to crash when compiled with
18688 XMALLOC_OVERRUN_CHECK defined (when Emacs was configured with
18689 --enable-checking=xmallocoverrun). xfree is now used to
18690 deallocate these memory blocks.
18691
18692 2011-04-15 Paul Eggert <eggert@cs.ucla.edu>
18693
18694 * sysdep.c (emacs_read): Remove unnecessary check vs MAX_RW_COUNT.
18695
18696 emacs_write: Accept and return EMACS_INT for sizes.
18697 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html
18698 et seq.
18699 * gnutls.c, gnutls.h (emacs_gnutls_read, emacs_gnutls_write):
18700 Accept and return EMACS_INT.
18701 (emacs_gnutls_write): Return the number of bytes written on
18702 partial writes.
18703 * sysdep.c, lisp.h (emacs_read, emacs_write): Likewise.
18704 (emacs_read, emacs_write): Remove check for negative size, as the
18705 Emacs source code has been audited now.
18706 * sysdep.c (MAX_RW_COUNT): New macro, to work around kernel bugs.
18707 (emacs_read, emacs_write): Use it.
18708 * process.c (send_process): Adjust to the new signatures of
18709 emacs_write and emacs_gnutls_write. Do not attempt to store
18710 a byte offset into an 'int'; it might overflow.
18711 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00483.html
18712
18713 * sound.c: Don't assume sizes fit in 'int'.
18714 (struct sound_device.period_size, alsa_period_size):
18715 Return EMACS_INT, not int.
18716 (struct sound_device.write, vox_write, alsa_write):
18717 Accept EMACS_INT, not int.
18718 (wav_play, au_play): Use EMACS_INT to store sizes and to
18719 record read return values.
18720
18721 2011-04-15 Ben Key <bkey76@gmail.com>
18722
18723 * keyboard.c (Qundefined): Don't declare static since it is used
18724 in nsfns.m.
18725 * xfaces.c (Qbold, Qexpanded, Qitalic, Qcondensed): Don't declare
18726 static since they are used in nsfont.m.
18727
18728 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
18729
18730 * process.c (Qprocessp): Don't declare static.
18731 * lisp.h (Qprocessp): Declare again.
18732
18733 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
18734
18735 * font.c (Qopentype): Don't make static (used from w32uniscribe.c).
18736
18737 2011-04-14 Paul Eggert <eggert@cs.ucla.edu>
18738
18739 Improve C-level modularity by making more things 'static'.
18740
18741 Don't publish debugger-only interfaces to other modules.
18742 * lisp.h (safe_debug_print, debug_output_compilation_hack):
18743 (verify_bytepos, count_markers): Move decls to the only modules
18744 that need them.
18745 * region-cache.h (pp_cache): Likewise.
18746 * window.h (check_all_windows): Likewise.
18747 * marker.c, print.c, region-cache.c, window.c: Decls moved here.
18748
18749 * sysdep.c (croak): Now static, if
18750 defined TIOCNOTTY || defined USG5 || defined CYGWIN.
18751 * syssignal.h (croak): Declare only if not static.
18752
18753 * alloc.c (refill_memory_reserve): Now static if
18754 !defined REL_ALLOC || defined SYSTEM_MALLOC.
18755 * lisp.h (refill_memory_reserve): Declare only if not static.
18756
18757 * xsettings.c, xsettings.h (xsettings_get_system_normal_font):
18758 Define only if USE_LUCID.
18759
18760 * xrdb.c (x_customization_string, x_rm_string): Now static.
18761
18762 * xmenu.c (x_menu_wait_for_event): Export only if USE_MOTIF.
18763 * xterm.h (x_menu_wait_for_event): Declare only if USE_MOTIF.
18764
18765 * xdisp.c (draw_row_with_mouse_face): Now static.
18766 * dispextern.h (draw_row_with_mouse_fave): Remove decl.
18767
18768 * window.h (check_all_windows): Mark externally visible.
18769
18770 * window.c (window_deletion_count): Now static.
18771
18772 * undo.c: Make symbols static if they're not exported.
18773 (last_undo_buffer, last_boundary_position, pending_boundary):
18774 Now static.
18775
18776 * textprop.c (interval_insert_behind_hooks): Now static.
18777 (interval_insert_in_front_hooks): Likewise.
18778
18779 * term.c: Make symbols static if they're not exported.
18780 (tty_turn_off_highlight, get_tty_terminal, max_frame_cols):
18781 (max_frame_lines, tty_set_terminal_modes):
18782 (tty_reset_terminal_modes, tty_turn_off_highlight):
18783 (get_tty_terminal): Now static.
18784 (term_mouse_moveto): Do not define if HAVE_WINDOW_SYSTEM.
18785 * termhooks.h (term_mouse_moveto): Do not declare if
18786 HAVE_WINDOW_SYSTEM.
18787 * dispextern.h (tty_set_terminal_modes, tty_reset_terminal_modes):
18788 (tty_turn_off_highlight, get_tty_terminal): Remove decls.
18789
18790 * sysdep.c: Make symbols static if they're not exported.
18791 (emacs_get_tty, emacs_set_tty, old_fcntl_flags, old_fcntl_owner):
18792 Now static.
18793 (sigprocmask_set, full_mask): Remove; unused.
18794 (wait_debugging): Mark as visible.
18795 * syssignal.h (SIGFULLMASK, full_mask): Remove decls.
18796 * systty.h (emacs_get_tty, emacs_set_tty): Remove decls.
18797
18798 * syntax.c (syntax_temp): Define only if !__GNUC__.
18799
18800 * sound.c (current_sound_device, current_sound): Now static.
18801
18802 * search.c (searchbufs, searchbuf_head): Now static.
18803
18804 * scroll.c (scroll_cost): Remove; unused.
18805 * dispextern.h (scroll_cost): Remove decl.
18806
18807 * region-cache.h (pp_cache): Mark as externally visible.
18808
18809 * process.c: Make symbols static if they're not exported.
18810 (process_tick, update_tick, create_process, chan_process):
18811 (Vprocess_alist, proc_buffered_char, datagram_access):
18812 (fd_callback_data, send_process_frame, process_sent_to): Now static.
18813 (deactivate_process): Mark defn as static, as well as decl.
18814 * lisp.h (create_process): Remove decl.
18815 * process.h (chan_process, Vprocess_alist): Remove decls.
18816
18817 * print.c: Make symbols static if they're not exported.
18818 (print_depth, new_backquote_output, being_printed, print_buffer):
18819 (print_buffer_size, print_buffer_pos, print_buffer_pos_byte):
18820 (print_interval, print_number_index, initial_stderr_stream):
18821 Now static.
18822 * lisp.h (Fprinc): Remove decl.
18823 (debug_output_compilation_hack): Mark as externally visible.
18824
18825 * sysdep.c (croak): Move decl from here to syssignal.h.
18826 * syssignal.h (croak): Put it here, so the API can be checked when
18827 'croak' is called from dissociate_if_controlling_tty.
18828
18829 * minibuf.c: Make symbols static if they're not exported.
18830 (minibuf_save_list, choose_minibuf_frame): Now static.
18831 * lisp.h (choose_minibuf_frame): Remove decl.
18832
18833 * lisp.h (verify_bytepos, count_markers): Mark as externally visible.
18834
18835 * lread.c: Make symbols static if they're not exported.
18836 (read_objects, initial_obarray, oblookup_last_bucket_number):
18837 Now static.
18838 (make_symbol): Remove; unused.
18839 * lisp.h (initial_obarray, make_symbol): Remove decls.
18840
18841 * keyboard.c: Make symbols static if they're not exported.
18842 (single_kboard, recent_keys_index, total_keys, recent_keys):
18843 (this_command_key_count_reset, raw_keybuf, raw_keybuf_count):
18844 (this_single_command_key_start, echoing, last_auto_save):
18845 (read_key_sequence_cmd, dribble, recursive_edit_unwind):
18846 (command_loop, echo_now, keyboard_init_hook, help_char_p):
18847 (quit_throw_to_read_char, command_loop_2, top_level_1, poll_timer):
18848 (Vlispy_mouse_stem, double_click_count):
18849 Now static.
18850 (force_auto_save_soon): Define only if SIGDANGER.
18851 (ignore_mouse_drag_p): Now static if
18852 !defined HAVE_WINDOW_SYSTEM || defined USE_GTK || defined HAVE_NS.
18853 (print_help): Remove; unused.
18854 (stop_character, last_timer_event): Mark as externally visible.
18855 * keyboard.h (ignore_mouse_drag_p): Declare only if
18856 defined HAVE_WINDOW_SYSTEM && !defined USE_GTK && !defined HAVE_NS.
18857 (echo_now, help_char_p, quit_throw_to_read_char): Remove decls.
18858 * lisp.h (echoing): Remove decl.
18859 (force_auto_save_soon): Declare only if SIGDANGER.
18860 * xdisp.c (redisplay_window): Simplify code, to make it more
18861 obvious that ignore_mouse_drag_p is not accessed if !defined
18862 USE_GTK && !defined HAVE_NS.
18863
18864 * intervals.c: Make symbols static if they're not exported.
18865 (merge_properties_sticky, merge_interval_right, delete_interval):
18866 Now static.
18867 * intervals.h (merge_interval_right, delete_interval): Remove decls.
18868
18869 * insdel.c: Make symbols static if they're not exported.
18870 However, leave prepare_to_modify_buffer alone. It's never
18871 called from outside this function, but that appears to be a bug.
18872 (combine_after_change_list, combine_after_change_buffer):
18873 (adjust_after_replace, signal_before_change): Now static.
18874 (adjust_after_replace_noundo): Remove; unused.
18875 * lisp.h (adjust_after_replace, adjust_after_replace_noundo):
18876 (signal_before_change): Remove decls.
18877
18878 * indent.c (val_compute_motion, val_vmotion): Now static.
18879
18880 * image.c: Make symbols static if they're not exported.
18881 * dispextern.h (x_create_bitmap_from_xpm_data): Do not declare
18882 if USE_GTK.
18883 * image.c (x_create_bitmap_from_xpm_data): Do not define if USE_GTK.
18884 (xpm_color_cache, ct_table, ct_colors_allocated): Now static.
18885
18886 * fringe.c (standard_bitmaps): Now static.
18887 (max_used_fringe_bitmap): Now static, unless HAVE_NS.
18888
18889 * frame.c: Make symbols static if they're not exported.
18890 (x_report_frame_params, make_terminal_frame): Now static.
18891 (get_frame_param): Now static, unless HAVE_NS.
18892 (x_fullscreen_adjust): Define if WINDOWSNT, not if HAVE_WINDOW_SYSTEM.
18893 (x_get_resource_string): Remove; not used.
18894 * frame.h (make_terminal_frame, x_report_frame_params):
18895 (x_get_resource_string); Remove decls.
18896 (x_fullscreen_adjust): Declare only if WINDOWSNT.
18897 * lisp.h (get_frame_param): Declare only if HAVE_NS.
18898
18899 * font.c, fontset.c: Make symbols static if they're not exported.
18900 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): New macro.
18901 (FACE_SUITABLE_FOR_CHAR_P): Use it.
18902 * font.c (font_close_object): Now static.
18903 * font.h (font_close_object): Remove.
18904 * fontset.c (FONTSET_OBJLIST): Remove.
18905 (free_realized_fontset) #if-0 the body, which does nothing.
18906 (face_suitable_for_char_p): #if-0, as it's never called.
18907 * fontset.h (face_suitable_for_char_p): Remove decl.
18908 * xfaces.c (face_at_string_position):
18909 Use FACE_SUITABLE_FOR_ASCII_CHAR_P, not FACE_SUITABLE_FOR_CHAR_P,
18910 since 0 is always ASCII.
18911
18912 * fns.c (weak_hash_tables): Now static.
18913
18914 * fileio.c: Make symbols static if they're not exported.
18915 (auto_saving, auto_save_mode_bits, auto_save_error_occurred):
18916 (Vwrite_region_annotation_buffers): Now static.
18917
18918 * eval.c: Make symbols static if they're not exported.
18919 (backtrace_list, lisp_eval_depth, when_entered_debugger): Now static.
18920 * lisp.h (backtrace_list): Remove decl.
18921
18922 * emacs.c: Make symbols static if they're not exported.
18923 (malloc_state_ptr, malloc_using_checking, syms_of_emacs):
18924 (fatal_error_code, fatal_error_signal_hook, standard_args):
18925 Now static.
18926 (fatal_error_signal): Now static, unless FLOAT_CATCH_SIGKILL.
18927 (DEFINE_DUMMY_FUNCTION): Mark function as externally visible.
18928 (__CTOR_LIST__, __DTOR_LIST__): Now externally visible.
18929 * lisp.h (fatal_error_signal_hook): Remove decl.
18930 (fatal_error_signal): Declare only if FLOAT_CATCH_SIGKILL.
18931
18932 * editfns.c: Move a (normally-unused) function to its only use.
18933 * editfns.c, lisp.h (get_operating_system_release): Remove.
18934 * process.c (init_process) [DARWIN_OS]: Do it inline, as it is not
18935 worth the hassle of breaking this out.
18936
18937 * xterm.c: Make symbols static if they're not exported.
18938 (x_raise_frame, x_lower_frame, x_wm_set_window_state):
18939 (x_wm_set_icon_pixmap, x_initialize, XTread_socket_fake_io_error):
18940 (x_destroy_window, x_delete_display):
18941 Now static.
18942 (x_dispatch_event): Now static if ! (USE_MOTIF || USE_X_TOOLKIT).
18943 (x_mouse_leave): Remove; unused.
18944 * xterm.h (x_display_info_for_name, x_raise_frame, x_lower_frame):
18945 (x_destroy_window, x_wm_set_window_state, x_wm_set_icon_pixmap):
18946 (x_delete_display, x_initialize, x_set_border_pixel, x_screen_planes):
18947 Remove decls.
18948 (x_mouse_leave): Declare only if WINDOWSNT.
18949 (x_dispatch_event): Declare only if USE_MOTIF or USE_X_TOOLKIT.
18950 (xic_create_fontsetname): Declare only if HAVE_X_WINDOWS &&
18951 USE_X_TOOLKIT.
18952
18953 * ftxfont.c: Make symbols static if they're not exported.
18954 (ftxfont_driver): Export only if !defined HAVE_XFT && def8ined
18955 HAVE_FREETYPE.
18956 * font.h (ftxfont_driver): Likewise.
18957
18958 * xfns.c: Make symbols static if they're not exported.
18959 (x_last_font_name, x_display_info_for_name):
18960 (x_set_foreground_color, x_set_background_color, x_set_mouse_color):
18961 (x_set_cursor_color, x_set_border_pixel, x_set_border_color):
18962 (x_set_cursor_type, x_set_icon_type, x_set_icon_name):
18963 (x_set_scroll_bar_foreground, x_set_scroll_bar_background):
18964 (x_explicitly_set_name, x_set_title, xic_defaut_fontset, tip_timer):
18965 (last_show_tip_args): Now static.
18966 (xic_defaut_fontset, xic_create_fontsetname): Define only if
18967 defined HAVE_X_WINDOWS && defined USE_X_TOOLKIT
18968 (x_screen_planes): Remove; unused.
18969 * dispextern.h (x_screen_planes): Remove decl.
18970
18971 * dispnew.c: Make symbols static if they're not exported.
18972 * dispextern.h (redraw_garbaged_frames, scrolling):
18973 (increment_row_positions): Remove.
18974 * dispnew.c (new_glyph_matrix, increment_row_positions, scrolling):
18975 (delayed_size_change, glyph_matrix_count, glyph_pool_count):
18976 Now static.
18977 (redraw_garbaged_frames): Remove; unused.
18978
18979 * xfaces.c: Make symbols static if they're not exported.
18980 * dispextern.h (ascii_face_of_lisp_face, free_realized_face):
18981 Remove decls.
18982 * xterm.h (defined_color): Remove decls.
18983 (x_free_dpy_colors): Declare only if USE_X_TOOLKIT.
18984 * xfaces.c (tty_suppress_bold_inverse_default_colors_p):
18985 (menu_face_changed_default, defined_color, free_realized_face):
18986 (x_free_dpy_colors): Define only if USE_X_TOOLKIT.
18987 (ascii_face_of_lisp_face): Remove; unused.
18988
18989 * xdisp.c: Make symbols static if they're not exported.
18990 * dispextern.h (scratch_glyph_row, window_box_edges):
18991 (glyph_to_pixel_coords, set_cursor_from_row):
18992 (get_next_display_element, set_iterator_to_next):
18993 (highlight_trailing_whitespace, frame_to_window_pixel_xy):
18994 (show_mouse_face): Remove decls
18995 * frame.h (message_buf_print): Likewise.
18996 * lisp.h (pop_message, set_message, check_point_in_composition):
18997 Likewise.
18998 * xterm.h (set_vertical_scroll_bar): Likewise.
18999 * xdisp.c (list_of_error, Vmessage_stack, line_number_displayed):
19000 (message_buf_print, scratch_glyph_row, displayed_buffer):
19001 (set_iterator_to_next, pop_message, set_message, set_cursor_from_row):
19002 (get_next_display_element, show_mouse_face, window_box_edges):
19003 (frame_to_window_pixel_xy, check_point_in_composition):
19004 (set_vertical_scroll_bar, highlight_trailing_whitespace): Now static.
19005 (glyph_to_pixel_coords): Remove; unused.
19006
19007 * dired.c (file_name_completion): Now static.
19008
19009 * dbusbind.c (xd_in_read_queued_messages): Now static.
19010
19011 * lisp.h (circular_list_error, FOREACH): Remove; unused.
19012 * data.c (circular_list_error): Remove.
19013
19014 * commands.h (last_point_position, last_point_position_buffer):
19015 (last_point_position_window): Remove decls.
19016 * keyboard.c: Make these variables static.
19017
19018 * coding.h (coding, code_convert_region, encode_coding_gap):
19019 Remove decls.
19020 * coding.c (Vsjis_coding_system, Vbig5_coding_system):
19021 (iso_code_class, detect_coding, code_convert_region): Now static.
19022 (encode_coding_gap): Remove; unused.
19023
19024 * chartab.c (chartab_chars, chartab_bits): Now static.
19025
19026 * charset.h (charset_iso_8859_1): Remove decl.
19027 * charset.c (charset_iso_8859_1, charset_emacs, map_charset_for_dump):
19028 Now static.
19029
19030 * ccl.h (check_ccl_update, Vccl_program_table): Remove decls.
19031 * ccl.c (Vccl_program_table): Now static.
19032 (check_ccl_update): Remove; unused.
19033
19034 * category.c (SET_CATEGORY_SET, set_category_set): Move here.
19035 * category.h: ... from here.
19036 * category.c (check_category_table, set_category_set): Now static.
19037
19038 * casetab.c (Vascii_upcase_table, Vascii_eqv_table): Now static.
19039 * lisp.h: Remove these decls.
19040
19041 * buffer.c (buffer_count): Remove unused var.
19042
19043 * bidi.c (bidi_dump_cached_states): Mark as externally visible,
19044 so that it's not optimized away.
19045 (bidi_ignore_explicit_marks_for_paragraph_level): Likewise.
19046 * dispextern.h (bidi_dump_cached_states): Remove, since it's
19047 exported only to the debugger.
19048
19049 * atimer.c (alarm_signal_handler, run_all_atimers): Now static.
19050 * atimer.h (run_all_atimers): Remove; not exported.
19051
19052 font.c: Make copy_font_spec and merge_font_spec ordinary C functions.
19053 * font.c (copy_font_spec): Rename from Fcopy_font_spec, since it
19054 was inaccessible from Lisp.
19055 (merge_font_spec): Likewise, renaming from Fmerge_font_spec.
19056 * font.c, font.h, fontset.c, xfaces.c, xfont.c: Change all uses.
19057
19058 alloc.c: Import and export fewer symbols, and remove unused items.
19059 * lisp.h (suppress_checking, die): Declare only if ENABLE_CHECKING
19060 is defined.
19061 (suppress_checking): Add EXTERNALLY_VISIBLE attribute, so that
19062 it's not optimized away by whole-program optimization.
19063 (message_enable_multibyte, free_misc): Remove.
19064 (catchlist, handlerlist, mark_backtrace):
19065 Declare only if BYTE_MARK_STACK.
19066 (mark_byte_stack): Likewise, fixing a ifdef-vs-if typo.
19067 * alloc.c (pure): Export only if VIRT_ADDR_VARIES is defined.
19068 (message_enable_multibyte): Remove decl.
19069 (free_misc, interval_free_list, float_block, float_block_index):
19070 (n_float_blocks, float_free_list, cons_block, cons_block_index):
19071 (cons_free_list, last_marked_index):
19072 Now static.
19073 (suppress_checking, die): Define only if ENABLE_CHECKING is defined.
19074 * eval.c (catchlist, handlerlist): Export only if BYTE_MARK_STACK.
19075 (mark_backtrace): Define only if BYTE_MARK_STACK.
19076 * xdisp.c (message_enable_multibyte): Now static.
19077
19078 Declare Lisp_Object Q* variables to be 'static' if not exported.
19079 This makes it easier for human readers (and static analyzers)
19080 to see whether these variables are used from other modules.
19081 * alloc.c, buffer.c, bytecode.c, callint.c, casetab.c, category.c:
19082 * ccl.c, character.c, charset.c, cmds.c, coding.c, composite.c:
19083 * data.c, dbusbind.c, dired.c, editfns.c, eval.c, fileio.c, fns.c:
19084 * font.c, frame.c, fringe.c, ftfont.c, image.c, keyboard.c, keymap.c:
19085 * lread.c, macros.c, minibuf.c, print.c, process.c, search.c:
19086 * sound.c, syntax.c, textprop.c, window.c, xdisp.c, xfaces.c, xfns.c:
19087 * xmenu.c, xselect.c:
19088 Declare Q* vars static if they are not used in other modules.
19089 * ccl.h, character.h, charset.h, coding.h, composite.h, font.h:
19090 * frame.h, intervals.h, keyboard.h, lisp.h, process.h, syntax.h:
19091 Remove decls of unexported vars.
19092 * keyboard.h (EVENT_HEAD_UNMODIFIED): Remove now-unused macro.
19093
19094 * lisp.h (DEFINE_FUNC): Make sname 'static'.
19095
19096 Make Emacs functions such as Fatom 'static' by default.
19097 This makes it easier for human readers (and static analyzers)
19098 to see whether these functions can be called from other modules.
19099 DEFUN now defines a static function. To make the function external
19100 so that it can be used in other C modules, use the new macro DEFUE.
19101 * lisp.h (Funibyte_char_to_multibyte, Fsyntax_table_p):
19102 (Finit_image_library):
19103 (Feval_region, Fbacktrace, Ffetch_bytecode, Fswitch_to_buffer):
19104 (Ffile_executable_p, Fmake_symbolic_link, Fcommand_execute):
19105 (Fget_process, Fdocumentation_property, Fbyte_code, Ffile_attributes):
19106 Remove decls, since these functions are now static.
19107 (Funintern, Fget_internal_run_time): New decls, since these functions
19108 were already external.
19109
19110 * alloc.c, buffer.c, callint.c, callproc.c, casefiddle.c, casetab.c:
19111 * ccl.c, character.c, chartab.c, cmds.c, coding.c, data.c, dispnew.c:
19112 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, floatfns.c:
19113 * fns.c, font.c, fontset.c, frame.c, image.c, indent.c:
19114 * keyboard.c, keymap.c, lread.c:
19115 * macros.c, marker.c, menu.c, minibuf.c, print.c, process.c, search.c:
19116 * syntax.c, term.c, terminal.c, textprop.c, undo.c:
19117 * window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xsettings.c:
19118 Mark functions with DEFUE instead of DEFUN,
19119 if they are used in other modules.
19120 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): New forward
19121 decls for now-static functions.
19122 * buffer.h (Fdelete_overlay): Remove decl.
19123 * callproc.c (Fgetenv_internal): Mark as internal.
19124 * composite.c (Fremove_list_of_text_properties): Remove decl.
19125 (Fcomposition_get_gstring): New forward static decl.
19126 * composite.h (Fcomposite_get_gstring): Remove decl.
19127 * dired.c (Ffile_attributes): New forward static decl.
19128 * doc.c (Fdocumntation_property): New forward static decl.
19129 * eval.c (Ffetch_bytecode): New forward static decl.
19130 (Funintern): Remove extern decl; now in .h file where it belongs.
19131 * fileio.c (Fmake_symbolic_link): New forward static decl.
19132 * image.c (Finit_image_library): New forward static decl.
19133 * insdel.c (Fcombine_after_change_execute): Make forward decl static.
19134 * intervals.h (Fprevious_property_change):
19135 (Fremove_list_of_text_properties): Remove decls.
19136 * keyboard.c (Fthis_command_keys): Remove decl.
19137 (Fcommand_execute): New forward static decl.
19138 * keymap.c (Flookup_key): New forward static decl.
19139 (Fcopy_keymap): Now static.
19140 * keymap.h (Flookup_key): Remove decl.
19141 * process.c (Fget_process): New forward static decl.
19142 (Fprocess_datagram_address): Mark as internal.
19143 * syntax.c (Fsyntax_table_p): New forward static decl.
19144 (skip_chars): Remove duplicate decl.
19145 * textprop.c (Fprevious_property_change): New forward static decl.
19146 * window.c (Fset_window_fringes, Fset_window_scroll_bars):
19147 Now internal.
19148 (Fset_window_margins, Fset_window_vscroll): New forward static decls.
19149 * window.h (Fset_window_vscroll, Fset_window_margins): Remove decls.
19150
19151 * editfns.c (Fformat): Remove unreachable code.
19152
19153 2011-04-14 Andreas Schwab <schwab@linux-m68k.org>
19154
19155 * fileio.c (Finsert_file_contents): Fix typo in 2005-05-13
19156 change. (Bug#8496)
19157
19158 2011-04-13 Eli Zaretskii <eliz@gnu.org>
19159
19160 * xdisp.c (handle_invisible_prop): Don't call bidi_paragraph_init
19161 when at ZV. (Bug#8487)
19162
19163 2011-04-12 Andreas Schwab <schwab@linux-m68k.org>
19164
19165 * charset.c (Fclear_charset_maps): Use xfree instead of free.
19166 (Bug#8437)
19167 * keyboard.c (parse_tool_bar_item): Likewise.
19168 * sound.c (sound_cleanup, alsa_close): Likewise.
19169 * termcap.c (tgetent): Likewise.
19170 * xfns.c (x_default_font_parameter): Likewise.
19171 * xsettings.c (read_and_apply_settings): Likewise.
19172
19173 * alloc.c (overrun_check_malloc, overrun_check_realloc)
19174 (overrun_check_free): Protoize.
19175
19176 2011-04-12 Paul Eggert <eggert@cs.ucla.edu>
19177
19178 * sysdep.c (emacs_read, emacs_write): Check for negative sizes
19179 since callers should never pass a negative size.
19180 Change the signature to match that of plain 'read' and 'write'; see
19181 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00397.html>.
19182 * lisp.h: Update prototypes of emacs_write and emacs_read.
19183
19184 2011-04-11 Eli Zaretskii <eliz@gnu.org>
19185
19186 * xdisp.c (redisplay_window): Don't try to determine the character
19187 position of the scroll margin if the window start point w->startp
19188 is outside the buffer's accessible region. (Bug#8468)
19189
19190 2011-04-10 Eli Zaretskii <eliz@gnu.org>
19191
19192 Fix write-region and its subroutines for buffers > 2GB.
19193 * fileio.c (a_write, e_write): Modify declaration of arguments and
19194 local variables to support buffers larger than 2GB.
19195 (Fcopy_file): Use EMACS_INT for return value of emacs_read.
19196
19197 * sysdep.c (emacs_write, emacs_read): Use ssize_t for last
19198 argument, local variables, and return value.
19199
19200 * lisp.h: Update prototypes of emacs_write and emacs_read.
19201
19202 * sound.c (vox_write): Use ssize_t for return value of emacs_write.
19203
19204 2011-04-10 Paul Eggert <eggert@cs.ucla.edu>
19205
19206 * xdisp.c (vmessage): Use memchr, not strnlen, which some hosts lack.
19207
19208 Fix more problems found by GCC 4.6.0's static checks.
19209
19210 * xdisp.c (vmessage): Use a better test for character truncation.
19211
19212 * charset.c (load_charset_map): <, not <=, for optimization,
19213 and to avoid potential problems with integer overflow.
19214 * chartab.c (sub_char_table_set_range, char_table_set_range): Likewise.
19215 * casetab.c (set_identity, shuffle): Likewise.
19216 * editfns.c (Fformat): Likewise.
19217 * syntax.c (skip_chars): Likewise.
19218
19219 * xmenu.c (set_frame_menubar): Allocate smaller local vectors.
19220 This also lets GCC 4.6.0 generate slightly better loop code.
19221
19222 * callint.c (Fcall_interactively): <, not <=, for optimization.
19223 (Fcall_interactively): Count the number of arguments produced,
19224 not the number of arguments given. This is simpler and lets GCC
19225 4.6.0 generate slightly better code.
19226
19227 * ftfont.c: Distingish more carefully between FcChar8 and char.
19228 The previous code passed unsigned char * to a functions like
19229 strlen and xstrcasecmp that expect char *, which does not
19230 conform to the C standard.
19231 (get_adstyle_property, ftfont_pattern_entity): Use FcChar8 for
19232 arguments to FcPatternGetString, and explicitly cast FcChar8 * to
19233 char * when the C standard requires it.
19234
19235 * keyboard.c (read_char): Remove unused var.
19236
19237 * eval.c: Port to Windows vsnprintf (Bug#8435).
19238 Include <limits.h>.
19239 (SIZE_MAX): Define if the headers do not.
19240 (verror): Do not give up if vsnprintf returns a negative count.
19241 Instead, grow the buffer. This ports to Windows vsnprintf, which
19242 does not conform to C99. Problem reported by Eli Zaretskii.
19243 Also, simplify the allocation scheme, by avoiding the need for
19244 calling realloc, and removing the ALLOCATED variable.
19245
19246 * eval.c (verror): Initial buffer size is 4000 (not 200) bytes.
19247
19248 Remove invocations of doprnt, as Emacs now uses vsnprintf.
19249 But keep the doprint source code for now, as we might revamp it
19250 and use it again (Bug#8435).
19251 * lisp.h (doprnt): Remove.
19252 * Makefile.in (base_obj): Remove doprnt.o.
19253 * deps.mk (doprnt.o): Remove.
19254
19255 error: Print 32- and 64-bit integers portably (Bug#8435).
19256 Without this change, on typical 64-bit hosts error ("...%d...", N)
19257 was used to print both 32- and 64-bit integers N, which relied on
19258 undefined behavior.
19259 * lisp.h, m/amdx86-64.h, m/ia64.h, m/ibms390x.h (pEd): New macro.
19260 * lisp.h (error, verror): Mark as printf-like functions.
19261 * eval.c (verror): Use vsnprintf, not doprnt, to do the real work.
19262 Report overflow in size calculations when allocating printf buffer.
19263 Do not truncate output string at its first null byte.
19264 * xdisp.c (vmessage): Use vsnprintf, not doprnt, to do the real work.
19265 Truncate the output at a character boundary, since vsnprintf does not
19266 do that.
19267 * charset.c (check_iso_charset_parameter): Convert internal
19268 character to string before calling 'error', since %c now has the
19269 printf meaning.
19270 * coding.c (Fdecode_sjis_char, Fdecode_big5_char): Avoid int
19271 overflow when computing char to be passed to 'error'. Do not
19272 pass Lisp_Object to 'error'; pass the integer instead.
19273 * nsfns.m (Fns_do_applescript): Use int, not long, since it's
19274 formatted with plain %d.
19275
19276 * eval.c (internal_lisp_condition_case): Don't pass spurious arg.
19277
19278 * keyboard.c (access_keymap_keyremap): Print func name, not garbage.
19279
19280 * coding.c (Fdecode_sjis_char): Don't assume CODE fits in int.
19281
19282 * xterm.c (x_catch_errors): Remove duplicate declaration.
19283
19284 * term.c (maybe_fatal): Mark its 3rd arg as a printf format, too.
19285
19286 * xdisp.c, lisp.h (message_nolog): Remove; unused.
19287
19288 2011-04-10 Jim Meyering <meyering@redhat.com>
19289
19290 use ssize_t and size_t for read- and write-like emacs_gnutls_* functions
19291 * gnutls.c (emacs_gnutls_read): Adjust signature to be more read-like:
19292 return ssize_t not "int", and use size_t as the buffer length.
19293 (emacs_gnutls_write): Likewise, and make the buffer pointer "const".
19294 * gnutls.h: Update declarations.
19295 * process.c (read_process_output): Use ssize_t, to match.
19296 (send_process): Likewise.
19297
19298 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
19299
19300 * image.c (Fimagemagick_types): Doc fix, and comment cleanup.
19301
19302 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
19303
19304 * ftfont.c (get_adstyle_property, ftfont_pattern_entity):
19305 Use unsigned char, to match FcChar8 type definition.
19306
19307 * xterm.c (handle_one_xevent):
19308 * xmenu.c (create_and_show_popup_menu):
19309 * xselect.c (x_decline_selection_request)
19310 (x_reply_selection_request): Avoid type-punned deref of X events.
19311
19312 2011-04-09 Eli Zaretskii <eliz@gnu.org>
19313
19314 Fix some uses of `int' instead of EMACS_INT.
19315 * search.c (string_match_1, fast_string_match)
19316 (fast_c_string_match_ignore_case, fast_string_match_ignore_case)
19317 (scan_buffer, find_next_newline_no_quit)
19318 (find_before_next_newline, search_command, Freplace_match)
19319 (Fmatch_data): Make some `int' variables be EMACS_INT.
19320
19321 * xdisp.c (display_count_lines): 3rd argument and return value now
19322 EMACS_INT. All callers changed.
19323 (pint2hrstr): Last argument is now EMACS_INT.
19324
19325 * coding.c (detect_coding_utf_8, detect_coding_emacs_mule)
19326 (detect_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
19327 (detect_coding_ccl, detect_coding_charset, decode_coding_utf_8)
19328 (decode_coding_utf_16, decode_coding_emacs_mule)
19329 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
19330 (decode_coding_ccl, decode_coding_charset)
19331 <consumed_chars, consumed_chars_base>: Declare EMACS_INT.
19332 (decode_coding_iso_2022, decode_coding_emacs_mule)
19333 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
19334 <char_offset, last_offset>: Declare EMACS_INT.
19335 (encode_coding_utf_8, encode_coding_utf_16)
19336 (encode_coding_emacs_mule, encode_invocation_designation)
19337 (encode_designation_at_bol, encode_coding_iso_2022)
19338 (encode_coding_sjis, encode_coding_big5, encode_coding_ccl)
19339 (encode_coding_raw_text, encode_coding_charset) <produced_chars>:
19340 Declare EMACS_INT.
19341 (ASSURE_DESTINATION): Declare more_bytes EMACS_INT.
19342 (encode_invocation_designation): Last argument P_NCHARS is now
19343 EMACS_INT.
19344 (decode_eol): Declare pos_byte, pos, and pos_end EMACS_INT.
19345 (produce_chars): from_nchars and to_nchars are now EMACS_INT.
19346
19347 * coding.h (struct coding_system) <head_ascii>: Declare EMACS_INT.
19348 All users changed.
19349
19350 * ccl.c (Fccl_execute_on_string): Declare some variables
19351 EMACS_INT.
19352
19353 2011-04-08 Samuel Thibault <sthibault@debian.org> (tiny change)
19354
19355 * term.c (init_tty): Fix incorrect ifdef placement (Bug#8450).
19356
19357 2011-03-19 Christoph Scholtes <cschol2112@googlemail.com>
19358
19359 * process.c (Fformat_network_address): Doc fix.
19360
19361 2011-04-08 T.V. Raman <tv.raman.tv@gmail.com> (tiny change)
19362
19363 * xml.c (parse_region): Avoid creating spurious whitespace nodes.
19364
19365 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
19366
19367 * keyboard.c (read_char): Call Lisp function help-form-show,
19368 instead of using internal_with_output_to_temp_buffer.
19369 (Qhelp_form_show): New var.
19370 (syms_of_keyboard): Use DEFSYM macro.
19371
19372 * print.c (internal_with_output_to_temp_buffer): Function deleted.
19373
19374 * lisp.h (internal_with_output_to_temp_buffer): Remove prototype.
19375
19376 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
19377
19378 * process.c (Flist_processes): Remove to Lisp.
19379 (list_processes_1): Delete.
19380
19381 2011-04-06 Eli Zaretskii <eliz@gnu.org>
19382
19383 * msdos.c (careadlinkat, careadlinkatcwd): MS-DOS replacements.
19384
19385 * w32.c (careadlinkat, careadlinkatcwd): New always-fail stubs.
19386
19387 2011-04-06 Paul Eggert <eggert@cs.ucla.edu>
19388
19389 Fix more problems found by GCC 4.6.0's static checks.
19390
19391 * xmenu.c (Fx_popup_dialog): Don't assume string is free of formats.
19392
19393 * menu.c (Fx_popup_menu): Don't assume error_name lacks printf formats.
19394
19395 * lisp.h (message, message_nolog, fatal): Mark as printf-like.
19396
19397 * xdisp.c (vmessage): Mark as a printf-like function.
19398
19399 * term.c (vfatal, maybe_fatal): Mark as printf-like functions.
19400
19401 * sound.c (sound_warning): Don't crash if arg contains a printf format.
19402
19403 * image.c (tiff_error_handler, tiff_warning_handler): Mark as
19404 printf-like functions.
19405 (tiff_load): Add casts to remove these marks before passing them
19406 to system-supplied API.
19407
19408 * eval.c (Fsignal): Remove excess argument to 'fatal'.
19409
19410 * coding.c (EMIT_ONE_BYTE, EMIT_TWO_BYTES): Use unsigned, not int.
19411 This avoids several warnings with gcc -Wstrict-overflow.
19412 (DECODE_COMPOSITION_RULE): If the rule is invalid, goto invalid_code
19413 directly, rather than having caller test rule sign. This avoids
19414 some unnecessary tests.
19415 * composite.h (COMPOSITION_ENCODE_RULE_VALID): New macro.
19416 (COMPOSITION_ENCODE_RULE): Arguments now must be valid. This
19417 affects only one use, in DECODE_COMPOSITION_RULE, which is changed.
19418
19419 * xfont.c (xfont_text_extents): Remove var that was set but not used.
19420 (xfont_open): Avoid unnecessary tests.
19421
19422 * composite.c (composition_gstring_put_cache): Use unsigned integer.
19423
19424 * composite.h, composite.c (composition_gstring_put_cache):
19425 Use EMACS_INT, not int, for length.
19426
19427 * composite.h (COMPOSITION_DECODE_REFS): New macro,
19428 breaking out part of COMPOSITION_DECODE_RULE.
19429 (COMPOSITION_DECODE_RULE): Use it.
19430 * composite.c (get_composition_id): Remove unused local vars,
19431 by using the new macro.
19432
19433 * textprop.c (set_text_properties_1): Change while to do-while,
19434 since the condition is always true at first.
19435
19436 * intervals.c (graft_intervals_into_buffer): Mark var as used.
19437 (interval_deletion_adjustment): Return unsigned value.
19438 All uses changed.
19439
19440 * process.c (list_processes_1, create_pty, read_process_output):
19441 (exec_sentinel): Remove vars that were set but not used.
19442 (create_pty): Remove unnecessary "volatile"s.
19443 (Fnetwork_interface_info): Avoid possibility of int overflow.
19444 (read_process_output): Do adaptive read buffering even if carryover.
19445 (read_process_output): Simplify nbytes computation if buffered.
19446
19447 * bytecode.c (exec_byte_code): Rename local to avoid shadowing.
19448
19449 * syntax.c (scan_words): Remove var that was set but not used.
19450 (update_syntax_table): Use unsigned instead of int.
19451
19452 * lread.c (lisp_file_lexically_bound_p): Use ints rather than endptrs.
19453 (lisp_file_lexically_bound_p, read1): Use unsigned instead of int.
19454 (safe_to_load_p): Make the end-of-loop test the inverse of the in-loop.
19455
19456 * print.c (print_error_message): Avoid int overflow.
19457
19458 * font.c (font_list_entities): Redo for clarity,
19459 so that reader need not know FONT_DPI_INDEX + 1 == FONT_SPACING_INDEX.
19460
19461 * font.c (font_find_for_lface, Ffont_get_glyphs): Remove unused vars.
19462 (font_score): Avoid potential overflow in diff calculation.
19463
19464 * fns.c (substring_both): Remove var that is set but not used.
19465 (sxhash): Redo loop for clarity and to avoid wraparound warning.
19466
19467 * eval.c (funcall_lambda): Rename local to avoid shadowing.
19468
19469 * alloc.c (mark_object_loop_halt, mark_object): Use size_t, not int.
19470 Otherwise, GCC 4.6.0 optimizes the loop check away since the check
19471 can always succeed if overflow has undefined behavior.
19472
19473 * search.c (boyer_moore, wordify): Remove vars set but not used.
19474 (wordify): Omit three unnecessary tests.
19475
19476 * indent.c (MULTIBYTE_BYTES_WIDTH): Don't compute wide_column.
19477 All callers changed. This avoids the need for an unused var.
19478
19479 * casefiddle.c (casify_region): Remove var that is set but not used.
19480
19481 * dired.c (file_name_completion): Remove var that is set but not used.
19482
19483 * fileio.c (Finsert_file_contents): Make EOF condition clearer.
19484
19485 * fileio.c (Finsert_file_contents): Avoid signed integer overflow.
19486 (Finsert_file_contents): Remove unnecessary code checking fd.
19487
19488 * minibuf.c (read_minibuf_noninteractive): Use size_t for sizes.
19489 Check for integer overflow on size calculations.
19490
19491 * buffer.c (Fprevious_overlay_change): Remove var that is set
19492 but not used.
19493
19494 * keyboard.c (menu_bar_items, read_char_minibuf_menu_prompt):
19495 Remove vars that are set but not used.
19496 (timer_check_2): Don't assume timer-list and idle-timer-list are lists.
19497 (timer_check_2): Mark vars as initialized.
19498
19499 * gtkutil.c (xg_get_file_with_chooser): Mark var as initialized.
19500
19501 * image.c (lookup_image): Remove var that is set but not used.
19502 (xbm_load): Use parse_p, for gcc -Werror=unused-but-set-variable.
19503
19504 * fontset.c (Finternal_char_font, Ffontset_info): Remove vars
19505 that are set but not used.
19506
19507 * xfns.c (make_invisible_cursor): Don't return garbage
19508 if XCreateBitmapFromData fails (Bug#8410).
19509
19510 * xselect.c (x_get_local_selection, x_handle_property_notify):
19511 Remove vars that are set but not used.
19512
19513 * xfns.c (x_create_tip_frame): Remove var that is set but not used.
19514 (make_invisible_cursor): Initialize a possibly-uninitialized variable.
19515
19516 * xterm.c (x_scroll_bar_to_input_event) [!USE_GTK]:
19517 Remove var that is set but not used.
19518 (scroll_bar_windows_size): Now size_t, not int.
19519 (x_send_scroll_bar_event): Use size_t, not int, for sizes.
19520 Check for overflow.
19521
19522 * xfaces.c (realize_named_face): Remove vars that are set but not used.
19523 (map_tty_color) [!defined MSDOS]: Likewise.
19524
19525 * term.c (tty_write_glyphs): Use size_t; this avoids overflow warning.
19526
19527 * coding.c: Remove vars that are set but not used.
19528 (DECODE_COMPOSITION_RULE): Remove 2nd arg, which is unused.
19529 All callers changed.
19530 (decode_coding_utf_8, decode_coding_utf_16 decode_coding_emacs_mule):
19531 (decode_coding_iso_2022, encode_coding_sjis, encode_coding_big5):
19532 (decode_coding_charset): Remove vars that are set but not used.
19533
19534 * bytecode.c (Fbyte_code) [!defined BYTE_CODE_SAFE]: Remove var
19535 that is set but not used.
19536
19537 * print.c (print_object): Remove var that is set but not used.
19538
19539 Replace 2 copies of readlink code with 1 gnulib version (Bug#8401).
19540 The gnulib version avoids calling malloc in the usual case,
19541 and on 64-bit hosts doesn't have some arbitrary 32-bit limits.
19542 * fileio.c (Ffile_symlink_p): Use emacs_readlink.
19543 * filelock.c (current_lock_owner): Likewise.
19544 * lisp.h (READLINK_BUFSIZE, emacs_readlink): New function.
19545 * sysdep.c: Include allocator.h, careadlinkat.h.
19546 (emacs_no_realloc_allocator): New static constant.
19547 (emacs_readlink): New function.
19548 * deps.mk (sysdep.o): Depend on ../lib/allocator.h and on
19549 ../lib/careadlinkat.h.
19550
19551 2011-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
19552
19553 * keyboard.c (safe_run_hook_funcall): Fix last change (don't stop at the
19554 first non-nil return value).
19555
19556 2011-04-03 Jan Djärv <jan.h.d@swipnet.se>
19557
19558 * nsterm.m (ns_update_auto_hide_menu_bar): Define MAC_OS_X_VERSION_10_6
19559 if not defined (Bug#8403).
19560
19561 2011-04-02 Juanma Barranquero <lekktu@gmail.com>
19562
19563 * xdisp.c (display_count_lines): Remove parameter `start',
19564 unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
19565 (get_char_face_and_encoding): Remove parameter `multibyte_p',
19566 unused since 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
19567 (fill_stretch_glyph_string): Remove parameters `row' and `area',
19568 unused at least since Kim's GUI unification at 2003-03-16T20:45:46Z!storm@cua.dk
19569 and thereabouts. All callers changed.
19570 (get_per_char_metric): Remove parameter `f', unused since
19571 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
19572
19573 2011-04-02 Jim Meyering <meyering@redhat.com>
19574
19575 do not dereference NULL upon failed strdup
19576 * nsfont.m (ns_descriptor_to_entity): Use xstrdup, not strdup.
19577 (ns_get_family): Likewise.
19578
19579 2011-04-02 Juanma Barranquero <lekktu@gmail.com>
19580
19581 * eval.c (unwind_to_catch) [DEBUG_GCPRO]: Remove redundant assignment.
19582
19583 2011-04-02 Jan Djärv <jan.h.d@swipnet.se>
19584
19585 * nsterm.m (ns_update_auto_hide_menu_bar): Only for OSX 10.6 or
19586 later (Bug#8403).
19587
19588 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
19589
19590 Add lexical binding.
19591
19592 * window.c (Ftemp_output_buffer_show): New fun.
19593 (Fsave_window_excursion):
19594 * print.c (Fwith_output_to_temp_buffer): Move to subr.el.
19595
19596 * lread.c (lisp_file_lexically_bound_p): New function.
19597 (Fload): Bind Qlexical_binding.
19598 (readevalloop): Remove `evalfun' arg.
19599 Bind Qinternal_interpreter_environment.
19600 (Feval_buffer): Bind Qlexical_binding.
19601 (defvar_int, defvar_bool, defvar_lisp_nopro, defvar_kboard):
19602 Mark as dynamic.
19603 (syms_of_lread): Declare `lexical-binding'.
19604
19605 * lisp.h (struct Lisp_Symbol): New field `declared_special'.
19606
19607 * keyboard.c (eval_dyn): New fun.
19608 (menu_item_eval_property): Use it.
19609
19610 * image.c (parse_image_spec): Use Ffunctionp.
19611
19612 * fns.c (concat, mapcar1): Accept byte-code-functions.
19613
19614 * eval.c (Fsetq): Handle lexical vars.
19615 (Fdefun, Fdefmacro, Ffunction): Make closures when needed.
19616 (Fdefconst, Fdefvaralias, Fdefvar): Mark as dynamic.
19617 (FletX, Flet): Obey lexical binding.
19618 (Fcommandp): Handle closures.
19619 (Feval): New `lexical' arg.
19620 (eval_sub): New function extracted from Feval. Use it almost
19621 everywhere where Feval was used. Look up vars in lexical env.
19622 Handle closures.
19623 (Ffunctionp): Move from subr.el.
19624 (Ffuncall): Handle closures.
19625 (apply_lambda): Remove `eval_flags'.
19626 (funcall_lambda): Handle closures and new byte-code-functions.
19627 (Fspecial_variable_p): New function.
19628 (syms_of_eval): Initialize the Vinternal_interpreter_environment var,
19629 but without exporting it to Lisp.
19630
19631 * doc.c (Fdocumentation, store_function_docstring):
19632 * data.c (Finteractive_form): Handle closures.
19633
19634 * callint.c (Fcall_interactively): Preserve lexical-binding mode for
19635 interactive spec.
19636
19637 * bytecode.c (Bstack_ref, Bstack_set, Bstack_set2, BdiscardN):
19638 New byte-codes.
19639 (exec_byte_code): New function extracted from Fbyte_code to handle new
19640 calling convention for byte-code-functions. Add new byte-codes.
19641
19642 * buffer.c (defvar_per_buffer): Set new `declared_special' field.
19643
19644 * alloc.c (Fmake_symbol): Init new `declared_special' field.
19645
19646 2011-03-31 Juanma Barranquero <lekktu@gmail.com>
19647
19648 * xdisp.c (redisplay_internal): Fix prototype.
19649
19650 2011-03-31 Eli Zaretskii <eliz@gnu.org>
19651
19652 * xdisp.c (SCROLL_LIMIT): New macro.
19653 (try_scrolling): Use it when setting scroll_limit.
19654 Limit scrolling to 100 screen lines.
19655 (redisplay_window): Even when falling back on "recentering",
19656 position point in the window according to scroll-conservatively,
19657 scroll-margin, and scroll-*-aggressively variables. (Bug#6671)
19658
19659 (try_scrolling): When point is above the window, allow searching
19660 as far as scroll_max, or one screenful, to compute vertical
19661 distance from PT to the scroll margin position. This prevents
19662 try_scrolling from unnecessarily failing when
19663 scroll-conservatively is set to a value slightly larger than the
19664 window height. Clean up the case of PT below the margin at bottom
19665 of window: scroll_max can no longer be INT_MAX. When aggressive
19666 scrolling is in use, don't let point enter the opposite scroll
19667 margin as result of the scroll.
19668 (syms_of_xdisp) <scroll-conservatively>: Document the
19669 threshold of 100 lines for never-recentering scrolling.
19670
19671 2011-03-31 Juanma Barranquero <lekktu@gmail.com>
19672
19673 * dispextern.h (move_it_by_lines):
19674 * xdisp.c (move_it_by_lines): Remove parameter `need_y_p', unused
19675 since 2000-12-29T14:24:09Z!gerd@gnu.org. All callers changed.
19676 (message_log_check_duplicate): Remove parameters `prev_bol' and
19677 `this_bol', unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
19678 (redisplay_internal): Remove parameter `preserve_echo_area',
19679 unused since 1999-07-21T21:43:52Z!gerd@gnu.org. All callers changed.
19680
19681 * indent.c (Fvertical_motion):
19682 * window.c (window_scroll_pixel_based, Frecenter):
19683 Don't pass `need_y_p' to `move_it_by_lines'.
19684
19685 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
19686
19687 * eval.c (struct backtrace): Don't cheat with negative numbers, but do
19688 steal a few bits to be more compact.
19689 (interactive_p, Fbacktrace, Fbacktrace_frame, mark_backtrace):
19690 Remove unneeded casts.
19691
19692 * bytecode.c (Fbyte_code): CAR and CDR can GC.
19693
19694 2011-03-30 Zachary Kanfer <zkanfer@gmail.com> (tiny change)
19695
19696 * keyboard.c (Fexecute_extended_command): Do log the "suggest key
19697 binding" message (bug#7967).
19698
19699 2011-03-30 Paul Eggert <eggert@cs.ucla.edu>
19700
19701 Fix more problems found by GCC 4.6.0's static checks.
19702
19703 * unexelf.c (unexec) [! (defined _SYSTYPE_SYSV || defined __sgi)]:
19704 Remove unused local var.
19705
19706 * editfns.c (Fmessage_box): Remove unused local var.
19707
19708 * xdisp.c (try_window_reusing_current_matrix, x_produce_glyphs):
19709 (note_mode_line_or_margin_highlight, note_mouse_highlight):
19710 Omit unused local vars.
19711 * window.c (shrink_windows): Omit unused local var.
19712 * menu.c (digest_single_submenu): Omit unused local var.
19713 * dispnew.c (update_window) [PERIODIC_PREEMPTION_CHECKING]:
19714 Omit unused local var.
19715
19716 * keyboard.c (parse_modifiers_uncached, parse_modifiers):
19717 Don't assume string length fits in int.
19718 (keyremap_step, read_key_sequence): Use size_t for sizes.
19719 (read_key_sequence): Don't check last_real_key_start redundantly.
19720
19721 * callproc.c (Fcall_process, Fcall_process_region): Use SAFE_ALLOCA
19722 instead of alloca (Bug#8344).
19723
19724 * eval.c (Fbacktrace): Don't assume nargs fits in int.
19725 (Fbacktrace_frame): Don't assume nframes fits in int.
19726
19727 * syntax.c (scan_sexps_forward): Avoid pointer wraparound.
19728
19729 * xterm.c (x_make_frame_visible, same_x_server): Redo to avoid overflow
19730 concerns.
19731
19732 * term.c (produce_glyphless_glyph): Remove unnecessary test.
19733
19734 * cm.c (calccost): Turn while-do into do-while, for clarity.
19735
19736 * keyboard.c (syms_of_keyboard): Use the same style as later
19737 in this function when indexing through an array. This also
19738 works around GCC bug 48267.
19739
19740 * image.c (tiff_load): Fix off-by-one image count (Bug#8336).
19741
19742 * xselect.c (x_check_property_data): Return correct size (Bug#8335).
19743
19744 * chartab.c (sub_char_table_ref_and_range): Redo for slight
19745 efficiency gain, and to bypass a gcc -Wstrict-overflow warning.
19746
19747 * keyboard.c, keyboard.h (num_input_events): Now size_t.
19748 This avoids undefined behavior on integer overflow, and is a bit
19749 more convenient anyway since it is compared to a size_t variable.
19750
19751 Variadic C functions now count arguments with size_t, not int.
19752 This avoids an unnecessary limitation on 64-bit machines, which
19753 caused (substring ...) to crash on large vectors (Bug#8344).
19754 * lisp.h (struct Lisp_Subr.function.aMANY): Now takes size_t, not int.
19755 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call): Likewise.
19756 All variadic functions and their callers changed accordingly.
19757 (struct gcpro.nvars): Now size_t, not int. All uses changed.
19758 * data.c (arith_driver, float_arith_driver): Likewise.
19759 * editfns.c (general_insert_function): Likewise.
19760 * eval.c (struct backtrace.nargs, interactive_p)
19761 (internal_condition_case_n, run_hook_with_args, apply_lambda)
19762 (funcall_lambda, mark_backtrace): Likewise.
19763 * fns.c (concat): Likewise.
19764 * frame.c (x_set_frame_parameters): Likewise.
19765 * fns.c (get_key_arg): Now accepts and returns size_t, and returns
19766 0 if not found, not -1. All callers changed.
19767
19768 * alloc.c (garbage_collect): Don't assume stack size fits in int.
19769 (stack_copy_size): Now size_t, not int.
19770 (stack_copy, stack_copy_size): Define only if MAX_SAVE_STACK > 0.
19771
19772 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
19773
19774 * coding.c (encode_designation_at_bol): Remove parameter `charbuf_end',
19775 unused since 2002-03-01T01:17:24Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
19776 All callers changed.
19777
19778 * lisp.h (multibyte_char_to_unibyte):
19779 * character.c (multibyte_char_to_unibyte): Remove parameter `rev_tbl',
19780 unused since 2002-03-01T01:16:34Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
19781 * character.h (CHAR_TO_BYTE8):
19782 * cmds.c (internal_self_insert):
19783 * editfns.c (general_insert_function):
19784 * keymap.c (push_key_description):
19785 * search.c (Freplace_match):
19786 * xdisp.c (message_dolog, set_message_1): All callers changed.
19787
19788 2011-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
19789
19790 * keyboard.c (safe_run_hook_funcall): New function.
19791 (safe_run_hooks_1, safe_run_hooks_error, safe_run_hooks): On error,
19792 don't set the hook to nil, but remove the offending function instead.
19793 (Qcommand_hook_internal): Remove, unused.
19794 (syms_of_keyboard): Don't initialize Qcommand_hook_internal nor define
19795 Vcommand_hook_internal.
19796
19797 * eval.c (enum run_hooks_condition): Remove.
19798 (funcall_nil, funcall_not): New functions.
19799 (run_hook_with_args): Call each function through a `funcall' argument.
19800 Remove `cond' argument, now redundant.
19801 (Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success)
19802 (Frun_hook_with_args_until_failure): Adjust accordingly.
19803 (run_hook_wrapped_funcall, Frun_hook_wrapped): New functions.
19804
19805 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
19806
19807 * dispextern.h (string_buffer_position): Remove declaration.
19808
19809 * print.c (strout): Remove parameter `multibyte', unused since
19810 1999-08-21T19:30:21Z!gerd@gnu.org. All callers changed.
19811
19812 * search.c (boyer_moore): Remove parameters `len', `pos' and `lim',
19813 never used since function introduction in 1998-02-08T21:33:56Z!rms@gnu.org.
19814 All callers changed.
19815
19816 * w32.c (_wsa_errlist): Use braces for struct initializers.
19817
19818 * xdisp.c (string_buffer_position_lim): Remove parameter `w',
19819 never used since function introduction in 2001-03-09T18:41:50Z!gerd@gnu.org.
19820 All callers changed.
19821 (string_buffer_position): Likewise. Also, make static (it's never
19822 used outside xdisp.c).
19823 (cursor_row_p): Remove parameter `w', unused since
19824 2000-10-17T16:08:57Z!gerd@gnu.org. All callers changed.
19825 (decode_mode_spec): Remove parameter `precision', introduced during
19826 Gerd Moellmann's rewrite at 1999-07-21T21:43:52Z!gerd@gnu.org, but never used.
19827 All callers changed.
19828
19829 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
19830
19831 * nsterm.m (syms_of_nsterm): Use doc: for ns-auto-hide-menu-bar.
19832
19833 2011-03-27 Anders Lindgren <andlind@gmail.com>
19834
19835 * nsterm.m (ns_menu_bar_is_hidden): New variable.
19836 (ns_constrain_all_frames, ns_menu_bar_should_be_hidden)
19837 (ns_update_auto_hide_menu_bar): New functions.
19838 (ns_update_begin): Call ns_update_auto_hide_menu_bar.
19839 (applicationDidBecomeActive): Call ns_update_auto_hide_menu_bar and
19840 ns_constrain_all_frames.
19841 (constrainFrameRect): Return at once if ns_menu_bar_should_be_hidden.
19842 (syms_of_nsterm): DEFVAR ns-auto-hide-menu-bar, init to Qnil.
19843
19844 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
19845
19846 * nsmenu.m (runDialogAt): Remove argument to timer_check.
19847
19848 2011-03-27 Glenn Morris <rgm@gnu.org>
19849
19850 * syssignal.h: Replace RETSIGTYPE with void.
19851 * atimer.c, data.c, dispnew.c, emacs.c, floatfns.c, keyboard.c:
19852 * keyboard.h, lisp.h, process.c, sysdep.c, xterm.c:
19853 Replace SIGTYPE with void everywhere.
19854 * s/usg5-4-common.h (SIGTYPE): Remove definition.
19855 * s/template.h (SIGTYPE): Remove commented out definition.
19856
19857 2011-03-26 Eli Zaretskii <eliz@gnu.org>
19858
19859 * xdisp.c (redisplay_window): Don't check buffer's clip_changed
19860 flag as a prerequisite for invoking try_scrolling. (Bug#6671)
19861
19862 2011-03-26 Juanma Barranquero <lekktu@gmail.com>
19863
19864 * w32.c (read_unc_volume): Use parameter `henum', instead of
19865 global variable `wget_enum_handle'.
19866
19867 * keymap.c (describe_vector): Remove parameters `indices' and
19868 `char_table_depth', unused since 2002-03-01T01:43:26Z!handa@m17n.org.
19869 (describe_map, Fdescribe_vector): Adjust calls to `describe_vector'.
19870
19871 * keyboard.h (timer_check, show_help_echo): Remove unused parameters.
19872
19873 * keyboard.c (timer_check): Remove parameter `do_it_now',
19874 unused since 1996-04-12T06:01:29Z!rms@gnu.org.
19875 (show_help_echo): Remove parameter `ok_to_overwrite_keystroke_echo',
19876 unused since 2008-04-19T19:30:53Z!monnier@iro.umontreal.ca.
19877
19878 * keyboard.c (read_char):
19879 * w32menu.c (w32_menu_display_help):
19880 * xmenu.c (show_help_event, menu_help_callback):
19881 Adjust calls to `show_help_echo'.
19882
19883 * gtkutil.c (xg_maybe_add_timer):
19884 * keyboard.c (readable_events):
19885 * process.c (wait_reading_process_output):
19886 * xmenu.c (x_menu_wait_for_event): Adjust calls to `timer_check'.
19887
19888 * insdel.c (adjust_markers_gap_motion):
19889 Remove; no-op since 1998-01-02T21:29:48Z!rms@gnu.org.
19890 (gap_left, gap_right): Don't call it.
19891
19892 2011-03-25 Chong Yidong <cyd@stupidchicken.com>
19893
19894 * xdisp.c (handle_fontified_prop): Discard changes to clip_changed
19895 incurred during fontification.
19896
19897 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
19898
19899 * buffer.c (defvar_per_buffer): Remove unused parameter `doc'.
19900 (DEFVAR_PER_BUFFER): Don't pass it.
19901
19902 * dispnew.c (row_equal_p, add_row_entry): Remove unused parameter `w'.
19903 (scrolling_window): Don't pass it.
19904
19905 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
19906
19907 * dispextern.h (glyph_matric): Use #if GLYPH_DEBUG, not #ifdef.
19908
19909 * fileio.c (check_executable) [DOS_NT]: Remove unused variables `len'
19910 and `suffix'.
19911 (Fset_file_selinux_context) [HAVE_LIBSELINUX]: Move here declaration
19912 of variables specific to SELinux and computation of `encoded_absname'.
19913
19914 * image.c (XPutPixel): Remove unused variable `height'.
19915
19916 * keyboard.c (make_lispy_event): Remove unused variable `hpos'.
19917
19918 * unexw32.c (get_section_info): Remove unused variable `section'.
19919
19920 * w32.c (stat): Remove unused variables `drive_root' and `devtype'.
19921 (system_process_attributes): Remove unused variable `sess'.
19922 (sys_read): Remove unused variable `err'.
19923
19924 * w32fns.c (top): Wrap variables with #if GLYPH_DEBUG, not #ifdef.
19925 (w32_wnd_proc): Remove unused variable `isdead'.
19926 (unwind_create_frame): Use #if GLYPH_DEBUG, not #ifdef.
19927 (Fx_server_max_request_size): Remove unused variable `dpyinfo'.
19928 (x_create_tip_frame): Remove unused variable `tem'.
19929
19930 * w32inevt.c (w32_console_read_socket):
19931 Remove unused variable `no_events'.
19932
19933 * w32term.c (x_draw_composite_glyph_string_foreground):
19934 Remove unused variable `width'.
19935
19936 2011-03-24 Juanma Barranquero <lekktu@gmail.com>
19937
19938 * w32term.c (x_set_glyph_string_clipping):
19939 Don't pass uninitialized region to CombineRgn.
19940
19941 2011-03-23 Juanma Barranquero <lekktu@gmail.com>
19942
19943 * w32fns.c (x_set_menu_bar_lines): Remove unused variable `olines'.
19944 (w32_wnd_proc): Pass NULL to Windows API, not uninitialized buffer.
19945 (Fx_close_connection): Remove unused variable `i'.
19946
19947 * w32font.c (w32font_draw): Return number of glyphs.
19948 (w32font_open_internal): Remove unused variable `i'.
19949 (w32font_driver): Add missing initializer.
19950
19951 * w32menu.c (utf8to16): Remove unused variable `utf16'.
19952 (fill_in_menu): Remove unused variable `items_added'.
19953
19954 * w32term.c (last_mouse_press_frame): Remove static global variable.
19955 (w32_clip_to_row): Remove unused variable `f'.
19956 (x_delete_terminal): Remove unused variable `i'.
19957
19958 * w32uniscribe.c (uniscribe_shape): Remove unused variable `nclusters'.
19959 (NOTHING): Remove unused static global variable.
19960 (uniscribe_check_otf): Remove unused variable `table'.
19961 (uniscribe_font_driver): Add missing initializers.
19962
19963 2011-03-23 Julien Danjou <julien@danjou.info>
19964
19965 * term.c (Fsuspend_tty, Fresume_tty):
19966 * minibuf.c (read_minibuf, run_exit_minibuf_hook):
19967 * window.c (temp_output_buffer_show):
19968 * insdel.c (signal_before_change):
19969 * frame.c (Fhandle_switch_frame):
19970 * fileio.c (Fdo_auto_save):
19971 * emacs.c (Fkill_emacs):
19972 * editfns.c (save_excursion_restore):
19973 * cmds.c (internal_self_insert):
19974 * callint.c (Fcall_interactively):
19975 * buffer.c (Fkill_all_local_variables):
19976 * keyboard.c (Fcommand_execute, Fsuspend_emacs, safe_run_hooks_1):
19977 Use Frun_hooks.
19978 (command_loop_1): Use Frun_hooks. Call safe_run_hooks
19979 unconditionally since it does the check itself.
19980
19981 2011-03-23 Paul Eggert <eggert@cs.ucla.edu>
19982
19983 Fix more problems found by GCC 4.5.2's static checks.
19984
19985 * coding.c (encode_coding_raw_text): Avoid unnecessary test
19986 the first time through the loop, since we know p0 < p1 then.
19987 This also avoids a gcc -Wstrict-overflow warning.
19988
19989 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP): Avoid 'int' overflow
19990 leading to a memory leak, possible in functions like
19991 load_charset_map_from_file that can allocate an unbounded number
19992 of objects (Bug#8318).
19993
19994 * xmenu.c (set_frame_menubar): Use EMACS_UINT, not int, for indexes
19995 that could (at least in theory) be that large.
19996
19997 * xdisp.c (message_log_check_duplicate): Return unsigned long, not int.
19998 This is less likely to overflow, and avoids undefined behavior if
19999 overflow does occur. All callers changed. Use strtoul to scan
20000 for the unsigned long integer.
20001 (pint2hrstr): Simplify and tune code slightly.
20002 This also avoids a (bogus) GCC warning with gcc -Wstrict-overflow.
20003
20004 * scroll.c (do_scrolling): Work around GCC bug 48228.
20005 See <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48228>.
20006
20007 * frame.c (Fmodify_frame_parameters): Simplify loop counter.
20008 This also avoids a warning with gcc -Wstrict-overflow.
20009 (validate_x_resource_name): Simplify count usage.
20010 This also avoids a warning with gcc -Wstrict-overflow.
20011
20012 * fileio.c (Fcopy_file): Report error if fchown or fchmod
20013 fail (Bug#8306).
20014
20015 * emacs.c (Fdaemon_initialized): Do not ignore I/O errors (Bug#8303).
20016
20017 * process.c (Fmake_network_process): Use socklen_t, not int,
20018 where POSIX says socklen_t is required in portable programs.
20019 This fixes a porting bug on hosts like 64-bit HP-UX, where
20020 socklen_t is wider than int (Bug#8277).
20021 (Fmake_network_process, server_accept_connection):
20022 (wait_reading_process_output, read_process_output):
20023 Likewise.
20024
20025 * process.c: Rename or move locals to avoid shadowing.
20026 (list_processes_1, Fmake_network_process):
20027 (read_process_output_error_handler, exec_sentinel_error_handler):
20028 Rename or move locals.
20029 (Fmake_network_process): Define label "retry_connect" only if needed.
20030 (Fnetwork_interface_info): Fix pointer signedness.
20031 (process_send_signal): Add cast to avoid pointer signedness problem.
20032 (FIRST_PROC_DESC, IF_NON_BLOCKING_CONNECT): Remove unused macros.
20033 (create_process): Use 'volatile' to avoid vfork clobbering (Bug#8298).
20034
20035 Make tparam.h and terminfo.c consistent.
20036 * cm.c (tputs, tgoto, BC, UP): Remove extern decls.
20037 Include tparam.h instead, since it declares them.
20038 * cm.h (PC): Remove extern decl; tparam.h now does this.
20039 * deps.mk (cm.o, terminfo.o): Depend on tparam.h.
20040 * terminfo.c: Include tparam.h, to check interfaces.
20041 (tparm): Make 1st arg a const pointer in decl. Put it at top level.
20042 (tparam): Adjust signature to match interface in tparam.h;
20043 this removes some undefined behavior. Check that outstring and len
20044 are zero, which they always are with Emacs.
20045 * tparam.h (PC, BC, UP): New extern decls.
20046
20047 * xftfont.c (xftfont_shape): Now static, and defined only if needed.
20048 (xftfont_open): Rename locals to avoid shadowing.
20049
20050 * ftfont.c (ftfont_resolve_generic_family): Fix pointer signedness.
20051 (ftfont_otf_capability, ftfont_shape): Omit decls if not needed.
20052 (OTF_TAG_SYM): Omit macro if not needed.
20053 (ftfont_list): Remove unused local.
20054 (get_adstyle_property, ftfont_pattern_entity):
20055 (ftfont_lookup_cache, ftfont_open, ftfont_anchor_point):
20056 Rename locals to avoid shadowing.
20057
20058 * xfont.c (xfont_list_family): Mark var as initialized.
20059
20060 * xml.c (make_dom): Now static.
20061
20062 * composite.c (composition_compute_stop_pos): Rename local to
20063 avoid shadowing.
20064 (composition_reseat_it): Remove unused locals.
20065 (find_automatic_composition, composition_adjust_point): Likewise.
20066 (composition_update_it): Mark var as initialized.
20067 (find_automatic_composition): Mark vars as initialized,
20068 with a FIXME (Bug#8290).
20069
20070 character.h: Rename locals to avoid shadowing.
20071 * character.h (PREV_CHAR_BOUNDARY, FETCH_STRING_CHAR_ADVANCE):
20072 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE, FETCH_CHAR_ADVANCE):
20073 (FETCH_CHAR_ADVANCE_NO_CHECK, INC_POS, DEC_POS, BUF_INC_POS):
20074 (BUF_DEC_POS): Be more systematic about renaming local temporaries
20075 to avoid shadowing.
20076
20077 * textprop.c (property_change_between_p): Remove; unused.
20078
20079 * intervals.c (interval_start_pos): Now static.
20080
20081 * intervals.h (CHECK_TOTAL_LENGTH): Avoid empty "else".
20082
20083 * atimer.c (start_atimer, append_atimer_lists, set_alarm):
20084 Rename locals to avoid shadowing.
20085
20086 * sound.c (wav_play, au_play, Fplay_sound_internal):
20087 Fix pointer signedness.
20088 (alsa_choose_format): Remove unused local var.
20089 (wav_play): Initialize a variable to 0, to prevent undefined
20090 behavior (Bug#8278).
20091
20092 * region-cache.c (insert_cache_boundary): Redo var to avoid shadowing.
20093
20094 * region-cache.h (pp_cache): New decl, for gcc -Wmissing-prototypes.
20095
20096 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork
20097 clobbering (Bug#8298).
20098 * sysdep.c (sys_subshell): Likewise.
20099 Previously, the sys_subshell 'volatile' was incorrectly IF_LINTted out.
20100
20101 * lisp.h (child_setup): Now NO_RETURN unless DOS_NT.
20102 This should get cleaned up, so that child_setup has the
20103 same signature on all platforms.
20104
20105 * callproc.c (call_process_cleanup): Now static.
20106 (relocate_fd): Rename locals to avoid shadowing.
20107
20108 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
20109
20110 * xterm.c (x_clear_frame): Remove XClearWindow call. This appears
20111 not to be necessary, and produces flickering.
20112
20113 2011-03-20 Glenn Morris <rgm@gnu.org>
20114
20115 * config.in: Remove file.
20116
20117 2011-03-20 Juanma Barranquero <lekktu@gmail.com>
20118
20119 * minibuf.c (Vcompleting_read_function): Don't declare, global variables
20120 are now in src/globals.h.
20121 (syms_of_minibuf): Remove spurious & from previous change.
20122
20123 2011-03-20 Leo Liu <sdl.web@gmail.com>
20124
20125 * minibuf.c (completing-read-function): New variable.
20126 (completing-read-default): Rename from completing-read.
20127 (completing-read): Call completing-read-function.
20128
20129 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
20130
20131 * xfaces.c (Fx_load_color_file):
20132 Read color file from absolute filename (bug#8250).
20133
20134 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
20135
20136 * makefile.w32-in: Update dependencies.
20137
20138 2011-03-17 Eli Zaretskii <eliz@gnu.org>
20139
20140 * makefile.w32-in ($(BLD)/unexw32.$(O)): Depend on $(SRC)/unexec.h.
20141
20142 2011-03-17 Paul Eggert <eggert@cs.ucla.edu>
20143
20144 Fix more problems found by GCC 4.5.2's static checks.
20145
20146 * process.c (make_serial_process_unwind, send_process_trap):
20147 (sigchld_handler): Now static.
20148
20149 * process.c (allocate_pty): Let PTY_ITERATION declare iteration vars.
20150 That way, the code declares only the vars that it needs.
20151 * s/aix4-2.h (PTY_ITERATION): Declare iteration vars.
20152 * s/cygwin.h (PTY_ITERATION): Likewise.
20153 * s/darwin.h (PTY_ITERATION): Likewise.
20154 * s/gnu-linux.h (PTY_ITERATION): Likewise.
20155
20156 * s/irix6-5.h (PTY_OPEN): Declare stb, to loosen coupling.
20157 * process.c (allocate_pty): Don't declare stb unless it's needed.
20158
20159 * bytecode.c (MAYBE_GC): Rewrite so as not to use empty "else".
20160 (CONSTANTLIM): Remove; unused.
20161 (METER_CODE, Bscan_buffer, Bread_char, Bset_mark):
20162 Define only if needed.
20163
20164 * unexelf.c (unexec): Name an expression,
20165 to avoid gcc -Wbad-function-cast warning.
20166 Use a different way to cause a compilation error if anyone uses
20167 n rather than nn, a way that does not involve shadowing.
20168 (ELF_BSS_SECTION_NAME, OLD_PROGRAM_H): Remove; unused.
20169
20170 * deps.mk (unexalpha.o): Remove; unused.
20171
20172 New file unexec.h, the (simple) interface for unexec (Bug#8267).
20173 * unexec.h: New file.
20174 * deps.mk (emacs.o, unexaix.o, unexcw.o, unexcoff.o, unexelf.o):
20175 (unexhp9k800.o, unexmacosx.o, unexsol.o, unexw32.o):
20176 Depend on unexec.h.
20177 * emacs.c [!defined CANNOT_DUMP]: Include unexec.h.
20178 * unexaix.c, unexcoff.c, unexcw.c, unexelf.c, unexhp9k800.c:
20179 * unexmacosx.c, unexsol.c, unexw32.c: Include unexec.h.
20180 Change as necessary to match prototype in unexec.h.
20181
20182 * syntax.c (Fforward_comment, scan_lists): Rename locals to avoid
20183 shadowing.
20184 (back_comment, skip_chars): Mark vars as initialized.
20185
20186 * character.h (FETCH_STRING_CHAR_ADVANCE_NO_CHECK, BUF_INC_POS):
20187 Rename locals to avoid shadowing.
20188
20189 * lread.c (read1): Rewrite so as not to use empty "else".
20190 (Fload, readevalloop, read1): Rename locals to avoid shadowing.
20191
20192 * print.c (Fredirect_debugging_output): Fix pointer signedess.
20193
20194 * lisp.h (debug_output_compilation_hack): Add decl here, to avoid
20195 warning when compiling print.c.
20196
20197 * font.c (font_unparse_fcname): Abort in an "impossible" situation
20198 instead of using an uninitialized var.
20199 (font_sort_entities): Mark var as initialized.
20200
20201 * character.h (FETCH_CHAR_ADVANCE): Rename locals to avoid shadowing.
20202
20203 * font.c (font_unparse_xlfd): Don't mix pointers to variables with
20204 pointers to constants.
20205 (font_parse_fcname): Remove unused vars.
20206 (font_delete_unmatched): Now static.
20207 (font_get_spec): Remove; unused.
20208 (font_style_to_value, font_prop_validate_style, font_unparse_fcname):
20209 (font_update_drivers, Ffont_get_glyphs, font_add_log):
20210 Rename or move locals to avoid shadowing.
20211
20212 * fns.c (require_nesting_list, require_unwind): Now static.
20213 (Ffillarray): Rename locals to avoid shadowing.
20214
20215 * floatfns.c (domain_error2): Define only if needed.
20216 (Ffrexp, Fldexp): Rename locals to avoid shadowing.
20217
20218 * alloc.c (mark_backtrace): Move decl from here ...
20219 * lisp.h: ... to here, so that it can be checked.
20220
20221 * eval.c (call_debugger, do_debug_on_call, grow_specpdl): Now static.
20222 (Fdefvar): Rewrite so as not to use empty "else".
20223 (lisp_indirect_variable): Name an expression,
20224 to avoid gcc -Wbad-function-cast warning.
20225 (Fdefvar): Rename locals to avoid shadowing.
20226
20227 * callint.c (quotify_arg, quotify_args): Now static.
20228 (Fcall_interactively): Rename locals to avoid shadowing.
20229 Use const pointer when appropriate.
20230
20231 * lisp.h (get_system_name, get_operating_system_release):
20232 Move decls here, to check interfaces.
20233 * process.c (get_operating_system_release): Move decl to lisp.h.
20234 * xrdb.c (get_system_name): Likewise.
20235 * editfns.c (init_editfns, Fuser_login_name, Fuser_uid):
20236 (Fuser_real_uid, Fuser_full_name): Remove unnecessary casts,
20237 some of which prompt warnings from gcc -Wbad-function-cast.
20238 (Fformat_time_string, Fencode_time, Finsert_char):
20239 (Ftranslate_region_internal, Fformat):
20240 Rename or remove local vars to avoid shadowing.
20241 (Ftranslate_region_internal): Mark var as initialized.
20242
20243 * doc.c (Fdocumentation, Fsnarf_documentation): Move locals to
20244 avoid shadowing.
20245
20246 * lisp.h (eassert): Check that the argument compiles, even if
20247 ENABLE_CHECKING is not defined.
20248
20249 * data.c (Findirect_variable): Name an expression, to avoid
20250 gcc -Wbad-function-cast warning.
20251 (default_value, arithcompare, arith_driver, arith_error): Now static.
20252 (store_symval_forwarding): Rename local to avoid shadowing.
20253 (Fmake_variable_buffer_local, Fmake_local_variable):
20254 Mark variables as initialized.
20255 (do_blv_forwarding, do_symval_forwarding): Remove; unused.
20256
20257 * alloc.c (check_cons_list): Do not define unless GC_CHECK_CONS_LIST.
20258 (Fmake_vector, Fvector, Fmake_byte_code, Fgarbage_collect):
20259 Rename locals to avoid shadowing.
20260 (mark_stack): Move local variables into the #ifdef region where
20261 they're used.
20262 (BLOCK_INPUT_ALLOC, UNBLOCK_INPUT_ALLOC): Define only if
20263 ! defined SYSTEM_MALLOC && ! defined SYNC_INPUT, as they are not
20264 needed otherwise.
20265 (CHECK_ALLOCATED): Define only if GC_CHECK_MARKED_OBJECTS.
20266 (GC_STRING_CHARS): Remove; not used.
20267 (Fmemory_limit): Cast sbrk's returned value to char *.
20268
20269 * lisp.h (check_cons_list): Declare if GC_CHECK_CONS_LIST; this
20270 avoids undefined behavior in theory.
20271
20272 * regex.c (IF_LINT): Add defn, for benefit of ../lib-src.
20273
20274 Use functions, not macros, for up- and down-casing (Bug#8254).
20275 * buffer.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
20276 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Remove. All callers changed
20277 to use the following functions instead of these macros.
20278 (downcase): Adjust to lack of DOWNCASE_TABLE. Return int, not
20279 EMACS_INT, since callers assume the returned value fits in int.
20280 (upcase1): Likewise, for UPCASE_TABLE.
20281 (uppercasep, lowercasep, upcase): New static inline functions.
20282 * editfns.c (Fchar_equal): Remove no-longer-needed workaround for
20283 the race-condition problem in the old DOWNCASE.
20284
20285 * regex.c (CHARSET_LOOKUP_RANGE_TABLE_RAW, POP_FAILURE_REG_OR_COUNT):
20286 Rename locals to avoid shadowing.
20287 (regex_compile, re_match_2_internal): Move locals to avoid shadowing.
20288 (regex_compile, re_search_2, re_match_2_internal):
20289 Remove unused local vars.
20290 (FREE_VAR): Rewrite so as not to use empty "else",
20291 which gcc can warn about.
20292 (regex_compile, re_match_2_internal): Mark locals as initialized.
20293 (RETALLOC_IF): Define only if needed.
20294 (WORDCHAR_P): Likewise. This one is never needed, but is used
20295 only in a comment talking about a compiler bug, so put inside
20296 the #if 0 of that comment.
20297 (CHARSET_LOOKUP_BITMAP, FAIL_STACK_FULL, RESET_FAIL_STACK):
20298 (PUSH_FAILURE_ELT, BUF_PUSH_3, STOP_ADDR_VSTRING):
20299 Remove; unused.
20300
20301 * search.c (boyer_moore): Rename locals to avoid shadowing.
20302 * character.h (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE):
20303 (PREV_CHAR_BOUNDARY): Likewise.
20304
20305 * search.c (simple_search): Remove unused var.
20306
20307 * dired.c (compile_pattern): Move decl from here ...
20308 * lisp.h: ... to here, so that it can be checked.
20309 (struct re_registers): New forward decl.
20310
20311 * character.h (INC_POS, DEC_POS): Rename locals to avoid shadowing.
20312
20313 * indent.c (MULTIBYTE_BYTES_WIDTH): New args bytes, width.
20314 All uses changed.
20315 (MULTIBYTE_BYTES_WIDTH, scan_for_column, compute_motion):
20316 Rename locals to avoid shadowing.
20317 (Fvertical_motion): Mark locals as initialized.
20318
20319 * casefiddle.c (casify_object, casify_region): Now static.
20320 (casify_region): Mark local as initialized.
20321
20322 * cmds.c (internal_self_insert): Rename local to avoid shadowing.
20323
20324 * lisp.h (GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR, GCPRO6_VAR):
20325 New macros, so that the caller can use some names other than
20326 gcpro1, gcpro2, etc.
20327 (GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6): Reimplement in terms
20328 of the new macros.
20329 (GCPRO1_VAR, UNGCPRO_VAR): Change the meaning of the second
20330 argument, for consistency with GCPRO2_VAR, etc: it is now the
20331 prefix of the variable, not the variable itself. All uses
20332 changed.
20333 * dired.c (directory_files_internal, file_name_completion):
20334 Rename locals to avoid shadowing.
20335
20336 Fix a race condition diagnosed by gcc -Wsequence-point (Bug#8254).
20337 An expression of the form (DOWNCASE (x) == DOWNCASE (y)), found in
20338 dired.c's scmp function, had undefined behavior.
20339 * lisp.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
20340 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Move from here ...
20341 * buffer.h: ... to here, because these macros use current_buffer,
20342 and the new implementation with inline functions needs to have
20343 current_buffer in scope now, rather than later when the macros
20344 are used.
20345 (downcase, upcase1): New static inline functions.
20346 (DOWNCASE, UPCASE1): Reimplement using these functions.
20347 This avoids undefined behavior in expressions like
20348 DOWNCASE (x) == DOWNCASE (y), which previously suffered
20349 from race conditions in accessing the global variables
20350 case_temp1 and case_temp2.
20351 * casetab.c (case_temp1, case_temp2): Remove; no longer needed.
20352 * lisp.h (case_temp1, case_temp2): Remove their decls.
20353 * character.h (ASCII_CHAR_P): Move from here ...
20354 * lisp.h: ... to here, so that the inline functions mentioned
20355 above can use them.
20356
20357 * dired.c (directory_files_internal_unwind): Now static.
20358
20359 * fileio.c (file_name_as_directory, directory_file_name):
20360 (barf_or_query_if_file_exists, auto_save_error, auto_save_1):
20361 Now static.
20362 (file_name_as_directory): Use const pointers when appropriate.
20363 (Fexpand_file_name): Likewise. In particular, newdir might
20364 point at constant storage, so make it a const pointer.
20365 (Fmake_directory_internal, Fread_file_name): Remove unused vars.
20366 (Ffile_selinux_context, Fset_file_selinux_context): Fix pointer
20367 signedness issues.
20368 (Fset_file_times, Finsert_file_contents, auto_save_error):
20369 Rename locals to avoid shadowing.
20370
20371 * minibuf.c (choose_minibuf_frame_1): Now static.
20372 (Ftry_completion, Fall_completions): Rename or remove locals
20373 to avoid shadowing.
20374
20375 * marker.c (bytepos_to_charpos): Remove; unused.
20376
20377 * lisp.h (verify_bytepos, count_markers): New decls,
20378 so that gcc does not warn that these functions aren't declared.
20379
20380 * insdel.c (check_markers, make_gap_larger, make_gap_smaller):
20381 (reset_var_on_error, Fcombine_after_change_execute_1): Now static.
20382 (CHECK_MARKERS): Redo to avoid gcc -Wempty-body diagnostic.
20383 (copy_text): Remove unused local var.
20384
20385 * filelock.c (within_one_second): Now static.
20386 (lock_file_1): Rename local to avoid shadowing.
20387
20388 * buffer.c (fix_overlays_before): Mark locals as initialized.
20389 (fix_start_end_in_overlays): Likewise. This function should be
20390 simplified by using pointers-to-pointers, but that's a different
20391 matter.
20392 (switch_to_buffer_1): Now static.
20393 (Fkill_buffer, record_buffer, Fbury_buffer, Fset_buffer_multibyte):
20394 (report_overlay_modification): Rename locals to avoid shadowing.
20395
20396 * sysdep.c (system_process_attributes): Rename vars to avoid shadowing.
20397 Fix pointer signedness issue.
20398 (sys_subshell): Mark local as volatile if checking for lint,
20399 to suppress a gcc -Wclobbered warning that does not seem to be right.
20400 (MAXPATHLEN): Define only if needed.
20401
20402 * process.c (serial_open, serial_configure): Move decls from here ...
20403 * systty.h: ... to here, so that they can be checked.
20404
20405 * fns.c (get_random, seed_random): Move extern decls from here ...
20406 * lisp.h: ... to here, so that they can be checked.
20407
20408 * sysdep.c (reset_io): Now static.
20409 (wait_for_termination_signal): Remove; unused.
20410
20411 * keymap.c (keymap_parent, keymap_memberp, map_keymap_internal):
20412 (copy_keymap_item, append_key, push_text_char_description):
20413 Now static.
20414 (Fwhere_is_internal): Don't test CONSP (sequences) unnecessarily.
20415 (DENSE_TABLE_SIZE): Remove; unused.
20416 (get_keymap, access_keymap, Fdefine_key, Fwhere_is_internal):
20417 (describe_map_tree):
20418 Rename locals to avoid shadowing.
20419
20420 * keyboard.c: Declare functions static if they are not used elsewhere.
20421 (echo_char, echo_dash, cmd_error, top_level_2):
20422 (poll_for_input, handle_async_input): Now static.
20423 (read_char, kbd_buffer_get_event, make_lispy_position):
20424 (make_lispy_event, make_lispy_movement, apply_modifiers):
20425 (decode_keyboard_code, tty_read_avail_input, menu_bar_items):
20426 (parse_tool_bar_item, read_key_sequence, Fread_key_sequence):
20427 (Fread_key_sequence_vector): Rename locals to avoid shadowing.
20428 (read_key_sequence, read_char): Mark locals as initialized.
20429 (Fexit_recursive_edit, Fabort_recursive_edit): Mark with NO_RETURN.
20430
20431 * keyboard.h (make_ctrl_char): New decl.
20432 (mark_kboards): Move decl here ...
20433 * alloc.c (mark_kboards): ... from here.
20434
20435 * lisp.h (force_auto_save_soon): New decl.
20436
20437 * emacs.c (init_cmdargs): Rename local to avoid shadowing.
20438 (DEFINE_DUMMY_FUNCTION): New macro.
20439 (__do_global_ctors, __do_global_ctors_aux, __do_global_dtors, __main):
20440 Use it.
20441 (main): Add casts to avoid warnings
20442 if GCC considers string literals to be constants.
20443
20444 * lisp.h (fatal_error_signal): Add decl, since it's exported.
20445
20446 * dbusbind.c: Pointer signedness fixes.
20447 (xd_signature, xd_append_arg, xd_initialize):
20448 (Fdbus_call_method, Fdbus_call_method_asynchronously):
20449 (Fdbus_method_return_internal, Fdbus_method_error_internal):
20450 (Fdbus_send_signal, xd_read_message_1, Fdbus_register_service):
20451 (Fdbus_register_signal): Use SSDATA when the context wants char *.
20452
20453 * dbusbind.c (Fdbus_init_bus): Add cast to avoid warning
20454 if GCC considers string literals to be constants.
20455 (Fdbus_register_service, Fdbus_register_method): Remove unused vars.
20456
20457 2011-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
20458
20459 * print.c (PRINT_CIRCLE_CANDIDATE_P): New macro.
20460 (print_preprocess, print_object): New macro to fix last change.
20461
20462 * print.c (print_preprocess): Don't forget font objects.
20463
20464 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
20465
20466 * emacs.c (USAGE3): Doc fixes.
20467
20468 2011-03-15 Andreas Schwab <schwab@linux-m68k.org>
20469
20470 * coding.c (detect_coding_iso_2022): Reorganize code to clarify
20471 structure.
20472
20473 2011-03-14 Juanma Barranquero <lekktu@gmail.com>
20474
20475 * lisp.h (VWindow_system, Qfile_name_history):
20476 * keyboard.h (lispy_function_keys) [WINDOWSNT]:
20477 * w32term.h (w32_system_caret_hwnd, w32_system_caret_height)
20478 (w32_system_caret_x, w32_system_caret_y): Declare extern.
20479
20480 * w32select.c: Don't #include "keyboard.h".
20481 (run_protected): Add extern declaration for waiting_for_input.
20482
20483 * w32.c (Qlocal, noninteractive1, inhibit_window_system):
20484 * w32console.c (detect_input_pending, read_input_pending)
20485 (encode_terminal_code):
20486 * w32fns.c (quit_char, lispy_function_keys, Qtooltip)
20487 (w32_system_caret_hwnd, w32_system_caret_height, w32_system_caret_x)
20488 (w32_system_caret_y, Qfile_name_history):
20489 * w32font.c (w32font_driver, QCantialias, QCotf, QClang):
20490 * w32inevt.c (reinvoke_input_signal, lispy_function_keys):
20491 * w32menu.c (Qmenu_bar, QCtoggle, QCradio, Qoverriding_local_map)
20492 (Qoverriding_terminal_local_map, Qmenu_bar_update_hook):
20493 * w32proc.c (Qlocal, report_file_error):
20494 * w32term.c (Vwindow_system, updating_frame):
20495 * w32uniscribe.c (initialized, uniscribe_font_driver):
20496 Remove unneeded extern declarations.
20497
20498 2011-03-14 Chong Yidong <cyd@stupidchicken.com>
20499
20500 * buffer.c (Fmake_indirect_buffer): Fix incorrect assertions.
20501
20502 2011-03-13 Chong Yidong <cyd@stupidchicken.com>
20503
20504 * buffer.h (BUF_BEGV, BUF_BEGV_BYTE, BUF_ZV, BUF_ZV_BYTE, BUF_PT)
20505 (BUF_PT_BYTE): Rewrite to handle indirect buffers (Bug#8219).
20506 These macros can no longer be used for assignment.
20507
20508 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
20509 Assign struct members directly, instead of using BUF_BEGV etc.
20510 (record_buffer_markers, fetch_buffer_markers): New functions for
20511 recording and fetching special buffer markers.
20512 (set_buffer_internal_1, set_buffer_temp): Use them.
20513
20514 * lread.c (unreadchar): Use SET_BUF_PT_BOTH.
20515
20516 * insdel.c (adjust_point): Use SET_BUF_PT_BOTH.
20517
20518 * intervals.c (temp_set_point_both): Use SET_BUF_PT_BOTH.
20519 (get_local_map): Use SET_BUF_BEGV_BOTH and SET_BUF_ZV_BOTH.
20520
20521 * xdisp.c (hscroll_window_tree):
20522 (reconsider_clip_changes): Use PT instead of BUF_PT.
20523
20524 2011-03-13 Eli Zaretskii <eliz@gnu.org>
20525
20526 * makefile.w32-in ($(BLD)/editfns.$(O)): Depend on
20527 $(EMACS_ROOT)/lib/intprops.h.
20528
20529 2011-03-13 Paul Eggert <eggert@cs.ucla.edu>
20530
20531 Fix more problems found by GCC 4.5.2's static checks.
20532
20533 * gtkutil.c (xg_get_pixbuf_from_pixmap): Add cast from char *
20534 to unsigned char * to avoid compiler diagnostic.
20535 (xg_free_frame_widgets): Make it clear that a local variable is
20536 needed only if USE_GTK_TOOLTIP.
20537 (gdk_window_get_screen): Make it clear that this macro is needed
20538 only if USE_GTK_TOOLTIP.
20539 (int_gtk_range_get_value): New function, which avoids a diagnostic
20540 from gcc -Wbad-function-cast.
20541 (xg_set_toolkit_scroll_bar_thumb): Use it.
20542 (xg_tool_bar_callback, xg_tool_item_stale_p): Rewrite to avoid
20543 diagnostic from gcc -Wbad-function-cast.
20544 (get_utf8_string, xg_get_file_with_chooser):
20545 Rename locals to avoid shadowing.
20546 (create_dialog): Move locals to avoid shadowing.
20547
20548 * xgselect.c (xg_select): Remove unused var.
20549
20550 * image.c (four_corners_best): Mark locals as initialized.
20551 (gif_load): Initialize transparent_p to zero (Bug#8238).
20552 Mark another local as initialized.
20553 (my_png_error, my_error_exit): Mark with NO_RETURN.
20554
20555 * image.c (clear_image_cache): Now static.
20556 (DIM, HAVE_STDLIB_H_1): Remove unused macros.
20557 (xpm_load): Redo to avoid "discards qualifiers" gcc warning.
20558 (x_edge_detection): Remove unnecessary cast that
20559 gcc -Wbad-function-cast diagnoses.
20560 (gif_load): Fix pointer signedness.
20561 (clear_image_cache, xbm_read_bitmap_data, x_detect_edges):
20562 (jpeg_load, gif_load): Rename locals to avoid shadowing.
20563
20564 2011-03-12 Paul Eggert <eggert@cs.ucla.edu>
20565
20566 Improve quality of tests for time stamp overflow.
20567 For example, without this patch (encode-time 0 0 0 1 1
20568 1152921504606846976) returns the obviously-bogus value (-948597
20569 62170) on my RHEL 5.5 x86-64 host. With the patch, it correctly
20570 reports time overflow. See
20571 <http://lists.gnu.org/archive/html/emacs-devel/2011-03/msg00470.html>.
20572 * deps.mk (editfns.o): Depend on ../lib/intprops.h.
20573 * editfns.c: Include limits.h and intprops.h.
20574 (TIME_T_MIN, TIME_T_MAX): New macros.
20575 (time_overflow): Move earlier, to before first use.
20576 (hi_time, lo_time): New functions, for an accurate test for
20577 out-of-range times.
20578 (Fcurrent_time, Fget_internal_run_time, make_time): Use them.
20579 (Fget_internal_run_time): Don't assume time_t fits in int.
20580 (make_time): Use list2 instead of Fcons twice.
20581 (Fdecode_time): More accurate test for out-of-range times.
20582 (check_tm_member): New function.
20583 (Fencode_time): Use it, to test for out-of-range times.
20584 (lisp_time_argument): Don't rely on undefined left-shift and
20585 right-shift behavior when checking for time stamp overflow.
20586
20587 * editfns.c (time_overflow): New function, refactoring common code.
20588 (Fformat_time_string, Fdecode_time, Fencode_time):
20589 (Fcurrent_time_string): Use it.
20590
20591 Move 'make_time' to be next to its inverse 'lisp_time_argument'.
20592 * dired.c (make_time): Move to ...
20593 * editfns.c (make_time): ... here.
20594 * systime.h: Note the move.
20595
20596 2011-03-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20597
20598 * fringe.c (update_window_fringes): Remove unused variables.
20599
20600 * unexmacosx.c (copy_data_segment): Also copy __got section.
20601 (Bug#8223)
20602
20603 2011-03-12 Eli Zaretskii <eliz@gnu.org>
20604
20605 * termcap.c [MSDOS]: Include "msdos.h".
20606 (find_capability, tgetnum, tgetflag, tgetstr, tputs, tgetent):
20607 Constify `char *' arguments and their references according to
20608 prototypes in tparam.h.
20609
20610 * deps.mk (termcap.o): Depend on tparam.h and msdos.h.
20611
20612 * msdos.c (XMenuAddPane): 3rd argument is `const char *' now.
20613 Adapt all references accordingly.
20614
20615 * msdos.h (XMenuAddPane): 3rd argument is `const char *' now.
20616
20617 2011-03-11 Tom Tromey <tromey@redhat.com>
20618
20619 * buffer.c (syms_of_buffer): Remove obsolete comment.
20620
20621 2011-03-11 Eli Zaretskii <eliz@gnu.org>
20622
20623 * termhooks.h (encode_terminal_code): Declare prototype.
20624
20625 * msdos.c (encode_terminal_code): Don't declare prototype.
20626
20627 * term.c (encode_terminal_code): Now external again, used by
20628 w32console.c and msdos.c.
20629
20630 * makefile.w32-in ($(BLD)/term.$(O), ($(BLD)/tparam.$(O)):
20631 Depend on $(SRC)/tparam.h, see 2011-03-11T07:24:21Z!eggert@cs.ucla.edu.
20632
20633 2011-03-11 Paul Eggert <eggert@cs.ucla.edu>
20634
20635 Fix some minor problems found by GCC 4.5.2's static checks.
20636
20637 * fringe.c (update_window_fringes): Mark locals as initialized
20638 (Bug#8227).
20639 (destroy_fringe_bitmap, init_fringe_bitmap): Now static.
20640
20641 * alloc.c (mark_fringe_data): Move decl from here ...
20642 * lisp.h (mark_fringe_data) [HAVE_WINDOW_SYSTEM]: ... to here,
20643 to check its interface.
20644 (init_fringe_once): Do not declare unless HAVE_WINDOW_SYSTEM.
20645
20646 * fontset.c (free_realized_fontset): Now static.
20647 (Fset_fontset_font): Rename local to avoid shadowing.
20648 (fontset_font): Mark local as initialized.
20649 (FONTSET_SPEC, FONTSET_REPERTORY, RFONT_DEF_REPERTORY): Remove; unused.
20650
20651 * xrdb.c: Include "xterm.h", to check x_load_resources's interface.
20652
20653 * xselect.c (x_disown_buffer_selections): Remove; not used.
20654 (TRACE3) [!defined TRACE_SELECTION]: Remove; not used.
20655 (x_own_selection, Fx_disown_selection_internal): Rename locals
20656 to avoid shadowing.
20657 (x_handle_dnd_message): Remove local to avoid shadowing.
20658
20659 * lisp.h (GCPRO1_VAR, UNGCPRO_VAR): New macros,
20660 so that the caller can use some name other than gcpro1.
20661 (GCPRO1, UNGCPRO): Reimplement in terms of the new macros.
20662 * xfns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
20663 (Fx_backspace_delete_keys_p):
20664 Use them to avoid shadowing, and rename vars to avoid shadowing.
20665 (x_decode_color, x_set_name, x_window): Now static.
20666 (Fx_create_frame): Add braces to silence GCC warning.
20667 (Fx_file_dialog, Fx_select_font): Fix pointer signedness.
20668 (x_real_positions, xg_set_icon_from_xpm_data, x_create_tip_frame):
20669 Remove unused locals.
20670 (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
20671 (Fx_backspace_delete_keys_p): Rename locals to avoid shadowing.
20672 Some of these renamings use the new GCPRO1_VAR and UNGCPRO_VAR
20673 macros.
20674
20675 * xterm.h (x_mouse_leave): New decl.
20676
20677 * xterm.c (x_copy_dpy_color, x_focus_on_frame, x_unfocus_frame):
20678 Remove unused functions.
20679 (x_shift_glyphs_for_insert, XTflash, XTring_bell):
20680 (x_calc_absolute_position): Now static.
20681 (XTread_socket): Don't define label "out" unless it's used.
20682 Don't declare local "event" unless it's used.
20683 (x_iconify_frame, x_free_frame_resources): Don't declare locals
20684 unless they are used.
20685 (XEMBED_VERSION, xembed_set_info): Don't define unless needed.
20686 (x_fatal_error_signal): Remove; not used.
20687 (x_draw_image_foreground, redo_mouse_highlight, XTmouse_position):
20688 (x_scroll_bar_report_motion, handle_one_xevent, x_draw_bar_cursor):
20689 (x_error_catcher, x_connection_closed, x_error_handler):
20690 (x_error_quitter, xembed_send_message, x_iconify_frame):
20691 (my_log_handler): Rename locals to avoid shadowing.
20692 (x_delete_glyphs, x_ins_del_lines): Mark with NO_RETURN.
20693 (x_connection_closed): Tell GCC not to suggest NO_RETURN.
20694
20695 * xfaces.c (clear_face_cache, Fx_list_fonts, Fface_font):
20696 Rename or move locals to avoid shadowing.
20697 (tty_defined_color, merge_face_heights): Now static.
20698 (free_realized_faces_for_fontset): Remove; not used.
20699 (Fx_list_fonts): Mark variable that gcc -Wuninitialized
20700 does not deduce is never used uninitialized.
20701 (STRDUPA, LSTRDUPA, FONT_POINT_SIZE_QUANTUM): Remove; not used.
20702 (LFACEP): Define only if XASSERTS, as it's not needed otherwise.
20703
20704 * terminal.c (store_terminal_param): Now static.
20705
20706 * xmenu.c (menu_highlight_callback): Now static.
20707 (set_frame_menubar): Remove unused local.
20708 (xmenu_show): Rename parameter to avoid shadowing.
20709 (xmenu_show, xdialog_show, xmenu_show): Make local pointers "const"
20710 since they might point to immutable storage.
20711 (next_menubar_widget_id): Declare only if USE_X_TOOLKIT,
20712 since it's unused otherwise.
20713
20714 * xdisp.c (produce_glyphless_glyph): Initialize lower_xoff.
20715 Add a FIXME, since the code still doesn't look right. (Bug#8215)
20716 (Fcurrent_bidi_paragraph_direction): Simplify slightly; this
20717 avoids a gcc -Wuninitialized diagnostic.
20718 (display_line, BUILD_COMPOSITE_GLYPH_STRING, draw_glyphs):
20719 (note_mouse_highlight): Mark variables that gcc -Wuninitialized
20720 does not deduce are never used uninitialized.
20721
20722 * lisp.h (IF_LINT): New macro, copied from ../lib-src/emacsclient.c.
20723
20724 * xdisp.c (redisplay_window): Rename local to avoid shadowing.
20725 * window.c (window_loop, size_window):
20726 (run_window_configuration_change_hook, enlarge_window): Likewise.
20727
20728 * window.c (display_buffer): Now static.
20729 (size_window): Mark variables that gcc -Wuninitialized
20730 does not deduce are never used uninitialized.
20731 * window.h (check_all_windows): New decl, to forestall
20732 gcc -Wmissing-prototypes diagnostic.
20733 * dispextern.h (bidi_dump_cached_states): Likewise.
20734
20735 * charset.h (CHECK_CHARSET_GET_CHARSET): Rename locals to avoid
20736 shadowing.
20737 * charset.c (map_charset_for_dump, Fchar_charset): Likewise.
20738 Include <limits.h>.
20739 (Fsort_charsets): Redo min/max calculation to shorten the code a bit
20740 and to avoid gcc -Wuninitialized warning.
20741 (load_charset_map): Mark variables that gcc -Wuninitialized
20742 does not deduce are never used uninitialized.
20743 (load_charset): Abort instead of using uninitialized var (Bug#8229).
20744
20745 * coding.c (coding_set_source, coding_set_destination):
20746 Use "else { /* comment */ }" rather than "else /* comment */;"
20747 for clarity, and to avoid gcc -Wempty-body warning.
20748 (Fdefine_coding_system_internal): Don't redeclare 'i' inside
20749 a block, when the outer 'i' will do.
20750 (decode_coding_utf_8, decode_coding_utf_16, detect_coding_emacs_mule):
20751 (emacs_mule_char, decode_coding_emacs_mule, detect_coding_iso_2022):
20752 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5):
20753 (decode_coding_raw_text, decode_coding_charset, get_translation_table):
20754 (Fdecode_sjis_char, Fdefine_coding_system_internal):
20755 Rename locals to avoid shadowing.
20756 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
20757 * coding.c (emacs_mule_char, encode_invocation_designation):
20758 Now static, since they're not used elsewhere.
20759 (decode_coding_iso_2022): Add "default: abort ();" as a safety check.
20760 (decode_coding_object, encode_coding_object, detect_coding_system):
20761 (decode_coding_emacs_mule): Mark variables that gcc
20762 -Wuninitialized does not deduce are never used uninitialized.
20763 (detect_coding_iso_2022): Initialize a local variable that might
20764 be used uninitialized. Leave a FIXME because it's not clear that
20765 this initialization is needed. (Bug#8211)
20766 (ISO_CODE_LF, ISO_CODE_CR, CODING_ISO_FLAG_EUC_TW_SHIFT):
20767 (ONE_MORE_BYTE_NO_CHECK, UTF_BOM, UTF_16_INVALID_P):
20768 (SHIFT_OUT_OK, ENCODE_CONTROL_SEQUENCE_INTRODUCER):
20769 (ENCODE_DIRECTION_R2L, ENCODE_DIRECTION_L2R):
20770 Remove unused macros.
20771
20772 * category.c (hash_get_category_set): Remove unused local var.
20773 (copy_category_table): Now static, since it's not used elsewhere.
20774 * character.c (string_count_byte8): Likewise.
20775
20776 * ccl.c (CCL_WRITE_STRING, CCL_ENCODE_CHAR, Fccl_execute_on_string):
20777 (Fregister_code_conversion_map): Rename locals to avoid shadowing.
20778
20779 * chartab.c (copy_sub_char_table): Now static, since it's not used
20780 elsewhere.
20781 (sub_char_table_ref_and_range, char_table_ref_and_range):
20782 Rename locals to avoid shadowing.
20783 (ASET_RANGE, GET_SUB_CHAR_TABLE): Remove unused macros.
20784
20785 * bidi.c (bidi_check_type): Now static, since it's not used elsewhere.
20786 (BIDI_BOB): Remove unused macro.
20787
20788 * cm.c (cmgoto): Mark variables that gcc -Wuninitialized does not
20789 deduce are never used uninitialized.
20790 * term.c (encode_terminal_code): Likewise.
20791
20792 * term.c (encode_terminal_code): Now static. Remove unused local.
20793
20794 * tparam.h: New file.
20795 * term.c, tparam.h: Include it.
20796 * deps.mk (term.o, tparam.o): Depend on tparam.h.
20797 * term.c (tputs, tgetent, tgetflag, tgetnum, tparam, tgetstr):
20798 Move these decls to tparam.h, and make them agree with what
20799 is actually in tparam.c. The previous trick of using incompatible
20800 decls in different modules does not conform to the C standard.
20801 All callers of tparam changed to use tparam's actual API.
20802 * tparam.c (tparam1, tparam, tgoto):
20803 Use const pointers where appropriate.
20804
20805 * cm.c (calccost, cmgoto): Use const pointers where appropriate.
20806 * cm.h (struct cm): Likewise.
20807 * dispextern.h (do_line_insertion_deletion_costs): Likewise.
20808 * scroll.c (ins_del_costs, do_line_insertion_deletion_costs): Likewise.
20809 * term.c (tty_ins_del_lines, calculate_costs, struct fkey_table):
20810 (term_get_fkeys_1, append_glyphless_glyph, produce_glyphless_glyph):
20811 (turn_on_face, init_tty): Likewise.
20812 * termchar.h (struct tty_display_info): Likewise.
20813
20814 * term.c (term_mouse_position): Rename local to avoid shadowing.
20815
20816 * alloc.c (mark_ttys): Move decl from here ...
20817 * lisp.h (mark_ttys): ... to here, so that it's checked against defn.
20818
20819 2011-03-11 Andreas Schwab <schwab@linux-m68k.org>
20820
20821 * .gdbinit (pwinx, xbuffer): Fix access to buffer name.
20822
20823 2011-03-09 Juanma Barranquero <lekktu@gmail.com>
20824
20825 * search.c (compile_pattern_1): Remove argument regp, unused since
20826 revid:rms@gnu.org-19941211082627-3x1g1wyqkjmwloig.
20827 (compile_pattern): Don't pass it.
20828
20829 2011-03-08 Jan Djärv <jan.h.d@swipnet.se>
20830
20831 * xterm.h (DEFAULT_GDK_DISPLAY): New define.
20832 (GDK_WINDOW_XID, gtk_widget_get_preferred_size): New defines
20833 for ! HAVE_GTK3.
20834 (GTK_WIDGET_TO_X_WIN): Use GDK_WINDOW_XID.
20835
20836 * xmenu.c (menu_position_func): Call gtk_widget_get_preferred_size.
20837
20838 * gtkutil.c: Include gtkx.h if HAVE_GTK3. If ! HAVE_GTK3, define
20839 gdk_window_get_screen, gdk_window_get_geometry,
20840 gdk_x11_window_lookup_for_display and GDK_KEY_g.
20841 (xg_set_screen): Use DEFAULT_GDK_DISPLAY.
20842 (xg_get_pixbuf_from_pixmap): New function.
20843 (xg_get_pixbuf_from_pix_and_mask): Change parameters from GdkPixmap
20844 to Pixmap, take frame as parameter, remove GdkColormap parameter.
20845 Call xg_get_pixbuf_from_pixmap instead of
20846 gdk_pixbuf_get_from_drawable.
20847 (xg_get_image_for_pixmap): Do not make GdkPixmaps, call
20848 xg_get_pixbuf_from_pix_and_mask with Pixmap parameters instead.
20849 (xg_check_special_colors): Use GtkStyleContext and its functions
20850 for HAVE_GTK3.
20851 (xg_prepare_tooltip, xg_hide_tooltip): Call gdk_window_get_screen.
20852 (xg_prepare_tooltip, create_dialog, menubar_map_cb)
20853 (xg_update_frame_menubar, xg_tool_bar_detach_callback)
20854 (xg_tool_bar_attach_callback, xg_update_tool_bar_sizes):
20855 Call gtk_widget_get_preferred_size.
20856 (xg_frame_resized): gdk_window_get_geometry only takes 5
20857 parameters.
20858 (xg_win_to_widget, xg_event_is_for_menubar):
20859 Call gdk_x11_window_lookup_for_display.
20860 (xg_set_widget_bg): New function.
20861 (delete_cb): New function.
20862 (xg_create_frame_widgets): Connect delete-event to delete_cb.
20863 Call xg_set_widget_bg. Only set background pixmap for ! HAVE_GTK3
20864 (xg_set_background_color): Call xg_set_widget_bg.
20865 (xg_set_frame_icon): Call xg_get_pixbuf_from_pix_and_mask.
20866 (xg_create_scroll_bar): vadj is a GtkAdjustment for HAVE_GTK3.
20867 Only call gtk_range_set_update_policy if ! HAVE_GTK3.
20868 (xg_make_tool_item): Only connect xg_tool_bar_item_expose_callback
20869 if ! HAVE_GTK3.
20870 (update_frame_tool_bar): Call gtk_widget_hide.
20871 (xg_initialize): Use GDK_KEY_g.
20872
20873 * xsmfns.c (gdk_set_sm_client_id): Define to gdk_set_sm_client_id
20874 if ! HAVE_GTK3
20875 (x_session_initialize): Call gdk_x11_set_sm_client_id.
20876
20877 * xterm.c (XFillRectangle): Use cairo routines for HAVE_GTK3.
20878 (x_term_init): Disable Xinput(2) with GDK_CORE_DEVICE_EVENTS.
20879 Load ~/emacs.d/gtkrc only for ! HAVE_GTK3.
20880
20881 2011-03-08 Juanma Barranquero <lekktu@gmail.com>
20882
20883 * w32xfns.c (select_palette): Check success of RealizePalette against
20884 GDI_ERROR, not zero.
20885
20886 See ChangeLog.11 for earlier changes.
20887
20888 ;; Local Variables:
20889 ;; coding: utf-8
20890 ;; End:
20891
20892 Copyright (C) 2011-2012 Free Software Foundation, Inc.
20893
20894 This file is part of GNU Emacs.
20895
20896 GNU Emacs is free software: you can redistribute it and/or modify
20897 it under the terms of the GNU General Public License as published by
20898 the Free Software Foundation, either version 3 of the License, or
20899 (at your option) any later version.
20900
20901 GNU Emacs is distributed in the hope that it will be useful,
20902 but WITHOUT ANY WARRANTY; without even the implied warranty of
20903 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20904 GNU General Public License for more details.
20905
20906 You should have received a copy of the GNU General Public License
20907 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.