* xdisp.c: Minor style fixes.
[bpt/emacs.git] / src / ChangeLog
1 2012-12-13 Paul Eggert <eggert@cs.ucla.edu>
2
3 * xdisp.c: Minor style fixes.
4 (init_iterator): Hoist assignment out of if-expression.
5 (markpos_of_region): Callers now test for sign, not for -1.
6
7 2012-12-13 Dmitry Antipov <dmantipov@yandex.ru>
8
9 Minor redisplay optimization when the region length is zero.
10 * xdisp.c (markpos_of_region): New function.
11 (init_iterator): Do not highlight the region of zero length.
12 (redisplay_window): Check whether the region is of non-zero length.
13 (try_cursor_movement): Allow if the region length is zero.
14 (try_window_reusing_current_matrix, try_window_id): Likewise.
15
16 2012-12-13 Eli Zaretskii <eliz@gnu.org>
17
18 * search.c (search_buffer): Check the inverse translations of each
19 character in pattern when the buffer being searched is unibyte.
20 (Bug#13084)
21
22 2012-12-13 Paul Eggert <eggert@cs.ucla.edu>
23
24 * fileio.c (Fvisited_file_modtime): Return (-1 ...) for nonexistent
25 files, fixing a regression from 24.2.
26 (Fverify_visited_file_modtime): Don't read uninitialized st.st_size.
27
28 2012-12-13 Paul Eggert <eggert@cs.ucla.edu>
29
30 * fileio.c (Fcopy_file): Make fstat failure as serious as open failure.
31 fstat shouldn't fail, and if it does fail copy-file should not proceed.
32 Remove unnecessary S_ISLNK test, as (contra the comments) this
33 function can't copy symlinks. Improve quality of error message
34 when attempting to copy files that are neither regular files nor
35 directories.
36
37 2012-12-12 Dmitry Antipov <dmantipov@yandex.ru>
38
39 * dispnew.c (set_window_cursor_after_update): Use clip_to_bounds.
40 * gtkutil.c (xg_set_toolkit_scroll_bar_thumb):
41 * window.c (Frecenter):
42 * xdisp.c (resize_mini_window, hscroll_window_tree, draw_glyphs):
43 * xterm.c (x_set_toolkit_scroll_bar_thumb): Likewise.
44
45 2012-12-12 Daniel Colascione <dancol@dancol.org>
46
47 * unexcw.c (fixup_executable): use posix_fallocate to ensure that
48 the dumped Emacs is not a sparse file, greatly improving Cygwin
49 "make bootstrap" performance.
50
51 2012-12-11 Michael Albinus <michael.albinus@gmx.de>
52
53 * inotify.c (inotify_callback): Generate an Emacs event for every
54 incoming inotify event.
55
56 2012-12-11 Eli Zaretskii <eliz@gnu.org>
57
58 * xdisp.c (handle_face_prop): Fix logic of computing
59 it->start_of_box_run_p.
60 (append_space_for_newline): If the glyph row is R2L, reset the
61 iterator's end_of_box_run_p flag before prepending the space glyph.
62 (extend_face_to_end_of_line): If the glyph row is R2L, reset the
63 iterator's start_of_box_run_p flag before prepending the stretch.
64 (append_glyph, produce_image_glyph, append_composite_glyph)
65 (append_stretch_glyph, append_glyphless_glyph): Reverse the
66 left_box_line_p and right_box_line_p flags of the glyph for R2L
67 glyph rows. (Bug#13011)
68
69 2012-12-11 Dmitry Antipov <dmantipov@yandex.ru>
70
71 * buffer.c (Fset_buffer_multibyte): Do not force redisplay
72 if changed buffer is not shown in a window.
73 * insdel.c (prepare_to_modify_buffer): Likewise.
74 * window.c (replace_buffer_in_windows_safely): Do nothing
75 if buffer is not shown in a window.
76 (Fforce_window_update): Likewise if string or buffer argument
77 is passed.
78
79 2012-12-11 Eli Zaretskii <eliz@gnu.org>
80
81 * inotify.c (Finotify_add_watch): Rename decoded_file_name to
82 encoded_file_name, which is what it is.
83
84 2012-12-11 Dmitry Antipov <dmantipov@yandex.ru>
85
86 Consistently use marker_position and marker_byte_position.
87 * fringe.c (Ffringe_bitmaps_at_pos):
88 * indent.c (Fvertical_motion):
89 * insdel.c (prepare_to_modify_buffer):
90 * keyboard.c (make_lispy_position):
91 * window.c (Fwindow_end, Fpos_visible_in_window_p, unshow_buffer)
92 (window_scroll_pixel_based, displayed_window_lines)
93 (Fset_window_configuration):
94 * xdisp.c (message_dolog, with_echo_area_buffer_unwind_data)
95 (mark_window_display_accurate_1, redisplay_window, decode_mode_spec):
96 Replace direct access to marker fields with calls
97 to marker_position and/or marker_byte_position.
98
99 2012-12-11 Juanma Barranquero <lekktu@gmail.com>
100
101 * makefile.w32-in (SIG2STR_H): New macro.
102 (SYSWAIT_H, $(BLD)/emacs.$(O), $(BLD)/process.$(O))
103 ($(BLD)/w32notify.$(O)): Update dependencies.
104
105 2012-12-10 Daniel Colascione <dancol@dancol.org>
106
107 * w32term.c, keyboard.c: Fix build break in cygw32 by omitting
108 Windows file notification functionality unless WINDOWSNT.
109
110 * w32gui.h (hprevinst, lpCmdLine, nCmdShow): Remove unused
111 declarations.
112
113 * w32fns.c (cache_system_info): Initialize the global hinst
114 variable here so various initialization calls DTRT.
115
116 * unexw32.c (hprevinst, lpCmdLine, nCmdShow): Remove unused
117 variables.
118 (hinst): Remove unneeded extern declaration.
119 (_start): Remove initialization of above variables; remove
120 initialization of hinst, as cache_system_info now does that.
121
122 * emacs.c (main): Call cache_system_info early in startup; we
123 previously weren't calling it in Cygwin builds.
124
125 * Makefile.in (ntsource, WINDRES, W32_RES, W#@_RES_LINK): Teach
126 the autoconf build system how to compile a Windows resource file
127 and link it to Emacs.
128
129 2012-12-10 Dmitry Antipov <dmantipov@yandex.ru>
130
131 Per-buffer window counters.
132 * buffer.h (struct buffer): New member window_count.
133 (buffer_window_count): New function.
134 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
135 Initialize window_count.
136 (Fkill_buffer): Verify window_count for the buffer being killed.
137 (modify_overlay): Do not force redisplay if buffer is not shown
138 in any window.
139 (init_buffer_once): Initialize window_count for buffer_defaults
140 and buffer_local_symbols.
141 * window.h (buffer_shared): Remove declaration.
142 (wset_buffer): Convert from inline ...
143 * window.c (wset_buffer): ... to an ordinary function.
144 (adjust_window_count): New function.
145 (make_parent_window): Use it.
146 * xdisp.c (buffer_shared): Remove.
147 (redisplay_internal, redisplay_window): Adjust users.
148 (buffer_shared_and_changed): Use per-buffer window counter.
149
150 2012-12-10 Eli Zaretskii <eliz@gnu.org>
151
152 Support for filesystem notifications on MS-Windows.
153 * w32proc.c (sys_select): If drain_message_queue returns non-zero,
154 and this is a TTY frame, signal the caller that keyboard input is
155 available.
156
157 * w32xfns.c (drain_message_queue): Now returns an int: an
158 indication whether any WM_EMACS_FILENOTIFY messages were found in
159 the queue.
160
161 * w32inevt.c (handle_file_notifications): New function.
162 (w32_console_read_socket): Call it to process file notifications.
163
164 * w32console.c (initialize_w32_display): Record the main thread ID
165 in dwMainThreadId.
166
167 * deps.mk (inotify.o): New dependency list.
168
169 * Makefile.in (SOME_MACHINE_OBJECTS): Add w32notify.o.
170
171 * w32term.h (WM_EMACS_FILENOTIFY): New custom message.
172 (WM_EMACS_END): Bump value by 1.
173 (notification_buffer_in_use, file_notifications)
174 (notifications_size, notifications_desc): Declare.
175 (w32_get_watch_object, lispy_file_action, globals_of_w32notify):
176 Add prototypes.
177
178 * w32term.c (lispy_file_action, queue_notifications): New functions.
179 (syms_of_w32term) <Qadded, Qremoved, Qmodified, Qrenamed_from>
180 <Qrenamed_to>: New symbols.
181 (w32_read_socket): Handle the WM_EMACS_FILENOTIFY message.
182
183 * w32notify.c: New file, implements file event notifications for
184 MS-Windows.
185
186 * w32fns.c (w32_wnd_proc): Handle the WM_EMACS_FILENOTIFY message
187 by posting it to the w32_read_socket queue.
188
189 * termhooks.h (enum event_kind) [HAVE_NTGUI]: Support
190 FILE_NOTIFY_EVENT.
191
192 * makefile.w32-in (OBJ2): Add $(BLD)/w32notify.$(O).
193 (GLOBAL_SOURCES): Add w32notify.c
194 ($(BLD)/w32notify.$(O)): New set of dependencies.
195
196 * lisp.h (syms_of_w32notify) [WINDOWSNT]: Add prototype.
197
198 * keyboard.c (kbd_buffer_get_event) [WINDOWSNT]: Handle
199 FILE_NOTIFY_EVENT.
200 (syms_of_keyboard) [HAVE_NTGUI] <Qfile_notify>: New symbol.
201 (keys_of_keyboard) [WINDOWSNT]: Bind file-notify to
202 w32notify-handle-event by default.
203
204 * emacs.c (main) [WINDOWSNT]: Call globals_of_w32notify and
205 syms_of_w32notify.
206
207 2012-12-10 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
208
209 Support for filesystem notifications on GNU/Linux via inotify.
210 * termhooks.h (enum event_kind) [HAVE_INOTIFY]: Add
211 FILE_NOTIFY_EVENT.
212
213 * lisp.h (syms_of_inotify) [HAVE_INOTIFY]: Add prototype.
214
215 * keyboard.c (Qfile_inotify) [HAVE_INOTIFY]: New variable.
216 (syms_of_keyboard): DEFSYM it.
217 (kbd_buffer_get_event) [HAVE_INOTIFY]: Generate FILE_NOTIFY_EVENT.
218 (make_lispy_event): Support FILE_NOTIFY_EVENT by generating
219 Qfile_inotify events.
220 (keys_of_keyboard) [HAVE_INOTIFY]: Bind file-inotify events in
221 special-event-map to inotify-handle-event.
222
223 * emacs.c (main) [HAVE_INOTIFY]: Call syms_of_inotify.
224
225 * Makefile.in (base_obj): Add inotify.o.
226
227 * inotify.c: New file.
228
229 2012-12-10 Jan Djärv <jan.h.d@swipnet.se>
230
231 * nsterm.m (fd_handler:): FD_ZERO fds (Bug#13103).
232
233 2012-12-10 Fabrice Popineau <fabrice.popineau@gmail.com>
234
235 * w32fns.c (cache_system_info): Cast sysinfo_cache.dwPageSize to
236 DWORD_PTR, for compatibility with 64-bit builds.
237
238 * w32.c (_PROCESS_MEMORY_COUNTERS_EX):
239 (GetProcessWorkingSetSize_Proc, get_process_working_set_size)
240 (system_process_attributes): Use SIZE_T rather than DWORD, for
241 compatibility with 64-bit builds.
242
243 2012-12-10 Christopher Schmidt <christopher@ch.ristopher.com>
244
245 * lread.c (Vload_source_file_function): Doc fix (Bug#11647).
246
247 2012-12-10 Eli Zaretskii <eliz@gnu.org>
248
249 * indent.c (Fvertical_motion): If a display string will be
250 displayed on the left or the right margin, don't consider it as a
251 factor in cursor positioning. (Bug#13108)
252
253 2012-12-10 Martin Rudalics <rudalics@gmx.at>
254
255 * editfns.c (Fcompare_buffer_substrings): Reword doc-string.
256
257 2012-12-10 Paul Eggert <eggert@cs.ucla.edu>
258
259 * fileio.c (Fsubstitute_in_file_name): Use ptrdiff_t, not int,
260 for string length.
261
262 2012-12-08 Eli Zaretskii <eliz@gnu.org>
263
264 * w32.c (unsetenv): Return 0 if the input string is too long.
265
266 2012-12-08 Paul Eggert <eggert@cs.ucla.edu>
267
268 Use putenv+unsetenv instead of modifying environ directly (Bug#13070).
269 * alloc.c (xputenv): New function.
270 * dbusbind.c (Fdbus_init_bus):
271 * emacs.c (main):
272 * xterm.c (x_term_init):
273 Use xputenv instead of setenv or putenv, to detect memory exhaustion.
274 * editfns.c (initial_tz): Move static var decl up.
275 (tzvalbuf_in_environ): New static var.
276 (init_editfns): Initialize these two static vars.
277 (Fencode_time): Don't assume arbitrary limit on EMACS_INT width.
278 Save old TZ value on stack, if it's small.
279 (Fencode_time, set_time_zone_rule): Don't modify 'environ' directly;
280 instead, use xputenv+unsetenv to set and restore TZ.
281 (environbuf): Remove static var. All uses removed.
282 (Fset_time_zone_rule): Do not save TZ and environ;
283 no longer needed here.
284 (set_time_zone_rule_tz1, set_time_zone_rule_tz2) [LOCALTIME_CACHE]:
285 Move to inside set_time_zone_rule; they don't need file scope any more.
286 (set_time_zone_rule): Maintain the TZ=value string separately.
287 (syms_of_editfns): Don't initialize initial_tz;
288 init_editfns now does it.
289 * emacs.c (dump_tz) [HAVE_TZSET]: Now const.
290 * lisp.h (xputenv): New decl.
291
292 2012-12-08 Fabrice Popineau <fabrice.popineau@gmail.com>
293
294 * w32fns.c (emacs_abort): Don't do arithmetics on void pointers.
295
296 2012-12-08 Eli Zaretskii <eliz@gnu.org>
297
298 * w32.c (unsetenv, sys_putenv): New functions.
299
300 2012-12-08 Chong Yidong <cyd@gnu.org>
301
302 * editfns.c (Finsert_char): Make the error message more
303 informative (Bug#12992).
304
305 2012-12-08 Paul Eggert <eggert@cs.ucla.edu>
306
307 Simplify get_lim_data.
308 * vm-limit.c (get_lim_data): Combine RLIMIT_AS and RLIMIT_DATA methods.
309 Remove USG and vlimit methods; no longer used these days.
310 Add #error catchall just in case.
311
312 Assume POSIX 1003.1-1988 or later for signal.h (Bug#13026).
313 Exceptions: do not assume SIGCONT, SIGSTOP, SIGTSTP, SIGTTIN,
314 SIGTTOU, SIGUSR1, SIGUSR2, as Microsoft platforms lack these.
315 * process.c [subprocesses]: Include <c-ctype.h>, <sig2str.h>.
316 (deleted_pid_list, Fdelete_process, create_process)
317 (record_child_status_change, handle_child_signal, deliver_child_signal)
318 (init_process_emacs, syms_of_process):
319 Assume SIGCHLD is defined.
320 (parse_signal): Remove. All uses removed.
321 (abbr_to_signal): New static function.
322 (Fsignal_process): Use it to convert signal names to ints.
323 * sysdep.c (sys_suspend) [!DOS_NT]: Use kill (0, ...) rather than
324 kill (getpgrp (), ...).
325 (emacs_sigaction_init): Assume SIGCHLD is defined.
326 (init_signals): Assume SIGALRM, SIGCHLD, SIGHUP, SIGKILL,
327 SIGPIPE, and SIGQUIT are defined. Do not worry about SIGCLD any more.
328 * syssignal.h (EMACS_KILLPG): Remove.
329 All uses replaced by 'kill' with a negative pid.
330 (SIGCHLD): Remove definition, as we now assume SIGCHLD.
331 * w32proc.c (sys_kill): Support negative pids compatibly with POSIX.
332
333 2012-12-07 Paul Eggert <eggert@cs.ucla.edu>
334
335 * sysdep.c (get_child_status): Abort on internal error (Bug#13086).
336 This will cause a production Emacs to dump core instead of
337 infinite-looping.
338
339 2012-12-07 Dmitry Antipov <dmantipov@yandex.ru>
340
341 * frame.c (make_frame): Do not set window's buffer to t.
342 * window.c (Fsplit_window_internal): Likewise. Previously it was
343 used to indicate that the window is being set up. Now we use
344 set_window_buffer for all new windows, so the condition in ...
345 (Fset_window_buffer): ... is always true and can be removed.
346
347 2012-12-07 Dmitry Antipov <dmantipov@yandex.ru>
348
349 Convenient macro to check whether the buffer is hidden.
350 * buffer.h (BUFFER_HIDDEN_P): New macro.
351 * frame.c (make_frame): Use it. Adjust comment.
352 * buffer.c (candidate_buffer): New function.
353 (Fother_buffer, other_buffer_safely): Use it.
354
355 2012-12-06 Eli Zaretskii <eliz@gnu.org>
356
357 * w32proc.c (waitpid): Avoid busy-waiting when called with WNOHANG
358 if the child process is still running. Instead, exit the wait
359 loop and return zero. (Bug#13086)
360
361 2012-12-06 Dmitry Antipov <dmantipov@yandex.ru>
362
363 * frame.h (x_char_width, x_char_height): Remove prototypes.
364 * w32term.h (x_char_width, x_char_height): Likewise.
365 * xfns.c (x_char_width, x_char_height): Remove.
366 * w32fns.c (x_char_width, x_char_height): Likewise.
367 * nsfns.c (x_char_width, x_char_height): Likewise.
368 * frame.c (Fframe_char_width): Use FRAME_COLUMN_WIDTH for
369 all window frames.
370 (Fframe_char_height): Likewise with FRAME_LINE_HEIGHT.
371 * keyboard.c (command_loop_1): Remove prototype.
372 (command_loop_2, top_level_1): Add static to match prototype.
373
374 2012-12-06 Paul Eggert <eggert@cs.ucla.edu>
375
376 Fix a recently-introduced delete-process race condition.
377 * callproc.c, process.h (record_kill_process):
378 New function, containing part of the old call_process_kill.
379 (call_process_kill): Use it.
380 This does not change call_process_kill's behavior.
381 * process.c (Fdelete_process): Use record_kill_process to fix a
382 race condition that could cause Emacs to lose track of a child.
383
384 2012-12-06 Dmitry Antipov <dmantipov@yandex.ru>
385
386 Avoid code duplication between prev_frame and next_frame.
387 * frame.c (candidate_frame): New function. Add comment.
388 (prev_frame, next_frame): Use it. Adjust comment.
389
390 2012-12-06 Eli Zaretskii <eliz@gnu.org>
391
392 * callproc.c (Fcall_process_region) [!HAVE_MKSTEMP]: If mktemp
393 fails, signal an error instead of continuing with an empty
394 string. (Bug#13079)
395 Encode expanded temp file pattern before passing it to mkstemp or
396 mktemp.
397
398 * fileio.c (file_name_as_directory, directory_file_name) [DOS_NT]:
399 Encode the file name before passing it to dostounix_filename, in
400 case it will downcase it (under w32-downcase-file-names).
401 (Bug#12933)
402
403 2012-12-05 Paul Eggert <eggert@cs.ucla.edu>
404
405 Minor call-process cleanups.
406 * callproc.c (Fcall_process): Do record-unwind-protect on MSDOS
407 at the same time as other platforms, to simplify analysis.
408 No need for fd0_volatile since we have synch_process_fd.
409 Avoid needless emacs_close; arg is always negative.
410
411 2012-12-04 Andreas Schwab <schwab@linux-m68k.org>
412
413 * callproc.c (Fcall_process): Fix specpdl nesting for asynchronous
414 processes.
415
416 2012-12-04 Dmitry Antipov <dmantipov@yandex.ru>
417
418 * lisp.h (Mouse_HLInfo): Remove set-but-unused mouse_face_image_state
419 member. Adjust users. Convert mouse_face_past_end, mouse_face_defer
420 and mouse_face_hidden members to a bitfields.
421 * frame.h (struct frame): Remove set-but-not-used space_width member.
422 (FRAME_SPACE_WIDTH): Remove.
423 * nsterm.m, w32term.c, xterm.c: Adjust users.
424 * termchar.h (struct tty_display_info): Remove set-but-unused se_is_so
425 member. Adjust users. Convert term_initted, delete_in_insert_mode,
426 costs_set, insert_mode, standout_mode, cursor_hidden and flow_control
427 members to a bitfields.
428
429 2012-12-03 Paul Eggert <eggert@cs.ucla.edu>
430
431 Don't let call-process be a zombie factory (Bug#12980).
432 Fixing this bug required some cleanup of the signal-handling code.
433 As a side effect, this change also fixes a longstanding rare race
434 condition whereby Emacs could mistakenly kill unrelated processes,
435 and it fixes a bug where a second C-g does not kill a recalcitrant
436 synchronous process in GNU/Linux and similar platforms.
437 The patch should also fix the last vestiges of Bug#9488,
438 a bug which has mostly been fixed on the trunk by other changes.
439 * callproc.c, process.h (synch_process_alive, synch_process_death)
440 (synch_process_termsig, sync_process_retcode):
441 Remove. All uses removed, to simplify analysis and so that
442 less consing is done inside critical sections.
443 * callproc.c (call_process_exited): Remove. All uses replaced
444 with !synch_process_pid.
445 * callproc.c (synch_process_pid, synch_process_fd): New static vars.
446 These take the role of what used to be in unwind-protect arg.
447 All uses changed.
448 (block_child_signal, unblock_child_signal):
449 New functions, to avoid races that could kill innocent-victim processes.
450 (call_process_kill, call_process_cleanup, Fcall_process): Use them.
451 (call_process_kill): Record killed processes as deleted, so that
452 zombies do not clutter up the system. Do this inside a critical
453 section, to avoid a race that would allow the clutter.
454 (call_process_cleanup): Fix code so that the second C-g works again
455 on common platforms such as GNU/Linux.
456 (Fcall_process): Create the child process in a critical section,
457 to fix a race condition. If creating an asynchronous process,
458 record it as deleted so that zombies do not clutter up the system.
459 Do unwind-protect for WINDOWSNT too, as that's simpler in the
460 light of these changes. Omit unnecessary call to emacs_close
461 before failure, as the unwind-protect code does that.
462 * callproc.c (call_process_cleanup):
463 * w32proc.c (waitpid): Simplify now that synch_process_alive is gone.
464 * process.c (record_deleted_pid): New function, containing
465 code refactored out of Fdelete_process.
466 (Fdelete_process): Use it.
467 (process_status_retrieved): Remove. All callers changed to use
468 child_status_change.
469 (record_child_status_change): Remove, folding its contents into ...
470 (handle_child_signal): ... this signal handler. Now, this
471 function is purely a handler for SIGCHLD, and is not called after
472 a synchronous waitpid returns; the synchronous code is moved to
473 wait_for_termination. There is no need to worry about reaping
474 more than one child now.
475 * sysdep.c (get_child_status, child_status_changed): New functions.
476 (wait_for_termination): Now takes int * status and bool
477 interruptible arguments, too. Do not record child status change;
478 that's now the caller's responsibility. All callers changed.
479 Reimplement in terms of get_child_status.
480 (wait_for_termination_1, interruptible_wait_for_termination):
481 Remove. All callers changed to use wait_for_termination.
482 * syswait.h: Include <stdbool.h>, for bool.
483 (record_child_status_change, interruptible_wait_for_termination):
484 Remove decls.
485 (record_deleted_pid, child_status_changed): New decls.
486 (wait_for_termination): Adjust to API changes noted above.
487
488 * bytecode.c, lisp.h (Qbytecode): Remove.
489 No longer needed after 2012-11-20 interactive-p changes.
490
491 2012-12-03 Eli Zaretskii <eliz@gnu.org>
492
493 * xdisp.c (redisplay_window): If the cursor is visible, but inside
494 the scroll margin, move point outside the margin. (Bug#13055)
495
496 2012-12-03 Jan Djärv <jan.h.d@swipnet.se>
497
498 * gtkutil.c (my_log_handler): New function.
499 (xg_set_geometry): Set log handler to my_log_handler (Bug#11177).
500
501 2012-12-03 Dmitry Antipov <dmantipov@yandex.ru>
502
503 * lisp.h (modify_region): Rename to...
504 (modify_region_1): ...new prototype.
505 * textprop.c (modify_region): Now static. Adjust users.
506 * insdel.c (modify_region): Rename to...
507 (modify_region_1): ...new function to work with current buffer.
508 Adjust comment and users. Use true and false for booleans.
509
510 2012-12-03 Dmitry Antipov <dmantipov@yandex.ru>
511
512 * alloc.c (free_save_value): New function.
513 (safe_alloca_unwind): Use it.
514 * lisp.h (free_save_value): New prototype.
515 * editfns.c (save_excursion_save): Use Lisp_Misc_Save_Value.
516 Add comment.
517 (save_excursion_restore): Adjust to match saved data structure.
518 Use free_save_value to offload some work from GC. Drop obsolete
519 #if 0 code.
520
521 2012-12-03 Chong Yidong <cyd@gnu.org>
522
523 * fileio.c (Vauto_save_list_file_name): Doc fix.
524
525 2012-12-03 Fabrice Popineau <fabrice.popineau@gmail.com>
526
527 * w32fns.c: Remove prototype of atof.
528 (syspage_mask): Declared DWORD_PTR, for compatibility with 64-bit
529 builds.
530 (file_dialog_callback): Declared UINT_PTR.
531
532 * w32common.h (syspage_mask): Declare DWORD_PTR, for compatibility
533 with 64-bit builds.
534
535 * w32.c (FILE_DEVICE_FILE_SYSTEM, METHOD_BUFFERED)
536 (FILE_ANY_ACCESS, CTL_CODE) [_MSC_VER]: Define only if not already
537 defined.
538
539 2012-12-03 Glenn Morris <rgm@gnu.org>
540
541 * data.c (Fboundp, Fsymbol_value): Doc fix re lexical-binding.
542
543 2012-12-02 Paul Eggert <eggert@cs.ucla.edu>
544
545 Fix xpalloc confusion after memory is exhausted.
546 * alloc.c (xpalloc): Comment fix.
547 * charset.c (Fdefine_charset_internal): If xpalloc exhausts memory
548 and signals an error, do not clear charset_table_size, as
549 charset_table is still valid.
550 * doprnt.c (evxprintf): Clear *BUF after freeing it.
551
552 Use execve to avoid need to munge environ (Bug#13054).
553 * callproc.c (Fcall_process):
554 * process.c (create_process):
555 Don't save and restore environ; no longer needed.
556 * callproc.c (child_setup):
557 Use execve, not execvp, to preserve environ.
558
559 2012-12-01 Paul Eggert <eggert@cs.ucla.edu>
560
561 * xterm.c (x_draw_image_relief): Remove unused locals (Bug#10500).
562
563 2012-12-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
564
565 * xterm.c (x_draw_relief_rect, x_draw_image_relief): Fix relief
566 display for sliced images (Bug#10500).
567
568 * w32term.c (w32_draw_relief_rect, x_draw_image_relief): Likewise.
569
570 2012-11-30 Juanma Barranquero <lekktu@gmail.com>
571
572 * doc.c (Fdocumentation): Re-add handling of function-documentation,
573 accidentally removed in 2012-11-09T04:10:16Z!monnier@iro.umontreal.ca (bug#13034).
574
575 2012-11-29 Dmitry Antipov <dmantipov@yandex.ru>
576
577 * xdisp.c (window_outdated): Remove eassert since it hits
578 some suspicious corner cases (see Bug#13007 and Bug#13012).
579 (mode_line_update_needed): New function.
580 (redisplay_internal, redisplay_window): Use it.
581 (ensure_selected_frame): New function.
582 (redisplay_internal, unwind_redisplay): Use it.
583 (redisplay_internal): Move comment about buffer_shared...
584 (buffer_shared_and_changed): ...near to its real use.
585
586 2012-11-29 Paul Eggert <eggert@cs.ucla.edu>
587
588 * callproc.c (Fcall_process): Don't misreport vfork failure.
589
590 2012-11-28 Paul Eggert <eggert@cs.ucla.edu>
591
592 * callproc.c (Fcall_process): Fix vfork portability problems.
593 Do not assume that fd[0], count, filefd, and save_environ survive
594 vfork. Fix bug whereby wrong errno value could be reported for
595 pipe failure. Some minor cleanups, too, as follows. Move buf and
596 bufsize to the context where they're needed. Change new_argv to
597 be of type char **, as this is more convenient and avoids casts.
598 (CALLPROC_BUFFER_SIZE_MIN, CALLPROC_BUFFER_SIZE_MAX):
599 Now local constants, not macros.
600
601 2012-11-18 Kenichi Handa <handa@gnu.org>
602
603 * font.c (font_unparse_xlfd): Fix previous change. Keep "const"
604 for the variable "f".
605
606 2012-11-13 Kenichi Handa <handa@gnu.org>
607
608 * font.c (font_unparse_xlfd): Exclude special characters from the
609 generating XLFD name.
610
611 2012-11-27 Paul Eggert <eggert@cs.ucla.edu>
612
613 Assume POSIX 1003.1-1988 or later for grp.h, pwd.h.
614 * dired.c (stat_uname, stat_gname):
615 * fileio.c (Fexpand_file_name): Remove no-longer-needed casts.
616
617 Assume POSIX 1003.1-1988 or later for errno.h (Bug#12968).
618 * dired.c (directory_files_internal, file_name_completion):
619 Assume EAGAIN and EINTR are defined.
620
621 * fileio.c (Fcopy_file): Assume EISDIR is defined.
622 * gmalloc.c (ENOMEM, EINVAL): Assume they're defined.
623 * gnutls.c (emacs_gnutls_write): Assume EAGAIN is defined.
624 * lread.c (readbyte_from_file): Assume EINTR is defined.
625 * process.c (wait_reading_process_output, send_process) [subprocesses]:
626 Assume EIO and EAGAIN are defined.
627 * unexcoff.c (write_segment): Assume EFAULT is defined.
628
629 2012-11-27 Eli Zaretskii <eliz@gnu.org>
630
631 * fontset.c (Finternal_char_font): Return nil on non-GUI frames.
632 (Bug#11964)
633
634 * xdisp.c (draw_glyphs): Don't draw in mouse face if mouse
635 highlighting on the frame was cleared. Prevents assertion
636 violations when repeatedly clicking on the "Top" link of the
637 "bread-crumbs" in Info buffers.
638
639 2012-11-25 Paul Eggert <eggert@cs.ucla.edu>
640
641 * sysdep.c (sys_subshell): Don't assume pid_t fits in int.
642
643 2012-11-24 Ken Brown <kbrown@cornell.edu>
644
645 * keyboard.c (HAVE_MOUSE):
646 * frame.c (HAVE_MOUSE): Remove, and rewrite code as if HAVE_MOUSE
647 were always defined.
648
649 2012-11-24 Eli Zaretskii <eliz@gnu.org>
650
651 * xdisp.c (set_cursor_from_row): Skip step 2 only if point is not
652 between bpos_covered and bpos_max. This fixes cursor display when
653 several display strings follow each other.
654
655 * .gdbinit (pgx): If the glyph's object is a string, display the
656 pointer to string data, rather than the value of the string object
657 itself (which barfs under CHECK_LISP_OBJECT_TYPE).
658
659 * indent.c (Fvertical_motion): If the starting position is covered
660 by a display string, return to one position before that, to avoid
661 overshooting it inside move_it_to. (Bug#12930)
662
663 2012-11-23 Dmitry Antipov <dmantipov@yandex.ru>
664
665 * frame.h (struct frame): Remove display_preempted member
666 since all users are dead long ago.
667 * nsterm.h (struct x_output): Use the only dummy member.
668 * w32menu.c (pending_menu_activation): Remove since not
669 really used.
670 (set_frame_menubar): Adjust user.
671 * w32term.h (struct x_output): Drop outdated #if 0 code.
672 (struct w32_output): Use bitfields for explicit_parent,
673 asked_for_visible and menubar_active members. Drop
674 unused pending_menu_activation member.
675 * xterm.h (struct x_output): Drop outdated #if 0 code.
676 Use bitfields for explicit_parent, asked_for_visible,
677 has_been_visible and net_wm_state_hidden_seen members.
678
679 2012-11-23 Eli Zaretskii <eliz@gnu.org>
680
681 * makefile.w32-in (globals.h, gl-stamp): Use $(SWITCHCHAR) instead
682 of a literal "/". (Bug#12955)
683 (gl-stamp): Invoke fc.exe directly, not through cmd.
684
685 2012-11-23 Paul Eggert <eggert@cs.ucla.edu>
686
687 Assume POSIX 1003.1-1988 or later for dirent.h (Bug#12958).
688 * dired.c: Assume HAVE_DIRENT_H.
689 (NAMLEN): Remove, replacing with ...
690 (dirent_namelen): New function. All uses changed. Use the GNU macro
691 _D_EXACT_NAMELEN if available, as it's faster than strlen.
692 (DIRENTRY): Remove, replacing all uses with 'struct dirent'.
693 (DIRENTRY_NONEMPTY): Remove. All callers now assume it's nonzero.
694 * makefile.w32-in (DIR_H): Remove. All uses replaced with
695 $(NT_INC)/dirent.h.
696 ($(BLD)/w32.$(O)): Do not depend on $(SRC)/ndir.h.
697 * ndir.h: Rename to ../nt/inc/dirent.h.
698 * sysdep.h (closedir) [!HAVE_CLOSEDIR]: Remove.
699 Do not include <dirent.h>; no longer needed.
700 * w32.c: Include <dirent.h> rather than "ndir.h".
701
702 2012-11-23 Chong Yidong <cyd@gnu.org>
703
704 * xftfont.c (xftfont_open): Remove duplicate assignment.
705
706 2012-11-22 Dmitry Antipov <dmantipov@yandex.ru>
707
708 * alloc.c (Fgarbage_collect): Unblock input after clearing
709 gc_in_progress to avoid note_mouse_highlight glitch with GC.
710 * frame.h (FRAME_MOUSE_UPDATE): New macro.
711 * msdos.c (IT_frame_up_to_date): Use it here...
712 * w32term.c (w32_frame_up_to_date): ...here...
713 * xterm.c (XTframe_up_to_date): ...and here...
714 * nsterm.m (ns_frame_up_to_date): ...but not here.
715 * lisp.h (Mouse_HLInfo): Remove mouse_face_deferred_gc member.
716 Adjust users.
717 * xdisp.c (message2_nolog, message3_nolog, note_mouse_highlight):
718 Do not check whether GC is in progress.
719
720 2012-11-22 Dmitry Antipov <dmantipov@yandex.ru>
721
722 * xdisp.c (window_buffer_changed): New function.
723 (update_menu_bar, update_tool_bar): Use it to
724 simplify large 'if' statements.
725 (redisplay_internal): Generalize commonly used
726 'tail' and 'frame' local variables.
727
728 2012-11-22 Eli Zaretskii <eliz@gnu.org>
729
730 * w32.c (getcwd): Fix the 2nd argument type, to prevent conflicts
731 with Windows system header.
732
733 2012-11-21 Paul Eggert <eggert@cs.ucla.edu>
734
735 Assume POSIX 1003.1-1988 or later for unistd.h (Bug#12945).
736 * alloc.c: Assume unistd.h exists.
737 * fileio.c (Fexpand_file_name) [DOS_NT]: Use getcwd, not getwd.
738 * sysdep.c (get_current_dir_name): Assume getcwd exists.
739 (getwd) [USG]: Remove; no longer needed.
740 (sys_subshell) [DOS_NT]: Use getcwd, not getwd.
741 * w32.c (getcwd): Rename from getwd, and switch to getcwd's API.
742 * w32.h (getcwd): Remove decl.
743
744 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
745
746 * xdisp.c (fast_set_selected_frame): Rename from update_tool_bar_unwind.
747 Make it set selected_window as well.
748 (update_tool_bar): Use it.
749
750 2012-11-21 Ken Brown <kbrown@cornell.edu>
751
752 * emacs.c (main): Set the G_SLICE environment variable for all
753 Cygwin builds, not just GTK builds. See
754 https://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00368.html.
755
756 2012-11-21 Eli Zaretskii <eliz@gnu.org>
757
758 * w32.c (FILE_DEVICE_FILE_SYSTEM, METHOD_BUFFERED)
759 (FILE_ANY_ACCESS, CTL_CODE, FSCTL_GET_REPARSE_POINT) [_MSC_VER]:
760 Define for the MSVC compiler.
761
762 * w32term.h (EnumSystemLocalesW) [_MSC_VER]: Add a missing semi-colon.
763
764 * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
765 (Fexpand_file_name) [DOS_NT]: Pass encoded file name to
766 dostounix_filename. Prevents crashes down the road, because
767 dostounix_filename assumes it gets a unibyte string. Reported by
768 Michel de Ruiter <michel@sentient.nl>, see
769 http://lists.gnu.org/archive/html/help-emacs-windows/2012-11/msg00017.html
770
771 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
772
773 Conflate Qnil and Qunbound for `symbol-function'.
774 * alloc.c (Fmake_symbol): Initialize `function' to Qnil.
775 * lread.c (init_obarray): Set `function' fields to Qnil.
776 * eval.c (Fcommandp): Ignore Qunbound.
777 (Fautoload, eval_sub, Fapply, Ffuncall, Fmacroexpand):
778 * data.c (Ffset, Ffboundp, indirect_function, Findirect_function):
779 Test NILP rather than Qunbound.
780 (Ffmakunbound): Set to Qnil.
781 (Fsymbol_function): Never signal an error.
782 (Finteractive_form): Ignore Qunbound.
783
784 2012-11-20 Paul Eggert <eggert@cs.ucla.edu>
785
786 * eval.c (interactive_p): Remove no-longer-used decl.
787
788 2012-11-20 Dmitry Antipov <dmantipov@yandex.ru>
789
790 * xdisp.c (buffer_shared): Adjust comment.
791 (buffer_shared_and_changed): New function.
792 (prepare_menu_bars, redisplay_internal): Use it to
793 decide whether all windows or frames should be updated.
794 (window_outdated): New function.
795 (text_outside_line_unchanged_p, redisplay_window): Use it.
796 (redisplay_internal): Likewise. Fix indentation.
797
798 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
799
800 * eval.c (Finteractive_p, Fcalled_interactively_p, interactive_p): Remove.
801 (syms_of_eval): Remove corresponding defsubr.
802 * bytecode.c (exec_byte_code): `interactive-p' is now a Lisp function.
803
804 2012-11-19 Daniel Colascione <dancol@dancol.org>
805
806 * w32fns.c (Fx_file_dialog):
807 (Fx_file_dialog): Accomodate rename of cygwin_convert_path* to
808 cygwin_convert_file_name*.
809
810 * cygw32.c (Fcygwin_convert_path_to_windows, syms_of_cygw32):
811 Rename cygwin_convert_path* to cygwin_convert_file_name*.
812
813 2012-11-18 Paul Eggert <eggert@cs.ucla.edu>
814
815 * nsterm.m (ns_select): Send SIGIO only to self, not to process group.
816
817 2012-11-18 Eli Zaretskii <eliz@gnu.org>
818
819 * w32select.c: Include w32common.h before w32term.h, so that
820 windows.h gets included before w32term.h uses some of its
821 features, see below.
822
823 * w32term.h (LOCALE_ENUMPROCA, LOCALE_ENUMPROCW) [_MSC_VER]:
824 New typedefs.
825 (EnumSystemLocalesA, EnumSystemLocalesW) [_MSC_VER]:
826 New prototypes.
827 (EnumSystemLocales) [_MSC_VER]: Define if undefined. (Bug#12878)
828
829 2012-11-18 Jan Djärv <jan.h.d@swipnet.se>
830
831 * nsterm.m (hold_event): Set send_appdefined to YES (Bug#12834).
832 (ns_select): Return at once if events are held (Bug#12834).
833
834 2012-11-18 enami tsugutomo <tsugutomo.enami@jp.sony.com>
835
836 * unexelf.c (ELFSIZE) [__NetBSD__ && _LP64]: Set to 64.
837 Needed following 2012-10-20 change. (Bug#12902)
838
839 2012-11-18 Juanma Barranquero <lekktu@gmail.com>
840
841 * w32proc.c (waitpid): Remove unused label get_result.
842
843 2012-11-17 Juanma Barranquero <lekktu@gmail.com>
844
845 * makefile.w32-in (SYSWAIT_H): New macro.
846 ($(BLD)/callproc.$(O), $(BLD)/w32proc.$(O), $(BLD)/process.$(O))
847 ($(BLD)/sysdep.$(O)): Update dependencies.
848
849 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
850
851 Assume POSIX 1003.1-1988 or later for fcntl.h (Bug#12881).
852 * callproc.c (relocate_fd): Assume F_DUPFD.
853 * emacs.c, term.c (O_RDWR): Remove.
854 * keyboard.c (tty_read_avail_input): Use O_NONBLOCK rather than
855 O_NDELAY, since O_NONBLOCK is the standard name for this flag.
856 * nsterm.m: Assume <fcntl.h> exists.
857 * process.c (NON_BLOCKING_CONNECT, allocate_pty, create_process)
858 (create_pty, Fmake_network_process, server_accept_connection)
859 (wait_reading_process_output, init_process_emacs):
860 Assume O_NONBLOCK.
861 (wait_reading_process_output): Put in a special case for WINDOWSNT
862 to mimick the older behavior where it had O_NDELAY but not O_NONBLOCK.
863 It's not clear this is needed, but it's a more-conservative change.
864 (create_process): Assume FD_CLOEXEC.
865 (create_process, create_pty): Assume O_NOCTTY.
866 * sysdep.c (init_sys_modes, reset_sys_modes): Assume F_SETFL.
867 (reset_sys_modes): Use O_NONBLOCK rather than O_NDELAY.
868 Omit if not DOS_NT, since F_GETFL is not defined there.
869 (serial_open): Assume O_NONBLOCK and O_NOCTTY.
870 * term.c: Include <fcntl.h>, for flags like O_NOCTTY.
871 (O_NOCTTY): Remove.
872 (init_tty): Assume O_IGNORE_CTTY is defined to 0 on platforms that
873 lack it, since gnulib guarantees this.
874 * w32.c (fcntl): Test for O_NONBLOCK rather than O_NDELAY.
875
876 2012-11-17 Eli Zaretskii <eliz@gnu.org>
877
878 * w32.c (faccessat): Pretend that directories have the execute bit
879 set. Emacs expects that, e.g., in files.el:cd-absolute.
880
881 * w32proc.c (create_child): Don't clip the PID of the child
882 process to fit into an Emacs integer, as this is no longer a
883 restriction.
884 (waitpid): Rename from sys_wait. Emulate a Posix 'waitpid' by
885 reaping only the process specified by PID argument, if that is
886 positive. Use PID instead of dead_child to know which process to
887 reap. Wait for the child to die only if WNOHANG is not in
888 OPTIONS.
889 (sys_select): Don't set dead_child.
890
891 * sysdep.c (wait_for_termination_1): Remove the WINDOWSNT portion,
892 as it is no longer needed.
893
894 * process.c (waitpid, WUNTRACED) [!WNOHANG]: Remove definitions,
895 no longer needed.
896 (record_child_status_change): Remove the setting of
897 record_at_most_one_child for the !WNOHANG case.
898
899 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
900
901 Fix problems in ns port found by static checking.
902 * nsterm.m: Include <pthread.h>, for pthread_mutex_lock etc.
903 (hold_event, setPosition:portion:whole:): Send SIGIO only to self,
904 not to process group.
905 (ns_select): Use emacs_write, not write, as that's more robust
906 in the presence of signals.
907 (fd_handler:): Check for read errors.
908
909 2012-11-16 Glenn Morris <rgm@gnu.org>
910
911 * editfns.c (Fmessage): Mention message-log-max. (Bug#12849)
912
913 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
914
915 * eval.c (Finteractive_p): Revert lexbind-merge mishap.
916
917 2012-11-16 Eli Zaretskii <eliz@gnu.org>
918
919 * w32proc.c (timer_loop): Make sure SuspendThread and ResumeThread
920 use the same value of thread handle.
921 (start_timer_thread): If the timer thread exited (due to error),
922 clean up by closing the two handles it used. Duplicate the caller
923 thread's handle here, so it gets duplicated only once, when
924 launching the timer thread. Set priority of the timer thread, not
925 the caller thread.
926 (getitimer): Don't duplicate the caller thread's handle here.
927 (Bug#12832)
928
929 2012-11-16 Jan Djärv <jan.h.d@swipnet.se>
930
931 * nsterm.m (hold_event): Send SIGIO to make sure ns_read_socket is
932 called (Bug#12834).
933
934 2012-11-16 Paul Eggert <eggert@cs.ucla.edu>
935
936 Remove no-longer-used pty_max_bytes variable.
937 * process.c (pty_max_bytes): Remove; unused.
938 (send_process): Do not set it.
939
940 2012-11-15 Juanma Barranquero <lekktu@gmail.com>
941
942 * makefile.w32-in ($(BLD)/dispnew.$(O), $(BLD)/emacs.$(O)):
943 Update dependencies.
944
945 2012-11-15 Paul Eggert <eggert@cs.ucla.edu>
946
947 * eval.c (mark_backtrace) [BYTE_MARK_STACK]: Remove stray '*'.
948 This follows up on the 2012-09-29 patch that removed indirection
949 for the 'function' field. Reported by Sergey Vinokurov in
950 <http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00263.html>.
951
952 2012-11-14 Eli Zaretskii <eliz@gnu.org>
953
954 * w32.c (faccessat): Rename from sys_faccessat. (No need to use a
955 different name, as the MS runtime does not have such a function,
956 and probably never will.) All callers changed. Ignore DIRFD
957 value if PATH is an absolute file name, to match Posix spec
958 better. If AT_SYMLINK_NOFOLLOW is set in FLAGS, don't resolve
959 symlinks.
960
961 2012-11-14 Dmitry Antipov <dmantipov@yandex.ru>
962
963 * xdisp.c (echo_area_display, redisplay_internal):
964 Omit redundant check whether frame_garbaged is set.
965
966 2012-11-14 Paul Eggert <eggert@cs.ucla.edu>
967
968 Use faccessat, not access, when checking file permissions (Bug#12632).
969 This fixes a bug that has been present in Emacs since its creation.
970 It was reported by Chris Torek in 1983 even before GNU Emacs existed,
971 which must set some sort of record. (Torek's bug report was against
972 a predecessor of GNU Emacs, but GNU Emacs happened to have the
973 same common flaw.) See Torek's Usenet posting
974 "setuid/setgid programs & Emacs" Article-I.D.: sri-arpa.858
975 Posted: Fri Apr 8 14:18:56 1983.
976 * Makefile.in (LIB_EACCESS): New macro.
977 (LIBES): Use it.
978 * callproc.c (init_callproc):
979 * charset.c (init_charset):
980 * fileio.c (check_existing, check_executable, check_writable)
981 (Ffile_readable_p):
982 * lread.c (openp, load_path_check):
983 * process.c (allocate_pty):
984 * xrdb.c (file_p):
985 Use effective UID when checking permissions, not real UID.
986 * callproc.c (init_callproc):
987 * charset.c (init_charset):
988 * lread.c (load_path_check, init_lread):
989 Test whether directories are accessible, not merely whether they exist.
990 * conf_post.h (GNULIB_SUPPORT_ONLY_AT_FDCWD): New macro.
991 * fileio.c (check_existing, check_executable, check_writable)
992 (Ffile_readable_p):
993 Use symbolic names instead of integers for the flags, as they're
994 portable now.
995 (check_writable): New arg AMODE. All uses changed.
996 Set errno on failure.
997 (Ffile_readable_p): Use faccessat, not stat + open + close.
998 (Ffile_writable_p): No need to call check_existing + check_writable.
999 Just call check_writable and then look at errno. This saves a syscall.
1000 dir should never be nil; replace an unnecessary runtime check
1001 with an eassert. When checking the parent directory of a nonexistent
1002 file, check that the directory is searchable as well as writable, as
1003 we can't create files in unsearchable directories.
1004 (file_directory_p): New function, which uses 'stat' on most platforms
1005 but faccessat with D_OK (for efficiency) if WINDOWSNT.
1006 (Ffile_directory_p, Fset_file_times): Use it.
1007 (file_accessible_directory_p): New function, which uses a single
1008 syscall for efficiency.
1009 (Ffile_accessible_directory_p): Use it.
1010 * xrdb.c (file_p): Use file_directory_p.
1011 * lisp.h (file_directory_p, file_accessible_directory_p): New decls.
1012 * lread.c (openp): When opening a file, use fstat rather than
1013 stat, as that avoids a permissions race. When not opening a file,
1014 use file_directory_p rather than stat.
1015 (dir_warning): First arg is now a usage string, not a format.
1016 Use errno. All uses changed.
1017 * nsterm.m (ns_term_init): Remove unnecessary call to file-readable
1018 that merely introduced a race.
1019 * process.c, sysdep.c, term.c: All uses of '#ifdef O_NONBLOCK'
1020 changed to '#if O_NONBLOCK', to accommodate gnulib O_* style,
1021 and similarly for the other O_* flags.
1022 * w32.c (sys_faccessat): Rename from sys_access and switch to
1023 faccessat's API. All uses changed.
1024 * xrdb.c: Do not include <sys/stat.h>; no longer needed.
1025 (magic_db): Rename from magic_file_p.
1026 (magic_db, search_magic_path): Return an XrmDatabase rather than a
1027 char *, so that we don't have to test for file existence
1028 separately from opening the file for reading. This removes a race
1029 fixes a permission-checking problem, and simplifies the code.
1030 All uses changed.
1031 (file_p): Remove; no longer needed.
1032
1033 2012-11-13 Dmitry Antipov <dmantipov@yandex.ru>
1034
1035 Omit glyphs initialization at startup.
1036 * dispnew.c (glyphs_initialized_initially_p): Remove.
1037 (adjust_frame_glyphs_initially): Likewise. Adjust users.
1038 (Fredraw_frame): Move actual code from here...
1039 (redraw_frame): ...to here. Add eassert. Adjust comment.
1040 (Fredraw_display): Use redraw_frame.
1041 * xdisp.c (clear_garbaged_frames): Likewise.
1042
1043 2012-11-13 Eli Zaretskii <eliz@gnu.org>
1044
1045 * xdisp.c (decode_mode_spec): Limit the value of WIDTH argument
1046 passed to pint2str and pint2hrstr to be at most the size of the
1047 frame's decode_mode_spec_buffer. This avoids crashes with very
1048 large values of FIELD_WIDTH argument to decode_mode_spec.
1049 (Bug#12867)
1050
1051 2012-11-13 Paul Eggert <eggert@cs.ucla.edu>
1052
1053 Fix a race with verify-visited-file-modtime (Bug#12863).
1054 Since at least 1991 Emacs has ignored an mtime difference of no
1055 more than one second, but my guess is that this was to work around
1056 file system bugs that were fixed long ago. Since the race is
1057 causing problems now, let's remove that code.
1058 * fileio.c (Fverify_visited_file_modtime): Do not accept a file
1059 whose time stamp is off by no more than a second. Insist that the
1060 file time stamps match exactly.
1061
1062 2012-11-12 Dmitry Antipov <dmantipov@yandex.ru>
1063
1064 * frame.h (struct frame): Convert external_tool_bar member to
1065 1-bit unsigned bitfield.
1066 * termhooks.h (struct terminal): Remove mouse_moved member since
1067 all users are long dead. Adjust comment on mouse_position_hook.
1068
1069 2012-11-12 Dmitry Antipov <dmantipov@yandex.ru>
1070
1071 Simplify by using FOR_EACH_FRAME here and there.
1072 * frame.c (next_frame, prev_frame, other_visible_frames)
1073 (delete_frame, visible-frame-list): Use FOR_EACH_FRAME.
1074 * w32term.c (x_window_to_scroll_bar): Likewise.
1075 * window.c (window_list): Likewise.
1076 * xdisp.c (x_consider_frame_title): Likewise.
1077 * xfaces.c ( Fdisplay_supports_face_attributes_p): Likewise.
1078 * xfns.c (x_window_to_frame, x_any_window_to_frame)
1079 (x_menubar_window_to_frame, x_top_window_to_frame): Likewise.
1080 * xmenu.c (menubar_id_to_frame): Likewise.
1081 * xselect.c (frame_for_x_selection): Likewise.
1082 * xterm.c (x_frame_of_widget, x_window_to_scroll_bar)
1083 (x_window_to_menu_bar): Likewise.
1084 * w32fns.c (x_window_to_frame): Likewise. Adjust comment.
1085
1086 2012-11-12 Paul Eggert <eggert@cs.ucla.edu>
1087
1088 * data.c (Qdefalias_fset_function): Now static.
1089
1090 Another tweak to vectorlike_header change.
1091 * alloc.c (struct Lisp_Vectorlike_Free, NEXT_IN_FREE_LIST):
1092 Remove, and replace all uses with ...
1093 (next_in_free_list, set_next_in_free_list):
1094 New functions, which respect C's aliasing rules better.
1095
1096 2012-11-11 Paul Eggert <eggert@cs.ucla.edu>
1097
1098 * window.c (list4i): Rename from 'quad'. All uses changed.
1099 Needed because <sys/types.h> defines 'quad' on Solaris 10.
1100
1101 2012-11-11 Juanma Barranquero <lekktu@gmail.com>
1102
1103 * xdisp.c (start_hourglass) [HAVE_NTGUI]: Add block to silence
1104 warning about mixing declarations and code in ISO C90.
1105
1106 2012-11-10 Martin Rudalics <rudalics@gmx.at>
1107
1108 * window.c (Fsplit_window_internal): Set combination limit of
1109 new parent window to t iff Vwindow_combination_limit is t;
1110 fixing a regression introduced with the change from 2012-09-22.
1111 (Fset_window_combination_limit): Fix doc-string.
1112
1113 2012-11-10 Eli Zaretskii <eliz@gnu.org>
1114
1115 * xdisp.c (try_scrolling): Fix correction of aggressive-scroll
1116 amount when the scroll margins are too large. When scrolling
1117 backwards in the buffer, give up if cannot reach point or the
1118 scroll margin within a reasonable number of screen lines.
1119 Fixes point position in window under scroll-up/down-aggressively when
1120 point is positioned many lines beyond the window top/bottom.
1121 (Bug#12811)
1122
1123 * ralloc.c (relinquish): If real_morecore fails to return memory
1124 to the system, don't crash; instead, leave the last heap
1125 unchanged and return. (Bug#12774)
1126
1127 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
1128
1129 * lisp.h (AUTOLOADP): New macro.
1130 * eval.c (Fautoload): Don't attach to loadhist, call Fdefalias instead.
1131 * data.c (Ffset): Remove special ad-advice-info handling.
1132 (Fdefalias): Handle autoload definitions and new Qdefalias_fset_function.
1133 (Fsubr_arity): CSE.
1134 (Finteractive_form): Simplify.
1135 (Fquo): Don't insist on having at least 2 arguments.
1136 (Qdefalias_fset_function): New var.
1137
1138 2012-11-09 Jan Djärv <jan.h.d@swipnet.se>
1139
1140 * image.c (xpm_make_color_table_h): Change to hashtest_equal.
1141
1142 * nsfont.m (Qcondensed, Qexpanded): New variables.
1143 (ns_descriptor_to_entity): Restore Qcondensed, Qexpanded setting.
1144 (syms_of_nsfont): Defsym Qcondensed, Qexpanded.
1145
1146 2012-11-09 Dmitry Antipov <dmantipov@yandex.ru>
1147
1148 Fix recently introduced crash on MS-Windows (Bug#12839).
1149 * w32term.h (struct scroll_bar): Use convenient header.
1150 (SCROLL_BAR_VEC_SIZE): Remove.
1151 * w32term.c (x_scroll_bar_create): Use VECSIZE.
1152
1153 2012-11-09 Dmitry Antipov <dmantipov@yandex.ru>
1154
1155 Tweak last vectorlike_header change.
1156 * alloc.c (struct Lisp_Vectorlike_Free): Special type to represent
1157 vectorlike object on the free list. This is introduced to avoid
1158 some (but not all) pointer casting and aliasing problems, see
1159 http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00105.html.
1160 * .gdbinit (pvectype, pvecsize): New commands to examine vectorlike
1161 objects.
1162 (xvectype, xvecsize): Use them to examine Lisp_Object values.
1163
1164 2012-11-09 Jan Djärv <jan.h.d@swipnet.se>
1165
1166 * nsfont.m (ns_descriptor_to_entity): Qcondensed and Qexpanded has
1167 been removed, so remove them here also.
1168
1169 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
1170
1171 * doc.c (Fdocumentation): Handle new property
1172 dynamic-docstring-function to replace the old ad-advice-info.
1173
1174 2012-11-09 Paul Eggert <eggert@cs.ucla.edu>
1175
1176 * fns.c (Qeql, hashtest_eq): Now static.
1177
1178 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
1179
1180 * lisp.h (XHASH): Redefine to be imperfect and fit in a Lisp int.
1181 * fns.c (hashfn_eq, hashfn_eql, sxhash):
1182 * profiler.c (hashfn_profiler): Don't use XUINT on non-integers.
1183 * buffer.c (compare_overlays): Use XLI rather than XHASH.
1184
1185 2012-11-08 Paul Eggert <eggert@cs.ucla.edu>
1186
1187 Use same hash function for hashfn_profiler as for hash_string etc.
1188 * fns.c (SXHASH_COMBINE): Remove. All uses replaced by sxhash_combine.
1189 * lisp.h (sxhash_combine): New inline function, with the contents
1190 of the old SXHASH_COMBINE.
1191 * profiler.c (hashfn_profiler): Use it, instead of having a
1192 special hash function containing a comparison that always yields 1.
1193
1194 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
1195
1196 * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic)
1197 (Qultra_condensed, Qextra_condensed, Qcondensed, Qsemi_condensed)
1198 (Qsemi_expanded, Qextra_expanded, Qexpanded, Qultra_expanded):
1199 Remove unused vars.
1200
1201 2012-11-08 Jan Djärv <jan.h.d@swipnet.se>
1202
1203 * image.c (xpm_make_color_table_h): Fix compiler error because
1204 make_hash_table changed.
1205
1206 2012-11-08 Thomas Kappler <tkappler@gmail.com> (tiny change)
1207
1208 * nsfont.m (ns_findfonts): Handle empty matchingDescs (Bug#11541).
1209
1210 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
1211
1212 Use ad-hoc comparison function for the profiler's hash-tables.
1213 * profiler.c (Qprofiler_backtrace_equal, hashtest_profiler): New vars.
1214 (make_log): Use them.
1215 (handle_profiler_signal): Don't inhibit quit any longer since we don't
1216 call Fequal any more.
1217 (Ffunction_equal): New function.
1218 (cmpfn_profiler, hashfn_profiler): New functions.
1219 (syms_of_profiler): Initialize them.
1220 * lisp.h (struct hash_table_test): New struct.
1221 (struct Lisp_Hash_Table): Use it.
1222 * alloc.c (mark_object): Mark hash_table_test fields of hash tables.
1223 * fns.c (make_hash_table): Take a struct to describe the test.
1224 (cmpfn_eql, cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
1225 (hashfn_equal, hashfn_user_defined): Adjust to new calling convention.
1226 (hash_lookup, hash_remove_from_table): Move assertion checking of
1227 hashfn result here. Check hash-equality before calling cmpfn.
1228 (Fmake_hash_table): Adjust call to make_hash_table.
1229 (hashtest_eq, hashtest_eql, hashtest_equal): New structs.
1230 (syms_of_fns): Initialize them.
1231 * emacs.c (main): Move syms_of_fns earlier.
1232 * xterm.c (syms_of_xterm):
1233 * category.c (hash_get_category_set): Adjust call to make_hash_table.
1234 * print.c (print_object): Adjust to new hash-table struct.
1235 * composite.c (composition_gstring_put_cache): Adjust to new hashfn.
1236
1237 2012-11-08 Eli Zaretskii <eliz@gnu.org>
1238
1239 * w32fns.c (modifier_set): Fix handling of Scroll Lock when the
1240 value of w32-scroll-lock-modifier is neither nil nor one of the
1241 known key modifiers. (Bug#12806)
1242
1243 2012-11-08 Dmitry Antipov <dmantipov@yandex.ru>
1244
1245 Shrink struct vectorlike_header to the only size field.
1246 * lisp.h (enum pvec_type): Avoid explicit enum member values.
1247 Adjust comment.
1248 (enum More_Lisp_Bits): Change PSEUDOVECTOR_SIZE_BITS and
1249 PVEC_TYPE_MASK to arrange new bitfield in the vector header.
1250 (PSEUDOVECTOR_REST_BITS, PSEUDOVECTOR_REST_MASK): New members.
1251 (PSEUDOVECTOR_AREA_BITS): New member used to extract subtype
1252 information from the vector header. Adjust comment.
1253 (XSETPVECTYPE, XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR)
1254 (PSEUDOVECTOR_TYPEP, DEFUN): Adjust to match new vector header
1255 layout.
1256 (XSETSUBR, SUBRP): Adjust to match new Lisp_Subr layout.
1257 (struct vectorlike_header): Remove next member. Adjust comment.
1258 (struct Lisp_Subr): Add convenient header. Adjust comment.
1259 (allocate_pseudovector): Adjust prototype.
1260 * alloc.c (mark_glyph_matrix, mark_face_cache, allocate_string)
1261 (sweep_string, lisp_malloc): Remove useless prototypes.
1262 (enum mem_type): Adjust comment.
1263 (NEXT_IN_FREE_LIST): New macro.
1264 (SETUP_ON_FREE_LIST): Adjust XSETPVECTYPESIZE usage.
1265 (Fmake_bool_vector): Likewise.
1266 (struct large_vector): New type to represent allocation unit for
1267 the vectors with the memory footprint more than VBLOOCK_BYTES_MAX.
1268 (large_vectors): Change type to struct large_vector.
1269 (allocate_vector_from_block): Simplify.
1270 (PSEUDOVECTOR_NBYTES): Replace with...
1271 (vector_nbytes): ...new function. Adjust users.
1272 (sweep_vectors): Adjust processing of large vectors.
1273 (allocate_vectorlike): Likewise.
1274 (allocate_pseudovector): Change type of 3rd arg to enum pvec_type.
1275 Add easserts. Adjust XSETPVECTYPESIZE usage.
1276 (allocate_buffer): Use BUFFER_PVEC_INIT.
1277 (live_vector_p): Adjust to match large vector.
1278 * buffer.c (init_buffer_once): Use BUFFER_PVEC_INIT.
1279 * buffer.h (struct buffer): Add next member.
1280 (BUFFER_LISP_SIZE, BUFFER_REST_SIZE, BUFFER_PVEC_INIT):
1281 New macros.
1282 (FOR_EACH_BUFFER): Adjust to match struct buffer change.
1283 * fns.c (internal_equal): Adjust to match enum pvec_type change.
1284 (copy_hash_table): Adjust to match vector header change.
1285 * lread.c (defsubr): Use XSETPVECTYPE.
1286 * .gdbinit (xpr, xbacktrace): Adjust to match vector header change.
1287 (xvectype): Likewise. Print PVEC_NORMAL_VECTOR for regular vectors.
1288 (xvecsize): New command.
1289
1290 2012-11-08 Dmitry Antipov <dmantipov@yandex.ru>
1291
1292 * keyboard.c (event_to_kboard): Do not dereference
1293 frame_or_window field of SELECTION_REQUEST_EVENT
1294 and SELECTION_CLEAR_EVENT events (Bug#12814).
1295 * xterm.h (struct selection_input_event): Adjust comment.
1296
1297 2012-11-07 Eli Zaretskii <eliz@gnu.org>
1298
1299 * w32fns.c (modifier_set): Don't report modifiers from toggle key,
1300 such as Scroll Lock, if the respective keys are treated as
1301 function keys, not as modifiers. This avoids destroying non-ASCII
1302 keyboard input when Scroll Lock is toggled ON. (Bug#12806)
1303
1304 2012-11-07 Dmitry Antipov <dmantipov@yandex.ru>
1305
1306 * xfns.c (Fx_wm_set_size_hint): Use check_x_frame. Adjust docstring.
1307
1308 2012-11-06 Paul Eggert <eggert@cs.ucla.edu>
1309
1310 Restore some duplicate definitions (Bug#12814).
1311 This undoes part of the 2012-11-03 changes. Some people build
1312 with plain -g rather than with -g3, and they need the duplicate
1313 definitions for .gdbinit to work; see <http://bugs.gnu.org/12814#26>.
1314 * lisp.h (GCTYPEBITS, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK):
1315 Define as macros, as well as as enums or as constants.
1316
1317 2012-11-06 Jan Djärv <jan.h.d@swipnet.se>
1318
1319 * nsterm.m (convert_ns_to_X_keysym, keyDown:): Add NSNumericPadKeyMask
1320 to keypad keys (Bug#12816).
1321
1322 2012-11-06 Paul Eggert <eggert@cs.ucla.edu>
1323
1324 Minor adjustments of recently-changed frame functions.
1325 * buffer.c (Fbuffer_list): Omit CHECK_FRAME, since arg is already
1326 known to be a frame (we're in the FRAMEP branch).
1327 * lisp.h (Qframep): Remove decl. frame.h declares this.
1328 * window.c (quad): Args are of type EMACS_INT, not ptrdiff_t,
1329 since they're meant for Lisp fixnum values.
1330
1331 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
1332
1333 * window.c (Fwindow_combination_limit): Revert to the only
1334 required argument and adjust docstring as suggested in
1335 http://lists.gnu.org/archive/html/emacs-diffs/2012-11/msg01082.html
1336 by Martin Rudalics <rudalics@gmx.at>.
1337
1338 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
1339
1340 Widely used frame validity and checking functions.
1341 * frame.h (decode_live_frame, decode_any_frame): Add prototypes.
1342 * frame.c (decode_live_frame, decode_any_frame): New functions.
1343 (delete_frame, Fredirect_frame_focus, Fframe_parameters)
1344 (Fframe_parameter, Fframe_char_height, Fframe_char_width)
1345 (Fframe_pixel_height, Fframe_pixel_width, Ftool_bar_pixel_width)
1346 (Fframe_pointer_visible_p): Use decode_any_frame.
1347 (Fmake_frame_visible, Fmake_frame_invisible, Ficonify_frame)
1348 (Fraise_frame, Flower_frame, Fmodify_frame_parameters)
1349 (Fset_frame_height, Fset_frame_width): Use decode_live_frame.
1350 (Fframe_focus): Likewise. Allow zero number of arguments.
1351 Adjust docstring.
1352 (frame_buffer_list, frame_buffer_predicate): Remove.
1353 * lisp.h (frame_buffer_predicate): Remove prototype.
1354 * buffer.c (Fother_buffer): Use decode_any_frame.
1355 * xdisp.c (Ftool_bar_lines_needed): Likewise.
1356 * xfaces.c (Fcolor_gray_p, Fcolor_supported_p): Likewise.
1357 * font.c (Ffont_face_attributes, Ffont_family_list, Fopen_font)
1358 (Fclose_font, Ffont_info): Use decode_live_frame.
1359 * fontset.c (check_fontset_name): Likewise.
1360 * terminal.c (Fframe_terminal): Likewise.
1361 * w32fns.c (check_x_frame): Likewise.
1362 * window.c (Fminibuffer_window, Fwindow_at)
1363 (Fcurrent_window_configuration): Likewise.
1364 (Frun_window_configuration_change_hook, Fwindow_resize_apply):
1365 Likewise. Allow zero number of arguments. Adjust docstring.
1366 * dispnew.c (Fredraw_frame): Likewise.
1367 * xfaces.c (frame_or_selected_frame): Remove.
1368 (Fx_list_fonts, Finternal_get_lisp_face_attribute, Fface_font)
1369 (Finternal_lisp_face_equal_p, Finternal_lisp_face_empty_p)
1370 (Fframe_face_alist): Use decode_live_frame.
1371 * xfns.c (check_x_frame): Likewise.
1372
1373 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
1374
1375 * window.c (quad): New function.
1376 (Fwindow_edges, Fwindow_pixel_edges, Fwindow_inside_edges)
1377 (Fwindow_absolute_pixel_edges, Fwindow_inside_absolute_pixel_edges)
1378 (Fwindow_inside_pixel_edges, Fpos_visible_in_window_p)
1379 (Fwindow_line_height): Use it.
1380 (Fwindow_fringes): Use list3.
1381 (Fwindow_scroll_bars): Use list4.
1382 (Fwindow_frame, Fwindow_top_child, Fwindow_left_child)
1383 (Fwindow_combination_limit): Allow zero number of arguments.
1384
1385 2012-11-05 Eli Zaretskii <eliz@gnu.org>
1386
1387 * makefile.w32-in ($(BLD)/w32fns.$(O)): Depend on $(NT_INC)/unistd.h.
1388
1389 * w32fns.c: Include unistd.h, to avoid compiler warnings on Cygwin.
1390 (emacs_abort) [CYGWIN]: Don't call _open_osfhandle; instead, use
1391 file descriptor 2 for standard error. (Bug#12805)
1392
1393 2012-11-05 Chong Yidong <cyd@gnu.org>
1394
1395 * process.c (wait_reading_process_output): Revert previous change.
1396
1397 2012-11-05 Paul Eggert <eggert@cs.ucla.edu>
1398
1399 Assume at least POSIX.1-1988 for getpgrp, setpgid, setsid (Bug#12800).
1400 This removes code that has been obsolete since around 1990.
1401 * callproc.c (Fcall_process):
1402 * emacs.c (main):
1403 * process.c (create_process):
1404 * term.c (dissociate_if_controlling_tty):
1405 Assume setsid exists.
1406 * callproc.c (child_setup): Assume setpgid exists and behaves as
1407 per POSIX.1-1988 or later.
1408 * conf_post.h (setpgid) [!HAVE_SETPGID]: Remove.
1409 * emacs.c (shut_down_emacs):
1410 * sysdep.c (sys_suspend, init_foreground_group):
1411 Assume getpgrp behaves as per POSIX.1-1998 or later.
1412 * msdos.c (setpgrp): Remove.
1413 (tcgetpgrp, setpgid, setsid): New functions.
1414 * systty.h (EMACS_GETPGRP): Remove. All callers now use getpgrp.
1415 * term.c (no_controlling_tty): Remove; unused.
1416 * w32proc.c (setpgrp): Remove.
1417 (setsid, tcgetpgrp): New functions.
1418
1419 Simplify by assuming __fpending.
1420 * dispnew.c: Include <fpending.h>, not <stdio_ext.h>.
1421 (update_frame_1): Use __fpending, not PENDING_OUTPUT_COUNT.
1422 Do not assume that __fpending's result fits in int.
1423
1424 2012-11-04 Paul Eggert <eggert@cs.ucla.edu>
1425
1426 Remove EMACS_OUTQSIZE+sleep hack.
1427 * dispnew.c (update_frame_1): Remove hack for terminals slower
1428 than 2400 bps, which throttled Emacs by having it sleep.
1429 This code hasn't worked since at least 2007, when the multi-tty stuff
1430 was added, and anyway those old terminals are long dead.
1431 * systty.h (EMACS_OUTQSIZE): Remove; unused. The macro isn't used even
1432 without the dispnew.c change, as dispnew.c doesn't include systty.h.
1433
1434 Fix data-loss with --version (Bug#9574).
1435 * emacs.c (close_output_streams): Use strerror, not emacs_strerror,
1436 as we can't assume that emacs_strerror is initialized, and strerror
1437 is good enough here.
1438 (main): Invoke atexit earlier, to catch earlier instances of
1439 sending data to stdout and exiting, e.g., "emacs --version >/dev/full".
1440
1441 2012-11-04 Michael Marchionna <tralfaz@pacbell.net>
1442
1443 * nsterm.m: Add NSClearLineFunctionKey and keypad keys (Bug#8680).
1444 (keyDown): Remap keypad keys to X11 virtual key codes.
1445
1446 2012-11-03 Paul Eggert <eggert@cs.ucla.edu>
1447
1448 Fix data-loss with --batch (Bug#9574).
1449 * emacs.c: Include <close-stream.h>.
1450 (close_output_streams): New function.
1451 (main): Pass it to atexit, so that Emacs closes stdout and stderr
1452 and handles errors appropriately.
1453 (Fkill_emacs): Don't worry about flushing, as close_output_stream
1454 does that now.
1455
1456 Fix a race condition that causes Emacs to mess up glib (Bug#8855).
1457 The symptom is a diagnostic "GLib-WARNING **: In call to
1458 g_spawn_sync(), exit status of a child process was requested but
1459 SIGCHLD action was set to SIG_IGN and ECHILD was received by
1460 waitpid(), so exit status can't be returned." The diagnostic
1461 is partly wrong, as the SIGCHLD action is not set to SIG_IGN.
1462 The real bug is a race condition between Emacs and glib: Emacs
1463 does a waitpid (-1, ...) and reaps glib's subprocess by mistake,
1464 so that glib can't find it. Work around the bug by invoking
1465 waitpid only on subprocesses that Emacs itself creates.
1466 * process.c (create_process, record_child_status_change):
1467 Don't use special value -1 in pid field, as the caller now must
1468 know the pid rather than having the callee infer it.
1469 The inference was sometimes incorrect anyway, due to another race.
1470 (create_process): Set new 'alive' member if child is created.
1471 (process_status_retrieved): New function.
1472 (record_child_status_change): Use it.
1473 Accept negative 1st argument, which means to wait for the
1474 processes that Emacs already knows about. Move special-case code
1475 for DOS_NT (which lacks WNOHANG) here, from caller. Keep track of
1476 processes that have already been waited for, by testing and
1477 clearing new 'alive' member.
1478 (CAN_HANDLE_MULTIPLE_CHILDREN): Remove, as record_child_status_change
1479 now does this internally.
1480 (handle_child_signal): Let record_child_status_change do all
1481 the work, since we do not want to reap all exited child processes,
1482 only the child processes that Emacs itself created.
1483 * process.h (Lisp_Process): New boolean member 'alive'.
1484
1485 Omit duplicate definitions no longer needed with gcc -g3.
1486 * lisp.h (GCTYPEBITS, GCALIGNMENT, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG)
1487 (VALMASK, MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM):
1488 Define only as macros. There's no longer any need to also define
1489 these symbols as enums or as constants, since we now assume
1490 gcc -g3 when debugging.
1491
1492 2012-11-03 Eli Zaretskii <eliz@gnu.org>
1493
1494 * lisp.mk: Adjust comments to the fact that term/internal is now
1495 loaded from loadup.el.
1496
1497 * msdos.c (msdos_abort): Rename from emacs_abort, and make static.
1498 (msdos_fatal_signal): New function.
1499 (XMenuActivate): Adjust the call to kbd_buffer_events_waiting to
1500 its argument list.
1501
1502 * conf_post.h (_GL_EXECINFO_INLINE) [MSDOS]: Define to "inline"
1503 for GCC versions before 4.
1504 (emacs_raise): Define to call msdos_fatal_signal.
1505
1506 * xdisp.c (init_from_display_pos): Fix initialization of the bidi
1507 iterator when starting in the middle of a display or overlay
1508 string. (Bug#12745)
1509
1510 2012-11-03 Chong Yidong <cyd@gnu.org>
1511
1512 * process.c (wait_reading_process_output): Clean up the last
1513 change.
1514
1515 2012-11-03 Jim Paris <jim@jtan.com> (tiny change)
1516
1517 * process.c (wait_reading_process_output): Avoid a race condition
1518 with SIGIO delivery (Bug#11536).
1519
1520 2012-11-03 Chong Yidong <cyd@gnu.org>
1521
1522 * buffer.c (cursor_type): Untabify docstring.
1523
1524 2012-11-03 Dmitry Antipov <dmantipov@yandex.ru>
1525
1526 * frame.h (struct frame): Drop can_have_scroll_bars member
1527 which is meaningless for a long time. Adjust comments.
1528 (FRAME_CAN_HAVE_SCROLL_BARS): Remove.
1529 * frame.c, nsfns.m, term.c, w32fns.c, xfns.c: Adjust users.
1530
1531 2012-11-03 Dmitry Antipov <dmantipov@yandex.ru>
1532
1533 * window.c (decode_next_window_args): Update window arg after
1534 calling decode_live_window and so fix crash reported at
1535 http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00035.html
1536 by Juanma Barranquero <lekktu@gmail.com>.
1537 (Fwindow_body_width, Fwindow_body_height): Simplify a bit.
1538 * font.c (Ffont_at): Likewise.
1539
1540 2012-11-01 Jan Djärv <jan.h.d@swipnet.se>
1541
1542 * widget.c (resize_cb): New function.
1543 (EmacsFrameRealize): Add resize_cb as event handler (Bug#12733).
1544 (EmacsFrameResize): Check if all is up to date before changing frame
1545 size.
1546
1547 2012-11-02 Eli Zaretskii <eliz@gnu.org>
1548
1549 Implement backtrace output for fatal errors on MS-Windows.
1550 * w32fns.c (CaptureStackBackTrace_proc): New typedef.
1551 (BACKTRACE_LIMIT_MAX): New macro.
1552 (w32_backtrace): New function.
1553 (emacs_abort): Use w32_backtrace when the user chooses not to
1554 attach a debugger. Update the text of the abort dialog.
1555
1556 2012-11-02 Dmitry Antipov <dmantipov@yandex.ru>
1557
1558 Window-related stuff cleanup here and there.
1559 * dispnew.c (Finternal_show_cursor, Finternal_show_cursor_p):
1560 Use decode_any_window.
1561 * fringe.c (Ffringe_bitmaps_at_pos): Likewise.
1562 * xdisp.c (Fformat_mode_line): Likewise.
1563 * font.c (Ffont_at): Use decode_live_window.
1564 * indent.c (Fcompute_motion, Fvertical_motion): Likewise.
1565 * window.c (decode_next_window_args): Likewise.
1566 (decode_any_window): Remove static.
1567 * window.h (decode_any_window): Add prototype.
1568 * lisp.h (CHECK_VALID_WINDOW, CHECK_LIVE_WINDOW): Move from here...
1569 * window.h: ...to here, redefine via WINDOW_VALID_P and WINDOW_LIVE_P,
1570 respectively.
1571
1572 2012-11-02 Dmitry Antipov <dmantipov@yandex.ru>
1573
1574 Remove pad from struct input_event.
1575 * termhooks.h (struct input_event): Remove padding field.
1576 Adjust comment.
1577 * keyboard.c (event_to_kboard): Simplify because frame_or_window
1578 member is never cons for a long time. Adjust comment.
1579 (mark_kboards): Adjust because SELECTION_REQUEST_EVENT and
1580 SELECTION_CLEAR_EVENT has no Lisp_Objects to mark. Add comment.
1581 * xterm.c (handle_one_xevent): Do not initialize frame_or_window
1582 field of SELECTION_REQUEST_EVENT and SELECTION_CLEAR_EVENT.
1583
1584 2012-11-01 Eli Zaretskii <eliz@gnu.org>
1585
1586 * w32proc.c (getpgrp, setpgid): New functions. (Bug#12776)
1587
1588 2012-10-31 Paul Eggert <eggert@cs.ucla.edu>
1589
1590 Fix crash when using Emacs as commit editor for git (Bug#12697).
1591 * callproc.c (setpgrp): Remove macro, as we now use setpgid
1592 and it is configured in conf_post.h.
1593 (Fcall_process): Don't invoke both setsid and setpgid; the former
1594 is enough, if it exists.
1595 * callproc.c (Fcall_process, child_setup):
1596 * process.c (create_process): Use setpgid.
1597 * conf_post.h (setpgid) [!HAVE_SETPGID]: New macro, which substitutes
1598 for the real thing.
1599 * dispnew.c (init_display): Initialize the foreground group
1600 if we are running a tty display.
1601 * emacs.c (main): Do not worry about setpgrp; init_display does it now.
1602 * lisp.h (init_foreground_group): New decl.
1603 * sysdep.c (inherited_pgroup): New static var.
1604 (init_foreground_group, tcsetpgrp_without_stopping)
1605 (narrow_foreground_group, widen_foreground_group): New functions.
1606 (init_sys_modes): Narrow foreground group.
1607 (reset_sys_modes): Widen foreground group.
1608
1609 2012-10-31 Michael Albinus <michael.albinus@gmx.de>
1610
1611 * dbusbind.c: Fix cut'n'waste error. Use HAVE_DBUS_VALIDATE_INTERFACE.
1612
1613 2012-10-31 Martin Rudalics <rudalics@gmx.at>
1614
1615 * minibuf.c (read_minibuf): Restore current buffer since
1616 choose_minibuf_frame calling Fset_frame_selected_window may
1617 change it (Bug#12766).
1618
1619 2012-10-30 Jan Djärv <jan.h.d@swipnet.se>
1620
1621 * frame.c (Fframe_pixel_height): Fix documentation (Bug#12733).
1622
1623 2012-10-30 Kenichi Handa <handa@gnu.org>
1624
1625 * font.c (Ffont_at): If WINDOW is specified and it is not
1626 displaying the current buffer, signal an error.
1627
1628 2012-10-29 Daniel Colascione <dancol@dancol.org>
1629
1630 * cygw32.h, cygw32.c (Qutf_16le, from_unicode, to_unicode):
1631 In preparation for fixing bug#12739, move these functions from
1632 here...
1633
1634 * coding.h, coding.c: ... to here, and compile them only when
1635 WINDOWSNT or CYGWIN. Moving these functions out of cygw32 proper
1636 lets us write cygw32-agnostic code for the HAVE_NTGUI case.
1637
1638 2012-10-28 Eli Zaretskii <eliz@gnu.org>
1639
1640 * w32proc.c (TIMER_TICKS_PER_SEC): New macro.
1641 (timer_loop, getitimer, setitimer): Use it instead of
1642 CLOCKS_PER_SEC, which is no longer pertinent, since we don't use
1643 'clock'.
1644 (w32_get_timer_time): Use 10*TIMER_TICKS_PER_SEC instead of a
1645 literal 10000.
1646
1647 2012-10-28 Jan Djärv <jan.h.d@swipnet.se>
1648
1649 * nsterm.m (NO_APPDEFINED_DATA): New define.
1650 (last_appdefined_event_data): New variable
1651 (last_appdefined_event): Remove.
1652 (ns_select): Initialize t from last_appdefined_event_data instead
1653 of [last_appdefined_event data1].
1654 (sendEvent:): Save [theEvent data1] to last_appdefined_event_data,
1655 remove last_appdefined_event (Bug#12698).
1656
1657 2012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
1658
1659 * frame.c (x_set_font): Catch internal error.
1660
1661 2012-10-27 Eli Zaretskii <eliz@gnu.org>
1662
1663 Avoid overflow in w32 implementation of interval timers.
1664 When possible, for ITIMER_PROF count only times the main thread
1665 actually executes.
1666 * w32proc.c <struct itimer_data>: 'expire' and 'reload' are now
1667 'volatile ULONGLONG' types. All the other data which was
1668 previously clock_t is now ULONGLONG. 'terminate' is 'volatile int'.
1669 (GetThreadTimes_Proc): New typedef.
1670 (w32_get_timer_time): New function, returns a suitable time value
1671 for the timer.
1672 (timer_loop): Enter critical section when accessing ULONGLONG
1673 values of the itimer_data struct, as these accesses are no longer
1674 atomic. Call 'w32_get_timer_time' instead of 'clock'.
1675 Remove unused variable.
1676 (init_timers): Initialize s_pfn_Get_Thread_Times.
1677 (start_timer_thread): Don't assign itimer->caller_thread here.
1678 (getitimer): Assign itimer->caller_thread here.
1679 (setitimer): Always call getitimer to get the value of ticks_now.
1680 (sys_spawnve): Avoid compiler warning about format mismatch.
1681
1682 2012-10-26 Eli Zaretskii <eliz@gnu.org>
1683
1684 * w32fns.c (w32_wnd_proc) <WM_MOUSEMOVE>: Don't enable tracking of
1685 mouse movement events if the menu bar is active. This avoids
1686 producing a busy "hour-glass" cursor by Windows if the mouse
1687 pointer is positioned over a tooltip shown for some menu item.
1688
1689 2012-10-25 Paul Eggert <eggert@cs.ucla.edu>
1690
1691 Don't assume process IDs fit in int.
1692 * emacs.c (shut_down_emacs) [!DOS_NT]:
1693 * sysdep.c (sys_suspend) [SIGTSTP && !MSDOS]:
1694 * term.c (dissociate_if_controlling_tty) [!DOS_NT]:
1695 Use pid_t, not int, to store process IDs, as 'int'
1696 is not wide enough on a few platforms (e.g., AIX and IRIX).
1697
1698 2012-10-23 Kenichi Handa <handa@gnu.org>
1699
1700 The following change is to make face-font-rescale-alist work
1701 correctly for non-ASCII fonts.
1702
1703 * font.c (font_open_entity): Don't handle Vface_font_rescale_alist.
1704 (font_open_for_lface): Handle Vface_font_rescale_alist.
1705
1706 2012-10-23 Chong Yidong <cyd@gnu.org>
1707
1708 * xfaces.c (Vfont_list_limit): Move unused variable to faces.el.
1709
1710 2012-10-21 Jan Djärv <jan.h.d@swipnet.se>
1711
1712 * nsfont.m (nsfont_open, ns_glyph_metrics): Force integer advancement
1713 for screen font.
1714 (nsfont_draw): Turn off LCD-smoothing (Bug#11484).
1715
1716 * xterm.c (x_focus_changed): Check if daemonp when sending focus in
1717 event (Bug#12681).
1718
1719 2012-10-21 Glenn Morris <rgm@gnu.org>
1720
1721 * lisp.mk (lisp): Add cp51932.el and eucjp-ms.el.
1722
1723 2012-10-20 Paul Eggert <eggert@cs.ucla.edu>
1724
1725 Port to OpenBSD 5.1.
1726 * frame.c (Fmouse_position, Fmouse_pixel_position):
1727 * xdisp.c (produce_stretch_glyph):
1728 Declare local vars only when they're needed.
1729 This is clearer and avoids a warning on OpenBSD about unused vars.
1730 * frame.h (FRAME_WINDOW_P): Always evaluate its argument.
1731 This is safer, and avoids OpenBSD warnings about unused vars.
1732 * keyboard.c (record_menu_key): Remove unnecessary decl.
1733 (poll_timer): Define only if POLL_FOR_INPUT is defined.
1734 * unexelf.c (ELFSIZE) [!ElfW]: Do not define if already defined,
1735 as our definition clashes with OpenBSD's.
1736 * xfaces.c (load_face_colors, check_lface_attrs)
1737 (get_lface_attributes_no_remap, get_lface_attributes)
1738 (lface_fully_specified_p, x_supports_face_attributes_p)
1739 (tty_supports_face_attributes_p, face_fontset, realize_face)
1740 (realize_x_face, realize_tty_face):
1741 Declare parameters to be Lisp_Object[LFACE_VECTOR_SIZE], not
1742 merely Lisp_Object *. This is more informative and avoids
1743 a warning on OpenBSD about accessing beyond an object's size.
1744
1745 2012-10-20 Chong Yidong <cyd@gnu.org>
1746
1747 * lread.c (Fload): Doc fix (Bug#12592).
1748
1749 2012-10-19 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
1750
1751 * font.c (Ffont_at): Fix previous change.
1752
1753 2012-10-19 Eli Zaretskii <eliz@gnu.org>
1754
1755 * puresize.h (BASE_PURESIZE): Bump the base value to 1700000.
1756 See http://lists.gnu.org/archive/html/emacs-devel/2012-10/msg00593.html
1757 for the reasons.
1758
1759 * alloc.c (NSTATICS): Decrease to 0x800.
1760
1761 2012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
1762
1763 * fns.c (Fnreverse): Include the problem element when signaling an
1764 error (bug#12677).
1765
1766 2012-10-18 Jan Djärv <jan.h.d@swipnet.se>
1767
1768 * nsterm.m (ns_select): Check writefds before call to
1769 FD_ISSET (Bug#12668).
1770
1771 2012-10-18 Daniel Colascione <dancol@dancol.org>
1772
1773 * alloc.c (NSTATICS): Increase from 0x650 to 0x1000
1774 (staticpro): If we run out of staticpro slots, die with an
1775 informative error instead of just calling emacs_abort.
1776
1777 2012-10-18 Martin Rudalics <rudalics@gmx.at>
1778
1779 Fix two flaws reported by Dmitry Antipov.
1780 * window.c (Ftemp_output_buffer_show): Remove.
1781 (Fwindow_vscroll, Fset_window_vscroll): Use decode_live_window.
1782 (syms_of_window): Remove defsubr for Stemp_output_buffer_show.
1783
1784 2012-10-17 Eli Zaretskii <eliz@gnu.org>
1785
1786 * makefile.w32-in ($(BLD)/w32.$(O)):
1787 ($(BLD)/vm-limit.$(O)):
1788 ($(BLD)/term.$(O)):
1789 ($(BLD)/unexw32.$(O)):
1790 ($(BLD)/fileio.$(O)):
1791 ($(BLD)/dispnew.$(O)): Update dependencies.
1792
1793 * w32term.h (w32_initialize_display_info, initialize_w32_display):
1794 Add prototypes.
1795
1796 * w32proc.c: Include ctype.h.
1797
1798 * w32.h (init_environment, check_windows_init_file)
1799 (syms_of_ntproc, syms_of_ntterm, dostounix_filename)
1800 (unixtodos_filename, init_winsock, srandom, random, sys_pipe)
1801 (set_process_dir, sys_spawnve, register_child, sys_sleep, getwd)
1802 (sys_link): Add prototypes.
1803
1804 * w32.c: Include w32select.h.
1805 (sys_access, e_malloc, sys_select): Add prototypes.
1806 (emacs_gnutls_pull): 'timeout' is now EMACS_TIME, not struct timeval.
1807
1808 * vm-limit.c [WINDOWSNT]: Include w32heap.h.
1809
1810 * unexw32.c: Include lisp.h and w32.h.
1811
1812 * term.c [WINDOWSNT]: Include w32term.h.
1813
1814 * process.c [WINDOWSNT]: Add prototype of sys_select.
1815
1816 * fileio.c [WINDOWSNT]: Include w32.h.
1817
1818 * dispnew.c [WINDOWSNT]: Include w32.h.
1819
1820 * cygw32.c (Fcygwin_convert_path_to_windows)
1821 (Fcygwin_convert_path_from_windows): Use EQ to compare 2
1822 Lisp_Object values. (Bug#12661)
1823
1824 * w32fns.c (w32_msg_pump): Use XIL instead of casting an integer
1825 to Lisp_Object. (Bug#12661)
1826
1827 2012-10-17 Kenichi Handa <handa@gnu.org>
1828
1829 * xdisp.c (reseat_1): Make the information stored in it->cmp_it
1830 invalidate.
1831
1832 2012-10-17 Dmitry Antipov <dmantipov@yandex.ru>
1833
1834 * buffer.c (Fkill_buffer): When unchaining the marker,
1835 reset its buffer pointer to NULL (Bug#12652).
1836
1837 2012-10-17 Dmitry Antipov <dmantipov@yandex.ru>
1838
1839 Do not verify indirection counters of killed buffers (Bug#12579).
1840 * buffer.h (BUFFER_CHECK_INDIRECTION): New macro.
1841 * buffer.c (compact_buffer, set_buffer_internal_1): Use it.
1842
1843 2012-10-16 Dmitry Antipov <dmantipov@yandex.ru>
1844
1845 * alloc.c (Fmake_byte_code): Fix typo in comment.
1846 * print.c (print_interval): Define as static to match prototype.
1847 * indent.c (disptab_matches_widthtab, recompute_width_table):
1848 Convert to eassert.
1849
1850 2012-10-16 Dmitry Antipov <dmantipov@yandex.ru>
1851
1852 * editfns.c (get_system_name): Remove.
1853 * lisp.h (get_system_name): Remove prototype.
1854 * xrdb.c (getenv, getpwuid, getpwnam): Remove prototypes.
1855 (get_environ_db): Use Vsystem_name. Avoid call to strlen.
1856
1857 2012-10-15 Daniel Colascione <dancol@dancol.org>
1858
1859 * dbusbind.c: Add comment explaining reason for previous change.
1860
1861 2012-10-15 Martin Rudalics <rudalics@gmx.at>
1862
1863 * window.c (Fwindow_end): Rewrite check whether cached position
1864 can be used (Bug#12600).
1865 (resize_frame_windows, grow_mini_window, shrink_mini_window):
1866 Set windows_or_buffers_changed.
1867
1868 2012-10-15 Daniel Colascione <dancol@dancol.org>
1869
1870 * dbusbind.c: Fix cygw32 build break when compiling with dbus
1871 enabled by undefining the symbol "interface", which the platform
1872 headers define to something incompatible.
1873
1874 2012-10-14 Daniel Colascione <dancol@dancol.org>
1875
1876 * image.c (init_tiff_functions, init_imagemagick_functions)
1877 (init_svg_functions): Fix cygw32 build break by using these
1878 functions only when WINDOWSNT _and_ HAVE_NTGUI.
1879
1880 2012-10-14 Jan Djärv <jan.h.d@swipnet.se>
1881
1882 * nsterm.m (ns_select): Count fd:s in writefs also (Bug#12422).
1883
1884 2012-10-13 Jan Djärv <jan.h.d@swipnet.se>
1885
1886 * gtkutil.c (xg_set_widget_bg): Divide by 65535 (Bug#12612).
1887
1888 2012-10-13 HANATAKA, Shinya <bogytech@gmail.com> (tiny change)
1889
1890 * coding.c (detect_coding): Set coding->id before calling
1891 this->detector.
1892
1893 2012-10-13 Andreas Schwab <schwab@linux-m68k.org>
1894
1895 * fileio.c: Formatting fixes.
1896
1897 2012-10-13 Paul Eggert <eggert@cs.ucla.edu>
1898
1899 Fix some stat-related races.
1900 * fileio.c (Fwrite_region): Avoid race condition if a file is
1901 removed or renamed by some other process immediately after Emacs
1902 writes it but before Emacs stats it. Do not assume that stat (or
1903 fstat) succeeds.
1904 * image.c (slurp_file): Resolve the file name with fopen + fstat
1905 rather than stat + fopen.
1906 (pbm_read_file) [0]: Remove unused code with stat race.
1907 * process.c (allocate_pty) [HAVE_PTYS && !PTY_ITERATION && !PTY_OPEN]:
1908 Remove ineffective code with stat race.
1909
1910 2012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
1911
1912 * doc.c (get_doc_string): Don't signal an error if the file is missing.
1913
1914 2012-10-12 Jan Djärv <jan.h.d@swipnet.se>
1915
1916 * nsterm.m (hold_event_q): New static variable.
1917 (EV_TRAILER, sendScrollEventAtLoc:fromEvent:): Call hold_event if
1918 ! q_event_ptr.
1919 (hold_event): New function.
1920 (ns_read_socket): If hold_event_q have events, store them and
1921 return (Bug#12384).
1922 (setPosition:portion:whole:): Send SIGIO to ourselves if apploopnr
1923 is zero (Bug#12384).
1924
1925 2012-10-12 Juanma Barranquero <lekktu@gmail.com>
1926
1927 * makefile.w32-in ($(BLD)/w32select.$(O)): Update dependencies.
1928
1929 2012-10-12 Eli Zaretskii <eliz@gnu.org>
1930
1931 * makefile.w32-in ($(BLD)/fileio.$(O)): Add sys/file.h.
1932
1933 * fileio.c (check_existing): New function.
1934 (make_temp_name, Ffile_exists_p, Ffile_writable_p): Call it
1935 instead of calling 'stat', when what's needed is to check whether
1936 a file exists. This avoids expensive system calls on MS-Windows.
1937 (Bug#12587)
1938
1939 * w32.c (init_environment): Call 'check_existing' instead of 'stat'.
1940
1941 * lread.c (openp) [WINDOWSNT]: Call 'access' instead of 'stat' to
1942 determine whether a file exists and is not a directory.
1943
1944 * lisp.h (check_existing): Add prototype.
1945
1946 2012-10-12 Jan Djärv <jan.h.d@swipnet.se>
1947
1948 * nsfont.m (nsfont_open): Remove font cache, it is not GC correct.
1949
1950 2012-10-12 Glenn Morris <rgm@gnu.org>
1951
1952 * buffer.c (Fset_buffer): Doc fix. (Bug#12624)
1953
1954 2012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
1955
1956 * buffer.c (Fkill_buffer): Null out the overlay list(s) as well.
1957
1958 * eval.c (Fautoload): Remember previous autoload status in load-history.
1959
1960 2012-10-11 Paul Eggert <eggert@cs.ucla.edu>
1961
1962 lread.c, macros.c, marker.c, menu.c, minibuf.c: Use bool for booleans.
1963 * lread.c (load_each_byte, new_backquote_flag, readchar)
1964 (read_filtered_event, lisp_file_lexically_bound_p)
1965 (safe_to_load_version, Fload, complete_filename_p, openp)
1966 (build_load_history, readevalloop, read_escape, read1)
1967 (string_to_number, read_vector, read_list):
1968 * macros.c (Fstart_kbd_macro):
1969 * marker.c (CONSIDER):
1970 * menu.c (parse_single_submenu, digest_single_submenu)
1971 (find_and_return_menu_selection, Fx_popup_menu):
1972 * minibuf.c (read_minibuf_noninteractive, read_minibuf)
1973 (Ftry_completion):
1974 * nsmenu.m (ns_update_menubar, runMenuAt:forFrame:keymaps:):
1975 (ns_menu_show):
1976 * xmenu.c (set_frame_menubar, create_and_show_popup_menu)
1977 (xmenu_show, xdialog_show):
1978 Use bool for booleans.
1979 * lread.c (safe_to_load_version): Rename from safe_to_load_p,
1980 as it's not a predicate. All uses changed. Omit unnecessary
1981 buffer termination.
1982
1983 2012-10-11 Dmitry Antipov <dmantipov@yandex.ru>
1984
1985 * editfns.c (save_excursion_save): Use nil if mark points to nowhere.
1986 (save_excursion_restore): Do not restore mark if it was not saved.
1987
1988 2012-10-11 Paul Eggert <eggert@cs.ucla.edu>
1989
1990 * marker.c (cached_modiff): EMACS_INT, not int.
1991
1992 * w32select.c (waiting_for_input): Declare by including "keyboard.h"
1993 instead of having a wrong decl.
1994 * nsmenu.m (waiting_for_input): Remove wrong decl.
1995
1996 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
1997
1998 keyboard.c, keymap.c: Use bool for booleans.
1999 * dispnew.c (sit_for): Distinguish between 3-way display_option
2000 and boolean do_display.
2001 * keyboard.c (single_kboard, this_command_key_count_reset)
2002 (waiting_for_input, echoing, immediate_quit, input_pending)
2003 (interrupt_input, interrupts_deferred, pop_kboard)
2004 (temporarily_switch_to_single_kboard, ignore_mouse_drag_p)
2005 (command_loop_1, adjust_point_for_property)
2006 (safe_run_hooks_error, input_polling_used, read_char):
2007 (help_char_p, readable_events, kbd_buffer_events_waiting)
2008 (kbd_buffer_get_event, timer_check_2, make_lispy_event)
2009 (lucid_event_type_list_p, get_input_pending):
2010 (gobble_input, menu_separator_name_p, menu_bar_item)
2011 (parse_menu_item, parse_tool_bar_item, read_char_x_menu_prompt)
2012 (read_char_minibuf_menu_prompt, access_keymap_keyremap)
2013 (keyremap_step, test_undefined, read_key_sequence)
2014 (detect_input_pending, detect_input_pending_ignore_squeezables)
2015 (detect_input_pending_run_timers, requeued_events_pending_p)
2016 (quit_throw_to_read_char, Fset_input_interrupt_mode):
2017 * keymap.c (get_keymap, keymap_parent, keymap_memberp)
2018 (access_keymap_1, access_keymap, map_keymap, get_keyelt)
2019 (Fdefine_key, Flookup_key, struct accessible_keymaps_data)
2020 (accessible_keymaps_1, Fkey_description, push_key_description):
2021 (shadow_lookup, struct where_is_internal_data)
2022 (where_is_internal, Fwhere_is_internal, where_is_internal_1)
2023 (Fdescribe_buffer_bindings, describe_map_tree, struct describe_map_elt)
2024 (describe_map, describe_vector):
2025 * menu.c (single_menu_item):
2026 * nsmenu.m (ns_update_menubar):
2027 * process.c (wait_reading_process_output):
2028 * search.c (scan_buffer, scan_newline):
2029 Use bool for boolean.
2030 * keyboard.c (timers_run, swallow_events)
2031 (detect_input_pending_run_timers):
2032 * process.c (wait_reading_process_output):
2033 Use unsigned for counter where wraparound-on-overflow is desired,
2034 since unsigned is guaranteed to have that behavior and signed is not.
2035 (read_char): Use ptrdiff_t for string length.
2036 (get_input_pending): Remove first argument, since it was always
2037 the same pointer-to-int (now pointer-to-boolean) &input_pending,
2038 and behave as if it had that value. Return new value of
2039 input_pending. All callers changed.
2040 * keyboard.h (struct kboard): Use unsigned : 1 for boolean member
2041 immediate_echo. Use ptrdiff_t for echo_after_prompt, since it's
2042 a string length.
2043 * keymap.c (push_key_description): Omit last arg, which was always 1.
2044 All callers changed.
2045
2046 * regex.c (immediate_quit) [emacs]: Remove duplicate decl.
2047
2048 2012-10-10 Juanma Barranquero <lekktu@gmail.com>
2049
2050 * makefile.w32-in ($(BLD)/dispnew.$(O), $(BLD)/indent.$(O))
2051 ($(BLD)/term.$(O)): Update dependencies.
2052
2053 2012-10-10 Dmitry Antipov <dmantipov@yandex.ru>
2054
2055 * alloc.c (mark_object): Use meaningful PVEC_NORMAL_VECTOR.
2056 * lisp.h (enum pvec_type): Adjust comments and omit explicit
2057 initializer for PVEC_NORMAL_VECTOR.
2058
2059 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
2060
2061 Clean out old termopts cruft.
2062 * termopts.h (flow_control, meta_key): Remove unused decls.
2063 * dispnew.c, indent.c, nsterm.m, term.c, xsettings.c, xsmfns.c:
2064 Don't include termopts.h.
2065
2066 2012-10-10 Dmitry Antipov <dmantipov@yandex.ru>
2067
2068 * alloc.c (gc_sweep): Use pointer-to-a-pointer loop for buffers.
2069
2070 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
2071
2072 * commands.h (immediate_quit): Remove duplicate decl.
2073
2074 2012-10-09 Jan Djärv <jan.h.d@swipnet.se>
2075
2076 * nsfont.m (Vfonts_in_cache): Remove, not needed as font.c handles
2077 caching.
2078 (nsfont_open): Remove setting of Vfonts_in_cache.
2079 (syms_of_nsfont): Remove initialization of Vfonts_in_cache.
2080
2081 2012-10-09 Eli Zaretskii <eliz@gnu.org>
2082
2083 * w32fns.c (w32_last_error): Change the return value to DWORD, to
2084 match what GetLastError returns. Explain why the function is
2085 needed.
2086
2087 * frame.c (delete_frame): Rename local variable 'tooltip_frame' to
2088 'is_tooltip_frame', to avoid confusion with its global namesake.
2089
2090 2012-10-08 Daniel Colascione <dancol@dancol.org>
2091
2092 * xdisp.c (start_hourglass): Call w32_note_current_window when
2093 HAVE_NTGUI, not just WINDOWSNT, resolving a problem in the cygw32
2094 build that caused Emacs to display the hourglass cursor forever.
2095
2096 * w32fns.c (Fx_display_color_cells): Instead of using NCOLORS,
2097 which is broken under remote desktop, calculate the number of
2098 colors available for a display based on the display's number of
2099 planes and number of bits per pixel per plane. (bug#10397).
2100
2101 2012-10-08 Jan Djärv <jan.h.d@swipnet.se>
2102
2103 * nsfont.m (Vfonts_in_cache): New variable.
2104 (nsfont_open): Use unsignedLongLongValue for cache in case wide ints
2105 are used. Add cached fonts to Vfonts_in_cache.
2106 (syms_of_nsfont): Initialize and staticpro Vfonts_in_cache.
2107
2108 2012-10-08 Juanma Barranquero <lekktu@gmail.com>
2109
2110 * makefile.w32-in (LOCAL_FLAGS): Don't define HAVE_NTGUI, it's now
2111 in nt/config.nt.
2112 (FONT_H): Define after FRAME_H.
2113 ($(BLD)/emacs.$(O), $(BLD)/process.$(O), $(BLD)/w32heap.$(O)):
2114 Update dependencies.
2115
2116 * w32term.c: Remove leftover declaration of keyboard_codepage.
2117
2118 2012-10-08 Eli Zaretskii <eliz@gnu.org>
2119
2120 * makefile.w32-in (FONT_H): Add $(FRAME_H).
2121 (W32TERM_H): Add $(ATIMER_H) and $(FRAME_H).
2122 ($(BLD)/emacs.$(O), $(BLD)/w32console.$(O)): Update dependencies.
2123 (GLOBAL_SOURCES): Add cygw32.c.
2124 ($(BLD)/unexw32.$(O)):
2125 ($(BLD)/w32.$(O)):
2126 ($(BLD)/w32console.$(O)):
2127 ($(BLD)/w32fns.$(O)):
2128 ($(BLD)/w32heap.$(O)):
2129 ($(BLD)/w32menu.$(O)):
2130 ($(BLD)/w32proc.$(O)): Add w32common.h.
2131
2132 * w32fns.c (w32_color_map_lookup, x_to_w32_color): Argument is now
2133 'const char *'.
2134 (x_to_w32_color): Don't modify the argument, modify a copy instead.
2135
2136 2012-10-08 Daniel Colascione <dancol@dancol.org>
2137
2138 * w32term.h (WM_EMACS_BRINGTOTOP, WM_EMACS_INPUT_READY)
2139 (WM_EMACS_END): Change WM_EMACS_BRINGTOTOP from 22 to 21 to close
2140 accidental message numbering hole. Change other messages to
2141 match.
2142
2143 * w32select.h (HAVE_W32SELECT): Remove.
2144
2145 * w32select.c, w32proc.c, w32menu.c, w32console.c, w32.c: Include
2146 w32common.h instead of w32heap.h.
2147
2148 * w32heap.h (ROUND_UP, ROUND_DOWN, get_page_size)
2149 (get_allocation_unit, get_processor_type, get_w32_major_version)
2150 (get_w32_minor_version, sysinfo_cache, osinfo_cache)
2151 (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
2152 (OS_NT, os_subtype, cache_system_info): Move declarations to
2153 w32common.
2154
2155 * w32heap.c: Include w32common.h.
2156 (sysinfo_cache, syspage_mask, osinfo_cache, w32_major_version)
2157 (w32_minor_version, w32_build_number, w32_subtype):
2158 Remove duplicate definitions.
2159
2160 * w32fns.c: Include w32common.h; include w32heap.h only in
2161 WINDOWSNT.
2162
2163 (Fx_file_dialog): Clarify comment on GetOpenFileName structure.
2164 Use `report_file_error' instead of `error' in order to better
2165 inform users of what went wrong. Increase NTGUI_UNICODE file
2166 dialog box file name length to 32k, the maximum allowed by the NT
2167 kernel.
2168
2169 * w32common.h: New file.
2170 (ROUND_UP, ROUND_DOWN, get_page_size)
2171 (get_allocation_unit, get_processor_type, get_w32_major_version)
2172 (get_w32_minor_version, sysinfo_cache, osinfo_cache)
2173 (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
2174 (OS_NT, os_subtype, cache_system_info): Move here.
2175
2176 * unexw32.c, unexcw.c: Include w32common.h.
2177
2178 * emacs.c (main): Use (defined (WINDOWSNT) || defined
2179 HAVE_NTGUI) instead of removed HAVE_W32SELECT to decide whether
2180 to call syms_of_w32select.
2181
2182 * cygw32.h: Remove obsolete EXFUN declarations.
2183
2184 * cygw32.c (Qutf_16_le): Rename to Qutf_16le.
2185
2186 * Makefile.in (SOME_MACHINE_OBJECTS): Reverse accidental removal
2187 of w32inevt.o from SOME_MACHINE_OBJECTS.
2188
2189 2012-10-08 Daniel Colascione <dancol@dancol.org>
2190
2191 * image.c: Permanent fix for JPEG compilation issue --- limit
2192 jpeglib `boolean' redefinition to Cygwin builds.
2193
2194 2012-10-08 Eli Zaretskii <eliz@gnu.org>
2195
2196 * image.c (CHECK_LIB_AVAILABLE): Remove, no longer used.
2197
2198 * emacs.c (DAEMON_MUST_EXEC) [HAVE_NTGUI]: Define this only on
2199 Cygwin.
2200
2201 2012-10-08 Daniel Colascione <dancol@dancol.org>
2202
2203 * xfaces.c, xdisp.c, window.c, w32xfns.c, w32term.h, w32term.c,
2204 w32select.h w32select.c, w32proc.c, w32menu.c, w32inevt.c,
2205 w32help.c, w32font.c, w32font.c, w32fns.c, w32console.c, w32.h,
2206 w32.c, unexw32.c, termhooks.h, process.c, menu.c, keyboard.h,
2207 keyboard.c, image.c, frame.h, frame.c, fontset.c, font.h, font.c,
2208 emacs.c, dispextern.h, cygw32.h, cygw32.c, conf_post.h,
2209 Makefile.in: use HAVE_NTGUI for W32 GUI and WINDOWSNT for the
2210 operating system. defined(HAVE_NTGUI) && !defined(WINDOWSNT) is
2211 now a supported configuration.
2212
2213 * Makefile.in: consolidate image variables into LIBIMAGE; add
2214 W32_OBJ and W32_LIBS. Compile new files.
2215
2216 * conf_post.h:
2217 (_DebPrint) declare tracing facility for W32 debugging. We need
2218 to unify tracing later.
2219
2220 (NTGUI_UNICODE) Define when compiling for Cygwin to allow the
2221 unconditional use of W32 Unicode functions. Cygwin runs only on
2222 100% Unicode operating systems.
2223
2224 * cygw32.c: New file. Define Cygwin-specific facilities.
2225 (Fcygwin_convert_path_to_windows)
2226 (Fcygwin_convert_path_from_windows): New user functions for
2227 accessing Cygwin path-munging routines.
2228
2229 * cygw32.h: New file.
2230 (WCSDATA, to_unicode, from_unicode): Define facilities for storing
2231 UTF-16LE strings temporarily inside non-Lisp-visible string
2232 objects.
2233
2234 (w32_strerror): Just what it says on the tin.
2235
2236 * emacs.c: Make the NS fork-then-exec code for daemon-launching
2237 also run for Cygwin; both systems have the same problem with using
2238 GUI facilities in a forked child. Also call syms_of_cygw32,
2239 syms_of_w32select in correct places.
2240
2241 (DAEMON_MUST_EXEC): new macro defined to signal that a platform
2242 needs fork-then-exec for daemon launching.
2243
2244 * font.h: Include frame.h.
2245
2246 * image.c: Use the image library cache machinery only when we're
2247 compiling for native WINDOWSNT; Cygwin can use shared libraries
2248 like any other Unixlike system.
2249
2250 * keyboard.c: Clarify a comment regarding the input loop.
2251
2252 * menu.c: When NTGUI_UNICODE is defined, use Unicode menu
2253 functions directly instead of trying to detect at runtime that our
2254 host operating system supports them. We make this change for two
2255 reasons: Cygwin lacks support for the multibyte character
2256 conversion functions used by the legacy menu code, and Cygwin
2257 never needs to rely on non-Unicode APIs.
2258
2259 * unexw32.c (hinst): Declare extern.
2260
2261 * w32.c: Change header order;
2262 (w32_strerror): Move to w32fns.c because we need it for
2263 non-WINDOWSNT builds.
2264
2265 * w32.h: Add #error macro to make sure we don't include w32.h for
2266 Cygwin builds. Remove w32select declarations.
2267
2268 * w32console.c (w32_sys_ring_bell, Fset_message_beep): Move to
2269 w32fns.c. w32console.c is WINDOWSNT-only.
2270
2271 * w32fns.c: Include cygw32.h or w32.h depending on CYGWIN; more
2272 NTGUI_UNICODE tweaks. (See above.) Change _snprintf to the more
2273 POSIXy alternative.
2274 (faked_key, sysinfo_cache, osinfo_cahce, syspage_mask)
2275 (w32_major_version, w32_minor_version, w32_build_number)
2276 (os_subtype, sound_type): Define here
2277 (w32_defined_color): Make color parameter const for consistency
2278 with other _defined_color functions.
2279 (w32_createwindow): Unconditionally call w32_init_class instead of
2280 doing so only when hprevinst is non-NULL. Plumbing hprevinst
2281 through the code is complex and unnecessary because class
2282 registration is practically free.
2283 (w32_name_of_message): New EMACSDEBUG-only function.
2284 (Fset_message_beep): Move here
2285 (Fx_open_connection): Require that the display name for Windows be
2286 "w32" for consistency, emacsclient disambiguation, and maybe, one
2287 day, multi-window-system support.
2288 (file_dialog_callback): NTGUI_UNICODE changes; encode and decode
2289 Cygwin files for W32 GUI facilities, since these clearly don't
2290 expect Cygwin names.
2291 (_DebPrint): Define.
2292 (w32_strerror, w32_console_toggle_lock_key, w32_kbd_mods_to_emacs)
2293 (w32_kbd_patch_key, w32_sys_ring_bell): Move here.
2294 (Ssystem_move_file_to_trash): Define only for native WINDOWSNT.
2295 (w32_last_error): Remove.
2296
2297 * w32font.c: Define _strlwr to strlwr for non-WINDOWSNT builds.
2298
2299 * w32heap.c (syspage_mask): Declare here.
2300 (cache_system_info): Remove.
2301
2302 * w32inevt.c (faked_key): Define globally, not statically.
2303 (w32_kbd_mods_to_emacs, w32_kbd_patch_key, faked_key)
2304 (w32_console_toggle_lock_key): Move to w32fns.c.
2305
2306 * w32menu.c: Include setjmp.h. NTGUI_UNICODE changes throughout.
2307
2308 * w32proc.c (_DebPrint): Move to w32fns.c.
2309 * w32select.c: Include string.h, stdio.h for Cygwin.
2310 * w32select.h: New File.
2311
2312 * w32term.c: Include io.h for non-CYGWIN builds; needed for
2313 get_osfhandle.
2314 (w32_message_fd): New variable. Under Cygwin, holds the file
2315 descriptor the system used to tell us about pending thread
2316 messages.
2317
2318 (w32_init_term): Remove incorrect calls to fcntl and init_sigio
2319 that prevented compilation under non-WINDOWSNT systems.
2320
2321 (w32_initialize): Open /dev/windows and assign it to
2322 w32_message_fd. Provide w32 feature.
2323
2324 * w32term.h: Include frame.h, atimer.h. Declare various frame functions.
2325 (WM_EMACS_INPUT_READY): add.
2326 (prepend_msg, w32_message_fd): Declare globally.
2327
2328 * w32xfns.c:
2329 (keyboard_handle): Use only when WINDOWSNT.
2330 (notify_msg_ready): New function. Posts a message to the main
2331 thread's message queue under CYGWIN, which wakes up the main
2332 thread from select(2) by making the /dev/windows file descriptor
2333 ready. Under WINDOWSNT, it sets an event the same way the old
2334 code did.
2335
2336 (post, prepend_msg): Actually call notify_msg_ready instead of
2337 setting the input event directly.
2338
2339 2012-10-07 Eli Zaretskii <eliz@gnu.org>
2340
2341 * ralloc.c (relinquish): If a heap is ready to be relinquished,
2342 but it still has blocs in it, don't return it to the system,
2343 instead of aborting. (Bug#12402)
2344
2345 2012-10-07 Jan Djärv <jan.h.d@swipnet.se>
2346
2347 * nsterm.m (ns_dumpglyphs_image): Only draw slice of image (Bug#12506).
2348
2349 * nsterm.m (ns_update_auto_hide_menu_bar): Remove defintion of
2350 MAC_OS_X_VERSION_10_6.
2351 (syms_of_nsterm): Remove comment about Panther and above for
2352 ns-antialias-text.
2353 * nsterm.h (MAC_OS_X_VERSION_10_3, onTiger): Remove.
2354 (EmacsApp): Remove check for >= MAC_OS_X_VERSION_10_4.
2355 (struct nsfont_info): Remove check for >= MAC_OS_X_VERSION_10_3.
2356
2357 * nsselect.m (ns_string_from_pasteboard): Remove check for >=
2358 MAC_OS_X_VERSION_10_4.
2359
2360 * nsmenu.m (fillWithWidgetValue:): Remove code for <
2361 MAC_OS_X_VERSION_10_2.
2362
2363 * nsimage.m (setPixmapData, getPixelAtX, setAlphaAtX): Remove onTiger.
2364
2365 * nsfns.m (Fns_list_services): Remove comment and check for OSX < 10.4.
2366 (ns_do_applescript): Remove check for >= MAC_OS_X_VERSION_10_4.
2367
2368 * nsterm.m (ns_in_resize): Remove (Bug#12479).
2369 (ns_resize_handle_rect, mouseDown, mouseUp, mouseDragged): Remove.
2370 (ns_clear_frame, sendEvent, windowDidResize, drawRect:):
2371 Remove ns_in_resize check.
2372 (ns_clear_frame_area): Remove resize handle code.
2373
2374 * nsfns.m (ns_in_resize): Remove.
2375 (x_set_icon_name, ns_set_name, ns_set_name_as_filename):
2376 Remove ns_in_resize check.
2377
2378 2012-10-07 Paul Eggert <eggert@cs.ucla.edu>
2379
2380 Improve sys_siglist detection.
2381 * sysdep.c (sys_siglist, init_signals): Use _sys_siglist if it's
2382 defined as a macro, as is done in Solaris.
2383 (sys_siglist_entries): New macro.
2384 (save_strsignal): Use it.
2385 * syssignal.h (safe_strsignal): Now ATTRIBUTE_CONST, to pacify
2386 GCC 4.7.2 on Fedora 17 with the fixed sys_siglist detection.
2387
2388 2012-10-06 Jan Djärv <jan.h.d@swipnet.se>
2389
2390 * nsfns.m (Fx_create_frame): Call x_default_parameter with
2391 fullscreen/Fullscreen.
2392
2393 * nsterm.h (EmacsView): Rename tbar_height to tibar_height.
2394 tobar_height is new.
2395
2396 * nsterm.m (x_make_frame_visible): Check for fullscreen.
2397 (ns_fullscreen_hook): Activate old style fullscreen with a timer.
2398 (ns_term_init): Set activateIgnoringOtherApps if old style fullscreen.
2399 (windowDidResize:): Check for correct window if old style fullscreen.
2400 Capitalize word in comment. Remove incorrect comment.
2401 (initFrameFromEmacs:): tbar_height renamed tibar_height.
2402 (windowDidEnterFullScreen:): Toggle toolbar for fullscreen to fix
2403 error in drawing background.
2404 (toggleFullScreen:): Remove comment. Rearrange calls.
2405 Set toolbar values to zero, save old height in tobar_height.
2406 Restore tool bar height when leaving fullscreen.
2407 (canBecomeMainWindow): New function.
2408
2409 2012-10-06 Paul Eggert <eggert@cs.ucla.edu>
2410
2411 * keyboard.c (read_char): Remove unnecessary 'volatile's and label.
2412
2413 2012-10-05 Eli Zaretskii <eliz@gnu.org>
2414
2415 * w32proc.c (stop_timer_thread): Fix declaration of 'err'.
2416
2417 * w32.c (utime): Open the file with FILE_FLAG_BACKUP_SEMANTICS, so
2418 that time stamps of directories could also be changed.
2419 Don't request the too broad GENERIC_WRITE, only the more restrictive
2420 FILE_WRITE_ATTRIBUTES access rights.
2421
2422 * fileio.c (Fset_file_times): Special-case ignoring errors for
2423 directories only on MSDOS, not on MS-Windows.
2424
2425 2012-10-05 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
2426
2427 * minibuf.c (Fcompleting_read): Doc fix. (Bug#12555)
2428
2429 2012-10-04 Eli Zaretskii <eliz@gnu.org>
2430
2431 * w32.c (utime): Test for INVALID_HANDLE_VALUE, not for NULL, to
2432 see whether CreateFile failed.
2433
2434 2012-10-04 Paul Eggert <eggert@cs.ucla.edu>
2435
2436 * profiler.c (handle_profiler_signal): Inhibit pending signals too,
2437 to avoid similar races.
2438 * keyboard.c (pending_signals): Now bool, not int.
2439
2440 Port timers to OpenBSD, plus check for timer failures.
2441 OpenBSD problem reported by Han Boetes.
2442 * profiler.c (setup_cpu_timer): Check for failure of timer_settime
2443 and/or setitimer.
2444 (Fprofiler_cpu_stop): Don't assume HAVE_SETITIMER.
2445 * syssignal.h (HAVE_ITIMERSPEC): New macro. This is for platforms
2446 like OpenBSD, which has timer_settime but does not declare it.
2447 OpenBSD does not define SIGEV_SIGNAL, so use that when deciding
2448 whether to use itimerspec-related primitives. All uses of
2449 HAVE_TIMER_SETTIME replaced with HAVE_ITIMERSPEC.
2450
2451 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
2452
2453 * profiler.c (handle_profiler_signal): Fix a malloc race
2454 that caused Emacs to hang on Fedora 17 when profiling Lisp.
2455
2456 2012-10-02 Jan Djärv <jan.h.d@swipnet.se>
2457
2458 * nsterm.m (windowDidEnterFullScreen): Remove fprintf.
2459
2460 2012-10-02 Eli Zaretskii <eliz@gnu.org>
2461
2462 * w32proc.c (sys_wait): Declare 'signame' 'const char *', to be
2463 consistent with the change in return value of 'safe_strsignal'.
2464
2465 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
2466
2467 Prefer plain 'static' to 'static inline' (Bug#12541).
2468 * bidi.c (bidi_get_type, bidi_check_type, bidi_get_category)
2469 (bidi_set_sor_type, bidi_push_embedding_level)
2470 (bidi_pop_embedding_level, bidi_remember_char, bidi_copy_it)
2471 (bidi_cache_reset, bidi_cache_shrink, bidi_cache_fetch_state)
2472 (bidi_cache_search, bidi_cache_ensure_space)
2473 (bidi_cache_iterator_state, bidi_cache_find)
2474 (bidi_peek_at_next_level, bidi_set_paragraph_end)
2475 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
2476 (bidi_explicit_dir_char, bidi_resolve_neutral_1):
2477 Now 'static', not 'static inline'.
2478
2479 Count overruns when profiling; change units to ns.
2480 * profiler.c (handle_profiler_signal): Count sampling intervals, not ms.
2481 Give extra weight to samples after overruns, to attempt to count
2482 the time more accurately.
2483 (setup_cpu_timer): Change sampling interval units from ms to ns, since
2484 the underlying primitives nominally do ns.
2485 (Fprofiler_cpu_start): Document the change. Mention that
2486 the sampling intervals are only approximate.
2487
2488 2012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
2489
2490 * frame.c (Fmake_terminal_frame): Prefer safer CONSP over !NILP.
2491
2492 * coding.h (ENCODE_FILE, DECODE_FILE, DECODE_SYSTEM): Remove special
2493 case for the special 0 coding-system.
2494
2495 * buffer.c (Fset_buffer_multibyte): Signal an error instead of widening.
2496 (Fmake_overlay): Remove redundant tests.
2497 (fix_start_end_in_overlays): Remove redundant recentering.
2498
2499 2012-10-02 Juanma Barranquero <lekktu@gmail.com>
2500
2501 * makefile.w32-in ($(BLD)/alloc.$(O), $(BLD)/gmalloc.$(O)):
2502 Update dependencies.
2503
2504 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
2505
2506 Fix a malloc race condition involving strsignal.
2507 A signal can arrive in the middle of a malloc, and Emacs's signal
2508 handler can invoke strsignal, which can invoke malloc, which is
2509 not portable. This race condition bug makes Emacs hang on GNU/Linux.
2510 Fix it by altering the signal handler so that it does not invoke
2511 strsignal.
2512 * emacs.c (shut_down_emacs): Use safe_strsignal, not strsignal.
2513 * process.c (status_message): Use const pointer, in case strsignal
2514 is #defined to safe_strsignal.
2515 * sysdep.c (sys_siglist, init_signals): Always define and
2516 initialize a substitute sys_siglist if the system does not define
2517 one, even if HAVE_STRSIGNAL.
2518 (safe_strsignal): Rename from strsignal. Always define,
2519 using sys_siglist. Return a const pointer.
2520 * syssignal.h (safe_strsignal): New decl.
2521 (strsignal) [!HAVE_STRSIGNAL]: Define in terms of safe_strsignal.
2522
2523 2012-10-01 Eli Zaretskii <eliz@gnu.org>
2524
2525 * w32proc.c (timer_loop): Fix code that waits for timer
2526 expiration, to avoid high CPU usage.
2527
2528 2012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
2529
2530 * fns.c (check_hash_table, get_key_arg, maybe_resize_hash_table)
2531 (sweep_weak_table): Remove redundant prototypes.
2532
2533 2012-10-01 Fabrice Popineau <fabrice.popineau@gmail.com>
2534
2535 * emacs.c: Move the inclusion of TERM_HEADER after including
2536 windows.h on WINDOWSNT. This avoids compilation problems with
2537 MSVC.
2538
2539 2012-10-01 Eli Zaretskii <eliz@gnu.org>
2540
2541 * unexw32.c (OFFSET_TO_RVA, RVA_TO_OFFSET)
2542 (RVA_TO_SECTION_OFFSET): Encode all macro arguments in parentheses.
2543 (RVA_TO_PTR): Cast the result of RVA_TO_OFFSET to 'unsigned char *',
2544 as the previous version used 'void *'.
2545
2546 * ralloc.c (ROUNDUP): Fix last change.
2547 (MEM_ROUNDUP): Don't cast MEM_ALIGN, it is already of type
2548 'size_t'.
2549
2550 * w32proc.c <disable_itimers>: New static flag.
2551 (init_timers): Initialize it to zero, after creating the critical
2552 sections used by the timer threads.
2553 (term_timers): Set to 1 before deleting the critical sections.
2554 (getitimer, setitimer): If disable_itimers is non-zero, return an
2555 error indication without doing anything. Reported by Fabrice
2556 Popineau <fabrice.popineau@supelec.fr> as part of bug#12544.
2557 (alarm) [HAVE_SETITIMER]: Be more conformant to the expected
2558 return results.
2559 [!HAVE_SETITIMER]: Behave as the previous version that didn't
2560 support timers.
2561
2562 * emacs.c (shut_down_emacs) [WINDOWSNT]: Move the call to
2563 term_ntproc after all the other bookkeeping, to get timers working
2564 as long as possible.
2565
2566 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
2567
2568 * xdisp.c (syms_of_xdisp): Default message-log-max to 1000, not 100.
2569 Suggested by Juri Linkov in
2570 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00821.html>.
2571
2572 Prefer plain 'static' to 'static inline' (Bug#12541).
2573 With static functions, modern compilers inline pretty well by
2574 themselves; advice from programmers often hurts as much as it helps.
2575 On my host (x86-64, Fedora 17, GCC 4.7.2, default 'configure'),
2576 this change shrinks the text size of the Emacs executable by 1.1%
2577 without affecting CPU significantly in my benchmark.
2578 * alloc.c (mem_find, live_string_p, live_cons_p, live_symbol_p)
2579 (live_float_p, live_misc_p, live_vector_p, live_buffer_p)
2580 (mark_maybe_object, mark_maybe_pointer, bounded_number):
2581 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
2582 (bset_auto_fill_function, bset_auto_save_file_format)
2583 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
2584 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
2585 (bset_cache_long_line_scans, bset_case_fold_search)
2586 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
2587 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
2588 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
2589 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
2590 (bset_header_line_format, bset_indicate_buffer_boundaries)
2591 (bset_indicate_empty_lines, bset_invisibility_spec)
2592 (bset_left_fringe_width, bset_major_mode, bset_mark)
2593 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
2594 (bset_name, bset_overwrite_mode, bset_pt_marker)
2595 (bset_right_fringe_width, bset_save_length)
2596 (bset_scroll_bar_width, bset_scroll_down_aggressively)
2597 (bset_scroll_up_aggressively, bset_selective_display)
2598 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
2599 (bset_word_wrap, bset_zv_marker, set_buffer_overlays_before)
2600 (set_buffer_overlays_after):
2601 * category.c (bset_category_table):
2602 * charset.c (read_hex):
2603 * coding.c (produce_composition, produce_charset)
2604 (handle_composition_annotation, handle_charset_annotation)
2605 (char_encodable_p):
2606 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers)
2607 (assign_row, set_frame_matrix_frame, make_current)
2608 (add_row_entry):
2609 * eval.c (set_specpdl_symbol, set_specpdl_old_value):
2610 * fns.c (maybe_resize_hash_table):
2611 * frame.c (fset_buffer_predicate, fset_minibuffer_window):
2612 * gmalloc.c (register_heapinfo):
2613 * image.c (lookup_image_type):
2614 * intervals.c (set_interval_object, set_interval_left)
2615 (set_interval_right, copy_interval_parent, rotate_right)
2616 (rotate_left, balance_possible_root_interval):
2617 * keyboard.c (kset_echo_string, kset_kbd_queue)
2618 (kset_keyboard_translate_table, kset_last_prefix_arg)
2619 (kset_last_repeatable_command, kset_local_function_key_map)
2620 (kset_overriding_terminal_local_map, kset_real_last_command)
2621 (kset_system_key_syms, clear_event, set_prop):
2622 * lread.c (digit_to_number):
2623 * marker.c (attach_marker, live_buffer, set_marker_internal):
2624 * nsterm.m (ns_compute_glyph_string_overhangs):
2625 * process.c (pset_buffer, pset_command)
2626 (pset_decode_coding_system, pset_decoding_buf)
2627 (pset_encode_coding_system, pset_encoding_buf, pset_filter)
2628 (pset_log, pset_mark, pset_name, pset_plist, pset_sentinel)
2629 (pset_status, pset_tty_name, pset_type, pset_write_queue):
2630 * syntax.c (bset_syntax_table, dec_bytepos):
2631 * terminal.c (tset_param_alist):
2632 * textprop.c (interval_has_some_properties)
2633 (interval_has_some_properties_list):
2634 * window.c (wset_combination_limit, wset_dedicated)
2635 (wset_display_table, wset_hchild, wset_left_fringe_width)
2636 (wset_left_margin_cols, wset_new_normal, wset_new_total)
2637 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
2638 (wset_right_fringe_width, wset_right_margin_cols)
2639 (wset_scroll_bar_width, wset_start, wset_temslot, wset_vchild)
2640 (wset_vertical_scroll_bar_type, wset_window_parameters):
2641 * xdisp.c (wset_base_line_number, wset_base_line_pos)
2642 (wset_column_number_displayed, wset_region_showing)
2643 (window_box_edges, run_window_scroll_functions)
2644 (append_glyph_string_lists, prepend_glyph_string_lists)
2645 (append_glyph_string, set_glyph_string_background_width)
2646 (append_glyph, append_composite_glyph)
2647 (take_vertical_position_into_account):
2648 * xfaces.c (x_create_gc, x_free_gc, merge_face_vectors)
2649 (face_attr_equal_p, lface_equal_p, hash_string_case_insensitive)
2650 (lface_hash, lface_same_font_attributes_p, lookup_face):
2651 * xml.c (libxml2_loaded_p):
2652 * xterm.c (x_set_mode_line_face_gc, x_set_glyph_string_gc)
2653 (x_set_glyph_string_clipping, x_clear_glyph_string_rect):
2654 Now 'static', not 'static inline'.
2655
2656 * bidi.c: Tune.
2657 (bidi_copy_it): Do the whole copy with a single memcpy.
2658 (bidi_char_at_pos): Merge the two STRING_CHAR calls into one.
2659
2660 Revert the FOLLOW-SYMLINKS change for file-attributes.
2661 Doing it right would require several changes to Tramp, and there's
2662 not enough time to get that tested before the freeze today.
2663 * dired.c (directory_files_internal, Ffile_attributes):
2664 Undo last change.
2665
2666 * frame.c (x_report_frame_params): Port better to wider ints.
2667 Do not assume that EMACS_UINT is the same width as uprintmax_t,
2668 or that pointers can be printed in 15 decimal digits.
2669 Avoid GCC warnings if EMACS_UINT is wider than a pointer.
2670
2671 2012-09-30 Fabrice Popineau <fabrice.popineau@supelec.fr>
2672
2673 Support x64 build on MS-Windows.
2674 * w32term.h (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK): Define for x64.
2675 (SET_SCROLL_BAR_W32_WINDOW): Cast ID to intptr_t, for
2676 compatibility with x64.
2677 (x_get_focus_frame): Add prototype.
2678
2679 * w32term.c (w32_draw_underwave): Don't use GCC extensions for
2680 defining an XRectangle structure.
2681
2682 * w32proc.c (RVA_TO_PTR, w32_executable_type): Fix pointer
2683 arithmetics for compatibility with x64.
2684
2685 * w32menu.c (add_menu_item): Use UINT_PTR instead of UINT, for
2686 compatibility with x64.
2687
2688 * w32heap.h: Adjust prototypes and declarations.
2689
2690 * w32heap.c (RVA_TO_PTR, allocate_heap, sbrk, init_heap)
2691 (round_heap): Use DWORD_PTR, ptrdiff_t and size_t instead of
2692 DWORD, long, and unsigned long, for compatibility with x64.
2693 (allocate_heap) [_WIN64]: Reserve 32GB of memory.
2694 (sbrk): Argument is now of type ptrdiff_t.
2695
2696 * w32fns.c (HMONITOR): Condition declaration on _WIN32_WINNT being
2697 less than 0x0500.
2698 (w32_msg_pump): Use WPARAM type for 'result'.
2699
2700 * w32.c (init_environment, get_emacs_configuration): Support AMD64
2701 architecture.
2702 (init_ntproc): Cast arguments of _open_osfhandle to intptr_t, for
2703 compatibility with x64.
2704
2705 * vm-limit.c (lim_data): Now size_t.
2706 (check_memory_limits): Adjust prototypes of real_morecore and
2707 __morecore to receive argument of type ptrdiff_t. Use size_t for
2708 five_percent and data_size.
2709
2710 * unexw32.c: Use DWORD_PTR instead of DWORD for file-scope
2711 variables, for compatibility with x64.
2712 (rva_to_section, offset_to_section, relocate_offset)
2713 (OFFSET_TO_RVA, RVA_TO_OFFSET, RVA_TO_SECTION_OFFSET)
2714 (PTR_TO_RVA, RVA_TO_PTR, OFFSET_TO_PTR, get_section_info)
2715 (copy_executable_and_dump_data): Use DWORD_PTR instead of DWORD
2716 for compatibility with x64.
2717
2718 * sysdep.c (STDERR_FILENO): Define if not already defined.
2719
2720 * ralloc.c (real_morecore): Argument type is now ptrdiff_t.
2721 (__morecore): Argument type is now ptrdiff_t.
2722 (ROUNDUP, MEM_ROUNDUP): Use size_t instead of 'unsigned long'.
2723 (relinquish): Use ptrdiff_t type for 'excess'.
2724 (r_alloc_sbrk): Argument type is now ptrdiff_t.
2725
2726 * makefile.w32-in (HEAPSIZE): Get value from EMACS_HEAPSIZE.
2727 (bootstrap-temacs-CMD, bootstrap-temacs-SH): Use $(EMACS_PURESIZE)
2728 instead of a literal number.
2729
2730 * gmalloc.c [WINDOWSNT]: Include w32heap.h.
2731 (min): Define only if not already defined.
2732
2733 * frame.c (x_report_frame_params): Use EMACS_UINT for the return
2734 value of FRAME_X_WINDOW, to fit a 64-bit pointer on 64-bit Windows
2735 hosts.
2736
2737 * image.c (x_bitmap_pixmap): Return ptrdiff_t, not int, since
2738 'bitmaps' is a pointer.
2739
2740 * dispextern.h (x_bitmap_pixmap): Adjust prototype.
2741
2742 * alloc.c (gdb_make_enums_visible): Now conditional on __GNUC__.
2743
2744 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
2745
2746 file-attributes has a new optional arg FOLLOW-SYMLINKS.
2747 * dired.c (directory_files_internal, Ffile_attributes):
2748 New arg follow_symlinks. All uses changed.
2749
2750 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
2751
2752 * .gdbinit (xbacktrace): Adjust to recent "struct backtrace" change.
2753
2754 2012-09-30 Eli Zaretskii <eliz@gnu.org>
2755
2756 Support atimers and CPU profiler via profile.c on MS-Windows.
2757 * w32proc.c (sig_mask, crit_sig): New static variables.
2758 (sys_signal): Support SIGALRM and SIGPROF.
2759 (sigemptyset, sigaddset, sigfillset, sigprocmask)
2760 (pthread_sigmask, setpgrp): Move here from w32.c. sigaddset,
2761 sigfillset, and sigprocmask are no longer no-ops.
2762 (sigismember): New function.
2763 (struct itimer_data): New definition.
2764 (ticks_now, real_itimer, prof_itimer, clocks_min, crit_real)
2765 (crit_prof): New static variables.
2766 (MAX_SINGLE_SLEEP): New definition.
2767 (timer_loop, stop_timer_thread, term_timers, init_timers)
2768 (start_timer_thread, getitimer, setitimer): New functions.
2769 (alarm): No longer a no-op, calls setitimer.
2770
2771 * w32.c (term_ntproc): Call term_timers.
2772 (init_ntproc): Make sure all signals are unblocked at startup, to
2773 erase any traces of dumping. Call init_timers.
2774
2775 * w32fns.c (hourglass_timer, HOURGLASS_ID): Remove.
2776 Windows-specific code to display the hourglass mouse pointer is no
2777 longer used.
2778 (w32_wnd_proc): Remove code that handled the WM_TIMER message due
2779 to hourglass timer expiration.
2780 (start_hourglass, cancel_hourglass, DEFAULT_HOURGLASS_DELAY):
2781 Remove, no longer used.
2782 (w32_note_current_window, show_hourglass, hide_hourglass):
2783 New functions, in support of hourglass cursor display similar to other
2784 window systems.
2785 (syms_of_w32fns): Don't initialize hourglass_timer.
2786
2787 * xdisp.c (start_hourglass, cancel_hourglass): Now used on
2788 WINDOWSNT as well.
2789 (start_hourglass) [WINDOWSNT]: Call w32_note_current_window.
2790
2791 * w32.h (init_timers, term_timers): Add prototypes.
2792
2793 2012-09-30 Kenichi Handa <handa@gnu.org>
2794
2795 * coding.c (decode_coding_ccl, encode_coding_ccl): Pay attention
2796 to the buffer relocation which may be caused by ccl_driver.
2797
2798 2012-09-30 Jan Djärv <jan.h.d@swipnet.se>
2799
2800 * xfns.c (Fx_file_dialog): Update comment.
2801
2802 * w32fns.c (Fx_file_dialog): Update comment.
2803
2804 * nsfns.m (Fns_read_file_name): Add argument DIR_ONLY_P.
2805 Initialize panel name field if OSX >= 10.6.
2806
2807 * fileio.c (Fnext_read_file_uses_dialog_p): Add HAVE_NS.
2808
2809 * nsfns.m (ns_frame_parm_handlers): Add x_set_fullscreen.
2810
2811 * nsterm.m (NEW_STYLE_FS): New define.
2812 (ns_fullscreen_hook, windowWillEnterFullScreen)
2813 (windowDidEnterFullScreen, windowWillExitFullScreen)
2814 (windowDidExitFullScreen, toggleFullScreen, handleFS)
2815 (setFSValue): New functions.
2816 (EmacsFSWindow): New implementation.
2817 (canBecomeKeyWindow): New function for EmacsFSWindow.
2818 (ns_create_terminal): Set fullscreen_hook to ns_fullscreen_hook.
2819 (dealloc): Release nonfs_window if in fullscreen.
2820 (updateFrameSize:): Call windowDidMove to update top/left.
2821 (windowWillResize:toSize:): Check if frame is still maximized.
2822 (initFrameFromEmacs:): Initialize fs_state, fs_before_fs,
2823 next_maximized, maximized_width, maximized_height and nonfs_window.
2824 Call setCollectionBehavior if NEW_STYLE_FS. Initialize bwidth and
2825 tbar_height.
2826 (windowWillUseStandardFrame:defaultFrame:): Update frame parameter
2827 fullscreen. Set maximized_width/height. Act on next_maximized.
2828
2829 * nsterm.h (MAC_OS_X_VERSION_10_7, MAC_OS_X_VERSION_10_8): New.
2830 (EmacsView): Add variables for fullscreen.
2831 (handleFS, setFSValue, toggleFullScreen): New in EmacsView.
2832 (EmacsFSWindow): New interface for fullscreen.
2833
2834 2012-09-30 Juanma Barranquero <lekktu@gmail.com>
2835
2836 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
2837
2838 2012-09-30 Chong Yidong <cyd@gnu.org>
2839
2840 * fns.c (Frandom): Doc fix.
2841
2842 2012-09-30 Martin Rudalics <rudalics@gmx.at>
2843
2844 * window.c (Vwindow_combination_limit): New default value.
2845 (Qwindow_size): New symbol replacing Qtemp_buffer_resize.
2846
2847 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
2848
2849 * syssignal.h (PROFILER_CPU_SUPPORT): Don't define if PROFILING.
2850 Suggested by Eli Zaretskii in
2851 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00811.html>.
2852
2853 2012-09-30 Eli Zaretskii <eliz@gnu.org>
2854
2855 * profiler.c (Fprofiler_cpu_stop): Use timer_settime only if
2856 HAVE_TIMER_SETTIME is defined.
2857
2858 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
2859
2860 Profiler improvements: more-accurate timers, overflow checks.
2861 * profiler.c: Don't include stdio.h, limits.h, sys/time.h,
2862 signal.h, setjmp.h. Include systime.h instead.
2863 (saturated_add): New function.
2864 (record_backtrace, current_sample_interval): Use EMACS_INT, not size_t.
2865 (record_backtrace, handle_profiler_signal): Saturate on fixnum overflow.
2866 (profiler_timer, profiler_timer_ok) [HAVE_TIMER_SETTIME]:
2867 New static vars.
2868 (enum profiler_cpu_running): New enum.
2869 (profiler_cpu_running): Now of that enum type, not bool.
2870 All uses changed to store the new value.
2871 (handle_profiler_signal): Rename from sigprof_handler_1,
2872 for consistency with other handlers. Do not check whether
2873 cpu_log is a hash-table if garbage collecting, since it
2874 doesn't matter in that case.
2875 (deliver_profiler_signal): Rename from sigprof_handler,
2876 for consistency with other handlers.
2877 (setup_cpu_timer): New function, with much of what used to be in
2878 Fprofiler_cpu_start. Check for out-of-range argument.
2879 Prefer timer_settime if available, and prefer
2880 thread cputime clocks, then process cputime clocks, then
2881 monotonic clocks, to the old realtime clock. Use make_timeval
2882 to round more-correctly when falling back to setitimer.
2883 (Fprofiler_cpu_start): Use it.
2884 (Fprofiler_cpu_stop): Prefer timer_settime if available.
2885 Don't assume that passing NULL as the 2nd argument of setitimer
2886 is the same as passing a pointer to all-zero storage.
2887 Ignore SIGPROF afterwards.
2888 (malloc_probe): Saturate at MOST_POSITIVE_FIXNUM.
2889 * sysdep.c (emacs_sigaction_init): Also mask out SIGPROF in
2890 non-fatal signal handlers. Ignore SIGPROF on startup.
2891 * syssignal.h (PROFILER_CPU_SUPPORT): Define this macro here, not
2892 in profiler.c, since sysdep.c now uses it.
2893
2894 * sysdep.c (handle_fatal_signal): Bump backtrace size to 40.
2895 Suggested by Eli Zaretskii in
2896 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00796.html>.
2897
2898 2012-09-29 Juanma Barranquero <lekktu@gmail.com>
2899
2900 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
2901
2902 2012-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
2903
2904 * lisp.h (struct backtrace): Remove indirection for `function' field.
2905 * xdisp.c (redisplay_internal):
2906 * profiler.c (record_backtrace, sigprof_handler_1):
2907 * alloc.c (Fgarbage_collect):
2908 * eval.c (interactive_p, Fsignal, eval_sub, Ffuncall, Fbacktrace)
2909 (Fbacktrace_frame): Adjust accordingly.
2910
2911 2012-09-28 Glenn Morris <rgm@gnu.org>
2912
2913 * eval.c (Frun_hook_with_args, Frun_hook_with_args_until_success)
2914 (Frun_hook_with_args_until_failure): Doc fixes.
2915
2916 2012-09-28 Eli Zaretskii <eliz@gnu.org>
2917
2918 * xdisp.c (syms_of_xdisp) <Qredisplay_internal>: Rename from
2919 Qautomatic_redisplay and change the symbol name. All users changed.
2920
2921 2012-09-28 Tomohiro Matsuyama <tomo@cx4a.org>
2922
2923 * profiler.c (sigprof_handler): Fix race condition.
2924
2925 2012-09-28 Glenn Morris <rgm@gnu.org>
2926
2927 * lread.c (lisp_file_lexically_bound_p): Handle #! lines. (Bug#12528)
2928
2929 2012-09-27 Paul Eggert <eggert@cs.ucla.edu>
2930
2931 Check more robustly for timer_settime.
2932 * Makefile.in (LIB_TIMER_TIME): New macro.
2933 (LIBES): Add it.
2934 * atimer.c (alarm_timer, alarm_timer_ok, set_alarm, init_atimer):
2935 Use HAVE_TIMER_SETTIME, not SIGEV_SIGNAL, to decide whether to
2936 call timer_settime.
2937
2938 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
2939
2940 * profiler.c (Fprofiler_cpu_start): Remove unnecessary flag SA_SIGINFO.
2941
2942 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
2943
2944 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
2945
2946 2012-09-26 Paul Eggert <eggert@cs.ucla.edu>
2947
2948 * character.h (MAYBE_UNIFY_CHAR): Remove.
2949 * charset.c, charset.h (maybe_unify_char): Now static.
2950 * charset.c (decode_char): Use maybe_unify_char, not MAYBE_UNIFY_CHAR.
2951 Since this stuff is now private to charset.c, there's no need for
2952 a public macro and no need to inline by hand.
2953
2954 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
2955 Stefan Monnier <monnier@iro.umontreal.ca>
2956 Juanma Barranquero <lekktu@gmail.com>
2957
2958 * profiler.c: New file.
2959 * Makefile.in (base_obj): Add profiler.o.
2960 * makefile.w32-in (OBJ2, GLOBAL_SOURCES): Add profiler.c.
2961 ($(BLD)/profiler.$(O)): New target.
2962 * emacs.c (main): Call syms_of_profiler.
2963 * alloc.c (Qautomatic_gc): New constant.
2964 (MALLOC_PROBE): New macro.
2965 (xmalloc, xzalloc, xrealloc, lisp_malloc, lisp_align_malloc): Use it.
2966 (total_bytes_of_live_objects): New function.
2967 (Fgarbage_collect): Use it. Record itself in backtrace_list.
2968 Call malloc_probe for the memory profiler.
2969 (syms_of_alloc): Define Qautomatic_gc.
2970 * eval.c (eval_sub, Ffuncall): Reorder assignments to avoid
2971 race condition.
2972 (struct backtrace): Move definition...
2973 * lisp.h (struct backtrace): ..here.
2974 (Qautomatic_gc, profiler_memory_running): Declare vars.
2975 (malloc_probe, syms_of_profiler): Declare functions.
2976 * xdisp.c (Qautomatic_redisplay): New constant.
2977 (redisplay_internal): Record itself in backtrace_list.
2978 (syms_of_xdisp): Define Qautomatic_redisplay.
2979
2980 2012-09-25 Eli Zaretskii <eliz@gnu.org>
2981 2012-09-25 Juanma Barranquero <lekktu@gmail.com>
2982
2983 * makefile.w32-in ($(BLD)/callproc.$(O)): Update dependencies.
2984
2985 2012-09-25 Paul Eggert <eggert@cs.ucla.edu>
2986
2987 Prefer POSIX timers if available.
2988 They avoid a race if the timer is too close to the current time.
2989 * atimer.c (alarm_timer, alarm_timer_ok) [SIGEV_SIGNAL]: New static vars.
2990 (set_alarm) [SIGEV_SIGNAL]: Use POSIX timers if available.
2991 (init_atimer) [SIGEV_SIGNAL]: Initialize them.
2992
2993 2012-09-25 Eli Zaretskii <eliz@gnu.org>
2994
2995 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY): Make it an alias of
2996 CHAR_STRING_ADVANCE.
2997 (STRING_CHAR_ADVANCE_NO_UNIFY): Make it an alias of
2998 STRING_CHAR_ADVANCE.
2999
3000 2012-09-25 Juanma Barranquero <lekktu@gmail.com>
3001
3002 Move Vlibrary_cache to emacs.c and reset before dumping.
3003
3004 * lisp.h (reset_image_types): Declare.
3005 [WINDOWSNT] (Vlibrary_cache): Declare.
3006
3007 * image.c (reset_image_types): New function.
3008
3009 * emacs.c [WINDOWSNT] (Vlibrary_cache): Move from w32.c.
3010 (syms_of_emacs) [WINDOWSNT] <Vlibrary_cache>: Initialize and staticpro.
3011 (Fdump_emacs): Reset Vlibrary_cache and image_types.
3012
3013 * w32.c (Vlibrary_cache): Do not define; moved to emacs.c
3014 (globals_of_w32) <Vlibrary_cache>: Do not initialize.
3015
3016 * w32.h (Vlibrary_cache): Do not declare.
3017
3018 2012-09-25 Eli Zaretskii <eliz@gnu.org>
3019
3020 * w32proc.c (sys_signal): Handle all signals defined by the
3021 MS-Windows runtime, not just SIGCHLD. Actually install the signal
3022 handlers for signals supported by Windows. Don't override
3023 term_ntproc as the handler for SIGABRT.
3024 (sigaction): Rewrite to call sys_signal instead of duplicating its
3025 code.
3026 (sys_kill): Improve commentary.
3027
3028 * w32.c (term_ntproc): Accept (and ignore) one argument, for
3029 consistency with a signature of a signal handler. All callers
3030 changed.
3031 (init_ntproc): Accept an argument DUMPING. If dumping, don't
3032 install term_ntproc as a signal handler for SIGABRT, as that
3033 should be done by the dumped Emacs.
3034
3035 * w32.h (init_ntproc, term_ntproc): Adjust prototypes.
3036
3037 * w32select.c (term_w32select): Protect against repeated
3038 invocation by setting clipboard_owner to NULL after calling
3039 DestroyWindow.
3040
3041 * emacs.c (shut_down_emacs, main): Adapt the calls to init_ntproc
3042 and term_ntproc to their modified signatures.
3043
3044 * character.c (char_string, string_char): Remove calls to
3045 MAYBE_UNIFY_CHAR. See the discussion starting at
3046 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00433.html
3047 for the details.
3048
3049 2012-09-25 Chong Yidong <cyd@gnu.org>
3050
3051 * xdisp.c (mode_line_inverse_video): Delete obsolete variable.
3052
3053 2012-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
3054
3055 * bytecode.c (exec_byte_code): Signal an error instead of aborting,
3056 when encountering an unknown bytecode.
3057
3058 2012-09-24 Paul Eggert <eggert@cs.ucla.edu>
3059
3060 image.c, indent.c: Use bool for booleans.
3061 * dispextern.h (struct image_type): Members valid_p, load, init
3062 now return bool, not int. All uses changed.
3063 * image.c: Omit unnecessary static decls.
3064 (x_create_bitmap_mask, x_build_heuristic_mask):
3065 Return void, not int, since callers don't care about the return value.
3066 (x_create_bitmap_mask, define_image_type, valid_image_p)
3067 (struct image_keyword, parse_image_spec, image_spec_value)
3068 (check_image_size, image_background)
3069 (image_background_transparent, x_clear_image_1)
3070 (postprocess_image, lookup_image, x_check_image_size)
3071 (x_create_x_image_and_pixmap, xbm_image_p)
3072 (Create_Pixmap_From_Bitmap_Data, xbm_read_bitmap_data)
3073 (xbm_load_image, xbm_file_p, xbm_load, xpm_lookup_color)
3074 (init_xpm_functions, xpm_valid_color_symbols_p, xpm_image_p)
3075 (xpm_load, xpm_load_image, lookup_rgb_color, lookup_pixel_color)
3076 (x_to_xcolors, x_build_heuristic_mask, pbm_image_p, pbm_load)
3077 (png_image_p, init_png_functions, png_load_body, png_load)
3078 (jpeg_image_p, init_jpeg_functions, jpeg_load_body, jpeg_load)
3079 (tiff_image_p, init_tiff_functions, tiff_load, gif_image_p)
3080 (init_gif_functions, gif_load, imagemagick_image_p)
3081 (imagemagick_load_image, imagemagick_load, svg_image_p)
3082 (init_svg_functions, svg_load, svg_load_image, gs_image_p)
3083 (gs_load):
3084 * nsimage.m (ns_load_image):
3085 * nsterm.m (ns_defined_color):
3086 * xfaces.c (tty_lookup_color, tty_defined_color, defined_color):
3087 * xfns.c (x_defined_color):
3088 * xterm.c (x_alloc_lighter_color_for_widget)
3089 (x_alloc_nearest_color_1, x_alloc_nearest_color)
3090 (x_alloc_lighter_color):
3091 * indent.c (disptab_matches_widthtab, current_column)
3092 (scan_for_column, string_display_width, indented_beyond_p)
3093 (compute_motion, vmotion, Fvertical_motion):
3094 Use bool for booleans.
3095
3096 2012-09-24 Chong Yidong <cyd@gnu.org>
3097
3098 * chartab.c (Fset_char_table_default): Obsolete function removed.
3099
3100 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
3101
3102 Move pid_t related decls out of lisp.h.
3103 * lisp.h, syswait.h (record_child_status_change, wait_for_termination)
3104 (interruptible_wait_for_termination):
3105 Move these decls from lisp.h to syswait.h, since they use pid_t.
3106 Needed on FreeBSD; see Herbert J. Skuhra in
3107 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00571.html>.
3108 * callproc.c: Include syswait.h.
3109
3110 gnutls.c, gtkutil.c: Use bool for boolean.
3111 * gnutls.c (gnutls_global_initialized, init_gnutls_functions)
3112 (emacs_gnutls_handle_error):
3113 * gtkutil.c (xg_check_special_colors, xg_prepare_tooltip)
3114 (xg_hide_tooltip, xg_create_frame_widgets)
3115 (create_dialog, xg_uses_old_file_dialog)
3116 (xg_get_file_with_chooser, xg_get_file_with_selection)
3117 (xg_get_file_name, xg_have_tear_offs, create_menus, xg_create_widget)
3118 (xg_item_label_same_p, xg_update_menubar)
3119 (xg_modify_menubar_widgets, xg_event_is_for_menubar)
3120 (xg_ignore_gtk_scrollbar, xg_set_toolkit_scroll_bar_thumb)
3121 (xg_event_is_for_scrollbar, xg_pack_tool_bar, xg_make_tool_item)
3122 (is_box_type, xg_tool_item_stale_p, xg_update_tool_bar_sizes)
3123 (update_frame_tool_bar, free_frame_tool_bar):
3124 * gtkutil.c, w32term.c, xterm.c (x_wm_set_size_hint):
3125 * nsmenu.m (ns_update_menubar):
3126 * nsmenu.m, w32menu.c, xmenu.c (set_frame_menubar):
3127 * xfns.c (Fx_show_tip) [USE_GTK]:
3128 Use bool for boolean.
3129 * gtkutil.c (xg_update_frame_menubar):
3130 * xmenu.c (update_frame_menubar):
3131 Return void, not int, since caller ignores return value.
3132 * gtkutil.c (xg_change_toolbar_position):
3133 Return void, not 1.
3134
3135 2012-09-23 Juanma Barranquero <lekktu@gmail.com>
3136
3137 * makefile.w32-in (BLOCKINPUT_H): Remove.
3138 (SYSSIGNAL_H): New macro.
3139 ($(BLD)/alloc.$(O), $(BLD)/atimer.$(O), $(BLD)/buffer.$(O))
3140 ($(BLD)/callproc.$(O), $(BLD)/data.$(O), $(BLD)/dired.$(O))
3141 ($(BLD)/dispnew.$(O), $(BLD)/editfns.$(O), $(BLD)/emacs.$(O))
3142 ($(BLD)/eval.$(O), $(BLD)/fileio.$(O), $(BLD)/floatfns.$(O))
3143 ($(BLD)/fns.$(O), $(BLD)/fontset.$(O), $(BLD)/frame.$(O))
3144 ($(BLD)/fringe.$(O), $(BLD)/image.$(O), $(BLD)/insdel.$(O))
3145 ($(BLD)/keyboard.$(O), $(BLD)/keymap.$(O), $(BLD)/lread.$(O))
3146 ($(BLD)/menu.$(O), $(BLD)/w32inevt.$(O), $(BLD)/w32proc.$(O))
3147 ($(BLD)/print.$(O), $(BLD)/process.$(O), $(BLD)/ralloc.$(O))
3148 ($(BLD)/search.$(O), $(BLD)/sound.$(O), $(BLD)/sysdep.$(O))
3149 ($(BLD)/term.$(O), $(BLD)/window.$(O), $(BLD)/xdisp.$(O))
3150 ($(BLD)/xfaces.$(O), $(BLD)/w32fns.$(O), $(BLD)/w32menu.$(O))
3151 ($(BLD)/w32term.$(O), $(BLD)/w32select.$(O), $(BLD)/w32reg.$(O))
3152 ($(BLD)/w32xfns.$(O)): Update dependencies.
3153
3154 2012-09-23 Eli Zaretskii <eliz@gnu.org>
3155
3156 * .gdbinit: Set breakpoint on terminate_due_to_signal, not on
3157 fatal_error_backtrace.
3158
3159 * w32proc.c (sys_kill): Undo last change: don't do anything when
3160 invoked to deliver SIGABRT to our own process. This is now
3161 handled by emacs_raise.
3162
3163 2012-09-23 Juanma Barranquero <lekktu@gmail.com>
3164
3165 * w32term.c (w32_read_socket): Remove leftover reference to
3166 interrupt_input_pending.
3167
3168 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
3169
3170 Do not use SA_NODEFER.
3171 Problem reported by Dani Moncayo in
3172 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00557.html>.
3173 * alloc.c (die):
3174 * sysdep.c (emacs_abort): Do not reset signal handler.
3175 * emacs.c (terminate_due_to_signal): Reset signal handler here.
3176 * sysdep.c (init_signals): Do not use SA_NODEFER. It wasn't
3177 wanted even on POSIXish hosts, and it doesn't work on Windows.
3178
3179 2012-09-23 Jan Djärv <jan.h.d@swipnet.se>
3180
3181 * xterm.c (x_term_init): Call fixup_locale before and after calling
3182 gtk_init (Bug#12392).
3183
3184 2012-09-23 Chong Yidong <cyd@gnu.org>
3185
3186 * w32.c (w32_delayed_load): Remove LIBRARIES argument; always use
3187 Vdynamic_library_alist.
3188
3189 * gnutls.c (init_gnutls_functions): Caller changed; remove arg.
3190 (Fgnutls_available_p): Caller changed.
3191
3192 * xml.c (init_libxml2_functions, Flibxml_parse_html_region)
3193 (Flibxml_parse_xml_region): Likewise.
3194
3195 * dispextern.h (struct image_type): Remove arg from init function.
3196
3197 * image.c (Finit_image_library, lookup_image_type)
3198 (define_image_type): Remove now-unneeded second arg.
3199 (init_xpm_functions, init_png_functions, init_jpeg_functions)
3200 (init_tiff_functions, init_gif_functions, init_svg_functions):
3201 Arglist and w32_delayed_load calling convention changed.
3202 (gs_type): Remove init_gs_functions; there is no such function.
3203 (valid_image_p, make_image): Fix caller to lookup_image_type.
3204
3205 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
3206
3207 Simplify and avoid signal-handling races (Bug#12471).
3208 * alloc.c (die):
3209 * sysdep.c (emacs_abort) [HAVE_NTGUI]:
3210 Avoid recursive loop if there's a fatal error in the function itself.
3211 * atimer.c (pending_atimers):
3212 * blockinput.h: Don't include "atimer.h"; no longer needed.
3213 (interrupt_input_pending): Remove. All uses removed.
3214 pending_signals now counts both atimers and ordinary interrupts.
3215 This is less racy than having three separate pending-signal flags.
3216 (block_input, unblock_input, totally_unblock_input, unblock_input_to)
3217 (input_blocked_p):
3218 Rename from their upper-case counterparts BLOCK_INPUT,
3219 UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT, UNBLOCK_INPUT_TO,
3220 INPUT_BLOCKED_P, and turn into functions. All uses changed.
3221 This makes it easier to access volatile variables more accurately.
3222 (BLOCK_INPUT_RESIGNAL): Remove. All uses replaced by unblock_input ().
3223 (input_blocked_p): Prefer this to 'interrupt_input_blocked', as
3224 that's more reliable if the code is buggy and sets
3225 interrupt_input_blocked to a negative value. All uses changed.
3226 * atimer.c (deliver_alarm_signal):
3227 Remove. No need to deliver this to the parent; any thread can
3228 handle this signal now. All uses replaced by underlying handler.
3229 * atimer.c (turn_on_atimers):
3230 * dispnew.c (handle_window_change_signal):
3231 * emacs.c (handle_danger_signal):
3232 * keyboard.c (kbd_buffer_get_event):
3233 Don't reestablish signal handler; not needed with sigaction.
3234 * blockinput.h (UNBLOCK_INPUT_TO, TOTALLY_UNBLOCK_INPUT)
3235 (UNBLOCK_INPUT_TO):
3236 Rework to avoid unnecessary accesses to volatile variables.
3237 (UNBLOCK_INPUT_TO): Now a function.
3238 (totally_unblock_input, unblock_input): New decls.
3239 * data.c (handle_arith_signal, deliver_arith_signal): Move to sysdep.c
3240 (init_data): Remove. Necessary stuff now done in init_signal.
3241 * emacs.c, xdisp.c: Include "atimer.h", since we invoke atimer functions.
3242 * emacs.c (handle_fatal_signal, deliver_fatal_signal): Move to sysdep.c.
3243 (fatal_error_code): Remove; no longer needed.
3244 (terminate_due_to_signal): Rename from fatal_error_backtrace, since
3245 it doesn't always backtrace. All uses changed. No need to reset
3246 signal to default, since sigaction and/or die does that for us now.
3247 Use emacs_raise (FOO), not kill (getpid (), FOO).
3248 (main): Check more-accurately whether we're dumping.
3249 Move fatal-error setup to sysdep.c
3250 * floatfns.c: Do not include "syssignal.h"; no longer needed.
3251 * gtkutil.c (xg_get_file_name, xg_get_font):
3252 Remove no-longer-needed signal-mask manipulation.
3253 * keyboard.c, process.c (POLL_FOR_INPUT):
3254 Don't depend on USE_ASYNC_EVENTS, a symbol that is never defined.
3255 * keyboard.c (read_avail_input): Remove.
3256 All uses replaced by gobble_input.
3257 (Ftop_level): Use TOTALLY_UNBLOCK_INPUT rather than open code.
3258 (kbd_buffer_store_event_hold, gobble_input):
3259 (record_asynch_buffer_change) [USABLE_SIGIO]:
3260 (store_user_signal_events):
3261 No need to mess with signal mask.
3262 (gobble_input): If blocking input and there are terminals, simply
3263 set pending_signals to 1 and return. All hooks changed to not
3264 worry about whether input is blocked.
3265 (process_pending_signals): Clear pending_signals before processing
3266 them, in case a signal comes in while we're processing.
3267 By convention callers now test pending_signals before calling us.
3268 (UNBLOCK_INPUT_TO, unblock_input, totally_unblock_input):
3269 New functions, to support changes to blockinput.h.
3270 (handle_input_available_signal): Now extern.
3271 (reinvoke_input_signal): Remove. All uses replaced by
3272 handle_async_input.
3273 (quit_count): Now volatile, since a signal handler uses it.
3274 (handle_interrupt): Now takes bool IN_SIGNAL_HANDLER as arg.
3275 All callers changed. Block SIGINT only if not already blocked.
3276 Clear sigmask reliably, even if Fsignal returns, which it can.
3277 Omit unnecessary accesses to volatile var.
3278 (quit_throw_to_read_char): No need to restore sigmask.
3279 * keyboard.c (gobble_input, handle_user_signal):
3280 * process.c (wait_reading_process_output):
3281 Call signal-handling code rather than killing ourselves.
3282 * lisp.h: Include <float.h>, for...
3283 (IEEE_FLOATING_POINT): New macro, moved here to avoid duplication.
3284 (pending_signals): Now volatile.
3285 (syms_of_data): Now const if IEEE floating point.
3286 (handle_input_available_signal) [USABLE_SIGIO]:
3287 (terminate_due_to_signal, record_child_status_change): New decls.
3288 * process.c (create_process): Avoid disaster if memory is exhausted
3289 while we're processing a vfork, by tightening the critical section
3290 around the vfork.
3291 (send_process_frame, process_sent_to, handle_pipe_signal)
3292 (deliver_pipe_signal): Remove. No longer needed, as Emacs now
3293 ignores SIGPIPE.
3294 (send_process): No need for setjmp/longjmp any more, since the
3295 SIGPIPE stuff is now gone. Instead, report an error if errno
3296 is EPIPE.
3297 (record_child_status_change): Now extern. PID and W are now args.
3298 Return void, not bool. All callers changed.
3299 * sysdep.c (wait_debugging) [(BSD_SYSTEM || HPUX) && !defined (__GNU__)]:
3300 Remove. All uses removed. This bug should be fixed now in a
3301 different way.
3302 (wait_for_termination_1): Use waitpid rather than sigsuspend,
3303 and record the child status change directly. This avoids the
3304 need to futz with the signal mask.
3305 (process_fatal_action): Move here from emacs.c.
3306 (emacs_sigaction_flags): New function, containing
3307 much of what used to be in emacs_sigaction_init.
3308 (emacs_sigaction_init): Use it. Block nonfatal system signals that are
3309 caught by emacs, to make races less likely.
3310 (deliver_process_signal): Rename from handle_on_main_thread.
3311 All uses changed.
3312 (BACKTRACE_LIMIT_MAX): Now at top level.
3313 (thread_backtrace_buffer, threadback_backtrace_pointers):
3314 New static vars.
3315 (deliver_thread_signal, deliver_fatal_thread_signal):
3316 New functions, for more-accurate delivery of thread-specific signals.
3317 (handle_fatal_signal, deliver_fatal_signal): Move here from emacs.c.
3318 (deliver_arith_signal): Handle in this thread, not
3319 in the main thread, since it's triggered by this thread.
3320 (maybe_fatal_sig): New function.
3321 (init_signals): New arg DUMPING so that we can be more accurate
3322 about whether we're dumping. Caller changed.
3323 Treat thread-specific signals differently from process-general signals.
3324 Block all signals while handling fatal error; that's safer.
3325 xsignal from SIGFPE only on non-IEEE hosts, treating it as fatal
3326 on IEEE hosts.
3327 When batch, ignore SIGHUP, SIGINT, SIGTERM if they were already ignored.
3328 Ignore SIGPIPE unless batch.
3329 (emacs_backtrace): Output backtrace for the appropriate thread,
3330 which is not necessarily the main thread.
3331 * syssignal.h: Include <stdbool.h>.
3332 (emacs_raise): New macro.
3333 * xterm.c (x_connection_signal): Remove; no longer needed
3334 now that we use sigaction.
3335 (x_connection_closed): No need to mess with sigmask now.
3336 (x_initialize): No need to reset SIGPIPE handler here, since
3337 init_signals does this for us now.
3338
3339 2012-09-23 Jan Djärv <jan.h.d@swipnet.se>
3340
3341 * nsterm.m (ns_dumpglyphs_image): dr is a new rect to draw image into,
3342 background rect may be larger (Bug#12245).
3343
3344 2012-09-23 Chong Yidong <cyd@gnu.org>
3345
3346 * keyboard.c (timer_check): Avoid quitting during Fcopy_sequence.
3347
3348 2012-09-22 Paul Eggert <eggert@cs.ucla.edu>
3349
3350 * .gdbinit: Just stop at fatal_error_backtrace.
3351 See Stefan Monnier's request in
3352 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00549.html>.
3353 Remove no-longer-used query of system type.
3354
3355 2012-09-22 Chong Yidong <cyd@gnu.org>
3356
3357 * search.c (Freplace_match): Doc fix (Bug#12325).
3358
3359 * minibuf.c (Finternal_complete_buffer): Doc fix (Bug#12391).
3360
3361 * editfns.c (Fline_beginning_position): Doc fix (Bug#12416).
3362 (Fline_end_position): Doc fix.
3363
3364 * cmds.c (Fforward_char, Fbackward_char): Doc fix (Bug#12414).
3365
3366 2012-09-22 Chong Yidong <cyd@gnu.org>
3367
3368 * dispextern.h (struct image_type): Add new slot, storing a type
3369 initialization function.
3370
3371 * image.c (define_image_type): Call the image initializer function
3372 if it is defined. Arguments and return value changed.
3373 (valid_image_p, make_image): Callers changed.
3374 (xbm_type, xpm_type, pbm_type, png_type, jpeg_type, tiff_type)
3375 (gif_type, imagemagick_type, svg_type, gs_type):
3376 Add initialization functions.
3377 (Finit_image_library): Call lookup_image_type.
3378 (CHECK_LIB_AVAILABLE): Macro deleted.
3379 (lookup_image_type): Call define_image_type here, rather than via
3380 Finit_image_library, and without using CHECK_LIB_AVAILABLE.
3381 (syms_of_image): Move define_image_type calls for xbm_type and
3382 pbm_type to lookup_image_type.
3383
3384 2012-09-22 Eli Zaretskii <eliz@gnu.org>
3385
3386 * keyboard.c (timer_check_2): Move calculation of 'timers' and
3387 'idle_timers' from here ...
3388 (timer_check): ... to here. Use Fcopy_sequence to copy the timer
3389 lists, to avoid infloops when the timer does something stupid,
3390 like reinvoke itself with the same or smaller time-out.
3391 (Bug#12447)
3392
3393 2012-09-22 Martin Rudalics <rudalics@gmx.at>
3394
3395 * window.c (Fsplit_window_internal): Handle only Qt value of
3396 Vwindow_combination_limit separately.
3397 (Qtemp_buffer_resize): New symbol.
3398 (Vwindow_combination_limit): New default value.
3399 Rewrite doc-string.
3400
3401 2012-09-22 Eli Zaretskii <eliz@gnu.org>
3402
3403 * xdisp.c (next_overlay_string): Initialize it->end_charpos for
3404 the new overlay string. (Bug#10159)
3405
3406 2012-09-22 Paul Eggert <eggert@cs.ucla.edu>
3407
3408 * emacs.c (shut_down_emacs): Don't assume stderr is buffered,
3409 or that fprintf is async-signal-safe. POSIX doesn't require
3410 either assumption.
3411
3412 2012-09-22 Chong Yidong <cyd@gnu.org>
3413
3414 * buffer.c (Fset_buffer_modified_p): Handle indirect buffers
3415 (Bug#8207).
3416
3417 2012-09-22 Kenichi Handa <handa@gnu.org>
3418
3419 * composite.c (composition_reseat_it): Handle the case that a
3420 grapheme cluster is not covered by a single font (Bug#12352).
3421
3422 2012-09-21 Chong Yidong <cyd@gnu.org>
3423
3424 * image.c (define_image_type): Avoid adding duplicate types to
3425 image_types (Bug#12463). Suggested by Jörg Walter.
3426
3427 2012-09-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3428
3429 * unexmacosx.c: Define LC_DATA_IN_CODE if not defined.
3430 (print_load_command_name): Add case LC_DATA_IN_CODE.
3431 (dump_it) [LC_DATA_IN_CODE]: Call copy_linkedit_data.
3432
3433 2012-09-21 Glenn Morris <rgm@gnu.org>
3434
3435 * eval.c (Frun_hook_with_args_until_success)
3436 (Frun_hook_with_args_until_failure): Doc fixes. (Bug#12393)
3437
3438 2012-09-21 Andreas Schwab <schwab@linux-m68k.org>
3439
3440 * fileio.c (Ffile_selinux_context): Only call freecon when
3441 lgetfilecon succeeded.
3442 (Fset_file_selinux_context): Likewise. (Bug#12444)
3443
3444 2012-09-21 Eli Zaretskii <eliz@gnu.org>
3445
3446 * xdisp.c (try_window_reusing_current_matrix): Under bidi
3447 reordering, locate the cursor by calling set_cursor_from_row; if
3448 that fails, clear the desired glyph matrix before returning a
3449 failure indication to the caller. Fixes leaving garbled display
3450 when fast scrolling with a down-key. (Bug#12403)
3451 (compute_stop_pos_backwards): Fix a typo that caused crashes while
3452 scrolling through multibyte text.
3453
3454 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
3455
3456 * alloc.c (mark_object) <PVEC_WINDOW>: Mark prev/next_buffers *after*
3457 calling mark_vectorlike since that's the one that marks the window.
3458 (mark_discard_killed_buffers): Mark the final cdr.
3459 * window.h (struct window): Move prev/next_buffers to the
3460 non-standard fields.
3461 * window.c (make_window): Initialize prev/next_buffers manually.
3462
3463 2012-09-20 Paul Eggert <eggert@cs.ucla.edu>
3464
3465 Omit unused arg EXPECTED from socket hooks.
3466 * keyboard.c (gobble_input, read_avail_input, tty_read_avail_input):
3467 * nsterm.m (ns_term_init):
3468 * termhooks.h (struct terminal.read_socket_hook):
3469 * w32inevt.c (w32_console_read_socket):
3470 * w32term.c (w32_read_socket):
3471 * xterm.c (XTread_socket):
3472 Omit unused arg EXPECTED. All callers changed.
3473 (store_user_signal_events): Return void, not int, since callers no
3474 longer care about the return value. All uses changed.
3475
3476 2012-09-20 Juanma Barranquero <lekktu@gmail.com>
3477
3478 * w32gui.h (XParseGeometry): Do not declare.
3479
3480 2012-09-19 Paul Eggert <eggert@cs.ucla.edu>
3481
3482 * w32inevt.c (w32_console_read_socket): Return -1 on failure, not 0.
3483 Ignore 'expected'. See Eli Zaretskii in
3484 <http://bugs.gnu.org/12471#8> (last line).
3485
3486 * frame.c (read_integer): Remove. All uses replaced by strtol/strtoul.
3487 (XParseGeometry): Now static. Substitute extremal values for
3488 values that are out of range.
3489
3490 2012-09-19 Jan Djärv <jan.h.d@swipnet.se>
3491
3492 * w32xfns.c (read_integer, XParseGeometry): Move to frame.c.
3493
3494 * nsfns.m (XParseGeometry): Remove.
3495 (Fx_create_frame): Call x_set_offset to correctly interpret
3496 top_pos in geometry.
3497
3498 * frame.c (read_integer, XParseGeometry): Move from w32xfns.c.
3499 (Fx_parse_geometry): If there is a space in string, call
3500 Qns_parse_geometry, otherwise do as on other terms (Bug#12368).
3501
3502 2012-09-17 Eli Zaretskii <eliz@gnu.org>
3503
3504 * search.c (scan_buffer): Use character positions in calls to
3505 region_cache_forward and region_cache_backward, not byte
3506 positions. (Bug#12196)
3507
3508 * w32term.c (w32_read_socket): Set pending_signals to 1, like
3509 xterm.c does. Reported by Daniel Colascione <dancol@dancol.org>.
3510
3511 * ralloc.c (r_alloc_init) [!SYSTEM_MALLOC]: Initialize
3512 __malloc_extra_blocks to 32 instead of 64, like alloc.c did in
3513 emacs_blocked_malloc, now deleted.
3514
3515 2012-09-17 Paul Eggert <eggert@cs.ucla.edu>
3516
3517 Remove no-longer-needed Solaris 2.4 vfork bug workaround.
3518 The workaround was for improving performance on Solaris 2.4, but
3519 is getting in the way now. Emacs will still work if someone is
3520 still running Solaris 2.4 in a museum somewhere; Sun dropped
3521 support for Solaris 2.4 in 2003.
3522 * callproc.c (Fcall_process) [HAVE_WORKING_VFORK]:
3523 * process.c (create_process) [HAVE_WORKING_VFORK]:
3524 Omit now-unnecessary workaround for the Solaris 2.4 vfork bug,
3525 since Emacs no longer uses vfork on that platform.
3526
3527 2012-09-17 Glenn Morris <rgm@gnu.org>
3528
3529 * emacs.c: Use COPYRIGHT.
3530
3531 2012-09-16 Paul Eggert <eggert@cs.ucla.edu>
3532
3533 Remove configure's --without-sync-input option (Bug#12450).
3534 When auditing signal-handling in preparation for cleaning it up,
3535 I found that SYNC_INPUT has race conditions and would be a real
3536 pain to fix. Since it's an undocumented and deprecated
3537 configure-time option, now seems like a good time to remove it.
3538 Also see <http://bugs.gnu.org/11080#16>.
3539 * alloc.c (_bytes_used, __malloc_extra_blocks, _malloc_internal)
3540 (_free_internal) [!DOUG_LEA_MALLOC]: Remove decls.
3541 (alloc_mutex) [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
3542 (malloc_hysteresis):
3543 (check_depth) [XMALLOC_OVERRUN_CHECK]:
3544 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT):
3545 (__malloc_hook, __realloc_hook, __free_hook, BYTES_USED)
3546 (dont_register_blocks, bytes_used_when_reconsidered)
3547 (bytes_used_when_full, emacs_blocked_free, emacs_blocked_malloc)
3548 (emacs_blocked_realloc, reset_malloc_hooks, uninterrupt_malloc):
3549 [!SYSTEM_MALLOC && !SYNC_INPUT]:
3550 Remove. All uses removed.
3551 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): Use a different
3552 implementation, one that depends on whether the new macro
3553 XMALLOC_BLOCK_INPUT_CHECK is defined, not on whether SYNC_INPUT
3554 is defined.
3555 * atimer.c (run_timers, handle_alarm_signal):
3556 * keyboard.c (pending_signal, poll_for_input_1, poll_for_input)
3557 (handle_async_input, process_pending_signals)
3558 (handle_input_available_signal, init_keyboard):
3559 * nsterm.m (ns_read_socket):
3560 * process.c (wait_reading_process_output):
3561 * regex.c (immediate_quit, IMMEDIATE_QUIT_CHECK):
3562 * sysdep.c (emacs_sigaction_init) [SA_RESTART]:
3563 (emacs_write):
3564 * xterm.c (XTread_socket):
3565 Assume SYNC_INPUT.
3566 * conf_post.h (SA_RESTART) [IRIX6_5]: Do not #undef.
3567 * eval.c (handling_signal): Remove. All uses removed.
3568 * lisp.h (ELSE_PENDING_SIGNALS): Remove.
3569 All uses replaced with the SYNC_INPUT version.
3570 (reset_malloc_hooks, uninterrupt_malloc, handling_signal):
3571 Remove decls.
3572 * sysdep.c, syssignal.h (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
3573 Now static.
3574
3575 * font.c (Ffont_shape_gstring): Remove unused local.
3576
3577 2012-09-16 Glenn Morris <rgm@gnu.org>
3578
3579 * Makefile.in (clean): No longer run nextstep's clean.
3580
3581 * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Remove variables.
3582 (ns_frag): Remove.
3583 (ns-app): Move here from ns.mk, and simplify.
3584 (clean): Simplify nextstep entry.
3585 * ns.mk: Remove file.
3586
3587 2012-09-17 Kenichi Handa <handa@gnu.org>
3588
3589 * font.c (Ffont_shape_gstring): Fix previous change; GLYPHs may
3590 not covert the last few charactes.
3591
3592 2012-09-16 Kenichi Handa <handa@gnu.org>
3593
3594 * font.c (Ffont_shape_gstring): Don't adjust grapheme cluster
3595 here, but just check the validity of glyphs in the glyph-string.
3596
3597 2012-09-16 Martin Rudalics <rudalics@gmx.at>
3598
3599 * window.c (Fwindow_parameter, Fset_window_parameter):
3600 Accept any window as argument (Bug#12452).
3601
3602 2012-09-16 Jan Djärv <jan.h.d@swipnet.se>
3603
3604 * nsfns.m (Fx_open_connection): Move initialization of ns_*_types
3605 to ns_term_init to avoid memory leak.
3606
3607 * nsterm.m (ns_update_begin): Initialize bp after lcokFocus, use
3608 explicit retain/release.
3609 (ns_term_init): Only allow one display. Initialize outerpool and
3610 ns_*_types.
3611
3612 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
3613
3614 Port _setjmp fix to POSIXish hosts as well as Microsoft.
3615 * image.c (_setjmp) [!HAVE__SETJMP]: Restore definition, as
3616 it's needed on POSIXish hosts that lack _setjmp. Attempt to solve
3617 the Microsoft problem in a different way, by altering ../nt/config.nt.
3618
3619 2012-09-15 Eli Zaretskii <eliz@gnu.org>
3620
3621 * w32xfns.c:
3622 * w32uniscribe.c:
3623 * w32term.c:
3624 * w32select.c:
3625 * w32reg.c:
3626 * w32proc.c:
3627 * w32menu.c:
3628 * w32inevt.c:
3629 * w32heap.c:
3630 * w32font.c:
3631 * w32fns.c:
3632 * w32console.c:
3633 * w32.c:
3634 * w16select.c: Remove inclusion of setjmp.h, as it is now included
3635 by lisp.h. This completes removal of setjmp.h inclusion
3636 erroneously announced in the previous commit. (Bug#12446)
3637
3638 * lisp.h [!HAVE__SETJMP, !HAVE_SIGSETJMP]: Make the commentary
3639 more accurate.
3640
3641 * image.c (_setjmp) [!HAVE__SETJMP]: Define only if 'setjmp' is
3642 not defined as a macro. The latter happens on MS-Windows.
3643 (Bug#12446)
3644
3645 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
3646
3647 Port better to POSIX hosts lacking _setjmp (Bug#12446).
3648 * lisp.h: Include <setjmp.h> here, since we use its symbols here.
3649 Some instances of '#include <setjmp.h>' removed, if the
3650 only reason for the instance was because "lisp.h" was included.
3651 (sys_jmp_buf, sys_setjmp, sys_longjmp): New symbols.
3652 Unless otherwise specified, replace all uses of jmp_buf, _setjmp,
3653 and _longjmp with the new symbols. Emacs already uses _setjmp if
3654 available, so this change affects only POSIXish hosts that have
3655 sigsetjmp but not _setjmp, such as some versions of Solaris and
3656 Unixware. (Also, POSIX-2008 marks _setjmp as obsolescent.)
3657 * image.c (_setjmp, _longjmp) [HAVE_PNG && !HAVE__SETJMP]: New macros.
3658 (png_load_body) [HAVE_PNG]:
3659 (PNG_LONGJMP) [HAVE_PNG && PNG_LIBPNG_VER < 10500]:
3660 (PNG_JMPBUF) [HAVE_PNG && PNG_LIBPNG_VER >= 10500]:
3661 Use _setjmp and _longjmp rather than sys_setjmp and sys_longjmp,
3662 since PNG requires jmp_buf. This is the only exception to the
3663 general rule that we now use sys_setjmp and sys_longjmp.
3664 This exception is OK since this code does not change the signal
3665 mask or longjmp out of a signal handler.
3666
3667 2012-09-14 Paul Eggert <eggert@cs.ucla.edu>
3668
3669 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
3670 Include "syssignal.h", for 'main_thread'.
3671
3672 2012-09-14 Dmitry Antipov <dmantipov@yandex.ru>
3673
3674 Avoid out-of-range marker position (Bug#12426).
3675 * insdel.c (replace_range, replace_range_2):
3676 Adjust markers before overlays, as suggested by comments.
3677 (insert_1_both, insert_from_buffer_1, adjust_after_replace):
3678 Remove redundant check before calling offset_intervals.
3679
3680 2012-09-14 Martin Rudalics <rudalics@gmx.at>
3681
3682 * xdisp.c (Fformat_mode_line): Unconditionally save/restore
3683 current buffer (Bug#12387).
3684
3685 2012-09-14 Juanma Barranquero <lekktu@gmail.com>
3686
3687 * makefile.w32-in ($(BLD)/alloc.$(O)): Update dependencies.
3688
3689 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
3690
3691 Use a more backwards-compatible timer format (Bug#12430).
3692 * keyboard.c (decode_timer): Get PSECS from the 8th (origin-0)
3693 vector element, not from the 4th, since PSECS is now at the end.
3694 (Fcurrent_idle_time): Doc fix.
3695
3696 2012-09-13 Dmitry Antipov <dmantipov@yandex.ru>
3697
3698 Function to mark objects and remove killed buffers at once.
3699 * alloc.c (discard_killed_buffers): Rename to ...
3700 (mark_discard_killed buffers) ... new name. Add marking
3701 of remaining objects. Fix comment. Adjust users.
3702 (mark_object): Do not touch frame buffer lists here.
3703 * frame.c (delete_frame): Reset frame buffer lists here.
3704
3705 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
3706
3707 Better workaround for GNOME bug when --enable-gcc-warnings.
3708 * emacsgtkfixed.c (G_STATIC_ASSERT): Remove, undoing last change.
3709 Instead, disable -Wunused-local-typedefs. See Dmitry Antipov in
3710 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00335.html>.
3711
3712 Simplify SIGIO usage (Bug#12408).
3713 The code that dealt with SIGIO was crufty and confusing, e.g., it
3714 played tricks like "#undef SIGIO" but these tricks were not used
3715 consistently. Simplify mostly by not #undeffing standard symbols,
3716 e.g., use "defined USABLE_SIGIO" (our symbol, which we can define
3717 or not as we please) rather than "defined SIGIO" (standard symbol
3718 that we probably shouldn't #undef).
3719 * conf_post.h [USG5_4]: Do not include <sys/wait.h> here.
3720 Modules that need it can include it.
3721 [USG5_4 && emacs]: Likewise, do not include the streams stuff here.
3722 * dispextern.h (ignore_sigio): New decl.
3723 * emacs.c (shut_down_emacs): Invoke unrequest_sigio
3724 unconditionally, since it's now a no-op if !USABLE_SIGIO.
3725 * emacs.c (shut_down_emacs):
3726 * keyboard.c (kbd_buffer_store_event_hold):
3727 Use ignore_sigio rather than invoking 'signal' directly.
3728 * keyboard.c (USABLE_FIONREAD && USG5_4): Include <sys/filio.h>,
3729 for FIONREAD.
3730 (FIONREAD, SIGIO): Do not #undef.
3731 (tty_read_avail_input): Use #error rather than a syntax error.
3732 * process.c [USG5_4]: Include <sys/stream.h> and <sys/stropts.h>,
3733 for I_PIPE, used by SETUP_SLAVE_PTY.
3734 (DATAGRAM_SOCKETS): Simplify defn, based on USABLE_FIONREAD.
3735 * sysdep.c (croak): Remove; no longer needed. This bit of
3736 temporary code, with Fred N. Fish's comment that it's temporary,
3737 has been in Emacs since at least 1992!
3738 (init_sigio, reset_sigio, request_sigio, unrequest_sigio):
3739 Arrange for them to be no-ops in all cases when ! USABLE_SIGIO.
3740 * syssignal.h (croak): Remove decl.
3741 (SIGIO, SIGPOO, SIGAIO, SIGPTY): Do not #undef; that's too fragile.
3742 * systty.h [!NO_TERMIO]: Do not include <termio.h>; no longer needed
3743 now that we're termios-only.
3744 (FIONREAD, ASYNC) [BROKEN_FIONREAD]: Do not #undef.
3745 * term.c (dissociate_if_controlling_tty): Use #error rather than
3746 a run-time error.
3747
3748 Work around GCC and GNOME bugs when --enable-gcc-warnings.
3749 * emacsgtkfixed.c (G_STATIC_ASSERT): Redefine to use 'verify',
3750 to work around GNOME bug 683906.
3751 * image.c (jpeg_load_body) [HAVE_JPEG && lint]: Pacify gcc -Wclobber.
3752 (struct my_jpeg_error_mgr) [HAVE_JPEG && lint]: New member fp.
3753 This works around GCC bug 54561.
3754
3755 2012-09-12 Paul Eggert <eggert@cs.ucla.edu>
3756
3757 More fixes for 'volatile' and setjmp/longjmp.
3758 * eval.c (Fdefvar, Fcondition_case): Remove unnecessary 'volatile's.
3759 * image.c (struct png_load_context) [HAVE_PNG]: New type.
3760 (png_load_body) [HAVE_PNG]:
3761 (jpeg_load_body) [HAVE_JPEG]:
3762 New function, with most of the old parent function's body.
3763 (png_load) [HAVE_PNG]:
3764 (jpeg_load) [HAVE_JPEG]:
3765 Invoke the new function, to avoid longjmp munging our locals.
3766 (struct my_jpeg_error_mgr) [HAVE_JPEG]: New members cinfo, failure_code.
3767 (my_error_exit) [HAVE_JPEG]: Don't trust 'setjmp' to return 2 when
3768 longjmp is passed 2, as the C standard doesn't guarantee this.
3769 Instead, store the failure code into mgr->failure_code.
3770
3771 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
3772
3773 * keyboard.c (read_char, requeued_events_pending_p, Finput_pending_p)
3774 (Fdiscard_input, quit_throw_to_read_char, init_keyboard)
3775 (syms_of_keyboard): Remove support for unread-command-char.
3776
3777 2012-09-12 Eli Zaretskii <eliz@gnu.org>
3778
3779 * w32proc.c (sys_kill): If PID is our process ID and the signal is
3780 SIGABRT, call emacs_abort. Avoids silently exiting upon assertion
3781 violation. (Bug#12426)
3782
3783 2012-09-12 Paul Eggert <eggert@cs.ucla.edu>
3784
3785 * image.c (jpeg_memory_src): Don't assume string len fits in unsigned.
3786
3787 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
3788
3789 * eval.c: Add `inhibit-debugger'.
3790 (Qinhibit_debugger): New symbol.
3791 (call_debugger): Bind it instead of Qdebug_on_error.
3792 (maybe_call_debugger): Test Vinhibit_debugger.
3793 (syms_of_eval): Define inhibit-debugger.
3794 * xdisp.c (set_message): Don't bind Qinhibit_debug_on_message.
3795 (syms_of_xdisp): Remove inhibit-debug-on-message.
3796
3797 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
3798
3799 Avoid _setjmp/_longjmp problems with local nonvolatile variables.
3800 If a nonvolatile local variable is written before a _longjmp to
3801 the frame containing the variable, and is read after the _longjmp,
3802 the value read is indeterminate. Some local variables of type
3803 'struct handler' and 'struct catchtag' are used in this way, so
3804 mark each of their slots as volatile if the slot can be set before
3805 _longjmp and read afterwards.
3806 * lisp.h (struct handler): var and chosen_clause are now volatile.
3807 (struct catchtag): val, next, and pdlcount are now volatile.
3808
3809 * bidi.c (bidi_push_it, bidi_pop_it):
3810 * fns.c (copy_hash_table):
3811 * image.c (define_image_type):
3812 * keyboard.c (kbd_buffer_store_event_hold):
3813 * process.c (Fprocess_send_eof):
3814 * xfaces.c (x_create_gc) [HAVE_NS]:
3815 * xgselect.c (xg_select):
3816 Prefer assignment to memcpy when either will do.
3817
3818 * alloc.c (discard_killed_buffers): Tune and simplify a bit.
3819 Use pointer-to-a-pointer to simplify and avoid a NILP check each
3820 time an item is removed. No need to mark this function 'inline';
3821 the compiler knows better than we do.
3822
3823 2012-09-11 Jan Djärv <jan.h.d@swipnet.se>
3824
3825 * nsterm.m (ns_judge_scroll_bars): Pass NO to updateFrameSize.
3826 (updateFrameSize:): Add delay parameter to updateFrameSize, send it
3827 to change_frame_size (Bug#12388).
3828 (windowDidResize:): Pass YES to updateFrameSize.
3829
3830 * nsterm.h: Add delay parameter to updateFrameSize.
3831
3832 2012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
3833
3834 Discard killed buffers from deleted window and frame objects.
3835 This reduces an amount of references to killed buffers and
3836 helps GC to reclaim them faster.
3837 * alloc.c (discard_killed_buffers): New function.
3838 (mark_object): Use it for deleted windows and frames.
3839 (mark_object): If symbol's value is set up for a killed buffer
3840 or deleted frame, restore its global binding.
3841 * data.c (swap_in_global_binding): Add GC notice.
3842 (swap_in_symval_forwarding): Use convenient set_blv_where.
3843 * window.c (wset_next_buffers, wset_prev_buffers): Move ...
3844 * window.h: ... to here.
3845
3846 2012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
3847
3848 Convenient macro to check whether the buffer is live.
3849 * buffer.h (BUFFER_LIVE_P): New macro.
3850 * alloc.c, buffer.c, editfns.c, insdel.c, lread.c, marker.c:
3851 * minibuf.c, print.c, process.c, window.c, xdisp.c: Use it.
3852
3853 2012-09-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3854
3855 * xdisp.c (right_overwritten, right_overwriting): Also handle gstring
3856 composition cases (Bug#12364).
3857
3858 * xterm.c (x_draw_glyph_string): Avoid overwriting inverted left
3859 overhang of succeeding glyphs overlapping box cursor.
3860
3861 * w32term.c (x_draw_glyph_string): Likewise.
3862
3863 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
3864
3865 Simplify, document, and port floating-point (Bug#12381).
3866 The porting part of this patch fixes bugs on non-IEEE platforms
3867 with frexp, ldexp, logb.
3868 * data.c, lisp.h (Qdomain_error, Qsingularity_error, Qunderflow_error):
3869 Now static.
3870 * floatfns.c: Simplify discussion of functions that Emacs doesn't
3871 support, by removing commented-out code and briefly listing the
3872 C89 functions excluded. The commented-out stuff was confusing
3873 maintenance, e.g., we thought we needed cbrt but it was commented out.
3874 (logb): Remove decl; no longer needed.
3875 (isfinite): New macro, if not already supplied.
3876 (isnan): Don't replace any existing macro.
3877 (Ffrexp, Fldexp): Define even if !HAVE_COPYSIGN, as frexp and ldexp
3878 are present on all C89 platforms.
3879 (Ffrexp): Do not special-case zero, as frexp does the right thing
3880 for that case.
3881 (Flogb): Do not use logb, as it doesn't have the desired meaning
3882 on hosts that use non-base-2 floating point. Instead, stick with
3883 frexp, which is C89 anyway. Do not pass an infinity or a NaN to
3884 frexp, to avoid getting an unspecified result.
3885
3886 * xdisp.c (Qinhibit_debug_on_message): Now static.
3887
3888 2012-09-10 Jan Djärv <jan.h.d@swipnet.se>
3889
3890 * nsterm.m (ns_update_begin): Set clip path to whole view by using
3891 NSBezierPath (Bug#12131).
3892
3893 2012-09-10 Chong Yidong <cyd@gnu.org>
3894
3895 * fns.c (Fdelq, Fdelete): Doc fix.
3896
3897 2012-09-10 Paul Eggert <eggert@cs.ucla.edu>
3898
3899 * lisp.h (XSETINT, XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL)
3900 (XSETFLOAT, XSETMISC): Parenthesize macro bodies.
3901
3902 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
3903
3904 * lisp.h (make_lisp_ptr): New macro to replace XSET.
3905 (XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL, XSETFLOAT, XSETMISC):
3906 Use it.
3907
3908 2012-09-09 Eli Zaretskii <eliz@gnu.org>
3909
3910 * fringe.c (draw_fringe_bitmap_1): Don't reduce the width of the
3911 left fringe if the window has a left margin. This avoids leaving
3912 traces of the cursor because its leftmost pixel is not drawn over.
3913
3914 * dispnew.c (update_window_line): When the left margin area of a
3915 screen line is updated, set the redraw_fringe_bitmaps_p flag of
3916 that screen line. (Bug#12277)
3917
3918 2012-09-09 Paul Eggert <eggert@cs.ucla.edu>
3919
3920 Assume C89 or later for math functions (Bug#12381).
3921 This simplifies the code, and makes it a bit smaller and faster,
3922 and (most important) makes it easier to clean up signal handling
3923 since we can stop worring about floating-point exceptions in
3924 library code. That was a problem before C89, but the problem
3925 went away many years ago on all practical Emacs targets.
3926 * data.c, image.c, lread.c, print.c:
3927 Don't include <math.h>; no longer needed.
3928 * data.c, floatfns.c (IEEE_FLOATING_POINT): Don't worry that it
3929 might be autoconfigured, as that never happens.
3930 * data.c (fmod):
3931 * doprnt.c (DBL_MAX_10_EXP):
3932 * print.c (DBL_DIG):
3933 Remove. C89 or later always defines these.
3934 * floatfns.c (HAVE_MATHERR, FLOAT_CHECK_ERRNO, FLOAT_CHECK_DOMAIN)
3935 (in_float, float_error_arg, float_error_arg2, float_error_fn_name)
3936 (arith_error, domain_error, domain_error2):
3937 Remove all this pre-C89 cruft. Do not include <errno.h> as that's
3938 no longer needed -- we simply return what C returns. All uses removed.
3939 (IN_FLOAT, IN_FLOAT2): Remove. All uses replaced with
3940 the wrapped code.
3941 (FLOAT_TO_INT, FLOAT_TO_INT2, range_error, range_error2):
3942 Remove. All uses expanded, as these macros are no longer used
3943 more than once and are now more trouble than they're worth.
3944 (Ftan): Use tan, not sin / cos.
3945 (Flogb): Assume C89 frexp.
3946 (fmod_float): Assume C89 fmod.
3947 (matherr) [HAVE_MATHERR]: Remove; no longer needed.
3948 (init_floatfns): Remove. All uses removed.
3949
3950 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
3951
3952 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Take back
3953 compositeToPoint for OSX < 10.6 (Bug#12390).
3954
3955 2012-09-08 Paul Eggert <eggert@cs.ucla.edu>
3956
3957 * floatfns.c (Ftan): Use tan (x), not (sin (x) / cos (x)).
3958 This produces more-accurate results.
3959
3960 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
3961
3962 * nsterm.m (updateFrameSize): Call setFrame: on the view when size
3963 changes (Bug#12088).
3964
3965 2012-09-08 Chong Yidong <cyd@gnu.org>
3966
3967 * syntax.c (Fstring_to_syntax): Doc fix.
3968
3969 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
3970
3971 * nsterm.m (ns_clip_to_row): Remove code that deals with drawing fringe
3972 in the internal border.
3973 (x_set_window_size): Remove static variables and their usage.
3974 (ns_redraw_scroll_bars): Fix NSTRACE arg.
3975 (ns_after_update_window_line, ns_draw_fringe_bitmap):
3976 Remove fringe/internal border adjustment (Bug#11052).
3977 (ns_draw_fringe_bitmap): Make code more like other terms (xterm.c).
3978 (ns_draw_window_cursor): Remove fringe/internal border adjustment.
3979 (ns_fix_rect_ibw): Remove.
3980 (ns_get_glyph_string_clip_rect): Remove call to ns_fix_rect_ibw.
3981 (ns_dumpglyphs_box_or_relief): Ditto.
3982 (ns_maybe_dumpglyphs_background): Remove fringe/internal border
3983 adjustment.
3984 (ns_dumpglyphs_image): Ditto.
3985 (ns_dumpglyphs_stretch): Fix coding style. Remove fringe/internal
3986 border adjustment.
3987 (ns_set_vertical_scroll_bar): Remove variables barOnVeryLeft/Right and
3988 their usage. Add fringe_extended_p and its use as in other terms.
3989 (ns_judge_scroll_bars): Code style fix. Call updateFrameSize if
3990 scroll bar was removed.
3991 (updateFrameSize): New function.
3992 (windowDidResize): Move code to updateFrameSize and call it.
3993
3994 * nsterm.h (EmacsView): Add updateFrameSize.
3995
3996 2012-09-07 Chong Yidong <cyd@gnu.org>
3997
3998 * textprop.c (Fget_text_property): Minor doc fix (Bug#12323).
3999
4000 * data.c (Flocal_variable_if_set_p): Doc fix (Bug#10713).
4001
4002 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
4003
4004 More signal-handler cleanup (Bug#12327).
4005 * emacs.c (main): Convert three 'signal' calls to 'sigaction' calls.
4006 Problem introduced when merging patches. Noted by Eli Zaretskii in
4007 <http://bugs.gnu.org/12327#67>.
4008 * floatfns.c: Comment fix.
4009 * lisp.h (force_auto_save_soon): Declare regardless of SIGDANGER.
4010 SIGDANGER might not be in scope so "#ifdef SIGDANGER" is not right,
4011 and anyway the declaration is harmless even if SIGDANGER is not defined.
4012 * syssignal.h (SIGIO): Also #undef if (! defined FIONREAD ||
4013 defined BROKEN_FIONREAD). systty.h formerly did this, but other
4014 source files not surprisingly expected syssignal.h to define, or
4015 not define, SIGIO, and it's cleaner to do it that way, for consistency.
4016 Include <sys/ioctl.h>, for FIONREAD.
4017 * systty.h (SIGIO): Do not #undef here; it's now syssignal.h's job.
4018 This eliminates a problem whereby other files mysteriously had
4019 to include "syssignal.h" before including "systty.h" if they
4020 wanted to use "#ifdef SIGIO".
4021
4022 2012-09-07 Eli Zaretskii <eliz@gnu.org>
4023
4024 * w32proc.c (sigaction): New function, emulates Posix 'sigaction'.
4025
4026 * w32.c (sigemptyset): Empty the set.
4027 (sigsetmask, sigmask, sigblock, sigunblock): Remove unused functions.
4028
4029 * alloc.c [ENABLE_CHECKING]: Include signal.h, since we need SIGABRT.
4030
4031 2012-09-07 Dmitry Antipov <dmantipov@yandex.ru>
4032
4033 * alloc.c (mark_buffer): Revert unsafe marking optimization.
4034 (mark_object): Likewise for frame objects.
4035
4036 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
4037
4038 * syssignal.h (handle_on_main_thread): Always declare,
4039 even if FORWARD_SIGNAL_TO_MAIN_THREAD is not defined.
4040 This ports to platforms without HAVE_PTHREAD.
4041
4042 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
4043
4044 Signal-handler cleanup (Bug#12327).
4045 Emacs's signal handlers were written in the old 4.2BSD style with
4046 sigblock and sigmask and so forth, and this led to some
4047 inefficiencies and confusion. Rewrite these to use
4048 pthread_sigmask etc. without copying signal sets around. Also,
4049 get rid of the confusing macros 'SIGNAL_THREAD_CHECK' and
4050 'signal', and instead use functions that do not attempt to take
4051 over the system name space. This patch causes Emacs's text
4052 segment to shrink by 0.7% on my platform, Fedora 17 x86-64.
4053 * alloc.c, emacsgtkfixed.c, nsfns.m, widget.c, xmenu.c:
4054 Do not include <signal.h> or "syssignal.h", as these
4055 modules do not use signals.
4056 * atimer.c, callproc.c, data.c, dispnew.c, emacs.c, floatfns.c:
4057 * gtkutil.c, keyboard.c, process.c, sound.c, sysdep.c, term.c, xterm.c:
4058 Do not include <signal.h>, as "syssignal.h" does that for us now.
4059 * atimer.c (sigmask_atimers): New function.
4060 (block_atimers, unblock_atimers): New functions,
4061 replacing the old macros BLOCK_ATIMERS and UNBLOCK_ATIMERS.
4062 All uses replaced.
4063 * conf_post.h [SIGNAL_H_AHB]: Do not include <signal.h>;
4064 no longer needed here.
4065 * emacs.c (main): Inspect existing signal handler with sigaction,
4066 so that there's no need to block and unblock SIGHUP.
4067 * sysdep.c (struct save_signal): New member 'action', replacing
4068 old member 'handler'.
4069 (save_signal_handlers, restore_signal_handlers):
4070 Use sigaction instead of 'signal' to save and restore.
4071 (get_set_sighandler, set_sighandler) [!WINDOWSNT]:
4072 New function. All users of 'signal' modified to use set_sighandler
4073 if they're writeonly, and to use sys_signal if they're read+write.
4074 (emacs_sigaction_init, forwarded_signal): New functions.
4075 (sys_signal): Remove. All uses replaced by calls to sigaction
4076 and emacs_sigaction_init, or by direct calls to 'signal'.
4077 (sys_sigmask) [!__GNUC__]: Remove; no longer needed.
4078 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove;
4079 all uses replaced by pthread_sigmask etc. calls.
4080 * syssignal.h: Include <signal.h>.
4081 (emacs_sigaction_init, forwarded_signal): New decls.
4082 (SIGMASKTYPE): Remove. All uses replaced by its definiens, sigset_t.
4083 (SIGEMPTYMASK): Remove; all uses replaced by its definiens, empty_mask.
4084 (sigmask, sys_sigmask): Remove; no longer needed.
4085 (sigpause): Remove. All uses replaced by its definiens, sigsuspend.
4086 (sigblock, sigunblock, sigfree):
4087 (sigsetmask) [!defined sigsetmask]:
4088 Remove. All uses replaced by pthread_sigmask.
4089 (signal): Remove. Its remaining uses (with SIG_DFL and SIG_IGN)
4090 no longer need to be replaced, and its typical old uses
4091 are now done via emacs_sigaction_init and sigaction.
4092 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove decls.
4093 (sys_sigdel): Remove; unused.
4094 (NSIG): Remove a FIXME; the code's fine. Remove an unnecessary ifdef.
4095
4096 2012-09-06 Eli Zaretskii <eliz@gnu.org>
4097
4098 * process.c (CAN_HANDLE_MULTIPLE_CHILDREN): Fix a typo that broke
4099 SIGCHLD handling on systems that don't have WNOHANG. (Bug#12327)
4100
4101 2012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
4102
4103 Explicitly mark buffer_defaults and buffer_local_symbols.
4104 * alloc.c (Fgarbage_collect): Mark buffer_defaults and
4105 mark_local_symbols here.
4106 (mark_object): If GC_CHECK_MARKED_OBJECTS, simplify checking
4107 since special buffers aren't marked here any more.
4108 (allocate_buffer): Chain new buffer with all_buffers here...
4109 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): ...and
4110 not here.
4111 (Vbuffer_defaults, Vbuffer_local_symbols): Remove.
4112 (syms_of_buffer): Remove staticpro of the above.
4113 (init_buffer_once): Set names for buffer_defaults and
4114 buffer_local_symbols.
4115
4116 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
4117
4118 Use bool for booleans in font-related modules.
4119 * font.c (font_intern_prop, font_style_to_value)
4120 (font_style_symbolic, font_parse_xlfd, font_parse_fcname)
4121 (generate_otf_features, font_check_otf_features, font_check_otf)
4122 (font_match_p, font_list_entities, font_at):
4123 * fontset.c (fontset_id_valid_p, reorder_font_vector
4124 (fontset_find_font, Fset_fontset_font)
4125 (face_suitable_for_char_p) [0]:
4126 * ftfont.c (fc_initialized, ftfont_get_open_type_spec)
4127 (ftfont_open, ftfont_text_extents, ftfont_check_otf):
4128 (m17n_flt_initialized, ftfont_shape_by_flt):
4129 * ftxfont.c (ftxfont_draw_bitmap, ftxfont_draw):
4130 * nsfont.m (nsfont_draw):
4131 * w32font.c (w32font_draw):
4132 * w32term.c (x_draw_glyphless_glyph_string_foreground):
4133 Use bool for booleans.
4134 * font.h: Adjust to above API changes.
4135 (struct font, struct font_driver, struct font_driver_list):
4136 Use bool for booleans.
4137 (struct font): Remove useless member encoding_type.
4138 All users removed.
4139 * fontset.c, xftfont.c: Omit unnecessary static decls.
4140
4141 2012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
4142
4143 * alloc.c (mark_object): Revert window marking code
4144 since it's unsafe for the Fset_window_configuration.
4145
4146 2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
4147
4148 Fix race conditions with signal handlers and errno (Bug#12327).
4149 Be more systematic about preserving errno whenever a signal
4150 handler returns, even if it's not in the main thread. Do this by
4151 renaming signal handlers to distinguish between signal delivery
4152 and signal handling. All uses changed.
4153 * atimer.c (deliver_alarm_signal): Rename from alarm_signal_handler.
4154 * data.c (deliver_arith_signal): Rename from arith_error.
4155 * dispnew.c (deliver_window_change_signal): Rename from
4156 window_change_signal.
4157 * emacs.c (deliver_error_signal): Rename from fatal_error_signal.
4158 (deliver_danger_signal) [SIGDANGER]: Rename from memory_warning_signal.
4159 * keyboard.c (deliver_input_available_signal): Rename from
4160 input_available_signal.
4161 (deliver_user_signal): Rename from handle_user_signal.
4162 (deliver_interrupt_signal): Rename from interrupt_signal.
4163 * process.c (deliver_pipe_signal): Rename from send_process_trap.
4164 (deliver_child_signal): Rename from sigchld_handler.
4165 * atimer.c (handle_alarm_signal):
4166 * data.c (handle_arith_signal):
4167 * dispnew.c (handle_window_change_signal):
4168 * emacs.c (handle_fatal_signal, handle_danger_signal):
4169 * keyboard.c (handle_input_available_signal):
4170 * keyboard.c (handle_user_signal, handle_interrupt_signal):
4171 * process.c (handle_pipe_signal, handle_child_signal):
4172 New functions, with the actual signal-handling code taken from the
4173 original respective signal handlers, sans the sporadic attempts to
4174 preserve errno, since that's now done by handle_on_main_thread.
4175 * atimer.c (alarm_signal_handler): Remove unnecessary decl.
4176 * emacs.c, floatfns.c, lisp.h: Remove unused FLOAT_CATCH_SIGKILL cruft.
4177 * emacs.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
4178 Move to sysdep.c.
4179 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
4180 Move initialization of main_thread to sysdep.c's init_signals.
4181 * process.c (waitpid) [!WNOHANG]: #define to wait; that's good enough for
4182 our usage, and simplifies the mainline code.
4183 (record_child_status_change): New static function, as a helper
4184 for handle_child_signal, and with most of the old child handler's
4185 contents.
4186 (CAN_HANDLE_MULTIPLE_CHILDREN): New constant.
4187 (handle_child_signal): Use the above.
4188 * sysdep.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
4189 Moved here from emacs.c.
4190 (init_signals) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it;
4191 code moved here from emacs.c's main function.
4192 * sysdep.c, syssignal.h (handle_on_main_thread): New function,
4193 replacing the old SIGNAL_THREAD_CHECK. All uses changed.
4194 This lets callers save and restore errno properly.
4195
4196 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
4197
4198 Remove redundant or unused things here and there.
4199 * lisp.h (CYCLE_CHECK, CHAR_TABLE_TRANSLATE): Remove.
4200 * conf_post.h (RE_TRANSLATE): Use char_table_translate.
4201 * editfns.c (Fcompare_buffer_substrings): Likewise.
4202 * frame.h (struct terminal, struct font_driver_list):
4203 Remove redundant declarations.
4204 * window.h (Qleft, Qright): Likewise.
4205
4206 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
4207
4208 Do not mark objects from deleted buffers, windows and frames.
4209 * alloc.c (mark_buffer): Mark just the buffer if it is dead.
4210 (mark_object): Likewise for windows and frames.
4211
4212 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
4213
4214 * alloc.c (valid_lisp_object_p): Treat killed buffers,
4215 buffer_defaults and buffer_local_symbols as valid objects.
4216 Return special value to denote them.
4217
4218 2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
4219
4220 * fileio.c, filelock.c, floatfns.c, fns.c: Use bool for boolean.
4221 * fileio.c (auto_saving, auto_save_error_occurred, make_temp_name)
4222 (Fexpand_file_name, barf_or_query_if_file_exists, Fcopy_file)
4223 (file_name_absolute_p, Fsubstitute_in_file_name):
4224 (check_executable, check_writable, Ffile_accessible_directory_p)
4225 (Fset_file_selinux_context, Fdefault_file_modes)
4226 (Finsert_file_contents, choose_write_coding_system)
4227 (Fwrite_region, build_annotations, a_write, e_write)
4228 (Fdo_auto_save):
4229 * filelock.c (boot_time_initialized, get_boot_time)
4230 (get_boot_time_1, lock_file_1, within_one_second):
4231 * floatfns.c (in_float):
4232 * fns.c (concat, internal_equal, Frequire, base64_encode_1)
4233 (base64_decode_1, cmpfn_eql, cmpfn_user_defined)
4234 (sweep_weak_table, sweep_weak_hash_tables, secure_hash):
4235 * lisp.h (struct Lisp_Hash_Table.cmpfn):
4236 * window.c (compare_window_configurations):
4237 Use bool for booleans.
4238 * fileio.c (auto_saving_dir_umask, auto_saving_mode_bits)
4239 (Fdefault_file_modes): Now mode_t, not int, for modes.
4240 (Fdo_auto_save): Set a boolean to 1 rather than using ++.
4241 (internal_delete_file): Now returns void, not a (boolean) int,
4242 since nobody was looking at the return value.
4243 * lisp.h, window.h: Adjust to above API changes.
4244
4245 * xdisp.c (set_message): Simplify and reindent last change.
4246
4247 2012-09-05 Juanma Barranquero <lekktu@gmail.com>
4248
4249 * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies.
4250
4251 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
4252
4253 * eval.c (call_debugger): Make the function non-static so that we
4254 can call it from set_message.
4255
4256 * xdisp.c (set_message): Implement the new variable `debug-on-message'.
4257 (syms_of_xdisp): Defvar it and `inhibit-debug-on-message'.
4258
4259 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
4260
4261 Give more-useful info on a fatal error (Bug#12328).
4262 * alloc.c [ENABLE_CHECKING]: Do not include <execinfo.h>.
4263 (die) [ENABLE_CHECKING]: Call fatal_error_backtrace instead
4264 of doing the work ourselves.
4265 * emacs.c (fatal_error_signal): Let fatal_error_backtrace
4266 do most of the work.
4267 (fatal_error_backtrace): New function, taken from the guts
4268 of the old fatal_error_signal, but with a new option to output
4269 a backtrace.
4270 (shut_down_emacs) [!DOS_NT]: Use strsignal to give more-useful
4271 info about the signal than just its number.
4272 * lisp.h (fatal_error_backtrace, emacs_backtrace): New decls.
4273 * sysdep.c: Include <execinfo.h>
4274 (emacs_backtrace): New function, taken partly from the previous
4275 code of the 'die' function.
4276 (emacs_abort): Call fatal_error_backtrace rather than abort.
4277
4278 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
4279
4280 * lread.c (readevalloop): Call internal-macroexpand-for-load to perform
4281 eager (load-time) macro-expansion.
4282 * lisp.mk (lisp): Add macroexp.
4283
4284 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
4285
4286 Simplify redefinition of 'abort' (Bug#12316).
4287 Do not try to redefine the 'abort' function. Instead, redo
4288 the code so that it calls 'emacs_abort' rather than 'abort'.
4289 This removes the need for the NO_ABORT configure-time macro
4290 and makes it easier to change the abort code to do a backtrace.
4291 * .gdbinit: Just stop at emacs_abort, not at w32_abort or abort.
4292 * emacs.c (abort) [!DOS_NT && !NO_ABORT]:
4293 Remove; sysdep.c's emacs_abort now takes its place.
4294 * lisp.h (emacs_abort): New decl. All calls from Emacs code to
4295 'abort' changed to use 'emacs_abort'.
4296 * msdos.c (dos_abort) [defined abort]: Remove; not used.
4297 (abort) [!defined abort]: Rename to ...
4298 (emacs_abort): ... new name.
4299 * sysdep.c (emacs_abort) [!HAVE_NTGUI]: New function, taking
4300 the place of the old 'abort' in emacs.c.
4301 * w32.c, w32fns.c (abort): Do not #undef.
4302 * w32.c (emacs_abort): Rename from w32_abort.
4303
4304 2012-09-04 Eli Zaretskii <eliz@gnu.org>
4305
4306 * w32uniscribe.c (uniscribe_shape): Reverse the sign of
4307 offsets[j].dv, since the y axis of the screen coordinates points
4308 down, while the y axis of the font definition coordinates points
4309 up. This fixes display of Arabic diacritics such as KASRA and
4310 KASRATAN. (Bug#11860)
4311
4312 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
4313
4314 Be more systematic about _setjmp vs setjmp.
4315 * alloc.c (test_setjmp, mark_stack):
4316 * image.c (PNG_LONGJMP) [PNG_LIBPNG_VER < 10500]:
4317 (PNG_JMPBUF) [! (PNG_LIBPNG_VER < 10500)]:
4318 (png_load, my_error_exit, jpeg_load):
4319 * process.c (send_process_trap, send_process):
4320 Uniformly prefer _setjmp and _longjmp to setjmp and longjmp.
4321 The underscored versions are up to 30x faster on some hosts.
4322 Formerly, the code used setjmp+longjmp sometimes and
4323 _setjmp+_longjmp at other times, with no particular reason to
4324 prefer setjmp+longjmp.
4325
4326 2012-09-03 Paul Eggert <eggert@cs.ucla.edu>
4327
4328 Fix minor problem found by static checking.
4329 * buffer.c (Fdelete_all_overlays): Return nil.
4330
4331 2012-09-03 Martin Rudalics <rudalics@gmx.at>
4332
4333 * buffer.c (Fdelete_all_overlays): New function.
4334
4335 2012-09-03 Chong Yidong <cyd@gnu.org>
4336
4337 * gtkutil.c: Add extern decl for Qxft.
4338
4339 2012-09-02 Paul Eggert <eggert@cs.ucla.edu>
4340
4341 * emacs.c, eval.c: Use bool for boolean.
4342 * emacs.c (initialized, inhibit_window_system, running_asynch_code):
4343 (malloc_using_checking) [DOUG_LEA_MALLOC]:
4344 (display_arg) [HAVE_X_WINDOWS || HAVE_NS]:
4345 (noninteractive, no_site_lisp, fatal_error_in_progress, argmatch)
4346 (main, decode_env_path, Fdaemon_initialized):
4347 * eval.c (call_debugger, Finteractive_p, interactive_p):
4348 (unwind_to_catch, Fsignal, wants_debugger, skip_debugger)
4349 (maybe_call_debugger, Fbacktrace):
4350 * process.c (read_process_output, exec_sentinel):
4351 Use bool for booleans.
4352 * emacs.c (shut_down_emacs): Omit unused boolean argument NO_X.
4353 All callers changed.
4354 * eval.c (interactive_p): Omit always-true boolean argument
4355 EXCLUDE_SUBRS_P. All callers changed.
4356 * dispextern.h, lisp.h: Reflect above API changes.
4357 * firstfile.c (dummy): Use the address of 'main', whose signature
4358 won't change, instead of the address of 'initialize', whose
4359 signature just changed from int to bool.
4360 * lisp.h (fatal_error_in_progress): New decl of boolean, moved here ...
4361 * msdos.c (fatal_error_in_progress): ... from here.
4362 * xdisp.c (redisplaying_p): Now a boolean. Set it to 1 instead
4363 of incrementing it.
4364 (redisplay_internal, unwind_redisplay): Simply clear
4365 REDISPLAYING_P when unwinding, instead of saving its previous,
4366 always-false value and then restoring it.
4367
4368 Clean up some extern decls.
4369 Mostly, this hoists extern decls out of .c files and into .h files.
4370 That way, we're more likely to catch errors if the interfaces change.
4371 * alloc.c [USE_GTK]: Include "gtkutil.h" so that we need not
4372 declare xg_mark_data.
4373 * dispextern.h (x_frame_parm_handlers):
4374 * font.h (Qxft):
4375 * lisp.h (Qlexical_binding, Qinternal_interpreter_environment)
4376 (Qextra_light, Qlight, Qsemi_light, Qsemi_bold, Qbold, Qextra_bold)
4377 (Qultra_bold, Qoblique, Qitalic):
4378 Move extern decl here from .c file.
4379 * alloc.c (xg_mark_data) [USE_GTK]:
4380 * doc.c (Qclosure):
4381 * eval.c (Qlexical_binding):
4382 * fns.c (time) [!HAVE_UNISTD_H]:
4383 * gtkutil.c (Qxft, Qnormal, Qextra_light, Qlight, Qsemi_light)
4384 (Qsemi_bold, Qbold, Qextra_bold, Qultra_bold, Qoblique, Qitalic):
4385 * image.c (Vlibrary_cache, QCloaded_from) [HAVE_NTGUI]:
4386 * lread.c (Qinternal_interpreter_environment):
4387 * minibuf.c (Qbuffer):
4388 * process.c (QCfamily, QCfilter):
4389 * widget.c (free_frame_faces):
4390 * xfaces.c (free_frame_menubar) [USE_X_TOOLKIT]:
4391 * xfont.c (x_clear_errors):
4392 * xterm.c (x_frame_parm_handlers):
4393 Remove now-redundant extern decls.
4394 * keyboard.c, keyboard.h (ignore_mouse_drag_p) [USE_GTK || HAVE_NS]:
4395 * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic):
4396 Now static.
4397 * xfaces.c: Remove unnecessary static decls.
4398 * xterm.c (updating_frame): Remove decl of nonexistent object.
4399
4400 * Makefile.in (gl-stamp): Don't scan $(SOME_MACHINE_OBJECTS)
4401 when building globals.h, as the objects that are not built on
4402 this host are not needed to compile C files on this host.
4403
4404 2012-09-02 Jan Djärv <jan.h.d@swipnet.se>
4405
4406 * gtkutil.h: Remove prototype for x_wm_set_size_hint.
4407
4408 * frame.h: Add missing prototype for x_wm_set_size_hint.
4409
4410 2012-09-02 Paul Eggert <eggert@cs.ucla.edu>
4411
4412 * doc.c, editfns.c, insdel.c, intervals.c: Use bool for boolean.
4413 * doc.c (read_bytecode_char, get_doc_string, reread_doc_file)
4414 (Fdocumentation, Fdocumentation_property, Fsnarf_documentation)
4415 (Fsubstitute_command_keys):
4416 * editfns.c (region_limit, find_field, Fconstrain_to_field)
4417 (save_excursion_save, save_excursion_restore)
4418 (disassemble_lisp_time, decode_time_components, emacs_nmemftime)
4419 (format_time_string, general_insert_function)
4420 (make_buffer_string, make_buffer_string_both)
4421 (Fsubst_char_in_region, Ftranslate_region_internal, Fformat):
4422 * insdel.c (check_markers, gap_left, adjust_markers_for_insert)
4423 (copy_text, insert_1, insert_1_both, insert_from_string)
4424 (insert_from_string_before_markers, insert_from_string_1)
4425 (insert_from_buffer, insert_from_buffer_1, replace_range)
4426 (replace_range_2, del_range_1, del_range_byte, del_range_both)
4427 (del_range_2, modify_region):
4428 * intervals.c (intervals_equal, balance_possible_root_interval)
4429 (adjust_intervals_for_insertion, merge_properties_sticky)
4430 (graft_intervals_into_buffer, lookup_char_property)
4431 (adjust_for_invis_intang, set_point_both)
4432 (get_property_and_range, compare_string_intervals)
4433 (set_intervals_multibyte_1, set_intervals_multibyte):
4434 * keyboard.c (decode_timer):
4435 Use bool for boolean.
4436 * intervals.h, lisp.h, systime.h: Reflect above API changes.
4437 * editfns.c (struct info): Use 1-bit unsigned bitfields for booleans.
4438
4439 2012-09-02 Chong Yidong <cyd@gnu.org>
4440
4441 * keymap.c (push_key_description): Print M-TAB as C-M-i
4442 (Bug#11758).
4443
4444 2012-09-02 Juanma Barranquero <lekktu@gmail.com>
4445
4446 * makefile.w32-in (CCL_H, W32FONT_H): New macros.
4447 (ATIMER_H, FONT_H, $(BLD)/alloc.$(O), $(BLD)/callproc.$(O))
4448 ($(BLD)/editfns.$(O), $(BLD)/ccl.$(O), $(BLD)/chartab.$(O))
4449 ($(BLD)/coding.$(O), $(BLD)/sysdep.$(O), $(BLD)/fontset.$(O))
4450 ($(BLD)/sysdep.$(O), $(BLD)/w32fns.$(O), $(BLD)/keyboard.$(O))
4451 ($(BLD)/w32term.$(O), $(BLD)/w32menu.$(O), $(BLD)/process.$(O))
4452 ($(BLD)/w32font.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
4453
4454 2012-09-01 Eli Zaretskii <eliz@gnu.org>
4455
4456 * w32uniscribe.c (uniscribe_shape): Handle correctly the case of
4457 more than one grapheme cluster passed to the shaper: compute the
4458 offset adjustment values separately for each cluster. (Bug#11860)
4459
4460 * image.c: Restore mistakenly removed inclusion of w32.h. Without
4461 it, GCC doesn't see prototypes of w32_delayed_load, and complains
4462 about implicit conversions from integer to pointer.
4463
4464 2012-09-01 Daniel Colascione <dancol@dancol.org>
4465
4466 * w32fns.c (x_display_info_for_name): Prevent crash if w32 window
4467 system used too early.
4468
4469 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
4470
4471 Better seed support for (random).
4472 * emacs.c (main): Call init_random.
4473 * fns.c (Frandom): Set the seed from a string argument, if given.
4474 Remove long-obsolete Gentzel cruft.
4475 * lisp.h, sysdep.c (seed_random): Now takes address and size, not long.
4476 (init_random): New function.
4477
4478 2012-09-01 Daniel Colascione <dancol@dancol.org>
4479
4480 * xterm.h: Add header guards. Declare x_menubar_window_to_frame.
4481 Remove x_set_frame_alpha, x_bitmap_icon, x_make_frame_visible,
4482 x_make_frame_invisible, x_iconify_frame, x_free_frame_resources,
4483 x_wm_set_size_hint, x_query_colors, x_real_positions,
4484 x_set_menu_bar_lines, x_char_width, x_char_height, x_sync,
4485 x_set_tool_bar_lines, x_activate_menubar, and free_frame_menubar,
4486 all of which have been moved to common code.
4487
4488 * xfaces.c: Include TERM_HEADER instead of listing all possible
4489 window-system headers.
4490
4491 * w32xfns.c (x_sync): Correct definition of x_sync (a no-op here)
4492 to match header.
4493
4494 * w32term.h (FRAME_X_WINDOW): Use FRAME_W32_WINDOW instead of
4495 directly accessing frame internals.
4496
4497 * w32font.h: Include font.h. Define syms_of_w32font and
4498 globals_of_w32font.
4499
4500 * process.c: Include TERM_HEADER instead of listing all possible
4501 window-system headers.
4502
4503 * nsterm.h: Remove declarations now in frame.h.
4504 Define FRAME_X_SCREEN, FRAME_X_VISUAL.
4505
4506 * menu.c: Include TERM_HEADER instead of listing all possible
4507 window-system headers.
4508
4509 * keyboard.h: Declare ignore_mouse_drag_p whenever we have a
4510 window system.
4511
4512 * keyboard.c: Include TERM_HEADER instead of listing all possible
4513 window-system headers.
4514
4515 * image.c: Include TERM_HEADER instead of listing all possible
4516 window-system headers. Declare Vlibrary_cache when compiling for
4517 Windows.
4518
4519 * gtkutil.h (xg_list_node_): Include xterm.h to pick up needed
4520 window system declarations.
4521
4522 * frame.h: Move common functions here: set_frame_menubar,
4523 x_set_window_size, x_sync, x_get_focus_frame,
4524 x_set_mouse_position, x_set_mouse_pixel_position,
4525 x_make_frame_visible, x_make_frame_invisible, x_iconify_frame,
4526 x_char_width, x_char_height, x_pixel_width, x_pixel_height,
4527 x_set_frame_alpha, x_set_menu_bar_lines, x_set_tool_bar_lines,
4528 x_activate_menubar, x_real_positions, x_bitmap_icon,
4529 x_set_menu_bar_lines, free_frame_menubar, x_free_frame_resources,
4530 and x_query_colors.
4531
4532 * frame.c: Include TERM_HEADER instead of listing all possible
4533 window-system headers.
4534
4535 * font.c: Include TERM_HEADER instead of listing all possible
4536 window-system headers.
4537
4538 * emacs.c: Include TERM_HEADER.
4539
4540 * dispnew.c: Include TERM_HEADER instead of listing all possible
4541 window-system headers.
4542
4543 * ccl.h: Include character.h.
4544
4545 * Makefile.in: Define WINDOW_SYSTEM_OBJ to hold objects needed for
4546 the current window system; include in list of objects to link into
4547 Emacs.
4548
4549 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
4550
4551 Remove mark_ttys function and fix tty_display_info initialization.
4552 * lisp.h (mark_ttys): Remove prototype.
4553 * alloc.c (Fgarbage_collect): Remove redundant (and the only) call
4554 to mark_ttys because all possible values of 'top_frame' slot are
4555 the frames which are reachable from Vframe_list.
4556 * term.c (mark_ttys): Remove.
4557 (init_tty): Safely initialize 'top_frame' slot with Qnil.
4558
4559 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
4560
4561 Change struct frame bitfields from unsigned char to unsigned.
4562 * frame.h (struct frame): Change type of 'display_preempted',
4563 'visible', 'iconified', 'has_minibuffer', 'wants_modeline',
4564 'auto_raise', 'auto_lower', 'no_split', 'explicit_name',
4565 'window_sizes_changed', 'mouse_moved' and 'pointer_invisible'
4566 bitfields from unsigned char to unsigned.
4567
4568 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
4569
4570 Remove unused member of struct x_output and struct w32_output.
4571 * xterm.h (struct x_output): Remove unused field 'needs_exposure'.
4572 * w32term.h (struct w32_output): Likewise.
4573
4574 2012-08-30 Jan Djärv <jan.h.d@swipnet.se>
4575
4576 * gtkutil.c (x_wm_set_size_hint): Use 1 col for base_width so it
4577 does not become zero (Bug#12234).
4578
4579 2012-08-30 Paul Eggert <eggert@cs.ucla.edu>
4580
4581 * dispnew.c (update_frame_1): Pacify gcc -Wstrict-overflow
4582 for GCC 4.7.1 x86-64.
4583
4584 2012-08-30 Glenn Morris <rgm@gnu.org>
4585
4586 * lread.c (init_lread): For out-of-tree builds, only add the
4587 source directory's site-lisp dir to the load-path if it exists,
4588 consistent with in-tree builds. (Bug#12302)
4589
4590 2012-08-28 Jan Djärv <jan.h.d@swipnet.se>
4591
4592 * nsmenu.m (initWithContentRect:styleMask:backing:defer:): Initialize
4593 button_values to NULL. Call setStykeMask so dialogs get a close button.
4594 (windowShouldClose:): Set window_closed.
4595 (dealloc): New member, free button_values.
4596 (process_dialog:): Make member function. Remove window argument,
4597 replace window with self. Count buttons and allocate and store values
4598 in button_values.
4599 (addButton:value:row:): value is int with the name tag. Call setTag
4600 with tag. Remove return self, declare return value as void.
4601 (addString:row:): Remove return self, declare return value as void.
4602 (addSplit): Remove return self, declare return value as void.
4603 (clicked:): Remove return self, declare return value as void.
4604 Set dialog_return to button_values[seltag]. Code formatting change.
4605 (initFromContents:isQuestion:): Adjust call to process_dialog.
4606 Code formatting change.
4607 (timeout_handler:): Set timer_fired to YES.
4608 (runDialogAt:): Set timer_fired to NO.
4609 Handle click on close button as quit.
4610
4611 * nsterm.h (EmacsDialogPanel): Make timer_fired BOOL.
4612 Add window_closed and button_values. Add void as return value for
4613 add(Button|String|Split). addButton takes int instead of Lisp_Object.
4614 Add process_dialog as new member.
4615
4616 2012-08-28 Eli Zaretskii <eliz@gnu.org>
4617
4618 * ralloc.c (free_bloc): Don't dereference a 'heap' structure if it
4619 is not one of the heaps we manage. (Bug#12242)
4620
4621 2012-08-28 Glenn Morris <rgm@gnu.org>
4622
4623 * eval.c (Fcalled_interactively_p): Doc fix. (Bug#11747)
4624
4625 2012-08-28 Martin Rudalics <rudalics@gmx.at>
4626
4627 * window.c (Fset_window_configuration): Remove handling of
4628 auto-buffer-name window parameter. Install revision of reverted
4629 fix.
4630
4631 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
4632
4633 Do not allow to set major mode for a dead buffer.
4634 * buffer.c (Fset_buffer_major_mode): Signal an error
4635 if the buffer is dead.
4636 (Fother_buffer, other_buffer_safely): Remove redundant
4637 nested declaration.
4638
4639 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
4640
4641 Always use set_buffer_if_live to restore original buffer at unwind.
4642 * buffer.h (record_unwind_current_buffer): New function.
4643 * bytecode.c, dispnew.c, editfns.c, fileio.c, fns.c, insdel.c:
4644 * keyboard.c, keymap.c, minibuf.c, print.c, process.c, textprop.c:
4645 * undo.c, window.c: Adjust users.
4646 * buffer.c (set_buffer_if_live): Fix comment.
4647
4648 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
4649
4650 Fix usage of set_buffer_internal.
4651 * buffer.h (set_buffer_internal): Make it BUFFER_INLINE.
4652 * buffer.c (set_buffer_if_live): Use set_buffer_internal.
4653 * coding.c (decode_coding): Omit redundant test.
4654 * fileio.c (decide_coding_unwind): Likewise.
4655 * fns.c (secure_hash): Likewise.
4656 * insdel.c (modify_region): Likewise.
4657 * keyboard.c (command_loop_1): Likewise.
4658 * print.c (PRINTFINISH): Likewise.
4659 * xdisp.c (run_window_scroll_functions): Use set_buffer_internal.
4660
4661 2012-08-27 Paul Eggert <eggert@cs.ucla.edu>
4662
4663 * dispnew.c: Use bool for boolean.
4664 (frame_garbaged, display_completed, delayed_size_change)
4665 (fonts_changed_p, add_window_display_history)
4666 (add_frame_display_history, verify_row_hash)
4667 (adjust_glyph_matrix, clear_window_matrices, glyph_row_slice_p)
4668 (row_equal_p, realloc_glyph_pool)
4669 (allocate_matrices_for_frame_redisplay)
4670 (showing_window_margins_p)
4671 (adjust_frame_glyphs_for_frame_redisplay)
4672 (build_frame_matrix_from_leaf_window, make_current)
4673 (mirrored_line_dance, mirror_line_dance, update_frame)
4674 (update_window_tree, update_single_window)
4675 (check_current_matrix_flags, update_window, update_text_area)
4676 (update_window_line, set_window_update_flags, scrolling_window)
4677 (update_frame_1, scrolling, buffer_posn_from_coords)
4678 (do_pending_window_change, change_frame_size)
4679 (change_frame_size_1, sit_for):
4680 Use bool for boolean.
4681 (clear_glyph_matrix_rows): Rename from enable_glyph_matrix_rows,
4682 and remove last int (actually boolean) argument, which was always 0.
4683 All callers changed.
4684 * dispextern.h, frame.h, lisp.h: Reflect above API changes.
4685 * dispextern.h (struct composition_it): Use bool for boolean.
4686 (struct glyph_matrix): Don't assume buffer sizes can fit in 'int'.
4687 (struct bidi_it): Use unsigned:1, not int, for boolean prev_was_pdf.
4688 * dired.c (file_name_completion):
4689 Use bool for boolean. (This was missed in an earlier change.)
4690
4691 2012-08-27 Martin Rudalics <rudalics@gmx.at>
4692
4693 * window.c (Fset_window_configuration): Revert first part of
4694 last change.
4695
4696 2012-08-27 Jan Djärv <jan.h.d@swipnet.se>
4697
4698 * nsterm.h (NSPanel): New class variable dialog_return.
4699
4700 * nsmenu.m (initWithContentRect:styleMask:backing:defer:):
4701 Initialize dialog_return.
4702 (windowShouldClose:): Use stop instead of stopModalWithCode.
4703 (clicked:): Ditto, and also set dialog_return (Bug#12258).
4704 (timeout_handler:): Use stop instead of abortModal. Send a dummy
4705 event.
4706 (runDialogAt:): Make ret Lisp_Object. Set it from dialog_return when
4707 modal loop returns.
4708
4709 2012-08-27 Paul Eggert <eggert@cs.ucla.edu>
4710
4711 * composite.c, data.c, dbusbind.c, dired.c: Use bool for booleans.
4712 * composite.c (find_composition, composition_gstring_p)
4713 (composition_reseat_it, find_automatic_composition):
4714 * data.c (let_shadows_buffer_binding_p)
4715 (let_shadows_global_binding_p, set_internal, make_blv)
4716 (Fmake_variable_buffer_local, Fmake_local_variable)
4717 (Fmake_variable_frame_local, arithcompare, cons_to_unsigned)
4718 (cons_to_signed, arith_driver):
4719 * dbusbind.c (xd_in_read_queued_messages):
4720 * dired.c (directory_files_internal, file_name_completion):
4721 Use bool for booleans.
4722 * dired.c (file_name_completion):
4723 * process.h (fd_callback):
4724 Omit int (actually boolean) argument. It wasn't being used.
4725 All uses changed.
4726 * composite.h, lisp.h: Reflect above API changes.
4727
4728 * cmds.c, coding.c: Use bool for booleans.
4729 * cmds.c (move_point, Fself_insert_command):
4730 * coding.h (struct composition status, struct coding_system):
4731 * coding.c (detect_coding_utf_8, encode_coding_utf_8)
4732 (detect_coding_utf_16, encode_coding_utf_16, detect_coding_emacs_mule)
4733 (emacs_mule_char, decode_coding_emacs_mule)
4734 (encode_coding_emacs_mule, detect_coding_iso_2022)
4735 (decode_coding_iso_2022, encode_invocation_designation)
4736 (encode_designation_at_bol, encode_coding_iso_2022)
4737 (detect_coding_sjis, detect_coding_big5, decode_coding_sjis)
4738 (decode_coding_big5, encode_coding_sjis, encode_coding_big5)
4739 (detect_coding_ccl, encode_coding_ccl, decode_coding_raw_text)
4740 (encode_coding_raw_text, detect_coding_charset)
4741 (decode_coding_charset, encode_coding_charset, detect_eol)
4742 (detect_coding, get_translation_table, produce_chars)
4743 (consume_chars, reused_workbuf_in_use)
4744 (make_conversion_work_buffer, code_conversion_save)
4745 (decode_coding_object, encode_coding_object)
4746 (detect_coding_system, char_encodable_p)
4747 (Funencodable_char_position, code_convert_region)
4748 (code_convert_string, code_convert_string_norecord)
4749 (Fset_coding_system_priority):
4750 * fileio.c (Finsert_file_contents):
4751 Use bool for booleans.
4752 * coding.h, lisp.h: Reflect above API changes.
4753 * coding.c: Remove unnecessary static function decls.
4754 (detect_coding): Use unsigned, not signed, to copy an unsigned field.
4755 (decode_coding, encode_coding, decode_coding_gap): Return 'void',
4756 not a boolean 'int', since callers never look at the return value.
4757 (ALLOC_CONVERSION_WORK_AREA): Assume caller returns 'void', not 'int'.
4758 * coding.h (decoding_buffer_size, encoding_buffer_size)
4759 (emacs_mule_string_char): Remove unused extern decls.
4760 (struct iso_2022_spec, struct coding_system):
4761 Use 'unsigned int : 1' for boolean fields, since there's more than one.
4762 (struct emacs_mule_spec): Remove unused field 'full_support'.
4763 All initializations removed.
4764 * cmds.c (internal_self_insert): Don't assume EMACS_INT fits in 'int'.
4765
4766 2012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
4767
4768 Fix spare memory change (Bug#12286).
4769 * alloc.c (mark_maybe_pointer): Handle MEM_TYPE_SPARE.
4770 (valid_lisp_object_p): Likewise.
4771
4772 2012-08-27 Martin Rudalics <rudalics@gmx.at>
4773
4774 * window.c (Fset_window_configuration): Record any window's old
4775 buffer if it's replaced (see Bug#8789). If the new current
4776 buffer doesn't appear in the selected window, go to its old
4777 point (Bug#12208).
4778
4779 2012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
4780
4781 Special MEM_TYPE_SPARE to denote reserved memory.
4782 * alloc.c (enum mem_type): New memory type.
4783 (refill_memory_reserve): Use new type for spare memory.
4784 This prevents live_cons_p and live_string_p from incorrect
4785 detection of uninitialized objects from spare memory as live.
4786
4787 2012-08-26 Paul Eggert <eggert@cs.ucla.edu>
4788
4789 Spelling fixes.
4790 * Makefile.in (.PHONY): versioclean -> versionclean.
4791
4792 Remove unused external symbols.
4793 * data.c (Qcons, Qfloat, Qmisc, Qstring, Qvector):
4794 * window.c (Qwindow_valid_p, decode_valid_window):
4795 Now static, not extern.
4796 * data.c (Qinterval): Remove; unused.
4797 (syms_of_data): Do not define 'interval'.
4798 * lisp.h (Qinteger, Qstring, Qmisc, Qvector, Qfloat, Qcons):
4799 * window.h (decode_valid_window):
4800 Remove decls.
4801
4802 * character.c, charset.c, chartab.c: Use bool for booleans.
4803 * character.c (lisp_string_width, string_count_byte8)
4804 (string_escape_byte8):
4805 * charset.c (charset_map_loaded, load_charset_map, read_hex):
4806 (load_charset_map_from_file, map_charset_chars)
4807 (Fdefine_charset_internal, define_charset_internal)
4808 (Fdeclare_equiv_charset, find_charsets_in_text)
4809 (Ffind_charset_region, char_charset, Fiso_charset):
4810 * chartab.c (sub_char_table_ref, sub_char_table_ref_and_range)
4811 (sub_char_table_set, sub_char_table_set_range)
4812 (char_table_set_range, optimize_sub_char_table)
4813 (map_sub_char_table):
4814 Use bool for boolean.
4815 * character.c (str_to_unibyte): Omit last boolean argument; it was
4816 always 0. All callers changed.
4817 * character.h, charset.h: Adjust to match previous changes.
4818 * character.h (char_printable_p): Remove decl of nonexistent function.
4819 * charset.h (struct charset): Members code_linear_p, iso_chars_96,
4820 ascii_compatible_p, supplementary_p, compact_codes_p, unified_p
4821 are all boolean, so make them single-bit bitfields.
4822
4823 * lisp.h (ASET): Remove attempt to detect side effects.
4824 It was meant to be temporary and it often doesn't work,
4825 because when IDX has side effects the behavior of IDX==IDX
4826 is undefined. See Stefan Monnier in
4827 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00762.html>.
4828
4829 2012-08-26 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
4830
4831 * lisp.h (functionp): New function (extracted from Ffunctionp).
4832 (FUNCTIONP): Use it.
4833 * eval.c (Ffunctionp): Use it.
4834
4835 2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
4836
4837 * xgselect.c (xg_select): Use auto storage for the GPollFD buffer
4838 as that's faster and simpler than static storage. Don't bother
4839 with the g_main_context_query overhead if g_main_context_pending
4840 says no events are pending.
4841 (gfds, gfds_size): Remove these static vars.
4842 (xgselect_initialize): Remove; no longer needed.
4843 All uses and decls removed.
4844
4845 * emacs.c (fatal_error_signal_hook): Remove.
4846 All uses removed. This leftover from old code was always 0.
4847
4848 * casefiddle.c, casetab.c, category.c: Use bool for boolean.
4849 * casefiddle.c (casify_object, casify_region):
4850 * casetab.c (set_case_table):
4851 * category.c, category.h (word_boundary_p):
4852 * category.h (CHAR_HAS_CATEGORY):
4853 Use bool for booleans, instead of int.
4854
4855 2012-08-25 Eli Zaretskii <eliz@gnu.org>
4856
4857 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on $(GNU_LIB)/execinfo.h.
4858
4859 2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
4860
4861 On assertion failure, print backtrace if available.
4862 * alloc.c [ENABLE_CHECKING]: Include <execinfo.h>.
4863 (die) [ENABLE_CHECKING]: Print a backtrace if available.
4864 * Makefile.in (LIB_EXECINFO): New macro.
4865 (LIBES): Use it.
4866
4867 * bytecode.c, callint.c, callproc.c: Use bool for boolean.
4868 * bytecode.c (exec_byte_code):
4869 * callint.c (check_mark, Fcall_interactively):
4870 * callproc.c (Fcall_process, add_env, child_setup, getenv_internal_1)
4871 (getenv_internal, sync_process_alive, call_process_exited):
4872 * lisp.h (USE_SAFE_ALLOCA):
4873 Use bool for booleans, instead of int.
4874 * lisp.h, process.h: Adjust prototypes to match above changes.
4875 * callint.c (Fcall_interactively): Don't assume the mark's
4876 offset fits in 'int'.
4877
4878 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
4879
4880 * buffer.c, buffer.h: Use bool for boolean.
4881 * buffer.c (reset_buffer_local_variables)
4882 (buffer_lisp_local_variables, Fset_buffer_modified_p)
4883 (Frestore_buffer_modified_p, Fset_buffer_multibyte):
4884 (overlays_at, overlays_in, mouse_face_overlay_overlaps)
4885 (overlay_touches_p, overlay_strings, Foverlay_put)
4886 (report_overlay_modification, call_overlay_mod_hooks):
4887 (mmap_enlarge, mmap_set_vars):
4888 * buffer.h (buffer_has_overlays, uppercasep, lowercasep):
4889 Use bool for booleans, instead of int.
4890 * buffer.c (compact_buffer, mmap_free_1): Return void, not int,
4891 since the 1-or-0 return value is always ignored anyway.
4892 (mmap_initialized_p):
4893 * buffer.h (struct buffer_text.inhibit_shrinking): Now bool, not int.
4894 * buffer.h, lisp.h: Adjust prototypes to match above changes.
4895
4896 2012-08-23 Paul Eggert <eggert@cs.ucla.edu>
4897
4898 * bidi.c: Use bool for boolean.
4899 This is a bit more readable, and makes the text segment of bidi.o
4900 0.4% smaller on my platform (GCC 4.7.1 x86-64, Fedora 15).
4901 Presumably it's faster too.
4902 (bidi_initialized, bidi_ignore_explicit_marks_for_paragraph_level):
4903 Now bool.
4904 (bidi_cache_find_level_change, bidi_cache_iterator_state)
4905 (bidi_unshelve_cache, bidi_init_it, bidi_count_bytes)
4906 (bidi_char_at_pos, bidi_fetch_char, bidi_paragraph_init)
4907 (bidi_explicit_dir_char, bidi_level_of_next_char)
4908 (bidi_find_other_level_edge, bidi_move_to_visually_next):
4909 Use bool for booleans, instead of int.
4910 * dispextern.h (bidi_init_it, bidi_paragraph_init)
4911 (bidi_unshelve_cache): Adjust decls to match code.
4912
4913 2012-08-23 Martin Rudalics <rudalics@gmx.at>
4914
4915 * keyboard.c (Fposn_at_x_y): Do not allow internal window as
4916 argument.
4917
4918 2012-08-23 Paul Eggert <eggert@cs.ucla.edu>
4919
4920 * atimer.c, atimer.h (turn_on_atimers): Use bool for boolean.
4921 * atimer.h: Include <stdbool.h>.
4922
4923 2012-08-22 Dan Nicolaescu <dann@gnu.org>
4924
4925 * frame.h (FRAME_W32_P, FRAME_MSDOS_P, FRAME_NS_P): Change to
4926 compile time tests instead of run time tests on systems that do
4927 not use them.
4928 (FRAME_MAC_P): Remove leftover from deleted code.
4929 * frame.c (syms_of_frame): Remove leftover from deleted code.
4930
4931 2012-08-22 Jan Djärv <jan.h.d@swipnet.se>
4932
4933 * nsterm.m (insertText:): Don't clear modifiers if code is space.
4934
4935 2012-08-22 Paul Eggert <eggert@cs.ucla.edu>
4936
4937 * fontset.c (FONTSET_ADD): Return void, not Lisp_Object.
4938 Otherwise, the compiler complains about (A?B:C) where B is void
4939 and C is Lisp_Object. This fixes an incompatibility with Sun C 5.12.
4940 (fontset_add): Return void, for FONTSET_ADD.
4941
4942 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
4943
4944 * alloc.c: Use bool for booleans.
4945 (gc_in_progress, abort_on_gc)
4946 (setjmp_tested_p) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
4947 (dont_register_blocks) [GC_MALLOC_CHECK]:
4948 (suppress_checking) [ENABLE_CHECKING]: Now bool, not int.
4949 (check_string_bytes, make_specified_string, memory_full)
4950 (live_string_p, live_cons_p, live_symbol_p, live_float_p)
4951 (live_misc_p, live_vector_p, live_buffer_p, mark_maybe_object)
4952 (mark_stack, valid_pointer_p, make_pure_string)
4953 (Fgarbage_collect, survives_gc_p, gc_sweep):
4954 Use bool for booleans, instead of int.
4955 (test_setjmp) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
4956 Remove unused local.
4957 * alloc.c (PURE_POINTER_P):
4958 * lisp.h (STRING_MULTIBYTE): Document that it returns a boolean.
4959 * editfns.c (Fformat):
4960 * fileio.c (Fexpand_file_name, Fsubstitute_in_file_name)
4961 (Fdo_auto_save):
4962 * fns.c (sweep_weak_table):
4963 * lisp.h (suppress_checking, push_message, survives_gc_p)
4964 (make_pure_string, gc_in_progress, abort_on_gc):
4965 * lread.c (readchar, read1):
4966 * print.c (Fprin1_to_string):
4967 * xdisp.c (push_message):
4968 Use bool for booleans affected directly or indirectly by
4969 alloc.c's changes.
4970
4971 Make recently-introduced setters macros.
4972 * fontset.c (set_fontset_id, set_fontset_name, set_fontset_ascii)
4973 (set_fontset_base, set_fontset_frame, set_fontset_nofont_face)
4974 (set_fontset_default, set_fontset_fallback): Rename from their
4975 upper-case counterparts, and make them functions rather than macros.
4976 This is more consistent with the other recently-introduced setters.
4977 These don't need to be inline, since they're local.
4978
4979 2012-08-21 Jan Djärv <jan.h.d@swipnet.se>
4980
4981 * nsterm.m (fd_handler:): Alloc and release a NSAutoreleasePool in
4982 the loop (Bug#12247).
4983
4984 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
4985
4986 * lisp.h (vcopy): Use memcpy rather than our own loop.
4987 This fixes a performance regression introduced by the recent
4988 addition of vcopy. This means 'vcopy' will need to be modified
4989 for a copying collector, but that's OK. Also, tighten the
4990 checking in the assertion.
4991
4992 2012-08-21 Eli Zaretskii <eliz@gnu.org>
4993
4994 * w32uniscribe.c (uniscribe_shape): Fix producing gstring
4995 components for RTL text (Bug#11860). Adjust X-OFFSET of each
4996 non-base glyph for the width of the base character, according to
4997 what x_draw_composite_glyph_string_foreground expects.
4998 Generate WADJUST value according to composition_gstring_width's
4999 expectations, to produce correct width of the composed character.
5000 Reverse the sign of the DU offset produced by ScriptPlace.
5001
5002 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
5003
5004 * dbusbind.c (xd_remove_watch): Do not assume C99 comments.
5005
5006 2012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
5007
5008 Avoid direct writes to contents member of struct Lisp_Vector.
5009 * lisp.h (vcopy): New function to copy data into vector.
5010 * dispnew.c (Fframe_or_buffer_changed_p): Use AREF and ASET.
5011 * fns.c (Ffillarray): Use ASET.
5012 * keyboard.c (timer_check_2): Use AREF and ASET.
5013 (append_tool_bar_item, Frecent_keys): Use vcopy.
5014 * lread.c (read_vector): Use ASET.
5015 * msdos.c (Frecent_doskeys): Use vcopy.
5016 * xface.c (Finternal_copy_lisp_face): Use vcopy.
5017 (Finternal_merge_in_global_face): Use ASET and vcopy.
5018 * xfont.c (xfont_list_pattern): Likewise.
5019
5020 2012-08-21 Martin Rudalics <rudalics@gmx.at>
5021
5022 * window.c (Fwindow_point): For the selected window always return
5023 the position of its buffer's point.
5024 (Fset_window_point): For the selected window always go in its
5025 buffer to the specified position.
5026
5027 2012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
5028
5029 Setter macros for fontsets.
5030 * fontset.c (SET_FONTSET_ID, SET_FONTSET_NAME, SET_FONTSET_ASCII)
5031 (SET_FONTSET_BASE, SET_FONTSET_FRAME, SET_FONTSET_NOFONT_FACE)
5032 (SET_FONTSET_DEFAULT, SET_FONTSET_FALLBACK): New macros.
5033 Adjust users.
5034
5035 2012-08-20 Glenn Morris <rgm@gnu.org>
5036
5037 * Makefile.in (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
5038 Don't assume that `ln -f' works.
5039
5040 2012-08-20 Eli Zaretskii <eliz@gnu.org>
5041
5042 * .gdbinit: Use "set $dummy = ..." to avoid warnings from GDB 7.5
5043 and later about non-assignments with no effect. See discussion at
5044 http://sourceware.org/ml/gdb-patches/2012-08/msg00518.html for
5045 details.
5046
5047 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
5048
5049 Inline setter functions for Lisp_Objects slots of struct specbinding.
5050 * eval.c (set_specpdl_symbol, set_specpdl_old_value): New functions.
5051 Adjust users.
5052
5053 2012-08-20 Martin Rudalics <rudalics@gmx.at>
5054
5055 * window.c (select_window): Always make selected window's buffer
5056 current.
5057
5058 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
5059
5060 Use AREF and ASET for docstrings of category tables.
5061 * category.h (CATEGORY_DOCSTRING): Use AREF.
5062 (SET_CATEGORY_DOCSTRING): Use ASET.
5063 * category.c (Fdefine_category): Use SET_CATEGORY_DOCSTRING.
5064
5065 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
5066
5067 Inline setter functions for hash table members.
5068 * lisp.h (set_hash_key, set_hash_value, set_hash_next)
5069 (set_hash_hash, set_hash_index): Rename with _slot suffix.
5070 (set_hash_key_and_value, set_hash_index, set_hash_next)
5071 (set_hash_hash): New functions.
5072 * charset.c, fns.c: Adjust users.
5073
5074 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
5075
5076 Inline getter and setter functions for per-buffer values.
5077 * buffer.h (per_buffer_default, set_per_buffer_default)
5078 (per_buffer_value, set_per_buffer_value): New functions.
5079 (PER_BUFFER_VALUE, PER_BUFFER_DEFAULT): Remove.
5080 * buffer.c, data.c: Adjust users.
5081
5082 2012-08-20 Juanma Barranquero <lekktu@gmail.com>
5083
5084 * makefile.w32-in ($(BLD)/vm-limit.$(O)): Update dependencies.
5085
5086 2012-08-19 Paul Eggert <eggert@cs.ucla.edu>
5087
5088 Rely on <config.h> + <unistd.h> to declare 'environ',
5089 as gnulib does this if the system doesn't.
5090 * callproc.c, editfns.c, process.c (environ) [!USE_CRT_DLL]:
5091 Remove declaration. MS-Windows declares it on stdlib.h which is
5092 included by conf_post.h.
5093 * emacs.c (environ) [DOUG_LEA_MALLOC]:
5094 * vm-limit.c (environ) [ORDINARY_LINK]: Remove decl.
5095 * vm-limit.c: Include <unistd.h>, for 'environ'.
5096
5097 * unexaix.c, unexcoff.c: Include "mem-limits.h".
5098 (start_of_data): Remove decl; mem-limits.h provides it.
5099
5100 * xdisp.c (handle_invisible_prop): Make it a bit faster
5101 and avoid a gcc -Wmaybe-uninitialized diagnostic.
5102
5103 2012-08-19 Chong Yidong <cyd@gnu.org>
5104
5105 * xdisp.c (handle_invisible_prop): Fix ellipses at overlay string
5106 ends (Bug#3874).
5107
5108 2012-08-19 Andreas Schwab <schwab@linux-m68k.org>
5109
5110 * .gdbinit: Use call instead of set when calling a function in the
5111 inferior.
5112
5113 * data.c (set_internal): Don't use set_blv_found.
5114 (Fkill_local_variable): Likewise.
5115
5116 2012-08-18 Alp Aker <alp.tekin.aker@gmail.com>
5117
5118 * nsfont.m (ns_ascii_average_width): Ensure the string
5119 ascii_printable is initialized with a null-terminated character
5120 array. Otherwise, it can contain undesired extra characters.
5121
5122 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
5123
5124 port new setting code to Sun C 5.8 2005/10/13
5125 * chartab.c, lisp.h (char_table_set, char_table_set_range):
5126 Return void, not Lisp_Object. Otherwise, the compiler
5127 complains about (A?B:C) where B is void and C is Lisp_Object
5128 when compiling CHAR_TABLE_SET, due to the recent change to
5129 the API of sub_char_table_set_contents.
5130
5131 2012-08-18 Chong Yidong <cyd@gnu.org>
5132
5133 * xdisp.c (handle_invisible_prop): Obey TEXT_PROP_MEANS_INVISIBLE
5134 for the string case (Bug#3874).
5135
5136 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
5137
5138 * buffer.h (BSET): Remove (Bug#12215).
5139 Replace all uses with calls to new setter functions.
5140 (bset_bidi_paragraph_direction, bset_case_canon_table)
5141 (bset_case_eqv_table, bset_directory, bset_display_count)
5142 (bset_display_time, bset_downcase_table)
5143 (bset_enable_multibyte_characters, bset_filename, bset_keymap)
5144 (bset_last_selected_window, bset_local_var_alist)
5145 (bset_mark_active, bset_point_before_scroll, bset_read_only)
5146 (bset_truncate_lines, bset_undo_list, bset_upcase_table)
5147 (bset_width_table):
5148 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
5149 (bset_auto_fill_function, bset_auto_save_file_format)
5150 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
5151 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
5152 (bset_cache_long_line_scans, bset_case_fold_search)
5153 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
5154 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
5155 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
5156 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
5157 (bset_header_line_format, bset_indicate_buffer_boundaries)
5158 (bset_indicate_empty_lines, bset_invisibility_spec)
5159 (bset_left_fringe_width, bset_major_mode, bset_mark)
5160 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
5161 (bset_name, bset_overwrite_mode, bset_pt_marker)
5162 (bset_right_fringe_width, bset_save_length)
5163 (bset_scroll_bar_width, bset_scroll_down_aggressively)
5164 (bset_scroll_up_aggressively, bset_selective_display)
5165 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
5166 (bset_word_wrap, bset_zv_marker):
5167 * category.c (bset_category_table):
5168 * syntax.c (bset_syntax_table):
5169 New setter functions.
5170
5171 * process.h (PSET): Remove (Bug#12215).
5172 Replace all uses with calls to new setter functions.
5173 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
5174 (PROCESS_INLINE): New macro.
5175 (pset_childp): New setter function.
5176 (pset_gnutls_cred_type) [HAVE_GNUTLS]: New setter function.
5177 * process.c (PROCESS_INLINE):
5178 Define to EXTERN_INLINE, so that the corresponding functions
5179 are compiled into code.
5180 (pset_buffer, pset_command, pset_decode_coding_system)
5181 (pset_decoding_buf, pset_encode_coding_system)
5182 (pset_encoding_buf, pset_filter, pset_log, pset_mark, pset_name)
5183 (pset_plist, pset_sentinel, pset_status, pset_tty_name)
5184 (pset_type, pset_write_queue): New setter functions.
5185
5186 * window.h (WSET): Remove (Bug#12215).
5187 Replace all uses with calls to new setter functions.
5188 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
5189 (WINDOW_INLINE): New macro.
5190 (wset_buffer, wset_frame, wset_left_col, wset_next, wset_prev)
5191 (wset_redisplay_end_trigger, wset_top_line, wset_total_cols)
5192 (wset_total_lines, wset_vertical_scroll_bar)
5193 (wset_window_end_pos, wset_window_end_valid)
5194 (wset_window_end_vpos): New setter functions.
5195 * window.c (WINDOW_INLINE):
5196 Define to EXTERN_INLINE, so that the corresponding functions
5197 are compiled into code.
5198 (wset_combination_limit, wset_dedicated, wset_display_table)
5199 (wset_hchild, wset_left_fringe_width, wset_left_margin_cols)
5200 (wset_new_normal, wset_new_total, wset_next_buffers)
5201 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
5202 (wset_prev_buffers, wset_right_fringe_width)
5203 (wset_right_margin_cols, wset_scroll_bar_width, wset_start)
5204 (wset_temslot, wset_vchild, wset_vertical_scroll_bar_type)
5205 (wset_window_parameters):
5206 * xdisp.c (wset_base_line_number, wset_base_line_pos)
5207 (wset_column_number_displayed, wset_region_showing):
5208 New setter functions.
5209
5210 * termhooks.h (TSET): Remove (Bug#12215).
5211 Replace all uses with calls to new setter functions.
5212 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
5213 (TERMHOOKS_INLINE): New macro.
5214 (tset_charset_list, tset_selection_alist): New setter functions.
5215 * terminal.c (TERMHOOKS_INLINE):
5216 Define to EXTERN_INLINE, so that the corresponding functions
5217 are compiled into code.
5218 (tset_param_alist): New setter function.
5219
5220 2012-08-17 Paul Eggert <eggert@cs.ucla.edu>
5221
5222 * keyboard.h (KSET): Remove (Bug#12215).
5223 Replace all uses with calls to new setter functions.
5224 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
5225 (KEYBOARD_INLINE): New macro.
5226 (kset_default_minibuffer_frame, kset_defining_kbd_macro)
5227 (kset_input_decode_map, kset_last_command, kset_last_kbd_macro)
5228 (kset_prefix_arg, kset_system_key_alist, kset_window_system):
5229 New setter functions.
5230 * keyboard.c (KEYBOARD_INLINE):
5231 Define to EXTERN_INLINE, so that the corresponding functions
5232 are compiled into code.
5233 (kset_echo_string, kset_kbd_queue)
5234 (kset_keyboard_translate_table, kset_last_prefix_arg)
5235 (kset_last_repeatable_command, kset_local_function_key_map)
5236 (kset_overriding_terminal_local_map, kset_real_last_command)
5237 (kset_system_key_syms): New setter functions.
5238
5239 * frame.h (FSET): Remove (Bug#12215).
5240 Replace all uses with calls to new setter functions.
5241 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
5242 (FRAME_INLINE): New macro.
5243 (fset_buffer_list, fset_buried_buffer_list, fset_condemned_scroll_bars)
5244 (fset_current_tool_bar_string, fset_desired_tool_bar_string)
5245 (fset_face_alist, fset_focus_frame, fset_icon_name, fset_menu_bar_items)
5246 (fset_menu_bar_vector, fset_menu_bar_window, fset_name)
5247 (fset_param_alist, fset_root_window, fset_scroll_bars)
5248 (fset_selected_window, fset_title, fset_tool_bar_items)
5249 (fset_tool_bar_position, fset_tool_bar_window): New functions.
5250 * frame.c (FRAME_INLINE):
5251 Define to EXTERN_INLINE, so that the corresponding functions
5252 are compiled into code.
5253 (fset_buffer_predicate, fset_minibuffer_window): New setter functions.
5254
5255 A few more naming-convention fixes for getters and setters.
5256 * buffer.c (set_buffer_overlays_before): Move here from buffer.h,
5257 and rename from buffer_overlays_set_before.
5258 (set_buffer_overlays_after): Move here from buffer.h, and rename
5259 from buffer_overlays_set_after.
5260 * buffer.h (buffer_intervals): Rename from buffer_get_intervals.
5261 All uses changed.
5262 (set_buffer_intervals): Rename from buffer_set_intervals.
5263 * intervals.c (set_interval_object): Move here from intervals.h,
5264 and rename from interval_set_object.
5265 (set_interval_left): Move here from intervals.h, and rename from
5266 interval_set_left.
5267 (set_interval_right): Move here from intervals.h, and rename from
5268 interval_set_right.
5269 (copy_interval_parent): Move here from intervals.h, and rename from
5270 interval_copy_parent.
5271 * intervals.h (set_interval_parent): Rename from interval_set_parent.
5272 (set_interval_plist): Rename from interval_set_plist.
5273 Return void, not Lisp_Object, since no caller uses the result.
5274 * lisp.h (string_intervals): Rename from string_get_intervals.
5275 (set_string_intervals): Rename from string_set_intervals.
5276
5277 * lisp.h (set_char_table_extras): Rename from char_table_set_extras.
5278 (set_char_table_contents): Rename from char_table_set_contents.
5279 (set_sub_char_table_contents): Rename from sub_char_table_set_contents.
5280 All uses changed. See the end of
5281 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00549.html>.
5282
5283 * lisp.h (CSET): Remove (Bug#12215).
5284 (set_char_table_ascii, set_char_table_defalt, set_char_table_parent)
5285 (set_char_table_purpose): New functions,
5286 replacing CSET. All uses changed. For example, replace
5287 "CSET (XCHAR_TABLE (char_table), parent, parent);" with
5288 "set_char_table_parent (char_table, parent);".
5289 The old version was confusing because it used the same name
5290 'parent' for two different things.
5291
5292 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
5293
5294 Functions to get and set Lisp_Object fields of buffer-local variables.
5295 * lisp.h (blv_found, set_blv_found, blv_value, set_blv_value)
5296 (set_blv_where, set_blv_defcell, set_blv_valcell): New functions.
5297 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): Remove.
5298 * data.c, eval.c, frame.c: Adjust users.
5299
5300 2012-08-17 Chong Yidong <cyd@gnu.org>
5301
5302 * xfaces.c (merge_face_vectors): If the target font specfies a
5303 font spec, make the font's attributes take precedence over
5304 directly-specified attributes.
5305 (merge_face_ref): Recognize :font.
5306
5307 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
5308
5309 Do not use memcpy for copying intervals.
5310 * intervals.c (reproduce_interval): New function.
5311 (reproduce_tree, reproduce_tree_obj): Use it.
5312 (reproduce_tree_obj): Remove prototype.
5313
5314 2012-08-17 Paul Eggert <eggert@cs.ucla.edu>
5315
5316 * lisp.h (duration_to_sec_usec): Remove unused decl.
5317
5318 2012-08-17 Alp Aker <alp.tekin.aker@gmail.com>
5319
5320 * nsfont.m (ns_ascii_average_width): Send initWithFormat selector
5321 to an allocated instance of NSString, not to the class itself.
5322
5323 2012-08-17 Juanma Barranquero <lekktu@gmail.com>
5324
5325 * makefile.w32-in (C_CTYPE_H): New macro.
5326 (LISP_H, $(BLD)/ccl.$(O), $(BLD)/doc.$(O), $(BLD)/w32console.$(O)):
5327 ($(BLD)/fontset.$(O), $(BLD)/frame.$(O), $(BLD)/composite.$(O)):
5328 ($(BLD)/sysdep.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
5329
5330 2012-08-16 Paul Eggert <eggert@cs.ucla.edu>
5331
5332 Use ASCII tests for character types.
5333 * category.c, dispnew.c, doprnt.c, editfns.c, syntax.c, term.c:
5334 * xfns.c, xterm.c:
5335 Don't include <ctype.h>; was not needed.
5336 * charset.c, doc.c, fileio.c, font.c, frame.c, gtkutil.c, image.c:
5337 * sysdep.c, xfaces.c:
5338 Include <c-ctype.h> instead of <ctype.h>.
5339 * nsterm.m: Include <c-ctype.h>.
5340 * charset.c (read_hex):
5341 * doc.c (Fsnarf_documentation):
5342 * fileio.c (IS_DRIVE) [WINDOWSNT]:
5343 (DRIVE_LETTER) [DOS_NT]:
5344 (Ffile_name_directory, Fexpand_file_name)
5345 (Fsubstitute_in_file_name):
5346 * font.c (font_parse_xlfd, font_parse_fcname):
5347 * frame.c (x_set_font_backend):
5348 * gtkutil.c (xg_get_font):
5349 * image.c (xbm_scan, xpm_scan, pbm_scan_number):
5350 * nsimage.m (hexchar):
5351 * nsterm.m (ns_xlfd_to_fontname):
5352 * sysdep.c (system_process_attributes):
5353 * xfaces.c (hash_string_case_insensitive):
5354 Use C-locale tests instead of locale-specific tests for character
5355 types, since we want the ASCII interpretation here, not the
5356 interpretation suitable for whatever happens to be the current locale.
5357
5358 2012-08-16 Martin Rudalics <rudalics@gmx.at>
5359
5360 Consistently check windows for validity/liveness
5361 (Bug#11984, Bug#12025, Bug#12026).
5362 * lisp.h (CHECK_VALID_WINDOW): New macro.
5363 * window.c (decode_window): Rename to decode_live_window.
5364 (decode_valid_window, Fwindow_valid_p): New functions.
5365 (Fwindow_frame, Fframe_root_window, Fwindow_minibuffer_p)
5366 (Fframe_first_window, Fframe_selected_window, Fwindow_parent)
5367 (Fwindow_top_child, Fwindow_left_child, Fwindow_next_sibling)
5368 (Fwindow_prev_sibling, Fwindow_combination_limit)
5369 (Fset_window_combination_limit, Fwindow_use_time)
5370 (Fwindow_total_height, Fwindow_total_width, Fwindow_new_total)
5371 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_left_column)
5372 (Fwindow_top_line, Fwindow_body_height, Fwindow_body_width)
5373 (Fwindow_hscroll, Fset_window_hscroll)
5374 (Fwindow_redisplay_end_trigger)
5375 (Fset_window_redisplay_end_trigger, Fwindow_edges)
5376 (Fwindow_pixel_edges, Fwindow_absolute_pixel_edges)
5377 (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
5378 (Fcoordinates_in_window_p, Fwindow_point, Fwindow_start)
5379 (Fwindow_end, Fset_window_point, Fset_window_start)
5380 (Fpos_visible_in_window_p, Fwindow_line_height)
5381 (Fwindow_dedicated_p, Fset_window_dedicated_p)
5382 (Fwindow_prev_buffers, Fset_window_prev_buffers)
5383 (Fwindow_next_buffers, Fwindow_parameters, Fwindow_parameter)
5384 (Fset_window_parameter, Fwindow_display_table)
5385 (Fset_window_display_table, Fdelete_other_windows_internal)
5386 (Fset_window_buffer, Fset_window_new_total)
5387 (Fset_window_new_normal, Fdelete_window_internal)
5388 (Fwindow_text_height, Fset_window_margins, Fwindow_margins)
5389 (Fset_window_fringes, Fwindow_fringes, Fset_window_scroll_bars)
5390 (Fwindow_scroll_bars): Check whether argument window is a valid or
5391 live window. Update doc-strings.
5392 (syms_of_window): New symbol Qwindow_valid_p.
5393 * keyboard.c (Fposn_at_x_y): Check whether argument
5394 frame_or_window denotes a valid window.
5395
5396 2012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
5397
5398 Fix previous char table change.
5399 * lisp.h (CHAR_TABLE_SET): Use sub_char_table_set_contents.
5400 * chartab.c (optimize_sub_char_table): Likewise.
5401
5402 2012-08-16 Chong Yidong <cyd@gnu.org>
5403
5404 * gtkutil.c (xg_get_font): Demand an Xft font (Bug#3228).
5405
5406 * xfont.c (xfont_open):
5407 * xftfont.c (xftfont_open): Set the font's max_width field.
5408
5409 * nsfont.m (nsfont_open): Similar to the Xft backend, set
5410 min_width to space_width and average_width to the average over
5411 printable ASCII characters.
5412 (ns_char_width): Code cleanup.
5413 (ns_ascii_average_width): New utility function.
5414
5415 * font.h (struct font): Update comments.
5416
5417 2012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
5418
5419 Simple interface to set Lisp_Object fields of character tables.
5420 * lisp.h (CSET): New macro.
5421 (char_table_set_extras, char_table_set_contents)
5422 (sub_char_table_set_contents): New function.
5423 * casetab.c, category.c, chartab.c, fns.c, fontset.c, search.c:
5424 * syntax.c: Adjust users.
5425
5426 2012-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
5427
5428 * eval.c (eval_sub): Bind lexical-binding.
5429 * lread.c (Qlexical_binding): Make non-static.
5430
5431 2012-08-15 Jan Djärv <jan.h.d@swipnet.se>
5432
5433 * nsmenu.m (popupSession): Remove.
5434 (pop_down_menu): Remove endModalSession.
5435 (timeout_handler:): New method.
5436 (runDialogAt:): Get next timeout. Start a NSTimer with that timeout.
5437 Call runModalForWindow. Check timer_fired when it returns.
5438 If not set, cancel timer and break out of loop.
5439 Otherwise loop again, with a new timeout.
5440
5441 * nsterm.m: Include fcntl.h if present.
5442 (fd_entry, t_readfds, inNsSelect): Remove.
5443 (select_writefds, select_valid, select_timeout, selfds)
5444 (select_mutex, apploopnr): Add.
5445 (EV_TRAILER): Call kbd_buffer_store_event_hold only if q_event_ptr.
5446 Otherwise call kbd_buffer_store_event.
5447 (ns_send_appdefined): Remove release of fd_entry.
5448 (ns_read_socket): Always send appdefined. Remove inNsSelect check.
5449 Increment and decrement apploopnr.
5450 (ns_select): If no file descriptors, just do a NSTimer.
5451 Otherwise copy read/write masks and start select thread (fd_handler).
5452 Start main loop and wait for application defined event.
5453 Inform select thread to stop selecting after main loop is exited.
5454 (ns_term_init): Create selfds pipe and set non-blocking.
5455 Initialize select_mutex. Start the select thread (fd_handler).
5456 (fd_handler:): Loop forever, wait for info from the main thread
5457 to either start or stop selecting. When select returns, send
5458 and appdefined event.
5459 (sendScrollEventAtLoc:fromEvent:): Check if q_event_ptr is set.
5460 If not call kbd_buffer_store_event.
5461
5462 * nsterm.h (EmacsApp): fd_handler takes id argument.
5463 (EmacsDialogPanel): Add timer_fired and timeout_handler.
5464
5465 * gtkutil.c (xg_mark_data): Use FRAME_X_P.
5466
5467 2012-08-15 Eli Zaretskii <eliz@gnu.org>
5468
5469 * region-cache.c (move_cache_gap): Update gap_len using the actual
5470 growth of the boundaries array. Do not change cache_len.
5471 (Bug#12196)
5472
5473 2012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
5474
5475 Generalize and cleanup font subsystem checks.
5476 * font.h (FONT_DEBUG, font_assert): Remove.
5477 * font.c, fontset.c, w32font.c, xfont.c, xftfont.c:
5478 Change font_assert to eassert. Use eassert where appropriate.
5479
5480 2012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
5481
5482 * gtkutil.c (xg_get_font): Use pango_units_to_double.
5483
5484 2012-08-15 Chong Yidong <cyd@gnu.org>
5485
5486 * gtkutil.c (xg_get_font): Rename from xg_get_font_name.
5487 When using the new font chooser, use gtk_font_chooser_get_font_desc to
5488 extract the font descriptor instead of just the font name.
5489 In that case, return a font spec instead of a string.
5490 (x_last_font_name): Move to this file from xfns.c.
5491
5492 * xfns.c (Fx_select_font): The return value can also be a font
5493 spec. Move x_last_font_name management to gtkutil.c.
5494
5495 * xfaces.c: Make font weight and style symbols non-static.
5496
5497 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
5498
5499 * minibuf.c (read_minibuf): Ignore caller's inhibit-read-only
5500 (bug#12117).
5501
5502 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
5503
5504 * alloc.c (Fgarbage_collect): Use plural form consistently.
5505
5506 2012-08-14 Eli Zaretskii <eliz@gnu.org>
5507
5508 * keyboard.c (command_loop_1): Reset ignore_mouse_drag_p flag each
5509 iteration through the command loop. Fixes a problem whereby mouse
5510 movements are ignored until the first mouse click.
5511
5512 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
5513
5514 Use bool, not int, for Lisp booleans.
5515 This is more natural, and on my platform (GCC 4.7.1 x86-64) it
5516 makes Emacs a bit smaller and presumably a bit faster.
5517 * lisp.h: Include <stdbool.h>.
5518 (struct Lisp_Boolfwd, defvar_bool):
5519 * lread.c (defvar_bool): Use bool, not int, for Lisp booleans.
5520 * regex.c [!emacs]: Include <stdbool.h>.
5521 (false, true): Remove; <stdbool.h> does this for us now.
5522
5523 2012-08-14 Chong Yidong <cyd@gnu.org>
5524
5525 * character.c (Fcharacterp): Doc fix (Bug#12076).
5526
5527 * data.c (Findirect_variable): Doc fix (Bug#11040).
5528
5529 * chartab.c (Fmap_char_table): Doc fix (Bug#12061).
5530
5531 * editfns.c (Fformat): Doc fix (Bug#12059).
5532 (Fsave_current_buffer): Doc fix (Bug#11542).
5533
5534 2012-08-14 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
5535
5536 * keyboard.c (access_keymap_keyremap): Accept anonymous functions
5537 (bug#12022).
5538
5539 2012-08-14 Martin Rudalics <rudalics@gmx.at>
5540
5541 * frame.c (make_frame_without_minibuffer, make_minibuffer_frame)
5542 (delete_frame, Fmake_frame_invisible, Ficonify_frame):
5543 * minibuf.c (choose_minibuf_frame, read_minibuf):
5544 * w32fns.c (x_create_tip_frame):
5545 * xfns.c (x_create_tip_frame): Call set_window_buffer instead of
5546 Fset_window_buffer (Bug#11984, Bug#12025, Bug#12026).
5547
5548 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
5549
5550 * intervals.c (offset_intervals): Remove obsolete comment.
5551
5552 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
5553
5554 * gtkutil.c (find_rtl_image, update_frame_tool_bar): Use NILP.
5555
5556 2012-08-14 Gergely Risko <gergely@risko.hu>
5557
5558 * coding.c (decode_coding): Record buffer modification before
5559 disabling undo_list (Bug#11773).
5560
5561 2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
5562
5563 Revert and cleanup some recent overlay changes.
5564 * buffer.h (enum overlay_type): Remove.
5565 (buffer_get_overlays, buffer_set_overlays): Likewise.
5566 (buffer_set_overlays_before, buffer_set_overlays_after):
5567 New function. Adjust users.
5568 (unchain_both): Add eassert.
5569
5570 2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
5571
5572 * gtkutil.c (update_frame_tool_bar): Use EQ where appropriate.
5573
5574 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
5575
5576 * gtkutil.c (xg_mark_data): Don't assume C99.
5577
5578 2012-08-13 Jan Djärv <jan.h.d@swipnet.se>
5579
5580 * gtkutil.c (xg_frame_tb_info): New struct.
5581 (TB_INFO_KEY): New define.
5582 (xg_free_frame_widgets): Free xg_frame_tb_info for frame if present.
5583 (xg_mark_data): Mark Lisp_Objects in xg_frame_tb_info.
5584 (xg_create_tool_bar): Allocate and initialize a xg_frame_tb_info
5585 if not present.
5586 (update_frame_tool_bar): Return early if data in xg_frame_tb_info
5587 is up to date. Otherwise store new data.
5588 (free_frame_tool_bar): Free xg_frame_tb_info if present.
5589
5590 2012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
5591
5592 Use KSET for write access to Lisp_Object members of struct kboard.
5593 * keyboard.h (KSET): New macro.
5594 * callint.c, category.c, frame.c, keyboard.c, keyboard.h, macros.c:
5595 * msdos.c, nsfns.m, nsterm.m, term.c, w32fns.c, w32term.c, xfns.c:
5596 * xterm.c: Adjust users.
5597
5598 2012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
5599
5600 Use BSET for write access to Lisp_Object members of struct buffer.
5601 * buffer.h (BSET): New macro.
5602 * buffer.c, casetab.c, cmds.c, coding.c, data.c, editfns.c:
5603 * fileio.c, frame.c, indent.c, insdel.c, intervals.c, keymap.c:
5604 * minibuf.c, print.c, process.c, syntax.c, undo.c, w32fns.c:
5605 * window.c, xdisp.c, xfns.c: Adjust users.
5606
5607 2012-08-11 BT Templeton <bpt@hcoop.net> (tiny change)
5608
5609 * lread.c (syms_of_lread): Initialize Vlexical_binding.
5610
5611 2012-08-11 Jan Djärv <jan.h.d@swipnet.se>
5612
5613 * nsterm.m (not_in_argv): New function.
5614 (application:openFile, application:openTempFile:):
5615 (application:openFileWithoutUI:, application:openFiles:): Open file
5616 if not_in_argv returns non-zero (bug#12171).
5617
5618 * gtkutil.c (gtk_font_chooser_dialog_new, GTK_FONT_CHOOSER)
5619 (gtk_font_chooser_set_font, gtk_font_chooser_get_font):
5620 Define for Gtk+ versions less than 3.2.
5621 (xg_get_font_name): Use those functions/macros here.
5622 Reported by Frans Oilinki <moilinki@gmail.com>.
5623
5624 2012-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5625
5626 * unexmacosx.c (copy_data_segment): Copy initialized data in
5627 statically linked libraries from input file rather than memory.
5628
5629 * unexmacosx.c (print_load_command_name): Add cases LC_MAIN,
5630 LC_SOURCE_VERSION, and LC_DYLIB_CODE_SIGN_DRS.
5631 (dump_it) [LC_DYLIB_CODE_SIGN_DRS]: Call copy_linkedit_data.
5632
5633 2012-08-10 Glenn Morris <rgm@gnu.org>
5634
5635 * conf_post.h (IF_LINT, lint_assume): Move here from lisp.h.
5636 * lisp.h (IF_LINT, lint_assume): Move to conf_post.h.
5637
5638 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
5639
5640 Fix last change to allow compilation with low optimization levels.
5641 * intervals.c (INTERVALS_INLINE): Define to EXTERN_INLINE.
5642 Reported by Jan Djärv <jan.h.d@swipnet.se>.
5643
5644 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
5645
5646 Use common inline syntax in intervals.h.
5647 * intervals.h (INTERVALS_INLINE): New macro.
5648 Change all users from LISP_INLINE.
5649
5650 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
5651
5652 Define Qnone once for all platforms.
5653 * frame.c (Qnone): Define here.
5654 (syms_of_frame): DEFSYM it.
5655 * lisp.h (Qnone): New declaration.
5656 * nsfns.m, nsterm.h, nsterm.m, w32fns.c, w32font.c:
5657 * xfns.c: Remove duplication. Adjust users.
5658
5659 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
5660
5661 Remove unused macros from intervals.h.
5662 * intervals.h (MERGE_INSERTIONS, DISPLAY_INVISIBLE_GLYPH): Remove.
5663 * intervals.c: Adjust comment.
5664
5665 2012-08-10 Eli Zaretskii <eliz@gnu.org>
5666
5667 * w32fns.c <w32_unicode_gui>: New static variable.
5668 (globals_of_w32fns): Initialize it according to os_subtype.
5669 (w32_init_class, w32_msg_pump, w32_wnd_proc): Use it instead of
5670 testing os_subtype.
5671
5672 2012-08-10 Joakim Hårsman <joakim.harsman@gmail.com> (tiny change)
5673 Eli Zaretskii <eliz@gnu.org>
5674
5675 Fix bug #10299 with Unicode characters sent by customized
5676 keyboards created by MSKLC.
5677 * w32fns.c (INIT_WINDOW_CLASS): New macro.
5678 (w32_init_class): Use it to initialize the Emacs class with either
5679 ANSI or Unicode API calls.
5680 (w32_msg_pump): Call GetMessageW and DispatchMessageW on NT and
5681 later.
5682 (w32_wnd_proc): If the character code sent by WM_CHAR or
5683 WM_SYSCHAR is above 255, post a WM_UNICHAR message, not the
5684 original message. Call DefWindowProcW on NT and later.
5685
5686 2012-08-10 Glenn Morris <rgm@gnu.org>
5687
5688 * Makefile.in (config_h): Fix conf_post.h out-of-tree build location.
5689
5690 * lisp.h (DIRECTORY_SEP): Let configure set it.
5691
5692 2012-08-09 Dmitry Antipov <dmantipov@yandex.ru>
5693
5694 Use TSET for write access to Lisp_Object slots of struct terminal.
5695 * termhooks.h (TSET): New macro.
5696 * coding.c, terminal.c, xselect.c: Adjust users.
5697
5698 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
5699
5700 * xdisp.c (safe_eval_handler): Remove prototype. Receive args describing
5701 the failing expression, include them in the error message.
5702 * eval.c (internal_condition_case_n): Pass nargs and args to hfun.
5703 * lisp.h (internal_condition_case_n): Update declaration.
5704
5705 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
5706
5707 Inline functions to examine and change buffer overlays.
5708 * buffer.c (unchain_both): New function.
5709 * buffer.h (buffer_get_overlays, buffer_set_overlays):
5710 (buffer_has_overlays): New function.
5711 (enum overlay_type): New enum.
5712 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c:
5713 * insdel.c, intervals.c, print.c, xdisp.c: Adjust users.
5714
5715 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
5716
5717 Inline functions to examine and change buffer intervals.
5718 * alloc.c (mark_interval_tree): Remove.
5719 (MARK_INTERVAL_TREE): Simplify.
5720 (UNMARK_BALANCE_INTERVALS): Remove. Adjust users.
5721 * intervals.c (buffer_balance_intervals): New function.
5722 (graft_intervals_into_buffer): Adjust indentation.
5723 (set_intervals_multibyte): Simplify.
5724 * buffer.h (BUF_INTERVALS): Remove.
5725 (buffer_get_intervals, buffer_set_intervals): New function.
5726 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c, insdel.c:
5727 * intervals.c, textprop.c: Adjust users.
5728
5729 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
5730
5731 Inline functions to examine and change string intervals.
5732 * lisp.h (STRING_INTERVALS, STRING_SET_INTERVALS): Remove.
5733 (string_get_intervals, string_set_intervals): New function.
5734 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
5735 * lread.c, print.c, textprop.c: Adjust users.
5736
5737 2012-08-08 Glenn Morris <rgm@gnu.org>
5738
5739 * lisp.mk (lisp): Remove language/persian.elc.
5740
5741 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
5742
5743 Cleanup intervals.
5744 * intervals.h (NULL_INTERVAL, DEFAULT_INTERVAL): Remove.
5745 (NULL_INTERVAL_P): Likewise. Adjust users.
5746 (FRONT_STICKY_P, END_NONSTICKY_P, FRONT_NONSTICKY_P):
5747 Adjust comment. Move under #if 0.
5748 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
5749 * print.c, syntax.c, textprop.c, xdisp.c: Adjust users.
5750
5751 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
5752
5753 Check total length of intervals with eassert.
5754 * intervals.h (CHECK_TOTAL_LENGTH): Remove.
5755 * intervals.c: Change all users to eassert.
5756
5757 2012-08-07 Eli Zaretskii <eliz@gnu.org>
5758
5759 * .gdbinit (xframe, xwindow, nextcons, xcar, xcdr, xlist):
5760 Rename fields to match removal of FGET and WGET and disuse of
5761 INTERNAL_FIELD in Lisp_Cons.
5762
5763 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
5764
5765 Revert and cleanup Lisp_Cons, Lisp_Misc and Lisp_Symbol things.
5766 * lisp.h (struct Lisp_Symbol): Change xname to meaningful
5767 name since all xname users are fixed long time ago. Do not
5768 use INTERNAL_FIELD.
5769 (set_symbol_name, set_symbol_function, set_symbol_plist):
5770 (set_symbol_next, set_overlay_plist): New function.
5771 (struct Lisp_Cons): Do not use INTERNAL_FIELD.
5772 (struct Lisp_Overlay): Likewise.
5773 (CVAR, MVAR, SVAR): Remove.
5774 * alloc.c, buffer.c, buffer.h, bytecode.c, cmds.c, data.c:
5775 * doc.c, eval.c, fns.c, keyboard.c, lread.c, nsselect.m:
5776 * xterm.c: Adjust users.
5777 * .gdbinit: Change to use name field of struct Lisp_Symbol
5778 where appropriate.
5779
5780 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
5781
5782 Basic functions to set Lisp_Object and pointer slots of intervals.
5783 * intervals.h (interval_set_parent, interval_set_object):
5784 (interval_set_left, interval_set_right, interval_set_plist):
5785 (interval_copy_parent): New function.
5786 (SET_INTERVAL_OBJECT, SET_INTERVAL_PARENT, INTERVAL_PTR_SIZE): Remove.
5787 (RESET_INTERVAL, COPY_INTERVAL_CACHE, MERGE_INTERVAL_CACHE):
5788 Adjust indentation.
5789 (INTERVAL_SIZE): Remove. Adjust users.
5790 * alloc.c, intervals.c, lread.c, textprop.c: Use new functions.
5791
5792 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
5793
5794 Drop PGET and revert read access to Lisp_Objects slots of Lisp_Process.
5795 * process.h (PGET): Remove.
5796 (struct Lisp_Process): Do not use INTERNAL_FIELD.
5797 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
5798
5799 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
5800
5801 Drop WGET and revert read access to Lisp_Objects slots of struct window.
5802 * window.h (WGET): Remove.
5803 (struct window): Do not use INTERNAL_FIELD.
5804 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
5805 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
5806 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
5807 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
5808 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
5809 Adjust users.
5810
5811 2012-08-07 Chong Yidong <cyd@gnu.org>
5812
5813 * window.c (Fwindow_edges, Fwindow_pixel_edges)
5814 (Fwindow_absolute_pixel_edges, Fdelete_other_windows_internal)
5815 (Fdelete_window_internal): Signal an error if the window is not on
5816 a live frame (Bug#12025).
5817
5818 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
5819
5820 Drop FGET and revert read access to Lisp_Objects slots of struct frame.
5821 * frame.h (FGET): Remove.
5822 (struct frame): Do not use INTERNAL_FIELD.
5823 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
5824 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
5825 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
5826 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
5827
5828 2012-08-06 Juanma Barranquero <lekktu@gmail.com>
5829
5830 * w32.c: Silence compiler warnings.
5831 (map_w32_filename): Remove unused variable `is_fat'.
5832 (chase_symlinks): Add parentheses around expression.
5833
5834 2012-08-06 Glenn Morris <rgm@gnu.org>
5835
5836 * sysdep.c: Respect BROKEN_GETWD.
5837
5838 * dispnew.c (GNU_LIBRARY_PENDING_OUTPUT_COUNT, PENDING_OUTPUT_COUNT):
5839 Let configure handle it.
5840 (stdio_ext.h) [DISPNEW_NEEDS_STDIO_EXT]: Include it.
5841
5842 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
5843
5844 Use GCALIGNMENT where appropriate.
5845 * alloc.c (XMALLOC_HEADER_ALIGNMENT, roundup_size):
5846 (union aligned_Lisp_Symbol, union aligned_Lisp_Misc):
5847 (mark_maybe_pointer, pure_alloc): Change to use GCALIGNMENT.
5848
5849 2012-08-06 Eli Zaretskii <eliz@gnu.org>
5850
5851 * w32menu.c (set_frame_menubar, initialize_frame_menubar):
5852 Don't use FRAME_MENU_BAR_ITEMS as an lvalue.
5853
5854 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
5855
5856 * buffer.h (struct buffer): Revert `indirections' to a simple int;
5857 that should be sufficient for everyone.
5858
5859 2012-08-06 Jan Djärv <jan.h.d@swipnet.se>
5860
5861 * keyboard.c (timer_check_2): Add break so timer_check returns next
5862 timeout.
5863
5864 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
5865
5866 Fix Windows build errors introduced after converting to WGET and WSET.
5867 * w32term.c (w32_set_vertical_scroll_bar): Change to use WSET.
5868 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
5869
5870 2012-08-06 Jan Djärv <jan.h.d@swipnet.se>
5871
5872 * nsterm.m (ns_frame_rehighlight): Use FSET.
5873
5874 * nsmenu.m (ns_update_menubar): Use FSET.
5875
5876 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
5877
5878 Separate read and write access to Lisp_Object slots of Lisp_Process.
5879 * process.h (PGET, PSET): New macros similar to AREF and ASET.
5880 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
5881
5882 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
5883
5884 Separate read and write access to Lisp_Object slots of struct window.
5885 * window.h (WGET, WSET): New macros similar to AREF and ASET.
5886 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
5887 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
5888 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
5889 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
5890 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
5891 Adjust users.
5892
5893 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
5894
5895 Fix Windows build errors introduced after converting to FGET and FSET.
5896 * w32term.c (x_frame_rehighlight, x_scroll_bar_create):
5897 (w32_condemn_scroll_bars, w32_redeem_scroll_bar):
5898 (w32_judge_scroll_bars): Change to use FSET.
5899 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
5900
5901 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
5902
5903 Fix replacement typo.
5904 * window.c (replace_window): Set root_window instead of
5905 selected_window. This fixes a total window subsystem
5906 malfunction reported by Bastien Guerry <bzg@gnu.org>.
5907
5908 2012-08-06 Glenn Morris <rgm@gnu.org>
5909
5910 * lisp.mk (lisp): Add language/persian.elc.
5911
5912 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
5913
5914 Separate read and write access to Lisp_Object slots of struct frame.
5915 * frame.h (FGET, FSET): New macros similar to AREF and ASET.
5916 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
5917 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
5918 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
5919 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
5920
5921 2012-08-05 Andreas Schwab <schwab@linux-m68k.org>
5922
5923 * emacs.c (decode_env_path): Only use defaulted if WINDOWSNT.
5924
5925 2012-08-05 Dmitry Antipov <dmantipov@yandex.ru>
5926
5927 Generalize common compile-time constants.
5928 * lisp.h (header_size, bool_header_size, word_size): Now here.
5929 (struct Lisp_Vector): Add comment.
5930 (struct Lisp_Bool_Vector): Move up to define handy constants.
5931 (VECSIZE, PSEUDOVECSIZE): Simplify.
5932 (SAFE_ALLOCA_LISP): Use new constant. Adjust indentation.
5933 * buffer.c, buffer.h, bytecode.c, callint.c, eval.c, fns.c:
5934 * font.c, fontset.c, keyboard.c, keymap.c, macros.c, menu.c:
5935 * msdos.c, w32menu.c, w32term.h, window.c, xdisp.c, xfaces.c:
5936 * xfont.c, xmenu.c: Use word_size where appropriate.
5937
5938 2012-08-05 Lawrence Mitchell <wence@gmx.li>
5939
5940 * search.c (Freplace_match): Treat \? in the replacement text
5941 literally (Bug#8161).
5942
5943 2012-08-05 Chong Yidong <cyd@gnu.org>
5944
5945 * term.c (Vsuspend_tty_functions, Vresume_tty_functions):
5946 * frame.c (Vdelete_frame_functions):
5947 * emacs.c (Vkill_emacs_hook): Doc fix.
5948
5949 2012-08-04 Eli Zaretskii <eliz@gnu.org>
5950
5951 * xfns.c (x_set_menu_bar_lines): Fix compilation error in
5952 --with-x-toolkit=no builds.
5953 Reported by Carsten Mattner <carstenmattner@gmail.com>.
5954
5955 2012-08-04 Chong Yidong <cyd@gnu.org>
5956
5957 * syntax.c (Fmodify_syntax_entry): Doc fix.
5958
5959 2012-08-04 Eli Zaretskii <eliz@gnu.org>
5960
5961 Fix startup warnings about ../site-lisp on MS-Windows. (Bug#11959)
5962 * w32.c (init_environment): Change the default values of many
5963 environment variables in dflt_envvars[] to NULL, to avoid pushing
5964 them into environment when they were not already defined.
5965 Remove the code that deletes site-lisp subdirectories from the default
5966 value of EMACSLOADPATH, as it is no longer needed.
5967 (check_windows_init_file): Now external, not static.
5968 Use Vload_path as is, without adding anything, as this function is now
5969 called when Vload_path is already set up.
5970
5971 * w32.h (check_windows_init_file): Add prototype.
5972
5973 * emacs.c (init_cmdargs) [WINDOWSNT]: When running from the build
5974 directory, ignore the /*/i386/ tail in Vinvocation_directory, for
5975 compatibility with Posix platforms.
5976 (main): Move the call to check_windows_init_file to here from
5977 w32.c.
5978 (decode_env_path) [WINDOWSNT]: Expand the %emacs_dir%/ prefix, if
5979 any, in the DEFALT argument into the root of the Emacs build or
5980 installation tree, as appropriate.
5981
5982 * callproc.c (init_callproc_1): Call decode_env_path instead of
5983 doing its equivalent by hand.
5984 (init_callproc): Replace DOS_NT condition with MSDOS, thus letting
5985 the code that sets Vexec_path run on MS-Windows.
5986
5987 * lread.c (init_lread): Add comments to #ifdef's.
5988
5989 * msdos.c (dos_set_window_size, IT_update_begin)
5990 (IT_frame_up_to_date, IT_set_frame_parameters): Use FVAR and WVAR
5991 instead of direct references.
5992
5993 2012-08-04 Paul Eggert <eggert@cs.ucla.edu>
5994
5995 Export DEFAULT_REHASH_* to GDB.
5996 * lisp.h (DEFAULT_REHASH_THRESHOLD, DEFAULT_REHASH_SIZE):
5997 Now constants, not macros.
5998
5999 2012-08-03 Paul Eggert <eggert@cs.ucla.edu>
6000
6001 Remove unnecessary casts involving pointers.
6002 These casts are no longer needed now that we assume C89 or later,
6003 since they involve casting to or from void *.
6004 * alloc.c (make_pure_string, make_pure_c_string, pure_cons)
6005 (make_pure_float, make_pure_vector):
6006 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP):
6007 * macros.c (Fstart_kbd_macro):
6008 * menu.c (find_and_return_menu_selection):
6009 * minibuf.c (read_minibuf_noninteractive):
6010 * sysdep.c (closedir):
6011 * xdisp.c (x_produce_glyphs):
6012 * xfaces.c (compare_fonts_by_sort_order):
6013 * xfns.c (x_real_positions, select_visual):
6014 * xselect.c (x_stop_queuing_selection_requests)
6015 (x_get_window_property, x_get_window_property_as_lisp_data):
6016 * xterm.c (x_set_frame_alpha, x_find_modifier_meanings):
6017 Remove unnecessary pointer casts.
6018 * alloc.c (record_xmalloc): New function.
6019 * lisp.h (record_xmalloc): New decl.
6020 (SAFE_ALLOCA): Now takes just one arg -- the size -- and acts
6021 more like a function. This is because the pointer cast is not
6022 needed. All uses changed.
6023 * print.c (print_string, print_error_message): Avoid length recalc.
6024
6025 Improve fix for macroexp crash with debugging (Bug#12118).
6026 * lisp.h (ASET) [ENABLE_CHECKING]: Pay attention to
6027 ARRAY_MARK_FLAG when checking subscripts, because ASET is
6028 not supposed to be invoked from the garbage collector.
6029 See Andreas Schwab in <http://bugs.gnu.org/12118#25>.
6030 (gc_aset): New function, which is like ASET but can be
6031 used in the garbage collector.
6032 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
6033 (set_hash_index): Use it instead of ASET.
6034
6035 2012-08-03 Eli Zaretskii <eliz@gnu.org>
6036
6037 Support symlinks on latest versions of MS-Windows.
6038 * w32.c: Include winioctl.h and aclapi.h.
6039 (is_symlink, chase_symlinks, enable_privilege, restore_privilege)
6040 (revert_to_self): Forward declarations of static functions.
6041 <static BOOL g_b_init_get_security_info>:
6042 <g_b_init_create_symbolic_link>: New static flags.
6043 (globals_of_w32): Initialize them to zero.
6044 (GetSecurityInfo_Proc, CreateSymbolicLink_Proc): New typedefs.
6045 (map_w32_filename): Improve commentary. Simplify switch.
6046 (SYMBOLIC_LINK_FLAG_DIRECTORY): Define if not defined in system
6047 headers (most versions of MinGW w32api don't).
6048 (get_security_info, create_symbolic_link)
6049 (get_file_security_desc_by_handle, is_symlink, chase_symlinks):
6050 New functions.
6051 (sys_access, sys_chmod): Call 'chase_symlinks' to resolve symlinks
6052 in the argument file name.
6053 (sys_access): Call unc_volume_file_attributes only if
6054 GetFileAttributes fails with network-related error codes.
6055 (sys_rename): Diagnose renaming of a symlink when the user doesn't
6056 have the required privileges.
6057 (get_file_security_desc_by_name): Rename from
6058 get_file_security_desc.
6059 (stat_worker): New function, with most of the guts of 'stat', and
6060 with addition of handling of symlinks and support for 'lstat'.
6061 If possible, get file's attributes and security information by
6062 handle, not by name. Produce S_IFLNK bit for symlinks, when
6063 called from 'lstat'.
6064 (stat, lstat): New functions, call 'stat_worker'.
6065 (symlink, readlink, careadlinkat): Rewritten to create and resolve
6066 symlinks when the underlying filesystem supports them.
6067
6068 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
6069
6070 Fix macroexp crash on Windows with debugging (Bug#12118).
6071 * lisp.h (ASET) [ENABLE_CHECKING]: Ignore ARRAY_MARK_FLAG when
6072 checking subscripts; problem introduced with the recent
6073 "ASET (a, i, v)" rather than "AREF (a, i) = v" patch.
6074 (ARRAY_MARK_FLAG): Now a macro as well as a constant,
6075 since it's used in non-static inline functions now.
6076
6077 * xfaces.c (face_at_buffer_position, face_for_overlay_string):
6078 Don't assume buffer size fits in 'int'. Remove unused local.
6079
6080 Use C99-style 'extern inline' if available.
6081 * buffer.h (BUFFER_INLINE):
6082 * category.h (CATEGORY_INLINE):
6083 * character.h (CHARACTER_INLINE):
6084 * charset.h (CHARSET_INLINE):
6085 * composite.h (COMPOSITE_INLINE):
6086 * dispextern.h (DISPEXTERN_INLINE):
6087 * lisp.h (LISP_INLINE):
6088 * systime.h (SYSTIME_INLINE):
6089 New macro, replacing 'static inline' in this header.
6090 * buffer.h, category.h, character.h, charset.h, composite.h:
6091 * dispextern.h, lisp.h, systime.h:
6092 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
6093 * alloc.c (LISP_INLINE):
6094 * buffer.c (BUFFER_INLINE):
6095 * category.c (CATEGORY_INLINE):
6096 * character.c (CHARACTER_INLINE):
6097 * charset.c (CHARSET_INLINE):
6098 * composite.c (COMPOSITE_INLINE):
6099 * dispnew.c (DISPEXTERN_INLINE):
6100 * sysdep.c (SYSTIME_INLINE):
6101 Define to EXTERN_INLINE, so that the corresponding functions
6102 are compiled into code.
6103 * conf_post.h (INLINE, EXTERN_INLINE, INLINE_HEADER_BEGIN)
6104 (INLINE_HEADER_END): New macros.
6105 * lisp.h (PSEUDOVECTOR_FLAG): Now a macro as well as a constant,
6106 since it's used in non-static inline functions now.
6107 (VALMASK) [!USE_LSB_TAG]: Likewise.
6108
6109 2012-08-02 Glenn Morris <rgm@gnu.org>
6110
6111 * s/: Remove empty directory.
6112
6113 * s/ms-w32.h: Move to ../nt/inc.
6114 * makefile.w32-in (TAGS, TAGS-gmake, MS_W32_H):
6115 Update for new ms-w32.h location.
6116
6117 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
6118
6119 Port to Solaris 8.
6120 * syswait.h (WRETCODE): Remove, consistently with ../configure.ac.
6121
6122 2012-08-02 Glenn Morris <rgm@gnu.org>
6123
6124 * nsterm.m (ns_exec_path, ns_load_path): Use SEPCHAR rather than
6125 hard-coding the path separator.
6126
6127 2012-08-01 Paul Eggert <eggert@cs.ucla.edu>
6128
6129 Use "ASET (a, i, v)" rather than "AREF (a, i) = v".
6130 This how ASET and AREF are supposed to work, and makes
6131 it easier to think about future improvements. See
6132 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00026.html>.
6133 * charset.h (set_charset_attr): New function.
6134 All lvalue-style uses of CHARSET_DECODER etc. changed to use it.
6135 * lisp.h (ASET): Rewrite so as not to use AREF in an lvalue style.
6136 (aref_addr): New function. All uses of &AREF(...) changed.
6137 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
6138 (set_hash_index): New functions. All lvalue-style uses of
6139 HASH_KEY etc. changed.
6140 * keyboard.c (set_prop): New function. All lvalue-style uses
6141 of PROP changed.
6142
6143 2012-08-01 Alp Aker <alp.tekin.aker@gmail.com>
6144
6145 * nsterm.m (ns_set_vertical_scroll_bar, ns_redeem_scroll_bar)
6146 (EmacsWindow-accessibilityAttributeValue, EmacsScroller-initFrame:)
6147 (EmacsScroller-dealloc): Adjust to use WVAR. (Bug#12114)
6148 * nsfns.m (ns_set_name_as_filename): Likewise.
6149 * nsmenu.m (ns_update_menubar): Likewise.
6150 * nsselect.m (symbol_to_nsstring): Adjust to use SVAR.
6151
6152 2012-08-01 Eli Zaretskii <eliz@gnu.org>
6153
6154 * .gdbinit (xcar, xcdr, xlist, xwindow, nextcons, xprintsym):
6155 Adapt to latest changes in field names of the corresponding Lisp
6156 objects.
6157
6158 * xdisp.c (try_window_id): Use WVAR in IF_DEBUG code.
6159
6160 2012-08-01 Glenn Morris <rgm@gnu.org>
6161
6162 * s/msdos.h: Remove file.
6163 * conf_post.h [MSDOS]: New section, moved from s/msdos.h.
6164 * Makefile.in (S_FILE): Remove.
6165 (config_h): Remove S_FILE.
6166
6167 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
6168
6169 * s/ms-w32.h (DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP):
6170 Remove; moved to nt/config.nt.
6171
6172 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
6173
6174 Use INTERNAL_FIELD for conses and overlays.
6175 * lisp.h (struct Lisp_Cons): Use INTERNAL_FIELD.
6176 Remove obsolete comment.
6177 (MVAR): New macro.
6178 (struct Lisp_Overlay): Use INTERNAL_FIELD.
6179 * alloc.c, buffer.c, buffer.h, fns.c: Adjust users.
6180
6181 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
6182
6183 Use INTERNAL_FIELD for symbols.
6184 * lisp.h (SVAR): New macro. Adjust users.
6185 * alloc.c, bytecode.c, cmds.c, data.c, doc.c, eval.c:
6186 * fns.c, keyboard.c, lread.c, xterm.c: Users changed.
6187
6188 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
6189
6190 Use INTERNAL_FIELD for processes.
6191 * process.h (PVAR): New macro. Adjust style.
6192 (struct Lisp_Process): Change Lisp_Object members to INTERNAL_FIELD.
6193 * print.c, process.c, sysdep.c, w32.c, xdisp.c: Users changed.
6194
6195 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
6196
6197 Use INTERNAL_FIELD for windows.
6198 * window.h (WVAR): New macro.
6199 (struct window): Change Lisp_Object members to INTERNAL_FIELD.
6200 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
6201 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
6202 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, nsterm.m, print.c:
6203 * textprop.c, w32fns.c, w32menu.c, w32term.c, window.c, xdisp.c:
6204 * xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
6205
6206 2012-08-01 Paul Eggert <eggert@cs.ucla.edu>
6207
6208 * coding.h (CODING_ATTR_FLUSHING): Remove; unused and wouldn't work.
6209
6210 2012-08-01 Glenn Morris <rgm@gnu.org>
6211
6212 * lisp.h (IS_DIRECTORY_SEP, IS_DEVICE_SEP, IS_ANY_SEP):
6213 Move to configure.ac.
6214
6215 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
6216
6217 * makefile.w32-in (CONFIG_H): Update dependencies.
6218 (CONF_POST_H): New macro.
6219
6220 * s/ms-w32.h (SEPCHAR, NULL_DEVICE): Remove; moved to nt/config.nt.
6221
6222 2012-07-31 Glenn Morris <rgm@gnu.org>
6223
6224 * Makefile.in (S_FILE): No longer set by configure.
6225
6226 * conf_post.h (config_opsysfile): Move earlier, so that WINDOWSNT
6227 is available.
6228 (alloca.h) [WINDOWSNT]: Don't include it on MS Windows.
6229
6230 * process.h (NULL_DEVICE):
6231 * emacs.c (SEPCHAR):
6232 * editfns.c (USER_FULL_NAME): Let configure set them.
6233
6234 * s/README, s/template.h: Remove files.
6235
6236 * conf_post.h [HPUX]: Undefine HAVE_RANDOM and HAVE_RINT.
6237
6238 * conf_post.h (AMPERSAND_FULL_NAME, subprocesses):
6239 Move to configure.ac.
6240
6241 2012-07-31 Eli Zaretskii <eliz@gnu.org>
6242
6243 * .gdbinit (xframe): Adapt to introduction of FVAR and the
6244 resulting renaming of 'struct frame' members.
6245
6246 * w32menu.c (w32_menu_show): Revert bogus introduction of FVAR.
6247
6248 * fontset.c (dump_fontset): Fix compilation with ENABLE_CHECKING
6249 after introduction of FVAR.
6250
6251 2012-07-31 Jan Djärv <jan.h.d@swipnet.se>
6252
6253 * nsmenu.m (update_frame_tool_bar): Change key from NSObject* to id.
6254
6255 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Use drawInRect
6256 instead of compositeToPoint.
6257 (applicationShouldTerminate): Pass NS String literal to NSRunAlertPanel.
6258
6259 * nsfns.m, nsmenu.m, nsterm.m: Adopt to struct frame/FVAR changes.
6260
6261 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
6262
6263 Generalize INTERNAL_FIELD between buffers, keyboards and frames.
6264 * lisp.h (INTERNAL_FIELD): New macro.
6265 * buffer.h (BUFFER_INTERNAL_FIELD): Remove.
6266 (BVAR): Change to use INTERNAL_FIELD.
6267 * keyboard.h (KBOARD_INTERNAL_FIELD): Likewise.
6268 (KVAR): Change to use INTERNAL_FIELD.
6269 * frame.h (FVAR): New macro.
6270 (struct frame): Use INTERNAL_FIELD for all Lisp_Object fields.
6271 * alloc.c, buffer.c, data.c, dispnew.c, dosfns.c, eval.c, frame.c:
6272 * fringe.c, gtkutil.c, minibuf.c, nsfns.m, nsterm.m, print.c:
6273 * term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
6274 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
6275
6276 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
6277
6278 Miscellaneous fixes for non-default X toolkits.
6279 * xfns.c (Fx_file_dialog): Change to SSDATA to avoid warnings.
6280 * xterm.c (x_frame_of_widget): Remove redundant prototype.
6281 Move under #ifdef USE_LUCID.
6282 (x_create_toolkit_scroll_bar): Adjust scroll_bar_name
6283 definition and usage to avoid warnings.
6284
6285 2012-07-31 Jan Djärv <jan.h.d@swipnet.se>
6286
6287 * nsterm.m (openFiles): Fix previous checkin.
6288
6289 2012-07-31 Paul Eggert <eggert@cs.ucla.edu>
6290
6291 * indent.c (compute_motion): Remove unused local.
6292
6293 2012-07-31 Glenn Morris <rgm@gnu.org>
6294
6295 * s/usg5-4-common.h (wait3, WRETCODE): Let configure set them.
6296
6297 * conf_post.h [USG5_4]:
6298 Move remaining contents of s/usg5-4-common.h here.
6299 * s/usg5-4-common.h: Remove file.
6300
6301 * conf_post.h [IRIX6_5]: Move remaining contents of s/irix6-5.h here.
6302 * s/irix6-5.h: Remove file.
6303
6304 * conf_post.h [DARWIN_OS]: Move remaining contents of s/darwin.h here.
6305 * s/darwin.h: Remove file.
6306
6307 * conf_post.h [HPUX]: Move random, srandom here from s/hpux10-20.h.
6308 * s/hpux10-20.h: Remove file, which is now empty.
6309
6310 2012-07-30 Glenn Morris <rgm@gnu.org>
6311
6312 * conf_post.h: New, split from configure.ac's AH_BOTTOM.
6313 * Makefile.in (config_h): Add conf_post.h.
6314 * makefile.w32-in (CONFIG_H): Add conf_post.h.
6315
6316 2012-07-30 Jan Djärv <jan.h.d@swipnet.se>
6317
6318 * nsterm.m (ns_do_open_file): New variable.
6319 (ns_term_init): Set ns_do_open_file to YES after run returns.
6320 (openFile, openTempFile, openFileWithoutUI, openFiles):
6321 Open files only if ns_do_open_file.
6322
6323 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
6324
6325 * lisp.h (SWITCH_ENUM_CAST): Remove. All uses removed.
6326 This no-op macro hasn't been needed for many years.
6327 * src/regex.c (SWITCH_ENUM_CAST) [!emacs]: Likewise.
6328
6329 Export DIRECTORY_SEP, TYPEMASK, VALMASK to GDB.
6330 * alloc.c (gdb_make_enums_visible) [USE_LSB_TAG]: Add lsb_bits.
6331 * lisp.h (enum lsb_bits) [USE_LSB_TAG]: New enum, for
6332 gdb_make_enums_visible.
6333 (TYPEMASK, VALMASK) [USE_LSB_TAGS]: Now enum constants, not macros.
6334 (DIRECTORY_SEP): Now a constant, not a macro.
6335
6336 2012-07-30 Eli Zaretskii <eliz@gnu.org>
6337
6338 * w32fns.c (w32_wnd_proc): Pass w32_keyboard_codepage to
6339 w32_kbd_patch_key as the 2nd arg. (Bug#12082)
6340
6341 * w32term.c <w32_keyboard_codepage>: Renamed from
6342 keyboard_codepage and now external. All users changed.
6343
6344 * w32term.h: Add declaration of w32_keyboard_codepage.
6345
6346 * w32inevt.c (w32_kbd_patch_key): Accept an additional argument --
6347 the codepage to translate keys to Unicode. If this argument is
6348 -1, use the value returned by GetConsoleCP. All callers changed.
6349
6350 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
6351
6352 Update .PHONY listings in makefiles.
6353 * Makefile.in (.PHONY): Add all, mostlyclean, clean,
6354 bootstrap-clean, distclean, maintainer-clean, versioclean,
6355 extraclean, frc.
6356
6357 * lisp.h (STRING_BYTES_BOUND): Cast entire result to ptrdiff_t.
6358 This is a bit clearer. Fix some commentary typos.
6359
6360 2012-07-30 Glenn Morris <rgm@gnu.org>
6361
6362 * s/netbsd.h: Let configure include signal.h if needed.
6363 Remove file, which is now empty.
6364
6365 * s/usg5-4-common.h (_longjmp, _setjmp, TIOCSIGSEND):
6366 Let configure set them.
6367 * s/irix6-5.h (_longjmp, _setjmp, TIOCSIGSEND):
6368 No more need to undefine.
6369
6370 2012-07-30 Andreas Schwab <schwab@linux-m68k.org>
6371
6372 * keymap.c (Fkey_description): Don't remove 0x80 bit from
6373 non-single-byte char when adding meta modifier. (Bug#12090)
6374
6375 2012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
6376
6377 Convert safe_call to use variable number of arguments.
6378 * xdisp.c (safe_call): Convert to use varargs. Adjust users.
6379 (safe_call2): Fix comment.
6380 * lisp.h (safe_call): Adjust prototype.
6381 * coding.c (encode_coding_object): Change to use safe_call2.
6382 * xfaces.c (merge_face_heights): Change to use safe_call1.
6383
6384 2012-07-30 Glenn Morris <rgm@gnu.org>
6385
6386 * s/aix4-2.h (sigmask): No need to undefine it, since syssignal.h
6387 does that unconditionally. Remove file, which is now empty.
6388
6389 * s/freebsd.h, s/gnu-linux.h, s/sol2-6.h, s/unixware.h:
6390 Remove empty files.
6391
6392 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
6393
6394 Export to GDB most of lisp.h's remaining object-like macros.
6395 * lisp.h (min, max): Move earlier, because they're used earlier now.
6396 (INTMASK, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK)
6397 (CHAR_TABLE_STANDARD_SLOTS, CHARTAB_SIZE_BITS_0)
6398 (CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2, CHARTAB_SIZE_BITS_3)
6399 (DEFAULT_HASH_SIZE, COMPILED_ARGLIST, COMPILED_BYTECODE)
6400 (COMPILED_CONSTANTS, COMPILED_STACK_DEPTH, COMPILED_DOC_STRING)
6401 (COMPILED_INTERACTIVE, CHAR_ALT, CHAR_SUPER, CHAR_HYPER, CHAR_SHIFT)
6402 (CHAR_CTL, CHAR_META, CHAR_MODIFIER_MASK, CHARACTERBITS)
6403 (MANY, UNEVALLED, FLOAT_TO_STRING_BUFSIZE, MAX_ALLOCA):
6404 Now constants, for GDB. They need not be macros.
6405 (MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM, STRING_BYTES_BOUND):
6406 Now constants, for GDB, as well as macros, for static initializers.
6407 (CHAR_TABLE_STANDARD_SLOTS, CHAR_TABLE_EXTRA_SLOTS):
6408 Move to after the definition of struct Lisp_Char_Table,
6409 since the former now needs that type defined.
6410 (enum CHARTAB_SIZE_BITS, enum CHAR_TABLE_STANDARD_SLOTS)
6411 (enum DEFAULT_HASH_SIZE, enum Lisp_Compiled, enum char_bits)
6412 (enum maxargs, enum FLOAT_TO_STRING_BUFSIZE, enum MAX_ALLOCA):
6413 New enums, for gdb_make_enums_visible.
6414 (GLYPH_MODE_LINE_FACE): Remove; unused.
6415 * alloc.c (STRING_BYTES_MAX): Now a constant, not a macro.
6416 (gdb_make_enums_visible): Add enum CHARTAB_SIZE_BITS, enum
6417 CHAR_TABLE_STANDARD_SLOTS, enum char_bits, enum DEFAULT_HASH_SIZE,
6418 enum FLOAT_TO_STRING_BUFSIZE, enum Lisp_Bits, enum Lisp_Compiled,
6419 enum maxargs, enum MAX_ALLOCA.
6420 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): Remove.
6421 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Remove;
6422 no longer needed, now that they are done in lisp.h.
6423
6424 2012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
6425
6426 Cleanup string bytes checking.
6427 * alloc.c (GC_STRING_BYTES, CHECK_STRING_BYTES): Remove. Convert
6428 all users to STRING_BYTES or string_bytes if GC_CHECK_STRING_BYTES.
6429 (check_string_bytes): Define to empty if not GC_CHECK_STRING_BYTES.
6430 (check_sblock, compact_small_strings): Simplify.
6431
6432 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
6433
6434 * lisp.h (LISP_INT_TAG, LISP_INT1_TAG, LISP_STRING_TAG): Remove.
6435 These macros are confusing and no longer need to be defined, as
6436 the enum values now suffice. All uses replaced with definiens.
6437 (Lisp_Int1, Lisp_String): Define directly; this is clearer.
6438
6439 2012-07-29 Juanma Barranquero <lekktu@gmail.com>
6440
6441 * makefile.w32-in (LISP_H, $(BLD)/emacs.$(O), $(BLD)/w32inevt.$(O))
6442 ($(BLD)/w32console.$(O)): Update dependencies.
6443
6444 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
6445
6446 Remove HIDE_LISP_IMPLEMENTATION and cleanup cons free list check.
6447 * lisp.h (HIDE_LISP_IMPLEMENTATION): Remove as useless for a long
6448 time. Adjust users.
6449 (CHECK_CONS_LIST): Remove. Convert all users to check_cons_list.
6450
6451 2012-07-29 Jan Djärv <jan.h.d@swipnet.se>
6452
6453 * lread.c (init_lread): Remove if-statement in ifdef HAVE_NS before
6454 setting sitelisp (Bug#12010).
6455
6456 2012-07-29 Eli Zaretskii <eliz@gnu.org>
6457
6458 * w32heap.h (OS_9X): Rename from OS_WINDOWS_95.
6459
6460 * w32heap.c (cache_system_info):
6461 * w32.c (sys_rename):
6462 * w32proc.c (find_child_console, sys_kill): All users changed.
6463
6464 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
6465
6466 * alloc.c (Fgarbage_collect): Indent as per usual Emacs style.
6467
6468 2012-07-29 Eli Zaretskii <eliz@gnu.org>
6469
6470 * makefile.w32-in (LISP_H): Add $(NT_INC)/stdalign.h.
6471
6472 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
6473
6474 Cleanup statistics calculation in Fgarbage_collect.
6475 * alloc.c (Fgarbage_collect): Rename t1 to meaningful start.
6476 Fix zombies percentage calculation. Simplify elapsed time calculation.
6477
6478 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
6479
6480 Generalize marker debugging code under MARKER_DEBUG and use eassert.
6481 * insdel.c (CHECK_MARKERS, check_markers_debug_flag): Remove.
6482 (gap_left, gap_right, adjust_markers_for_delete, insert_1_both)
6483 (insert_from_string_1, insert_from_gap, insert_from_buffer_1)
6484 (replace_range, replace_range_2, del_range_2): Change to eassert.
6485 * marker.c (byte_char_debug_check): Adjust style.
6486
6487 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
6488
6489 Don't use the abbreviation "win" to refer to Windows (Bug#10421).
6490 * regex.c (MAX_BUF_SIZE): Remove some incorrect and
6491 long-ago-commented-out code that talks about "WIN32".
6492 * w32heap.h (OS_WINDOWS_95): Rename from OS_WIN95.
6493 All uses changed.
6494
6495 2012-07-28 Paul Eggert <eggert@cs.ucla.edu>
6496
6497 Use Gnulib stdalign module (Bug#9772, Bug#9960).
6498 * alloc.c (XMALLOC_BASE_ALIGNMENT, GC_POINTER_ALIGNMENT, pure_alloc):
6499 Simplify by using alignof.
6500 (pure_alloc) [! USE_LSB_TAG]: Don't over-align EMACS_INT values.
6501 * lisp.h: Include <stdalign.h>.
6502 (GCALIGNMENT): New macro and constant.
6503 (DECL_ALIGN): Remove. All uses replaced by alignas (GCALIGNMENT).
6504 (USE_LSB_TAG): ifdef on alignas, not on DECL_ALIGN.
6505 (stdalign): New macro, if not already defined.
6506
6507 2012-07-28 Eli Zaretskii <eliz@gnu.org>
6508
6509 Fix non-ASCII input in non-GUI frames on MS-Windows. (Bug#12055)
6510 * w32inevt.c: Include w32inevt.h.
6511 (w32_read_console_input): New inline function, calls either
6512 ReadConsoleInputA or ReadConsoleInputW, depending on the value of
6513 w32_console_unicode_input.
6514 (fill_queue): Call w32_read_console_input instead of ReadConsoleInput.
6515 (w32_kbd_patch_key, key_event): Use the codepage returned by
6516 GetConsoleCP, rather than the ANSI codepage returned by GetLocaleInfo.
6517 (key_event): use uChar.UnicodeChar only if
6518 w32_console_unicode_input is non-zero.
6519
6520 * w32console.c: Include w32heap.h.
6521 <w32_console_unicode_input>: New global variable.
6522 (initialize_w32_display): Set w32_console_unicode_input to 1 on NT
6523 family of Windows, zero otherwise.
6524
6525 * w32inevt.h: Declare w32_console_unicode_input.
6526
6527 * xdisp.c (init_iterator): Don't reference tip_frame in a build
6528 --without-x. (Bug#11742)
6529
6530 2012-07-27 Paul Eggert <eggert@cs.ucla.edu>
6531
6532 Adjust GDB to reflect pvec_type changes (Bug#12036).
6533 * .gdbinit (xvectype, xpr, xbacktrace): Adjust to reflect the
6534 2012-07-04 changes to pseudovector representation.
6535 Problem reported by Eli Zaretskii in <http://bugs.gnu.org/12036#30>.
6536
6537 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
6538
6539 * dbusbind.c (XD_DBUS_VALIDATE_BUS_ADDRESS): Canonicalize session
6540 bus address.
6541 (xd_close_bus, Fdbus_init_bus): Handle reference counter properly.
6542
6543 2012-07-27 Eli Zaretskii <eliz@gnu.org>
6544
6545 * alloc.c (listn): Fix the order the arguments are consed onto the
6546 list.
6547
6548 * lisp.h (enum constype): Use CONSTYPE_HEAP and CONSTYPE_PURE for
6549 enumeration constants, as PURE and HEAP are too general, and clash
6550 with other headers and sources, such as gmalloc.c and the
6551 MS-Windows system headers. All users changed.
6552
6553 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
6554
6555 Revert last save_excursion_save and save_excursion_restore changes.
6556 * alloc.c, editfns.c, marker.c, lisp.h: Revert.
6557 Lots of crashes reported by Chong Yidong <cyd@gnu.org>.
6558
6559 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
6560
6561 Fix recently-introduced typos in Windows port.
6562 Reported by Martin Rudalics <rudalics@gmx.at>.
6563 * w32.c (init_environment): Replace comma with semicolon.
6564 * w32fns.c (syms_of_w32fns): Add missing parenthesis.
6565
6566 2012-07-27 Paul Eggert <eggert@cs.ucla.edu>
6567
6568 Improve GDB symbol export (Bug#12036).
6569 * .gdbinit (xgetptr, xgetint, xgettype): Set $bugfix in different
6570 arms of an 'if', not using conditional expressions; otherwise GDB
6571 complains about the types in the unevaluated arm when the argument
6572 is an integer literal.
6573 (xgetint): Simplify expression.
6574 * alloc.c (gdb_make_enums_visible): New constant. This ports to
6575 GCC 3.4.2 the export of symbols to GDB. Problem reported by Eli
6576 Zaretskii in <http://bugs.gnu.org/12036#13>.
6577 * lisp.h (PUBLISH_TO_GDB): Remove. All uses removed. No longer
6578 needed now that we have gdb_make_enums_visible.
6579 (enum CHECK_LISP_OBJECT_TYPE, enum Lisp_Bits, enum More_Lisp_Bits)
6580 (enum enum_USE_LSB_TAG):
6581 New enum types, packaging up enums that need to be exported to GDB.
6582
6583 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
6584
6585 Utility function to make a list from specified amount of objects.
6586 * lisp.h (enum constype): New datatype.
6587 (listn): New prototype.
6588 * alloc.c (listn): New function.
6589 (Fmemory_use_count, syms_of_alloc): Use it.
6590 * buffer.c (syms_of_buffer): Likewise.
6591 * callint.c (syms_of_callint): Likewise.
6592 * charset.c (define_charset_internal): Likewise.
6593 * coding.c (syms_of_coding): Likewise.
6594 * keymap.c (syms_of_keymap): Likewise.
6595 * search.c (syms_of_search): Likewise.
6596 * syntax.c (syms_of_syntax): Likewise.
6597 * w32.c (init_environment): Likewise.
6598 * w32fns.c (Fw32_battery_status, syms_of_w32fns): Likewise.
6599 * xdisp.c (syms_of_xdisp): Likewise.
6600 * xfns.c (syms_of_xfns): Likewise.
6601
6602 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
6603
6604 Fast save_excursion_save and save_excursion_restore.
6605 * lisp.h (struct Lisp_Excursion): New data type.
6606 (PVEC_EXCURSION): New pseudovector type.
6607 (XEXCURSION, XSETEXCURSION, EXCURSIONP): Convenient macros
6608 to deal with it. Adjust comments.
6609 (init_marker, attach_marker): New prototype.
6610 (unchain_marker): Adjust prototype.
6611 * marker.c (attach_marker): Change to global.
6612 (init_marker): New function.
6613 * alloc.c (Fmake_marker, build_marker): Use it.
6614 (build_marker): More easserts.
6615 (mark_object): Handle struct Lisp_Excursion.
6616 * editfns.c (save_excursion_save, save_excursion_restore):
6617 Reimplement to use struct Lisp_Excursion. Add comments.
6618
6619 2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
6620
6621 Fix export of symbols to GDB (Bug#12036).
6622 * alloc.c (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL)
6623 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Move these here from
6624 emacs.c, as this is a more-suitable home. Had this been done earlier
6625 the fix for 12036 would have avoided some of the problems noted in
6626 <http://bugs.gnu.org/12036#13> by Eli Zaretskii, as the scope problems
6627 would have been more obvious.
6628 * emacs.c: Do not include <verify.h>; no longer needed.
6629 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS)
6630 (gdb_GCTYPEBITS, gdb_USE_LSB_TAG)
6631 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
6632 Remove; now done in lisp.h.
6633 * lisp.h (PUBLISH_TO_GDB): New macro.
6634 (GCTYPEBITS, USE_LSB_TAG, CHECK_LISP_OBJECT_TYPE, enum pvec_type)
6635 (DATA_SEG_BITS): Use it.
6636 (GCTYPEBITS, USE_LSB_TAG): Now also an enum, for GDB.
6637 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Now just an enum, for GDB.
6638 * mem-limits.h (EXCEEDS_LISP_PTR): Redo so that DATA_SEG_BITS need
6639 not be usable in #if. This simplifies things.
6640
6641 2012-07-26 Juanma Barranquero <lekktu@gmail.com>
6642
6643 * makefile.w32-in ($(BLD)/emacs.$(O)): Update dependencies.
6644
6645 2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
6646
6647 Simplify export of symbols to GDB (Bug#12036).
6648 * .gdbinit (xgetptr, xgetint, xgettype): Don't use "set $bugfix =
6649 $bugfix.i", as this doesn't work (with GDB 7.4.1, anyway).
6650 (xgetptr, xgetint, xgettype, xcoding, xcharset, xprintbytestr):
6651 Adjust to changes in lisp.h and emacs.c, by using
6652 CHECK_LISP_OBJECT_TYPE rather than gdb_use_struct, VALMASK instead
6653 of $valmask, DATA_SEG_BITS instead of gdb_data_seg_bits,
6654 INTTYPEBITS instead of gdb_gctypebits - 1, USE_LSB_TAG instead of
6655 gdb_use_lsb, (1 << GCTYPEBITS) - 1 instead of $tagmask, VALBITS
6656 instead of gdb_valbits.
6657 (xvectype, xvector, xpr, xprintstr, xbacktrace): Similarly, use
6658 PSEUDOVECTOR_FLAG instead of PVEC_FLAG, and ARRAY_MARK_FLAG
6659 instead of gdb_array_mark_flag.
6660 (xboolvector): Get size from $->size, not $->header.size.
6661 Use BOOL_VECTOR_BITS_PER_CHAR rather than mystery constants.
6662 (xreload, hook-run, hookpost-run): Remove.
6663 * emacs.c: Include <verify.h>.
6664 (gdb_use_lsb, gdb_use_struct, gdb_valbits, gdb_gctypebits)
6665 (gdb_data_seg_bits, PVEC_FLAG, gdb_array_mark_flag, gdb_pvec_type):
6666 Remove.
6667 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS, gdb_GCTYPEBITS)
6668 (gdb_USE_LSB_TAG): New enum constants.
6669 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
6670 Also define these as enum constants, so they're visible to GDB.
6671 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): New macros.
6672 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Also define these
6673 as constants, so they're visible to GDB.
6674 * lisp.h (VALBITS, INTTYPEBITS, FIXNUM_BITS, PSEUDOVECTOR_SIZE_BITS)
6675 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK, BOOL_VECTOR_BITS_PER_CHAR):
6676 Now enum constants, not macros, so they're visible to GDB.
6677 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Default to 0, as this is
6678 more convenient now. All uses changed.
6679 (VALMASK) [USE_LSB_TAG]: Also define in this case.
6680 * mem-limits.h (EXCEEDS_LISP_PTR): Adjust to DATA_SEG_BITS change.
6681
6682 2012-07-26 Dmitry Antipov <dmantipov@yandex.ru>
6683
6684 Explicitly free restriction data that are not needed anymore.
6685 * editfns.c (save_restriction_restore): Free restriction data.
6686
6687 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
6688
6689 * eval.c (Fautoload_do_load): Rename from do_autoload, export to Lisp,
6690 add argument, tune behavior, and adjust all callers.
6691
6692 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
6693
6694 Use typedef for EMACS_INT, EMACS_UINT.
6695 * lisp.h, s/ms-w32.h (EMACS_INT, EMACS_UINT): Use typedefs rather
6696 than macros. This simplifies debugging in the usual case, since
6697 it lets GDB show addresses as 'EMACS_INT *' rather than 'long int *'
6698 and it allows expressions involving EMACS_INT casts.
6699 * .gdbinit (xreload): Simplify by using EMACS_INT cast.
6700
6701 2012-07-25 Jan Djärv <jan.h.d@swipnet.se>
6702
6703 * nsterm.m (ns_read_socket): Return early if there is a modal
6704 window (Bug#12043).
6705
6706 2012-07-25 Martin Rudalics <rudalics@gmx.at>
6707
6708 * frame.c (Fredirect_frame_focus): In doc-string don't mention
6709 that FOCUS-FRAME can be omitted.
6710
6711 2012-07-25 Dmitry Antipov <dmantipov@yandex.ru>
6712
6713 Adjust buffer text indirection counters at the end of Fkill_buffer.
6714 * buffer.c (Fkill_buffer): Adjust indirection counters when the
6715 buffer is definitely dead. This should really fix an issue reported
6716 by Christoph Scholtes again. (Bug#12007).
6717 (init_buffer_once): Initialize indirection counters of
6718 buffer_defaults and buffer_local_symbols (for sanity and safety).
6719
6720 2012-07-24 Eli Zaretskii <eliz@gnu.org>
6721
6722 * xdisp.c (init_iterator): Don't compute dimensions of truncation
6723 and continuation glyphs on tooltip frames, leave them at zero.
6724 Avoids continued lines in tooltips. (Bug#11832)
6725
6726 2012-07-24 Dmitry Antipov <dmantipov@yandex.ru>
6727
6728 Simplify copy_overlay.
6729 * buffer.c (copy_overlay): Simplify. Use build_marker.
6730 * lisp.h (struct Lisp_Overlay): Restore comment with minor tweaks.
6731
6732 2012-07-23 Eli Zaretskii <eliz@gnu.org>
6733
6734 * print.c (print_object): Don't crash when a frame's name is nil
6735 or invalid. (Bug#12025)
6736
6737 * window.c (decode_any_window): Disable CHECK_LIVE_FRAME test, as
6738 it signals an error when a tooltip frame is being created.
6739
6740 2012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
6741
6742 Cleanup miscellaneous objects allocation and initialization.
6743 * alloc.c (allocate_misc): Change to static. Add argument to
6744 specify the subtype. Adjust comment and users.
6745 (build_overlay): New function.
6746 * buffer.c (copy_overlays, Fmake_overlay): Use it.
6747 * lisp.h (struct Lisp_Overlay): Remove obsolete comment.
6748 (allocate_misc): Remove prototype.
6749 (build_overlay): Add prototype.
6750
6751 2012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
6752
6753 Swap buffer text indirection counters in Fbuffer_swap_text.
6754 * buffer.c (Fbuffer_swap_text): Swap indirections too.
6755 This avoids crash reported by Christoph Scholtes at
6756 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00785.html.
6757
6758 2012-07-22 Jan Djärv <jan.h.d@swipnet.se>
6759
6760 * nsmenu.m (Popdown_data): New struct.
6761 (pop_down_menu): p->pointer is Popdown_data. Release the pool and
6762 free Popdown_data.
6763 (ns_popup_dialog): Use NSAutoreleasePool and pass it to pop_down_menu.
6764 (initWithContentRect): Make imgView and contentView non-static
6765 and autorelease them. Also autorelease img and matrix (Bug#12005).
6766 (dealloc): Remove (Bug#12005).
6767
6768 2012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
6769
6770 Adjust consing_since_gc when objects are explicitly freed.
6771 * alloc.c (GC_DEFAULT_THRESHOLD): New macro.
6772 (Fgarbage_collect): Use it. Change minimum to 1/10 of default.
6773 (free_cons, free_misc): Subtract object size from consing_since_gc.
6774
6775 2012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
6776
6777 Simplify and cleanup markers positioning code.
6778 * marker.c (attach_marker): More useful eassert.
6779 (live_buffer, set_marker_internal): New function.
6780 (Fset_marker, set_marker_restricted): Use set_marker_internal.
6781 (set_marker_both, set_marker_restricted_both): Use live_buffer.
6782
6783 2012-07-22 Paul Eggert <eggert@cs.ucla.edu>
6784
6785 * buffer.h (struct buffer.indirections): Now ptrdiff_t, not int,
6786 as it's limited by the amount of memory, not by INT_MAX.
6787
6788 2012-07-21 Eli Zaretskii <eliz@gnu.org>
6789
6790 * keyboard.c (keys_of_keyboard): Bind language-change to 'ignore'
6791 in special-event-map. See the discussion at
6792 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00417.html
6793 for the reasons.
6794
6795 * w32menu.c (add_menu_item): Cast to ULONG_PTR when assigning
6796 info.dwItemData. Fixes crashes on 64-bit Windows.
6797 Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
6798
6799 2012-07-21 Jan Djärv <jan.h.d@swipnet.se>
6800
6801 * nsterm.m (accessibilityAttributeValue): New function. (Bug#11134).
6802 (conversationIdentifier): Return value is NSInteger.
6803 * nsterm.m (accessibilityAttributeValue): Surround with NS_IMPL_COCOA.
6804
6805 2012-07-21 Chong Yidong <cyd@gnu.org>
6806
6807 * window.c (decode_any_window): Signal an error if the window is
6808 on a dead frame (Bug#11984).
6809
6810 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
6811
6812 Add indirection counting to speed up Fkill_buffer.
6813 * buffer.h (struct buffer): New member.
6814 * buffer.c (Fget_buffer_create): Set indirection counter to 0.
6815 (Fmake_indirect_buffer): Set indirection counter to -1, increment
6816 base buffer indirection counter.
6817 (compact_buffer): If ENABLE_CHECKING, verify indirection counters.
6818 (Fkill_buffer): Adjust indirection counters as needed, don't walk
6819 through buffer list if indirection counter is 0.
6820
6821 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
6822
6823 Extend the value returned by Fgarbage_collect with heap statistics.
6824 * alloc.c (Qheap): New symbol.
6825 (syms_of_alloc): DEFSYM it.
6826 (Fgarbage_collect): If DOUG_LEA_MALLOC, add mallinfo data.
6827 (Fmemory_free): Remove.
6828 (syms_of_alloc): Don't defsubr it.
6829 * buffer.c (Fcompact_buffer): Remove.
6830 (syms_of_buffer): Don't defsubr it.
6831
6832 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
6833
6834 Make maybe_gc inline.
6835 Verify that inlining is always possible (GCC 4.7.1, -O3 -Winline).
6836 * lisp.h (consing_since_gc, gc_relative_threshold)
6837 (memory_full_cons_threshold): Revert declaration.
6838 (maybe_gc): Remove prototype, define as inline.
6839 * alloc.c: Remove old commented-out code.
6840 (consing_since_gc, gc_relative_threshold)
6841 (memory_full_cons_threshold): Revert to global.
6842 (maybe_gc): Remove.
6843
6844 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
6845
6846 Simple wrapper for make_unibyte_string, adjust font_open_by_name.
6847 * lisp.h (build_unibyte_string): New function.
6848 * dosfns.c, fileio.c, fns.c, ftfont.c, process.c:
6849 * sysdep.c, w32fns.c, xfns.c: Use it.
6850 * font.c (font_open_by_name): Change 2nd and 3rd args to the only arg
6851 of type Lisp_Object to avoid redundant calls to make_unibyte_string.
6852 Adjust users accordingly.
6853 * font.h (font_open_by_name): Adjust prototype.
6854
6855 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
6856
6857 Cleanup calls to Fgarbage_collect.
6858 * lisp.h (maybe_gc): New prototype.
6859 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
6860 Remove declarations.
6861 * alloc.c (maybe_gc): New function.
6862 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
6863 Make them static.
6864 * bytecode.c (MAYBE_GC): Use maybe_gc.
6865 * eval.c (eval_sub, Ffuncall): Likewise.
6866 * keyboard.c (read_char): Likewise. Adjust call to maybe_gc
6867 to avoid dependency from auto-save feature.
6868
6869 2012-07-19 Paul Eggert <eggert@cs.ucla.edu>
6870
6871 * buffer.h (FOR_EACH_BUFFER): Rename from 'for_each_buffer'.
6872 (FOR_EACH_PER_BUFFER_OBJECT_AT): Rename from
6873 'for_each_per_buffer_object_at'.
6874 All uses changed. It's better to use upper-case for macros that
6875 cannot be implemented as functions, to give the reader a clue
6876 that they're special.
6877
6878 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
6879
6880 * alloc.c (Fgarbage_collect): Tweak docstring.
6881
6882 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
6883
6884 Tweak the value returned from Fgarbage_collect again.
6885 * alloc.c (Fgarbage_collect): New return value, as confirmed in
6886 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00418.html.
6887 Adjust documentation.
6888 (total_vector_bytes): Rename to total_vector_slots, adjust
6889 accounting.
6890 (total_free_vector_bytes): Rename to total_free_vector_slots,
6891 adjust accounting.
6892 (Qstring_bytes, Qvector_slots): New symbols.
6893 (syms_of_alloc): DEFSYM them.
6894
6895 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
6896
6897 Buffer compaction primitive which may be used from Lisp.
6898 * buffer.c (compact_buffer, Fcompact_buffer): New function.
6899 (syms_of_buffer): Register Fcompact_buffer.
6900 * alloc.c (Fgarbage_collect): Use compact_buffer.
6901 * buffer.h (compact_buffer): New prototype.
6902 (struct buffer_text): New member.
6903
6904 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
6905
6906 New macro to iterate over all buffers, miscellaneous cleanups.
6907 * lisp.h (all_buffers): Remove declaration.
6908 * buffer.h (all_buffers): Add declaration, with comment.
6909 (for_each_buffer): New macro.
6910 * alloc.c (Fgarbage_collect, mark_object): Use it.
6911 * buffer.c (Fkill_buffer, Fbuffer_swap_text, Fset_buffer_multibyte)
6912 (init_buffer): Likewise.
6913 * data.c (Fset_default): Likewise.
6914 * coding.c (code_conversion_restore): Remove redundant check
6915 for dead buffer.
6916 * buffer.c (Fkill_buffer): Likewise. Remove obsolete comment.
6917
6918 2012-07-18 Andreas Schwab <schwab@linux-m68k.org>
6919
6920 Fix bug that created negative-length intervals.
6921 * intervals.c (merge_interval_right, merge_interval_left):
6922 Do not zero out this interval if it is absorbed by its children,
6923 as this interval's total length doesn't change in that case. See
6924 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00403.html>.
6925
6926 2012-07-18 Paul Eggert <eggert@cs.ucla.edu>
6927
6928 * alloc.c (Fmake_bool_vector): Fix off-by-8 bug
6929 when invoking (make-bool-vector N t) and N is a positive
6930 multiple of 8 -- the last 8 bits were mistakenly cleared.
6931
6932 Remove some struct layout assumptions in bool vectors.
6933 * alloc.c (bool_header_size): New constant.
6934 (header_size, word_size): Move earlier, as they're now used earlier.
6935 Use 'word_size' in a few more places, where it's appropriate.
6936 (Fmake_bool_vector, sweep_vectors): Don't assume that there is no
6937 padding before the data member of a bool vector.
6938 (sweep_vectors): Use PSEUDOVECTOR_TYPEP, in an eassert, rather
6939 than doing the check by hand with an abort ().
6940
6941 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
6942
6943 * eval.c (Fdefvar): Don't check constants since we only set the var if
6944 it's not yet defined anyway (bug#11904).
6945
6946 * lisp.h (last_undo_boundary): Declare new var.
6947 * keyboard.c (command_loop_1): Set it.
6948 * cmds.c (Fself_insert_command): Use it to only remove boundaries that
6949 were auto-added by the command loop (bug#11774).
6950
6951 2012-07-18 Andreas Schwab <schwab@linux-m68k.org>
6952
6953 * w32font.c (Qsymbol): Remove local definition.
6954 (syms_of_w32font): Don't DEFSYM it.
6955
6956 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
6957
6958 Fix sweep_vectors to handle large bool vectors correctly.
6959 * alloc.c (sweep_vectors): Account total_vector_bytes for
6960 bool vectors larger than VBLOCK_BYTES_MAX.
6961
6962 2012-07-18 Chong Yidong <cyd@gnu.org>
6963
6964 * frame.c (x_set_frame_parameters): Revert bogus change introduced
6965 in 2012-05-25 commit by Paul Eggert (Bug#11738).
6966
6967 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
6968
6969 Return more descriptive data from Fgarbage_collect.
6970 Suggested by Stefan Monnier in
6971 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00369.html.
6972 * alloc.c (bounded_number): New function.
6973 (total_buffers, total_vectors): New variable.
6974 (total_string_size): Rename to total_string_bytes, adjust users.
6975 (total_vector_size): Rename to total_vector_bytes, adjust users.
6976 (sweep_vectors): Account total_vectors and total_vector_bytes.
6977 (Fgarbage_collect): New return value. Adjust documentation.
6978 (gc_sweep): Account total_buffers.
6979 (Fmemory_free, Fmemory_use_counts): Use bounded_number.
6980 (VECTOR_SIZE): Remove.
6981 * data.c (Qfloat, Qvector, Qsymbol, Qstring, Qcons): Make global.
6982 (Qinterval, Qmisc): New symbols.
6983 (syms_of_data): Initialize them.
6984 * lisp.h (Qinterval, Qsymbol, Qstring, Qmisc, Qvector, Qfloat)
6985 (Qcons, Qbuffer): New declarations.
6986
6987 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
6988
6989 * alloc.c (Fmemory_free): Account for memory-free's own storage.
6990 Round up, not down. Improve doc.
6991
6992 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
6993
6994 Restore old code in allocate_string_data to avoid Faset breakage.
6995 Reported by Julien Danjou <julien@danjou.info> in
6996 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00371.html.
6997 * alloc.c (allocate_string_data): Restore old code with minor
6998 adjustments, fix comment to explain this subtle issue.
6999
7000 2012-07-17 Eli Zaretskii <eliz@gnu.org>
7001
7002 Remove FILE_SYSTEM_CASE.
7003 * s/msdos.h (FILE_SYSTEM_CASE): Don't define.
7004
7005 * fileio.c (FILE_SYSTEM_CASE): Don't define.
7006 (Ffile_name_directory, Fexpand_file_name): Don't use FILE_SYSTEM_CASE.
7007 Fixes problems on MS-DOS with Vtemp_file_name_pattern when
7008 call-process-region passes it through expand-file-name.
7009
7010 * dired.c (file_name_completion): Don't use FILE_SYSTEM_CASE.
7011
7012 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
7013
7014 Fix crash when creating indirect buffer (Bug#11917)
7015 * buffer.c (buffer_lisp_local_variables): Add argument CLONE.
7016 Don't handle unbound variables specially if non-zero.
7017 (Fbuffer_local_variables): Pass zero.
7018 (clone_per_buffer_values): Pass non-zero.
7019
7020 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
7021
7022 * gnutls.c (emacs_gnutls_handshake): Revert last change. Add QUIT
7023 to make the loop interruptible.
7024
7025 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
7026
7027 * gnutls.c (emacs_gnutls_handshake): Only retry if
7028 GNUTLS_E_INTERRUPTED.
7029
7030 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
7031
7032 Cleanup and convert miscellaneous checks to eassert.
7033 * alloc.c (mark_interval): Fix comment, partially rephrase
7034 old comment from intervals.h (see below).
7035 * intervals.c (find_interval, adjust_intervals_for_insertion)
7036 (delete_interval, adjust_intervals_for_deletion)
7037 (graft_intervals_into_buffer, temp_set_point_both, copy_intervals):
7038 Convert to eassert.
7039 (adjust_intervals_for_insertion, make_new_interval):
7040 Remove obsolete and unused code.
7041 * intervals.h (struct interval): Remove obsolete comment.
7042 * textprotp.c (erase_properties): Remove unused code.
7043 (Fadd_text_properties, set_text_properties_1, Fremove_text_properties)
7044 (Fremove_list_of_text_properties): Convert to eassert.
7045
7046 2012-07-17 Chong Yidong <cyd@gnu.org>
7047
7048 * editfns.c (Finsert_char): Doc fix.
7049
7050 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
7051
7052 Fix previous change to make Fmemory_free always accurate.
7053 * alloc.c (make_interval): Update total_free_intervals.
7054 (make_float): Likewise for total_free_floats.
7055 (free_cons, Fcons): Likewise for total_free_conses.
7056 (SETUP_ON_FREE_LIST, allocate_vector_from_block):
7057 Likewise for total_free_vector_bytes.
7058 (Fmake_symbol): Likewise for total_free_symbols.
7059 (bytes_free): Remove.
7060
7061 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
7062
7063 Simple free memory accounting feature.
7064 * alloc.c (bytes_free, total_free_vector_bytes): New variable.
7065 (sweep_vectors): Accumulate size of free vectors.
7066 (Fgarbage_collect): Setup bytes_free.
7067 (Fmemory_free): New function.
7068 (syms_of_alloc): Register it.
7069
7070 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
7071
7072 Cleanup overlays checking.
7073 * buffer.h (OVERLAY_VALID): Remove as useless synonym of OVERLAYP.
7074 * buffer.c (overlay_touches_p, recenter_overlay_lists): Change to
7075 eassert and OVERLAYP.
7076 (sort_overlays): Change to use OVERLAYP.
7077
7078 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
7079
7080 * editfns.c (Finsert_char): Make it interactive, and make the
7081 second arg optional. Copy interactive spec and docstring from
7082 ucs-insert.
7083
7084 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
7085
7086 * floatfns.c (Fabs): Do not wrap fabs inside IN_FLOAT (Bug#11913).
7087 Unlike the other wrapped functions, fabs has an unspecified
7088 effect on errno.
7089
7090 2012-07-16 Jan Djärv <jan.h.d@swipnet.se>
7091
7092 * nsterm.m (keyDown): Interpret flags without left/right bits
7093 as the left key (Bug#11670).
7094
7095 2012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
7096
7097 Remove empty and useless init functions.
7098 * lisp.h (init_character_once, init_fns, init_image)
7099 (init_filelock, init_sound): Remove prototype.
7100 * character.c (init_character_once): Remove.
7101 * filelock.c (init_filelock): Likewise.
7102 * fns.c (init_fns): Likewise.
7103 * image.c (init_image): Likewise.
7104 * sound.c (init_sound): Likewise.
7105 * emacs.c (main): Adjust accordingly.
7106
7107 2012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
7108
7109 * gtkutil.h: Tiny cleanups.
7110 (use_old_gtk_file_dialog): Remove useless declaration.
7111 (xg_uses_old_file_dialog): Add suggested const attribute.
7112
7113 2012-07-15 Eli Zaretskii <eliz@gnu.org>
7114
7115 * bidi.c (MAX_STRONG_CHAR_SEARCH): New macro.
7116 (bidi_paragraph_init): Use it to limit search forward for a strong
7117 directional character in abnormally large paragraphs full of
7118 neutral or weak characters. (Bug#11943)
7119
7120 2012-07-15 Stefano Facchini <stefano.facchini@gmail.com> (tiny change)
7121
7122 * gtkutil.c (xg_create_tool_bar): Apply "primary-toolbar" style to
7123 the toolbar (Bug#9451).
7124 (xg_make_tool_item): Give the widget event box a transparent
7125 background.
7126
7127 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
7128
7129 Cleanup basic allocation variables and functions.
7130 * alloc.c (ignore_warnings, init_intervals, init_float)
7131 (init_cons, init_symbol, init_marker): Remove.
7132 (interval_block_index): Initialize to INTERVAL_BLOCK_SIZE.
7133 (float_block_index): Initialize to FLOAT_BLOCK_SIZE.
7134 (cons_block_index): Initialize to CONS_BLOCK_SIZE.
7135 (symbol_block_size): Initialize to SYMBOL_BLOCK_SIZE.
7136 (marker_block_index): Initialize to MARKER_BLOCK_SIZE.
7137 (staticidx, init_alloc_once, init_strings, free_ablock):
7138 Remove redundant initialization.
7139 * fns.c (init_weak_hash_tables): Remove.
7140 * lisp.h (init_weak_hash_tables): Remove prototype.
7141
7142 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
7143
7144 Use zero_vector where appropriate.
7145 * alloc.c (zero_vector): Define as Lisp_Object. Adjust users
7146 accordingly.
7147 * lisp.h (zero_vector): New declaration.
7148 * font.c (null_vector): Remove.
7149 (syms_of_font): Remove initialization and staticpro.
7150 (font_list_entities, font_find_for_lface): Change to use zero_vector.
7151 * keymap.c (Faccessible_keymaps): Likewise.
7152
7153 2012-07-15 Leo Liu <sdl.web@gmail.com>
7154
7155 * fringe.c: Fix typo in comments.
7156
7157 2012-07-14 Leo Liu <sdl.web@gmail.com>
7158
7159 * fringe.c: Add a new bitmap exclamation-mark.
7160
7161 2012-07-14 Eli Zaretskii <eliz@gnu.org>
7162
7163 * gmalloc.c (GMALLOC_INHIBIT_VALLOC): Don't reference.
7164
7165 * s/msdos.h (BSD_SYSTEM, DATA_START, GC_SETJMP_WORKS, HAVE_MOUSE)
7166 (HAVE_MENUS): Don't define, defined by editing config.in with
7167 msdos/sed2v2.inp.
7168 (GMALLOC_INHIBIT_VALLOC): Don't define.
7169 (MODE_LINE_BINARY_TEXT): Remove, not used anymore.
7170
7171 2012-07-14 Juanma Barranquero <lekktu@gmail.com>
7172
7173 * s/ms-w32.h (GC_SETJMP_WORKS, GC_MARK_STACK): Set in nt/config.nt.
7174
7175 2012-07-14 Glenn Morris <rgm@gnu.org>
7176
7177 * s/aix4-2.h, s/freebsd.h, s/gnu-linux.h, s/hpux10-20.h:
7178 * s/irix6-5.h, s/netbsd.h, s/sol2-6.h, s/unixware.h:
7179 Let configure set GC_SETJMP_WORKS, GC_MARK_STACK.
7180
7181 2012-07-13 Glenn Morris <rgm@gnu.org>
7182
7183 * s/gnu-linux.h (GC_MARK_SECONDARY_STACK): Let configure set it.
7184
7185 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Let configure set it.
7186 * s/irix6-5.h (SETUP_SLAVE_PTY): No more need to unset it.
7187
7188 2012-07-13 Jan Djärv <jan.h.d@swipnet.se>
7189
7190 * nsterm.m (uRect): Only define if NS_IMPL_GNUSTEP.
7191 (x_free_frame_resources): Pass x_free_frame_resources to NSTRACE.
7192 (ns_lisp_to_color, ns_string_to_lispmod, ns_term_init)
7193 (ns_term_shutdown, requestService, initFrameFromEmacs): Use SSDATA
7194 where appropriate.
7195 (ns_exec_path, ns_load_path, changeFont): Put () around assignment used
7196 as boolean expression.
7197 (x_set_window_size): Remove unused variable toolbar.
7198 (ns_get_color_default, ns_mod_to_lisp): Remove.
7199 (ns_mouse_position): Remove unused variables xchar and ychar.
7200 (ns_compute_glyph_string_overhangs): Remove unused variable face.
7201 (ns_set_vertical_scroll_bar): Remove unused variable count.
7202 (ns_delete_terminal): Remove unused variable i.
7203 (ns_term_init): Remove unused variables r, g and b.
7204 (mouseDown): Remove unused variable window.
7205 (windowDidResize): Move definition of theWindow inside NS_IMPL_GNUSTEP.
7206 (initFrameFromEmacs): Remove unused variable vbextra.
7207 (mouseEntered): Remove unused variables p and dpyinfo.
7208 (mouseExited): Remove unused variables p and r.
7209 (ns_define_frame_cursor, ns_clear_frame_area)
7210 (ns_draw_window_cursor, ns_initialize_display_info): Make static.
7211 (menuDown): Assign [sender tag] to variable and cast the variable.
7212
7213 * nsterm.h (menuDown): Add id as type to argument sender.
7214 (ns_display_info_for_name): Add Lisp_Object argument.
7215 (ns_term_init): Add Lisp_Object argument.
7216 (ns_map_event_to_object): Add void argument.
7217 (ns_string_from_pasteboard, ns_string_to_pasteboard): Add correct
7218 prototype with arguments and only declare if __OBJC__.
7219 (nxatoms_of_nsselect): Add void argument.
7220 (ns_lisp_to_cursor_type): Add Lisp_Object argument.
7221 (ns_alloc_autorelease_pool): Add void argument.
7222 (ns_release_autorelease_pool): Add void* argument.
7223 (ns_get_defaults_value): Add const char* argument.
7224
7225 * nsmenu.m (ns_update_menubar, ns_menu_show, process_dialog)
7226 (initFromContents): Use SSDATA where appropriate.
7227 (ns_update_menubar): Add braces to ambigous if-else.
7228 (initWithTitle): Put () around assignment in if statement.
7229 (ns_menu_show): Remove unused variables window and keymap.
7230 (update_frame_tool_bar): Remove unused variable selected_p.
7231 (initWithContentRect): Remove unused variable this_cmd_name.
7232
7233 * nsimage.m (ns_load_image, allocInitFromFile): Use SSDATA where
7234 appropriate.
7235 (setXBMColor): Remove unused variable len.
7236 (setPixmapData): Put () around assignment in loop statement.
7237
7238 * nsfont.m (ns_get_family, ns_lang_to_script, ns_otf_to_script)
7239 (ns_registry_to_script, ns_get_req_script, nsfont_open): Use SSDATA
7240 where appropriate.
7241 (ns_get_covering_families, ns_findfonts, nsfont_list_family): Put ()
7242 around assignment in loop statement.
7243 (nsfont_open): Remove unused variable i.
7244 (nsfont_open): Remove unused variable len.
7245 (nsfont_draw): Remove unused variable cs.
7246
7247 * nsfns.m (x_set_icon_name, ns_set_name_internal)
7248 (ns_set_name_as_filename, ns_implicitly_set_icon_type)
7249 (x_set_icon_type, ns_lisp_to_cursor_type, Fns_read_file_name)
7250 (Fns_get_resource, Fns_set_resource, Fx_open_connection)
7251 (Fns_font_name, Fns_perform_service)
7252 (Fns_convert_utf8_nfd_to_nfc, ns_do_applescript)
7253 (Fns_do_applescript, Fx_show_tip): Use SSDATA where appropriate.
7254 (ns_set_name): Remove unused variable view.
7255 (x_set_menu_bar_lines): Remove unused variable olines.
7256 (x_set_tool_bar_lines): Remove unused variable root_window.
7257 (Fns_list_colors): Put () around assignment in while statement.
7258 (Fns_perform_service): Remove unused variable len.
7259 (Fns_display_usable_bounds): Remove unused variable top.
7260 (syms_of_nsfns): Remove unused variable i.
7261
7262 * nsmenu.m (ns_update_menubar): Exchange place of argument 2 and 3 to
7263 memcpy (Bug#11907).
7264
7265 2012-07-13 Kalle Kankare <kalle.kankare@iki.fi> (tiny change)
7266
7267 * image.c (Fimagemagick_types): Initialize ex with GetExceptionInfo
7268 and free it with DestroyExceptionInfo (Bug#11558).
7269
7270 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
7271
7272 * s/ms-w32.h (FIRST_PTY_LETTER, HAVE_SOCKETS): Move to nt/config.nt.
7273 (HAVE_ATTRIBUTE_ALIGNED, HAVE_C99_STRTOLD, HAVE___BUILTIN_UNWIND_INIT):
7274 Set here, not in nt/config.nt.
7275
7276 2012-07-13 Eli Zaretskii <eliz@gnu.org>
7277
7278 * xdisp.c (move_it_in_display_line_to): On GUI terminals, allow
7279 cursor overflow into the last glyph on display line when the right
7280 fringe is off. (Bug#11832)
7281
7282 2012-07-13 Paul Eggert <eggert@cs.ucla.edu>
7283
7284 * xdisp.c (produce_special_glyphs): Now static.
7285 * dispextern.h (produce_special_glyphs): Remove decl.
7286
7287 2012-07-13 Glenn Morris <rgm@gnu.org>
7288
7289 * s/bsd-common.h, s/cygwin.h: Remove empty files.
7290 * s/freebsd.h, s/netbsd.h: Do not include bsd-common.h.
7291
7292 * s/usg5-4-common.h (USG, USG5):
7293 * s/template.h (USG5, USG, HPUX, BSD4_2, BSD_SYSTEM):
7294 * s/sol2-6.h (SOLARIS2):
7295 * s/irix6-5.h (IRIX6_5):
7296 * s/hpux10-20.h (USG, USG5, HPUX):
7297 * s/gnu-linux.h (USG, GNU_LINUX):
7298 * s/freebsd.h (BSD_SYSTEM):
7299 * s/darwin.h (BSD4_2, BSD_SYSTEM, DARWIN_OS):
7300 * s/cygwin.h (CYGWIN):
7301 * s/bsd-common.h (BSD_SYSTEM, BSD4_2):
7302 * s/aix4-2.h (USG, USG5, _AIX): Move "system type" macros to configure.
7303
7304 2012-07-13 BT Templeton <bpt@hcoop.net> (tiny change)
7305
7306 * nsfont.m (ns_charset_covers): Don't abort if no bitmap (Bug#11853).
7307
7308 2012-07-13 Glenn Morris <rgm@gnu.org>
7309
7310 * s/usg5-4-common.h (NSIG_MINIMUM): Let configure set it.
7311
7312 * s/gnu-linux.h, s/irix6-5.h: Let configure set ULIMIT_BREAK_VALUE.
7313
7314 * process.c (init_process_emacs): Replace MIN_PTY_KERNEL_VERSION.
7315 * s/darwin.h (MIN_PTY_KERNEL_VERSION): Remove single-use macro.
7316
7317 2012-07-12 Glenn Morris <rgm@gnu.org>
7318
7319 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Move to configure.
7320
7321 * process.c (init_process_emacs): Rename from init_process.
7322 The old name is also the name of a Mach system call.
7323 * lisp.h, emacs.c: Update for this name change.
7324 * nsgui.h, sysselect.h, s/darwin.h: Remove workaround that is no
7325 longer needed.
7326
7327 2012-07-12 Eli Zaretskii <eliz@gnu.org>
7328
7329 * xdisp.c (insert_left_trunc_glyphs): Fix incorrect size in
7330 memmove call that removes glyphs covered by the left truncation
7331 glyph. Improve commentary.
7332 (display_line): Fix display of continuation glyphs on GUI frames
7333 when the right fringe is turned off and variable-size fonts are
7334 used in the window. Move the code that appends a stretch glyph to
7335 produce_special_glyphs, so that it could be used for truncation
7336 and continuation glyphs alike.
7337 (produce_special_glyphs) [HAVE_WINDOW_SYSTEM]: Produce a stretch
7338 glyph of a suitably computed width, to align the special glyphs at
7339 the window margin. Code moved from display_line. (Bug#11832)
7340
7341 2012-07-12 Glenn Morris <rgm@gnu.org>
7342
7343 * s/aix4-2.h, s/hpux10-20.h: Let configure set NO_EDITRES.
7344
7345 * s/gnu-linux.h, s/hpux10-20.h:
7346 Do not unconditionally define HAVE_XRMSETDATABASE.
7347
7348 * s/gnu-linux.h (UNIX98_PTYS): Let configure set it.
7349
7350 2012-07-12 Paul Eggert <eggert@cs.ucla.edu>
7351
7352 Fix typos that broke OS X build.
7353 Reported by Randal L. Schwartz in
7354 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00225.html>.
7355 * nsterm.m (ns_timeout): Add missing local decl.
7356 (ns_get_color): snprintf -> sprintf, to fix typo.
7357
7358 2012-07-12 Glenn Morris <rgm@gnu.org>
7359
7360 * src/s/aix4-2.h, src/s/cygwin.h, src/s/darwin.h:
7361 * src/s/gnu-linux.h, src/s/hpux10-20.h, src/s/irix6-5.h:
7362 * src/s/sol2-6.h, src/s/unixware.h, src/s/usg5-4-common.h:
7363 Move PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF to configure.
7364
7365 * s/cygwin.h, s/darwin.h, s/gnu-linux.h, s/irix6-5.h:
7366 Move PTY_OPEN to configure.
7367
7368 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
7369 * s/gnu-linux.h, s/hpux10-20.h, s/irix6-5.h, s/template.h:
7370 * s/usg5-4-common.h: Move FIRST_PTY_LETTER, PTY_ITERATION to configure.
7371
7372 2012-07-12 Dmitry Antipov <dmantipov@yandex.ru>
7373
7374 Use empty_unibyte_string where applicable.
7375 * keyboard.c (parse_tool_bar_item): Use empty_unibyte_string.
7376 * lread.c (read1): Likewise.
7377 * xsettings.c (syms_of_xsettings): Likewise.
7378
7379 2012-07-12 Glenn Morris <rgm@gnu.org>
7380
7381 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC):
7382 * s/freebsd.h (BROKEN_PTY_READ_AFTER_EAGAIN):
7383 * s/irix6-5.h (SETPGRP_RELEASES_CTTY, PREFER_VSUSP):
7384 * s/hpux10-20.h (RUN_TIME_REMAP):
7385 * s/bsd-common.h (TABDLY): Move to configure.
7386
7387 * s/hpux10-20.h, s/sol2-6.h: Move XOS_NEEDS_TIME_H to configure.
7388
7389 * s/bsd-common.h, s/darwin.h: Move TAB3 to configure.
7390
7391 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
7392 (BROKEN_SIGPOLL, BROKEN_GET_CURRENT_DIR_NAME): Let configure set them.
7393
7394 * s/darwin.h (NO_ABORT, NO_MATHERR): Let configure set them.
7395
7396 * s/bsd-common.h, s/cygwin.h, s/gnu-linux.h, s/irix6-5.h:
7397 * s/template.h: Move NARROWPROTO to configure.
7398
7399 2012-07-11 Glenn Morris <rgm@gnu.org>
7400
7401 * s/gnu-linux.h, s/sol2-6.h: No longer define POSIX,
7402 unused since 2011-01-17 change to systty.h.
7403
7404 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h, s/gnu-linux.h:
7405 * s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
7406 Move HAVE_PTYS and HAVE_SOCKETS to configure.
7407
7408 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
7409
7410 * s/sol2-6.h (HAVE_LIBKSTAT): Remove. (Bug#11914)
7411
7412 2012-07-11 Glenn Morris <rgm@gnu.org>
7413
7414 * s/darwin.h, s/gnu-linux.h, s/template.h:
7415 Move INTERRUPT_INPUT to configure.
7416
7417 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
7418
7419 Minor adjustments to interning code.
7420 * lisp.h (intern, intern_c_string): Redefine as static inline
7421 wrappers for intern_1 and intern_c_string_1, respectively.
7422 (intern_1, intern_c_string_1): Rename prototypes.
7423 * lread.c (intern_1, intern_c_string_1, oblookup):
7424 Simplify Vobarray checking.
7425 * font.c (font_intern_prop): Likewise. Adjust comment.
7426 * w32font.c (intern_font_name): Likewise.
7427
7428 2012-07-11 Andreas Schwab <schwab@linux-m68k.org>
7429
7430 * gnutls.c (Fgnutls_boot): Properly parse :keylist argument.
7431
7432 * coding.c (Fdefine_coding_system_internal): Use XCAR/XCDR instead
7433 of Fcar/Fcdr if possible.
7434 * font.c (check_otf_features): Likewise.
7435 * fontset.c (Fnew_fontset): Likewise.
7436 * gnutls.c (Fgnutls_boot): Likewise.
7437 * minibuf.c (read_minibuf): Likewise.
7438 * msdos.c (IT_set_frame_parameters): Likewise.
7439 * xmenu.c (Fx_popup_dialog): Likewise.
7440 * w32menu.c (Fx_popup_dialog): Likewise.
7441
7442 2012-07-11 Glenn Morris <rgm@gnu.org>
7443
7444 * s/bsd-common.h, s/cygwin.h: No need to undefine INTERRUPT_INPUT,
7445 since nothing has defined it on these platforms.
7446
7447 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/gnu-linux.h:
7448 * s/irix6-5.h: Move SIGNALS_VIA_CHARACTERS to configure.
7449
7450 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
7451 * s/gnu-linux.h, s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
7452 Move CLASH_DETECTION to configure.
7453
7454 * s/gnu.h: Remove file, which is now empty.
7455
7456 * s/gnu.h, s/gnu-linux.h:
7457 Move GNU_LIBRARY_PENDING_OUTPUT_COUNT to configure.
7458
7459 2012-07-11 John Wiegley <johnw@newartisans.com>
7460
7461 * alloc.c (mark_memory): Guard the "no_address_safety_analysis"
7462 function attribute, so we only use it if it exists in the
7463 compiler.
7464
7465 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
7466
7467 Avoid call to strlen in fast_c_string_match_ignore_case.
7468 * search.c (fast_c_string_match_ignore_case): Change to use
7469 length argument. Adjust users accordingly.
7470 * lisp.h (fast_c_string_match_ignore_case): Adjust prototype.
7471
7472 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
7473
7474 Assume mkdir, rmdir.
7475 * sysdep.c (mkdir) [!HAVE_MKDIR]: Remove.
7476 * sysdep.c (rmdir) [!HAVE_RMDIR]: Remove.
7477
7478 Assume rename.
7479 * sysdep.c (rename) [!HAVE_RENAME]: Remove.
7480
7481 Assume perror.
7482 * s/hpux10-20.h (HAVE_PERROR): Remove.
7483 * sysdep.c (perror) [HPUX && !HAVE_PERROR]:
7484 Remove dummy definition, as this problem was obsolete long ago.
7485
7486 Assume strerror.
7487 * sysdep.c (strerror) [!HAVE_STRERROR && !WINDOWSNT]: Remove.
7488
7489 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
7490
7491 Avoid calls to strlen in font processing functions.
7492 * font.c (font_parse_name, font_parse_xlfd, font_parse_fcname)
7493 (font_open_by_name): Change to use length argument.
7494 Adjust users accordingly.
7495 * font.h (font_open_by_name, font_parse_xlfd, font_unparse_xlfd):
7496 Adjust prototypes.
7497 * xfont.c (xfont_decode_coding_xlfd, font_unparse_xlfd):
7498 Change to return ptrdiff_t.
7499 (xfont_list_pattern, xfont_match): Use length returned by
7500 xfont_decode_coding_xlfd.
7501 * xfns.c (x_default_font_parameter): Omit useless xstrdup.
7502
7503 2012-07-11 Glenn Morris <rgm@gnu.org>
7504
7505 * s/darwin.h, s/freebsd.h, s/netbsd.h:
7506 Move DONT_REOPEN_PTY to configure.
7507
7508 * sound.c (DEFAULT_SOUND_DEVICE) [!WINDOWSNT]:
7509 * s/netbsd.h (DEFAULT_SOUND_DEVICE): Let configure set it.
7510
7511 2012-07-10 Paul Eggert <eggert@cs.ucla.edu>
7512
7513 Remove "#define unix" that is no longer needed (Bug#11905).
7514 * s/aix4-2.h (unix): Remove; no longer needed.
7515
7516 EMACS_TIME simplification (Bug#11875).
7517 This replaces macros (which typically do not work in GDB)
7518 with functions, typedefs and enums, making the code easier to debug.
7519 The functional style also makes code easier to read and maintain.
7520 * systime.h: Include <sys/time.h> on all hosts, not just if
7521 WINDOWSNT, since 'struct timeval' is needed in general.
7522 (EMACS_TIME): Now a typedef, not a macro.
7523 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): Now constants,
7524 not macros.
7525 (EMACS_SECS, EMACS_NSECS, EMACS_TIME_SIGN, EMACS_TIME_VALID_P)
7526 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE, EMACS_TIME_EQ)
7527 (EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE, EMACS_TIME_LT)
7528 (EMACS_TIME_LE): Now functions, not macros.
7529 (EMACS_SET_SECS, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS)
7530 (EMACS_SET_USECS, EMACS_SET_SECS_USECS): Remove these macros,
7531 which are not functions. All uses rewritten to use:
7532 (make_emacs_time): New function.
7533 (EMACS_SECS_ADDR, EMACS_SET_INVALID_TIME, EMACS_GET_TIME)
7534 (EMACS_ADD_TIME, EMACS_SUB_TIME): Remove these macros, which are
7535 not functions. All uses rewritten to use the following, respectively:
7536 (emacs_secs_addr, invalid_emacs_time, get_emacs_time)
7537 (add_emacs_time, sub_emacs_time): New functions.
7538 * atimer.c: Don't include <sys/time.h>, as "systime.h" does this.
7539 * fileio.c (Fcopy_file):
7540 * xterm.c (XTflash): Get the current time closer to when it's used.
7541 * makefile.w32-in ($(BLD)/atimer.$(O)): Update dependencies.
7542
7543 * bytecode.c (targets): Suppress -Woverride-init warnings.
7544
7545 Simplify by avoiding confusing use of strncpy etc.
7546 * doc.c (Fsnarf_documentation):
7547 * fileio.c (Ffile_name_directory, Fsubstitute_in_file_name):
7548 * frame.c (Fmake_terminal_frame):
7549 * gtkutil.c (get_utf8_string):
7550 * lread.c (openp):
7551 * nsmenu.m (ns_update_menubar):
7552 * regex.c (regerror):
7553 Prefer memcpy to strncpy and strncat when either will do.
7554 * fileio.c (Fsubstitute_in_file_name):
7555 * keyboard.c (MULTI_LETTER_MOD, parse_modifiers_uncached)
7556 (menu_separator_name_p):
7557 * nsmenu.m (ns_update_menubar):
7558 Prefer memcmp to strncmp when either will do.
7559 * nsterm.m: Include <ftoastr.h>.
7560 (ns_get_color):
7561 * s/gnu-linux.h, s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF):
7562 Prefer snprintf to strncpy.
7563 * nsterm.m (ns_term_init):
7564 * widget.c (set_frame_size) [0]: Prefer xstrdup to xmalloc + strncpy.
7565 * nsterm.m (ns_term_init):
7566 Avoid the need for strncpy, by using build_string or
7567 make_unibyte_string directly. Use dtoastr, not snprintf.
7568 * process.c (Fmake_network_process): Diagnose service names that
7569 are too long, rather than silently truncating them or creating
7570 non-null-terminated names.
7571 (Fnetwork_interface_info): Likewise, for interface names.
7572 * sysdep.c (system_process_attributes) [GNU_LINUX]:
7573 Prefer sprintf to strncat.
7574 * xdisp.c (debug_method_add) [GLYPH_DEBUG]:
7575 Prefer vsnprintf to vsprintf + strncpy.
7576
7577 2012-07-10 Glenn Morris <rgm@gnu.org>
7578
7579 * dispnew.c (PENDING_OUTPUT_COUNT) [!__GNU_LIBRARY__]:
7580 Clarify fallback case.
7581
7582 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
7583
7584 Use XCAR and XCDR instead of Fcar and Fcdr where possible.
7585 * callint.c, coding.c, doc.c, editfns.c, eval.c, font.c, fontset.c,
7586 * frame.c, gnutls.c, minibuf.c, msdos.c, textprop.c, w32fns.c,
7587 * w32menu.c, window.c, xmenu.c: Change to use XCAR and XCDR
7588 where argument type is known to be a Lisp_Cons.
7589
7590 2012-07-10 Tom Tromey <tromey@redhat.com>
7591
7592 * bytecode.c (BYTE_CODE_THREADED): New macro.
7593 (BYTE_CODES): New macro. Replaces all old byte-code defines.
7594 (enum byte_code_op): New type.
7595 (CASE, NEXT, FIRST, CASE_DEFAULT, CASE_ABORT): New macros.
7596 (exec_byte_code): Use them. Use token threading when applicable.
7597
7598 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
7599
7600 Optimize pure C strings initialization.
7601 * lisp.h (make_pure_string): Fix prototype.
7602 (build_pure_c_string): New function, defined as static inline. This
7603 provides a better opportunity to optimize away calls to strlen when
7604 the function is called with compile-time constant argument.
7605 * alloc.c (make_pure_c_string): Fix comment. Change to add nchars
7606 argument, adjust users accordingly. Use build_pure_c_string where
7607 appropriate.
7608 * buffer.c, coding.c, data.c, dbusbind.c, fileio.c, fontset.c, frame.c,
7609 * keyboard.c, keymap.c, lread.c, search.c, syntax.c, w32fns.c, xdisp.c,
7610 * xfaces.c, xfns.c, xterm.c: Use build_pure_c_string where appropriate.
7611
7612 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
7613
7614 Avoid calls to strlen in miscellaneous functions.
7615 * buffer.c (init_buffer): Use precalculated len, adjust if needed.
7616 * font.c (Ffont_xlfd_name): Likewise. Change to call make_string.
7617 * lread.c (openp): Likewise.
7618
7619 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
7620
7621 Avoid calls to strlen in path processing functions.
7622 * fileio.c (file_name_as_directory): Add comment. Change to add
7623 srclen argument and return the length of result. Adjust users
7624 accordingly.
7625 (directory_file_name): Fix comment. Change to add srclen argument,
7626 swap 1st and 2nd arguments to obey the common convention.
7627 Adjust users accordingly.
7628 * filelock.c (fill_in_lock_file_name): Avoid calls to strlen.
7629
7630 2012-07-10 Glenn Morris <rgm@gnu.org>
7631
7632 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/netbsd.h, s/unixware.h:
7633 Move PENDING_OUTPUT_COUNT definition to configure.
7634
7635 * s/irix6-5.h (DATA_START, DATA_SEG_BITS):
7636 * s/hpux10-20.h (DATA_SEG_BITS, DATA_START):
7637 * s/gnu.h (DATA_START): Move definitions to configure.
7638
7639 * s/irix6-5.h (SETUP_SLAVE_PTY, PTY_NAME_SPRINTF): Drop ifdef guards.
7640 We include usg5-4-common.h, which defines them both.
7641
7642 * s/gnu.h: Don't include fcntl.h (every file in Emacs that uses
7643 O_RDONLY already includes it).
7644
7645 Stop ns builds setting the EMACSLOADPATH environment variable.
7646 * nsterm.m (ns_load_path): Rename from ns_init_paths.
7647 Now it does not set EMACSLOADPATH, just returns the load-path string.
7648 * nsterm.h: Update accordingly.
7649 * lread.c [HAVE_NS]: Include nsterm.h.
7650 (init_lread) [HAVE_NS]: Use ns_load_path.
7651 * emacs.c (main) [HAVE_NS]: No longer call ns_init_paths.
7652
7653 2012-07-09 Glenn Morris <rgm@gnu.org>
7654
7655 * s/gnu.h (SIGNALS_VIA_CHARACTERS): No need to define it here,
7656 since the included bsd-common.h does so.
7657
7658 Stop ns builds setting the EMACSPATH environment variable.
7659 * nsterm.m (ns_exec_path): New function, split from ns_init_paths.
7660 (ns_init_paths): Do not set EMACSPATH.
7661 * nsterm.h (ns_exec_path): Add it.
7662 * callproc.c (init_callproc_1, init_callproc) [HAVE_NS]:
7663 Use ns_exec_path.
7664
7665 * nsterm.m, nsterm.h (ns_etc_directory): Fix type, empty return.
7666
7667 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
7668
7669 * process.c (wait_reading_process_output): 'waitchannels' was unset
7670 when read_kbd || !NILP (wait_for_cell); fix this.
7671
7672 Add GCC-style 'const' attribute to functions that can use it.
7673 * character.h (char_resolve_modifier_mask):
7674 * keyboard.h (make_ctrl_char):
7675 * lisp.h (multibyte_char_to_unibyte, multibyte_char_to_unibyte_safe)
7676 (init_character_once, next_almost_prime, init_fns, init_image)
7677 (flush_pending_output, init_sound):
7678 * mem-limits.h (start_of_data):
7679 * menu.h (finish_menu_items):
7680 Add ATTRIBUTE_CONST.
7681 * emacs.c (DEFINE_DUMMY_FUNCTION):
7682 Declare the dummy function with ATTRIBUTE_CONST.
7683 * lisp.h (Fbyteorder, Fmax_char, Fidentity):
7684 Add decls with ATTRIBUTE_CONST.
7685
7686 Minor improvements to make_formatted_string.
7687 * alloc.c (make_formatted_string): Prefer int to ptrdiff_t
7688 where int is good enough, as vsprintf returns an int.
7689 * lisp.h (make_formatted_string): Add ATTRIBUTE_FORMAT_PRINTF.
7690
7691 2012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
7692
7693 Use make_formatted_string to avoid double length calculation.
7694 * lisp.h (make_formatted_string): New prototype.
7695 * alloc.c (make_formatted_string): New function.
7696 * buffer.c (Fgenerate_new_buffer_name): Use it.
7697 * dbusbind.c (syms_of_dbusbind): Likewise.
7698 * editfns.c (Fcurrent_time_zone): Likewise.
7699 * filelock.c (get_boot_time): Likewise.
7700 * frame.c (make_terminal_frame, set_term_frame_name)
7701 (x_report_frame_params): Likewise.
7702 * image.c (gs_load): Likewise.
7703 * minibuf.c (get_minibuffer): Likewise.
7704 * msdos.c (dos_set_window_size): Likewise.
7705 * process.c (make_process): Likewise.
7706 * xdisp.c (ensure_echo_area_buffers): Likewise.
7707 * xsettings.c (apply_xft_settings): Likewise.
7708
7709 2012-07-09 Glenn Morris <rgm@gnu.org>
7710
7711 Stop ns builds polluting the environment with EMACSDATA, EMACSDOC.
7712 * nsterm.m (ns_etc_directory): New function, split from ns_init_paths.
7713 (ns_init_paths): Do not set EMACSDATA, EMACSDOC.
7714 * nsterm.h (ns_etc_directory): Add it.
7715 * callproc.c [HAVE_NS]: Include nsterm.h.
7716 (init_callproc_1, init_callproc) [HAVE_NS]: Use ns_etc_directory.
7717
7718 2012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
7719
7720 Move marker debugging code under MARKER_DEBUG.
7721 * marker.c (MARKER_DEBUG): Move marker debugging code under
7722 #ifdef MARKER_DEBUG because byte_char_debug_check is too slow
7723 for bootstrap with --enable-checking (~3x slowdown reported
7724 by Juanma Barranquero <lekktu@gmail.com>).
7725 (verify_bytepos): Move under #ifdef MARKER_DEBUG.
7726
7727 2012-07-08 Paul Eggert <eggert@cs.ucla.edu>
7728
7729 * systime.h (EMACS_SUB_TIME): Clarify behavior with unsigned time_t.
7730 See <http://bugs.gnu.org/11825#29>.
7731
7732 2012-07-08 Eli Zaretskii <eliz@gnu.org>
7733
7734 * xdisp.c (fill_glyphless_glyph_string): If the face of the glyph
7735 has no font, use the frame's font. (Bug#11813)
7736 (display_line): Add commentary about displaying truncation glyphs
7737 on GUI frames.
7738 (produce_special_glyphs): Move here from term.c.
7739
7740 * term.c (produce_special_glyphs): Move to xdisp.c.
7741
7742 * dispextern.h (produce_special_glyphs): Move prototype to xdisp.c
7743 section.
7744
7745 2012-07-07 Andreas Schwab <schwab@linux-m68k.org>
7746
7747 * xdisp.c (display_line): Avoid warning about implicit declaration
7748 of FRAME_FONT.
7749
7750 * frame.c (get_frame_param): Define only if HAVE_WINDOW_SYSTEM.
7751
7752 * lisp.h: Remove empty conditional.
7753
7754 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
7755
7756 * lread.c (load_path_check): Now static.
7757
7758 Fix some minor --with-ns problems found by static checking.
7759 * frame.c (Ftool_bar_pixel_width) [!FRAME_TOOLBAR_WIDTH]:
7760 (x_set_font) [!HAVE_X_WINDOWS]:
7761 * image.c (xpm_load_image) [HAVE_NS]:
7762 (x_to_xcolors) [!HAVE_X_WINDOWS && !HAVE_NTGUI]:
7763 (x_disable_image) [!HAVE_NS && !HAVE_NTGUI]:
7764 Remove unused local.
7765 (Fx_parse_geometry) [HAVE_NS]: Don't return garbage.
7766 (xpm_load_image) [HAVE_NS && !HAVE_XPM]: Remove unused label.
7767 * image.c (x_create_bitmap_from_file) [HAVE_NS]:
7768 (xpm_load_image, xpm_load) [HAVE_NS && !HAVE_XPM]:
7769 * nsselect.m (symbol_to_nsstring, ns_string_to_pasteboard_internal):
7770 * xfaces.c (Fx_load_color_file) [!HAVE_X_WINDOWS]:
7771 Fix pointer signedness problem.
7772 * xfaces.c (FRAME_X_FONT_TABLE):
7773 * xterm.h (FRAME_X_FONT_TABLE): Remove unused, incompatible macros.
7774
7775 2012-07-07 Glenn Morris <rgm@gnu.org>
7776
7777 * lread.c (load_path_check): New function, split from init_lread.
7778 (init_lread): Reorganize. Motivation:
7779 If EMACSLOADPATH is set, check/warn about that rather than the
7780 defaults, which we are not going to use. Hence we can remove
7781 the turn_off_warning and WINDOWSNT || HAVE_NS tests.
7782 Don't warn if site-lisp directories are missing.
7783 If not installed, start from a blank load-path, since
7784 PATH_LOADSEARCH refers to the eventual installation directories.
7785
7786 2012-07-07 Eli Zaretskii <eliz@gnu.org>
7787
7788 Support truncation and continuation glyphs on GUI frames, when
7789 fringes are disabled. (Bug#11832)
7790 * xdisp.c (init_iterator): Get dimensions of truncation and
7791 continuation glyphs even if on GUI frames.
7792 Adjust it->last_visible_x on GUI frames when the left or right fringes,
7793 or both, are absent.
7794 (start_display, move_it_in_display_line_to): Handle the case of a
7795 GUI frame without a fringe to display continuation or truncation
7796 glyphs.
7797 (insert_left_trunc_glyphs): Support GUI frames: make sure
7798 truncation glyphs overwrite enough glyphs from the current line to
7799 have sufficient space in pixels.
7800 (display_line): Support truncation and continuation glyphs on GUI
7801 frames. If some spare pixels are left on the line after inserting
7802 the truncation glyphs, fill that space with a stretch glyph of a
7803 suitably computed width.
7804
7805 * term.c (produce_special_glyphs): Call PRODUCE_GLYPHS, not
7806 produce_glyphs, to support GUI sessions.
7807
7808 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
7809
7810 * sysdep.c (ULLONG_MAX): Define if not already defined (Bug#11781).
7811
7812 * sysdep.c (list_system_processes): Port to NetBSD-current (Bug#11797).
7813
7814 Do not require float-time's arg to fit in time_t (Bug#11825).
7815 This works better on hosts where time_t is unsigned, and where
7816 float-time is applied to the (negative) difference between two times.
7817 * editfns.c (decode_time_components): Last arg is now double *,
7818 not int *, and means to store all the result as a double, without
7819 worrying about whether the seconds part fits in time_t.
7820 All callers changed.
7821 (lisp_time_argument): Remove last int * arg, as it's no longer needed.
7822 All callers changed.
7823 (Ffloat_time): Do not fail merely because the specified time falls
7824 outside of time_t range.
7825
7826 2012-07-07 Glenn Morris <rgm@gnu.org>
7827
7828 * s/darwin.h (HAVE_RES_INIT, HAVE_LIBRESOLV):
7829 * s/hpux10-20.h (HAVE_RINT, HAVE_RANDOM):
7830 * s/unixware.h (HAVE_GETWD): Move undefs to configure (effectively).
7831
7832 2012-07-07 Juanma Barranquero <lekktu@gmail.com>
7833
7834 * makefile.w32-in (DISPEXTERN_H, $(BLD)/regex.$(O)):
7835 Update dependencies.
7836
7837 * s/ms-w32.h [_MSC_VER]: Remove strcasecmp, strncasecmp.
7838
7839 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
7840
7841 Use c_strcasecmp for ASCII case-insensitive comparison (Bug#11786).
7842 * dispextern.h, nsfns.m, nsterm.m: Include <c-strcase.h>.
7843 * dispextern.h (xstrcasecmp): Rewrite using c_strcasecmp.
7844 * nsfns.m (x_get_string_resource): Use c_strncasecmp, not strncasecmp.
7845 * nsterm.m (ns_default): Use c_strcasecmp, not strcasecmp.
7846 * xfaces.c (xstrcasecmp) [!HAVE_STRCASECMP]: Remove.
7847
7848 * xfont.c (compare_font_names): Redo to omit the need for casts.
7849
7850 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
7851
7852 * xfns.c (Fx_change_window_property): Doc fix.
7853 * w32fns.c (Fx_change_window_property): Doc fix.
7854
7855 * w32fns.c (Fx_window_property): Accept the same arguments as the
7856 X Windows version. Doc fix.
7857 * xfns.c (Fx_window_property): Doc fix. (Bug#11870)
7858
7859 2012-07-06 Juanma Barranquero <lekktu@gmail.com>
7860 Eli Zaretskii <eliz@gnu.org>
7861
7862 * s/ms-w32.h: Settings not specific to Windows moved to nt/config.nt.
7863 Windows-specific code from nt/config.nt moved here.
7864 Obsolete settings removed.
7865
7866 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
7867
7868 * process.c: Avoid unnecessary calls to gettime.
7869 (wait_reading_process_output): Don't get the time of day
7870 when gobbling data immediately and not waiting, as there's no need
7871 for it in that case. This removes a FIXME.
7872
7873 2012-07-06 Jan Djärv <jan.h.d@swipnet.se>
7874
7875 * gtkutil.c (xg_event_is_for_scrollbar): Assign gwin when HAVE_GTK3
7876 is defined (Bug#11768).
7877
7878 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
7879
7880 Fix marker debugging code.
7881 * marker.c (byte_char_debug_check): Do not perform the check
7882 if buffer is not multibyte.
7883 (buf_charpos_to_bytepos, buf_bytepos_to_charpos):
7884 Call byte_char_debug_check with correct arguments.
7885
7886 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
7887
7888 Compile marker debugging code only if ENABLE_CHECKING is defined.
7889 * marker.c (byte_char_debug_check, count_markers):
7890 Use only if ENABLE_CHECKING is defined.
7891 (byte_debug_flag): Remove.
7892 (CONSIDER, buf_charpos_to_bytepos, buf_bytepos_to_charpos):
7893 Always call byte_char_debug_check if ENABLE_CHECKING is defined.
7894
7895 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
7896
7897 Avoid code repetition in marker-related functions.
7898 * marker.c (attach_marker): New function.
7899 (Fset_marker, set_marker_restricted, set_marker_both)
7900 (set_marker_restricted_both): Use it.
7901 (Fset_marker, set_marker_restricted, Fbuffer_has_markers_at):
7902 Consistently rename charno to charpos.
7903 (marker_position): Add eassert.
7904 (marker_byte_position): Convert to eassert.
7905
7906 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
7907
7908 Simplify list operations in unchain_overlay and unchain_marker.
7909 * buffer.c (unchain_overlay): Simplify. Add comment.
7910 * marker.c (unchain_marker): Simplify. Fix comments.
7911
7912 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
7913
7914 Introduce fast path for the widely used marker operation.
7915 * alloc.c (build_marker): New function.
7916 * lisp.h (build_marker): New prototype.
7917 * buffer.c (clone_per_buffer_values, Fmake_indirect_buffer): Use it.
7918 * composite.c (autocmp_chars): Likewise.
7919 * editfns.c (buildmark): Remove.
7920 (Fpoint_marker, Fpoint_min_marker, Fpoint_max_marker)
7921 (save_restriction_save): Use build_marker.
7922 * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos): Likewise.
7923 * window.c (save_window_save): Likewise.
7924
7925 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
7926
7927 Do not use Fdelete_overlay in delete_all_overlays
7928 to avoid redundant calls to unchain_overlay.
7929 * buffer.c (drop_overlay): New function.
7930 (delete_all_overlays, Fdelete_overlay): Use it.
7931 * minibuf.c (get_minibuffer): Fix comment.
7932
7933 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
7934
7935 Port to OpenBSD 5.1 amd64.
7936 * sysdep.c [BSD_SYSTEM]: Include <sys/param.h> before <sys/sysctl.h>.
7937 This is needed for OpenBSD, and should be harmless on all BSD systems.
7938 Also, include <sys/sysctl.h>, as it should be available on all
7939 BSD_SYSTEM hosts given that we're already calling sysctl in that case.
7940 (list_system_processes) [__OpenBSD__]: Use DARWIN_OS style mib, but
7941 use p_pid member, not kp_proc.pid.
7942
7943 2012-07-06 Glenn Morris <rgm@gnu.org>
7944
7945 * Makefile.in (emacs$(EXEEXT)): Don't check for load-path shadows.
7946
7947 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
7948
7949 More xmalloc and related cleanup.
7950 * alloc.c, bidi.c, buffer.c, buffer.h, bytecode.c, callint.c:
7951 * callproc.c, charset.c, coding.c, composite.c, data.c, dispnew.c:
7952 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, fns.c:
7953 * font.c, fontset.c, frame.c, fringe.c, ftfont.c, ftxfont.c, gmalloc.c:
7954 * gtkutil.c, image.c, keyboard.c, keymap.c, lread.c, macros.c, menu.c:
7955 * nsfns.m, nsfont.m, nsmenu.m, nsterm.m, print.c, process.c, ralloc.c:
7956 * regex.c, region-cache.c, scroll.c, search.c, sound.c, syntax.c:
7957 * sysdep.c, term.c, termcap.c, unexmacosx.c, window.c, xdisp.c:
7958 * xfaces.c, xfns.c, xftfont.c, xgselect.c, xmenu.c, xrdb.c, xselect.c:
7959 * xterm.c:
7960 Omit needless casts involving void * pointers and allocation.
7961 Prefer "P = xmalloc (sizeof *P)" to "P = xmalloc (sizeof (TYPE_OF_P))",
7962 as the former is more robust if P's type is changed.
7963 Prefer xzalloc to xmalloc + memset 0.
7964 Simplify malloc-or-realloc to realloc.
7965 Don't worry about xmalloc returning a null pointer.
7966 Prefer xstrdup to xmalloc + strcpy.
7967 * editfns.c (Fmessage_box): Grow message_text by at least 80 when
7968 growing it.
7969 * keyboard.c (apply_modifiers_uncached): Prefer local array to
7970 alloca of a constant.
7971
7972 2012-07-05 Eli Zaretskii <eliz@gnu.org>
7973
7974 * xdisp.c (display_line): Fix horizontal pixel coordinates when
7975 hscroll is larger than the line width. Fixes long and futile
7976 looping inside extend_face_to_end_of_line (on a TTY) producing
7977 glyphs that are not needed and thrown away.
7978
7979 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
7980
7981 * marker.c (set_marker_restricted_both): Simplify by using
7982 clip_to_bounds.
7983
7984 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
7985
7986 * editfns.c (region_limit): Simplify by using clip_to_bounds.
7987
7988 2012-07-05 Jan Djärv <jan.h.d@swipnet.se>
7989
7990 * gtkutil.c (gtk_scrollbar_new, gtk_box_new): Define when HAVE_GTK3 is
7991 not defined (Bug#11768).
7992 (xg_create_frame_widgets): Use gtk_plug_new_for_display (Bug#11768).
7993 (xg_create_frame_widgets, create_dialog, xg_get_file_with_chooser)
7994 (make_widget_for_menu_item, xg_make_tool_item): Use gtk_box_new
7995 followed by gtk_box_set_homogeneous (Bug#11768).
7996 (xg_update_menu_item): Use GTK_IS_BOX (Bug#11768).
7997 (update_theme_scrollbar_width, xg_create_scroll_bar):
7998 Use gtk_scrollbar_new (Bug#11768).
7999 (xg_event_is_for_scrollbar): Use Gdk Device functions for HAVE_GTK3.
8000 (is_box_type): New function (Bug#11768).
8001 (xg_tool_item_stale_p): Call is_box_type.
8002 (xg_initialize): Get settings by calling gtk_settings_get_for_screen
8003 with default display (Bug#11768).
8004
8005 2012-07-05 Eli Zaretskii <eliz@gnu.org>
8006
8007 * xdisp.c (window_hscroll_limited): New function.
8008 (pos_visible_p, init_iterator): Use it to avoid overflow of pixel
8009 coordinates when window's hscroll is set to insanely large
8010 values. (Bug#11857)
8011
8012 2012-07-05 Juanma Barranquero <lekktu@gmail.com>
8013
8014 * makefile.w32-in ($(BLD)/dired.$(O), $(BLD)/fileio.$(O)): Fix typo.
8015 ($(BLD)/terminal.$(O), $(BLD)/syntax.$(O)): Update dependencies.
8016
8017 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
8018
8019 Cleanup xmalloc.
8020 * lisp.h (xzalloc): New prototype. Omit needless casts.
8021 * alloc.c (xzalloc): New function. Omit needless casts.
8022 * charset.c: Omit needless casts. Convert all calls to
8023 xmalloc with following memset to xzalloc.
8024 * dispnew.c: Likewise.
8025 * fringe.c: Likewise.
8026 * image.c: Likewise.
8027 * sound.c: Likewise.
8028 * term.c: Likewise.
8029 * w32fns.c: Likewise.
8030 * w32font.c: Likewise.
8031 * w32term.c: Likewise.
8032 * xfaces.c: Likewise.
8033 * xfns.c: Likewise.
8034 * xterm.c: Likewise.
8035 * atimer.c: Omit needless casts.
8036 * buffer.c: Likewise.
8037 * callproc.c: Likewise.
8038 * ccl.c: Likewise.
8039 * coding.c: Likewise.
8040 * composite.c: Likewise.
8041 * doc.c: Likewise.
8042 * doprnt.c: Likewise.
8043 * editfns.c: Likewise.
8044 * emacs.c: Likewise.
8045 * eval.c: Likewise.
8046 * filelock.c: Likewise.
8047 * fns.c: Likewise.
8048 * gtkutil.c: Likewise.
8049 * keyboard.c: Likewise.
8050 * lisp.h: Likewise.
8051 * lread.c: Likewise.
8052 * minibuf.c: Likewise.
8053 * msdos.c: Likewise.
8054 * print.c: Likewise.
8055 * process.c: Likewise.
8056 * region-cache.c: Likewise.
8057 * search.c: Likewise.
8058 * sysdep.c: Likewise.
8059 * termcap.c: Likewise.
8060 * terminal.c: Likewise.
8061 * tparam.c: Likewise.
8062 * w16select.c: Likewise.
8063 * w32.c: Likewise.
8064 * w32reg.c: Likewise.
8065 * w32select.c: Likewise.
8066 * w32uniscribe.c: Likewise.
8067 * widget.c: Likewise.
8068 * xdisp.c: Likewise.
8069 * xmenu.c: Likewise.
8070 * xrdb.c: Likewise.
8071 * xselect.c: Likewise.
8072
8073 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
8074
8075 * fileio.c (time_error_value): Check the right error number.
8076 Problem reported by Troels Nielsen in
8077 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00095.html>.
8078
8079 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
8080
8081 * window.c (set_window_hscroll): Revert the 100000 hscroll limit.
8082 This should be fixed in a better way; see Eli Zaretskii in
8083 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00088.html>.
8084 (HSCROLL_MAX): Remove; this is now internal to set_window_hscroll.
8085
8086 * fileio.c (time_error_value): Rename from special_mtime.
8087 The old name's problems were noted by Eli Zaretskii in
8088 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00087.html>.
8089
8090 * emacs.c (gdb_pvec_type): Change it back to enum pvec_type.
8091 This variable's comment says Emacs needs at least one GDB-visible
8092 symbol of type enum pvec_type, to work around GDB problems.
8093 The symbol's value doesn't matter.
8094
8095 * alloc.c (PSEUDOVECTOR_NBYTES): Remove stray ';'
8096 that causes compilation to fail on pre-C99 compilers.
8097
8098 2012-07-04 Juanma Barranquero <lekktu@gmail.com>
8099
8100 * s/ms-w32.h (LISP_FLOAT_TYPE, HAVE_MEMCMP, HAVE_MEMCPY)
8101 (HAVE_MEMMOVE, HAVE_MEMSET): Don't set, obsolete.
8102
8103 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
8104
8105 * buffer.c (init_buffer_once): Fix initialization of
8106 headers for buffer_defaults and buffer_local_symbols.
8107 Reported by Juanma Barranquero <lekktu@gmail.com>.
8108
8109 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
8110
8111 Turn VECTOR_FREE_LIST_FLAG into PVEC_FREE.
8112 * lisp.h (enum pvec_type): Use fewer bits.
8113 (PSEUDOVECTOR_SIZE_BITS): New constant.
8114 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK): Use it.
8115 (XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR, DEFUN): Adapt code to
8116 change in pvec_type.
8117 (PSEUDOVECTOR_TYPEP): New macro.
8118 (TYPED_PSEUDOVECTORP): Use it.
8119 * fns.c (internal_equal): Adapt code to extract pvectype.
8120 * emacs.c (gdb_pvec_type): Update type.
8121 * alloc.c (PSEUDOVECTOR_NBYTES): New macro.
8122 (VECTOR_FREE_LIST_SIZE_MASK): Remove (=> PSEUDOVECTOR_SIZE_MASK).
8123 (VECTOR_FREE_LIST_FLAG): Remove (=> PVEC_FREE).
8124 (SETUP_ON_FREE_LIST): Use XSETPVECTYPESIZE.
8125 (sweep_vectors): Use it. Use local var `total_bytes' instead of
8126 abusing vector->header.next.nbytes.
8127 (live_vector_p): Use PVEC_TYPE.
8128 (mark_object): Adapt code to extract pvectype. Use switch.
8129
8130 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
8131
8132 * doprnt.c (doprnt): Don't assume string length fits in 'int'.
8133 Tighten new eassert a bit.
8134
8135 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
8136
8137 Fix compilation with --enable-gcc-warnings and -O1
8138 optimization level.
8139 * doprnt.c (doprnt): Change type of tem to int, initialize
8140 to avoid compiler warning. Add eassert.
8141 * search.c (simple_search): Initialize match_byte to avoid
8142 compiler warning. Add eassert.
8143
8144 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
8145
8146 Avoid weird behavior with large horizontal scrolls.
8147 Without this change, for example, large hscroll values would
8148 mess up Emacs's display on Fedora 15 x86, presumably due to
8149 overflows in int calculations in the display code.
8150 Also, if buffers had long lines, Emacs would freeze.
8151 * window.c (HSCROLL_MAX): Reduce to 100000, and make it visible to GDB.
8152 (set_window_hscroll): New function, containing the old guts of
8153 Fset_window_hscroll. Return the clipped value.
8154 (Fset_window_hscroll, Fscroll_left, Fscroll_right): Use it.
8155 This avoids the need to check against PTRDIFF_MAX.
8156
8157 * buffer.c (Fgenerate_new_buffer_name): Fix sprintf format mismatch.
8158
8159 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
8160
8161 * buffer.c (Fgenerate_new_buffer_name): Fix type mismatch.
8162
8163 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
8164
8165 * regex.c: Suppress GCC warning on RHEL 6. (Bug#11207)
8166 Conditionalize the pragmas on GCC 4.5 or later, not GCC 4.3 or later,
8167 since GCC 4.4.6 issues a bogus warning for them.
8168
8169 Fix bugs in file timestamp newness comparisons.
8170 * fileio.c (Ffile_newer_than_file_p):
8171 * lread.c (Fload): Use full timestamp resolution of files,
8172 not just the 1-second resolution, so that files that are only
8173 slightly newer still count as newer.
8174 * fileio.c (Ffile_newer_than_file_p): Don't assume file
8175 timestamps fit in 'int'; this fixes a Y2038 bug on most hosts.
8176
8177 2012-07-03 Paul Eggert <eggert@cs.ucla.edu>
8178
8179 * fileio.c: Improve handling of file time marker. (Bug#11852)
8180 (special_mtime): New function.
8181 (Finsert_file_contents, Fverify_visited_file_modtime):
8182 Use it to set special mtime values consistently.
8183
8184 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
8185
8186 * fileio.c (Finsert_file_contents): Properly handle st_mtime
8187 marker for non-existing file. (Bug#11852)
8188
8189 2012-07-03 Glenn Morris <rgm@gnu.org>
8190
8191 * lisp.h (Fread_file_name): Restore EXFUN (it's not a normal DEFUN
8192 and did not make it into globals.h).
8193
8194 2012-07-03 Tom Tromey <tromey@redhat.com>
8195
8196 * window.c (Fset_window_margins, Fset_window_fringes)
8197 (Fset_window_scroll_bars, Fset_window_vscroll): No longer static.
8198 * textprop.c (Fprevious_property_change): No longer static.
8199 * syntax.c (Fsyntax_table_p): No longer static.
8200 * process.c (Fget_process, Fprocess_datagram_address): No longer
8201 static.
8202 * keymap.c (Flookup_key, Fcopy_keymap): No longer static.
8203 * keyboard.c (Fcommand_execute): No longer static.
8204 Remove EXFUN.
8205 * insdel.c (Fcombine_after_change_execute): No longer static.
8206 * image.c (Finit_image_library): No longer static.
8207 * fileio.c (Fmake_symbolic_link): No longer static.
8208 * eval.c (Ffetch_bytecode): No longer static.
8209 * editfns.c (Fuser_full_name): No longer static.
8210 * doc.c (Fdocumentation_property, Fsnarf_documentation):
8211 No longer static.
8212 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): No longer
8213 static.
8214 * dired.c (Ffile_attributes): No longer static.
8215 * composite.c (Fcomposition_get_gstring): No longer static.
8216 * callproc.c (Fgetenv_internal): No longer static.
8217
8218 * ccl.h: Remove EXFUNs.
8219 * buffer.h: Remove EXFUNs.
8220 * dispextern.h: Remove EXFUNs.
8221 * intervals.h: Remove EXFUNs.
8222 * fontset.h: Remove EXFUN.
8223 * font.h: Remove EXFUNs.
8224 * dosfns.c (system_process_attributes): Remove EXFUN.
8225 * keymap.h: Remove EXFUNs.
8226 * lisp.h: Remove EXFUNs.
8227 * w32term.h: Remove EXFUNs.
8228 * window.h: Remove EXFUNs.
8229 * xsettings.h: Remove EXFUN.
8230 * xterm.h: Remove EXFUN.
8231
8232 2012-07-03 Glenn Morris <rgm@gnu.org>
8233
8234 * lisp.h (Frandom): Make it visible to C.
8235 * buffer.c (Fgenerate_new_buffer_name): Speed up finding a new
8236 buffer for invisible buffers. (Bug#1229)
8237
8238 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
8239
8240 Fix block vector allocation code to allow VECTOR_BLOCK_SIZE
8241 values which aren't power of 2.
8242 * alloc.c (VECTOR_FREE_LIST_SIZE_MASK): New macro.
8243 Verify its value and the value of VECTOR_BLOCK_SIZE. Adjust users
8244 accordingly.
8245
8246 2012-07-03 Stefan Monnier <monnier@iro.umontreal.ca>
8247
8248 * lisp.h (Lisp_Misc, Lisp_Fwd): Move around to group better.
8249
8250 * alloc.c (mark_object): Revert part of last patch to use `switch'.
8251
8252 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
8253
8254 * alloc.c (allocate_vector_block): Remove redundant
8255 calls to mallopt if DOUG_LEA_MALLOC is defined.
8256 (allocate_vectorlike): If DOUG_LEA_MALLOC is defined,
8257 avoid calls to mallopt if zero_vector is returned.
8258
8259 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
8260
8261 * alloc.c (check_string_bytes): If GC_CHECK_STRING_BYTES
8262 is enabled, avoid dereferencing NULL current_sblock if
8263 running undumped.
8264
8265 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
8266
8267 Cleanup basic buffer management.
8268 * buffer.h (struct buffer): Change layout to use generic vector
8269 marking code. Fix some comments. Change type of 'clip_changed'
8270 to bitfield. Remove unused #ifndef old.
8271 (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER): Remove.
8272 (GET_OVERLAYS_AT): Fix indentation.
8273 (for_each_per_buffer_object_at): New macro.
8274 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
8275 (Fbuffer_local_variables): Use it.
8276 (init_buffer_once, syms_of_buffer): Remove unused #ifndef old.
8277 * alloc.c (allocate_buffer): Adjust to match new layout of
8278 struct buffer. Fix comment.
8279 (mark_overlay): New function.
8280 (mark_buffer): Use it. Use mark_vectorlike to mark normal
8281 Lisp area of struct buffer.
8282 (mark_object): Use it. Adjust marking of misc objects
8283 and related comments.
8284
8285 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
8286
8287 * alloc.c (mark_object): Remove "#ifdef GC_CHECK_MARKED_OBJECTS"
8288 wrapper that is not needed because the wrapped code is a no-op (zero
8289 machine instructions) when GC_CHECK_MARKED_OBJECTS is not defined.
8290 This avoids a -Wunused-macros diagnostic with GCC 4.7.1 x86-64.
8291
8292 2012-07-02 Dmitry Antipov <dmantipov@yandex.ru>
8293
8294 * alloc.c (mark_buffer): Simplify. Remove prototype.
8295 (mark_object): Add comment. Reorganize marking of vector-like
8296 objects. Use CHECK_LIVE for all vector-like objects except buffers
8297 and subroutines when GC_CHECK_MARKED_OBJECTS is defined.
8298 Avoid redundant calls to mark_vectorlike for bool vectors.
8299
8300 2012-06-30 Glenn Morris <rgm@gnu.org>
8301
8302 * nsterm.m (ns_init_paths): Ignore site-lisp if --no-site-lisp.
8303
8304 * epaths.in (PATH_SITELOADSEARCH): New.
8305 * lread.c (init_lread): Use PATH_SITELOADSEARCH.
8306 This is rather than relying on --enable-locallisppath elements
8307 having "site-lisp" in their names. (Bug#10208#25, 11658)
8308
8309 2012-06-30 Eli Zaretskii <eliz@gnu.org>
8310
8311 * w32proc.c (sys_select): Accept and ignore one more argument.
8312
8313 * w32.c (emacs_gnutls_pull): Call select with one more argument.
8314
8315 * sysselect.h [DOS_NT]: Don't include sys/select.h.
8316 (pselect) [!MS_DOS]: Redirect to sys_select.
8317
8318 * sysdep.c: Don't include dos.h and dosfns.h.
8319
8320 * process.c (sys_select):
8321 * msdos.c (sys_select): Accept one more argument and ignore it.
8322
8323 * msdos.c (event_timestamp, sys_select): Use gnulib's gettime;
8324 adapt data types and code to that.
8325
8326 * dosfns.c:
8327 * msdos.c (gettime, settime): Define away the prototypes in dos.h,
8328 which clashes with the gnulib function of the same name.
8329
8330 2012-06-30 Andreas Schwab <schwab@linux-m68k.org>
8331
8332 * font.c (font_style_to_value, font_style_symbolic)
8333 (font_prop_validate_style): Add type checks for values in
8334 font_style_table.
8335
8336 * lisp.h (CHECK_RANGED_INTEGER): Make value to check the first
8337 argument.
8338 * character.c, charset.c, menu.c, process.c, window.c: Adjust all
8339 uses.
8340
8341 2012-06-29 Eli Zaretskii <eliz@gnu.org>
8342
8343 * xdisp.c (try_window_id): Undo last change.
8344
8345 * w32.c (getwd): Adjust commentary about startup_dir.
8346 (init_environment): Always call sys_access, even in non-MSVC
8347 builds. Don't chdir to the directory of the Emacs executable.
8348 This undoes code from 1997 which was justified by the need to
8349 "avoid conflicts when removing and renaming directories". But its
8350 downside was that every relative file name was being interpreted
8351 relative to the directory of the Emacs executable, which can never
8352 be TRT. In particular, it broke sys_access when called with
8353 relative file names.
8354 (sys_access): Map GetLastError to errno.
8355
8356 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
8357
8358 * window.h (struct window): Change type of 'fringes_outside_margins'
8359 to bitfield. Fix comment. Adjust users accordingly.
8360 (struct window): Change type of 'window_end_bytepos' to ptrdiff_t.
8361 Adjust comment.
8362 * xdisp.c (try_window_id): Change type of 'first_vpos' and 'vpos'
8363 to ptrdiff_t.
8364
8365 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
8366
8367 * gnutls.c (emacs_gnutls_handshake):
8368 Add QUIT to make the loop interruptible.
8369
8370 2012-06-29 Glenn Morris <rgm@gnu.org>
8371
8372 * charset.c (init_charset): Make lack of etc/charsets fatal.
8373
8374 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
8375
8376 * editfns.c (region_limit): Fix type mismatch.
8377
8378 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
8379
8380 * nsfns.m: Fix GLYPH_DEBUG usage assuming that it may be
8381 undefined. Convert from xassert to eassert.
8382 * nsmenu.m: Convert from xassert to eassert.
8383 * nsterm.m: Likewise.
8384
8385 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
8386
8387 * editfns.c (region_limit): Clip to narrowing (bug#11770).
8388
8389 2012-06-28 Paul Eggert <eggert@cs.ucla.edu>
8390
8391 Avoid integer overflow on scroll-left and scroll-right.
8392 * window.c (HSCROLL_MAX): New macro.
8393 (Fscroll_left, Fscroll_right): Avoid undefined behavior on integer
8394 overflow when requested scroll falls outside ptrdiff_t range.
8395
8396 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
8397
8398 * window.h (struct window): Change type of 'hscroll',
8399 'min_hscroll' and 'last_point' from Lisp_Object to ptrdiff_t,
8400 'last_modified' and 'last_overlay_modified' to EMACS_INT.
8401 Adjust users accordingly.
8402 * xdisp.c (try_cursor_movement): Replace type check with eassert.
8403 * window.c (Fscroll_left, Fscroll_right): Change type of 'hscroll'
8404 from EMACS_INT to ptrdiff_t.
8405 (make_window): Omit redundant initialization.
8406
8407 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
8408
8409 * makefile.w32-in ($(BLD)/regex.$(O)): Update dependencies.
8410
8411 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
8412
8413 * window.h (struct window): Change type of 'use_time' and
8414 'sequence_number' from Lisp_Object to int.
8415 * frame.c (make_frame): Adjust users accordingly.
8416 * print.c (print_object): Likewise.
8417 * window.c (select_window, Fwindow_use_time, make_parent_window)
8418 (make_window): Likewise.
8419
8420 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
8421
8422 * dispextern.h (GLYPH_DEBUG): Now defined in config.h if
8423 enabled with --enable-checking=[all,glyphs] configure option.
8424 Fix GLYPH_DEBUG usage assuming that it may be undefined,
8425 adjust comments accordingly.
8426 * dispnew.c: Fix GLYPH_DEBUG usage assuming that it may be
8427 undefined, adjust comments accordingly.
8428 * image.c: Likewise.
8429 * scroll.c: Likewise.
8430 * w32fns.c: Likewise.
8431 * w32term.c: Likewise.
8432 * xdisp.c: Likewise.
8433 * xfaces.c: Likewise.
8434 * xfns.c: Likewise.
8435 * xterm.c: Likewise.
8436
8437 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
8438
8439 Generalize run-time debugging checks.
8440 * dispextern.h (XASSERTS): Remove.
8441 * fontset.c (xassert): Remove.
8442 Convert from xassert to eassert.
8443 * alloc.c: Convert from xassert to eassert.
8444 * bidi.c: Likewise.
8445 * dispnew.c: Likewise.
8446 * fns.c: Likewise.
8447 * fringe.c: Likewise.
8448 * ftfont.c: Likewise.
8449 * gtkutil.c: Likewise.
8450 * image.c: Likewise.
8451 * keyboard.c: Likewise.
8452 * menu.c: Likewise.
8453 * process.c: Likewise.
8454 * scroll.c: Likewise.
8455 * sound.c: Likewise.
8456 * term.c: Likewise.
8457 * w32console.c: Likewise.
8458 * w32fns.c: Likewise.
8459 * w32term.c: Likewise.
8460 * window.c: Likewise.
8461 * xdisp.c: Likewise.
8462 * xfaces.c: Likewise.
8463 * xfns.c: Likewise.
8464 * xselect.c: Likewise.
8465 * xterm.c: Likewise.
8466
8467 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
8468
8469 * fns.c (maybe_resize_hash_table): Output message when growing the
8470 purify-hashtable.
8471
8472 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
8473
8474 * alloc.c (allocate_string_data): Remove dead code.
8475 * xsettings.c (XSETTINGS_FONT_NAME): Move under HAVE_XFT to
8476 avoid GCC warning about unused macro.
8477
8478 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
8479
8480 * alloc.c (allocate_string): Omit intervals initialization.
8481 * alloc.c (make_uninit_multibyte_string): Initialize intervals
8482 as in make_pure_string and make_pure_c_string.
8483
8484 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
8485
8486 * alloc.c (allocate_string): Fix last change.
8487
8488 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
8489
8490 * alloc.c (allocate_string): Remove two redundant calls
8491 to memset, add explicit initialization where appropriate.
8492
8493 2012-06-27 Glenn Morris <rgm@gnu.org>
8494
8495 * lisp.mk (lisp): Remove paths.elc.
8496
8497 2012-06-27 Chong Yidong <cyd@gnu.org>
8498
8499 * doc.c (Fsubstitute_command_keys): Fix punctuation.
8500
8501 2012-06-26 John Wiegley <johnw@newartisans.com>
8502
8503 * unexmacosx.c (copy_data_segment): Add two section names used
8504 on Mac OS X Lion: __mod_init_func and __mod_term_func.
8505
8506 * alloc.c (mark_memory): Do not check with -faddress-sanitizer
8507 when building with Clang.
8508
8509 2012-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
8510
8511 * eval.c (Fapply): Allow calling it with a single argument.
8512
8513 2012-06-26 Eli Zaretskii <eliz@gnu.org>
8514
8515 * s/ms-w32.h (strcasecmp, strncasecmp) [_MSC_VER]: Redirect to
8516 _stricmp and _strnicmp.
8517 (HAVE_STRCASECMP, HAVE_STRNCASECMP): Define to 1.
8518
8519 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
8520
8521 * alloc.c (allocate_window): Zero out non-Lisp part of newly
8522 allocated window.
8523 (allocate_process): Likewise for new process.
8524 (allocate_terminal): Change to use offsetof.
8525 (allocate_frame): Likewise.
8526 * frame.c (make_frame): Omit redundant initialization.
8527 * window.c (make_parent_window): Use memset.
8528 (make_window): Omit redundant initialization.
8529 * process.c (make_process): Omit redundant initialization.
8530 * terminal.c (create_terminal): Likewise.
8531
8532 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
8533
8534 * term.c (delete_tty): Remove redundant call to memset.
8535
8536 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
8537
8538 * alloc.c: Remove build_string.
8539 * lisp.h: Define build_string as static inline. This provides
8540 a better opportunity to optimize away calls to strlen when the
8541 function is called with compile-time constant argument.
8542 * image.c (imagemagick_error): Convert to build_string.
8543 * w32proc.c (sys_spawnve): Likewise.
8544 * xterm.c (x_term_init): Likewise.
8545
8546 2012-06-26 Paul Eggert <eggert@cs.ucla.edu>
8547
8548 Use sprintf return value instead of invoking strlen on result.
8549 In the old days this wasn't portable, since some sprintf
8550 implementations returned char *. But they died out years ago and
8551 Emacs already assumes sprintf returns int.
8552 Similarly for float_to_string.
8553 This patch speeds up (number-to-string 1000) by 3% on Fedora 15 x86-64.
8554 * ccl.c (ccl_driver):
8555 * character.c (string_escape_byte8):
8556 * data.c (Fnumber_to_string):
8557 * doprnt.c (doprnt):
8558 * print.c (print_object):
8559 * xdisp.c (message_dolog):
8560 * xfns.c (syms_of_xfns):
8561 Use sprintf or float_to_string result to avoid need to call strlen.
8562 * data.c (Fnumber_to_string):
8563 Use make_unibyte_string, since the string must be ASCII.
8564 * lisp.h, print.c (float_to_string): Now returns int length.
8565 * term.c (produce_glyphless_glyph):
8566 Use sprintf result rather than recomputing it.
8567
8568 Clean out last vestiges of the old HAVE_CONFIG_H stuff.
8569 * Makefile.in (ALL_CFLAGS):
8570 * makefile.w32-in (LOCAL_FLAGS): Remove -DHAVE_CONFIG_H.
8571 * gmalloc.c, regex.c: Include <config.h> unconditionally.
8572
8573 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
8574
8575 * dispextern.h (xstrcasecmp): Define to library function
8576 strcasecmp if available.
8577 * xfaces.c: Do not use xstrcasecmp if strcasecmp is available.
8578
8579 2012-06-25 Andreas Schwab <schwab@linux-m68k.org>
8580
8581 * keyboard.c (menu_bar_items, menu_bar_item, read_key_sequence):
8582 Avoid comma operator.
8583 * menu.c (push_submenu_start, push_submenu_end)
8584 (push_left_right_boundary, push_menu_pane): Likewise.
8585 * msdos.c (dos_rawgetc): Likewise.
8586
8587 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
8588
8589 * xfns.c (xic_create_fontsetname): Remove redundant calls
8590 to memset.
8591
8592 2012-06-25 Paul Eggert <eggert@cs.ucla.edu>
8593
8594 * gtkutil.c (get_utf8_string): Remove redundant assignment.
8595 sprintf already null-terminates its output.
8596
8597 * xfns.c (x_window): Remove redundant cast.
8598
8599 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
8600
8601 * xmenu.c (xmenu_show, xdialog_show): Explicit cast from
8602 `const char *' to `char *' to avoid compiler warning.
8603
8604 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
8605
8606 * xterm.c (x_term_init): Build proper-sized _XSETTINGS_Snnn string
8607 instead of truncating it to 63 (admittedly a generous limit).
8608
8609 * process.c: Fix spelling and caps in comments.
8610
8611 2012-06-24 Dan Nicolaescu <dann@ics.uci.edu>
8612
8613 * emacs.c (setpgrp): Remove definition, unused.
8614 * sysdep.c (setpgrp): Remove definition, not used in this file.
8615
8616 2012-06-24 Juanma Barranquero <lekktu@gmail.com>
8617
8618 * makefile.w32-in: Update dependencies.
8619
8620 2012-06-24 Eli Zaretskii <eliz@gnu.org>
8621
8622 * makefile.w32-in (TIMESPEC_H): Remove nt/inc/sys/time.h.
8623 (SYSTIME_H): Add nt/inc/sys/time.h.
8624
8625 * systime.h [WINDOWSNT]: Include sys/time.h.
8626
8627 * s/ms-w32.h (struct timespec): Definition moved from
8628 nt/inc/sys/time.h. Suggested by Paul Eggert <eggert@cs.ucla.edu>.
8629
8630 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
8631
8632 Switch from NO_RETURN to C11's _Noreturn (Bug#11750).
8633 * buffer.h (buffer_slot_type_mismatch):
8634 * data.c (arith_error) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
8635 * eval.c (unwind_to_catch):
8636 * image.c (my_png_error, my_error_exit):
8637 * keyboard.c (quit_throw_to_read_char, user_error)
8638 (Fexit_recursive_edit, Fabort_recursive_edit):
8639 * lisp.h (die, args_out_of_range, args_out_of_range_3)
8640 (wrong_type_argument, buffer_overflow, __executable_start)
8641 (memory_full, buffer_memory_full, string_overflow, Fthrow)
8642 (xsignal, xsignal0, xsignal1, xsignal2, xsignal3, signal_error)
8643 (error, verror, nsberror, report_file_error, Ftop_level, Fkill_emacs)
8644 (fatal):
8645 (child_setup) [!DOS_NT]:
8646 * lread.c (end_of_file_error, invalid_syntax):
8647 * process.c (send_process_trap) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
8648 * puresize.h (pure_write_error):
8649 * search.c (matcher_overflow):
8650 * sound.c (sound_perror, alsa_sound_perror):
8651 * sysdep.c, syssignal.h (croak):
8652 * term.c (maybe_fatal, vfatal):
8653 * textprop.c (text_read_only):
8654 * undo.c (user_error):
8655 * unexmacosx.c (unexec_error):
8656 * xterm.c (x_ins_del_lines, x_delete_glyphs):
8657 Use _Noreturn rather than NO_RETURN.
8658 No need for separate decl merely because of _Noreturn.
8659 * sound.c (sound_warning, parse_sound):
8660 Remove unnecessary forward decls.
8661
8662 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
8663
8664 Fix bug when time_t is unsigned and as wide as intmax_t (Bug#9000).
8665 * lisp.h (WAIT_READING_MAX): New macro.
8666 * dispnew.c (Fsleep_for, sit_for):
8667 * keyboard.c (kbd_buffer_get_event):
8668 * process.c (Faccept_process_output):
8669 Use it to avoid bogus compiler warnings with obsolescent GCC versions.
8670 This improves on the previous patch, which introduced a bug
8671 when time_t is unsigned and as wide as intmax_t.
8672 See <http://bugs.gnu.org/9000#51>.
8673
8674 2012-06-23 Eli Zaretskii <eliz@gnu.org>
8675
8676 * dispnew.c (sit_for, Fsleep_for):
8677 * keyboard.c (kbd_buffer_get_event):
8678 * process.c (Faccept_process_output): Avoid compiler warnings when
8679 comparing a 32-bit time_t with a 64-bit INTMAX_MAX.
8680
8681 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
8682
8683 * makefile.w32-in: Update dependencies.
8684
8685 * w32.c (ltime): Add return type and declare static.
8686 (w32_get_internal_run_time): Remove usused variable `time_100ns'.
8687
8688 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
8689
8690 * sysdep.c [__FreeBSD__]: Fix more recently-introduced typos.
8691 Privately reported by Herbert J. Skuhra.
8692 (make_lisp_timeval) [__FreeBSD__]: Rename from TIMELIST.
8693 All uses changed.
8694 (system_process_attributes) [__FreeBSD__]: Invoke make_lisp_time,
8695 not make_lisp_timeval, when the argument is of type EMACS_TIME.
8696
8697 2012-06-23 Eli Zaretskii <eliz@gnu.org>
8698
8699 * w32proc.c (Fw32_get_locale_info): Fix an off-by-one error in
8700 last argument of make_unibyte_string.
8701
8702 * keyboard.c (kbd_buffer_get_event): Include the codepage and the
8703 language ID in the event parameters.
8704
8705 * w32term.c (w32_read_socket): Put the new keyboard codepage into
8706 event.code, not the obscure "character set ID".
8707
8708 2012-06-23 Chong Yidong <cyd@gnu.org>
8709
8710 * xmenu.c (x_menu_wait_for_event): Adapt GTK3 to new xg_select.
8711
8712 2012-06-23 Eli Zaretskii <eliz@gnu.org>
8713
8714 Fix the MS-Windows build broken by 2012-06-22T21:17:42Z!eggert@cs.ucla.edu.
8715 * w32.c (fdutimens): New function.
8716
8717 * w32proc.c (sys_select): Adapt to change in the EMACS_TIME type.
8718
8719 * s/ms-w32.h (pselect): Redirect to sys_select.
8720
8721 * sysselect.h [WINDOWSNT]: Don't include sys/select.h.
8722
8723 * ralloc.c (r_alloc_inhibit_buffer_relocation): Fix stupid thinko
8724 in the logic of incrementing and decrementing the value of
8725 use_relocatable_buffers.
8726
8727 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
8728
8729 * sysdep.c [__FreeBSD__]: Fix recently-introduced typos.
8730 Privately reported by Herbert J. Skuhra.
8731 [__FreeBSD__]: Remove "*/" typo after "#include".
8732 (timeval_to_EMACS_TIME) [__FreeBSD__]: New static function.
8733 (TIMEVAL) [__FreeBSD__]: Now a static function rather than a macro.
8734 (TIMEVAL, system_process_attributes) [__FreeBSD__]:
8735 Don't assume EMACS_TIME and struct timeval are the same type.
8736
8737 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
8738
8739 Support higher-resolution time stamps (Bug#9000).
8740 The time stamps are only nanosecond-resolution at the C level,
8741 since that's the best that any real-world system supports now.
8742 But they are picosecond-resolution at the Lisp level, as that's
8743 easy, and leaves room for future OS improvements.
8744
8745 * Makefile.in (LIB_CLOCK_GETTIME): New macro.
8746 (LIBES): Use it.
8747
8748 * alloc.c (Fgarbage_collect): Port to higher-res time stamps.
8749 Don't get current time unless it's needed.
8750
8751 * atimer.c: Include <sys/time.h> unconditionally, since gnulib
8752 now provides it if it's absent.
8753 (start_atimer): Port to higher-res time stamps.
8754 Check for time stamp overflow. Don't get current time more
8755 often than is needed.
8756
8757 * buffer.h (struct buffer): Buffer modtime now has high resolution.
8758 Include systime.h, not time.h.
8759 (NONEXISTENT_MODTIME_NSECS, UNKNOWN_MODTIME_NSECS): New macros.
8760
8761 * dired.c: Include stat-time.h.
8762 (Ffile-attributes): File times now have higher resolution.
8763
8764 * dispextern.h [HAVE_WINDOW_SYSTEM]: Include systime.h.
8765 (struct image): Timestamp now has higher resolution.
8766
8767 * dispnew.c (PERIODIC_PREEMPTION_CHECKING): Remove, as Emacs always
8768 has at least microseconds now. All uses removed.
8769 (update_frame, update_single_window, update_window, update_frame_1)
8770 (Fsleep_for, sit_for): Port to higher-resolution time stamps.
8771 (duration_to_sec_usec): Remove; no longer needed.
8772
8773 * editfns.c (time_overflow): Now extern.
8774 (Fcurrent_time, Fget_internal_run_time, make_time, lisp_time_argument)
8775 (float-time, Fformat_time_string, Fcurrent_time_string)
8776 (Fcurrent_time_zone): Accept and generate higher-resolution
8777 time stamps.
8778 (make_time_tail, make_lisp_time, dissassemble_lisp_time)
8779 (decode_time_components, lisp_seconds_argument): New functions.
8780 (make_time): Now static.
8781 (lisp_time_argument): Now returns EMACS_TIME. New arg ppsec.
8782 Report an error if the time is invalid, rather than having the caller
8783 do that.
8784
8785 * fileio.c: Include <stat-time.h>
8786 (Fcopy_file): Copy higher-resolution time stamps.
8787 Prefer to set the time stamp via a file descriptor if that works.
8788 (Fset_file_times, Finsert_file_contents, Fwrite_region)
8789 (Fverify_visited_file_modtime, Fclear_visited_file_modtime)
8790 (Fvisited_file_modtime, Fset_visited_file_modtime):
8791 Support higher-resolution time stamps.
8792
8793 * fns.c (Frandom): Use nanoseconds, not microseconds, for seed.
8794
8795 * gtkutil.c (xg_maybe_add_timer): Port to higher-res time stamps.
8796
8797 * image.c (prepare_image_for_display, clear_image_cache)
8798 (lookup_image): Port to higer-resolution time stamps.
8799
8800 * keyboard.c (start_polling, bind_polling_period):
8801 Check for time stamp overflow.
8802 (read_char, kbd_buffer_get_event, timer_start_idle)
8803 (timer_stop_idle, timer_resume_idle, timer_check_2, timer_check)
8804 (Fcurrent_idle_time, init_keyboard, set_waiting_for_input):
8805 Port to higher-resolution time stamps. Do not assume time_t is signed.
8806 (decode_timer): New function. Timers are now vectors of length 9,
8807 not 8, to accommodate the picosecond component.
8808 (timer_check_2): Use it.
8809
8810 * nsterm.m (select_timeout, timeval_subtract): Remove.
8811 (ns_timeout): Use Emacs's facilities for time stamp arithmetic,
8812 as they're a bit more accurate and handle overflow better.
8813 (ns_select): Change prototype to be compatible with pselect.
8814 (ns_select, ns_term_shutdown): Port to ns-resolution time stamps.
8815 * nsterm.h (ns_select): Adjust prototype.
8816
8817 * msdos.c (EMACS_TIME_ZERO_OR_NEG_P): Remove, as it assumes
8818 us-resolution time stamps.
8819 (sys_select): Use the new EMACS_TIME_SIGN macro instead.
8820
8821 * lread.c (read_filtered_event): Port to ns-resolution time stamps.
8822
8823 * lisp.h (time_overflow): New decl.
8824 (wait_reading_process_output): First arg is now intmax_t, not int,
8825 to accommodate larger waits.
8826
8827 * process.h (struct Lisp_Process.read_output_delay):
8828 Now counts nanoseconds, not microseconds.
8829 * process.c (ADAPTIVE_READ_BUFFERING): Don't worry about
8830 EMACS_HAS_USECS.
8831 (READ_OUTPUT_DELAY_INCREMENT, Faccept_process_output)
8832 (wait_reading_process_output):
8833 Port to ns-resolution time stamps.
8834 (Faccept_process_output, wait_reading_process_output):
8835 Check for time stamp overflow. Do not assume time_t is signed.
8836 (select_wrapper): Remove; we now use pselect.
8837 (Fprocess_attributes): Now generates ns-resolution time stamps.
8838
8839 * sysdep.c: Include utimens.h. Don't include utime.h
8840 or worry about struct utimbuf; gnulib does that for us now.
8841 (gettimeofday): Remove; gnulib provides a substitute.
8842 (make_timeval): New function.
8843 (set_file_times): Now sets ns-resolution time stamps.
8844 New arg FD; all uses changed.
8845 (time_from_jiffies, ltime_from_jiffies, get_up_time)
8846 (system_process_attributes):
8847 Now returns ns-resolution time stamp. All uses changed.
8848 Check for time stamp overflow.
8849
8850 * sysselect.h: Don't depend on HAVE_SYS_SELECT_H; gnulib
8851 provides a substitute now.
8852
8853 * systime.h: Include timespec.h rather than sys/time.h and time.h,
8854 since it guarantees struct timespec.
8855 (EMACS_TIME): Now struct timespec, so that we can support
8856 ns-resolution time stamps.
8857 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): New macros.
8858 (EMACS_HAS_USECS): Remove; Emacs always has sub-second time stamps now.
8859 (EMACS_USECS): Remove.
8860 (EMACS_SET_USECS): The underlying time stamp now has ns resolution,
8861 so multiply the arg by 1000 before storing it.
8862 (EMACS_NSECS, EMACS_SECS_ADDR, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS):
8863 New macros.
8864 (EMACS_GET_TIME, EMACS_ADD_TIME, EMACS_SUB_TIME):
8865 Port to ns-resolution time stamps.
8866 (EMACS_TIME_NEG_P): Remove; replaced by....
8867 (EMACS_TIME_SIGN): New macro.
8868 (EMACS_SET_INVALID_TIME, EMACS_TIME_VALID_P)
8869 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE): New macros.
8870 (set_file_times, make_time, lisp_time_argument): Adjust signature.
8871 (make_timeval, make_lisp_time, decode_time_components): New decls.
8872 (EMACS_TIME_CMP): Remove; no longer used. Plus, it was buggy, in
8873 that it mishandled time_t overflow. You can't compare by subtracting!
8874 (EMACS_TIME_EQ, EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE)
8875 (EMACS_TIME_LT, EMACS_TIME_LE): Rewrite in terms of timespec_cmp.
8876
8877 * term.c: Include <sys/time.h>.
8878 (timeval_to_Time): New function, for proper overflow wraparound.
8879 (term_mouse_position, term_mouse_click): Use it.
8880
8881 * undo.c (record_first_change): Support higher-resolution time stamps
8882 in the undo buffer.
8883 (Fprimitive_undo): Use them when restoring time stamps.
8884
8885 * w32.c (ltime, U64_TO_LISP_TIME, process_times, emacs_gnutls_pull)
8886 (w32_get_internal_run_time):
8887 Port to higher-resolution Emacs time stamps.
8888 (ltime): Now accepts single 64-bit integer, as that's more convenient
8889 for callers.
8890
8891 * xdisp.c (start_hourglass): Port to ns-resolution time stamps.
8892
8893 * xgselect.c, xgselect.h (xg_select): Add sigmask argument,
8894 for compatibility with pselect. Support ns-resolution time stamps.
8895
8896 * xmenu.c (x_menu_wait_for_event): Support ns-resolution time stamps.
8897
8898 * xselect.c (wait_for_property_change, x_get_foreign_selection):
8899 Check for time stamp overflow, and support ns-resolution time stamps.
8900
8901 * xterm.c: Don't include sys/time.h; gnulib does that for us now.
8902 Don't worry about whether HAVE_TIMEVAL and HAVE_SELECT are set.
8903 (timeval_subtract): Remove; no longer needed.
8904 (XTflash, XTring_bell, x_wait_for_event):
8905 Port to ns-resolution time stamps. Don't assume time_t is signed.
8906
8907 2012-06-22 Chong Yidong <cyd@gnu.org>
8908
8909 * xdisp.c (x_consider_frame_title): Revert last change.
8910
8911 2012-06-22 Eli Zaretskii <eliz@gnu.org>
8912
8913 * alloc.c (NSTATICS): Enlarge to 0x650. Otherwise, Emacs compiled
8914 with -DENABLE_CHECKING -DXASSERTS -DGLYPH_DEBUG=1 -DBYTE_CODE_METER
8915 aborts in staticpro during startup. (Without -DBYTE_CODE_METER,
8916 staticidx goes up to 1597 out of 1600 = 0x640.)
8917
8918 2012-06-20 Paul Eggert <eggert@cs.ucla.edu>
8919
8920 * fileio.c (Fdefault_file_modes): Block input while fiddling with umask.
8921 Otherwise, the umask might be mistakenly 0 while handling input signals.
8922
8923 2012-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
8924
8925 * minibuf.c (Fread_string): Bind minibuffer-completion-table.
8926
8927 2012-06-19 Dmitry Antipov <dmantipov@yandex.ru>
8928
8929 * alloc.c, bytecode.c, ccl.c, coding.c, composite.c, data.c, dosfns.c:
8930 * font.c, image.c, keyboard.c, lread.c, menu.c, minibuf.c, msdos.c:
8931 * print.c, syntax.c, window.c, xmenu.c, xselect.c: Replace direct
8932 access to `contents' member of Lisp_Vector objects with AREF and ASET
8933 where appropriate.
8934
8935 2012-06-19 Chong Yidong <cyd@gnu.org>
8936
8937 * frame.c (delete_frame): When selecting a frame on a different
8938 text terminal, do not alter the terminal's top-frame.
8939
8940 * xdisp.c (format_mode_line_unwind_data): Record the target
8941 frame's selected window and its terminal's top-frame.
8942 (unwind_format_mode_line): Restore them.
8943 (x_consider_frame_title, display_mode_line, Fformat_mode_line):
8944 Callers changed.
8945 (x_consider_frame_title): Do not condition on HAVE_WINDOW_SYSTEM,
8946 since tty frames can be explicitly named.
8947 (prepare_menu_bars): Likewise.
8948
8949 * term.c (Ftty_top_frame): New function.
8950
8951 2012-06-18 Paul Eggert <eggert@cs.ucla.edu>
8952
8953 Port byte-code-meter to modern targets.
8954 * bytecode.c (METER_CODE) [BYTE_CODE_METER]: Don't assume
8955 !CHECK_LISP_OBJECT_TYPE && !USE_LSB_TAG. Problem with
8956 CHECK_LISP_OBJECT_TYPE reported by Dmitry Antipov in
8957 <http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00282.html>.
8958 (METER_1, METER_2): Simplify.
8959
8960 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
8961
8962 * data.c (Fdefalias): Return `symbol' (bug#11686).
8963
8964 2012-06-18 Martin Rudalics <rudalics@gmx.at>
8965
8966 * buffer.c (Fkill_buffer): Don't throw an error when the buffer
8967 gets killed during executing of this function (Bug#11665).
8968 Try to always return Qt when the buffer has been actually killed.
8969 (Vkill_buffer_query_functions): In doc-string say that functions
8970 run by this hook should not change the current buffer.
8971
8972 2012-06-18 Paul Eggert <eggert@cs.ucla.edu>
8973
8974 Fix recently-introduced process.c problems found by static checking.
8975 * process.c (write_queue_push, write_queue_pop, send_process):
8976 Use ptrdiff_t, not int or EMACS_INT, for buffer lengths and offsets.
8977 (write_queue_pop): Fix pointer signedness problem.
8978 (send_process): Remove unused local.
8979
8980 2012-06-17 Chong Yidong <cyd@gnu.org>
8981
8982 * xdisp.c (redisplay_internal): No need to redisplay terminal
8983 frames that are not on top.
8984
8985 2012-06-17 Troels Nielsen <bn.troels@gmail.com>
8986
8987 * process.c (make_process): Initialize write_queue.
8988 (write_queue_push, write_queue_pop): New functions.
8989 (send_process): Use them to maintain correct ordering of process
8990 writes (Bug#10815).
8991
8992 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
8993
8994 * lisp.h (eassert): Assume C89 or later.
8995 This removes the need for CHECK.
8996 (CHECK): Remove. Its comments about always evaluating its
8997 argument were confusing, as 'eassert' typically does not evaluate
8998 its argument.
8999
9000 * coding.c (produce_chars): Use ptrdiff_t, not int.
9001
9002 * xterm.c (x_draw_underwave): Check for integer overflow.
9003 This pacifies gcc 4.7.0 -Wunsafe-loop-optimizations on x86-64.
9004
9005 2012-06-17 Jan Djärv <jan.h.d@swipnet.se>
9006
9007 * nsterm.m (x_free_frame_resources): Move xfree so freed memory isn't
9008 referenced (Bug#11583).
9009
9010 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
9011
9012 Implement wave-style variant of underlining.
9013 * dispextern.h (face_underline_type): New enum.
9014 (face): Add field for underline type.
9015 * nsterm.m (ns_draw_underwave): New function.
9016 (ns_draw_text_decoration): Use it.
9017 * w32term.c (w32_restore_glyph_string_clip, w32_draw_underwave):
9018 New functions.
9019 (x_draw_glyph_string): Use them.
9020 * xfaces.c (Qline, Qwave): New Lisp objects.
9021 (check_lface_attrs, merge_face_ref)
9022 (Finternal_set_lisp_face_attribute, realize_x_face):
9023 Handle wave-style underline face attributes.
9024 * xterm.c (x_draw_underwave): New function.
9025 (x_draw_glyph_string): Use it.
9026
9027 2012-06-16 Juanma Barranquero <lekktu@gmail.com>
9028
9029 * makefile.w32-in ($(BLD)/emacs.$(O), $(BLD)/fringe.$(O))
9030 ($(BLD)/xml.$(O), $(BLD)/intervals.$(O), $(BLD)/macros.$(O))
9031 ($(BLD)/minibuf.$(O), $(BLD)/regex.$(O), $(BLD)/region-cache.$(O))
9032 ($(BLD)/textprop.$(O), $(BLD)/undo.$(O), $(BLD)/window.$(O))
9033 ($(BLD)/w32select.$(O)): Update dependencies.
9034
9035 2012-06-16 Andreas Schwab <schwab@linux-m68k.org>
9036
9037 * buffer.h (FETCH_MULTIBYTE_CHAR): Define as inline.
9038 (BUF_FETCH_MULTIBYTE_CHAR): Likewise.
9039 * character.c (_fetch_multibyte_char_p): Remove.
9040 * alloc.c: Include "character.h" before "buffer.h".
9041 * bidi.c: Likewise.
9042 * buffer.c: Likewise.
9043 * bytecode.c: Likewise.
9044 * callint.c: Likewise.
9045 * callproc.c: Likewise.
9046 * casefiddle.c: Likewise.
9047 * casetab.c: Likewise.
9048 * category.c: Likewise.
9049 * cmds.c: Likewise.
9050 * coding.c: Likewise.
9051 * composite.c: Likewise.
9052 * dired.c: Likewise.
9053 * dispnew.c: Likewise.
9054 * doc.c: Likewise.
9055 * dosfns.c: Likewise.
9056 * editfns.c: Likewise.
9057 * emacs.c: Likewise.
9058 * fileio.c: Likewise.
9059 * filelock.c: Likewise.
9060 * font.c: Likewise.
9061 * fontset.c: Likewise.
9062 * fringe.c: Likewise.
9063 * indent.c: Likewise.
9064 * insdel.c: Likewise.
9065 * intervals.c: Likewise.
9066 * keyboard.c: Likewise.
9067 * keymap.c: Likewise.
9068 * lread.c: Likewise.
9069 * macros.c: Likewise.
9070 * marker.c: Likewise.
9071 * minibuf.c: Likewise.
9072 * nsfns.m: Likewise.
9073 * nsmenu.m: Likewise.
9074 * print.c: Likewise.
9075 * process.c: Likewise.
9076 * regex.c: Likewise.
9077 * region-cache.c: Likewise.
9078 * search.c: Likewise.
9079 * syntax.c: Likewise.
9080 * term.c: Likewise.
9081 * textprop.c: Likewise.
9082 * undo.c: Likewise.
9083 * unexsol.c: Likewise.
9084 * w16select.c: Likewise.
9085 * w32fns.c: Likewise.
9086 * w32menu.c: Likewise.
9087 * window.c: Likewise.
9088 * xdisp.c: Likewise.
9089 * xfns.c: Likewise.
9090 * xmenu.c: Likewise.
9091 * xml.c: Likewise.
9092 * xselect.c: Likewise.
9093
9094 2012-06-16 Eli Zaretskii <eliz@gnu.org>
9095
9096 * xdisp.c (set_cursor_from_row): Don't dereference glyphs_end.
9097 If all the glyphs of the glyph row came from strings, and we have no
9098 cursor positioning clues, put the cursor on the first glyph of the
9099 row.
9100 (handle_face_prop): Use chunk-relative overlay string index when
9101 indexing into it->string_overlays array. (Bug#11653)
9102 (set_cursor_from_row): Use the leftmost glyph as GLYPH_BEFORE, not
9103 the rightmost. (Bug#11720)
9104
9105 2012-06-16 Andreas Schwab <schwab@linux-m68k.org>
9106
9107 * category.h (CHAR_HAS_CATEGORY): Define as inline.
9108 (CATEGORY_MEMBER): Enforce 1/0 value.
9109 * category.c (_temp_category_set): Remove.
9110
9111 2012-06-16 Eli Zaretskii <eliz@gnu.org>
9112
9113 * window.c (Fdelete_other_windows_internal)
9114 (Fdelete_window_internal): Don't access frame's mouse highlight
9115 info of the initial frame. (Bug#11677)
9116
9117 2012-06-14 Paul Eggert <eggert@cs.ucla.edu>
9118
9119 * .gdbinit (xgetint): Fix recently-introduced paren typo.
9120 Assume USE_2_TAGS_FOR_INTS.
9121 (xreload): Adjust $tagmask width to match recent lisp.h change.
9122
9123 Simplify lisp.h in minor ways that should not affect code.
9124 * lisp.h (USE_2_TAGS_FOR_INTS): Remove, as it was always defined.
9125 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P)
9126 (LISP_INT1_TAG, enum Lisp_Type, XINT, XUINT, make_number):
9127 Simplify under the assumption that USE_2_TAGS_FOR_INTS is defined.
9128 (INTTYPEBITS): New macro, for clarity.
9129 (INTMASK, MOST_POSITIVE_FIXNUM): Use it.
9130 (LISP_INT1_TAG, LISP_STRING_TAG, LISP_INT_TAG_P):
9131 Simplify now that USE_LSB_TAG is always defined.
9132 (TYPEMASK, XINT) [USE_LSB_TAG]: Remove unnecessary cast.
9133 (make_number) [!USE_LSB_TAG]: Use INTMASK; that's simpler.
9134
9135 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
9136
9137 * makefile.w32-in ($(BLD)/data.$(O)): Update dependencies.
9138
9139 2012-06-13 Glenn Morris <rgm@gnu.org>
9140
9141 * s/bsd-common.h (BSD4_3):
9142 * s/usg5-4-common.h (USG5_4): No longer define; unused.
9143
9144 2012-06-13 Andreas Schwab <schwab@linux-m68k.org>
9145
9146 * lisp.h (Lisp_Object) [CHECK_LISP_OBJECT_TYPE]: Define as struct
9147 instead of union.
9148 (XLI, XIL): Define.
9149 (XHASH, XTYPE, XINT, XUINT, make_number, XSET, XPNTR, XUNTAG):
9150 Use them.
9151 * emacs.c (gdb_use_struct): Rename from gdb_use_union.
9152 * .gdbinit: Check gdb_use_struct instead of gdb_use_union.
9153 * alloc.c (widen_to_Lisp_Object): Remove.
9154 (mark_memory): Use XIL instead of widen_to_Lisp_Object.
9155 * frame.c (delete_frame): Remove outdated comment.
9156 * w32fns.c (Fw32_register_hot_key): Use XLI instead of checking
9157 USE_LISP_UNION_TYPE.
9158 (Fw32_unregister_hot_key): Likewise.
9159 (Fw32_toggle_lock_key): Likewise.
9160 * w32menu.c (add_menu_item): Likewise.
9161 (w32_menu_display_help): Use XIL instead of checking
9162 USE_LISP_UNION_TYPE.
9163 * w32heap.c (allocate_heap): Don't check USE_LISP_UNION_TYPE.
9164 (init_heap): Likewise.
9165 * w32term.c (w32_read_socket): Update comment.
9166
9167 2012-06-13 Glenn Morris <rgm@gnu.org>
9168
9169 * s/usg5-4-common.h, src/s/unixware.h:
9170 Remove define/undef of HAVE_SYSV_SIGPAUSE (not used since 2010-05-04).
9171
9172 * s/gnu.h (POSIX_SIGNALS): Remove (not used since 2010-05-04).
9173
9174 2012-06-13 Paul Eggert <eggert@cs.ucla.edu>
9175
9176 USE_LISP_UNION_TYPE + USE_LSB_TAG cleanup (Bug#11604)
9177 * alloc.c (make_number) [!defined make_number]:
9178 Remove, as lisp.h always defines this now.
9179 (mark_maybe_pointer): Simplify since USE_LSB_TAG is always defined now.
9180 (roundup_size): Verify that it is a power of 2.
9181 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
9182 * ftfont.c (ftfont_driver): Use LISP_INITIALLY_ZERO.
9183 * lisp.h (USE_LSB_TAG): Allow the builder to compile with
9184 -DUSE_LSB_TAG=0, to override the automatically-selected default.
9185 USE_LSB_TAG now is always defined to be either 0 or 1.
9186 All uses changed.
9187 (union Lisp_Object): Don't worry about WORDS_BIGENDIAN; the
9188 code works fine either way, and efficiency is not a concern here,
9189 as the union type is for debugging, not for production.
9190 (LISP_MAKE_RVALUE, make_number) [USE_LISP_UNION_TYPE]:
9191 Use an inline function on all platforms when using the union type,
9192 since this is simpler and 'static inline' can be used portably
9193 within Emacs now.
9194 (LISP_INITIALLY_ZERO): New macro.
9195 (XFASTINT, XSETFASTINT) [USE_LISP_UNION_TYPE]: Remove.
9196 (XSET) [USE_LISP_UNION_TYPE]: Don't overparenthesize.
9197
9198 2012-06-12 Glenn Morris <rgm@gnu.org>
9199
9200 * s/gnu-kfreebsd.h, s/hpux11.h, s/openbsd.h, s/sol2-10.h: Remove files.
9201
9202 * s/gnu-linux.h (HAVE_PROCFS): Move to configure.
9203
9204 * s/hpux10-20.h, s/openbsd.h, s/usg5-4-common.h:
9205 Move BROKEN_SIGIO to configure.
9206
9207 * s/bsd-common.h, s/darwin.h, s/gnu-kfreebsd.h, s/hpux10-20.h:
9208 Move NO_TERMIO to configure.
9209
9210 2012-06-12 Chong Yidong <cyd@gnu.org>
9211
9212 * image.c (imagemagick_load_image): Use MagickFlattenImage if
9213 MagickMergeImageLayers is undefined. Use pixel pusher loop if
9214 MagickExportImagePixels is undefined.
9215
9216 2012-06-12 Paul Eggert <eggert@cs.ucla.edu>
9217
9218 * image.c (imagemagick_load_image): Remove unused label.
9219
9220 2012-06-11 Glenn Morris <rgm@gnu.org>
9221
9222 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
9223 * s/gnu-kfreebsd.h, s/gnu-linux.h, s/gnu.h, s/hpux10-20.h:
9224 * s/irix6-5.h, s/ms-w32.h, s/msdos.h, s/template.h:
9225 * s/usg5-4-common.h: Move SYSTEM_TYPE to configure.
9226
9227 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
9228
9229 * alloc.c (make_byte_code): New function.
9230 (Fmake_byte_code): Use it. Don't purify here.
9231 * lread.c (read1): Use it as well to avoid extra allocation.
9232
9233 2012-06-11 Chong Yidong <cyd@gnu.org>
9234
9235 * image.c (imagemagick_load_image): Implement transparency.
9236
9237 2012-06-10 Andreas Schwab <schwab@linux-m68k.org>
9238
9239 * regex.c (at_begline_loc_p): Also recognize `(?N:' and correctly
9240 account for preceding backslashes. (Bug#11663)
9241
9242 2012-06-09 Chong Yidong <cyd@gnu.org>
9243
9244 * term.c: Support italics in capable terminals (Bug#9652).
9245 (no_color_bit): Replace unused NC_BLINK with NC_ITALIC.
9246 (turn_on_face): Output using TS_enter_italic_mode if available.
9247 Don't handle unused blinking and alt-charset cases.
9248 (turn_off_face): Handle italic case; discard unused tty_blinking_p
9249 and tty_alt_charset_p cases.
9250 (tty_capable_p, init_tty): Support italics.
9251
9252 * termchar.h (struct tty_display_info): Add field for italics.
9253 Remove unused blink field.
9254
9255 * xfaces.c (tty_supports_face_attributes_p, realize_tty_face):
9256 Handle slant.
9257
9258 * dispextern.h: Replace unused TTY_CAP_BLINK with TTY_CAP_ITALIC.
9259 (struct face): Remove unused fields tty_dim_p, tty_blinking_p, and
9260 tty_alt_charset_p. Add tty_italic_p.
9261
9262 2012-06-09 Michael Albinus <michael.albinus@gmx.de>
9263
9264 * dbusbind.c (XD_BASIC_DBUS_TYPE): Use dbus_type_is_valid and
9265 dbus_type_is_basic if available.
9266 (xd_extract_signed, xd_extract_unsigned): Rename from
9267 extract_signed and extract_unsigned, respectively. Adapt callers.
9268
9269 2012-06-09 Chong Yidong <cyd@gnu.org>
9270
9271 * xfaces.c (face_for_overlay_string): Handle face remapping (Bug#2066).
9272
9273 * fringe.c (Fset_fringe_bitmap_face): Handle the noninteractive
9274 case (Bug#9752).
9275
9276 2012-06-08 Paul Eggert <eggert@cs.ucla.edu>
9277
9278 * xdisp.c (vmessage): Treat frame message as multibyte.
9279 Without this change, (let ((§ 1)) (make-variable-buffer-local '§))
9280 would generate the diagnostic "Making \302\247 buffer-local while
9281 let-bound!".
9282
9283 2012-06-08 Eli Zaretskii <eliz@gnu.org>
9284
9285 * dispnew.c (showing_window_margins_p): Undo last change, which
9286 was done due to an inadvertent commit.
9287 (adjust_frame_glyphs_for_frame_redisplay): Do call
9288 showing_window_margins_p.
9289
9290 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
9291
9292 * eval.c (Fmake_var_non_special): New primitive.
9293 (syms_of_eval): Defsubr it.
9294 * lread.c (syms_of_lread): Mark `values' as lexically scoped.
9295
9296 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
9297
9298 * dispnew.c (showing_window_margins_p): Wrap in #if 0 to prevent unused
9299 function warning (the only call is inside #if 0 since 2012-06-08T08:44:45Z!eliz@gnu.org).
9300
9301 2012-06-08 Eli Zaretskii <eliz@gnu.org>
9302
9303 * alloc.c (allocate_vectorlike): Fix last change.
9304
9305 2012-06-08 Dmitry Antipov <dmantipov@yandex.ru>
9306
9307 Block-based vector allocation of small vectors.
9308 * lisp.h (struct vectorlike_header): New field `nbytes',
9309 adjust comment accordingly.
9310 * alloc.c (enum mem_type): New type `MEM_TYPE_VECTOR_BLOCK'
9311 to denote vector blocks. Adjust users (live_vector_p,
9312 mark_maybe_pointer, valid_lisp_object_p) accordingly.
9313 (COMMON_MULTIPLE): Move outside #if USE_LSB_TAG.
9314 (VECTOR_BLOCK_SIZE, vroundup, VECTOR_BLOCK_BYTES),
9315 (VBLOCK_BYTES_MIN, VBLOCK_BYTES_MAX, VECTOR_MAX_FREE_LIST_INDEX),
9316 (VECTOR_FREE_LIST_FLAG, ADVANCE, VINDEX, SETUP_ON_FREE_LIST),
9317 (VECTOR_SIZE, VECTOR_IN_BLOCK): New macros.
9318 (roundup_size): New constant.
9319 (struct vector_block): New data type.
9320 (vector_blocks, vector_free_lists, zero_vector): New variables.
9321 (all_vectors): Rename to `large_vectors'.
9322 (allocate_vector_from_block, init_vectors, allocate_vector_from_block)
9323 (sweep_vectors): New functions.
9324 (allocate_vectorlike): Return `zero_vector' as the only vector of
9325 0 items. Allocate new vector from block if vector size is less than
9326 or equal to VBLOCK_BYTES_MAX.
9327 (Fgarbage_collect): Move all vector sweeping code to sweep_vectors.
9328 (init_alloc_once): Add call to init_vectors.
9329
9330 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
9331
9332 * eval.c (Fmacroexpand): Stop if the macro returns the same form.
9333
9334 2012-06-07 Paul Eggert <eggert@cs.ucla.edu>
9335
9336 * doprnt.c (doprnt): Truncate multibyte char correctly.
9337 Without this change, doprnt (buf, 2, "%s", FORMAT_END, AP)
9338 would mishandle a string argument "Xc" if X was a multibyte
9339 character of length 2: it would truncate after X's first byte
9340 rather than including all of X.
9341
9342 2012-06-06 Chong Yidong <cyd@gnu.org>
9343
9344 * buffer.c (word_wrap): Doc fix.
9345
9346 2012-06-04 Paul Eggert <eggert@cs.ucla.edu>
9347
9348 * xdisp.c (note_mode_line_or_margin_highlight): Pacify gcc -Wall.
9349
9350 2012-06-03 Glenn Morris <rgm@gnu.org>
9351
9352 * xdisp.c (tool-bar-style): Doc fix.
9353
9354 2012-06-03 Ulrich Müller <ulm@gentoo.org>
9355
9356 * Makefile.in (PAXCTL): Define.
9357 (temacs$(EXEEXT)): Disable memory randomization for the temacs
9358 binary via PaX flags if the paxctl utility is available.
9359 (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
9360 Restore PaX flags to their default. (Bug#11398)
9361
9362 2012-06-03 Chong Yidong <cyd@gnu.org>
9363
9364 * xdisp.c (decode_mode_spec_coding): Display a space for a unibyte
9365 buffer (Bug#11226).
9366
9367 2012-06-03 Chong Yidong <cyd@gnu.org>
9368
9369 * xdisp.c (calc_pixel_width_or_height): Use Fbuffer_local_value.
9370 (note_mode_line_or_margin_highlight): If there is no help echo,
9371 use mode-line-default-help-echo. Handle the case where the mouse
9372 position is past the end of the mode line string.
9373
9374 * buffer.c (buffer_local_value_1): New function, split from
9375 Fbuffer_local_value; can return Qunbound.
9376 (Fbuffer_local_value): Use it.
9377 (Vmode_line_format): Docstring tweaks.
9378
9379 2012-06-02 Paul Eggert <eggert@cs.ucla.edu>
9380
9381 * sysdep.c (system_process_attributes): Improve comment.
9382
9383 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
9384
9385 * keyboard.c: Export real-this-command to Elisp.
9386 (syms_of_keyboard): Rename real_this_command to Vreal_this_command
9387 and DEFVAR it. Update all users.
9388
9389 2012-06-02 Paul Eggert <eggert@cs.ucla.edu>
9390
9391 * minibuf.c (Fassoc_string): Remove duplicate declaration.
9392
9393 * sysdep.c (system_process_attributes) [SOLARIS2 && HAVE_PROCFS]:
9394 Convert pctcpu and pctmem to Lisp float properly.
9395 Let the compiler fold better, as 100.0/0x8000 is exact.
9396
9397 2012-06-02 Andreas Schwab <schwab@linux-m68k.org>
9398
9399 * alloc.c (CONS_BLOCK_SIZE): Account for padding at the end of
9400 cons_block.
9401
9402 2012-06-01 Paul Eggert <eggert@cs.ucla.edu>
9403
9404 * xfns.c (x_set_tool_bar_lines) [USE_GTK]: Adjust to bitfield change.
9405
9406 2012-06-01 Dmitry Antipov <dmantipov@yandex.ru>
9407
9408 For a 'struct window', replace some Lisp_Object fields to
9409 bitfields where appropriate, remove unused fields.
9410 * window.h (struct window): Remove unused 'last_mark_x' and
9411 'last_mark_y' fields. Rename 'mini_p' field to 'mini',
9412 change its type from Lisp_Object to bitfield.
9413 Change type of 'force_start', 'optional_new_start',
9414 'last_had_star', 'update_mode_line' and 'start_at_line_beg'
9415 fields from Lisp_Object to bitfield. Adjust users accordingly.
9416
9417 2012-05-31 Paul Eggert <eggert@cs.ucla.edu>
9418
9419 Pacify gcc -Wdouble-precision when using Xaw.
9420 * xterm.c (xaw_jump_callback, x_set_toolkit_scroll_bar_thumb)
9421 [HAVE_X_WINDOWS && USE_TOOLKIT_SCROLL_BARS && !USE_MOTIF && !USE_GTK]:
9422 Use 'float' consistently, rather than 'float' in most places
9423 and 'double' in a couple of places.
9424
9425 2012-05-31 Eli Zaretskii <eliz@gnu.org>
9426
9427 * xdisp.c (handle_stop): Detect whether we have overlay strings
9428 loaded by testing it->current.overlay_string_index to be
9429 non-negative, instead of checking whether n_overlay_strings is
9430 positive. (Bug#11587)
9431
9432 2012-05-31 Chong Yidong <cyd@gnu.org>
9433
9434 * keymap.c (describe_map_tree): Revert 2011-07-07 change (Bug#1169).
9435
9436 * doc.c (Fsubstitute_command_keys): Doc fix.
9437
9438 2012-05-31 Eli Zaretskii <eliz@gnu.org>
9439
9440 * search.c (search_buffer): Remove calls to
9441 r_alloc_inhibit_buffer_relocation, as it is now called by
9442 maybe_unify_char, which was the cause of relocation of buffer text
9443 in bug#11519.
9444
9445 2012-05-31 Eli Zaretskii <eliz@gnu.org>
9446
9447 * charset.c (maybe_unify_char): Inhibit relocation of buffer text
9448 for the duration of call to load_charset, to avoid problems with
9449 callers of maybe_unify_char that access buffer text through C
9450 pointers.
9451
9452 * ralloc.c (r_alloc_inhibit_buffer_relocation): Increment and
9453 decrement the inhibition flag, instead of just setting or
9454 resetting it.
9455
9456 2012-05-31 Paul Eggert <eggert@cs.ucla.edu>
9457
9458 Remove obsolete '#define static' cruft.
9459 * s/hpux10-20.h (_FILE_OFFSET_BITS): Don't #undef.
9460 This #undef was "temporary" in 2000; it is no longer needed
9461 now that '#define static' has gone away.
9462 * xfns.c, xterm.h (gray_bitmap_width, gray_bitmap_height)
9463 (gray_bitmap_bits): Remove; no longer needed.
9464 All uses replaced with definiens.
9465 * xterm.c: Include "bitmaps/gray.xbm".
9466
9467 2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
9468
9469 Clean up __executable_start, monstartup when --enable-profiling.
9470 The following changes affect the code only when profiling.
9471 * dispnew.c (__executable_start): Rename from safe_bcopy.
9472 Define only on platforms that need it.
9473 * emacs.c: Include <sys/gmon.h> when profiling.
9474 (_mcleanup): Remove decl, since <sys/gmon.h> does it now.
9475 (__executable_start): Remove decl, since lisp.h does it now.
9476 (safe_bcopy): Remove decl; no longer has that name.
9477 (main): Coalesce #if into single bit of code, for simplicity.
9478 Cast pointers to uintptr_t, since standard libraries want integers
9479 and not pointers.
9480 * lisp.h (__executable_start): New decl.
9481
9482 2012-05-31 Glenn Morris <rgm@gnu.org>
9483
9484 * image.c (Fimagemagick_types): Doc fix.
9485
9486 2012-05-30 Jim Meyering <meyering@redhat.com>
9487
9488 * callproc.c (Fcall_process_region): Include directory component
9489 in mkstemp error message (Bug#11586).
9490
9491 2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
9492
9493 * alloc.c, lisp.h (make_pure_vector): Now static.
9494
9495 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
9496
9497 * eval.c (Fdefun, Fdefmacro, Vmacro_declaration_function):
9498 Move to byte-run.el.
9499 (Fautoload): Do the hash-doc more carefully.
9500 * data.c (Fdefalias): Purify definition, except for keymaps.
9501 (Qdefun): Move from eval.c.
9502 * lisp.h (Qdefun): Remove.
9503 * lread.c (read1): Tiny simplification.
9504
9505 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
9506
9507 Do not create empty overlays with the evaporate property (Bug#9642).
9508 * buffer.c (Fmove_overlay): Reinstate the earlier fix for
9509 Bug#9642, but explicitly check that the buffer the overlay would
9510 be moved to is live and rearrange lines to make sure that errors
9511 will not put the overlay in an inconsistent state.
9512 (Fdelete_overlay): Cosmetics.
9513
9514 2012-05-28 Eli Zaretskii <eliz@gnu.org>
9515
9516 * w32term.c (my_bring_window_to_top): New function.
9517 (x_raise_frame): Use handle returned by DeferWindowPos, which
9518 could be different from the original one.
9519 Call my_bring_window_to_top instead of my_set_foreground_window.
9520 (Bug#11513)
9521
9522 * w32fns.c (w32_wnd_proc): Accept and process WM_EMACS_BRINGTOTOP
9523 by calling BringWindowToTop.
9524
9525 * w32term.h (WM_EMACS_BRINGTOTOP): New message.
9526 (WM_EMACS_END): Increase by one.
9527
9528 2012-05-28 Paul Eggert <eggert@cs.ucla.edu>
9529
9530 * bidi.c (bidi_mirror_char): Put eassert before conversion to int.
9531 This avoids undefined behavior that might cause the eassert
9532 to not catch an out-of-range value.
9533
9534 2012-05-28 Juanma Barranquero <lekktu@gmail.com>
9535
9536 * makefile.w32-in ($(BLD)/w32inevt.$(O), $(BLD)/w32console.$(O)):
9537 Update dependencies.
9538
9539 2012-05-27 Eli Zaretskii <eliz@gnu.org>
9540
9541 * bidi.c (bidi_mirror_char): Fix last change.
9542
9543 2012-05-27 Andreas Schwab <schwab@linux-m68k.org>
9544
9545 * unexmacosx.c (copy_data_segment): Truncate after 16 characters
9546 when referring to sectname field in printf format.
9547
9548 2012-05-27 Paul Eggert <eggert@cs.ucla.edu>
9549
9550 * lisp.h [REL_ALLOC]: Omit duplicate prototypes.
9551 Only r_alloc_inhibit_buffer_relocation needed to be added;
9552 the others were already declared.
9553
9554 * bidi.c (bidi_mirror_char): Don't possibly truncate the integer
9555 before checking whether it's out of range. Put the check inside
9556 eassert. See
9557 <http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00485.html>.
9558
9559 2012-05-27 Ken Brown <kbrown@cornell.edu>
9560
9561 * callproc.c (Fcall_process): Restore a line that was accidentally
9562 commented out in the 2011-02-13 change (bug#11547).
9563
9564 2012-05-27 Eli Zaretskii <eliz@gnu.org>
9565
9566 * lisp.h [REL_ALLOC]: Add prototypes for external functions
9567 defined on ralloc.c.
9568
9569 * buffer.c [REL_ALLOC]: Remove prototypes of
9570 r_alloc_reset_variable, r_alloc, r_re_alloc, and r_alloc_free,
9571 they are now on lisp.h.
9572
9573 * ralloc.c (r_alloc_inhibit_buffer_relocation): New function.
9574
9575 * search.c (search_buffer): Use it to inhibit relocation of buffer
9576 text while re_search_2 is doing its job, because re_search_2 is
9577 passed C pointers to buffer text. (Bug#11519)
9578
9579 * msdos.c (internal_terminal_init) <Vwindow_system_version>:
9580 Update value to 24.
9581
9582 * xdisp.c (move_it_to): Under MOVE_TO_Y, when restoring iterator
9583 state after an additional call to move_it_in_display_line_to, keep
9584 the values of it->max_ascent and it->max_descent found for the
9585 entire line.
9586 (pos_visible_p): Revert the comparison against bottom_y to what it
9587 was in revid eliz@gnu.org-20120513182235-4p6386j761ld0nwb.
9588 (Bug#11464)
9589
9590 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
9591
9592 Fix coding-related core dumps with gcc -ftrapv.
9593 The code was computing A - B, where A and B are pointers, and B is
9594 random garbage. This can lead to core dumps on platforms that
9595 have special pointer registers, and it also leads to core dumps on
9596 x86-64 when compiled with gcc -ftrapv. The fix is to compute
9597 A - B only when B is initialized properly.
9598 * coding.c (coding_set_source, coding_set_destination): Return void.
9599 (coding_change_source, coding_change_destinations): New functions,
9600 with the old behaviors of coding_set_source and coding_set_destination.
9601 All callers that need an offset changed to use these new functions.
9602
9603 2012-05-26 Glenn Morris <rgm@gnu.org>
9604
9605 * nsterm.m (ns_init_paths): Don't mess with INFOPATH. (Bug#2791)
9606
9607 2012-05-26 Eli Zaretskii <eliz@gnu.org>
9608
9609 Extend mouse support on W32 text-mode console.
9610 * xdisp.c (draw_row_with_mouse_face):
9611 Call tty_draw_row_with_mouse_face for WINDOWSNT as well.
9612
9613 * w32console.c: Include window.h.
9614 (w32con_write_glyphs_with_face, tty_draw_row_with_mouse_face):
9615 New functions.
9616 (initialize_w32_display): Initialize mouse-highlight data.
9617
9618 * w32inevt.c: Include termchar.h and window.h.
9619 (do_mouse_event): Support mouse-autoselect-window. When the mouse
9620 moves, call note_mouse_highlight. If help_echo changed, call
9621 gen_help_event to produce help-echo message in the echo area.
9622 Call clear_mouse_face if mouse_face_hidden is set in the mouse
9623 highlight info.
9624
9625 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
9626
9627 * lread.c (read1): Simplify slightly to avoid an overflow warning
9628 with GCC 4.7.0 on x86-64.
9629
9630 2012-05-26 Eli Zaretskii <eliz@gnu.org>
9631
9632 * bidi.c (bidi_mirror_char): Revert last change: an int is
9633 definitely wide enough here.
9634
9635 2012-05-25 Paul Eggert <eggert@cs.ucla.edu>
9636
9637 Fix integer width and related bugs (Bug#9874).
9638 * alloc.c (pure_bytes_used_lisp, pure_bytes_used_non_lisp):
9639 (allocate_vectorlike, buffer_memory_full, struct sdata, SDATA_SIZE)
9640 (string_bytes, check_sblock, allocate_string_data):
9641 (compact_small_strings, Fmake_bool_vector, make_string)
9642 (make_unibyte_string, make_multibyte_string)
9643 (make_string_from_bytes, make_specified_string)
9644 (allocate_vectorlike, Fmake_vector, find_string_data_in_pure)
9645 (make_pure_string, make_pure_c_string, make_pure_vector, Fpurecopy)
9646 (mark_vectorlike):
9647 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9648 (allocate_pseudovector):
9649 Use int, not EMACS_INT, where int is wide enough.
9650 (inhibit_garbage_collection, Fgarbage_collect):
9651 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9652 * bidi.c (bidi_mirror_char): Use EMACS_INT, not int, where
9653 int might not be wide enough.
9654 (bidi_cache_search, bidi_cache_find, bidi_init_it)
9655 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
9656 (bidi_at_paragraph_end, bidi_find_paragraph_start)
9657 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
9658 (bidi_level_of_next_char, bidi_move_to_visually_next):
9659 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9660 * buffer.c (copy_overlays, Fgenerate_new_buffer_name)
9661 (Fkill_buffer, Fset_buffer_major_mode)
9662 (advance_to_char_boundary, Fbuffer_swap_text)
9663 (Fset_buffer_multibyte, overlays_at, overlays_in)
9664 (overlay_touches_p, struct sortvec, record_overlay_string)
9665 (overlay_strings, recenter_overlay_lists)
9666 (adjust_overlays_for_insert, adjust_overlays_for_delete)
9667 (fix_start_end_in_overlays, fix_overlays_before, modify_overlay)
9668 (Fmove_overlay, Fnext_overlay_change, Fprevious_overlay_change)
9669 (Foverlay_recenter, last_overlay_modification_hooks_used)
9670 (report_overlay_modification, evaporate_overlays, enlarge_buffer_text):
9671 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9672 (validate_region): Omit unnecessary test for b <= e,
9673 since that's guaranteed by the previous test.
9674 (adjust_overlays_for_delete): Avoid pos + length overflow.
9675 (Fmove_overlay, Fdelete_overlay, add_overlay_mod_hooklist)
9676 (report_overlay_modification):
9677 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9678 (Foverlays_at, Fnext_overlay_change, Fprevious_overlay_change):
9679 Omit pointer cast, which isn't needed anyway, and doesn't work
9680 after the EMACS_INT -> ptrdiff_t change.
9681 (Fmove_overlay): Clip BEG and END to ptrdiff_t to avoid overflow.
9682 * buffer.h: Adjust decls to match defn changes elsewhere.
9683 (struct buffer_text, struct buffer):
9684 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9685 Use EMACS_INT, not int, where int might not be wide enough.
9686 * bytecode.c (unmark_byte_stack, exec_byte_code): Use ptrdiff_t,
9687 not int, to avoid needless 32-bit limit on 64-bit hosts.
9688 (exec_byte_code): Use tighter memory-full test, one that checks
9689 for alloca overflow. Don't compute the address of the object just
9690 before an array, as that's not portable. Use EMACS_INT, not
9691 ptrdiff_t or int, where ptrdiff_t or int might not be wide enough.
9692 * callint.c (Fcall_interactively):
9693 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9694 * callproc.c (call_process_kill, Fcall_process):
9695 Don't assume pid_t fits into an Emacs fixnum.
9696 (call_process_cleanup, Fcall_process, child_setup):
9697 Don't assume pid_t fits into int.
9698 (call_process_cleanup, Fcall_process, delete_temp_file)
9699 (Fcall_process_region):
9700 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9701 (Fcall_process): Simplify handling of volatile integers.
9702 Use int, not EMACS_INT, where int will do.
9703 * casefiddle.c (casify_object, casify_region, operate_on_word)
9704 (Fupcase_word, Fdowncase_word, Fcapitalize_word):
9705 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9706 (casify_object): Avoid integer overflow when overallocating buffer.
9707 * casetab.c (set_identity, shuffle): Prefer int to unsigned when
9708 either works. Use lint_assume to convince GCC 4.6.1 that it's OK.
9709 * category.c (Fchar_category_set): Don't assume fixnum fits in int.
9710 * category.h (CATEGORYP): Don't assume arg is nonnegative.
9711 * ccl.c (GET_CCL_INT): Remove; no longer needed, since the
9712 integers are now checked earlier. All uses replaced with XINT.
9713 (ccl_driver):
9714 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9715 For CCL_MapSingle, check that content and value are in int range.
9716 (ccl_driver, Fregister_code_conversion_map):
9717 Check that Vcode_version_map_vector is a vector.
9718 (resolve_symbol_ccl_program): Check that vector header is in range.
9719 Always copy the vector, so that we can check its contents reliably
9720 now rather than having to recheck each instruction as it's being
9721 executed. Check that vector words fit in 'int'.
9722 (ccl_get_compiled_code, Fregister_ccl_program)
9723 (Fregister_code_conversion_map): Use ptrdiff_t, not int, for
9724 program indexes, to avoid needless 32-bit limit on 64-bit hosts.
9725 (Fccl_execute, Fccl_execute_on_string): Check that initial reg
9726 contents are in range.
9727 (Fccl_execute_on_string): Check that status is in range.
9728 * ccl.h (struct ccl_program.idx): Now ptrdiff_t, not int.
9729 * character.c (char_resolve_modifier_mask, Fchar_resolve_modifiers):
9730 Accept and return EMACS_INT, not int, because callers can pass values
9731 out of 'int' range.
9732 (c_string_width, strwidth, lisp_string_width, chars_in_text)
9733 (multibyte_chars_in_text, parse_str_as_multibyte)
9734 (str_as_multibyte, count_size_as_multibyte, str_to_multibyte)
9735 (str_as_unibyte, str_to_unibyte, string_count_byte8)
9736 (string_escape_byte8, Fget_byte):
9737 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9738 (Funibyte_string): Use CHECK_RANGED_INTEGER, not CHECK_NATNUM, to
9739 avoid mishandling large integers.
9740 * character.h: Adjust decls to match defn changes elsewhere.
9741 * charset.c (load_charset_map_from_file, find_charsets_in_text)
9742 (Ffind_charset_region):
9743 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9744 (load_charset_map_from_file): Redo idx calculation to avoid overflow.
9745 (load_charset_map_from_vector, Fdefine_charset_internal):
9746 Don't assume fixnum fits in int.
9747 (load_charset_map_from_vector, Fmap_charset_chars):
9748 Remove now-unnecessary CHECK_NATNUMs.
9749 (Fdefine_charset_internal): Check ranges here, more carefully.
9750 Don't rely on undefined behavior with signed left shift overflow.
9751 Don't assume unsigned int fits into fixnum, or that fixnum fits
9752 into unsigned int. Don't require max_code to be a valid fixnum;
9753 that's not true for gb10830 4-byte on a 32-bit host. Allow
9754 invalid_code to be a cons, for the same reason. Require code_offset
9755 to be a character. Avoid int overflow if max_char is close
9756 to INT_MAX.
9757 (CODE_POINT_TO_INDEX): On 32-bit hosts, return int, not unsigned;
9758 this is intended anyway and avoids some undefined behavior.
9759 (load_charset_map): Pass unsigned, not int, as 2nd arg of
9760 INDEX_TO_CODE_POINT, as that's what it expects.
9761 (Funify_charset, encode_char): Don't stuff unsigned vals into int vars.
9762 * charset.h (DECODE_CHAR): Return int, not unsigned;
9763 this is what was intended anyway, and it avoids undefined behavior.
9764 (CHARSET_OFFSET): Remove unused macro, instead of fixing its
9765 integer-overflow issues.
9766 (ENCODE_CHAR): Return unsigned on all hosts, not just on 32-bit hosts.
9767 Formerly, it returned EMACS_INT on 64-bit hosts in the common case
9768 where the argument is EMACS_INT, and this behavior is not intended.
9769 * chartab.c (Fmake_char_table, Fset_char_table_range)
9770 (uniprop_get_decoder, uniprop_get_encoder):
9771 Don't assume fixnum fits in int.
9772 * cmds.c (move_point): New function, that does the gist of
9773 Fforward_char and Fbackward_char, but does so while checking
9774 for integer overflow more accurately.
9775 (Fforward_char, Fbackward_char): Use it.
9776 (Fforward_line, Fend_of_line, internal_self_insert)
9777 (internal_self_insert):
9778 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9779 Fix a FIXME, by checking for integer overflow when calculating
9780 target_clm and actual_clm.
9781 * coding.c (detect_coding_XXX, encode_coding_XXX, CODING_DECODE_CHAR)
9782 (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET, CODING_CHAR_CHARSET_P)
9783 (ASSURE_DESTINATION, coding_alloc_by_realloc)
9784 (coding_alloc_by_making_gap, alloc_destination)
9785 (detect_coding_utf_8, encode_coding_utf_8, decode_coding_utf_16)
9786 (encode_coding_utf_16, detect_coding_emacs_mule)
9787 (decode_coding_emacs_mule, encode_coding_emacs_mule)
9788 (detect_coding_iso_2022, decode_coding_iso_2022)
9789 (encode_invocation_designation, encode_designation_at_bol)
9790 (encode_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
9791 (decode_coding_sjis, decode_coding_big5, encode_coding_sjis)
9792 (encode_coding_big5, detect_coding_ccl, decode_coding_ccl)
9793 (encode_coding_ccl, encode_coding_raw_text)
9794 (detect_coding_charset, decode_coding_charset)
9795 (encode_coding_charset, detect_eol, decode_eol, produce_chars)
9796 (produce_composition, produce_charset, produce_annotation)
9797 (decode_coding, handle_composition_annotation)
9798 (handle_charset_annotation, consume_chars, decode_coding_gap)
9799 (decode_coding_object, encode_coding_object, detect_coding_system)
9800 (Ffind_coding_systems_region_internal, Fcheck_coding_systems_region)
9801 (code_convert_region, code_convert_string)
9802 (Fdefine_coding_system_internal)
9803 (coding_set_source, coding_set_destination):
9804 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9805 (setup_iso_safe_charsets, consume_chars, Funencodable_char_position)
9806 (Fdefine_coding_system_internal):
9807 Don't assume fixnums fit in int.
9808 (decode_coding_gap, decode_coding_object, encode_coding_object)
9809 (Fread_coding_system, Fdetect_coding_region)
9810 (Funencodable_char_position, Fcheck_coding_systems_region)
9811 (get_translation, handle_composition_annotation, consume_chars):
9812 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9813 (consume_chars): Rewrite to not calculate an address outside buffer.
9814 (Ffind_operation_coding_system): NATNUMP can eval its arg twice.
9815 Don't access memory outside of the args array.
9816 (Fdefine_coding_system_internal): Check for charset-id overflow.
9817 (ENCODE_ISO_CHARACTER): Use unsigned, not int, to store the unsigned
9818 result of ENCODE_CHAR.
9819 * coding.h: Adjust decls to match defn changes elsewhere.
9820 (struct coding_system):
9821 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9822 * composite.c (get_composition_id, find_composition)
9823 (run_composition_function, update_compositions)
9824 (compose_text, composition_gstring_put_cache)
9825 (composition_gstring_p, composition_gstring_width)
9826 (fill_gstring_header, fill_gstring_body, autocmp_chars)
9827 (composition_compute_stop_pos, composition_reseat_it)
9828 (composition_update_it, struct position_record)
9829 (find_automatic_composition, composition_adjust_point)
9830 (Fcomposition_get_gstring, Ffind_composition_internal):
9831 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9832 (update_compositions):
9833 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9834 * composite.h: Adjust decls to match defn changes elsewhere.
9835 (struct composition):
9836 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9837 * data.c (let_shadows_buffer_binding_p, let_shadows_global_binding_p):
9838 Do not attempt to compute the address of the object just before a
9839 buffer; this is not portable.
9840 (Faref, Faset):
9841 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9842 (Faset): Use int, not EMACS_INT, where int is wide enough.
9843 (Fstring_to_number): Don't assume fixnums fit in int.
9844 (Frem): Don't assume arg is nonnegative.
9845 * dbusbind.c (xd_append_arg): Check for integers out of range.
9846 (Fdbus_call_method): Don't overflow the timeout int.
9847 (extract_signed, extract_unsigned): New functions.
9848 (XD_CHECK_DBUS_SERIAL): Remove; superseded by extract_unsigned.
9849 (xd_get_connection_references): Return ptrdiff_t, not int.
9850 All uses changed.
9851 (xd_signature, xd_append_arg, xd_retrieve_arg, Fdbus_message_internal)
9852 (xd_read_message_1):
9853 Use int, not unsigned, where the dbus API uses int.
9854 (Fdbus_message_internal): Don't overflow mtype.
9855 (syms_of_dbusbind): Allocate right-sized buffer for integers.
9856 * dired.c (directory_files_internal, file_name_completion, scmp)
9857 (file_name_completion_stat):
9858 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9859 (file_name_completion): Don't overflow matchcount.
9860 (file_name_completion_stat): Use SAFE_ALLOCA, not alloca.
9861 * dispextern.h: Adjust decls to match defn changes elsewhere.
9862 (struct text_pos, struct glyph, struct bidi_saved_info)
9863 (struct bidi_string_data, struct bidi_it, struct composition_it)
9864 (struct it):
9865 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9866 (struct display_pos, struct composition_it, struct it):
9867 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9868 * dispnew.c (increment_matrix_positions)
9869 (increment_row_positions, mode_line_string)
9870 (marginal_area_string):
9871 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9872 (change_frame_size_1, Fredisplay, Fframe_or_buffer_changed_p):
9873 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9874 (duration_to_sec_usec): New function, to check for overflow better.
9875 (Fsleep_for, sit_for): Use it.
9876 * doc.c (get_doc_string, store_function_docstring):
9877 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9878 (get_doc_string, Fsnarf_documentation):
9879 Use int, not EMACS_INT, where int is wide enough.
9880 (get_doc_string):
9881 Use SAFE_ALLOCA, not alloca.
9882 Check for overflow when converting EMACS_INT to off_t.
9883 * doprnt.c (doprnt):
9884 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9885 * editfns.c (init_editfns, Fuser_uid, Fuser_real_uid):
9886 Don't assume uid_t fits into fixnum.
9887 (buildmark, Fgoto_char, overlays_around, find_field, Fdelete_field)
9888 (Ffield_string, Ffield_string_no_properties, Ffield_beginning)
9889 (Ffield_end, Fconstrain_to_field, Fline_beginning_position)
9890 (Fline_end_position, Fprevious_char, Fchar_after, Fchar_before)
9891 (general_insert_function)
9892 (Finsert_char, make_buffer_string, make_buffer_string_both)
9893 (update_buffer_properties, Fbuffer_substring)
9894 (Fbuffer_substring_no_properties, Fcompare_buffer_substrings)
9895 (Fsubst_char_in_region, check_translation)
9896 (Ftranslate_region_internal, save_restriction_restore, Fformat)
9897 (transpose_markers, Ftranspose_regions):
9898 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9899 (clip_to_bounds): Move to lisp.h as an inline function).
9900 (Fconstrain_to_field): Don't assume integers are nonnegative.
9901 (Fline_beginning_position, Fsave_excursion, Fsave_current_buffer):
9902 (Fsubst_char_in_region, Fsave_restriction):
9903 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9904 (Femacs_pid): Don't assume pid_t fits into fixnum.
9905 (lo_time): Use int, not EMACS_INT, when int suffices.
9906 (lisp_time_argument): Check for usec out of range.
9907 (Fencode_time): Don't assume fixnum fits in int.
9908 (Fuser_login_name, Fuser_full_name): Signal an error
9909 if a uid argument is out of range, rather than relying on
9910 undefined behavior.
9911 (Fformat_time_string): Remove now-unnecessary check.
9912 lisp_time_argument checks for out-of-range usec now.
9913 Use ptrdiff_t, not size_t, where ptrdiff_t will do.
9914 * emacs.c (gdb_valbits, gdb_gctypebits): Now int, not EMACS_INT.
9915 (gdb_data_seg_bits): Now uintptr_t, not EMACS_INT.
9916 (PVEC_FLAG, gdb_array_mark_flag): Now ptrdiff_t, not EMACS_INT.
9917 (init_cmdargs, Fdump_emacs):
9918 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9919 (Fkill_emacs): Don't assume fixnum fits in int; instead, take just
9920 the bottom (typically) 32 bits of the fixnum.
9921 * eval.c (specpdl_size, call_debugger):
9922 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9923 (when_entered_debugger, Fbacktrace_debug):
9924 Don't assume fixnum can fit in int.
9925 (Fdefvaralias, Fdefvar): Do not attempt to compute the address of
9926 the object just before a buffer; this is not portable.
9927 (FletX, Flet, Funwind_protect, do_autoload, Feval, funcall_lambda)
9928 (grow_specpdl, unbind_to):
9929 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9930 (Fapply, apply_lambda): Don't assume ptrdiff_t can hold fixnum.
9931 (grow_specpdl): Simplify allocation by using xpalloc.
9932 (Fprog1, Fprog2): Don't assume list length fits in int. Simplify.
9933 * fileio.c (Ffind_file_name_handler, Fcopy_file, Frename_file)
9934 (Finsert_file_contents, Fwrite_region, Fdo_auto_save):
9935 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9936 (Ffind_file_name_handler, non_regular_inserted, Finsert_file_contents)
9937 (a_write, e_write):
9938 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9939 (Fcopy_file, non_regular_nbytes, read_non_regular)
9940 (Finsert_file_contents):
9941 Use int, not EMACS_INT, where int is wide enough.
9942 (READ_BUF_SIZE): Verify that it fits in int.
9943 (Finsert_file_contents): Check that counts are in proper range,
9944 rather than assuming fixnums fit into ptrdiff_t etc.
9945 Don't assume fixnums fit into int.
9946 * floatfns.c (Fexpt): Avoid undefined signed * signed overflow.
9947 * fns.c (Fcompare_strings, Fstring_lessp, struct textprop_rec, concat)
9948 (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
9949 (string_char_to_byte, string_byte_to_char)
9950 (string_make_multibyte, string_to_multibyte)
9951 (string_make_unibyte, Fstring_as_unibyte, Fstring_as_multibyte)
9952 (Fstring_to_unibyte, Fsubstring, Fsubstring_no_properties)
9953 (substring_both, Fdelete, internal_equal, Ffillarray)
9954 (Fclear_string, mapcar1)
9955 (Fbase64_encode_region, Fbase64_encode_string, base64_encode_1)
9956 (Fbase64_decode_region, Fbase64_decode_string, base64_decode_1)
9957 (larger_vector, make_hash_table, maybe_resize_hash_table)
9958 (hash_lookup, hash_remove_from_table, hash_clear, sweep_weak_table)
9959 (Fmaphash, secure_hash):
9960 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9961 (concat): Check for string index and length overflow.
9962 (Fmapconcat): Don't assume fixnums fit into ptrdiff_t.
9963 (Frequire):
9964 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
9965 (larger_vector): New API (vec, incr_min, size_max) replaces old
9966 one (vec, new_size, init). This catches size overflow.
9967 INIT was removed because it was always Qnil.
9968 All callers changed.
9969 (INDEX_SIZE_BOUND): New macro, which calculates more precisely
9970 the upper bound on a hash table index size.
9971 (make_hash_table, maybe_resize_hash_table): Use it.
9972 (secure_hash): Computer start_byte and end_byte only after
9973 they're known to be in ptrdiff_t range.
9974 * font.c (font_intern_prop, font_at, font_range, Ffont_shape_gstring)
9975 (Ffont_get_glyphs, Ffont_at):
9976 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9977 (font_style_to_value, font_prop_validate_style, font_expand_wildcards)
9978 (Flist_fonts, Fopen_font):
9979 Don't assume fixnum can fit in int.
9980 (check_gstring): Don't assume index can fit in int.
9981 (font_match_p): Check that fixnum is a character, not a nonnegative
9982 fixnum, since the later code needs to stuff it into an int.
9983 (font_find_for_lface): Use SAFE_ALLOCA_LISP, not alloca.
9984 (font_fill_lglyph_metrics): Use unsigned, not EMACS_INT, to avoid
9985 conversion overflow issues.
9986 (Fopen_font): Check for integer out of range.
9987 (Ffont_get_glyphs): Don't assume index can fit in int.
9988 * font.h: Adjust decls to match defn changes elsewhere.
9989 * fontset.c (reorder_font_vector): Redo score calculation to avoid
9990 integer overflow.
9991 (num_auto_fontsets, fontset_from_font): Use ptrdiff_t, not
9992 printmax_t, where ptrdiff_t is wide enough.
9993 (Finternal_char_font):
9994 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
9995 * frame.c (Fset_mouse_position, Fset_mouse_pixel_position)
9996 (Fset_frame_height, Fset_frame_width, Fset_frame_size)
9997 (Fset_frame_position, x_set_frame_parameters)
9998 (x_set_line_spacing, x_set_border_width)
9999 (x_set_internal_border_width, x_set_alpha, x_figure_window_size):
10000 Check that fixnums are in proper range for system types.
10001 (frame_name_fnn_p, Fframe_parameter, Fmodify_frame_parameters):
10002 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10003 (Fmodify_frame_parameters): Don't assume fixnum fits in int.
10004 Use SAFE_ALLOCA_LISP, not alloca.
10005 * frame.h (struct frame): Use intptr_t, not EMACS_INT, where
10006 intptr_t is wide enough.
10007 * fringe.c (lookup_fringe_bitmap, get_logical_fringe_bitmap)
10008 (Fdefine_fringe_bitmap): Don't assume fixnum fits in int.
10009 (Ffringe_bitmaps_at_pos): Don't assume index fits in int.
10010 Check for fixnum out of range.
10011 * ftfont.c (ftfont_list): Don't assume index fits in int.
10012 Check that fixnums are in proper range for system types.
10013 (ftfont_shape_by_flt):
10014 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10015 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
10016 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10017 (Fgnutls_error_fatalp, Fgnutls_error_string, Fgnutls_boot):
10018 Check that fixnums are in proper range for system types.
10019 * gnutls.h: Adjust decls to match defn changes elsewhere.
10020 * gtkutil.c (xg_dialog_run):
10021 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10022 (update_frame_tool_bar):
10023 Check that fixnums are in proper range for system types.
10024 * image.c (parse_image_spec): Redo count calculation to avoid overflow.
10025 (lookup_image): Check that fixnums are in range for system types.
10026 * indent.c (last_known_column, last_known_column_point):
10027 (current_column_bol_cache):
10028 (skip_invisible, current_column, check_display_width):
10029 (check_display_width, scan_for_column, current_column_1)
10030 (Findent_to, Fcurrent_indentation, position_indentation)
10031 (indented_beyond_p, Fmove_to_column, compute_motion):
10032 (Fcompute_motion, Fvertical_motion):
10033 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10034 (last_known_column_modified): Use EMACS_INT, not int.
10035 (check_display_width):
10036 (Fcompute_motion):
10037 Check that fixnums and floats are in proper range for system types.
10038 (compute_motion): Don't assume index or fixnum fits in int.
10039 (compute_motion, Fcompute_motion):
10040 Use int, not EMACS_INT, when it is wide enough.
10041 (vmotion): Omit local var start_hpos that is always 0; that way
10042 we don't need to worry about overflow in expressions involving it.
10043 * indent.h: Adjust decls to match defn changes elsewhere.
10044 (struct position):
10045 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10046 Use int, not EMACS_INT, where int is wide enough.
10047 Remove unused members ovstring_chars_done and tab_offset;
10048 all uses removed.
10049 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
10050 (adjust_markers_for_delete, adjust_markers_for_insert, adjust_point)
10051 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
10052 (make_gap, copy_text, insert, insert_and_inherit)
10053 (insert_before_markers, insert_before_markers_and_inherit)
10054 (insert_1, count_combining_before, count_combining_after)
10055 (insert_1_both, insert_from_string)
10056 (insert_from_string_before_markers, insert_from_string_1)
10057 (insert_from_gap, insert_from_buffer, insert_from_buffer_1)
10058 (adjust_after_replace, adjust_after_insert, replace_range)
10059 (replace_range_2, del_range, del_range_1, del_range_byte)
10060 (del_range_both, del_range_2, modify_region)
10061 (prepare_to_modify_buffer, signal_before_change)
10062 (signal_after_change, Fcombine_after_change_execute):
10063 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10064 * intervals.c (traverse_intervals, rotate_right, rotate_left)
10065 (balance_an_interval, split_interval_right, split_interval_left)
10066 (find_interval, next_interval, update_interval)
10067 (adjust_intervals_for_insertion, delete_node, delete_interval)
10068 (interval_deletion_adjustment, adjust_intervals_for_deletion)
10069 (static_offset_intervals, offset_intervals)
10070 (merge_interval_right, merge_interval_left, make_new_interval)
10071 (graft_intervals_into_buffer, temp_set_point_both)
10072 (temp_set_point, set_point, adjust_for_invis_intang)
10073 (set_point_both, move_if_not_intangible, get_property_and_range)
10074 (get_local_map, copy_intervals, copy_intervals_to_string)
10075 (compare_string_intervals, set_intervals_multibyte_1):
10076 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10077 * intervals.h: Adjust decls to match defn changes elsewhere.
10078 (struct interval):
10079 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10080 * keyboard.c (this_command_key_count, this_single_command_key_start)
10081 (before_command_key_count, before_command_echo_length, echo_now)
10082 (echo_length, recursive_edit_1, Frecursive_edit, Ftrack_mouse)
10083 (command_loop_1, safe_run_hooks, read_char, timer_check_2)
10084 (menu_item_eval_property, read_key_sequence, Fread_key_sequence)
10085 (Fread_key_sequence_vector, Fexecute_extended_command, Fsuspend_emacs):
10086 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10087 (last_non_minibuf_size, last_point_position, echo_truncate)
10088 (command_loop_1, adjust_point_for_property, read_char, gen_help_event)
10089 (make_lispy_position, make_lispy_event, parse_modifiers_uncached)
10090 (parse_modifiers, modify_event_symbol, Fexecute_extended_command)
10091 (stuff_buffered_input):
10092 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10093 (last_auto_save, command_loop_1, read_char):
10094 Use EMACS_INT, not int, to avoid integer overflow.
10095 (record_char): Avoid overflow in total_keys computation.
10096 (parse_modifiers_uncached): Redo index calculation to avoid overflow.
10097 * keyboard.h: Adjust decls to match defn changes elsewhere.
10098 * keymap.c (Fdefine_key, Fcurrent_active_maps, accessible_keymaps_1)
10099 (Fkey_description, Fdescribe_vector, Flookup_key):
10100 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10101 (click_position): New function, to check that positions are in range.
10102 (Fcurrent_active_maps):
10103 (describe_command):
10104 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10105 (Faccessible_keymaps, Fkey_description):
10106 (preferred_sequence_p):
10107 Don't assume fixnum can fit into int.
10108 (Fkey_description): Use SAFE_ALLOCA_LISP, not alloca.
10109 Check for integer overflow in size calculations.
10110 (Ftext_char_description): Use CHECK_CHARACTER, not CHECK_NUMBER, to
10111 avoid mishandling large integers.
10112 * lisp.h: Adjust decls to match defn changes elsewhere.
10113 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, struct Lisp_String)
10114 (struct vectorlike_header, struct Lisp_Subr, struct Lisp_Hash_Table)
10115 (struct Lisp_Marker):
10116 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10117 (clip_to_bounds): Now an inline function, moved here from editfns.c.
10118 (GLYPH_CODE_P): Check for overflow in system types, subsuming the
10119 need for GLYPH_CODE_CHAR_VALID_P and doing proper checking ourselves.
10120 All callers changed.
10121 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE):
10122 Assume the arg has valid form, since it always does.
10123 (TYPE_RANGED_INTEGERP): Avoid bug when checking against a wide
10124 unsigned integer system type.
10125 (CHECK_RANGED_INTEGER, CHECK_TYPE_RANGED_INTEGER): New macros.
10126 (struct catchtag, specpdl_size, SPECPDL_INDEX, USE_SAFE_ALLOCA):
10127 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10128 (struct catchtag): Use EMACS_INT, not int, since it may be a fixnum.
10129 (duration_to_sec_usec): New decl.
10130 * lread.c (read_from_string_index, read_from_string_index_byte)
10131 (read_from_string_limit, readchar, unreadchar, openp)
10132 (read_internal_start, read1, oblookup):
10133 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10134 (Fload, readevalloop, Feval_buffer, Feval_region):
10135 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10136 (openp): Check for out-of-range argument to 'access'.
10137 (read1): Use int, not EMACS_INT, where int is wide enough.
10138 Don't assume fixnum fits into int.
10139 Fix off-by-one error that can read outside a buffer.
10140 (read_filtered_event): Use duration_to_sec_usec
10141 to do proper overflow checking on durations.
10142 * macros.c (Fstart_kbd_macro): Use xpalloc to check for overflow
10143 in size calculation.
10144 (Fexecute_kbd_macro):
10145 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10146 * marker.c (cached_charpos, cached_bytepos, CONSIDER)
10147 (byte_char_debug_check, buf_charpos_to_bytepos, verify_bytepos)
10148 (buf_bytepos_to_charpos, Fset_marker, set_marker_restricted)
10149 (set_marker_both, set_marker_restricted_both, marker_position)
10150 (marker_byte_position, Fbuffer_has_markers_at):
10151 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10152 (Fset_marker, set_marker_restricted): Don't assume fixnum fits in int.
10153 * menu.c (ensure_menu_items): Rename from grow_menu_items.
10154 It now merely ensures that the menu is large enough, without
10155 necessarily growing it, as this avoids some integer overflow issues.
10156 All callers changed.
10157 (keymap_panes, parse_single_submenu, Fx_popup_menu):
10158 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10159 (parse_single_submenu, Fx_popup_menu): Don't assume fixnum fits in int.
10160 Use SAFE_ALLOCA_LISP, not alloca.
10161 (find_and_return_menu_selection): Avoid unnecessary casts of pointers
10162 to EMACS_INT. Check that fixnums are in proper range for system types.
10163 * minibuf.c (minibuf_prompt_width, string_to_object)
10164 (Fminibuffer_contents, Fminibuffer_contents_no_properties)
10165 (Fminibuffer_completion_contents, Ftry_completion, Fall_completions):
10166 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10167 (get_minibuffer, read_minibuf_unwind):
10168 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10169 (read_minibuf): Omit unnecessary arg BACKUP_N, which is always nil;
10170 this simplifies overflow checking. All callers changed.
10171 (read_minibuf, Fread_buffer, Ftry_completion, Fall_completions)
10172 (Ftest_completion):
10173 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10174 * nsfns.m (check_ns_display_info): Don't assume fixnum fits in long.
10175 (x_set_menu_bar_lines, x_set_tool_bar_lines, Fx_create_frame):
10176 Check that fixnums are in proper range for system types.
10177 (Fx_create_frame, Fx_show_tip):
10178 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10179 * nsfont.m (ns_findfonts, nsfont_list_family):
10180 Don't assume fixnum fits in long.
10181 * nsmenu.m (ns_update_menubar, ns_menu_show, ns_popup_dialog):
10182 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10183 (ns_update_menubar): Use intptr_t, not EMACS_INT, when intptr_t is
10184 wide enough.
10185 * nsselect.m (ns_get_local_selection, clean_local_selection_data):
10186 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10187 * print.c (print_buffer_size, print_buffer_pos, print_buffer_pos_byte)
10188 (PRINTDECLARE, PRINTPREPARE):
10189 (strout, print_string):
10190 (print, print_preprocess, print_check_string_charset_prop)
10191 (print_object):
10192 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10193 (PRINTDECLARE):
10194 (temp_output_buffer_setup, Fprin1_to_string, print_object):
10195 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10196 (PRINTPREPARE): Use int, not ptrdiff_t, where int is wide enough.
10197 (printchar, strout): Use xpalloc to catch size calculation overflow.
10198 (Fexternal_debugging_output): Don't overflow EMACS_INT->int conversion.
10199 (print_error_message): Use SAFE_ALLOCA, not alloca.
10200 (print_object): Use int, not EMACS_INT, where int is wide enough.
10201 (print_depth, new_backquote_output, print_number_index):
10202 Use ptrdiff_t, not int, where int might not be wide enough.
10203 * process.c (Fdelete_process): Don't assume pid fits into EMACS_INT.
10204 (Fset_process_window_size, Fformat_network_address)
10205 (get_lisp_to_sockaddr_size, set_socket_option, Fmake_network_process)
10206 (sigchld_handler):
10207 Check that fixnums are in proper range for system types.
10208 (Fsignal_process): Simplify by avoiding a goto.
10209 Check for process-ids out of pid_t range rather than relying on
10210 undefined behavior.
10211 (process_tick, update_tick): Use EMACS_INT, not int.
10212 (Fformat_network_address, read_process_output, send_process)
10213 (Fprocess_send_region, status_notify):
10214 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10215 (Fformat_network_address, Fmake_serial_process, Fmake_network_process)
10216 (wait_reading_process_output, read_process_output, exec_sentinel):
10217 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10218 (conv_lisp_to_sockaddr): Don't assume fixnums fit into int.
10219 (Faccept_process_output): Use duration_to_sec_usec to do proper
10220 overflow checking on durations.
10221 (emacs_get_tty_pgrp, Fprocess_running_child_p, process_send_signal):
10222 Don't assume pid_t fits in int.
10223 * process.h (struct Lisp_Process): Members tick and update_tick
10224 are now of type EMACS_INT, not int.
10225 * puresize.h (PURESIZE_RATIO): Shrink this to 8/6 on 32-bit hosts
10226 configured --with-wide-int.
10227 * scroll.c (calculate_scrolling, calculate_direct_scrolling)
10228 (line_ins_del): Use int, not EMACS_INT, where int is wide enough.
10229 * search.c (looking_at_1, string_match_1):
10230 (fast_string_match, fast_c_string_match_ignore_case)
10231 (fast_string_match_ignore_case, fast_looking_at, scan_buffer)
10232 (scan_newline, find_before_next_newline, search_command)
10233 (trivial_regexp_p, search_buffer, simple_search, boyer_moore)
10234 (set_search_regs, wordify):
10235 (Freplace_match):
10236 (Fmatch_data):
10237 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10238 (string_match_1, search_buffer, set_search_regs):
10239 (Fmatch_data):
10240 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10241 (wordify): Check for overflow in size calculation.
10242 (Freplace_match): Avoid potential buffer overflow in search_regs.start.
10243 (Fset_match_data): Don't assume fixnum fits in ptrdiff_t.
10244 Check that fixnums are in proper range for system types.
10245 * sound.c (struct sound_device)
10246 (wav_play, au_play, vox_write, alsa_period_size, alsa_write):
10247 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10248 (Fplay_sound_internal):
10249 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10250 * syntax.c (struct lisp_parse_state, find_start_modiff)
10251 (Finternal_describe_syntax_value, scan_lists, scan_sexps_forward):
10252 (Fparse_partial_sexp):
10253 Don't assume fixnums can fit in int.
10254 (struct lisp_parse_state, find_start_pos, find_start_value)
10255 (find_start_value_byte, find_start_begv)
10256 (update_syntax_table, char_quoted, dec_bytepos)
10257 (find_defun_start, prev_char_comend_first, back_comment):
10258 (scan_words, skip_chars, skip_syntaxes, forw_comment, Fforward_comment)
10259 (scan_lists, Fbackward_prefix_chars, scan_sexps_forward):
10260 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10261 (Finternal_describe_syntax_value): Check that match_lisp is a
10262 character, not an integer, since the code stuffs it into int.
10263 (scan_words, scan_sexps_forward):
10264 Check that fixnums are in proper range for system types.
10265 (Fforward_word):
10266 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10267 (scan_sexps_forward):
10268 Use CHARACTERP, not INTEGERP, since the value must fit into int.
10269 (Fparse_partial_sexp): Fix doc; element 8 is not ignored.
10270 * syntax.h: Adjust decls to match defn changes elsewhere.
10271 (struct gl_state_s):
10272 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10273 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Use PTRDIFF_MAX, not
10274 MOST_POSITIVE_FIXNUM.
10275 * sysdep.c (wait_for_termination_1, wait_for_termination)
10276 (interruptible_wait_for_termination, mkdir):
10277 Don't assume pid_t fits in int; on 64-bit AIX pid_t is 64-bit.
10278 (emacs_read, emacs_write):
10279 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10280 (system_process_attributes): Don't assume uid_t, gid_t, EMACS_INT,
10281 and double all fit in int.
10282 * term.c (set_tty_color_mode):
10283 Check that fixnums are in proper range for system types.
10284 * termhooks.h (struct input_event):
10285 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10286 * textprop.c (validate_interval_range, interval_of)
10287 (Fadd_text_properties, set_text_properties_1)
10288 (Fremove_text_properties, Fremove_list_of_text_properties)
10289 (Ftext_property_any, Ftext_property_not_all)
10290 (copy_text_properties, text_property_list, extend_property_ranges)
10291 (verify_interval_modification):
10292 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10293 (Fnext_single_char_property_change)
10294 (Fprevious_single_char_property_change):
10295 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10296 (copy_text_properties):
10297 Check for integer overflow in index calculation.
10298 * undo.c (last_boundary_position, record_point, record_insert)
10299 (record_delete, record_marker_adjustment, record_change)
10300 (record_property_change):
10301 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10302 (truncate_undo_list, Fprimitive_undo): Don't assume fixnum fits in int.
10303 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10304 * w32fns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
10305 (Fx_hide_tip, Fx_file_dialog):
10306 * w32menu.c (set_frame_menubar):
10307 Use ptrdiff_t, not int, for consistency with rest of code.
10308 * window.c (window_scroll_preserve_hpos, window_scroll_preserve_vpos)
10309 (select_window, Fdelete_other_windows_internal)
10310 (window_scroll_pixel_based, window_scroll_line_based)
10311 (Frecenter, Fset_window_configuration):
10312 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10313 (Fset_window_hscroll, run_window_configuration_change_hook)
10314 (set_window_buffer, temp_output_buffer_show, scroll_command)
10315 (Fscroll_other_window, Frecenter):
10316 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10317 (Fwindow_line_height, window_scroll, Fscroll_left, Fscroll_right):
10318 Don't assume fixnum fits in int.
10319 (Fset_window_scroll_bars):
10320 Check that fixnums are in proper range for system types.
10321 * xdisp.c (help_echo_pos, pos_visible_p, string_pos_nchars_ahead)
10322 (string_pos, c_string_pos, number_of_chars, init_iterator)
10323 (in_ellipses_for_invisible_text_p, init_from_display_pos)
10324 (compute_stop_pos, next_overlay_change, compute_display_string_pos)
10325 (compute_display_string_end, handle_face_prop)
10326 (face_before_or_after_it_pos, handle_invisible_prop)
10327 (handle_display_prop, handle_display_spec, handle_single_display_spec)
10328 (display_prop_intangible_p, string_buffer_position_lim)
10329 (string_buffer_position, handle_composition_prop, load_overlay_strings)
10330 (get_overlay_strings_1, get_overlay_strings)
10331 (iterate_out_of_display_property, forward_to_next_line_start)
10332 (back_to_previous_visible_line_start, reseat, reseat_to_string)
10333 (get_next_display_element, set_iterator_to_next)
10334 (get_visually_first_element, compute_stop_pos_backwards)
10335 (handle_stop_backwards, next_element_from_buffer)
10336 (move_it_in_display_line_to, move_it_in_display_line)
10337 (move_it_to, move_it_vertically_backward, move_it_by_lines)
10338 (add_to_log, message_dolog, message_log_check_duplicate)
10339 (message2, message2_nolog, message3, message3_nolog
10340 (with_echo_area_buffer, display_echo_area_1, resize_mini_window_1)
10341 (current_message_1, truncate_echo_area, truncate_message_1)
10342 (set_message, set_message_1, store_mode_line_noprop)
10343 (hscroll_window_tree, debug_delta, debug_delta_bytes, debug_end_vpos)
10344 (text_outside_line_unchanged_p, check_point_in_composition)
10345 (reconsider_clip_changes)
10346 (redisplay_internal, set_cursor_from_row, try_scrolling)
10347 (try_cursor_movement, set_vertical_scroll_bar, redisplay_window)
10348 (redisplay_window, find_last_unchanged_at_beg_row)
10349 (find_first_unchanged_at_end_row, row_containing_pos, try_window_id)
10350 (trailing_whitespace_p, find_row_edges, display_line)
10351 (RECORD_MAX_MIN_POS, Fcurrent_bidi_paragraph_direction)
10352 (display_mode_element, store_mode_line_string)
10353 (pint2str, pint2hrstr, decode_mode_spec)
10354 (display_count_lines, display_string, draw_glyphs)
10355 (x_produce_glyphs, x_insert_glyphs)
10356 (rows_from_pos_range, mouse_face_from_buffer_pos)
10357 (fast_find_string_pos, mouse_face_from_string_pos)
10358 (note_mode_line_or_margin_highlight, note_mouse_highlight):
10359 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10360 (safe_call, init_from_display_pos, handle_fontified_prop)
10361 (handle_single_display_spec, load_overlay_strings)
10362 (with_echo_area_buffer, setup_echo_area_for_printing)
10363 (display_echo_area, echo_area_display)
10364 (x_consider_frame_title, prepare_menu_bars, update_menu_bar)
10365 (update_tool_bar, hscroll_window_tree, redisplay_internal)
10366 (redisplay_window, dump_glyph_row, display_mode_line)
10367 (Fformat_mode_line, decode_mode_spec, on_hot_spot_p):
10368 (handle_display_spec, display_prop_string_p):
10369 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10370 (handle_single_display_spec, build_desired_tool_bar_string)
10371 (redisplay_tool_bar, scroll_window_tree, Fdump_glyph_matrix)
10372 (get_specified_cursor_type):
10373 Check that fixnums are in proper range for system types.
10374 (struct overlay_entry, resize_mini_window, Fdump_glyph_row)
10375 (Flookup_image_map):
10376 Don't assume fixnums fit in int.
10377 (compare_overlay_entries):
10378 Avoid mishandling comparisons due to subtraction overflow.
10379 (load_overlay_strings): Use SAFE_NALLOCA, not alloca.
10380 (last_escape_glyph_face_id, last_glyphless_glyph_face_id):
10381 (handle_tool_bar_click):
10382 Use int, not unsigned, since we prefer signed and the signedness
10383 doesn't matter here.
10384 (get_next_display_element, next_element_from_display_vector):
10385 Use int, not EMACS_INT, when int is wide enough.
10386 (start_hourglass): Use duration_to_sec_usec to do proper
10387 overflow checking on durations.
10388 * xfaces.c (Fbitmap_spec_p):
10389 Check that fixnums are in proper range for system types.
10390 (compare_fonts_by_sort_order):
10391 Avoid mishandling comparisons due to subtraction overflow.
10392 (Fx_family_fonts, realize_basic_faces):
10393 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10394 (Fx_family_fonts):
10395 Don't assume fixnum fits in int.
10396 Use SAFE_ALLOCA_LISP, not alloca.
10397 (merge_face_heights): Remove unnecessary cast to EMACS_INT.
10398 (Finternal_make_lisp_face): Don't allocate more than MAX_FACE_ID.
10399 (face_at_buffer_position, face_for_overlay_string)
10400 (face_at_string_position):
10401 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10402 (merge_faces): Use int, not EMACS_INT, where int is wide enough.
10403 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines, x_icon_verify)
10404 (Fx_show_tip):
10405 Check that fixnums are in proper range for system types.
10406 (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
10407 (Fx_hide_tip, Fx_file_dialog, Fx_select_font):
10408 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10409 (Fx_change_window_property): Don't assume fixnums fit in int.
10410 * xfont.c (xfont_chars_supported):
10411 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10412 * xmenu.c (Fx_popup_dialog, set_frame_menubar)
10413 (create_and_show_popup_menu, create_and_show_dialog, xmenu_show):
10414 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10415 * xml.c (parse_region):
10416 * xrdb.c (magic_file_p):
10417 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10418 * xselect.c (TRACE1): Don't assume pid_t promotes to int.
10419 (x_get_local_selection, x_reply_selection_request)
10420 (x_handle_selection_request, wait_for_property_change):
10421 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10422 (selection_data_to_lisp_data): Use short, not EMACS_INT, where
10423 short is wide enough.
10424 (x_send_client_event): Don't assume fixnum fits in int.
10425 * xterm.c (x_x_to_emacs_modifiers):
10426 Don't assume EMACS_INT overflows nicely into int.
10427 (x_emacs_to_x_modifiers): Use EMACS_INT, not int, because values
10428 may come from Lisp.
10429 (handle_one_xevent): NATNUMP can eval its arg twice.
10430 (x_connection_closed):
10431 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10432 * xterm.h: Adjust decls to match defn changes elsewhere.
10433 (struct scroll_bar): Use struct vectorlike_header
10434 rather than rolling our own approximation.
10435 (SCROLL_BAR_VEC_SIZE): Remove; not used.
10436
10437 2012-05-25 Glenn Morris <rgm@gnu.org>
10438
10439 * lisp.mk (lisp): Update for more files being compiled now.
10440
10441 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
10442
10443 * lread.c: Remove `read_pure' which makes no difference.
10444 (read_pure): Remove var.
10445 (unreadpure): Remove function.
10446 (readevalloop): Don't call read_list with -1 flag.
10447 (read1, read_vector): Don't test read_pure any more.
10448 (read_list): Simplify.
10449
10450 * fileio.c, character.h: Minor style tweaks.
10451
10452 2012-05-24 Dmitry Antipov <dmantipov@yandex.ru>
10453
10454 * window.h (clip_changed): Remove useless declaration.
10455
10456 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
10457
10458 * makefile.w32-in: Follow-up to 2012-05-22T16:20:27Z!eggert@cs.ucla.edu.
10459 (TAGS, TAGS-gmake, CONFIG_H): Remove further references to m/intel386.h.
10460
10461 2012-05-22 Paul Eggert <eggert@cs.ucla.edu>
10462
10463 Remove src/m/*.
10464 This directory predates autoconf and is no longer needed nowadays.
10465 Move its few remaining bits of functionality to where they're needed.
10466 * m/README, m/alpha.h, m/amdx86-64.h, m/ia64.h, m/ibmrs6000.h:
10467 * m/ibms390x.h, m/intel386.h, m/m68k.h, m/macppc.h, m/sparc.h:
10468 * m/template.h: Remove.
10469 * Makefile.in (M_FILE): Remove. All uses removed.
10470 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS):
10471 * lisp.h (USE_LSB_TAG):
10472 * mem-limits.h (EXCEEDS_LISP_PTR):
10473 Use VAL_MAX, not VALBITS, in #if.
10474 * lisp.h (EMACS_INT_MAX): New macro, useful in #if.
10475 (EMACS_UINT): Define unconditionally now.
10476 (BITS_PER_CHAR, BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG)
10477 (BITS_PER_EMACS_INT): New constants, replacing
10478 what used to be in config.h, but not useful in #if.
10479 (GCTYPEBITS, VALBITS): Define unconditionally, since m/* files don't
10480 define them any more.
10481 (VAL_MAX): New macro.
10482 (VALMASK): Use it.
10483 * puresize.h (PURESIZE_RATIO): Use EMACS_INT_MAX, not
10484 BITS_PER_EMACS_INT, in #if.
10485 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
10486 (BROKEN_SIGPOLL): Move here from m/ibmrs6000.h, which was removed.
10487 * s/gnu-linux.h (ULIMIT_BREAK_VALUE) [__i386__]:
10488 * s/ms-w32.h (DATA_START):
10489 Move here from removed file m/intel386.h.
10490 * s/gnu.h (NLIST_STRUCT): Remove undef; 'configure' does this.
10491 * s/irix6-5.h (_LP64): Remove; lisp.h no longer needs this.
10492
10493 2012-05-21 Paul Eggert <eggert@cs.ucla.edu>
10494
10495 Assume C89 or later.
10496 * alloc.c, buffer.c, lisp.h: Replace POINTER_TYPE with void.
10497 * alloc.c (overrun_check_malloc, overrun_check_realloc, xmalloc)
10498 (xrealloc):
10499 * buffer.c (mmap_free_1, mmap_enlarge): Omit needless casts.
10500 * editfns.c, fns.c, gmalloc.c, insdel.c, sysdep.c, termcap.c (NULL):
10501 * textprop.c, tparam.c (NULL): Remove.
10502 * ralloc.c, vm-limit.c (POINTER): Assume void * works.
10503 * regex.c (SIGN_EXTEND_CHAR): Assume signed char works.
10504 * regex.h (_RE_ARGS): Remove. All uses rewritten to use prototypes.
10505 * unexelf.c (ElfBitsW): Assume c89 preprocessor or better.
10506 * xterm.c (input_signal_count): Assume volatile works.
10507
10508 2012-05-21 Ken Brown <kbrown@cornell.edu>
10509
10510 * xgselect.c (xg_select): Fix first argument in call to 'select'
10511 (bug#11508).
10512
10513 2012-05-20 Ken Brown <kbrown@cornell.edu>
10514
10515 * gmalloc.c (_free_internal_nolock, _realloc_internal_nolock)
10516 [CYGWIN]: Cast ptr to (char *) before comparing to _heapbase.
10517
10518 2012-05-19 Ken Brown <kbrown@cornell.edu>
10519
10520 * xfns.c (x_in_use): Remove `static' qualifier.
10521 * xterm.h (x_in_use): Declare.
10522 * xgselect.c: Include xterm.h.
10523 (xg_select): Test `x_in_use' instead of `inhibit_window_system'
10524 and `display_arg' (bug#9754).
10525
10526 2012-05-19 Paul Eggert <eggert@cs.ucla.edu>
10527
10528 * s/ms-w32.h (HAVE_GETDOMAINNAME): Remove; not needed.
10529
10530 * m/vax.h: Remove; no longer needed since HAVE_FTIME is being removed.
10531 * s/ms-w32.h (HAVE_FTIME): Remove; not needed.
10532
10533 2012-05-18 Eli Zaretskii <eliz@gnu.org>
10534
10535 Fix compilation with -DGLYPH_DEBUG=1 on MS-Windows.
10536
10537 * w32term.c [GLYPH_DEBUG]: Add prototype for x_check_font.
10538 (x_check_font) [GLYPH_DEBUG]: New function, copied from xterm.c.
10539
10540 * w32fns.c (unwind_create_frame) [GLYPH_DEBUG]: Fix broken
10541 reference to image_cache->refcount.
10542 (x_create_tip_frame): Fix broken use of FRAME_IMAGE_CACHE.
10543
10544 2012-05-17 Juri Linkov <juri@jurta.org>
10545
10546 * search.c (Fword_search_regexp, Fword_search_backward)
10547 (Fword_search_forward, Fword_search_backward_lax)
10548 (Fword_search_forward_lax): Move functions to isearch.el
10549 (bug#10145, bug#11381).
10550
10551 2012-05-16 Paul Eggert <eggert@cs.ucla.edu>
10552
10553 * xgselect.c (xg_select): Just invoke 'select' if -nw (Bug#9754).
10554
10555 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
10556
10557 * lread.c (init_obarray): Declare Qt and Qnil as special.
10558
10559 2012-05-14 Glenn Morris <rgm@gnu.org>
10560
10561 * nsterm.m (ns_init_paths): Fix typo ("libexec" not "lib-exec").
10562 Put "libexec" before "bin", for the sake of init_callproc_1.
10563
10564 2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
10565
10566 * keyboard.c (kbd_buffer_get_event) [!HAVE_DBUS]: Omit unused local.
10567
10568 * unexaix.c: Port to more-recent AIX compilers.
10569 (report_error, report_error_1, make_hdr, copy_sym)
10570 (mark_x, adjust_lnnoptrs, unrelocate_symbols):
10571 Make arguments const char *, not char *, to avoid violations of C
10572 standard and to fix some AIX warnings reported by Gilles Pion.
10573
10574 2012-05-14 Eli Zaretskii <eliz@gnu.org>
10575
10576 * xdisp.c (handle_stop): Don't call get_overlay_strings_1 if we
10577 already have overlays loaded.
10578 (handle_single_display_spec): Before returning without displaying
10579 fringe bitmap, synchronize the bidi iterator with the main display
10580 iterator, by calling iterate_out_of_display_property.
10581 (iterate_out_of_display_property): Detect buffer iteration by
10582 testing that it->string is a Lisp string.
10583 (get_next_display_element): When the current object is exhausted,
10584 and there's something on it->stack, call set_iterator_to_next to
10585 proceed with what's on the stack, instead of returning zero.
10586 (set_iterator_to_next): If called at the end of a Lisp string,
10587 proceed to consider_string_end without incrementing string
10588 position. Don't increment display vector index past the end of
10589 the display vector. (Bug#11417)
10590 (pos_visible_p): Don't report a position visible when move_it_to
10591 stopped at the last line of window, which happens to be scanned
10592 backwards by the bidi iteration. (Bug#11464)
10593
10594 2012-05-14 Eli Zaretskii <eliz@gnu.org>
10595
10596 * xdisp.c (handle_single_display_spec): Return 1 for left-margin
10597 and right-margin display specs even if the spec is invalid or we
10598 are on a TTY, and thus unable to display on the fringes.
10599 That's because the text with the property will not be displayed anyway,
10600 so we need to signal to the caller that this is a "replacing"
10601 display spec. This fixes display when the spec is invalid or we
10602 are on a TTY.
10603
10604 2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
10605
10606 * unexaix.c (make_hdr): Fix typo in prototype.
10607 This bug broke the build on AIX. Problem reported by Gilles Pion.
10608
10609 2012-05-14 Michael Albinus <michael.albinus@gmx.de>
10610
10611 * keyboard.c (kbd_buffer_get_event): Read special events also in
10612 batch mode. (Bug#11415)
10613
10614 2012-05-12 Glenn Morris <rgm@gnu.org>
10615
10616 * ns.mk: Update for ns_appbindir no longer having trailing "/".
10617
10618 2012-05-12 Eli Zaretskii <eliz@gnu.org>
10619
10620 * lisp.mk (lisp): Add newcomment.elc.
10621
10622 2012-05-12 Glenn Morris <rgm@gnu.org>
10623
10624 * Makefile.in (MKDIR_P): New, set by configure.
10625 * ns.mk (${ns_appdir}, ${ns_appbindir}Emacs): Use $MKDIR_P.
10626
10627 2012-05-11 Paul Eggert <eggert@cs.ucla.edu>
10628
10629 Remove unused function hourglass_started.
10630 * dispextern.h (hourglass_started):
10631 * w32fns.c (hourglass_started):
10632 * xdisp.c (hourglass_started): Remove.
10633
10634 2012-05-10 Juanma Barranquero <lekktu@gmail.com>
10635
10636 * makefile.w32-in ($(BLD)/gmalloc.$(O), $(BLD)/w32menu.$(O)):
10637 Update dependencies.
10638
10639 2012-05-10 Paul Eggert <eggert@cs.ucla.edu>
10640
10641 * xgselect.c (xg_select): Put maxfds+1 into a var.
10642 This is slightly clearer, and pacifies Ubuntu 12.04 gcc.
10643
10644 * sound.c (DEFAULT_ALSA_SOUND_DEVICE): Define only if HAVE_ALSA.
10645
10646 2012-05-10 Dave Abrahams <dave@boostpro.com>
10647
10648 * filelock.c (syms_of_filelock): New boolean create-lockfiles.
10649 (lock_file): If create_lockfiles is 0, do nothing. (Bug#11227)
10650
10651 2012-05-09 Michael Albinus <michael.albinus@gmx.de>
10652
10653 * dbusbind.c (xd_registered_buses): New internal Lisp object.
10654 Rename all occurences of Vdbus_registered_buses to xd_registered_buses.
10655 (syms_of_dbusbind): Remove declaration of Vdbus_registered_buses.
10656 Initialize xd_registered_buses.
10657
10658 2012-05-09 Paul Eggert <eggert@cs.ucla.edu>
10659
10660 Untag more efficiently if USE_LSB_TAG.
10661 This is based on a proposal by YAMAMOTO Mitsuharu in
10662 <http://lists.gnu.org/archive/html/emacs-devel/2008-01/msg01876.html>.
10663 For an admittedly artificial (nth 8000 longlist) benchmark on
10664 Fedora 15 x86-64, this yields a 25% CPU speedup. Also, it shrinks
10665 Emacs's overall text size by 1%.
10666 * lisp.h (XUNTAG): New macro.
10667 (XCONS, XVECTOR, XSTRING, XSYMBOL, XFLOAT, XMISC, XPROCESS, XWINDOW)
10668 (XTERMINAL, XSUBR, XBUFFER, XCHAR_TABLE, XSUB_CHAR_TABLE, XBOOL_VECTOR)
10669 (XSETTYPED_PSEUDOVECTOR, XHASH_TABLE, TYPED_PSEUDOVECTORP): Use it.
10670 * eval.c (Fautoload):
10671 * font.h (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT):
10672 * frame.h (XFRAME): Use XUNTAG.
10673
10674 Port recent dbusbind.c changes to 32-bit --with-wide-int.
10675 * dbusbind.c (xd_append_arg, xd_retrieve_arg, Fdbus_message_internal):
10676 Remove unportable assumptions about print widths of types like
10677 dbus_uint32_t.
10678 (xd_get_connection_address, Fdbus_init_bus): Cast Emacs integer to
10679 intptr_t when converting between pointer and integer, to avoid GCC
10680 warnings about wrong width.
10681
10682 2012-05-09 Eli Zaretskii <eliz@gnu.org>
10683
10684 * w32proc.c (new_child): Force Windows to reserve only 64KB of
10685 stack for each reader_thread, instead of defaulting to 8MB
10686 determined by the linker. This avoids failures in creating
10687 subprocesses on Windows 7, see the discussion in this thread:
10688 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00119.html.
10689
10690 2012-05-07 Jérémy Compostella <jeremy.compostella@gmail.com>
10691
10692 Fix up display of the *Minibuf-0* buffer in the mini window.
10693 * keyboard.c (read_char): Don't clear the echo area if there's no
10694 message to clear.
10695 * xdisp.c (redisplay_internal): Redisplay the mini window (with the
10696 contents of *Minibuf-0*) if there's no message displayed in its stead.
10697
10698 2012-05-07 Michael Albinus <michael.albinus@gmx.de>
10699
10700 * dbusbind.c (XD_DEBUG_MESSAGE): Don't print message twice in
10701 batch mode.
10702
10703 2012-05-06 Chong Yidong <cyd@gnu.org>
10704
10705 * lisp.mk (lisp): Update.
10706
10707 2012-05-05 Jim Meyering <meyering@redhat.com>
10708
10709 * w32font.c (fill_in_logfont): NUL-terminate a string (Bug#11372).
10710
10711 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
10712
10713 * data.c (PUT_ERROR): New macro.
10714 (syms_of_data): Use it. Add new error type `user-error'.
10715 * undo.c (user_error): New function.
10716 (Fprimitive_undo): Use it.
10717 * print.c (print_error_message): Adjust print style for `user-error'.
10718 * keyboard.c (user_error): New function.
10719 (Fexit_recursive_edit, Fabort_recursive_edit): Use it.
10720
10721 2012-05-03 Paul Eggert <eggert@cs.ucla.edu>
10722
10723 Do not limit current-time-string to years 1000..9999.
10724 * editfns.c (TM_YEAR_IN_ASCTIME_RANGE): Remove.
10725 (Fcurrent_time_string): Support any year that is supported by the
10726 underlying localtime representation. Don't use asctime, as it
10727 has undefined behavior for years outside the range -999..9999.
10728
10729 2012-05-02 Paul Eggert <eggert@cs.ucla.edu>
10730
10731 Fix race conditions involving setenv, gmtime, localtime, asctime.
10732 Without this fix, interrupts could mess up code that uses these
10733 nonreentrant functions, since setting TZ invalidates existing
10734 tm_zone or tzname values, and since most of these functions return
10735 pointers to static storage.
10736 * editfns.c (format_time_string, Fdecode_time, Fencode_time)
10737 (Fcurrent_time_string, Fcurrent_time_zone, Fset_time_zone_rule):
10738 Grow the critical sections to include not just invoking
10739 localtime/gmtime, but also accessing these functions' results
10740 including their tm_zone values if any, and any related TZ setting.
10741 (format_time_string): Last arg is now struct tm *, not struct tm **,
10742 so that the struct tm is saved in the critical section.
10743 All callers changed. Simplify allocation of initial buffer, partly
10744 motivated by the fact that memory allocation needs to be outside
10745 the critical section.
10746
10747 2012-05-02 Dmitry Antipov <dmantipov@yandex.ru>
10748
10749 * intervals.c (adjust_intervals_for_insertion): Initialize `newi'
10750 with RESET_INTERVAL.
10751
10752 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
10753 Remove duplicated buffer name initialization.
10754
10755 2012-05-02 Jim Meyering <jim@meyering.net>
10756
10757 * xterm.c (x_term_init): Use memcpy instead of strncpy (Bug#11373).
10758
10759 * xfns.c (x_window): Use xstrdup (Bug#11375).
10760
10761 2012-05-02 Eli Zaretskii <eliz@gnu.org>
10762
10763 * xdisp.c (pos_visible_p): If already at a newline from the
10764 display string before the 'while' loop, don't walk back the glyphs
10765 from it3.glyph_row. Solves assertion violation when the display
10766 string begins with a newline (egg.el). (Bug#11367)
10767
10768 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
10769
10770 * keyboard.c (Fexecute_extended_command, Vsuggest_key_bindings):
10771 Move to simple.el.
10772
10773 2012-05-01 Glenn Morris <rgm@gnu.org>
10774
10775 * syssignal.h: Remove reference to BROKEN_SIGINFO (last used in
10776 s/ptx4.h), BROKEN_SIGTSTP (last used in m/ustation.h, m/dpx2.h),
10777 and BROKEN_SIGURG (was in s/gnu-linux.h prior to 2008-02-10).
10778 All were removed before 23.1.
10779
10780 * dispnew.c: Remove HAVE_LIBNCURSES test;
10781 it is always true on relevant platforms.
10782
10783 * Makefile.in (LD_SWITCH_X_SITE_RPATH):
10784 Rename from LD_SWITCH_X_SITE_AUX_RPATH.
10785
10786 * Makefile.in (LD_SWITCH_X_SITE_AUX): Remove; no longer used.
10787
10788 2012-04-30 Andreas Schwab <schwab@linux-m68k.org>
10789
10790 * .gdbinit (xpr): Remove checks for no longer existing misc types.
10791 (xintfwd, xboolfwd, xobjfwd, xbufobjfwd, xkbobjfwd, xbuflocal):
10792 Remove.
10793
10794 2012-04-28 Paul Eggert <eggert@cs.ucla.edu>
10795
10796 Do not avoid creating empty evaporating overlays (Bug#9642).
10797 * buffer.c (Fmove_overlay): Revert the change of 2012-04-23.
10798 That is, do not delete an evaporating overlay if it becomes
10799 empty after its bounds are adjusted to fit within its buffer.
10800 This fix caused other problems, and I'm reverting it until we get
10801 to the bottom of them.
10802
10803 2012-04-27 Chong Yidong <cyd@gnu.org>
10804
10805 * xselect.c (x_convert_selection): Initialize a pointer (Bug#11315).
10806
10807 2012-04-27 Eli Zaretskii <eliz@gnu.org>
10808
10809 * xdisp.c (pos_visible_p): If the window start position is beyond
10810 ZV, start the display from buffer beginning. Prevents assertion
10811 violation in init_iterator when the minibuffer window is scrolled
10812 via the scroll bar.
10813
10814 * window.c (window_scroll_pixel_based): Likewise.
10815
10816 2012-04-27 Chong Yidong <cyd@gnu.org>
10817
10818 * keymap.c (where_is_internal): Doc fix (Bug#10872).
10819
10820 2012-04-27 Glenn Morris <rgm@gnu.org>
10821
10822 * fileio.c (Fcopy_file, Fset_file_selinux_context):
10823 Ignore ENOTSUP failures from setfilecon functions. (Bug#11245)
10824
10825 2012-04-27 Eli Zaretskii <eliz@gnu.org>
10826
10827 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers):
10828 Don't overrun array limits of glyph row's used[] array. (Bug#11288)
10829
10830 2012-04-26 Eli Zaretskii <eliz@gnu.org>
10831
10832 * xdisp.c (IT_DISPLAYING_WHITESPACE): In addition to the loaded
10833 display element, check also the underlying string or buffer
10834 character. (Bug#11341)
10835
10836 * w32menu.c: Include w32heap.h.
10837 (add_menu_item): If the call to AppendMenuW (via
10838 unicode_append_menu) fails, disable Unicode menus only if we are
10839 running on Windows 9X/Me.
10840
10841 2012-04-24 Andreas Schwab <schwab@linux-m68k.org>
10842
10843 * .gdbinit (xpr): Handle USE_2_TAGS_FOR_INTS.
10844 (xgetint): Add missing shift for LSB tags.
10845
10846 2012-04-24 Martin Rudalics <rudalics@gmx.at>
10847
10848 * keyboard.c (read_char): Don't wipe echo area for select window
10849 events: These might get delayed via `mouse-autoselect-window'
10850 (Bug#11304).
10851
10852 2012-04-24 Juanma Barranquero <lekktu@gmail.com>
10853
10854 * gnutls.c (init_gnutls_functions): Protect against (unlikely)
10855 manipulation of :loaded-from data.
10856
10857 2012-04-23 Juanma Barranquero <lekktu@gmail.com>
10858
10859 * gnutls.c (init_gnutls_functions): The value of :loaded-from is
10860 now a cons (bug#11311).
10861
10862 2012-04-23 Paul Eggert <eggert@cs.ucla.edu>
10863
10864 Do not create empty overlays with the evaporate property (Bug#9642).
10865 * buffer.c (Fmove_overlay): Delete an evaporating overlay
10866 if it becomes empty after its bounds are adjusted to fit within
10867 its buffer. Without this fix, in a nonempty buffer (let ((o
10868 (make-overlay 1 2))) (overlay-put o 'evaporate t) (move-overlay o 0 1))
10869 yields an empty overlay that has the evaporate property, which is
10870 not supposed to happen.
10871
10872 Fix minor GTK3 problems found by static checking.
10873 * emacsgtkfixed.c (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
10874 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
10875 (struct _EmacsFixedClass, emacs_fixed_get_type):
10876 Move decls here from emacsgtkfixed.h, since they needn't be public.
10877 (emacs_fixed_get_type): Now static.
10878 (emacs_fixed_class_init): Omit unused local.
10879 (emacs_fixed_child_type): Remove; unused.
10880 * emacsgtkfixed.h (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
10881 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
10882 (struct _EmacsFixedClass): Move to emacsgtkfixed.c.
10883 (EMACS_FIXED_CLASS, EMACS_IS_FIXED, EMACS_IS_FIXED_CLASS)
10884 (EMACS_FIXED_GET_CLASS): Remove; unused.
10885 * gtkutil.c (xg_create_frame_widgets) [!HAVE_GTK3]: Omit unused local.
10886
10887 * keyboard.c (handle_async_input): Define only if SYNC_INPUT || SIGIO.
10888 Problem reported by Juanma Barranquero for Windows -Wunused-function.
10889
10890 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
10891
10892 Modernize and clean up gmalloc.c to assume C89 (Bug#9119).
10893 * gmalloc.c (_MALLOC_INTERNAL, _MALLOC_H, _PP, __ptr_t)
10894 (__malloc_size_t, __malloc_ptrdiff_t):
10895 Remove. All uses removed, replaced by the definiens if needed,
10896 since we can assume C89 or better now.
10897 Include <stdint.h>, for PTRDIFF_MAX, uintptr_t.
10898 (protect_malloc_state, align, get_contiguous_space)
10899 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
10900 (malloc_atfork_handler_child, malloc_enable_thread)
10901 (malloc_initialize_1, __malloc_initialize, morecore_nolock)
10902 (_malloc_internal_nolock, _malloc_internal, malloc, _malloc)
10903 (_free, _realloc, _free_internal_nolock, _free_internal, free, cfree)
10904 (special_realloc, _realloc_internal_nolock, _realloc_internal)
10905 (realloc, calloc, __default_morecore, memalign, valloc, checkhdr)
10906 (freehook, mallochook, reallochook, mabort, mcheck, mprobe):
10907 Define using prototypes, not old style.
10908 (align, _malloc_internal_nolock, _free_internal_nolock, memalign):
10909 Don't assume ptrdiff_t and uintptr_t are no wider than unsigned long.
10910 (align): Don't assume that signed integer overflow wraps around.
10911 Omit unused local var.
10912 (malloc_initialize_1, morecore_nolock, _malloc_internal_nolock)
10913 (_free_internal_nolock, memalign, mallochook, reallochook):
10914 Omit no-longer-needed casts.
10915 (valloc): Use getpagesize, not __getpagesize.
10916 (MAGICWORD, MAGICFREE): Now randomish size_t values, not 32-bit.
10917 (struct hdr): The 'magic' member is now size_t, not unsigned long.
10918
10919 * dbusbind.c (XD_DBUS_VALIDATE_OBJECT): Define only if needed.
10920
10921 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
10922
10923 Move functions from C to Lisp. Make non-blocking method calls
10924 the default. Implement further D-Bus standard interfaces.
10925
10926 * dbusbind.c (DBUS_NUM_MESSAGE_TYPES): Declare.
10927 (QCdbus_request_name_allow_replacement)
10928 (QCdbus_request_name_replace_existing)
10929 (QCdbus_request_name_do_not_queue)
10930 (QCdbus_request_name_reply_primary_owner)
10931 (QCdbus_request_name_reply_in_queue)
10932 (QCdbus_request_name_reply_exists)
10933 (QCdbus_request_name_reply_already_owner): Move to dbus.el.
10934 (QCdbus_registered_serial, QCdbus_registered_method)
10935 (QCdbus_registered_signal): New Lisp objects.
10936 (XD_DEBUG_MESSAGE): Use sizeof.
10937 (XD_MESSAGE_TYPE_TO_STRING, XD_OBJECT_TO_STRING)
10938 (XD_DBUS_VALIDATE_BUS_ADDRESS, XD_DBUS_VALIDATE_OBJECT)
10939 (XD_DBUS_VALIDATE_BUS_NAME, XD_DBUS_VALIDATE_PATH)
10940 (XD_DBUS_VALIDATE_INTERFACE, XD_DBUS_VALIDATE_MEMBER): New macros.
10941 (XD_CHECK_DBUS_SERIAL): Rename from CHECK_DBUS_SERIAL_GET_SERIAL.
10942 (xd_signature, xd_append_arg): Allow float for integer types.
10943 (xd_get_connection_references): New function.
10944 (xd_get_connection_address): Rename from xd_initialize.
10945 Return cached address.
10946 (xd_remove_watch): Do not unset $DBUS_SESSION_BUS_ADDRESS.
10947 (xd_close_bus): Rename from Fdbus_close_bus. Not needed on Lisp
10948 level.
10949 (Fdbus_init_bus): New optional arg PRIVATE. Cache address.
10950 Return number of refcounts.
10951 (Fdbus_get_unique_name): Make stronger parameter check.
10952 (Fdbus_message_internal): New defun.
10953 (Fdbus_call_method, Fdbus_call_method_asynchronously)
10954 (Fdbus_method_return_internal, Fdbus_method_error_internal)
10955 (Fdbus_send_signal, Fdbus_register_service)
10956 (Fdbus_register_signal, Fdbus_register_method): Move to dbus.el.
10957 (xd_read_message_1): Obey new structure of Vdbus_registered_objects.
10958 (xd_read_queued_messages): Obey new structure of Vdbus_registered_buses.
10959 (Vdbus_compiled_version, Vdbus_runtime_version)
10960 (Vdbus_message_type_invalid, Vdbus_message_type_method_call)
10961 (Vdbus_message_type_method_return, Vdbus_message_type_error)
10962 (Vdbus_message_type_signal): New defvars.
10963 (Vdbus_registered_buses, Vdbus_registered_objects_table):
10964 Adapt docstring.
10965
10966 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
10967
10968 Fix GC_MALLOC_CHECK debugging output on 64-bit hosts.
10969 * alloc.c (emacs_blocked_malloc) [GC_MALLOC_CHECK]:
10970 Do not assume ptrdiff_t is the same width as 'int'.
10971
10972 * alloc.c: Handle unusual debugging option combinations.
10973 (GC_CHECK_MARKED_OBJECTS): Undef if ! GC_MARK_STACK,
10974 since the two debugging options are incompatible.
10975 (GC_MALLOC_CHECK): Similarly, undef if GC_CHECK_MARKED_OBJECTS
10976 is defined.
10977 (mem_init, mem_insert, mem_insert_fixup):
10978 Define if GC_MARK_STACK || GC_MALLOC_CHECK.
10979 (NEED_MEM_INSERT): Remove; no longer needed.
10980
10981 2012-04-22 Leo Liu <sdl.web@gmail.com>
10982
10983 * sysdep.c (list_system_processes): Support Darwin (Bug#5725).
10984
10985 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
10986
10987 * sysdep.c [__FreeBSD__]: Minor cleanups.
10988 (list_system_processes, system_process_attributes) [__FreeBSD__]:
10989 Use Emacs indenting style more consistently. Avoid some casts.
10990 Use 'double' consistently rather than mixing 'float' and 'double'.
10991
10992 2012-04-21 Eduard Wiebe <usenet@pusto.de>
10993
10994 * sysdep.c (list_system_processes, system_process_attributes):
10995 Add implementation for FreeBSD (Bug#5243).
10996
10997 2012-04-21 Andreas Schwab <schwab@linux-m68k.org>
10998
10999 * lisp.mk (lisp): Update.
11000
11001 2012-04-20 Paul Eggert <eggert@cs.ucla.edu>
11002
11003 * keyboard.c (process_pending_signals): Define only if SYNC_INPUT.
11004 It is never used otherwise.
11005
11006 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
11007
11008 * print.c (print_preprocess): Only check print_depth if print-circle
11009 is nil.
11010 (print_object): Check for cycles even when print-circle is nil and
11011 print-gensym is t, but only check print_depth if print-circle is nil.
11012
11013 2012-04-20 Chong Yidong <cyd@gnu.org>
11014
11015 * process.c (wait_reading_process_output): If EIO occurs on a pty,
11016 set the status to "failed" and ensure that sentinel is run.
11017
11018 2012-04-20 Glenn Morris <rgm@gnu.org>
11019
11020 * process.c (Fset_process_inherit_coding_system_flag)
11021 (Fset_process_query_on_exit_flag): Doc fix (mention return value).
11022 (Fmake_network_process, Fmake_serial_process): Doc fix.
11023
11024 2012-04-20 Eli Zaretskii <eliz@gnu.org>
11025
11026 * xdisp.c (string_buffer_position_lim): Limit starting position to
11027 BEGV.
11028 (set_cursor_from_row): If called for a mode-line or header-line
11029 row, return zero immediately.
11030 (try_cursor_movement): If inside continuation line, don't back up
11031 farther than the first row after the header line, if any.
11032 Don't consider the header-line row as "partially visible", even if
11033 MATRIX_ROW_PARTIALLY_VISIBLE_P returns non-zero. (Bug#11261)
11034
11035 2012-04-20 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
11036
11037 * lread.c (lisp_file_lexically_bound_p): Fix hang at ";-*-\n"
11038 (bug#11238).
11039
11040 2012-04-20 Teodor Zlatanov <tzz@lifelogs.com>
11041 2012-04-18 Paul Eggert <eggert@cs.ucla.edu>
11042
11043 configure: new option --enable-gcc-warnings (Bug#11207)
11044 * Makefile.in (C_WARNINGS_SWITCH): Remove.
11045 (WARN_CFLAGS, WERROR_CFLAGS): New macros.
11046 (ALL_CFLAGS): Use new macros rather than old.
11047 * process.c: Ignore -Wstrict-overflow to work around GCC bug 52904.
11048 * regex.c: Ignore -Wstrict-overflow. If !emacs, also ignore
11049 -Wunused-but-set-variable, -Wunused-function, -Wunused-macros,
11050 -Wunused-result, -Wunused-variable. This should go away once
11051 the Emacs and Gnulib regex code is merged.
11052 (xmalloc, xrealloc): Now static.
11053
11054 2012-04-17 Paul Eggert <eggert@cs.ucla.edu>
11055
11056 * dired.c (Fsystem_groups): Remove unused local.
11057
11058 2012-04-17 Glenn Morris <rgm@gnu.org>
11059
11060 * dired.c (Fsystem_users): Doc fix.
11061
11062 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
11063
11064 * dired.c (Fsystem_users, Fsystem_groups): New functions. (Bug#7900)
11065 (syms_of_dired): Add them.
11066
11067 2012-04-16 Paul Eggert <eggert@cs.ucla.edu>
11068
11069 Fix minor alloc.c problems found by static checking.
11070 * alloc.c (_malloc_internal, _free_internal) [!DOUG_LEA_MALLOC]:
11071 New extern decls, to avoid calling undeclared functions.
11072 (dont_register_blocks): Define if ((!SYSTEM_MALLOC && !SYNC_INPUT)
11073 && GC_MALLOC_CHECK), not if ((GC_MARK_STACK || defined
11074 GC_MALLOC_CHECK) && GC_MALLOC_CHECK), to match when it's used.
11075 (NEED_MEM_INSERT): New macro.
11076 (mem_insert, mem_insert_fixup) [!NEED_MEM_INSERT]: Remove; unused.
11077 Remove one incorrect comment and fix another.
11078
11079 Fix minor ralloc.c problems found by static checking.
11080 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
11081 * ralloc.c (ALIGNED, ROUND_TO_PAGE, HEAP_PTR_SIZE)
11082 (r_alloc_size_in_use, r_alloc_freeze, r_alloc_thaw): Remove; unused.
11083 (r_alloc_sbrk): Now static.
11084
11085 Improve ralloc.c interface checking.
11086 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
11087 * buffer.c (ralloc_reset_variable, r_alloc, r_re_alloc)
11088 (r_alloc_free) [REL_ALLOC]: Move decls from here ...
11089 * lisp.h (r_alloc, r_alloc_free, r_re_alloc, r_alloc_reset_variable)
11090 [REL_ALLOC]: ... to here, to check interface.
11091 * m/ia64.h (r_alloc, r_alloc_free) [REL_ALLOC && !_MALLOC_INTERNAL]:
11092 Remove decls. This fixes an "It stinks!".
11093
11094 * alloc.c (which_symbols): Fix alignment issue / type clash.
11095
11096 2012-04-15 Andreas Schwab <schwab@linux-m68k.org>
11097
11098 * lisp.h (struct Lisp_Symbol): Remove explicit padding.
11099 (struct Lisp_Misc_Any): Likewise.
11100 (struct Lisp_Free): Likewise.
11101 * alloc.c (union aligned_Lisp_Symbol): Define.
11102 (SYMBOL_BLOCK_SIZE, struct symbol_block): Use union
11103 aligned_Lisp_Symbol instead of struct Lisp_Symbol.
11104 (union aligned_Lisp_Misc): Define.
11105 (MARKER_BLOCK_SIZE, struct marker_block): Use union
11106 aligned_Lisp_Misc instead of union Lisp_Misc.
11107 (Fmake_symbol, allocate_misc, gc_sweep): Adjust.
11108
11109 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
11110
11111 Make GC_MAKE_GCPROS_NOOPS the default (Bug#9926).
11112 * lisp.h (GC_MARK_STACK): Default to GC_MAKE_GCPROS_NOOPS.
11113 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/gnu.h, s/irix6-5.h, s/msdos.h:
11114 * s/netbsd.h, s/sol2-6.h:
11115 Remove definition of GC_MARK_STACK, since the default now works.
11116 * s/aix4-2.h, s/hpux10-20.h, s/unixware.h:
11117 Define GC_MARK_STACK to GC_USE_GCPROS_AS_BEFORE, since that's
11118 no longer the default.
11119 * s/gnu-linux.h (GC_MARK_STACK): Adjust to change in default.
11120
11121 2012-04-14 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
11122
11123 * lread.c (lisp_file_lexically_bound_p):
11124 Fix hang at ";-*-\n" (bug#11238).
11125
11126 2012-04-14 Eli Zaretskii <eliz@gnu.org>
11127
11128 * xdisp.c (find_last_unchanged_at_beg_row): Don't consider a row
11129 "unchanged" if its end.pos is beyond ZV. (Bug#11199)
11130
11131 2012-04-14 Jan Djärv <jan.h.d@swipnet.se>
11132
11133 * nsterm.m (constrainFrameRect): Always constrain when there is only
11134 one screen (Bug#10962).
11135
11136 2012-04-13 Ken Brown <kbrown@cornell.edu>
11137
11138 * s/cygwin.h (PTY_OPEN): Don't try to close a bogus file descriptor.
11139
11140 2012-04-13 Reuben Thomas <rrt@sc3d.org>
11141
11142 * indent.c (Fmove_to_column): Change interactive spec (Bug#739).
11143
11144 2012-04-11 Daniel Colascione <dancol@dancol.org>
11145
11146 * s/cygwin.h: The vfork the #define in cygwin.h was protecting
11147 against is gone. It's better to use vfork now so that when Cygwin
11148 gains a new, working vfork, we use it automatically (bug#10398).
11149
11150 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
11151
11152 * window.c (save_window_save): Obey window-point-insertion-type.
11153
11154 2012-04-11 Glenn Morris <rgm@gnu.org>
11155
11156 * Makefile.in (GNUSTEP_CFLAGS): Rename from C_SWITCH_X_SYSTEM.
11157
11158 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
11159
11160 * alloc.c (lisp_align_malloc): Remove unneeded prototype.
11161
11162 2012-04-10 Jason S. Cornez <jcornez@ravenpack.com> (tiny change)
11163
11164 * keyboard.c: Override inhibit-quit after the third C-g (bug#6585).
11165 (force_quit_count): New var.
11166 (handle_interrupt): Use it.
11167
11168 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
11169
11170 * w32.c (w32_delayed_load): Record the full path of the library
11171 being loaded (bug#10424).
11172
11173 2012-04-09 Glenn Morris <rgm@gnu.org>
11174
11175 * doc.c (Fsnarf_documentation): Check variables, functions are bound,
11176 not just in the obarray, before snarfing them. (Bug#11036)
11177
11178 * Makefile.in ($(leimdir)/leim-list.el):
11179 Pass EMACS rather than BUILT_EMACS.
11180
11181 2012-04-09 Teodor Zlatanov <tzz@lifelogs.com>
11182
11183 * process.c (make_process):
11184 * process.h: Add integer `gnutls_handshakes_tried' member to
11185 process struct.
11186
11187 * gnutls.h: Add `GNUTLS_EMACS_HANDSHAKES_LIMIT' upper limit.
11188 Add convenience `GNUTLS_LOG2i' macro.
11189
11190 * gnutls.c (gnutls_log_function2i): Convenience log function.
11191 (emacs_gnutls_read): Use new log functions,
11192 `gnutls_handshakes_tried' process member, and
11193 `GNUTLS_EMACS_HANDSHAKES_LIMIT' to limit the number of handshake
11194 attempts per process (connection).
11195
11196 2012-04-09 Chong Yidong <cyd@gnu.org>
11197
11198 * eval.c (Fuser_variable_p, user_variable_p_eh)
11199 (lisp_indirect_variable): Functions deleted.
11200 (Fdefvar): Caller changed.
11201
11202 * callint.c (Finteractive, Fcall_interactively):
11203 * minibuf.c (Fread_variable): Callers changed.
11204
11205 2012-04-09 Eli Zaretskii <eliz@gnu.org>
11206
11207 * xdisp.c (set_cursor_from_row): If the display string appears in
11208 the buffer at position that is closer to point than the position
11209 after the display string, display the cursor on the first glyph of
11210 the display string. Fixes cursor display when a 'display' text
11211 property immediately follows invisible text. (Bug#11094)
11212
11213 2012-04-09 Paul Eggert <eggert@cs.ucla.edu>
11214
11215 composite.c: use 'double' consistently
11216 * composite.c (get_composition_id): Use 'double' consistently
11217 instead of converting 'float' to 'double' and vice versa; this is
11218 easier to understand and avoids a GCC warning.
11219
11220 2012-04-09 Glenn Morris <rgm@gnu.org>
11221
11222 * Makefile.in: Generate leim-list with bootstrap-emacs, in
11223 preparation for dumping it with emacs. (Bug#4789)
11224 (leimdir): New variable.
11225 ($(leimdir)/leim-list.el): New rule.
11226 (emacs$(EXEEXT)): Depend on leim-list.el.
11227
11228 * buffer.c (Qucs_set_table_for_input): Remove. (Bug#9821)
11229 (Fget_buffer_create): Don't call Qucs_set_table_for_input.
11230 (init_buffer_once, syms_of_buffer): Remove Qucs_set_table_for_input.
11231
11232 2012-04-08 Andreas Schwab <schwab@linux-m68k.org>
11233
11234 * lisp.h (struct Lisp_Symbol): Add explicit padding to ensure
11235 proper alignment.
11236
11237 2012-04-07 Juanma Barranquero <lekktu@gmail.com>
11238
11239 * xml.c (init_libxml2_functions) [WINDOWSNT]:
11240 Remove unused local variable.
11241
11242 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
11243
11244 Avoid unnecessary pointer scanning in garbage collection (Bug#10780).
11245 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS): New macro.
11246 (mark_memory): Mark Lisp_Objects only if pointers might hide in
11247 objects, as mark_maybe_pointer will catch them otherwise.
11248 (GC_LISP_OBJECT_ALIGNMENT): Remove; no longer needed.
11249 * s/gnu-linux.h (GC_LISP_OBJECT_ALIGNMENT) [__mc68000__]: Likewise.
11250
11251 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
11252
11253 Fix typo that broke non-Windows builds.
11254 * xml.c (libxml2_loaded_p) [!!WINDOWSNT]: 'inine' -> 'inline'.
11255
11256 2012-04-07 Eli Zaretskii <eliz@gnu.org>
11257
11258 Support building on MS-Windows with libxml2.
11259
11260 * makefile.w32-in (OBJ2): Add xml.$(O).
11261 (GLOBAL_SOURCES): Add xml.c.
11262 ($(BLD)/xml.$(O)): New dependency list.
11263
11264 * xml.c (DEF_XML2_FN, LOAD_XML2_FN) [WINDOWSNT]: New macros.
11265 (fn_htmlReadMemory, fn_xmlReadMemory, fn_xmlDocGetRootElement)
11266 (fn_xmlFreeDoc, fn_xmlCleanupParser, fn_xmlCheckVersion)
11267 [!WINDOWSNT]: New macros.
11268 (init_libxml2_functions, libxml2_loaded_p): New functions.
11269 (parse_region): Call fn_xmlCheckVersion instead of using the macro
11270 LIBXML_TEST_VERSION. Call libxml2 functions via the fn_* macros.
11271 (xml_cleanup_parser): New function, export for fn_xmlCleanupParser.
11272 Calls xmlCleanupParser only if libxml2 was loaded (or statically
11273 linked in).
11274 (Flibxml_parse_html_region, Flibxml_parse_xml_region):
11275 Call init_libxml2_functions before calling libxml2 functions.
11276 (syms_of_xml) <Qlibxml2_dll>: DEFSYM it.
11277
11278 * emacs.c: Don't include libxml/parser.h.
11279 (shut_down_emacs): Call xml_cleanup_parser, instead of calling
11280 xmlCleanupParser directly.
11281
11282 * lisp.h [HAVE_LIBXML2]: Add prototype for xml_cleanup_parser.
11283
11284 2012-04-07 Eli Zaretskii <eliz@gnu.org>
11285
11286 * indent.c (Fvertical_motion): If there is a display string at
11287 point, use it.vpos to compute how many lines to backtrack after
11288 move_it_to point. (Bug#11133)
11289
11290 2012-04-06 Eli Zaretskii <eliz@gnu.org>
11291
11292 * buffer.h (FETCH_CHAR, FETCH_MULTIBYTE_CHAR):
11293 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH): Add comments
11294 about subtle differences between FETCH_CHAR* and STRING_CHAR*
11295 macros related to unification of CJK characters. For the details,
11296 see the discussion following the message here:
11297 http://debbugs.gnu.org/cgi/bugreport.cgi?bug=11073#14.
11298
11299 2012-04-04 Chong Yidong <cyd@gnu.org>
11300
11301 * keyboard.c (Vdelayed_warnings_list): Doc fix.
11302
11303 2012-04-01 Eli Zaretskii <eliz@gnu.org>
11304
11305 * w32menu.c (simple_dialog_show, add_menu_item): Use SAFE_ALLOCA
11306 instead of alloca. (Bug#11138)
11307
11308 2012-04-01 Andreas Schwab <schwab@linux-m68k.org>
11309
11310 * w32menu.c (is_simple_dialog): Properly check lisp types.
11311 (Bug#11141)
11312
11313 2012-03-31 Eli Zaretskii <eliz@gnu.org>
11314
11315 * xdisp.c (move_it_by_lines): When DVPOS is positive, and the
11316 position we get to after a call to move_it_to fails the
11317 IS_POS_VALID_AFTER_MOVE_P test, move to the next buffer position
11318 only if we wind up in a string from display property. (Bug#11063)
11319
11320 * window.c (Fdelete_other_windows_internal): Invalidate the row
11321 and column information about mouse highlight, so that redisplay
11322 restores it after reallocating the glyph matrices. (Bug#7464)
11323
11324 * xdisp.c (set_cursor_from_row): If `cursor' property on a display
11325 string comes from a `display' text property, use the buffer
11326 position of that property as if we actually saw that position in
11327 the row's glyphs.
11328 (move_it_by_lines): Remove the assertion that
11329 "it->current_x == 0 && it->hpos == 0" which can be legitimately
11330 violated when there's a before-string at the beginning of a line.
11331 (Bug#11063)
11332
11333 2012-03-30 Eli Zaretskii <eliz@gnu.org>
11334
11335 * xdisp.c (append_space_for_newline): If the default face was
11336 remapped, use the remapped face for the appended newline.
11337 (extend_face_to_end_of_line): Use the remapped default face for
11338 extending the face to the end of the line.
11339 (display_line): Call extend_face_to_end_of_line when the default
11340 face was remapped. (Bug#11068)
11341
11342 2012-03-29 Eli Zaretskii <eliz@gnu.org>
11343
11344 * s/ms-w32.h: Discourage from defining HAVE_GETCWD.
11345
11346 2012-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
11347
11348 * keyboard.c (safe_run_hooks_error): Don't unquote strings.
11349
11350 2012-03-27 Glenn Morris <rgm@gnu.org>
11351
11352 * search.c (Fword_search_backward_lax, Fword_search_forward_lax):
11353 Doc fixes.
11354
11355 2012-03-26 Kenichi Handa <handa@m17n.org>
11356
11357 * dispextern.h (struct glyph): Fix previous change. Change the
11358 bit length of glyphless.ch to 25 (Bug#11082).
11359
11360 2012-03-26 Chong Yidong <cyd@gnu.org>
11361
11362 * keyboard.c (Vselection_inhibit_update_commands): New variable.
11363 (command_loop_1): Use it; inhibit selection update for
11364 handle-select-window too (Bug#8996).
11365
11366 2012-03-25 Fabrice Popineau <fabrice.popineau@supelec.fr>
11367
11368 * w32heap.c (_heap_init, _heap_term): Remove dead MSVC-specific code.
11369
11370 2012-03-25 Kenichi Handa <handa@m17n.org>
11371
11372 * dispextern.h (struct glyph): Change the bit length of
11373 glyphless.ch to 22 to make the member glyphless fit in 32 bits.
11374
11375 2012-03-24 Eli Zaretskii <eliz@gnu.org>
11376
11377 * s/ms-w32.h (tzname): Include time.h before redirecting to
11378 _tzname. Fixes the MSVC build. (Bug#9960)
11379
11380 2012-03-24 Andreas Schwab <schwab@linux-m68k.org>
11381
11382 * xdisp.c (produce_glyphless_glyph): Limit length of acronym to 6
11383 characters.
11384
11385 * xterm.c (XTread_socket): Only modify handling_signal if
11386 !SYNC_INPUT. (Bug#11080)
11387
11388 2012-03-23 Eli Zaretskii <eliz@gnu.org>
11389
11390 * bidi.c (bidi_fetch_char): Use STRING_CHAR_AND_LENGTH instead of
11391 FETCH_MULTIBYTE_CHAR followed by CHAR_BYTES. Prevents crashes
11392 when fetching a multibyte character consumes more bytes than
11393 CHAR_BYTES returns, due to unification of CJK characters in
11394 string_char. (Bug#11073)
11395
11396 2012-03-23 Troels Nielsen <bn.troels@gmail.com> (tiny change)
11397
11398 * process.c (wait_reading_process_output): Handle pty disconnect
11399 by refraining from sending oneself a SIGCHLD (bug#10933).
11400
11401 2012-03-22 Chong Yidong <cyd@gnu.org>
11402
11403 * dispextern.h (struct it): New member string_from_prefix_prop_p.
11404
11405 * xdisp.c (push_prefix_prop): Rename from push_display_prop.
11406 Mark string as coming from a prefix property.
11407 (handle_face_prop): Use default face for prefix strings (Bug#4281).
11408 (pop_it, reseat_1): Save and restore string_from_prefix_prop_p.
11409
11410 2012-03-21 Chong Yidong <cyd@gnu.org>
11411
11412 * xfaces.c (Vface_remapping_alist): Doc fix.
11413
11414 2012-03-20 Eli Zaretskii <eliz@gnu.org>
11415
11416 * w32proc.c (Fw32_set_console_codepage)
11417 (Fw32_set_console_output_codepage, Fw32_get_codepage_charset):
11418 Doc fixes.
11419
11420 2012-03-20 Chong Yidong <cyd@gnu.org>
11421
11422 * dispnew.c (Fredisplay, Vredisplay_preemption_period): Update doc
11423 to reflect default non-nil value of redisplay-dont-pause.
11424
11425 2012-03-19 Kenichi Handa <handa@m17n.org>
11426
11427 * ftfont.c (ftfont_drive_otf): Mask bits of character code to make
11428 it fit in a valid range (Bug#11003).
11429
11430 2012-03-18 Eli Zaretskii <eliz@gnu.org>
11431
11432 * xdisp.c (cursor_row_p): Even if the glyph row ends in a string
11433 that is not from display property, accept the row as a "cursor
11434 row" if one of the string's character has a non-nil `cursor'
11435 property. Fixes cursor positioning when there are newlines in
11436 overlay strings, e.g. in icomplete.el. (Bug#11035)
11437
11438 2012-03-12 Paul Eggert <eggert@cs.ucla.edu>
11439
11440 * buffer.c (compare_overlays): Don't assume args differ (Bug#6830).
11441
11442 2012-03-12 Chong Yidong <cyd@gnu.org>
11443
11444 * eval.c (inhibit_lisp_code): Rename from
11445 inhibit_window_configuration_change_hook; move from window.c.
11446
11447 * xfns.c (unwind_create_frame_1, Fx_create_frame):
11448 * window.c (run_window_configuration_change_hook)
11449 (syms_of_window): Callers changed.
11450
11451 2012-03-11 Chong Yidong <cyd@gnu.org>
11452
11453 * keymap.c (Fkey_description): Doc fix (Bug#9700).
11454
11455 * editfns.c (Fconstrain_to_field): Doc fix (Bug#9452).
11456
11457 2012-03-10 Chong Yidong <cyd@gnu.org>
11458
11459 * frame.c (other_visible_frames): Don't assume the selected frame
11460 is visible (Bug#10955).
11461
11462 2012-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
11463
11464 * buffer.c (compare_overlays): Avoid qsort's instability (bug#6830).
11465
11466 2012-03-08 Jan Djärv <jan.h.d@swipnet.se>
11467
11468 * gtkutil.c (x_wm_set_size_hint): Use one row in call to
11469 FRAME_TEXT_LINES_TO_PIXEL_HEIGHT so base_height is greater than
11470 zero (Bug#10954).
11471
11472 2012-03-03 Glenn Morris <rgm@gnu.org>
11473
11474 * alloc.c (Fgarbage_collect, misc-objects-consed): Doc fixes.
11475
11476 2012-03-02 Eli Zaretskii <eliz@gnu.org>
11477
11478 * xdisp.c (try_window_reusing_current_matrix): Don't move cursor
11479 position past the first glyph_row that ends at ZV. (Bug#10902)
11480 (redisplay_window, next_element_from_string): Fix typos in
11481 comments.
11482 (redisplay_window): Pass to move_it_vertically the margin in
11483 pixels, not in screen lines.
11484
11485 2012-03-02 Glenn Morris <rgm@gnu.org>
11486
11487 * buffer.c (buffer-list-update-hook): Doc fix.
11488
11489 2012-02-29 Eli Zaretskii <eliz@gnu.org>
11490
11491 * xdisp.c (get_overlay_strings_1): Under bidi redisplay, call
11492 push_it before setting up the iterator for the first overlay
11493 string, even if we have an empty string loaded.
11494 (next_overlay_string): If there's an empty string on the iterator
11495 stack, pop the stack. (Bug#10903)
11496
11497 2012-02-25 Paul Eggert <eggert@cs.ucla.edu>
11498
11499 Generalize fix for crash due to non-contiguous EMACS_INT (Bug#10780).
11500 Suggested by Stefan Monnier in
11501 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00692.html>.
11502 * alloc.c (widen_to_Lisp_Object): New static function.
11503 (mark_memory): Also mark Lisp_Objects by fetching pointer words
11504 and widening them to Lisp_Objects. This would work even if
11505 USE_LSB_TAG is defined and wide integers are used, which might
11506 happen in a future version of Emacs.
11507
11508 2012-02-25 Chong Yidong <cyd@gnu.org>
11509
11510 * fileio.c (Ffile_selinux_context, Fset_file_selinux_context):
11511 Doc fix.
11512
11513 * xselect.c (Fx_selection_exists_p): Doc fix.
11514 (x_clipboard_manager_save_all): Print an informative message
11515 before saving to clipboard manager.
11516
11517 2012-02-24 Chong Yidong <cyd@gnu.org>
11518
11519 * keyboard.c (process_special_events): Handle all X selection
11520 requests in kbd_buffer, not just the next one (Bug#8869).
11521
11522 2012-02-23 Chong Yidong <cyd@gnu.org>
11523
11524 * xfns.c (Fx_create_frame): Avoid window-configuration-change-hook
11525 call when setting menu-bar-lines and tool-bar-lines parameters.
11526 (unwind_create_frame_1): New helper function.
11527
11528 * window.c (inhibit_window_configuration_change_hook): New var.
11529 (run_window_configuration_change_hook): Obey it.
11530 (syms_of_window): Initialize it.
11531
11532 2012-02-22 Chong Yidong <cyd@gnu.org>
11533
11534 * xterm.c (x_draw_image_relief): Add missing type check for
11535 Vtool_bar_button_margin (Bug#10743).
11536
11537 2012-02-21 Chong Yidong <cyd@gnu.org>
11538
11539 * fileio.c (Vfile_name_handler_alist): Doc fix.
11540
11541 * buffer.c (Fget_file_buffer): Protect against invalid file
11542 handler return value.
11543
11544 2012-02-20 Paul Eggert <eggert@cs.ucla.edu>
11545
11546 * .gdbinit (xreload): Don't assume EMACS_INT fits in 'long'
11547 when computing $valmask.
11548
11549 Fix crash due to non-contiguous EMACS_INT (Bug#10780).
11550 * lisp.h (VALBITS): Move definition up, so that USE_LSB_TAG can use it.
11551 (USE_LSB_TAG): Do not define if UINTPTR_MAX >> VALBITS == 0.
11552 It's useless in that case, and it can cause problems on hosts
11553 that allocate halves of EMACS_INT values separately.
11554 Reported by Dan Horák. Diagnosed by Andreas Schwab in
11555 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=10780#30>.
11556 * mem-limits.h (EXCEEDS_LISP_PTR): Define to 0 on hosts where
11557 UINTPTR_MAX >> VALBITS == 0. This is required by the above change;
11558 it avoids undefined behavior on hosts where shifting right by more
11559 than the word width has undefined behavior.
11560
11561 2012-02-19 Chong Yidong <cyd@gnu.org>
11562
11563 * fileio.c (Ffile_name_directory, Ffile_name_nondirectory)
11564 (Funhandled_file_name_directory, Ffile_name_as_directory)
11565 (Fdirectory_file_name, Fexpand_file_name)
11566 (Fsubstitute_in_file_name): Protect against invalid file handler
11567 return values (Bug#10845).
11568
11569 2012-02-18 Eli Zaretskii <eliz@gnu.org>
11570
11571 * .gdbinit (pitx): Fix incorrect references to fields of the
11572 iterator stack.
11573
11574 2012-02-17 Chong Yidong <cyd@gnu.org>
11575
11576 * syntax.c (Fscan_lists): Doc fix (Bug#10833).
11577
11578 2012-02-15 Paul Eggert <eggert@cs.ucla.edu>
11579
11580 * image.c (MAX_IMAGE_SIZE): Increase from 6.0 to 10.0; see
11581 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00540.html>.
11582
11583 2012-02-15 Chong Yidong <cyd@gnu.org>
11584
11585 * eval.c (Fdefvar, Fdefconst): Doc fix; note that the variable is
11586 marked as special. Also, starting docstrings with * is obsolete.
11587
11588 2012-02-13 Andreas Schwab <schwab@linux-m68k.org>
11589
11590 * gnutls.c (emacs_gnutls_write): Fix last change.
11591
11592 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
11593
11594 * gnutls.c (emacs_gnutls_write): Set errno appropriately for
11595 send_process.
11596
11597 2012-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
11598
11599 * keymap.c (Fsingle_key_description): Handle char ranges.
11600
11601 2012-02-12 Chong Yidong <cyd@gnu.org>
11602
11603 * xdisp.c (handle_stop): Avoid assigning -1 to it->face_id here,
11604 as that creates a dangerous corner case.
11605
11606 * window.c (Fdelete_window_internal): Invalidate the mouse
11607 highlight (Bug#9904).
11608
11609 2012-02-12 Glenn Morris <rgm@gnu.org>
11610
11611 * xselect.c (Fx_own_selection_internal)
11612 (Fx_get_selection_internal, Fx_disown_selection_internal)
11613 (Fx_selection_owner_p, Fx_selection_exists_p): Doc fixes.
11614 * nsselect.m (Fx_own_selection_internal)
11615 (Fx_disown_selection_internal, Fx_selection_exists_p)
11616 (Fx_selection_owner_p, Fx_get_selection_internal):
11617 Sync docs and argument specs with the xselect.c versions.
11618
11619 2012-02-11 Lars Ingebrigtsen <larsi@gnus.org>
11620
11621 * gnutls.c (emacs_gnutls_write): Don't infloop if sendto fails.
11622
11623 2012-02-11 Eli Zaretskii <eliz@gnu.org>
11624
11625 * w32select.c (Fx_selection_exists_p): Sync doc string and
11626 argument list with xselect.c. (Bug#10783)
11627
11628 * w16select.c (Fx_selection_exists_p): Sync doc string and
11629 argument list with xselect.c. (Bug#10783)
11630
11631 2012-02-10 Glenn Morris <rgm@gnu.org>
11632
11633 * fns.c (Fsecure_hash): Doc fix.
11634
11635 2012-02-09 Kenichi Handa <handa@m17n.org>
11636
11637 * coding.c (produce_chars): Fix updating of src_end (Bug#10701).
11638
11639 2012-02-07 Chong Yidong <cyd@gnu.org>
11640
11641 * buffer.c (Fbuffer_local_variables)
11642 (buffer_lisp_local_variables): Handle unbound vars correctly;
11643 don't let Qunbound leak into Lisp.
11644
11645 2012-02-07 Glenn Morris <rgm@gnu.org>
11646
11647 * image.c (Fimagemagick_types): Doc fix.
11648
11649 * image.c (imagemagick-render-type): Change it from a lisp object
11650 to an integer. Move the doc here from the lisp manual.
11651 Treat all values not equal to 0 the same.
11652
11653 2012-02-06 Chong Yidong <cyd@gnu.org>
11654
11655 * doc.c (store_function_docstring): Avoid applying docstring of
11656 alias to base function (Bug#2603).
11657
11658 2012-02-04 Andreas Schwab <schwab@linux-m68k.org>
11659
11660 * .gdbinit (pp1, pv1): Remove redundant defines.
11661 (pr): Use pp.
11662
11663 2012-02-04 Chong Yidong <cyd@gnu.org>
11664
11665 * nsterm.m: Declare a global (Bug#10694).
11666
11667 2012-02-04 Eli Zaretskii <eliz@gnu.org>
11668
11669 * w32.c (get_emacs_configuration_options):
11670 Include --enable-checking, if specified, in the return value.
11671
11672 2012-02-04 Martin Rudalics <rudalics@gmx.at>
11673
11674 * dispnew.c (change_frame_size_1): Calculate new_frame_total_cols
11675 after rounding frame sizes. (Bug#9723)
11676
11677 2012-02-04 Eli Zaretskii <eliz@gnu.org>
11678
11679 * keyboard.c (adjust_point_for_property): Don't position point
11680 before BEGV. (Bug#10696)
11681
11682 2012-02-03 Paul Eggert <eggert@cs.ucla.edu>
11683
11684 Handle overflow when computing char display width (Bug#9496).
11685 * character.c (char_width): Return EMACS_INT, not int.
11686 (char_width, c_string_width): Check for overflow when
11687 computing the width; this is possible now that individual
11688 characters can have unbounded width. Problem introduced
11689 by merge from Emacs 23 on 2012-01-19.
11690
11691 2012-02-02 Michael Albinus <michael.albinus@gmx.de>
11692
11693 * dbusbind.c (Fdbus_register_method): Mention the return value
11694 :ignore in the docstring.
11695
11696 2012-02-02 Glenn Morris <rgm@gnu.org>
11697
11698 * callproc.c (Fcall_process, Fcall_process_region): Doc fix.
11699
11700 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
11701 Unconditionally set to t. (Bug#10673)
11702 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
11703 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
11704 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Doc fix.
11705
11706 2012-02-02 Kenichi Handa <handa@m17n.org>
11707
11708 (x_produce_glyphs): Cancel previous change. If cmp->glyph_len is
11709 0, do not call append_composite_glyph.
11710
11711 2012-02-02 Kenichi Handa <handa@m17n.org>
11712
11713 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING): Initialize first_s to
11714 NULL (Bug#6988).
11715 (x_produce_glyphs): If the component of a composition is a null
11716 string, set it->pixel_width to 1 to avoid zero-width glyph.
11717
11718 2012-02-01 Eli Zaretskii <eliz@gnu.org>
11719
11720 * ralloc.c (resize_bloc, r_alloc_sbrk): Don't call memmove if its
11721 first 2 arguments are identical. This makes inserting large
11722 output from a subprocess an order of magnitude faster on
11723 MS-Windows, where all sbrk'ed memory is always contiguous.
11724
11725 2012-01-31 Glenn Morris <rgm@gnu.org>
11726
11727 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
11728 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
11729 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Sync docs.
11730
11731 2012-01-29 Glenn Morris <rgm@gnu.org>
11732
11733 * gnutls.c (syms_of_gnutls): More doc (from etc/NEWS).
11734
11735 2012-01-28 Samuel Thibault <sthibault@debian.org> (tiny change)
11736
11737 * s/gnu.h: Define POSIX_SIGNALS (Bug#10552).
11738
11739 2012-01-28 Chong Yidong <cyd@gnu.org>
11740
11741 * minibuf.c (syms_of_minibuf): Doc fix (Bug#10550).
11742
11743 2012-01-26 Chong Yidong <cyd@gnu.org>
11744
11745 * keyboard.c (Vecho_keystrokes): Document zero value (Bug#10503).
11746
11747 * search.c (Fsearch_forward, Fsearch_backward): Document negative
11748 repeat counts (Bug#10507).
11749
11750 2012-01-26 Glenn Morris <rgm@gnu.org>
11751
11752 * lread.c (syms_of_lread): Doc fix.
11753
11754 2012-01-25 HIROSHI OOTA <nil@mad.dog.cx> (tiny change)
11755
11756 * coding.c (encode_designation_at_bol): Change return value to
11757 EMACS_INT.
11758
11759 2012-01-25 Chong Yidong <cyd@gnu.org>
11760
11761 * eval.c (Fuser_variable_p): Doc fix; mention custom-variable-p.
11762
11763 2012-01-21 Chong Yidong <cyd@gnu.org>
11764
11765 * floatfns.c (Fcopysign): Make the second argument non-optional,
11766 since nil is not allowed anyway.
11767
11768 2012-01-21 Andreas Schwab <schwab@linux-m68k.org>
11769
11770 * process.c (read_process_output): Use p instead of XPROCESS (proc).
11771 (send_process): Likewise.
11772
11773 2012-01-19 Martin Rudalics <rudalics@gmx.at>
11774
11775 * window.c (save_window_save, Fcurrent_window_configuration)
11776 (Vwindow_persistent_parameters): Do not use Qstate.
11777 Rewrite doc-strings.
11778
11779 2012-01-19 Kenichi Handa <handa@m17n.org>
11780
11781 * character.c (char_width): New function.
11782 (Fchar_width, c_string_width, lisp_string_width):
11783 Use char_width (Bug#9496).
11784
11785 2012-01-16 Martin Rudalics <rudalics@gmx.at>
11786
11787 * window.c (Vwindow_persistent_parameters): New variable.
11788 (Fset_window_configuration, save_window_save): Handle persistent
11789 window parameters.
11790
11791 2012-01-14 Eli Zaretskii <eliz@gnu.org>
11792
11793 * w32fns.c (signal_user_input): Don't do a QUIT, to avoid
11794 thrashing the stack of the thread. (Bug#9087)
11795
11796 2012-01-12 Paul Eggert <eggert@cs.ucla.edu>
11797
11798 * xdisp.c (rows_from_pos_range): Add parens as per gcc -Wparentheses.
11799
11800 2012-01-11 Eli Zaretskii <eliz@gnu.org>
11801
11802 * xdisp.c (rows_from_pos_range): Handle the case where the
11803 highlight ends on a newline. (Bug#10464)
11804 (mouse_face_from_buffer_pos): Fix off-by-one error in calculating
11805 he end column for display of highlight that ends on a newline
11806 before a R2L line.
11807
11808 2012-01-11 Glenn Morris <rgm@gnu.org>
11809
11810 * lread.c (init_lread): If no-site-lisp, remove site-lisp dirs
11811 from load-path also when installation-directory is nil. (Bug#10208)
11812
11813 2012-01-10 Glenn Morris <rgm@gnu.org>
11814
11815 * emacs.c (syms_of_emacs) <installation-directory>: Doc fix.
11816
11817 * epaths.in (PATH_LOADSEARCH, PATH_EXEC, PATH_DATA, PATH_DOC):
11818 Update template values to be closer to their typical values these days.
11819
11820 2012-01-09 Eli Zaretskii <eliz@gnu.org>
11821
11822 * xdisp.c (rows_from_pos_range): Accept additional argument
11823 DISP_STRING, and accept any glyph in a row whose object is that
11824 string as eligible for mouse highlight. Fixes mouse highlight of
11825 display strings from overlays. (Bug#10464)
11826
11827 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
11828
11829 emacs: fix an auto-save permissions race condition (Bug#10400)
11830 * fileio.c (auto_saving_dir_umask): New static var.
11831 (Fmake_directory_internal): Use it.
11832 (do_auto_save_make_dir): Set it, instead of invoking chmod after
11833 creating the directory. The old code temporarily assigns
11834 too-generous permissions to the directory.
11835 (do_auto_save_eh): Clear it.
11836 (Fdo_auto_save): Catch all errors, not just file errors, so
11837 that the var is always cleared.
11838
11839 2012-01-07 Eli Zaretskii <eliz@gnu.org>
11840
11841 * search.c (scan_buffer): Pass character positions to
11842 know_region_cache, not byte positions. (Bug#6540)
11843
11844 2012-01-07 LynX <_LynX@bk.ru> (tiny change)
11845
11846 * w32.c (sys_rename): Report EXDEV when rename of a directory
11847 fails because the target is on another logical disk. (Bug#10284)
11848
11849 2012-01-07 David Benjamin <davidben@mit.edu> (tiny change)
11850
11851 * xterm.c (x_embed_request_focus): New function.
11852
11853 * xterm.h: Add prototype.
11854
11855 * xfns.c (Fx_focus_frame): Use it for embedded frames (Bug#9977).
11856
11857 2012-01-05 Glenn Morris <rgm@gnu.org>
11858
11859 * emacs.c (emacs_copyright): Update short copyright year to 2012.
11860
11861 2012-01-01 Eli Zaretskii <eliz@gnu.org>
11862
11863 * gnutls.c (init_gnutls_functions): Load gnutls_check_version.
11864 Load gnutls_transport_set_lowat only if GnuTLS version is below
11865 2.11.1.
11866 (emacs_gnutls_handshake): Call gnutls_transport_set_lowat only for
11867 GnuTLS versions below 2.11.1.
11868
11869 2011-12-31 Antoine Levitt <antoine.levitt@gmail.com>
11870
11871 * xdisp.c (syms_of_xdisp) <window-scroll-functions>: Add warning
11872 to the doc string advising against its use for altering the way
11873 windows are scrolled.
11874
11875 2011-12-28 Kenichi Handa <handa@m17n.org>
11876
11877 * coding.c (Fdefine_coding_system_internal): Make an utf-8 base
11878 coding-system ASCII compatible only when it does not produce BOM
11879 on encoding (Bug#10383).
11880
11881 2011-12-26 Jan Djärv <jan.h.d@swipnet.se>
11882
11883 * xmenu.c (x_menu_wait_for_event): Use xg_select for Gtk3 so menus
11884 can scroll.
11885 (create_and_show_popup_menu): Always use menu_position_func for
11886 Gtk3 (Bug#10361).
11887
11888 2011-12-24 Andreas Schwab <schwab@linux-m68k.org>
11889
11890 * callint.c (Fcall_interactively): Don't truncate prompt string.
11891
11892 2011-12-23 Eli Zaretskii <eliz@gnu.org>
11893
11894 * xdisp.c (handle_invisible_prop): Handle correctly an invisible
11895 property that ends at ZV, so that the bidi iteration could be
11896 resumed from there (after widening). (Bug#10360)
11897
11898 2011-12-22 Jan Djärv <jan.h.d@swipnet.se>
11899
11900 * nsfont.m (ns_spec_to_descriptor): Do not autorelease fdesc.
11901
11902 2011-12-21 Jan Djärv <jan.h.d@swipnet.se>
11903
11904 * nsterm.m (x_free_frame_resources):
11905 Release f->output_data.ns->miniimage.
11906 (ns_index_color): Fix indentation. Do not retain
11907 color_table->colors[i].
11908
11909 * nsmenu.m (ns_update_menubar): Call free_menubar_widget_value_tree
11910 before returning.
11911
11912 * nsfns.m (x_set_background_color): Assign return value from
11913 ns_index_color to face-background instead of NSColor*.
11914 (ns_implicitly_set_icon_type): Fix indentation.
11915 Change assignment in for loop to comparison.
11916
11917 * emacs.c (ns_pool): New variable.
11918 (main): Assign ns_pool.
11919 (Fkill_emacs): Call ns_release_autorelease_pool.
11920
11921 * nsfont.m (ns_spec_to_descriptor): Fix indentation,
11922 autorelease fdesc, release fdAttrs and tdict.
11923 (ns_get_covering_families): Release charset.
11924 (ns_findfonts): Release NSFontDescriptor created with new.
11925 (ns_uni_to_glyphs): Fix indentation.
11926 (setString): Release attrStr before assigning new value.
11927
11928 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
11929
11930 * nsmenu.m (NSMenuDidBeginTrackingNotification): Declare if OSX < 10.5
11931 and NS_IMPL_COCOA.
11932 (trackingNotification): Surround with ifdef NS_IMPL_COCOA.
11933 (syms_of_nsmenu): Set trackingMenu to 1 if not NS_IMPL_COCOA.
11934
11935 2011-12-18 David Reitter <reitter@cmu.edu>
11936
11937 * nsterm.m (ns_term_init): Subscribe for notifications
11938 NSMenuDidBeginTrackingNotification and NSMenuDidEndTrackingNotification
11939 to method trackingNotification in EmacsMenu.
11940
11941 * nsmenu.m (trackingMenu): New variable.
11942 (trackingNotification): New method (from Aquamacs).
11943 (menuNeedsUpdate): Expand comment and return if trackingMenu is 0,
11944 from Aquamacs (Bug#7030).
11945
11946 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
11947
11948 * nsselect.m (CUT_BUFFER_SUPPORT): Remove define.
11949 (symbol_to_nsstring): Fix indentation.
11950 (ns_symbol_to_pb): New function.
11951 (Fns_get_selection_internal): Rename from Fns_get_cut_buffer_internal.
11952 (Fns_rotate_cut_buffers_internal): Remove.
11953 (Fns_store_selection_internal): Rename from
11954 Fns_store_cut_buffer_internal.
11955 (ns_get_foreign_selection, Fx_own_selection_internal)
11956 (Fx_disown_selection_internal, Fx_selection_exists_p)
11957 (Fns_get_selection_internal, Fns_store_selection_internal):
11958 Use ns_symbol_to_pb and check if return value is nil.
11959 (syms_of_nsselect): Remove ifdef CUT_BUFFER_SUPPORT. Remove defsubr
11960 Sns_rotate_cut_buffers_internal. Sns_get_cut_buffer_internal
11961 renamed to Sns_get_selection_internal, Sns_store_cut_buffer_internal
11962 renamed to Sns_store_selection_internal.
11963 (ns_handle_selection_request): Move code to Fx_own_selection_internal
11964 and remove this function.
11965 (ns_handle_selection_clear): Remove, never used.
11966 (Fx_own_selection_internal): Move code from ns_handle_selection_request
11967 here.
11968
11969 2011-12-17 Ken Brown <kbrown@cornell.edu>
11970
11971 * fileio.c (check_writable) [CYGWIN]: Return non-zero if UID or
11972 GID is unknown (Bug#10257).
11973
11974 2011-12-17 Paul Eggert <eggert@cs.ucla.edu>
11975
11976 * s/gnu-linux.h: Fix mark_memory typo (Bug#10286).
11977 (GC_MARK_SECONDARY_STACK): Omit removed 3rd arg to mark_memory,
11978 which caused a build failure on GNU/Linux IA-64. This problem was
11979 introduced by my 2011-10-07 patch.
11980
11981 2011-12-15 Juri Linkov <juri@jurta.org>
11982
11983 * image.c (imagemagick_error): New function. (Bug#10112)
11984 (imagemagick_load_image): Comment out `MagickSetResolution' call.
11985 Use `imagemagick_error' where ImageMagick functions return
11986 `MagickFalse'.
11987 (Fimagemagick_types): Add `Fnreverse' to return the list in the
11988 proper order.
11989
11990 2011-12-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11991
11992 * xftfont.c (xftfont_draw): Use the font metrics of s->font to
11993 fill background (Bug#8992).
11994
11995 2011-12-13 Martin Rudalics <rudalics@gmx.at>
11996
11997 * window.c (Vwindow_combination_resize)
11998 (Vwindow_combination_limit): Use t instead of non-nil in
11999 doc-strings.
12000 (Vrecenter_redisplay): Add first sentence of doc-string on
12001 separate line.
12002 (Frecenter): Fix doc-string typo.
12003
12004 2011-12-11 Kenichi Handa <handa@m17n.org>
12005
12006 * coding.c (Funencodable_char_position): Pay attention to the
12007 buffer text relocation (Bug#9389).
12008
12009 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
12010
12011 * xterm.c (x_term_init): Move call to gdk_window_add_filter before
12012 gtk_init (Bug#10100).
12013
12014 2011-12-10 Eli Zaretskii <eliz@gnu.org>
12015
12016 * xdisp.c (RECORD_MAX_MIN_POS): Use IT->cmp_it.charpos only if
12017 IT->string is nil. (Bug#10263)
12018
12019 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
12020
12021 * nsterm.h (x_free_frame_resources): Declare.
12022
12023 * nsfns.m (ns_get_defaults_value): New function (Bug#10103).
12024 (Fns_get_resource, x_get_string_resource): Call ns_get_defaults_value.
12025
12026 * nsterm.h (ns_get_defaults_value): Declare.
12027
12028 * nsterm.m (ns_default): Call ns_get_defaults_value.
12029
12030 2011-12-09 Eli Zaretskii <eliz@gnu.org>
12031
12032 * xdisp.c (try_scrolling): Don't set scroll_down_p if dy is zero.
12033 (Bug#10170)
12034
12035 2011-12-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12036
12037 * unexelf.c (unexec) [NS_IMPL_GNUSTEP]: Take account of the case
12038 that where the value of an _OBJC_* symbol points to is in the .bss
12039 section (Bug#10240).
12040
12041 2011-12-08 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
12042
12043 * coding.c (encode_coding_ccl): Check (charbuf < charbuf_end)
12044 after the loop to call ccl_driver at least once (Bug#8619).
12045
12046 2011-12-08 Kenichi Handa <handa@m17n.org>
12047
12048 * ftfont.c (get_adstyle_property): Fix previous change
12049 (Bug#10233).
12050
12051 2011-12-07 Juanma Barranquero <lekktu@gmail.com>
12052
12053 * w32.c (init_environment): If no_site_lisp, remove site-lisp
12054 dirs from the default value of EMACSLOADPATH (bug#10208).
12055
12056 2011-12-07 Glenn Morris <rgm@gnu.org>
12057
12058 * lread.c (init_lread): If no_site_lisp, exclude site-lisp/ in
12059 installation and source directories as well. (Bug#10208)
12060
12061 2011-12-06 Chong Yidong <cyd@gnu.org>
12062
12063 * minibuf.c (Fread_from_minibuffer): Doc fix (Bug#10228).
12064
12065 2011-12-06 Glenn Morris <rgm@gnu.org>
12066
12067 * process.c (start_process_unwind): Treat any pid <= 0, except -2,
12068 as an error, not just -1. (Bug#10217)
12069
12070 2011-12-05 Chong Yidong <cyd@gnu.org>
12071
12072 * keyboard.c (process_special_events): New function.
12073 (swallow_events, Finput_pending_p): Use it (Bug#10195).
12074
12075 2011-12-05 Paul Eggert <eggert@cs.ucla.edu>
12076
12077 * coding.c (encode_designation_at_bol): Don't use uninitialized
12078 local variable (Bug#9318).
12079
12080 2011-12-05 Kenichi Handa <handa@m17n.org>
12081
12082 * ftfont.c (get_adstyle_property): If the font is not BDF nor PCF,
12083 return Qnil (Bug#8046, Bug#10193).
12084
12085 2011-12-05 Kenichi Handa <handa@m17n.org>
12086
12087 * coding.c (encode_designation_at_bol): New args charbuf_end and
12088 dst. Return the number of produced bytes. Callers changed.
12089 (coding_set_source): Return how many bytes coding->source was
12090 relocated.
12091 (coding_set_destination): Return how many bytes
12092 coding->destination was relocated.
12093 (CODING_DECODE_CHAR, CODING_ENCODE_CHAR, CODING_CHAR_CHARSET)
12094 (CODING_CHAR_CHARSET_P): Adjust for the avove changes.
12095
12096 2011-12-05 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
12097
12098 * coding.c (CODING_CHAR_CHARSET_P): New macro.
12099 (encode_coding_emacs_mule, encode_coding_iso_2022): Use the above
12100 macro (Bug#9318).
12101
12102 2011-12-05 Andreas Schwab <schwab@linux-m68k.org>
12103
12104 The following changes are to fix Bug#9318.
12105
12106 * coding.c (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET): New macros.
12107 (encode_coding_emacs_mule, ENCODE_ISO_CHARACTER)
12108 (encode_coding_iso_2022, encode_coding_sjis)
12109 (encode_coding_big5, encode_coding_charset): Use the above macros.
12110
12111 2011-12-05 Juanma Barranquero <lekktu@gmail.com>
12112
12113 * lisp.h (process_quit_flag): Fix external declaration.
12114
12115 2011-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
12116
12117 Don't macro-inline non-performance-critical code.
12118 * eval.c (process_quit_flag): New function.
12119 * lisp.h (QUIT): Use it.
12120
12121 2011-12-04 Jan Djärv <jan.h.d@swipnet.se>
12122
12123 * nsfns.m (get_geometry_from_preferences): New function.
12124 (Fx_create_frame): Call get_geometry_from_preferences (Bug#10103).
12125
12126 2011-12-04 Andreas Schwab <schwab@linux-m68k.org>
12127
12128 * emacs.c (Qkill_emacs): Define.
12129 (syms_of_emacs): Initialize it.
12130 * keyboard.c (interrupt_signal): Don't call Fkill_emacs here, set
12131 Qquit_flag to `kill-emacs' instead.
12132 (quit_throw_to_read_char): Add parameter `from_signal'.
12133 All callers changed. Call Fkill_emacs if requested and safe.
12134 * lisp.h (QUIT): Call Fkill_emacs if requested.
12135
12136 2011-12-03 Jan Djärv <jan.h.d@swipnet.se>
12137
12138 * widget.c (update_wm_hints): Return if wmshell is null.
12139 (widget_update_wm_size_hints): New function.
12140
12141 * widget.h (widget_update_wm_size_hints): Declare.
12142
12143 * xterm.c (x_wm_set_size_hint): If USE_X_TOOLKIT, call
12144 widget_update_wm_size_hints (Bug#10104).
12145
12146 2011-12-03 Eli Zaretskii <eliz@gnu.org>
12147
12148 * xdisp.c (handle_invisible_prop): If the invisible text ends just
12149 before a newline, prepare the bidi iterator for consuming the
12150 newline, and keep the current paragraph direction. (Bug#10183)
12151 (redisplay_window): Don't let `margin' become negative. (Bug#10192)
12152
12153 2011-12-02 Juri Linkov <juri@jurta.org>
12154
12155 * search.c (Fword_search_regexp): New Lisp function created from
12156 `wordify'. Change type of arg `lax' from `int' to `Lisp_Object'.
12157 (Fword_search_backward, Fword_search_forward)
12158 (Fword_search_backward_lax, Fword_search_forward_lax):
12159 Use `Fword_search_regexp' instead of `wordify'. Doc fix.
12160 (syms_of_search): Define `Sword_search_regexp'. (Bug#10145)
12161
12162 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
12163
12164 * fileio.c (Finsert_file_contents): Move after-change-function call
12165 to before the "handled:" label, since all "goto handled" appear in
12166 cases where the *-change-functions have already been properly called
12167 (bug#10117).
12168
12169 2011-12-01 Andreas Schwab <schwab@linux-m68k.org>
12170
12171 * keyboard.c (interrupt_signal): Don't call kill-emacs when
12172 waiting for input. (Bug#10169)
12173
12174 2011-11-30 Eli Zaretskii <eliz@gnu.org>
12175
12176 * dispnew.c (adjust_glyph_matrix): Remove the assertion that
12177 verifies glyph row's hash code--we have just reallocated the
12178 glyphs, so their contents can be complete garbage. (Bug#10164)
12179
12180 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
12181
12182 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Add missing check.
12183
12184 2011-11-30 Eli Zaretskii <eliz@gnu.org>
12185
12186 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Ensure ROW's
12187 attributes are tested _before_ calling verify_row_hash, to protect
12188 against GCC re-ordering of the tests. (Bug#10164)
12189
12190 2011-11-29 Jan Djärv <jan.h.d@swipnet.se>
12191
12192 * xterm.h (struct x_output): net_wm_state_hidden_seen is new.
12193
12194 * xterm.c (handle_one_xevent): Only set async_visible and friends
12195 if net_wm_state_hidden_seen is non-zero (Bug#10002)
12196 (get_current_wm_state): Set net_wm_state_hidden_seen to 1 if
12197 _NET_WM_STATE_HIDDEN is in NET_WM_STATE.
12198
12199 2011-11-28 Paul Eggert <eggert@cs.ucla.edu>
12200
12201 Remove GCPRO-related macros that exist only to avoid shadowing locals.
12202 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR)
12203 (GCPRO6_VAR, UNGCPRO_VAR): Remove. See
12204 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
12205 All uses changed to use GCPRO1 etc.
12206 (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6, UNGCPRO):
12207 Revert to old implementation (i.e., before 2011-03-11).
12208
12209 2011-11-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12210
12211 * dispnew.c (scrolling_window): Truncate overlaps in copy destination
12212 of scroll runs so as to avoid assigning disabled bogus rows and
12213 unnecessary graphics copy operations.
12214
12215 2011-11-27 Eli Zaretskii <eliz@gnu.org>
12216
12217 * s/ms-w32.h (utimbuf) [_MSC_VER]: Don't define.
12218 (snprintf) [_MSC_VER]: Redirect to _snprintf.
12219 (strtoll) [_MSC_VER]: Redirect to _strtoi64.
12220 (malloc, free, realloc, calloc): Redirect to e_* only when
12221 compiling Emacs.
12222
12223 * lisp.h (GCTYPEBITS): Move before first use.
12224 (ALIGN_GCTYPEBITS) [_MSC_VER]: Define.
12225 (DECL_ALIGN) [_MSC_VER]: Use it, as MSVC doesn't like bit ops in
12226 this macro definition.
12227
12228 * s/ms-w32.h (tzname): Redirect to _tzname for all values of
12229 _MSC_VER.
12230
12231 2011-11-27 Jan Djärv <jan.h.d@swipnet.se>
12232
12233 * gtkutil.c (xg_create_frame_widgets):
12234 Call gtk_window_set_has_resize_grip (FALSE) if that function is
12235 present with Gtk+ 2.0.
12236
12237 2011-11-26 Paul Eggert <eggert@cs.ucla.edu>
12238
12239 * fileio.c (Finsert_file_contents): Undo previous change; see
12240 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
12241
12242 2011-11-26 Paul Eggert <eggert@cs.ucla.edu>
12243
12244 Rename locals to avoid shadowing.
12245 * fileio.c (Finsert_file_contents):
12246 Rename inner 'gcpro1' to 'inner_gcpro1' to avoid shadowing.
12247 * process.c (wait_reading_process_output):
12248 Rename inner 'proc' to 'p' to avoid shadowing.
12249 Indent for consistency with usual Emacs style.
12250
12251 2011-11-25 Eli Zaretskii <eliz@gnu.org>
12252
12253 * xdisp.c (redisplay_window): If cursor row is not fully visible
12254 after recentering, and scroll-conservatively is set to a large
12255 number, scroll window by a few more lines to make the cursor fully
12256 visible and out of scroll-margin. (Bug#10105)
12257 (start_display): Don't move to the next line if the display should
12258 start at a newline that is part of a display vector or an overlay
12259 string. (Bug#10119)
12260
12261 2011-11-24 Juri Linkov <juri@jurta.org>
12262
12263 * image.c (imagemagick_load_image): Move `MagickSetResolution' down
12264 after the `MagickPingImage' call. (Bug#10112)
12265
12266 2011-11-23 Chong Yidong <cyd@gnu.org>
12267
12268 * window.c (Fcoordinates_in_window_p): Accept only live windows.
12269
12270 2011-11-23 Martin Rudalics <rudalics@gmx.at>
12271
12272 * buffer.c (Fkill_buffer): Run replace_buffer_in_windows before
12273 making another buffer current. (Bug#10114)
12274
12275 2011-11-23 Glenn Morris <rgm@gnu.org>
12276
12277 * font.c (font_find_for_lface) [HAVE_NS]: Ignore case. (Bug#2526)
12278
12279 2011-11-23 Chong Yidong <cyd@gnu.org>
12280
12281 * xdisp.c (compute_stop_pos): Check validity of end_charpos before
12282 using it (Bug#5984).
12283
12284 2011-11-22 Eli Zaretskii <eliz@gnu.org>
12285
12286 * dispnew.c (adjust_glyph_matrix): Don't verify hash code of mode-
12287 and header-lines, as they don't have one computed for them.
12288 (Bug#10098)
12289
12290 * .gdbinit (prow): Make displayed values more self-explaining.
12291 Add row's hash code.
12292
12293 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
12294
12295 * process.c (wait_reading_process_output): Fix asynchrounous
12296 GnuTLS socket handling on some versions of the GnuTLS library.
12297 (wait_reading_process_output): Add comment and URL.
12298
12299 2011-11-21 Jan Djärv <jan.h.d@swipnet.se>
12300
12301 * xterm.c (x_clear_frame): Reinstate the XClearWindow call.
12302
12303 2011-11-21 Chong Yidong <cyd@gnu.org>
12304
12305 * window.c (Fnext_window, Fprevious_window): Doc fix.
12306
12307 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
12308
12309 * window.c (get_phys_cursor_glyph): Fix Lisp_Object/int mixup.
12310
12311 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
12312
12313 * nsfont.m (syms_of_nsfont) <ns-reg-to-script>: Fix typo.
12314
12315 2011-11-20 Martin Rudalics <rudalics@gmx.at>
12316
12317 * window.c (Fset_window_combination_limit): Rename argument
12318 STATUS to LIMIT.
12319 (Vwindow_combination_limit): Remove "status" from doc-string.
12320
12321 2011-11-20 Andreas Schwab <schwab@linux-m68k.org>
12322
12323 * m/ibms390.h: Remove.
12324 * m/ibms390x.h: Don't include "ibms390.h".
12325
12326 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
12327
12328 * fileio.c (Finsert_file_contents): Add missing gcpro1 variable.
12329 Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
12330
12331 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
12332
12333 * casetab.c (Fset_case_table):
12334 * charset.c (Fcharset_after): Fix typos.
12335
12336 2011-11-20 Paul Eggert <eggert@cs.ucla.edu>
12337
12338 Standardize on VIRT_ADDR_VARIES behavior (Bug#10042).
12339 Otherwise, valgrind does not work on some platforms.
12340 Problem reported by Andreas Schwab in
12341 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00081.html>.
12342 * puresize.h (pure, PURE_P): Always behave as if VIRT_ADDR_VARIES
12343 is set, removing the need for VIRT_ADDRESS_VARIES.
12344 (PURE_P): Use a more-efficient implementation that needs just one
12345 comparison, not two: on x86-64 with GCC 4.6.2, this cut down the
12346 number of instructions from 6 (xorl, cmpq, jge, xorl, cmpq, setge)
12347 to 4 (xorl, subq, cmpq, setbe).
12348 * alloc.c (pure): Always extern now, since that's the
12349 VIRT_ADDR_VARIES behavior.
12350 (PURE_POINTER_P): Use a single comparison, not two, for
12351 consistency with the new puresize.h.
12352 * lisp.h (PNTR_COMPARISON_TYPE): Remove; no longer needed.
12353 * m/ibms390.h, m/intel386.h, m/template.h, s/cygwin.h, s/hpux10-20.h:
12354 Remove VIRT_ADDR_VARIES no longer needed.
12355
12356 2011-11-19 Eli Zaretskii <eliz@gnu.org>
12357
12358 * xdisp.c (x_write_glyphs, draw_phys_cursor_glyph)
12359 (erase_phys_cursor, update_window_cursor, show_mouse_face)
12360 (cursor_in_mouse_face_p): If the cursor position is out of bounds,
12361 behave as if the cursor position were at the window margin.
12362
12363 * window.c (get_phys_cursor_glyph): If the window is hscrolled,
12364 and the cursor position is out of bounds, behave as if the cursor
12365 position were at the window margin. (Bug#10075)
12366
12367 2011-11-18 Chong Yidong <cyd@gnu.org>
12368
12369 * window.c (Fwindow_combination_limit): Make first argument
12370 non-optional, since it is meaningless for live windows like the
12371 selected window.
12372
12373 2011-11-18 Dmitry Antipov <dmantipov@yandex.ru>
12374
12375 * keymap.c (Fwhere_is_internal): Add missing RETURN_UNGCPROs.
12376
12377 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
12378
12379 * intervals.c: Fix grafting over the whole buffer (bug#10071).
12380 (graft_intervals_into_buffer): Simplify.
12381
12382 2011-11-18 Eli Zaretskii <eliz@gnu.org>
12383
12384 * dispnew.c (swap_glyph_pointers): Swap the used[] arrays and the
12385 hash values of the two rows.
12386 (copy_row_except_pointers): Preserve the used[] arrays and the
12387 hash values of the two rows. (Bug#10035)
12388 (add_row_entry): Add xassert to verify that ROW's hash code is valid.
12389
12390 * xdisp.c (row_hash): New function, body extracted from
12391 compute_line_metrics.
12392 (compute_line_metrics): Call row_hash, instead of computing the
12393 hash code inline.
12394
12395 * dispnew.c (verify_row_hash): Call row_hash for computing the
12396 hash code of a row, instead of duplicating code from xdisp.c.
12397
12398 * dispextern.h (row_hash): Add prototype.
12399
12400 2011-11-18 Tassilo Horn <tassilo@member.fsf.org>
12401
12402 * frame.c (delete_frame): Don't delete the terminal when the last
12403 X frame is closed if emacs is built with GTK toolkit.
12404
12405 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
12406
12407 * window.c (syms_of_window) <window-combination-resize>: Fix typo.
12408
12409 2011-11-17 Martin Rudalics <rudalics@gmx.at>
12410
12411 * window.c (Vwindow_splits): Rename to
12412 Vwindow_combination_resize. Suggested by Juri Linkov.
12413 (Fsplit_window_internal): Use Vwindow_combination_resize instead
12414 of Vwindow_splits.
12415
12416 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
12417
12418 * nsfns.m (Fns_font_name):
12419 * window.c (syms_of_window) <window-combination-limit>: Fix typos.
12420
12421 2011-11-16 Martin Rudalics <rudalics@gmx.at>
12422
12423 * window.h (window): Rename slot "nest" to "combination_limit".
12424 * window.c (Fwindow_nest): Rename to Fwindow_combination_limit.
12425 (Fset_window_nest): Rename to Fset_window_combination_limit.
12426 (Vwindow_nest): Rename to Vwindow_combination_limit.
12427 (recombine_windows, make_parent_window, make_window)
12428 (Fsplit_window_internal, saved_window)
12429 (Fset_window_configuration, save_window_save): Rename all
12430 occurrences of window_nest to window_combination_limit.
12431
12432 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
12433
12434 * image.c (imagemagick_load_image): Fix typo.
12435
12436 2011-11-14 Eli Zaretskii <eliz@gnu.org>
12437
12438 * xdisp.c (display_line): Move the call to
12439 highlight_trailing_whitespace before the call to
12440 compute_line_metrics, since the latter needs to see the final
12441 faces of all the glyphs to compute ROW's hash value.
12442 Fixes assertion violations in row_equal_p. (Bug#10035)
12443
12444 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
12445
12446 * w32proc.c (reader_thread): Don't check pending input if cp->fd < 0,
12447 just return (bug#10044).
12448
12449 2011-11-12 Eli Zaretskii <eliz@gnu.org>
12450
12451 * makefile.w32-in (HEAPSIZE): New variable, allows to build temacs
12452 with user-defined heap size. Bump the default size of the temacs
12453 heap to 27MB, to avoid memory warning when running temacs.
12454 ($(TEMACS)): Use HEAPSIZE instead of a hardcoded value.
12455
12456 * dispnew.c (scrolling_window): Fix incorrect indices in accessing
12457 current_matrix and desired_matrix. (Bug#9990)
12458 (verify_row_hash) [XASSERTS]: New function.
12459 (adjust_glyph_matrix, row_equal_p): Use it in xassert to verify
12460 that the hash value of glyph rows is correct.
12461
12462 2011-11-12 Martin Rudalics <rudalics@gmx.at>
12463
12464 * window.h (window): Remove splits slot.
12465 * window.c (Fwindow_splits, Fset_window_splits): Remove.
12466 (Fdelete_other_windows_internal, make_parent_window)
12467 (make_window, Fsplit_window_internal, Fdelete_window_internal)
12468 (Fset_window_configuration, save_window_save): Don't deal with
12469 split status of windows.
12470 (saved_window): Remove splits slot.
12471 (Vwindow_splits): Rewrite doc-string.
12472
12473 2011-11-11 Jan Djärv <jan.h.d@swipnet.se>
12474
12475 * xfns.c (unwind_create_frame):
12476 * nsfns.m (unwind_create_frame):
12477 * w32fns.c (unwind_create_frame): Use Fmemq to check if frame is in
12478 Vframe_list (Bug#9999).
12479
12480 2011-11-11 Dmitry Antipov <dmantipov@yandex.ru>
12481
12482 * xdisp.c (syms_of_xdisp): Remove duplicated definition of Qtext.
12483
12484 2011-11-11 Kenichi Handa <handa@m17n.org>
12485
12486 * callproc.c (Fcall_process): Set the member dst_multibyte of
12487 process_coding.
12488
12489 2011-11-11 Johan Bockgård <bojohan@gnu.org>
12490
12491 * xdisp.c (fill_composite_glyph_string): Always set s->face, to
12492 avoid a crash (bug#9496).
12493
12494 2011-11-09 Chong Yidong <cyd@gnu.org>
12495
12496 * window.c (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
12497 (Fwindow_inside_absolute_pixel_edges): Only allow live windows.
12498
12499 2011-11-08 Paul Eggert <eggert@cs.ucla.edu>
12500
12501 * s/gnu.h (GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS (Bug#9926).
12502
12503 2011-11-08 Paul Eggert <eggert@cs.ucla.edu>
12504
12505 Avoid some portability problems by eschewing 'extern inline' functions.
12506 The trivial performance wins aren't worth the portability hassles; see
12507 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>
12508 et seq.
12509 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
12510 (window_box_width, window_box_left, window_box_left_offset)
12511 (window_box_right, window_box_right_offset): Undo previous change,
12512 by removing the "extern"s.
12513 * intervals.c (adjust_intervals_for_insertion)
12514 (adjust_intervals_for_deletion): Undo previous change,
12515 making these static again.
12516 (offset_intervals, temp_set_point_both, temp_set_point)
12517 (copy_intervals_to_string): No longer inline.
12518 * xdisp.c (window_text_bottom_y, window_box_width)
12519 (window_box_height, window_box_left_offset)
12520 (window_box_right_offset, window_box_left, window_box_right)
12521 (window_box): No longer inline.
12522
12523 2011-11-08 Chong Yidong <cyd@gnu.org>
12524
12525 * window.c (Fwindow_left_column, Fwindow_top_line): Doc fix.
12526 (Fwindow_body_height, Fwindow_body_width): Move from Lisp.
12527 Signal an error if not a live window.
12528 (Fwindow_total_width, Fwindow_total_height): Move from Lisp.
12529 (Fwindow_total_size, Fwindow_body_size): Move to Lisp.
12530
12531 2011-11-07 Juanma Barranquero <lekktu@gmail.com>
12532
12533 * lisp.h (syms_of_abbrev): Remove declaration.
12534 Reported by CHENG Gao <chenggao@royau.me>.
12535
12536 2011-11-07 Eli Zaretskii <eliz@gnu.org>
12537
12538 * w32.c (check_windows_init_file): Don't look for term/w32-win.el
12539 if Vpurify_flag is non-nil. Fixes a crash when running w32 build
12540 of temacs in GUI mode.
12541
12542 2011-11-07 Martin Rudalics <rudalics@gmx.at>
12543
12544 * window.h: Declare delete_all_child_windows instead of
12545 delete_all_subwindows.
12546 * window.c (Fwindow_nest, Fset_window_nest)
12547 (Fset_window_new_total, Fset_window_new_normal)
12548 (Fwindow_resize_apply): Don't use term subwindow in doc-strings.
12549 (delete_all_subwindows): Rename to delete_all_child_windows.
12550 (Fdelete_other_windows_internal, Fset_window_configuration):
12551 Call delete_all_child_windows instead of delete_all_subwindows.
12552 * frame.c (delete_frame): Call delete_all_child_windows instead
12553 of delete_all_subwindows.
12554
12555 2011-11-07 Paul Eggert <eggert@cs.ucla.edu>
12556
12557 * alloc.c (DEADP): New macro, for porting to GNU/Hurd (Bug#9926).
12558 This is also needed for porting to any host where GC_MARK_STACK is
12559 not GC_MAKE_GCPROS_NOOPS.
12560 (which_symbols): Use it.
12561
12562 2011-11-07 Kenichi Handa <handa@m17n.org>
12563
12564 * coding.c (coding_set_destination): Check coding->src_pos only
12565 when coding->src_object is a buffer (bug#9910).
12566
12567 * process.c (send_process): Set the member src_multibyte of coding
12568 to 0 (bug#9911) when sending a unibyte text.
12569
12570 * callproc.c (Fcall_process): Set the member src_multibyte of
12571 process_coding to 0 (bug#9912).
12572
12573 2011-11-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12574
12575 * xmenu.c (cleanup_widget_value_tree): New function.
12576 (xmenu_show, xdialog_show): Use it in record_unwind_protect instead of
12577 calling free_menubar_widget_value_tree directly (Bug#9830).
12578
12579 2011-11-06 Paul Eggert <eggert@cs.ucla.edu>
12580
12581 Fix some portability problems with 'inline'.
12582 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
12583 (window_box_width, window_box_left, window_box_left_offset)
12584 (window_box_right, window_box_right_offset): Declare extern.
12585 Otherwise, these inline functions do not conform to C99 and
12586 are miscompiled by Microsoft compilers. Reported by Eli Zaretskii in
12587 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>.
12588 * intervals.c (adjust_intervals_for_insertion)
12589 (adjust_intervals_for_deletion): Now extern, because otherwise the
12590 extern inline functions 'offset_intervals' couldn't refer to it.
12591 (static_offset_intervals): Remove.
12592 (offset_intervals): Rewrite using the old contents of
12593 static_offset_intervals. The old version didn't conform to C99
12594 because an extern inline function contained a reference to an
12595 identifier with static linkage.
12596
12597 2011-11-06 Andreas Schwab <schwab@linux-m68k.org>
12598
12599 * keyboard.c (interrupt_signal): Don't call kill-emacs while in
12600 GC.
12601
12602 2011-11-06 Eli Zaretskii <eliz@gnu.org>
12603
12604 * xdisp.c (init_iterator, reseat_to_string): Don't set the
12605 iterator's bidi_p flag if Vpurify_flag is non-nil. (Bug#9963)
12606 (Fcurrent_bidi_paragraph_direction): If Vpurify_flag is non-nil,
12607 return Qleft_to_right.
12608
12609 2011-11-06 Chong Yidong <cyd@gnu.org>
12610
12611 * window.c (Fwindow_live_p, Fwindow_frame, Fframe_root_window)
12612 (Fminibuffer_window, Fwindow_buffer, Fwindow_splits)
12613 (Fset_window_splits, Fwindow_nest, Fset_window_nest)
12614 (Fwindow_use_time, Fwindow_total_size, Fwindow_normal_size)
12615 (Fwindow_new_normal, Fwindow_left_column, Fwindow_top_line)
12616 (Fwindow_margins, Fwindow_fringes, Fwindow_scroll_bars)
12617 (Fwindow_vscroll): Doc fix.
12618 (Fwindow_top_child, Fwindow_left_child): Eliminate a nil default
12619 argument, since it makes no sense to pass a live window and for
12620 consistency with window-child.
12621
12622 2011-11-05 Christoph Scholtes <cschol2112@googlemail.com>
12623
12624 * makefile.w32-in ($(TEMACS), (gl-stamp)): Use $(THISDIR) to
12625 support MSVC.
12626
12627 2011-11-05 Jason Rumney <jasonr@gnu.org>
12628
12629 * w32font.c (font_matches_spec): Filter out non-Japanese kana fonts.
12630 (add_font_entity_to_list): Filter out non-Japanese Shift-JIS
12631 fonts (Bug#6029).
12632 (add_font_entity_to_list): Fix logic errors in mixed boolean and
12633 bitwise arithmetic preventing use of unicode-sip and non-truetype
12634 opentype fonts.
12635
12636 2011-11-05 Eli Zaretskii <eliz@gnu.org>
12637
12638 * s/ms-w32.h (fstat, stat, utime): Move redirections to
12639 "emacs"-only part.
12640
12641 * w32fns.c (x_create_tip_frame, Fx_create_frame): Rearrange
12642 initialization code to keep similarity to xfns.c after changes
12643 from 2011-11-05.
12644
12645 2011-11-05 Jan Djärv <jan.h.d@swipnet.se>
12646
12647 * nsfns.m: Declare image_cache_refcount if GLYPH_DEBUG.
12648 (unwind_create_frame): New function (Bug#9943).
12649 (Fx_create_frame): Restructure code to be more similar to the one in
12650 xfns.c. Call record_unwind_protect with unwind_create_frame (Bug#9943).
12651 Initialize image_cache_refcount if GLYPH_DEBUG (Bug#9943).
12652 Move terminal->reference_count++ just before making the frame official
12653 (Bug#9943).
12654
12655 * nsterm.m (x_free_frame_resources): New function.
12656 (x_destroy_window): Move code to x_free_frame_resources.
12657
12658 * xfns.c (unwind_create_frame): Fix comment.
12659 (Fx_create_frame, x_create_tip_frame):
12660 Move terminal->reference_count++ just before making the frame
12661 official. Move initialization of image_cache_refcount and
12662 dpyinfo_refcount before calling init_frame_faces (Bug#9943).
12663
12664 2011-11-05 Eli Zaretskii <eliz@gnu.org>
12665
12666 Support MSVC build with newer versions of Visual Studio.
12667 * makefile.w32-in (TAGS-gmake): Don't use $(patsubst ...), as
12668 Nmake barfs on that. Use $(OBJ*_c) variables instead, defined on
12669 nt/gmake.defs.
12670
12671 * lisp.h (ENUM_BF): New macro, for enumerated types in bitfields,
12672 which are not supported by MSVC.
12673 (Lisp_Symbol, Lisp_Misc_Any, Lisp_Marker, Lisp_Misc_Overlay)
12674 (Lisp_Save_Value, Lisp_Free): Use ENUM_BF for enumerated types in
12675 bitfields.
12676 (Lisp_Object) [USE_LISP_UNION_TYPE]: Use ENUM_BF for enumerated
12677 types in bitfields.
12678 (DEFUN) [_MSC_VER]: Define in a different way for MSVC.
12679
12680 * w32fns.c [_MSC_VER]: DECLARE_HANDLE for any MSVC version.
12681
12682 2011-11-05 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
12683
12684 Support MSVC build with newer versions of Visual Studio.
12685 * w32.c: Don't include w32api.h for MSVC.
12686 (init_environment) [_MSC_VER]: Call sys_access, not _access.
12687
12688 * s/ms-w32.h <sigset_t, ssize_t> [_MSC_VER]: Typedefs for MSVC.
12689 [_MSC_VER]: Include sys/timeb.h, sys/stat.h, and signal.h.
12690 (fstat, stat, utime) [_MSC_VER]: Redirect to their sys_* cousins.
12691 (malloc, free, realloc, calloc) [_MSC_VER]: Always redirect to the
12692 e_* cousins.
12693 (alloca) [_MSC_VER]: Define to _alloca.
12694
12695 * lisp.h (DECL_ALIGN) [_MSC_VER]: Define for MSVC.
12696
12697 * regex.c <re_char> [_MSC_VER]: A separate definition for MSVC.
12698
12699 2011-11-04 Eli Zaretskii <eliz@gnu.org>
12700
12701 * xdisp.c (note_mouse_highlight): If either of
12702 previous/next-single-property-change returns nil, treat that as
12703 the beginning or the end of the buffer. (Bug#9955)
12704
12705 2011-11-04 Jan Djärv <jan.h.d@swipnet.se>
12706
12707 * gtkutil.c (xg_make_tool_item): Add callbacks if one of wimage or
12708 label is not null (Bug#9951).
12709 (xg_tool_item_stale_p): Handle the fact that wimage and/or wlbl
12710 may be NULL.
12711
12712 2011-11-04 Eli Zaretskii <eliz@gnu.org>
12713
12714 * window.c (Fwindow_body_size): Mention in the doc string that the
12715 return value is in frame's canonical units. (Bug#9949)
12716
12717 2011-11-03 Eli Zaretskii <eliz@gnu.org>
12718
12719 * xdisp.c (note_mouse_highlight): Initialize `area'. (Bug#9947)
12720
12721 * w32fns.c (unwind_create_frame): If needed, free the glyph
12722 matrices of the partially constructed frame. (Bug#9943)
12723 * xfns.c (unwind_create_frame): Likewise.
12724
12725 2011-11-01 Eli Zaretskii <eliz@gnu.org>
12726
12727 * xdisp.c (mouse_face_from_buffer_pos): Fix a typo in a comment.
12728 Don't stop backward scan on the continuation glyph, even though
12729 its CHARPOS is positive.
12730 (mouse_face_from_buffer_pos, note_mouse_highlight):
12731 Rename cover_string to disp_string.
12732
12733 2011-11-01 Martin Rudalics <rudalics@gmx.at>
12734
12735 * window.c (temp_output_buffer_show): Don't use
12736 Vtemp_buffer_show_specifiers.
12737 (Vtemp_buffer_show_specifiers): Remove unused variable.
12738
12739 2011-10-30 Eli Zaretskii <eliz@gnu.org>
12740
12741 * xdisp.c (try_cursor_movement): Make sure ROW isn't decremented
12742 past the beginning of the current glyph matrix.
12743
12744 2011-10-30 Adam Sjøgren <asjo@koldfront.dk> (tiny change)
12745
12746 * xterm.c: Include X11/Xproto.h if HAVE_GTK3.
12747 (x_error_handler): Ignore BadMatch for X_SetInputFocus for
12748 HAVE_GTK3 (Bug#9869).
12749
12750 * gtkutil.c (xg_win_to_widget, xg_event_is_for_menubar): Initialize
12751 type to GDK_NOTHING so valgrind does not complain (Bug#9901).
12752
12753 * xterm.h (x_display_info): Add Xatom_net_wm_state_hidden (Bug#9893).
12754
12755 * xterm.c: Declare x_handle_net_wm_state to return int.
12756 (handle_one_xevent): Check if we are iconified but don't have
12757 _NET_WM_STATE_HIDDEN. If do, treat as deiconify (Bug#9893).
12758 (get_current_wm_state): Return non-zero if not hidden,
12759 check for _NET_WM_STATE_HIDDEN (Bug#9893).
12760 (do_ewmh_fullscreen): Ignore return value from get_current_wm_state.
12761 (x_handle_net_wm_state): Return what get_current_wm_state returns.
12762 (x_term_init): Initialize dpyinfo->Xatom_net_wm_state_hidden.
12763
12764 2011-10-29 Paul Eggert <eggert@cs.ucla.edu>
12765
12766 * alloc.c (which_symbols): Declare EXTERNALLY_VISIBLE,
12767 so that this new function doesn't get optimized away by a
12768 whole-program optimizer. Make the 2nd arg EMACS_INT, not int.
12769
12770 2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
12771
12772 * frame.h (MOUSE_HL_INFO): Remove excess parens.
12773
12774 2011-10-29 Eli Zaretskii <eliz@gnu.org>
12775
12776 Fix the `xbytecode' command.
12777 * .gdbinit (xprintbytestr): New command.
12778 (xwhichsymbols): Rename from `which'; all callers changed.
12779 (xbytecode): Print the byte-code string as well.
12780
12781 2011-10-29 Kim Storm <storm@cua.dk>
12782
12783 * alloc.c (which_symbols): New function.
12784
12785 2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
12786
12787 * minibuf.c (read_minibuf_noninteractive): Allow reading empty
12788 line. (Bug#9903)
12789
12790 2011-10-29 Glenn Morris <rgm@gnu.org>
12791
12792 * process.c (wait_reading_process_output): Revert 2009-08-30 change.
12793 Not clear what it was for, and it causes various bugs. (Bug#9839)
12794
12795 2011-10-28 Eli Zaretskii <eliz@gnu.org>
12796
12797 * xdisp.c (note_mouse_highlight): Initialize `part', to avoid a
12798 possible random value that matches one of those tested as
12799 condition to clear the mouse face.
12800
12801 2011-10-28 Chong Yidong <cyd@gnu.org>
12802
12803 * xdisp.c (note_mouse_highlight): Fix use of uninitialized var.
12804
12805 2011-10-28 Dan Nicolaescu <dann@ics.uci.edu>
12806
12807 * window.c (make_window): Initialize phys_cursor_on_p.
12808
12809 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
12810
12811 * lisp.h (struct Lisp_Symbol): Update comments.
12812
12813 2011-10-28 Juanma Barranquero <lekktu@gmail.com>
12814
12815 * w32font.c (w32_load_unicows_or_gdi32): Add missing return.
12816
12817 2011-10-28 Eli Zaretskii <eliz@gnu.org>
12818
12819 Fix Emacs on Windows 9X (bug#8562). Thanks to oslsachem
12820 <oslsachem@gmail.com> for helping to debug this.
12821
12822 * w32font.c (g_b_init_is_w9x, g_b_init_get_outline_metrics_w)
12823 (g_b_init_get_text_metrics_w, g_b_init_get_glyph_outline_w)
12824 (g_b_init_get_glyph_outline_w): New static variables.
12825 (GetOutlineTextMetricsW_Proc, GetTextMetricsW_Proc)
12826 (GetGlyphOutlineW_Proc): New typedefs.
12827 (w32_load_unicows_or_gdi32, get_outline_metrics_w)
12828 (get_text_metrics_w, get_glyph_outline_w, globals_of_w32font):
12829 New functions.
12830 (w32font_open_internal, compute_metrics):
12831 Call get_outline_metrics_w, get_text_metrics_w, and get_glyph_outline_w
12832 instead of calling the "wide" APIs directly.
12833
12834 * emacs.c (main) [HAVE_NTGUI]: Call globals_of_w32font.
12835
12836 * w32.h (syms_of_w32font): Add prototype.
12837
12838 2011-10-27 Juanma Barranquero <lekktu@gmail.com>
12839
12840 * window.c (Fframe_root_window, Fframe_first_window, Fwindow_end)
12841 (Fframe_selected_window, Ftemp_output_buffer_show, Fnext_window)
12842 (Fdelete_window_internal, Fwindow_parameters): Fix typos in docstrings.
12843 (Fmove_to_window_line): Doc fix.
12844
12845 2011-10-27 Chong Yidong <cyd@gnu.org>
12846
12847 * process.c (make_process): Set gnutls_state to NULL.
12848
12849 * gnutls.c (emacs_gnutls_deinit): Deinit the gnutls_state if it is
12850 non-NULL, regardless of GNUTLS_INITSTAGE.
12851 (Fgnutls_boot): Cleanups. Call emacs_gnutls_deinit if we signal
12852 an error. Set process slots as soon as we allocate them.
12853
12854 * gnutls.h (GNUTLS_LOG, GNUTLS_LOG2): Fix macros.
12855
12856 2011-10-27 Chong Yidong <cyd@gnu.org>
12857
12858 * gnutls.c (emacs_gnutls_deinit): New function.
12859 Deallocate credentials structures as well as calling gnutls_deinit.
12860 (Fgnutls_deinit, Fgnutls_boot): Use it.
12861
12862 * process.c (make_process): Initialize GnuTLS credentials to NULL.
12863 (deactivate_process): Call emacs_gnutls_deinit.
12864
12865 2011-10-27 Juanma Barranquero <lekktu@gmail.com>
12866
12867 * image.c (x_create_x_image_and_pixmap):
12868 * w32.c (sys_rename, w32_delayed_load):
12869 * w32font.c (fill_in_logfont):
12870 * w32reg.c (x_get_string_resource): Silence compiler warnings.
12871
12872 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
12873
12874 * w32fns.c (w32_default_color_map): New function,
12875 extracted from Fw32_default_color_map.
12876 (Fw32_default_color_map, Fx_open_connection): Use it. (Bug#9785)
12877
12878 2011-10-25 Paul Eggert <eggert@cs.ucla.edu>
12879
12880 * dispextern.h (Fcontrolling_tty_p): New decl (Bug#6649 part 2).
12881
12882 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
12883
12884 * keyboard.c (test_undefined): New function (bug#9751).
12885 (read_key_sequence): Use it to detect when a key is bound to `undefined'.
12886
12887 2011-10-25 Enami Tsugutomo <tsugutomo.enami@jp.sony.com>
12888
12889 * sysdep.c (init_sys_modes): Fix the check for the controlling
12890 terminal (Bug#6649).
12891
12892 2011-10-20 Eli Zaretskii <eliz@gnu.org>
12893
12894 * dispextern.h (struct bidi_it): New member next_en_type.
12895
12896 * bidi.c (bidi_line_init): Initialize the next_en_type member.
12897 (bidi_resolve_explicit_1): When next_en_pos is valid for the
12898 current character, check also for next_en_type being WEAK_EN.
12899 (bidi_resolve_weak): Don't enter the expensive loop if the current
12900 position is before next_en_pos. Record the bidi type of the first
12901 non-ET, non-BN character we find, in addition to its position.
12902 (bidi_level_of_next_char): Invalidate next_en_type when
12903 next_en_pos is over-stepped.
12904
12905 2011-10-20 Paul Eggert <eggert@cs.ucla.edu>
12906
12907 Time zone name fixes for non-ASCII locales (Bug#641, Bug#9794)
12908 * editfns.c: Rewrite current-time-zone so that it invokes
12909 the equivalent of (format-time-string "%Z") to get the time zone name.
12910 This fixes a bug when the time zone name contains characters that
12911 need converting from the system time locale to Emacs internal format.
12912 This fixes a shortcoming that I introduced in my 1999-10-19 patch:
12913 that patch fixed format-time-string to do the conversion, but
12914 I forgot to fix current-time-zone.
12915 (format_time_string): New function, containing most of
12916 what Fformat_time_string used to contain.
12917 (Fformat_time_string): Rewrite in terms of format_time_string.
12918 This doesn't change this function's behavior.
12919 (current-time-zone): Rewrite to use format_time_string.
12920 This fixes the bug reported by Michael Schierl in
12921 <http://lists.gnu.org/archive/html/emacs-devel/2007-06/msg00334.html>.
12922 Jason Rumney's 2007-06-07 change worked around this bug, but
12923 didn't fix it.
12924 * systime.h (tzname, timezone): Remove no-longer-used declarations.
12925
12926 2011-10-19 Eli Zaretskii <eliz@gnu.org>
12927
12928 * xdisp.c (start_display): If the character at POS is displayed
12929 via a display vector, reset IT->current.dpvec_index to zero.
12930 (try_window_reusing_current_matrix): If a line ends in a display
12931 vector or the next line starts in a display vector, continue
12932 redrawing the window even though the character position of
12933 start_row was reached.
12934 (Bug#9771, part 2)
12935
12936 2011-10-18 Chong Yidong <cyd@gnu.org>
12937
12938 * xdisp.c (get_next_display_element): Handle U+2010 and U+2011
12939 with nobreak-char-display too.
12940
12941 2011-10-18 Eli Zaretskii <eliz@gnu.org>
12942
12943 Fix part 3 of bug#9771.
12944 * bidi.c (bidi_line_init): Initialize next_en_pos to zero, not -1.
12945 (bidi_resolve_neutral): Don't enter the expensive loop looking for
12946 non-neutral characters if the current character is a paragraph
12947 separator (a.k.a. Newline). This avoids running the same
12948 expensive loop twice, once when we consume the preceding newline
12949 and the other time when the line actually needs to be displayed.
12950 Avoid the loop when we see neutrals on the base embedding level
12951 following a character whose directionality is the same as the
12952 paragraph's. This avoids running the expensive loop when a line
12953 ends in a long sequence of neutrals, like control characters.
12954 Add assertion against STRONG_AL type. Slightly rearrange code
12955 that determines the type of a neutral given the first non-neutral
12956 that follows it.
12957 (bidi_level_of_next_char): Set next_en_pos to zero when
12958 invalidating its info.
12959
12960 2011-10-17 Eli Zaretskii <eliz@gnu.org>
12961
12962 * xdisp.c (push_display_prop): Determine whether to record string
12963 or buffer position by IT->string, not by IT->method. Allow
12964 GET_FROM_DISPLAY_VECTOR as IT->method on entry. (Bug#9771, part 4)
12965 (move_it_vertically_backward): Don't look for character position
12966 immediately after the newline when in a continuation line.
12967 (Bug#9771, part 1)
12968
12969 2011-10-15 Martin Rudalics <rudalics@gmx.at>
12970
12971 * window.c (coordinates_in_window): Rewrite and delabelize
12972 vertical border check. (Bug#5357) (Bug#9618)
12973
12974 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
12975
12976 * xterm.c (frame_highlight, frame_unhighlight): Ignore unexplained
12977 errors in XSetWindowBorder (bug#9310).
12978
12979 2011-10-13 Dmitry Antipov <dmantipov@yandex.ru>
12980
12981 * editfns.c (Fset_time_zone_rule): Replace free with xfree to
12982 avoid crash when xmalloc overrun checking is enabled.
12983
12984 2011-10-13 Eli Zaretskii <eliz@gnu.org>
12985
12986 * xdisp.c (Fcurrent_bidi_paragraph_direction): Initialize
12987 itb.paragraph_dir to NEUTRAL_DIR. Fixes an occasional incorrect
12988 cursor motion with <left> and <right> arrow keys.
12989
12990 * bidi.c (bidi_init_it): Don't initialize paragraph_dir here, as
12991 some callers set that themselves.
12992
12993 2011-10-12 Eli Zaretskii <eliz@gnu.org>
12994
12995 * xdisp.c (find_row_edges): Handle the case where ROW comes from a
12996 display string and the previous row comes from the same string and
12997 is empty. (Bug#9739) (Bug#9738)
12998
12999 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
13000
13001 * doc.c (get_doc_string): Encode file name (bug#9735).
13002
13003 2011-10-12 Eli Zaretskii <eliz@gnu.org>
13004
13005 * bidi.c (bidi_level_of_next_char):
13006 * xdisp.c (get_visually_first_element): Remove old incorrect
13007 comments regarding the Unicode Line Separator character.
13008
13009 * bidi.c (bidi_init_it): Initialize paragraph_dir to NEUTRAL_DIR.
13010
13011 2011-10-12 Dmitry Antipov <dmantipov@yandex.ru>
13012
13013 * alloc.c (Fgc_status): Do not access beyond zombies array
13014 boundary if nzombies > MAX_ZOMBIES.
13015 * alloc.c (dump_zombies): Add missing format specifier.
13016
13017 2011-10-12 Paul Eggert <eggert@cs.ucla.edu>
13018
13019 * xdisp.c (set_cursor_from_row): Simplify conditionals,
13020 to pacify GCC 4.6.1 x86-64 with -O2 -Wstrict-overflow.
13021
13022 * lread.c (read_escape): Allow hex escapes as large as ?\xfffffff.
13023 Some packages use them to denote characters with modifiers.
13024
13025 2011-10-11 Andreas Schwab <schwab@linux-m68k.org>
13026
13027 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR)
13028 (GCPRO5_VAR, GCPRO6_VAR, UNGCPRO_VAR): Add whitespace to avoid
13029 matching a pp-number. Rename parameter var to var1.
13030
13031 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
13032
13033 * minibuf.c (Finternal_complete_buffer): Fix last change (bug#9709).
13034
13035 2011-10-08 Glenn Morris <rgm@gnu.org>
13036
13037 * callint.c (Fcall_interactively): Give a more explicit error for the
13038 'c' case with a non-character input. (Bug#8479)
13039
13040 2011-10-08 Eli Zaretskii <eliz@gnu.org>
13041
13042 * xdisp.c (hscroll_window_tree): Support hscroll in right-to-left
13043 lines.
13044 (set_cursor_from_row): Fix cursor positioning in mixed L2R+R2L
13045 lines that are hscrolled on the left.
13046
13047 * dispnew.c (buffer_posn_from_coords): Account for a possible
13048 presence of header-line. (Bug#4426)
13049
13050 2011-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
13051
13052 * buffer.c (syms_of_buffer) <enable-multibyte-characters>:
13053 Don't advertise functionality which we discourage or doesn't work.
13054
13055 2011-10-07 Paul Eggert <eggert@cs.ucla.edu>
13056
13057 * alloc.c (GC_LISP_OBJECT_ALIGNMENT): Use offsetof, not __alignof__
13058 or sizeof. __alignof__ gives the wrong answer on Fedora x86-64
13059 with GCC 4.6.1 when configured with CC='gcc -m32' --with-wide-int;
13060 this makes Emacs dump core during garbage collection on rare
13061 occasions. sizeof is obviously inferior to offsetof here, so
13062 stick with offsetof.
13063 (GC_POINTER_ALIGNMENT): New macro.
13064 (mark_memory): Omit 3rd (offset) arg; caller changed.
13065 Don't assume EMACS_INT alignment is the same as pointer alignment.
13066
13067 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
13068
13069 * keyboard.c (read_key_sequence_remapped): New var.
13070 (read_key_sequence): Compute remapping in the right buffer.
13071 (command_loop_1): Use read_key_sequence's remapping directly.
13072
13073 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
13074
13075 * dired.c (file_name_completion): Don't expand file name.
13076 (Ffile_name_completion, Ffile_name_all_completions): Expand file name
13077 before checking file name handler.
13078
13079 * minibuf.c (Finternal_complete_buffer): Only show internal buffers if
13080 they've been requested explicitly (bug#9591).
13081
13082 2011-10-01 Andreas Schwab <schwab@linux-m68k.org>
13083
13084 * keymap.c (Fsingle_key_description): Use make_specified_string
13085 instead of build_string to build string from push_key_description.
13086 (Bug#5193)
13087
13088 2011-09-30 Paul Eggert <eggert@cs.ucla.edu>
13089
13090 * buffer.h (struct buffer): Use time_t, not int, for a time stamp.
13091 This fixes a Y2038 bug on 64-bit hosts.
13092 * buffer.c (reset_buffer):
13093 * fileio.c (Fdo_auto_save, Fset_buffer_auto_saved)
13094 (Fclear_buffer_auto_save_failure):
13095 Use 0, not -1, to represent an unset failure time, since time_t
13096 might not be signed.
13097
13098 Remove dependency on glibc malloc internals.
13099 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
13100 Move back here from lisp.h, but with their new implementations.
13101 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
13102 (XMALLOC_OVERRUN_SIZE_SIZE): Move these new lisp.h macros here.
13103 * charset.c (charset_table_init): New static var.
13104 (syms_of_charset): Use it instead of xmalloc. This removes a
13105 dependency on glibc malloc internals. See Eli Zaretskii's comment in
13106 <http://lists.gnu.org/archive/html/emacs-devel/2011-09/msg00815.html>.
13107 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
13108 Move back to alloc.c.
13109 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
13110 (XMALLOC_OVERRUN_SIZE_SIZE): Move to alloc.c.
13111
13112 2011-09-30 Jan Djärv <jan.h.d@swipnet.se>
13113
13114 * nsterm.m (windowDidResize): Call x_set_window_size only when
13115 ns_in_resize is true. Otherwise set pixelwidth/height and
13116 call change_frame_size (Bug#9628).
13117
13118 2011-09-30 Paul Eggert <eggert@cs.ucla.edu>
13119
13120 Port --enable-checking=all to Fedora 14 x86-64.
13121 * charset.c (syms_of_charset): Also account for glibc malloc's
13122 internal overhead when calculating the initial malloc maximum.
13123
13124 Port --enable-checking=all to Fedora 14 x86.
13125 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
13126 Move to lisp.h.
13127 (xmalloc_put_size, xmalloc_get_size, overrun_check_malloc)
13128 (overrun_check_realloc, overrun_check_free):
13129 Use XMALLOC_OVERRUN_SIZE_SIZE, not sizeof (size_t).
13130 That way, xmalloc returns a properly-aligned pointer even if
13131 XMALLOC_OVERRUN_CHECK is defined. The old debugging code happened
13132 to align OK on typical 64-bit hosts, but not on Fedora 14 x86.
13133 * charset.c (syms_of_charset): Take XMALLOC_OVERRUN_CHECK_OVERHEAD
13134 into account when calculating the initial malloc maximum.
13135 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
13136 Move here from alloc.c, so that charset.c can use it too.
13137 Properly align; the old code wasn't right for common 32-bit hosts
13138 when configured with --enable-checking=all.
13139 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
13140 (XMALLOC_OVERRUN_SIZE_SIZE): New macros.
13141
13142 2011-09-29 Eli Zaretskii <eliz@gnu.org>
13143
13144 * sysdep.c (snprintf) [!EOVERFLOW]: If EOVERFLOW is not defined,
13145 use EDOM.
13146
13147 2011-09-28 Eli Zaretskii <eliz@gnu.org>
13148
13149 * xdisp.c (compute_display_string_end): If there's no display
13150 string at CHARPOS, return -1.
13151
13152 * bidi.c (bidi_fetch_char): When compute_display_string_end
13153 returns a negative value, treat the character as a normal
13154 character not covered by a display string. (Bug#9624)
13155
13156 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
13157
13158 * lread.c (Fread_from_string): Fix typo in docstring.
13159
13160 2011-09-27 Eli Zaretskii <eliz@gnu.org>
13161
13162 * xdisp.c (handle_invisible_prop): If invisible text ends on a
13163 newline, reseat the iterator instead of bidi-iterating there one
13164 character at a time. (Bug#9610)
13165 (BUFFER_POS_REACHED_P, move_it_in_display_line_to): Bail when past
13166 TO_CHARPOS if the bidi iterator is at base embedding level.
13167
13168 2011-09-27 Andreas Schwab <schwab@linux-m68k.org>
13169
13170 * lread.c (readevalloop): Use correct code for NBSP.
13171 (read1): Likewise. (Bug#9608)
13172
13173 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
13174
13175 * dbusbind.c (Fdbus_register_signal): When service is not
13176 registered, use nil in Vdbus_registered_objects_table. (Bug#9581)
13177
13178 2011-09-25 Glenn Morris <rgm@gnu.org>
13179
13180 * buffer.c (truncate-lines): Doc fix.
13181
13182 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
13183
13184 * window.c (Fwindow_prev_buffers, Fset_window_prev_buffers)
13185 (Fset_window_next_buffers): Doc fix.
13186
13187 2011-09-24 Glenn Morris <rgm@gnu.org>
13188
13189 * minibuf.c (read_minibuf): Disable line truncation. (Bug#5715)
13190
13191 2011-09-24 Paul Eggert <eggert@cs.ucla.edu>
13192
13193 Fix minor problems found by static checking.
13194 * xdisp.c (string_from_display_spec): Don't assume vecsize fits in int.
13195 * indent.c (Fvertical_motion): Fix == vs = typo.
13196
13197 2011-09-24 Eli Zaretskii <eliz@gnu.org>
13198
13199 * dispnew.c (syms_of_display) <redisplay-dont-pause>:
13200 Default value is now t. Doc fix.
13201
13202 * indent.c (Fvertical_motion): Compute and apply the overshoot
13203 logic when moving up, not only when moving down. Fix the
13204 confusing name and values of the it_overshoot_expected variable;
13205 logic changes accordingly. (Bug#9254) (Bug#9549)
13206
13207 * xdisp.c (pos_visible_p): Produce correct pixel coordinates when
13208 CHARPOS is covered by a display string which includes newlines.
13209 (move_it_vertically_backward): Avoid inflooping when START_CHARPOS
13210 is covered by a display string with embedded newlines.
13211
13212 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
13213
13214 * dbusbind.c (Fdbus_register_signal): Add match rule to
13215 Vdbus_registered_objects_table. (Bug#9581)
13216 (Fdbus_register_method, Vdbus_registered_objects_table):
13217 Fix docstring.
13218
13219 2011-09-24 Jim Meyering <meyering@redhat.com>
13220
13221 do not ignore write error for any output size
13222 The previous change was incomplete.
13223 While it makes emacs --batch detect the vast majority of stdout
13224 write failures, errors were still ignored whenever the output size is
13225 k * (BUFSIZ+1) - 4. E.g., on a system with BUFSIZ of 4096,
13226 $ emacs --batch --eval '(print (format "%4093d" 0))' > /dev/full \
13227 && echo FAIL: ignored write error
13228 FAIL: ignored write error
13229 $ emacs --batch --eval '(print (format "%20481d" 0))' > /dev/full \
13230 && echo FAIL: ignored write error
13231 FAIL: ignored write error
13232 * emacs.c (Fkill_emacs): Also test ferror. (Bug#9574)
13233
13234 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
13235
13236 * emacs.c (Fkill_emacs): In noninteractive mode exit
13237 non-successfully if a write error occurred on stdout. (Bug#9574)
13238
13239 2011-09-21 Eli Zaretskii <eliz@gnu.org>
13240
13241 * xdisp.c (pop_it): Allow it->object that is a cons cell to pass
13242 the xassert test.
13243
13244 * dispextern.h (struct it): Update the comment documenting what
13245 can it->OBJECT be.
13246
13247 2011-09-20 Eli Zaretskii <eliz@gnu.org>
13248
13249 * xdisp.c (set_cursor_from_row): If the row ends in a newline from
13250 a display string, extend search for cursor position to end of row.
13251 (find_row_edges): If the row ends in a newline from a display
13252 string, increment its MATRIX_ROW_END_CHARPOS by one. (Bug#9549)
13253 Handle the case of a display string with multiple newlines.
13254 (Fcurrent_bidi_paragraph_direction): Fix search for previous
13255 non-empty line. Fixes confusing cursor motion with arrow keys at
13256 the beginning of a line that starts with whitespace.
13257
13258 2011-09-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
13259
13260 * lread.c (Fread_from_string): Document what FINAL-STRING-INDEX is
13261 (bug#9493).
13262
13263 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
13264
13265 * xfns.c (Fx_create_frame): Handle the bitmapIcon resource as
13266 boolean (Bug#9154).
13267
13268 2011-09-18 Eli Zaretskii <eliz@gnu.org>
13269
13270 * xdisp.c (display_line): Record maximum and minimum buffer
13271 positions even if no glyphs were produced (e.g., by a zero-width
13272 stretch). Fixes bug#9530 on a TTY. Under word-wrap, don't record
13273 buffer positions that will be removed from the glyph row because
13274 they don't fit.
13275 (produce_stretch_glyph): Fix a bug in :align-to on a TTY when the
13276 column is beyond frame width: don't subtract 1 "pixel" when
13277 computing width of the stretch.
13278 (reseat_at_next_visible_line_start): Undo the change made on
13279 2011-09-17 that saved paragraph information and restored it after
13280 the call to `reseat'. (Bug#9545)
13281
13282 2011-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13283
13284 * xdisp.c (expose_window): Save original value of phys_cursor_on_p
13285 and turn window cursor on if cleared (Bug#9415).
13286
13287 2011-09-18 Andreas Schwab <schwab@linux-m68k.org>
13288
13289 * search.c (boyer_moore): Take unibyte characters from pattern
13290 literally. (Bug#9458)
13291
13292 2011-09-18 Eli Zaretskii <eliz@gnu.org>
13293
13294 * xdisp.c (reseat_at_next_visible_line_start): Fix last change.
13295
13296 2011-09-18 Paul Eggert <eggert@cs.ucla.edu>
13297
13298 Fix minor problem found by static checking.
13299 * xdisp.c (reseat_at_next_visible_line_start): Mark locals as
13300 initialized, to pacify gcc -Wuninitialized.
13301
13302 * fileio.c: Report proper errno when syscall falls.
13303 (Finsert_file_contents): Save and restore errno,
13304 so that report_file_error outputs the correct diagnostic.
13305 (Fwrite_region) [CLASH_DETECTION]: Likewise.
13306
13307 2011-09-18 Eli Zaretskii <eliz@gnu.org>
13308
13309 * .gdbinit (pgx): Fix references to fields of `struct glyph'.
13310
13311 2011-09-17 Eli Zaretskii <eliz@gnu.org>
13312
13313 * xdisp.c (produce_stretch_glyph): Another fix for changes made on
13314 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9530)
13315
13316 2011-09-17 Eli Zaretskii <eliz@gnu.org>
13317
13318 * xdisp.c (reseat_at_next_visible_line_start): Keep information
13319 about the current paragraph and restore it after the call to reseat.
13320
13321 * bidi.c (MAX_PARAGRAPH_SEARCH): New macro.
13322 (bidi_find_paragraph_start): Search back for paragraph beginning
13323 at most MAX_PARAGRAPH_SEARCH lines; if not found, return BEGV_BYTE.
13324 (bidi_move_to_visually_next): Only trigger paragraph-related
13325 computations when the last character is a newline or at EOB, not
13326 just any NEUTRAL_B. (Bug#9470)
13327
13328 * xdisp.c (set_cursor_from_row): Don't invoke special treatment of
13329 truncated lines if point is covered by a display string. (Bug#9524)
13330
13331 2011-09-16 Paul Eggert <eggert@cs.ucla.edu>
13332
13333 * xselect.c: Relax test for outgoing X longs (Bug#9498).
13334 (cons_to_x_long): New function.
13335 (lisp_data_to_selection_data): Use it. Correct the test for
13336 short-versus-long data; it was negated. Break out of vector
13337 loop, for efficiency, when a long datum is discovered.
13338
13339 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
13340
13341 * eval.c (Fquote): Document its non-consing behavior (bug#9482).
13342
13343 2011-09-16 Eli Zaretskii <eliz@gnu.org>
13344
13345 * image.c (tiff_handler): Work around a bug in MinGW GCC 3.x (see
13346 GCC PR/17406) by declaring this function with external scope.
13347
13348 2011-09-15 Paul Eggert <eggert@cs.ucla.edu>
13349
13350 * editfns.c (Fformat): Fix bug in text-property fix (Bug#9514).
13351 Don't mishandle (length (format "%%")) and (format "%4000s%%" "").
13352
13353 2011-09-15 Andreas Schwab <schwab@linux-m68k.org>
13354
13355 * editfns.c (Fformat): Correctly handle text properties on "%%".
13356
13357 2011-09-15 Eli Zaretskii <eliz@gnu.org>
13358
13359 * xterm.c (x_draw_composite_glyph_string_foreground):
13360 * w32term.c (x_draw_composite_glyph_string_foreground):
13361 * term.c (encode_terminal_code):
13362 * composite.c (composition_update_it, get_composition_id):
13363 * xdisp.c (get_next_display_element)
13364 (fill_composite_glyph_string): Add comments about special meaning
13365 of TAB characters in a composition.
13366
13367 2011-09-15 Paul Eggert <eggert@cs.ucla.edu>
13368
13369 * editfns.c (Fformat): Fix off-by-1 bug for "%%b" (Bug#9514).
13370 This occurs when processing a multibyte format.
13371 Problem reported by Wolfgang Jenker.
13372
13373 2011-09-15 Johan Bockgård <bojohan@gnu.org>
13374
13375 * xdisp.c (try_cursor_movement): Only check for exact match if
13376 cursor hpos found by set_cursor_from_row is valid. (Bug#9495)
13377
13378 2011-09-14 Paul Eggert <eggert@cs.ucla.edu>
13379
13380 Remove unused external symbols.
13381 * dispextern.h (calc_pixel_width_or_height): Remove decl.
13382 * xdisp.c (calc_pixel_width_or_height): Now static.
13383 * doprnt.c (exprintf) [! (HAVE_X_WINDOWS && USE_X_TOOLKIT)]: Remove.
13384 * indent.c (check_display_width):
13385 * w32term.c: Fix comment to match code.
13386 * xterm.c, xterm.h (x_catching_errors): Remove.
13387
13388 2011-09-14 Paul Eggert <eggert@cs.ucla.edu>
13389
13390 * xselect.c: Use signed conversions more consistently (Bug#9498).
13391 (selection_data_to_lisp_data): Assume incoming selection data are
13392 signed integers, not unsigned. This is to be consistent with
13393 outgoing selection data, which was modified to use signed integers
13394 in as part of the fix to Bug#9196 in response to Jan D.'s comment
13395 in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9196#32> that X11
13396 expects long, not unsigned long.
13397
13398 2011-09-14 Eli Zaretskii <eliz@gnu.org>
13399
13400 * xdisp.c (try_window_reusing_current_matrix): Fix incorrect
13401 computation of loop end. Reported by Johan Bockgård
13402 <bojohan@gnu.org>.
13403
13404 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
13405
13406 * frame.c (Fother_visible_frames_p): Function deleted.
13407
13408 2011-09-12 Eli Zaretskii <eliz@gnu.org>
13409
13410 * indent.c (compute_motion): Process display vector front to back
13411 rather than the other way around. (Bug#2496)
13412
13413 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
13414
13415 * fileio.c (Finsert_file_contents): Don't assume beg_offset is 0.
13416
13417 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
13418
13419 * minibuf.c (Fread_from_minibuffer): Doc fix.
13420
13421 2011-09-11 Eli Zaretskii <eliz@gnu.org>
13422
13423 * xdisp.c (produce_stretch_glyph): Fix a typo made in changes from
13424 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9475)
13425
13426 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
13427
13428 * fileio.c (Fvisited_file_modtime): Document `(-1 65535)' as a
13429 value for non-existent files.
13430
13431 2011-09-11 Eli Zaretskii <eliz@gnu.org>
13432
13433 * fileio.c (Finsert_file_contents): If the file cannot be opened,
13434 set its "size" to -1. This will set the modtime_size field of
13435 the corresponding buffer to -1, which is what
13436 verify-visited-file-modtime expects for files that do not exist.
13437 (Bug#9139)
13438
13439 2011-09-11 Paul Eggert <eggert@cs.ucla.edu>
13440
13441 * keymap.h (KEY_DESCRIPTION_SIZE, push_key_description): Move decls
13442 here ...
13443 * lisp.h: ... from here. push_key_description is no longer
13444 defined in keyboard.c, so its declaration should not be in
13445 lisp.h's "Defined in keyboard.c" section, and KEY_DESCRIPTION_SIZE
13446 logically belongs with push_key_description.
13447
13448 2011-09-10 Paul Eggert <eggert@cs.ucla.edu>
13449
13450 * buffer.h: Include <sys/types.h> instead of <time.h>.
13451 Otherwise, off_t wasn't defined on FreeBSD 9.0-BETA2 i386.
13452 Problem reported by Herbert J. Skuhra.
13453
13454 2011-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
13455
13456 * xml.c (parse_region): Make the parsing work for
13457 non-comment-starting XML files again (bug#9144).
13458
13459 2011-09-10 Andreas Schwab <schwab@linux-m68k.org>
13460
13461 * image.c (gif_load): Fix calculation of bottom and right corner.
13462 (Bug#9468)
13463
13464 2011-09-10 Eli Zaretskii <eliz@gnu.org>
13465
13466 * xdisp.c (MAX_DISP_SCAN): Decrease to 250. Prevents sluggish
13467 redisplay in small windows.
13468
13469 2011-09-09 Eli Zaretskii <eliz@gnu.org>
13470
13471 * frame.c (x_report_frame_params): Cast to avoid compiler warnings.
13472
13473 2011-09-08 Martin Rudalics <rudalics@gmx.at>
13474
13475 * window.c (Fset_window_prev_buffers, Fset_window_next_buffers):
13476 Operate on live windows only.
13477
13478 2011-09-08 Juanma Barranquero <lekktu@gmail.com>
13479
13480 * emacs.c (my_heap_start): #ifdef to avoid warnings when unused.
13481
13482 2011-09-07 Eli Zaretskii <eliz@gnu.org>
13483
13484 * xdisp.c (move_it_in_display_line_to): Call RESTORE_IT on ppos_it
13485 only under bidi iteration.
13486
13487 2011-09-07 Jan Djärv <jan.h.d@swipnet.se>
13488
13489 * gtkutil.c (xg_make_tool_item): Insert comment about eventbox.
13490
13491 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
13492
13493 isnan: Fix porting problem to Solaris 10 with bundled gcc.
13494 Without this fix, the command to link temacs failed due to an
13495 undefined symbol __builtin_isnan. This is because
13496 /usr/include/iso/math_c99.h #defines isnan(x) to
13497 __builtin_isnan(x), but the bundled gcc, which identifies itself
13498 as gcc 3.4.3 (csl-sol210-3_4-branch+sol_rpath), does not have
13499 a __builtin_isnan.
13500 * floatfns.c (isnan): #undef, and then #define to a clone of
13501 what's in data.c.
13502 (Fisnan): Always define, since it's always available now.
13503 (syms_of_floatfns): Always define isnan at the Lisp level.
13504
13505 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
13506
13507 * Makefile.in (gl-stamp): move-if-change now in build-aux (Bug#9169).
13508
13509 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
13510
13511 * fileio.c: Fix bugs with large file offsets (Bug#9428).
13512 The previous code assumed that file offsets (off_t values) fit in
13513 EMACS_INT variables, which is not true on typical 32-bit hosts.
13514 The code messed up by falsely reporting buffer overflow in cases
13515 such as (insert-file-contents "big" nil 1 2) into an empty buffer
13516 when "big" contains more than 2**29 bytes, even though this
13517 inserts just one byte and does not overflow the buffer.
13518 (Finsert_file_contents): Store file offsets as off_t
13519 values, not as EMACS_INT values. Check for overflow when
13520 converting between EMACS_INT and off_t. When checking for
13521 buffer overflow or for overlap, take the offsets into account.
13522 Don't use EMACS_INT for small values where int suffices.
13523 When checking for overlap, fix a typo: ZV was used where
13524 ZV_BYTE was intended.
13525 (Fwrite_region): Don't assume off_t fits into 'long'.
13526 * buffer.h (struct buffer.modtime_size): Now off_t, not EMACS_INT.
13527
13528 2011-09-05 Michael Albinus <michael.albinus@gmx.de>
13529
13530 * dbusbind.c (xd_signature_cat): Rename from signature_cat.
13531
13532 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
13533
13534 sprintf-related integer and memory overflow issues (Bug#9412).
13535
13536 * doprnt.c (doprnt): Support printing ptrdiff_t and intmax_t values.
13537 (esprintf, exprintf, evxprintf): New functions.
13538 * keyboard.c (command_loop_level): Now EMACS_INT, not int.
13539 (cmd_error): Kbd macro iterations count is now EMACS_INT, not int.
13540 (modify_event_symbol): Do not assume that the length of
13541 name_alist_or_stem is safe to alloca and fits in int.
13542 (Fexecute_extended_command): Likewise for function name and binding.
13543 (Frecursion_depth): Wrap around reliably on integer overflow.
13544 * keymap.c (push_key_description): First arg is now EMACS_INT, not int,
13545 since some callers pass EMACS_INT values.
13546 (Fsingle_key_description): Don't crash if symbol name contains more
13547 than MAX_ALLOCA bytes.
13548 * minibuf.c (minibuf_level): Now EMACS_INT, not int.
13549 (get_minibuffer): Arg is now EMACS_INT, not int.
13550 * lisp.h (get_minibuffer, push_key_description): Reflect API changes.
13551 (esprintf, exprintf, evxprintf): New decls.
13552 * window.h (command_loop_level, minibuf_level): Reflect API changes.
13553
13554 * dbusbind.c (signature_cat): New function.
13555 (xd_signature, Fdbus_register_signal):
13556 Do not overrun buffer; instead, report string overflow.
13557
13558 * dispnew.c (add_window_display_history): Don't overrun buffer.
13559 Truncate instead; this is OK since it's just a log.
13560
13561 * editfns.c (Fcurrent_time_zone): Don't overrun buffer
13562 even if the time zone offset is outlandishly large.
13563 Don't mishandle offset == INT_MIN.
13564
13565 * emacs.c (main) [NS_IMPL_COCOA]: Don't overrun buffer
13566 when creating daemon; the previous buffer-overflow check was incorrect.
13567
13568 * eval.c (verror): Simplify by rewriting in terms of evxprintf,
13569 which has the guts of the old verror function.
13570
13571 * filelock.c (lock_file_1, lock_file): Don't blindly alloca long name;
13572 use SAFE_ALLOCA instead. Use esprintf to avoid int-overflow issues.
13573
13574 * font.c: Include <float.h>, for DBL_MAX_10_EXP.
13575 (font_unparse_xlfd): Don't blindly alloca long strings.
13576 Don't assume XINT result fits in int, or that XFLOAT_DATA * 10
13577 fits in int, when using sprintf. Use single snprintf to count
13578 length of string rather than counting it via multiple sprintfs;
13579 that's simpler and more reliable.
13580 (font_unparse_fcname): Use it to avoid sprintf buffer overrun.
13581 (generate_otf_features) [0 && HAVE_LIBOTF]: Use esprintf, not
13582 sprintf, in case result does not fit in int.
13583
13584 * fontset.c (num_auto_fontsets): Now printmax_t, not int.
13585 (fontset_from_font): Print it.
13586
13587 * frame.c (tty_frame_count): Now printmax_t, not int.
13588 (make_terminal_frame, set_term_frame_name): Print it.
13589 (x_report_frame_params): In X, window IDs are unsigned long,
13590 not signed long, so print them as unsigned.
13591 (validate_x_resource_name): Check for implausibly long names,
13592 and don't assume name length fits in 'int'.
13593 (x_get_resource_string): Don't blindly alloca invocation name;
13594 use SAFE_ALLOCA. Use esprintf, not sprintf, in case result does
13595 not fit in int.
13596
13597 * gtkutil.c: Include <float.h>, for DBL_MAX_10_EXP.
13598 (xg_check_special_colors, xg_set_geometry):
13599 Make sprintf buffers a bit bigger, to avoid potential buffer overrun.
13600
13601 * lread.c (dir_warning): Don't blindly alloca buffer; use SAFE_ALLOCA.
13602 Use esprintf, not sprintf, in case result does not fit in int.
13603
13604 * macros.c (executing_kbd_macro_iterations): Now EMACS_INT, not int.
13605 (Fend_kbd_macro): Don't mishandle MOST_NEGATIVE_FIXNUM by treating
13606 it as a large positive number.
13607 (Fexecute_kbd_macro): Don't assume repeat count fits in int.
13608 * macros.h (executing_kbd_macro_iterations): Now EMACS_INT, not int.
13609
13610 * nsterm.m ((NSSize)windowWillResize): Use esprintf, not sprintf,
13611 in case result does not fit in int.
13612
13613 * print.c (float_to_string): Detect width overflow more reliably.
13614 (print_object): Make sprintf buffer a bit bigger, to avoid potential
13615 buffer overrun. Don't assume list length fits in 'int'. Treat
13616 print length of 0 as 0, not as infinity; to be consistent with other
13617 uses of print length in this function. Don't overflow print length
13618 index. Don't assume hash table size fits in 'long', or that
13619 vectorlike size fits in 'unsigned long'.
13620
13621 * process.c (make_process): Use printmax_t, not int, to format
13622 process-name gensyms.
13623
13624 * sysdep.c (snprintf) [! HAVE_SNPRINTF]: New function.
13625
13626 * term.c (produce_glyphless_glyph): Make sprintf buffer a bit bigger
13627 to avoid potential buffer overrun.
13628
13629 * xfaces.c (x_update_menu_appearance): Don't overrun buffer
13630 if X resource line is longer than 512 bytes.
13631
13632 * xfns.c (x_window): Make sprintf buffer a bit bigger
13633 to avoid potential buffer overrun.
13634
13635 * xterm.c (x_io_error_quitter): Don't overrun sprintf buffer.
13636
13637 * xterm.h (x_check_errors): Add ATTRIBUTE_FORMAT_PRINTF.
13638
13639 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
13640
13641 Integer overflow fixes for scrolling, etc.
13642 Without these, Emacs silently mishandles large integers sometimes.
13643 For example, "C-u 4294967297 M-x recenter" was treated as if
13644 it were "C-u 1 M-x recenter" on a typical 64-bit host.
13645
13646 * xdisp.c (try_window_id): Check Emacs fixnum range before
13647 converting to 'int'.
13648
13649 * window.c (window_scroll_line_based, Frecenter):
13650 Check that an Emacs fixnum is in range before assigning it to 'int'.
13651 (Frecenter, Fmove_to_window_line): Use EMACS_INT, not int, for
13652 values converted from Emacs fixnums.
13653 (Frecenter): Don't wrap around a line count if it is out of 'int'
13654 range; instead, treat it as an extreme value.
13655 (Fset_window_configuration, compare_window_configurations):
13656 Use ptrdiff_t, not int, for index that might exceed 2 GiB.
13657
13658 * search.c (Freplace_match): Use ptrdiff_t, not int, for indexes
13659 that can exceed INT_MAX. Check that EMACS_INT value is in range
13660 before assigning it to the (possibly-narrower) index.
13661 (match_limit): Don't assume that a fixnum can fit in 'int'.
13662
13663 * print.c (print_object): Use ptrdiff_t, not int, for index that can
13664 exceed INT_MAX.
13665
13666 * indent.c (position_indentation): Now takes ptrdiff_t, not int.
13667 (Fvertical_motion): Don't wrap around LINES values that don't fit
13668 in 'int'. Instead, treat them as extreme values. This is good
13669 enough for windows, which can't have more than INT_MAX lines anyway.
13670
13671 2011-09-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
13672
13673 * Require libxml/parser.h to avoid compilation warning.
13674
13675 * emacs.c (shut_down_emacs): Call xmlCleanupParser on shutdown.
13676
13677 * xml.c (parse_region): Don't call xmlCleanupParser after parsing,
13678 since this reportedly can destroy thread storage.
13679
13680 2011-08-30 Chong Yidong <cyd@stupidchicken.com>
13681
13682 * syntax.c (find_defun_start): Update all cache variables if
13683 exiting early (Bug#9401).
13684
13685 2011-08-30 Eli Zaretskii <eliz@gnu.org>
13686
13687 * image.c (x_bitmap_pixmap): Cast to int to avoid compiler warnings.
13688
13689 * xdisp.c (produce_stretch_glyph): No longer static, compiled also
13690 when HAVE_WINDOW_SYSTEM is not defined. Support both GUI and TTY
13691 frames. Call tty_append_glyph in the TTY case. (Bug#9402)
13692
13693 * term.c (tty_append_glyph): New function.
13694 (produce_stretch_glyph): Static function and its prototype deleted.
13695
13696 * dispextern.h (produce_stretch_glyph, tty_append_glyph):
13697 Add prototypes.
13698
13699 2011-08-29 Paul Eggert <eggert@cs.ucla.edu>
13700
13701 * image.c (parse_image_spec): Check for nonnegative, not for positive,
13702 when checking :margin (Bug#9390).
13703 (IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR):
13704 Rename from IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR,
13705 so that the name doesn't mislead. All uses changed.
13706
13707 2011-08-28 Johan Bockgård <bojohan@gnu.org>
13708
13709 * term.c (init_tty) [HAVE_GPM]: Move mouse settings after
13710 set_tty_hooks.
13711
13712 2011-08-27 Eli Zaretskii <eliz@gnu.org>
13713
13714 * xdisp.c (move_it_to): Don't bail out early when reaching
13715 position beyond to_charpos, if we are scanning backwards.
13716 (move_it_vertically_backward): When DY == 0, make sure we get to
13717 the first character in the line after the newline.
13718
13719 2011-08-27 Paul Eggert <eggert@cs.ucla.edu>
13720
13721 * ccl.c: Improve and simplify overflow checking (Bug#9196).
13722 (ccl_driver): Do not generate an out-of-range pointer.
13723 (Fccl_execute_on_string): Remove unnecessary check for
13724 integer overflow, noted by Stefan Monnier in
13725 <http://lists.gnu.org/archive/html/emacs-devel/2011-08/msg00979.html>.
13726 Remove a FIXME that didn't need fixing.
13727 Simplify the newly-introduced buffer reallocation code.
13728
13729 2011-08-27 Juanma Barranquero <lekktu@gmail.com>
13730
13731 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on lib/verify.h.
13732
13733 2011-08-26 Paul Eggert <eggert@cs.ucla.edu>
13734
13735 Integer and memory overflow issues (Bug#9196).
13736
13737 * doc.c (get_doc_string): Rework so that
13738 get_doc_string_buffer_size is the actual buffer size, rather than
13739 being 1 less than the actual buffer size; this makes xpalloc more
13740 convenient.
13741
13742 * image.c (x_allocate_bitmap_record, cache_image):
13743 * xselect.c (Fx_register_dnd_atom):
13744 Simplify previous changes by using xpalloc.
13745
13746 * buffer.c (overlay_str_len): Now ptrdiff_t, not EMACS_INT,
13747 since either will do and ptrdiff_t is convenient with xpalloc.
13748
13749 * charset.c (charset_table_size)
13750 (struct charset_sort_data.priority): Now ptrdiff_t.
13751 (charset_compare): Don't overflow if priorities differ greatly.
13752 (Fsort_charsets): Don't assume list length fits in int.
13753 Check for size-calculation overflow when allocating sort data.
13754 (syms_of_charset): Allocate an initial charset table that is
13755 just under 64 KiB, to avoid problems with glibc malloc and mmap.
13756
13757 * cmds.c (internal_self_insert): Check for size-calculation overflow.
13758
13759 * composite.h (struct composition.glyph_len): Now int, not unsigned.
13760 The actual value is always <= INT_MAX, and leaving it unsigned made
13761 overflow checking harder.
13762
13763 * dispextern.h (struct glyph_matrix.rows_allocated)
13764 (struct face_cache.size): Now ptrdiff_t, for convenience in use
13765 with xpalloc. The values are still always <= INT_MAX.
13766
13767 * indent.c (compute_motion): Adjust to region_cache_forward sig change.
13768
13769 * lisp.h (xnmalloc, xnrealloc, xpalloc): New decls.
13770 (SAFE_NALLOCA): New macro.
13771
13772 * region-cache.c (struct boundary.pos, find_cache_boundary)
13773 (move_cache_gap, insert_cache_boundary, delete_cache_boundaries)
13774 (set_cache_region, invalidate_region_cache)
13775 (revalidate_region_cache, know_region_cache, region_cache_forward)
13776 (region_cache_backward, pp_cache):
13777 Use ptrdiff_t, not EMACS_INT, since either will do. This is needed
13778 so that ptrdiff_t * can be passed to xpalloc.
13779 (struct region_cache): Similarly, for gap_start, gap_len, cache_len,
13780 beg_unchanged, end_unchanged, buffer_beg, buffer_end members.
13781 (pp_cache): Don't assume cache_len fits in int.
13782 * region-cache.h: Adjust extern decls to match.
13783
13784 * search.c (scan_buffer, Freplace_match): Use ptrdiff_t, not
13785 EMACS_INT, since either will do, for xpalloc.
13786
13787 * alloc.c: Include verify.h, and check that int fits in ptrdiff_t.
13788 (xnmalloc, xnrealloc, xpalloc): New functions.
13789
13790 * bidi.c (bidi_shelve_header_size): New constant.
13791 (bidi_cache_ensure_space, bidi_shelve_cache): Use it.
13792 (bidi_cache_ensure_space): Avoid integer overflow when allocating.
13793
13794 * bidi.c (bidi_cache_shrink):
13795 * buffer.c (overlays_at, overlays_in, record_overlay_string)
13796 (overlay_strings):
13797 Don't update size of array until after memory allocation succeeds,
13798 because xmalloc/xrealloc may not return.
13799 (struct sortstrlist.bytes): Now ptrdiff_t, as EMACS_INT doesn't help
13800 now that we have proper integer overflow checking.
13801 (record_overlay_string, overlay_strings): Catch overflows when
13802 calculating size of overlay_str_buf.
13803
13804 * callproc.c (Fcall_process): Check for size overflow when
13805 calculating size of args2.
13806 (child_setup): Avoid overflow by using size_t rather than ptrdiff_t.
13807 Normally we prefer signed values, but sticking with ptrdiff_t would
13808 require adding more-complicated checks.
13809
13810 * ccl.c (Fccl_execute_on_string): Check for memory overflow.
13811 Use ptrdiff_t rather than EMACS_INT where ptrdiff_t will do.
13812 Redo buffer-overflow calculations to avoid integer overflow.
13813 Add a FIXME comment where memory seems to be over-allocated.
13814
13815 * character.c (Fstring): Check for size-calculation overflow.
13816
13817 * coding.c (produce_chars): Redo buffer-overflow calculations to avoid
13818 unnecessary integer overflow. Check for size overflow.
13819 (encode_coding_object): Don't update size until xmalloc succeeds.
13820
13821 * composite.c (get_composition_id): Check for overflow in glyph
13822 length calculations.
13823
13824 Integer and memory overflow fixes for display code.
13825 * dispextern.h (struct glyph_pool.nglyphs): Now ptrdiff_t, not int.
13826 * dispnew.c (adjust_glyph_matrix, realloc_glyph_pool)
13827 (scrolling_window): Check for overflow in size calculations.
13828 (line_draw_cost, realloc_glyph_pool, add_row_entry):
13829 Don't assume glyph table len fits in int.
13830 (struct row_entry.bucket, row_entry_pool_size, row_entry_idx)
13831 (row_table_size): Now ptrdiff_t, not int.
13832 (scrolling_window): Avoid overflow in size calculations.
13833 Don't update size until allocation succeeds.
13834 * fns.c (concat): Check for overflow in size calculations.
13835 (next_almost_prime): Verify NEXT_ALMOST_PRIME_LIMIT.
13836 * lisp.h (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
13837 (NEXT_ALMOST_PRIME_LIMIT): New constant.
13838
13839 * doc.c (get_doc_string_buffer_size): Now ptrdiff_t, not int.
13840 (get_doc_string): Check for size calculation overflow.
13841 Don't update size until allocation succeeds.
13842 (get_doc_string, Fsubstitute_command_keys): Use ptrdiff_t, not
13843 EMACS_INT, where ptrdiff_t will do.
13844 (Fsubstitute_command_keys): Check for string overflow.
13845
13846 * editfns.c (set_time_zone_rule): Don't assume environment length
13847 fits in int.
13848 (message_length): Now ptrdiff_t, not int.
13849 (Fmessage_box): Don't update size until allocation succeeds.
13850 Don't assume message length fits in int.
13851 (Fformat): Use ptrdiff_t, not EMACS_INT, where ptrdiff_t will do.
13852
13853 * emacs.c (main): Do not reallocate argv, since there is a null at
13854 the end that can be overwritten, and this way there's no need to
13855 worry about size-calculation overflow.
13856 (sort_args): Check for size-calculation overflow.
13857
13858 * eval.c (init_eval_once, grow_specpdl): Don't update size until
13859 alloc succeeds.
13860 (call_debugger, grow_specpdl): Redo calculations to avoid overflow.
13861
13862 * frame.c (set_menu_bar_lines, x_set_frame_parameters)
13863 (x_set_scroll_bar_width, x_figure_window_size):
13864 Check for integer overflow.
13865 (x_set_alpha): Do not assume XINT fits in int.
13866
13867 * frame.h (struct frame): Use int, not EMACS_INT, where int works.
13868 This is for the members text_lines, text_cols, total_lines, total_cols,
13869 where the system imposes an 'int' limit.
13870
13871 * fringe.c (Fdefine_fringe_bitmap):
13872 Don't update size until alloc works.
13873
13874 * ftfont.c (ftfont_get_open_type_spec, setup_otf_gstring)
13875 (ftfont_shape_by_flt): Check for integer overflow in size calculations.
13876
13877 * gtkutil.c (get_utf8_string, xg_store_widget_in_map):
13878 Check for size-calculation overflow.
13879 (get_utf8_string): Use ptrdiff_t, not size_t, where either will
13880 do, as we prefer signed integers.
13881 (id_to_widget.max_size, id_to_widget.used)
13882 (xg_store_widget_in_map, xg_remove_widget_from_map)
13883 (xg_get_widget_from_map, xg_get_scroll_id_for_window)
13884 (xg_remove_scroll_bar, xg_update_scrollbar_pos):
13885 Use and return ptrdiff_t, not int.
13886 (xg_gtk_scroll_destroy): Don't assume ptrdiff_t fits in int.
13887 * gtkutil.h: Change prototypes to match the above.
13888
13889 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): Remove; these
13890 are duplicate now that they've been promoted to lisp.h.
13891 (x_allocate_bitmap_record, x_alloc_image_color)
13892 (make_image_cache, cache_image, xpm_load):
13893 Don't update size until alloc is done.
13894 (xpm_load, lookup_rgb_color, lookup_pixel_color, x_to_xcolors)
13895 (x_detect_edges):
13896 Check for size calculation overflow.
13897 (ct_colors_allocated_max): New constant.
13898 (x_to_xcolors, x_detect_edges): Reorder multiplicands to avoid
13899 overflow.
13900
13901 * keyboard.c (read_char, menu_bar_items, tool_bar_items)
13902 (read_char_x_menu_prompt, read_char_minibuf_menu_width)
13903 (read_char_minibuf_menu_prompt, follow_key, read_key_sequence):
13904 Use ptrdiff_t, not int, to count maps.
13905 (read_char_minibuf_menu_prompt): Check for overflow in size
13906 calculations. Don't update size until allocation succeeds.
13907 Redo calculations to avoid overflow.
13908 * keyboard.h: Change prototypes to match the above.
13909
13910 * keymap.c (cmm_size, current_minor_maps): Use ptrdiff_t, not int,
13911 to count maps.
13912 (current_minor_maps): Check for size calculation overflow.
13913 * keymap.h: Change prototypes to match the above.
13914
13915 * lread.c (read1, init_obarray): Don't update size until alloc done.
13916
13917 * macros.c (Fstart_kbd_macro): Don't update size until alloc done.
13918 (store_kbd_macro_char): Reorder multiplicands to avoid overflow.
13919
13920 * nsterm.h (struct ns_color_table.size, struct ns_color_table.avail):
13921 Now ptrdiff_t, not int.
13922 * nsterm.m (ns_index_color): Use ptrdiff_t, not int, for table indexes.
13923 (ns_draw_fringe_bitmap): Rewrite to avoid overflow.
13924
13925 * process.c (Fnetwork_interface_list): Check for overflow
13926 in size calculation.
13927
13928 * region-cache.c (move_cache_gap): Check for size calculation overflow.
13929
13930 * scroll.c (do_line_insertion_deletion_costs): Check for size calc
13931 overflow. Don't bother calling xmalloc when xrealloc will do.
13932
13933 * search.c (Freplace_match): Check for size calculation overflow.
13934 (Fset_match_data): Don't assume list lengths fit in 'int'.
13935
13936 * sysdep.c (system_process_attributes): Use ptrdiff_t, not int,
13937 for command line length. Do not attempt to address one before the
13938 beginning of an array, as that's not portable.
13939
13940 * term.c (max_frame_lines): Remove; unused.
13941 (encode_terminal_src_size, encode_terminal_dst_size): Now ptrdiff_t,
13942 not int.
13943 (encode_terminal_code, calculate_costs): Check for size
13944 calculation overflow.
13945 (encode_terminal_code): Use ptrdiff_t, not int, to record glyph
13946 table lengths and related sizes. Don't update size until alloc
13947 done. Redo calculations to avoid overflow.
13948 (calculate_costs): Don't bother calling xmalloc when xrealloc will do.
13949
13950 * termcap.c (tgetent): Use ptrdiff_t, not int, to record results of
13951 subtracting pointers.
13952 (gobble_line): Check for overflow more carefully. Don't update size
13953 until alloc done.
13954
13955 * tparam.c (tparam1): Use ptrdiff_t, not int, for sizes.
13956 Don't update size until alloc done.
13957 Redo size calculations to avoid overflow.
13958 Check for size calculation overflow.
13959 (main) [DEBUG]: Fix typo in invoking tparam1.
13960
13961 * xdisp.c (store_mode_line_noprop_char, x_consider_frame_title):
13962 Use ptrdiff_t, not int, for sizes.
13963 (store_mode_line_noprop_char): Don't update size until alloc done.
13964
13965 * xfaces.c (lface_id_to_name_size, Finternal_make_lisp_face):
13966 Use ptrdiff_t, not int, for sizes.
13967 (Finternal_make_lisp_face, cache_face):
13968 Check for size calculation overflow.
13969 (cache_face): Treat size calculation overflows as if they were
13970 memory exhaustion (the usual treatment), rather than aborting.
13971
13972 * xfns.c (x_encode_text, x_set_name_internal)
13973 (Fx_change_window_property): Use ptrdiff_t, not int, to count
13974 sizes, since they can exceed INT_MAX in size. Check for size
13975 calculation overflow.
13976
13977 * xgselect.c (gfds_size): Now ptrdiff_t, for convenience with xpalloc.
13978 (xg_select): Check for size calculation overflow.
13979 Don't update size until alloc done.
13980
13981 * xrdb.c (get_environ_db): Don't assume path length fits in int,
13982 as sprintf is limited to int lengths.
13983
13984 * xselect.c (X_LONG_SIZE, X_SHRT_MAX, X_SHRT_MIN, X_LONG_MAX)
13985 (X_LONG_MIN): New macros.
13986 Use them to make the following changes clearer.
13987 (MAX_SELECTION_QUANTUM): Make the other bounds on this value clearer.
13988 This change doesn't affect the value now, but it may help remind
13989 future maintainers not to raise the value too much later.
13990 (SELECTION_QUANTUM): Remove, replacing with ...
13991 (selection_quantum): ... new function, which avoids overflow.
13992 All uses changed.
13993 (struct selection_data.size): Now ptrdiff_t, not int, to avoid
13994 assumption that selection length fits in 'int'.
13995 (x_reply_selection_request, x_handle_selection_request)
13996 (x_get_window_property, receive_incremental_selection)
13997 (x_get_window_property_as_lisp_data, selection_data_to_lisp_data)
13998 (lisp_data_to_selection_data, clean_local_selection_data):
13999 Use ptrdiff_t, not int, to record length of selection.
14000 (x_reply_selection_request, x_get_window_property)
14001 (receive_incremental_selection, x_property_data_to_lisp):
14002 Redo calculations to avoid overflow.
14003 (x_reply_selection_request): When sending hint, ceiling it at
14004 X_LONG_MAX rather than relying on wraparound overflow to send
14005 something.
14006 (x_get_window_property, receive_incremental_selection)
14007 (lisp_data_to_selection_data, x_property_data_to_lisp):
14008 Check for size-calculation overflow.
14009 (x_get_window_property, receive_incremental_selection)
14010 (lisp_data_to_selection_data, Fx_register_dnd_atom):
14011 Don't store size until memory allocation succeeds.
14012 (x_get_window_property): Plug memory leak on memory exhaustion.
14013 Don't double-block input; malloc is safe here. Don't assume 2**34
14014 - 4 fits in unsigned long. Add an xassert to check
14015 XGetWindowProperty overflow. Be more careful about overflow
14016 calculations, and distinguish size from memory overflow better.
14017 (receive_incremental_selection): When tracing, don't assume
14018 unsigned int is less than INT_MAX.
14019 (x_selection_data_to_lisp_data): Remove unnecessary (and in theory
14020 harmful) conversions of unsigned short to int.
14021 (lisp_data_to_selection_data): Don't assume that integers
14022 in the range -65535 through -1 fit in an X unsigned short.
14023 Don't assume that ULONG_MAX == X_ULONG_MAX. Don't store into
14024 result parameters unless successful. Rely on cons_to_unsigned
14025 to report problems with elements; the old code wasn't right anyway.
14026 (x_check_property_data): Check for int overflow; we cannot use
14027 a wider type due to X limits.
14028 (x_handle_dnd_message): Use unsigned int, to avoid int overflow.
14029
14030 * xsmfns.c (smc_save_yourself_CB): Check for size calc overflow.
14031
14032 * xterm.c (x_color_cells, x_send_scrollbar_event, handle_one_xevent)
14033 (x_term_init): Check for size calculation overflow.
14034 (x_color_cells): Don't store size until memory allocation succeeds.
14035 (handle_one_xevent): Use ptrdiff_t, not int, for byte counts.
14036 Don't assume alloca size is less than MAX_ALLOCA.
14037 (x_term_init): Don't assume length fits in int (sprintf is limited
14038 to int size).
14039
14040 Use ptrdiff_t for composition IDs.
14041 * character.c (lisp_string_width):
14042 * composite.c (composition_table_size, n_compositions)
14043 (get_composition_id, composition_gstring_from_id):
14044 * dispextern.h (struct glyph_string.cmp_id, struct composition_it.id):
14045 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING):
14046 * window.c (Frecenter):
14047 Use ptrdiff_t, not int, for composition IDs.
14048 * composite.c (get_composition_id): Check for integer overflow.
14049 * composite.h: Adjust prototypes to match the above changes.
14050
14051 Use ptrdiff_t for hash table indexes.
14052 * category.c (hash_get_category_set):
14053 * ccl.c (ccl_driver):
14054 * charset.h (struct charset.hash_index, CHECK_CHARSET_GET_ID):
14055 * coding.c (coding_system_charset_list, detect_coding_system):
14056 * coding.h (struct coding_system.id):
14057 * composite.c (get_composition_id, gstring_lookup_cache):
14058 * fns.c (hash_lookup, hash_put, Fgethash, Fputhash):
14059 * image.c (xpm_get_color_table_h):
14060 * lisp.h (hash_lookup, hash_put):
14061 * minibuf.c (Ftest_completion):
14062 Use ptrdiff_t for hash table indexes, not int (which is too
14063 narrow, on 64-bit hosts) or EMACS_INT (which is too wide, on
14064 32-bit --with-wide-int hosts).
14065
14066 * charset.c (Fdefine_charset_internal): Check for integer overflow.
14067 Add a FIXME comment about memory leaks.
14068 (syms_of_charset): Don't assume xmalloc returns.
14069
14070 Don't assume that stated character widths fit in int.
14071 * character.c (Fchar_width, c_string_width, lisp_string_width):
14072 * character.h (CHAR_WIDTH):
14073 * indent.c (MULTIBYTE_BYTES_WIDTH):
14074 Use sanitize_char_width to avoid undefined and/or bad behavior
14075 with outlandish widths.
14076 * character.h (sanitize_tab_width): Rename from sanitize_width,
14077 now that we have two such functions. All uses changed.
14078 (sanitize_char_width): New inline function.
14079
14080 Don't assume that tab-width fits in int.
14081 * character.h (sanitize_width): New inline function.
14082 (SANE_TAB_WIDTH): New macro.
14083 (ASCII_CHAR_WIDTH): Use it.
14084 * indent.c (sane_tab_width): Remove. All uses replaced by
14085 SANE_TAB_WIDTH (current_buffer).
14086 * xdisp.c (init_iterator): Use SANE_TAB_WIDTH.
14087
14088 * fileio.c: Integer overflow issues with file modes.
14089 (Fset_file_modes, auto_save_1): Don't assume EMACS_INT fits in int.
14090
14091 * charset.c (read_hex): New arg OVERFLOW. All uses changed.
14092 Remove unreachable code.
14093 (read_hex, load_charset_map_from_file): Check for integer overflow.
14094
14095 * xterm.c: Don't go over XClientMessageEvent limit.
14096 (scroll_bar_windows_size): Now ptrdiff_t, as we prefer signed.
14097 (x_send_scroll_bar_event): Likewise. Check that the size does not
14098 exceed limits imposed by XClientMessageEvent, as well as the usual
14099 ptrdiff_t and size_t limits.
14100
14101 * keyboard.c: Overflow, signedness and related fixes.
14102 (make_lispy_movement): Use same integer type in forward decl
14103 that is used in the definition.
14104 (read_key_sequence, keyremap_step):
14105 Change bufsize argument back to int, undoing my 2011-03-30 change.
14106 We prefer signed types, and int is wide enough here.
14107 (parse_tool_bar_item): Don't assume tool_bar_max_label_size is less
14108 than TYPE_MAXIMUM (EMACS_INT) / 2. Don't let the label size grow
14109 larger than STRING_BYTES_BOUND. Use ptrdiff_t for Emacs string
14110 length, not size_t. Use ptrdiff_t for index, not int.
14111 (keyremap_step, read_key_sequence): Redo bufsize check to avoid
14112 possibility of integer overflow.
14113
14114 Overflow, signedness and related fixes for images.
14115
14116 * dispextern.h (struct it.stack[0].u.image.image_id)
14117 (struct_it.image_id, struct image.id, struct image_cache.size)
14118 (struct image_cache.used, struct image_cache.ref_count):
14119 * gtkutil.c (update_frame_tool_bar):
14120 * image.c (x_reference_bitmap, Fimage_size, Fimage_mask_p)
14121 (Fimage_metadata, free_image_cache, clear_image_cache, lookup_image)
14122 (cache_image, mark_image_cache, x_kill_gs_process, Flookup_image):
14123 * nsmenu.m (update_frame_tool_bar):
14124 * xdisp.c (calc_pixel_width_or_height):
14125 * xfns.c (image_cache_refcount):
14126 Image IDs are now ptrdiff_t, not int, to avoid arbitrary limits
14127 on typical 64-bit hosts.
14128
14129 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
14130 (x_bitmap_pixmap, x_create_x_image_and_pixmap):
14131 Omit unnecessary casts to int.
14132 (parse_image_spec): Check that integers fall into 'int' range
14133 when the callers expect that.
14134 (image_ascent): Redo ascent calculation to avoid int overflow.
14135 (clear_image_cache): Avoid overflow when sqrt (INT_MAX) < nimages.
14136 (lookup_image): Remove unnecessary tests.
14137 (xbm_image_p): Locals are now of int, not EMACS_INT,
14138 since parse_image_check makes sure they fit into int.
14139 (png_load, gif_load, svg_load_image):
14140 Prefer int to unsigned where either will do.
14141 (tiff_handler): New function, combining the cores of the
14142 old tiff_error_handler and tiff_warning_handler.
14143 This function is rewritten to use vsnprintf and thereby avoid
14144 stack buffer overflows. It uses only the features of vsnprintf
14145 that are common to both POSIX and native Microsoft.
14146 (tiff_error_handler, tiff_warning_handler): Use it.
14147 (tiff_load, gif_load, imagemagick_load_image):
14148 Don't assume :index value fits in 'int'.
14149 (gif_load): Omit unnecessary cast to double, and avoid double-rounding.
14150 (imagemagick_load_image): Check that crop parameters fit into
14151 the integer types that MagickCropImage accepts. Don't assume
14152 Vimagemagick_render_type has a nonnegative value. Don't assume
14153 size_t fits in 'long'.
14154 (gs_load): Use printmax_t to print the widest integers possible.
14155 Check for integer overflow when computing image height and width.
14156
14157 2011-08-26 Eli Zaretskii <eliz@gnu.org>
14158
14159 * xdisp.c (redisplay_window): Don't force window start if point
14160 will be invisible in the resulting window. (Bug#9324)
14161
14162 2011-08-25 Eli Zaretskii <eliz@gnu.org>
14163
14164 * xdisp.c (compute_display_string_pos): Return 2 in DISP_PROP when
14165 the display spec is of the form `(space ...)'.
14166 (handle_display_spec): Return the value returned by
14167 handle_single_display_spec, not just 1 or zero.
14168 (handle_single_display_spec): If the display spec is of the form
14169 `(space ...)', and specifies display in the text area, return 2
14170 rather than 1.
14171 (try_cursor_movement): Check for the need to scroll more
14172 accurately, and prefer exact match for point under bidi.
14173 Don't advance `row' beyond the last row of the window.
14174
14175 * dispextern.h (struct bidi_it): Rename the disp_prop_p member
14176 into disp_prop; all users changed.
14177
14178 * bidi.c (bidi_fetch_char): If compute_display_string_pos returns
14179 DISP_PROP = 2, substitute the u+2029 PARAGRAPH SEPARATOR character
14180 for the text covered by the display property.
14181
14182 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
14183
14184 * buffer.c (Fbury_buffer_internal): Rename from Funrecord_buffer.
14185 Change return value to nil.
14186 (Frecord_buffer): Delete unused function.
14187
14188 2011-08-24 Eli Zaretskii <eliz@gnu.org>
14189
14190 * xdisp.c (Fcurrent_bidi_paragraph_direction): For unibyte
14191 buffers, return left-to-right.
14192 (set_cursor_from_row): Consider candidate row a win if its glyph
14193 represents a newline and point is on that newline. Fixes cursor
14194 positioning on the newline at EOL of R2L text within L2R
14195 paragraph, and vice versa.
14196 (try_cursor_movement): Check continued rows, in addition to
14197 continuation rows. Fixes unwarranted scroll when point enters a
14198 continued line of R2L text within an L2R paragraph, or vice versa.
14199 (cursor_row_p): Consider the case of point being equal to
14200 MATRIX_ROW_END_CHARPOS. Prevents cursor being stuck when moving
14201 from the end of a short line to the beginning of a continued line
14202 of R2L text within L2R paragraph.
14203 (RECORD_MAX_MIN_POS): For max_pos, use IT_CHARPOS even for
14204 composed characters.
14205
14206 * bidi.c (bidi_check_type): Use xassert.
14207 (bidi_cache_iterator_state): Update the disp_pos and disp_prop_p
14208 members.
14209
14210 2011-08-23 Eli Zaretskii <eliz@gnu.org>
14211
14212 * bidi.c (bidi_get_type): Abort if we get zero as the bidi type of
14213 a character.
14214
14215 2011-08-23 Chong Yidong <cyd@stupidchicken.com>
14216
14217 * nsfont.m (ns_otf_to_script): Fix typo.
14218
14219 2011-08-22 Kenichi Handa <handa@m17n.org>
14220
14221 * chartab.c (Fset_char_table_extra_slot): Do not inhibit setting a
14222 extra slot even if the purpose is char-code-property-table.
14223
14224 2011-08-23 Eli Zaretskii <eliz@gnu.org>
14225
14226 * xdisp.c (redisplay_window): When computing centering_position,
14227 account for the height of the header line. (Bug#8874)
14228
14229 * dispnew.c (buffer_posn_from_coords): Use buf_charpos_to_bytepos
14230 instead of CHAR_TO_BYTE. Fixes a crash when a completion
14231 candidate is selected by the mouse, and that candidate has a
14232 composed character under the mouse.
14233
14234 * xdisp.c (x_produce_glyphs): Set it->nglyphs to 1. Fixes pixel
14235 coordinates reported by pos-visible-in-window-p for a composed
14236 character in column zero.
14237
14238 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
14239
14240 * cmds.c (Fself_insert_command): Mention post-self-insert-hook.
14241
14242 2011-08-22 Eli Zaretskii <eliz@gnu.org>
14243
14244 * xdisp.c (BUFFER_POS_REACHED_P): If this is a composition,
14245 consider it a hit if to_charpos is anywhere in the range of the
14246 composed buffer positions.
14247
14248 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
14249
14250 * image.c (gif_load): Don't assume that each subimage has the same
14251 dimensions as the base image. Handle disposal method that is
14252 "undefined" by the gif spec (Bug#9335).
14253
14254 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
14255
14256 * eval.c (Fsignal): Handle `debug' symbol in error handler (Bug#9329).
14257 (Fcondition_case): Document `debug' symbol in error handler.
14258
14259 2011-08-19 Eli Zaretskii <eliz@gnu.org>
14260
14261 * xfaces.c (face_at_buffer_position): Avoid repeated evaluation of
14262 face ID by FACE_FROM_ID, and avoid a crash when mouse is moved
14263 from an Org mode buffer to a Speedbar frame.
14264
14265 * xdisp.c (RECORD_MAX_MIN_POS): If the display element comes from
14266 a composition, take its buffer position from IT->cmp_it.charpos.
14267 Fixes cursor positioning at the beginning of a line that begins
14268 with a composed character.
14269
14270 2011-08-18 Eli Zaretskii <eliz@gnu.org>
14271
14272 * bidi.c (bidi_get_type): If bidi_type_table reports zero as the
14273 character bidirectional type, use STRONG_L instead. Fixes crashes
14274 in a buffer produced by `describe-categories'.
14275
14276 * dispextern.h (struct bidi_it): Move disp_pos and disp_prop_p
14277 members before the level stack, so they would be saved and
14278 restored when copying iterator state. Fixes incorrect reordering
14279 around TABs covered by display properties.
14280
14281 2011-08-18 Andreas Schwab <schwab@linux-m68k.org>
14282
14283 * process.c (Fnetwork_interface_list): Correctly determine buffer size.
14284
14285 2011-08-17 Chong Yidong <cyd@stupidchicken.com>
14286
14287 * eval.c (internal_condition_case, internal_condition_case_1)
14288 (internal_condition_case_2, internal_condition_case_n):
14289 Remove unnecessary aborts (Bug#9081).
14290
14291 2011-08-17 Eli Zaretskii <eliz@gnu.org>
14292
14293 * lread.c (Fload) [DOS_NT]: If `openp' returns -2, but the file
14294 has no `load' handler, try opening the file locally. (Bug#9311)
14295
14296 2011-08-16 Ken Brown <kbrown@cornell.edu>
14297
14298 * gmalloc.c: Expand comment.
14299
14300 2011-08-16 Eli Zaretskii <eliz@gnu.org>
14301
14302 * xdisp.c (set_cursor_from_row): Don't accept a previous candidate
14303 if it fails the cursor_row_p test. Fixes cursor positioning at ZV.
14304
14305 2011-08-16 Ken Brown <kbrown@cornell.edu>
14306
14307 Fix memory allocation problems in Cygwin build (Bug#9273).
14308
14309 * unexcw.c ( __malloc_initialized): Declare external variable.
14310 (fixup_executable): Force the dumped emacs to reinitialize malloc.
14311
14312 * gmalloc.c [CYGWIN] (bss_sbrk_heapbase, bss_sbrk_heapinfo):
14313 New variables.
14314 (malloc_initialize_1) [CYGWIN]: Prepare for reinitializing the
14315 dumped emacs.
14316 (_free_internal_nolock) [CYGWIN]: Ignore requests to free storage
14317 in the static heap.
14318 [CYGWIN] (special_realloc): New function.
14319 (_realloc_internal_nolock) [CYGWIN]: Use the new function on
14320 requests to realloc storage in the static heap.
14321
14322 2011-08-15 Paul Eggert <eggert@cs.ucla.edu>
14323
14324 * bidi.c (bidi_initialize): Remove unused local.
14325
14326 2011-08-15 Eli Zaretskii <eliz@gnu.org>
14327
14328 * bidimirror.h:
14329 * biditype.h: Remove file.
14330 * makefile.w32-in ($(BLD)/bidi.$(O)):
14331 * deps.mk (bidi.o): Remove biditype.h and bidimirror.h.
14332
14333 * dispextern.h: Fix a typo in the comment to bidi_type_t.
14334
14335 * chartab.c: Improve commentary for the uniprop_table API.
14336
14337 * bidi.c (bidi_paragraph_init): Support zero value of
14338 bidi_ignore_explicit_marks_for_paragraph_level.
14339 (bidi_initialize): Use uniprop_table instead of including
14340 biditype.h and bidimirror.h.
14341
14342 * xdisp.c (move_it_in_display_line_to): Don't reset pixel
14343 coordinates of the iterator when restoring from ppos_it.
14344 (Bug#9296)
14345
14346 2011-08-14 Kenichi Handa <handa@m17n.org>
14347
14348 * process.c (create_process): Call setup_process_coding_systems
14349 after the pid of the process is set to -1 (Bug#8162).
14350
14351 2011-08-14 Eli Zaretskii <eliz@gnu.org>
14352
14353 * xdisp.c (move_it_in_display_line_to): Don't invoke
14354 IT_RESET_X_ASCENT_DESCENT when iterator position was restored from
14355 ppos_it. Fixes vertical cursor motion when line beginning is
14356 covered by an image. (Bug#9296)
14357
14358 2011-08-14 Jan Djärv <jan.h.d@swipnet.se>
14359
14360 * nsterm.h (ns_run_ascript): Declare.
14361 (NSAPP_DATA2_RUNASSCRIPT): Define.
14362
14363 * nsfns.m (as_script, as_result, as_status): New static variables.
14364 (ns_run_ascript): New function.
14365 (Fns_do_applescript): Set variables as_*. Make an NSApplicationDefined
14366 event with data2 set to NSAPP_DATA2_RUNASSCRIPT, post it and then start
14367 the event loop. Get status from as_status (Bug#7276).
14368
14369 * nsterm.m (sendEvent): If event is NSApplicationDefined and
14370 data2 is NSAPP_DATA2_RUNASSCRIPT, call ns_run_ascript and then exit
14371 the event loop (Bug#7276).
14372
14373 2011-08-14 Andreas Schwab <schwab@linux-m68k.org>
14374
14375 * gnutls.c (QCgnutls_bootprop_priority)
14376 (QCgnutls_bootprop_trustfiles, QCgnutls_bootprop_keylist)
14377 (QCgnutls_bootprop_crlfiles, QCgnutls_bootprop_callbacks)
14378 (QCgnutls_bootprop_loglevel, QCgnutls_bootprop_hostname)
14379 (QCgnutls_bootprop_min_prime_bits, QCgnutls_bootprop_verify_flags)
14380 (QCgnutls_bootprop_verify_hostname_error)
14381 (QCgnutls_bootprop_callbacks_verify): Rename from
14382 Qgnutls_bootprop_..., all uses changed.
14383
14384 * xfaces.c (QCignore_defface): Rename from Qignore_defface, all
14385 uses changed.
14386
14387 2011-08-14 Paul Eggert <eggert@cs.ucla.edu>
14388
14389 * xfaces.c (Qframe_set_background_mode): Now static.
14390 * dispextern.h (Qframe_set_background_mode): Remove decl.
14391
14392 * process.c (Fnetwork_interface_info): Declare local only if needed.
14393
14394 2011-08-13 Jan Djärv <jan.h.d@swipnet.se>
14395
14396 * process.c: Include ifaddrs.h and net/if_dl.h if available (Bug#8477).
14397 (Fnetwork_interface_list): Allocate in increments of bytes instead
14398 of sizeof (struct ifreq). Iterate over ifconf.ifc_req by counting
14399 bytes (Bug#8477). Count bytes correctly when ifr_addr is a struct
14400 sockaddr.
14401 (struct ifflag_def): notrailers is smart on OSX.
14402 (Fnetwork_interface_info): Handle case when ifr_flags is negative.
14403 Get hardware address with getifaddrs if available.
14404
14405 2011-08-12 Eli Zaretskii <eliz@gnu.org>
14406
14407 * xdisp.c (iterate_out_of_display_property): xassert that
14408 IT->position is set to within IT->object's boundaries. Break from
14409 the loop as soon as EOB is reached; avoids infloops in redisplay
14410 when IT->position is set up wrongly due to some bug.
14411 Set IT->current to match the bidi iterator unconditionally.
14412 (push_display_prop): Allow GET_FROM_STRING as IT->method on
14413 entry. Force push_it to save on the stack the current
14414 buffer/string position, to be restored by pop_it. Fix flags in
14415 the iterator structure wrt the object coming from a display
14416 property, as `line-prefix' and `wrap-prefix' are not ``replacing''
14417 properties. (Bug#9284)
14418
14419 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
14420
14421 * fontset.c (fontset_get_font_group): Add proper type checks.
14422 (Bug#9172)
14423
14424 2011-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14425
14426 * unexmacosx.c (print_load_command_name): Add cases LC_FUNCTION_STARTS
14427 and LC_VERSION_MIN_MACOSX.
14428 (copy_linkedit_data) [LC_FUNCTION_STARTS]: New function.
14429 (dump_it) [LC_FUNCTION_STARTS]: Use it.
14430
14431 2011-08-08 Eli Zaretskii <eliz@gnu.org>
14432
14433 * xdisp.c (forward_to_next_line_start): Allow to use the
14434 no-display-properties-and-no-overlays under bidi display.
14435 Set disp_pos in the bidi iterator to avoid searches for display
14436 properties and overlays.
14437
14438 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
14439
14440 * editfns.c (Fset_time_zone_rule): Document relationship with the
14441 setenv function.
14442
14443 * ftfont.c (ftfont_pattern_entity): Copy the extras argument to
14444 the font entity extracted from the cache (Bug#8109).
14445
14446 2011-08-07 Chong Yidong <cyd@stupidchicken.com>
14447
14448 * composite.c (autocmp_chars): Don't reset point. That is done by
14449 restore_point_unwind (Bug#5984).
14450
14451 2011-08-07 Juri Linkov <juri@jurta.org>
14452
14453 * editfns.c (Fformat_time_string): Doc fix, add tag `usage:'
14454 to show the arg `TIME' instead of `TIMEVAL'.
14455
14456 2011-08-06 Eli Zaretskii <eliz@gnu.org>
14457
14458 * xdisp.c (set_cursor_from_row): Fix cursor positioning when a
14459 display property strides EOL and includes a newline, as in
14460 longlines-mode. (Bug#9254)
14461 (move_it_in_display_line_to): Fix vertical-motion in a buffer with
14462 word-wrap under bidirectional display. (Bug#9224)
14463
14464 * bidi.c (bidi_unshelve_cache): Don't reset the cache if JUST_FREE
14465 is non-zero, even if the data buffer is NULL. Fixes a crash in
14466 vertical-motion with longlines-mode. (Bug#9254)
14467
14468 2011-08-05 Eli Zaretskii <eliz@gnu.org>
14469
14470 * bidi.c <bidi_cache_total_alloc>: Now static.
14471 (bidi_initialize): Initialize bidi_cache_total_alloc.
14472
14473 * xdisp.c (display_line): Release buffer allocated for shelved bidi
14474 cache. (Bug#9221)
14475
14476 * bidi.c (bidi_shelve_cache, bidi_unshelve_cache): Track total
14477 amount allocated this far in `bidi_cache_total_alloc'.
14478 (bidi_unshelve_cache): Accept an additional argument JUST_FREE; if
14479 non-zero, only free the data buffer without restoring the cache
14480 contents. All callers changed.
14481
14482 * dispextern.h (bidi_unshelve_cache): Update prototype.
14483
14484 * xdisp.c (SAVE_IT, pos_visible_p, move_it_in_display_line_to)
14485 (move_it_in_display_line, move_it_to)
14486 (move_it_vertically_backward, move_it_by_lines): Replace the call
14487 to xfree to an equivalent call to bidi_unshelve_cache.
14488 (move_it_in_display_line_to): Fix logic of returning
14489 MOVE_POS_MATCH_OR_ZV in the bidi case. (Bug#9224)
14490
14491 2011-08-05 Eli Zaretskii <eliz@gnu.org>
14492
14493 * xdisp.c (set_cursor_from_row): Prefer the candidate glyph that
14494 came from a string character with a `cursor' property. (Bug#9229)
14495
14496 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
14497
14498 * Makefile.in (LIB_PTHREAD): New variable.
14499 (LIBES): Add LIB_PTHREAD (Bug#9216).
14500
14501 * alloc.c, emacs.c, gmalloc.c, gtkutil.c, keyboard.c, syssignal.h:
14502 Rename HAVE_GTK_AND_PTHREAD to HAVE_PTHREAD (Bug#9216).
14503
14504 2011-08-04 Andreas Schwab <schwab@linux-m68k.org>
14505
14506 * regex.c (re_iswctype): Remove some redundant boolean conversions.
14507
14508 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
14509
14510 * xterm.c (x_find_topmost_parent): New function.
14511 (x_set_frame_alpha): Find topmost parent window with
14512 x_find_topmost_parent and set the property there also (bug#9181).
14513 (handle_one_xevent): Call x_set_frame_alpha on ReparentNotify.
14514
14515 2011-08-04 Paul Eggert <eggert@cs.ucla.edu>
14516
14517 * callproc.c (Fcall_process): Avoid vfork clobbering
14518 the local vars buffer, coding_systems, current_dir.
14519
14520 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
14521
14522 * keymap.c (Fmake_composed_keymap): Move to subr.el.
14523
14524 2011-08-03 Paul Eggert <eggert@cs.ucla.edu>
14525
14526 * fontset.c (dump_fontset) [FONTSET_DEBUG]: Declare EXTERNALLY_VISIBLE
14527 so that it is not optimized away.
14528
14529 * xdisp.c (compute_display_string_pos): Remove unused local.
14530
14531 2011-08-02 Eli Zaretskii <eliz@gnu.org>
14532
14533 Fix slow cursor motion and scrolling in large buffers with
14534 selective display, like Org Mode buffers. (Bug#9218)
14535
14536 * dispextern.h (struct bidi_it): New member disp_prop_p.
14537
14538 * xdisp.c: Remove one-slot cache of display string positions.
14539 (compute_display_string_pos): Accept an additional argument
14540 DISP_PROP_P; callers changed. Scan at most 5K characters forward
14541 for a display string or property. If found, set DISP_PROP_P
14542 non-zero.
14543
14544 * bidi.c (bidi_fetch_char): Accept an additional argument
14545 DISP_PROP_P, and pass it to compute_display_string_pos.
14546 Only handle text covered by a display string if DISP_PROP_P is returned
14547 non-zero. All callers of bidi_fetch_char changed.
14548
14549 2011-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
14550
14551 * keymap.c (Fdefine_key): Fix Lisp_Object/int mixup; apply some CSE.
14552
14553 2010-12-03 Don March <don@ohspite.net>
14554
14555 * keymap.c (Fdefine_key): Fix non-prefix key error message when
14556 last character M-[char] is translated to ESC [char] (bug#7541).
14557
14558 2011-08-02 Kenichi Handa <handa@m17n.org>
14559
14560 * lisp.h (uniprop_table): Extern it.
14561
14562 * chartab.c (uniprop_table): Make it non-static.
14563
14564 2011-08-01 Eli Zaretskii <eliz@gnu.org>
14565
14566 * xdisp.c (forward_to_next_line_start): Accept additional argument
14567 BIDI_IT_PREV, and store into it the state of the bidi iterator had
14568 on the newline.
14569 (reseat_at_next_visible_line_start): Use the bidi iterator state
14570 returned by forward_to_next_line_start to restore the state of
14571 it->bidi_it after backing up to previous newline. (Bug#9212)
14572
14573 2011-07-30 Andreas Schwab <schwab@linux-m68k.org>
14574
14575 * regex.c (re_comp): Protoize.
14576 (re_exec): Fix return type.
14577 (regexec): Fix type of `ret'. (Bug#9203)
14578
14579 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
14580
14581 * image.c (check_image_size): Use 1024x1024 if unknown frame (Bug#9189).
14582 This is needed if max-image-size is a floating-point number.
14583
14584 2011-07-28 Andreas Schwab <schwab@linux-m68k.org>
14585
14586 * print.c (print_object): Print empty symbol as ##.
14587
14588 * lread.c (read1): Read ## as empty symbol.
14589
14590 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
14591
14592 * nsfns.m (x_set_foreground_color): Set f->foreground_pixel when
14593 setting frame foreground color (Bug#9175).
14594 (x_set_background_color): Likewise.
14595
14596 * nsmenu.m (-setText): Size tooltip dimensions precisely to
14597 contents (Bug#9176).
14598 (EmacsTooltip -init): Remove bezels and add shadows to
14599 tooltip windows.
14600
14601 * nsterm.m (ns_dumpglyphs_stretch): Avoid overwriting left fringe
14602 or scroll bar (Bug#8470).
14603
14604 * nsfont.m (nsfont_open): Remove assignment to voffset and
14605 unnecessary vars hshink, expand, hd, full_height, min_height.
14606 (nsfont_draw): Use s->ybase as baseline for glyph drawing (Bug#8913).
14607
14608 * nsterm.h (nsfont_info): Remove voffset field.
14609
14610 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
14611
14612 Implement strike-through and overline on NextStep (Bug#8863).
14613
14614 * nsfont.m (nsfont_open): Use underline position provided by font,
14615 instead of hard-coded value of 2.
14616 (nsfont_draw): Call ns_draw_text_decoration instead.
14617
14618 * nsterm.h: Add declaration for ns_draw_text_decoration.
14619
14620 * nsterm.m (ns_draw_text_decoration): New function for drawing
14621 underline, overline, and strike-through.
14622 (ns_dumpglyphs_image, ns_dumpglyphs_stretch): Add call to
14623 ns_draw_text_decoration. Change treatment of cursor drawing to
14624 accommodate underlining, etc.
14625
14626 2011-07-28 Eli Zaretskii <eliz@gnu.org>
14627
14628 * buffer.c (init_buffer_once): Set bidi-display-reordering to t by
14629 default.
14630
14631 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
14632
14633 * alloc.c (memory_full) [!SYNC_INPUT]: Fix signal-related race.
14634 Without this fix, if a signal arrives just after memory fills up,
14635 'malloc' might be invoked reentrantly.
14636
14637 * image.c (x_check_image_size) [!HAVE_X_WINDOWS]: Return 1.
14638 In other words, assume that every image size is allowed, on non-X
14639 hosts. This assumption is probably wrong, but it lets Emacs compile.
14640
14641 2011-07-28 Andreas Schwab <schwab@linux-m68k.org>
14642
14643 * regex.c (re_iswctype): Convert return values to boolean.
14644
14645 2011-07-28 Eli Zaretskii <eliz@fencepost.gnu.org>
14646
14647 * xdisp.c (compute_display_string_pos): Don't use cached display
14648 string position if the buffer had its restriction changed.
14649 (Bug#9184)
14650
14651 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
14652
14653 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
14654
14655 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
14656
14657 Integer signedness and overflow and related fixes. (Bug#9079)
14658
14659 * bidi.c: Integer size and overflow fixes.
14660 (bidi_cache_size, bidi_cache_idx, bidi_cache_last_idx)
14661 (bidi_cache_start, bidi_cache_fetch_state, bidi_cache_search)
14662 (bidi_cache_find_level_change, bidi_cache_ensure_space)
14663 (bidi_cache_iterator_state, bidi_cache_find, bidi_cache_start_stack)
14664 (bidi_find_other_level_edge):
14665 Use ptrdiff_t instead of EMACS_INT where either will do.
14666 This works better on 32-bit hosts configured --with-wide-int.
14667 (bidi_cache_ensure_space): Check for size-calculation overflow.
14668 Use % rather than repeated addition, for better worst-case speed.
14669 Don't set bidi_cache_size until after xrealloc returns, because it
14670 might not return.
14671 (bidi_dump_cached_states): Use ptrdiff_t, not int, to avoid overflow.
14672 (bidi_cache_ensure_space): Also check that the bidi cache size
14673 does not exceed that of the largest Lisp string or buffer. See Eli
14674 Zaretskii in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#29>.
14675
14676 * alloc.c (__malloc_size_t): Remove.
14677 All uses replaced by size_t. See Andreas Schwab's note
14678 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#8>.
14679
14680 * image.c: Improve checking for integer overflow.
14681 (check_image_size): Assume that f is nonnull, since
14682 it is always nonnull in practice. This is one less thing to
14683 worry about when checking for integer overflow later.
14684 (x_check_image_size): New function, which checks for integer
14685 overflow issues inside X.
14686 (x_create_x_image_and_pixmap, xbm_read_bitmap_data): Use it.
14687 This removes the need for a memory_full check.
14688 (xbm_image_p): Rewrite to avoid integer multiplication overflow.
14689 (Create_Pixmap_From_Bitmap_Data, xbm_load): Use x_check_image_size.
14690 (xbm_read_bitmap_data): Change locals back to 'int', since
14691 their values must fit in 'int'.
14692 (xpm_load_image, png_load, tiff_load):
14693 Invoke x_create_x_image_and_pixmap earlier,
14694 to avoid much needless work if the image is too large.
14695 (tiff_load): Treat overly large images as if
14696 x_create_x_image_and_pixmap failed, not as malloc failures.
14697 (gs_load): Use x_check_image_size.
14698
14699 * gtkutil.c: Omit integer casts.
14700 (xg_get_pixbuf_from_pixmap): Remove unnecessary cast.
14701 (xg_set_toolkit_scroll_bar_thumb): Rewrite to avoid need for cast.
14702
14703 * image.c (png_load): Don't assume height * row_bytes fits in 'int'.
14704
14705 * xfaces.c (Fbitmap_spec_p): Fix integer overflow bug.
14706 Without this fix, (bitmap-spec-p '(34359738368 1 "x"))
14707 would wrongly return t on a 64-bit host.
14708
14709 * dispnew.c (init_display): Use *_RANGE_OVERFLOW macros.
14710 The plain *_OVERFLOW macros run afoul of GCC bug 49705
14711 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49705>
14712 and therefore cause GCC to emit a bogus diagnostic in some cases.
14713
14714 * image.c: Integer signedness and overflow and related fixes.
14715 This is not an exhaustive set of fixes, but it's time to
14716 record what I've got.
14717 (lookup_pixel_color, check_image_size): Remove redundant decls.
14718 (check_image_size): Don't assume that arbitrary EMACS_INT values
14719 fit in 'int', or that arbitrary 'double' values fit in 'int'.
14720 (x_alloc_image_color, x_create_x_image_and_pixmap, png_load)
14721 (tiff_load, imagemagick_load_image):
14722 Check for overflow in size calculations.
14723 (x_create_x_image_and_pixmap): Remove unnecessary test for
14724 xmalloc returning NULL; that can't happen.
14725 (xbm_read_bitmap_data): Don't assume sizes fit into 'int'.
14726 (xpm_color_bucket): Use better integer hashing function.
14727 (xpm_cache_color): Don't possibly over-allocate memory.
14728 (struct png_memory_storage, tiff_memory_source, tiff_seek_in_memory)
14729 (gif_memory_source):
14730 Use ptrdiff_t, not int or size_t, to record sizes.
14731 (png_load): Don't assume values greater than 2**31 fit in 'int'.
14732 (our_stdio_fill_input_buffer): Prefer ptrdiff_t to size_t when
14733 either works, as we prefer signed integers.
14734 (tiff_read_from_memory, tiff_write_from_memory):
14735 Return tsize_t, not size_t, since that's what the TIFF API wants.
14736 (tiff_read_from_memory): Don't fail simply because the read would
14737 go past EOF; instead, return a short read.
14738 (tiff_load): Omit no-longer-needed casts.
14739 (Fimagemagick_types): Don't assume size fits into 'int'.
14740
14741 Improve hashing quality when configured --with-wide-int.
14742 * fns.c (hash_string): New function, taken from sxhash_string.
14743 Do not discard information about ASCII character case; this
14744 discarding is no longer needed.
14745 (sxhash-string): Use it. Change sig to match it. Caller changed.
14746 * lisp.h: Declare it.
14747 * lread.c (hash_string): Remove, since we now use fns.c's version.
14748 The fns.c version returns a wider integer if --with-wide-int is
14749 specified, so this should help the quality of the hashing a bit.
14750
14751 * emacs.c: Integer overflow minor fix.
14752 (heap_bss_diff): Now uprintmax_t, not unsigned long. All used changed.
14753 Define only if GNU_LINUX.
14754 (main, Fdump_emacs): Set and use heap_bss_diff only if GNU_LINUX.
14755
14756 * dispnew.c: Integer signedness and overflow fixes.
14757 Remove unnecessary forward decls, that were a maintenance hassle.
14758 (history_tick): Now uprintmax_t, so it's more likely to avoid overflow.
14759 All uses changed.
14760 (adjust_glyph_matrix, realloc_glyph_pool, adjust_frame_message_buffer)
14761 (scrolling_window): Use ptrdiff_t, not int, for byte count.
14762 (prepare_desired_row, line_draw_cost):
14763 Use int, not unsigned, where either works.
14764 (save_current_matrix, restore_current_matrix):
14765 Use ptrdiff_t, not size_t, where either works.
14766 (init_display): Check for overflow more accurately, and without
14767 relying on undefined behavior.
14768
14769 * editfns.c (pWIDE, pWIDElen, signed_wide, unsigned_wide):
14770 Remove, replacing with the new symbols in lisp.h. All uses changed.
14771 * fileio.c (make_temp_name):
14772 * filelock.c (lock_file_1, lock_file):
14773 * xdisp.c (message_dolog):
14774 Don't assume PRIdMAX etc. works; this isn't portable to pre-C99 hosts.
14775 Use pMd etc. instead.
14776 * lisp.h (printmax_t, uprintmax_t, pMd, pMu): New types and macros,
14777 replacing the pWIDE etc. symbols removed from editfns.c.
14778
14779 * keyboard.h (num_input_events): Now uintmax_t.
14780 This is (very slightly) less likely to mess up due to wraparound.
14781 All uses changed.
14782
14783 * buffer.c: Integer signedness fixes.
14784 (alloc_buffer_text, enlarge_buffer_text):
14785 Use ptrdiff_t rather than size_t when either will do, as we prefer
14786 signed integers.
14787
14788 * alloc.c: Integer signedness and overflow fixes.
14789 Do not impose an arbitrary 32-bit limit on malloc sizes when debugging.
14790 (__malloc_size_t): Default to size_t, not to int.
14791 (pure_size, pure_bytes_used_before_overflow, stack_copy_size)
14792 (Fgarbage_collect, mark_object_loop_halt, mark_object):
14793 Prefer ptrdiff_t to size_t when either would do, as we prefer
14794 signed integers.
14795 (XMALLOC_OVERRUN_CHECK_OVERHEAD): New macro.
14796 (xmalloc_overrun_check_header, xmalloc_overrun_check_trailer):
14797 Now const. Initialize with values that are in range even if char
14798 is signed.
14799 (XMALLOC_PUT_SIZE, XMALLOC_GET_SIZE): Remove, replacing with ...
14800 (xmalloc_put_size, xmalloc_get_size): New functions. All uses changed.
14801 These functions do the right thing with sizes > 2**32.
14802 (check_depth): Now ptrdiff_t, not int.
14803 (overrun_check_malloc, overrun_check_realloc, overrun_check_free):
14804 Adjust to new way of storing sizes. Check for size overflow bugs
14805 in rest of code.
14806 (STRING_BYTES_MAX): Adjust to new overheads. The old code was
14807 slightly wrong anyway, as it missed one instance of
14808 XMALLOC_OVERRUN_CHECK_OVERHEAD.
14809 (refill_memory_reserve): Omit needless cast to size_t.
14810 (mark_object_loop_halt): Mark as externally visible.
14811
14812 * xselect.c: Integer signedness and overflow fixes.
14813 (Fx_register_dnd_atom, x_handle_dnd_message):
14814 Use ptrdiff_t, not size_t, since we prefer signed.
14815 (Fx_register_dnd_atom): Check for ptrdiff_t (and size_t) overflow.
14816 * xterm.h (struct x_display_info): Use ptrdiff_t, not size_t, for
14817 x_dnd_atoms_size and x_dnd_atoms_length.
14818
14819 * doprnt.c: Prefer signed to unsigned when either works.
14820 * eval.c (verror):
14821 * doprnt.c (doprnt):
14822 * lisp.h (doprnt):
14823 * xdisp.c (vmessage):
14824 Use ptrdiff_t, not size_t, when using or implementing doprnt,
14825 since the sizes cannot exceed ptrdiff_t bounds anyway, and we
14826 prefer signed arithmetic to avoid comparison confusion.
14827 * doprnt.c (doprnt): Avoid a "+ 1" that can't overflow,
14828 but is a bit tricky.
14829
14830 Assume freestanding C89 headers, string.h, stdlib.h.
14831 * data.c, doprnt.c, floatfns.c, print.c:
14832 Include float.h unconditionally.
14833 * gmalloc.c: Assume C89-at-least behavior for preprocessor,
14834 limits.h, stddef.h, string.h. Use memset instead of 'flood'.
14835 * regex.c: Likewise for stddef.h, string.h.
14836 (ISASCII): Remove; can assume it returns 1 now. All uses removed.
14837 * s/aix4-2.h (HAVE_STRING_H): Remove obsolete undef.
14838 * s/ms-w32.h (HAVE_LIMITS_H, HAVE_STRING_H, HAVE_STDLIB_H)
14839 (STDC_HEADERS): Remove obsolete defines.
14840 * sysdep.c: Include limits.h unconditionally.
14841
14842 Assume support for memcmp, memcpy, memmove, memset.
14843 * lisp.h, sysdep.c (memcmp, memcpy, memmove, memset):
14844 * regex.c (memcmp, memcpy):
14845 Remove; we assume C89 now.
14846
14847 * gmalloc.c (memcpy, memset, memmove): Remove; we assume C89 now.
14848 (__malloc_safe_bcopy): Remove; no longer needed.
14849
14850 * lisp.h (struct vectorlike_header, struct Lisp_Subr): Signed sizes.
14851 Use EMACS_INT, not EMACS_UINT, for sizes. The code works equally
14852 well either way, and we prefer signed to unsigned.
14853
14854 2011-07-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
14855
14856 * gnutls.c (emacs_gnutls_read): Don't message anything if the peer
14857 closes the connection while we're reading (bug#9182).
14858
14859 2011-07-25 Jan Djärv <jan.h.d@swipnet.se>
14860
14861 * nsmenu.m (ns_popup_dialog): Add an "ok" button if no buttons
14862 are specified (Bug#9168).
14863
14864 2011-07-25 Paul Eggert <eggert@cs.ucla.edu>
14865
14866 * bidi.c (bidi_dump_cached_states): Fix printf format mismatch.
14867 Found by GCC static checking and --with-wide-int on a 32-bit host.
14868
14869 2011-07-25 Eli Zaretskii <eliz@gnu.org>
14870
14871 * xdisp.c (compute_display_string_pos): Fix logic of caching
14872 previous display string position. Initialize cached_prev_pos to
14873 -1. Fixes slow-down at the beginning of a buffer.
14874
14875 2011-07-24 Eli Zaretskii <eliz@gnu.org>
14876
14877 * xfaces.c (check_lface_attrs) [HAVE_WINDOW_SYSTEM]: Allow `nil'
14878 for attrs[LFACE_FONTSET_INDEX].
14879
14880 2011-07-23 Paul Eggert <eggert@cs.ucla.edu>
14881
14882 * xml.c (parse_region): Remove unused local
14883 that was recently introduced.
14884
14885 2011-07-23 Eli Zaretskii <eliz@gnu.org>
14886
14887 * xfns.c (unwind_create_frame) [GLYPH_DEBUG]: Adapt to changes in
14888 2008-02-22T17:42:09Z!monnier@iro.umontreal.ca.
14889
14890 * xdisp.c (move_it_in_display_line_to): Record the best matching
14891 position for TO_CHARPOS while scanning the line, and restore it on
14892 exit if none of the characters scanned was an exact match.
14893 Fixes vertical-motion and pos-visible-in-window-p under bidi redisplay
14894 when exact match is impossible due to invisible text, and the
14895 lines are truncated.
14896
14897 2011-07-23 Jan Djärv <jan.h.d@swipnet.se>
14898
14899 * nsterm.m (initFrameFromEmacs): Set NSTitledWindowMask in styleMask
14900 for OSX >= 10.7.
14901
14902 2011-07-22 Eli Zaretskii <eliz@gnu.org>
14903
14904 Fix a significant slow-down of cursor motion with C-n, C-p,
14905 C-f/C-b, and C-v/M-v that couldn't keep up with keyboard
14906 auto-repeat under bidi redisplay in fontified buffers.
14907 * xdisp.c (compute_stop_pos_backwards): New function.
14908 (next_element_from_buffer): Call compute_stop_pos_backwards to
14909 find a suitable prev_stop when we find ourselves before
14910 base_level_stop.
14911 (reseat): Don't look for prev_stop, as that could mean a very long
14912 run.
14913 <cached_disp_pos, cached_disp_buffer, cached_disp_modiff>
14914 <cached_disp_overlay_modiff>: Cache for last found display string
14915 position.
14916 (compute_display_string_pos): Return the cached position if asked
14917 about the same buffer in the same area of character positions, and
14918 the buffer wasn't changed since the time the display string
14919 position was cached.
14920
14921 2011-07-22 Eli Zaretskii <eliz@gnu.org>
14922
14923 * xdisp.c (rows_from_pos_range): Don't ignore glyphs whose object
14924 is an integer, which is important for empty lines. (Bug#9149)
14925
14926 2011-07-22 Chong Yidong <cyd@stupidchicken.com>
14927
14928 * frame.c (Fmodify_frame_parameters): In tty case, update the
14929 default face if necessary (Bug#4238).
14930
14931 2011-07-21 Chong Yidong <cyd@stupidchicken.com>
14932
14933 * editfns.c (Fstring_to_char): No need to explain what a character
14934 is in the docstring (Bug#6576).
14935
14936 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
14937
14938 * xml.c (parse_region): Make sure we always return a tree.
14939
14940 2011-07-20 HAMANO Kiyoto <khiker.mail@gmail.com>
14941
14942 * xml.c (parse_region): If a document contains only comments,
14943 return that, too.
14944
14945 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
14946
14947 * xml.c (make_dom): Return comments, too.
14948
14949 2011-07-19 Paul Eggert <eggert@cs.ucla.edu>
14950
14951 Port to OpenBSD.
14952 See http://lists.gnu.org/archive/html/emacs-devel/2011-07/msg00688.html
14953 and the surrounding thread.
14954 * minibuf.c (read_minibuf_noninteractive): Rewrite to use getchar
14955 rather than fgets, and retry after EINTR. Otherwise, 'emacs
14956 --batch -f byte-compile-file' fails on OpenBSD if an inactivity
14957 timer goes off.
14958 * s/openbsd.h (BROKEN_SIGIO): Define.
14959 * unexelf.c (unexec) [__OpenBSD__]:
14960 Don't update the .mdebug section of the Alpha COFF symbol table.
14961
14962 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
14963
14964 * lread.c (syms_of_lread): Clarify when `lexical-binding' is used
14965 (bug#8460).
14966
14967 2011-07-18 Paul Eggert <eggert@cs.ucla.edu>
14968
14969 * fileio.c (Fcopy_file) [!MSDOS]: Tighten created file's mask.
14970 This fixes some race conditions on the permissions of any newly
14971 created file.
14972
14973 * alloc.c (valid_pointer_p): Use pipe, not open.
14974 This fixes some permissions issues when debugging.
14975
14976 * fileio.c (Fcopy_file): Adjust mode if fchown fails. (Bug#9002)
14977 If fchown fails to set both uid and gid, try to set just gid,
14978 as that is sometimes allowed. Adjust the file's mode to eliminate
14979 setuid or setgid bits that are inappropriate if fchown fails.
14980
14981 2011-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
14982
14983 * xdisp.c (next_element_from_string, next_element_from_buffer): Use EQ
14984 to compare Lisp_Objects.
14985 * gnutls.c (syms_of_gnutls): Rename Vgnutls_log_level to
14986 global_gnutls_log_level, don't mistake it for a Lisp_Object.
14987 (init_gnutls_functions, emacs_gnutls_handle_error): Fix up uses.
14988
14989 2011-07-17 Andreas Schwab <schwab@linux-m68k.org>
14990
14991 * lread.c (read_integer): Unread even EOF character.
14992 (read1): Likewise. Properly record start position of symbol.
14993
14994 * lread.c (read1): Read `#:' as empty uninterned symbol if no
14995 symbol character follows.
14996
14997 2011-07-17 Paul Eggert <eggert@cs.ucla.edu>
14998
14999 * fileio.c (Fcopy_file): Pacify gcc re fchown. (Bug#9002)
15000 This works around a problem with the previous change to Fcopy_file.
15001 Recent glibc declares fchown with __attribute__((warn_unused_result)),
15002 and without this change, GCC might complain about discarding
15003 fchown's return value.
15004
15005 2011-07-16 Juanma Barranquero <lekktu@gmail.com>
15006
15007 * makefile.w32-in (GLOBAL_SOURCES): Add gnutls.c (followup to bug#9059).
15008
15009 2011-07-16 Paul Eggert <eggert@cs.ucla.edu>
15010
15011 * fileio.c (Fcopy_file): Don't diagnose fchown failures. (Bug#9002)
15012
15013 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
15014
15015 * gnutls.c (syms_of_gnutls): Define `gnutls-log-level' here, since
15016 it's used from the C level.
15017
15018 * process.c: Use the same condition for POLL_FOR_INPUT in both
15019 keyboard.c and process.c (bug#1858).
15020
15021 2011-07-09 Lawrence Mitchell <wence@gmx.li>
15022
15023 * gnutls.c (Qgnutls_bootprop_min_prime_bits): New variable.
15024 (Fgnutls_boot): Use it.
15025
15026 2011-07-15 Andreas Schwab <schwab@linux-m68k.org>
15027
15028 * doc.c (Fsubstitute_command_keys): Revert last change.
15029
15030 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
15031
15032 * doc.c (Fsubstitute_command_keys): Clarify that \= really only
15033 quotes the next character, and doesn't affect other longer
15034 sequences (bug#8935).
15035
15036 * lread.c (syms_of_lread): Clarify that is isn't only
15037 `eval-buffer' and `eval-defun' that's affected by
15038 `lexical-binding' (bug#8460).
15039
15040 2011-07-15 Eli Zaretskii <eliz@gnu.org>
15041
15042 * xdisp.c (move_it_in_display_line_to): Fix vertical motion with
15043 bidi redisplay when a line includes both an image and is truncated.
15044
15045 2011-07-14 Paul Eggert <eggert@cs.ucla.edu>
15046
15047 Fix minor problems found by static checking.
15048 * bidi.c (bidi_cache_size): Now EMACS_INT, not size_t.
15049 (elsz): Now a signed constant, not a size_t var. We prefer signed
15050 types to unsigned, to avoid integer comparison confusion. Without
15051 this change, GCC 4.6.1 with -Wunsafe-loop-optimizations complains
15052 "cannot optimize loop, the loop counter may overflow", a symptom
15053 of the confusion.
15054 * indent.c (Fvertical_motion): Mark locals as initialized.
15055 * xdisp.c (reseat_to_string): Fix pointer signedness issue.
15056
15057 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
15058
15059 * search.c (Fre_search_backward): Mention `case-fold-search' in
15060 all the re_search_* functions (bug#8138).
15061
15062 * keyboard.c (Fopen_dribble_file): Document when the file is
15063 closed (bug#8056).
15064
15065 2011-07-14 Eli Zaretskii <eliz@gnu.org>
15066
15067 * bidi.c (bidi_dump_cached_states): Fix format of displaying
15068 bidi_cache_idx.
15069
15070 Support bidi reordering of display and overlay strings.
15071 * xdisp.c (compute_display_string_pos)
15072 (compute_display_string_end): Accept additional argument STRING.
15073 (init_iterator, reseat_1): Initialize bidi_it->string.s to NULL.
15074 (reseat_to_string): Initialize bidi_it->string.s and
15075 bidi_it->string.schars.
15076 (Fcurrent_bidi_paragraph_direction): Initialize itb.string.s to
15077 NULL (avoids a crash in bidi_paragraph_init).
15078 Initialize itb.string.lstring.
15079 (init_iterator): Call bidi_init_it only of a valid
15080 buffer position was specified. Initialize paragraph_embedding to
15081 L2R.
15082 (reseat_to_string): Initialize the bidi iterator.
15083 (display_string): If we need to ignore text properties of
15084 LISP_STRING, set IT->stop_charpos to IT->end_charpos. (The
15085 original value of -1 will not work with bidi.)
15086 (compute_display_string_pos): First arg is now struct
15087 `text_pos *'; all callers changed. Support display properties on
15088 Lisp strings.
15089 (compute_display_string_end): Support display properties on Lisp
15090 strings.
15091 (init_iterator, reseat_1, reseat_to_string): Initialize the
15092 string.bufpos member to 0 (zero, for compatibility with IT_CHARPOS
15093 when iterating on a string not from display properties).
15094 (compute_display_string_pos, compute_display_string_end):
15095 Fix calculation of the object to scan. Fixes an error when using
15096 arrow keys.
15097 (next_element_from_buffer): Don't abort when IT_CHARPOS is before
15098 base_level_stop; instead, set base_level_stop to BEGV.
15099 Fixes crashes in vertical-motion.
15100 (next_element_from_buffer): Improve commentary for when
15101 the iterator is before prev_stop.
15102 (init_iterator): Initialize bidi_p from the default value of
15103 bidi-display-reordering, not from buffer-local value. Use the
15104 buffer-local value only if initializing for buffer iteration.
15105 (handle_invisible_prop): Support invisible properties on strings
15106 that are being bidi-reordered.
15107 (set_iterator_to_next): Support bidi reordering of C strings and
15108 Lisp strings.
15109 (next_element_from_string): Support bidi reordering of Lisp
15110 strings.
15111 (handle_stop_backwards): Support Lisp strings as well.
15112 (display_string): Support display of R2L glyph rows.
15113 Use IT_STRING_CHARPOS when displaying from a Lisp string.
15114 (init_iterator): Don't initialize it->bidi_p for strings
15115 here.
15116 (reseat_to_string): Initialize it->bidi_p for strings here.
15117 (next_element_from_string, next_element_from_c_string)
15118 (next_element_from_buffer): Add xassert's for correspondence
15119 between IT's object being iterated and it->bidi_it.string
15120 structure.
15121 (face_before_or_after_it_pos): Support bidi iteration.
15122 (next_element_from_c_string): Handle the case of the first string
15123 character that is not the first one in the visual order.
15124 (get_visually_first_element): New function, refactored from common
15125 parts of next_element_from_buffer, next_element_from_string, and
15126 next_element_from_c_string.
15127 (tool_bar_lines_needed, redisplay_tool_bar)
15128 (display_menu_bar): Force left-to-right direction. Add a FIXME
15129 comment for making that be controlled by a user option.
15130 (push_it, pop_it): Save and restore the state of the
15131 bidi iterator. Save and restore the bidi_p flag.
15132 (pop_it): Iterate out of display property for string iteration as
15133 well.
15134 (iterate_out_of_display_property): Support iteration over strings.
15135 (handle_single_display_spec): Set up it->bidi_it for iteration
15136 over a display string, and call bidi_init_it.
15137 (handle_single_display_spec, next_overlay_string)
15138 (get_overlay_strings_1, push_display_prop): Set up the bidi
15139 iterator for displaying display or overlay strings.
15140 (forward_to_next_line_start): Don't use the shortcut if
15141 bidi-iterating.
15142 (back_to_previous_visible_line_start): If handle_display_prop
15143 pushed the iterator stack, restore the internal state of the bidi
15144 iterator by calling bidi_pop_it same number of times.
15145 (reseat_at_next_visible_line_start): If ON_NEWLINE_P is non-zero,
15146 and we are bidi-iterating, don't decrement the iterator position;
15147 instead, set the first_elt flag in the bidi iterator, to produce
15148 the same effect.
15149 (reseat_1): Remove redundant setting of string_from_display_prop_p.
15150 (push_display_prop): xassert that we are iterating a buffer.
15151 (push_it, pop_it): Save and restore paragraph_embedding member.
15152 (handle_single_display_spec, next_overlay_string)
15153 (get_overlay_strings_1, reseat_1, reseat_to_string)
15154 (push_display_prop): Set up the `unibyte' member of bidi_it.string
15155 correctly. Don't assume unibyte strings are not bidi-reordered.
15156 (compute_display_string_pos)
15157 (compute_display_string_end): Fix handling the case of C string.
15158 (push_it, pop_it): Save and restore from_disp_prop_p.
15159 (handle_single_display_spec, push_display_prop): Set the
15160 from_disp_prop_p flag.
15161 (get_overlay_strings_1): Reset the from_disp_prop_p flag.
15162 (pop_it): Call iterate_out_of_display_property only if we are
15163 popping after iteration over a string that came from a display
15164 property. Fix a typo in popping stretch info. Add an assertion
15165 for verifying that the iterator position is in sync with the bidi
15166 iterator.
15167 (handle_single_display_spec, get_overlay_strings_1)
15168 (push_display_prop): Fix initialization of paragraph direction for
15169 string when that of the parent object is not yet determined.
15170 (reseat_1): Call bidi_init_it to resync the bidi
15171 iterator with IT's position. (Bug#7616)
15172 (find_row_edges): If ROW->start.pos gives position
15173 smaller than min_pos, use it as ROW->minpos. (Bug#7616)
15174 (handle_stop, back_to_previous_visible_line_start, reseat_1):
15175 Reset the from_disp_prop_p flag.
15176 (SAVE_IT, RESTORE_IT): New macros.
15177 (pos_visible_p, face_before_or_after_it_pos)
15178 (back_to_previous_visible_line_start)
15179 (move_it_in_display_line_to, move_it_in_display_line)
15180 (move_it_to, move_it_vertically_backward, move_it_by_lines)
15181 (try_scrolling, redisplay_window, display_line): Use them when
15182 saving a temporary copy of the iterator and restoring it back.
15183 (back_to_previous_visible_line_start, reseat_1)
15184 (init_iterator): Empty the bidi cache "stack".
15185 (move_it_in_display_line_to): If iterator ended up at
15186 EOL, but we never saw any buffer positions smaller than
15187 to_charpos, return MOVE_POS_MATCH_OR_ZV. Fixes vertical cursor
15188 motion in bidi-reordered lines.
15189 (move_it_in_display_line_to): Record prev_method and prev_pos
15190 immediately before the call to set_iterator_to_next. Fixes cursor
15191 motion in bidi-reordered lines with stretch glyphs and strings
15192 displayed in margins. (Bug#8133) (Bug#8867)
15193 Return MOVE_POS_MATCH_OR_ZV only if iterator position is past
15194 TO_CHARPOS.
15195 (pos_visible_p): Support positions in bidi-reordered lines.
15196 Save and restore bidi cache.
15197
15198 * bidi.c (bidi_level_of_next_char): clen should be EMACS_NT, not int.
15199 (bidi_paragraph_info): Delete unused struct.
15200 (bidi_cache_idx, bidi_cache_last_idx): Declare EMACS_INT.
15201 (bidi_cache_start): New variable.
15202 (bidi_cache_reset): Reset bidi_cache_idx to bidi_cache_start, not
15203 to zero.
15204 (bidi_cache_fetch_state, bidi_cache_search)
15205 (bidi_cache_find_level_change, bidi_cache_iterator_state)
15206 (bidi_cache_find, bidi_peek_at_next_level)
15207 (bidi_level_of_next_char, bidi_find_other_level_edge)
15208 (bidi_move_to_visually_next): Compare cache index with
15209 bidi_cache_start rather than with zero.
15210 (bidi_fetch_char): Accept new argument STRING; all callers
15211 changed. Support iteration over a string. Support strings with
15212 display properties. Support unibyte strings. Fix the type of
15213 `len' according to what STRING_CHAR_AND_LENGTH expects.
15214 (bidi_paragraph_init, bidi_resolve_explicit_1)
15215 (bidi_resolve_explicit, bidi_resolve_weak)
15216 (bidi_level_of_next_char, bidi_move_to_visually_next):
15217 Support iteration over a string.
15218 (bidi_set_sor_type, bidi_resolve_explicit_1)
15219 (bidi_resolve_explicit, bidi_type_of_next_char): ignore_bn_limit
15220 can now be zero (for strings); special values 0 and -1 were
15221 changed to -1 and -2, respectively.
15222 (bidi_char_at_pos): New function.
15223 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak):
15224 Call it instead of FETCH_MULTIBYTE_CHAR.
15225 (bidi_move_to_visually_next): Abort if charpos or bytepos were not
15226 initialized to valid values.
15227 (bidi_init_it): Don't initialize charpos and bytepos with invalid
15228 values.
15229 (bidi_level_of_next_char): Allow the sentinel "position" to pass
15230 the test for valid cached positions. Fix the logic for looking up
15231 the sentinel state in the cache. GCPRO the Lisp string we are
15232 iterating.
15233 (bidi_push_it, bidi_pop_it): New functions.
15234 (bidi_initialize): Initialize the bidi cache start stack pointer.
15235 (bidi_cache_ensure_space): New function, refactored from part of
15236 bidi_cache_iterator_state. Don't assume the required size is just
15237 one BIDI_CACHE_CHUNK away.
15238 (bidi_cache_start_stack, bidi_push_it): Use IT_STACK_SIZE.
15239 (bidi_count_bytes, bidi_char_at_pos): New functions.
15240 (bidi_cache_search): Don't assume bidi_cache_last_idx is
15241 always valid if bidi_cache_idx is valid.
15242 (bidi_cache_find_level_change): xassert that bidi_cache_last_idx
15243 is valid if it's going to be used.
15244 (bidi_shelve_cache, bidi_unshelve_cache): New functions.
15245 (bidi_cache_fetch_state, bidi_cache_search)
15246 (bidi_cache_find_level_change, bidi_cache_ensure_space)
15247 (bidi_cache_iterator_state, bidi_cache_find)
15248 (bidi_find_other_level_edge, bidi_cache_start_stack):
15249 All variables related to cache indices are now EMACS_INT.
15250
15251 * dispextern.h (struct bidi_string_data): New structure.
15252 (struct bidi_it): New member `string'. Make flag members be 1-bit
15253 fields, and put them last in the struct.
15254 (compute_display_string_pos, compute_display_string_end):
15255 Update prototypes.
15256 (bidi_push_it, bidi_pop_it): Add prototypes.
15257 (struct iterator_stack_entry): New members bidi_p,
15258 paragraph_embedding, and from_disp_prop_p.
15259 (struct it): Member bidi_p is now a bit field 1 bit wide.
15260 (bidi_shelve_cache, bidi_unshelve_cache):
15261 Declare prototypes.
15262
15263 * .gdbinit (xvectype, xvector, xcompiled, xchartable, xboolvector)
15264 (xpr, xfont, xbacktrace): Use "header.size" when accessing vectors
15265 and vector-like objects.
15266
15267 * dispnew.c (buffer_posn_from_coords): Save and restore the bidi
15268 cache around display iteration.
15269
15270 * window.c (Fwindow_end, window_scroll_pixel_based)
15271 (displayed_window_lines, Frecenter): Save and restore the bidi
15272 cache around display iteration.
15273
15274 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
15275
15276 * editfns.c (Fdelete_region): Clarify the use of the named
15277 parameters (bug#6788).
15278
15279 2011-07-14 Martin Rudalics <rudalics@gmx.at>
15280
15281 * indent.c (Fvertical_motion): Set and restore w->pointm when
15282 saving and restoring the window's buffer (Bug#9006).
15283
15284 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
15285
15286 * editfns.c (Fstring_to_char): Clarify just what is returned
15287 (bug#6576). Text by Eli Zaretskii.
15288
15289 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
15290
15291 * gnutls.c (init_gnutls_functions): Honor gnutls_log_level (bug#9059).
15292
15293 2011-07-13 Eli Zaretskii <eliz@gnu.org>
15294
15295 * buffer.c (mmap_find): Fix a typo.
15296
15297 2011-07-13 Johan Bockgård <bojohan@gnu.org>
15298
15299 Fix execution of x selection hooks.
15300 * xselect.c (Qx_lost_selection_functions)
15301 (Qx_sent_selection_functions): New vars.
15302 (syms_of_xselect): DEFSYM them.
15303 (x_handle_selection_request): Pass Qx_sent_selection_functions
15304 rather than Vx_sent_selection_functions to Frun_hook_with_args.
15305 (x_handle_selection_clear,x_clear_frame_selections):
15306 Pass Qx_lost_selection_functions rather than
15307 Vx_lost_selection_functions to Frun_hook_with_args.
15308
15309 2011-07-13 Paul Eggert <eggert@cs.ucla.edu>
15310
15311 * buffer.c (Fget_buffer_create): Initialize inhibit_shrinking.
15312 The old code sometimes used this field without initializing it.
15313
15314 * alloc.c (gc_sweep): Don't read past end of array.
15315 In theory, the old code could also have corrupted Emacs internals,
15316 though it'd be very unlikely.
15317
15318 2011-07-12 Andreas Schwab <schwab@linux-m68k.org>
15319
15320 * character.c (Fcharacterp): Don't advertise optional ignored
15321 argument. (Bug#4026)
15322
15323 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
15324
15325 * keymap.c (syms_of_keymap): Clarify that "modifier" is "modifier
15326 key" (bug#4257).
15327
15328 * window.c (Fset_window_start): Doc fix (bug#4199).
15329 (Fset_window_hscroll): Ditto.
15330
15331 2011-07-12 Paul Eggert <eggert@cs.ucla.edu>
15332
15333 Fix minor new problems caught by GCC 4.6.1.
15334 * term.c (init_tty): Remove unused local.
15335 * xsettings.c (store_monospaced_changed): Define this function only
15336 if (defined HAVE_GSETTINGS || defined HAVE_GCONF), as it's
15337 not used otherwise.
15338
15339 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
15340
15341 * xdisp.c (Vresize_mini_windows): Minor doc fix (Bug#3300).
15342
15343 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
15344
15345 * xdisp.c (syms_of_xdisp): Make it explicit that the mini-windows
15346 are the mini-buffer and the echo area (bug#3320).
15347
15348 * term.c (init_tty): Remove support for supdup, c10 and perq
15349 terminals, which are no longer supported (bug#1482).
15350
15351 2011-07-10 Johan Bockgård <bojohan@gnu.org>
15352
15353 * xdisp.c (Ftool_bar_lines_needed): Fix WINDOWP check.
15354
15355 2011-07-10 Jan Djärv <jan.h.d@swipnet.se>
15356
15357 * xmenu.c (menu_highlight_callback): Only pass frame to show_help_event
15358 for non-popups (Bug#3642).
15359
15360 2011-07-10 Andreas Schwab <schwab@linux-m68k.org>
15361
15362 * alloc.c (reset_malloc_hooks): Protoize.
15363 * buffer.c (mmap_init, mmap_find, mmap_free_1, mmap_enlarge)
15364 (mmap_set_vars, mmap_alloc, mmap_free, mmap_realloc): Likewise.
15365 * cm.c (losecursor): Likewise.
15366 * data.c (fmod): Likewise.
15367 * dispnew.c (swap_glyphs_in_rows): Likewise.
15368 * emacs.c (memory_warning_signal): Likewise.
15369 * floatfns.c (float_error): Likewise.
15370 * font.c (check_gstring, check_otf_features, otf_tag_symbol)
15371 (otf_open, font_otf_capability, generate_otf_features)
15372 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
15373 Likewise.
15374 * image.c (pbm_read_file): Likewise.
15375 * indent.c (string_display_width): Likewise.
15376 * intervals.c (check_for_interval, search_for_interval)
15377 (inc_interval_count, count_intervals, root_interval)
15378 (adjust_intervals_for_insertion, make_new_interval): Likewise.
15379 * lread.c (defalias): Likewise.
15380 * ralloc.c (r_alloc_check): Likewise.
15381 * regex.c (set_image_of_range_1, set_image_of_range)
15382 (regex_grow_registers): Likewise.
15383 * sysdep.c (strerror): Likewise.
15384 * termcap.c (valid_filename_p, tprint, main): Likewise.
15385 * tparam.c (main): Likewise.
15386 * unexhp9k800.c (run_time_remap, save_data_space)
15387 (update_file_ptrs, read_header, write_header, calculate_checksum)
15388 (copy_file, copy_rest, display_header): Likewise.
15389 * widget.c (mark_shell_size_user_specified, create_frame_gcs):
15390 Likewise.
15391 * xdisp.c (check_it): Likewise.
15392 * xfaces.c (register_color, unregister_color, unregister_colors):
15393 Likewise.
15394 * xfns.c (print_fontset_result): Likewise.
15395 * xrdb.c (member, fatal, main): Likewise.
15396
15397 2011-07-10 Paul Eggert <eggert@cs.ucla.edu>
15398
15399 Fix minor problems found by static checking (Bug#9031).
15400 * chartab.c (char_table_set_range, map_sub_char_table):
15401 Remove unused locals.
15402 (uniprop_table): Now static.
15403 * composite.c (_work_char): Remove unused static var.
15404
15405 2011-07-09 Juanma Barranquero <lekktu@gmail.com>
15406
15407 * chartab.c (uniprop_table_uncompress): Remove unused local variable.
15408
15409 2011-07-09 Jan Djärv <jan.h.d@swipnet.se>
15410
15411 * gtkutil.c (qttip_cb): Remove code without function.
15412
15413 2011-07-09 Eli Zaretskii <eliz@gnu.org>
15414
15415 * w32.c (pthread_sigmask): New stub.
15416
15417 2011-07-08 Paul Eggert <eggert@cs.ucla.edu>
15418
15419 Use pthread_sigmask, not sigprocmask (Bug#9010).
15420 sigprocmask is portable only for single-threaded applications, and
15421 Emacs can be multi-threaded when it uses GTK.
15422 * Makefile.in (LIB_PTHREAD_SIGMASK): New macro.
15423 (LIBES): Use it.
15424 * callproc.c (Fcall_process):
15425 * process.c (create_process):
15426 * sysdep.c (sys_sigblock, sys_sigunblock, sys_sigsetmask):
15427 Use pthread_sigmask, not sigprocmask.
15428
15429 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
15430
15431 * gtkutil.c (qttip_cb): Set line wrap to FALSE for tooltip widget.
15432 (xg_prepare_tooltip): Revert text in x->ttip_lbl, margins was
15433 wrong (Bug#8591).
15434
15435 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
15436
15437 * gtkutil.c (xg_prepare_tooltip): Fix indentation and comment.
15438 Put text in x->ttip_lbl instead of gtk_tooltip_set_text (Bug#8591).
15439 (xg_hide_tooltip): Fix comment.
15440
15441 * nsterm.m (initFrameFromEmacs): Don't use ns_return_types
15442 in registerServicesMenuSendTypes.
15443 (validRequestorForSendType): Don't check ns_return_types.
15444
15445 * nsfns.m (Fx_open_connection): Put NSStringPboardType into
15446 ns_return_type.
15447
15448 2011-07-08 Jason Rumney <jasonr@gnu.org>
15449
15450 * w32term.c (x_make_frame_visible): Use SH_SHOWNORMAL rather than
15451 SH_SHOW for hidden windows (Bug#5482).
15452
15453 * w32fns.c (w32_wnd_proc) [WM_TIMER, WM_SET_CURSOR]: Avoid using
15454 frame struct members of non-existent frames (Bug#6284).
15455
15456 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
15457
15458 * nsterm.m (keyDown): Call to wantsToDelayTextChangeNotifications and
15459 variable firstTime not needed on OSX >= 10.6.
15460 (setPosition): setFloatValue:knobProportion: is deprecated on OSX
15461 >= 10.5. Use setKnobProportion, setDoubleValue.
15462
15463 * nsterm.h (MAC_OS_X_VERSION_10_3, MAC_OS_X_VERSION_10_4)
15464 (MAC_OS_X_VERSION_10_5): Define if not defined.
15465 (EmacsView, EmacsTooltip): Implements NSWindowDelegate on OSX >= 10.6.
15466 (EmacsMenu): Implements NSMenuDelegate on OSX >= 10.6.
15467 (EmacsToolbar): Implements NSToolbarDelegate on OSX >= 10.6.
15468
15469 * nsselect.m (ns_string_from_pasteboard): Don't use deprecated methods
15470 cString and lossyCString on OSX >= 10.4.
15471
15472 * nsmenu.m (fillWithWidgetValue): Don't use deprecated method
15473 sizeToFit on OSX >= 10.2.
15474
15475 * nsimage.m (allocInitFromFile): Don't use deprecated method
15476 bestRepresentationForDevice on OSX >= 10.6.
15477
15478 * nsfns.m (check_ns_display_info): Cast to long and use %ld in error
15479 to avoid warning.
15480
15481 * emacs.c: Declare unexec_init_emacs_zone.
15482
15483 * nsgui.h: Fix compiler warning about gnulib redefining verify.
15484
15485 * nsselect.m (ns_get_local_selection): Change to extern (Bug#8842).
15486
15487 * nsmenu.m (ns_update_menubar): Remove useless setDelegate call
15488 on svcsMenu (Bug#8842).
15489
15490 * nsfns.m (Fx_open_connection): Remove NSStringPboardType from
15491 ns_return_types.
15492 (Fns_list_services): Just return Qnil on 10.6, code not working there.
15493
15494 * nsterm.m (QUTF8_STRING): Declare.
15495 (initFrameFromEmacs): Call registerServicesMenuSendTypes.
15496 (validRequestorForSendType): Return type is (id).
15497 Change indexOfObjectIdenticalTo to indexOfObject.
15498 Check if we have local selection before returning self (Bug#8842).
15499 (writeSelectionToPasteboard): Put local selection into paste board
15500 if we have a local selection (Bug#8842).
15501 (syms_of_nsterm): DEFSYM QUTF8_STRING.
15502
15503 * nsterm.h (MAC_OS_X_VERSION_10_6): Define here instead of nsterm.m.
15504 (ns_get_local_selection): Declare.
15505
15506 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
15507
15508 * keymap.c (describe_map_tree): Don't insert a double newline at
15509 the end of the buffer (bug#1169) and return whether we inserted
15510 something.
15511
15512 * callint.c (Fcall_interactively): Change "reading args" to
15513 "providing args" to try to clarify what it does (bug#1010).
15514
15515 2011-07-07 Kenichi Handa <handa@m17n.org>
15516
15517 * composite.c (composition_compute_stop_pos): Ignore a static
15518 composition starting before CHARPOS (Bug#8915).
15519
15520 * xdisp.c (handle_composition_prop): Likewise.
15521
15522 2011-07-07 Eli Zaretskii <eliz@gnu.org>
15523
15524 * term.c (produce_glyphs) <xassert>: Allow IT_GLYPHLESS in it->what.
15525 (Bug#9015)
15526
15527 2011-07-07 Kenichi Handa <handa@m17n.org>
15528
15529 * character.h (unicode_category_t): New enum type.
15530
15531 * chartab.c (uniprop_decoder_t, uniprop_encoder_t): New types.
15532 (Qchar_code_property_table): New variable.
15533 (UNIPROP_TABLE_P, UNIPROP_GET_DECODER)
15534 (UNIPROP_COMPRESSED_FORM_P): New macros.
15535 (char_table_ascii): Uncompress the compressed values.
15536 (sub_char_table_ref): New arg is_uniprop. Callers changed.
15537 Uncompress the compressed values.
15538 (sub_char_table_ref_and_range): Likewise.
15539 (char_table_ref_and_range): Uncompress the compressed values.
15540 (sub_char_table_set): New arg is_uniprop. Callers changed.
15541 Uncompress the compressed values.
15542 (sub_char_table_set_range): Args changed. Callers changed.
15543 (char_table_set_range): Adjuted for the above change.
15544 (map_sub_char_table): Delete args default_val and parent. Add arg
15545 top. Give decoded values to a Lisp function.
15546 (map_char_table): Adjust for the above change. Give decoded
15547 values to a Lisp function. Gcpro more variables.
15548 (uniprop_table_uncompress)
15549 (uniprop_decode_value_run_length): New functions.
15550 (uniprop_decoder, uniprop_decoder_count): New variables.
15551 (uniprop_get_decoder, uniprop_encode_value_character)
15552 (uniprop_encode_value_run_length, uniprop_encode_value_numeric):
15553 New functions.
15554 (uniprop_encoder, uniprop_encoder_count): New variables.
15555 (uniprop_get_encoder, uniprop_table)
15556 (Funicode_property_table_internal, Fget_unicode_property_internal)
15557 (Fput_unicode_property_internal): New functions.
15558 (syms_of_chartab): DEFSYM Qchar_code_property_table, defsubr
15559 Sunicode_property_table_internal, Sget_unicode_property_internal,
15560 and Sput_unicode_property_internal. Defvar_lisp
15561 char-code-property-alist.
15562
15563 * composite.c (CHAR_COMPOSABLE_P): Adjust for the change of
15564 Vunicode_category_table.
15565
15566 * font.c (font_range): Adjust for the change of
15567 Vunicode_category_table.
15568
15569 2011-07-07 Dan Nicolaescu <dann@ics.uci.edu>
15570
15571 * m/iris4d.h: Remove file, move contents ...
15572 * s/irix6-5.h: ... here.
15573
15574 2011-07-06 Paul Eggert <eggert@cs.ucla.edu>
15575
15576 Remove unportable assumption about struct layout (Bug#8884).
15577 * alloc.c (mark_buffer):
15578 * buffer.c (reset_buffer_local_variables, Fbuffer_local_variables)
15579 (clone_per_buffer_values): Don't assume that
15580 sizeof (struct buffer) is a multiple of sizeof (Lisp_Object).
15581 This isn't true in general, and it's particularly not true
15582 if Emacs is configured with --with-wide-int.
15583 * buffer.h (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER):
15584 New macros, used in the buffer.c change.
15585
15586 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
15587
15588 * xsettings.c: Use both GConf and GSettings if both are available.
15589 (store_config_changed_event): Add comment.
15590 (dpyinfo_valid, store_font_name_changed, map_tool_bar_style)
15591 (store_tool_bar_style_changed): New functions.
15592 (store_monospaced_changed): Add comment. Call dpyinfo_valid.
15593 (struct xsettings): Move font inside HAVE_XFT.
15594 (GSETTINGS_TOOL_BAR_STYLE, GSETTINGS_FONT_NAME): New defines.
15595 (GSETTINGS_MONO_FONT): Rename from SYSTEM_MONO_FONT.
15596 Move inside HAVE_XFT.
15597 (something_changed_gsettingsCB): Rename from something_changedCB.
15598 Check for changes in GSETTINGS_TOOL_BAR_STYLE and GSETTINGS_FONT_NAME
15599 also.
15600 (GCONF_TOOL_BAR_STYLE, GCONF_FONT_NAME): New defines.
15601 (GCONF_MONO_FONT): Rename from SYSTEM_MONO_FONT. Move inside HAVE_XFT.
15602 (something_changed_gconfCB): Rename from something_changedCB.
15603 Check for changes in GCONF_TOOL_BAR_STYLE and GCONF_FONT_NAME also.
15604 (parse_settings): Move check for font inside HAVE_XFT.
15605 (read_settings, apply_xft_settings): Add comment.
15606 (read_and_apply_settings): Add comment. Call map_tool_bar_style and
15607 store_tool_bar_style_changed. Move check for font inside HAVE_XFT and
15608 call store_font_name_changed.
15609 (xft_settings_event): Add comment.
15610 (init_gsettings): Add comment. Get values for GSETTINGS_TOOL_BAR_STYLE
15611 and GSETTINGS_FONT_NAME. Move check for fonts within HAVE_XFT.
15612 (init_gconf): Add comment. Get values for GCONF_TOOL_BAR_STYLE
15613 and GCONF_FONT_NAME. Move check for fonts within HAVE_XFT.
15614 (xsettings_initialize): Call init_gsettings last.
15615 (xsettings_get_system_font, xsettings_get_system_normal_font):
15616 Add comment.
15617
15618 2011-07-05 Paul Eggert <eggert@cs.ucla.edu>
15619
15620 Random fixes. E.g., (random) never returned negative values.
15621 * fns.c (Frandom): Use GET_EMACS_TIME for random seed, and add the
15622 subseconds part to the entropy, as that's a bit more random.
15623 Prefer signed to unsigned, since the signedness doesn't matter and
15624 in general we prefer signed. When given a limit, use a
15625 denominator equal to INTMASK + 1, not to VALMASK + 1, because the
15626 latter isn't right if USE_2_TAGS_FOR_INTS.
15627 * sysdep.c (get_random): Return a value in the range 0..INTMASK,
15628 not 0..VALMASK. Don't discard "excess" bits that random () returns.
15629
15630 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
15631
15632 * textprop.c (text_property_stickiness):
15633 Obey Vtext_property_default_nonsticky.
15634 (syms_of_textprop): Add `display' to Vtext_property_default_nonsticky.
15635 * w32fns.c (syms_of_w32fns):
15636 * xfns.c (syms_of_xfns): Don't Add `display' since it's there by default.
15637
15638 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
15639
15640 * fileio.c (barf_or_query_if_file_exists): Use S_ISDIR.
15641 This is more efficient than Ffile_directory_p and avoids a minor race.
15642
15643 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
15644
15645 * buffer.c (Foverlay_put): Say what the return value is
15646 (bug#7835).
15647
15648 * fileio.c (barf_or_query_if_file_exists): Check first if the file
15649 is a directory before asking whether to use the file name
15650 (bug#7564).
15651 (barf_or_query_if_file_exists): Make the "File is a directory"
15652 error be more correct.
15653
15654 * fns.c (Frequire): Remove the mention of the .gz files, since
15655 that's installation-specific, but keep the mention of
15656 `get-load-suffixes'.
15657
15658 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
15659
15660 * editfns.c (Fformat_time_string): Don't assume strlen fits in int.
15661 Report string overflow if the output is too long.
15662
15663 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
15664
15665 * gnutls.c (Fgnutls_boot): Don't mention :verify-error.
15666 (syms_of_gnutls): Remove duplicate DEFSYM for
15667 Qgnutls_bootprop_verify_hostname_error, an error for
15668 Qgnutls_bootprop_verify_error (which is no longer used).
15669
15670 * eval.c (find_handler_clause): Remove parameters `sig' and `data',
15671 unused since 2011-01-26T20:02:07Z!monnier@iro.umontreal.ca. All callers changed.
15672 Also (re)move comments that are misplaced or no longer relevant.
15673
15674 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
15675
15676 * callint.c (Finteractive): Clarify the meaning of "@" (bug#8813).
15677
15678 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
15679
15680 * xfaces.c (Finternal_merge_in_global_face): Modify the foreground
15681 and background color parameters if they have been changed.
15682
15683 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
15684
15685 * editfns.c (Fformat): Clarify the - and 0 flags (bug#6659).
15686
15687 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
15688
15689 * xsettings.c (SYSTEM_FONT): Define only when used.
15690 No need to define when HAVE_GSETTINGS || !HAVE_XFT.
15691
15692 * keymap.c (access_keymap_1): Now static.
15693
15694 2011-07-02 Chong Yidong <cyd@stupidchicken.com>
15695
15696 * keyboard.c (command_loop_1): If a down-mouse event is unbound,
15697 leave any prefix arg for the up event (Bug#1586).
15698
15699 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
15700
15701 * lread.c (syms_of_lread): Mention single symbols defined by
15702 `defvar' or `defconst' (bug#7154).
15703
15704 * fns.c (Frequire): Mention .el.gz files (bug#7314).
15705 (Frequire): Mention get-load-suffixes.
15706
15707 2011-07-02 Martin Rudalics <rudalics@gmx.at>
15708
15709 * window.h (window): Remove clone_number slot.
15710 * window.c (Fwindow_clone_number, Fset_window_clone_number):
15711 Remove.
15712 (make_parent_window, make_window, saved_window)
15713 (Fset_window_configuration, save_window_save): Don't deal with
15714 clone numbers.
15715 * buffer.c (Qclone_number): Remove declaration.
15716 (sort_overlays, overlay_strings): Don't deal with clone numbers.
15717
15718 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
15719
15720 Add multiple inheritance to keymaps.
15721 * keymap.c (Fmake_composed_keymap): New function.
15722 (Fset_keymap_parent): Simplify.
15723 (fix_submap_inheritance): Remove.
15724 (access_keymap_1): New function extracted from access_keymap to handle
15725 embedded parents and handle lists of maps.
15726 (access_keymap): Use it.
15727 (Fkeymap_prompt, map_keymap_internal, map_keymap, store_in_keymap)
15728 (Fcopy_keymap): Handle embedded parents.
15729 (Fcommand_remapping, define_as_prefix): Simplify.
15730 (Fkey_binding): Simplify.
15731 (syms_of_keymap): Move minibuffer-local-completion-map,
15732 minibuffer-local-filename-completion-map,
15733 minibuffer-local-must-match-map, and
15734 minibuffer-local-filename-must-match-map to Elisp.
15735 (syms_of_keymap): Defsubr make-composed-keymap.
15736 * keyboard.c (menu_bar_items): Use map_keymap_canonical.
15737 (parse_menu_item): Trivial simplification.
15738
15739 2011-07-01 Glenn Morris <rgm@gnu.org>
15740
15741 * Makefile.in (SETTINGS_LIBS): Fix typo.
15742
15743 2011-07-01 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
15744
15745 * coding.c (Fencode_coding_string): Record the last coding system
15746 used, as the function doc string says (bug#8738).
15747
15748 2011-07-01 Jan Djärv <jan.h.d@swipnet.se>
15749
15750 * xsettings.c (store_monospaced_changed): Take new font as arg and
15751 check for change against current_mono_font.
15752 (EMACS_TYPE_SETTINGS): Remove this and related defines.
15753 (emacs_settings_constructor, emacs_settings_get_property)
15754 (emacs_settings_set_property, emacs_settings_class_init)
15755 (emacs_settings_init, gsettings_obj): Remove.
15756 (something_changedCB): New function for HAVE_GSETTINGS.
15757 (something_changedCB): HAVE_GCONF: Call store_monospaced_changed
15758 with value as argument.
15759 (init_gsettings): Check that GSETTINGS_SCHEMA exists before calling
15760 g_settings_new (Bug#8967). Do not create gsettings_obj.
15761 Remove calls to g_settings_bind. Connect something_changedCB to
15762 "changed".
15763
15764 * xgselect.c: Add defined (HAVE_GSETTINGS).
15765 (xgselect_initialize): Ditto.
15766
15767 * process.c: Add defined (HAVE_GSETTINGS) for xgselect.h
15768 (wait_reading_process_output): Add defined (HAVE_GSETTINGS) for
15769 xg_select.
15770
15771 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
15772
15773 * eval.c (struct backtrace): Simplify and port the data structure.
15774 Do not assume that "int nargs : BITS_PER_INT - 2;" produces a
15775 signed bit field, as this assumption is not portable and it makes
15776 Emacs crash when compiled with Sun C 5.8 on sparc. Do not use
15777 "char debug_on_exit : 1" as this is not portable either; instead,
15778 use the portable "unsigned int debug_on_exit : 1". Remove unused
15779 member evalargs. Remove obsolete comments about cc bombing out.
15780
15781 2011-06-30 Jan Djärv <jan.h.d@swipnet.se>
15782
15783 * xsettings.c: Include glib-object.h, gio/gio.h if HAVE_GSETTINGS.
15784 Let HAVE_GSETTINGS override HAVE_GCONF.
15785 (store_monospaced_changed): New function.
15786 (EMACS_SETTINGS): A new type derived from GObject to handle
15787 GSettings notifications.
15788 (emacs_settings_constructor, emacs_settings_get_property)
15789 (emacs_settings_set_property, emacs_settings_class_init):
15790 New functions.
15791 (gsettings_client, gsettings_obj): New variables.
15792 (GSETTINGS_SCHEMA): New define.
15793 (something_changedCB): Call store_monospaced_changed.
15794 (init_gsettings): New function.
15795 (xsettings_initialize): Call init_gsettings.
15796 (syms_of_xsettings): Initialize gsettings_client, gsettings_obj
15797 to NULL.
15798
15799 * Makefile.in (SETTINGS_CFLAGS, SETTINGS_LIBS): Rename from
15800 GCONF_CFLAGS/LIBS.
15801
15802 2011-06-29 Martin Rudalics <rudalics@gmx.at>
15803
15804 * window.c (resize_root_window, grow_mini_window)
15805 (shrink_mini_window): Rename Qresize_root_window to
15806 Qwindow_resize_root_window and Qresize_root_window_vertically to
15807 Qwindow_resize_root_window_vertically.
15808
15809 2011-06-28 Paul Eggert <eggert@cs.ucla.edu>
15810
15811 * gnutls.c (Qgnutls_bootprop_verify_error): Remove unused var.
15812
15813 2011-06-27 Juanma Barranquero <lekktu@gmail.com>
15814
15815 * makefile.w32-in: Redesign dependencies so they reflect more
15816 clearly which files are directly included by each source file,
15817 and not through other includes.
15818
15819 2011-06-27 Martin Rudalics <rudalics@gmx.at>
15820
15821 * buffer.c (Qclone_number): Declare static and DEFSYM it.
15822 (sort_overlays, overlay_strings): When an overlay's clone number
15823 matches the window's clone number process the overlay even if
15824 the overlay's window property doesn't match the current window.
15825
15826 * window.c (Fwindow_vchild): Rename to Fwindow_top_child.
15827 (Fwindow_hchild): Rename to Fwindow_left_child.
15828 (Fwindow_next): Rename to Fwindow_next_sibling.
15829 (Fwindow_prev): Rename to Fwindow_prev_sibling.
15830 (resize_window_check): Rename to window_resize_check.
15831 (resize_window_apply): Rename to window_resize_apply.
15832 (Fresize_window_apply): Rename to Fwindow_resize_apply.
15833 (Fdelete_other_windows_internal, resize_frame_windows)
15834 (Fsplit_window_internal, Fdelete_window_internal)
15835 (grow_mini_window, shrink_mini_window)
15836 (Fresize_mini_window_internal): Fix callers accordingly.
15837
15838 2011-06-26 Jan Djärv <jan.h.d@swipnet.se>
15839
15840 * emacsgtkfixed.h: State that this is only used with Gtk+3.
15841 (emacs_fixed_set_min_size): Remove.
15842 (emacs_fixed_new): Take frame as argument.
15843
15844 * emacsgtkfixed.c: State that this is only used with Gtk+3.
15845 (_EmacsFixedPrivate): Remove minwidth/height.
15846 Add struct frame *f.
15847 (emacs_fixed_init): Initialize priv->f.
15848 (get_parent_class, emacs_fixed_set_min_size): Remove.
15849 (emacs_fixed_new): Set priv->f to argument.
15850 (emacs_fixed_get_preferred_width)
15851 (emacs_fixed_get_preferred_height): Use min_width/height from
15852 frames size_hint to set minimum and natural (Bug#8919).
15853 (XSetWMSizeHints, XSetWMNormalHints): Override these functions
15854 and use min_width/height from frames size_hint to set
15855 min_width/height (Bug#8919).
15856
15857 * gtkutil.c (xg_create_frame_widgets): Pass f to emacs_fixed_new.
15858 (x_wm_set_size_hint): Remove call to emacs_fixed_set_min_size.
15859 Fix indentation.
15860
15861 2011-06-26 Eli Zaretskii <eliz@gnu.org>
15862
15863 * bidi.c (bidi_paragraph_init): Test for ZV_BYTE before calling
15864 bidi_at_paragraph_end, since fast_looking_at doesn't like to be
15865 called at ZV.
15866
15867 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
15868
15869 * process.c (wait_reading_process_output): Bypass select if
15870 waiting for a cell while ignoring keyboard input, and input is
15871 pending. Suggested by Jan Djärv (Bug#8869).
15872
15873 2011-06-25 Paul Eggert <eggert@cs.ucla.edu>
15874
15875 Use gnulib's dup2 module instead of rolling our own.
15876 * sysdep.c (dup2) [!HAVE_DUP2]: Remove; gnulib now does this.
15877
15878 2011-06-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15879
15880 * dispnew.c (scrolling_window): Before scrolling, turn off a
15881 mouse-highlight in the window being scrolled.
15882
15883 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
15884
15885 Move DEFSYM to lisp.h and use everywhere.
15886
15887 * character.h (DEFSYM): Move declaration...
15888 * lisp.h (DEFSYM): ...here.
15889
15890 * gnutls.c:
15891 * minibuf.c:
15892 * w32menu.c:
15893 * w32proc.c:
15894 * w32select.c: Don't include character.h.
15895
15896 * alloc.c (syms_of_alloc):
15897 * buffer.c (syms_of_buffer):
15898 * bytecode.c (syms_of_bytecode):
15899 * callint.c (syms_of_callint):
15900 * casefiddle.c (syms_of_casefiddle):
15901 * casetab.c (init_casetab_once):
15902 * category.c (init_category_once, syms_of_category):
15903 * ccl.c (syms_of_ccl):
15904 * cmds.c (syms_of_cmds):
15905 * composite.c (syms_of_composite):
15906 * dbusbind.c (syms_of_dbusbind):
15907 * dired.c (syms_of_dired):
15908 * dispnew.c (syms_of_display):
15909 * doc.c (syms_of_doc):
15910 * editfns.c (syms_of_editfns):
15911 * emacs.c (syms_of_emacs):
15912 * eval.c (syms_of_eval):
15913 * fileio.c (syms_of_fileio):
15914 * fns.c (syms_of_fns):
15915 * frame.c (syms_of_frame):
15916 * fringe.c (syms_of_fringe):
15917 * insdel.c (syms_of_insdel):
15918 * keymap.c (syms_of_keymap):
15919 * lread.c (init_obarray, syms_of_lread):
15920 * macros.c (syms_of_macros):
15921 * msdos.c (syms_of_msdos):
15922 * print.c (syms_of_print):
15923 * process.c (syms_of_process):
15924 * search.c (syms_of_search):
15925 * sound.c (syms_of_sound):
15926 * syntax.c (init_syntax_once, syms_of_syntax):
15927 * terminal.c (syms_of_terminal):
15928 * textprop.c (syms_of_textprop):
15929 * undo.c (syms_of_undo):
15930 * w32.c (globals_of_w32):
15931 * window.c (syms_of_window):
15932 * xdisp.c (syms_of_xdisp):
15933 * xfaces.c (syms_of_xfaces):
15934 * xfns.c (syms_of_xfns):
15935 * xmenu.c (syms_of_xmenu):
15936 * xsettings.c (syms_of_xsettings):
15937 * xterm.c (syms_of_xterm): Use DEFSYM.
15938
15939 2011-06-24 Teodor Zlatanov <tzz@lifelogs.com>
15940
15941 * gnutls.c (syms_of_gnutls): Use the DEFSYM macro from character.h.
15942
15943 2011-06-23 Paul Eggert <eggert@cs.ucla.edu>
15944
15945 Integer and buffer overflow fixes (Bug#8873).
15946
15947 * print.c (printchar, strout): Check for string overflow.
15948 (PRINTPREPARE, printchar, strout):
15949 Don't set size unless allocation succeeds.
15950
15951 * minibuf.c (read_minibuf_noninteractive): Use ptrdiff_t, not int,
15952 for sizes. Check for string overflow more accurately.
15953 Simplify newline removal at end; this suppresses a GCC 4.6.0 warning.
15954
15955 * macros.c: Integer and buffer overflow fixes.
15956 * keyboard.h (struct keyboard.kbd_macro_bufsize):
15957 * macros.c (Fstart_kbd_macro, store_kbd_macro_char):
15958 Use ptrdiff_t, not int, for sizes.
15959 Don't increment bufsize until after realloc succeeds.
15960 Check for size-calculation overflow.
15961 (Fstart_kbd_macro): Use EMACS_INT, not int, for XINT result.
15962
15963 * lisp.h (DEFVAR_KBOARD): Use offsetof instead of char * finagling.
15964
15965 * lread.c: Integer overflow fixes.
15966 (read_integer): Radix is now EMACS_INT, not int,
15967 to improve quality of diagnostics for out-of-range radices.
15968 Calculate buffer size correctly for out-of-range radices.
15969 (read1): Check for integer overflow in radices, and in
15970 read-circle numbers.
15971 (read_escape): Avoid int overflow.
15972 (Fload, openp, read_buffer_size, read1)
15973 (substitute_object_recurse, read_vector, read_list, map_obarray):
15974 Use ptrdiff_t, not int, for sizes.
15975 (read1): Use EMACS_INT, not int, for sizes.
15976 Check for size overflow.
15977
15978 * image.c (cache_image): Check for size arithmetic overflow.
15979
15980 * lread.c: Integer overflow issues.
15981 (saved_doc_string_size, saved_doc_string_length)
15982 (prev_saved_doc_string_size, prev_saved_doc_string_length):
15983 Now ptrdiff_t, not int.
15984 (read1): Don't assume doc string length fits in int. Check for
15985 out-of-range doc string lengths.
15986 (read_list): Don't assume file position fits in int.
15987 (read_escape): Check for hex character overflow.
15988
15989 2011-06-22 Leo Liu <sdl.web@gmail.com>
15990
15991 * minibuf.c (Fcompleting_read_default, Vcompleting_read_function):
15992 Move to minibuffer.el.
15993
15994 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
15995
15996 Fixes for GLYPH_DEBUG found by GCC 4.6.0 static checking.
15997 The following patches are for when GLYPH_DEBUG && !XASSERT.
15998 * dispextern.h (trace_redisplay_p, dump_glyph_string):
15999 * dispnew.c (flush_stdout):
16000 * xdisp.c (dump_glyph_row, dump_glyph_matrix, dump_glyph):
16001 Mark as externally visible.
16002 * dispnew.c (check_window_matrix_pointers): Now static.
16003 * dispnew.c (window_to_frame_vpos):
16004 * xfns.c (unwind_create_frame):
16005 * xterm.c (x_check_font): Remove unused local.
16006 * scroll.c (CHECK_BOUNDS):
16007 * xfaces.c (cache_fache): Rename local to avoid shadowing.
16008 * xfns.c, w32fns.c (image_cache_refcount, dpyinfo_refcount): Now static.
16009 * xdisp.c (check_window_end): Now a no-op if !XASSERTS.
16010 (debug_first_unchanged_at_end_vpos, debug_last_unchanged_at_beg_vpos)
16011 (debug_dvpos, debug_dy, debug_delta, debug_delta_bytes, debug_end_vpos):
16012 Now static.
16013 (debug_method_add): Use va_list and vsprintf rather than relying
16014 on undefined behavior with wrong number of arguments.
16015 (dump_glyph, dump_glyph_row, Fdump_glyph_matrix):
16016 Don't assume ptrdiff_t and EMACS_INT are the same width as int.
16017 In this code, it's OK to assume C99 behavior for ptrdiff_t formats
16018 since we're not interested in debugging glyphs with old libraries.
16019 * xfaces.c (cache_face): Move debugging code earlier; this pacifies
16020 GCC 4.6.0's static checking.
16021
16022 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
16023
16024 Integer overflow and signedness fixes (Bug#8873).
16025 A few related buffer overrun fixes, too.
16026
16027 * font.c (font_score): Use EMACS_INT, not int, to store XINT value.
16028
16029 * dispextern.h (struct face.stipple):
16030 * image.c (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
16031 (x_bitmap_mask, x_allocate_bitmap_record)
16032 (x_create_bitmap_from_data, x_create_bitmap_from_file)
16033 (x_destroy_bitmap, x_destroy_all_bitmaps, x_create_bitmap_mask)
16034 (x_create_bitmap_from_xpm_data):
16035 * nsterm.h (struct ns_display_info.bitmaps_size, .bitmaps_last):
16036 * w32term.h (struct w32_display_info.icon_bitmap_id, .bitmaps_size)
16037 (.bitmaps_last):
16038 * xfaces.c (load_pixmap):
16039 * xterm.c (x_bitmap_icon, x_wm_set_icon_pixmap):
16040 * xterm.h (struct x_display_info.icon_bitmap_id, .bitmaps_size)
16041 (.bitmaps_last, struct x_output.icon_bitmap):
16042 Use ptrdiff_t, not int, for bitmap indexes.
16043 (x_allocate_bitmap_record): Check for size overflow.
16044 * dispextern.h, lisp.h: Adjust to API changes elsewhere.
16045
16046 Use ptrdiff_t, not int, for overlay counts.
16047 * buffer.h (overlays_at, sort_overlays, GET_OVERLAYS_AT):
16048 * editfns.c (overlays_around, get_pos_property):
16049 * textprop.c (get_char_property_and_overlay):
16050 * xdisp.c (next_overlay_change, note_mouse_highlight):
16051 * xfaces.c (face_at_buffer_position):
16052 * buffer.c (OVERLAY_COUNT_MAX): New macro.
16053 (overlays_at, overlays_in, sort_overlays, Foverlays_at)
16054 (Fnext_overlay_change, Fprevious_overlay_change)
16055 (mouse_face_overlay_overlaps, Foverlays_in):
16056 Use ptrdiff_t, not int, for sizes.
16057 (overlays_at, overlays_in): Check for size-calculation overflow.
16058
16059 * xterm.c (xim_initialize, same_x_server): Strlen may not fit in int.
16060
16061 * xsmfns.c (smc_save_yourself_CB, x_session_initialize): Avoid strlen.
16062 (x_session_initialize): Do not assume string length fits in int.
16063
16064 * xsettings.c (apply_xft_settings): Fix potential buffer overrun.
16065 This is unlikely, but can occur if DPI is outlandish.
16066
16067 * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
16068 * xselect.c (Fx_get_atom_name): Avoid need for strlen.
16069
16070 * xrdb.c: Don't assume strlen fits in int; avoid some strlens.
16071 * xrdb.c (magic_file_p, search_magic_path):
16072 Omit last arg SUFFIX; it was always 0. All callers changed.
16073 (magic_file_p): Use ptrdiff_t, not int. Check for size overflow.
16074
16075 * xfont.c (xfont_match): Avoid need for strlen.
16076
16077 * xfns.c: Don't assume strlen fits in int.
16078 (xic_create_fontsetname, x_window): Use ptrdiff_t, not int.
16079
16080 * xdisp.c (message_log_check_duplicate): Return intmax_t,
16081 not unsigned long, as we prefer signed integers. All callers changed.
16082 Detect integer overflow in repeat count.
16083 (message_dolog): Don't assume print length fits in 39 bytes.
16084 (display_mode_element): Don't assume strlen fits in int.
16085
16086 * termcap.c: Don't assume sizes fit in int and never overflow.
16087 (struct termcap_buffer, tgetent): Use ptrdiff_t, not int, for sizes.
16088 (gobble_line): Check for size-calculation overflow.
16089
16090 * minibuf.c (Fread_buffer):
16091 * lread.c (intern, intern_c_string):
16092 * image.c (xpm_scan) [HAVE_NS && !HAVE_XPM]:
16093 Don't assume string length fits in int.
16094
16095 * keyboard.c (parse_tool_bar_item):
16096 * gtkutil.c (style_changed_cb): Avoid need for strlen.
16097
16098 * font.c: Don't assume string length fits in int.
16099 (font_parse_xlfd, font_parse_fcname, font_unparse_fcname):
16100 Use ptrdiff_t, not int.
16101 (font_intern_prop): Don't assume string length fits in int.
16102 Don't assume integer property fits in fixnum.
16103 * font.h (font_intern_prop): 2nd arg is now ptrdiff_t, not int.
16104
16105 * filelock.c: Fix some buffer overrun and integer overflow issues.
16106 (get_boot_time): Don't assume gzip command string fits in 100 bytes.
16107 Reformulate so as not to need the command string.
16108 Invoke gzip -cd rather than gunzip, as it's more portable.
16109 (lock_info_type, lock_file_1, lock_file):
16110 Don't assume pid_t and time_t fit in unsigned long.
16111 (LOCK_PID_MAX): Remove; we now use more-reliable bounds.
16112 (current_lock_owner): Prefer signed type for sizes.
16113 Use memcpy, not strncpy, where memcpy is what is really wanted.
16114 Don't assume (via atoi) that time_t and pid_t fit in int.
16115 Check for time_t and/or pid_t out of range, e.g., via a network share.
16116 Don't alloca where an auto var works fine.
16117
16118 * fileio.c: Fix some integer overflow issues.
16119 (file_name_as_directory, Fexpand_file_name, Fsubstitute_in_file_name):
16120 Don't assume string length fits in int.
16121 (directory_file_name): Don't assume string length fits in long.
16122 (make_temp_name): Don't assume pid fits in int, or that its print
16123 length is less than 20.
16124
16125 * data.c (Fsubr_name): Rewrite to avoid a strlen call.
16126
16127 * coding.c (make_subsidiaries): Don't assume string length fits in int.
16128
16129 * callproc.c (child_setup): Rewrite to avoid two strlen calls.
16130
16131 * process.c (Fformat_network_address): Use EMACS_INT, not EMACS_UINT.
16132 We prefer signed integers, even for size calculations.
16133
16134 * emacs.c: Don't assume string length fits in 'int'.
16135 (DEFINE_DUMMY_FUNCTION, sort_args): Use ptrdiff_t, not int.
16136 (main): Don't invoke strlen when not needed.
16137
16138 * dbusbind.c (XD_ERROR): Don't arbitrarily truncate string.
16139 (XD_DEBUG_MESSAGE): Don't waste a byte.
16140
16141 * callproc.c (getenv_internal_1, getenv_internal)
16142 (Fgetenv_internal):
16143 * buffer.c (init_buffer): Don't assume string length fits in 'int'.
16144
16145 * lread.c (invalid_syntax): Omit length argument.
16146 All uses changed. This doesn't fix a bug, but it simplifies the
16147 code away from its former Hollerith-constant appearance, and it's
16148 one less 'int' to worry about when looking at integer-overflow issues.
16149 (string_to_number): Simplify 2011-04-26 change by invoking xsignal1.
16150
16151 * lisp.h (DEFUN): Remove bogus use of sizeof (struct Lisp_Subr).
16152 This didn't break anything, but it didn't help either.
16153 It's confusing to put a bogus integer in a place where the actual
16154 value does not matter.
16155 (LIST_END_P): Remove unused macro and its bogus comment.
16156 (make_fixnum_or_float): Remove unnecessary cast to EMACS_INT.
16157
16158 * lisp.h (union Lisp_Object.i): EMACS_INT, not EMACS_UINT.
16159 This is for consistency with the ordinary, non-USE_LISP_UNION_TYPE,
16160 implementation.
16161 (struct Lisp_Bool_Vector.size): EMACS_INT, not EMACS_UINT.
16162 We prefer signed types, and the value cannot exceed the EMACS_INT
16163 range anyway (because otherwise the length would not be representable).
16164 (XSET) [USE_LISP_UNION_TYPE]: Use uintptr_t and intptr_t,
16165 not EMACS_UINT and EMACS_INT, when converting pointer to integer.
16166 This avoids a GCC warning when WIDE_EMACS_INT.
16167
16168 * indent.c (sane_tab_width): New function.
16169 (current_column, scan_for_column, Findent_to, position_indentation)
16170 (compute_motion): Use it. This is just for clarity.
16171 (Fcompute_motion): Don't assume hscroll and tab offset fit in int.
16172
16173 * image.c (xbm_image_p): Don't assume stated width, height fit in int.
16174
16175 * lisp.h (lint_assume): New macro.
16176 * composite.c (composition_gstring_put_cache):
16177 * ftfont.c (ftfont_shape_by_flt): Use it to pacify GCC 4.6.0.
16178
16179 * editfns.c, insdel.c:
16180 Omit unnecessary forward decls, to simplify future changes.
16181
16182 * ftfont.c (ftfont_shape_by_flt): Use signed integers for lengths.
16183
16184 * font.c (Ffont_shape_gstring): Don't assume glyph len fits in 'int'.
16185
16186 * fns.c (Ffillarray): Don't assume bool vector size fits in 'int'.
16187 Use much-faster test for byte-length change.
16188 Don't assume string byte-length fits in 'int'.
16189 Check that character arg fits in 'int'.
16190 (mapcar1): Declare byte as byte, for clarity.
16191
16192 * alloc.c (Fmake_bool_vector): Avoid unnecessary multiplication.
16193
16194 * fns.c (concat): Catch string overflow earlier.
16195 Do not rely on integer wraparound.
16196
16197 * dispextern.h (struct it.overlay_strings_charpos)
16198 (struct it.selective): Now EMACS_INT, not int.
16199 * xdisp.c (forward_to_next_line_start)
16200 (back_to_previous_visible_line_start)
16201 (reseat_at_next_visible_line_start, next_element_from_buffer):
16202 Don't arbitrarily truncate the value of 'selective' to int.
16203
16204 * xdisp.c (init_iterator): Use XINT, not XFASTINT; it might be < 0.
16205
16206 * composite.c: Don't truncate sizes to 'int'.
16207 (composition_gstring_p, composition_reseat_it)
16208 (composition_adjust_point): Use EMACS_INT, not int.
16209 (get_composition_id, composition_gstring_put_cache): Use EMACS_INT,
16210 not EMACS_UINT, for indexes.
16211
16212 * category.h (CATEGORY_SET_P): Remove unnecessary cast to EMACS_INT.
16213
16214 * buffer.c: Include <verify.h>.
16215 (struct sortvec.priority, struct sortstr.priority):
16216 Now EMACS_INT, not int.
16217 (compare_overlays, cmp_for_strings): Avoid subtraction overflow.
16218 (struct sortstr.size, record_overlay_string)
16219 (struct sortstrlist.size, struct sortlist.used):
16220 Don't truncate size to int.
16221 (record_overlay_string): Check for size-calculation overflow.
16222 (init_buffer_once): Check at compile-time, not run-time.
16223
16224 2011-06-22 Jim Meyering <meyering@redhat.com>
16225
16226 Don't leak an XBM-image-sized buffer
16227 * image.c (xbm_load): Free the image buffer after using it.
16228
16229 2011-06-21 Paul Eggert <eggert@cs.ucla.edu>
16230
16231 Port to Sun C.
16232 * composite.c (find_automatic_composition): Omit needless 'return 0;'
16233 that Sun C diagnosed.
16234 * fns.c (secure_hash): Fix pointer signedness issue.
16235 * intervals.c (static_offset_intervals): New function.
16236 (offset_intervals): Use it.
16237
16238 2011-06-21 Leo Liu <sdl.web@gmail.com>
16239
16240 * deps.mk (fns.o):
16241 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha256.h and
16242 sha512.h.
16243
16244 * fns.c (secure_hash): Rename from crypto_hash_function and change
16245 the first arg to accept symbols.
16246 (Fsecure_hash): New primitive.
16247 (syms_of_fns): New symbols.
16248
16249 2011-06-20 Deniz Dogan <deniz@dogan.se>
16250
16251 * process.c (Fset_process_buffer): Clarify return value in
16252 docstring.
16253
16254 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
16255
16256 * dispnew.c (add_window_display_history): Use BVAR.
16257
16258 * xdisp.c (debug_method_add): Use BVAR.
16259 (check_window_end, dump_glyph_matrix, dump_glyph)
16260 (dump_glyph_row, dump_glyph_string): Convert arglist to ANSI C.
16261
16262 * xfaces.c (check_lface_attrs, check_lface, dump_realized_face):
16263 Likewise.
16264
16265 * xfns.c (Fx_create_frame, x_create_tip_frame): Delay image cache
16266 check till after the cache is created in init_frame_faces.
16267
16268 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
16269
16270 * fns.c (Fsafe_length): Yet another int/Lisp_Object mixup.
16271
16272 2011-06-16 Paul Eggert <eggert@cs.ucla.edu>
16273
16274 * lisp.h: Include <limits.h>, for INT_MAX, LONG_MAX, LLONG_MAX.
16275 Without this, prin1 mishandles Lisp_Misc_Save_Value printing on
16276 hosts with pre-C99 libraries, because pD is wrongly defined to "t".
16277
16278 Improve buffer-overflow checking (Bug#8873).
16279 * fileio.c (Finsert_file_contents):
16280 * insdel.c (insert_from_buffer_1, replace_range, replace_range_2):
16281 Remove the old (too-loose) buffer overflow checks.
16282 They weren't needed, since make_gap checks for buffer overflow.
16283 * insdel.c (make_gap_larger): Catch buffer overflows that were missed.
16284 The old code merely checked for Emacs fixnum overflow, and relied
16285 on undefined (wraparound) behavior. The new code avoids undefined
16286 behavior, and also checks for ptrdiff_t and/or size_t overflow.
16287
16288 * editfns.c (Finsert_char): Don't dump core with very negative counts.
16289 Tune. Don't use wider integers than needed. Don't use alloca.
16290 Use a bigger 'string' buffer. Rewrite to avoid 'n > 0' test.
16291
16292 * insdel.c (replace_range): Fix buf overflow when insbytes < outgoing.
16293
16294 * insdel.c, lisp.h (buffer_overflow): New function.
16295 (insert_from_buffer_1, replace_range, replace_range_2):
16296 * insdel.c (make_gap_larger):
16297 * editfns.c (Finsert_char):
16298 * fileio.c (Finsert_file_contents): Use it, to normalize wording.
16299
16300 * buffer.h (BUF_BYTES_MAX): Cast to ptrdiff_t so that it's signed.
16301
16302 2011-06-15 Paul Eggert <eggert@cs.ucla.edu>
16303
16304 Integer overflow and signedness fixes (Bug#8873, Bug#8828).
16305
16306 * ccl.c (ASCENDING_ORDER): New macro, to work around GCC bug 43772.
16307 (GET_CCL_RANGE, IN_INT_RANGE): Use it.
16308
16309 * fileio.c: Don't assume EMACS_INT fits in off_t.
16310 (emacs_lseek): New static function.
16311 (Finsert_file_contents, Fwrite_region): Use it.
16312 Use SEEK_SET, SEEK_CUR, SEEK_END as appropriate.
16313
16314 * fns.c (Fload_average): Don't assume 100 * load average fits in int.
16315
16316 * fns.c: Don't overflow int when computing a list length.
16317 * fns.c (QUIT_COUNT_HEURISTIC): New constant.
16318 (Flength, Fsafe_length): Use EMACS_INT, not int, to avoid unwanted
16319 truncation on 64-bit hosts. Check for QUIT every
16320 QUIT_COUNT_HEURISTIC entries rather than every other entry; that's
16321 faster and is responsive enough.
16322 (Flength): Report an error instead of overflowing an integer.
16323 (Fsafe_length): Return a float if the value is not representable
16324 as a fixnum. This shouldn't happen except in contrived situations.
16325 (Fnthcdr, Fsort): Don't assume list length fits in int.
16326 (Fcopy_sequence): Don't assume vector length fits in int.
16327
16328 * alloc.c: Check that resized vectors' lengths fit in fixnums.
16329 (header_size, word_size): New constants.
16330 (allocate_vectorlike): Don't check size overflow here.
16331 (allocate_vector): Check it here instead, since this is the only
16332 caller of allocate_vectorlike that could cause overflow.
16333 Check that the new vector's length is representable as a fixnum.
16334
16335 * fns.c (next_almost_prime): Don't return a multiple of 3 or 5.
16336 The previous code was bogus. For example, next_almost_prime (32)
16337 returned 39, which is undesirable as it is a multiple of 3; and
16338 next_almost_prime (24) returned 25, which is a multiple of 5 so
16339 why was the code bothering to check for multiples of 7?
16340
16341 * bytecode.c (exec_byte_code): Use ptrdiff_t, not int, for vector length.
16342
16343 * eval.c, doprnt.c (SIZE_MAX): Remove; inttypes.h defines this now.
16344
16345 Variadic C functions now count arguments with ptrdiff_t.
16346 This partly undoes my 2011-03-30 change, which replaced int with size_t.
16347 Back then I didn't know that the Emacs coding style prefers signed int.
16348 Also, in the meantime I found a few more instances where arguments
16349 were being counted with int, which may truncate counts on 64-bit
16350 machines, or EMACS_INT, which may be unnecessarily wide.
16351 * lisp.h (struct Lisp_Subr.function.aMANY)
16352 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call):
16353 Arg counts are now ptrdiff_t, not size_t.
16354 All variadic functions and their callers changed accordingly.
16355 (struct gcpro.nvars): Now size_t, not size_t. All uses changed.
16356 * bytecode.c (exec_byte_code): Check maxdepth for overflow,
16357 to avoid potential buffer overrun. Don't assume arg counts fit in 'int'.
16358 * callint.c (Fcall_interactively): Check arg count for overflow,
16359 to avoid potential buffer overrun. Use signed char, not 'int',
16360 for 'varies' array, so that we needn't bother to check its size
16361 calculation for overflow.
16362 * editfns.c (Fformat): Use ptrdiff_t, not EMACS_INT, to count args.
16363 * eval.c (apply_lambda):
16364 * fns.c (Fmapconcat): Use XFASTINT, not XINT, to get args length.
16365 (struct textprop_rec.argnum): Now ptrdiff_t, not int. All uses changed.
16366 (mapconcat): Use ptrdiff_t, not int and EMACS_INT, to count args.
16367
16368 * callint.c (Fcall_interactively): Don't use index var as event count.
16369
16370 * vm-limit.c (check_memory_limits): Fix incorrect extern function decls.
16371 * mem-limits.h (SIZE): Remove; no longer used.
16372
16373 * xterm.c (x_alloc_nearest_color_1): Prefer int to long when int works.
16374
16375 Remove unnecessary casts.
16376 * xterm.c (x_term_init):
16377 * xfns.c (x_set_border_pixel):
16378 * widget.c (create_frame_gcs): Remove casts to unsigned long etc.
16379 These aren't needed now that we assume ANSI C.
16380
16381 * sound.c (Fplay_sound_internal): Remove cast to unsigned long.
16382 It's more likely to cause problems (due to unsigned overflow)
16383 than to cure them.
16384
16385 * dired.c (Ffile_attributes): Don't use 32-bit hack on 64-bit hosts.
16386
16387 * unexelf.c (unexec): Don't assume BSS addr fits in unsigned.
16388
16389 * xterm.c (handle_one_xevent): Omit unnecessary casts to unsigned.
16390
16391 * keyboard.c (modify_event_symbol): Don't limit alist len to UINT_MAX.
16392
16393 * lisp.h (CHAR_TABLE_SET): Omit now-redundant test.
16394
16395 * lread.c (Fload): Don't compare a possibly-garbage time_t value.
16396
16397 GLYPH_CODE_FACE returns EMACS_INT, not int.
16398 * dispextern.h (merge_faces):
16399 * xfaces.c (merge_faces):
16400 * xdisp.c (get_next_display_element, next_element_from_display_vector):
16401 Don't assume EMACS_INT fits in int.
16402
16403 * character.h (CHAR_VALID_P): Remove unused parameter.
16404 * fontset.c, lisp.h, xdisp.c: All uses changed.
16405
16406 * editfns.c (Ftranslate_region_internal): Omit redundant test.
16407
16408 * fns.c (concat): Minor tuning based on overflow analysis.
16409 This doesn't fix any bugs. Use int to hold character, instead
16410 of constantly refetching from Emacs object. Use XFASTINT, not
16411 XINT, for value known to be a character. Don't bother comparing
16412 a single byte to 0400, as it's always less.
16413
16414 * floatfns.c (Fexpt):
16415 * fileio.c (make_temp_name): Omit unnecessary cast to unsigned.
16416
16417 * editfns.c (Ftranslate_region_internal): Use int, not EMACS_INT
16418 for characters.
16419
16420 * doc.c (get_doc_string): Omit (unsigned)c that mishandled negatives.
16421
16422 * data.c (Faset): If ARRAY is a string, check that NEWELT is a char.
16423 Without this fix, on a 64-bit host (aset S 0 4294967386) would
16424 incorrectly succeed when S was a string, because 4294967386 was
16425 truncated before it was used.
16426
16427 * chartab.c (Fchar_table_range): Use CHARACTERP to check range.
16428 Otherwise, an out-of-range integer could cause undefined behavior
16429 on a 64-bit host.
16430
16431 * composite.c: Use int, not EMACS_INT, for characters.
16432 (fill_gstring_body, composition_compute_stop_pos): Use int, not
16433 EMACS_INT, for values that are known to be in character range.
16434 This doesn't fix any bugs but is the usual style inside Emacs and
16435 may generate better code on 32-bit machines.
16436
16437 Make sure a 64-bit char is never passed to ENCODE_CHAR.
16438 This is for reasons similar to the recent CHAR_STRING fix.
16439 * charset.c (Fencode_char): Check that character arg is actually
16440 a character. Pass an int to ENCODE_CHAR.
16441 * charset.h (ENCODE_CHAR): Verify that the character argument is no
16442 wider than 'int', as a compile-time check to prevent future regressions
16443 in this area.
16444
16445 * character.c (char_string): Remove unnecessary casts.
16446
16447 Make sure a 64-bit char is never passed to CHAR_STRING.
16448 Otherwise, CHAR_STRING would do the wrong thing on a 64-bit platform,
16449 by silently ignoring the top 32 bits, allowing some values
16450 that were far too large to be valid characters.
16451 * character.h: Include <verify.h>.
16452 (CHAR_STRING, CHAR_STRING_ADVANCE): Verify that the character
16453 arguments are no wider than unsigned, as a compile-time check
16454 to prevent future regressions in this area.
16455 * data.c (Faset):
16456 * editfns.c (Fchar_to_string, general_insert_function, Finsert_char)
16457 (Fsubst_char_in_region):
16458 * fns.c (concat):
16459 * xdisp.c (decode_mode_spec_coding):
16460 Adjust to CHAR_STRING's new requirement.
16461 * editfns.c (Finsert_char, Fsubst_char_in_region):
16462 * fns.c (concat): Check that character args are actually
16463 characters. Without this test, these functions did the wrong
16464 thing with wildly out-of-range values on 64-bit hosts.
16465
16466 Remove incorrect casts to 'unsigned' that lose info on 64-bit hosts.
16467 These casts should not be needed on 32-bit hosts, either.
16468 * keyboard.c (read_char):
16469 * lread.c (Fload): Remove casts to unsigned.
16470
16471 * lisp.h (UNSIGNED_CMP): New macro.
16472 This fixes comparison bugs on 64-bit hosts.
16473 (ASCII_CHAR_P): Use it.
16474 * casefiddle.c (casify_object):
16475 * character.h (ASCII_BYTE_P, CHAR_VALID_P)
16476 (SINGLE_BYTE_CHAR_P, CHAR_STRING):
16477 * composite.h (COMPOSITION_ENCODE_RULE_VALID):
16478 * dispextern.h (FACE_FROM_ID):
16479 * keyboard.c (read_char): Use UNSIGNED_CMP.
16480
16481 * xmenu.c (dialog_selection_callback) [!USE_GTK]: Cast to intptr_t,
16482 not to EMACS_INT, to avoid GCC warning.
16483
16484 * xfns.c (x_set_scroll_bar_default_width): Remove unused 'int' locals.
16485
16486 * buffer.h (PTR_BYTE_POS, BUF_PTR_BYTE_POS): Remove harmful cast.
16487 The cast incorrectly truncated 64-bit byte offsets to 32 bits, and
16488 isn't needed on 32-bit machines.
16489
16490 * buffer.c (Fgenerate_new_buffer_name):
16491 Use EMACS_INT for count, not int.
16492 (advance_to_char_boundary): Return EMACS_INT, not int.
16493
16494 * data.c (Qcompiled_function): Now static.
16495
16496 * window.c (window_body_lines): Now static.
16497
16498 * image.c (gif_load): Rename local to avoid shadowing.
16499
16500 * lisp.h (SAFE_ALLOCA_LISP): Check for integer overflow.
16501 (struct Lisp_Save_Value): Use ptrdiff_t, not int, for 'integer' member.
16502 * alloc.c (make_save_value): Integer argument is now of type
16503 ptrdiff_t, not int.
16504 (mark_object): Use ptrdiff_t, not int.
16505 * lisp.h (pD): New macro.
16506 * print.c (print_object): Use it.
16507
16508 * alloc.c: Use EMACS_INT, not int, to count objects.
16509 (total_conses, total_markers, total_symbols, total_vector_size)
16510 (total_free_conses, total_free_markers, total_free_symbols)
16511 (total_free_floats, total_floats, total_free_intervals)
16512 (total_intervals, total_strings, total_free_strings):
16513 Now EMACS_INT, not int. All uses changed.
16514 (Fgarbage_collect): Compute overall total using a double, so that
16515 integer overflow is less likely to be a problem. Check for overflow
16516 when converting back to an integer.
16517 (n_interval_blocks, n_string_blocks, n_float_blocks, n_cons_blocks)
16518 (n_vectors, n_symbol_blocks, n_marker_blocks): Remove.
16519 These were 'int' variables that could overflow on 64-bit hosts;
16520 they were never used, so remove them instead of repairing them.
16521 (nzombies, ngcs, max_live, max_zombies): Now EMACS_INT, not 'int'.
16522 (inhibit_garbage_collection): Set gc_cons_threshold to max value.
16523 Previously, this ceilinged at INT_MAX, but that doesn't work on
16524 64-bit machines.
16525 (allocate_pseudovector): Don't use EMACS_INT when int would do.
16526
16527 * alloc.c (Fmake_bool_vector): Don't assume vector size fits in int.
16528 (allocate_vectorlike): Check for ptrdiff_t overflow.
16529 (mark_vectorlike, mark_char_table, mark_object): Avoid EMACS_UINT
16530 when a (possibly-narrower) signed value would do just as well.
16531 We prefer using signed arithmetic, to avoid comparison confusion.
16532
16533 * alloc.c: Catch some string size overflows that we were missing.
16534 (XMALLOC_OVERRUN_CHECK_SIZE) [!XMALLOC_OVERRUN_CHECK]: Define to 0,
16535 for convenience in STRING_BYTES_MAX.
16536 (STRING_BYTES_MAX): New macro, superseding the old one in lisp.h.
16537 The definition here is exact; the one in lisp.h was approximate.
16538 (allocate_string_data): Check for string overflow. This catches
16539 some instances we weren't catching before. Also, it catches
16540 size_t overflow on (unusual) hosts where SIZE_MAX <= min
16541 (PTRDIFF_MAX, MOST_POSITIVE_FIXNUM), e.g., when size_t is 32 bits
16542 and ptrdiff_t and EMACS_INT are both 64 bits.
16543
16544 * character.c, coding.c, doprnt.c, editfns.c, eval.c:
16545 All uses of STRING_BYTES_MAX replaced by STRING_BYTES_BOUND.
16546 * lisp.h (STRING_BYTES_BOUND): Rename from STRING_BYTES_MAX.
16547
16548 * character.c (string_escape_byte8): Fix nbytes/nchars typo.
16549
16550 * alloc.c (Fmake_string): Check for out-of-range init.
16551
16552 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
16553
16554 * eval.c (Fdefvaralias): Also mark the target as variable-special-p.
16555
16556 2011-06-14 Jan Djärv <jan.h.d@swipnet.se>
16557
16558 * xfns.c (x_set_scroll_bar_default_width): Remove argument to
16559 xg_get_default_scrollbar_width.
16560
16561 * gtkutil.c: Include emacsgtkfixed.h if HAVE_GTK3.
16562 (int_gtk_range_get_value): Move to the scroll bar part of the file.
16563 (style_changed_cb): Call update_theme_scrollbar_width and call
16564 x_set_scroll_bar_default_width and xg_frame_set_char_size for
16565 all frames (Bug#8505).
16566 (xg_create_frame_widgets): Call emacs_fixed_new if HAVE_GTK3 (Bug#8505).
16567 Call gtk_window_set_resizable if HAVE_GTK3.
16568 (x_wm_set_size_hint): Call emacs_fixed_set_min_size with min width
16569 and height if HAVE_GTK3 (Bug#8505).
16570 (scroll_bar_width_for_theme): New variable.
16571 (update_theme_scrollbar_width): New function.
16572 (xg_get_default_scrollbar_width): Move code to
16573 update_theme_scrollbar_width, just return scroll_bar_width_for_theme.
16574 (xg_initialize): Call update_theme_scrollbar_width.
16575
16576 * gtkutil.h (xg_get_default_scrollbar_width): Remove argument.
16577
16578 * emacsgtkfixed.c, emacsgtkfixed.h: New files.
16579
16580 2011-06-12 Martin Rudalics <rudalics@gmx.at>
16581
16582 * frame.c (make_frame): Call other_buffer_safely instead of
16583 other_buffer.
16584
16585 * window.c (temp_output_buffer_show): Call display_buffer with
16586 second argument Vtemp_buffer_show_specifiers and reset latter
16587 immediately after the call.
16588 (Vtemp_buffer_show_specifiers): New variable.
16589 (auto_window_vscroll_p, next_screen_context_lines)
16590 (Vscroll_preserve_screen_position): Remove leading asterisks from
16591 doc-strings.
16592
16593 2011-06-12 Paul Eggert <eggert@cs.ucla.edu>
16594
16595 Fix minor problems found by GCC 4.6.0 static checking.
16596 * buffer.c (Qclone_number): Remove for now, as it's unused.
16597 (record_buffer, Funrecord_buffer): Rename local to avoid shadowing.
16598 (record_buffer): Remove unused local.
16599 * frame.c (other_visible_frames, frame_buffer_list): Now static.
16600 (set_frame_buffer_list): Remove; unused.
16601 * frame.h (other_visible_frames): Remove decl.
16602 * keyboard.h (menu_items_inuse): Declare only if USE_GTK || USE_MOTIF.
16603 * lisp.h (frame_buffer_list, set_frame_buffer_list): Remove decls.
16604 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor): Declare only
16605 if HAVE_GPM.
16606 * menu.c (menu_items_inuse): Now static unless USE_GTK || USE_MOTIF.
16607 * process.c (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
16608 Define only if HAVE_GPM.
16609 * widget.c (EmacsFrameResize, emacsFrameClassRec): Now static.
16610 (update_hints_inhibit): Remove; never set. All uses removed.
16611 * widgetprv.h (emacsFrameClassRec): Remove decl.
16612 * window.c (delete_deletable_window): Now returns void, since it
16613 wasn't returning anything.
16614 (compare_window_configurations): Remove unused locals.
16615 * xfns.c (x_set_scroll_bar_default_width): Remove unused locals.
16616 * xmenu.c (x_menu_set_in_use): Define only if USE_GTK || USE_MOTIF.
16617 (dialog_selection_callback) [!USE_GTK]: Prefer intptr_t for integers
16618 the same widths as pointers. This follows up on the 2011-05-06 patch.
16619 * xterm.c (x_alloc_lighter_color_for_widget): Define only if USE_LUCID.
16620 * xterm.h: Likewise.
16621 (x_menu_set_in_use): Declare only if USE_GTK || USE_MOTIF.
16622
16623 2011-06-12 Juanma Barranquero <lekktu@gmail.com>
16624
16625 * makefile.w32-in: Update dependencies.
16626 (LISP_H): Add lib/intprops.h.
16627
16628 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
16629
16630 * image.c (gif_load): Add animation frame delay to the metadata.
16631 (syms_of_image): Use DEFSYM. New symbol `delay'.
16632
16633 2011-06-11 Martin Rudalics <rudalics@gmx.at>
16634
16635 * window.c (delete_deletable_window): Re-add.
16636 (Fset_window_configuration): Rewrite to handle dead buffers and
16637 consequently deletable windows.
16638 (window_tree, Fwindow_tree): Remove. Supply functionality in
16639 window.el.
16640 (compare_window_configurations): Simplify code.
16641
16642 2011-06-11 Andreas Schwab <schwab@linux-m68k.org>
16643
16644 * image.c (imagemagick_load_image): Fix type mismatch.
16645 (Fimagemagick_types): Likewise.
16646
16647 * window.h (replace_buffer_in_windows): Declare.
16648
16649 2011-06-11 Martin Rudalics <rudalics@gmx.at>
16650
16651 * buffer.c: New Lisp objects Qbuffer_list_update_hook and
16652 Qclone_number. Remove external declaration of Qdelete_window.
16653 (Fbuffer_list): Rewrite doc-string. Minor restructuring of
16654 code.
16655 (Fget_buffer_create, Fmake_indirect_buffer, Frename_buffer):
16656 Run Qbuffer_list_update_hook if allowed.
16657 (Fother_buffer): Rewrite doc-string. Major rewrite for new
16658 buffer list implementation.
16659 (other_buffer_safely): New function.
16660 (Fkill_buffer): Replace call to replace_buffer_in_all_windows by
16661 calls to replace_buffer_in_windows and
16662 replace_buffer_in_windows_safely. Run Qbuffer_list_update_hook
16663 if allowed.
16664 (record_buffer): Inhibit quitting and rewrite using quittable
16665 functions. Run Qbuffer_list_update_hook if allowed.
16666 (Frecord_buffer, Funrecord_buffer): New functions.
16667 (switch_to_buffer_1, Fswitch_to_buffer): Remove.
16668 Move switch-to-buffer to window.el.
16669 (bury-buffer): Move to window.el.
16670 (Vbuffer_list_update_hook): New variable.
16671
16672 * lisp.h (other_buffer_safely): Add prototype in buffer.c
16673 section.
16674
16675 * window.h (resize_frame_windows): Move up in code.
16676 (Fwindow_frame): Remove EXFUN.
16677 (replace_buffer_in_all_windows): Remove prototype.
16678 (replace_buffer_in_windows_safely): Add prototype.
16679
16680 * window.c: Declare Qdelete_window static again. Move down
16681 declaration of select_count.
16682 (Fnext_window, Fprevious_window): Rewrite doc-strings.
16683 (Fother_window): Move to window.el.
16684 (window_loop): Remove DELETE_BUFFER_WINDOWS and UNSHOW_BUFFER
16685 cases. Add REPLACE_BUFFER_IN_WINDOWS_SAFELY case.
16686 (Fdelete_windows_on, Freplace_buffer_in_windows): Move to
16687 window.el.
16688 (replace_buffer_in_windows): Implement by calling
16689 Qreplace_buffer_in_windows.
16690 (replace_buffer_in_all_windows): Remove with some functionality
16691 moved into replace_buffer_in_windows_safely.
16692 (replace_buffer_in_windows_safely): New function.
16693 (select_window_norecord, select_frame_norecord): Move in front
16694 of run_window_configuration_change_hook. Remove now obsolete
16695 declarations.
16696 (Fset_window_buffer): Rewrite doc-string.
16697 Call Qrecord_window_buffer.
16698 (keys_of_window): Move binding for other-window to window.el.
16699
16700 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
16701
16702 * dispextern.h (struct image): Replace data member, whose int_val
16703 and ptr_val fields were not used by anything, with a single
16704 lisp_val object.
16705
16706 * image.c (Fimage_metadata, make_image, mark_image, tiff_load)
16707 (gif_clear_image, gif_load, imagemagick_load_image)
16708 (gs_clear_image, gs_load): Callers changed.
16709
16710 2011-06-10 Paul Eggert <eggert@cs.ucla.edu>
16711
16712 * buffer.h: Include <time.h>, for time_t.
16713 Needed to build on FreeBSD 8.2. Problem reported by Herbert J. Skuhra.
16714
16715 Fix minor problems found by static checking.
16716
16717 * image.c (PixelGetMagickColor): Declare if ImageMagick headers don't.
16718
16719 Make identifiers static if they are not used in other modules.
16720 * data.c (Qcompiled_function, Qframe, Qvector):
16721 * image.c (QimageMagick, Qsvg):
16722 * minibuf.c (Qmetadata):
16723 * window.c (resize_window_check, resize_root_window): Now static.
16724 * window.h (resize_window_check, resize_root_window): Remove decls.
16725
16726 * window.c (window_deletion_count, delete_deletable_window):
16727 Remove; unused.
16728 (window_body_lines): Now static.
16729 (Fdelete_other_windows_internal): Mark vars as initialized.
16730 Make sure 'resize_failed' is initialized.
16731 (run_window_configuration_change_hook): Rename local to avoid shadowing.
16732 (resize_window_apply): Remove unused local.
16733 * window.h (delete_deletable_window): Remove decl.
16734
16735 * image.c (gif_load, svg_load_image): Rename locals to avoid shadowing.
16736 (imagemagick_load_image): Fix pointer signedness problem by changing
16737 last arg from unsigned char * to char *. All uses changed.
16738 Also, fix a local for similar reasons.
16739 Remove unused locals. Remove locals to avoid shadowing.
16740 (fn_rsvg_handle_free): Remove; unused.
16741 (svg_load, svg_load_image): Fix pointer signedness problem.
16742 (imagemagick_load_image): Don't use garbage pointer image_wand.
16743
16744 * ftfont.c (ftfont_get_metrics, ftfont_drive_otf): Remove unused locals.
16745
16746 2011-06-10 Chong Yidong <cyd@stupidchicken.com>
16747
16748 * image.c (gif_load): Fix omitted cast error introduced by
16749 2011-06-06 change.
16750
16751 2011-06-10 Martin Rudalics <rudalics@gmx.at>
16752
16753 * window.h (resize_proportionally, orig_total_lines)
16754 (orig_top_line): Remove from window structure.
16755 (set_window_height, set_window_width, change_window_heights)
16756 (Fdelete_window): Remove prototypes.
16757 (resize_frame_windows): Remove duplicate declaration.
16758
16759 2011-06-10 Eli Zaretskii <eliz@gnu.org>
16760
16761 * window.h (resize_frame_windows, resize_window_check)
16762 (delete_deletable_window, resize_root_window)
16763 (resize_frame_windows): Declare prototypes.
16764
16765 * window.c (resize_window_apply): Make definition be "static" to
16766 match the prototype.
16767
16768 2011-06-10 Martin Rudalics <rudalics@gmx.at>
16769
16770 * window.c: Remove declarations of Qwindow_size_fixed,
16771 window_min_size_1, window_min_size_2, window_min_size,
16772 size_window, window_fixed_size_p, enlarge_window, delete_window.
16773 Remove static from declaration of Qdelete_window, it's
16774 temporarily needed by Fbury_buffer.
16775 (replace_window): Don't assign orig_top_line and
16776 orig_total_lines.
16777 (Fdelete_window, delete_window): Remove. Window deletion is
16778 handled by window.el.
16779 (window_loop): Remove DELETE_OTHER_WINDOWS case.
16780 Replace Fdelete_window calls with calls to Qdelete_window.
16781 (Fdelete_other_windows): Remove. Deleting other windows is
16782 handled by window.el.
16783 (window_fixed_size_p): Remove. Fixed-sizeness of windows is
16784 handled in window.el.
16785 (window_min_size_2, window_min_size_1, window_min_size): Remove.
16786 Window minimum sizes are handled in window.el.
16787 (shrink_windows, size_window, set_window_height)
16788 (set_window_width, change_window_heights, window_height)
16789 (window_width, CURBEG, CURSIZE, enlarge_window)
16790 (adjust_window_trailing_edge, Fadjust_window_trailing_edge)
16791 (Fenlarge_window, Fshrink_window): Remove. Window resizing is
16792 handled in window.el.
16793 (make_dummy_parent): Rename to make_parent_window and give it a
16794 second argument horflag.
16795 (make_window): Don't set resize_proportionally any more.
16796 (Fsplit_window): Remove. Windows are split in window.el.
16797 (save_restore_action, save_restore_orig_size)
16798 (shrink_window_lowest_first, save_restore_orig_size): Remove.
16799 Resize mini windows in window.el.
16800 (grow_mini_window, shrink_mini_window): Implement by calling
16801 Qresize_root_window_vertically, resize_window_check and
16802 resize_window_apply.
16803 (saved_window, Fset_window_configuration, save_window_save):
16804 Do not handle orig_top_line, orig_total_lines, and
16805 resize_proportionally.
16806 (window_min_height, window_min_width): Move to window.el.
16807 (keys_of_window): Move bindings for delete-other-windows,
16808 split-window, delete-window and enlarge-window to window.el.
16809
16810 * buffer.c: Temporarily extern Qdelete_window.
16811 (Fbury_buffer): Temporarily call Qdelete_window instead of
16812 Fdelete_window (Fbury_buffer will move to window.el soon).
16813
16814 * frame.c (set_menu_bar_lines_1): Remove code handling
16815 orig_top_line and orig_total_lines.
16816
16817 * dispnew.c (adjust_frame_glyphs_initially): Don't use
16818 set_window_height but set heights directly.
16819 (change_frame_size_1): Use resize_frame_windows.
16820
16821 * xdisp.c (init_xdisp): Don't use set_window_height but set
16822 heights directly.
16823
16824 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines):
16825 Use resize_frame_windows instead of change_window_heights and run
16826 run_window_configuration_change_hook.
16827
16828 * w32fns.c (x_set_tool_bar_lines): Use resize_frame_windows
16829 instead of change_window_heights and run
16830 run_window_configuration_change_hook.
16831
16832 2011-06-09 Martin Rudalics <rudalics@gmx.at>
16833
16834 * window.c (replace_window): Rename second argument REPLACEMENT to
16835 NEW. New third argument SETFLAG. Rewrite.
16836 (delete_window, make_dummy_parent): Call replace_window with
16837 third argument 1.
16838 (window_list_1): Move down in code.
16839 (run_window_configuration_change_hook): Move set_buffer part
16840 before select_frame_norecord part in order to unwind correctly.
16841 Rename count1 to count.
16842 (recombine_windows, delete_deletable_window, resize_root_window)
16843 (Fdelete_other_windows_internal)
16844 (Frun_window_configuration_change_hook, make_parent_window)
16845 (resize_window_check, resize_window_apply, Fresize_window_apply)
16846 (resize_frame_windows, Fsplit_window_internal)
16847 (Fdelete_window_internal, Fresize_mini_window_internal):
16848 New functions.
16849 (syms_of_window): New variables Vwindow_splits and Vwindow_nest.
16850
16851 2011-06-08 Martin Rudalics <rudalics@gmx.at>
16852
16853 * window.h (window): Add some new members to window structure -
16854 normal_lines, normal_cols, new_total, new_normal, clone_number,
16855 splits, nest, prev_buffers, next_buffers.
16856 (WINDOW_TOTAL_SIZE): Move here from window.c.
16857 (MIN_SAFE_WINDOW_WIDTH, MIN_SAFE_WINDOW_HEIGHT): Define here.
16858
16859 * window.c (Fwindow_height, Fwindow_width, Fwindow_full_width_p):
16860 Remove.
16861 (make_dummy_parent): Set new members of windows structure.
16862 (make_window): Move down in code. Handle new members of window
16863 structure.
16864 (Fwindow_clone_number, Fwindow_splits, Fset_window_splits)
16865 (Fwindow_nest, Fset_window_nest, Fwindow_new_total)
16866 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_prev_buffers)
16867 (Fset_window_prev_buffers, Fwindow_next_buffers)
16868 (Fset_window_next_buffers, Fset_window_clone_number):
16869 New functions.
16870 (Fwindow_hscroll, Fwindow_at, Fwindow_point, Fwindow_start)
16871 (Fwindow_end, Fwindow_line_height, Fset_window_dedicated_p):
16872 Doc-string fixes.
16873 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter):
16874 Argument WINDOW can be now internal window too.
16875 (Fwindow_use_time): Move up in code.
16876 (Fget_buffer_window): Rename argument FRAME to ALL-FRAMES.
16877 Rewrite doc-string.
16878 (Fset_window_configuration, saved_window)
16879 (Fcurrent_window_configuration, save_window_save): Handle new
16880 members of window structure.
16881 (WINDOW_TOTAL_SIZE, MIN_SAFE_WINDOW_WIDTH)
16882 (MIN_SAFE_WINDOW_HEIGHT): Move to window.h.
16883 (syms_of_window): New Lisp objects Qrecord_window_buffer,
16884 Qwindow_deletable_p, Qdelete_window, Qreplace_buffer_in_windows,
16885 Qget_mru_window, Qresize_root_window,
16886 Qresize_root_window_vertically, Qsafe, Qabove, Qbelow,
16887 Qauto_buffer_name; staticpro them.
16888
16889 2011-06-07 Martin Rudalics <rudalics@gmx.at>
16890
16891 * window.c (Fwindow_total_size, Fwindow_left_column)
16892 (Fwindow_top_line, window_body_lines, Fwindow_body_size)
16893 (Fwindow_list_1): New functions.
16894 (window_box_text_cols): Replace with window_body_cols.
16895 (Fwindow_width, Fscroll_left, Fscroll_right):
16896 Use window_body_cols instead of window_box_text_cols.
16897 (delete_window, Fset_window_configuration):
16898 Call delete_all_subwindows with window as argument.
16899 (delete_all_subwindows): Take a window as argument and not a
16900 structure. Rewrite.
16901 (window_loop): Remove handling of GET_LRU_WINDOW and
16902 GET_LARGEST_WINDOW.
16903 (Fget_lru_window, Fget_largest_window): Move to window.el.
16904
16905 * window.h: Extern window_body_cols instead of
16906 window_box_text_cols. delete_all_subwindows now takes a
16907 Lisp_Object as argument.
16908
16909 * indent.c (compute_motion, Fcompute_motion):
16910 Use window_body_cols instead of window_box_text_cols.
16911
16912 * frame.c (delete_frame): Call delete_all_subwindows with root
16913 window as argument.
16914
16915 2011-06-07 Daniel Colascione <dan.colascione@gmail.com>
16916
16917 * fns.c (Fputhash): Document return value.
16918
16919 2011-06-06 Chong Yidong <cyd@stupidchicken.com>
16920
16921 * image.c (gif_load): Implement gif89a spec "no disposal" method.
16922
16923 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
16924
16925 Cons<->int and similar integer overflow fixes (Bug#8794).
16926
16927 Check for overflow when converting integer to cons and back.
16928 * charset.c (Fdefine_charset_internal, Fdecode_char):
16929 Use cons_to_unsigned to catch overflow.
16930 (Fencode_char): Use INTEGER_TO_CONS.
16931 * composite.h (LGLYPH_CODE): Use cons_to_unsigned.
16932 (LGLYPH_SET_CODE): Use INTEGER_TO_CONS.
16933 * data.c (long_to_cons, cons_to_long): Remove.
16934 (cons_to_unsigned, cons_to_signed): New functions.
16935 These signal an error for invalid or out-of-range values.
16936 * dired.c (Ffile_attributes): Use INTEGER_TO_CONS.
16937 * fileio.c (Fset_visited_file_modtime): Use CONS_TO_INTEGER.
16938 * font.c (Ffont_variation_glyphs):
16939 * fontset.c (Finternal_char_font): Use INTEGER_TO_CONS.
16940 * lisp.h: Include <intprops.h>.
16941 (INTEGER_TO_CONS, CONS_TO_INTEGER): New macros.
16942 (cons_to_signed, cons_to_unsigned): New decls.
16943 (long_to_cons, cons_to_long): Remove decls.
16944 * undo.c (record_first_change): Use INTEGER_TO_CONS.
16945 (Fprimitive_undo): Use CONS_TO_INTEGER.
16946 * xfns.c (Fx_window_property): Likewise.
16947 * xselect.c: Include <limits.h>.
16948 (x_own_selection, selection_data_to_lisp_data):
16949 Use INTEGER_TO_CONS.
16950 (x_handle_selection_request, x_handle_selection_clear)
16951 (x_get_foreign_selection, Fx_disown_selection_internal)
16952 (Fx_get_atom_name, x_send_client_event): Use CONS_TO_INTEGER.
16953 (lisp_data_to_selection_data): Use cons_to_unsigned.
16954 (x_fill_property_data): Use cons_to_signed.
16955 Report values out of range.
16956
16957 Check for buffer and string overflow more precisely.
16958 * buffer.h (BUF_BYTES_MAX): New macro.
16959 * lisp.h (STRING_BYTES_MAX): New macro.
16960 * alloc.c (Fmake_string):
16961 * character.c (string_escape_byte8):
16962 * coding.c (coding_alloc_by_realloc):
16963 * doprnt.c (doprnt):
16964 * editfns.c (Fformat):
16965 * eval.c (verror):
16966 Use STRING_BYTES_MAX, not MOST_POSITIVE_FIXNUM,
16967 since they may not be the same number.
16968 * editfns.c (Finsert_char):
16969 * fileio.c (Finsert_file_contents):
16970 Likewise for BUF_BYTES_MAX.
16971
16972 * image.c: Use ptrdiff_t, not int, for sizes.
16973 (slurp_file): Switch from int to ptrdiff_t.
16974 All uses changed.
16975 (slurp_file): Check that file size fits in both size_t (for
16976 malloc) and ptrdiff_t (for sanity and safety).
16977
16978 * fileio.c (Fverify_visited_file_modtime): Avoid time overflow
16979 if b->modtime has its maximal value.
16980
16981 * dired.c (Ffile_attributes): Don't assume EMACS_INT has >32 bits.
16982
16983 Don't assume time_t can fit into int.
16984 * buffer.h (struct buffer.modtime): Now time_t, not int.
16985 * fileio.c (Fvisited_file_modtime): No need for time_t cast now.
16986 * undo.c (Fprimitive_undo): Use time_t, not int, for time_t value.
16987
16988 Minor fixes for signed vs unsigned integers.
16989 * character.h (MAYBE_UNIFY_CHAR):
16990 * charset.c (maybe_unify_char):
16991 * keyboard.c (read_char, reorder_modifiers):
16992 XINT -> XFASTINT, since the integer must be nonnegative.
16993 * ftfont.c (ftfont_spec_pattern):
16994 * keymap.c (access_keymap, silly_event_symbol_error):
16995 XUINT -> XFASTINT, since the integer must be nonnegative.
16996 (Fsingle_key_description, preferred_sequence_p): XUINT -> XINT,
16997 since it makes no difference and we prefer signed.
16998 * keyboard.c (record_char): Use XUINT when all the neighbors do.
16999 (access_keymap): NATNUMP -> INTEGERP, since the integer must be
17000 nonnegative.
17001
17002 2011-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
17003
17004 * window.h (Fwindow_frame): Declare.
17005
17006 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
17007
17008 * alloc.c: Simplify handling of large-request failures (Bug#8800).
17009 (SPARE_MEMORY): Always define.
17010 (LARGE_REQUEST): Remove.
17011 (memory_full): Use SPARE_MEMORY rather than LARGE_REQUEST.
17012
17013 2011-06-06 Martin Rudalics <rudalics@gmx.at>
17014
17015 * lisp.h: Move EXFUNS for Fframe_root_window,
17016 Fframe_first_window and Fset_frame_selected_window to window.h.
17017
17018 * window.h: Move EXFUNS for Fframe_root_window,
17019 Fframe_first_window and Fset_frame_selected_window here from
17020 lisp.h.
17021
17022 * frame.c (Fwindow_frame, Fframe_first_window)
17023 (Fframe_root_window, Fframe_selected_window)
17024 (Fset_frame_selected_window): Move to window.c.
17025 (Factive_minibuffer_window): Move to minibuf.c.
17026 (Fother_visible_frames_p): New function.
17027
17028 * minibuf.c (Factive_minibuffer_window): Move here from frame.c.
17029
17030 * window.c (decode_window, decode_any_window): Move up in code.
17031 (Fwindowp, Fwindow_live_p): Rewrite doc-strings.
17032 (inhibit_frame_unsplittable): Remove unused variable.
17033 (Fwindow_buffer): Move up and rewrite doc-string.
17034 (Fwindow_parent, Fwindow_vchild, Fwindow_hchild, Fwindow_next)
17035 (Fwindow_prev): New functions.
17036 (Fwindow_frame): Move here from frame.c. Accept any window as
17037 argument.
17038 (Fframe_root_window, Fframe_first_window)
17039 (Fframe_selected_window): Move here from frame.c. Accept frame
17040 or arbitrary window as argument. Update doc-strings.
17041 (Fminibuffer_window): Move up in code.
17042 (Fwindow_minibuffer_p): Move up in code and simplify.
17043 (Fset_frame_selected_window): Move here from frame.c.
17044 Marginal rewrite.
17045 (Fselected_window, select_window, Fselect_window): Move up in
17046 code. Minor doc-string fixes.
17047
17048 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
17049
17050 * alloc.c (memory_full) [SYSTEM_MALLOC]: Port to MacOS (Bug#8800).
17051 Do not assume that spare memory exists; that assumption is valid
17052 only if SYSTEM_MALLOC.
17053 (LARGE_REQUEST): New macro, so that the issue of large requests
17054 is separated from the issue of spare memory.
17055
17056 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
17057
17058 * editfns.c (Fformat): Correctly handle zero flag with hexadecimal
17059 format. (Bug#8806)
17060
17061 * gtkutil.c (xg_get_default_scrollbar_width): Avoid warning.
17062
17063 * xfns.c (x_set_scroll_bar_default_width): Move declarations
17064 before statements.
17065
17066 2011-06-05 Jan Djärv <jan.h.d@swipnet.se>
17067
17068 * gtkutil.c (xg_get_default_scrollbar_width): New function.
17069
17070 * gtkutil.h: Declare xg_get_default_scrollbar_width.
17071
17072 * xfns.c (x_set_scroll_bar_default_width): If USE_GTK, get
17073 min width by calling x_set_scroll_bar_default_width (Bug#8505).
17074
17075 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
17076
17077 * xdisp.c (single_display_spec_intangible_p): Remove declaration.
17078
17079 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
17080
17081 * xselect.c (x_clipboard_manager_save): Remove redundant arg.
17082 (x_clipboard_manager_save): Add return value.
17083 (x_clipboard_manager_error_1, x_clipboard_manager_error_2):
17084 New error handlers.
17085 (x_clipboard_manager_save_frame, x_clipboard_manager_save_all):
17086 Obey Vx_select_enable_clipboard_manager. Catch errors in
17087 x_clipboard_manager_save (Bug#8779).
17088 (Vx_select_enable_clipboard_manager): New variable.
17089 (x_get_foreign_selection): Reduce scope of x_catch_errors (Bug#8790).
17090
17091 2011-06-04 Dan Nicolaescu <dann@ics.uci.edu>
17092
17093 * emacs.c (main): Warn when starting a GTK emacs in daemon mode.
17094
17095 2011-06-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17096
17097 * fringe.c (update_window_fringes): Don't update overlay arrow bitmap
17098 in the current matrix if keep_current_p is non-zero.
17099
17100 2011-06-04 Eli Zaretskii <eliz@gnu.org>
17101
17102 * bidi.c (bidi_level_of_next_char): Fix last change.
17103
17104 2011-06-03 Eli Zaretskii <eliz@gnu.org>
17105
17106 Support bidi reordering of text covered by display properties.
17107
17108 * bidi.c (bidi_copy_it): Use offsetof instead of emulating it.
17109 (bidi_fetch_char, bidi_fetch_char_advance): New functions.
17110 (bidi_cache_search, bidi_cache_iterator_state)
17111 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
17112 (bidi_level_of_next_char, bidi_move_to_visually_next):
17113 Support character positions inside a run of characters covered by a
17114 display string.
17115 (bidi_paragraph_init, bidi_resolve_explicit_1)
17116 (bidi_level_of_next_char): Call bidi_fetch_char and
17117 bidi_fetch_char_advance instead of FETCH_CHAR and
17118 FETCH_CHAR_ADVANCE.
17119 (bidi_init_it): Initialize new members.
17120 (LRE_CHAR, RLE_CHAR, PDF_CHAR, LRO_CHAR, RLO_CHAR): Remove macro
17121 definitions.
17122 (bidi_explicit_dir_char): Lookup character type in bidi_type_table,
17123 instead of using explicit *_CHAR codes.
17124 (bidi_resolve_explicit, bidi_resolve_weak):
17125 Use FETCH_MULTIBYTE_CHAR instead of FETCH_CHAR, as reordering of
17126 bidirectional text is supported only in multibyte buffers.
17127 (bidi_init_it): Accept additional argument FRAME_WINDOW_P and use
17128 it to initialize the frame_window_p member of struct bidi_it.
17129 (bidi_cache_iterator_state, bidi_resolve_explicit_1)
17130 (bidi_resolve_explicit, bidi_resolve_weak)
17131 (bidi_level_of_next_char, bidi_move_to_visually_next): Abort if
17132 bidi_it->nchars is non-positive.
17133 (bidi_level_of_next_char): Don't try to lookup the cache for the
17134 next/previous character if nothing is cached there yet, or if we
17135 were just reseat()'ed to a new position.
17136
17137 * xdisp.c (set_cursor_from_row): Set start and stop points
17138 according to the row's direction when priming the loop that looks
17139 for the glyph on which to display cursor.
17140 (single_display_spec_intangible_p): Function deleted.
17141 (display_prop_intangible_p): Reimplement to call
17142 handle_display_spec instead of single_display_spec_intangible_p.
17143 Accept 3 additional arguments needed by handle_display_spec.
17144 This fixes incorrect cursor motion across display property with complex
17145 values: lists, `(when COND...)' forms, etc.
17146 (single_display_spec_string_p): Support property values that are
17147 lists with the argument STRING its top-level element.
17148 (display_prop_string_p): Fix the condition for processing a
17149 property that is a list to be consistent with handle_display_spec.
17150 (handle_display_spec): New function, refactored from the
17151 last portion of handle_display_prop.
17152 (compute_display_string_pos): Accept additional argument
17153 FRAME_WINDOW_P. Call handle_display_spec to determine whether the
17154 value of a `display' property is a "replacing spec".
17155 (handle_single_display_spec): Accept 2 additional arguments BUFPOS
17156 and FRAME_WINDOW_P. If IT is NULL, don't set up the iterator from
17157 the display property, but just return a value indicating whether
17158 the display property will replace the characters it covers.
17159 (Fcurrent_bidi_paragraph_direction): Initialize the nchars and
17160 frame_window_p members of struct bidi_it.
17161 (compute_display_string_pos, compute_display_string_end):
17162 New functions.
17163 (push_it): Accept second argument POSITION, where pop_it should
17164 jump to continue iteration.
17165 (reseat_1): Initialize bidi_it.disp_pos.
17166
17167 * keyboard.c (adjust_point_for_property): Adjust the call to
17168 display_prop_intangible_p to its new signature.
17169
17170 * dispextern.h (struct bidi_it): New member frame_window_p.
17171 (bidi_init_it): Update prototypes.
17172 (display_prop_intangible_p): Update prototype.
17173 (compute_display_string_pos, compute_display_string_end):
17174 Declare prototypes.
17175 (struct bidi_it): New members nchars and disp_pos. ch_len is now
17176 EMACS_INT.
17177
17178 2011-06-02 Paul Eggert <eggert@cs.ucla.edu>
17179
17180 Malloc failure behavior now depends on size of allocation.
17181 * alloc.c (buffer_memory_full, memory_full): New arg NBYTES.
17182 * lisp.h: Change signatures accordingly.
17183 * alloc.c, buffer.c, editfns.c, menu.c, minibuf.c, xterm.c:
17184 All callers changed. (Bug#8762)
17185
17186 * gnutls.c: Use Emacs's memory allocators.
17187 Without this change, the gnutls library would invoke malloc etc.
17188 directly, which causes problems on non-SYNC_INPUT hosts, and which
17189 runs afoul of improving memory_full behavior. (Bug#8761)
17190 (fn_gnutls_global_set_mem_functions): New macro or function pointer.
17191 (emacs_gnutls_global_init): Use it to specify xmalloc, xrealloc,
17192 xfree instead of the default malloc, realloc, free.
17193 (Fgnutls_boot): No need to check for memory allocation failure,
17194 since xmalloc does that for us.
17195
17196 Remove arbitrary limit of 2**31 entries in hash tables. (Bug#8771)
17197 * category.c (hash_get_category_set):
17198 * ccl.c (ccl_driver):
17199 * charset.c (Fdefine_charset_internal):
17200 * charset.h (struct charset.hash_index):
17201 * composite.c (get_composition_id, gstring_lookup_cache)
17202 (composition_gstring_put_cache):
17203 * composite.h (struct composition.hash_index):
17204 * dispextern.h (struct image.hash):
17205 * fns.c (next_almost_prime, larger_vector, cmpfn_eql)
17206 (cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
17207 (hashfn_equal, hashfn_user_defined, make_hash_table)
17208 (maybe_resize_hash_table, hash_lookup, hash_put)
17209 (hash_remove_from_table, hash_clear, sweep_weak_table, SXHASH_COMBINE)
17210 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector)
17211 (Fsxhash, Fgethash, Fputhash, Fmaphash):
17212 * image.c (make_image, search_image_cache, lookup_image)
17213 (xpm_put_color_table_h):
17214 * lisp.h (struct Lisp_Hash_Table):
17215 * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
17216 * print.c (print): Use 'EMACS_UINT' and 'EMACS_INT'
17217 for hashes and hash indexes, instead of 'unsigned' and 'int'.
17218 * alloc.c (allocate_vectorlike):
17219 Check for overflow in vector size calculations.
17220 * ccl.c (ccl_driver):
17221 Check for overflow when converting EMACS_INT to int.
17222 * fns.c, image.c: Remove unnecessary static decls that would otherwise
17223 need to be updated by these changes.
17224 * fns.c (make_hash_table, maybe_resize_hash_table):
17225 Check for integer overflow with large hash tables.
17226 (make_hash_table, maybe_resize_hash_table, Fmake_hash_table):
17227 Prefer the faster XFLOAT_DATA to XFLOATINT where either will do.
17228 (SXHASH_REDUCE): New macro.
17229 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector):
17230 Use it instead of discarding useful hash info with large hash values.
17231 (sxhash_float): New function.
17232 (sxhash): Use it. No more need for "& INTMASK" due to above changes.
17233 * lisp.h (FIXNUM_BITS): New macro, useful for SXHASH_REDUCE etc.
17234 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
17235 Rewrite to use FIXNUM_BITS, as this simplifies things.
17236 (next_almost_prime, larger_vector, sxhash, hash_lookup, hash_put):
17237 Adjust signatures to match updated version of code.
17238 (consing_since_gc): Now EMACS_INT, since a single hash table can
17239 use more than INT_MAX bytes.
17240
17241 2011-06-01 Dan Nicolaescu <dann@ics.uci.edu>
17242
17243 Make it possible to build with GCC-4.6+ -O2 -flto.
17244
17245 * emacs.c (__malloc_initialize_hook): Mark as EXTERNALLY_VISIBLE.
17246
17247 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
17248
17249 * minibuf.c (get_minibuffer, read_minibuf_unwind):
17250 Call minibuffer-inactive-mode.
17251
17252 2011-05-31 Juanma Barranquero <lekktu@gmail.com>
17253
17254 * makefile.w32-in ($(BLD)/data.$(O), $(BLD)/editfns.$(O)):
17255 Update dependencies.
17256
17257 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
17258
17259 * data.c (init_data): Remove code for UTS, this system is not
17260 supported anymore.
17261
17262 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
17263
17264 Don't force ./temacs to start in terminal mode.
17265
17266 * frame.c (make_initial_frame): Initialize faces in all cases, not
17267 only when CANNOT_DUMP is defined.
17268 * dispnew.c (init_display): Remove CANNOT_DUMP condition.
17269
17270 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
17271
17272 * dispnew.c (add_window_display_history): Use const for the string
17273 pointer. Remove declaration, not needed.
17274
17275 2011-05-31 Paul Eggert <eggert@cs.ucla.edu>
17276
17277 Use 'inline', not 'INLINE'.
17278 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00914.html>
17279 * alloc.c, fontset.c (INLINE): Remove.
17280 * alloc.c, bidi.c, charset.c, coding.c, dispnew.c, fns.c, image.c:
17281 * intervals.c, keyboard.c, process.c, syntax.c, textprop.c, w32term.c:
17282 * xdisp.c, xfaces.c, xterm.c: Replace all uses of INLINE with inline.
17283 * gmalloc.c (register_heapinfo): Use inline unconditionally.
17284 * lisp.h (LISP_MAKE_RVALUE): Use inline, not __inline__.
17285
17286 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
17287
17288 Make it possible to run ./temacs.
17289
17290 * callproc.c (set_initial_environment): Remove CANNOT_DUMP code,
17291 syms_of_callproc does the same thing. Remove test for
17292 "initialized", do it in the caller.
17293 * emacs.c (main): Avoid calling set_initial_environment when dumping.
17294
17295 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
17296
17297 * minibuf.c (Finternal_complete_buffer): Return `category' metadata.
17298 (read_minibuf): Use get_minibuffer.
17299 (syms_of_minibuf): Use DEFSYM.
17300 (Qmetadata): New var.
17301 * data.c (Qbuffer): Don't make it static.
17302 (syms_of_data): Use DEFSYM.
17303
17304 2011-05-31 Paul Eggert <eggert@cs.ucla.edu>
17305
17306 * ccl.c (CCL_CODE_RANGE): Allow negative numbers. (Bug#8751)
17307 (CCL_CODE_MIN): New macro.
17308
17309 2011-05-30 Paul Eggert <eggert@cs.ucla.edu>
17310
17311 * alloc.c (lisp_align_malloc): Omit unnecessary val==NULL tests.
17312
17313 * eval.c (Qdebug): Now static.
17314 * lisp.h (Qdebug): Remove decl. This reverts a part of the
17315 2011-04-26T11:26:05Z!dan.colascione@gmail.com that inadvertently undid part of
17316 2011-04-14T06:48:41Z!eggert@cs.ucla.edu.
17317
17318 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
17319
17320 * image.c: Various fixes to ImageMagick code comments.
17321 (Fimagemagick_types): Doc fix.
17322
17323 2011-05-29 Paul Eggert <eggert@cs.ucla.edu>
17324
17325 Minor fixes prompted by GCC 4.6.0 warnings.
17326
17327 * xselect.c (converted_selections, conversion_fail_tag): Now static.
17328
17329 * emacs.c [HAVE_X_WINDOWS]: Include "xterm.h".
17330 (x_clipboard_manager_save_all): Move extern decl to ...
17331 * xterm.h: ... here, so that it can be checked for consistency.
17332
17333 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
17334
17335 * xselect.c (x_clipboard_manager_save_frame)
17336 (x_clipboard_manager_save_all): New functions.
17337 (Fx_clipboard_manager_save): Lisp function deleted.
17338
17339 * emacs.c (Fkill_emacs): Call x_clipboard_manager_save_all.
17340 * frame.c (delete_frame): Call x_clipboard_manager_save_frame.
17341
17342 * xterm.h: Update prototype.
17343
17344 2011-05-28 William Xu <william.xwl@gmail.com>
17345
17346 * nsterm.m (ns_term_shutdown): Synchronize user defaults before
17347 exiting (Bug#8239).
17348
17349 2011-05-28 Jim Meyering <meyering@redhat.com>
17350
17351 Avoid a sign-extension bug in crypto_hash_function.
17352 * fns.c (to_uchar): Define.
17353 (crypto_hash_function): Use it to convert some newly-signed
17354 variables to unsigned, to avoid sign-extension bugs. For example,
17355 without this change, (md5 "truc") would evaluate to
17356 45723a2aff78ff4fff7fff1114760e62 rather than the expected
17357 45723a2af3788c4ff17f8d1114760e62. Reported by Antoine Levitt in
17358 https://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00883.html.
17359
17360 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
17361
17362 Integer overflow fixes.
17363
17364 * dbusbind.c: Serial number integer overflow fixes.
17365 (CHECK_DBUS_SERIAL_GET_SERIAL): New macro.
17366 (Fdbus_call_method_asynchronously, xd_read_message_1): Use a float
17367 to hold a serial number that is too large for a fixnum.
17368 (Fdbus_method_return_internal, Fdbus_method_error_internal):
17369 Check for serial numbers out of range. Decode any serial number
17370 that was so large that it became a float. (Bug#8722)
17371
17372 * dbusbind.c: Use XFASTINT rather than XUINT, and check for nonneg.
17373 (Fdbus_call_method, Fdbus_call_method_asynchronously):
17374 Use XFASTINT rather than XUINT when numbers are nonnegative.
17375 (xd_append_arg, Fdbus_method_return_internal):
17376 (Fdbus_method_error_internal): Likewise. Also, for unsigned
17377 arguments, check that Lisp number is nonnegative, rather than
17378 silently wrapping negative numbers around. (Bug#8722)
17379 (xd_read_message_1): Don't assume dbus_uint32_t can fit in int.
17380 (Bug#8722)
17381
17382 * data.c (arith_driver, Flsh): Avoid unnecessary casts to EMACS_UINT.
17383
17384 * ccl.c (ccl_driver): Redo slightly to avoid the need for 'unsigned'.
17385
17386 ccl: Add integer overflow checks.
17387 * ccl.c (CCL_CODE_MAX, GET_CCL_RANGE, GET_CCL_CODE, GET_CCL_INT):
17388 (IN_INT_RANGE): New macros.
17389 (ccl_driver): Use them to check for integer overflow when
17390 decoding a CCL program. Many of the new checks are whether XINT (x)
17391 fits in int; it doesn't always, on 64-bit hosts. The new version
17392 doesn't catch all possible integer overflows, but it's an
17393 improvement. (Bug#8719)
17394
17395 * alloc.c (make_event_array): Use XINT, not XUINT.
17396 There's no need for unsigned here.
17397
17398 * mem-limits.h (EXCEEDS_LISP_PTR) [!USE_LSB_TAG]: EMACS_UINT -> uintptr_t
17399 This follows up to the 2011-05-06 change that substituted uintptr_t
17400 for EMACS_INT. This case wasn't caught back then.
17401
17402 Rework Fformat to avoid integer overflow issues.
17403 * editfns.c: Include <float.h> unconditionally, as it's everywhere
17404 now (part of C89). Include <verify.h>.
17405 (MAX_10_EXP, CONVERTED_BYTE_SIZE): Remove; no longer needed.
17406 (pWIDE, pWIDElen, signed_wide, unsigned_wide): New defns.
17407 (Fformat): Avoid the prepass trying to compute sizes; it was only
17408 approximate and thus did not catch overflow reliably. Instead, walk
17409 through the format just once, formatting and computing sizes as we go,
17410 checking for integer overflow at every step, and allocating a larger
17411 buffer as needed. Keep track separately whether the format is
17412 multibyte. Keep only the most-recently calculated precision, rather
17413 than them all. Record whether each argument has been converted to
17414 string. Use EMACS_INT, not int, for byte and char and arg counts.
17415 Support field widths and precisions larger than INT_MAX. Avoid
17416 sprintf's undefined behavior with conversion specifications such as %#d
17417 and %.0c. Fix bug with strchr succeeding on '\0' when looking for
17418 flags. Fix bug with (format "%c" 256.0). Avoid integer overflow when
17419 formatting out-of-range floating point numbers with int
17420 formats. (Bug#8668)
17421
17422 * lisp.h (FIXNUM_OVERFLOW_P): Work even if arg is a NaN.
17423
17424 * data.c: Avoid integer truncation in expressions involving floats.
17425 * data.c: Include <intprops.h>.
17426 (arith_driver): When there's an integer overflow in an expression
17427 involving floating point, convert the integers to floating point
17428 so that the resulting value does not suffer from catastrophic
17429 integer truncation. For example, on a 64-bit host (* 4
17430 most-negative-fixnum 0.5) should yield about -4.6e+18, not zero.
17431 Do not rely on undefined behavior after integer overflow.
17432
17433 merge count_size_as_multibyte, parse_str_to_multibyte
17434 * character.c, character.h (count_size_as_multibyte):
17435 Rename from parse_str_to_multibyte; all uses changed.
17436 Check for integer overflow.
17437 * insdel.c, lisp.h (count_size_as_multibyte): Remove,
17438 since it's now a duplicate of the other. This is more of
17439 a character than a buffer op, so better that it's in character.c.
17440 * fns.c, print.c: Adjust to above changes.
17441
17442 2011-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
17443
17444 * xselect.c (x_convert_selection): Yet another int/Lisp_Object mixup.
17445
17446 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
17447
17448 * xselect.c: Fix minor problems prompted by GCC 4.6.0 warnings.
17449 (x_handle_selection_request, frame_for_x_selection): Remove unused vars.
17450 (x_clipboard_manager_save): Now static.
17451 (Fx_clipboard_manager_save): Rename local to avoid shadowing.
17452
17453 * fns.c: Fix minor problems prompted by GCC 4.6.0 warnings.
17454 (crypto_hash_function): Now static.
17455 Fix pointer signedness problems. Avoid unnecessary initializations.
17456
17457 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
17458
17459 * termhooks.h (Vselection_alist): Make it terminal-local.
17460
17461 * terminal.c (create_terminal): Initialize it.
17462
17463 * xselect.c: Support for clipboard managers.
17464 (Vselection_alist): Move to termhooks.h as terminal-local var.
17465 (LOCAL_SELECTION): New macro.
17466 (x_atom_to_symbol): Handle x_display_info_for_display fail case.
17467 (symbol_to_x_atom): Remove gratuitous arg.
17468 (x_handle_selection_request, lisp_data_to_selection_data)
17469 (x_get_foreign_selection, Fx_register_dnd_atom): Callers changed.
17470 (x_own_selection, x_get_local_selection, x_convert_selection):
17471 New arg, specifying work frame. Use terminal-local Vselection_alist.
17472 (some_frame_on_display): Delete unused function.
17473 (Fx_own_selection_internal, Fx_get_selection_internal)
17474 (Fx_disown_selection_internal, Fx_selection_owner_p)
17475 (Fx_selection_exists_p): New optional frame arg.
17476 (frame_for_x_selection, Fx_clipboard_manager_save): New functions.
17477 (x_handle_selection_clear): Don't treat other terminals with the
17478 same keyboard specially. Use the terminal-local Vselection_alist.
17479 (x_clear_frame_selections): Use Frun_hook_with_args.
17480
17481 * xterm.c (x_term_init): Intern ATOM and CLIPBOARD_MANAGER atoms.
17482
17483 * xterm.h: Add support for those atoms.
17484
17485 2011-05-26 Chong Yidong <cyd@stupidchicken.com>
17486
17487 * xselect.c: ICCCM-compliant handling of MULTIPLE targets.
17488 (converted_selections, conversion_fail_tag): New global variables.
17489 (x_selection_request_lisp_error): Free the above.
17490 (x_get_local_selection): Remove unnecessary code.
17491 (x_reply_selection_request): Args changed; handle arbitrary array
17492 of converted selections stored in converted_selections.
17493 Separate the XChangeProperty and SelectionNotify steps.
17494 (x_handle_selection_request): Rewrite to handle MULTIPLE target.
17495 (x_convert_selection): New function.
17496 (x_handle_selection_event): Simplify.
17497 (x_get_foreign_selection): Don't ignore incoming requests while
17498 waiting for an answer; this will fail when we implement
17499 SAVE_TARGETS, and seems unnecessary anyway.
17500 (selection_data_to_lisp_data): Recognize ATOM_PAIR type.
17501 (Vx_sent_selection_functions): Doc fix.
17502
17503 2011-05-26 Leo Liu <sdl.web@gmail.com>
17504
17505 * editfns.c (Ftranspose_regions): Allow empty regions. (Bug#8699)
17506
17507 2011-05-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17508
17509 * dispextern.h (struct glyph_row): New member fringe_bitmap_periodic_p.
17510
17511 * dispnew.c (shift_glyph_matrix, scrolling_window): Mark scrolled row
17512 for fringe update if it has periodic bitmap.
17513 (row_equal_p): Also compare left_fringe_offset, right_fringe_offset,
17514 and fringe_bitmap_periodic_p.
17515
17516 * fringe.c (get_fringe_bitmap_data): New function.
17517 (draw_fringe_bitmap_1, update_window_fringes): Use it.
17518 (update_window_fringes): Record periodicity of fringe bitmap in glyph
17519 row. Mark glyph row for fringe update if periodicity changed.
17520
17521 * xdisp.c (try_window_reusing_current_matrix): Don't mark scrolled row
17522 for fringe update unless it has periodic bitmap.
17523
17524 2011-05-25 Kenichi Handa <handa@m17n.org>
17525
17526 * xdisp.c (get_next_display_element): Set correct it->face_id for
17527 a static composition.
17528
17529 2011-05-24 Leo Liu <sdl.web@gmail.com>
17530
17531 * deps.mk (fns.o):
17532 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha1.h.
17533
17534 * fns.c (crypto_hash_function, Fsha1): New function.
17535 (Fmd5): Use crypto_hash_function.
17536 (syms_of_fns): Add Ssha1.
17537
17538 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
17539
17540 * gnutls.c: Remove unused macros.
17541 (fn_gnutls_transport_set_lowat, fn_gnutls_transport_set_pull_function):
17542 (fn_gnutls_transport_set_push_function) [!WINDOWSNT]:
17543 Remove macros that are defined and never used.
17544 Caught by gcc -Wunused-macros (GCC 4.6.0, Fedora 14).
17545
17546 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
17547
17548 * xselect.c (syms_of_xselect): Remove unused symbol SAVE_TARGETS.
17549 (Fx_get_selection_internal): Minor cleanup.
17550 (Fx_own_selection_internal): Rename arguments for consistency with
17551 select.el.
17552
17553 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
17554
17555 * xselect.c (QSAVE_TARGETS): New static var, to fix build failure.
17556
17557 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
17558
17559 * xselect.c (syms_of_xselect): Include character.h; use DEFSYM.
17560
17561 2011-05-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17562
17563 * dispnew.c (scrolling_window): Don't exclude the case that the
17564 last enabled row in the desired matrix touches the bottom boundary.
17565
17566 2011-05-21 Glenn Morris <rgm@gnu.org>
17567
17568 * Makefile.in ($(etc)/DOC): Make second command line even shorter.
17569 (SOME_MACHINE_OBJECTS): Replace FONT_OBJ by its maximal expansion,
17570 and add some more files.
17571
17572 2011-05-20 Eli Zaretskii <eliz@gnu.org>
17573
17574 * callproc.c (Fcall_process) [MSDOS]: Fix arguments to
17575 report_file_error introduced by the change from 2011-05-07.
17576
17577 2011-05-20 Paul Eggert <eggert@cs.ucla.edu>
17578
17579 * systime.h (Time): Define only if emacs is defined.
17580 This is to allow ../lib-src/profile.c to be compiled on FreeBSD,
17581 where the include path doesn't have X11/X.h by default. See
17582 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00561.html>.
17583
17584 2011-05-20 Kenichi Handa <handa@m17n.org>
17585
17586 * composite.c (find_automatic_composition): Fix previous change.
17587
17588 2011-05-20 Glenn Morris <rgm@gnu.org>
17589
17590 * lisp.mk: New file, split from Makefile.in.
17591 * Makefile.in (lisp): Move to separate file, inserted by @lisp_frag@.
17592 (shortlisp): Remove.
17593 ($(etc)/DOC): Edit lisp.mk rather than using $shortlisp.
17594
17595 2011-05-19 Glenn Morris <rgm@gnu.org>
17596
17597 * Makefile.in (MSDOS_SUPPORT_REAL, MSDOS_SUPPORT, NS_SUPPORT)
17598 (REAL_MOUSE_SUPPORT, GPM_MOUSE_SUPPORT, MOUSE_SUPPORT, TOOLTIP_SUPPORT)
17599 (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT, WINDOW_SUPPORT): Remove.
17600 (lisp): Set the order to that of loadup.el.
17601 (shortlisp): Make it a copy of $lisp.
17602 (SOME_MACHINE_LISP): Remove.
17603 ($(etc)/DOC): Depend just on $lisp, not $SOME_MACHINE_LISP too.
17604 Use just $shortlisp, not $SOME_MACHINE_LISP too.
17605
17606 2011-05-18 Kenichi Handa <handa@m17n.org>
17607
17608 * composite.c (CHAR_COMPOSABLE_P): Add more check for efficiency.
17609 (BACKWARD_CHAR): Wrap the arg STOP by parenthesis.
17610 (find_automatic_composition): Mostly rewrite for efficiency.
17611
17612 2011-05-18 Juanma Barranquero <lekktu@gmail.com>
17613
17614 * makefile.w32-in: Update dependencies.
17615
17616 2011-05-18 Christoph Scholtes <cschol2112@googlemail.com>
17617
17618 * menu.c: Include limits.h (fixes the MS-Windows build broken by
17619 2011-06-18T18:49:19Z!cyd@stupidchicken.com).
17620
17621 2011-05-18 Paul Eggert <eggert@cs.ucla.edu>
17622
17623 Fix some integer overflow issues, such as string length overflow.
17624
17625 * insdel.c (count_size_as_multibyte): Check for string overflow.
17626
17627 * character.c (lisp_string_width): Check for string overflow.
17628 Use EMACS_INT, not int, for string indexes and lengths; in
17629 particular, 2nd arg is now EMACS_INT, not int. Do not crash if
17630 the resulting string length overflows an EMACS_INT; instead,
17631 report a string overflow if no precision given. When checking for
17632 precision exhaustion, use a check that cannot possibly have
17633 integer overflow. (Bug#8675)
17634 * character.h (lisp_string_width): Adjust to new signature.
17635
17636 * alloc.c (string_overflow): New function.
17637 (Fmake_string): Use it. This doesn't change behavior, but saves
17638 a few bytes and will simplify future changes.
17639 * character.c (string_escape_byte8): Likewise.
17640 * lisp.h (string_overflow): New decl.
17641
17642 Fixups, following up to the user-interface timestamp change.
17643 * nsterm.m (last_mouse_movement_time, ns_mouse_position): Use Time
17644 for UI timestamps, instead of unsigned long.
17645 * msdos.c (mouse_get_pos): Likewise.
17646 * w32inevt.c (movement_time, w32_console_mouse_position): Likewise.
17647 * w32gui.h (Time): Define by including "systime.h" rather than by
17648 declaring it ourselves. (Bug#8664)
17649
17650 * dispextern.h (struct image): Don't assume time_t <= unsigned long.
17651 * image.c (clear_image_cache): Likewise.
17652
17653 * term.c (term_mouse_position): Don't assume time_t wraparound.
17654
17655 Be more systematic about user-interface timestamps.
17656 Before, the code sometimes used 'Time', sometimes 'unsigned long',
17657 and sometimes 'EMACS_UINT', to represent these timestamps.
17658 This change causes it to use 'Time' uniformly, as that's what X uses.
17659 This makes the code easier to follow, and makes it easier to catch
17660 integer overflow bugs such as Bug#8664.
17661 * frame.c (Fmouse_position, Fmouse_pixel_position):
17662 Use Time, not unsigned long, for user-interface timestamps.
17663 * keyboard.c (last_event_timestamp, kbd_buffer_get_event): Likewise.
17664 (button_down_time, make_lispy_position, make_lispy_movement): Likewise.
17665 * keyboard.h (last_event_timestamp): Likewise.
17666 * menu.c (Fx_popup_menu) [!HAVE_X_WINDOWS]: Likewise.
17667 * menu.h (xmenu_show): Likewise.
17668 * term.c (term_mouse_position): Likewise.
17669 * termhooks.h (struct input_event.timestamp): Likewise.
17670 (struct terminal.mouse_position_hook): Likewise.
17671 * xmenu.c (create_and_show_popup_menu, xmenu_show): Likewise.
17672 * xterm.c (XTmouse_position, x_scroll_bar_report_motion): Likewise.
17673 * systime.h (Time): New decl. Pull it in from <X11/X.h> if
17674 HAVE_X_WINDOWS, otherwise define it as unsigned long, which is
17675 what it was before.
17676 * menu.h, termhooks.h: Include "systime.h", for Time.
17677
17678 * keyboard.c (make_lispy_event): Fix problem in integer overflow.
17679 Don't assume that the difference between two unsigned long values
17680 can fit into an integer. At this point, we know button_down_time
17681 <= event->timestamp, so the difference must be nonnegative, so
17682 there's no need to cast the result if double-click-time is
17683 nonnegative, as it should be; check that it's nonnegative, just in
17684 case. This bug is triggered when events are more than 2**31 ms
17685 apart (about 25 days). (Bug#8664)
17686
17687 * xselect.c (last_event_timestamp): Remove duplicate decl.
17688 (x_own_selection): Remove needless cast to unsigned long.
17689
17690 * xmenu.c (set_frame_menubar): Use int, not EMACS_UINT, for indexes
17691 that always fit in int. Use a sentinel instead of a counter, to
17692 avoid a temp and to allay GCC's concerns about possible int overflow.
17693 * frame.h (struct frame): Use int for menu_bar_items_used
17694 instead of EMACS_INT, since it always fits in int.
17695
17696 * menu.c (grow_menu_items): Check for int overflow.
17697
17698 * xmenu.c (set_frame_menubar): Don't mishandle vectors with no nils.
17699
17700 * xterm.c: Use EMACS_INT for Emacs modifiers, and int for X modifiers.
17701 Before, the code was not consistent. These values cannot exceed
17702 2**31 - 1 so there's no need to make them unsigned.
17703 (x_x_to_emacs_modifiers): Accept int and return EMACS_INT.
17704 (x_emacs_to_x_modifiers): Accept EMACS_INT and return int.
17705 (x_x_to_emacs_modifiers, x_emacs_to_x_modifiers): Reject non-integers
17706 as modifiers.
17707 * xterm.h (x_x_to_emacs_modifiers): Adjust to signature change.
17708
17709 * lisp.h (XINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_INT.
17710 (XUINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_UINT.
17711 Otherwise, GCC 4.6.0 warns about printf (pI, XINT (...)),
17712 presumably because the widths might not match.
17713
17714 * window.c (size_window): Avoid needless test at loop start.
17715
17716 2011-05-18 Courtney Bane <emacs-bugs-7626@cbane.org> (tiny change)
17717
17718 * term.c (Fresume_tty): Restore hooks before reinitializing (bug#8687).
17719
17720 2011-05-12 Drew Adams <drew.adams@oracle.com>
17721
17722 * textprop.c (Fprevious_single_char_property_change): Doc fix (bug#8655).
17723
17724 2011-05-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17725
17726 * w32term.c (w32_draw_fringe_bitmap): Rename local vars `left' and
17727 `width' to `bar_area_x' and `bar_area_width', respectively.
17728 (x_scroll_run): Take account of fringe background extension.
17729
17730 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
17731 Rename local vars `left' and `width' to `bar_area_x' and
17732 `bar_area_width', respectively.
17733 (x_scroll_run) [USE_TOOLKIT_SCROLL_BARS]: Take account of fringe
17734 background extension.
17735
17736 2011-05-10 Jim Meyering <meyering@redhat.com>
17737
17738 * xdisp.c (x_intersect_rectangles): Fix typo "the the -> the".
17739
17740 2011-05-10 Juanma Barranquero <lekktu@gmail.com>
17741
17742 * image.c (Finit_image_library): Return t for built-in image types,
17743 like pbm and xbm. (Bug#8640)
17744
17745 2011-05-09 Andreas Schwab <schwab@linux-m68k.org>
17746
17747 * w32menu.c (set_frame_menubar): Fix submenu allocation.
17748
17749 2011-05-07 Eli Zaretskii <eliz@gnu.org>
17750
17751 * w32console.c (Fset_screen_color): Doc fix.
17752 (Fget_screen_color): New function.
17753 (syms_of_ntterm): Defsubr it.
17754
17755 * callproc.c (call_process_cleanup) [MSDOS]: Don't close and
17756 unlink the temporary file if Fcall_process didn't create it in the
17757 first place.
17758 (Fcall_process) [MSDOS]: Don't create tempfile if stdout of the
17759 child process will be redirected to a file specified with `:file'.
17760 Don't try to re-open tempfile in that case, and set fd[0] to -1 as
17761 cue to call_process_cleanup not to close that handle.
17762
17763 2011-05-07 Ben Key <bkey76@gmail.com>
17764
17765 * makefile.w32-in: The bootstrap-temacs rule now makes use of
17766 one of two shell specific rules, either bootstrap-temacs-CMD or
17767 bootstrap-temacs-SH. The bootstrap-temacs-SH rule is identical
17768 to the previous implementation of the bootstrap-temacs rule.
17769 The bootstrap-temacs-CMD rule is similar to the previous
17770 implementation of the bootstrap-temacs rule except that it
17771 makes use of the ESC_CFLAGS variable instead of the CFLAGS
17772 variable.
17773
17774 These changes, along with some changes to nt/configure.bat,
17775 nt/gmake.defs, and nt/nmake.defs, are required to extend my
17776 earlier fix to add support for --cflags and --ldflags options
17777 that include quotes so that it works whether make uses cmd or
17778 sh as the shell.
17779
17780 2011-05-06 Michael Albinus <michael.albinus@gmx.de>
17781
17782 * dbusbind.c (QCdbus_type_unix_fd): Declare static.
17783 (xd_remove_watch): Don't check QCdbus_type_unix_fd for SYMBOLP, it
17784 is a constant.
17785 (Fdbus_init_bus, xd_read_queued_messages): Bus can be a symbol or
17786 a string. Handle both cases.
17787 (Fdbus_call_method_asynchronously, Fdbus_register_signal)
17788 (Fdbus_register_method): Use Qinvalid_function.
17789
17790 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
17791
17792 * makefile.w32-in: Update dependencies.
17793 (LISP_H): Add inttypes.h and stdin.h.
17794 (PROCESS_H): Add unistd.h.
17795
17796 2011-05-06 Eli Zaretskii <eliz@gnu.org>
17797
17798 * lread.c: Include limits.h (fixes the MS-Windows build broken by
17799 2011-05-06T07:13:19Z!eggert@cs.ucla.edu).
17800
17801 2011-05-06 Paul Eggert <eggert@cs.ucla.edu>
17802
17803 * image.c (Finit_image_library) [!HAVE_NTGUI]: Omit unused local.
17804
17805 * term.c (vfatal): Remove stray call to va_end.
17806 It's not needed and the C Standard doesn't allow it here anyway.
17807
17808 Use C99's va_copy to avoid undefined behavior on x86-64 GNU/Linux.
17809 * eval.c (verror): doprnt a copy of ap, not the original. (Bug#8545)
17810
17811 * eval.c (verror): OK to create a string of up to MOST_POSITIVE_FIXNUM
17812 bytes.
17813
17814 * term.c: Don't include <stdarg.h>, as <lisp.h> does that.
17815
17816 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
17817
17818 * process.c (Fformat_network_address): Fix typo: args2 -> *args2.
17819
17820 * xmenu.c (set_frame_menubar): Fix typo: int * -> int (3 times).
17821
17822 * coding.c (detect_coding_charset): Fix typo: * 2 -> *4 (Bug#8601).
17823
17824 * charset.h (struct charset.code_space): Now has 15 elements, not 16.
17825 * charset.c (Fdefine_charset_internal): Don't initialize
17826 charset.code_space[15]. The value was garbage, on hosts with
17827 32-bit int (Bug#8600).
17828
17829 * lread.c (read_integer): Be more consistent with string-to-number.
17830 Use string_to_number to do the actual conversion; this avoids
17831 rounding errors and fixes some other screwups. Without this fix,
17832 for example, #x1fffffffffffffff was misread as -2305843009213693952.
17833 (digit_to_number): Move earlier, for benefit of read_integer.
17834 Return -1 if the digit is out of range for the base, -2 if it is
17835 not a digit in any supported base. (Bug#8602)
17836
17837 * doprnt.c (doprnt): Support arbitrary pI values, such as "I64".
17838
17839 * dispnew.c (scrolling_window): Return 1 if we scrolled,
17840 to match comment at start of function. This also removes a
17841 GCC warning about overflow in a 32+64-bit port.
17842
17843 * lisp.h (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Simplify.
17844
17845 * dbusbind.c: Do not use XPNTR on a value that may be an integer.
17846 Reported by Stefan Monnier in
17847 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00919.html>.
17848 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
17849 Use SYMBOLP-guarded XSYMBOL, not XPNTR.
17850
17851 * lisp.h (EMACS_INTPTR): Remove. All uses changed to intptr_t.
17852 (EMACS_UINTPTR): Likewise, with uintptr_t.
17853
17854 * lisp.h: Prefer 64-bit EMACS_INT if available.
17855 (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Define to 64-bit
17856 on 32-bit hosts that have 64-bit int, so that they can access
17857 large files.
17858 However, temporarily disable this change unless the temporary
17859 symbol WIDE_EMACS_INT is defined.
17860
17861 * lread.c, process.c: Do not include <inttypes.h>; lisp.h does it now.
17862
17863 Prefer intptr_t/uintptr_t for integers the same widths as pointers.
17864 This removes an assumption that EMACS_INT and long are the same
17865 width as pointers. The assumption is true for Emacs porting targets
17866 now, but we want to make other targets possible.
17867 * lisp.h: Include <inttypes.h>, for INTPTR_MAX, UINTPTR_MAX.
17868 (EMACS_INTPTR, EMACS_UINTPTR): New macros.
17869 In the rest of the code, change types of integers that hold casted
17870 pointers to EMACS_INTPTR and EMACS_UINTPTR, systematically
17871 replacing EMACS_INT, long, EMACS_UINT, and unsigned long.
17872 (XTYPE): Don't cast arg to EMACS_UINT; normally is not needed.
17873 (XSET): Cast type of XTYPE arg to EMACS_INTPTR; it is needed here.
17874 No need to cast type when ORing.
17875 (XPNTR): Return a value of type EMACS_INTPTR or EMACS_UINTPTR.
17876 * alloc.c (lisp_align_malloc): Remove a no-longer-needed cast.
17877 * doc.c (store_function_docstring): Use EMACS_INTPTR, so as not to
17878 assume EMACS_INT is the same width as char *.
17879 * gtkutil.c (xg_gtk_scroll_destroy, xg_tool_bar_button_cb):
17880 (xg_tool_bar_callback, xg_tool_bar_help_callback, xg_make_tool_item):
17881 Remove no-longer-needed casts.
17882 (xg_create_scroll_bar, xg_tool_bar_button_cb, xg_tool_bar_callback):
17883 (xg_tool_bar_help_callback, xg_make_tool_item):
17884 Use EMACS_INTPTR to hold an integer
17885 that will be cast to void *; this can avoid a GCC warning
17886 if EMACS_INT is not the same width as void *.
17887 * menu.c (find_and_call_menu_selection): Remove no-longer-needed cast.
17888 * xdisp.c (display_echo_area_1, resize_mini_window_1):
17889 (current_message_1, set_message_1):
17890 Use a local to convert to proper width without a cast.
17891 * xmenu.c (dialog_selection_callback): Likewise.
17892
17893 * sysdep.c (get_random): Don't assume EMACS_INT is no wider than long.
17894 Also, don't assume VALBITS / RAND_BITS is less than 5,
17895 and don't rely on undefined behavior when shifting a 1 left into
17896 the sign bit.
17897 * lisp.h (get_random): Change signature to match.
17898
17899 * lread.c (hash_string): Use size_t, not int, for hash computation.
17900 Normally we prefer signed values; but hashing is special, because
17901 it's better to use unsigned division on hash table sizes so that
17902 the remainder is nonnegative. Also, size_t is the natural width
17903 for hashing into memory. The previous code used 'int', which doesn't
17904 retain enough info to hash well into very large tables.
17905 (oblookup, oblookup_last_bucket_number, Funintern): Likewise.
17906
17907 * dbusbind.c: Don't possibly lose pointer info when converting.
17908 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
17909 Use XPNTR rather than XHASH, so that the high-order bits of
17910 the pointer aren't lost when converting through void *.
17911
17912 * eval.c (Fautoload): Don't double-shift a pointer.
17913
17914 * fns.c (Frandom): Let EMACS_UINT be wider than unsigned long.
17915
17916 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
17917
17918 * gnutls.c (DEF_GNUTLS_FN):
17919 * image.c (DEF_IMGLIB_FN): Make function pointers static.
17920
17921 2011-05-05 Andreas Schwab <schwab@linux-m68k.org>
17922
17923 * lread.c (lisp_file_lexically_bound_p): Stop scanning at end
17924 marker. (Bug#8610)
17925
17926 2011-05-05 Eli Zaretskii <eliz@gnu.org>
17927
17928 * w32heap.c (allocate_heap) [USE_LISP_UNION_TYPE || USE_LSB_TAG]:
17929 New version that can reserve upto 2GB of heap space.
17930
17931 2011-05-05 Chong Yidong <cyd@stupidchicken.com>
17932
17933 * nsfns.m (Fns_read_file_name): Doc fix (Bug#8534).
17934
17935 2011-05-05 Teodor Zlatanov <tzz@lifelogs.com>
17936
17937 * gnutls.c (fn_gnutls_certificate_set_x509_key_file): Add alias to
17938 `gnutls_certificate_set_x509_key_file'.
17939
17940 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
17941
17942 * makefile.w32-in ($(BLD)/image.$(O), $(BLD)/process.$(O)):
17943 Update dependencies.
17944
17945 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
17946
17947 * gnutls.h (emacs_gnutls_write, emacs_gnutls_read):
17948 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
17949 Remove unused parameter `fildes'.
17950 * process.c (read_process_output, send_process): Don't pass it.
17951
17952 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
17953
17954 Fix previous change: the library cache is defined in w32.c.
17955 * image.c (CACHE_IMAGE_TYPE) [!HAVE_NTGUI]: Define to noop.
17956 (Finit_image_library): Wrap Vlibrary_cache on "#ifdef HAVE_NTGUI".
17957
17958 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
17959
17960 Implement dynamic loading of GnuTLS on Windows.
17961
17962 * gnutls.h (GNUTLS_EMACS_ERROR_NOT_LOADED): New macro.
17963 (emacs_gnutls_write, emacs_gnutls_read): Mark as extern.
17964 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
17965 Declare.
17966
17967 * gnutls.c (Qgnutls_dll): Define.
17968 (DEF_GNUTLS_FN, LOAD_GNUTLS_FN): New macros.
17969 (gnutls_*): Declare function pointers.
17970 (init_gnutls_functions): New function to initialize function pointers.
17971 (emacs_gnutls_handshake, Fgnutls_error_string, Fgnutls_deinit)
17972 (emacs_gnutls_global_init, Fgnutls_bye): Use function pointers.
17973 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
17974 Wrappers for gnutls_record_check_pending and gnutls_transport_set_errno.
17975 (emacs_gnutls_write, emacs_gnutls_read)
17976 (emacs_gnutls_handle_error, Fgnutls_error_fatalp)
17977 (Fgnutls_available_p): New function.
17978 (Fgnutls_boot): Call Fgnutls_available_p. Use function pointers.
17979 (syms_of_gnutls) <Qgnutls_dll>: Initialize and staticpro it.
17980 (syms_of_gnutls) <Sgnutls_available_p>: defsubr it.
17981
17982 * image.c: Include w32.h.
17983 (Vimage_type_cache): Delete.
17984 (syms_of_image) <Vimage_type_cache>: Don't initialize and staticpro it.
17985 (CACHE_IMAGE_TYPE, Finit_image_library): Use Vlibrary_cache instead.
17986 (w32_delayed_load): Move to w32.c.
17987
17988 * w32.h (VlibraryCache, QCloaded_from, w32_delayed_load): Declare.
17989
17990 * w32.c (QCloaded_from, Vlibrary_cache): Define.
17991 (w32_delayed_load): Move from image.c. When loading a library, record
17992 its filename in the :loaded-from property of the library id.
17993 (globals_of_w32) <QCloaded_from, Vlibrary_cache>:
17994 Initialize and staticpro them.
17995 (emacs_gnutls_pull, emacs_gnutls_push): Call emacs_gnutls_* functions.
17996
17997 * process.c: Include lisp.h before w32.h, not after.
17998 (wait_reading_process_output): Call emacs_gnutls_record_check_pending
17999 instead of gnutls_record_check_pending.
18000
18001 * callproc.c, emacs.c: Include lisp.h before w32.h, not after.
18002
18003 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
18004
18005 * gnutls.c (Fgnutls_boot): Support :keylist and :crlfiles options
18006 instead of :keyfiles. Give GnuTLS the keylist and the CRL lists
18007 as passed in.
18008
18009 2011-05-03 Jan Djärv <jan.h.d@swipnet.se>
18010
18011 * xterm.c (x_set_frame_alpha): Do not set property on anything
18012 else than FRAME_X_OUTER_WINDOW (Bug#8608).
18013
18014 2011-05-02 Juanma Barranquero <lekktu@gmail.com>
18015
18016 * sysdep.c (get_tty_size) [WINDOWSNT]: Implement. (Bug#8596)
18017
18018 2011-05-02 Juanma Barranquero <lekktu@gmail.com>
18019
18020 * gnutls.c (Qgnutls_log_level, Qgnutls_code, Qgnutls_anon)
18021 (Qgnutls_x509pki, Qgnutls_e_interrupted, Qgnutls_e_again)
18022 (Qgnutls_e_invalid_session, Qgnutls_e_not_ready_for_handshake)
18023 (gnutls_global_initialized, Qgnutls_bootprop_priority)
18024 (Qgnutls_bootprop_trustfiles, Qgnutls_bootprop_keyfiles)
18025 (Qgnutls_bootprop_callbacks, Qgnutls_bootprop_loglevel)
18026 (Qgnutls_bootprop_hostname, Qgnutls_bootprop_verify_flags)
18027 (Qgnutls_bootprop_verify_error, Qgnutls_bootprop_verify_hostname_error)
18028 (Qgnutls_bootprop_callbacks_verify): Make static.
18029
18030 2011-05-01 Andreas Schwab <schwab@linux-m68k.org>
18031
18032 * callproc.c: Indentation fixup.
18033
18034 * sysdep.c (wait_for_termination_1): Make static.
18035 (wait_for_termination, interruptible_wait_for_termination):
18036 Move after wait_for_termination_1.
18037
18038 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
18039
18040 * sysdep.c (interruptible_wait_for_termination): New function
18041 which is like wait_for_termination, but allows keyboard
18042 interruptions.
18043
18044 * callproc.c (Fcall_process): Add (:file "file") as an option for
18045 the STDOUT buffer.
18046 (Fcall_process_region): Ditto.
18047
18048 2011-04-30 Eli Zaretskii <eliz@gnu.org>
18049
18050 * dosfns.c (Fint86, Fdos_memget, Fdos_memput): Use `ASIZE (FOO)'
18051 rather than `XVECTOR (FOO)->size'.
18052
18053 * process.c: Remove HAVE_INTTYPES_H condition from inclusion of
18054 inttypes.h, as a gnulib replacement is used if it not available in
18055 system headers.
18056
18057 2011-04-21 Eli Zaretskii <eliz@gnu.org>
18058
18059 Lift the MOST_POSITIVE_FIXNUM/4 limitation on visited files.
18060 * fileio.c (Finsert_file_contents): Don't limit file size to 1/4
18061 of MOST_POSITIVE_FIXNUM. (Bug#8528)
18062
18063 * coding.c (coding_alloc_by_realloc): Error out if destination
18064 will grow beyond MOST_POSITIVE_FIXNUM.
18065 (decode_coding_emacs_mule): Abort if there isn't enough place in
18066 charbuf for the composition carryover bytes. Reserve an extra
18067 space for up to 2 characters produced in a loop.
18068 (decode_coding_iso_2022): Abort if there isn't enough place in
18069 charbuf for the composition carryover bytes.
18070
18071 2011-04-21 Eli Zaretskii <eliz@gnu.org>
18072
18073 * doprnt.c (doprnt) [!HAVE_LONG_LONG_INT]: Error out instead of
18074 aborting when %lld or %lll format is passed.
18075 [!HAVE_UNSIGNED_LONG_LONG_INT]: Error out instead of aborting when
18076 %llo or %llx format is passed. (Bug#8545)
18077
18078 * window.c (window_scroll_line_based): Use a marker instead of
18079 simple variables to record original value of point. (Bug#7952)
18080
18081 * doprnt.c (doprnt): Fix the case where a multibyte sequence
18082 produced by %s or %c overflows available buffer space. (Bug#8545)
18083
18084 2011-04-28 Paul Eggert <eggert@cs.ucla.edu>
18085
18086 * doprnt.c (doprnt): Omit useless test; int overflow check (Bug#8545).
18087 (SIZE_MAX): Move defn after all includes, as they might #define it.
18088
18089 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
18090
18091 * w32.c (init_environment): Warn about defaulting HOME to C:\.
18092
18093 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
18094
18095 * keyboard.c (Qdelayed_warnings_hook): Define.
18096 (command_loop_1): Run `delayed-warnings-hook'
18097 if Vdelayed_warnings_list is non-nil.
18098 (syms_of_keyboard) <delayed-warnings-hook>: DEFSYM it.
18099 (syms_of_keyboard) <delayed-warnings-list>: DEFVAR_LISP it.
18100
18101 2011-04-28 Eli Zaretskii <eliz@gnu.org>
18102
18103 * doprnt.c (doprnt): Don't return value smaller than the buffer
18104 size if the message was truncated. (Bug#8545).
18105
18106 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
18107
18108 * w32fns.c (Fx_change_window_property, Fx_delete_window_property)
18109 (Fx_window_property): #if-0 the whole functions, not just the bodies.
18110
18111 2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
18112
18113 * doprnt.c (doprnt): Support "ll" length modifier, for long long.
18114
18115 2011-04-27 Juanma Barranquero <lekktu@gmail.com>
18116
18117 * makefile.w32-in: Update dependencies.
18118
18119 2011-04-27 Eli Zaretskii <eliz@gnu.org>
18120
18121 Improve `doprnt' and its usage. (Bug#8545)
18122 * doprnt.c (doprnt): Make sure `format' is never accessed beyond
18123 `format_end'. Remove support for %l as a conversion specifier.
18124 Don't use xrealloc. Improve diagnostics when the %l size modifier
18125 is used. Update the commentary.
18126
18127 * eval.c (verror): Simplify calculation of size_t.
18128
18129 * coding.c (Ffind_operation_coding_system): Fix diagnostic error
18130 messages.
18131
18132 2011-04-27 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
18133
18134 * buffer.c (init_buffer) [USE_MMAP_FOR_BUFFERS]: Adjust to aliasing
18135 change.
18136
18137 2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
18138
18139 * nsmenu.m: Replace all uses of XVECTOR with ASIZE and AREF.
18140 This makes this file independent of the recent pseudovector change.
18141
18142 2011-04-26 Paul Eggert <eggert@cs.ucla.edu>
18143
18144 * keyboard.c (handle_user_signal): Fix pointer signedness problem.
18145
18146 * gnutls.c (emacs_gnutls_handle_error): Remove unused local.
18147 (Fgnutls_boot): gnutls_certificate_verify_peers2 wants unsigned *.
18148 Remove unused local.
18149 (emacs_gnutls_write): Don't use uninitialized rtnval if nbyte <= 0.
18150
18151 * lisp.h: Fix a problem with aliasing and vector headers. (Bug#8546)
18152 GCC 4.6.0 optimizes based on type-based alias analysis.
18153 For example, if b is of type struct buffer * and v of type struct
18154 Lisp_Vector *, then gcc -O2 was incorrectly assuming that &b->size
18155 != &v->size, and therefore "v->size = 1; b->size = 2; return
18156 v->size;" must therefore return 1. This assumption is incorrect
18157 for Emacs, since it type-puns struct Lisp_Vector * with many other
18158 types. To fix this problem, this patch adds a new type struct
18159 vectorlike_header that documents the constraints on layout of vectors
18160 and pseudovectors, and helps optimizing compilers not get fooled
18161 by Emacs's type punning. It also adds the macros XSETTYPED_PVECTYPE
18162 XSETTYPED_PSEUDOVECTOR, TYPED_PSEUDOVECTORP, for similar reasons.
18163 * lisp.h (XSETTYPED_PVECTYPE): New macro, specifying the name of
18164 the size member.
18165 (XSETPVECTYPE): Rewrite in terms of new macro.
18166 (XSETPVECTYPESIZE): New macro, specifying both type and size.
18167 This is a bit clearer, and further avoids the possibility of
18168 undesirable aliasing.
18169 (XSETTYPED_PSEUDOVECTOR): New macro, specifying the size.
18170 (XSETPSEUDOVECTOR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR.
18171 (XSETSUBR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR and XSIZE,
18172 since Lisp_Subr is a special case (no "next" field).
18173 (ASIZE): Now uses header.size rather than size.
18174 All previous uses of XVECTOR (foo)->size replaced to use this macro,
18175 to avoid the hassle of writing XVECTOR (foo)->header.size.
18176 (struct vectorlike_header): New type.
18177 (TYPED_PSEUDOVECTORP): New macro, also specifying the C type of the
18178 object, to help avoid aliasing.
18179 (PSEUDOVECTORP): Rewrite in terms of TYPED_PSEUDOVECTORP.
18180 (SUBRP): Likewise, since Lisp_Subr is a special case.
18181 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table):
18182 (struct Lisp_Sub_Char_Table, struct Lisp_Bool_Vector):
18183 (struct Lisp_Hash_Table): Combine first two members into a single
18184 struct vectorlike_header member. All uses of "size" and "next" members
18185 changed to be "header.size" and "header.next".
18186 * buffer.h (struct buffer): Likewise.
18187 * font.h (struct font_spec, struct font_entity, struct font): Likewise.
18188 * frame.h (struct frame): Likewise.
18189 * process.h (struct Lisp_Process): Likewise.
18190 * termhooks.h (struct terminal): Likewise.
18191 * window.c (struct save_window_data, struct saved_window): Likewise.
18192 * window.h (struct window): Likewise.
18193 * alloc.c (allocate_buffer, Fmake_bool_vector, allocate_pseudovector):
18194 Use XSETPVECTYPESIZE, not XSETPVECTYPE, to avoid aliasing problems.
18195 * buffer.c (init_buffer_once): Likewise.
18196 * lread.c (defsubr): Use XSETTYPED_PVECTYPE, since Lisp_Subr is a
18197 special case.
18198 * process.c (Fformat_network_address): Use local var for size,
18199 for brevity.
18200
18201 * bytecode.c (exec_byte_code): Don't use XVECTOR before CHECK_VECTOR.
18202
18203 Make the Lisp reader and string-to-float more consistent (Bug#8525)
18204 * data.c (atof): Remove decl; no longer used or needed.
18205 (digit_to_number): Move to lread.c.
18206 (Fstring_to_number): Use new string_to_number function, to be
18207 consistent with how the Lisp reader treats infinities and NaNs.
18208 Do not assume that floating-point numbers represent EMACS_INT
18209 without losing information; this is not true on most 64-bit hosts.
18210 Avoid double-rounding errors, by insisting on integers when
18211 parsing non-base-10 numbers, as the documentation specifies.
18212 * lisp.h (string_to_number): New decl, replacing ...
18213 (isfloat_string): Remove.
18214 * lread.c: Include <inttypes.h>, for uintmax_t and strtoumax.
18215 (read1): Do not accept +. and -. as integers; this
18216 appears to have been a coding error. Similarly, do not accept
18217 strings like +-1e0 as floating point numbers. Do not report
18218 overflow for integer overflows unless the base is not 10 which
18219 means we have no simple and reliable way to continue.
18220 Break out the floating-point parsing into a new
18221 function string_to_number, so that Fstring_to_number parses
18222 floating point numbers consistently with the Lisp reader.
18223 (digit_to_number): Move here from data.c. Make it static inline.
18224 (E_CHAR, EXP_INT): Remove, replacing with ...
18225 (E_EXP): New macro, to solve the "1.0e+" problem mentioned below.
18226 (string_to_number): New function, replacing isfloat_string.
18227 This function checks for valid syntax and produces the resulting
18228 Lisp float number too. Rework it so that string-to-number
18229 no longer mishandles examples like "1.0e+". Use strtoumax,
18230 so that overflow for non-base-10 numbers is reported only when
18231 there's no portable and simple way to convert to floating point.
18232
18233 * textprop.c (set_text_properties_1): Rewrite for clarity,
18234 and to avoid GCC warning about integer overflow.
18235
18236 * intervals.h (struct interval): Use EMACS_INT for members
18237 where EMACS_UINT might cause problems. See
18238 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html>.
18239 (CHECK_TOTAL_LENGTH): Remove cast to EMACS_INT; no longer needed.
18240 * intervals.c (interval_deletion_adjustment): Now returns EMACS_INT.
18241 All uses changed.
18242 (offset_intervals): Tell GCC not to worry about length overflow
18243 when negating a negative length.
18244
18245 * alloc.c (overrun_check_malloc, overrun_check_realloc): Now static.
18246 (overrun_check_free): Likewise.
18247
18248 * alloc.c (SDATA_SIZE) [!GC_CHECK_STRING_BYTES]: Avoid runtime check
18249 in the common case where SDATA_DATA_OFFSET is a multiple of Emacs
18250 word size.
18251
18252 * gnutls.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
18253 (gnutls_make_error): Rename local to avoid shadowing.
18254 (gnutls_emacs_global_deinit): ifdef out; not used.
18255 (Fgnutls_boot): Use const for pointer to readonly storage.
18256 Comment out unused local. Fix pointer signedness problems.
18257
18258 * lread.c (openp): Don't stuff size_t into an 'int'.
18259 Use <= on length, not < on length + 1, to avoid GCC 4.6.0 warning
18260 about possible signed overflow.
18261
18262 * gtkutil.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
18263 (GDK_KEY_g): Don't define if already defined.
18264 (xg_prepare_tooltip): Avoid pointer signedness problem.
18265 (xg_set_toolkit_scroll_bar_thumb): Redo to avoid two casts.
18266
18267 * process.c (Fnetwork_interface_info): Avoid left-shift undefined
18268 behavior with 1 << 31. GCC 4.6.0 warns about this on 32-bit hosts.
18269
18270 * xfns.c (Fx_window_property): Simplify a bit,
18271 to make a bit faster and to avoid GCC 4.6.0 warning.
18272 * xselect.c (x_get_window_property, x_handle_dnd_message): Likewise.
18273
18274 * fns.c (internal_equal): Don't assume size_t fits in int.
18275
18276 * alloc.c (compact_small_strings): Tighten assertion a little.
18277
18278 Replace pEd with more-general pI, and fix some printf arg casts.
18279 * lisp.h (pI): New macro, generalizing old pEd macro to other
18280 conversion specifiers. For example, use "...%"pI"d..." rather
18281 than "...%"pEd"...".
18282 (pEd): Remove. All uses replaced with similar uses of pI.
18283 * m/amdx86-64.h, m/ia64.h, m/ibms390x.h: Likewise.
18284 * alloc.c (check_pure_size): Don't overflow by converting size to int.
18285 * bidi.c (bidi_dump_cached_states): Use pI to avoid cast.
18286 * data.c (Fnumber_to_string): Use pI instead of if-then-else-abort.
18287 * dbusbind.c (xd_append_arg): Use pI to avoid cast.
18288 (Fdbus_method_return_internal, Fdbus_method_error_internal): Likewise.
18289 * font.c (font_unparse_xlfd): Avoid potential buffer overrun on
18290 64-bit hosts.
18291 (font_unparse_xlfd, font_unparse_fcname): Use pI to avoid casts.
18292 * keyboard.c (record_char, modify_event_symbol): Use pI to avoid casts.
18293 * print.c (safe_debug_print, print_object): Likewise.
18294 (print_object): Don't overflow by converting EMACS_INT or EMACS_UINT
18295 to int.
18296 Use pI instead of if-then-else-abort. Use %p to avoid casts,
18297 avoiding the 0 flag, which is not portable.
18298 * process.c (Fmake_network_process): Use pI to avoid cast.
18299 * region-cache.c (pp_cache): Likewise.
18300 * xdisp.c (decode_mode_spec): Likewise.
18301 * xrdb.c (x_load_resources) [USE_MOTIF]: Use pI to avoid undefined
18302 behavior on 64-bit hosts with printf arg.
18303 * xselect.c (x_queue_event): Use %p to avoid casts, avoiding 0 flag.
18304 (x_stop_queuing_selection_requests): Likewise.
18305 (x_get_window_property): Don't truncate byte count to an 'int'
18306 when tracing.
18307
18308 * frame.c (frame_name_fnn_p): Get rid of strtol, which isn't right
18309 here, since it parses constructs like leading '-' and spaces,
18310 which are not wanted; and it overflows with large numbers.
18311 Instead, simply match F[0-9]+, which is what is wanted anyway.
18312
18313 * alloc.c: Remove unportable assumptions about struct layout.
18314 (SDATA_SELECTOR, SDATA_DATA_OFFSET): New macros.
18315 (SDATA_OF_STRING, SDATA_SIZE, allocate_string_data):
18316 (allocate_vectorlike, make_pure_vector): Use the new macros,
18317 plus offsetof, to remove unportable assumptions about struct layout.
18318 These assumptions hold on all porting targets that I know of, but
18319 they are not guaranteed, they're easy to remove, and removing them
18320 makes further changes easier.
18321
18322 * alloc.c (BLOCK BYTES): Fix typo by changing "ablock" to "ablocks".
18323 This doesn't fix a bug but makes the code clearer.
18324 (string_overrun_cookie): Now const. Use initializers that
18325 don't formally overflow signed char, to avoid warnings.
18326 (allocate_string_data) [GC_CHECK_STRING_OVERRUN]: Fix typo that
18327 can cause Emacs to crash when string overrun checking is enabled.
18328 (allocate_buffer): Don't assume sizeof (struct buffer) is a
18329 multiple of sizeof (EMACS_INT); it need not be, if
18330 alignof(EMACS_INT) < sizeof (EMACS_INT).
18331 (check_sblock, check_string_bytes, check_string_free_list): Protoize.
18332
18333 2011-04-26 Juanma Barranquero <lekktu@gmail.com>
18334
18335 * keyboard.c (QCrtl): Rename from Qrtl. All uses changed.
18336
18337 2011-04-26 Teodor Zlatanov <tzz@lifelogs.com>
18338
18339 * gnutls.c (emacs_gnutls_handshake): Return an error if we're not
18340 supposed to be handshaking. (Bug#8556)
18341 Reported by Paul Eggert <eggert@cs.ucla.edu>.
18342
18343 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
18344
18345 * lisp.h (Qdebug): List symbol.
18346 * eval.c (Qdebug): Restore global linkage.
18347 * keyboard.c (debug-on-event): New variable.
18348 (handle_user_signal): Break into debugger when debug-on-event
18349 matches the current signal symbol.
18350
18351 2011-04-25 Dan Nicolaescu <dann@ics.uci.edu>
18352
18353 * alloc.c (check_sblock, check_string_bytes)
18354 (check_string_free_list): Convert to standard C.
18355
18356 2011-04-25 Teodor Zlatanov <tzz@lifelogs.com>
18357
18358 * w32.c (emacs_gnutls_push): Fix typo.
18359
18360 2011-04-25 Eli Zaretskii <eliz@gnu.org>
18361
18362 * gnutls.c (emacs_gnutls_handshake): Avoid compiler warnings about
18363 "cast to pointer from integer of different size".
18364
18365 Improve doprnt and its use in verror. (Bug#8545)
18366 * doprnt.c (doprnt): Document the set of format control sequences
18367 supported by the function. Use SAFE_ALLOCA instead of always
18368 using `alloca'.
18369
18370 * eval.c (verror): Don't limit the buffer size at size_max-1, that
18371 is one byte too soon. Don't use xrealloc; instead xfree and
18372 xmalloc anew.
18373
18374 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
18375
18376 * gnutls.h: Add GNUTLS_STAGE_CALLBACKS enum to denote we're in the
18377 callbacks stage.
18378
18379 * gnutls.c: Renamed global_initialized to
18380 gnutls_global_initialized. Added internals for the
18381 :verify-hostname-error, :verify-error, and :verify-flags
18382 parameters of `gnutls-boot' and documented those parameters in the
18383 docstring. Start callback support.
18384 (emacs_gnutls_handshake): Add Woe32 support. Retry handshake
18385 unless a fatal error occurred. Call gnutls_alert_send_appropriate
18386 on error. Return error code.
18387 (emacs_gnutls_write): Call emacs_gnutls_handle_error.
18388 (emacs_gnutls_read): Likewise.
18389 (Fgnutls_boot): Return handshake error code.
18390 (emacs_gnutls_handle_error): New function.
18391 (wsaerror_to_errno): Likewise.
18392
18393 * w32.h (emacs_gnutls_pull): Add prototype.
18394 (emacs_gnutls_push): Likewise.
18395
18396 * w32.c (emacs_gnutls_pull): New function for GnuTLS on Woe32.
18397 (emacs_gnutls_push): Likewise.
18398
18399 2011-04-24 Claudio Bley <claudio.bley@gmail.com> (tiny change)
18400
18401 * process.c (wait_reading_process_output): Check if GnuTLS
18402 buffered some data internally if no FDs are set for TLS
18403 connections.
18404
18405 * makefile.w32-in (OBJ2): Add gnutls.$(O).
18406 (LIBS): Link to USER_LIBS.
18407 ($(BLD)/gnutls.$(0)): New target.
18408
18409 2011-04-24 Eli Zaretskii <eliz@gnu.org>
18410
18411 * xdisp.c (handle_single_display_spec): Rename the
18412 display_replaced_before_p argument into display_replaced_p, to
18413 make it consistent with the commentary. Fix typos in the
18414 commentary.
18415
18416 * textprop.c (syms_of_textprop): Remove dead code.
18417 (copy_text_properties): Delete obsolete commentary about an
18418 interface that was deleted long ago. Fix typos in the description
18419 of arguments.
18420
18421 * msdos.c (XMenuActivate, XMenuAddSelection): Adjust argument list
18422 to changes in oldXMenu/XMenu.h from 2011-04-16.
18423 <menu_help_message, prev_menu_help_message>: Constify.
18424 (IT_menu_make_room): menu->help_text is now `const char **';
18425 adjust.
18426
18427 * msdos.h (XMenuActivate, XMenuAddSelection): Adjust prototypes
18428 to changes in oldXMenu/XMenu.h from 2011-04-16.
18429 (struct XMenu): Declare `help_text' `const char **'.
18430
18431 * xfaces.c <Qunspecified>: Make extern again.
18432
18433 * syntax.c: Include sys/types.h before including regex.h, as
18434 required by POSIX.
18435
18436 * doc.c (get_doc_string): Improve the format passed to `error'.
18437
18438 * doprnt.c (doprnt): Improve commentary.
18439
18440 * term.c (init_tty) [MSDOS]: Fix 1st argument to maybe_fatal.
18441
18442 * Makefile.in (TAGS): Depend on $(M_FILE) and $(S_FILE), and scan
18443 them with etags.
18444
18445 * makefile.w32-in (globals.h): Add a dummy recipe, to make any
18446 changes in globals.h immediately force recompilation.
18447 (TAGS): Depend on $(CURDIR)/m/intel386.h and
18448 $(CURDIR)/s/ms-w32.h.
18449 (TAGS-gmake): Scan $(CURDIR)/m/intel386.h and $(CURDIR)/s/ms-w32.h.
18450
18451 * character.c (Fchar_direction): Function deleted.
18452 (syms_of_character): Don't defsubr it.
18453 <char-direction-table>: Deleted.
18454
18455 2011-04-23 Eli Zaretskii <eliz@gnu.org>
18456
18457 Fix doprnt so it could be used again safely in `verror'. (Bug#8435)
18458 * doprnt.c: Include limits.h.
18459 (SIZE_MAX): New macro.
18460 (doprnt): Return a size_t value. 2nd arg is now size_t.
18461 Many local variables are now size_t instead of int or unsigned.
18462 Improve overflow protection. Support `l' modifier for integer
18463 conversions. Support %l conversion. Don't assume an EMACS_INT
18464 argument for integer conversions and for %c.
18465
18466 * lisp.h (doprnt): Restore prototype.
18467
18468 * makefile.w32-in ($(BLD)/callint.$(O)): Depend on
18469 $(SRC)/character.h.
18470
18471 * Makefile.in (base_obj): Add back doprnt.o.
18472
18473 * deps.mk (doprnt.o): Add back prerequisites.
18474 (callint.o): Depend on character.h.
18475
18476 * eval.c (internal_lisp_condition_case): Include the handler
18477 representation in the error message.
18478 (verror): Call doprnt instead of vsnprintf. Fix an off-by-one bug
18479 when breaking from the loop.
18480
18481 * xdisp.c (vmessage): Call doprnt instead of vsnprintf.
18482
18483 * callint.c (Fcall_interactively): When displaying error message
18484 about invalid control letter, pass the character's codepoint, not
18485 a pointer to its multibyte form. Improve display of the character
18486 in octal and display also its hex code.
18487
18488 * character.c (char_string): Use %x to display the (unsigned)
18489 codepoint of an invalid character, to avoid displaying a bogus
18490 negative value.
18491
18492 * font.c (check_otf_features): Pass SDATA of SYMBOL_NAME to
18493 `error', not SYMBOL_NAME itself.
18494
18495 * coding.c (Fencode_sjis_char, Fencode_big5_char): Use %c for
18496 character arguments to `error'.
18497
18498 * charset.c (check_iso_charset_parameter): Fix incorrect argument
18499 to `error' in error message about FINAL_CHAR argument. Make sure
18500 FINAL_CHAR is a character, and use %c when it is passed as
18501 argument to `error'.
18502
18503 2011-04-23 Eli Zaretskii <eliz@gnu.org>
18504
18505 * s/ms-w32.h (localtime): Redirect to sys_localtime.
18506
18507 * w32.c: Include <time.h>.
18508 (sys_localtime): New function.
18509
18510 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
18511
18512 * xdisp.c (init_xdisp): Initialize echo_area_window (Bug#6451).
18513
18514 * buffer.c (syms_of_buffer): Doc fix (Bug#6902).
18515
18516 2011-04-23 Samuel Thibault <sthibault@debian.org> (tiny change)
18517
18518 * sysdep.c (wait_for_termination): On GNU Hurd, kill returns -1 on
18519 zombies (Bug#8467).
18520
18521 2011-04-19 Eli Zaretskii <eliz@gnu.org>
18522
18523 * syntax.h (SETUP_SYNTAX_TABLE_FOR_OBJECT): Fix setting of
18524 gl_state.e_property when gl_state.object is Qt.
18525
18526 * insdel.c (make_gap_larger): Remove limitation of buffer size
18527 to <= INT_MAX.
18528
18529 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
18530
18531 * xdisp.c (lookup_glyphless_char_display)
18532 (produce_glyphless_glyph): Handle cons cell entry in
18533 glyphless-char-display.
18534 (Vglyphless_char_display): Document it.
18535
18536 * term.c (produce_glyphless_glyph): Handle cons cell entry in
18537 glyphless-char-display.
18538
18539 2011-04-17 Chong Yidong <cyd@stupidchicken.com>
18540
18541 * xdisp.c (get_next_display_element): Remove unnecessary ifdefs.
18542
18543 * termhooks.h (FRAME_WINDOW_P): Remove duplicated definitions.
18544
18545 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): Add missing
18546 definition for no-X builds.
18547
18548 2011-04-16 Paul Eggert <eggert@cs.ucla.edu>
18549
18550 Static checks with GCC 4.6.0 and non-default toolkits.
18551
18552 * s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF): Protoize decl.
18553
18554 * process.c (keyboard_bit_set): Define only if SIGIO.
18555 (send_process_trap): Mark it with NO_RETURN if it doesn't return.
18556 (send_process): Repair possible setjmp clobbering.
18557
18558 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Don't pass extra arg to 'fatal'.
18559
18560 * eval.c: Include <stdio.h>, for vsnprintf on non-GNU/Linux hosts.
18561
18562 * data.c (arith_error): Mark with NO_RETURN if it doesn't return.
18563
18564 * alloc.c (bytes_used_when_full, SPARE_MEMORY, BYTES_USED):
18565 Define only if needed.
18566
18567 * sysdep.c (_FILE_OFFSET_BITS): Make this hack even uglier
18568 by pacifying GCC about it. Maybe it's time to retire it?
18569 * xfaces.c (USG, __TIMEVAL__): Likewise.
18570
18571 * dispextern.h (struct redisplay_interface): Rename param
18572 to avoid shadowing.
18573 * termhooks.h (struct terminal): Likewise.
18574 * xterm.c (xembed_send_message): Likewise.
18575
18576 * insdel.c (make_gap_smaller): Define only if
18577 USE_MMAP_FOR_BUFFERS || REL_ALLOC || DOUG_LEA_MALLOC.
18578
18579 * keyboard.c (read_char): Make a var volatile so longjmp won't clobber
18580 it.
18581
18582 * emacs.c (MAX_HEAP_BSS_DIFF, my_edata): Move to where they're used,
18583 so that we aren't warned about unused symbols.
18584
18585 * xfns.c (Fx_file_dialog): Rename local to avoid shadowing.
18586
18587 * xdisp.c (x_produce_glyphs): Mark var as initialized (Bug#8512).
18588
18589 * xfns.c (x_real_positions): Mark locals as initialized.
18590
18591 * xmenu.c (xmenu_show): Don't use uninitialized vars.
18592
18593 * xterm.c: Fix problems found by static analysis with other toolkits.
18594 (toolkit_scroll_bar_interaction): Define and use only if USE_X_TOOLKIT.
18595 (x_dispatch_event): Declare static if USE_GTK, and
18596 define if USE_GTK || USE_X_TOOLKIT.
18597 (SET_SAVED_BUTTON_EVENT): Define only if USE_X_TOOLKIT || USE_GTK.
18598 * xterm.h (x_dispatch_event): Extern only if USE_X_TOOLKIT.
18599 * xterm.c, xterm.h (x_mouse_leave): Bring this function back, but only
18600 if defined HAVE_MENUS && !defined USE_X_TOOLKIT && !defined USE_GTK.
18601
18602 * xmenu.c (menu_help_callback): Pointer type fixes.
18603 Use const pointers when pointing at readonly data. Avoid pointer
18604 signedness clashes.
18605 (FALSE): Remove unused macro.
18606 (update_frame_menubar): Remove unused decl.
18607
18608 * xfns.c (Fx_hide_tip): Move locals to avoid shadowing.
18609
18610 * menu.c (push_submenu_start, push_submenu_end): Do not define unless
18611 USE_X_TOOLKIT || USE_GTK || HAVE_NS || defined HAVE_NTGUI.
18612 (single_menu_item): Rename local to avoid shadowing.
18613
18614 * keyboard.c (make_lispy_event): Remove unused local var.
18615
18616 * frame.c, frame.h (x_get_resource_string): Bring this back, but
18617 only if HAVE_X_WINDOWS && !USE_X_TOOLKIT.
18618
18619 * bitmaps: Change bitmaps from unsigned char back to the X11
18620 compatible char. Avoid the old compiler warnings about
18621 out-of-range initializers by using, for example, '\xab' rather
18622 than 0xab.
18623
18624 * xgselect.c (xgselect_initialize): Check vs interface
18625 even if ! (defined (USE_GTK) || defined (HAVE_GCONF)).
18626
18627 * xmenu.c (xmenu_show): Rename parm to avoid shadowing.
18628
18629 * xterm.c (x_create_toolkit_scroll_bar): Use const * for pointers
18630 to read-only memory.
18631
18632 * fns.c (vector): Remove; this old hack is no longer needed.
18633
18634 * xsmfns.c (create_client_leader_window): Rename shadowing arg.
18635 Remove unused var.
18636 (gdk_x11_set_sm_client_id) [!USE_GTK]: Don't define.
18637
18638 * xrdb.c (x_load_resources): Omit unused local.
18639
18640 * xfns.c (free_frame_menubar, atof): Remove duplicate decls.
18641 (x_window): Rename locals to avoid shadowing.
18642 (USG): Use the kludged USG macro, to pacify gcc.
18643
18644 * xterm.c (x_alloc_nearest_color_for_widget): Remove; unused.
18645 (x_term_init): Remove local to avoid shadowing.
18646
18647 * xfns.c, xterm.c (_XEditResCheckMessages): Protoize decl.
18648
18649 * xdisp.c, dispextern.h (set_vertical_scroll_bar): Now extern if
18650 USE_TOOLKIT_SCROLL_BARS && !USE_GTK, as xterm.c needs it then.
18651
18652 2011-04-16 Eli Zaretskii <eliz@gnu.org>
18653
18654 * gnutls.c (Fgnutls_boot): Don't pass Lisp_Object to `error'.
18655
18656 Fix regex.c, syntax.c and friends for buffers > 2GB.
18657 * syntax.h (struct gl_state_s): Declare character position members
18658 EMACS_INT.
18659
18660 * syntax.c (update_syntax_table): Declare 2nd argument EMACS_INT.
18661
18662 * textprop.c (verify_interval_modification, interval_of):
18663 Declare arguments EMACS_INT.
18664
18665 * intervals.c (adjust_intervals_for_insertion): Declare arguments
18666 EMACS_INT.
18667
18668 * intervals.h (CHECK_TOTAL_LENGTH): Cast to EMACS_INT, not `int'.
18669
18670 * indent.c (Fvertical_motion): Local variable it_start is now
18671 EMACS_INT.
18672
18673 * regex.c (re_match, re_match_2, re_match_2_internal)
18674 (bcmp_translate, regcomp, regexec, print_double_string)
18675 (group_in_compile_stack, re_search, re_search_2, regex_compile)
18676 (re_compile_pattern, re_exec): Declare arguments and local
18677 variables `size_t' and `ssize_t' and return values `regoff_t', as
18678 appropriate.
18679 (POP_FAILURE_REG_OR_COUNT) <pfreg>: Declare `long'.
18680 (CHECK_INFINITE_LOOP) <failure>: Declare `ssize_t'.
18681 <compile_stack_type>: `size' and `avail' are now `size_t'.
18682
18683 * regex.h <regoff_t>: Use ssize_t, not int.
18684 (re_search, re_search_2, re_match, re_match_2): Arguments that
18685 specify buffer/string position and length are now ssize_t and
18686 size_t. Return type is regoff_t.
18687
18688 2011-04-16 Ben Key <bkey76@gmail.com>
18689
18690 * nsfont.m: Fixed bugs in ns_get_family and
18691 ns_descriptor_to_entity that were caused by using free to
18692 deallocate memory blocks that were allocated by xmalloc (via
18693 xstrdup). This caused Emacs to crash when compiled with
18694 XMALLOC_OVERRUN_CHECK defined (when Emacs was configured with
18695 --enable-checking=xmallocoverrun). xfree is now used to
18696 deallocate these memory blocks.
18697
18698 2011-04-15 Paul Eggert <eggert@cs.ucla.edu>
18699
18700 * sysdep.c (emacs_read): Remove unnecessary check vs MAX_RW_COUNT.
18701
18702 emacs_write: Accept and return EMACS_INT for sizes.
18703 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html
18704 et seq.
18705 * gnutls.c, gnutls.h (emacs_gnutls_read, emacs_gnutls_write):
18706 Accept and return EMACS_INT.
18707 (emacs_gnutls_write): Return the number of bytes written on
18708 partial writes.
18709 * sysdep.c, lisp.h (emacs_read, emacs_write): Likewise.
18710 (emacs_read, emacs_write): Remove check for negative size, as the
18711 Emacs source code has been audited now.
18712 * sysdep.c (MAX_RW_COUNT): New macro, to work around kernel bugs.
18713 (emacs_read, emacs_write): Use it.
18714 * process.c (send_process): Adjust to the new signatures of
18715 emacs_write and emacs_gnutls_write. Do not attempt to store
18716 a byte offset into an 'int'; it might overflow.
18717 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00483.html
18718
18719 * sound.c: Don't assume sizes fit in 'int'.
18720 (struct sound_device.period_size, alsa_period_size):
18721 Return EMACS_INT, not int.
18722 (struct sound_device.write, vox_write, alsa_write):
18723 Accept EMACS_INT, not int.
18724 (wav_play, au_play): Use EMACS_INT to store sizes and to
18725 record read return values.
18726
18727 2011-04-15 Ben Key <bkey76@gmail.com>
18728
18729 * keyboard.c (Qundefined): Don't declare static since it is used
18730 in nsfns.m.
18731 * xfaces.c (Qbold, Qexpanded, Qitalic, Qcondensed): Don't declare
18732 static since they are used in nsfont.m.
18733
18734 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
18735
18736 * process.c (Qprocessp): Don't declare static.
18737 * lisp.h (Qprocessp): Declare again.
18738
18739 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
18740
18741 * font.c (Qopentype): Don't make static (used from w32uniscribe.c).
18742
18743 2011-04-14 Paul Eggert <eggert@cs.ucla.edu>
18744
18745 Improve C-level modularity by making more things 'static'.
18746
18747 Don't publish debugger-only interfaces to other modules.
18748 * lisp.h (safe_debug_print, debug_output_compilation_hack):
18749 (verify_bytepos, count_markers): Move decls to the only modules
18750 that need them.
18751 * region-cache.h (pp_cache): Likewise.
18752 * window.h (check_all_windows): Likewise.
18753 * marker.c, print.c, region-cache.c, window.c: Decls moved here.
18754
18755 * sysdep.c (croak): Now static, if
18756 defined TIOCNOTTY || defined USG5 || defined CYGWIN.
18757 * syssignal.h (croak): Declare only if not static.
18758
18759 * alloc.c (refill_memory_reserve): Now static if
18760 !defined REL_ALLOC || defined SYSTEM_MALLOC.
18761 * lisp.h (refill_memory_reserve): Declare only if not static.
18762
18763 * xsettings.c, xsettings.h (xsettings_get_system_normal_font):
18764 Define only if USE_LUCID.
18765
18766 * xrdb.c (x_customization_string, x_rm_string): Now static.
18767
18768 * xmenu.c (x_menu_wait_for_event): Export only if USE_MOTIF.
18769 * xterm.h (x_menu_wait_for_event): Declare only if USE_MOTIF.
18770
18771 * xdisp.c (draw_row_with_mouse_face): Now static.
18772 * dispextern.h (draw_row_with_mouse_fave): Remove decl.
18773
18774 * window.h (check_all_windows): Mark externally visible.
18775
18776 * window.c (window_deletion_count): Now static.
18777
18778 * undo.c: Make symbols static if they're not exported.
18779 (last_undo_buffer, last_boundary_position, pending_boundary):
18780 Now static.
18781
18782 * textprop.c (interval_insert_behind_hooks): Now static.
18783 (interval_insert_in_front_hooks): Likewise.
18784
18785 * term.c: Make symbols static if they're not exported.
18786 (tty_turn_off_highlight, get_tty_terminal, max_frame_cols):
18787 (max_frame_lines, tty_set_terminal_modes):
18788 (tty_reset_terminal_modes, tty_turn_off_highlight):
18789 (get_tty_terminal): Now static.
18790 (term_mouse_moveto): Do not define if HAVE_WINDOW_SYSTEM.
18791 * termhooks.h (term_mouse_moveto): Do not declare if
18792 HAVE_WINDOW_SYSTEM.
18793 * dispextern.h (tty_set_terminal_modes, tty_reset_terminal_modes):
18794 (tty_turn_off_highlight, get_tty_terminal): Remove decls.
18795
18796 * sysdep.c: Make symbols static if they're not exported.
18797 (emacs_get_tty, emacs_set_tty, old_fcntl_flags, old_fcntl_owner):
18798 Now static.
18799 (sigprocmask_set, full_mask): Remove; unused.
18800 (wait_debugging): Mark as visible.
18801 * syssignal.h (SIGFULLMASK, full_mask): Remove decls.
18802 * systty.h (emacs_get_tty, emacs_set_tty): Remove decls.
18803
18804 * syntax.c (syntax_temp): Define only if !__GNUC__.
18805
18806 * sound.c (current_sound_device, current_sound): Now static.
18807
18808 * search.c (searchbufs, searchbuf_head): Now static.
18809
18810 * scroll.c (scroll_cost): Remove; unused.
18811 * dispextern.h (scroll_cost): Remove decl.
18812
18813 * region-cache.h (pp_cache): Mark as externally visible.
18814
18815 * process.c: Make symbols static if they're not exported.
18816 (process_tick, update_tick, create_process, chan_process):
18817 (Vprocess_alist, proc_buffered_char, datagram_access):
18818 (fd_callback_data, send_process_frame, process_sent_to): Now static.
18819 (deactivate_process): Mark defn as static, as well as decl.
18820 * lisp.h (create_process): Remove decl.
18821 * process.h (chan_process, Vprocess_alist): Remove decls.
18822
18823 * print.c: Make symbols static if they're not exported.
18824 (print_depth, new_backquote_output, being_printed, print_buffer):
18825 (print_buffer_size, print_buffer_pos, print_buffer_pos_byte):
18826 (print_interval, print_number_index, initial_stderr_stream):
18827 Now static.
18828 * lisp.h (Fprinc): Remove decl.
18829 (debug_output_compilation_hack): Mark as externally visible.
18830
18831 * sysdep.c (croak): Move decl from here to syssignal.h.
18832 * syssignal.h (croak): Put it here, so the API can be checked when
18833 'croak' is called from dissociate_if_controlling_tty.
18834
18835 * minibuf.c: Make symbols static if they're not exported.
18836 (minibuf_save_list, choose_minibuf_frame): Now static.
18837 * lisp.h (choose_minibuf_frame): Remove decl.
18838
18839 * lisp.h (verify_bytepos, count_markers): Mark as externally visible.
18840
18841 * lread.c: Make symbols static if they're not exported.
18842 (read_objects, initial_obarray, oblookup_last_bucket_number):
18843 Now static.
18844 (make_symbol): Remove; unused.
18845 * lisp.h (initial_obarray, make_symbol): Remove decls.
18846
18847 * keyboard.c: Make symbols static if they're not exported.
18848 (single_kboard, recent_keys_index, total_keys, recent_keys):
18849 (this_command_key_count_reset, raw_keybuf, raw_keybuf_count):
18850 (this_single_command_key_start, echoing, last_auto_save):
18851 (read_key_sequence_cmd, dribble, recursive_edit_unwind):
18852 (command_loop, echo_now, keyboard_init_hook, help_char_p):
18853 (quit_throw_to_read_char, command_loop_2, top_level_1, poll_timer):
18854 (Vlispy_mouse_stem, double_click_count):
18855 Now static.
18856 (force_auto_save_soon): Define only if SIGDANGER.
18857 (ignore_mouse_drag_p): Now static if
18858 !defined HAVE_WINDOW_SYSTEM || defined USE_GTK || defined HAVE_NS.
18859 (print_help): Remove; unused.
18860 (stop_character, last_timer_event): Mark as externally visible.
18861 * keyboard.h (ignore_mouse_drag_p): Declare only if
18862 defined HAVE_WINDOW_SYSTEM && !defined USE_GTK && !defined HAVE_NS.
18863 (echo_now, help_char_p, quit_throw_to_read_char): Remove decls.
18864 * lisp.h (echoing): Remove decl.
18865 (force_auto_save_soon): Declare only if SIGDANGER.
18866 * xdisp.c (redisplay_window): Simplify code, to make it more
18867 obvious that ignore_mouse_drag_p is not accessed if !defined
18868 USE_GTK && !defined HAVE_NS.
18869
18870 * intervals.c: Make symbols static if they're not exported.
18871 (merge_properties_sticky, merge_interval_right, delete_interval):
18872 Now static.
18873 * intervals.h (merge_interval_right, delete_interval): Remove decls.
18874
18875 * insdel.c: Make symbols static if they're not exported.
18876 However, leave prepare_to_modify_buffer alone. It's never
18877 called from outside this function, but that appears to be a bug.
18878 (combine_after_change_list, combine_after_change_buffer):
18879 (adjust_after_replace, signal_before_change): Now static.
18880 (adjust_after_replace_noundo): Remove; unused.
18881 * lisp.h (adjust_after_replace, adjust_after_replace_noundo):
18882 (signal_before_change): Remove decls.
18883
18884 * indent.c (val_compute_motion, val_vmotion): Now static.
18885
18886 * image.c: Make symbols static if they're not exported.
18887 * dispextern.h (x_create_bitmap_from_xpm_data): Do not declare
18888 if USE_GTK.
18889 * image.c (x_create_bitmap_from_xpm_data): Do not define if USE_GTK.
18890 (xpm_color_cache, ct_table, ct_colors_allocated): Now static.
18891
18892 * fringe.c (standard_bitmaps): Now static.
18893 (max_used_fringe_bitmap): Now static, unless HAVE_NS.
18894
18895 * frame.c: Make symbols static if they're not exported.
18896 (x_report_frame_params, make_terminal_frame): Now static.
18897 (get_frame_param): Now static, unless HAVE_NS.
18898 (x_fullscreen_adjust): Define if WINDOWSNT, not if HAVE_WINDOW_SYSTEM.
18899 (x_get_resource_string): Remove; not used.
18900 * frame.h (make_terminal_frame, x_report_frame_params):
18901 (x_get_resource_string); Remove decls.
18902 (x_fullscreen_adjust): Declare only if WINDOWSNT.
18903 * lisp.h (get_frame_param): Declare only if HAVE_NS.
18904
18905 * font.c, fontset.c: Make symbols static if they're not exported.
18906 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): New macro.
18907 (FACE_SUITABLE_FOR_CHAR_P): Use it.
18908 * font.c (font_close_object): Now static.
18909 * font.h (font_close_object): Remove.
18910 * fontset.c (FONTSET_OBJLIST): Remove.
18911 (free_realized_fontset) #if-0 the body, which does nothing.
18912 (face_suitable_for_char_p): #if-0, as it's never called.
18913 * fontset.h (face_suitable_for_char_p): Remove decl.
18914 * xfaces.c (face_at_string_position):
18915 Use FACE_SUITABLE_FOR_ASCII_CHAR_P, not FACE_SUITABLE_FOR_CHAR_P,
18916 since 0 is always ASCII.
18917
18918 * fns.c (weak_hash_tables): Now static.
18919
18920 * fileio.c: Make symbols static if they're not exported.
18921 (auto_saving, auto_save_mode_bits, auto_save_error_occurred):
18922 (Vwrite_region_annotation_buffers): Now static.
18923
18924 * eval.c: Make symbols static if they're not exported.
18925 (backtrace_list, lisp_eval_depth, when_entered_debugger): Now static.
18926 * lisp.h (backtrace_list): Remove decl.
18927
18928 * emacs.c: Make symbols static if they're not exported.
18929 (malloc_state_ptr, malloc_using_checking, syms_of_emacs):
18930 (fatal_error_code, fatal_error_signal_hook, standard_args):
18931 Now static.
18932 (fatal_error_signal): Now static, unless FLOAT_CATCH_SIGKILL.
18933 (DEFINE_DUMMY_FUNCTION): Mark function as externally visible.
18934 (__CTOR_LIST__, __DTOR_LIST__): Now externally visible.
18935 * lisp.h (fatal_error_signal_hook): Remove decl.
18936 (fatal_error_signal): Declare only if FLOAT_CATCH_SIGKILL.
18937
18938 * editfns.c: Move a (normally-unused) function to its only use.
18939 * editfns.c, lisp.h (get_operating_system_release): Remove.
18940 * process.c (init_process) [DARWIN_OS]: Do it inline, as it is not
18941 worth the hassle of breaking this out.
18942
18943 * xterm.c: Make symbols static if they're not exported.
18944 (x_raise_frame, x_lower_frame, x_wm_set_window_state):
18945 (x_wm_set_icon_pixmap, x_initialize, XTread_socket_fake_io_error):
18946 (x_destroy_window, x_delete_display):
18947 Now static.
18948 (x_dispatch_event): Now static if ! (USE_MOTIF || USE_X_TOOLKIT).
18949 (x_mouse_leave): Remove; unused.
18950 * xterm.h (x_display_info_for_name, x_raise_frame, x_lower_frame):
18951 (x_destroy_window, x_wm_set_window_state, x_wm_set_icon_pixmap):
18952 (x_delete_display, x_initialize, x_set_border_pixel, x_screen_planes):
18953 Remove decls.
18954 (x_mouse_leave): Declare only if WINDOWSNT.
18955 (x_dispatch_event): Declare only if USE_MOTIF or USE_X_TOOLKIT.
18956 (xic_create_fontsetname): Declare only if HAVE_X_WINDOWS &&
18957 USE_X_TOOLKIT.
18958
18959 * ftxfont.c: Make symbols static if they're not exported.
18960 (ftxfont_driver): Export only if !defined HAVE_XFT && def8ined
18961 HAVE_FREETYPE.
18962 * font.h (ftxfont_driver): Likewise.
18963
18964 * xfns.c: Make symbols static if they're not exported.
18965 (x_last_font_name, x_display_info_for_name):
18966 (x_set_foreground_color, x_set_background_color, x_set_mouse_color):
18967 (x_set_cursor_color, x_set_border_pixel, x_set_border_color):
18968 (x_set_cursor_type, x_set_icon_type, x_set_icon_name):
18969 (x_set_scroll_bar_foreground, x_set_scroll_bar_background):
18970 (x_explicitly_set_name, x_set_title, xic_defaut_fontset, tip_timer):
18971 (last_show_tip_args): Now static.
18972 (xic_defaut_fontset, xic_create_fontsetname): Define only if
18973 defined HAVE_X_WINDOWS && defined USE_X_TOOLKIT
18974 (x_screen_planes): Remove; unused.
18975 * dispextern.h (x_screen_planes): Remove decl.
18976
18977 * dispnew.c: Make symbols static if they're not exported.
18978 * dispextern.h (redraw_garbaged_frames, scrolling):
18979 (increment_row_positions): Remove.
18980 * dispnew.c (new_glyph_matrix, increment_row_positions, scrolling):
18981 (delayed_size_change, glyph_matrix_count, glyph_pool_count):
18982 Now static.
18983 (redraw_garbaged_frames): Remove; unused.
18984
18985 * xfaces.c: Make symbols static if they're not exported.
18986 * dispextern.h (ascii_face_of_lisp_face, free_realized_face):
18987 Remove decls.
18988 * xterm.h (defined_color): Remove decls.
18989 (x_free_dpy_colors): Declare only if USE_X_TOOLKIT.
18990 * xfaces.c (tty_suppress_bold_inverse_default_colors_p):
18991 (menu_face_changed_default, defined_color, free_realized_face):
18992 (x_free_dpy_colors): Define only if USE_X_TOOLKIT.
18993 (ascii_face_of_lisp_face): Remove; unused.
18994
18995 * xdisp.c: Make symbols static if they're not exported.
18996 * dispextern.h (scratch_glyph_row, window_box_edges):
18997 (glyph_to_pixel_coords, set_cursor_from_row):
18998 (get_next_display_element, set_iterator_to_next):
18999 (highlight_trailing_whitespace, frame_to_window_pixel_xy):
19000 (show_mouse_face): Remove decls
19001 * frame.h (message_buf_print): Likewise.
19002 * lisp.h (pop_message, set_message, check_point_in_composition):
19003 Likewise.
19004 * xterm.h (set_vertical_scroll_bar): Likewise.
19005 * xdisp.c (list_of_error, Vmessage_stack, line_number_displayed):
19006 (message_buf_print, scratch_glyph_row, displayed_buffer):
19007 (set_iterator_to_next, pop_message, set_message, set_cursor_from_row):
19008 (get_next_display_element, show_mouse_face, window_box_edges):
19009 (frame_to_window_pixel_xy, check_point_in_composition):
19010 (set_vertical_scroll_bar, highlight_trailing_whitespace): Now static.
19011 (glyph_to_pixel_coords): Remove; unused.
19012
19013 * dired.c (file_name_completion): Now static.
19014
19015 * dbusbind.c (xd_in_read_queued_messages): Now static.
19016
19017 * lisp.h (circular_list_error, FOREACH): Remove; unused.
19018 * data.c (circular_list_error): Remove.
19019
19020 * commands.h (last_point_position, last_point_position_buffer):
19021 (last_point_position_window): Remove decls.
19022 * keyboard.c: Make these variables static.
19023
19024 * coding.h (coding, code_convert_region, encode_coding_gap):
19025 Remove decls.
19026 * coding.c (Vsjis_coding_system, Vbig5_coding_system):
19027 (iso_code_class, detect_coding, code_convert_region): Now static.
19028 (encode_coding_gap): Remove; unused.
19029
19030 * chartab.c (chartab_chars, chartab_bits): Now static.
19031
19032 * charset.h (charset_iso_8859_1): Remove decl.
19033 * charset.c (charset_iso_8859_1, charset_emacs, map_charset_for_dump):
19034 Now static.
19035
19036 * ccl.h (check_ccl_update, Vccl_program_table): Remove decls.
19037 * ccl.c (Vccl_program_table): Now static.
19038 (check_ccl_update): Remove; unused.
19039
19040 * category.c (SET_CATEGORY_SET, set_category_set): Move here.
19041 * category.h: ... from here.
19042 * category.c (check_category_table, set_category_set): Now static.
19043
19044 * casetab.c (Vascii_upcase_table, Vascii_eqv_table): Now static.
19045 * lisp.h: Remove these decls.
19046
19047 * buffer.c (buffer_count): Remove unused var.
19048
19049 * bidi.c (bidi_dump_cached_states): Mark as externally visible,
19050 so that it's not optimized away.
19051 (bidi_ignore_explicit_marks_for_paragraph_level): Likewise.
19052 * dispextern.h (bidi_dump_cached_states): Remove, since it's
19053 exported only to the debugger.
19054
19055 * atimer.c (alarm_signal_handler, run_all_atimers): Now static.
19056 * atimer.h (run_all_atimers): Remove; not exported.
19057
19058 font.c: Make copy_font_spec and merge_font_spec ordinary C functions.
19059 * font.c (copy_font_spec): Rename from Fcopy_font_spec, since it
19060 was inaccessible from Lisp.
19061 (merge_font_spec): Likewise, renaming from Fmerge_font_spec.
19062 * font.c, font.h, fontset.c, xfaces.c, xfont.c: Change all uses.
19063
19064 alloc.c: Import and export fewer symbols, and remove unused items.
19065 * lisp.h (suppress_checking, die): Declare only if ENABLE_CHECKING
19066 is defined.
19067 (suppress_checking): Add EXTERNALLY_VISIBLE attribute, so that
19068 it's not optimized away by whole-program optimization.
19069 (message_enable_multibyte, free_misc): Remove.
19070 (catchlist, handlerlist, mark_backtrace):
19071 Declare only if BYTE_MARK_STACK.
19072 (mark_byte_stack): Likewise, fixing a ifdef-vs-if typo.
19073 * alloc.c (pure): Export only if VIRT_ADDR_VARIES is defined.
19074 (message_enable_multibyte): Remove decl.
19075 (free_misc, interval_free_list, float_block, float_block_index):
19076 (n_float_blocks, float_free_list, cons_block, cons_block_index):
19077 (cons_free_list, last_marked_index):
19078 Now static.
19079 (suppress_checking, die): Define only if ENABLE_CHECKING is defined.
19080 * eval.c (catchlist, handlerlist): Export only if BYTE_MARK_STACK.
19081 (mark_backtrace): Define only if BYTE_MARK_STACK.
19082 * xdisp.c (message_enable_multibyte): Now static.
19083
19084 Declare Lisp_Object Q* variables to be 'static' if not exported.
19085 This makes it easier for human readers (and static analyzers)
19086 to see whether these variables are used from other modules.
19087 * alloc.c, buffer.c, bytecode.c, callint.c, casetab.c, category.c:
19088 * ccl.c, character.c, charset.c, cmds.c, coding.c, composite.c:
19089 * data.c, dbusbind.c, dired.c, editfns.c, eval.c, fileio.c, fns.c:
19090 * font.c, frame.c, fringe.c, ftfont.c, image.c, keyboard.c, keymap.c:
19091 * lread.c, macros.c, minibuf.c, print.c, process.c, search.c:
19092 * sound.c, syntax.c, textprop.c, window.c, xdisp.c, xfaces.c, xfns.c:
19093 * xmenu.c, xselect.c:
19094 Declare Q* vars static if they are not used in other modules.
19095 * ccl.h, character.h, charset.h, coding.h, composite.h, font.h:
19096 * frame.h, intervals.h, keyboard.h, lisp.h, process.h, syntax.h:
19097 Remove decls of unexported vars.
19098 * keyboard.h (EVENT_HEAD_UNMODIFIED): Remove now-unused macro.
19099
19100 * lisp.h (DEFINE_FUNC): Make sname 'static'.
19101
19102 Make Emacs functions such as Fatom 'static' by default.
19103 This makes it easier for human readers (and static analyzers)
19104 to see whether these functions can be called from other modules.
19105 DEFUN now defines a static function. To make the function external
19106 so that it can be used in other C modules, use the new macro DEFUE.
19107 * lisp.h (Funibyte_char_to_multibyte, Fsyntax_table_p):
19108 (Finit_image_library):
19109 (Feval_region, Fbacktrace, Ffetch_bytecode, Fswitch_to_buffer):
19110 (Ffile_executable_p, Fmake_symbolic_link, Fcommand_execute):
19111 (Fget_process, Fdocumentation_property, Fbyte_code, Ffile_attributes):
19112 Remove decls, since these functions are now static.
19113 (Funintern, Fget_internal_run_time): New decls, since these functions
19114 were already external.
19115
19116 * alloc.c, buffer.c, callint.c, callproc.c, casefiddle.c, casetab.c:
19117 * ccl.c, character.c, chartab.c, cmds.c, coding.c, data.c, dispnew.c:
19118 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, floatfns.c:
19119 * fns.c, font.c, fontset.c, frame.c, image.c, indent.c:
19120 * keyboard.c, keymap.c, lread.c:
19121 * macros.c, marker.c, menu.c, minibuf.c, print.c, process.c, search.c:
19122 * syntax.c, term.c, terminal.c, textprop.c, undo.c:
19123 * window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xsettings.c:
19124 Mark functions with DEFUE instead of DEFUN,
19125 if they are used in other modules.
19126 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): New forward
19127 decls for now-static functions.
19128 * buffer.h (Fdelete_overlay): Remove decl.
19129 * callproc.c (Fgetenv_internal): Mark as internal.
19130 * composite.c (Fremove_list_of_text_properties): Remove decl.
19131 (Fcomposition_get_gstring): New forward static decl.
19132 * composite.h (Fcomposite_get_gstring): Remove decl.
19133 * dired.c (Ffile_attributes): New forward static decl.
19134 * doc.c (Fdocumntation_property): New forward static decl.
19135 * eval.c (Ffetch_bytecode): New forward static decl.
19136 (Funintern): Remove extern decl; now in .h file where it belongs.
19137 * fileio.c (Fmake_symbolic_link): New forward static decl.
19138 * image.c (Finit_image_library): New forward static decl.
19139 * insdel.c (Fcombine_after_change_execute): Make forward decl static.
19140 * intervals.h (Fprevious_property_change):
19141 (Fremove_list_of_text_properties): Remove decls.
19142 * keyboard.c (Fthis_command_keys): Remove decl.
19143 (Fcommand_execute): New forward static decl.
19144 * keymap.c (Flookup_key): New forward static decl.
19145 (Fcopy_keymap): Now static.
19146 * keymap.h (Flookup_key): Remove decl.
19147 * process.c (Fget_process): New forward static decl.
19148 (Fprocess_datagram_address): Mark as internal.
19149 * syntax.c (Fsyntax_table_p): New forward static decl.
19150 (skip_chars): Remove duplicate decl.
19151 * textprop.c (Fprevious_property_change): New forward static decl.
19152 * window.c (Fset_window_fringes, Fset_window_scroll_bars):
19153 Now internal.
19154 (Fset_window_margins, Fset_window_vscroll): New forward static decls.
19155 * window.h (Fset_window_vscroll, Fset_window_margins): Remove decls.
19156
19157 * editfns.c (Fformat): Remove unreachable code.
19158
19159 2011-04-14 Andreas Schwab <schwab@linux-m68k.org>
19160
19161 * fileio.c (Finsert_file_contents): Fix typo in 2005-05-13
19162 change. (Bug#8496)
19163
19164 2011-04-13 Eli Zaretskii <eliz@gnu.org>
19165
19166 * xdisp.c (handle_invisible_prop): Don't call bidi_paragraph_init
19167 when at ZV. (Bug#8487)
19168
19169 2011-04-12 Andreas Schwab <schwab@linux-m68k.org>
19170
19171 * charset.c (Fclear_charset_maps): Use xfree instead of free.
19172 (Bug#8437)
19173 * keyboard.c (parse_tool_bar_item): Likewise.
19174 * sound.c (sound_cleanup, alsa_close): Likewise.
19175 * termcap.c (tgetent): Likewise.
19176 * xfns.c (x_default_font_parameter): Likewise.
19177 * xsettings.c (read_and_apply_settings): Likewise.
19178
19179 * alloc.c (overrun_check_malloc, overrun_check_realloc)
19180 (overrun_check_free): Protoize.
19181
19182 2011-04-12 Paul Eggert <eggert@cs.ucla.edu>
19183
19184 * sysdep.c (emacs_read, emacs_write): Check for negative sizes
19185 since callers should never pass a negative size.
19186 Change the signature to match that of plain 'read' and 'write'; see
19187 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00397.html>.
19188 * lisp.h: Update prototypes of emacs_write and emacs_read.
19189
19190 2011-04-11 Eli Zaretskii <eliz@gnu.org>
19191
19192 * xdisp.c (redisplay_window): Don't try to determine the character
19193 position of the scroll margin if the window start point w->startp
19194 is outside the buffer's accessible region. (Bug#8468)
19195
19196 2011-04-10 Eli Zaretskii <eliz@gnu.org>
19197
19198 Fix write-region and its subroutines for buffers > 2GB.
19199 * fileio.c (a_write, e_write): Modify declaration of arguments and
19200 local variables to support buffers larger than 2GB.
19201 (Fcopy_file): Use EMACS_INT for return value of emacs_read.
19202
19203 * sysdep.c (emacs_write, emacs_read): Use ssize_t for last
19204 argument, local variables, and return value.
19205
19206 * lisp.h: Update prototypes of emacs_write and emacs_read.
19207
19208 * sound.c (vox_write): Use ssize_t for return value of emacs_write.
19209
19210 2011-04-10 Paul Eggert <eggert@cs.ucla.edu>
19211
19212 * xdisp.c (vmessage): Use memchr, not strnlen, which some hosts lack.
19213
19214 Fix more problems found by GCC 4.6.0's static checks.
19215
19216 * xdisp.c (vmessage): Use a better test for character truncation.
19217
19218 * charset.c (load_charset_map): <, not <=, for optimization,
19219 and to avoid potential problems with integer overflow.
19220 * chartab.c (sub_char_table_set_range, char_table_set_range): Likewise.
19221 * casetab.c (set_identity, shuffle): Likewise.
19222 * editfns.c (Fformat): Likewise.
19223 * syntax.c (skip_chars): Likewise.
19224
19225 * xmenu.c (set_frame_menubar): Allocate smaller local vectors.
19226 This also lets GCC 4.6.0 generate slightly better loop code.
19227
19228 * callint.c (Fcall_interactively): <, not <=, for optimization.
19229 (Fcall_interactively): Count the number of arguments produced,
19230 not the number of arguments given. This is simpler and lets GCC
19231 4.6.0 generate slightly better code.
19232
19233 * ftfont.c: Distingish more carefully between FcChar8 and char.
19234 The previous code passed unsigned char * to a functions like
19235 strlen and xstrcasecmp that expect char *, which does not
19236 conform to the C standard.
19237 (get_adstyle_property, ftfont_pattern_entity): Use FcChar8 for
19238 arguments to FcPatternGetString, and explicitly cast FcChar8 * to
19239 char * when the C standard requires it.
19240
19241 * keyboard.c (read_char): Remove unused var.
19242
19243 * eval.c: Port to Windows vsnprintf (Bug#8435).
19244 Include <limits.h>.
19245 (SIZE_MAX): Define if the headers do not.
19246 (verror): Do not give up if vsnprintf returns a negative count.
19247 Instead, grow the buffer. This ports to Windows vsnprintf, which
19248 does not conform to C99. Problem reported by Eli Zaretskii.
19249 Also, simplify the allocation scheme, by avoiding the need for
19250 calling realloc, and removing the ALLOCATED variable.
19251
19252 * eval.c (verror): Initial buffer size is 4000 (not 200) bytes.
19253
19254 Remove invocations of doprnt, as Emacs now uses vsnprintf.
19255 But keep the doprint source code for now, as we might revamp it
19256 and use it again (Bug#8435).
19257 * lisp.h (doprnt): Remove.
19258 * Makefile.in (base_obj): Remove doprnt.o.
19259 * deps.mk (doprnt.o): Remove.
19260
19261 error: Print 32- and 64-bit integers portably (Bug#8435).
19262 Without this change, on typical 64-bit hosts error ("...%d...", N)
19263 was used to print both 32- and 64-bit integers N, which relied on
19264 undefined behavior.
19265 * lisp.h, m/amdx86-64.h, m/ia64.h, m/ibms390x.h (pEd): New macro.
19266 * lisp.h (error, verror): Mark as printf-like functions.
19267 * eval.c (verror): Use vsnprintf, not doprnt, to do the real work.
19268 Report overflow in size calculations when allocating printf buffer.
19269 Do not truncate output string at its first null byte.
19270 * xdisp.c (vmessage): Use vsnprintf, not doprnt, to do the real work.
19271 Truncate the output at a character boundary, since vsnprintf does not
19272 do that.
19273 * charset.c (check_iso_charset_parameter): Convert internal
19274 character to string before calling 'error', since %c now has the
19275 printf meaning.
19276 * coding.c (Fdecode_sjis_char, Fdecode_big5_char): Avoid int
19277 overflow when computing char to be passed to 'error'. Do not
19278 pass Lisp_Object to 'error'; pass the integer instead.
19279 * nsfns.m (Fns_do_applescript): Use int, not long, since it's
19280 formatted with plain %d.
19281
19282 * eval.c (internal_lisp_condition_case): Don't pass spurious arg.
19283
19284 * keyboard.c (access_keymap_keyremap): Print func name, not garbage.
19285
19286 * coding.c (Fdecode_sjis_char): Don't assume CODE fits in int.
19287
19288 * xterm.c (x_catch_errors): Remove duplicate declaration.
19289
19290 * term.c (maybe_fatal): Mark its 3rd arg as a printf format, too.
19291
19292 * xdisp.c, lisp.h (message_nolog): Remove; unused.
19293
19294 2011-04-10 Jim Meyering <meyering@redhat.com>
19295
19296 use ssize_t and size_t for read- and write-like emacs_gnutls_* functions
19297 * gnutls.c (emacs_gnutls_read): Adjust signature to be more read-like:
19298 return ssize_t not "int", and use size_t as the buffer length.
19299 (emacs_gnutls_write): Likewise, and make the buffer pointer "const".
19300 * gnutls.h: Update declarations.
19301 * process.c (read_process_output): Use ssize_t, to match.
19302 (send_process): Likewise.
19303
19304 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
19305
19306 * image.c (Fimagemagick_types): Doc fix, and comment cleanup.
19307
19308 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
19309
19310 * ftfont.c (get_adstyle_property, ftfont_pattern_entity):
19311 Use unsigned char, to match FcChar8 type definition.
19312
19313 * xterm.c (handle_one_xevent):
19314 * xmenu.c (create_and_show_popup_menu):
19315 * xselect.c (x_decline_selection_request)
19316 (x_reply_selection_request): Avoid type-punned deref of X events.
19317
19318 2011-04-09 Eli Zaretskii <eliz@gnu.org>
19319
19320 Fix some uses of `int' instead of EMACS_INT.
19321 * search.c (string_match_1, fast_string_match)
19322 (fast_c_string_match_ignore_case, fast_string_match_ignore_case)
19323 (scan_buffer, find_next_newline_no_quit)
19324 (find_before_next_newline, search_command, Freplace_match)
19325 (Fmatch_data): Make some `int' variables be EMACS_INT.
19326
19327 * xdisp.c (display_count_lines): 3rd argument and return value now
19328 EMACS_INT. All callers changed.
19329 (pint2hrstr): Last argument is now EMACS_INT.
19330
19331 * coding.c (detect_coding_utf_8, detect_coding_emacs_mule)
19332 (detect_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
19333 (detect_coding_ccl, detect_coding_charset, decode_coding_utf_8)
19334 (decode_coding_utf_16, decode_coding_emacs_mule)
19335 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
19336 (decode_coding_ccl, decode_coding_charset)
19337 <consumed_chars, consumed_chars_base>: Declare EMACS_INT.
19338 (decode_coding_iso_2022, decode_coding_emacs_mule)
19339 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
19340 <char_offset, last_offset>: Declare EMACS_INT.
19341 (encode_coding_utf_8, encode_coding_utf_16)
19342 (encode_coding_emacs_mule, encode_invocation_designation)
19343 (encode_designation_at_bol, encode_coding_iso_2022)
19344 (encode_coding_sjis, encode_coding_big5, encode_coding_ccl)
19345 (encode_coding_raw_text, encode_coding_charset) <produced_chars>:
19346 Declare EMACS_INT.
19347 (ASSURE_DESTINATION): Declare more_bytes EMACS_INT.
19348 (encode_invocation_designation): Last argument P_NCHARS is now
19349 EMACS_INT.
19350 (decode_eol): Declare pos_byte, pos, and pos_end EMACS_INT.
19351 (produce_chars): from_nchars and to_nchars are now EMACS_INT.
19352
19353 * coding.h (struct coding_system) <head_ascii>: Declare EMACS_INT.
19354 All users changed.
19355
19356 * ccl.c (Fccl_execute_on_string): Declare some variables
19357 EMACS_INT.
19358
19359 2011-04-08 Samuel Thibault <sthibault@debian.org> (tiny change)
19360
19361 * term.c (init_tty): Fix incorrect ifdef placement (Bug#8450).
19362
19363 2011-03-19 Christoph Scholtes <cschol2112@googlemail.com>
19364
19365 * process.c (Fformat_network_address): Doc fix.
19366
19367 2011-04-08 T.V. Raman <tv.raman.tv@gmail.com> (tiny change)
19368
19369 * xml.c (parse_region): Avoid creating spurious whitespace nodes.
19370
19371 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
19372
19373 * keyboard.c (read_char): Call Lisp function help-form-show,
19374 instead of using internal_with_output_to_temp_buffer.
19375 (Qhelp_form_show): New var.
19376 (syms_of_keyboard): Use DEFSYM macro.
19377
19378 * print.c (internal_with_output_to_temp_buffer): Function deleted.
19379
19380 * lisp.h (internal_with_output_to_temp_buffer): Remove prototype.
19381
19382 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
19383
19384 * process.c (Flist_processes): Remove to Lisp.
19385 (list_processes_1): Delete.
19386
19387 2011-04-06 Eli Zaretskii <eliz@gnu.org>
19388
19389 * msdos.c (careadlinkat, careadlinkatcwd): MS-DOS replacements.
19390
19391 * w32.c (careadlinkat, careadlinkatcwd): New always-fail stubs.
19392
19393 2011-04-06 Paul Eggert <eggert@cs.ucla.edu>
19394
19395 Fix more problems found by GCC 4.6.0's static checks.
19396
19397 * xmenu.c (Fx_popup_dialog): Don't assume string is free of formats.
19398
19399 * menu.c (Fx_popup_menu): Don't assume error_name lacks printf formats.
19400
19401 * lisp.h (message, message_nolog, fatal): Mark as printf-like.
19402
19403 * xdisp.c (vmessage): Mark as a printf-like function.
19404
19405 * term.c (vfatal, maybe_fatal): Mark as printf-like functions.
19406
19407 * sound.c (sound_warning): Don't crash if arg contains a printf format.
19408
19409 * image.c (tiff_error_handler, tiff_warning_handler): Mark as
19410 printf-like functions.
19411 (tiff_load): Add casts to remove these marks before passing them
19412 to system-supplied API.
19413
19414 * eval.c (Fsignal): Remove excess argument to 'fatal'.
19415
19416 * coding.c (EMIT_ONE_BYTE, EMIT_TWO_BYTES): Use unsigned, not int.
19417 This avoids several warnings with gcc -Wstrict-overflow.
19418 (DECODE_COMPOSITION_RULE): If the rule is invalid, goto invalid_code
19419 directly, rather than having caller test rule sign. This avoids
19420 some unnecessary tests.
19421 * composite.h (COMPOSITION_ENCODE_RULE_VALID): New macro.
19422 (COMPOSITION_ENCODE_RULE): Arguments now must be valid. This
19423 affects only one use, in DECODE_COMPOSITION_RULE, which is changed.
19424
19425 * xfont.c (xfont_text_extents): Remove var that was set but not used.
19426 (xfont_open): Avoid unnecessary tests.
19427
19428 * composite.c (composition_gstring_put_cache): Use unsigned integer.
19429
19430 * composite.h, composite.c (composition_gstring_put_cache):
19431 Use EMACS_INT, not int, for length.
19432
19433 * composite.h (COMPOSITION_DECODE_REFS): New macro,
19434 breaking out part of COMPOSITION_DECODE_RULE.
19435 (COMPOSITION_DECODE_RULE): Use it.
19436 * composite.c (get_composition_id): Remove unused local vars,
19437 by using the new macro.
19438
19439 * textprop.c (set_text_properties_1): Change while to do-while,
19440 since the condition is always true at first.
19441
19442 * intervals.c (graft_intervals_into_buffer): Mark var as used.
19443 (interval_deletion_adjustment): Return unsigned value.
19444 All uses changed.
19445
19446 * process.c (list_processes_1, create_pty, read_process_output):
19447 (exec_sentinel): Remove vars that were set but not used.
19448 (create_pty): Remove unnecessary "volatile"s.
19449 (Fnetwork_interface_info): Avoid possibility of int overflow.
19450 (read_process_output): Do adaptive read buffering even if carryover.
19451 (read_process_output): Simplify nbytes computation if buffered.
19452
19453 * bytecode.c (exec_byte_code): Rename local to avoid shadowing.
19454
19455 * syntax.c (scan_words): Remove var that was set but not used.
19456 (update_syntax_table): Use unsigned instead of int.
19457
19458 * lread.c (lisp_file_lexically_bound_p): Use ints rather than endptrs.
19459 (lisp_file_lexically_bound_p, read1): Use unsigned instead of int.
19460 (safe_to_load_p): Make the end-of-loop test the inverse of the in-loop.
19461
19462 * print.c (print_error_message): Avoid int overflow.
19463
19464 * font.c (font_list_entities): Redo for clarity,
19465 so that reader need not know FONT_DPI_INDEX + 1 == FONT_SPACING_INDEX.
19466
19467 * font.c (font_find_for_lface, Ffont_get_glyphs): Remove unused vars.
19468 (font_score): Avoid potential overflow in diff calculation.
19469
19470 * fns.c (substring_both): Remove var that is set but not used.
19471 (sxhash): Redo loop for clarity and to avoid wraparound warning.
19472
19473 * eval.c (funcall_lambda): Rename local to avoid shadowing.
19474
19475 * alloc.c (mark_object_loop_halt, mark_object): Use size_t, not int.
19476 Otherwise, GCC 4.6.0 optimizes the loop check away since the check
19477 can always succeed if overflow has undefined behavior.
19478
19479 * search.c (boyer_moore, wordify): Remove vars set but not used.
19480 (wordify): Omit three unnecessary tests.
19481
19482 * indent.c (MULTIBYTE_BYTES_WIDTH): Don't compute wide_column.
19483 All callers changed. This avoids the need for an unused var.
19484
19485 * casefiddle.c (casify_region): Remove var that is set but not used.
19486
19487 * dired.c (file_name_completion): Remove var that is set but not used.
19488
19489 * fileio.c (Finsert_file_contents): Make EOF condition clearer.
19490
19491 * fileio.c (Finsert_file_contents): Avoid signed integer overflow.
19492 (Finsert_file_contents): Remove unnecessary code checking fd.
19493
19494 * minibuf.c (read_minibuf_noninteractive): Use size_t for sizes.
19495 Check for integer overflow on size calculations.
19496
19497 * buffer.c (Fprevious_overlay_change): Remove var that is set
19498 but not used.
19499
19500 * keyboard.c (menu_bar_items, read_char_minibuf_menu_prompt):
19501 Remove vars that are set but not used.
19502 (timer_check_2): Don't assume timer-list and idle-timer-list are lists.
19503 (timer_check_2): Mark vars as initialized.
19504
19505 * gtkutil.c (xg_get_file_with_chooser): Mark var as initialized.
19506
19507 * image.c (lookup_image): Remove var that is set but not used.
19508 (xbm_load): Use parse_p, for gcc -Werror=unused-but-set-variable.
19509
19510 * fontset.c (Finternal_char_font, Ffontset_info): Remove vars
19511 that are set but not used.
19512
19513 * xfns.c (make_invisible_cursor): Don't return garbage
19514 if XCreateBitmapFromData fails (Bug#8410).
19515
19516 * xselect.c (x_get_local_selection, x_handle_property_notify):
19517 Remove vars that are set but not used.
19518
19519 * xfns.c (x_create_tip_frame): Remove var that is set but not used.
19520 (make_invisible_cursor): Initialize a possibly-uninitialized variable.
19521
19522 * xterm.c (x_scroll_bar_to_input_event) [!USE_GTK]:
19523 Remove var that is set but not used.
19524 (scroll_bar_windows_size): Now size_t, not int.
19525 (x_send_scroll_bar_event): Use size_t, not int, for sizes.
19526 Check for overflow.
19527
19528 * xfaces.c (realize_named_face): Remove vars that are set but not used.
19529 (map_tty_color) [!defined MSDOS]: Likewise.
19530
19531 * term.c (tty_write_glyphs): Use size_t; this avoids overflow warning.
19532
19533 * coding.c: Remove vars that are set but not used.
19534 (DECODE_COMPOSITION_RULE): Remove 2nd arg, which is unused.
19535 All callers changed.
19536 (decode_coding_utf_8, decode_coding_utf_16 decode_coding_emacs_mule):
19537 (decode_coding_iso_2022, encode_coding_sjis, encode_coding_big5):
19538 (decode_coding_charset): Remove vars that are set but not used.
19539
19540 * bytecode.c (Fbyte_code) [!defined BYTE_CODE_SAFE]: Remove var
19541 that is set but not used.
19542
19543 * print.c (print_object): Remove var that is set but not used.
19544
19545 Replace 2 copies of readlink code with 1 gnulib version (Bug#8401).
19546 The gnulib version avoids calling malloc in the usual case,
19547 and on 64-bit hosts doesn't have some arbitrary 32-bit limits.
19548 * fileio.c (Ffile_symlink_p): Use emacs_readlink.
19549 * filelock.c (current_lock_owner): Likewise.
19550 * lisp.h (READLINK_BUFSIZE, emacs_readlink): New function.
19551 * sysdep.c: Include allocator.h, careadlinkat.h.
19552 (emacs_no_realloc_allocator): New static constant.
19553 (emacs_readlink): New function.
19554 * deps.mk (sysdep.o): Depend on ../lib/allocator.h and on
19555 ../lib/careadlinkat.h.
19556
19557 2011-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
19558
19559 * keyboard.c (safe_run_hook_funcall): Fix last change (don't stop at the
19560 first non-nil return value).
19561
19562 2011-04-03 Jan Djärv <jan.h.d@swipnet.se>
19563
19564 * nsterm.m (ns_update_auto_hide_menu_bar): Define MAC_OS_X_VERSION_10_6
19565 if not defined (Bug#8403).
19566
19567 2011-04-02 Juanma Barranquero <lekktu@gmail.com>
19568
19569 * xdisp.c (display_count_lines): Remove parameter `start',
19570 unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
19571 (get_char_face_and_encoding): Remove parameter `multibyte_p',
19572 unused since 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
19573 (fill_stretch_glyph_string): Remove parameters `row' and `area',
19574 unused at least since Kim's GUI unification at 2003-03-16T20:45:46Z!storm@cua.dk
19575 and thereabouts. All callers changed.
19576 (get_per_char_metric): Remove parameter `f', unused since
19577 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
19578
19579 2011-04-02 Jim Meyering <meyering@redhat.com>
19580
19581 do not dereference NULL upon failed strdup
19582 * nsfont.m (ns_descriptor_to_entity): Use xstrdup, not strdup.
19583 (ns_get_family): Likewise.
19584
19585 2011-04-02 Juanma Barranquero <lekktu@gmail.com>
19586
19587 * eval.c (unwind_to_catch) [DEBUG_GCPRO]: Remove redundant assignment.
19588
19589 2011-04-02 Jan Djärv <jan.h.d@swipnet.se>
19590
19591 * nsterm.m (ns_update_auto_hide_menu_bar): Only for OSX 10.6 or
19592 later (Bug#8403).
19593
19594 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
19595
19596 Add lexical binding.
19597
19598 * window.c (Ftemp_output_buffer_show): New fun.
19599 (Fsave_window_excursion):
19600 * print.c (Fwith_output_to_temp_buffer): Move to subr.el.
19601
19602 * lread.c (lisp_file_lexically_bound_p): New function.
19603 (Fload): Bind Qlexical_binding.
19604 (readevalloop): Remove `evalfun' arg.
19605 Bind Qinternal_interpreter_environment.
19606 (Feval_buffer): Bind Qlexical_binding.
19607 (defvar_int, defvar_bool, defvar_lisp_nopro, defvar_kboard):
19608 Mark as dynamic.
19609 (syms_of_lread): Declare `lexical-binding'.
19610
19611 * lisp.h (struct Lisp_Symbol): New field `declared_special'.
19612
19613 * keyboard.c (eval_dyn): New fun.
19614 (menu_item_eval_property): Use it.
19615
19616 * image.c (parse_image_spec): Use Ffunctionp.
19617
19618 * fns.c (concat, mapcar1): Accept byte-code-functions.
19619
19620 * eval.c (Fsetq): Handle lexical vars.
19621 (Fdefun, Fdefmacro, Ffunction): Make closures when needed.
19622 (Fdefconst, Fdefvaralias, Fdefvar): Mark as dynamic.
19623 (FletX, Flet): Obey lexical binding.
19624 (Fcommandp): Handle closures.
19625 (Feval): New `lexical' arg.
19626 (eval_sub): New function extracted from Feval. Use it almost
19627 everywhere where Feval was used. Look up vars in lexical env.
19628 Handle closures.
19629 (Ffunctionp): Move from subr.el.
19630 (Ffuncall): Handle closures.
19631 (apply_lambda): Remove `eval_flags'.
19632 (funcall_lambda): Handle closures and new byte-code-functions.
19633 (Fspecial_variable_p): New function.
19634 (syms_of_eval): Initialize the Vinternal_interpreter_environment var,
19635 but without exporting it to Lisp.
19636
19637 * doc.c (Fdocumentation, store_function_docstring):
19638 * data.c (Finteractive_form): Handle closures.
19639
19640 * callint.c (Fcall_interactively): Preserve lexical-binding mode for
19641 interactive spec.
19642
19643 * bytecode.c (Bstack_ref, Bstack_set, Bstack_set2, BdiscardN):
19644 New byte-codes.
19645 (exec_byte_code): New function extracted from Fbyte_code to handle new
19646 calling convention for byte-code-functions. Add new byte-codes.
19647
19648 * buffer.c (defvar_per_buffer): Set new `declared_special' field.
19649
19650 * alloc.c (Fmake_symbol): Init new `declared_special' field.
19651
19652 2011-03-31 Juanma Barranquero <lekktu@gmail.com>
19653
19654 * xdisp.c (redisplay_internal): Fix prototype.
19655
19656 2011-03-31 Eli Zaretskii <eliz@gnu.org>
19657
19658 * xdisp.c (SCROLL_LIMIT): New macro.
19659 (try_scrolling): Use it when setting scroll_limit.
19660 Limit scrolling to 100 screen lines.
19661 (redisplay_window): Even when falling back on "recentering",
19662 position point in the window according to scroll-conservatively,
19663 scroll-margin, and scroll-*-aggressively variables. (Bug#6671)
19664
19665 (try_scrolling): When point is above the window, allow searching
19666 as far as scroll_max, or one screenful, to compute vertical
19667 distance from PT to the scroll margin position. This prevents
19668 try_scrolling from unnecessarily failing when
19669 scroll-conservatively is set to a value slightly larger than the
19670 window height. Clean up the case of PT below the margin at bottom
19671 of window: scroll_max can no longer be INT_MAX. When aggressive
19672 scrolling is in use, don't let point enter the opposite scroll
19673 margin as result of the scroll.
19674 (syms_of_xdisp) <scroll-conservatively>: Document the
19675 threshold of 100 lines for never-recentering scrolling.
19676
19677 2011-03-31 Juanma Barranquero <lekktu@gmail.com>
19678
19679 * dispextern.h (move_it_by_lines):
19680 * xdisp.c (move_it_by_lines): Remove parameter `need_y_p', unused
19681 since 2000-12-29T14:24:09Z!gerd@gnu.org. All callers changed.
19682 (message_log_check_duplicate): Remove parameters `prev_bol' and
19683 `this_bol', unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
19684 (redisplay_internal): Remove parameter `preserve_echo_area',
19685 unused since 1999-07-21T21:43:52Z!gerd@gnu.org. All callers changed.
19686
19687 * indent.c (Fvertical_motion):
19688 * window.c (window_scroll_pixel_based, Frecenter):
19689 Don't pass `need_y_p' to `move_it_by_lines'.
19690
19691 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
19692
19693 * eval.c (struct backtrace): Don't cheat with negative numbers, but do
19694 steal a few bits to be more compact.
19695 (interactive_p, Fbacktrace, Fbacktrace_frame, mark_backtrace):
19696 Remove unneeded casts.
19697
19698 * bytecode.c (Fbyte_code): CAR and CDR can GC.
19699
19700 2011-03-30 Zachary Kanfer <zkanfer@gmail.com> (tiny change)
19701
19702 * keyboard.c (Fexecute_extended_command): Do log the "suggest key
19703 binding" message (bug#7967).
19704
19705 2011-03-30 Paul Eggert <eggert@cs.ucla.edu>
19706
19707 Fix more problems found by GCC 4.6.0's static checks.
19708
19709 * unexelf.c (unexec) [! (defined _SYSTYPE_SYSV || defined __sgi)]:
19710 Remove unused local var.
19711
19712 * editfns.c (Fmessage_box): Remove unused local var.
19713
19714 * xdisp.c (try_window_reusing_current_matrix, x_produce_glyphs):
19715 (note_mode_line_or_margin_highlight, note_mouse_highlight):
19716 Omit unused local vars.
19717 * window.c (shrink_windows): Omit unused local var.
19718 * menu.c (digest_single_submenu): Omit unused local var.
19719 * dispnew.c (update_window) [PERIODIC_PREEMPTION_CHECKING]:
19720 Omit unused local var.
19721
19722 * keyboard.c (parse_modifiers_uncached, parse_modifiers):
19723 Don't assume string length fits in int.
19724 (keyremap_step, read_key_sequence): Use size_t for sizes.
19725 (read_key_sequence): Don't check last_real_key_start redundantly.
19726
19727 * callproc.c (Fcall_process, Fcall_process_region): Use SAFE_ALLOCA
19728 instead of alloca (Bug#8344).
19729
19730 * eval.c (Fbacktrace): Don't assume nargs fits in int.
19731 (Fbacktrace_frame): Don't assume nframes fits in int.
19732
19733 * syntax.c (scan_sexps_forward): Avoid pointer wraparound.
19734
19735 * xterm.c (x_make_frame_visible, same_x_server): Redo to avoid overflow
19736 concerns.
19737
19738 * term.c (produce_glyphless_glyph): Remove unnecessary test.
19739
19740 * cm.c (calccost): Turn while-do into do-while, for clarity.
19741
19742 * keyboard.c (syms_of_keyboard): Use the same style as later
19743 in this function when indexing through an array. This also
19744 works around GCC bug 48267.
19745
19746 * image.c (tiff_load): Fix off-by-one image count (Bug#8336).
19747
19748 * xselect.c (x_check_property_data): Return correct size (Bug#8335).
19749
19750 * chartab.c (sub_char_table_ref_and_range): Redo for slight
19751 efficiency gain, and to bypass a gcc -Wstrict-overflow warning.
19752
19753 * keyboard.c, keyboard.h (num_input_events): Now size_t.
19754 This avoids undefined behavior on integer overflow, and is a bit
19755 more convenient anyway since it is compared to a size_t variable.
19756
19757 Variadic C functions now count arguments with size_t, not int.
19758 This avoids an unnecessary limitation on 64-bit machines, which
19759 caused (substring ...) to crash on large vectors (Bug#8344).
19760 * lisp.h (struct Lisp_Subr.function.aMANY): Now takes size_t, not int.
19761 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call): Likewise.
19762 All variadic functions and their callers changed accordingly.
19763 (struct gcpro.nvars): Now size_t, not int. All uses changed.
19764 * data.c (arith_driver, float_arith_driver): Likewise.
19765 * editfns.c (general_insert_function): Likewise.
19766 * eval.c (struct backtrace.nargs, interactive_p)
19767 (internal_condition_case_n, run_hook_with_args, apply_lambda)
19768 (funcall_lambda, mark_backtrace): Likewise.
19769 * fns.c (concat): Likewise.
19770 * frame.c (x_set_frame_parameters): Likewise.
19771 * fns.c (get_key_arg): Now accepts and returns size_t, and returns
19772 0 if not found, not -1. All callers changed.
19773
19774 * alloc.c (garbage_collect): Don't assume stack size fits in int.
19775 (stack_copy_size): Now size_t, not int.
19776 (stack_copy, stack_copy_size): Define only if MAX_SAVE_STACK > 0.
19777
19778 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
19779
19780 * coding.c (encode_designation_at_bol): Remove parameter `charbuf_end',
19781 unused since 2002-03-01T01:17:24Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
19782 All callers changed.
19783
19784 * lisp.h (multibyte_char_to_unibyte):
19785 * character.c (multibyte_char_to_unibyte): Remove parameter `rev_tbl',
19786 unused since 2002-03-01T01:16:34Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
19787 * character.h (CHAR_TO_BYTE8):
19788 * cmds.c (internal_self_insert):
19789 * editfns.c (general_insert_function):
19790 * keymap.c (push_key_description):
19791 * search.c (Freplace_match):
19792 * xdisp.c (message_dolog, set_message_1): All callers changed.
19793
19794 2011-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
19795
19796 * keyboard.c (safe_run_hook_funcall): New function.
19797 (safe_run_hooks_1, safe_run_hooks_error, safe_run_hooks): On error,
19798 don't set the hook to nil, but remove the offending function instead.
19799 (Qcommand_hook_internal): Remove, unused.
19800 (syms_of_keyboard): Don't initialize Qcommand_hook_internal nor define
19801 Vcommand_hook_internal.
19802
19803 * eval.c (enum run_hooks_condition): Remove.
19804 (funcall_nil, funcall_not): New functions.
19805 (run_hook_with_args): Call each function through a `funcall' argument.
19806 Remove `cond' argument, now redundant.
19807 (Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success)
19808 (Frun_hook_with_args_until_failure): Adjust accordingly.
19809 (run_hook_wrapped_funcall, Frun_hook_wrapped): New functions.
19810
19811 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
19812
19813 * dispextern.h (string_buffer_position): Remove declaration.
19814
19815 * print.c (strout): Remove parameter `multibyte', unused since
19816 1999-08-21T19:30:21Z!gerd@gnu.org. All callers changed.
19817
19818 * search.c (boyer_moore): Remove parameters `len', `pos' and `lim',
19819 never used since function introduction in 1998-02-08T21:33:56Z!rms@gnu.org.
19820 All callers changed.
19821
19822 * w32.c (_wsa_errlist): Use braces for struct initializers.
19823
19824 * xdisp.c (string_buffer_position_lim): Remove parameter `w',
19825 never used since function introduction in 2001-03-09T18:41:50Z!gerd@gnu.org.
19826 All callers changed.
19827 (string_buffer_position): Likewise. Also, make static (it's never
19828 used outside xdisp.c).
19829 (cursor_row_p): Remove parameter `w', unused since
19830 2000-10-17T16:08:57Z!gerd@gnu.org. All callers changed.
19831 (decode_mode_spec): Remove parameter `precision', introduced during
19832 Gerd Moellmann's rewrite at 1999-07-21T21:43:52Z!gerd@gnu.org, but never used.
19833 All callers changed.
19834
19835 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
19836
19837 * nsterm.m (syms_of_nsterm): Use doc: for ns-auto-hide-menu-bar.
19838
19839 2011-03-27 Anders Lindgren <andlind@gmail.com>
19840
19841 * nsterm.m (ns_menu_bar_is_hidden): New variable.
19842 (ns_constrain_all_frames, ns_menu_bar_should_be_hidden)
19843 (ns_update_auto_hide_menu_bar): New functions.
19844 (ns_update_begin): Call ns_update_auto_hide_menu_bar.
19845 (applicationDidBecomeActive): Call ns_update_auto_hide_menu_bar and
19846 ns_constrain_all_frames.
19847 (constrainFrameRect): Return at once if ns_menu_bar_should_be_hidden.
19848 (syms_of_nsterm): DEFVAR ns-auto-hide-menu-bar, init to Qnil.
19849
19850 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
19851
19852 * nsmenu.m (runDialogAt): Remove argument to timer_check.
19853
19854 2011-03-27 Glenn Morris <rgm@gnu.org>
19855
19856 * syssignal.h: Replace RETSIGTYPE with void.
19857 * atimer.c, data.c, dispnew.c, emacs.c, floatfns.c, keyboard.c:
19858 * keyboard.h, lisp.h, process.c, sysdep.c, xterm.c:
19859 Replace SIGTYPE with void everywhere.
19860 * s/usg5-4-common.h (SIGTYPE): Remove definition.
19861 * s/template.h (SIGTYPE): Remove commented out definition.
19862
19863 2011-03-26 Eli Zaretskii <eliz@gnu.org>
19864
19865 * xdisp.c (redisplay_window): Don't check buffer's clip_changed
19866 flag as a prerequisite for invoking try_scrolling. (Bug#6671)
19867
19868 2011-03-26 Juanma Barranquero <lekktu@gmail.com>
19869
19870 * w32.c (read_unc_volume): Use parameter `henum', instead of
19871 global variable `wget_enum_handle'.
19872
19873 * keymap.c (describe_vector): Remove parameters `indices' and
19874 `char_table_depth', unused since 2002-03-01T01:43:26Z!handa@m17n.org.
19875 (describe_map, Fdescribe_vector): Adjust calls to `describe_vector'.
19876
19877 * keyboard.h (timer_check, show_help_echo): Remove unused parameters.
19878
19879 * keyboard.c (timer_check): Remove parameter `do_it_now',
19880 unused since 1996-04-12T06:01:29Z!rms@gnu.org.
19881 (show_help_echo): Remove parameter `ok_to_overwrite_keystroke_echo',
19882 unused since 2008-04-19T19:30:53Z!monnier@iro.umontreal.ca.
19883
19884 * keyboard.c (read_char):
19885 * w32menu.c (w32_menu_display_help):
19886 * xmenu.c (show_help_event, menu_help_callback):
19887 Adjust calls to `show_help_echo'.
19888
19889 * gtkutil.c (xg_maybe_add_timer):
19890 * keyboard.c (readable_events):
19891 * process.c (wait_reading_process_output):
19892 * xmenu.c (x_menu_wait_for_event): Adjust calls to `timer_check'.
19893
19894 * insdel.c (adjust_markers_gap_motion):
19895 Remove; no-op since 1998-01-02T21:29:48Z!rms@gnu.org.
19896 (gap_left, gap_right): Don't call it.
19897
19898 2011-03-25 Chong Yidong <cyd@stupidchicken.com>
19899
19900 * xdisp.c (handle_fontified_prop): Discard changes to clip_changed
19901 incurred during fontification.
19902
19903 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
19904
19905 * buffer.c (defvar_per_buffer): Remove unused parameter `doc'.
19906 (DEFVAR_PER_BUFFER): Don't pass it.
19907
19908 * dispnew.c (row_equal_p, add_row_entry): Remove unused parameter `w'.
19909 (scrolling_window): Don't pass it.
19910
19911 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
19912
19913 * dispextern.h (glyph_matric): Use #if GLYPH_DEBUG, not #ifdef.
19914
19915 * fileio.c (check_executable) [DOS_NT]: Remove unused variables `len'
19916 and `suffix'.
19917 (Fset_file_selinux_context) [HAVE_LIBSELINUX]: Move here declaration
19918 of variables specific to SELinux and computation of `encoded_absname'.
19919
19920 * image.c (XPutPixel): Remove unused variable `height'.
19921
19922 * keyboard.c (make_lispy_event): Remove unused variable `hpos'.
19923
19924 * unexw32.c (get_section_info): Remove unused variable `section'.
19925
19926 * w32.c (stat): Remove unused variables `drive_root' and `devtype'.
19927 (system_process_attributes): Remove unused variable `sess'.
19928 (sys_read): Remove unused variable `err'.
19929
19930 * w32fns.c (top): Wrap variables with #if GLYPH_DEBUG, not #ifdef.
19931 (w32_wnd_proc): Remove unused variable `isdead'.
19932 (unwind_create_frame): Use #if GLYPH_DEBUG, not #ifdef.
19933 (Fx_server_max_request_size): Remove unused variable `dpyinfo'.
19934 (x_create_tip_frame): Remove unused variable `tem'.
19935
19936 * w32inevt.c (w32_console_read_socket):
19937 Remove unused variable `no_events'.
19938
19939 * w32term.c (x_draw_composite_glyph_string_foreground):
19940 Remove unused variable `width'.
19941
19942 2011-03-24 Juanma Barranquero <lekktu@gmail.com>
19943
19944 * w32term.c (x_set_glyph_string_clipping):
19945 Don't pass uninitialized region to CombineRgn.
19946
19947 2011-03-23 Juanma Barranquero <lekktu@gmail.com>
19948
19949 * w32fns.c (x_set_menu_bar_lines): Remove unused variable `olines'.
19950 (w32_wnd_proc): Pass NULL to Windows API, not uninitialized buffer.
19951 (Fx_close_connection): Remove unused variable `i'.
19952
19953 * w32font.c (w32font_draw): Return number of glyphs.
19954 (w32font_open_internal): Remove unused variable `i'.
19955 (w32font_driver): Add missing initializer.
19956
19957 * w32menu.c (utf8to16): Remove unused variable `utf16'.
19958 (fill_in_menu): Remove unused variable `items_added'.
19959
19960 * w32term.c (last_mouse_press_frame): Remove static global variable.
19961 (w32_clip_to_row): Remove unused variable `f'.
19962 (x_delete_terminal): Remove unused variable `i'.
19963
19964 * w32uniscribe.c (uniscribe_shape): Remove unused variable `nclusters'.
19965 (NOTHING): Remove unused static global variable.
19966 (uniscribe_check_otf): Remove unused variable `table'.
19967 (uniscribe_font_driver): Add missing initializers.
19968
19969 2011-03-23 Julien Danjou <julien@danjou.info>
19970
19971 * term.c (Fsuspend_tty, Fresume_tty):
19972 * minibuf.c (read_minibuf, run_exit_minibuf_hook):
19973 * window.c (temp_output_buffer_show):
19974 * insdel.c (signal_before_change):
19975 * frame.c (Fhandle_switch_frame):
19976 * fileio.c (Fdo_auto_save):
19977 * emacs.c (Fkill_emacs):
19978 * editfns.c (save_excursion_restore):
19979 * cmds.c (internal_self_insert):
19980 * callint.c (Fcall_interactively):
19981 * buffer.c (Fkill_all_local_variables):
19982 * keyboard.c (Fcommand_execute, Fsuspend_emacs, safe_run_hooks_1):
19983 Use Frun_hooks.
19984 (command_loop_1): Use Frun_hooks. Call safe_run_hooks
19985 unconditionally since it does the check itself.
19986
19987 2011-03-23 Paul Eggert <eggert@cs.ucla.edu>
19988
19989 Fix more problems found by GCC 4.5.2's static checks.
19990
19991 * coding.c (encode_coding_raw_text): Avoid unnecessary test
19992 the first time through the loop, since we know p0 < p1 then.
19993 This also avoids a gcc -Wstrict-overflow warning.
19994
19995 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP): Avoid 'int' overflow
19996 leading to a memory leak, possible in functions like
19997 load_charset_map_from_file that can allocate an unbounded number
19998 of objects (Bug#8318).
19999
20000 * xmenu.c (set_frame_menubar): Use EMACS_UINT, not int, for indexes
20001 that could (at least in theory) be that large.
20002
20003 * xdisp.c (message_log_check_duplicate): Return unsigned long, not int.
20004 This is less likely to overflow, and avoids undefined behavior if
20005 overflow does occur. All callers changed. Use strtoul to scan
20006 for the unsigned long integer.
20007 (pint2hrstr): Simplify and tune code slightly.
20008 This also avoids a (bogus) GCC warning with gcc -Wstrict-overflow.
20009
20010 * scroll.c (do_scrolling): Work around GCC bug 48228.
20011 See <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48228>.
20012
20013 * frame.c (Fmodify_frame_parameters): Simplify loop counter.
20014 This also avoids a warning with gcc -Wstrict-overflow.
20015 (validate_x_resource_name): Simplify count usage.
20016 This also avoids a warning with gcc -Wstrict-overflow.
20017
20018 * fileio.c (Fcopy_file): Report error if fchown or fchmod
20019 fail (Bug#8306).
20020
20021 * emacs.c (Fdaemon_initialized): Do not ignore I/O errors (Bug#8303).
20022
20023 * process.c (Fmake_network_process): Use socklen_t, not int,
20024 where POSIX says socklen_t is required in portable programs.
20025 This fixes a porting bug on hosts like 64-bit HP-UX, where
20026 socklen_t is wider than int (Bug#8277).
20027 (Fmake_network_process, server_accept_connection):
20028 (wait_reading_process_output, read_process_output):
20029 Likewise.
20030
20031 * process.c: Rename or move locals to avoid shadowing.
20032 (list_processes_1, Fmake_network_process):
20033 (read_process_output_error_handler, exec_sentinel_error_handler):
20034 Rename or move locals.
20035 (Fmake_network_process): Define label "retry_connect" only if needed.
20036 (Fnetwork_interface_info): Fix pointer signedness.
20037 (process_send_signal): Add cast to avoid pointer signedness problem.
20038 (FIRST_PROC_DESC, IF_NON_BLOCKING_CONNECT): Remove unused macros.
20039 (create_process): Use 'volatile' to avoid vfork clobbering (Bug#8298).
20040
20041 Make tparam.h and terminfo.c consistent.
20042 * cm.c (tputs, tgoto, BC, UP): Remove extern decls.
20043 Include tparam.h instead, since it declares them.
20044 * cm.h (PC): Remove extern decl; tparam.h now does this.
20045 * deps.mk (cm.o, terminfo.o): Depend on tparam.h.
20046 * terminfo.c: Include tparam.h, to check interfaces.
20047 (tparm): Make 1st arg a const pointer in decl. Put it at top level.
20048 (tparam): Adjust signature to match interface in tparam.h;
20049 this removes some undefined behavior. Check that outstring and len
20050 are zero, which they always are with Emacs.
20051 * tparam.h (PC, BC, UP): New extern decls.
20052
20053 * xftfont.c (xftfont_shape): Now static, and defined only if needed.
20054 (xftfont_open): Rename locals to avoid shadowing.
20055
20056 * ftfont.c (ftfont_resolve_generic_family): Fix pointer signedness.
20057 (ftfont_otf_capability, ftfont_shape): Omit decls if not needed.
20058 (OTF_TAG_SYM): Omit macro if not needed.
20059 (ftfont_list): Remove unused local.
20060 (get_adstyle_property, ftfont_pattern_entity):
20061 (ftfont_lookup_cache, ftfont_open, ftfont_anchor_point):
20062 Rename locals to avoid shadowing.
20063
20064 * xfont.c (xfont_list_family): Mark var as initialized.
20065
20066 * xml.c (make_dom): Now static.
20067
20068 * composite.c (composition_compute_stop_pos): Rename local to
20069 avoid shadowing.
20070 (composition_reseat_it): Remove unused locals.
20071 (find_automatic_composition, composition_adjust_point): Likewise.
20072 (composition_update_it): Mark var as initialized.
20073 (find_automatic_composition): Mark vars as initialized,
20074 with a FIXME (Bug#8290).
20075
20076 character.h: Rename locals to avoid shadowing.
20077 * character.h (PREV_CHAR_BOUNDARY, FETCH_STRING_CHAR_ADVANCE):
20078 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE, FETCH_CHAR_ADVANCE):
20079 (FETCH_CHAR_ADVANCE_NO_CHECK, INC_POS, DEC_POS, BUF_INC_POS):
20080 (BUF_DEC_POS): Be more systematic about renaming local temporaries
20081 to avoid shadowing.
20082
20083 * textprop.c (property_change_between_p): Remove; unused.
20084
20085 * intervals.c (interval_start_pos): Now static.
20086
20087 * intervals.h (CHECK_TOTAL_LENGTH): Avoid empty "else".
20088
20089 * atimer.c (start_atimer, append_atimer_lists, set_alarm):
20090 Rename locals to avoid shadowing.
20091
20092 * sound.c (wav_play, au_play, Fplay_sound_internal):
20093 Fix pointer signedness.
20094 (alsa_choose_format): Remove unused local var.
20095 (wav_play): Initialize a variable to 0, to prevent undefined
20096 behavior (Bug#8278).
20097
20098 * region-cache.c (insert_cache_boundary): Redo var to avoid shadowing.
20099
20100 * region-cache.h (pp_cache): New decl, for gcc -Wmissing-prototypes.
20101
20102 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork
20103 clobbering (Bug#8298).
20104 * sysdep.c (sys_subshell): Likewise.
20105 Previously, the sys_subshell 'volatile' was incorrectly IF_LINTted out.
20106
20107 * lisp.h (child_setup): Now NO_RETURN unless DOS_NT.
20108 This should get cleaned up, so that child_setup has the
20109 same signature on all platforms.
20110
20111 * callproc.c (call_process_cleanup): Now static.
20112 (relocate_fd): Rename locals to avoid shadowing.
20113
20114 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
20115
20116 * xterm.c (x_clear_frame): Remove XClearWindow call. This appears
20117 not to be necessary, and produces flickering.
20118
20119 2011-03-20 Glenn Morris <rgm@gnu.org>
20120
20121 * config.in: Remove file.
20122
20123 2011-03-20 Juanma Barranquero <lekktu@gmail.com>
20124
20125 * minibuf.c (Vcompleting_read_function): Don't declare, global variables
20126 are now in src/globals.h.
20127 (syms_of_minibuf): Remove spurious & from previous change.
20128
20129 2011-03-20 Leo Liu <sdl.web@gmail.com>
20130
20131 * minibuf.c (completing-read-function): New variable.
20132 (completing-read-default): Rename from completing-read.
20133 (completing-read): Call completing-read-function.
20134
20135 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
20136
20137 * xfaces.c (Fx_load_color_file):
20138 Read color file from absolute filename (bug#8250).
20139
20140 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
20141
20142 * makefile.w32-in: Update dependencies.
20143
20144 2011-03-17 Eli Zaretskii <eliz@gnu.org>
20145
20146 * makefile.w32-in ($(BLD)/unexw32.$(O)): Depend on $(SRC)/unexec.h.
20147
20148 2011-03-17 Paul Eggert <eggert@cs.ucla.edu>
20149
20150 Fix more problems found by GCC 4.5.2's static checks.
20151
20152 * process.c (make_serial_process_unwind, send_process_trap):
20153 (sigchld_handler): Now static.
20154
20155 * process.c (allocate_pty): Let PTY_ITERATION declare iteration vars.
20156 That way, the code declares only the vars that it needs.
20157 * s/aix4-2.h (PTY_ITERATION): Declare iteration vars.
20158 * s/cygwin.h (PTY_ITERATION): Likewise.
20159 * s/darwin.h (PTY_ITERATION): Likewise.
20160 * s/gnu-linux.h (PTY_ITERATION): Likewise.
20161
20162 * s/irix6-5.h (PTY_OPEN): Declare stb, to loosen coupling.
20163 * process.c (allocate_pty): Don't declare stb unless it's needed.
20164
20165 * bytecode.c (MAYBE_GC): Rewrite so as not to use empty "else".
20166 (CONSTANTLIM): Remove; unused.
20167 (METER_CODE, Bscan_buffer, Bread_char, Bset_mark):
20168 Define only if needed.
20169
20170 * unexelf.c (unexec): Name an expression,
20171 to avoid gcc -Wbad-function-cast warning.
20172 Use a different way to cause a compilation error if anyone uses
20173 n rather than nn, a way that does not involve shadowing.
20174 (ELF_BSS_SECTION_NAME, OLD_PROGRAM_H): Remove; unused.
20175
20176 * deps.mk (unexalpha.o): Remove; unused.
20177
20178 New file unexec.h, the (simple) interface for unexec (Bug#8267).
20179 * unexec.h: New file.
20180 * deps.mk (emacs.o, unexaix.o, unexcw.o, unexcoff.o, unexelf.o):
20181 (unexhp9k800.o, unexmacosx.o, unexsol.o, unexw32.o):
20182 Depend on unexec.h.
20183 * emacs.c [!defined CANNOT_DUMP]: Include unexec.h.
20184 * unexaix.c, unexcoff.c, unexcw.c, unexelf.c, unexhp9k800.c:
20185 * unexmacosx.c, unexsol.c, unexw32.c: Include unexec.h.
20186 Change as necessary to match prototype in unexec.h.
20187
20188 * syntax.c (Fforward_comment, scan_lists): Rename locals to avoid
20189 shadowing.
20190 (back_comment, skip_chars): Mark vars as initialized.
20191
20192 * character.h (FETCH_STRING_CHAR_ADVANCE_NO_CHECK, BUF_INC_POS):
20193 Rename locals to avoid shadowing.
20194
20195 * lread.c (read1): Rewrite so as not to use empty "else".
20196 (Fload, readevalloop, read1): Rename locals to avoid shadowing.
20197
20198 * print.c (Fredirect_debugging_output): Fix pointer signedess.
20199
20200 * lisp.h (debug_output_compilation_hack): Add decl here, to avoid
20201 warning when compiling print.c.
20202
20203 * font.c (font_unparse_fcname): Abort in an "impossible" situation
20204 instead of using an uninitialized var.
20205 (font_sort_entities): Mark var as initialized.
20206
20207 * character.h (FETCH_CHAR_ADVANCE): Rename locals to avoid shadowing.
20208
20209 * font.c (font_unparse_xlfd): Don't mix pointers to variables with
20210 pointers to constants.
20211 (font_parse_fcname): Remove unused vars.
20212 (font_delete_unmatched): Now static.
20213 (font_get_spec): Remove; unused.
20214 (font_style_to_value, font_prop_validate_style, font_unparse_fcname):
20215 (font_update_drivers, Ffont_get_glyphs, font_add_log):
20216 Rename or move locals to avoid shadowing.
20217
20218 * fns.c (require_nesting_list, require_unwind): Now static.
20219 (Ffillarray): Rename locals to avoid shadowing.
20220
20221 * floatfns.c (domain_error2): Define only if needed.
20222 (Ffrexp, Fldexp): Rename locals to avoid shadowing.
20223
20224 * alloc.c (mark_backtrace): Move decl from here ...
20225 * lisp.h: ... to here, so that it can be checked.
20226
20227 * eval.c (call_debugger, do_debug_on_call, grow_specpdl): Now static.
20228 (Fdefvar): Rewrite so as not to use empty "else".
20229 (lisp_indirect_variable): Name an expression,
20230 to avoid gcc -Wbad-function-cast warning.
20231 (Fdefvar): Rename locals to avoid shadowing.
20232
20233 * callint.c (quotify_arg, quotify_args): Now static.
20234 (Fcall_interactively): Rename locals to avoid shadowing.
20235 Use const pointer when appropriate.
20236
20237 * lisp.h (get_system_name, get_operating_system_release):
20238 Move decls here, to check interfaces.
20239 * process.c (get_operating_system_release): Move decl to lisp.h.
20240 * xrdb.c (get_system_name): Likewise.
20241 * editfns.c (init_editfns, Fuser_login_name, Fuser_uid):
20242 (Fuser_real_uid, Fuser_full_name): Remove unnecessary casts,
20243 some of which prompt warnings from gcc -Wbad-function-cast.
20244 (Fformat_time_string, Fencode_time, Finsert_char):
20245 (Ftranslate_region_internal, Fformat):
20246 Rename or remove local vars to avoid shadowing.
20247 (Ftranslate_region_internal): Mark var as initialized.
20248
20249 * doc.c (Fdocumentation, Fsnarf_documentation): Move locals to
20250 avoid shadowing.
20251
20252 * lisp.h (eassert): Check that the argument compiles, even if
20253 ENABLE_CHECKING is not defined.
20254
20255 * data.c (Findirect_variable): Name an expression, to avoid
20256 gcc -Wbad-function-cast warning.
20257 (default_value, arithcompare, arith_driver, arith_error): Now static.
20258 (store_symval_forwarding): Rename local to avoid shadowing.
20259 (Fmake_variable_buffer_local, Fmake_local_variable):
20260 Mark variables as initialized.
20261 (do_blv_forwarding, do_symval_forwarding): Remove; unused.
20262
20263 * alloc.c (check_cons_list): Do not define unless GC_CHECK_CONS_LIST.
20264 (Fmake_vector, Fvector, Fmake_byte_code, Fgarbage_collect):
20265 Rename locals to avoid shadowing.
20266 (mark_stack): Move local variables into the #ifdef region where
20267 they're used.
20268 (BLOCK_INPUT_ALLOC, UNBLOCK_INPUT_ALLOC): Define only if
20269 ! defined SYSTEM_MALLOC && ! defined SYNC_INPUT, as they are not
20270 needed otherwise.
20271 (CHECK_ALLOCATED): Define only if GC_CHECK_MARKED_OBJECTS.
20272 (GC_STRING_CHARS): Remove; not used.
20273 (Fmemory_limit): Cast sbrk's returned value to char *.
20274
20275 * lisp.h (check_cons_list): Declare if GC_CHECK_CONS_LIST; this
20276 avoids undefined behavior in theory.
20277
20278 * regex.c (IF_LINT): Add defn, for benefit of ../lib-src.
20279
20280 Use functions, not macros, for up- and down-casing (Bug#8254).
20281 * buffer.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
20282 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Remove. All callers changed
20283 to use the following functions instead of these macros.
20284 (downcase): Adjust to lack of DOWNCASE_TABLE. Return int, not
20285 EMACS_INT, since callers assume the returned value fits in int.
20286 (upcase1): Likewise, for UPCASE_TABLE.
20287 (uppercasep, lowercasep, upcase): New static inline functions.
20288 * editfns.c (Fchar_equal): Remove no-longer-needed workaround for
20289 the race-condition problem in the old DOWNCASE.
20290
20291 * regex.c (CHARSET_LOOKUP_RANGE_TABLE_RAW, POP_FAILURE_REG_OR_COUNT):
20292 Rename locals to avoid shadowing.
20293 (regex_compile, re_match_2_internal): Move locals to avoid shadowing.
20294 (regex_compile, re_search_2, re_match_2_internal):
20295 Remove unused local vars.
20296 (FREE_VAR): Rewrite so as not to use empty "else",
20297 which gcc can warn about.
20298 (regex_compile, re_match_2_internal): Mark locals as initialized.
20299 (RETALLOC_IF): Define only if needed.
20300 (WORDCHAR_P): Likewise. This one is never needed, but is used
20301 only in a comment talking about a compiler bug, so put inside
20302 the #if 0 of that comment.
20303 (CHARSET_LOOKUP_BITMAP, FAIL_STACK_FULL, RESET_FAIL_STACK):
20304 (PUSH_FAILURE_ELT, BUF_PUSH_3, STOP_ADDR_VSTRING):
20305 Remove; unused.
20306
20307 * search.c (boyer_moore): Rename locals to avoid shadowing.
20308 * character.h (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE):
20309 (PREV_CHAR_BOUNDARY): Likewise.
20310
20311 * search.c (simple_search): Remove unused var.
20312
20313 * dired.c (compile_pattern): Move decl from here ...
20314 * lisp.h: ... to here, so that it can be checked.
20315 (struct re_registers): New forward decl.
20316
20317 * character.h (INC_POS, DEC_POS): Rename locals to avoid shadowing.
20318
20319 * indent.c (MULTIBYTE_BYTES_WIDTH): New args bytes, width.
20320 All uses changed.
20321 (MULTIBYTE_BYTES_WIDTH, scan_for_column, compute_motion):
20322 Rename locals to avoid shadowing.
20323 (Fvertical_motion): Mark locals as initialized.
20324
20325 * casefiddle.c (casify_object, casify_region): Now static.
20326 (casify_region): Mark local as initialized.
20327
20328 * cmds.c (internal_self_insert): Rename local to avoid shadowing.
20329
20330 * lisp.h (GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR, GCPRO6_VAR):
20331 New macros, so that the caller can use some names other than
20332 gcpro1, gcpro2, etc.
20333 (GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6): Reimplement in terms
20334 of the new macros.
20335 (GCPRO1_VAR, UNGCPRO_VAR): Change the meaning of the second
20336 argument, for consistency with GCPRO2_VAR, etc: it is now the
20337 prefix of the variable, not the variable itself. All uses
20338 changed.
20339 * dired.c (directory_files_internal, file_name_completion):
20340 Rename locals to avoid shadowing.
20341
20342 Fix a race condition diagnosed by gcc -Wsequence-point (Bug#8254).
20343 An expression of the form (DOWNCASE (x) == DOWNCASE (y)), found in
20344 dired.c's scmp function, had undefined behavior.
20345 * lisp.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
20346 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Move from here ...
20347 * buffer.h: ... to here, because these macros use current_buffer,
20348 and the new implementation with inline functions needs to have
20349 current_buffer in scope now, rather than later when the macros
20350 are used.
20351 (downcase, upcase1): New static inline functions.
20352 (DOWNCASE, UPCASE1): Reimplement using these functions.
20353 This avoids undefined behavior in expressions like
20354 DOWNCASE (x) == DOWNCASE (y), which previously suffered
20355 from race conditions in accessing the global variables
20356 case_temp1 and case_temp2.
20357 * casetab.c (case_temp1, case_temp2): Remove; no longer needed.
20358 * lisp.h (case_temp1, case_temp2): Remove their decls.
20359 * character.h (ASCII_CHAR_P): Move from here ...
20360 * lisp.h: ... to here, so that the inline functions mentioned
20361 above can use them.
20362
20363 * dired.c (directory_files_internal_unwind): Now static.
20364
20365 * fileio.c (file_name_as_directory, directory_file_name):
20366 (barf_or_query_if_file_exists, auto_save_error, auto_save_1):
20367 Now static.
20368 (file_name_as_directory): Use const pointers when appropriate.
20369 (Fexpand_file_name): Likewise. In particular, newdir might
20370 point at constant storage, so make it a const pointer.
20371 (Fmake_directory_internal, Fread_file_name): Remove unused vars.
20372 (Ffile_selinux_context, Fset_file_selinux_context): Fix pointer
20373 signedness issues.
20374 (Fset_file_times, Finsert_file_contents, auto_save_error):
20375 Rename locals to avoid shadowing.
20376
20377 * minibuf.c (choose_minibuf_frame_1): Now static.
20378 (Ftry_completion, Fall_completions): Rename or remove locals
20379 to avoid shadowing.
20380
20381 * marker.c (bytepos_to_charpos): Remove; unused.
20382
20383 * lisp.h (verify_bytepos, count_markers): New decls,
20384 so that gcc does not warn that these functions aren't declared.
20385
20386 * insdel.c (check_markers, make_gap_larger, make_gap_smaller):
20387 (reset_var_on_error, Fcombine_after_change_execute_1): Now static.
20388 (CHECK_MARKERS): Redo to avoid gcc -Wempty-body diagnostic.
20389 (copy_text): Remove unused local var.
20390
20391 * filelock.c (within_one_second): Now static.
20392 (lock_file_1): Rename local to avoid shadowing.
20393
20394 * buffer.c (fix_overlays_before): Mark locals as initialized.
20395 (fix_start_end_in_overlays): Likewise. This function should be
20396 simplified by using pointers-to-pointers, but that's a different
20397 matter.
20398 (switch_to_buffer_1): Now static.
20399 (Fkill_buffer, record_buffer, Fbury_buffer, Fset_buffer_multibyte):
20400 (report_overlay_modification): Rename locals to avoid shadowing.
20401
20402 * sysdep.c (system_process_attributes): Rename vars to avoid shadowing.
20403 Fix pointer signedness issue.
20404 (sys_subshell): Mark local as volatile if checking for lint,
20405 to suppress a gcc -Wclobbered warning that does not seem to be right.
20406 (MAXPATHLEN): Define only if needed.
20407
20408 * process.c (serial_open, serial_configure): Move decls from here ...
20409 * systty.h: ... to here, so that they can be checked.
20410
20411 * fns.c (get_random, seed_random): Move extern decls from here ...
20412 * lisp.h: ... to here, so that they can be checked.
20413
20414 * sysdep.c (reset_io): Now static.
20415 (wait_for_termination_signal): Remove; unused.
20416
20417 * keymap.c (keymap_parent, keymap_memberp, map_keymap_internal):
20418 (copy_keymap_item, append_key, push_text_char_description):
20419 Now static.
20420 (Fwhere_is_internal): Don't test CONSP (sequences) unnecessarily.
20421 (DENSE_TABLE_SIZE): Remove; unused.
20422 (get_keymap, access_keymap, Fdefine_key, Fwhere_is_internal):
20423 (describe_map_tree):
20424 Rename locals to avoid shadowing.
20425
20426 * keyboard.c: Declare functions static if they are not used elsewhere.
20427 (echo_char, echo_dash, cmd_error, top_level_2):
20428 (poll_for_input, handle_async_input): Now static.
20429 (read_char, kbd_buffer_get_event, make_lispy_position):
20430 (make_lispy_event, make_lispy_movement, apply_modifiers):
20431 (decode_keyboard_code, tty_read_avail_input, menu_bar_items):
20432 (parse_tool_bar_item, read_key_sequence, Fread_key_sequence):
20433 (Fread_key_sequence_vector): Rename locals to avoid shadowing.
20434 (read_key_sequence, read_char): Mark locals as initialized.
20435 (Fexit_recursive_edit, Fabort_recursive_edit): Mark with NO_RETURN.
20436
20437 * keyboard.h (make_ctrl_char): New decl.
20438 (mark_kboards): Move decl here ...
20439 * alloc.c (mark_kboards): ... from here.
20440
20441 * lisp.h (force_auto_save_soon): New decl.
20442
20443 * emacs.c (init_cmdargs): Rename local to avoid shadowing.
20444 (DEFINE_DUMMY_FUNCTION): New macro.
20445 (__do_global_ctors, __do_global_ctors_aux, __do_global_dtors, __main):
20446 Use it.
20447 (main): Add casts to avoid warnings
20448 if GCC considers string literals to be constants.
20449
20450 * lisp.h (fatal_error_signal): Add decl, since it's exported.
20451
20452 * dbusbind.c: Pointer signedness fixes.
20453 (xd_signature, xd_append_arg, xd_initialize):
20454 (Fdbus_call_method, Fdbus_call_method_asynchronously):
20455 (Fdbus_method_return_internal, Fdbus_method_error_internal):
20456 (Fdbus_send_signal, xd_read_message_1, Fdbus_register_service):
20457 (Fdbus_register_signal): Use SSDATA when the context wants char *.
20458
20459 * dbusbind.c (Fdbus_init_bus): Add cast to avoid warning
20460 if GCC considers string literals to be constants.
20461 (Fdbus_register_service, Fdbus_register_method): Remove unused vars.
20462
20463 2011-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
20464
20465 * print.c (PRINT_CIRCLE_CANDIDATE_P): New macro.
20466 (print_preprocess, print_object): New macro to fix last change.
20467
20468 * print.c (print_preprocess): Don't forget font objects.
20469
20470 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
20471
20472 * emacs.c (USAGE3): Doc fixes.
20473
20474 2011-03-15 Andreas Schwab <schwab@linux-m68k.org>
20475
20476 * coding.c (detect_coding_iso_2022): Reorganize code to clarify
20477 structure.
20478
20479 2011-03-14 Juanma Barranquero <lekktu@gmail.com>
20480
20481 * lisp.h (VWindow_system, Qfile_name_history):
20482 * keyboard.h (lispy_function_keys) [WINDOWSNT]:
20483 * w32term.h (w32_system_caret_hwnd, w32_system_caret_height)
20484 (w32_system_caret_x, w32_system_caret_y): Declare extern.
20485
20486 * w32select.c: Don't #include "keyboard.h".
20487 (run_protected): Add extern declaration for waiting_for_input.
20488
20489 * w32.c (Qlocal, noninteractive1, inhibit_window_system):
20490 * w32console.c (detect_input_pending, read_input_pending)
20491 (encode_terminal_code):
20492 * w32fns.c (quit_char, lispy_function_keys, Qtooltip)
20493 (w32_system_caret_hwnd, w32_system_caret_height, w32_system_caret_x)
20494 (w32_system_caret_y, Qfile_name_history):
20495 * w32font.c (w32font_driver, QCantialias, QCotf, QClang):
20496 * w32inevt.c (reinvoke_input_signal, lispy_function_keys):
20497 * w32menu.c (Qmenu_bar, QCtoggle, QCradio, Qoverriding_local_map)
20498 (Qoverriding_terminal_local_map, Qmenu_bar_update_hook):
20499 * w32proc.c (Qlocal, report_file_error):
20500 * w32term.c (Vwindow_system, updating_frame):
20501 * w32uniscribe.c (initialized, uniscribe_font_driver):
20502 Remove unneeded extern declarations.
20503
20504 2011-03-14 Chong Yidong <cyd@stupidchicken.com>
20505
20506 * buffer.c (Fmake_indirect_buffer): Fix incorrect assertions.
20507
20508 2011-03-13 Chong Yidong <cyd@stupidchicken.com>
20509
20510 * buffer.h (BUF_BEGV, BUF_BEGV_BYTE, BUF_ZV, BUF_ZV_BYTE, BUF_PT)
20511 (BUF_PT_BYTE): Rewrite to handle indirect buffers (Bug#8219).
20512 These macros can no longer be used for assignment.
20513
20514 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
20515 Assign struct members directly, instead of using BUF_BEGV etc.
20516 (record_buffer_markers, fetch_buffer_markers): New functions for
20517 recording and fetching special buffer markers.
20518 (set_buffer_internal_1, set_buffer_temp): Use them.
20519
20520 * lread.c (unreadchar): Use SET_BUF_PT_BOTH.
20521
20522 * insdel.c (adjust_point): Use SET_BUF_PT_BOTH.
20523
20524 * intervals.c (temp_set_point_both): Use SET_BUF_PT_BOTH.
20525 (get_local_map): Use SET_BUF_BEGV_BOTH and SET_BUF_ZV_BOTH.
20526
20527 * xdisp.c (hscroll_window_tree):
20528 (reconsider_clip_changes): Use PT instead of BUF_PT.
20529
20530 2011-03-13 Eli Zaretskii <eliz@gnu.org>
20531
20532 * makefile.w32-in ($(BLD)/editfns.$(O)): Depend on
20533 $(EMACS_ROOT)/lib/intprops.h.
20534
20535 2011-03-13 Paul Eggert <eggert@cs.ucla.edu>
20536
20537 Fix more problems found by GCC 4.5.2's static checks.
20538
20539 * gtkutil.c (xg_get_pixbuf_from_pixmap): Add cast from char *
20540 to unsigned char * to avoid compiler diagnostic.
20541 (xg_free_frame_widgets): Make it clear that a local variable is
20542 needed only if USE_GTK_TOOLTIP.
20543 (gdk_window_get_screen): Make it clear that this macro is needed
20544 only if USE_GTK_TOOLTIP.
20545 (int_gtk_range_get_value): New function, which avoids a diagnostic
20546 from gcc -Wbad-function-cast.
20547 (xg_set_toolkit_scroll_bar_thumb): Use it.
20548 (xg_tool_bar_callback, xg_tool_item_stale_p): Rewrite to avoid
20549 diagnostic from gcc -Wbad-function-cast.
20550 (get_utf8_string, xg_get_file_with_chooser):
20551 Rename locals to avoid shadowing.
20552 (create_dialog): Move locals to avoid shadowing.
20553
20554 * xgselect.c (xg_select): Remove unused var.
20555
20556 * image.c (four_corners_best): Mark locals as initialized.
20557 (gif_load): Initialize transparent_p to zero (Bug#8238).
20558 Mark another local as initialized.
20559 (my_png_error, my_error_exit): Mark with NO_RETURN.
20560
20561 * image.c (clear_image_cache): Now static.
20562 (DIM, HAVE_STDLIB_H_1): Remove unused macros.
20563 (xpm_load): Redo to avoid "discards qualifiers" gcc warning.
20564 (x_edge_detection): Remove unnecessary cast that
20565 gcc -Wbad-function-cast diagnoses.
20566 (gif_load): Fix pointer signedness.
20567 (clear_image_cache, xbm_read_bitmap_data, x_detect_edges):
20568 (jpeg_load, gif_load): Rename locals to avoid shadowing.
20569
20570 2011-03-12 Paul Eggert <eggert@cs.ucla.edu>
20571
20572 Improve quality of tests for time stamp overflow.
20573 For example, without this patch (encode-time 0 0 0 1 1
20574 1152921504606846976) returns the obviously-bogus value (-948597
20575 62170) on my RHEL 5.5 x86-64 host. With the patch, it correctly
20576 reports time overflow. See
20577 <http://lists.gnu.org/archive/html/emacs-devel/2011-03/msg00470.html>.
20578 * deps.mk (editfns.o): Depend on ../lib/intprops.h.
20579 * editfns.c: Include limits.h and intprops.h.
20580 (TIME_T_MIN, TIME_T_MAX): New macros.
20581 (time_overflow): Move earlier, to before first use.
20582 (hi_time, lo_time): New functions, for an accurate test for
20583 out-of-range times.
20584 (Fcurrent_time, Fget_internal_run_time, make_time): Use them.
20585 (Fget_internal_run_time): Don't assume time_t fits in int.
20586 (make_time): Use list2 instead of Fcons twice.
20587 (Fdecode_time): More accurate test for out-of-range times.
20588 (check_tm_member): New function.
20589 (Fencode_time): Use it, to test for out-of-range times.
20590 (lisp_time_argument): Don't rely on undefined left-shift and
20591 right-shift behavior when checking for time stamp overflow.
20592
20593 * editfns.c (time_overflow): New function, refactoring common code.
20594 (Fformat_time_string, Fdecode_time, Fencode_time):
20595 (Fcurrent_time_string): Use it.
20596
20597 Move 'make_time' to be next to its inverse 'lisp_time_argument'.
20598 * dired.c (make_time): Move to ...
20599 * editfns.c (make_time): ... here.
20600 * systime.h: Note the move.
20601
20602 2011-03-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20603
20604 * fringe.c (update_window_fringes): Remove unused variables.
20605
20606 * unexmacosx.c (copy_data_segment): Also copy __got section.
20607 (Bug#8223)
20608
20609 2011-03-12 Eli Zaretskii <eliz@gnu.org>
20610
20611 * termcap.c [MSDOS]: Include "msdos.h".
20612 (find_capability, tgetnum, tgetflag, tgetstr, tputs, tgetent):
20613 Constify `char *' arguments and their references according to
20614 prototypes in tparam.h.
20615
20616 * deps.mk (termcap.o): Depend on tparam.h and msdos.h.
20617
20618 * msdos.c (XMenuAddPane): 3rd argument is `const char *' now.
20619 Adapt all references accordingly.
20620
20621 * msdos.h (XMenuAddPane): 3rd argument is `const char *' now.
20622
20623 2011-03-11 Tom Tromey <tromey@redhat.com>
20624
20625 * buffer.c (syms_of_buffer): Remove obsolete comment.
20626
20627 2011-03-11 Eli Zaretskii <eliz@gnu.org>
20628
20629 * termhooks.h (encode_terminal_code): Declare prototype.
20630
20631 * msdos.c (encode_terminal_code): Don't declare prototype.
20632
20633 * term.c (encode_terminal_code): Now external again, used by
20634 w32console.c and msdos.c.
20635
20636 * makefile.w32-in ($(BLD)/term.$(O), ($(BLD)/tparam.$(O)):
20637 Depend on $(SRC)/tparam.h, see 2011-03-11T07:24:21Z!eggert@cs.ucla.edu.
20638
20639 2011-03-11 Paul Eggert <eggert@cs.ucla.edu>
20640
20641 Fix some minor problems found by GCC 4.5.2's static checks.
20642
20643 * fringe.c (update_window_fringes): Mark locals as initialized
20644 (Bug#8227).
20645 (destroy_fringe_bitmap, init_fringe_bitmap): Now static.
20646
20647 * alloc.c (mark_fringe_data): Move decl from here ...
20648 * lisp.h (mark_fringe_data) [HAVE_WINDOW_SYSTEM]: ... to here,
20649 to check its interface.
20650 (init_fringe_once): Do not declare unless HAVE_WINDOW_SYSTEM.
20651
20652 * fontset.c (free_realized_fontset): Now static.
20653 (Fset_fontset_font): Rename local to avoid shadowing.
20654 (fontset_font): Mark local as initialized.
20655 (FONTSET_SPEC, FONTSET_REPERTORY, RFONT_DEF_REPERTORY): Remove; unused.
20656
20657 * xrdb.c: Include "xterm.h", to check x_load_resources's interface.
20658
20659 * xselect.c (x_disown_buffer_selections): Remove; not used.
20660 (TRACE3) [!defined TRACE_SELECTION]: Remove; not used.
20661 (x_own_selection, Fx_disown_selection_internal): Rename locals
20662 to avoid shadowing.
20663 (x_handle_dnd_message): Remove local to avoid shadowing.
20664
20665 * lisp.h (GCPRO1_VAR, UNGCPRO_VAR): New macros,
20666 so that the caller can use some name other than gcpro1.
20667 (GCPRO1, UNGCPRO): Reimplement in terms of the new macros.
20668 * xfns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
20669 (Fx_backspace_delete_keys_p):
20670 Use them to avoid shadowing, and rename vars to avoid shadowing.
20671 (x_decode_color, x_set_name, x_window): Now static.
20672 (Fx_create_frame): Add braces to silence GCC warning.
20673 (Fx_file_dialog, Fx_select_font): Fix pointer signedness.
20674 (x_real_positions, xg_set_icon_from_xpm_data, x_create_tip_frame):
20675 Remove unused locals.
20676 (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
20677 (Fx_backspace_delete_keys_p): Rename locals to avoid shadowing.
20678 Some of these renamings use the new GCPRO1_VAR and UNGCPRO_VAR
20679 macros.
20680
20681 * xterm.h (x_mouse_leave): New decl.
20682
20683 * xterm.c (x_copy_dpy_color, x_focus_on_frame, x_unfocus_frame):
20684 Remove unused functions.
20685 (x_shift_glyphs_for_insert, XTflash, XTring_bell):
20686 (x_calc_absolute_position): Now static.
20687 (XTread_socket): Don't define label "out" unless it's used.
20688 Don't declare local "event" unless it's used.
20689 (x_iconify_frame, x_free_frame_resources): Don't declare locals
20690 unless they are used.
20691 (XEMBED_VERSION, xembed_set_info): Don't define unless needed.
20692 (x_fatal_error_signal): Remove; not used.
20693 (x_draw_image_foreground, redo_mouse_highlight, XTmouse_position):
20694 (x_scroll_bar_report_motion, handle_one_xevent, x_draw_bar_cursor):
20695 (x_error_catcher, x_connection_closed, x_error_handler):
20696 (x_error_quitter, xembed_send_message, x_iconify_frame):
20697 (my_log_handler): Rename locals to avoid shadowing.
20698 (x_delete_glyphs, x_ins_del_lines): Mark with NO_RETURN.
20699 (x_connection_closed): Tell GCC not to suggest NO_RETURN.
20700
20701 * xfaces.c (clear_face_cache, Fx_list_fonts, Fface_font):
20702 Rename or move locals to avoid shadowing.
20703 (tty_defined_color, merge_face_heights): Now static.
20704 (free_realized_faces_for_fontset): Remove; not used.
20705 (Fx_list_fonts): Mark variable that gcc -Wuninitialized
20706 does not deduce is never used uninitialized.
20707 (STRDUPA, LSTRDUPA, FONT_POINT_SIZE_QUANTUM): Remove; not used.
20708 (LFACEP): Define only if XASSERTS, as it's not needed otherwise.
20709
20710 * terminal.c (store_terminal_param): Now static.
20711
20712 * xmenu.c (menu_highlight_callback): Now static.
20713 (set_frame_menubar): Remove unused local.
20714 (xmenu_show): Rename parameter to avoid shadowing.
20715 (xmenu_show, xdialog_show, xmenu_show): Make local pointers "const"
20716 since they might point to immutable storage.
20717 (next_menubar_widget_id): Declare only if USE_X_TOOLKIT,
20718 since it's unused otherwise.
20719
20720 * xdisp.c (produce_glyphless_glyph): Initialize lower_xoff.
20721 Add a FIXME, since the code still doesn't look right. (Bug#8215)
20722 (Fcurrent_bidi_paragraph_direction): Simplify slightly; this
20723 avoids a gcc -Wuninitialized diagnostic.
20724 (display_line, BUILD_COMPOSITE_GLYPH_STRING, draw_glyphs):
20725 (note_mouse_highlight): Mark variables that gcc -Wuninitialized
20726 does not deduce are never used uninitialized.
20727
20728 * lisp.h (IF_LINT): New macro, copied from ../lib-src/emacsclient.c.
20729
20730 * xdisp.c (redisplay_window): Rename local to avoid shadowing.
20731 * window.c (window_loop, size_window):
20732 (run_window_configuration_change_hook, enlarge_window): Likewise.
20733
20734 * window.c (display_buffer): Now static.
20735 (size_window): Mark variables that gcc -Wuninitialized
20736 does not deduce are never used uninitialized.
20737 * window.h (check_all_windows): New decl, to forestall
20738 gcc -Wmissing-prototypes diagnostic.
20739 * dispextern.h (bidi_dump_cached_states): Likewise.
20740
20741 * charset.h (CHECK_CHARSET_GET_CHARSET): Rename locals to avoid
20742 shadowing.
20743 * charset.c (map_charset_for_dump, Fchar_charset): Likewise.
20744 Include <limits.h>.
20745 (Fsort_charsets): Redo min/max calculation to shorten the code a bit
20746 and to avoid gcc -Wuninitialized warning.
20747 (load_charset_map): Mark variables that gcc -Wuninitialized
20748 does not deduce are never used uninitialized.
20749 (load_charset): Abort instead of using uninitialized var (Bug#8229).
20750
20751 * coding.c (coding_set_source, coding_set_destination):
20752 Use "else { /* comment */ }" rather than "else /* comment */;"
20753 for clarity, and to avoid gcc -Wempty-body warning.
20754 (Fdefine_coding_system_internal): Don't redeclare 'i' inside
20755 a block, when the outer 'i' will do.
20756 (decode_coding_utf_8, decode_coding_utf_16, detect_coding_emacs_mule):
20757 (emacs_mule_char, decode_coding_emacs_mule, detect_coding_iso_2022):
20758 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5):
20759 (decode_coding_raw_text, decode_coding_charset, get_translation_table):
20760 (Fdecode_sjis_char, Fdefine_coding_system_internal):
20761 Rename locals to avoid shadowing.
20762 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
20763 * coding.c (emacs_mule_char, encode_invocation_designation):
20764 Now static, since they're not used elsewhere.
20765 (decode_coding_iso_2022): Add "default: abort ();" as a safety check.
20766 (decode_coding_object, encode_coding_object, detect_coding_system):
20767 (decode_coding_emacs_mule): Mark variables that gcc
20768 -Wuninitialized does not deduce are never used uninitialized.
20769 (detect_coding_iso_2022): Initialize a local variable that might
20770 be used uninitialized. Leave a FIXME because it's not clear that
20771 this initialization is needed. (Bug#8211)
20772 (ISO_CODE_LF, ISO_CODE_CR, CODING_ISO_FLAG_EUC_TW_SHIFT):
20773 (ONE_MORE_BYTE_NO_CHECK, UTF_BOM, UTF_16_INVALID_P):
20774 (SHIFT_OUT_OK, ENCODE_CONTROL_SEQUENCE_INTRODUCER):
20775 (ENCODE_DIRECTION_R2L, ENCODE_DIRECTION_L2R):
20776 Remove unused macros.
20777
20778 * category.c (hash_get_category_set): Remove unused local var.
20779 (copy_category_table): Now static, since it's not used elsewhere.
20780 * character.c (string_count_byte8): Likewise.
20781
20782 * ccl.c (CCL_WRITE_STRING, CCL_ENCODE_CHAR, Fccl_execute_on_string):
20783 (Fregister_code_conversion_map): Rename locals to avoid shadowing.
20784
20785 * chartab.c (copy_sub_char_table): Now static, since it's not used
20786 elsewhere.
20787 (sub_char_table_ref_and_range, char_table_ref_and_range):
20788 Rename locals to avoid shadowing.
20789 (ASET_RANGE, GET_SUB_CHAR_TABLE): Remove unused macros.
20790
20791 * bidi.c (bidi_check_type): Now static, since it's not used elsewhere.
20792 (BIDI_BOB): Remove unused macro.
20793
20794 * cm.c (cmgoto): Mark variables that gcc -Wuninitialized does not
20795 deduce are never used uninitialized.
20796 * term.c (encode_terminal_code): Likewise.
20797
20798 * term.c (encode_terminal_code): Now static. Remove unused local.
20799
20800 * tparam.h: New file.
20801 * term.c, tparam.h: Include it.
20802 * deps.mk (term.o, tparam.o): Depend on tparam.h.
20803 * term.c (tputs, tgetent, tgetflag, tgetnum, tparam, tgetstr):
20804 Move these decls to tparam.h, and make them agree with what
20805 is actually in tparam.c. The previous trick of using incompatible
20806 decls in different modules does not conform to the C standard.
20807 All callers of tparam changed to use tparam's actual API.
20808 * tparam.c (tparam1, tparam, tgoto):
20809 Use const pointers where appropriate.
20810
20811 * cm.c (calccost, cmgoto): Use const pointers where appropriate.
20812 * cm.h (struct cm): Likewise.
20813 * dispextern.h (do_line_insertion_deletion_costs): Likewise.
20814 * scroll.c (ins_del_costs, do_line_insertion_deletion_costs): Likewise.
20815 * term.c (tty_ins_del_lines, calculate_costs, struct fkey_table):
20816 (term_get_fkeys_1, append_glyphless_glyph, produce_glyphless_glyph):
20817 (turn_on_face, init_tty): Likewise.
20818 * termchar.h (struct tty_display_info): Likewise.
20819
20820 * term.c (term_mouse_position): Rename local to avoid shadowing.
20821
20822 * alloc.c (mark_ttys): Move decl from here ...
20823 * lisp.h (mark_ttys): ... to here, so that it's checked against defn.
20824
20825 2011-03-11 Andreas Schwab <schwab@linux-m68k.org>
20826
20827 * .gdbinit (pwinx, xbuffer): Fix access to buffer name.
20828
20829 2011-03-09 Juanma Barranquero <lekktu@gmail.com>
20830
20831 * search.c (compile_pattern_1): Remove argument regp, unused since
20832 revid:rms@gnu.org-19941211082627-3x1g1wyqkjmwloig.
20833 (compile_pattern): Don't pass it.
20834
20835 2011-03-08 Jan Djärv <jan.h.d@swipnet.se>
20836
20837 * xterm.h (DEFAULT_GDK_DISPLAY): New define.
20838 (GDK_WINDOW_XID, gtk_widget_get_preferred_size): New defines
20839 for ! HAVE_GTK3.
20840 (GTK_WIDGET_TO_X_WIN): Use GDK_WINDOW_XID.
20841
20842 * xmenu.c (menu_position_func): Call gtk_widget_get_preferred_size.
20843
20844 * gtkutil.c: Include gtkx.h if HAVE_GTK3. If ! HAVE_GTK3, define
20845 gdk_window_get_screen, gdk_window_get_geometry,
20846 gdk_x11_window_lookup_for_display and GDK_KEY_g.
20847 (xg_set_screen): Use DEFAULT_GDK_DISPLAY.
20848 (xg_get_pixbuf_from_pixmap): New function.
20849 (xg_get_pixbuf_from_pix_and_mask): Change parameters from GdkPixmap
20850 to Pixmap, take frame as parameter, remove GdkColormap parameter.
20851 Call xg_get_pixbuf_from_pixmap instead of
20852 gdk_pixbuf_get_from_drawable.
20853 (xg_get_image_for_pixmap): Do not make GdkPixmaps, call
20854 xg_get_pixbuf_from_pix_and_mask with Pixmap parameters instead.
20855 (xg_check_special_colors): Use GtkStyleContext and its functions
20856 for HAVE_GTK3.
20857 (xg_prepare_tooltip, xg_hide_tooltip): Call gdk_window_get_screen.
20858 (xg_prepare_tooltip, create_dialog, menubar_map_cb)
20859 (xg_update_frame_menubar, xg_tool_bar_detach_callback)
20860 (xg_tool_bar_attach_callback, xg_update_tool_bar_sizes):
20861 Call gtk_widget_get_preferred_size.
20862 (xg_frame_resized): gdk_window_get_geometry only takes 5
20863 parameters.
20864 (xg_win_to_widget, xg_event_is_for_menubar):
20865 Call gdk_x11_window_lookup_for_display.
20866 (xg_set_widget_bg): New function.
20867 (delete_cb): New function.
20868 (xg_create_frame_widgets): Connect delete-event to delete_cb.
20869 Call xg_set_widget_bg. Only set background pixmap for ! HAVE_GTK3
20870 (xg_set_background_color): Call xg_set_widget_bg.
20871 (xg_set_frame_icon): Call xg_get_pixbuf_from_pix_and_mask.
20872 (xg_create_scroll_bar): vadj is a GtkAdjustment for HAVE_GTK3.
20873 Only call gtk_range_set_update_policy if ! HAVE_GTK3.
20874 (xg_make_tool_item): Only connect xg_tool_bar_item_expose_callback
20875 if ! HAVE_GTK3.
20876 (update_frame_tool_bar): Call gtk_widget_hide.
20877 (xg_initialize): Use GDK_KEY_g.
20878
20879 * xsmfns.c (gdk_set_sm_client_id): Define to gdk_set_sm_client_id
20880 if ! HAVE_GTK3
20881 (x_session_initialize): Call gdk_x11_set_sm_client_id.
20882
20883 * xterm.c (XFillRectangle): Use cairo routines for HAVE_GTK3.
20884 (x_term_init): Disable Xinput(2) with GDK_CORE_DEVICE_EVENTS.
20885 Load ~/emacs.d/gtkrc only for ! HAVE_GTK3.
20886
20887 2011-03-08 Juanma Barranquero <lekktu@gmail.com>
20888
20889 * w32xfns.c (select_palette): Check success of RealizePalette against
20890 GDI_ERROR, not zero.
20891
20892 See ChangeLog.11 for earlier changes.
20893
20894 ;; Local Variables:
20895 ;; coding: utf-8
20896 ;; End:
20897
20898 Copyright (C) 2011-2012 Free Software Foundation, Inc.
20899
20900 This file is part of GNU Emacs.
20901
20902 GNU Emacs is free software: you can redistribute it and/or modify
20903 it under the terms of the GNU General Public License as published by
20904 the Free Software Foundation, either version 3 of the License, or
20905 (at your option) any later version.
20906
20907 GNU Emacs is distributed in the hope that it will be useful,
20908 but WITHOUT ANY WARRANTY; without even the implied warranty of
20909 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20910 GNU General Public License for more details.
20911
20912 You should have received a copy of the GNU General Public License
20913 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.