* lisp/cus-start.el (all): Add ns-use-native-fullscreen.
[bpt/emacs.git] / src / ChangeLog
1 2013-02-05 Jan Djärv <jan.h.d@swipnet.se>
2
3 * nsmenu.m (update_frame_tool_bar): Check for negative tool bar
4 height.
5
6 * nsterm.h (HAVE_NATIVE_FS): Define if OSX => 10.7.
7 (EmacsView): Add fs_is_native, fsIsNative, isFullscreen and
8 updateCollectionBehaviour.
9
10 * nsterm.m (NEW_STYLE_FS): Remove.
11 (ns_last_use_native_fullscreen): New variable.
12 (x_make_frame_visible): Replace NEW_STYLE_FS with isFullscreen.
13 (x_set_window_size): Do not take title bar and tool bar into account
14 if isFullscreen returns YES.
15 (ns_fullscreen_hook): Replace NEW_STYLE_FS with isFullscreen.
16 (check_native_fs): New function.
17 (ns_select, ns_read_socket): Call check_native_fs if HAVE_NATIVE_FS.
18 (ns_term_init): Remove NEW_STYLE_FS.
19 (updateFrameSize:, windowWillResize:toSize:): Only adjust for title bar
20 and tool bar if isFullscreen returns NO.
21 (windowDidResize:): Replace NEW_STYLE_FS with fsIsNative.
22 (initFrameFromEmacs:): Initialize fs_is_native. Replace NEW_STYLE_FS
23 with HAVE_NATIVE_FS.
24 (window:willUseFullScreenPresentationOptions:): New method.
25 (windowDidEnterFullScreen:): Replace NEW_STYLE_FS with fsIsNative.
26 Hide toolbar if not enabled (Bug#13444).
27 (windowDidExitFullScreen:): Call updateCollectionBehaviour.
28 Restore tool bar if enabled, hide it otherwise (Bug#13444).
29 (fsIsNative, isFullscreen, updateCollectionBehaviour): New methods.
30 (toggleFullScreen:): If fs_is_native, call toggleFullScreen on
31 window. Do no set FRAME_EXTERNAL_TOOL_BAR (f) to 0.
32 Check FRAME_EXTERNAL_TOOL_BAR (f) before restoring
33 FRAME_TOOLBAR_HEIGHT (f). Call updateFrameSize when going non-fs.
34 (syms_of_nsterm): Add ns-use-native-fullscreen.
35
36 2013-02-04 Paul Eggert <eggert@cs.ucla.edu>
37
38 * fileio.c (Qchoose_write_coding_system): Now static.
39
40 2013-02-04 Eli Zaretskii <eliz@gnu.org>
41
42 * xdisp.c (window_buffer_changed): region_showing can be negative,
43 which still means region is being displayed.
44 (redisplay_internal): Resurrect code that forced redisplay of the
45 whole window when showing region and the mark has changed. Record
46 the new mark position to allow redisplay optimizations.
47 (display_line): If it->region_beg_charpos is non-zero, set the
48 window's region_showing member to -1. (Bug#13623) (Bug#13626)
49
50 * window.h (struct window) <region_showing>: Declare ptrdiff_t,
51 not bitfield of 1 bit.
52
53 2013-02-03 Daniel Colascione <dancol@dancol.org>
54
55 * emacs.c: Use execvp, not execv, when DAEMON_MUST_EXEC, so that
56 daemon mode works on cygw32 when Emacs is installed and not just
57 during development.
58
59 2013-02-02 Paul Eggert <eggert@cs.ucla.edu>
60
61 Avoid file time stamp bug on MS-Windows (Bug#13149).
62 * fileio.c (Fwrite_region): Don't use the heuristic on empty files,
63 as FAT32 doesn't update time stamps when truncating them.
64 Also, check that a file time stamp is not a multiple of 100 ns;
65 this should catch all instances of the problem on MS-Windows,
66 as its native file system resolution is 100 ns or worse, and
67 checking for a non-multiple of 100 ns should impose only a small
68 overhead on systems with ns resolution.
69
70 2013-02-02 Eli Zaretskii <eliz@gnu.org>
71
72 Avoid encoding file names on MS-Windows when they need to be run
73 through dostounix_filename.
74 * w32.c (normalize_filename): Accept an additional argument
75 MULTIBYTE; if non-zero, traverse the file name by bytes and don't
76 downcase it even if w32-downcase-file-names is non-nil.
77 (dostounix_filename): Accept an additional argument MULTIBYTE and
78 pass it to normalize_filename.
79 (emacs_root_dir): Adjust.
80
81 * msdos.h (dostounix_filename): Adjust prototype.
82
83 * w32.h (dostounix_filename): Adjust prototype.
84
85 * msdos.c (dostounix_filename): Accept an additional argument and
86 ignore it.
87 (init_environment): Adjust callers of dostounix_filename.
88
89 * fileio.c (Ffile_name_directory, file_name_as_directory)
90 (directory_file_name, Fexpand_file_name)
91 (Fsubstitute_in_file_name): [DOS_NT] Adjust call to
92 dostounix_filename.
93 [WINDOWSNT]: Downcase file names if w32-downcase-file-names is
94 non-nil.
95 (Fsubstitute_in_file_name): [DOS_NT] Don't downcase environment
96 variables, as egetenv is case-insensitive for DOS_NT.
97
98 * dired.c (file_name_completion): Don't call Fdirectory_file_name
99 with an encoded file name.
100
101 * w32proc.c (Fw32_short_file_name, Fw32_long_file_name): Adjust
102 calls to dostounix_filename.
103
104 * w32fns.c (Fx_file_dialog): Adjust call to dostounix_filename.
105
106 * unexw32.c (unexec): Adjust call to dostounix_filename.
107
108 * termcap.c (tgetent) [MSDOS]: Adjust call to dostounix_filename.
109
110 * emacs.c (decode_env_path) [DOS_NT]: Adjust call to
111 dostounix_filename.
112
113 * callproc.c (Fcall_process) [MSDOS]: Adjust call to
114 dostounix_filename.
115
116 * callproc.c (Fcall_process): Make sure program name in PATH and
117 new_argv[0] is encoded, if needed. Otherwise, un-encoded string
118 is passed to exec/spawnve, which fails unless the file-name
119 encoding is UTF-8.
120
121 * w32proc.c (sys_spawnve): Make sure escape_char is initialized,
122 even if w32-quote-process-args is nil.
123
124 2013-02-01 Paul Eggert <eggert@cs.ucla.edu>
125
126 Fix timestamp bug when write-region appends nothing (Bug#13149).
127 * fileio.c (Fwrite_region): When neither O_EXCL nor O_TRUNC is used,
128 the file's time stamp doesn't change if Emacs happens to write nothing
129 to the file, and on a buggy file system this could cause Emacs to
130 incorrectly infer that the file system doesn't have the bug.
131 Avoid this problem by inhibiting the inference in this case.
132
133 2013-02-01 Dmitry Antipov <dmantipov@yandex.ru>
134
135 * window.h (struct window): Convert base_line_number, base_line_pos
136 and column_number_displayed members from Lisp_Object to ptrdiff_t.
137 Convert region_showing member from Lisp_Object to bitfield.
138 Remove sequence_number member. Adjust comments.
139 * window.c (sequence_number): Remove.
140 (make_window): Initialize column_number_displayed.
141 * print.c (print_object): Follow the printed representation of
142 frames and print window pointer to distinguish between windows.
143 (adjust_window_count): Invalidate base_line_pos. Adjust comment.
144 * xdisp.c (wset_base_line_number, wset_base_line_pos)
145 (wset_column_number_displayed, wset_region_showing): Remove.
146 (window_buffer_changed, mode_line_update_needed, redisplay_internal)
147 (try_scrolling, try_cursor_movement, redisplay_window)
148 (try_window_reusing_current_matrix, try_window_id, display_line)
149 (display_mode_lines, decode_mode_spec): Adjust users.
150 * .gdbinit (pwinx): Do not print sequence_number.
151
152 2013-02-01 Paul Eggert <eggert@cs.ucla.edu>
153
154 Use fdopendir, fstatat and readlinkat, for efficiency (Bug#13539).
155 * conf_post.h (GNULIB_SUPPORT_ONLY_AT_FDCWD): Remove.
156 * dired.c: Include <fcntl.h>.
157 (open_directory): New function, which uses open and fdopendir
158 rather than opendir. DOS_NT platforms still use opendir, though.
159 (directory_files_internal, file_name_completion): Use it.
160 (file_attributes): New function, with most of the old Ffile_attributes.
161 (directory_files_internal, Ffile_attributes): Use it.
162 (file_attributes, file_name_completion_stat): First arg is now fd,
163 not dir name. All uses changed. Use fstatat rather than lstat +
164 stat.
165 (file_attributes): Use emacs_readlinkat rather than Ffile_symlink_p.
166 * fileio.c: Include <allocator.h>, <careadlinkat.h>.
167 (emacs_readlinkat): New function, with much of the old
168 Ffile_symlink_p, but with an fd argument for speed.
169 It uses readlinkat rather than careadlinkatcwd, so that it
170 need not assume the working directory.
171 (Ffile_symlink_p): Use it.
172 * filelock.c (current_lock_owner): Use emacs_readlinkat
173 rather than emacs_readlink.
174 * lisp.h (emacs_readlinkat): New decl.
175 (READLINK_BUFSIZE, emacs_readlink): Remove.
176 * sysdep.c: Do not include <allocator.h>, <careadlinkat.h>.
177 (emacs_norealloc_allocator, emacs_readlink): Remove.
178 This stuff is moved to fileio.c.
179 * w32.c (fstatat, readlinkat): New functions.
180 (careadlinkat): Don't check that fd == AT_FDCWD.
181 (careadlinkatcwd): Remove; no longer needed.
182
183 2013-01-31 Glenn Morris <rgm@gnu.org>
184
185 * fileio.c (choose_write_coding_system): Make it callable from Lisp.
186 (Fwrite_region): Update for new choose_write_coding_system args.
187 Move the last piece of choose_write_coding_system here. (Bug#13522)
188 (syms_of_fileio): Add choose-write-coding-system.
189
190 2013-01-30 Eli Zaretskii <eliz@gnu.org>
191
192 * w32.c (sys_open): Zero out the flags for the new file descriptor.
193 (sys_close): Zero out the flags for the file descriptor before
194 closing it. (Bug#13546)
195
196 * w32.c (parse_root, get_volume_info, readdir, read_unc_volume)
197 (logon_network_drive, stat_worker, symlink, chase_symlinks): Use
198 CharNextExA and CharPrevExA to iterate over file names encoded in
199 DBCS. (Bug#13553)
200
201 * w32.c (w32_get_long_filename, init_environment, readlink):
202 Support file names encoded in DBCS codepages.
203 (readlink): Use the current file-name-coding-system, not the ANSI
204 codepage, to decode and handle targets of symlinks.
205
206 2013-01-28 Eli Zaretskii <eliz@gnu.org>
207
208 * w32.c (opendir): Now accepts a 'const char *'.
209
210 2013-01-28 Dmitry Antipov <dmantipov@yandex.ru>
211
212 Remove obsolete redisplay code. See the discussion at
213 http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00576.html.
214 * dispnew.c (preemption_period, preemption_next_check): Remove.
215 (Vredisplay_preemption_period): Likewise.
216 (update_frame, update_single_window, update_window, update_frame_1):
217 Adjust users. Always assume that PERIODIC_PREEMPTION_CHECKING is not
218 used, following the 2012-06-22 change.
219
220 2013-01-25 Eli Zaretskii <eliz@gnu.org>
221
222 * w32notify.c (Fw32notify_add_watch): Doc fix. (Bug#13540)
223
224 2013-01-25 Dmitry Antipov <dmantipov@yandex.ru>
225
226 * font.c (num_fonts): Remove the leftover from old
227 debugging code. Adjust comment style here and there.
228 * insdel.c (insert_1): Remove.
229 * lisp.h (insert_1): Remove prototype.
230 * xdisp.c (message_dolog): Adjust users to call insert_1_both.
231
232 2013-01-25 Eli Zaretskii <eliz@gnu.org>
233
234 * w32.c (max_filename_mbslen): New function.
235 (normalize_filename, readdir): Use it to detect locales where ANSI
236 encoding of file names uses a double-byte character set (DBCS).
237 If a DBCS encoding is used, advance by characters using
238 CharNextExA, instead of incrementing a 'char *' pointer. Use
239 _mbslwr instead of _strlwr. (Bug#13515)
240
241 * w32heap.c (allocate_heap) [!_WIN64]: Decrease the initial
242 request of memory reservation to 1.7GB. (Bug#13065)
243
244 2013-01-25 Andreas Schwab <schwab@linux-m68k.org>
245
246 * coding.c (detect_coding_iso_2022): Move back mis-reordered code
247 at check_extra_latin label. (Bug#13505)
248
249 2013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
250
251 * nsfont.m (ns_escape_name, ns_unescape_name, ns_registry_to_script):
252 Avoid redundant calls to strlen.
253
254 2013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
255
256 Drop async_visible and async_iconified fields of struct frame.
257 This is possible because async input is gone; for details, see
258 http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00734.html.
259 * frame.h (struct frame): Remove async_visible and async_iconified
260 members, convert garbaged to unsigned bitfield. Adjust comments.
261 (FRAME_SAMPLE_VISIBILITY): Remove. Adjust all users.
262 (SET_FRAME_VISIBLE, SET_FRAME_ICONIFIED): New macros.
263 * frame.c, gtkutil.c, term.c, w32fns.c, window.c, xdisp.c:
264 Consistently use SET_FRAME_VISIBLE, SET_FRAME_ICONIFIED,
265 FRAME_VISIBLE_P and FRAME_ICONIFIED_P macros where appropriate.
266 * w32term.c: Ditto.
267 (w32_read_socket): Save iconified state to generate DEICONIFY_EVENT
268 properly. Likewise for obscured.
269 * xterm.c: Ditto.
270 (handle_one_xevent): Save visible state to generate ICONIFY_EVENT
271 properly.
272 * nsterm.m: Ditto.
273 (windowDidDeminiaturize): Generate DEICONIFY_EVENT.
274
275 2013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
276
277 * insdel.c (prepare_to_modify_buffer): Revert last change as suggested
278 in http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00555.html.
279
280 2013-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
281
282 * xdisp.c (message2, message2_nolog): Remove functions.
283 (message3, message3_nolog): Extract nbytes and multibyteness directly
284 from the string. Change all callers.
285 (message3_nolog): Don't set message_enable_multibyte since set_message
286 will reset it anyway.
287 (message1, message1_nolog): Use message3.
288 (vmessage): Use a stack allocated buffer rather than f->message_buf.
289 (with_echo_area_buffer): Remove last two arguments. Update all callers.
290 (set_message): Drop all but the second arg, which has to be a string.
291 (set_message_1): Simplify now that we know that a1 is NULL and the
292 second arg is a string.
293 * frame.h (struct frame): Remove `message_buf' field.
294 Use glyphs_initialized_p instead.
295 (FRAME_MESSAGE_BUF): Remove macro.
296 * w16select.c (Fw16_set_clipboard_data): Prefer message3 to message2.
297 * lisp.h (message2, message2_nolog): Remove declarations.
298 (message3, message3_nolog): Update declarations.
299 * keyboard.c (read_char_minibuf_menu_text)
300 (read_char_minibuf_menu_width): Remove vars.
301 (read_char_minibuf_menu_prompt): Rewrite the menu's construction so as
302 to correctly handle multibyte strings.
303 * frame.c (delete_frame): Don't free message_buf any more.
304 * editfns.c (message_text, message_length): Remove vars.
305 (Fmessage_box): Don't copy the Lisp string's bytes any longer.
306 * fileio.c (auto_save_error): Use message3 instead of message2.
307 * dispnew.c (adjust_frame_message_buffer): Remove function.
308
309 2013-01-23 Eli Zaretskii <eliz@gnu.org>
310
311 * w32term.c (w32fullscreen_hook): Account correctly for the screen
312 real estate used for the tool bar and the menu bar.
313
314 2013-01-23 Dmitry Antipov <dmantipov@yandex.ru>
315
316 * insdel.c (prepare_to_modify_buffer): Force redisplay if
317 hidden buffer is prepared to modification (Bug#13164).
318
319 2013-01-22 Dmitry Antipov <dmantipov@yandex.ru>
320
321 * window.h (struct window): Change window_end_valid member from
322 Lisp_Object to a bitfield. Adjust comments.
323 (wset_window_end_valid): Remove.
324 * window.c (adjust_window_count): Clear window_end_valid.
325 (Fwindow_end): Adjust user. Remove ancient #if 0 code.
326 (Fwindow_line_height, set_window_buffer, Frecenter)
327 (Fsplit_window_internal, Fdelete_other_windows_internal)
328 (Fset_window_fringes, Fset_window_scroll_bars): Adjust users.
329 * dispnew.c (adjust_glyph_matrix, clear_window_matrices): Likewise.
330 * xdisp.c (check_window_end, reconsider_clip_changes)
331 (redisplay_internal, mark_window_display_accurate_1, redisplay_window)
332 (try_window, try_window_reusing_current_matrix, note_mouse_highlight)
333 (find_first_unchanged_at_end_row, try_window_id): Likewise.
334
335 2013-01-22 Dmitry Antipov <dmantipov@yandex.ru>
336
337 * xdisp.c (mark_window_display_accurate): Simplify the loop
338 assuming that the only one of vchild, hchild or buffer window
339 slots is non-nil. Call mark_window_display_accurate_1 for
340 the leaf windows only.
341 (mark_window_display_accurate_1): Always assume leaf window.
342 Adjust comment.
343
344 2013-01-22 Paul Eggert <eggert@cs.ucla.edu>
345
346 * emacs.c (Qkill_emacs_hook): Now static.
347
348 * fileio.c (Finsert_file_contents): Simplify.
349 Remove unnecessary assignments and tests.
350
351 2013-01-21 Eli Zaretskii <eliz@gnu.org>
352
353 * w32.c (acl_set_file): Don't test for errors unless
354 set_file_security returns FALSE. Avoids spurious errors when
355 saving files.
356
357 2013-01-21 Dmitry Antipov <dmantipov@yandex.ru>
358
359 * fileio.c (Finsert_file_contents): Revert code introduced at
360 2013-01-18 in favor of the simpler and generally better fix.
361 Save stack space by removing 'buffer' and reusing 'read_buf'
362 where appropriate.
363
364 2013-01-19 Paul Eggert <eggert@cs.ucla.edu>
365
366 * lisp.h (eabs): Define unconditionally (Bug#13419).
367 The old "#if !defined (eabs)" was an unnecessary revenant of back
368 when this macro was called "abs". Document 'eabs' better.
369
370 2013-01-19 Glenn Morris <rgm@gnu.org>
371
372 * fns.c (Frandom): Doc fix.
373
374 2013-01-19 Eli Zaretskii <eliz@gnu.org>
375
376 * editfns.c (get_pos_property): Use SAFE_ALLOCA_LISP, to avoid
377 segfault when there are lots of overlays.
378
379 * buffer.c (sort_overlays): Use SAFE_NALLOCA, to avoid segfault
380 when there are lots of overlays. See
381 http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00421.html
382 for the details and a way to reproduce.
383
384 2013-01-19 Paul Eggert <eggert@cs.ucla.edu>
385
386 * fileio.c: Use O_APPEND to append.
387 This corresponds better to the natural interpretation of "append",
388 and avoids the need to open the output file twice, or to invoke
389 lseek when APPEND is neither nil nor a number.
390 This relies on POSIX 1003.1-1988 or later, which is OK nowadays.
391 (Fwrite_region): Simplify. Use O_APPEND instead of opening the
392 file possibly twice, and lseeking to its end; this avoids the
393 need to lseek on non-regular files. Do not use O_EXCL and O_TRUNC
394 at the same time: the combination is never needed and apparently
395 it doesn't work with DOS_NT.
396
397 Fix size bug on DOS_NT introduced by CIFS workaround (Bug#13149).
398 * fileio.c (Fwrite_region): Use O_BINARY in checking code, too.
399
400 Allow floating-point file offsets.
401 Problem reported by Vitalie Spinu in
402 <http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00411.html>.
403 * fileio.c (emacs_lseek): Remove.
404 (file_offset): New function.
405 (Finsert_file_contents, Fwrite_region): Use it.
406
407 2013-01-19 Chong Yidong <cyd@gnu.org>
408
409 * emacs.c (Fkill_emacs): Set waiting_for_input to 0 to avoid
410 aborting on Fsignal (Bug#13289).
411
412 2013-01-19 Eli Zaretskii <eliz@gnu.org>
413
414 * w32.c (acl_set_file): Treat ERROR_ACCESS_DENIED from
415 set_file_security as failure due to insufficient privileges.
416 Reported by Fabrice Popineau <fabrice.popineau@supelec.fr>.
417 (fstat): Return owner and group like 'stat' and 'lstat' do.
418
419 2013-01-19 Paul Eggert <eggert@cs.ucla.edu>
420
421 Work around bug in CIFS and vboxsf file systems (Bug#13149).
422 The bug was observed on Ubuntu operating inside a virtual machine,
423 editing files mounted via CIFS or vboxsf from the MS Windows 7 host.
424 The workaround introduces a race condition on non-buggy hosts,
425 but it's an unlikely race and anyway there's a nearly identical
426 nearby race that can't be fixed.
427 * fileio.c (valid_timestamp_file_system, timestamp_file_system):
428 New static vars.
429 (Fwrite_region): Test for file system time stamp bug.
430 (init_fileio): New function.
431 * lisp.h (init_fileio): Declare it.
432 * emacs.c (main): Call it.
433
434 * fileio.c (Finsert_file_contents): Simplify new diagnostic
435 and make it more consistent with other stat-failure diagnostics.
436
437 2013-01-18 Dmitry Antipov <dmantipov@yandex.ru>
438
439 Fix crash when inserting data from non-regular files. See
440 http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00406.html
441 for the error description produced by valgrind.
442 * fileio.c (read_non_regular): Rename to read_contents.
443 Free Lisp_Save_Value object used to pass parameters.
444 (read_non_regular_quit): Rename to read_contents_quit.
445 (Finsert_file_contents): Redesign internal file reading loop to adjust
446 gap and end positions after each read and so help make_gap to work
447 properly. Do not signal an I/O error too early and so do not leave
448 not yet decoded characters in a buffer, which was the reason of
449 redisplay crash. Use list2 to build return value. Adjust comments.
450
451 2013-01-17 Paul Eggert <eggert@cs.ucla.edu>
452
453 Close a race when statting and reading files (Bug#13149).
454 * fileio.c (Finsert_file_contents): Use open+fstat, not stat+open.
455 This avoids a race if the file is renamed between stat and open.
456 This race is not the problem originally noted in Bug#13149;
457 see <http://bugs.gnu.org/13149#73> and later messages in the thread.
458
459 2013-01-17 Dmitry Antipov <dmantipov@yandex.ru>
460
461 * lisp.h (toplevel): Add comment about using Lisp_Save_Value
462 objects, related functions and macros.
463 (make_save_value): Adjust prototype.
464 (make_save_pointer): New prototype.
465 (SAFE_NALLOCA): Fix indentation. Use make_save_pointer.
466 (SAFE_ALLOCA_LISP): Adjust make_save_value usage.
467 * alloc.c (format_save_value): Rename to make_save_value.
468 (make_save_pointer): New function.
469 (record_xmalloc): Use make_save_pointer.
470 * dired.c, editfns.c, fileio.c, font.c, gtkutil.c, lread.c:
471 * nsmenu.m, nsterm.m, xfns.c, xmenu.c, xselect.c, keymap.c:
472 Change users of make_save_value to make_save_pointer.
473 Likewise for format_save_value and make_save_value.
474
475 2013-01-17 Dmitry Antipov <dmantipov@yandex.ru>
476
477 * buffer.h (NARROWED, BUF_NARROWED): Drop unused macros.
478 (DECODE_POSITION, BUFFER_CHECK_INDIRECTION): Fix indentation.
479 * buffer.c (toplevel, syms_of_buffer): Drop old commented-out
480 debugging stubs.
481
482 2013-01-15 Paul Eggert <eggert@cs.ucla.edu>
483
484 * alloc.c (free_save_value): Now static.
485
486 2013-01-15 Dmitry Antipov <dmantipov@yandex.ru>
487
488 * keymap.c (map_keymap_internal): Use format_save_value.
489 (map_keymap_char_table_item): Adjust accordingly.
490 * fileio.c (non_regular_fd, non_regular_inserted)
491 (non_regular_nbytes): Remove.
492 (Finsert_file_contents): Convert trytry to ptrdiff_t. Use
493 format_save_value to pass parameters to read_non_regular.
494 (read_non_regular): Use XSAVE_ macros to extract parameters.
495 Adjust comment.
496 * xmenu.c (xmenu_show) [!USE_X_TOOLKIT && !USE_GTK]: Use
497 format_save_value.
498 (pop_down_menu) [!USE_X_TOOLKIT && !USE_GTK]: Adjust user.
499
500 2013-01-15 Dmitry Antipov <dmantipov@yandex.ru>
501
502 * lisp.h (XSAVE_POINTER, XSAVE_INTEGER): Change to allow
503 extraction from any Lisp_Save_Value slot. Add type checking.
504 * alloc.c, dired.c, editfns.c, fileio.c, ftfont.c, gtkutil.c:
505 * keymap.c, lread.c, nsterm.h, nsmenu.c, xfns.c, xmenu.c:
506 * xselect.c: All users changed.
507
508 2013-01-15 Dmitry Antipov <dmantipov@yandex.ru>
509
510 Some convenient bits to deal with Lisp_Save_Values.
511 * lisp.h (XSAVE_OBJECT): New macro to extract saved objects.
512 (allocate_misc): Remove prototype.
513 (format_save_value): New prototype.
514 * alloc.c (allocate_misc): Revert back to static.
515 (format_save_value): New function to build Lisp_Save_Value
516 object with the specified internal structure.
517 (make_save_value): Reimplement using format_save_value.
518 * editfns.c (save_excursion_save): Use format_save_value.
519 (save_excursion_restore): Use XSAVE_OBJECT.
520
521 2013-01-14 Paul Eggert <eggert@cs.ucla.edu>
522
523 Avoid needless casts with XSAVE_POINTER.
524 * alloc.c (mark_object) [GC_MARK_STACK]:
525 * dired.c (directory_files_internal_unwind):
526 * fileio.c (do_auto_save_unwind):
527 * gtkutil.c (pop_down_dialog):
528 * keymap.c (map_keymap_char_table_item):
529 * lread.c (load_unwind):
530 * nsmenu.m (pop_down_menu):
531 * print.c (print_object) [GC_MARK_STACK]:
532 * xfns.c (clean_up_file_dialog):
533 * xmenu.c (cleanup_widget_value_tree):
534 Omit casts between XSAVE_POINTER and a pointer type.
535
536 2013-01-14 Dmitry Antipov <dmantipov@yandex.ru>
537
538 Fix compilation with GC_MARK_STACK == GC_USE_GCPROS_AS_BEFORE.
539 * eval.c (eval_sub): Protect `form' from being GCed before its
540 car and cdr becomes protected with the backtrace entry.
541
542 2013-01-14 Dmitry Antipov <dmantipov@yandex.ru>
543
544 Make Lisp_Save_Value more versatile storage for up to four objects.
545 * lisp.h (toplevel): Enumeration to describe types of saved objects.
546 (struct Lisp_Save_Value): New layout. Adjust comments.
547 (XSAVE_POINTER): New macro.
548 (XSAVE_INTEGER): Likewise.
549 (allocate_misc): Add prototype.
550 (free_misc): Likewise.
551 * alloc.c (allocate_misc): Now global.
552 (free_misc): Likewise. Adjust comment.
553 (make_save_value): Use new Lisp_Save_Value layout. Adjust comment.
554 (free_save_value): Likewise.
555 (mark_object): Likewise.
556 * editfns.c (save_excursion_save): Pack everything within
557 Lisp_Save_Value and so avoid xmalloc.
558 (save_excursion_restore): Adjust to match new layout. Use free_misc
559 because we do not allocate extra memory any more. Add eassert.
560 * print.c (print_object): New code to print Lisp_Save_Value. Do not
561 rely on valid_lisp_object_p if !GC_MARK_STACK. Adjust comments.
562 * dired.c, fileio.c, font.c, ftfont.c, gtkutil.c, keymap.c,
563 * lread.c, nsmenu.m, nsterm.h, xfns.c, xmenu.c, xselect.c:
564 Use XSAVE_POINTER and XSAVE_INTEGER where appropriate.
565
566 2013-01-13 Jan Djärv <jan.h.d@swipnet.se>
567
568 * nsfont.m (LCD_SMOOTHING_MARGIN): New define.
569 (nsfont_draw): Remove disabling of LCD smoothing.
570 (ns_glyph_metrics): Add LCD_SMOOTHING_MARGIN to bearings to fix
571 Bug#11484 with LCD smoothing on.
572
573 2013-01-13 Paul Eggert <eggert@cs.ucla.edu>
574
575 Fix SIGDANGER handlers, for AIX (Bug#13408).
576 * sysdep.c.c (handle_danger_signal, deliver_danger_signal) [SIGDANGER]:
577 Move handlers here from emacs.c; they were out of place.
578
579 2013-01-11 Jan Djärv <jan.h.d@swipnet.se>
580
581 * xterm.c (syms_of_xterm): Adjust documentation for
582 scroll-bar-adjust-thumb-portion.
583
584 2012-12-31 Adam Sjøgren <asjo@koldfront.dk> (tiny change)
585
586 * xterm.c (scroll-bar-adjust-thumb-portion): New variable to
587 determine whether scroll bar thumb size should be adjusted or
588 not. Use variable for MOTIF.
589
590 * gtkutil.c (scroll-bar-adjust-thumb-portion): Use variable for
591 GTK.
592
593 2013-01-13 Jan Djärv <jan.h.d@swipnet.se>
594
595 * nsterm.m (keyDown:): Set processingCompose to NO if an emacs key
596 event is generated.
597 (doCommandBySelector:): Set processingCompose to NO.
598
599 * nsfont.m (ns_findfonts): Add block/unblock_input calls.
600 Remove check for fkeys count > zero, block/unblock fixes the real bug.
601 (nsfont_list_family): Add block/unblock_input calls.
602 (nsfont_open): Move block_input earlier. Add unblock_input before early
603 return.
604 (nsfont_draw): Add block/unblock_input calls.
605
606 2013-01-12 Dmitry Antipov <dmantipov@yandex.ru>
607
608 * indent.c (Fvertical_motion): Remove now-incorrect GCPROs
609 for old_charpos and old_bytepos.
610
611 2013-01-12 Paul Eggert <eggert@cs.ucla.edu>
612
613 Fix bug with set-time-zone-rule and LOCALTIME_CACHE (Bug#13415).
614 * editfns.c (set_time_zone_rule) [LOCALTIME_CACHE]:
615 Clear tzvalbuf_in_environ if this workaround is in effect.
616 Problem and fix reported by Kazuhiro Ito.
617
618 2013-01-11 Aaron S. Hawley <Aaron.Hawley@vtinfo.com>
619
620 * insdel.c (Fcombine_after_change_execute, syms_of_insdel): Fix
621 ambiguous doc string cross-reference(s).
622
623 * keyboard.c (Fcommand_execute, syms_of_keyboard): Fix ambiguous
624 doc string cross-reference(s).
625
626 * window.c (Fwindow_point, syms_of_window): Fix ambiguous doc
627 string cross-reference(s).
628
629 2013-01-11 Dmitry Antipov <dmantipov@yandex.ru>
630
631 Avoid unnecessary byte position calculation for the gap movement.
632 Since all users of move_gap do CHAR_TO_BYTE for other purposes
633 anyway, all of them should use move_gap_both instead.
634 * lisp.h (move_gap): Remove prototype.
635 * insdel.c (move_gap): Remove.
636 (move_gap_both): Add eassert.
637 * editfns.c (Ftranspose_regions): Tweak to use move_gap_both.
638 * xml.c (parse_region): Likewise.
639
640 2013-01-11 Paul Eggert <eggert@cs.ucla.edu>
641
642 emacsclient -t should not suspend Emacs server (Bug#13387)
643 * lisp.h, sysdep.c (block_tty_out_signal, unblock_tty_out_signal):
644 New functions.
645 * term.c (init_tty): Use them instead of rolling our own code.
646 * sysdep.c (tcsetpgrp_without_stopping): Likewise. Here, this
647 switches from 'signal' to 'pthread_sigmask', which is safer in
648 multithreaded applications.
649 * term.c (Fresume_tty): Don't bother dissociating if O_IGNORE_CTTY,
650 which has already arranged for that.
651 (dissociate_if_controlling_tty): If setsid fails, fall back on TIOCNOTTY.
652 This is the main part of the bug fix.
653
654 2013-01-10 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> (tiny change)
655
656 * gtkutil.c (xg_initialize): Add ifdef HAVE_FREETYPE around
657 x_last_font_name (Bug#13403).
658
659 2013-01-10 Dmitry Antipov <dmantipov@yandex.ru>
660
661 Omit buffer_slot_type_mismatch and use generic predicates to enforce
662 the type of per-buffer values where appropriate.
663 * lisp.h (struct Lisp_Buffer_Objfwd): Rename slottype member to
664 predicate, which is how it's really used now. Adjust comment.
665 * buffer.h (buffer_slot_type_mismatch): Remove prototype.
666 * buffer.c (buffer_slot_type_mismatch): Remove.
667 (DEFVAR_PER_BUFFER, defvar_per_buffer): Rename type argument to
668 predicate. Adjust comment.
669 (syms_of_buffer): Use Qsymbolp for major-mode. Use Qintegerp for
670 fill-column, left-margin, tab-width, buffer-saved-size,
671 left-margin-width, right-margin-width, left-fringe-width,
672 right-fringe-width, scroll-bar-width and buffer-display-count.
673 Use Qstringp for default-directory, buffer-file-name,
674 buffer-file-truename and buffer-auto-save-file-name. Use Qfloatp for
675 scroll-up-aggressively and scroll-down-aggressively. Use Qnumberp for
676 line-spacing.
677 * data.c (store_symval_forwarding): Adjust to call the predicate.
678
679 2013-01-09 Juanma Barranquero <lekktu@gmail.com>
680
681 * w32.c (get_name_and_id, acl_set_file):
682 * w32term.c (w32fullscreen_hook): Remove unused local variables.
683
684 2013-01-09 Dmitry Antipov <dmantipov@yandex.ru>
685
686 * lisp.h (make_gap_1): New prototype.
687 * buffer.h (GAP_BYTES_DFL, GAP_BYTES_MIN): New macros for the special
688 gap size values.
689 * editfns.c (Fbuffer_size): Rename from Fbufsize to fit the common
690 naming convention.
691 (syms_of_editfns): Adjust defsubr. Drop commented-out obsolete code.
692 * insdel.c (make_gap_larger): Use GAP_BYTES_DFL. Adjust comment.
693 (make_gap_smaller): Use GAP_BYTES_MIN. Adjust comment.
694 (make_gap_1): New function to adjust the gap of any buffer.
695 * coding.c (coding_alloc_by_making_gap): Use it.
696 * buffer.c (compact_buffer): Likewise. Use BUF_Z_BYTE, BUF_GAP_SIZE,
697 GAP_BYTES_DFL and GAP_BYTES_MIN. Adjust comment.
698
699 2013-01-08 Juri Linkov <juri@jurta.org>
700
701 * xfaces.c (tty_supports_face_attributes_p): Return 0 for the case
702 of (supports :underline (:style wave)). (Bug#13000)
703
704 2013-01-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
705
706 * undo.c (Fprimitive_undo): Move to simple.el.
707 (syms_of_undo): Remove declarations for Sprimitive_undo.
708
709 2013-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
710
711 * keyboard.c (echo_add_key): Rename from echo_add_char.
712
713 2013-01-06 Chong Yidong <cyd@gnu.org>
714
715 * keyboard.c (echo_add_char): New function, factored out from
716 echo_char. Don't add a space if the previous echo string was
717 empty (Bug#13255).
718 (echo_char): Use it.
719 (read_key_sequence): When echoing mock input, ensure that the
720 trailing dash is properly added.
721
722 2013-01-05 Eli Zaretskii <eliz@gnu.org>
723
724 * xdisp.c (dump_glyph): Align glyph data better. Use "pD" instead
725 of a non-portable "t" to print ptrdiff_t values. Allow up to 9
726 digits for buffer positions, before misalignment starts.
727 Display "0" for integer "object" field.
728 (dump_glyph_row): Adapt the header line to changes in dump_glyph.
729 Display the newline glyph more unambiguously.
730
731 2013-01-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
732
733 * nsterm.m (ns_draw_underwave):
734 * w32term.c (w32_draw_underwave):
735 * xterm.c (x_draw_underwave): Make underwave look more triangular
736 and also degrade gracefully for small fonts. (Bug#13000)
737
738 * nsterm.m (ns_draw_text_decoration):
739 * w32term.c (x_draw_glyph_string):
740 * xterm.c (x_draw_glyph_string): Don't use previous underline
741 thickness and position if previous underline type is underwave.
742
743 2013-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
744
745 * fileio.c (Ffile_acl): Undocument return format.
746
747 2013-01-02 Glenn Morris <rgm@gnu.org>
748
749 * keymap.c (Fkey_description): Doc fix. (Bug#13323)
750
751 2013-01-02 Paul Eggert <eggert@cs.ucla.edu>
752
753 Simplify via eabs.
754 * dired.c (file_name_completion):
755 * doc.c (get_doc_string):
756 * floatfns.c (round2):
757 * font.c (font_score, font_delete_unmatched):
758 * fringe.c (compute_fringe_widths):
759 * lread.c (read_list):
760 * minibuf.c (Ftry_completion):
761 * term.c (tty_ins_del_lines):
762 * xterm.c (x_draw_image_foreground, x_draw_image_foreground_1):
763 Use eabs (x) rather than open-coding it as (x < 0 ? -x : x).
764
765 2012-12-31 Eli Zaretskii <eliz@gnu.org>
766
767 * w32.c (unsetenv): Set up the string passed to _putenv
768 correctly.
769 See http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00863.html
770 for the bug this caused.
771
772 2012-12-30 Paul Eggert <eggert@cs.ucla.edu>
773
774 * coding.c (Qmac): Now static.
775
776 2012-12-30 Jan Djärv <jan.h.d@swipnet.se>
777
778 * gtkutil.c (TOOLBAR_TOP_WIDGET): New macro.
779 (xg_pack_tool_bar): Use TOOLBAR_TOP_WIDGET, condition out use of
780 handlebox_widget. Set toolbar_in_hbox to false/true, set
781 toolbar_is_packed to true.
782 (xg_update_tool_bar_sizes): Use widget returned by TOOLBAR_TOP_WIDGET.
783 (update_frame_tool_bar): Check toolbar_is_packed for packing.
784 Show all on TOOLBAR_TOP_WIDGET.
785 (free_frame_tool_bar): Check toolbar_is_packed. Use widget returned
786 by TOOLBAR_TOP_WIDGET.
787 (xg_change_toolbar_position): Use widget returned by TOOLBAR_TOP_WIDGET.
788 Check toolbar_is_packed.
789 (xg_have_tear_offs, tearoff_remove, tearoff_activate): Condition on
790 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
791 (xg_have_tear_offs): When ! HAVE_GTK_TEAROFF_MENU_ITEM_NEW, return
792 false.
793 (create_menus): Create tearoff only if HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
794 (xg_update_menubar): Update title only if
795 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
796 (xg_update_submenu): Skip tearoff only if
797 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
798 (xg_initialize): Initialize xg_detached_menus only if
799 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
800
801 * xterm.h (struct x_output): Surround handlebox_widget with
802 #ifdef HAVE_GTK_HANDLE_BOX_NEW. toolbar_is_packed is new,
803 toolbar_in_hbox is bool.
804
805 2012-12-30 Andreas Schwab <schwab@linux-m68k.org>
806
807 * src/Makefile.in (TEMACS_LDFLAGS2): Remove.
808 (LIBS_GNUSTEP): Define.
809 (LIBES): Add $(LIBS_GNUSTEP).
810 (temacs$(EXEEXT)): Use $(LDFLAGS) instead of $(TEMACS_LDFLAGS2).
811
812 2012-12-30 Eli Zaretskii <eliz@gnu.org>
813
814 * xdisp.c (set_cursor_from_row): Don't confuse a truncation or
815 continuation glyph on a TTY with an indication of an empty line.
816 (Bug#13277)
817
818 2012-12-29 Eli Zaretskii <eliz@gnu.org>
819
820 * fileio.c (Fset_file_selinux_context, Fset_file_acl): Return t if
821 file's SELinux context or ACLs successfully set, nil otherwise.
822 (Bug#13298)
823 (Fcopy_file) [WINDOWSNT]: Improve diagnostics when CopyFile fails.
824
825 * w32proc.c (reader_thread): Avoid passing NULL handles to
826 SetEvent and WaitForSingleObject.
827
828 2012-12-28 Paul Eggert <eggert@cs.ucla.edu>
829
830 Port EXTERNALLY_VISIBLE to Clang 3.2.
831 * conf_post.h (__has_attribute): New macro.
832 (EXTERNALLY_VISIBLE): Use it. This ports to Clang 3.2.
833
834 2012-12-27 Glenn Morris <rgm@gnu.org>
835
836 * cygw32.c (Fcygwin_convert_file_name_to_windows)
837 (Fcygwin_convert_file_name_from_windows): Doc fixes.
838
839 2012-12-27 Eli Zaretskii <eliz@gnu.org>
840
841 * fileio.c (file_name_as_directory, directory_file_name):
842 Accept an additional argument MULTIBYTE to indicate whether the input C
843 came from a multibyte or a unibyte Lisp string; all callers
844 adjusted. Don't assume the input string is always multibyte.
845 (Bug#13262)
846 (Ffile_name_directory) [DOS_NT]: Handle unibyte strings correctly:
847 don't ENCODE_FILE them, and return a unibyte string if the input
848 was unibyte.
849 (Fexpand_file_name): Don't mix unibyte with multibyte strings, and
850 don't assume the input strings will always be multibyte. If the
851 input strings are multibyte, decode strings obtained from C
852 library functions.
853
854 2012-12-26 Dmitry Antipov <dmantipov@yandex.ru>
855
856 * lisp.h (toplevel): Add two notices to the comment about
857 defining a new Lisp data type.
858 * print.c (print_object): If Lisp_Save_Value object's pointer
859 is the address of a memory area containing Lisp_Objects, try
860 to print them.
861 * alloc.c (valid_lisp_object_p): Adjust comment.
862
863 2012-12-26 Dmitry Antipov <dmantipov@yandex.ru>
864
865 * keyboard.c (record_asynch_buffer_change): Initialize an event
866 only if it's really needed.
867 * frame.h (enum output_method): Remove output_mac member since
868 it's a leftover from the deleted code.
869 * frame.c (Fframep): Adjust user here ...
870 * terminal.c (Fterminal_live_p): ... and here.
871 * coding.c (Qmac): Now here because it's only used to denote
872 end-of-line encoding type.
873 (syms_of_coding): DEFSYM it.
874 * frame.h (Qmac): Remove duplicated declaration.
875
876 2012-12-26 Paul Eggert <eggert@cs.ucla.edu>
877
878 * window.c (select_window_1): Now static, since it's used only here.
879
880 2012-12-25 Eli Zaretskii <eliz@gnu.org>
881
882 * window.c (window_body_cols): Subtract display margins from the
883 window body width on TTYs as well. See
884 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-12/msg00317.html
885 for the original report.
886
887 2012-12-25 Dmitry Antipov <dmantipov@yandex.ru>
888
889 * xdisp.c (redisplay_window): Remove inner local variable
890 because the outer shadowed one has the same meaning.
891 * xterm.h (struct x_output): Remove toolbar_detached member since it's
892 set but never used.
893 * gtkutil.c (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
894 (xg_create_tool_bar): Adjust users.
895
896 2012-12-24 Dmitry Antipov <dmantipov@yandex.ru>
897
898 * buffer.h (BUF_COMPACT): New macro to follow the common style.
899 * buffer.c (Fget_buffer_create): Use it to set compact field of
900 struct buffer_text to avoid accessing an uninitialized value
901 when compact_buffer is called for the first time.
902 (compact_buffer): Use convenient BUF_COMPACT and BUF_MODIFF.
903 (Fset_buffer_modified_p): Use buffer_window_count to check
904 whether the buffer is displayed in some window.
905 * xdisp.c (message_dolog): Likewise.
906
907 2012-12-23 Eli Zaretskii <eliz@gnu.org>
908
909 * w32.c (acl_set_file): If setting the file security descriptor
910 fails, and the new DACL is identical to the existing one, silently
911 return success. This fixes problems for users backing up their
912 own files without having the necessary privileges for setting
913 security descriptors.
914
915 * w32proc.c (reader_thread): Do not index fd_info[] with negative
916 values.
917 (reader_thread): Exit when cp->status becomes STATUS_READ_ERROR
918 after WaitForSingleObject returns normally. This expedites reader
919 thread shutdown when delete_child triggers it.
920 (reap_subprocess): More accurate commentary for why we call
921 delete_child only when cp->fd is negative.
922
923 * w32.c (sys_close): Do not call delete_child on a subprocess
924 whose handle is not yet closed. Instead, set its file descriptor
925 to a negative value, so that reap_subprocess will call
926 delete_child on that subprocess when its SIGCHLD arrives.
927 This avoids closing handles used for communications between sys_select
928 and reader_thread, which doesn't give sys_select a chance to
929 notice that the process exited and invoke the SIGCHLD handler for
930 it.
931
932 2012-12-23 Jan Djärv <jan.h.d@swipnet.se>
933
934 * nsfns.m (Fns_do_applescript): Run event loop until script has
935 been executed (Bug#12969).
936 (ns_run_ascript): Chech as_script for nil, set to nil after
937 executing script.
938
939 2012-12-22 Martin Rudalics <rudalics@gmx.at>
940
941 * window.c (Fselect_window): Reword doc-string (Bug#13248).
942
943 2012-12-22 Eli Zaretskii <eliz@gnu.org>
944
945 * w32term.c (w32fullscreen_hook): New function.
946 (w32_create_terminal): Plug it into the terminal's fullscreen_hook.
947
948 2012-12-21 Eli Zaretskii <eliz@gnu.org>
949
950 * fileio.c (Finsert_file_contents): Doc fix.
951
952 * w32proc.c (new_child, delete_child, find_child_pid): For a
953 subprocess, consider its slot being in use as long as its process
954 handle (procinfo.hProcess) is not NULL. This avoids reusing the
955 slot when a new process is started immediately after killing
956 another one, without waiting enough time for the first process to
957 be reaped and resources allocated for it be orderly freed.
958 (Bug#13086)
959 Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
960
961 2012-12-21 Chong Yidong <cyd@gnu.org>
962
963 * buffer.c (Fset_buffer_major_mode): Doc fix (Bug#13231).
964
965 * fns.c (Fcompare_strings): Doc fix (Bug#13081).
966
967 2012-12-21 Eli Zaretskii <eliz@gnu.org>
968
969 * w32.c (get_name_and_id): Always pass NULL as the first argument
970 of lookup_account_sid. Avoids crashes with UNC file names that
971 refer to DFS domains, not to specific machine names. (Bug#12621)
972 Remove now unused argument FNAME; all callers changed.
973 (get_file_owner_and_group): Remove now unused argument FNAME; all
974 callers changed.
975
976 2012-12-21 Chong Yidong <cyd@gnu.org>
977
978 * editfns.c (Finsert_char): Since read-char-by-name now signals an
979 error for invalid chars, don't check for a nil return value.
980
981 2012-12-20 Dmitry Antipov <dmantipov@yandex.ru>
982
983 Avoid calls to CHAR_TO_BYTE if byte position is known.
984 * editfns.c (make_buffer_string_both): Use move_gap_both.
985 (Fbuffer_string): Use make_buffer_string_both.
986 * marker.c (buf_charpos_to_bytepos): Convert to eassert.
987 Adjust comment.
988 (buf_bytepos_to_charpos): Likewise.
989 (charpos_to_bytepos): Remove.
990 * fileio.c (Finsert_file_contents): Use move_gap_both.
991 * search.c (Freplace_match): Likewise.
992 * process.c (process_send_region): Likewise. Use convenient
993 names for byte positions.
994 * lisp.h (charpos_to_bytepos): Remove prototype.
995 * indent.c (scan_for_column): Use CHAR_TO_BYTE.
996 * insdel.c (move_gap): Likewise.
997
998 2012-12-20 Paul Eggert <eggert@cs.ucla.edu>
999
1000 * xdisp.c (redisplay_internal): Remove now-unused local.
1001
1002 2012-12-20 Stefan Monnier <monnier@iro.umontreal.ca>
1003
1004 * xdisp.c (select_frame_for_redisplay, ensure_selected_frame): Remove.
1005 (redisplay_internal): Don't bother selecting the frame to get the
1006 proper value of frame-local variables (bug#13225).
1007
1008 2012-12-20 Dmitry Antipov <dmantipov@yandex.ru>
1009
1010 * textprop.c (set_text_properties_1): Do not allow NULL interval.
1011 Rename 4th argument since it may be buffer or string. Adjust comment.
1012 * intervals.c (graft_intervals_info_buffer): Find an interval here.
1013
1014 2012-12-19 Dmitry Antipov <dmantipov@yandex.ru>
1015
1016 * coding.c (Fdetect_coding_region): Do not check start and end with
1017 CHECK_NUMBER_COERCE_MARKER since validate_region does that itself.
1018 (code_convert_region): Likewise.
1019
1020 2012-12-18 Eli Zaretskii <eliz@gnu.org>
1021
1022 * w32.c (acl_get_file, acl_set_file): Run the file name through
1023 map_w32_filename, and resolve any symlinks in the file name, like
1024 Posix platforms do.
1025 (acl_set_file): Call revert_to_self, if any privileges were
1026 enabled.
1027
1028 2012-12-17 Juanma Barranquero <lekktu@gmail.com>
1029
1030 * makefile.w32-in ($(BLD)/editfns.$(O), $(BLD)/fileio.$(O))
1031 ($(BLD)/w32.$(O)): Update dependencies.
1032
1033 2012-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
1034
1035 * xdisp.c (select_frame_for_redisplay): Use select_window_1 to
1036 propagate redisplay's scrolling (if any) to the right window.
1037 (redisplay_internal): Use ensure_selected_frame.
1038 (display_mode_lines): Complete last fix.
1039 * window.c (select_window_1): New func, extracted from select_window.
1040 (select_window): Use it.
1041 * window.h (select_window_1): Declare.
1042
1043 2012-12-17 Eli Zaretskii <eliz@gnu.org>
1044
1045 Emulate Posix ACL APIs on MS-Windows.
1046 * w32.c: Include sddl.h and sys/acl.h.
1047 (SDDL_REVISION_1): Define if not already defined.
1048 (g_b_init_get_security_descriptor_dacl)
1049 (g_b_init_convert_sd_to_sddl, g_b_init_convert_sddl_to_sd)
1050 (g_b_init_is_valid_security_descriptor)
1051 (g_b_init_set_file_security): New static flags.
1052 (globals_of_w32): Initialize them to zero.
1053 (SetFileSecurity_Name): New string constant.
1054 (SetFileSecurity_Proc, GetSecurityDescriptorDacl_Proc)
1055 (ConvertStringSecurityDescriptorToSecurityDescriptor_Proc)
1056 (ConvertSecurityDescriptorToStringSecurityDescriptor_Proc)
1057 (IsValidSecurityDescriptor_Proc): New typedefs.
1058 (get_file_security, get_security_descriptor_owner)
1059 (get_security_descriptor_group): Set errno to ENOTSUP.
1060 (set_file_security, get_security_descriptor_dacl)
1061 (is_valid_security_descriptor, convert_sd_to_sddl)
1062 (convert_sddl_to_sd, acl_valid, acl_to_text, acl_from_text)
1063 (acl_free, acl_get_file, acl_set_file): New functions.
1064
1065 * fileio.c (Fcopy_file) [WINDOWSNT]: Support copying ACLs.
1066
1067 2012-12-17 Paul Eggert <eggert@cs.ucla.edu>
1068
1069 Don't reraise SIGCHLD, as that can now lose (Bug#13192).
1070 With the 2012-12-03 fix for Bug#12980 in place, an old workaround
1071 for some of that bug's symptoms can now cause Emacs to abort.
1072 Remove the workaround.
1073 * process.c (wait_reading_process_output): Don't reraise SIGCHLD.
1074 The bug that caused SIGCHLD to get lost has been fixed, and the
1075 workaround for it can now cause Emacs to abort.
1076
1077 2012-12-16 Paul Eggert <eggert@cs.ucla.edu>
1078
1079 * sysdep.c (emacs_abort): Bump backtrace size to 40.
1080 Companion to the 2012-09-30 patch. Suggested by Eli Zaretskii in
1081 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00796.html>.
1082
1083 2012-12-16 Romain Francoise <romain@orebokech.com>
1084
1085 * fileio.c (Ffile_acl, Fset_file_acl): New functions.
1086 (Fcopy_file): Change last arg to `preserve_extended_attributes'
1087 and copy ACL entries of file in addition to SELinux context if set.
1088 (syms_of_fileio): Add `file-acl' and `set-file-acl'.
1089
1090 * Makefile.in (LIBACL_LIBS): New macro.
1091 (LIBES): Use it.
1092
1093 2012-12-15 Paul Eggert <eggert@cs.ucla.edu>
1094
1095 * fileio.c (internal_delete_file): Use bool for boolean.
1096
1097 2012-12-15 Eli Zaretskii <eliz@gnu.org>
1098
1099 Fix bug #13079 on MS-Windows with temp files not being deleted.
1100 * w32.h (_child_process): New members input_file and
1101 pending_deletion.
1102 (register_child): First argument is now pid_t.
1103 (record_infile, record_pending_deletion): New prototypes.
1104
1105 * w32proc.c (new_child): Initialize input_file and
1106 pending_deletion members of the child.
1107 (delete_child): Delete the child's temporary input file, if any,
1108 that is pending deletion.
1109 (register_child): First argument is now pid_t.
1110 (record_infile, record_pending_deletion): New functions.
1111 (reap_subprocess): Fix a typo in DebPrint string.
1112 (sys_spawnve, sys_kill): Use pid_t for PID arguments.
1113
1114 * fileio.c (internal_delete_file): Return an int again: non-zero
1115 if delete-file succeeds, zero otherwise.
1116
1117 * lisp.h (internal_delete_file): Adjust prototype.
1118
1119 * callproc.c (Fcall_process): Don't overwrite infile with result
1120 of DECODE_FILE.
1121 [WINDOWSNT] If BUFFER is an integer, i.e. we are launching an
1122 asynchronous subprocess, record the name of the input file name,
1123 if any.
1124 (delete_temp_file) [WINDOWSNT]: If internal_delete_file fails to
1125 delete the file, record it as pending deletion when the subprocess
1126 exits.
1127
1128 2012-12-14 Eli Zaretskii <eliz@gnu.org>
1129
1130 * editfns.c [HAVE_PWD_H]: Include grp.h.
1131
1132 * makefile.w32-in ($(BLD)/editfns.$(O)): Add $(NT_INC)/grp.h.
1133
1134 2012-12-14 Paul Eggert <eggert@cs.ucla.edu>
1135
1136 Fix permissions bugs with setgid directories etc. (Bug#13125)
1137 * dired.c (Ffile_attributes): Return t as the 9th attribute,
1138 to mark it as a placeholder. The old value was often wrong.
1139 The only user of this attribute has been changed to use
1140 file-ownership-preserved-p instead, with its new group arg.
1141 * editfns.c (Fgroup_gid, Fgroup_real_gid): New functions.
1142
1143 2012-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
1144
1145 * xdisp.c (select_frame_for_redisplay, display_mode_lines):
1146 Keep selected_window and selected_frame in sync.
1147
1148 2012-12-14 Eli Zaretskii <eliz@gnu.org>
1149
1150 * w32.c (stat_worker): If w32_stat_get_owner_group is zero, do not
1151 try to get accurate owner and group information from NT file
1152 security APIs. This is to make most callers of 'stat' and
1153 'lstat', which don't need that information, much faster.
1154
1155 * dired.c (Ffile_attributes) [WINDOWSNT]:
1156 Set w32_stat_get_owner_group to a non-zero value, to request accurate
1157 owner and group information from 'lstat'.
1158
1159 2012-12-13 Paul Eggert <eggert@cs.ucla.edu>
1160
1161 * fileio.c (Finsert_file_contents): Don't put tail into head area,
1162 as that confuses set-auto-coding, so insist on the head-read
1163 returning the full 1024 bytes. Let lseek compute the tail offset;
1164 less work for us. Do not ignore I/O errors when reading the tail.
1165
1166 * xdisp.c: Minor style fixes.
1167 (init_iterator): Hoist assignment out of if-expression.
1168 (markpos_of_region): Callers now test for sign, not for -1.
1169
1170 2012-12-13 Dmitry Antipov <dmantipov@yandex.ru>
1171
1172 Minor redisplay optimization when the region length is zero.
1173 * xdisp.c (markpos_of_region): New function.
1174 (init_iterator): Do not highlight the region of zero length.
1175 (redisplay_window): Check whether the region is of non-zero length.
1176 (try_cursor_movement): Allow if the region length is zero.
1177 (try_window_reusing_current_matrix, try_window_id): Likewise.
1178
1179 2012-12-13 Eli Zaretskii <eliz@gnu.org>
1180
1181 * search.c (search_buffer): Check the inverse translations of each
1182 character in pattern when the buffer being searched is unibyte.
1183 (Bug#13084)
1184
1185 2012-12-13 Paul Eggert <eggert@cs.ucla.edu>
1186
1187 * fileio.c (Fvisited_file_modtime): Return (-1 ...) for nonexistent
1188 files, fixing a regression from 24.2.
1189 (Fverify_visited_file_modtime): Don't read uninitialized st.st_size.
1190
1191 2012-12-13 Paul Eggert <eggert@cs.ucla.edu>
1192
1193 * fileio.c (Fcopy_file): Make fstat failure as serious as open failure.
1194 fstat shouldn't fail, and if it does fail copy-file should not proceed.
1195 Remove unnecessary S_ISLNK test, as (contra the comments) this
1196 function can't copy symlinks. Improve quality of error message
1197 when attempting to copy files that are neither regular files nor
1198 directories.
1199
1200 2012-12-12 Dmitry Antipov <dmantipov@yandex.ru>
1201
1202 * dispnew.c (set_window_cursor_after_update): Use clip_to_bounds.
1203 * gtkutil.c (xg_set_toolkit_scroll_bar_thumb):
1204 * window.c (Frecenter):
1205 * xdisp.c (resize_mini_window, hscroll_window_tree, draw_glyphs):
1206 * xterm.c (x_set_toolkit_scroll_bar_thumb): Likewise.
1207
1208 2012-12-12 Daniel Colascione <dancol@dancol.org>
1209
1210 * unexcw.c (fixup_executable): Use posix_fallocate to ensure that
1211 the dumped Emacs is not a sparse file, greatly improving Cygwin
1212 "make bootstrap" performance.
1213
1214 2012-12-11 Michael Albinus <michael.albinus@gmx.de>
1215
1216 * inotify.c (inotify_callback): Generate an Emacs event for every
1217 incoming inotify event.
1218
1219 2012-12-11 Eli Zaretskii <eliz@gnu.org>
1220
1221 * xdisp.c (handle_face_prop): Fix logic of computing
1222 it->start_of_box_run_p.
1223 (append_space_for_newline): If the glyph row is R2L, reset the
1224 iterator's end_of_box_run_p flag before prepending the space glyph.
1225 (extend_face_to_end_of_line): If the glyph row is R2L, reset the
1226 iterator's start_of_box_run_p flag before prepending the stretch.
1227 (append_glyph, produce_image_glyph, append_composite_glyph)
1228 (append_stretch_glyph, append_glyphless_glyph): Reverse the
1229 left_box_line_p and right_box_line_p flags of the glyph for R2L
1230 glyph rows. (Bug#13011)
1231
1232 2012-12-11 Dmitry Antipov <dmantipov@yandex.ru>
1233
1234 * buffer.c (Fset_buffer_multibyte): Do not force redisplay
1235 if changed buffer is not shown in a window.
1236 * insdel.c (prepare_to_modify_buffer): Likewise.
1237 * window.c (replace_buffer_in_windows_safely): Do nothing
1238 if buffer is not shown in a window.
1239 (Fforce_window_update): Likewise if string or buffer argument
1240 is passed.
1241
1242 2012-12-11 Eli Zaretskii <eliz@gnu.org>
1243
1244 * inotify.c (Finotify_add_watch): Rename decoded_file_name to
1245 encoded_file_name, which is what it is.
1246
1247 2012-12-11 Dmitry Antipov <dmantipov@yandex.ru>
1248
1249 Consistently use marker_position and marker_byte_position.
1250 * fringe.c (Ffringe_bitmaps_at_pos):
1251 * indent.c (Fvertical_motion):
1252 * insdel.c (prepare_to_modify_buffer):
1253 * keyboard.c (make_lispy_position):
1254 * window.c (Fwindow_end, Fpos_visible_in_window_p, unshow_buffer)
1255 (window_scroll_pixel_based, displayed_window_lines)
1256 (Fset_window_configuration):
1257 * xdisp.c (message_dolog, with_echo_area_buffer_unwind_data)
1258 (mark_window_display_accurate_1, redisplay_window, decode_mode_spec):
1259 Replace direct access to marker fields with calls
1260 to marker_position and/or marker_byte_position.
1261
1262 2012-12-11 Juanma Barranquero <lekktu@gmail.com>
1263
1264 * makefile.w32-in (SIG2STR_H): New macro.
1265 (SYSWAIT_H, $(BLD)/emacs.$(O), $(BLD)/process.$(O))
1266 ($(BLD)/w32notify.$(O)): Update dependencies.
1267
1268 2012-12-10 Daniel Colascione <dancol@dancol.org>
1269
1270 * w32term.c, keyboard.c: Fix build break in cygw32 by omitting
1271 Windows file notification functionality unless WINDOWSNT.
1272
1273 * w32gui.h (hprevinst, lpCmdLine, nCmdShow): Remove unused
1274 declarations.
1275
1276 * w32fns.c (cache_system_info): Initialize the global hinst
1277 variable here so various initialization calls DTRT.
1278
1279 * unexw32.c (hprevinst, lpCmdLine, nCmdShow): Remove unused variables.
1280 (hinst): Remove unneeded extern declaration.
1281 (_start): Remove initialization of above variables; remove
1282 initialization of hinst, as cache_system_info now does that.
1283
1284 * emacs.c (main): Call cache_system_info early in startup; we
1285 previously weren't calling it in Cygwin builds.
1286
1287 * Makefile.in (ntsource, WINDRES, W32_RES, W#@_RES_LINK):
1288 Teach the autoconf build system how to compile a Windows resource file
1289 and link it to Emacs.
1290
1291 2012-12-10 Dmitry Antipov <dmantipov@yandex.ru>
1292
1293 Per-buffer window counters.
1294 * buffer.h (struct buffer): New member window_count.
1295 (buffer_window_count): New function.
1296 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
1297 Initialize window_count.
1298 (Fkill_buffer): Verify window_count for the buffer being killed.
1299 (modify_overlay): Do not force redisplay if buffer is not shown
1300 in any window.
1301 (init_buffer_once): Initialize window_count for buffer_defaults
1302 and buffer_local_symbols.
1303 * window.h (buffer_shared): Remove declaration.
1304 (wset_buffer): Convert from inline ...
1305 * window.c (wset_buffer): ... to an ordinary function.
1306 (adjust_window_count): New function.
1307 (make_parent_window): Use it.
1308 * xdisp.c (buffer_shared): Remove.
1309 (redisplay_internal, redisplay_window): Adjust users.
1310 (buffer_shared_and_changed): Use per-buffer window counter.
1311
1312 2012-12-10 Eli Zaretskii <eliz@gnu.org>
1313
1314 Support for filesystem notifications on MS-Windows.
1315 * w32proc.c (sys_select): If drain_message_queue returns non-zero,
1316 and this is a TTY frame, signal the caller that keyboard input is
1317 available.
1318
1319 * w32xfns.c (drain_message_queue): Now returns an int: an
1320 indication whether any WM_EMACS_FILENOTIFY messages were found in
1321 the queue.
1322
1323 * w32inevt.c (handle_file_notifications): New function.
1324 (w32_console_read_socket): Call it to process file notifications.
1325
1326 * w32console.c (initialize_w32_display): Record the main thread ID
1327 in dwMainThreadId.
1328
1329 * deps.mk (inotify.o): New dependency list.
1330
1331 * Makefile.in (SOME_MACHINE_OBJECTS): Add w32notify.o.
1332
1333 * w32term.h (WM_EMACS_FILENOTIFY): New custom message.
1334 (WM_EMACS_END): Bump value by 1.
1335 (notification_buffer_in_use, file_notifications)
1336 (notifications_size, notifications_desc): Declare.
1337 (w32_get_watch_object, lispy_file_action, globals_of_w32notify):
1338 Add prototypes.
1339
1340 * w32term.c (lispy_file_action, queue_notifications): New functions.
1341 (syms_of_w32term) <Qadded, Qremoved, Qmodified, Qrenamed_from>
1342 <Qrenamed_to>: New symbols.
1343 (w32_read_socket): Handle the WM_EMACS_FILENOTIFY message.
1344
1345 * w32notify.c: New file, implements file event notifications for
1346 MS-Windows.
1347
1348 * w32fns.c (w32_wnd_proc): Handle the WM_EMACS_FILENOTIFY message
1349 by posting it to the w32_read_socket queue.
1350
1351 * termhooks.h (enum event_kind) [HAVE_NTGUI]: Support FILE_NOTIFY_EVENT.
1352
1353 * makefile.w32-in (OBJ2): Add $(BLD)/w32notify.$(O).
1354 (GLOBAL_SOURCES): Add w32notify.c
1355 ($(BLD)/w32notify.$(O)): New set of dependencies.
1356
1357 * lisp.h (syms_of_w32notify) [WINDOWSNT]: Add prototype.
1358
1359 * keyboard.c (kbd_buffer_get_event) [WINDOWSNT]:
1360 Handle FILE_NOTIFY_EVENT.
1361 (syms_of_keyboard) [HAVE_NTGUI] <Qfile_notify>: New symbol.
1362 (keys_of_keyboard) [WINDOWSNT]: Bind file-notify to
1363 w32notify-handle-event by default.
1364
1365 * emacs.c (main) [WINDOWSNT]: Call globals_of_w32notify and
1366 syms_of_w32notify.
1367
1368 2012-12-10 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1369
1370 Support for filesystem notifications on GNU/Linux via inotify.
1371 * termhooks.h (enum event_kind) [HAVE_INOTIFY]: Add FILE_NOTIFY_EVENT.
1372
1373 * lisp.h (syms_of_inotify) [HAVE_INOTIFY]: Add prototype.
1374
1375 * keyboard.c (Qfile_inotify) [HAVE_INOTIFY]: New variable.
1376 (syms_of_keyboard): DEFSYM it.
1377 (kbd_buffer_get_event) [HAVE_INOTIFY]: Generate FILE_NOTIFY_EVENT.
1378 (make_lispy_event): Support FILE_NOTIFY_EVENT by generating
1379 Qfile_inotify events.
1380 (keys_of_keyboard) [HAVE_INOTIFY]: Bind file-inotify events in
1381 special-event-map to inotify-handle-event.
1382
1383 * emacs.c (main) [HAVE_INOTIFY]: Call syms_of_inotify.
1384
1385 * Makefile.in (base_obj): Add inotify.o.
1386
1387 * inotify.c: New file.
1388
1389 2012-12-10 Jan Djärv <jan.h.d@swipnet.se>
1390
1391 * nsterm.m (fd_handler:): FD_ZERO fds (Bug#13103).
1392
1393 2012-12-10 Fabrice Popineau <fabrice.popineau@gmail.com>
1394
1395 * w32fns.c (cache_system_info): Cast sysinfo_cache.dwPageSize to
1396 DWORD_PTR, for compatibility with 64-bit builds.
1397
1398 * w32.c (_PROCESS_MEMORY_COUNTERS_EX):
1399 (GetProcessWorkingSetSize_Proc, get_process_working_set_size)
1400 (system_process_attributes): Use SIZE_T rather than DWORD, for
1401 compatibility with 64-bit builds.
1402
1403 2012-12-10 Christopher Schmidt <christopher@ch.ristopher.com>
1404
1405 * lread.c (Vload_source_file_function): Doc fix (Bug#11647).
1406
1407 2012-12-10 Eli Zaretskii <eliz@gnu.org>
1408
1409 * indent.c (Fvertical_motion): If a display string will be
1410 displayed on the left or the right margin, don't consider it as a
1411 factor in cursor positioning. (Bug#13108)
1412
1413 2012-12-10 Martin Rudalics <rudalics@gmx.at>
1414
1415 * editfns.c (Fcompare_buffer_substrings): Reword doc-string.
1416
1417 2012-12-10 Paul Eggert <eggert@cs.ucla.edu>
1418
1419 * fileio.c (Fsubstitute_in_file_name): Use ptrdiff_t, not int,
1420 for string length.
1421
1422 2012-12-08 Eli Zaretskii <eliz@gnu.org>
1423
1424 * w32.c (unsetenv): Return 0 if the input string is too long.
1425
1426 2012-12-08 Paul Eggert <eggert@cs.ucla.edu>
1427
1428 Use putenv+unsetenv instead of modifying environ directly (Bug#13070).
1429 * alloc.c (xputenv): New function.
1430 * dbusbind.c (Fdbus_init_bus):
1431 * emacs.c (main):
1432 * xterm.c (x_term_init):
1433 Use xputenv instead of setenv or putenv, to detect memory exhaustion.
1434 * editfns.c (initial_tz): Move static var decl up.
1435 (tzvalbuf_in_environ): New static var.
1436 (init_editfns): Initialize these two static vars.
1437 (Fencode_time): Don't assume arbitrary limit on EMACS_INT width.
1438 Save old TZ value on stack, if it's small.
1439 (Fencode_time, set_time_zone_rule): Don't modify 'environ' directly;
1440 instead, use xputenv+unsetenv to set and restore TZ.
1441 (environbuf): Remove static var. All uses removed.
1442 (Fset_time_zone_rule): Do not save TZ and environ;
1443 no longer needed here.
1444 (set_time_zone_rule_tz1, set_time_zone_rule_tz2) [LOCALTIME_CACHE]:
1445 Move to inside set_time_zone_rule; they don't need file scope any more.
1446 (set_time_zone_rule): Maintain the TZ=value string separately.
1447 (syms_of_editfns): Don't initialize initial_tz;
1448 init_editfns now does it.
1449 * emacs.c (dump_tz) [HAVE_TZSET]: Now const.
1450 * lisp.h (xputenv): New decl.
1451
1452 2012-12-08 Fabrice Popineau <fabrice.popineau@gmail.com>
1453
1454 * w32fns.c (emacs_abort): Don't do arithmetics on void pointers.
1455
1456 2012-12-08 Eli Zaretskii <eliz@gnu.org>
1457
1458 * w32.c (unsetenv, sys_putenv): New functions.
1459
1460 2012-12-08 Chong Yidong <cyd@gnu.org>
1461
1462 * editfns.c (Finsert_char): Make the error message more
1463 informative (Bug#12992).
1464
1465 2012-12-08 Paul Eggert <eggert@cs.ucla.edu>
1466
1467 Simplify get_lim_data.
1468 * vm-limit.c (get_lim_data): Combine RLIMIT_AS and RLIMIT_DATA methods.
1469 Remove USG and vlimit methods; no longer used these days.
1470 Add #error catchall just in case.
1471
1472 Assume POSIX 1003.1-1988 or later for signal.h (Bug#13026).
1473 Exceptions: do not assume SIGCONT, SIGSTOP, SIGTSTP, SIGTTIN,
1474 SIGTTOU, SIGUSR1, SIGUSR2, as Microsoft platforms lack these.
1475 * process.c [subprocesses]: Include <c-ctype.h>, <sig2str.h>.
1476 (deleted_pid_list, Fdelete_process, create_process)
1477 (record_child_status_change, handle_child_signal, deliver_child_signal)
1478 (init_process_emacs, syms_of_process):
1479 Assume SIGCHLD is defined.
1480 (parse_signal): Remove. All uses removed.
1481 (abbr_to_signal): New static function.
1482 (Fsignal_process): Use it to convert signal names to ints.
1483 * sysdep.c (sys_suspend) [!DOS_NT]: Use kill (0, ...) rather than
1484 kill (getpgrp (), ...).
1485 (emacs_sigaction_init): Assume SIGCHLD is defined.
1486 (init_signals): Assume SIGALRM, SIGCHLD, SIGHUP, SIGKILL,
1487 SIGPIPE, and SIGQUIT are defined. Do not worry about SIGCLD any more.
1488 * syssignal.h (EMACS_KILLPG): Remove.
1489 All uses replaced by 'kill' with a negative pid.
1490 (SIGCHLD): Remove definition, as we now assume SIGCHLD.
1491 * w32proc.c (sys_kill): Support negative pids compatibly with POSIX.
1492
1493 2012-12-07 Paul Eggert <eggert@cs.ucla.edu>
1494
1495 * sysdep.c (get_child_status): Abort on internal error (Bug#13086).
1496 This will cause a production Emacs to dump core instead of
1497 infinite-looping.
1498
1499 2012-12-07 Dmitry Antipov <dmantipov@yandex.ru>
1500
1501 * frame.c (make_frame): Do not set window's buffer to t.
1502 * window.c (Fsplit_window_internal): Likewise. Previously it was
1503 used to indicate that the window is being set up. Now we use
1504 set_window_buffer for all new windows, so the condition in ...
1505 (Fset_window_buffer): ... is always true and can be removed.
1506
1507 2012-12-07 Dmitry Antipov <dmantipov@yandex.ru>
1508
1509 Convenient macro to check whether the buffer is hidden.
1510 * buffer.h (BUFFER_HIDDEN_P): New macro.
1511 * frame.c (make_frame): Use it. Adjust comment.
1512 * buffer.c (candidate_buffer): New function.
1513 (Fother_buffer, other_buffer_safely): Use it.
1514
1515 2012-12-06 Eli Zaretskii <eliz@gnu.org>
1516
1517 * w32proc.c (waitpid): Avoid busy-waiting when called with WNOHANG
1518 if the child process is still running. Instead, exit the wait
1519 loop and return zero. (Bug#13086)
1520
1521 2012-12-06 Dmitry Antipov <dmantipov@yandex.ru>
1522
1523 * frame.h (x_char_width, x_char_height): Remove prototypes.
1524 * w32term.h (x_char_width, x_char_height): Likewise.
1525 * xfns.c (x_char_width, x_char_height): Remove.
1526 * w32fns.c (x_char_width, x_char_height): Likewise.
1527 * nsfns.c (x_char_width, x_char_height): Likewise.
1528 * frame.c (Fframe_char_width): Use FRAME_COLUMN_WIDTH for
1529 all window frames.
1530 (Fframe_char_height): Likewise with FRAME_LINE_HEIGHT.
1531 * keyboard.c (command_loop_1): Remove prototype.
1532 (command_loop_2, top_level_1): Add static to match prototype.
1533
1534 2012-12-06 Paul Eggert <eggert@cs.ucla.edu>
1535
1536 Fix a recently-introduced delete-process race condition.
1537 * callproc.c, process.h (record_kill_process):
1538 New function, containing part of the old call_process_kill.
1539 (call_process_kill): Use it.
1540 This does not change call_process_kill's behavior.
1541 * process.c (Fdelete_process): Use record_kill_process to fix a
1542 race condition that could cause Emacs to lose track of a child.
1543
1544 2012-12-06 Dmitry Antipov <dmantipov@yandex.ru>
1545
1546 Avoid code duplication between prev_frame and next_frame.
1547 * frame.c (candidate_frame): New function. Add comment.
1548 (prev_frame, next_frame): Use it. Adjust comment.
1549
1550 2012-12-06 Eli Zaretskii <eliz@gnu.org>
1551
1552 * callproc.c (Fcall_process_region) [!HAVE_MKSTEMP]: If mktemp
1553 fails, signal an error instead of continuing with an empty
1554 string. (Bug#13079)
1555 Encode expanded temp file pattern before passing it to mkstemp or
1556 mktemp.
1557
1558 * fileio.c (file_name_as_directory, directory_file_name) [DOS_NT]:
1559 Encode the file name before passing it to dostounix_filename, in
1560 case it will downcase it (under w32-downcase-file-names).
1561 (Bug#12933)
1562
1563 2012-12-05 Paul Eggert <eggert@cs.ucla.edu>
1564
1565 Minor call-process cleanups.
1566 * callproc.c (Fcall_process): Do record-unwind-protect on MSDOS
1567 at the same time as other platforms, to simplify analysis.
1568 No need for fd0_volatile since we have synch_process_fd.
1569 Avoid needless emacs_close; arg is always negative.
1570
1571 2012-12-04 Andreas Schwab <schwab@linux-m68k.org>
1572
1573 * callproc.c (Fcall_process): Fix specpdl nesting for asynchronous
1574 processes.
1575
1576 2012-12-04 Dmitry Antipov <dmantipov@yandex.ru>
1577
1578 * lisp.h (Mouse_HLInfo): Remove set-but-unused mouse_face_image_state
1579 member. Adjust users. Convert mouse_face_past_end, mouse_face_defer
1580 and mouse_face_hidden members to a bitfields.
1581 * frame.h (struct frame): Remove set-but-not-used space_width member.
1582 (FRAME_SPACE_WIDTH): Remove.
1583 * nsterm.m, w32term.c, xterm.c: Adjust users.
1584 * termchar.h (struct tty_display_info): Remove set-but-unused se_is_so
1585 member. Adjust users. Convert term_initted, delete_in_insert_mode,
1586 costs_set, insert_mode, standout_mode, cursor_hidden and flow_control
1587 members to a bitfields.
1588
1589 2012-12-03 Paul Eggert <eggert@cs.ucla.edu>
1590
1591 Don't let call-process be a zombie factory (Bug#12980).
1592 Fixing this bug required some cleanup of the signal-handling code.
1593 As a side effect, this change also fixes a longstanding rare race
1594 condition whereby Emacs could mistakenly kill unrelated processes,
1595 and it fixes a bug where a second C-g does not kill a recalcitrant
1596 synchronous process in GNU/Linux and similar platforms.
1597 The patch should also fix the last vestiges of Bug#9488,
1598 a bug which has mostly been fixed on the trunk by other changes.
1599 * callproc.c, process.h (synch_process_alive, synch_process_death)
1600 (synch_process_termsig, sync_process_retcode):
1601 Remove. All uses removed, to simplify analysis and so that
1602 less consing is done inside critical sections.
1603 * callproc.c (call_process_exited): Remove. All uses replaced
1604 with !synch_process_pid.
1605 * callproc.c (synch_process_pid, synch_process_fd): New static vars.
1606 These take the role of what used to be in unwind-protect arg.
1607 All uses changed.
1608 (block_child_signal, unblock_child_signal):
1609 New functions, to avoid races that could kill innocent-victim processes.
1610 (call_process_kill, call_process_cleanup, Fcall_process): Use them.
1611 (call_process_kill): Record killed processes as deleted, so that
1612 zombies do not clutter up the system. Do this inside a critical
1613 section, to avoid a race that would allow the clutter.
1614 (call_process_cleanup): Fix code so that the second C-g works again
1615 on common platforms such as GNU/Linux.
1616 (Fcall_process): Create the child process in a critical section,
1617 to fix a race condition. If creating an asynchronous process,
1618 record it as deleted so that zombies do not clutter up the system.
1619 Do unwind-protect for WINDOWSNT too, as that's simpler in the
1620 light of these changes. Omit unnecessary call to emacs_close
1621 before failure, as the unwind-protect code does that.
1622 * callproc.c (call_process_cleanup):
1623 * w32proc.c (waitpid): Simplify now that synch_process_alive is gone.
1624 * process.c (record_deleted_pid): New function, containing
1625 code refactored out of Fdelete_process.
1626 (Fdelete_process): Use it.
1627 (process_status_retrieved): Remove. All callers changed to use
1628 child_status_change.
1629 (record_child_status_change): Remove, folding its contents into ...
1630 (handle_child_signal): ... this signal handler. Now, this
1631 function is purely a handler for SIGCHLD, and is not called after
1632 a synchronous waitpid returns; the synchronous code is moved to
1633 wait_for_termination. There is no need to worry about reaping
1634 more than one child now.
1635 * sysdep.c (get_child_status, child_status_changed): New functions.
1636 (wait_for_termination): Now takes int * status and bool
1637 interruptible arguments, too. Do not record child status change;
1638 that's now the caller's responsibility. All callers changed.
1639 Reimplement in terms of get_child_status.
1640 (wait_for_termination_1, interruptible_wait_for_termination):
1641 Remove. All callers changed to use wait_for_termination.
1642 * syswait.h: Include <stdbool.h>, for bool.
1643 (record_child_status_change, interruptible_wait_for_termination):
1644 Remove decls.
1645 (record_deleted_pid, child_status_changed): New decls.
1646 (wait_for_termination): Adjust to API changes noted above.
1647
1648 * bytecode.c, lisp.h (Qbytecode): Remove.
1649 No longer needed after 2012-11-20 interactive-p changes.
1650
1651 2012-12-03 Eli Zaretskii <eliz@gnu.org>
1652
1653 * xdisp.c (redisplay_window): If the cursor is visible, but inside
1654 the scroll margin, move point outside the margin. (Bug#13055)
1655
1656 2012-12-03 Jan Djärv <jan.h.d@swipnet.se>
1657
1658 * gtkutil.c (my_log_handler): New function.
1659 (xg_set_geometry): Set log handler to my_log_handler (Bug#11177).
1660
1661 2012-12-03 Dmitry Antipov <dmantipov@yandex.ru>
1662
1663 * lisp.h (modify_region): Rename to...
1664 (modify_region_1): ...new prototype.
1665 * textprop.c (modify_region): Now static. Adjust users.
1666 * insdel.c (modify_region): Rename to...
1667 (modify_region_1): ...new function to work with current buffer.
1668 Adjust comment and users. Use true and false for booleans.
1669
1670 2012-12-03 Dmitry Antipov <dmantipov@yandex.ru>
1671
1672 * alloc.c (free_save_value): New function.
1673 (safe_alloca_unwind): Use it.
1674 * lisp.h (free_save_value): New prototype.
1675 * editfns.c (save_excursion_save): Use Lisp_Misc_Save_Value.
1676 Add comment.
1677 (save_excursion_restore): Adjust to match saved data structure.
1678 Use free_save_value to offload some work from GC. Drop obsolete
1679 #if 0 code.
1680
1681 2012-12-03 Chong Yidong <cyd@gnu.org>
1682
1683 * fileio.c (Vauto_save_list_file_name): Doc fix.
1684
1685 2012-12-03 Fabrice Popineau <fabrice.popineau@gmail.com>
1686
1687 * w32fns.c: Remove prototype of atof.
1688 (syspage_mask): Make it DWORD_PTR, for compatibility with 64-bit
1689 builds.
1690 (file_dialog_callback): Make it UINT_PTR.
1691
1692 * w32common.h (syspage_mask): Declare DWORD_PTR, for compatibility
1693 with 64-bit builds.
1694
1695 * w32.c (FILE_DEVICE_FILE_SYSTEM, METHOD_BUFFERED)
1696 (FILE_ANY_ACCESS, CTL_CODE) [_MSC_VER]: Define only if not already
1697 defined.
1698
1699 2012-12-03 Glenn Morris <rgm@gnu.org>
1700
1701 * data.c (Fboundp, Fsymbol_value): Doc fix re lexical-binding.
1702
1703 2012-12-02 Paul Eggert <eggert@cs.ucla.edu>
1704
1705 Fix xpalloc confusion after memory is exhausted.
1706 * alloc.c (xpalloc): Comment fix.
1707 * charset.c (Fdefine_charset_internal): If xpalloc exhausts memory
1708 and signals an error, do not clear charset_table_size, as
1709 charset_table is still valid.
1710 * doprnt.c (evxprintf): Clear *BUF after freeing it.
1711
1712 Use execve to avoid need to munge environ (Bug#13054).
1713 * callproc.c (Fcall_process):
1714 * process.c (create_process):
1715 Don't save and restore environ; no longer needed.
1716 * callproc.c (child_setup):
1717 Use execve, not execvp, to preserve environ.
1718
1719 2012-12-01 Paul Eggert <eggert@cs.ucla.edu>
1720
1721 * xterm.c (x_draw_image_relief): Remove unused locals (Bug#10500).
1722
1723 2012-12-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1724
1725 * xterm.c (x_draw_relief_rect, x_draw_image_relief): Fix relief
1726 display for sliced images (Bug#10500).
1727
1728 * w32term.c (w32_draw_relief_rect, x_draw_image_relief): Likewise.
1729
1730 2012-11-30 Juanma Barranquero <lekktu@gmail.com>
1731
1732 * doc.c (Fdocumentation): Re-add handling of function-documentation,
1733 accidentally removed in 2012-11-09T04:10:16Z!monnier@iro.umontreal.ca (bug#13034).
1734
1735 2012-11-29 Dmitry Antipov <dmantipov@yandex.ru>
1736
1737 * xdisp.c (window_outdated): Remove eassert since it hits
1738 some suspicious corner cases (see Bug#13007 and Bug#13012).
1739 (mode_line_update_needed): New function.
1740 (redisplay_internal, redisplay_window): Use it.
1741 (ensure_selected_frame): New function.
1742 (redisplay_internal, unwind_redisplay): Use it.
1743 (redisplay_internal): Move comment about buffer_shared...
1744 (buffer_shared_and_changed): ...near to its real use.
1745
1746 2012-11-29 Paul Eggert <eggert@cs.ucla.edu>
1747
1748 * callproc.c (Fcall_process): Don't misreport vfork failure.
1749
1750 2012-11-28 Paul Eggert <eggert@cs.ucla.edu>
1751
1752 * callproc.c (Fcall_process): Fix vfork portability problems.
1753 Do not assume that fd[0], count, filefd, and save_environ survive
1754 vfork. Fix bug whereby wrong errno value could be reported for
1755 pipe failure. Some minor cleanups, too, as follows. Move buf and
1756 bufsize to the context where they're needed. Change new_argv to
1757 be of type char **, as this is more convenient and avoids casts.
1758 (CALLPROC_BUFFER_SIZE_MIN, CALLPROC_BUFFER_SIZE_MAX):
1759 Now local constants, not macros.
1760
1761 2012-11-18 Kenichi Handa <handa@gnu.org>
1762
1763 * font.c (font_unparse_xlfd): Fix previous change. Keep "const"
1764 for the variable "f".
1765
1766 2012-11-13 Kenichi Handa <handa@gnu.org>
1767
1768 * font.c (font_unparse_xlfd): Exclude special characters from the
1769 generating XLFD name.
1770
1771 2012-11-27 Paul Eggert <eggert@cs.ucla.edu>
1772
1773 Assume POSIX 1003.1-1988 or later for grp.h, pwd.h.
1774 * dired.c (stat_uname, stat_gname):
1775 * fileio.c (Fexpand_file_name): Remove no-longer-needed casts.
1776
1777 Assume POSIX 1003.1-1988 or later for errno.h (Bug#12968).
1778 * dired.c (directory_files_internal, file_name_completion):
1779 Assume EAGAIN and EINTR are defined.
1780
1781 * fileio.c (Fcopy_file): Assume EISDIR is defined.
1782 * gmalloc.c (ENOMEM, EINVAL): Assume they're defined.
1783 * gnutls.c (emacs_gnutls_write): Assume EAGAIN is defined.
1784 * lread.c (readbyte_from_file): Assume EINTR is defined.
1785 * process.c (wait_reading_process_output, send_process) [subprocesses]:
1786 Assume EIO and EAGAIN are defined.
1787 * unexcoff.c (write_segment): Assume EFAULT is defined.
1788
1789 2012-11-27 Eli Zaretskii <eliz@gnu.org>
1790
1791 * fontset.c (Finternal_char_font): Return nil on non-GUI frames.
1792 (Bug#11964)
1793
1794 * xdisp.c (draw_glyphs): Don't draw in mouse face if mouse
1795 highlighting on the frame was cleared. Prevents assertion
1796 violations when repeatedly clicking on the "Top" link of the
1797 "bread-crumbs" in Info buffers.
1798
1799 2012-11-25 Paul Eggert <eggert@cs.ucla.edu>
1800
1801 * sysdep.c (sys_subshell): Don't assume pid_t fits in int.
1802
1803 2012-11-24 Ken Brown <kbrown@cornell.edu>
1804
1805 * keyboard.c (HAVE_MOUSE):
1806 * frame.c (HAVE_MOUSE): Remove, and rewrite code as if HAVE_MOUSE
1807 were always defined.
1808
1809 2012-11-24 Eli Zaretskii <eliz@gnu.org>
1810
1811 * xdisp.c (set_cursor_from_row): Skip step 2 only if point is not
1812 between bpos_covered and bpos_max. This fixes cursor display when
1813 several display strings follow each other.
1814
1815 * .gdbinit (pgx): If the glyph's object is a string, display the
1816 pointer to string data, rather than the value of the string object
1817 itself (which barfs under CHECK_LISP_OBJECT_TYPE).
1818
1819 * indent.c (Fvertical_motion): If the starting position is covered
1820 by a display string, return to one position before that, to avoid
1821 overshooting it inside move_it_to. (Bug#12930)
1822
1823 2012-11-23 Dmitry Antipov <dmantipov@yandex.ru>
1824
1825 * frame.h (struct frame): Remove display_preempted member
1826 since all users are dead long ago.
1827 * nsterm.h (struct x_output): Use the only dummy member.
1828 * w32menu.c (pending_menu_activation): Remove since not
1829 really used.
1830 (set_frame_menubar): Adjust user.
1831 * w32term.h (struct x_output): Drop outdated #if 0 code.
1832 (struct w32_output): Use bitfields for explicit_parent,
1833 asked_for_visible and menubar_active members.
1834 Drop unused pending_menu_activation member.
1835 * xterm.h (struct x_output): Drop outdated #if 0 code.
1836 Use bitfields for explicit_parent, asked_for_visible,
1837 has_been_visible and net_wm_state_hidden_seen members.
1838
1839 2012-11-23 Eli Zaretskii <eliz@gnu.org>
1840
1841 * makefile.w32-in (globals.h, gl-stamp): Use $(SWITCHCHAR) instead
1842 of a literal "/". (Bug#12955)
1843 (gl-stamp): Invoke fc.exe directly, not through cmd.
1844
1845 2012-11-23 Paul Eggert <eggert@cs.ucla.edu>
1846
1847 Assume POSIX 1003.1-1988 or later for dirent.h (Bug#12958).
1848 * dired.c: Assume HAVE_DIRENT_H.
1849 (NAMLEN): Remove, replacing with ...
1850 (dirent_namelen): New function. All uses changed. Use the GNU macro
1851 _D_EXACT_NAMELEN if available, as it's faster than strlen.
1852 (DIRENTRY): Remove, replacing all uses with 'struct dirent'.
1853 (DIRENTRY_NONEMPTY): Remove. All callers now assume it's nonzero.
1854 * makefile.w32-in (DIR_H): Remove. All uses replaced with
1855 $(NT_INC)/dirent.h.
1856 ($(BLD)/w32.$(O)): Do not depend on $(SRC)/ndir.h.
1857 * ndir.h: Rename to ../nt/inc/dirent.h.
1858 * sysdep.h (closedir) [!HAVE_CLOSEDIR]: Remove.
1859 Do not include <dirent.h>; no longer needed.
1860 * w32.c: Include <dirent.h> rather than "ndir.h".
1861
1862 2012-11-23 Chong Yidong <cyd@gnu.org>
1863
1864 * xftfont.c (xftfont_open): Remove duplicate assignment.
1865
1866 2012-11-22 Dmitry Antipov <dmantipov@yandex.ru>
1867
1868 * alloc.c (Fgarbage_collect): Unblock input after clearing
1869 gc_in_progress to avoid note_mouse_highlight glitch with GC.
1870 * frame.h (FRAME_MOUSE_UPDATE): New macro.
1871 * msdos.c (IT_frame_up_to_date): Use it here...
1872 * w32term.c (w32_frame_up_to_date): ...here...
1873 * xterm.c (XTframe_up_to_date): ...and here...
1874 * nsterm.m (ns_frame_up_to_date): ...but not here.
1875 * lisp.h (Mouse_HLInfo): Remove mouse_face_deferred_gc member.
1876 Adjust users.
1877 * xdisp.c (message2_nolog, message3_nolog, note_mouse_highlight):
1878 Do not check whether GC is in progress.
1879
1880 2012-11-22 Dmitry Antipov <dmantipov@yandex.ru>
1881
1882 * xdisp.c (window_buffer_changed): New function.
1883 (update_menu_bar, update_tool_bar): Use it to
1884 simplify large 'if' statements.
1885 (redisplay_internal): Generalize commonly used
1886 'tail' and 'frame' local variables.
1887
1888 2012-11-22 Eli Zaretskii <eliz@gnu.org>
1889
1890 * w32.c (getcwd): Fix the 2nd argument type, to prevent conflicts
1891 with Windows system header.
1892
1893 2012-11-21 Paul Eggert <eggert@cs.ucla.edu>
1894
1895 Assume POSIX 1003.1-1988 or later for unistd.h (Bug#12945).
1896 * alloc.c: Assume unistd.h exists.
1897 * fileio.c (Fexpand_file_name) [DOS_NT]: Use getcwd, not getwd.
1898 * sysdep.c (get_current_dir_name): Assume getcwd exists.
1899 (getwd) [USG]: Remove; no longer needed.
1900 (sys_subshell) [DOS_NT]: Use getcwd, not getwd.
1901 * w32.c (getcwd): Rename from getwd, and switch to getcwd's API.
1902 * w32.h (getcwd): Remove decl.
1903
1904 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
1905
1906 * xdisp.c (fast_set_selected_frame): Rename from update_tool_bar_unwind.
1907 Make it set selected_window as well.
1908 (update_tool_bar): Use it.
1909
1910 2012-11-21 Ken Brown <kbrown@cornell.edu>
1911
1912 * emacs.c (main): Set the G_SLICE environment variable for all
1913 Cygwin builds, not just GTK builds. See
1914 https://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00368.html.
1915
1916 2012-11-21 Eli Zaretskii <eliz@gnu.org>
1917
1918 * w32.c (FILE_DEVICE_FILE_SYSTEM, METHOD_BUFFERED)
1919 (FILE_ANY_ACCESS, CTL_CODE, FSCTL_GET_REPARSE_POINT) [_MSC_VER]:
1920 Define for the MSVC compiler.
1921
1922 * w32term.h (EnumSystemLocalesW) [_MSC_VER]: Add a missing semi-colon.
1923
1924 * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
1925 (Fexpand_file_name) [DOS_NT]: Pass encoded file name to
1926 dostounix_filename. Prevents crashes down the road, because
1927 dostounix_filename assumes it gets a unibyte string.
1928 Reported by Michel de Ruiter <michel@sentient.nl>, see
1929 http://lists.gnu.org/archive/html/help-emacs-windows/2012-11/msg00017.html
1930
1931 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
1932
1933 Conflate Qnil and Qunbound for `symbol-function'.
1934 * alloc.c (Fmake_symbol): Initialize `function' to Qnil.
1935 * lread.c (init_obarray): Set `function' fields to Qnil.
1936 * eval.c (Fcommandp): Ignore Qunbound.
1937 (Fautoload, eval_sub, Fapply, Ffuncall, Fmacroexpand):
1938 * data.c (Ffset, Ffboundp, indirect_function, Findirect_function):
1939 Test NILP rather than Qunbound.
1940 (Ffmakunbound): Set to Qnil.
1941 (Fsymbol_function): Never signal an error.
1942 (Finteractive_form): Ignore Qunbound.
1943
1944 2012-11-20 Paul Eggert <eggert@cs.ucla.edu>
1945
1946 * eval.c (interactive_p): Remove no-longer-used decl.
1947
1948 2012-11-20 Dmitry Antipov <dmantipov@yandex.ru>
1949
1950 * xdisp.c (buffer_shared): Adjust comment.
1951 (buffer_shared_and_changed): New function.
1952 (prepare_menu_bars, redisplay_internal): Use it to
1953 decide whether all windows or frames should be updated.
1954 (window_outdated): New function.
1955 (text_outside_line_unchanged_p, redisplay_window): Use it.
1956 (redisplay_internal): Likewise. Fix indentation.
1957
1958 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
1959
1960 * eval.c (Finteractive_p, Fcalled_interactively_p, interactive_p): Remove.
1961 (syms_of_eval): Remove corresponding defsubr.
1962 * bytecode.c (exec_byte_code): `interactive-p' is now a Lisp function.
1963
1964 2012-11-19 Daniel Colascione <dancol@dancol.org>
1965
1966 * w32fns.c (Fx_file_dialog):
1967 (Fx_file_dialog): Accomodate rename of cygwin_convert_path* to
1968 cygwin_convert_file_name*.
1969
1970 * cygw32.c (Fcygwin_convert_path_to_windows, syms_of_cygw32):
1971 Rename cygwin_convert_path* to cygwin_convert_file_name*.
1972
1973 2012-11-18 Paul Eggert <eggert@cs.ucla.edu>
1974
1975 * nsterm.m (ns_select): Send SIGIO only to self, not to process group.
1976
1977 2012-11-18 Eli Zaretskii <eliz@gnu.org>
1978
1979 * w32select.c: Include w32common.h before w32term.h, so that
1980 windows.h gets included before w32term.h uses some of its
1981 features, see below.
1982
1983 * w32term.h (LOCALE_ENUMPROCA, LOCALE_ENUMPROCW) [_MSC_VER]:
1984 New typedefs.
1985 (EnumSystemLocalesA, EnumSystemLocalesW) [_MSC_VER]:
1986 New prototypes.
1987 (EnumSystemLocales) [_MSC_VER]: Define if undefined. (Bug#12878)
1988
1989 2012-11-18 Jan Djärv <jan.h.d@swipnet.se>
1990
1991 * nsterm.m (hold_event): Set send_appdefined to YES (Bug#12834).
1992 (ns_select): Return at once if events are held (Bug#12834).
1993
1994 2012-11-18 enami tsugutomo <tsugutomo.enami@jp.sony.com>
1995
1996 * unexelf.c (ELFSIZE) [__NetBSD__ && _LP64]: Set to 64.
1997 Needed following 2012-10-20 change. (Bug#12902)
1998
1999 2012-11-18 Juanma Barranquero <lekktu@gmail.com>
2000
2001 * w32proc.c (waitpid): Remove unused label get_result.
2002
2003 2012-11-17 Juanma Barranquero <lekktu@gmail.com>
2004
2005 * makefile.w32-in (SYSWAIT_H): New macro.
2006 ($(BLD)/callproc.$(O), $(BLD)/w32proc.$(O), $(BLD)/process.$(O))
2007 ($(BLD)/sysdep.$(O)): Update dependencies.
2008
2009 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
2010
2011 Assume POSIX 1003.1-1988 or later for fcntl.h (Bug#12881).
2012 * callproc.c (relocate_fd): Assume F_DUPFD.
2013 * emacs.c, term.c (O_RDWR): Remove.
2014 * keyboard.c (tty_read_avail_input): Use O_NONBLOCK rather than
2015 O_NDELAY, since O_NONBLOCK is the standard name for this flag.
2016 * nsterm.m: Assume <fcntl.h> exists.
2017 * process.c (NON_BLOCKING_CONNECT, allocate_pty, create_process)
2018 (create_pty, Fmake_network_process, server_accept_connection)
2019 (wait_reading_process_output, init_process_emacs):
2020 Assume O_NONBLOCK.
2021 (wait_reading_process_output): Put in a special case for WINDOWSNT
2022 to mimick the older behavior where it had O_NDELAY but not O_NONBLOCK.
2023 It's not clear this is needed, but it's a more-conservative change.
2024 (create_process): Assume FD_CLOEXEC.
2025 (create_process, create_pty): Assume O_NOCTTY.
2026 * sysdep.c (init_sys_modes, reset_sys_modes): Assume F_SETFL.
2027 (reset_sys_modes): Use O_NONBLOCK rather than O_NDELAY.
2028 Omit if not DOS_NT, since F_GETFL is not defined there.
2029 (serial_open): Assume O_NONBLOCK and O_NOCTTY.
2030 * term.c: Include <fcntl.h>, for flags like O_NOCTTY.
2031 (O_NOCTTY): Remove.
2032 (init_tty): Assume O_IGNORE_CTTY is defined to 0 on platforms that
2033 lack it, since gnulib guarantees this.
2034 * w32.c (fcntl): Test for O_NONBLOCK rather than O_NDELAY.
2035
2036 2012-11-17 Eli Zaretskii <eliz@gnu.org>
2037
2038 * w32.c (faccessat): Pretend that directories have the execute bit
2039 set. Emacs expects that, e.g., in files.el:cd-absolute.
2040
2041 * w32proc.c (create_child): Don't clip the PID of the child
2042 process to fit into an Emacs integer, as this is no longer a
2043 restriction.
2044 (waitpid): Rename from sys_wait. Emulate a Posix 'waitpid' by
2045 reaping only the process specified by PID argument, if that is
2046 positive. Use PID instead of dead_child to know which process to
2047 reap. Wait for the child to die only if WNOHANG is not in
2048 OPTIONS.
2049 (sys_select): Don't set dead_child.
2050
2051 * sysdep.c (wait_for_termination_1): Remove the WINDOWSNT portion,
2052 as it is no longer needed.
2053
2054 * process.c (waitpid, WUNTRACED) [!WNOHANG]: Remove definitions,
2055 no longer needed.
2056 (record_child_status_change): Remove the setting of
2057 record_at_most_one_child for the !WNOHANG case.
2058
2059 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
2060
2061 Fix problems in ns port found by static checking.
2062 * nsterm.m: Include <pthread.h>, for pthread_mutex_lock etc.
2063 (hold_event, setPosition:portion:whole:): Send SIGIO only to self,
2064 not to process group.
2065 (ns_select): Use emacs_write, not write, as that's more robust
2066 in the presence of signals.
2067 (fd_handler:): Check for read errors.
2068
2069 2012-11-16 Glenn Morris <rgm@gnu.org>
2070
2071 * editfns.c (Fmessage): Mention message-log-max. (Bug#12849)
2072
2073 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
2074
2075 * eval.c (Finteractive_p): Revert lexbind-merge mishap.
2076
2077 2012-11-16 Eli Zaretskii <eliz@gnu.org>
2078
2079 * w32proc.c (timer_loop): Make sure SuspendThread and ResumeThread
2080 use the same value of thread handle.
2081 (start_timer_thread): If the timer thread exited (due to error),
2082 clean up by closing the two handles it used. Duplicate the caller
2083 thread's handle here, so it gets duplicated only once, when
2084 launching the timer thread. Set priority of the timer thread, not
2085 the caller thread.
2086 (getitimer): Don't duplicate the caller thread's handle here.
2087 (Bug#12832)
2088
2089 2012-11-16 Jan Djärv <jan.h.d@swipnet.se>
2090
2091 * nsterm.m (hold_event): Send SIGIO to make sure ns_read_socket is
2092 called (Bug#12834).
2093
2094 2012-11-16 Paul Eggert <eggert@cs.ucla.edu>
2095
2096 Remove no-longer-used pty_max_bytes variable.
2097 * process.c (pty_max_bytes): Remove; unused.
2098 (send_process): Do not set it.
2099
2100 2012-11-15 Juanma Barranquero <lekktu@gmail.com>
2101
2102 * makefile.w32-in ($(BLD)/dispnew.$(O), $(BLD)/emacs.$(O)):
2103 Update dependencies.
2104
2105 2012-11-15 Paul Eggert <eggert@cs.ucla.edu>
2106
2107 * eval.c (mark_backtrace) [BYTE_MARK_STACK]: Remove stray '*'.
2108 This follows up on the 2012-09-29 patch that removed indirection
2109 for the 'function' field. Reported by Sergey Vinokurov in
2110 <http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00263.html>.
2111
2112 2012-11-14 Eli Zaretskii <eliz@gnu.org>
2113
2114 * w32.c (faccessat): Rename from sys_faccessat. (No need to use a
2115 different name, as the MS runtime does not have such a function,
2116 and probably never will.) All callers changed. Ignore DIRFD
2117 value if PATH is an absolute file name, to match Posix spec
2118 better. If AT_SYMLINK_NOFOLLOW is set in FLAGS, don't resolve
2119 symlinks.
2120
2121 2012-11-14 Dmitry Antipov <dmantipov@yandex.ru>
2122
2123 * xdisp.c (echo_area_display, redisplay_internal):
2124 Omit redundant check whether frame_garbaged is set.
2125
2126 2012-11-14 Paul Eggert <eggert@cs.ucla.edu>
2127
2128 Use faccessat, not access, when checking file permissions (Bug#12632).
2129 This fixes a bug that has been present in Emacs since its creation.
2130 It was reported by Chris Torek in 1983 even before GNU Emacs existed,
2131 which must set some sort of record. (Torek's bug report was against
2132 a predecessor of GNU Emacs, but GNU Emacs happened to have the
2133 same common flaw.) See Torek's Usenet posting
2134 "setuid/setgid programs & Emacs" Article-I.D.: sri-arpa.858
2135 Posted: Fri Apr 8 14:18:56 1983.
2136 * Makefile.in (LIB_EACCESS): New macro.
2137 (LIBES): Use it.
2138 * callproc.c (init_callproc):
2139 * charset.c (init_charset):
2140 * fileio.c (check_existing, check_executable, check_writable)
2141 (Ffile_readable_p):
2142 * lread.c (openp, load_path_check):
2143 * process.c (allocate_pty):
2144 * xrdb.c (file_p):
2145 Use effective UID when checking permissions, not real UID.
2146 * callproc.c (init_callproc):
2147 * charset.c (init_charset):
2148 * lread.c (load_path_check, init_lread):
2149 Test whether directories are accessible, not merely whether they exist.
2150 * conf_post.h (GNULIB_SUPPORT_ONLY_AT_FDCWD): New macro.
2151 * fileio.c (check_existing, check_executable, check_writable)
2152 (Ffile_readable_p):
2153 Use symbolic names instead of integers for the flags, as they're
2154 portable now.
2155 (check_writable): New arg AMODE. All uses changed.
2156 Set errno on failure.
2157 (Ffile_readable_p): Use faccessat, not stat + open + close.
2158 (Ffile_writable_p): No need to call check_existing + check_writable.
2159 Just call check_writable and then look at errno. This saves a syscall.
2160 dir should never be nil; replace an unnecessary runtime check
2161 with an eassert. When checking the parent directory of a nonexistent
2162 file, check that the directory is searchable as well as writable, as
2163 we can't create files in unsearchable directories.
2164 (file_directory_p): New function, which uses 'stat' on most platforms
2165 but faccessat with D_OK (for efficiency) if WINDOWSNT.
2166 (Ffile_directory_p, Fset_file_times): Use it.
2167 (file_accessible_directory_p): New function, which uses a single
2168 syscall for efficiency.
2169 (Ffile_accessible_directory_p): Use it.
2170 * xrdb.c (file_p): Use file_directory_p.
2171 * lisp.h (file_directory_p, file_accessible_directory_p): New decls.
2172 * lread.c (openp): When opening a file, use fstat rather than
2173 stat, as that avoids a permissions race. When not opening a file,
2174 use file_directory_p rather than stat.
2175 (dir_warning): First arg is now a usage string, not a format.
2176 Use errno. All uses changed.
2177 * nsterm.m (ns_term_init): Remove unnecessary call to file-readable
2178 that merely introduced a race.
2179 * process.c, sysdep.c, term.c: All uses of '#ifdef O_NONBLOCK'
2180 changed to '#if O_NONBLOCK', to accommodate gnulib O_* style,
2181 and similarly for the other O_* flags.
2182 * w32.c (sys_faccessat): Rename from sys_access and switch to
2183 faccessat's API. All uses changed.
2184 * xrdb.c: Do not include <sys/stat.h>; no longer needed.
2185 (magic_db): Rename from magic_file_p.
2186 (magic_db, search_magic_path): Return an XrmDatabase rather than a
2187 char *, so that we don't have to test for file existence
2188 separately from opening the file for reading. This removes a race
2189 fixes a permission-checking problem, and simplifies the code.
2190 All uses changed.
2191 (file_p): Remove; no longer needed.
2192
2193 2012-11-13 Dmitry Antipov <dmantipov@yandex.ru>
2194
2195 Omit glyphs initialization at startup.
2196 * dispnew.c (glyphs_initialized_initially_p): Remove.
2197 (adjust_frame_glyphs_initially): Likewise. Adjust users.
2198 (Fredraw_frame): Move actual code from here...
2199 (redraw_frame): ...to here. Add eassert. Adjust comment.
2200 (Fredraw_display): Use redraw_frame.
2201 * xdisp.c (clear_garbaged_frames): Likewise.
2202
2203 2012-11-13 Eli Zaretskii <eliz@gnu.org>
2204
2205 * xdisp.c (decode_mode_spec): Limit the value of WIDTH argument
2206 passed to pint2str and pint2hrstr to be at most the size of the
2207 frame's decode_mode_spec_buffer. This avoids crashes with very
2208 large values of FIELD_WIDTH argument to decode_mode_spec.
2209 (Bug#12867)
2210
2211 2012-11-13 Paul Eggert <eggert@cs.ucla.edu>
2212
2213 Fix a race with verify-visited-file-modtime (Bug#12863).
2214 Since at least 1991 Emacs has ignored an mtime difference of no
2215 more than one second, but my guess is that this was to work around
2216 file system bugs that were fixed long ago. Since the race is
2217 causing problems now, let's remove that code.
2218 * fileio.c (Fverify_visited_file_modtime): Do not accept a file
2219 whose time stamp is off by no more than a second. Insist that the
2220 file time stamps match exactly.
2221
2222 2012-11-12 Dmitry Antipov <dmantipov@yandex.ru>
2223
2224 * frame.h (struct frame): Convert external_tool_bar member to
2225 1-bit unsigned bitfield.
2226 * termhooks.h (struct terminal): Remove mouse_moved member since
2227 all users are long dead. Adjust comment on mouse_position_hook.
2228
2229 2012-11-12 Dmitry Antipov <dmantipov@yandex.ru>
2230
2231 Simplify by using FOR_EACH_FRAME here and there.
2232 * frame.c (next_frame, prev_frame, other_visible_frames)
2233 (delete_frame, visible-frame-list): Use FOR_EACH_FRAME.
2234 * w32term.c (x_window_to_scroll_bar): Likewise.
2235 * window.c (window_list): Likewise.
2236 * xdisp.c (x_consider_frame_title): Likewise.
2237 * xfaces.c ( Fdisplay_supports_face_attributes_p): Likewise.
2238 * xfns.c (x_window_to_frame, x_any_window_to_frame)
2239 (x_menubar_window_to_frame, x_top_window_to_frame): Likewise.
2240 * xmenu.c (menubar_id_to_frame): Likewise.
2241 * xselect.c (frame_for_x_selection): Likewise.
2242 * xterm.c (x_frame_of_widget, x_window_to_scroll_bar)
2243 (x_window_to_menu_bar): Likewise.
2244 * w32fns.c (x_window_to_frame): Likewise. Adjust comment.
2245
2246 2012-11-12 Paul Eggert <eggert@cs.ucla.edu>
2247
2248 * data.c (Qdefalias_fset_function): Now static.
2249
2250 Another tweak to vectorlike_header change.
2251 * alloc.c (struct Lisp_Vectorlike_Free, NEXT_IN_FREE_LIST):
2252 Remove, and replace all uses with ...
2253 (next_in_free_list, set_next_in_free_list):
2254 New functions, which respect C's aliasing rules better.
2255
2256 2012-11-11 Paul Eggert <eggert@cs.ucla.edu>
2257
2258 * window.c (list4i): Rename from 'quad'. All uses changed.
2259 Needed because <sys/types.h> defines 'quad' on Solaris 10.
2260
2261 2012-11-11 Juanma Barranquero <lekktu@gmail.com>
2262
2263 * xdisp.c (start_hourglass) [HAVE_NTGUI]: Add block to silence
2264 warning about mixing declarations and code in ISO C90.
2265
2266 2012-11-10 Martin Rudalics <rudalics@gmx.at>
2267
2268 * window.c (Fsplit_window_internal): Set combination limit of
2269 new parent window to t iff Vwindow_combination_limit is t;
2270 fixing a regression introduced with the change from 2012-09-22.
2271 (Fset_window_combination_limit): Fix doc-string.
2272
2273 2012-11-10 Eli Zaretskii <eliz@gnu.org>
2274
2275 * xdisp.c (try_scrolling): Fix correction of aggressive-scroll
2276 amount when the scroll margins are too large. When scrolling
2277 backwards in the buffer, give up if cannot reach point or the
2278 scroll margin within a reasonable number of screen lines.
2279 Fixes point position in window under scroll-up/down-aggressively when
2280 point is positioned many lines beyond the window top/bottom.
2281 (Bug#12811)
2282
2283 * ralloc.c (relinquish): If real_morecore fails to return memory
2284 to the system, don't crash; instead, leave the last heap
2285 unchanged and return. (Bug#12774)
2286
2287 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
2288
2289 * lisp.h (AUTOLOADP): New macro.
2290 * eval.c (Fautoload): Don't attach to loadhist, call Fdefalias instead.
2291 * data.c (Ffset): Remove special ad-advice-info handling.
2292 (Fdefalias): Handle autoload definitions and new Qdefalias_fset_function.
2293 (Fsubr_arity): CSE.
2294 (Finteractive_form): Simplify.
2295 (Fquo): Don't insist on having at least 2 arguments.
2296 (Qdefalias_fset_function): New var.
2297
2298 2012-11-09 Jan Djärv <jan.h.d@swipnet.se>
2299
2300 * image.c (xpm_make_color_table_h): Change to hashtest_equal.
2301
2302 * nsfont.m (Qcondensed, Qexpanded): New variables.
2303 (ns_descriptor_to_entity): Restore Qcondensed, Qexpanded setting.
2304 (syms_of_nsfont): Defsym Qcondensed, Qexpanded.
2305
2306 2012-11-09 Dmitry Antipov <dmantipov@yandex.ru>
2307
2308 Fix recently introduced crash on MS-Windows (Bug#12839).
2309 * w32term.h (struct scroll_bar): Use convenient header.
2310 (SCROLL_BAR_VEC_SIZE): Remove.
2311 * w32term.c (x_scroll_bar_create): Use VECSIZE.
2312
2313 2012-11-09 Dmitry Antipov <dmantipov@yandex.ru>
2314
2315 Tweak last vectorlike_header change.
2316 * alloc.c (struct Lisp_Vectorlike_Free): Special type to represent
2317 vectorlike object on the free list. This is introduced to avoid
2318 some (but not all) pointer casting and aliasing problems, see
2319 http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00105.html.
2320 * .gdbinit (pvectype, pvecsize): New commands to examine vectorlike
2321 objects.
2322 (xvectype, xvecsize): Use them to examine Lisp_Object values.
2323
2324 2012-11-09 Jan Djärv <jan.h.d@swipnet.se>
2325
2326 * nsfont.m (ns_descriptor_to_entity): Qcondensed and Qexpanded has
2327 been removed, so remove them here also.
2328
2329 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
2330
2331 * doc.c (Fdocumentation): Handle new property
2332 dynamic-docstring-function to replace the old ad-advice-info.
2333
2334 2012-11-09 Paul Eggert <eggert@cs.ucla.edu>
2335
2336 * fns.c (Qeql, hashtest_eq): Now static.
2337
2338 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
2339
2340 * lisp.h (XHASH): Redefine to be imperfect and fit in a Lisp int.
2341 * fns.c (hashfn_eq, hashfn_eql, sxhash):
2342 * profiler.c (hashfn_profiler): Don't use XUINT on non-integers.
2343 * buffer.c (compare_overlays): Use XLI rather than XHASH.
2344
2345 2012-11-08 Paul Eggert <eggert@cs.ucla.edu>
2346
2347 Use same hash function for hashfn_profiler as for hash_string etc.
2348 * fns.c (SXHASH_COMBINE): Remove. All uses replaced by sxhash_combine.
2349 * lisp.h (sxhash_combine): New inline function, with the contents
2350 of the old SXHASH_COMBINE.
2351 * profiler.c (hashfn_profiler): Use it, instead of having a
2352 special hash function containing a comparison that always yields 1.
2353
2354 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
2355
2356 * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic)
2357 (Qultra_condensed, Qextra_condensed, Qcondensed, Qsemi_condensed)
2358 (Qsemi_expanded, Qextra_expanded, Qexpanded, Qultra_expanded):
2359 Remove unused vars.
2360
2361 2012-11-08 Jan Djärv <jan.h.d@swipnet.se>
2362
2363 * image.c (xpm_make_color_table_h): Fix compiler error because
2364 make_hash_table changed.
2365
2366 2012-11-08 Thomas Kappler <tkappler@gmail.com> (tiny change)
2367
2368 * nsfont.m (ns_findfonts): Handle empty matchingDescs (Bug#11541).
2369
2370 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
2371
2372 Use ad-hoc comparison function for the profiler's hash-tables.
2373 * profiler.c (Qprofiler_backtrace_equal, hashtest_profiler): New vars.
2374 (make_log): Use them.
2375 (handle_profiler_signal): Don't inhibit quit any longer since we don't
2376 call Fequal any more.
2377 (Ffunction_equal): New function.
2378 (cmpfn_profiler, hashfn_profiler): New functions.
2379 (syms_of_profiler): Initialize them.
2380 * lisp.h (struct hash_table_test): New struct.
2381 (struct Lisp_Hash_Table): Use it.
2382 * alloc.c (mark_object): Mark hash_table_test fields of hash tables.
2383 * fns.c (make_hash_table): Take a struct to describe the test.
2384 (cmpfn_eql, cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
2385 (hashfn_equal, hashfn_user_defined): Adjust to new calling convention.
2386 (hash_lookup, hash_remove_from_table): Move assertion checking of
2387 hashfn result here. Check hash-equality before calling cmpfn.
2388 (Fmake_hash_table): Adjust call to make_hash_table.
2389 (hashtest_eq, hashtest_eql, hashtest_equal): New structs.
2390 (syms_of_fns): Initialize them.
2391 * emacs.c (main): Move syms_of_fns earlier.
2392 * xterm.c (syms_of_xterm):
2393 * category.c (hash_get_category_set): Adjust call to make_hash_table.
2394 * print.c (print_object): Adjust to new hash-table struct.
2395 * composite.c (composition_gstring_put_cache): Adjust to new hashfn.
2396
2397 2012-11-08 Eli Zaretskii <eliz@gnu.org>
2398
2399 * w32fns.c (modifier_set): Fix handling of Scroll Lock when the
2400 value of w32-scroll-lock-modifier is neither nil nor one of the
2401 known key modifiers. (Bug#12806)
2402
2403 2012-11-08 Dmitry Antipov <dmantipov@yandex.ru>
2404
2405 Shrink struct vectorlike_header to the only size field.
2406 * lisp.h (enum pvec_type): Avoid explicit enum member values.
2407 Adjust comment.
2408 (enum More_Lisp_Bits): Change PSEUDOVECTOR_SIZE_BITS and
2409 PVEC_TYPE_MASK to arrange new bitfield in the vector header.
2410 (PSEUDOVECTOR_REST_BITS, PSEUDOVECTOR_REST_MASK): New members.
2411 (PSEUDOVECTOR_AREA_BITS): New member used to extract subtype
2412 information from the vector header. Adjust comment.
2413 (XSETPVECTYPE, XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR)
2414 (PSEUDOVECTOR_TYPEP, DEFUN): Adjust to match new vector header
2415 layout.
2416 (XSETSUBR, SUBRP): Adjust to match new Lisp_Subr layout.
2417 (struct vectorlike_header): Remove next member. Adjust comment.
2418 (struct Lisp_Subr): Add convenient header. Adjust comment.
2419 (allocate_pseudovector): Adjust prototype.
2420 * alloc.c (mark_glyph_matrix, mark_face_cache, allocate_string)
2421 (sweep_string, lisp_malloc): Remove useless prototypes.
2422 (enum mem_type): Adjust comment.
2423 (NEXT_IN_FREE_LIST): New macro.
2424 (SETUP_ON_FREE_LIST): Adjust XSETPVECTYPESIZE usage.
2425 (Fmake_bool_vector): Likewise.
2426 (struct large_vector): New type to represent allocation unit for
2427 the vectors with the memory footprint more than VBLOOCK_BYTES_MAX.
2428 (large_vectors): Change type to struct large_vector.
2429 (allocate_vector_from_block): Simplify.
2430 (PSEUDOVECTOR_NBYTES): Replace with...
2431 (vector_nbytes): ...new function. Adjust users.
2432 (sweep_vectors): Adjust processing of large vectors.
2433 (allocate_vectorlike): Likewise.
2434 (allocate_pseudovector): Change type of 3rd arg to enum pvec_type.
2435 Add easserts. Adjust XSETPVECTYPESIZE usage.
2436 (allocate_buffer): Use BUFFER_PVEC_INIT.
2437 (live_vector_p): Adjust to match large vector.
2438 * buffer.c (init_buffer_once): Use BUFFER_PVEC_INIT.
2439 * buffer.h (struct buffer): Add next member.
2440 (BUFFER_LISP_SIZE, BUFFER_REST_SIZE, BUFFER_PVEC_INIT):
2441 New macros.
2442 (FOR_EACH_BUFFER): Adjust to match struct buffer change.
2443 * fns.c (internal_equal): Adjust to match enum pvec_type change.
2444 (copy_hash_table): Adjust to match vector header change.
2445 * lread.c (defsubr): Use XSETPVECTYPE.
2446 * .gdbinit (xpr, xbacktrace): Adjust to match vector header change.
2447 (xvectype): Likewise. Print PVEC_NORMAL_VECTOR for regular vectors.
2448 (xvecsize): New command.
2449
2450 2012-11-08 Dmitry Antipov <dmantipov@yandex.ru>
2451
2452 * keyboard.c (event_to_kboard): Do not dereference
2453 frame_or_window field of SELECTION_REQUEST_EVENT
2454 and SELECTION_CLEAR_EVENT events (Bug#12814).
2455 * xterm.h (struct selection_input_event): Adjust comment.
2456
2457 2012-11-07 Eli Zaretskii <eliz@gnu.org>
2458
2459 * w32fns.c (modifier_set): Don't report modifiers from toggle key,
2460 such as Scroll Lock, if the respective keys are treated as
2461 function keys, not as modifiers. This avoids destroying non-ASCII
2462 keyboard input when Scroll Lock is toggled ON. (Bug#12806)
2463
2464 2012-11-07 Dmitry Antipov <dmantipov@yandex.ru>
2465
2466 * xfns.c (Fx_wm_set_size_hint): Use check_x_frame. Adjust docstring.
2467
2468 2012-11-06 Paul Eggert <eggert@cs.ucla.edu>
2469
2470 Restore some duplicate definitions (Bug#12814).
2471 This undoes part of the 2012-11-03 changes. Some people build
2472 with plain -g rather than with -g3, and they need the duplicate
2473 definitions for .gdbinit to work; see <http://bugs.gnu.org/12814#26>.
2474 * lisp.h (GCTYPEBITS, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK):
2475 Define as macros, as well as as enums or as constants.
2476
2477 2012-11-06 Jan Djärv <jan.h.d@swipnet.se>
2478
2479 * nsterm.m (convert_ns_to_X_keysym, keyDown:): Add NSNumericPadKeyMask
2480 to keypad keys (Bug#12816).
2481
2482 2012-11-06 Paul Eggert <eggert@cs.ucla.edu>
2483
2484 Minor adjustments of recently-changed frame functions.
2485 * buffer.c (Fbuffer_list): Omit CHECK_FRAME, since arg is already
2486 known to be a frame (we're in the FRAMEP branch).
2487 * lisp.h (Qframep): Remove decl. frame.h declares this.
2488 * window.c (quad): Args are of type EMACS_INT, not ptrdiff_t,
2489 since they're meant for Lisp fixnum values.
2490
2491 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
2492
2493 * window.c (Fwindow_combination_limit): Revert to the only
2494 required argument and adjust docstring as suggested in
2495 http://lists.gnu.org/archive/html/emacs-diffs/2012-11/msg01082.html
2496 by Martin Rudalics <rudalics@gmx.at>.
2497
2498 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
2499
2500 Widely used frame validity and checking functions.
2501 * frame.h (decode_live_frame, decode_any_frame): Add prototypes.
2502 * frame.c (decode_live_frame, decode_any_frame): New functions.
2503 (delete_frame, Fredirect_frame_focus, Fframe_parameters)
2504 (Fframe_parameter, Fframe_char_height, Fframe_char_width)
2505 (Fframe_pixel_height, Fframe_pixel_width, Ftool_bar_pixel_width)
2506 (Fframe_pointer_visible_p): Use decode_any_frame.
2507 (Fmake_frame_visible, Fmake_frame_invisible, Ficonify_frame)
2508 (Fraise_frame, Flower_frame, Fmodify_frame_parameters)
2509 (Fset_frame_height, Fset_frame_width): Use decode_live_frame.
2510 (Fframe_focus): Likewise. Allow zero number of arguments.
2511 Adjust docstring.
2512 (frame_buffer_list, frame_buffer_predicate): Remove.
2513 * lisp.h (frame_buffer_predicate): Remove prototype.
2514 * buffer.c (Fother_buffer): Use decode_any_frame.
2515 * xdisp.c (Ftool_bar_lines_needed): Likewise.
2516 * xfaces.c (Fcolor_gray_p, Fcolor_supported_p): Likewise.
2517 * font.c (Ffont_face_attributes, Ffont_family_list, Fopen_font)
2518 (Fclose_font, Ffont_info): Use decode_live_frame.
2519 * fontset.c (check_fontset_name): Likewise.
2520 * terminal.c (Fframe_terminal): Likewise.
2521 * w32fns.c (check_x_frame): Likewise.
2522 * window.c (Fminibuffer_window, Fwindow_at)
2523 (Fcurrent_window_configuration): Likewise.
2524 (Frun_window_configuration_change_hook, Fwindow_resize_apply):
2525 Likewise. Allow zero number of arguments. Adjust docstring.
2526 * dispnew.c (Fredraw_frame): Likewise.
2527 * xfaces.c (frame_or_selected_frame): Remove.
2528 (Fx_list_fonts, Finternal_get_lisp_face_attribute, Fface_font)
2529 (Finternal_lisp_face_equal_p, Finternal_lisp_face_empty_p)
2530 (Fframe_face_alist): Use decode_live_frame.
2531 * xfns.c (check_x_frame): Likewise.
2532
2533 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
2534
2535 * window.c (quad): New function.
2536 (Fwindow_edges, Fwindow_pixel_edges, Fwindow_inside_edges)
2537 (Fwindow_absolute_pixel_edges, Fwindow_inside_absolute_pixel_edges)
2538 (Fwindow_inside_pixel_edges, Fpos_visible_in_window_p)
2539 (Fwindow_line_height): Use it.
2540 (Fwindow_fringes): Use list3.
2541 (Fwindow_scroll_bars): Use list4.
2542 (Fwindow_frame, Fwindow_top_child, Fwindow_left_child)
2543 (Fwindow_combination_limit): Allow zero number of arguments.
2544
2545 2012-11-05 Eli Zaretskii <eliz@gnu.org>
2546
2547 * makefile.w32-in ($(BLD)/w32fns.$(O)): Depend on $(NT_INC)/unistd.h.
2548
2549 * w32fns.c: Include unistd.h, to avoid compiler warnings on Cygwin.
2550 (emacs_abort) [CYGWIN]: Don't call _open_osfhandle; instead, use
2551 file descriptor 2 for standard error. (Bug#12805)
2552
2553 2012-11-05 Chong Yidong <cyd@gnu.org>
2554
2555 * process.c (wait_reading_process_output): Revert previous change.
2556
2557 2012-11-05 Paul Eggert <eggert@cs.ucla.edu>
2558
2559 Assume at least POSIX.1-1988 for getpgrp, setpgid, setsid (Bug#12800).
2560 This removes code that has been obsolete since around 1990.
2561 * callproc.c (Fcall_process):
2562 * emacs.c (main):
2563 * process.c (create_process):
2564 * term.c (dissociate_if_controlling_tty):
2565 Assume setsid exists.
2566 * callproc.c (child_setup): Assume setpgid exists and behaves as
2567 per POSIX.1-1988 or later.
2568 * conf_post.h (setpgid) [!HAVE_SETPGID]: Remove.
2569 * emacs.c (shut_down_emacs):
2570 * sysdep.c (sys_suspend, init_foreground_group):
2571 Assume getpgrp behaves as per POSIX.1-1998 or later.
2572 * msdos.c (setpgrp): Remove.
2573 (tcgetpgrp, setpgid, setsid): New functions.
2574 * systty.h (EMACS_GETPGRP): Remove. All callers now use getpgrp.
2575 * term.c (no_controlling_tty): Remove; unused.
2576 * w32proc.c (setpgrp): Remove.
2577 (setsid, tcgetpgrp): New functions.
2578
2579 Simplify by assuming __fpending.
2580 * dispnew.c: Include <fpending.h>, not <stdio_ext.h>.
2581 (update_frame_1): Use __fpending, not PENDING_OUTPUT_COUNT.
2582 Do not assume that __fpending's result fits in int.
2583
2584 2012-11-04 Paul Eggert <eggert@cs.ucla.edu>
2585
2586 Remove EMACS_OUTQSIZE+sleep hack.
2587 * dispnew.c (update_frame_1): Remove hack for terminals slower
2588 than 2400 bps, which throttled Emacs by having it sleep.
2589 This code hasn't worked since at least 2007, when the multi-tty stuff
2590 was added, and anyway those old terminals are long dead.
2591 * systty.h (EMACS_OUTQSIZE): Remove; unused. The macro isn't used even
2592 without the dispnew.c change, as dispnew.c doesn't include systty.h.
2593
2594 Fix data-loss with --version (Bug#9574).
2595 * emacs.c (close_output_streams): Use strerror, not emacs_strerror,
2596 as we can't assume that emacs_strerror is initialized, and strerror
2597 is good enough here.
2598 (main): Invoke atexit earlier, to catch earlier instances of
2599 sending data to stdout and exiting, e.g., "emacs --version >/dev/full".
2600
2601 2012-11-04 Michael Marchionna <tralfaz@pacbell.net>
2602
2603 * nsterm.m: Add NSClearLineFunctionKey and keypad keys (Bug#8680).
2604 (keyDown): Remap keypad keys to X11 virtual key codes.
2605
2606 2012-11-03 Paul Eggert <eggert@cs.ucla.edu>
2607
2608 Fix data-loss with --batch (Bug#9574).
2609 * emacs.c: Include <close-stream.h>.
2610 (close_output_streams): New function.
2611 (main): Pass it to atexit, so that Emacs closes stdout and stderr
2612 and handles errors appropriately.
2613 (Fkill_emacs): Don't worry about flushing, as close_output_stream
2614 does that now.
2615
2616 Fix a race condition that causes Emacs to mess up glib (Bug#8855).
2617 The symptom is a diagnostic "GLib-WARNING **: In call to
2618 g_spawn_sync(), exit status of a child process was requested but
2619 SIGCHLD action was set to SIG_IGN and ECHILD was received by
2620 waitpid(), so exit status can't be returned." The diagnostic
2621 is partly wrong, as the SIGCHLD action is not set to SIG_IGN.
2622 The real bug is a race condition between Emacs and glib: Emacs
2623 does a waitpid (-1, ...) and reaps glib's subprocess by mistake,
2624 so that glib can't find it. Work around the bug by invoking
2625 waitpid only on subprocesses that Emacs itself creates.
2626 * process.c (create_process, record_child_status_change):
2627 Don't use special value -1 in pid field, as the caller now must
2628 know the pid rather than having the callee infer it.
2629 The inference was sometimes incorrect anyway, due to another race.
2630 (create_process): Set new 'alive' member if child is created.
2631 (process_status_retrieved): New function.
2632 (record_child_status_change): Use it.
2633 Accept negative 1st argument, which means to wait for the
2634 processes that Emacs already knows about. Move special-case code
2635 for DOS_NT (which lacks WNOHANG) here, from caller. Keep track of
2636 processes that have already been waited for, by testing and
2637 clearing new 'alive' member.
2638 (CAN_HANDLE_MULTIPLE_CHILDREN): Remove, as record_child_status_change
2639 now does this internally.
2640 (handle_child_signal): Let record_child_status_change do all
2641 the work, since we do not want to reap all exited child processes,
2642 only the child processes that Emacs itself created.
2643 * process.h (Lisp_Process): New boolean member 'alive'.
2644
2645 Omit duplicate definitions no longer needed with gcc -g3.
2646 * lisp.h (GCTYPEBITS, GCALIGNMENT, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG)
2647 (VALMASK, MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM):
2648 Define only as macros. There's no longer any need to also define
2649 these symbols as enums or as constants, since we now assume
2650 gcc -g3 when debugging.
2651
2652 2012-11-03 Eli Zaretskii <eliz@gnu.org>
2653
2654 * lisp.mk: Adjust comments to the fact that term/internal is now
2655 loaded from loadup.el.
2656
2657 * msdos.c (msdos_abort): Rename from emacs_abort, and make static.
2658 (msdos_fatal_signal): New function.
2659 (XMenuActivate): Adjust the call to kbd_buffer_events_waiting to
2660 its argument list.
2661
2662 * conf_post.h (_GL_EXECINFO_INLINE) [MSDOS]: Define to "inline"
2663 for GCC versions before 4.
2664 (emacs_raise): Define to call msdos_fatal_signal.
2665
2666 * xdisp.c (init_from_display_pos): Fix initialization of the bidi
2667 iterator when starting in the middle of a display or overlay
2668 string. (Bug#12745)
2669
2670 2012-11-03 Chong Yidong <cyd@gnu.org>
2671
2672 * process.c (wait_reading_process_output): Clean up the last
2673 change.
2674
2675 2012-11-03 Jim Paris <jim@jtan.com> (tiny change)
2676
2677 * process.c (wait_reading_process_output): Avoid a race condition
2678 with SIGIO delivery (Bug#11536).
2679
2680 2012-11-03 Chong Yidong <cyd@gnu.org>
2681
2682 * buffer.c (cursor_type): Untabify docstring.
2683
2684 2012-11-03 Dmitry Antipov <dmantipov@yandex.ru>
2685
2686 * frame.h (struct frame): Drop can_have_scroll_bars member
2687 which is meaningless for a long time. Adjust comments.
2688 (FRAME_CAN_HAVE_SCROLL_BARS): Remove.
2689 * frame.c, nsfns.m, term.c, w32fns.c, xfns.c: Adjust users.
2690
2691 2012-11-03 Dmitry Antipov <dmantipov@yandex.ru>
2692
2693 * window.c (decode_next_window_args): Update window arg after
2694 calling decode_live_window and so fix crash reported at
2695 http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00035.html
2696 by Juanma Barranquero <lekktu@gmail.com>.
2697 (Fwindow_body_width, Fwindow_body_height): Simplify a bit.
2698 * font.c (Ffont_at): Likewise.
2699
2700 2012-11-01 Jan Djärv <jan.h.d@swipnet.se>
2701
2702 * widget.c (resize_cb): New function.
2703 (EmacsFrameRealize): Add resize_cb as event handler (Bug#12733).
2704 (EmacsFrameResize): Check if all is up to date before changing frame
2705 size.
2706
2707 2012-11-02 Eli Zaretskii <eliz@gnu.org>
2708
2709 Implement backtrace output for fatal errors on MS-Windows.
2710 * w32fns.c (CaptureStackBackTrace_proc): New typedef.
2711 (BACKTRACE_LIMIT_MAX): New macro.
2712 (w32_backtrace): New function.
2713 (emacs_abort): Use w32_backtrace when the user chooses not to
2714 attach a debugger. Update the text of the abort dialog.
2715
2716 2012-11-02 Dmitry Antipov <dmantipov@yandex.ru>
2717
2718 Window-related stuff cleanup here and there.
2719 * dispnew.c (Finternal_show_cursor, Finternal_show_cursor_p):
2720 Use decode_any_window.
2721 * fringe.c (Ffringe_bitmaps_at_pos): Likewise.
2722 * xdisp.c (Fformat_mode_line): Likewise.
2723 * font.c (Ffont_at): Use decode_live_window.
2724 * indent.c (Fcompute_motion, Fvertical_motion): Likewise.
2725 * window.c (decode_next_window_args): Likewise.
2726 (decode_any_window): Remove static.
2727 * window.h (decode_any_window): Add prototype.
2728 * lisp.h (CHECK_VALID_WINDOW, CHECK_LIVE_WINDOW): Move from here...
2729 * window.h: ...to here, redefine via WINDOW_VALID_P and WINDOW_LIVE_P,
2730 respectively.
2731
2732 2012-11-02 Dmitry Antipov <dmantipov@yandex.ru>
2733
2734 Remove pad from struct input_event.
2735 * termhooks.h (struct input_event): Remove padding field.
2736 Adjust comment.
2737 * keyboard.c (event_to_kboard): Simplify because frame_or_window
2738 member is never cons for a long time. Adjust comment.
2739 (mark_kboards): Adjust because SELECTION_REQUEST_EVENT and
2740 SELECTION_CLEAR_EVENT has no Lisp_Objects to mark. Add comment.
2741 * xterm.c (handle_one_xevent): Do not initialize frame_or_window
2742 field of SELECTION_REQUEST_EVENT and SELECTION_CLEAR_EVENT.
2743
2744 2012-11-01 Eli Zaretskii <eliz@gnu.org>
2745
2746 * w32proc.c (getpgrp, setpgid): New functions. (Bug#12776)
2747
2748 2012-10-31 Paul Eggert <eggert@cs.ucla.edu>
2749
2750 Fix crash when using Emacs as commit editor for git (Bug#12697).
2751 * callproc.c (setpgrp): Remove macro, as we now use setpgid
2752 and it is configured in conf_post.h.
2753 (Fcall_process): Don't invoke both setsid and setpgid; the former
2754 is enough, if it exists.
2755 * callproc.c (Fcall_process, child_setup):
2756 * process.c (create_process): Use setpgid.
2757 * conf_post.h (setpgid) [!HAVE_SETPGID]: New macro, which substitutes
2758 for the real thing.
2759 * dispnew.c (init_display): Initialize the foreground group
2760 if we are running a tty display.
2761 * emacs.c (main): Do not worry about setpgrp; init_display does it now.
2762 * lisp.h (init_foreground_group): New decl.
2763 * sysdep.c (inherited_pgroup): New static var.
2764 (init_foreground_group, tcsetpgrp_without_stopping)
2765 (narrow_foreground_group, widen_foreground_group): New functions.
2766 (init_sys_modes): Narrow foreground group.
2767 (reset_sys_modes): Widen foreground group.
2768
2769 2012-10-31 Michael Albinus <michael.albinus@gmx.de>
2770
2771 * dbusbind.c: Fix cut'n'waste error. Use HAVE_DBUS_VALIDATE_INTERFACE.
2772
2773 2012-10-31 Martin Rudalics <rudalics@gmx.at>
2774
2775 * minibuf.c (read_minibuf): Restore current buffer since
2776 choose_minibuf_frame calling Fset_frame_selected_window may
2777 change it (Bug#12766).
2778
2779 2012-10-30 Jan Djärv <jan.h.d@swipnet.se>
2780
2781 * frame.c (Fframe_pixel_height): Fix documentation (Bug#12733).
2782
2783 2012-10-30 Kenichi Handa <handa@gnu.org>
2784
2785 * font.c (Ffont_at): If WINDOW is specified and it is not
2786 displaying the current buffer, signal an error.
2787
2788 2012-10-29 Daniel Colascione <dancol@dancol.org>
2789
2790 * cygw32.h, cygw32.c (Qutf_16le, from_unicode, to_unicode):
2791 In preparation for fixing bug#12739, move these functions from
2792 here...
2793
2794 * coding.h, coding.c: ... to here, and compile them only when
2795 WINDOWSNT or CYGWIN. Moving these functions out of cygw32 proper
2796 lets us write cygw32-agnostic code for the HAVE_NTGUI case.
2797
2798 2012-10-28 Eli Zaretskii <eliz@gnu.org>
2799
2800 * w32proc.c (TIMER_TICKS_PER_SEC): New macro.
2801 (timer_loop, getitimer, setitimer): Use it instead of
2802 CLOCKS_PER_SEC, which is no longer pertinent, since we don't use
2803 'clock'.
2804 (w32_get_timer_time): Use 10*TIMER_TICKS_PER_SEC instead of a
2805 literal 10000.
2806
2807 2012-10-28 Jan Djärv <jan.h.d@swipnet.se>
2808
2809 * nsterm.m (NO_APPDEFINED_DATA): New define.
2810 (last_appdefined_event_data): New variable
2811 (last_appdefined_event): Remove.
2812 (ns_select): Initialize t from last_appdefined_event_data instead
2813 of [last_appdefined_event data1].
2814 (sendEvent:): Save [theEvent data1] to last_appdefined_event_data,
2815 remove last_appdefined_event (Bug#12698).
2816
2817 2012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
2818
2819 * frame.c (x_set_font): Catch internal error.
2820
2821 2012-10-27 Eli Zaretskii <eliz@gnu.org>
2822
2823 Avoid overflow in w32 implementation of interval timers.
2824 When possible, for ITIMER_PROF count only times the main thread
2825 actually executes.
2826 * w32proc.c <struct itimer_data>: 'expire' and 'reload' are now
2827 'volatile ULONGLONG' types. All the other data which was
2828 previously clock_t is now ULONGLONG. 'terminate' is 'volatile int'.
2829 (GetThreadTimes_Proc): New typedef.
2830 (w32_get_timer_time): New function, returns a suitable time value
2831 for the timer.
2832 (timer_loop): Enter critical section when accessing ULONGLONG
2833 values of the itimer_data struct, as these accesses are no longer
2834 atomic. Call 'w32_get_timer_time' instead of 'clock'.
2835 Remove unused variable.
2836 (init_timers): Initialize s_pfn_Get_Thread_Times.
2837 (start_timer_thread): Don't assign itimer->caller_thread here.
2838 (getitimer): Assign itimer->caller_thread here.
2839 (setitimer): Always call getitimer to get the value of ticks_now.
2840 (sys_spawnve): Avoid compiler warning about format mismatch.
2841
2842 2012-10-26 Eli Zaretskii <eliz@gnu.org>
2843
2844 * w32fns.c (w32_wnd_proc) <WM_MOUSEMOVE>: Don't enable tracking of
2845 mouse movement events if the menu bar is active. This avoids
2846 producing a busy "hour-glass" cursor by Windows if the mouse
2847 pointer is positioned over a tooltip shown for some menu item.
2848
2849 2012-10-25 Paul Eggert <eggert@cs.ucla.edu>
2850
2851 Don't assume process IDs fit in int.
2852 * emacs.c (shut_down_emacs) [!DOS_NT]:
2853 * sysdep.c (sys_suspend) [SIGTSTP && !MSDOS]:
2854 * term.c (dissociate_if_controlling_tty) [!DOS_NT]:
2855 Use pid_t, not int, to store process IDs, as 'int'
2856 is not wide enough on a few platforms (e.g., AIX and IRIX).
2857
2858 2012-10-23 Kenichi Handa <handa@gnu.org>
2859
2860 The following change is to make face-font-rescale-alist work
2861 correctly for non-ASCII fonts.
2862
2863 * font.c (font_open_entity): Don't handle Vface_font_rescale_alist.
2864 (font_open_for_lface): Handle Vface_font_rescale_alist.
2865
2866 2012-10-23 Chong Yidong <cyd@gnu.org>
2867
2868 * xfaces.c (Vfont_list_limit): Move unused variable to faces.el.
2869
2870 2012-10-21 Jan Djärv <jan.h.d@swipnet.se>
2871
2872 * nsfont.m (nsfont_open, ns_glyph_metrics): Force integer advancement
2873 for screen font.
2874 (nsfont_draw): Turn off LCD-smoothing (Bug#11484).
2875
2876 * xterm.c (x_focus_changed): Check if daemonp when sending focus in
2877 event (Bug#12681).
2878
2879 2012-10-21 Glenn Morris <rgm@gnu.org>
2880
2881 * lisp.mk (lisp): Add cp51932.el and eucjp-ms.el.
2882
2883 2012-10-20 Paul Eggert <eggert@cs.ucla.edu>
2884
2885 Port to OpenBSD 5.1.
2886 * frame.c (Fmouse_position, Fmouse_pixel_position):
2887 * xdisp.c (produce_stretch_glyph):
2888 Declare local vars only when they're needed.
2889 This is clearer and avoids a warning on OpenBSD about unused vars.
2890 * frame.h (FRAME_WINDOW_P): Always evaluate its argument.
2891 This is safer, and avoids OpenBSD warnings about unused vars.
2892 * keyboard.c (record_menu_key): Remove unnecessary decl.
2893 (poll_timer): Define only if POLL_FOR_INPUT is defined.
2894 * unexelf.c (ELFSIZE) [!ElfW]: Do not define if already defined,
2895 as our definition clashes with OpenBSD's.
2896 * xfaces.c (load_face_colors, check_lface_attrs)
2897 (get_lface_attributes_no_remap, get_lface_attributes)
2898 (lface_fully_specified_p, x_supports_face_attributes_p)
2899 (tty_supports_face_attributes_p, face_fontset, realize_face)
2900 (realize_x_face, realize_tty_face):
2901 Declare parameters to be Lisp_Object[LFACE_VECTOR_SIZE], not
2902 merely Lisp_Object *. This is more informative and avoids
2903 a warning on OpenBSD about accessing beyond an object's size.
2904
2905 2012-10-20 Chong Yidong <cyd@gnu.org>
2906
2907 * lread.c (Fload): Doc fix (Bug#12592).
2908
2909 2012-10-19 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
2910
2911 * font.c (Ffont_at): Fix previous change.
2912
2913 2012-10-19 Eli Zaretskii <eliz@gnu.org>
2914
2915 * puresize.h (BASE_PURESIZE): Bump the base value to 1700000.
2916 See http://lists.gnu.org/archive/html/emacs-devel/2012-10/msg00593.html
2917 for the reasons.
2918
2919 * alloc.c (NSTATICS): Decrease to 0x800.
2920
2921 2012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
2922
2923 * fns.c (Fnreverse): Include the problem element when signaling an
2924 error (bug#12677).
2925
2926 2012-10-18 Jan Djärv <jan.h.d@swipnet.se>
2927
2928 * nsterm.m (ns_select): Check writefds before call to
2929 FD_ISSET (Bug#12668).
2930
2931 2012-10-18 Daniel Colascione <dancol@dancol.org>
2932
2933 * alloc.c (NSTATICS): Increase from 0x650 to 0x1000
2934 (staticpro): If we run out of staticpro slots, die with an
2935 informative error instead of just calling emacs_abort.
2936
2937 2012-10-18 Martin Rudalics <rudalics@gmx.at>
2938
2939 Fix two flaws reported by Dmitry Antipov.
2940 * window.c (Ftemp_output_buffer_show): Remove.
2941 (Fwindow_vscroll, Fset_window_vscroll): Use decode_live_window.
2942 (syms_of_window): Remove defsubr for Stemp_output_buffer_show.
2943
2944 2012-10-17 Eli Zaretskii <eliz@gnu.org>
2945
2946 * makefile.w32-in ($(BLD)/w32.$(O)):
2947 ($(BLD)/vm-limit.$(O)):
2948 ($(BLD)/term.$(O)):
2949 ($(BLD)/unexw32.$(O)):
2950 ($(BLD)/fileio.$(O)):
2951 ($(BLD)/dispnew.$(O)): Update dependencies.
2952
2953 * w32term.h (w32_initialize_display_info, initialize_w32_display):
2954 Add prototypes.
2955
2956 * w32proc.c: Include ctype.h.
2957
2958 * w32.h (init_environment, check_windows_init_file)
2959 (syms_of_ntproc, syms_of_ntterm, dostounix_filename)
2960 (unixtodos_filename, init_winsock, srandom, random, sys_pipe)
2961 (set_process_dir, sys_spawnve, register_child, sys_sleep, getwd)
2962 (sys_link): Add prototypes.
2963
2964 * w32.c: Include w32select.h.
2965 (sys_access, e_malloc, sys_select): Add prototypes.
2966 (emacs_gnutls_pull): 'timeout' is now EMACS_TIME, not struct timeval.
2967
2968 * vm-limit.c [WINDOWSNT]: Include w32heap.h.
2969
2970 * unexw32.c: Include lisp.h and w32.h.
2971
2972 * term.c [WINDOWSNT]: Include w32term.h.
2973
2974 * process.c [WINDOWSNT]: Add prototype of sys_select.
2975
2976 * fileio.c [WINDOWSNT]: Include w32.h.
2977
2978 * dispnew.c [WINDOWSNT]: Include w32.h.
2979
2980 * cygw32.c (Fcygwin_convert_path_to_windows)
2981 (Fcygwin_convert_path_from_windows): Use EQ to compare 2
2982 Lisp_Object values. (Bug#12661)
2983
2984 * w32fns.c (w32_msg_pump): Use XIL instead of casting an integer
2985 to Lisp_Object. (Bug#12661)
2986
2987 2012-10-17 Kenichi Handa <handa@gnu.org>
2988
2989 * xdisp.c (reseat_1): Make the information stored in it->cmp_it
2990 invalidate.
2991
2992 2012-10-17 Dmitry Antipov <dmantipov@yandex.ru>
2993
2994 * buffer.c (Fkill_buffer): When unchaining the marker,
2995 reset its buffer pointer to NULL (Bug#12652).
2996
2997 2012-10-17 Dmitry Antipov <dmantipov@yandex.ru>
2998
2999 Do not verify indirection counters of killed buffers (Bug#12579).
3000 * buffer.h (BUFFER_CHECK_INDIRECTION): New macro.
3001 * buffer.c (compact_buffer, set_buffer_internal_1): Use it.
3002
3003 2012-10-16 Dmitry Antipov <dmantipov@yandex.ru>
3004
3005 * alloc.c (Fmake_byte_code): Fix typo in comment.
3006 * print.c (print_interval): Define as static to match prototype.
3007 * indent.c (disptab_matches_widthtab, recompute_width_table):
3008 Convert to eassert.
3009
3010 2012-10-16 Dmitry Antipov <dmantipov@yandex.ru>
3011
3012 * editfns.c (get_system_name): Remove.
3013 * lisp.h (get_system_name): Remove prototype.
3014 * xrdb.c (getenv, getpwuid, getpwnam): Remove prototypes.
3015 (get_environ_db): Use Vsystem_name. Avoid call to strlen.
3016
3017 2012-10-15 Daniel Colascione <dancol@dancol.org>
3018
3019 * dbusbind.c: Add comment explaining reason for previous change.
3020
3021 2012-10-15 Martin Rudalics <rudalics@gmx.at>
3022
3023 * window.c (Fwindow_end): Rewrite check whether cached position
3024 can be used (Bug#12600).
3025 (resize_frame_windows, grow_mini_window, shrink_mini_window):
3026 Set windows_or_buffers_changed.
3027
3028 2012-10-15 Daniel Colascione <dancol@dancol.org>
3029
3030 * dbusbind.c: Fix cygw32 build break when compiling with dbus
3031 enabled by undefining the symbol "interface", which the platform
3032 headers define to something incompatible.
3033
3034 2012-10-14 Daniel Colascione <dancol@dancol.org>
3035
3036 * image.c (init_tiff_functions, init_imagemagick_functions)
3037 (init_svg_functions): Fix cygw32 build break by using these
3038 functions only when WINDOWSNT _and_ HAVE_NTGUI.
3039
3040 2012-10-14 Jan Djärv <jan.h.d@swipnet.se>
3041
3042 * nsterm.m (ns_select): Count fd:s in writefs also (Bug#12422).
3043
3044 2012-10-13 Jan Djärv <jan.h.d@swipnet.se>
3045
3046 * gtkutil.c (xg_set_widget_bg): Divide by 65535 (Bug#12612).
3047
3048 2012-10-13 HANATAKA, Shinya <bogytech@gmail.com> (tiny change)
3049
3050 * coding.c (detect_coding): Set coding->id before calling
3051 this->detector.
3052
3053 2012-10-13 Andreas Schwab <schwab@linux-m68k.org>
3054
3055 * fileio.c: Formatting fixes.
3056
3057 2012-10-13 Paul Eggert <eggert@cs.ucla.edu>
3058
3059 Fix some stat-related races.
3060 * fileio.c (Fwrite_region): Avoid race condition if a file is
3061 removed or renamed by some other process immediately after Emacs
3062 writes it but before Emacs stats it. Do not assume that stat (or
3063 fstat) succeeds.
3064 * image.c (slurp_file): Resolve the file name with fopen + fstat
3065 rather than stat + fopen.
3066 (pbm_read_file) [0]: Remove unused code with stat race.
3067 * process.c (allocate_pty) [HAVE_PTYS && !PTY_ITERATION && !PTY_OPEN]:
3068 Remove ineffective code with stat race.
3069
3070 2012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
3071
3072 * doc.c (get_doc_string): Don't signal an error if the file is missing.
3073
3074 2012-10-12 Jan Djärv <jan.h.d@swipnet.se>
3075
3076 * nsterm.m (hold_event_q): New static variable.
3077 (EV_TRAILER, sendScrollEventAtLoc:fromEvent:): Call hold_event if
3078 ! q_event_ptr.
3079 (hold_event): New function.
3080 (ns_read_socket): If hold_event_q have events, store them and
3081 return (Bug#12384).
3082 (setPosition:portion:whole:): Send SIGIO to ourselves if apploopnr
3083 is zero (Bug#12384).
3084
3085 2012-10-12 Juanma Barranquero <lekktu@gmail.com>
3086
3087 * makefile.w32-in ($(BLD)/w32select.$(O)): Update dependencies.
3088
3089 2012-10-12 Eli Zaretskii <eliz@gnu.org>
3090
3091 * makefile.w32-in ($(BLD)/fileio.$(O)): Add sys/file.h.
3092
3093 * fileio.c (check_existing): New function.
3094 (make_temp_name, Ffile_exists_p, Ffile_writable_p): Call it
3095 instead of calling 'stat', when what's needed is to check whether
3096 a file exists. This avoids expensive system calls on MS-Windows.
3097 (Bug#12587)
3098
3099 * w32.c (init_environment): Call 'check_existing' instead of 'stat'.
3100
3101 * lread.c (openp) [WINDOWSNT]: Call 'access' instead of 'stat' to
3102 determine whether a file exists and is not a directory.
3103
3104 * lisp.h (check_existing): Add prototype.
3105
3106 2012-10-12 Jan Djärv <jan.h.d@swipnet.se>
3107
3108 * nsfont.m (nsfont_open): Remove font cache, it is not GC correct.
3109
3110 2012-10-12 Glenn Morris <rgm@gnu.org>
3111
3112 * buffer.c (Fset_buffer): Doc fix. (Bug#12624)
3113
3114 2012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
3115
3116 * buffer.c (Fkill_buffer): Null out the overlay list(s) as well.
3117
3118 * eval.c (Fautoload): Remember previous autoload status in load-history.
3119
3120 2012-10-11 Paul Eggert <eggert@cs.ucla.edu>
3121
3122 lread.c, macros.c, marker.c, menu.c, minibuf.c: Use bool for booleans.
3123 * lread.c (load_each_byte, new_backquote_flag, readchar)
3124 (read_filtered_event, lisp_file_lexically_bound_p)
3125 (safe_to_load_version, Fload, complete_filename_p, openp)
3126 (build_load_history, readevalloop, read_escape, read1)
3127 (string_to_number, read_vector, read_list):
3128 * macros.c (Fstart_kbd_macro):
3129 * marker.c (CONSIDER):
3130 * menu.c (parse_single_submenu, digest_single_submenu)
3131 (find_and_return_menu_selection, Fx_popup_menu):
3132 * minibuf.c (read_minibuf_noninteractive, read_minibuf)
3133 (Ftry_completion):
3134 * nsmenu.m (ns_update_menubar, runMenuAt:forFrame:keymaps:):
3135 (ns_menu_show):
3136 * xmenu.c (set_frame_menubar, create_and_show_popup_menu)
3137 (xmenu_show, xdialog_show):
3138 Use bool for booleans.
3139 * lread.c (safe_to_load_version): Rename from safe_to_load_p,
3140 as it's not a predicate. All uses changed. Omit unnecessary
3141 buffer termination.
3142
3143 2012-10-11 Dmitry Antipov <dmantipov@yandex.ru>
3144
3145 * editfns.c (save_excursion_save): Use nil if mark points to nowhere.
3146 (save_excursion_restore): Do not restore mark if it was not saved.
3147
3148 2012-10-11 Paul Eggert <eggert@cs.ucla.edu>
3149
3150 * marker.c (cached_modiff): EMACS_INT, not int.
3151
3152 * w32select.c (waiting_for_input): Declare by including "keyboard.h"
3153 instead of having a wrong decl.
3154 * nsmenu.m (waiting_for_input): Remove wrong decl.
3155
3156 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
3157
3158 keyboard.c, keymap.c: Use bool for booleans.
3159 * dispnew.c (sit_for): Distinguish between 3-way display_option
3160 and boolean do_display.
3161 * keyboard.c (single_kboard, this_command_key_count_reset)
3162 (waiting_for_input, echoing, immediate_quit, input_pending)
3163 (interrupt_input, interrupts_deferred, pop_kboard)
3164 (temporarily_switch_to_single_kboard, ignore_mouse_drag_p)
3165 (command_loop_1, adjust_point_for_property)
3166 (safe_run_hooks_error, input_polling_used, read_char):
3167 (help_char_p, readable_events, kbd_buffer_events_waiting)
3168 (kbd_buffer_get_event, timer_check_2, make_lispy_event)
3169 (lucid_event_type_list_p, get_input_pending):
3170 (gobble_input, menu_separator_name_p, menu_bar_item)
3171 (parse_menu_item, parse_tool_bar_item, read_char_x_menu_prompt)
3172 (read_char_minibuf_menu_prompt, access_keymap_keyremap)
3173 (keyremap_step, test_undefined, read_key_sequence)
3174 (detect_input_pending, detect_input_pending_ignore_squeezables)
3175 (detect_input_pending_run_timers, requeued_events_pending_p)
3176 (quit_throw_to_read_char, Fset_input_interrupt_mode):
3177 * keymap.c (get_keymap, keymap_parent, keymap_memberp)
3178 (access_keymap_1, access_keymap, map_keymap, get_keyelt)
3179 (Fdefine_key, Flookup_key, struct accessible_keymaps_data)
3180 (accessible_keymaps_1, Fkey_description, push_key_description):
3181 (shadow_lookup, struct where_is_internal_data)
3182 (where_is_internal, Fwhere_is_internal, where_is_internal_1)
3183 (Fdescribe_buffer_bindings, describe_map_tree, struct describe_map_elt)
3184 (describe_map, describe_vector):
3185 * menu.c (single_menu_item):
3186 * nsmenu.m (ns_update_menubar):
3187 * process.c (wait_reading_process_output):
3188 * search.c (scan_buffer, scan_newline):
3189 Use bool for boolean.
3190 * keyboard.c (timers_run, swallow_events)
3191 (detect_input_pending_run_timers):
3192 * process.c (wait_reading_process_output):
3193 Use unsigned for counter where wraparound-on-overflow is desired,
3194 since unsigned is guaranteed to have that behavior and signed is not.
3195 (read_char): Use ptrdiff_t for string length.
3196 (get_input_pending): Remove first argument, since it was always
3197 the same pointer-to-int (now pointer-to-boolean) &input_pending,
3198 and behave as if it had that value. Return new value of
3199 input_pending. All callers changed.
3200 * keyboard.h (struct kboard): Use unsigned : 1 for boolean member
3201 immediate_echo. Use ptrdiff_t for echo_after_prompt, since it's
3202 a string length.
3203 * keymap.c (push_key_description): Omit last arg, which was always 1.
3204 All callers changed.
3205
3206 * regex.c (immediate_quit) [emacs]: Remove duplicate decl.
3207
3208 2012-10-10 Juanma Barranquero <lekktu@gmail.com>
3209
3210 * makefile.w32-in ($(BLD)/dispnew.$(O), $(BLD)/indent.$(O))
3211 ($(BLD)/term.$(O)): Update dependencies.
3212
3213 2012-10-10 Dmitry Antipov <dmantipov@yandex.ru>
3214
3215 * alloc.c (mark_object): Use meaningful PVEC_NORMAL_VECTOR.
3216 * lisp.h (enum pvec_type): Adjust comments and omit explicit
3217 initializer for PVEC_NORMAL_VECTOR.
3218
3219 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
3220
3221 Clean out old termopts cruft.
3222 * termopts.h (flow_control, meta_key): Remove unused decls.
3223 * dispnew.c, indent.c, nsterm.m, term.c, xsettings.c, xsmfns.c:
3224 Don't include termopts.h.
3225
3226 2012-10-10 Dmitry Antipov <dmantipov@yandex.ru>
3227
3228 * alloc.c (gc_sweep): Use pointer-to-a-pointer loop for buffers.
3229
3230 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
3231
3232 * commands.h (immediate_quit): Remove duplicate decl.
3233
3234 2012-10-09 Jan Djärv <jan.h.d@swipnet.se>
3235
3236 * nsfont.m (Vfonts_in_cache): Remove, not needed as font.c handles
3237 caching.
3238 (nsfont_open): Remove setting of Vfonts_in_cache.
3239 (syms_of_nsfont): Remove initialization of Vfonts_in_cache.
3240
3241 2012-10-09 Eli Zaretskii <eliz@gnu.org>
3242
3243 * w32fns.c (w32_last_error): Change the return value to DWORD, to
3244 match what GetLastError returns. Explain why the function is
3245 needed.
3246
3247 * frame.c (delete_frame): Rename local variable 'tooltip_frame' to
3248 'is_tooltip_frame', to avoid confusion with its global namesake.
3249
3250 2012-10-08 Daniel Colascione <dancol@dancol.org>
3251
3252 * xdisp.c (start_hourglass): Call w32_note_current_window when
3253 HAVE_NTGUI, not just WINDOWSNT, resolving a problem in the cygw32
3254 build that caused Emacs to display the hourglass cursor forever.
3255
3256 * w32fns.c (Fx_display_color_cells): Instead of using NCOLORS,
3257 which is broken under remote desktop, calculate the number of
3258 colors available for a display based on the display's number of
3259 planes and number of bits per pixel per plane. (bug#10397).
3260
3261 2012-10-08 Jan Djärv <jan.h.d@swipnet.se>
3262
3263 * nsfont.m (Vfonts_in_cache): New variable.
3264 (nsfont_open): Use unsignedLongLongValue for cache in case wide ints
3265 are used. Add cached fonts to Vfonts_in_cache.
3266 (syms_of_nsfont): Initialize and staticpro Vfonts_in_cache.
3267
3268 2012-10-08 Juanma Barranquero <lekktu@gmail.com>
3269
3270 * makefile.w32-in (LOCAL_FLAGS): Don't define HAVE_NTGUI, it's now
3271 in nt/config.nt.
3272 (FONT_H): Define after FRAME_H.
3273 ($(BLD)/emacs.$(O), $(BLD)/process.$(O), $(BLD)/w32heap.$(O)):
3274 Update dependencies.
3275
3276 * w32term.c: Remove leftover declaration of keyboard_codepage.
3277
3278 2012-10-08 Eli Zaretskii <eliz@gnu.org>
3279
3280 * makefile.w32-in (FONT_H): Add $(FRAME_H).
3281 (W32TERM_H): Add $(ATIMER_H) and $(FRAME_H).
3282 ($(BLD)/emacs.$(O), $(BLD)/w32console.$(O)): Update dependencies.
3283 (GLOBAL_SOURCES): Add cygw32.c.
3284 ($(BLD)/unexw32.$(O)):
3285 ($(BLD)/w32.$(O)):
3286 ($(BLD)/w32console.$(O)):
3287 ($(BLD)/w32fns.$(O)):
3288 ($(BLD)/w32heap.$(O)):
3289 ($(BLD)/w32menu.$(O)):
3290 ($(BLD)/w32proc.$(O)): Add w32common.h.
3291
3292 * w32fns.c (w32_color_map_lookup, x_to_w32_color): Argument is now
3293 'const char *'.
3294 (x_to_w32_color): Don't modify the argument, modify a copy instead.
3295
3296 2012-10-08 Daniel Colascione <dancol@dancol.org>
3297
3298 * w32term.h (WM_EMACS_BRINGTOTOP, WM_EMACS_INPUT_READY)
3299 (WM_EMACS_END): Change WM_EMACS_BRINGTOTOP from 22 to 21 to close
3300 accidental message numbering hole. Change other messages to
3301 match.
3302
3303 * w32select.h (HAVE_W32SELECT): Remove.
3304
3305 * w32select.c, w32proc.c, w32menu.c, w32console.c, w32.c: Include
3306 w32common.h instead of w32heap.h.
3307
3308 * w32heap.h (ROUND_UP, ROUND_DOWN, get_page_size)
3309 (get_allocation_unit, get_processor_type, get_w32_major_version)
3310 (get_w32_minor_version, sysinfo_cache, osinfo_cache)
3311 (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
3312 (OS_NT, os_subtype, cache_system_info): Move declarations to
3313 w32common.
3314
3315 * w32heap.c: Include w32common.h.
3316 (sysinfo_cache, syspage_mask, osinfo_cache, w32_major_version)
3317 (w32_minor_version, w32_build_number, w32_subtype):
3318 Remove duplicate definitions.
3319
3320 * w32fns.c: Include w32common.h; include w32heap.h only in
3321 WINDOWSNT.
3322
3323 (Fx_file_dialog): Clarify comment on GetOpenFileName structure.
3324 Use `report_file_error' instead of `error' in order to better
3325 inform users of what went wrong. Increase NTGUI_UNICODE file
3326 dialog box file name length to 32k, the maximum allowed by the NT
3327 kernel.
3328
3329 * w32common.h: New file.
3330 (ROUND_UP, ROUND_DOWN, get_page_size)
3331 (get_allocation_unit, get_processor_type, get_w32_major_version)
3332 (get_w32_minor_version, sysinfo_cache, osinfo_cache)
3333 (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
3334 (OS_NT, os_subtype, cache_system_info): Move here.
3335
3336 * unexw32.c, unexcw.c: Include w32common.h.
3337
3338 * emacs.c (main): Use (defined (WINDOWSNT) || defined
3339 HAVE_NTGUI) instead of removed HAVE_W32SELECT to decide whether
3340 to call syms_of_w32select.
3341
3342 * cygw32.h: Remove obsolete EXFUN declarations.
3343
3344 * cygw32.c (Qutf_16_le): Rename to Qutf_16le.
3345
3346 * Makefile.in (SOME_MACHINE_OBJECTS): Reverse accidental removal
3347 of w32inevt.o from SOME_MACHINE_OBJECTS.
3348
3349 2012-10-08 Daniel Colascione <dancol@dancol.org>
3350
3351 * image.c: Permanent fix for JPEG compilation issue --- limit
3352 jpeglib `boolean' redefinition to Cygwin builds.
3353
3354 2012-10-08 Eli Zaretskii <eliz@gnu.org>
3355
3356 * image.c (CHECK_LIB_AVAILABLE): Remove, no longer used.
3357
3358 * emacs.c (DAEMON_MUST_EXEC) [HAVE_NTGUI]: Define this only on
3359 Cygwin.
3360
3361 2012-10-08 Daniel Colascione <dancol@dancol.org>
3362
3363 * xfaces.c, xdisp.c, window.c, w32xfns.c, w32term.h, w32term.c,
3364 w32select.h w32select.c, w32proc.c, w32menu.c, w32inevt.c,
3365 w32help.c, w32font.c, w32font.c, w32fns.c, w32console.c, w32.h,
3366 w32.c, unexw32.c, termhooks.h, process.c, menu.c, keyboard.h,
3367 keyboard.c, image.c, frame.h, frame.c, fontset.c, font.h, font.c,
3368 emacs.c, dispextern.h, cygw32.h, cygw32.c, conf_post.h,
3369 Makefile.in: use HAVE_NTGUI for W32 GUI and WINDOWSNT for the
3370 operating system. defined(HAVE_NTGUI) && !defined(WINDOWSNT) is
3371 now a supported configuration.
3372
3373 * Makefile.in: consolidate image variables into LIBIMAGE; add
3374 W32_OBJ and W32_LIBS. Compile new files.
3375
3376 * conf_post.h:
3377 (_DebPrint) declare tracing facility for W32 debugging. We need
3378 to unify tracing later.
3379
3380 (NTGUI_UNICODE) Define when compiling for Cygwin to allow the
3381 unconditional use of W32 Unicode functions. Cygwin runs only on
3382 100% Unicode operating systems.
3383
3384 * cygw32.c: New file. Define Cygwin-specific facilities.
3385 (Fcygwin_convert_path_to_windows)
3386 (Fcygwin_convert_path_from_windows): New user functions for
3387 accessing Cygwin path-munging routines.
3388
3389 * cygw32.h: New file.
3390 (WCSDATA, to_unicode, from_unicode): Define facilities for storing
3391 UTF-16LE strings temporarily inside non-Lisp-visible string
3392 objects.
3393
3394 (w32_strerror): Just what it says on the tin.
3395
3396 * emacs.c: Make the NS fork-then-exec code for daemon-launching
3397 also run for Cygwin; both systems have the same problem with using
3398 GUI facilities in a forked child. Also call syms_of_cygw32,
3399 syms_of_w32select in correct places.
3400
3401 (DAEMON_MUST_EXEC): new macro defined to signal that a platform
3402 needs fork-then-exec for daemon launching.
3403
3404 * font.h: Include frame.h.
3405
3406 * image.c: Use the image library cache machinery only when we're
3407 compiling for native WINDOWSNT; Cygwin can use shared libraries
3408 like any other Unixlike system.
3409
3410 * keyboard.c: Clarify a comment regarding the input loop.
3411
3412 * menu.c: When NTGUI_UNICODE is defined, use Unicode menu
3413 functions directly instead of trying to detect at runtime that our
3414 host operating system supports them. We make this change for two
3415 reasons: Cygwin lacks support for the multibyte character
3416 conversion functions used by the legacy menu code, and Cygwin
3417 never needs to rely on non-Unicode APIs.
3418
3419 * unexw32.c (hinst): Declare extern.
3420
3421 * w32.c: Change header order;
3422 (w32_strerror): Move to w32fns.c because we need it for
3423 non-WINDOWSNT builds.
3424
3425 * w32.h: Add #error macro to make sure we don't include w32.h for
3426 Cygwin builds. Remove w32select declarations.
3427
3428 * w32console.c (w32_sys_ring_bell, Fset_message_beep): Move to
3429 w32fns.c. w32console.c is WINDOWSNT-only.
3430
3431 * w32fns.c: Include cygw32.h or w32.h depending on CYGWIN; more
3432 NTGUI_UNICODE tweaks. (See above.) Change _snprintf to the more
3433 POSIXy alternative.
3434 (faked_key, sysinfo_cache, osinfo_cahce, syspage_mask)
3435 (w32_major_version, w32_minor_version, w32_build_number)
3436 (os_subtype, sound_type): Define here
3437 (w32_defined_color): Make color parameter const for consistency
3438 with other _defined_color functions.
3439 (w32_createwindow): Unconditionally call w32_init_class instead of
3440 doing so only when hprevinst is non-NULL. Plumbing hprevinst
3441 through the code is complex and unnecessary because class
3442 registration is practically free.
3443 (w32_name_of_message): New EMACSDEBUG-only function.
3444 (Fset_message_beep): Move here
3445 (Fx_open_connection): Require that the display name for Windows be
3446 "w32" for consistency, emacsclient disambiguation, and maybe, one
3447 day, multi-window-system support.
3448 (file_dialog_callback): NTGUI_UNICODE changes; encode and decode
3449 Cygwin files for W32 GUI facilities, since these clearly don't
3450 expect Cygwin names.
3451 (_DebPrint): Define.
3452 (w32_strerror, w32_console_toggle_lock_key, w32_kbd_mods_to_emacs)
3453 (w32_kbd_patch_key, w32_sys_ring_bell): Move here.
3454 (Ssystem_move_file_to_trash): Define only for native WINDOWSNT.
3455 (w32_last_error): Remove.
3456
3457 * w32font.c: Define _strlwr to strlwr for non-WINDOWSNT builds.
3458
3459 * w32heap.c (syspage_mask): Declare here.
3460 (cache_system_info): Remove.
3461
3462 * w32inevt.c (faked_key): Define globally, not statically.
3463 (w32_kbd_mods_to_emacs, w32_kbd_patch_key, faked_key)
3464 (w32_console_toggle_lock_key): Move to w32fns.c.
3465
3466 * w32menu.c: Include setjmp.h. NTGUI_UNICODE changes throughout.
3467
3468 * w32proc.c (_DebPrint): Move to w32fns.c.
3469 * w32select.c: Include string.h, stdio.h for Cygwin.
3470 * w32select.h: New File.
3471
3472 * w32term.c: Include io.h for non-CYGWIN builds; needed for
3473 get_osfhandle.
3474 (w32_message_fd): New variable. Under Cygwin, holds the file
3475 descriptor the system used to tell us about pending thread
3476 messages.
3477
3478 (w32_init_term): Remove incorrect calls to fcntl and init_sigio
3479 that prevented compilation under non-WINDOWSNT systems.
3480
3481 (w32_initialize): Open /dev/windows and assign it to
3482 w32_message_fd. Provide w32 feature.
3483
3484 * w32term.h: Include frame.h, atimer.h. Declare various frame functions.
3485 (WM_EMACS_INPUT_READY): add.
3486 (prepend_msg, w32_message_fd): Declare globally.
3487
3488 * w32xfns.c:
3489 (keyboard_handle): Use only when WINDOWSNT.
3490 (notify_msg_ready): New function. Posts a message to the main
3491 thread's message queue under CYGWIN, which wakes up the main
3492 thread from select(2) by making the /dev/windows file descriptor
3493 ready. Under WINDOWSNT, it sets an event the same way the old
3494 code did.
3495
3496 (post, prepend_msg): Actually call notify_msg_ready instead of
3497 setting the input event directly.
3498
3499 2012-10-07 Eli Zaretskii <eliz@gnu.org>
3500
3501 * ralloc.c (relinquish): If a heap is ready to be relinquished,
3502 but it still has blocs in it, don't return it to the system,
3503 instead of aborting. (Bug#12402)
3504
3505 2012-10-07 Jan Djärv <jan.h.d@swipnet.se>
3506
3507 * nsterm.m (ns_dumpglyphs_image): Only draw slice of image (Bug#12506).
3508
3509 * nsterm.m (ns_update_auto_hide_menu_bar): Remove defintion of
3510 MAC_OS_X_VERSION_10_6.
3511 (syms_of_nsterm): Remove comment about Panther and above for
3512 ns-antialias-text.
3513 * nsterm.h (MAC_OS_X_VERSION_10_3, onTiger): Remove.
3514 (EmacsApp): Remove check for >= MAC_OS_X_VERSION_10_4.
3515 (struct nsfont_info): Remove check for >= MAC_OS_X_VERSION_10_3.
3516
3517 * nsselect.m (ns_string_from_pasteboard): Remove check for >=
3518 MAC_OS_X_VERSION_10_4.
3519
3520 * nsmenu.m (fillWithWidgetValue:): Remove code for <
3521 MAC_OS_X_VERSION_10_2.
3522
3523 * nsimage.m (setPixmapData, getPixelAtX, setAlphaAtX): Remove onTiger.
3524
3525 * nsfns.m (Fns_list_services): Remove comment and check for OSX < 10.4.
3526 (ns_do_applescript): Remove check for >= MAC_OS_X_VERSION_10_4.
3527
3528 * nsterm.m (ns_in_resize): Remove (Bug#12479).
3529 (ns_resize_handle_rect, mouseDown, mouseUp, mouseDragged): Remove.
3530 (ns_clear_frame, sendEvent, windowDidResize, drawRect:):
3531 Remove ns_in_resize check.
3532 (ns_clear_frame_area): Remove resize handle code.
3533
3534 * nsfns.m (ns_in_resize): Remove.
3535 (x_set_icon_name, ns_set_name, ns_set_name_as_filename):
3536 Remove ns_in_resize check.
3537
3538 2012-10-07 Paul Eggert <eggert@cs.ucla.edu>
3539
3540 Improve sys_siglist detection.
3541 * sysdep.c (sys_siglist, init_signals): Use _sys_siglist if it's
3542 defined as a macro, as is done in Solaris.
3543 (sys_siglist_entries): New macro.
3544 (save_strsignal): Use it.
3545 * syssignal.h (safe_strsignal): Now ATTRIBUTE_CONST, to pacify
3546 GCC 4.7.2 on Fedora 17 with the fixed sys_siglist detection.
3547
3548 2012-10-06 Jan Djärv <jan.h.d@swipnet.se>
3549
3550 * nsfns.m (Fx_create_frame): Call x_default_parameter with
3551 fullscreen/Fullscreen.
3552
3553 * nsterm.h (EmacsView): Rename tbar_height to tibar_height.
3554 tobar_height is new.
3555
3556 * nsterm.m (x_make_frame_visible): Check for fullscreen.
3557 (ns_fullscreen_hook): Activate old style fullscreen with a timer.
3558 (ns_term_init): Set activateIgnoringOtherApps if old style fullscreen.
3559 (windowDidResize:): Check for correct window if old style fullscreen.
3560 Capitalize word in comment. Remove incorrect comment.
3561 (initFrameFromEmacs:): tbar_height renamed tibar_height.
3562 (windowDidEnterFullScreen:): Toggle toolbar for fullscreen to fix
3563 error in drawing background.
3564 (toggleFullScreen:): Remove comment. Rearrange calls.
3565 Set toolbar values to zero, save old height in tobar_height.
3566 Restore tool bar height when leaving fullscreen.
3567 (canBecomeMainWindow): New function.
3568
3569 2012-10-06 Paul Eggert <eggert@cs.ucla.edu>
3570
3571 * keyboard.c (read_char): Remove unnecessary 'volatile's and label.
3572
3573 2012-10-05 Eli Zaretskii <eliz@gnu.org>
3574
3575 * w32proc.c (stop_timer_thread): Fix declaration of 'err'.
3576
3577 * w32.c (utime): Open the file with FILE_FLAG_BACKUP_SEMANTICS, so
3578 that time stamps of directories could also be changed.
3579 Don't request the too broad GENERIC_WRITE, only the more restrictive
3580 FILE_WRITE_ATTRIBUTES access rights.
3581
3582 * fileio.c (Fset_file_times): Special-case ignoring errors for
3583 directories only on MSDOS, not on MS-Windows.
3584
3585 2012-10-05 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
3586
3587 * minibuf.c (Fcompleting_read): Doc fix. (Bug#12555)
3588
3589 2012-10-04 Eli Zaretskii <eliz@gnu.org>
3590
3591 * w32.c (utime): Test for INVALID_HANDLE_VALUE, not for NULL, to
3592 see whether CreateFile failed.
3593
3594 2012-10-04 Paul Eggert <eggert@cs.ucla.edu>
3595
3596 * profiler.c (handle_profiler_signal): Inhibit pending signals too,
3597 to avoid similar races.
3598 * keyboard.c (pending_signals): Now bool, not int.
3599
3600 Port timers to OpenBSD, plus check for timer failures.
3601 OpenBSD problem reported by Han Boetes.
3602 * profiler.c (setup_cpu_timer): Check for failure of timer_settime
3603 and/or setitimer.
3604 (Fprofiler_cpu_stop): Don't assume HAVE_SETITIMER.
3605 * syssignal.h (HAVE_ITIMERSPEC): New macro. This is for platforms
3606 like OpenBSD, which has timer_settime but does not declare it.
3607 OpenBSD does not define SIGEV_SIGNAL, so use that when deciding
3608 whether to use itimerspec-related primitives. All uses of
3609 HAVE_TIMER_SETTIME replaced with HAVE_ITIMERSPEC.
3610
3611 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
3612
3613 * profiler.c (handle_profiler_signal): Fix a malloc race
3614 that caused Emacs to hang on Fedora 17 when profiling Lisp.
3615
3616 2012-10-02 Jan Djärv <jan.h.d@swipnet.se>
3617
3618 * nsterm.m (windowDidEnterFullScreen): Remove fprintf.
3619
3620 2012-10-02 Eli Zaretskii <eliz@gnu.org>
3621
3622 * w32proc.c (sys_wait): Declare 'signame' 'const char *', to be
3623 consistent with the change in return value of 'safe_strsignal'.
3624
3625 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
3626
3627 Prefer plain 'static' to 'static inline' (Bug#12541).
3628 * bidi.c (bidi_get_type, bidi_check_type, bidi_get_category)
3629 (bidi_set_sor_type, bidi_push_embedding_level)
3630 (bidi_pop_embedding_level, bidi_remember_char, bidi_copy_it)
3631 (bidi_cache_reset, bidi_cache_shrink, bidi_cache_fetch_state)
3632 (bidi_cache_search, bidi_cache_ensure_space)
3633 (bidi_cache_iterator_state, bidi_cache_find)
3634 (bidi_peek_at_next_level, bidi_set_paragraph_end)
3635 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
3636 (bidi_explicit_dir_char, bidi_resolve_neutral_1):
3637 Now 'static', not 'static inline'.
3638
3639 Count overruns when profiling; change units to ns.
3640 * profiler.c (handle_profiler_signal): Count sampling intervals, not ms.
3641 Give extra weight to samples after overruns, to attempt to count
3642 the time more accurately.
3643 (setup_cpu_timer): Change sampling interval units from ms to ns, since
3644 the underlying primitives nominally do ns.
3645 (Fprofiler_cpu_start): Document the change. Mention that
3646 the sampling intervals are only approximate.
3647
3648 2012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
3649
3650 * frame.c (Fmake_terminal_frame): Prefer safer CONSP over !NILP.
3651
3652 * coding.h (ENCODE_FILE, DECODE_FILE, DECODE_SYSTEM): Remove special
3653 case for the special 0 coding-system.
3654
3655 * buffer.c (Fset_buffer_multibyte): Signal an error instead of widening.
3656 (Fmake_overlay): Remove redundant tests.
3657 (fix_start_end_in_overlays): Remove redundant recentering.
3658
3659 2012-10-02 Juanma Barranquero <lekktu@gmail.com>
3660
3661 * makefile.w32-in ($(BLD)/alloc.$(O), $(BLD)/gmalloc.$(O)):
3662 Update dependencies.
3663
3664 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
3665
3666 Fix a malloc race condition involving strsignal.
3667 A signal can arrive in the middle of a malloc, and Emacs's signal
3668 handler can invoke strsignal, which can invoke malloc, which is
3669 not portable. This race condition bug makes Emacs hang on GNU/Linux.
3670 Fix it by altering the signal handler so that it does not invoke
3671 strsignal.
3672 * emacs.c (shut_down_emacs): Use safe_strsignal, not strsignal.
3673 * process.c (status_message): Use const pointer, in case strsignal
3674 is #defined to safe_strsignal.
3675 * sysdep.c (sys_siglist, init_signals): Always define and
3676 initialize a substitute sys_siglist if the system does not define
3677 one, even if HAVE_STRSIGNAL.
3678 (safe_strsignal): Rename from strsignal. Always define,
3679 using sys_siglist. Return a const pointer.
3680 * syssignal.h (safe_strsignal): New decl.
3681 (strsignal) [!HAVE_STRSIGNAL]: Define in terms of safe_strsignal.
3682
3683 2012-10-01 Eli Zaretskii <eliz@gnu.org>
3684
3685 * w32proc.c (timer_loop): Fix code that waits for timer
3686 expiration, to avoid high CPU usage.
3687
3688 2012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
3689
3690 * fns.c (check_hash_table, get_key_arg, maybe_resize_hash_table)
3691 (sweep_weak_table): Remove redundant prototypes.
3692
3693 2012-10-01 Fabrice Popineau <fabrice.popineau@gmail.com>
3694
3695 * emacs.c: Move the inclusion of TERM_HEADER after including
3696 windows.h on WINDOWSNT. This avoids compilation problems with
3697 MSVC.
3698
3699 2012-10-01 Eli Zaretskii <eliz@gnu.org>
3700
3701 * unexw32.c (OFFSET_TO_RVA, RVA_TO_OFFSET)
3702 (RVA_TO_SECTION_OFFSET): Encode all macro arguments in parentheses.
3703 (RVA_TO_PTR): Cast the result of RVA_TO_OFFSET to 'unsigned char *',
3704 as the previous version used 'void *'.
3705
3706 * ralloc.c (ROUNDUP): Fix last change.
3707 (MEM_ROUNDUP): Don't cast MEM_ALIGN, it is already of type
3708 'size_t'.
3709
3710 * w32proc.c <disable_itimers>: New static flag.
3711 (init_timers): Initialize it to zero, after creating the critical
3712 sections used by the timer threads.
3713 (term_timers): Set to 1 before deleting the critical sections.
3714 (getitimer, setitimer): If disable_itimers is non-zero, return an
3715 error indication without doing anything. Reported by Fabrice
3716 Popineau <fabrice.popineau@supelec.fr> as part of bug#12544.
3717 (alarm) [HAVE_SETITIMER]: Be more conformant to the expected
3718 return results.
3719 [!HAVE_SETITIMER]: Behave as the previous version that didn't
3720 support timers.
3721
3722 * emacs.c (shut_down_emacs) [WINDOWSNT]: Move the call to
3723 term_ntproc after all the other bookkeeping, to get timers working
3724 as long as possible.
3725
3726 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
3727
3728 * xdisp.c (syms_of_xdisp): Default message-log-max to 1000, not 100.
3729 Suggested by Juri Linkov in
3730 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00821.html>.
3731
3732 Prefer plain 'static' to 'static inline' (Bug#12541).
3733 With static functions, modern compilers inline pretty well by
3734 themselves; advice from programmers often hurts as much as it helps.
3735 On my host (x86-64, Fedora 17, GCC 4.7.2, default 'configure'),
3736 this change shrinks the text size of the Emacs executable by 1.1%
3737 without affecting CPU significantly in my benchmark.
3738 * alloc.c (mem_find, live_string_p, live_cons_p, live_symbol_p)
3739 (live_float_p, live_misc_p, live_vector_p, live_buffer_p)
3740 (mark_maybe_object, mark_maybe_pointer, bounded_number):
3741 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
3742 (bset_auto_fill_function, bset_auto_save_file_format)
3743 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
3744 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
3745 (bset_cache_long_line_scans, bset_case_fold_search)
3746 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
3747 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
3748 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
3749 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
3750 (bset_header_line_format, bset_indicate_buffer_boundaries)
3751 (bset_indicate_empty_lines, bset_invisibility_spec)
3752 (bset_left_fringe_width, bset_major_mode, bset_mark)
3753 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
3754 (bset_name, bset_overwrite_mode, bset_pt_marker)
3755 (bset_right_fringe_width, bset_save_length)
3756 (bset_scroll_bar_width, bset_scroll_down_aggressively)
3757 (bset_scroll_up_aggressively, bset_selective_display)
3758 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
3759 (bset_word_wrap, bset_zv_marker, set_buffer_overlays_before)
3760 (set_buffer_overlays_after):
3761 * category.c (bset_category_table):
3762 * charset.c (read_hex):
3763 * coding.c (produce_composition, produce_charset)
3764 (handle_composition_annotation, handle_charset_annotation)
3765 (char_encodable_p):
3766 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers)
3767 (assign_row, set_frame_matrix_frame, make_current)
3768 (add_row_entry):
3769 * eval.c (set_specpdl_symbol, set_specpdl_old_value):
3770 * fns.c (maybe_resize_hash_table):
3771 * frame.c (fset_buffer_predicate, fset_minibuffer_window):
3772 * gmalloc.c (register_heapinfo):
3773 * image.c (lookup_image_type):
3774 * intervals.c (set_interval_object, set_interval_left)
3775 (set_interval_right, copy_interval_parent, rotate_right)
3776 (rotate_left, balance_possible_root_interval):
3777 * keyboard.c (kset_echo_string, kset_kbd_queue)
3778 (kset_keyboard_translate_table, kset_last_prefix_arg)
3779 (kset_last_repeatable_command, kset_local_function_key_map)
3780 (kset_overriding_terminal_local_map, kset_real_last_command)
3781 (kset_system_key_syms, clear_event, set_prop):
3782 * lread.c (digit_to_number):
3783 * marker.c (attach_marker, live_buffer, set_marker_internal):
3784 * nsterm.m (ns_compute_glyph_string_overhangs):
3785 * process.c (pset_buffer, pset_command)
3786 (pset_decode_coding_system, pset_decoding_buf)
3787 (pset_encode_coding_system, pset_encoding_buf, pset_filter)
3788 (pset_log, pset_mark, pset_name, pset_plist, pset_sentinel)
3789 (pset_status, pset_tty_name, pset_type, pset_write_queue):
3790 * syntax.c (bset_syntax_table, dec_bytepos):
3791 * terminal.c (tset_param_alist):
3792 * textprop.c (interval_has_some_properties)
3793 (interval_has_some_properties_list):
3794 * window.c (wset_combination_limit, wset_dedicated)
3795 (wset_display_table, wset_hchild, wset_left_fringe_width)
3796 (wset_left_margin_cols, wset_new_normal, wset_new_total)
3797 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
3798 (wset_right_fringe_width, wset_right_margin_cols)
3799 (wset_scroll_bar_width, wset_start, wset_temslot, wset_vchild)
3800 (wset_vertical_scroll_bar_type, wset_window_parameters):
3801 * xdisp.c (wset_base_line_number, wset_base_line_pos)
3802 (wset_column_number_displayed, wset_region_showing)
3803 (window_box_edges, run_window_scroll_functions)
3804 (append_glyph_string_lists, prepend_glyph_string_lists)
3805 (append_glyph_string, set_glyph_string_background_width)
3806 (append_glyph, append_composite_glyph)
3807 (take_vertical_position_into_account):
3808 * xfaces.c (x_create_gc, x_free_gc, merge_face_vectors)
3809 (face_attr_equal_p, lface_equal_p, hash_string_case_insensitive)
3810 (lface_hash, lface_same_font_attributes_p, lookup_face):
3811 * xml.c (libxml2_loaded_p):
3812 * xterm.c (x_set_mode_line_face_gc, x_set_glyph_string_gc)
3813 (x_set_glyph_string_clipping, x_clear_glyph_string_rect):
3814 Now 'static', not 'static inline'.
3815
3816 * bidi.c: Tune.
3817 (bidi_copy_it): Do the whole copy with a single memcpy.
3818 (bidi_char_at_pos): Merge the two STRING_CHAR calls into one.
3819
3820 Revert the FOLLOW-SYMLINKS change for file-attributes.
3821 Doing it right would require several changes to Tramp, and there's
3822 not enough time to get that tested before the freeze today.
3823 * dired.c (directory_files_internal, Ffile_attributes):
3824 Undo last change.
3825
3826 * frame.c (x_report_frame_params): Port better to wider ints.
3827 Do not assume that EMACS_UINT is the same width as uprintmax_t,
3828 or that pointers can be printed in 15 decimal digits.
3829 Avoid GCC warnings if EMACS_UINT is wider than a pointer.
3830
3831 2012-09-30 Fabrice Popineau <fabrice.popineau@supelec.fr>
3832
3833 Support x64 build on MS-Windows.
3834 * w32term.h (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK): Define for x64.
3835 (SET_SCROLL_BAR_W32_WINDOW): Cast ID to intptr_t, for
3836 compatibility with x64.
3837 (x_get_focus_frame): Add prototype.
3838
3839 * w32term.c (w32_draw_underwave): Don't use GCC extensions for
3840 defining an XRectangle structure.
3841
3842 * w32proc.c (RVA_TO_PTR, w32_executable_type): Fix pointer
3843 arithmetics for compatibility with x64.
3844
3845 * w32menu.c (add_menu_item): Use UINT_PTR instead of UINT, for
3846 compatibility with x64.
3847
3848 * w32heap.h: Adjust prototypes and declarations.
3849
3850 * w32heap.c (RVA_TO_PTR, allocate_heap, sbrk, init_heap)
3851 (round_heap): Use DWORD_PTR, ptrdiff_t and size_t instead of
3852 DWORD, long, and unsigned long, for compatibility with x64.
3853 (allocate_heap) [_WIN64]: Reserve 32GB of memory.
3854 (sbrk): Argument is now of type ptrdiff_t.
3855
3856 * w32fns.c (HMONITOR): Condition declaration on _WIN32_WINNT being
3857 less than 0x0500.
3858 (w32_msg_pump): Use WPARAM type for 'result'.
3859
3860 * w32.c (init_environment, get_emacs_configuration): Support AMD64
3861 architecture.
3862 (init_ntproc): Cast arguments of _open_osfhandle to intptr_t, for
3863 compatibility with x64.
3864
3865 * vm-limit.c (lim_data): Now size_t.
3866 (check_memory_limits): Adjust prototypes of real_morecore and
3867 __morecore to receive argument of type ptrdiff_t. Use size_t for
3868 five_percent and data_size.
3869
3870 * unexw32.c: Use DWORD_PTR instead of DWORD for file-scope
3871 variables, for compatibility with x64.
3872 (rva_to_section, offset_to_section, relocate_offset)
3873 (OFFSET_TO_RVA, RVA_TO_OFFSET, RVA_TO_SECTION_OFFSET)
3874 (PTR_TO_RVA, RVA_TO_PTR, OFFSET_TO_PTR, get_section_info)
3875 (copy_executable_and_dump_data): Use DWORD_PTR instead of DWORD
3876 for compatibility with x64.
3877
3878 * sysdep.c (STDERR_FILENO): Define if not already defined.
3879
3880 * ralloc.c (real_morecore): Argument type is now ptrdiff_t.
3881 (__morecore): Argument type is now ptrdiff_t.
3882 (ROUNDUP, MEM_ROUNDUP): Use size_t instead of 'unsigned long'.
3883 (relinquish): Use ptrdiff_t type for 'excess'.
3884 (r_alloc_sbrk): Argument type is now ptrdiff_t.
3885
3886 * makefile.w32-in (HEAPSIZE): Get value from EMACS_HEAPSIZE.
3887 (bootstrap-temacs-CMD, bootstrap-temacs-SH): Use $(EMACS_PURESIZE)
3888 instead of a literal number.
3889
3890 * gmalloc.c [WINDOWSNT]: Include w32heap.h.
3891 (min): Define only if not already defined.
3892
3893 * frame.c (x_report_frame_params): Use EMACS_UINT for the return
3894 value of FRAME_X_WINDOW, to fit a 64-bit pointer on 64-bit Windows
3895 hosts.
3896
3897 * image.c (x_bitmap_pixmap): Return ptrdiff_t, not int, since
3898 'bitmaps' is a pointer.
3899
3900 * dispextern.h (x_bitmap_pixmap): Adjust prototype.
3901
3902 * alloc.c (gdb_make_enums_visible): Now conditional on __GNUC__.
3903
3904 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
3905
3906 file-attributes has a new optional arg FOLLOW-SYMLINKS.
3907 * dired.c (directory_files_internal, Ffile_attributes):
3908 New arg follow_symlinks. All uses changed.
3909
3910 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
3911
3912 * .gdbinit (xbacktrace): Adjust to recent "struct backtrace" change.
3913
3914 2012-09-30 Eli Zaretskii <eliz@gnu.org>
3915
3916 Support atimers and CPU profiler via profile.c on MS-Windows.
3917 * w32proc.c (sig_mask, crit_sig): New static variables.
3918 (sys_signal): Support SIGALRM and SIGPROF.
3919 (sigemptyset, sigaddset, sigfillset, sigprocmask)
3920 (pthread_sigmask, setpgrp): Move here from w32.c. sigaddset,
3921 sigfillset, and sigprocmask are no longer no-ops.
3922 (sigismember): New function.
3923 (struct itimer_data): New definition.
3924 (ticks_now, real_itimer, prof_itimer, clocks_min, crit_real)
3925 (crit_prof): New static variables.
3926 (MAX_SINGLE_SLEEP): New definition.
3927 (timer_loop, stop_timer_thread, term_timers, init_timers)
3928 (start_timer_thread, getitimer, setitimer): New functions.
3929 (alarm): No longer a no-op, calls setitimer.
3930
3931 * w32.c (term_ntproc): Call term_timers.
3932 (init_ntproc): Make sure all signals are unblocked at startup, to
3933 erase any traces of dumping. Call init_timers.
3934
3935 * w32fns.c (hourglass_timer, HOURGLASS_ID): Remove.
3936 Windows-specific code to display the hourglass mouse pointer is no
3937 longer used.
3938 (w32_wnd_proc): Remove code that handled the WM_TIMER message due
3939 to hourglass timer expiration.
3940 (start_hourglass, cancel_hourglass, DEFAULT_HOURGLASS_DELAY):
3941 Remove, no longer used.
3942 (w32_note_current_window, show_hourglass, hide_hourglass):
3943 New functions, in support of hourglass cursor display similar to other
3944 window systems.
3945 (syms_of_w32fns): Don't initialize hourglass_timer.
3946
3947 * xdisp.c (start_hourglass, cancel_hourglass): Now used on
3948 WINDOWSNT as well.
3949 (start_hourglass) [WINDOWSNT]: Call w32_note_current_window.
3950
3951 * w32.h (init_timers, term_timers): Add prototypes.
3952
3953 2012-09-30 Kenichi Handa <handa@gnu.org>
3954
3955 * coding.c (decode_coding_ccl, encode_coding_ccl): Pay attention
3956 to the buffer relocation which may be caused by ccl_driver.
3957
3958 2012-09-30 Jan Djärv <jan.h.d@swipnet.se>
3959
3960 * xfns.c (Fx_file_dialog): Update comment.
3961
3962 * w32fns.c (Fx_file_dialog): Update comment.
3963
3964 * nsfns.m (Fns_read_file_name): Add argument DIR_ONLY_P.
3965 Initialize panel name field if OSX >= 10.6.
3966
3967 * fileio.c (Fnext_read_file_uses_dialog_p): Add HAVE_NS.
3968
3969 * nsfns.m (ns_frame_parm_handlers): Add x_set_fullscreen.
3970
3971 * nsterm.m (NEW_STYLE_FS): New define.
3972 (ns_fullscreen_hook, windowWillEnterFullScreen)
3973 (windowDidEnterFullScreen, windowWillExitFullScreen)
3974 (windowDidExitFullScreen, toggleFullScreen, handleFS)
3975 (setFSValue): New functions.
3976 (EmacsFSWindow): New implementation.
3977 (canBecomeKeyWindow): New function for EmacsFSWindow.
3978 (ns_create_terminal): Set fullscreen_hook to ns_fullscreen_hook.
3979 (dealloc): Release nonfs_window if in fullscreen.
3980 (updateFrameSize:): Call windowDidMove to update top/left.
3981 (windowWillResize:toSize:): Check if frame is still maximized.
3982 (initFrameFromEmacs:): Initialize fs_state, fs_before_fs,
3983 next_maximized, maximized_width, maximized_height and nonfs_window.
3984 Call setCollectionBehavior if NEW_STYLE_FS. Initialize bwidth and
3985 tbar_height.
3986 (windowWillUseStandardFrame:defaultFrame:): Update frame parameter
3987 fullscreen. Set maximized_width/height. Act on next_maximized.
3988
3989 * nsterm.h (MAC_OS_X_VERSION_10_7, MAC_OS_X_VERSION_10_8): New.
3990 (EmacsView): Add variables for fullscreen.
3991 (handleFS, setFSValue, toggleFullScreen): New in EmacsView.
3992 (EmacsFSWindow): New interface for fullscreen.
3993
3994 2012-09-30 Juanma Barranquero <lekktu@gmail.com>
3995
3996 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
3997
3998 2012-09-30 Chong Yidong <cyd@gnu.org>
3999
4000 * fns.c (Frandom): Doc fix.
4001
4002 2012-09-30 Martin Rudalics <rudalics@gmx.at>
4003
4004 * window.c (Vwindow_combination_limit): New default value.
4005 (Qwindow_size): New symbol replacing Qtemp_buffer_resize.
4006
4007 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
4008
4009 * syssignal.h (PROFILER_CPU_SUPPORT): Don't define if PROFILING.
4010 Suggested by Eli Zaretskii in
4011 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00811.html>.
4012
4013 2012-09-30 Eli Zaretskii <eliz@gnu.org>
4014
4015 * profiler.c (Fprofiler_cpu_stop): Use timer_settime only if
4016 HAVE_TIMER_SETTIME is defined.
4017
4018 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
4019
4020 Profiler improvements: more-accurate timers, overflow checks.
4021 * profiler.c: Don't include stdio.h, limits.h, sys/time.h,
4022 signal.h, setjmp.h. Include systime.h instead.
4023 (saturated_add): New function.
4024 (record_backtrace, current_sample_interval): Use EMACS_INT, not size_t.
4025 (record_backtrace, handle_profiler_signal): Saturate on fixnum overflow.
4026 (profiler_timer, profiler_timer_ok) [HAVE_TIMER_SETTIME]:
4027 New static vars.
4028 (enum profiler_cpu_running): New enum.
4029 (profiler_cpu_running): Now of that enum type, not bool.
4030 All uses changed to store the new value.
4031 (handle_profiler_signal): Rename from sigprof_handler_1,
4032 for consistency with other handlers. Do not check whether
4033 cpu_log is a hash-table if garbage collecting, since it
4034 doesn't matter in that case.
4035 (deliver_profiler_signal): Rename from sigprof_handler,
4036 for consistency with other handlers.
4037 (setup_cpu_timer): New function, with much of what used to be in
4038 Fprofiler_cpu_start. Check for out-of-range argument.
4039 Prefer timer_settime if available, and prefer
4040 thread cputime clocks, then process cputime clocks, then
4041 monotonic clocks, to the old realtime clock. Use make_timeval
4042 to round more-correctly when falling back to setitimer.
4043 (Fprofiler_cpu_start): Use it.
4044 (Fprofiler_cpu_stop): Prefer timer_settime if available.
4045 Don't assume that passing NULL as the 2nd argument of setitimer
4046 is the same as passing a pointer to all-zero storage.
4047 Ignore SIGPROF afterwards.
4048 (malloc_probe): Saturate at MOST_POSITIVE_FIXNUM.
4049 * sysdep.c (emacs_sigaction_init): Also mask out SIGPROF in
4050 non-fatal signal handlers. Ignore SIGPROF on startup.
4051 * syssignal.h (PROFILER_CPU_SUPPORT): Define this macro here, not
4052 in profiler.c, since sysdep.c now uses it.
4053
4054 * sysdep.c (handle_fatal_signal): Bump backtrace size to 40.
4055 Suggested by Eli Zaretskii in
4056 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00796.html>.
4057
4058 2012-09-29 Juanma Barranquero <lekktu@gmail.com>
4059
4060 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
4061
4062 2012-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
4063
4064 * lisp.h (struct backtrace): Remove indirection for `function' field.
4065 * xdisp.c (redisplay_internal):
4066 * profiler.c (record_backtrace, sigprof_handler_1):
4067 * alloc.c (Fgarbage_collect):
4068 * eval.c (interactive_p, Fsignal, eval_sub, Ffuncall, Fbacktrace)
4069 (Fbacktrace_frame): Adjust accordingly.
4070
4071 2012-09-28 Glenn Morris <rgm@gnu.org>
4072
4073 * eval.c (Frun_hook_with_args, Frun_hook_with_args_until_success)
4074 (Frun_hook_with_args_until_failure): Doc fixes.
4075
4076 2012-09-28 Eli Zaretskii <eliz@gnu.org>
4077
4078 * xdisp.c (syms_of_xdisp) <Qredisplay_internal>: Rename from
4079 Qautomatic_redisplay and change the symbol name. All users changed.
4080
4081 2012-09-28 Tomohiro Matsuyama <tomo@cx4a.org>
4082
4083 * profiler.c (sigprof_handler): Fix race condition.
4084
4085 2012-09-28 Glenn Morris <rgm@gnu.org>
4086
4087 * lread.c (lisp_file_lexically_bound_p): Handle #! lines. (Bug#12528)
4088
4089 2012-09-27 Paul Eggert <eggert@cs.ucla.edu>
4090
4091 Check more robustly for timer_settime.
4092 * Makefile.in (LIB_TIMER_TIME): New macro.
4093 (LIBES): Add it.
4094 * atimer.c (alarm_timer, alarm_timer_ok, set_alarm, init_atimer):
4095 Use HAVE_TIMER_SETTIME, not SIGEV_SIGNAL, to decide whether to
4096 call timer_settime.
4097
4098 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
4099
4100 * profiler.c (Fprofiler_cpu_start): Remove unnecessary flag SA_SIGINFO.
4101
4102 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
4103
4104 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
4105
4106 2012-09-26 Paul Eggert <eggert@cs.ucla.edu>
4107
4108 * character.h (MAYBE_UNIFY_CHAR): Remove.
4109 * charset.c, charset.h (maybe_unify_char): Now static.
4110 * charset.c (decode_char): Use maybe_unify_char, not MAYBE_UNIFY_CHAR.
4111 Since this stuff is now private to charset.c, there's no need for
4112 a public macro and no need to inline by hand.
4113
4114 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
4115 Stefan Monnier <monnier@iro.umontreal.ca>
4116 Juanma Barranquero <lekktu@gmail.com>
4117
4118 * profiler.c: New file.
4119 * Makefile.in (base_obj): Add profiler.o.
4120 * makefile.w32-in (OBJ2, GLOBAL_SOURCES): Add profiler.c.
4121 ($(BLD)/profiler.$(O)): New target.
4122 * emacs.c (main): Call syms_of_profiler.
4123 * alloc.c (Qautomatic_gc): New constant.
4124 (MALLOC_PROBE): New macro.
4125 (xmalloc, xzalloc, xrealloc, lisp_malloc, lisp_align_malloc): Use it.
4126 (total_bytes_of_live_objects): New function.
4127 (Fgarbage_collect): Use it. Record itself in backtrace_list.
4128 Call malloc_probe for the memory profiler.
4129 (syms_of_alloc): Define Qautomatic_gc.
4130 * eval.c (eval_sub, Ffuncall): Reorder assignments to avoid
4131 race condition.
4132 (struct backtrace): Move definition...
4133 * lisp.h (struct backtrace): ..here.
4134 (Qautomatic_gc, profiler_memory_running): Declare vars.
4135 (malloc_probe, syms_of_profiler): Declare functions.
4136 * xdisp.c (Qautomatic_redisplay): New constant.
4137 (redisplay_internal): Record itself in backtrace_list.
4138 (syms_of_xdisp): Define Qautomatic_redisplay.
4139
4140 2012-09-25 Eli Zaretskii <eliz@gnu.org>
4141 2012-09-25 Juanma Barranquero <lekktu@gmail.com>
4142
4143 * makefile.w32-in ($(BLD)/callproc.$(O)): Update dependencies.
4144
4145 2012-09-25 Paul Eggert <eggert@cs.ucla.edu>
4146
4147 Prefer POSIX timers if available.
4148 They avoid a race if the timer is too close to the current time.
4149 * atimer.c (alarm_timer, alarm_timer_ok) [SIGEV_SIGNAL]: New static vars.
4150 (set_alarm) [SIGEV_SIGNAL]: Use POSIX timers if available.
4151 (init_atimer) [SIGEV_SIGNAL]: Initialize them.
4152
4153 2012-09-25 Eli Zaretskii <eliz@gnu.org>
4154
4155 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY): Make it an alias of
4156 CHAR_STRING_ADVANCE.
4157 (STRING_CHAR_ADVANCE_NO_UNIFY): Make it an alias of
4158 STRING_CHAR_ADVANCE.
4159
4160 2012-09-25 Juanma Barranquero <lekktu@gmail.com>
4161
4162 Move Vlibrary_cache to emacs.c and reset before dumping.
4163
4164 * lisp.h (reset_image_types): Declare.
4165 [WINDOWSNT] (Vlibrary_cache): Declare.
4166
4167 * image.c (reset_image_types): New function.
4168
4169 * emacs.c [WINDOWSNT] (Vlibrary_cache): Move from w32.c.
4170 (syms_of_emacs) [WINDOWSNT] <Vlibrary_cache>: Initialize and staticpro.
4171 (Fdump_emacs): Reset Vlibrary_cache and image_types.
4172
4173 * w32.c (Vlibrary_cache): Do not define; moved to emacs.c
4174 (globals_of_w32) <Vlibrary_cache>: Do not initialize.
4175
4176 * w32.h (Vlibrary_cache): Do not declare.
4177
4178 2012-09-25 Eli Zaretskii <eliz@gnu.org>
4179
4180 * w32proc.c (sys_signal): Handle all signals defined by the
4181 MS-Windows runtime, not just SIGCHLD. Actually install the signal
4182 handlers for signals supported by Windows. Don't override
4183 term_ntproc as the handler for SIGABRT.
4184 (sigaction): Rewrite to call sys_signal instead of duplicating its
4185 code.
4186 (sys_kill): Improve commentary.
4187
4188 * w32.c (term_ntproc): Accept (and ignore) one argument, for
4189 consistency with a signature of a signal handler. All callers
4190 changed.
4191 (init_ntproc): Accept an argument DUMPING. If dumping, don't
4192 install term_ntproc as a signal handler for SIGABRT, as that
4193 should be done by the dumped Emacs.
4194
4195 * w32.h (init_ntproc, term_ntproc): Adjust prototypes.
4196
4197 * w32select.c (term_w32select): Protect against repeated
4198 invocation by setting clipboard_owner to NULL after calling
4199 DestroyWindow.
4200
4201 * emacs.c (shut_down_emacs, main): Adapt the calls to init_ntproc
4202 and term_ntproc to their modified signatures.
4203
4204 * character.c (char_string, string_char): Remove calls to
4205 MAYBE_UNIFY_CHAR. See the discussion starting at
4206 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00433.html
4207 for the details.
4208
4209 2012-09-25 Chong Yidong <cyd@gnu.org>
4210
4211 * xdisp.c (mode_line_inverse_video): Delete obsolete variable.
4212
4213 2012-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
4214
4215 * bytecode.c (exec_byte_code): Signal an error instead of aborting,
4216 when encountering an unknown bytecode.
4217
4218 2012-09-24 Paul Eggert <eggert@cs.ucla.edu>
4219
4220 image.c, indent.c: Use bool for booleans.
4221 * dispextern.h (struct image_type): Members valid_p, load, init
4222 now return bool, not int. All uses changed.
4223 * image.c: Omit unnecessary static decls.
4224 (x_create_bitmap_mask, x_build_heuristic_mask):
4225 Return void, not int, since callers don't care about the return value.
4226 (x_create_bitmap_mask, define_image_type, valid_image_p)
4227 (struct image_keyword, parse_image_spec, image_spec_value)
4228 (check_image_size, image_background)
4229 (image_background_transparent, x_clear_image_1)
4230 (postprocess_image, lookup_image, x_check_image_size)
4231 (x_create_x_image_and_pixmap, xbm_image_p)
4232 (Create_Pixmap_From_Bitmap_Data, xbm_read_bitmap_data)
4233 (xbm_load_image, xbm_file_p, xbm_load, xpm_lookup_color)
4234 (init_xpm_functions, xpm_valid_color_symbols_p, xpm_image_p)
4235 (xpm_load, xpm_load_image, lookup_rgb_color, lookup_pixel_color)
4236 (x_to_xcolors, x_build_heuristic_mask, pbm_image_p, pbm_load)
4237 (png_image_p, init_png_functions, png_load_body, png_load)
4238 (jpeg_image_p, init_jpeg_functions, jpeg_load_body, jpeg_load)
4239 (tiff_image_p, init_tiff_functions, tiff_load, gif_image_p)
4240 (init_gif_functions, gif_load, imagemagick_image_p)
4241 (imagemagick_load_image, imagemagick_load, svg_image_p)
4242 (init_svg_functions, svg_load, svg_load_image, gs_image_p)
4243 (gs_load):
4244 * nsimage.m (ns_load_image):
4245 * nsterm.m (ns_defined_color):
4246 * xfaces.c (tty_lookup_color, tty_defined_color, defined_color):
4247 * xfns.c (x_defined_color):
4248 * xterm.c (x_alloc_lighter_color_for_widget)
4249 (x_alloc_nearest_color_1, x_alloc_nearest_color)
4250 (x_alloc_lighter_color):
4251 * indent.c (disptab_matches_widthtab, current_column)
4252 (scan_for_column, string_display_width, indented_beyond_p)
4253 (compute_motion, vmotion, Fvertical_motion):
4254 Use bool for booleans.
4255
4256 2012-09-24 Chong Yidong <cyd@gnu.org>
4257
4258 * chartab.c (Fset_char_table_default): Obsolete function removed.
4259
4260 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
4261
4262 Move pid_t related decls out of lisp.h.
4263 * lisp.h, syswait.h (record_child_status_change, wait_for_termination)
4264 (interruptible_wait_for_termination):
4265 Move these decls from lisp.h to syswait.h, since they use pid_t.
4266 Needed on FreeBSD; see Herbert J. Skuhra in
4267 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00571.html>.
4268 * callproc.c: Include syswait.h.
4269
4270 gnutls.c, gtkutil.c: Use bool for boolean.
4271 * gnutls.c (gnutls_global_initialized, init_gnutls_functions)
4272 (emacs_gnutls_handle_error):
4273 * gtkutil.c (xg_check_special_colors, xg_prepare_tooltip)
4274 (xg_hide_tooltip, xg_create_frame_widgets)
4275 (create_dialog, xg_uses_old_file_dialog)
4276 (xg_get_file_with_chooser, xg_get_file_with_selection)
4277 (xg_get_file_name, xg_have_tear_offs, create_menus, xg_create_widget)
4278 (xg_item_label_same_p, xg_update_menubar)
4279 (xg_modify_menubar_widgets, xg_event_is_for_menubar)
4280 (xg_ignore_gtk_scrollbar, xg_set_toolkit_scroll_bar_thumb)
4281 (xg_event_is_for_scrollbar, xg_pack_tool_bar, xg_make_tool_item)
4282 (is_box_type, xg_tool_item_stale_p, xg_update_tool_bar_sizes)
4283 (update_frame_tool_bar, free_frame_tool_bar):
4284 * gtkutil.c, w32term.c, xterm.c (x_wm_set_size_hint):
4285 * nsmenu.m (ns_update_menubar):
4286 * nsmenu.m, w32menu.c, xmenu.c (set_frame_menubar):
4287 * xfns.c (Fx_show_tip) [USE_GTK]:
4288 Use bool for boolean.
4289 * gtkutil.c (xg_update_frame_menubar):
4290 * xmenu.c (update_frame_menubar):
4291 Return void, not int, since caller ignores return value.
4292 * gtkutil.c (xg_change_toolbar_position):
4293 Return void, not 1.
4294
4295 2012-09-23 Juanma Barranquero <lekktu@gmail.com>
4296
4297 * makefile.w32-in (BLOCKINPUT_H): Remove.
4298 (SYSSIGNAL_H): New macro.
4299 ($(BLD)/alloc.$(O), $(BLD)/atimer.$(O), $(BLD)/buffer.$(O))
4300 ($(BLD)/callproc.$(O), $(BLD)/data.$(O), $(BLD)/dired.$(O))
4301 ($(BLD)/dispnew.$(O), $(BLD)/editfns.$(O), $(BLD)/emacs.$(O))
4302 ($(BLD)/eval.$(O), $(BLD)/fileio.$(O), $(BLD)/floatfns.$(O))
4303 ($(BLD)/fns.$(O), $(BLD)/fontset.$(O), $(BLD)/frame.$(O))
4304 ($(BLD)/fringe.$(O), $(BLD)/image.$(O), $(BLD)/insdel.$(O))
4305 ($(BLD)/keyboard.$(O), $(BLD)/keymap.$(O), $(BLD)/lread.$(O))
4306 ($(BLD)/menu.$(O), $(BLD)/w32inevt.$(O), $(BLD)/w32proc.$(O))
4307 ($(BLD)/print.$(O), $(BLD)/process.$(O), $(BLD)/ralloc.$(O))
4308 ($(BLD)/search.$(O), $(BLD)/sound.$(O), $(BLD)/sysdep.$(O))
4309 ($(BLD)/term.$(O), $(BLD)/window.$(O), $(BLD)/xdisp.$(O))
4310 ($(BLD)/xfaces.$(O), $(BLD)/w32fns.$(O), $(BLD)/w32menu.$(O))
4311 ($(BLD)/w32term.$(O), $(BLD)/w32select.$(O), $(BLD)/w32reg.$(O))
4312 ($(BLD)/w32xfns.$(O)): Update dependencies.
4313
4314 2012-09-23 Eli Zaretskii <eliz@gnu.org>
4315
4316 * .gdbinit: Set breakpoint on terminate_due_to_signal, not on
4317 fatal_error_backtrace.
4318
4319 * w32proc.c (sys_kill): Undo last change: don't do anything when
4320 invoked to deliver SIGABRT to our own process. This is now
4321 handled by emacs_raise.
4322
4323 2012-09-23 Juanma Barranquero <lekktu@gmail.com>
4324
4325 * w32term.c (w32_read_socket): Remove leftover reference to
4326 interrupt_input_pending.
4327
4328 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
4329
4330 Do not use SA_NODEFER.
4331 Problem reported by Dani Moncayo in
4332 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00557.html>.
4333 * alloc.c (die):
4334 * sysdep.c (emacs_abort): Do not reset signal handler.
4335 * emacs.c (terminate_due_to_signal): Reset signal handler here.
4336 * sysdep.c (init_signals): Do not use SA_NODEFER. It wasn't
4337 wanted even on POSIXish hosts, and it doesn't work on Windows.
4338
4339 2012-09-23 Jan Djärv <jan.h.d@swipnet.se>
4340
4341 * xterm.c (x_term_init): Call fixup_locale before and after calling
4342 gtk_init (Bug#12392).
4343
4344 2012-09-23 Chong Yidong <cyd@gnu.org>
4345
4346 * w32.c (w32_delayed_load): Remove LIBRARIES argument; always use
4347 Vdynamic_library_alist.
4348
4349 * gnutls.c (init_gnutls_functions): Caller changed; remove arg.
4350 (Fgnutls_available_p): Caller changed.
4351
4352 * xml.c (init_libxml2_functions, Flibxml_parse_html_region)
4353 (Flibxml_parse_xml_region): Likewise.
4354
4355 * dispextern.h (struct image_type): Remove arg from init function.
4356
4357 * image.c (Finit_image_library, lookup_image_type)
4358 (define_image_type): Remove now-unneeded second arg.
4359 (init_xpm_functions, init_png_functions, init_jpeg_functions)
4360 (init_tiff_functions, init_gif_functions, init_svg_functions):
4361 Arglist and w32_delayed_load calling convention changed.
4362 (gs_type): Remove init_gs_functions; there is no such function.
4363 (valid_image_p, make_image): Fix caller to lookup_image_type.
4364
4365 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
4366
4367 Simplify and avoid signal-handling races (Bug#12471).
4368 * alloc.c (die):
4369 * sysdep.c (emacs_abort) [HAVE_NTGUI]:
4370 Avoid recursive loop if there's a fatal error in the function itself.
4371 * atimer.c (pending_atimers):
4372 * blockinput.h: Don't include "atimer.h"; no longer needed.
4373 (interrupt_input_pending): Remove. All uses removed.
4374 pending_signals now counts both atimers and ordinary interrupts.
4375 This is less racy than having three separate pending-signal flags.
4376 (block_input, unblock_input, totally_unblock_input, unblock_input_to)
4377 (input_blocked_p):
4378 Rename from their upper-case counterparts BLOCK_INPUT,
4379 UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT, UNBLOCK_INPUT_TO,
4380 INPUT_BLOCKED_P, and turn into functions. All uses changed.
4381 This makes it easier to access volatile variables more accurately.
4382 (BLOCK_INPUT_RESIGNAL): Remove. All uses replaced by unblock_input ().
4383 (input_blocked_p): Prefer this to 'interrupt_input_blocked', as
4384 that's more reliable if the code is buggy and sets
4385 interrupt_input_blocked to a negative value. All uses changed.
4386 * atimer.c (deliver_alarm_signal):
4387 Remove. No need to deliver this to the parent; any thread can
4388 handle this signal now. All uses replaced by underlying handler.
4389 * atimer.c (turn_on_atimers):
4390 * dispnew.c (handle_window_change_signal):
4391 * emacs.c (handle_danger_signal):
4392 * keyboard.c (kbd_buffer_get_event):
4393 Don't reestablish signal handler; not needed with sigaction.
4394 * blockinput.h (UNBLOCK_INPUT_TO, TOTALLY_UNBLOCK_INPUT)
4395 (UNBLOCK_INPUT_TO):
4396 Rework to avoid unnecessary accesses to volatile variables.
4397 (UNBLOCK_INPUT_TO): Now a function.
4398 (totally_unblock_input, unblock_input): New decls.
4399 * data.c (handle_arith_signal, deliver_arith_signal): Move to sysdep.c
4400 (init_data): Remove. Necessary stuff now done in init_signal.
4401 * emacs.c, xdisp.c: Include "atimer.h", since we invoke atimer functions.
4402 * emacs.c (handle_fatal_signal, deliver_fatal_signal): Move to sysdep.c.
4403 (fatal_error_code): Remove; no longer needed.
4404 (terminate_due_to_signal): Rename from fatal_error_backtrace, since
4405 it doesn't always backtrace. All uses changed. No need to reset
4406 signal to default, since sigaction and/or die does that for us now.
4407 Use emacs_raise (FOO), not kill (getpid (), FOO).
4408 (main): Check more-accurately whether we're dumping.
4409 Move fatal-error setup to sysdep.c
4410 * floatfns.c: Do not include "syssignal.h"; no longer needed.
4411 * gtkutil.c (xg_get_file_name, xg_get_font):
4412 Remove no-longer-needed signal-mask manipulation.
4413 * keyboard.c, process.c (POLL_FOR_INPUT):
4414 Don't depend on USE_ASYNC_EVENTS, a symbol that is never defined.
4415 * keyboard.c (read_avail_input): Remove.
4416 All uses replaced by gobble_input.
4417 (Ftop_level): Use TOTALLY_UNBLOCK_INPUT rather than open code.
4418 (kbd_buffer_store_event_hold, gobble_input):
4419 (record_asynch_buffer_change) [USABLE_SIGIO]:
4420 (store_user_signal_events):
4421 No need to mess with signal mask.
4422 (gobble_input): If blocking input and there are terminals, simply
4423 set pending_signals to 1 and return. All hooks changed to not
4424 worry about whether input is blocked.
4425 (process_pending_signals): Clear pending_signals before processing
4426 them, in case a signal comes in while we're processing.
4427 By convention callers now test pending_signals before calling us.
4428 (UNBLOCK_INPUT_TO, unblock_input, totally_unblock_input):
4429 New functions, to support changes to blockinput.h.
4430 (handle_input_available_signal): Now extern.
4431 (reinvoke_input_signal): Remove. All uses replaced by
4432 handle_async_input.
4433 (quit_count): Now volatile, since a signal handler uses it.
4434 (handle_interrupt): Now takes bool IN_SIGNAL_HANDLER as arg.
4435 All callers changed. Block SIGINT only if not already blocked.
4436 Clear sigmask reliably, even if Fsignal returns, which it can.
4437 Omit unnecessary accesses to volatile var.
4438 (quit_throw_to_read_char): No need to restore sigmask.
4439 * keyboard.c (gobble_input, handle_user_signal):
4440 * process.c (wait_reading_process_output):
4441 Call signal-handling code rather than killing ourselves.
4442 * lisp.h: Include <float.h>, for...
4443 (IEEE_FLOATING_POINT): New macro, moved here to avoid duplication.
4444 (pending_signals): Now volatile.
4445 (syms_of_data): Now const if IEEE floating point.
4446 (handle_input_available_signal) [USABLE_SIGIO]:
4447 (terminate_due_to_signal, record_child_status_change): New decls.
4448 * process.c (create_process): Avoid disaster if memory is exhausted
4449 while we're processing a vfork, by tightening the critical section
4450 around the vfork.
4451 (send_process_frame, process_sent_to, handle_pipe_signal)
4452 (deliver_pipe_signal): Remove. No longer needed, as Emacs now
4453 ignores SIGPIPE.
4454 (send_process): No need for setjmp/longjmp any more, since the
4455 SIGPIPE stuff is now gone. Instead, report an error if errno
4456 is EPIPE.
4457 (record_child_status_change): Now extern. PID and W are now args.
4458 Return void, not bool. All callers changed.
4459 * sysdep.c (wait_debugging) [(BSD_SYSTEM || HPUX) && !defined (__GNU__)]:
4460 Remove. All uses removed. This bug should be fixed now in a
4461 different way.
4462 (wait_for_termination_1): Use waitpid rather than sigsuspend,
4463 and record the child status change directly. This avoids the
4464 need to futz with the signal mask.
4465 (process_fatal_action): Move here from emacs.c.
4466 (emacs_sigaction_flags): New function, containing
4467 much of what used to be in emacs_sigaction_init.
4468 (emacs_sigaction_init): Use it. Block nonfatal system signals that are
4469 caught by emacs, to make races less likely.
4470 (deliver_process_signal): Rename from handle_on_main_thread.
4471 All uses changed.
4472 (BACKTRACE_LIMIT_MAX): Now at top level.
4473 (thread_backtrace_buffer, threadback_backtrace_pointers):
4474 New static vars.
4475 (deliver_thread_signal, deliver_fatal_thread_signal):
4476 New functions, for more-accurate delivery of thread-specific signals.
4477 (handle_fatal_signal, deliver_fatal_signal): Move here from emacs.c.
4478 (deliver_arith_signal): Handle in this thread, not
4479 in the main thread, since it's triggered by this thread.
4480 (maybe_fatal_sig): New function.
4481 (init_signals): New arg DUMPING so that we can be more accurate
4482 about whether we're dumping. Caller changed.
4483 Treat thread-specific signals differently from process-general signals.
4484 Block all signals while handling fatal error; that's safer.
4485 xsignal from SIGFPE only on non-IEEE hosts, treating it as fatal
4486 on IEEE hosts.
4487 When batch, ignore SIGHUP, SIGINT, SIGTERM if they were already ignored.
4488 Ignore SIGPIPE unless batch.
4489 (emacs_backtrace): Output backtrace for the appropriate thread,
4490 which is not necessarily the main thread.
4491 * syssignal.h: Include <stdbool.h>.
4492 (emacs_raise): New macro.
4493 * xterm.c (x_connection_signal): Remove; no longer needed
4494 now that we use sigaction.
4495 (x_connection_closed): No need to mess with sigmask now.
4496 (x_initialize): No need to reset SIGPIPE handler here, since
4497 init_signals does this for us now.
4498
4499 2012-09-23 Jan Djärv <jan.h.d@swipnet.se>
4500
4501 * nsterm.m (ns_dumpglyphs_image): dr is a new rect to draw image into,
4502 background rect may be larger (Bug#12245).
4503
4504 2012-09-23 Chong Yidong <cyd@gnu.org>
4505
4506 * keyboard.c (timer_check): Avoid quitting during Fcopy_sequence.
4507
4508 2012-09-22 Paul Eggert <eggert@cs.ucla.edu>
4509
4510 * .gdbinit: Just stop at fatal_error_backtrace.
4511 See Stefan Monnier's request in
4512 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00549.html>.
4513 Remove no-longer-used query of system type.
4514
4515 2012-09-22 Chong Yidong <cyd@gnu.org>
4516
4517 * search.c (Freplace_match): Doc fix (Bug#12325).
4518
4519 * minibuf.c (Finternal_complete_buffer): Doc fix (Bug#12391).
4520
4521 * editfns.c (Fline_beginning_position): Doc fix (Bug#12416).
4522 (Fline_end_position): Doc fix.
4523
4524 * cmds.c (Fforward_char, Fbackward_char): Doc fix (Bug#12414).
4525
4526 2012-09-22 Chong Yidong <cyd@gnu.org>
4527
4528 * dispextern.h (struct image_type): Add new slot, storing a type
4529 initialization function.
4530
4531 * image.c (define_image_type): Call the image initializer function
4532 if it is defined. Arguments and return value changed.
4533 (valid_image_p, make_image): Callers changed.
4534 (xbm_type, xpm_type, pbm_type, png_type, jpeg_type, tiff_type)
4535 (gif_type, imagemagick_type, svg_type, gs_type):
4536 Add initialization functions.
4537 (Finit_image_library): Call lookup_image_type.
4538 (CHECK_LIB_AVAILABLE): Macro deleted.
4539 (lookup_image_type): Call define_image_type here, rather than via
4540 Finit_image_library, and without using CHECK_LIB_AVAILABLE.
4541 (syms_of_image): Move define_image_type calls for xbm_type and
4542 pbm_type to lookup_image_type.
4543
4544 2012-09-22 Eli Zaretskii <eliz@gnu.org>
4545
4546 * keyboard.c (timer_check_2): Move calculation of 'timers' and
4547 'idle_timers' from here ...
4548 (timer_check): ... to here. Use Fcopy_sequence to copy the timer
4549 lists, to avoid infloops when the timer does something stupid,
4550 like reinvoke itself with the same or smaller time-out.
4551 (Bug#12447)
4552
4553 2012-09-22 Martin Rudalics <rudalics@gmx.at>
4554
4555 * window.c (Fsplit_window_internal): Handle only Qt value of
4556 Vwindow_combination_limit separately.
4557 (Qtemp_buffer_resize): New symbol.
4558 (Vwindow_combination_limit): New default value.
4559 Rewrite doc-string.
4560
4561 2012-09-22 Eli Zaretskii <eliz@gnu.org>
4562
4563 * xdisp.c (next_overlay_string): Initialize it->end_charpos for
4564 the new overlay string. (Bug#10159)
4565
4566 2012-09-22 Paul Eggert <eggert@cs.ucla.edu>
4567
4568 * emacs.c (shut_down_emacs): Don't assume stderr is buffered,
4569 or that fprintf is async-signal-safe. POSIX doesn't require
4570 either assumption.
4571
4572 2012-09-22 Chong Yidong <cyd@gnu.org>
4573
4574 * buffer.c (Fset_buffer_modified_p): Handle indirect buffers
4575 (Bug#8207).
4576
4577 2012-09-22 Kenichi Handa <handa@gnu.org>
4578
4579 * composite.c (composition_reseat_it): Handle the case that a
4580 grapheme cluster is not covered by a single font (Bug#12352).
4581
4582 2012-09-21 Chong Yidong <cyd@gnu.org>
4583
4584 * image.c (define_image_type): Avoid adding duplicate types to
4585 image_types (Bug#12463). Suggested by Jörg Walter.
4586
4587 2012-09-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4588
4589 * unexmacosx.c: Define LC_DATA_IN_CODE if not defined.
4590 (print_load_command_name): Add case LC_DATA_IN_CODE.
4591 (dump_it) [LC_DATA_IN_CODE]: Call copy_linkedit_data.
4592
4593 2012-09-21 Glenn Morris <rgm@gnu.org>
4594
4595 * eval.c (Frun_hook_with_args_until_success)
4596 (Frun_hook_with_args_until_failure): Doc fixes. (Bug#12393)
4597
4598 2012-09-21 Andreas Schwab <schwab@linux-m68k.org>
4599
4600 * fileio.c (Ffile_selinux_context): Only call freecon when
4601 lgetfilecon succeeded.
4602 (Fset_file_selinux_context): Likewise. (Bug#12444)
4603
4604 2012-09-21 Eli Zaretskii <eliz@gnu.org>
4605
4606 * xdisp.c (try_window_reusing_current_matrix): Under bidi
4607 reordering, locate the cursor by calling set_cursor_from_row; if
4608 that fails, clear the desired glyph matrix before returning a
4609 failure indication to the caller. Fixes leaving garbled display
4610 when fast scrolling with a down-key. (Bug#12403)
4611 (compute_stop_pos_backwards): Fix a typo that caused crashes while
4612 scrolling through multibyte text.
4613
4614 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
4615
4616 * alloc.c (mark_object) <PVEC_WINDOW>: Mark prev/next_buffers *after*
4617 calling mark_vectorlike since that's the one that marks the window.
4618 (mark_discard_killed_buffers): Mark the final cdr.
4619 * window.h (struct window): Move prev/next_buffers to the
4620 non-standard fields.
4621 * window.c (make_window): Initialize prev/next_buffers manually.
4622
4623 2012-09-20 Paul Eggert <eggert@cs.ucla.edu>
4624
4625 Omit unused arg EXPECTED from socket hooks.
4626 * keyboard.c (gobble_input, read_avail_input, tty_read_avail_input):
4627 * nsterm.m (ns_term_init):
4628 * termhooks.h (struct terminal.read_socket_hook):
4629 * w32inevt.c (w32_console_read_socket):
4630 * w32term.c (w32_read_socket):
4631 * xterm.c (XTread_socket):
4632 Omit unused arg EXPECTED. All callers changed.
4633 (store_user_signal_events): Return void, not int, since callers no
4634 longer care about the return value. All uses changed.
4635
4636 2012-09-20 Juanma Barranquero <lekktu@gmail.com>
4637
4638 * w32gui.h (XParseGeometry): Do not declare.
4639
4640 2012-09-19 Paul Eggert <eggert@cs.ucla.edu>
4641
4642 * w32inevt.c (w32_console_read_socket): Return -1 on failure, not 0.
4643 Ignore 'expected'. See Eli Zaretskii in
4644 <http://bugs.gnu.org/12471#8> (last line).
4645
4646 * frame.c (read_integer): Remove. All uses replaced by strtol/strtoul.
4647 (XParseGeometry): Now static. Substitute extremal values for
4648 values that are out of range.
4649
4650 2012-09-19 Jan Djärv <jan.h.d@swipnet.se>
4651
4652 * w32xfns.c (read_integer, XParseGeometry): Move to frame.c.
4653
4654 * nsfns.m (XParseGeometry): Remove.
4655 (Fx_create_frame): Call x_set_offset to correctly interpret
4656 top_pos in geometry.
4657
4658 * frame.c (read_integer, XParseGeometry): Move from w32xfns.c.
4659 (Fx_parse_geometry): If there is a space in string, call
4660 Qns_parse_geometry, otherwise do as on other terms (Bug#12368).
4661
4662 2012-09-17 Eli Zaretskii <eliz@gnu.org>
4663
4664 * search.c (scan_buffer): Use character positions in calls to
4665 region_cache_forward and region_cache_backward, not byte
4666 positions. (Bug#12196)
4667
4668 * w32term.c (w32_read_socket): Set pending_signals to 1, like
4669 xterm.c does. Reported by Daniel Colascione <dancol@dancol.org>.
4670
4671 * ralloc.c (r_alloc_init) [!SYSTEM_MALLOC]: Initialize
4672 __malloc_extra_blocks to 32 instead of 64, like alloc.c did in
4673 emacs_blocked_malloc, now deleted.
4674
4675 2012-09-17 Paul Eggert <eggert@cs.ucla.edu>
4676
4677 Remove no-longer-needed Solaris 2.4 vfork bug workaround.
4678 The workaround was for improving performance on Solaris 2.4, but
4679 is getting in the way now. Emacs will still work if someone is
4680 still running Solaris 2.4 in a museum somewhere; Sun dropped
4681 support for Solaris 2.4 in 2003.
4682 * callproc.c (Fcall_process) [HAVE_WORKING_VFORK]:
4683 * process.c (create_process) [HAVE_WORKING_VFORK]:
4684 Omit now-unnecessary workaround for the Solaris 2.4 vfork bug,
4685 since Emacs no longer uses vfork on that platform.
4686
4687 2012-09-17 Glenn Morris <rgm@gnu.org>
4688
4689 * emacs.c: Use COPYRIGHT.
4690
4691 2012-09-16 Paul Eggert <eggert@cs.ucla.edu>
4692
4693 Remove configure's --without-sync-input option (Bug#12450).
4694 When auditing signal-handling in preparation for cleaning it up,
4695 I found that SYNC_INPUT has race conditions and would be a real
4696 pain to fix. Since it's an undocumented and deprecated
4697 configure-time option, now seems like a good time to remove it.
4698 Also see <http://bugs.gnu.org/11080#16>.
4699 * alloc.c (_bytes_used, __malloc_extra_blocks, _malloc_internal)
4700 (_free_internal) [!DOUG_LEA_MALLOC]: Remove decls.
4701 (alloc_mutex) [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
4702 (malloc_hysteresis):
4703 (check_depth) [XMALLOC_OVERRUN_CHECK]:
4704 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT):
4705 (__malloc_hook, __realloc_hook, __free_hook, BYTES_USED)
4706 (dont_register_blocks, bytes_used_when_reconsidered)
4707 (bytes_used_when_full, emacs_blocked_free, emacs_blocked_malloc)
4708 (emacs_blocked_realloc, reset_malloc_hooks, uninterrupt_malloc):
4709 [!SYSTEM_MALLOC && !SYNC_INPUT]:
4710 Remove. All uses removed.
4711 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): Use a different
4712 implementation, one that depends on whether the new macro
4713 XMALLOC_BLOCK_INPUT_CHECK is defined, not on whether SYNC_INPUT
4714 is defined.
4715 * atimer.c (run_timers, handle_alarm_signal):
4716 * keyboard.c (pending_signal, poll_for_input_1, poll_for_input)
4717 (handle_async_input, process_pending_signals)
4718 (handle_input_available_signal, init_keyboard):
4719 * nsterm.m (ns_read_socket):
4720 * process.c (wait_reading_process_output):
4721 * regex.c (immediate_quit, IMMEDIATE_QUIT_CHECK):
4722 * sysdep.c (emacs_sigaction_init) [SA_RESTART]:
4723 (emacs_write):
4724 * xterm.c (XTread_socket):
4725 Assume SYNC_INPUT.
4726 * conf_post.h (SA_RESTART) [IRIX6_5]: Do not #undef.
4727 * eval.c (handling_signal): Remove. All uses removed.
4728 * lisp.h (ELSE_PENDING_SIGNALS): Remove.
4729 All uses replaced with the SYNC_INPUT version.
4730 (reset_malloc_hooks, uninterrupt_malloc, handling_signal):
4731 Remove decls.
4732 * sysdep.c, syssignal.h (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
4733 Now static.
4734
4735 * font.c (Ffont_shape_gstring): Remove unused local.
4736
4737 2012-09-16 Glenn Morris <rgm@gnu.org>
4738
4739 * Makefile.in (clean): No longer run nextstep's clean.
4740
4741 * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Remove variables.
4742 (ns_frag): Remove.
4743 (ns-app): Move here from ns.mk, and simplify.
4744 (clean): Simplify nextstep entry.
4745 * ns.mk: Remove file.
4746
4747 2012-09-17 Kenichi Handa <handa@gnu.org>
4748
4749 * font.c (Ffont_shape_gstring): Fix previous change; GLYPHs may
4750 not covert the last few charactes.
4751
4752 2012-09-16 Kenichi Handa <handa@gnu.org>
4753
4754 * font.c (Ffont_shape_gstring): Don't adjust grapheme cluster
4755 here, but just check the validity of glyphs in the glyph-string.
4756
4757 2012-09-16 Martin Rudalics <rudalics@gmx.at>
4758
4759 * window.c (Fwindow_parameter, Fset_window_parameter):
4760 Accept any window as argument (Bug#12452).
4761
4762 2012-09-16 Jan Djärv <jan.h.d@swipnet.se>
4763
4764 * nsfns.m (Fx_open_connection): Move initialization of ns_*_types
4765 to ns_term_init to avoid memory leak.
4766
4767 * nsterm.m (ns_update_begin): Initialize bp after lcokFocus, use
4768 explicit retain/release.
4769 (ns_term_init): Only allow one display. Initialize outerpool and
4770 ns_*_types.
4771
4772 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
4773
4774 Port _setjmp fix to POSIXish hosts as well as Microsoft.
4775 * image.c (_setjmp) [!HAVE__SETJMP]: Restore definition, as
4776 it's needed on POSIXish hosts that lack _setjmp. Attempt to solve
4777 the Microsoft problem in a different way, by altering ../nt/config.nt.
4778
4779 2012-09-15 Eli Zaretskii <eliz@gnu.org>
4780
4781 * w32xfns.c:
4782 * w32uniscribe.c:
4783 * w32term.c:
4784 * w32select.c:
4785 * w32reg.c:
4786 * w32proc.c:
4787 * w32menu.c:
4788 * w32inevt.c:
4789 * w32heap.c:
4790 * w32font.c:
4791 * w32fns.c:
4792 * w32console.c:
4793 * w32.c:
4794 * w16select.c: Remove inclusion of setjmp.h, as it is now included
4795 by lisp.h. This completes removal of setjmp.h inclusion
4796 erroneously announced in the previous commit. (Bug#12446)
4797
4798 * lisp.h [!HAVE__SETJMP, !HAVE_SIGSETJMP]: Make the commentary
4799 more accurate.
4800
4801 * image.c (_setjmp) [!HAVE__SETJMP]: Define only if 'setjmp' is
4802 not defined as a macro. The latter happens on MS-Windows.
4803 (Bug#12446)
4804
4805 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
4806
4807 Port better to POSIX hosts lacking _setjmp (Bug#12446).
4808 * lisp.h: Include <setjmp.h> here, since we use its symbols here.
4809 Some instances of '#include <setjmp.h>' removed, if the
4810 only reason for the instance was because "lisp.h" was included.
4811 (sys_jmp_buf, sys_setjmp, sys_longjmp): New symbols.
4812 Unless otherwise specified, replace all uses of jmp_buf, _setjmp,
4813 and _longjmp with the new symbols. Emacs already uses _setjmp if
4814 available, so this change affects only POSIXish hosts that have
4815 sigsetjmp but not _setjmp, such as some versions of Solaris and
4816 Unixware. (Also, POSIX-2008 marks _setjmp as obsolescent.)
4817 * image.c (_setjmp, _longjmp) [HAVE_PNG && !HAVE__SETJMP]: New macros.
4818 (png_load_body) [HAVE_PNG]:
4819 (PNG_LONGJMP) [HAVE_PNG && PNG_LIBPNG_VER < 10500]:
4820 (PNG_JMPBUF) [HAVE_PNG && PNG_LIBPNG_VER >= 10500]:
4821 Use _setjmp and _longjmp rather than sys_setjmp and sys_longjmp,
4822 since PNG requires jmp_buf. This is the only exception to the
4823 general rule that we now use sys_setjmp and sys_longjmp.
4824 This exception is OK since this code does not change the signal
4825 mask or longjmp out of a signal handler.
4826
4827 2012-09-14 Paul Eggert <eggert@cs.ucla.edu>
4828
4829 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
4830 Include "syssignal.h", for 'main_thread'.
4831
4832 2012-09-14 Dmitry Antipov <dmantipov@yandex.ru>
4833
4834 Avoid out-of-range marker position (Bug#12426).
4835 * insdel.c (replace_range, replace_range_2):
4836 Adjust markers before overlays, as suggested by comments.
4837 (insert_1_both, insert_from_buffer_1, adjust_after_replace):
4838 Remove redundant check before calling offset_intervals.
4839
4840 2012-09-14 Martin Rudalics <rudalics@gmx.at>
4841
4842 * xdisp.c (Fformat_mode_line): Unconditionally save/restore
4843 current buffer (Bug#12387).
4844
4845 2012-09-14 Juanma Barranquero <lekktu@gmail.com>
4846
4847 * makefile.w32-in ($(BLD)/alloc.$(O)): Update dependencies.
4848
4849 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
4850
4851 Use a more backwards-compatible timer format (Bug#12430).
4852 * keyboard.c (decode_timer): Get PSECS from the 8th (origin-0)
4853 vector element, not from the 4th, since PSECS is now at the end.
4854 (Fcurrent_idle_time): Doc fix.
4855
4856 2012-09-13 Dmitry Antipov <dmantipov@yandex.ru>
4857
4858 Function to mark objects and remove killed buffers at once.
4859 * alloc.c (discard_killed_buffers): Rename to ...
4860 (mark_discard_killed buffers) ... new name. Add marking
4861 of remaining objects. Fix comment. Adjust users.
4862 (mark_object): Do not touch frame buffer lists here.
4863 * frame.c (delete_frame): Reset frame buffer lists here.
4864
4865 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
4866
4867 Better workaround for GNOME bug when --enable-gcc-warnings.
4868 * emacsgtkfixed.c (G_STATIC_ASSERT): Remove, undoing last change.
4869 Instead, disable -Wunused-local-typedefs. See Dmitry Antipov in
4870 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00335.html>.
4871
4872 Simplify SIGIO usage (Bug#12408).
4873 The code that dealt with SIGIO was crufty and confusing, e.g., it
4874 played tricks like "#undef SIGIO" but these tricks were not used
4875 consistently. Simplify mostly by not #undeffing standard symbols,
4876 e.g., use "defined USABLE_SIGIO" (our symbol, which we can define
4877 or not as we please) rather than "defined SIGIO" (standard symbol
4878 that we probably shouldn't #undef).
4879 * conf_post.h [USG5_4]: Do not include <sys/wait.h> here.
4880 Modules that need it can include it.
4881 [USG5_4 && emacs]: Likewise, do not include the streams stuff here.
4882 * dispextern.h (ignore_sigio): New decl.
4883 * emacs.c (shut_down_emacs): Invoke unrequest_sigio
4884 unconditionally, since it's now a no-op if !USABLE_SIGIO.
4885 * emacs.c (shut_down_emacs):
4886 * keyboard.c (kbd_buffer_store_event_hold):
4887 Use ignore_sigio rather than invoking 'signal' directly.
4888 * keyboard.c (USABLE_FIONREAD && USG5_4): Include <sys/filio.h>,
4889 for FIONREAD.
4890 (FIONREAD, SIGIO): Do not #undef.
4891 (tty_read_avail_input): Use #error rather than a syntax error.
4892 * process.c [USG5_4]: Include <sys/stream.h> and <sys/stropts.h>,
4893 for I_PIPE, used by SETUP_SLAVE_PTY.
4894 (DATAGRAM_SOCKETS): Simplify defn, based on USABLE_FIONREAD.
4895 * sysdep.c (croak): Remove; no longer needed. This bit of
4896 temporary code, with Fred N. Fish's comment that it's temporary,
4897 has been in Emacs since at least 1992!
4898 (init_sigio, reset_sigio, request_sigio, unrequest_sigio):
4899 Arrange for them to be no-ops in all cases when ! USABLE_SIGIO.
4900 * syssignal.h (croak): Remove decl.
4901 (SIGIO, SIGPOO, SIGAIO, SIGPTY): Do not #undef; that's too fragile.
4902 * systty.h [!NO_TERMIO]: Do not include <termio.h>; no longer needed
4903 now that we're termios-only.
4904 (FIONREAD, ASYNC) [BROKEN_FIONREAD]: Do not #undef.
4905 * term.c (dissociate_if_controlling_tty): Use #error rather than
4906 a run-time error.
4907
4908 Work around GCC and GNOME bugs when --enable-gcc-warnings.
4909 * emacsgtkfixed.c (G_STATIC_ASSERT): Redefine to use 'verify',
4910 to work around GNOME bug 683906.
4911 * image.c (jpeg_load_body) [HAVE_JPEG && lint]: Pacify gcc -Wclobber.
4912 (struct my_jpeg_error_mgr) [HAVE_JPEG && lint]: New member fp.
4913 This works around GCC bug 54561.
4914
4915 2012-09-12 Paul Eggert <eggert@cs.ucla.edu>
4916
4917 More fixes for 'volatile' and setjmp/longjmp.
4918 * eval.c (Fdefvar, Fcondition_case): Remove unnecessary 'volatile's.
4919 * image.c (struct png_load_context) [HAVE_PNG]: New type.
4920 (png_load_body) [HAVE_PNG]:
4921 (jpeg_load_body) [HAVE_JPEG]:
4922 New function, with most of the old parent function's body.
4923 (png_load) [HAVE_PNG]:
4924 (jpeg_load) [HAVE_JPEG]:
4925 Invoke the new function, to avoid longjmp munging our locals.
4926 (struct my_jpeg_error_mgr) [HAVE_JPEG]: New members cinfo, failure_code.
4927 (my_error_exit) [HAVE_JPEG]: Don't trust 'setjmp' to return 2 when
4928 longjmp is passed 2, as the C standard doesn't guarantee this.
4929 Instead, store the failure code into mgr->failure_code.
4930
4931 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
4932
4933 * keyboard.c (read_char, requeued_events_pending_p, Finput_pending_p)
4934 (Fdiscard_input, quit_throw_to_read_char, init_keyboard)
4935 (syms_of_keyboard): Remove support for unread-command-char.
4936
4937 2012-09-12 Eli Zaretskii <eliz@gnu.org>
4938
4939 * w32proc.c (sys_kill): If PID is our process ID and the signal is
4940 SIGABRT, call emacs_abort. Avoids silently exiting upon assertion
4941 violation. (Bug#12426)
4942
4943 2012-09-12 Paul Eggert <eggert@cs.ucla.edu>
4944
4945 * image.c (jpeg_memory_src): Don't assume string len fits in unsigned.
4946
4947 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
4948
4949 * eval.c: Add `inhibit-debugger'.
4950 (Qinhibit_debugger): New symbol.
4951 (call_debugger): Bind it instead of Qdebug_on_error.
4952 (maybe_call_debugger): Test Vinhibit_debugger.
4953 (syms_of_eval): Define inhibit-debugger.
4954 * xdisp.c (set_message): Don't bind Qinhibit_debug_on_message.
4955 (syms_of_xdisp): Remove inhibit-debug-on-message.
4956
4957 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
4958
4959 Avoid _setjmp/_longjmp problems with local nonvolatile variables.
4960 If a nonvolatile local variable is written before a _longjmp to
4961 the frame containing the variable, and is read after the _longjmp,
4962 the value read is indeterminate. Some local variables of type
4963 'struct handler' and 'struct catchtag' are used in this way, so
4964 mark each of their slots as volatile if the slot can be set before
4965 _longjmp and read afterwards.
4966 * lisp.h (struct handler): var and chosen_clause are now volatile.
4967 (struct catchtag): val, next, and pdlcount are now volatile.
4968
4969 * bidi.c (bidi_push_it, bidi_pop_it):
4970 * fns.c (copy_hash_table):
4971 * image.c (define_image_type):
4972 * keyboard.c (kbd_buffer_store_event_hold):
4973 * process.c (Fprocess_send_eof):
4974 * xfaces.c (x_create_gc) [HAVE_NS]:
4975 * xgselect.c (xg_select):
4976 Prefer assignment to memcpy when either will do.
4977
4978 * alloc.c (discard_killed_buffers): Tune and simplify a bit.
4979 Use pointer-to-a-pointer to simplify and avoid a NILP check each
4980 time an item is removed. No need to mark this function 'inline';
4981 the compiler knows better than we do.
4982
4983 2012-09-11 Jan Djärv <jan.h.d@swipnet.se>
4984
4985 * nsterm.m (ns_judge_scroll_bars): Pass NO to updateFrameSize.
4986 (updateFrameSize:): Add delay parameter to updateFrameSize, send it
4987 to change_frame_size (Bug#12388).
4988 (windowDidResize:): Pass YES to updateFrameSize.
4989
4990 * nsterm.h: Add delay parameter to updateFrameSize.
4991
4992 2012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
4993
4994 Discard killed buffers from deleted window and frame objects.
4995 This reduces an amount of references to killed buffers and
4996 helps GC to reclaim them faster.
4997 * alloc.c (discard_killed_buffers): New function.
4998 (mark_object): Use it for deleted windows and frames.
4999 (mark_object): If symbol's value is set up for a killed buffer
5000 or deleted frame, restore its global binding.
5001 * data.c (swap_in_global_binding): Add GC notice.
5002 (swap_in_symval_forwarding): Use convenient set_blv_where.
5003 * window.c (wset_next_buffers, wset_prev_buffers): Move ...
5004 * window.h: ... to here.
5005
5006 2012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
5007
5008 Convenient macro to check whether the buffer is live.
5009 * buffer.h (BUFFER_LIVE_P): New macro.
5010 * alloc.c, buffer.c, editfns.c, insdel.c, lread.c, marker.c:
5011 * minibuf.c, print.c, process.c, window.c, xdisp.c: Use it.
5012
5013 2012-09-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5014
5015 * xdisp.c (right_overwritten, right_overwriting): Also handle gstring
5016 composition cases (Bug#12364).
5017
5018 * xterm.c (x_draw_glyph_string): Avoid overwriting inverted left
5019 overhang of succeeding glyphs overlapping box cursor.
5020
5021 * w32term.c (x_draw_glyph_string): Likewise.
5022
5023 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
5024
5025 Simplify, document, and port floating-point (Bug#12381).
5026 The porting part of this patch fixes bugs on non-IEEE platforms
5027 with frexp, ldexp, logb.
5028 * data.c, lisp.h (Qdomain_error, Qsingularity_error, Qunderflow_error):
5029 Now static.
5030 * floatfns.c: Simplify discussion of functions that Emacs doesn't
5031 support, by removing commented-out code and briefly listing the
5032 C89 functions excluded. The commented-out stuff was confusing
5033 maintenance, e.g., we thought we needed cbrt but it was commented out.
5034 (logb): Remove decl; no longer needed.
5035 (isfinite): New macro, if not already supplied.
5036 (isnan): Don't replace any existing macro.
5037 (Ffrexp, Fldexp): Define even if !HAVE_COPYSIGN, as frexp and ldexp
5038 are present on all C89 platforms.
5039 (Ffrexp): Do not special-case zero, as frexp does the right thing
5040 for that case.
5041 (Flogb): Do not use logb, as it doesn't have the desired meaning
5042 on hosts that use non-base-2 floating point. Instead, stick with
5043 frexp, which is C89 anyway. Do not pass an infinity or a NaN to
5044 frexp, to avoid getting an unspecified result.
5045
5046 * xdisp.c (Qinhibit_debug_on_message): Now static.
5047
5048 2012-09-10 Jan Djärv <jan.h.d@swipnet.se>
5049
5050 * nsterm.m (ns_update_begin): Set clip path to whole view by using
5051 NSBezierPath (Bug#12131).
5052
5053 2012-09-10 Chong Yidong <cyd@gnu.org>
5054
5055 * fns.c (Fdelq, Fdelete): Doc fix.
5056
5057 2012-09-10 Paul Eggert <eggert@cs.ucla.edu>
5058
5059 * lisp.h (XSETINT, XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL)
5060 (XSETFLOAT, XSETMISC): Parenthesize macro bodies.
5061
5062 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
5063
5064 * lisp.h (make_lisp_ptr): New macro to replace XSET.
5065 (XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL, XSETFLOAT, XSETMISC):
5066 Use it.
5067
5068 2012-09-09 Eli Zaretskii <eliz@gnu.org>
5069
5070 * fringe.c (draw_fringe_bitmap_1): Don't reduce the width of the
5071 left fringe if the window has a left margin. This avoids leaving
5072 traces of the cursor because its leftmost pixel is not drawn over.
5073
5074 * dispnew.c (update_window_line): When the left margin area of a
5075 screen line is updated, set the redraw_fringe_bitmaps_p flag of
5076 that screen line. (Bug#12277)
5077
5078 2012-09-09 Paul Eggert <eggert@cs.ucla.edu>
5079
5080 Assume C89 or later for math functions (Bug#12381).
5081 This simplifies the code, and makes it a bit smaller and faster,
5082 and (most important) makes it easier to clean up signal handling
5083 since we can stop worring about floating-point exceptions in
5084 library code. That was a problem before C89, but the problem
5085 went away many years ago on all practical Emacs targets.
5086 * data.c, image.c, lread.c, print.c:
5087 Don't include <math.h>; no longer needed.
5088 * data.c, floatfns.c (IEEE_FLOATING_POINT): Don't worry that it
5089 might be autoconfigured, as that never happens.
5090 * data.c (fmod):
5091 * doprnt.c (DBL_MAX_10_EXP):
5092 * print.c (DBL_DIG):
5093 Remove. C89 or later always defines these.
5094 * floatfns.c (HAVE_MATHERR, FLOAT_CHECK_ERRNO, FLOAT_CHECK_DOMAIN)
5095 (in_float, float_error_arg, float_error_arg2, float_error_fn_name)
5096 (arith_error, domain_error, domain_error2):
5097 Remove all this pre-C89 cruft. Do not include <errno.h> as that's
5098 no longer needed -- we simply return what C returns. All uses removed.
5099 (IN_FLOAT, IN_FLOAT2): Remove. All uses replaced with
5100 the wrapped code.
5101 (FLOAT_TO_INT, FLOAT_TO_INT2, range_error, range_error2):
5102 Remove. All uses expanded, as these macros are no longer used
5103 more than once and are now more trouble than they're worth.
5104 (Ftan): Use tan, not sin / cos.
5105 (Flogb): Assume C89 frexp.
5106 (fmod_float): Assume C89 fmod.
5107 (matherr) [HAVE_MATHERR]: Remove; no longer needed.
5108 (init_floatfns): Remove. All uses removed.
5109
5110 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
5111
5112 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Take back
5113 compositeToPoint for OSX < 10.6 (Bug#12390).
5114
5115 2012-09-08 Paul Eggert <eggert@cs.ucla.edu>
5116
5117 * floatfns.c (Ftan): Use tan (x), not (sin (x) / cos (x)).
5118 This produces more-accurate results.
5119
5120 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
5121
5122 * nsterm.m (updateFrameSize): Call setFrame: on the view when size
5123 changes (Bug#12088).
5124
5125 2012-09-08 Chong Yidong <cyd@gnu.org>
5126
5127 * syntax.c (Fstring_to_syntax): Doc fix.
5128
5129 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
5130
5131 * nsterm.m (ns_clip_to_row): Remove code that deals with drawing fringe
5132 in the internal border.
5133 (x_set_window_size): Remove static variables and their usage.
5134 (ns_redraw_scroll_bars): Fix NSTRACE arg.
5135 (ns_after_update_window_line, ns_draw_fringe_bitmap):
5136 Remove fringe/internal border adjustment (Bug#11052).
5137 (ns_draw_fringe_bitmap): Make code more like other terms (xterm.c).
5138 (ns_draw_window_cursor): Remove fringe/internal border adjustment.
5139 (ns_fix_rect_ibw): Remove.
5140 (ns_get_glyph_string_clip_rect): Remove call to ns_fix_rect_ibw.
5141 (ns_dumpglyphs_box_or_relief): Ditto.
5142 (ns_maybe_dumpglyphs_background): Remove fringe/internal border
5143 adjustment.
5144 (ns_dumpglyphs_image): Ditto.
5145 (ns_dumpglyphs_stretch): Fix coding style. Remove fringe/internal
5146 border adjustment.
5147 (ns_set_vertical_scroll_bar): Remove variables barOnVeryLeft/Right and
5148 their usage. Add fringe_extended_p and its use as in other terms.
5149 (ns_judge_scroll_bars): Code style fix. Call updateFrameSize if
5150 scroll bar was removed.
5151 (updateFrameSize): New function.
5152 (windowDidResize): Move code to updateFrameSize and call it.
5153
5154 * nsterm.h (EmacsView): Add updateFrameSize.
5155
5156 2012-09-07 Chong Yidong <cyd@gnu.org>
5157
5158 * textprop.c (Fget_text_property): Minor doc fix (Bug#12323).
5159
5160 * data.c (Flocal_variable_if_set_p): Doc fix (Bug#10713).
5161
5162 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
5163
5164 More signal-handler cleanup (Bug#12327).
5165 * emacs.c (main): Convert three 'signal' calls to 'sigaction' calls.
5166 Problem introduced when merging patches. Noted by Eli Zaretskii in
5167 <http://bugs.gnu.org/12327#67>.
5168 * floatfns.c: Comment fix.
5169 * lisp.h (force_auto_save_soon): Declare regardless of SIGDANGER.
5170 SIGDANGER might not be in scope so "#ifdef SIGDANGER" is not right,
5171 and anyway the declaration is harmless even if SIGDANGER is not defined.
5172 * syssignal.h (SIGIO): Also #undef if (! defined FIONREAD ||
5173 defined BROKEN_FIONREAD). systty.h formerly did this, but other
5174 source files not surprisingly expected syssignal.h to define, or
5175 not define, SIGIO, and it's cleaner to do it that way, for consistency.
5176 Include <sys/ioctl.h>, for FIONREAD.
5177 * systty.h (SIGIO): Do not #undef here; it's now syssignal.h's job.
5178 This eliminates a problem whereby other files mysteriously had
5179 to include "syssignal.h" before including "systty.h" if they
5180 wanted to use "#ifdef SIGIO".
5181
5182 2012-09-07 Eli Zaretskii <eliz@gnu.org>
5183
5184 * w32proc.c (sigaction): New function, emulates Posix 'sigaction'.
5185
5186 * w32.c (sigemptyset): Empty the set.
5187 (sigsetmask, sigmask, sigblock, sigunblock): Remove unused functions.
5188
5189 * alloc.c [ENABLE_CHECKING]: Include signal.h, since we need SIGABRT.
5190
5191 2012-09-07 Dmitry Antipov <dmantipov@yandex.ru>
5192
5193 * alloc.c (mark_buffer): Revert unsafe marking optimization.
5194 (mark_object): Likewise for frame objects.
5195
5196 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
5197
5198 * syssignal.h (handle_on_main_thread): Always declare,
5199 even if FORWARD_SIGNAL_TO_MAIN_THREAD is not defined.
5200 This ports to platforms without HAVE_PTHREAD.
5201
5202 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
5203
5204 Signal-handler cleanup (Bug#12327).
5205 Emacs's signal handlers were written in the old 4.2BSD style with
5206 sigblock and sigmask and so forth, and this led to some
5207 inefficiencies and confusion. Rewrite these to use
5208 pthread_sigmask etc. without copying signal sets around. Also,
5209 get rid of the confusing macros 'SIGNAL_THREAD_CHECK' and
5210 'signal', and instead use functions that do not attempt to take
5211 over the system name space. This patch causes Emacs's text
5212 segment to shrink by 0.7% on my platform, Fedora 17 x86-64.
5213 * alloc.c, emacsgtkfixed.c, nsfns.m, widget.c, xmenu.c:
5214 Do not include <signal.h> or "syssignal.h", as these
5215 modules do not use signals.
5216 * atimer.c, callproc.c, data.c, dispnew.c, emacs.c, floatfns.c:
5217 * gtkutil.c, keyboard.c, process.c, sound.c, sysdep.c, term.c, xterm.c:
5218 Do not include <signal.h>, as "syssignal.h" does that for us now.
5219 * atimer.c (sigmask_atimers): New function.
5220 (block_atimers, unblock_atimers): New functions,
5221 replacing the old macros BLOCK_ATIMERS and UNBLOCK_ATIMERS.
5222 All uses replaced.
5223 * conf_post.h [SIGNAL_H_AHB]: Do not include <signal.h>;
5224 no longer needed here.
5225 * emacs.c (main): Inspect existing signal handler with sigaction,
5226 so that there's no need to block and unblock SIGHUP.
5227 * sysdep.c (struct save_signal): New member 'action', replacing
5228 old member 'handler'.
5229 (save_signal_handlers, restore_signal_handlers):
5230 Use sigaction instead of 'signal' to save and restore.
5231 (get_set_sighandler, set_sighandler) [!WINDOWSNT]:
5232 New function. All users of 'signal' modified to use set_sighandler
5233 if they're writeonly, and to use sys_signal if they're read+write.
5234 (emacs_sigaction_init, forwarded_signal): New functions.
5235 (sys_signal): Remove. All uses replaced by calls to sigaction
5236 and emacs_sigaction_init, or by direct calls to 'signal'.
5237 (sys_sigmask) [!__GNUC__]: Remove; no longer needed.
5238 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove;
5239 all uses replaced by pthread_sigmask etc. calls.
5240 * syssignal.h: Include <signal.h>.
5241 (emacs_sigaction_init, forwarded_signal): New decls.
5242 (SIGMASKTYPE): Remove. All uses replaced by its definiens, sigset_t.
5243 (SIGEMPTYMASK): Remove; all uses replaced by its definiens, empty_mask.
5244 (sigmask, sys_sigmask): Remove; no longer needed.
5245 (sigpause): Remove. All uses replaced by its definiens, sigsuspend.
5246 (sigblock, sigunblock, sigfree):
5247 (sigsetmask) [!defined sigsetmask]:
5248 Remove. All uses replaced by pthread_sigmask.
5249 (signal): Remove. Its remaining uses (with SIG_DFL and SIG_IGN)
5250 no longer need to be replaced, and its typical old uses
5251 are now done via emacs_sigaction_init and sigaction.
5252 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove decls.
5253 (sys_sigdel): Remove; unused.
5254 (NSIG): Remove a FIXME; the code's fine. Remove an unnecessary ifdef.
5255
5256 2012-09-06 Eli Zaretskii <eliz@gnu.org>
5257
5258 * process.c (CAN_HANDLE_MULTIPLE_CHILDREN): Fix a typo that broke
5259 SIGCHLD handling on systems that don't have WNOHANG. (Bug#12327)
5260
5261 2012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
5262
5263 Explicitly mark buffer_defaults and buffer_local_symbols.
5264 * alloc.c (Fgarbage_collect): Mark buffer_defaults and
5265 mark_local_symbols here.
5266 (mark_object): If GC_CHECK_MARKED_OBJECTS, simplify checking
5267 since special buffers aren't marked here any more.
5268 (allocate_buffer): Chain new buffer with all_buffers here...
5269 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): ...and
5270 not here.
5271 (Vbuffer_defaults, Vbuffer_local_symbols): Remove.
5272 (syms_of_buffer): Remove staticpro of the above.
5273 (init_buffer_once): Set names for buffer_defaults and
5274 buffer_local_symbols.
5275
5276 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
5277
5278 Use bool for booleans in font-related modules.
5279 * font.c (font_intern_prop, font_style_to_value)
5280 (font_style_symbolic, font_parse_xlfd, font_parse_fcname)
5281 (generate_otf_features, font_check_otf_features, font_check_otf)
5282 (font_match_p, font_list_entities, font_at):
5283 * fontset.c (fontset_id_valid_p, reorder_font_vector
5284 (fontset_find_font, Fset_fontset_font)
5285 (face_suitable_for_char_p) [0]:
5286 * ftfont.c (fc_initialized, ftfont_get_open_type_spec)
5287 (ftfont_open, ftfont_text_extents, ftfont_check_otf):
5288 (m17n_flt_initialized, ftfont_shape_by_flt):
5289 * ftxfont.c (ftxfont_draw_bitmap, ftxfont_draw):
5290 * nsfont.m (nsfont_draw):
5291 * w32font.c (w32font_draw):
5292 * w32term.c (x_draw_glyphless_glyph_string_foreground):
5293 Use bool for booleans.
5294 * font.h: Adjust to above API changes.
5295 (struct font, struct font_driver, struct font_driver_list):
5296 Use bool for booleans.
5297 (struct font): Remove useless member encoding_type.
5298 All users removed.
5299 * fontset.c, xftfont.c: Omit unnecessary static decls.
5300
5301 2012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
5302
5303 * alloc.c (mark_object): Revert window marking code
5304 since it's unsafe for the Fset_window_configuration.
5305
5306 2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
5307
5308 Fix race conditions with signal handlers and errno (Bug#12327).
5309 Be more systematic about preserving errno whenever a signal
5310 handler returns, even if it's not in the main thread. Do this by
5311 renaming signal handlers to distinguish between signal delivery
5312 and signal handling. All uses changed.
5313 * atimer.c (deliver_alarm_signal): Rename from alarm_signal_handler.
5314 * data.c (deliver_arith_signal): Rename from arith_error.
5315 * dispnew.c (deliver_window_change_signal): Rename from
5316 window_change_signal.
5317 * emacs.c (deliver_error_signal): Rename from fatal_error_signal.
5318 (deliver_danger_signal) [SIGDANGER]: Rename from memory_warning_signal.
5319 * keyboard.c (deliver_input_available_signal): Rename from
5320 input_available_signal.
5321 (deliver_user_signal): Rename from handle_user_signal.
5322 (deliver_interrupt_signal): Rename from interrupt_signal.
5323 * process.c (deliver_pipe_signal): Rename from send_process_trap.
5324 (deliver_child_signal): Rename from sigchld_handler.
5325 * atimer.c (handle_alarm_signal):
5326 * data.c (handle_arith_signal):
5327 * dispnew.c (handle_window_change_signal):
5328 * emacs.c (handle_fatal_signal, handle_danger_signal):
5329 * keyboard.c (handle_input_available_signal):
5330 * keyboard.c (handle_user_signal, handle_interrupt_signal):
5331 * process.c (handle_pipe_signal, handle_child_signal):
5332 New functions, with the actual signal-handling code taken from the
5333 original respective signal handlers, sans the sporadic attempts to
5334 preserve errno, since that's now done by handle_on_main_thread.
5335 * atimer.c (alarm_signal_handler): Remove unnecessary decl.
5336 * emacs.c, floatfns.c, lisp.h: Remove unused FLOAT_CATCH_SIGKILL cruft.
5337 * emacs.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
5338 Move to sysdep.c.
5339 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
5340 Move initialization of main_thread to sysdep.c's init_signals.
5341 * process.c (waitpid) [!WNOHANG]: #define to wait; that's good enough for
5342 our usage, and simplifies the mainline code.
5343 (record_child_status_change): New static function, as a helper
5344 for handle_child_signal, and with most of the old child handler's
5345 contents.
5346 (CAN_HANDLE_MULTIPLE_CHILDREN): New constant.
5347 (handle_child_signal): Use the above.
5348 * sysdep.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
5349 Moved here from emacs.c.
5350 (init_signals) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it;
5351 code moved here from emacs.c's main function.
5352 * sysdep.c, syssignal.h (handle_on_main_thread): New function,
5353 replacing the old SIGNAL_THREAD_CHECK. All uses changed.
5354 This lets callers save and restore errno properly.
5355
5356 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
5357
5358 Remove redundant or unused things here and there.
5359 * lisp.h (CYCLE_CHECK, CHAR_TABLE_TRANSLATE): Remove.
5360 * conf_post.h (RE_TRANSLATE): Use char_table_translate.
5361 * editfns.c (Fcompare_buffer_substrings): Likewise.
5362 * frame.h (struct terminal, struct font_driver_list):
5363 Remove redundant declarations.
5364 * window.h (Qleft, Qright): Likewise.
5365
5366 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
5367
5368 Do not mark objects from deleted buffers, windows and frames.
5369 * alloc.c (mark_buffer): Mark just the buffer if it is dead.
5370 (mark_object): Likewise for windows and frames.
5371
5372 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
5373
5374 * alloc.c (valid_lisp_object_p): Treat killed buffers,
5375 buffer_defaults and buffer_local_symbols as valid objects.
5376 Return special value to denote them.
5377
5378 2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
5379
5380 * fileio.c, filelock.c, floatfns.c, fns.c: Use bool for boolean.
5381 * fileio.c (auto_saving, auto_save_error_occurred, make_temp_name)
5382 (Fexpand_file_name, barf_or_query_if_file_exists, Fcopy_file)
5383 (file_name_absolute_p, Fsubstitute_in_file_name):
5384 (check_executable, check_writable, Ffile_accessible_directory_p)
5385 (Fset_file_selinux_context, Fdefault_file_modes)
5386 (Finsert_file_contents, choose_write_coding_system)
5387 (Fwrite_region, build_annotations, a_write, e_write)
5388 (Fdo_auto_save):
5389 * filelock.c (boot_time_initialized, get_boot_time)
5390 (get_boot_time_1, lock_file_1, within_one_second):
5391 * floatfns.c (in_float):
5392 * fns.c (concat, internal_equal, Frequire, base64_encode_1)
5393 (base64_decode_1, cmpfn_eql, cmpfn_user_defined)
5394 (sweep_weak_table, sweep_weak_hash_tables, secure_hash):
5395 * lisp.h (struct Lisp_Hash_Table.cmpfn):
5396 * window.c (compare_window_configurations):
5397 Use bool for booleans.
5398 * fileio.c (auto_saving_dir_umask, auto_saving_mode_bits)
5399 (Fdefault_file_modes): Now mode_t, not int, for modes.
5400 (Fdo_auto_save): Set a boolean to 1 rather than using ++.
5401 (internal_delete_file): Now returns void, not a (boolean) int,
5402 since nobody was looking at the return value.
5403 * lisp.h, window.h: Adjust to above API changes.
5404
5405 * xdisp.c (set_message): Simplify and reindent last change.
5406
5407 2012-09-05 Juanma Barranquero <lekktu@gmail.com>
5408
5409 * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies.
5410
5411 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
5412
5413 * eval.c (call_debugger): Make the function non-static so that we
5414 can call it from set_message.
5415
5416 * xdisp.c (set_message): Implement the new variable `debug-on-message'.
5417 (syms_of_xdisp): Defvar it and `inhibit-debug-on-message'.
5418
5419 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
5420
5421 Give more-useful info on a fatal error (Bug#12328).
5422 * alloc.c [ENABLE_CHECKING]: Do not include <execinfo.h>.
5423 (die) [ENABLE_CHECKING]: Call fatal_error_backtrace instead
5424 of doing the work ourselves.
5425 * emacs.c (fatal_error_signal): Let fatal_error_backtrace
5426 do most of the work.
5427 (fatal_error_backtrace): New function, taken from the guts
5428 of the old fatal_error_signal, but with a new option to output
5429 a backtrace.
5430 (shut_down_emacs) [!DOS_NT]: Use strsignal to give more-useful
5431 info about the signal than just its number.
5432 * lisp.h (fatal_error_backtrace, emacs_backtrace): New decls.
5433 * sysdep.c: Include <execinfo.h>
5434 (emacs_backtrace): New function, taken partly from the previous
5435 code of the 'die' function.
5436 (emacs_abort): Call fatal_error_backtrace rather than abort.
5437
5438 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
5439
5440 * lread.c (readevalloop): Call internal-macroexpand-for-load to perform
5441 eager (load-time) macro-expansion.
5442 * lisp.mk (lisp): Add macroexp.
5443
5444 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
5445
5446 Simplify redefinition of 'abort' (Bug#12316).
5447 Do not try to redefine the 'abort' function. Instead, redo
5448 the code so that it calls 'emacs_abort' rather than 'abort'.
5449 This removes the need for the NO_ABORT configure-time macro
5450 and makes it easier to change the abort code to do a backtrace.
5451 * .gdbinit: Just stop at emacs_abort, not at w32_abort or abort.
5452 * emacs.c (abort) [!DOS_NT && !NO_ABORT]:
5453 Remove; sysdep.c's emacs_abort now takes its place.
5454 * lisp.h (emacs_abort): New decl. All calls from Emacs code to
5455 'abort' changed to use 'emacs_abort'.
5456 * msdos.c (dos_abort) [defined abort]: Remove; not used.
5457 (abort) [!defined abort]: Rename to ...
5458 (emacs_abort): ... new name.
5459 * sysdep.c (emacs_abort) [!HAVE_NTGUI]: New function, taking
5460 the place of the old 'abort' in emacs.c.
5461 * w32.c, w32fns.c (abort): Do not #undef.
5462 * w32.c (emacs_abort): Rename from w32_abort.
5463
5464 2012-09-04 Eli Zaretskii <eliz@gnu.org>
5465
5466 * w32uniscribe.c (uniscribe_shape): Reverse the sign of
5467 offsets[j].dv, since the y axis of the screen coordinates points
5468 down, while the y axis of the font definition coordinates points
5469 up. This fixes display of Arabic diacritics such as KASRA and
5470 KASRATAN. (Bug#11860)
5471
5472 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
5473
5474 Be more systematic about _setjmp vs setjmp.
5475 * alloc.c (test_setjmp, mark_stack):
5476 * image.c (PNG_LONGJMP) [PNG_LIBPNG_VER < 10500]:
5477 (PNG_JMPBUF) [! (PNG_LIBPNG_VER < 10500)]:
5478 (png_load, my_error_exit, jpeg_load):
5479 * process.c (send_process_trap, send_process):
5480 Uniformly prefer _setjmp and _longjmp to setjmp and longjmp.
5481 The underscored versions are up to 30x faster on some hosts.
5482 Formerly, the code used setjmp+longjmp sometimes and
5483 _setjmp+_longjmp at other times, with no particular reason to
5484 prefer setjmp+longjmp.
5485
5486 2012-09-03 Paul Eggert <eggert@cs.ucla.edu>
5487
5488 Fix minor problem found by static checking.
5489 * buffer.c (Fdelete_all_overlays): Return nil.
5490
5491 2012-09-03 Martin Rudalics <rudalics@gmx.at>
5492
5493 * buffer.c (Fdelete_all_overlays): New function.
5494
5495 2012-09-03 Chong Yidong <cyd@gnu.org>
5496
5497 * gtkutil.c: Add extern decl for Qxft.
5498
5499 2012-09-02 Paul Eggert <eggert@cs.ucla.edu>
5500
5501 * emacs.c, eval.c: Use bool for boolean.
5502 * emacs.c (initialized, inhibit_window_system, running_asynch_code):
5503 (malloc_using_checking) [DOUG_LEA_MALLOC]:
5504 (display_arg) [HAVE_X_WINDOWS || HAVE_NS]:
5505 (noninteractive, no_site_lisp, fatal_error_in_progress, argmatch)
5506 (main, decode_env_path, Fdaemon_initialized):
5507 * eval.c (call_debugger, Finteractive_p, interactive_p):
5508 (unwind_to_catch, Fsignal, wants_debugger, skip_debugger)
5509 (maybe_call_debugger, Fbacktrace):
5510 * process.c (read_process_output, exec_sentinel):
5511 Use bool for booleans.
5512 * emacs.c (shut_down_emacs): Omit unused boolean argument NO_X.
5513 All callers changed.
5514 * eval.c (interactive_p): Omit always-true boolean argument
5515 EXCLUDE_SUBRS_P. All callers changed.
5516 * dispextern.h, lisp.h: Reflect above API changes.
5517 * firstfile.c (dummy): Use the address of 'main', whose signature
5518 won't change, instead of the address of 'initialize', whose
5519 signature just changed from int to bool.
5520 * lisp.h (fatal_error_in_progress): New decl of boolean, moved here ...
5521 * msdos.c (fatal_error_in_progress): ... from here.
5522 * xdisp.c (redisplaying_p): Now a boolean. Set it to 1 instead
5523 of incrementing it.
5524 (redisplay_internal, unwind_redisplay): Simply clear
5525 REDISPLAYING_P when unwinding, instead of saving its previous,
5526 always-false value and then restoring it.
5527
5528 Clean up some extern decls.
5529 Mostly, this hoists extern decls out of .c files and into .h files.
5530 That way, we're more likely to catch errors if the interfaces change.
5531 * alloc.c [USE_GTK]: Include "gtkutil.h" so that we need not
5532 declare xg_mark_data.
5533 * dispextern.h (x_frame_parm_handlers):
5534 * font.h (Qxft):
5535 * lisp.h (Qlexical_binding, Qinternal_interpreter_environment)
5536 (Qextra_light, Qlight, Qsemi_light, Qsemi_bold, Qbold, Qextra_bold)
5537 (Qultra_bold, Qoblique, Qitalic):
5538 Move extern decl here from .c file.
5539 * alloc.c (xg_mark_data) [USE_GTK]:
5540 * doc.c (Qclosure):
5541 * eval.c (Qlexical_binding):
5542 * fns.c (time) [!HAVE_UNISTD_H]:
5543 * gtkutil.c (Qxft, Qnormal, Qextra_light, Qlight, Qsemi_light)
5544 (Qsemi_bold, Qbold, Qextra_bold, Qultra_bold, Qoblique, Qitalic):
5545 * image.c (Vlibrary_cache, QCloaded_from) [HAVE_NTGUI]:
5546 * lread.c (Qinternal_interpreter_environment):
5547 * minibuf.c (Qbuffer):
5548 * process.c (QCfamily, QCfilter):
5549 * widget.c (free_frame_faces):
5550 * xfaces.c (free_frame_menubar) [USE_X_TOOLKIT]:
5551 * xfont.c (x_clear_errors):
5552 * xterm.c (x_frame_parm_handlers):
5553 Remove now-redundant extern decls.
5554 * keyboard.c, keyboard.h (ignore_mouse_drag_p) [USE_GTK || HAVE_NS]:
5555 * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic):
5556 Now static.
5557 * xfaces.c: Remove unnecessary static decls.
5558 * xterm.c (updating_frame): Remove decl of nonexistent object.
5559
5560 * Makefile.in (gl-stamp): Don't scan $(SOME_MACHINE_OBJECTS)
5561 when building globals.h, as the objects that are not built on
5562 this host are not needed to compile C files on this host.
5563
5564 2012-09-02 Jan Djärv <jan.h.d@swipnet.se>
5565
5566 * gtkutil.h: Remove prototype for x_wm_set_size_hint.
5567
5568 * frame.h: Add missing prototype for x_wm_set_size_hint.
5569
5570 2012-09-02 Paul Eggert <eggert@cs.ucla.edu>
5571
5572 * doc.c, editfns.c, insdel.c, intervals.c: Use bool for boolean.
5573 * doc.c (read_bytecode_char, get_doc_string, reread_doc_file)
5574 (Fdocumentation, Fdocumentation_property, Fsnarf_documentation)
5575 (Fsubstitute_command_keys):
5576 * editfns.c (region_limit, find_field, Fconstrain_to_field)
5577 (save_excursion_save, save_excursion_restore)
5578 (disassemble_lisp_time, decode_time_components, emacs_nmemftime)
5579 (format_time_string, general_insert_function)
5580 (make_buffer_string, make_buffer_string_both)
5581 (Fsubst_char_in_region, Ftranslate_region_internal, Fformat):
5582 * insdel.c (check_markers, gap_left, adjust_markers_for_insert)
5583 (copy_text, insert_1, insert_1_both, insert_from_string)
5584 (insert_from_string_before_markers, insert_from_string_1)
5585 (insert_from_buffer, insert_from_buffer_1, replace_range)
5586 (replace_range_2, del_range_1, del_range_byte, del_range_both)
5587 (del_range_2, modify_region):
5588 * intervals.c (intervals_equal, balance_possible_root_interval)
5589 (adjust_intervals_for_insertion, merge_properties_sticky)
5590 (graft_intervals_into_buffer, lookup_char_property)
5591 (adjust_for_invis_intang, set_point_both)
5592 (get_property_and_range, compare_string_intervals)
5593 (set_intervals_multibyte_1, set_intervals_multibyte):
5594 * keyboard.c (decode_timer):
5595 Use bool for boolean.
5596 * intervals.h, lisp.h, systime.h: Reflect above API changes.
5597 * editfns.c (struct info): Use 1-bit unsigned bitfields for booleans.
5598
5599 2012-09-02 Chong Yidong <cyd@gnu.org>
5600
5601 * keymap.c (push_key_description): Print M-TAB as C-M-i
5602 (Bug#11758).
5603
5604 2012-09-02 Juanma Barranquero <lekktu@gmail.com>
5605
5606 * makefile.w32-in (CCL_H, W32FONT_H): New macros.
5607 (ATIMER_H, FONT_H, $(BLD)/alloc.$(O), $(BLD)/callproc.$(O))
5608 ($(BLD)/editfns.$(O), $(BLD)/ccl.$(O), $(BLD)/chartab.$(O))
5609 ($(BLD)/coding.$(O), $(BLD)/sysdep.$(O), $(BLD)/fontset.$(O))
5610 ($(BLD)/sysdep.$(O), $(BLD)/w32fns.$(O), $(BLD)/keyboard.$(O))
5611 ($(BLD)/w32term.$(O), $(BLD)/w32menu.$(O), $(BLD)/process.$(O))
5612 ($(BLD)/w32font.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
5613
5614 2012-09-01 Eli Zaretskii <eliz@gnu.org>
5615
5616 * w32uniscribe.c (uniscribe_shape): Handle correctly the case of
5617 more than one grapheme cluster passed to the shaper: compute the
5618 offset adjustment values separately for each cluster. (Bug#11860)
5619
5620 * image.c: Restore mistakenly removed inclusion of w32.h. Without
5621 it, GCC doesn't see prototypes of w32_delayed_load, and complains
5622 about implicit conversions from integer to pointer.
5623
5624 2012-09-01 Daniel Colascione <dancol@dancol.org>
5625
5626 * w32fns.c (x_display_info_for_name): Prevent crash if w32 window
5627 system used too early.
5628
5629 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
5630
5631 Better seed support for (random).
5632 * emacs.c (main): Call init_random.
5633 * fns.c (Frandom): Set the seed from a string argument, if given.
5634 Remove long-obsolete Gentzel cruft.
5635 * lisp.h, sysdep.c (seed_random): Now takes address and size, not long.
5636 (init_random): New function.
5637
5638 2012-09-01 Daniel Colascione <dancol@dancol.org>
5639
5640 * xterm.h: Add header guards. Declare x_menubar_window_to_frame.
5641 Remove x_set_frame_alpha, x_bitmap_icon, x_make_frame_visible,
5642 x_make_frame_invisible, x_iconify_frame, x_free_frame_resources,
5643 x_wm_set_size_hint, x_query_colors, x_real_positions,
5644 x_set_menu_bar_lines, x_char_width, x_char_height, x_sync,
5645 x_set_tool_bar_lines, x_activate_menubar, and free_frame_menubar,
5646 all of which have been moved to common code.
5647
5648 * xfaces.c: Include TERM_HEADER instead of listing all possible
5649 window-system headers.
5650
5651 * w32xfns.c (x_sync): Correct definition of x_sync (a no-op here)
5652 to match header.
5653
5654 * w32term.h (FRAME_X_WINDOW): Use FRAME_W32_WINDOW instead of
5655 directly accessing frame internals.
5656
5657 * w32font.h: Include font.h. Define syms_of_w32font and
5658 globals_of_w32font.
5659
5660 * process.c: Include TERM_HEADER instead of listing all possible
5661 window-system headers.
5662
5663 * nsterm.h: Remove declarations now in frame.h.
5664 Define FRAME_X_SCREEN, FRAME_X_VISUAL.
5665
5666 * menu.c: Include TERM_HEADER instead of listing all possible
5667 window-system headers.
5668
5669 * keyboard.h: Declare ignore_mouse_drag_p whenever we have a
5670 window system.
5671
5672 * keyboard.c: Include TERM_HEADER instead of listing all possible
5673 window-system headers.
5674
5675 * image.c: Include TERM_HEADER instead of listing all possible
5676 window-system headers. Declare Vlibrary_cache when compiling for
5677 Windows.
5678
5679 * gtkutil.h (xg_list_node_): Include xterm.h to pick up needed
5680 window system declarations.
5681
5682 * frame.h: Move common functions here: set_frame_menubar,
5683 x_set_window_size, x_sync, x_get_focus_frame,
5684 x_set_mouse_position, x_set_mouse_pixel_position,
5685 x_make_frame_visible, x_make_frame_invisible, x_iconify_frame,
5686 x_char_width, x_char_height, x_pixel_width, x_pixel_height,
5687 x_set_frame_alpha, x_set_menu_bar_lines, x_set_tool_bar_lines,
5688 x_activate_menubar, x_real_positions, x_bitmap_icon,
5689 x_set_menu_bar_lines, free_frame_menubar, x_free_frame_resources,
5690 and x_query_colors.
5691
5692 * frame.c: Include TERM_HEADER instead of listing all possible
5693 window-system headers.
5694
5695 * font.c: Include TERM_HEADER instead of listing all possible
5696 window-system headers.
5697
5698 * emacs.c: Include TERM_HEADER.
5699
5700 * dispnew.c: Include TERM_HEADER instead of listing all possible
5701 window-system headers.
5702
5703 * ccl.h: Include character.h.
5704
5705 * Makefile.in: Define WINDOW_SYSTEM_OBJ to hold objects needed for
5706 the current window system; include in list of objects to link into
5707 Emacs.
5708
5709 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
5710
5711 Remove mark_ttys function and fix tty_display_info initialization.
5712 * lisp.h (mark_ttys): Remove prototype.
5713 * alloc.c (Fgarbage_collect): Remove redundant (and the only) call
5714 to mark_ttys because all possible values of 'top_frame' slot are
5715 the frames which are reachable from Vframe_list.
5716 * term.c (mark_ttys): Remove.
5717 (init_tty): Safely initialize 'top_frame' slot with Qnil.
5718
5719 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
5720
5721 Change struct frame bitfields from unsigned char to unsigned.
5722 * frame.h (struct frame): Change type of 'display_preempted',
5723 'visible', 'iconified', 'has_minibuffer', 'wants_modeline',
5724 'auto_raise', 'auto_lower', 'no_split', 'explicit_name',
5725 'window_sizes_changed', 'mouse_moved' and 'pointer_invisible'
5726 bitfields from unsigned char to unsigned.
5727
5728 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
5729
5730 Remove unused member of struct x_output and struct w32_output.
5731 * xterm.h (struct x_output): Remove unused field 'needs_exposure'.
5732 * w32term.h (struct w32_output): Likewise.
5733
5734 2012-08-30 Jan Djärv <jan.h.d@swipnet.se>
5735
5736 * gtkutil.c (x_wm_set_size_hint): Use 1 col for base_width so it
5737 does not become zero (Bug#12234).
5738
5739 2012-08-30 Paul Eggert <eggert@cs.ucla.edu>
5740
5741 * dispnew.c (update_frame_1): Pacify gcc -Wstrict-overflow
5742 for GCC 4.7.1 x86-64.
5743
5744 2012-08-30 Glenn Morris <rgm@gnu.org>
5745
5746 * lread.c (init_lread): For out-of-tree builds, only add the
5747 source directory's site-lisp dir to the load-path if it exists,
5748 consistent with in-tree builds. (Bug#12302)
5749
5750 2012-08-28 Jan Djärv <jan.h.d@swipnet.se>
5751
5752 * nsmenu.m (initWithContentRect:styleMask:backing:defer:): Initialize
5753 button_values to NULL. Call setStykeMask so dialogs get a close button.
5754 (windowShouldClose:): Set window_closed.
5755 (dealloc): New member, free button_values.
5756 (process_dialog:): Make member function. Remove window argument,
5757 replace window with self. Count buttons and allocate and store values
5758 in button_values.
5759 (addButton:value:row:): value is int with the name tag. Call setTag
5760 with tag. Remove return self, declare return value as void.
5761 (addString:row:): Remove return self, declare return value as void.
5762 (addSplit): Remove return self, declare return value as void.
5763 (clicked:): Remove return self, declare return value as void.
5764 Set dialog_return to button_values[seltag]. Code formatting change.
5765 (initFromContents:isQuestion:): Adjust call to process_dialog.
5766 Code formatting change.
5767 (timeout_handler:): Set timer_fired to YES.
5768 (runDialogAt:): Set timer_fired to NO.
5769 Handle click on close button as quit.
5770
5771 * nsterm.h (EmacsDialogPanel): Make timer_fired BOOL.
5772 Add window_closed and button_values. Add void as return value for
5773 add(Button|String|Split). addButton takes int instead of Lisp_Object.
5774 Add process_dialog as new member.
5775
5776 2012-08-28 Eli Zaretskii <eliz@gnu.org>
5777
5778 * ralloc.c (free_bloc): Don't dereference a 'heap' structure if it
5779 is not one of the heaps we manage. (Bug#12242)
5780
5781 2012-08-28 Glenn Morris <rgm@gnu.org>
5782
5783 * eval.c (Fcalled_interactively_p): Doc fix. (Bug#11747)
5784
5785 2012-08-28 Martin Rudalics <rudalics@gmx.at>
5786
5787 * window.c (Fset_window_configuration): Remove handling of
5788 auto-buffer-name window parameter. Install revision of reverted
5789 fix.
5790
5791 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
5792
5793 Do not allow to set major mode for a dead buffer.
5794 * buffer.c (Fset_buffer_major_mode): Signal an error
5795 if the buffer is dead.
5796 (Fother_buffer, other_buffer_safely): Remove redundant
5797 nested declaration.
5798
5799 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
5800
5801 Always use set_buffer_if_live to restore original buffer at unwind.
5802 * buffer.h (record_unwind_current_buffer): New function.
5803 * bytecode.c, dispnew.c, editfns.c, fileio.c, fns.c, insdel.c:
5804 * keyboard.c, keymap.c, minibuf.c, print.c, process.c, textprop.c:
5805 * undo.c, window.c: Adjust users.
5806 * buffer.c (set_buffer_if_live): Fix comment.
5807
5808 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
5809
5810 Fix usage of set_buffer_internal.
5811 * buffer.h (set_buffer_internal): Make it BUFFER_INLINE.
5812 * buffer.c (set_buffer_if_live): Use set_buffer_internal.
5813 * coding.c (decode_coding): Omit redundant test.
5814 * fileio.c (decide_coding_unwind): Likewise.
5815 * fns.c (secure_hash): Likewise.
5816 * insdel.c (modify_region): Likewise.
5817 * keyboard.c (command_loop_1): Likewise.
5818 * print.c (PRINTFINISH): Likewise.
5819 * xdisp.c (run_window_scroll_functions): Use set_buffer_internal.
5820
5821 2012-08-27 Paul Eggert <eggert@cs.ucla.edu>
5822
5823 * dispnew.c: Use bool for boolean.
5824 (frame_garbaged, display_completed, delayed_size_change)
5825 (fonts_changed_p, add_window_display_history)
5826 (add_frame_display_history, verify_row_hash)
5827 (adjust_glyph_matrix, clear_window_matrices, glyph_row_slice_p)
5828 (row_equal_p, realloc_glyph_pool)
5829 (allocate_matrices_for_frame_redisplay)
5830 (showing_window_margins_p)
5831 (adjust_frame_glyphs_for_frame_redisplay)
5832 (build_frame_matrix_from_leaf_window, make_current)
5833 (mirrored_line_dance, mirror_line_dance, update_frame)
5834 (update_window_tree, update_single_window)
5835 (check_current_matrix_flags, update_window, update_text_area)
5836 (update_window_line, set_window_update_flags, scrolling_window)
5837 (update_frame_1, scrolling, buffer_posn_from_coords)
5838 (do_pending_window_change, change_frame_size)
5839 (change_frame_size_1, sit_for):
5840 Use bool for boolean.
5841 (clear_glyph_matrix_rows): Rename from enable_glyph_matrix_rows,
5842 and remove last int (actually boolean) argument, which was always 0.
5843 All callers changed.
5844 * dispextern.h, frame.h, lisp.h: Reflect above API changes.
5845 * dispextern.h (struct composition_it): Use bool for boolean.
5846 (struct glyph_matrix): Don't assume buffer sizes can fit in 'int'.
5847 (struct bidi_it): Use unsigned:1, not int, for boolean prev_was_pdf.
5848 * dired.c (file_name_completion):
5849 Use bool for boolean. (This was missed in an earlier change.)
5850
5851 2012-08-27 Martin Rudalics <rudalics@gmx.at>
5852
5853 * window.c (Fset_window_configuration): Revert first part of
5854 last change.
5855
5856 2012-08-27 Jan Djärv <jan.h.d@swipnet.se>
5857
5858 * nsterm.h (NSPanel): New class variable dialog_return.
5859
5860 * nsmenu.m (initWithContentRect:styleMask:backing:defer:):
5861 Initialize dialog_return.
5862 (windowShouldClose:): Use stop instead of stopModalWithCode.
5863 (clicked:): Ditto, and also set dialog_return (Bug#12258).
5864 (timeout_handler:): Use stop instead of abortModal. Send a dummy
5865 event.
5866 (runDialogAt:): Make ret Lisp_Object. Set it from dialog_return when
5867 modal loop returns.
5868
5869 2012-08-27 Paul Eggert <eggert@cs.ucla.edu>
5870
5871 * composite.c, data.c, dbusbind.c, dired.c: Use bool for booleans.
5872 * composite.c (find_composition, composition_gstring_p)
5873 (composition_reseat_it, find_automatic_composition):
5874 * data.c (let_shadows_buffer_binding_p)
5875 (let_shadows_global_binding_p, set_internal, make_blv)
5876 (Fmake_variable_buffer_local, Fmake_local_variable)
5877 (Fmake_variable_frame_local, arithcompare, cons_to_unsigned)
5878 (cons_to_signed, arith_driver):
5879 * dbusbind.c (xd_in_read_queued_messages):
5880 * dired.c (directory_files_internal, file_name_completion):
5881 Use bool for booleans.
5882 * dired.c (file_name_completion):
5883 * process.h (fd_callback):
5884 Omit int (actually boolean) argument. It wasn't being used.
5885 All uses changed.
5886 * composite.h, lisp.h: Reflect above API changes.
5887
5888 * cmds.c, coding.c: Use bool for booleans.
5889 * cmds.c (move_point, Fself_insert_command):
5890 * coding.h (struct composition status, struct coding_system):
5891 * coding.c (detect_coding_utf_8, encode_coding_utf_8)
5892 (detect_coding_utf_16, encode_coding_utf_16, detect_coding_emacs_mule)
5893 (emacs_mule_char, decode_coding_emacs_mule)
5894 (encode_coding_emacs_mule, detect_coding_iso_2022)
5895 (decode_coding_iso_2022, encode_invocation_designation)
5896 (encode_designation_at_bol, encode_coding_iso_2022)
5897 (detect_coding_sjis, detect_coding_big5, decode_coding_sjis)
5898 (decode_coding_big5, encode_coding_sjis, encode_coding_big5)
5899 (detect_coding_ccl, encode_coding_ccl, decode_coding_raw_text)
5900 (encode_coding_raw_text, detect_coding_charset)
5901 (decode_coding_charset, encode_coding_charset, detect_eol)
5902 (detect_coding, get_translation_table, produce_chars)
5903 (consume_chars, reused_workbuf_in_use)
5904 (make_conversion_work_buffer, code_conversion_save)
5905 (decode_coding_object, encode_coding_object)
5906 (detect_coding_system, char_encodable_p)
5907 (Funencodable_char_position, code_convert_region)
5908 (code_convert_string, code_convert_string_norecord)
5909 (Fset_coding_system_priority):
5910 * fileio.c (Finsert_file_contents):
5911 Use bool for booleans.
5912 * coding.h, lisp.h: Reflect above API changes.
5913 * coding.c: Remove unnecessary static function decls.
5914 (detect_coding): Use unsigned, not signed, to copy an unsigned field.
5915 (decode_coding, encode_coding, decode_coding_gap): Return 'void',
5916 not a boolean 'int', since callers never look at the return value.
5917 (ALLOC_CONVERSION_WORK_AREA): Assume caller returns 'void', not 'int'.
5918 * coding.h (decoding_buffer_size, encoding_buffer_size)
5919 (emacs_mule_string_char): Remove unused extern decls.
5920 (struct iso_2022_spec, struct coding_system):
5921 Use 'unsigned int : 1' for boolean fields, since there's more than one.
5922 (struct emacs_mule_spec): Remove unused field 'full_support'.
5923 All initializations removed.
5924 * cmds.c (internal_self_insert): Don't assume EMACS_INT fits in 'int'.
5925
5926 2012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
5927
5928 Fix spare memory change (Bug#12286).
5929 * alloc.c (mark_maybe_pointer): Handle MEM_TYPE_SPARE.
5930 (valid_lisp_object_p): Likewise.
5931
5932 2012-08-27 Martin Rudalics <rudalics@gmx.at>
5933
5934 * window.c (Fset_window_configuration): Record any window's old
5935 buffer if it's replaced (see Bug#8789). If the new current
5936 buffer doesn't appear in the selected window, go to its old
5937 point (Bug#12208).
5938
5939 2012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
5940
5941 Special MEM_TYPE_SPARE to denote reserved memory.
5942 * alloc.c (enum mem_type): New memory type.
5943 (refill_memory_reserve): Use new type for spare memory.
5944 This prevents live_cons_p and live_string_p from incorrect
5945 detection of uninitialized objects from spare memory as live.
5946
5947 2012-08-26 Paul Eggert <eggert@cs.ucla.edu>
5948
5949 Spelling fixes.
5950 * Makefile.in (.PHONY): versioclean -> versionclean.
5951
5952 Remove unused external symbols.
5953 * data.c (Qcons, Qfloat, Qmisc, Qstring, Qvector):
5954 * window.c (Qwindow_valid_p, decode_valid_window):
5955 Now static, not extern.
5956 * data.c (Qinterval): Remove; unused.
5957 (syms_of_data): Do not define 'interval'.
5958 * lisp.h (Qinteger, Qstring, Qmisc, Qvector, Qfloat, Qcons):
5959 * window.h (decode_valid_window):
5960 Remove decls.
5961
5962 * character.c, charset.c, chartab.c: Use bool for booleans.
5963 * character.c (lisp_string_width, string_count_byte8)
5964 (string_escape_byte8):
5965 * charset.c (charset_map_loaded, load_charset_map, read_hex):
5966 (load_charset_map_from_file, map_charset_chars)
5967 (Fdefine_charset_internal, define_charset_internal)
5968 (Fdeclare_equiv_charset, find_charsets_in_text)
5969 (Ffind_charset_region, char_charset, Fiso_charset):
5970 * chartab.c (sub_char_table_ref, sub_char_table_ref_and_range)
5971 (sub_char_table_set, sub_char_table_set_range)
5972 (char_table_set_range, optimize_sub_char_table)
5973 (map_sub_char_table):
5974 Use bool for boolean.
5975 * character.c (str_to_unibyte): Omit last boolean argument; it was
5976 always 0. All callers changed.
5977 * character.h, charset.h: Adjust to match previous changes.
5978 * character.h (char_printable_p): Remove decl of nonexistent function.
5979 * charset.h (struct charset): Members code_linear_p, iso_chars_96,
5980 ascii_compatible_p, supplementary_p, compact_codes_p, unified_p
5981 are all boolean, so make them single-bit bitfields.
5982
5983 * lisp.h (ASET): Remove attempt to detect side effects.
5984 It was meant to be temporary and it often doesn't work,
5985 because when IDX has side effects the behavior of IDX==IDX
5986 is undefined. See Stefan Monnier in
5987 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00762.html>.
5988
5989 2012-08-26 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
5990
5991 * lisp.h (functionp): New function (extracted from Ffunctionp).
5992 (FUNCTIONP): Use it.
5993 * eval.c (Ffunctionp): Use it.
5994
5995 2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
5996
5997 * xgselect.c (xg_select): Use auto storage for the GPollFD buffer
5998 as that's faster and simpler than static storage. Don't bother
5999 with the g_main_context_query overhead if g_main_context_pending
6000 says no events are pending.
6001 (gfds, gfds_size): Remove these static vars.
6002 (xgselect_initialize): Remove; no longer needed.
6003 All uses and decls removed.
6004
6005 * emacs.c (fatal_error_signal_hook): Remove.
6006 All uses removed. This leftover from old code was always 0.
6007
6008 * casefiddle.c, casetab.c, category.c: Use bool for boolean.
6009 * casefiddle.c (casify_object, casify_region):
6010 * casetab.c (set_case_table):
6011 * category.c, category.h (word_boundary_p):
6012 * category.h (CHAR_HAS_CATEGORY):
6013 Use bool for booleans, instead of int.
6014
6015 2012-08-25 Eli Zaretskii <eliz@gnu.org>
6016
6017 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on $(GNU_LIB)/execinfo.h.
6018
6019 2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
6020
6021 On assertion failure, print backtrace if available.
6022 * alloc.c [ENABLE_CHECKING]: Include <execinfo.h>.
6023 (die) [ENABLE_CHECKING]: Print a backtrace if available.
6024 * Makefile.in (LIB_EXECINFO): New macro.
6025 (LIBES): Use it.
6026
6027 * bytecode.c, callint.c, callproc.c: Use bool for boolean.
6028 * bytecode.c (exec_byte_code):
6029 * callint.c (check_mark, Fcall_interactively):
6030 * callproc.c (Fcall_process, add_env, child_setup, getenv_internal_1)
6031 (getenv_internal, sync_process_alive, call_process_exited):
6032 * lisp.h (USE_SAFE_ALLOCA):
6033 Use bool for booleans, instead of int.
6034 * lisp.h, process.h: Adjust prototypes to match above changes.
6035 * callint.c (Fcall_interactively): Don't assume the mark's
6036 offset fits in 'int'.
6037
6038 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
6039
6040 * buffer.c, buffer.h: Use bool for boolean.
6041 * buffer.c (reset_buffer_local_variables)
6042 (buffer_lisp_local_variables, Fset_buffer_modified_p)
6043 (Frestore_buffer_modified_p, Fset_buffer_multibyte):
6044 (overlays_at, overlays_in, mouse_face_overlay_overlaps)
6045 (overlay_touches_p, overlay_strings, Foverlay_put)
6046 (report_overlay_modification, call_overlay_mod_hooks):
6047 (mmap_enlarge, mmap_set_vars):
6048 * buffer.h (buffer_has_overlays, uppercasep, lowercasep):
6049 Use bool for booleans, instead of int.
6050 * buffer.c (compact_buffer, mmap_free_1): Return void, not int,
6051 since the 1-or-0 return value is always ignored anyway.
6052 (mmap_initialized_p):
6053 * buffer.h (struct buffer_text.inhibit_shrinking): Now bool, not int.
6054 * buffer.h, lisp.h: Adjust prototypes to match above changes.
6055
6056 2012-08-23 Paul Eggert <eggert@cs.ucla.edu>
6057
6058 * bidi.c: Use bool for boolean.
6059 This is a bit more readable, and makes the text segment of bidi.o
6060 0.4% smaller on my platform (GCC 4.7.1 x86-64, Fedora 15).
6061 Presumably it's faster too.
6062 (bidi_initialized, bidi_ignore_explicit_marks_for_paragraph_level):
6063 Now bool.
6064 (bidi_cache_find_level_change, bidi_cache_iterator_state)
6065 (bidi_unshelve_cache, bidi_init_it, bidi_count_bytes)
6066 (bidi_char_at_pos, bidi_fetch_char, bidi_paragraph_init)
6067 (bidi_explicit_dir_char, bidi_level_of_next_char)
6068 (bidi_find_other_level_edge, bidi_move_to_visually_next):
6069 Use bool for booleans, instead of int.
6070 * dispextern.h (bidi_init_it, bidi_paragraph_init)
6071 (bidi_unshelve_cache): Adjust decls to match code.
6072
6073 2012-08-23 Martin Rudalics <rudalics@gmx.at>
6074
6075 * keyboard.c (Fposn_at_x_y): Do not allow internal window as
6076 argument.
6077
6078 2012-08-23 Paul Eggert <eggert@cs.ucla.edu>
6079
6080 * atimer.c, atimer.h (turn_on_atimers): Use bool for boolean.
6081 * atimer.h: Include <stdbool.h>.
6082
6083 2012-08-22 Dan Nicolaescu <dann@gnu.org>
6084
6085 * frame.h (FRAME_W32_P, FRAME_MSDOS_P, FRAME_NS_P): Change to
6086 compile time tests instead of run time tests on systems that do
6087 not use them.
6088 (FRAME_MAC_P): Remove leftover from deleted code.
6089 * frame.c (syms_of_frame): Remove leftover from deleted code.
6090
6091 2012-08-22 Jan Djärv <jan.h.d@swipnet.se>
6092
6093 * nsterm.m (insertText:): Don't clear modifiers if code is space.
6094
6095 2012-08-22 Paul Eggert <eggert@cs.ucla.edu>
6096
6097 * fontset.c (FONTSET_ADD): Return void, not Lisp_Object.
6098 Otherwise, the compiler complains about (A?B:C) where B is void
6099 and C is Lisp_Object. This fixes an incompatibility with Sun C 5.12.
6100 (fontset_add): Return void, for FONTSET_ADD.
6101
6102 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
6103
6104 * alloc.c: Use bool for booleans.
6105 (gc_in_progress, abort_on_gc)
6106 (setjmp_tested_p) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
6107 (dont_register_blocks) [GC_MALLOC_CHECK]:
6108 (suppress_checking) [ENABLE_CHECKING]: Now bool, not int.
6109 (check_string_bytes, make_specified_string, memory_full)
6110 (live_string_p, live_cons_p, live_symbol_p, live_float_p)
6111 (live_misc_p, live_vector_p, live_buffer_p, mark_maybe_object)
6112 (mark_stack, valid_pointer_p, make_pure_string)
6113 (Fgarbage_collect, survives_gc_p, gc_sweep):
6114 Use bool for booleans, instead of int.
6115 (test_setjmp) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
6116 Remove unused local.
6117 * alloc.c (PURE_POINTER_P):
6118 * lisp.h (STRING_MULTIBYTE): Document that it returns a boolean.
6119 * editfns.c (Fformat):
6120 * fileio.c (Fexpand_file_name, Fsubstitute_in_file_name)
6121 (Fdo_auto_save):
6122 * fns.c (sweep_weak_table):
6123 * lisp.h (suppress_checking, push_message, survives_gc_p)
6124 (make_pure_string, gc_in_progress, abort_on_gc):
6125 * lread.c (readchar, read1):
6126 * print.c (Fprin1_to_string):
6127 * xdisp.c (push_message):
6128 Use bool for booleans affected directly or indirectly by
6129 alloc.c's changes.
6130
6131 Make recently-introduced setters macros.
6132 * fontset.c (set_fontset_id, set_fontset_name, set_fontset_ascii)
6133 (set_fontset_base, set_fontset_frame, set_fontset_nofont_face)
6134 (set_fontset_default, set_fontset_fallback): Rename from their
6135 upper-case counterparts, and make them functions rather than macros.
6136 This is more consistent with the other recently-introduced setters.
6137 These don't need to be inline, since they're local.
6138
6139 2012-08-21 Jan Djärv <jan.h.d@swipnet.se>
6140
6141 * nsterm.m (fd_handler:): Alloc and release a NSAutoreleasePool in
6142 the loop (Bug#12247).
6143
6144 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
6145
6146 * lisp.h (vcopy): Use memcpy rather than our own loop.
6147 This fixes a performance regression introduced by the recent
6148 addition of vcopy. This means 'vcopy' will need to be modified
6149 for a copying collector, but that's OK. Also, tighten the
6150 checking in the assertion.
6151
6152 2012-08-21 Eli Zaretskii <eliz@gnu.org>
6153
6154 * w32uniscribe.c (uniscribe_shape): Fix producing gstring
6155 components for RTL text (Bug#11860). Adjust X-OFFSET of each
6156 non-base glyph for the width of the base character, according to
6157 what x_draw_composite_glyph_string_foreground expects.
6158 Generate WADJUST value according to composition_gstring_width's
6159 expectations, to produce correct width of the composed character.
6160 Reverse the sign of the DU offset produced by ScriptPlace.
6161
6162 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
6163
6164 * dbusbind.c (xd_remove_watch): Do not assume C99 comments.
6165
6166 2012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
6167
6168 Avoid direct writes to contents member of struct Lisp_Vector.
6169 * lisp.h (vcopy): New function to copy data into vector.
6170 * dispnew.c (Fframe_or_buffer_changed_p): Use AREF and ASET.
6171 * fns.c (Ffillarray): Use ASET.
6172 * keyboard.c (timer_check_2): Use AREF and ASET.
6173 (append_tool_bar_item, Frecent_keys): Use vcopy.
6174 * lread.c (read_vector): Use ASET.
6175 * msdos.c (Frecent_doskeys): Use vcopy.
6176 * xface.c (Finternal_copy_lisp_face): Use vcopy.
6177 (Finternal_merge_in_global_face): Use ASET and vcopy.
6178 * xfont.c (xfont_list_pattern): Likewise.
6179
6180 2012-08-21 Martin Rudalics <rudalics@gmx.at>
6181
6182 * window.c (Fwindow_point): For the selected window always return
6183 the position of its buffer's point.
6184 (Fset_window_point): For the selected window always go in its
6185 buffer to the specified position.
6186
6187 2012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
6188
6189 Setter macros for fontsets.
6190 * fontset.c (SET_FONTSET_ID, SET_FONTSET_NAME, SET_FONTSET_ASCII)
6191 (SET_FONTSET_BASE, SET_FONTSET_FRAME, SET_FONTSET_NOFONT_FACE)
6192 (SET_FONTSET_DEFAULT, SET_FONTSET_FALLBACK): New macros.
6193 Adjust users.
6194
6195 2012-08-20 Glenn Morris <rgm@gnu.org>
6196
6197 * Makefile.in (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
6198 Don't assume that `ln -f' works.
6199
6200 2012-08-20 Eli Zaretskii <eliz@gnu.org>
6201
6202 * .gdbinit: Use "set $dummy = ..." to avoid warnings from GDB 7.5
6203 and later about non-assignments with no effect. See discussion at
6204 http://sourceware.org/ml/gdb-patches/2012-08/msg00518.html for
6205 details.
6206
6207 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
6208
6209 Inline setter functions for Lisp_Objects slots of struct specbinding.
6210 * eval.c (set_specpdl_symbol, set_specpdl_old_value): New functions.
6211 Adjust users.
6212
6213 2012-08-20 Martin Rudalics <rudalics@gmx.at>
6214
6215 * window.c (select_window): Always make selected window's buffer
6216 current.
6217
6218 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
6219
6220 Use AREF and ASET for docstrings of category tables.
6221 * category.h (CATEGORY_DOCSTRING): Use AREF.
6222 (SET_CATEGORY_DOCSTRING): Use ASET.
6223 * category.c (Fdefine_category): Use SET_CATEGORY_DOCSTRING.
6224
6225 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
6226
6227 Inline setter functions for hash table members.
6228 * lisp.h (set_hash_key, set_hash_value, set_hash_next)
6229 (set_hash_hash, set_hash_index): Rename with _slot suffix.
6230 (set_hash_key_and_value, set_hash_index, set_hash_next)
6231 (set_hash_hash): New functions.
6232 * charset.c, fns.c: Adjust users.
6233
6234 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
6235
6236 Inline getter and setter functions for per-buffer values.
6237 * buffer.h (per_buffer_default, set_per_buffer_default)
6238 (per_buffer_value, set_per_buffer_value): New functions.
6239 (PER_BUFFER_VALUE, PER_BUFFER_DEFAULT): Remove.
6240 * buffer.c, data.c: Adjust users.
6241
6242 2012-08-20 Juanma Barranquero <lekktu@gmail.com>
6243
6244 * makefile.w32-in ($(BLD)/vm-limit.$(O)): Update dependencies.
6245
6246 2012-08-19 Paul Eggert <eggert@cs.ucla.edu>
6247
6248 Rely on <config.h> + <unistd.h> to declare 'environ',
6249 as gnulib does this if the system doesn't.
6250 * callproc.c, editfns.c, process.c (environ) [!USE_CRT_DLL]:
6251 Remove declaration. MS-Windows declares it on stdlib.h which is
6252 included by conf_post.h.
6253 * emacs.c (environ) [DOUG_LEA_MALLOC]:
6254 * vm-limit.c (environ) [ORDINARY_LINK]: Remove decl.
6255 * vm-limit.c: Include <unistd.h>, for 'environ'.
6256
6257 * unexaix.c, unexcoff.c: Include "mem-limits.h".
6258 (start_of_data): Remove decl; mem-limits.h provides it.
6259
6260 * xdisp.c (handle_invisible_prop): Make it a bit faster
6261 and avoid a gcc -Wmaybe-uninitialized diagnostic.
6262
6263 2012-08-19 Chong Yidong <cyd@gnu.org>
6264
6265 * xdisp.c (handle_invisible_prop): Fix ellipses at overlay string
6266 ends (Bug#3874).
6267
6268 2012-08-19 Andreas Schwab <schwab@linux-m68k.org>
6269
6270 * .gdbinit: Use call instead of set when calling a function in the
6271 inferior.
6272
6273 * data.c (set_internal): Don't use set_blv_found.
6274 (Fkill_local_variable): Likewise.
6275
6276 2012-08-18 Alp Aker <alp.tekin.aker@gmail.com>
6277
6278 * nsfont.m (ns_ascii_average_width): Ensure the string
6279 ascii_printable is initialized with a null-terminated character
6280 array. Otherwise, it can contain undesired extra characters.
6281
6282 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
6283
6284 port new setting code to Sun C 5.8 2005/10/13
6285 * chartab.c, lisp.h (char_table_set, char_table_set_range):
6286 Return void, not Lisp_Object. Otherwise, the compiler
6287 complains about (A?B:C) where B is void and C is Lisp_Object
6288 when compiling CHAR_TABLE_SET, due to the recent change to
6289 the API of sub_char_table_set_contents.
6290
6291 2012-08-18 Chong Yidong <cyd@gnu.org>
6292
6293 * xdisp.c (handle_invisible_prop): Obey TEXT_PROP_MEANS_INVISIBLE
6294 for the string case (Bug#3874).
6295
6296 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
6297
6298 * buffer.h (BSET): Remove (Bug#12215).
6299 Replace all uses with calls to new setter functions.
6300 (bset_bidi_paragraph_direction, bset_case_canon_table)
6301 (bset_case_eqv_table, bset_directory, bset_display_count)
6302 (bset_display_time, bset_downcase_table)
6303 (bset_enable_multibyte_characters, bset_filename, bset_keymap)
6304 (bset_last_selected_window, bset_local_var_alist)
6305 (bset_mark_active, bset_point_before_scroll, bset_read_only)
6306 (bset_truncate_lines, bset_undo_list, bset_upcase_table)
6307 (bset_width_table):
6308 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
6309 (bset_auto_fill_function, bset_auto_save_file_format)
6310 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
6311 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
6312 (bset_cache_long_line_scans, bset_case_fold_search)
6313 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
6314 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
6315 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
6316 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
6317 (bset_header_line_format, bset_indicate_buffer_boundaries)
6318 (bset_indicate_empty_lines, bset_invisibility_spec)
6319 (bset_left_fringe_width, bset_major_mode, bset_mark)
6320 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
6321 (bset_name, bset_overwrite_mode, bset_pt_marker)
6322 (bset_right_fringe_width, bset_save_length)
6323 (bset_scroll_bar_width, bset_scroll_down_aggressively)
6324 (bset_scroll_up_aggressively, bset_selective_display)
6325 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
6326 (bset_word_wrap, bset_zv_marker):
6327 * category.c (bset_category_table):
6328 * syntax.c (bset_syntax_table):
6329 New setter functions.
6330
6331 * process.h (PSET): Remove (Bug#12215).
6332 Replace all uses with calls to new setter functions.
6333 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
6334 (PROCESS_INLINE): New macro.
6335 (pset_childp): New setter function.
6336 (pset_gnutls_cred_type) [HAVE_GNUTLS]: New setter function.
6337 * process.c (PROCESS_INLINE):
6338 Define to EXTERN_INLINE, so that the corresponding functions
6339 are compiled into code.
6340 (pset_buffer, pset_command, pset_decode_coding_system)
6341 (pset_decoding_buf, pset_encode_coding_system)
6342 (pset_encoding_buf, pset_filter, pset_log, pset_mark, pset_name)
6343 (pset_plist, pset_sentinel, pset_status, pset_tty_name)
6344 (pset_type, pset_write_queue): New setter functions.
6345
6346 * window.h (WSET): Remove (Bug#12215).
6347 Replace all uses with calls to new setter functions.
6348 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
6349 (WINDOW_INLINE): New macro.
6350 (wset_buffer, wset_frame, wset_left_col, wset_next, wset_prev)
6351 (wset_redisplay_end_trigger, wset_top_line, wset_total_cols)
6352 (wset_total_lines, wset_vertical_scroll_bar)
6353 (wset_window_end_pos, wset_window_end_valid)
6354 (wset_window_end_vpos): New setter functions.
6355 * window.c (WINDOW_INLINE):
6356 Define to EXTERN_INLINE, so that the corresponding functions
6357 are compiled into code.
6358 (wset_combination_limit, wset_dedicated, wset_display_table)
6359 (wset_hchild, wset_left_fringe_width, wset_left_margin_cols)
6360 (wset_new_normal, wset_new_total, wset_next_buffers)
6361 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
6362 (wset_prev_buffers, wset_right_fringe_width)
6363 (wset_right_margin_cols, wset_scroll_bar_width, wset_start)
6364 (wset_temslot, wset_vchild, wset_vertical_scroll_bar_type)
6365 (wset_window_parameters):
6366 * xdisp.c (wset_base_line_number, wset_base_line_pos)
6367 (wset_column_number_displayed, wset_region_showing):
6368 New setter functions.
6369
6370 * termhooks.h (TSET): Remove (Bug#12215).
6371 Replace all uses with calls to new setter functions.
6372 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
6373 (TERMHOOKS_INLINE): New macro.
6374 (tset_charset_list, tset_selection_alist): New setter functions.
6375 * terminal.c (TERMHOOKS_INLINE):
6376 Define to EXTERN_INLINE, so that the corresponding functions
6377 are compiled into code.
6378 (tset_param_alist): New setter function.
6379
6380 2012-08-17 Paul Eggert <eggert@cs.ucla.edu>
6381
6382 * keyboard.h (KSET): Remove (Bug#12215).
6383 Replace all uses with calls to new setter functions.
6384 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
6385 (KEYBOARD_INLINE): New macro.
6386 (kset_default_minibuffer_frame, kset_defining_kbd_macro)
6387 (kset_input_decode_map, kset_last_command, kset_last_kbd_macro)
6388 (kset_prefix_arg, kset_system_key_alist, kset_window_system):
6389 New setter functions.
6390 * keyboard.c (KEYBOARD_INLINE):
6391 Define to EXTERN_INLINE, so that the corresponding functions
6392 are compiled into code.
6393 (kset_echo_string, kset_kbd_queue)
6394 (kset_keyboard_translate_table, kset_last_prefix_arg)
6395 (kset_last_repeatable_command, kset_local_function_key_map)
6396 (kset_overriding_terminal_local_map, kset_real_last_command)
6397 (kset_system_key_syms): New setter functions.
6398
6399 * frame.h (FSET): Remove (Bug#12215).
6400 Replace all uses with calls to new setter functions.
6401 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
6402 (FRAME_INLINE): New macro.
6403 (fset_buffer_list, fset_buried_buffer_list, fset_condemned_scroll_bars)
6404 (fset_current_tool_bar_string, fset_desired_tool_bar_string)
6405 (fset_face_alist, fset_focus_frame, fset_icon_name, fset_menu_bar_items)
6406 (fset_menu_bar_vector, fset_menu_bar_window, fset_name)
6407 (fset_param_alist, fset_root_window, fset_scroll_bars)
6408 (fset_selected_window, fset_title, fset_tool_bar_items)
6409 (fset_tool_bar_position, fset_tool_bar_window): New functions.
6410 * frame.c (FRAME_INLINE):
6411 Define to EXTERN_INLINE, so that the corresponding functions
6412 are compiled into code.
6413 (fset_buffer_predicate, fset_minibuffer_window): New setter functions.
6414
6415 A few more naming-convention fixes for getters and setters.
6416 * buffer.c (set_buffer_overlays_before): Move here from buffer.h,
6417 and rename from buffer_overlays_set_before.
6418 (set_buffer_overlays_after): Move here from buffer.h, and rename
6419 from buffer_overlays_set_after.
6420 * buffer.h (buffer_intervals): Rename from buffer_get_intervals.
6421 All uses changed.
6422 (set_buffer_intervals): Rename from buffer_set_intervals.
6423 * intervals.c (set_interval_object): Move here from intervals.h,
6424 and rename from interval_set_object.
6425 (set_interval_left): Move here from intervals.h, and rename from
6426 interval_set_left.
6427 (set_interval_right): Move here from intervals.h, and rename from
6428 interval_set_right.
6429 (copy_interval_parent): Move here from intervals.h, and rename from
6430 interval_copy_parent.
6431 * intervals.h (set_interval_parent): Rename from interval_set_parent.
6432 (set_interval_plist): Rename from interval_set_plist.
6433 Return void, not Lisp_Object, since no caller uses the result.
6434 * lisp.h (string_intervals): Rename from string_get_intervals.
6435 (set_string_intervals): Rename from string_set_intervals.
6436
6437 * lisp.h (set_char_table_extras): Rename from char_table_set_extras.
6438 (set_char_table_contents): Rename from char_table_set_contents.
6439 (set_sub_char_table_contents): Rename from sub_char_table_set_contents.
6440 All uses changed. See the end of
6441 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00549.html>.
6442
6443 * lisp.h (CSET): Remove (Bug#12215).
6444 (set_char_table_ascii, set_char_table_defalt, set_char_table_parent)
6445 (set_char_table_purpose): New functions,
6446 replacing CSET. All uses changed. For example, replace
6447 "CSET (XCHAR_TABLE (char_table), parent, parent);" with
6448 "set_char_table_parent (char_table, parent);".
6449 The old version was confusing because it used the same name
6450 'parent' for two different things.
6451
6452 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
6453
6454 Functions to get and set Lisp_Object fields of buffer-local variables.
6455 * lisp.h (blv_found, set_blv_found, blv_value, set_blv_value)
6456 (set_blv_where, set_blv_defcell, set_blv_valcell): New functions.
6457 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): Remove.
6458 * data.c, eval.c, frame.c: Adjust users.
6459
6460 2012-08-17 Chong Yidong <cyd@gnu.org>
6461
6462 * xfaces.c (merge_face_vectors): If the target font specfies a
6463 font spec, make the font's attributes take precedence over
6464 directly-specified attributes.
6465 (merge_face_ref): Recognize :font.
6466
6467 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
6468
6469 Do not use memcpy for copying intervals.
6470 * intervals.c (reproduce_interval): New function.
6471 (reproduce_tree, reproduce_tree_obj): Use it.
6472 (reproduce_tree_obj): Remove prototype.
6473
6474 2012-08-17 Paul Eggert <eggert@cs.ucla.edu>
6475
6476 * lisp.h (duration_to_sec_usec): Remove unused decl.
6477
6478 2012-08-17 Alp Aker <alp.tekin.aker@gmail.com>
6479
6480 * nsfont.m (ns_ascii_average_width): Send initWithFormat selector
6481 to an allocated instance of NSString, not to the class itself.
6482
6483 2012-08-17 Juanma Barranquero <lekktu@gmail.com>
6484
6485 * makefile.w32-in (C_CTYPE_H): New macro.
6486 (LISP_H, $(BLD)/ccl.$(O), $(BLD)/doc.$(O), $(BLD)/w32console.$(O)):
6487 ($(BLD)/fontset.$(O), $(BLD)/frame.$(O), $(BLD)/composite.$(O)):
6488 ($(BLD)/sysdep.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
6489
6490 2012-08-16 Paul Eggert <eggert@cs.ucla.edu>
6491
6492 Use ASCII tests for character types.
6493 * category.c, dispnew.c, doprnt.c, editfns.c, syntax.c, term.c:
6494 * xfns.c, xterm.c:
6495 Don't include <ctype.h>; was not needed.
6496 * charset.c, doc.c, fileio.c, font.c, frame.c, gtkutil.c, image.c:
6497 * sysdep.c, xfaces.c:
6498 Include <c-ctype.h> instead of <ctype.h>.
6499 * nsterm.m: Include <c-ctype.h>.
6500 * charset.c (read_hex):
6501 * doc.c (Fsnarf_documentation):
6502 * fileio.c (IS_DRIVE) [WINDOWSNT]:
6503 (DRIVE_LETTER) [DOS_NT]:
6504 (Ffile_name_directory, Fexpand_file_name)
6505 (Fsubstitute_in_file_name):
6506 * font.c (font_parse_xlfd, font_parse_fcname):
6507 * frame.c (x_set_font_backend):
6508 * gtkutil.c (xg_get_font):
6509 * image.c (xbm_scan, xpm_scan, pbm_scan_number):
6510 * nsimage.m (hexchar):
6511 * nsterm.m (ns_xlfd_to_fontname):
6512 * sysdep.c (system_process_attributes):
6513 * xfaces.c (hash_string_case_insensitive):
6514 Use C-locale tests instead of locale-specific tests for character
6515 types, since we want the ASCII interpretation here, not the
6516 interpretation suitable for whatever happens to be the current locale.
6517
6518 2012-08-16 Martin Rudalics <rudalics@gmx.at>
6519
6520 Consistently check windows for validity/liveness
6521 (Bug#11984, Bug#12025, Bug#12026).
6522 * lisp.h (CHECK_VALID_WINDOW): New macro.
6523 * window.c (decode_window): Rename to decode_live_window.
6524 (decode_valid_window, Fwindow_valid_p): New functions.
6525 (Fwindow_frame, Fframe_root_window, Fwindow_minibuffer_p)
6526 (Fframe_first_window, Fframe_selected_window, Fwindow_parent)
6527 (Fwindow_top_child, Fwindow_left_child, Fwindow_next_sibling)
6528 (Fwindow_prev_sibling, Fwindow_combination_limit)
6529 (Fset_window_combination_limit, Fwindow_use_time)
6530 (Fwindow_total_height, Fwindow_total_width, Fwindow_new_total)
6531 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_left_column)
6532 (Fwindow_top_line, Fwindow_body_height, Fwindow_body_width)
6533 (Fwindow_hscroll, Fset_window_hscroll)
6534 (Fwindow_redisplay_end_trigger)
6535 (Fset_window_redisplay_end_trigger, Fwindow_edges)
6536 (Fwindow_pixel_edges, Fwindow_absolute_pixel_edges)
6537 (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
6538 (Fcoordinates_in_window_p, Fwindow_point, Fwindow_start)
6539 (Fwindow_end, Fset_window_point, Fset_window_start)
6540 (Fpos_visible_in_window_p, Fwindow_line_height)
6541 (Fwindow_dedicated_p, Fset_window_dedicated_p)
6542 (Fwindow_prev_buffers, Fset_window_prev_buffers)
6543 (Fwindow_next_buffers, Fwindow_parameters, Fwindow_parameter)
6544 (Fset_window_parameter, Fwindow_display_table)
6545 (Fset_window_display_table, Fdelete_other_windows_internal)
6546 (Fset_window_buffer, Fset_window_new_total)
6547 (Fset_window_new_normal, Fdelete_window_internal)
6548 (Fwindow_text_height, Fset_window_margins, Fwindow_margins)
6549 (Fset_window_fringes, Fwindow_fringes, Fset_window_scroll_bars)
6550 (Fwindow_scroll_bars): Check whether argument window is a valid or
6551 live window. Update doc-strings.
6552 (syms_of_window): New symbol Qwindow_valid_p.
6553 * keyboard.c (Fposn_at_x_y): Check whether argument
6554 frame_or_window denotes a valid window.
6555
6556 2012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
6557
6558 Fix previous char table change.
6559 * lisp.h (CHAR_TABLE_SET): Use sub_char_table_set_contents.
6560 * chartab.c (optimize_sub_char_table): Likewise.
6561
6562 2012-08-16 Chong Yidong <cyd@gnu.org>
6563
6564 * gtkutil.c (xg_get_font): Demand an Xft font (Bug#3228).
6565
6566 * xfont.c (xfont_open):
6567 * xftfont.c (xftfont_open): Set the font's max_width field.
6568
6569 * nsfont.m (nsfont_open): Similar to the Xft backend, set
6570 min_width to space_width and average_width to the average over
6571 printable ASCII characters.
6572 (ns_char_width): Code cleanup.
6573 (ns_ascii_average_width): New utility function.
6574
6575 * font.h (struct font): Update comments.
6576
6577 2012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
6578
6579 Simple interface to set Lisp_Object fields of character tables.
6580 * lisp.h (CSET): New macro.
6581 (char_table_set_extras, char_table_set_contents)
6582 (sub_char_table_set_contents): New function.
6583 * casetab.c, category.c, chartab.c, fns.c, fontset.c, search.c:
6584 * syntax.c: Adjust users.
6585
6586 2012-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
6587
6588 * eval.c (eval_sub): Bind lexical-binding.
6589 * lread.c (Qlexical_binding): Make non-static.
6590
6591 2012-08-15 Jan Djärv <jan.h.d@swipnet.se>
6592
6593 * nsmenu.m (popupSession): Remove.
6594 (pop_down_menu): Remove endModalSession.
6595 (timeout_handler:): New method.
6596 (runDialogAt:): Get next timeout. Start a NSTimer with that timeout.
6597 Call runModalForWindow. Check timer_fired when it returns.
6598 If not set, cancel timer and break out of loop.
6599 Otherwise loop again, with a new timeout.
6600
6601 * nsterm.m: Include fcntl.h if present.
6602 (fd_entry, t_readfds, inNsSelect): Remove.
6603 (select_writefds, select_valid, select_timeout, selfds)
6604 (select_mutex, apploopnr): Add.
6605 (EV_TRAILER): Call kbd_buffer_store_event_hold only if q_event_ptr.
6606 Otherwise call kbd_buffer_store_event.
6607 (ns_send_appdefined): Remove release of fd_entry.
6608 (ns_read_socket): Always send appdefined. Remove inNsSelect check.
6609 Increment and decrement apploopnr.
6610 (ns_select): If no file descriptors, just do a NSTimer.
6611 Otherwise copy read/write masks and start select thread (fd_handler).
6612 Start main loop and wait for application defined event.
6613 Inform select thread to stop selecting after main loop is exited.
6614 (ns_term_init): Create selfds pipe and set non-blocking.
6615 Initialize select_mutex. Start the select thread (fd_handler).
6616 (fd_handler:): Loop forever, wait for info from the main thread
6617 to either start or stop selecting. When select returns, send
6618 and appdefined event.
6619 (sendScrollEventAtLoc:fromEvent:): Check if q_event_ptr is set.
6620 If not call kbd_buffer_store_event.
6621
6622 * nsterm.h (EmacsApp): fd_handler takes id argument.
6623 (EmacsDialogPanel): Add timer_fired and timeout_handler.
6624
6625 * gtkutil.c (xg_mark_data): Use FRAME_X_P.
6626
6627 2012-08-15 Eli Zaretskii <eliz@gnu.org>
6628
6629 * region-cache.c (move_cache_gap): Update gap_len using the actual
6630 growth of the boundaries array. Do not change cache_len.
6631 (Bug#12196)
6632
6633 2012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
6634
6635 Generalize and cleanup font subsystem checks.
6636 * font.h (FONT_DEBUG, font_assert): Remove.
6637 * font.c, fontset.c, w32font.c, xfont.c, xftfont.c:
6638 Change font_assert to eassert. Use eassert where appropriate.
6639
6640 2012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
6641
6642 * gtkutil.c (xg_get_font): Use pango_units_to_double.
6643
6644 2012-08-15 Chong Yidong <cyd@gnu.org>
6645
6646 * gtkutil.c (xg_get_font): Rename from xg_get_font_name.
6647 When using the new font chooser, use gtk_font_chooser_get_font_desc to
6648 extract the font descriptor instead of just the font name.
6649 In that case, return a font spec instead of a string.
6650 (x_last_font_name): Move to this file from xfns.c.
6651
6652 * xfns.c (Fx_select_font): The return value can also be a font
6653 spec. Move x_last_font_name management to gtkutil.c.
6654
6655 * xfaces.c: Make font weight and style symbols non-static.
6656
6657 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
6658
6659 * minibuf.c (read_minibuf): Ignore caller's inhibit-read-only
6660 (bug#12117).
6661
6662 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
6663
6664 * alloc.c (Fgarbage_collect): Use plural form consistently.
6665
6666 2012-08-14 Eli Zaretskii <eliz@gnu.org>
6667
6668 * keyboard.c (command_loop_1): Reset ignore_mouse_drag_p flag each
6669 iteration through the command loop. Fixes a problem whereby mouse
6670 movements are ignored until the first mouse click.
6671
6672 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
6673
6674 Use bool, not int, for Lisp booleans.
6675 This is more natural, and on my platform (GCC 4.7.1 x86-64) it
6676 makes Emacs a bit smaller and presumably a bit faster.
6677 * lisp.h: Include <stdbool.h>.
6678 (struct Lisp_Boolfwd, defvar_bool):
6679 * lread.c (defvar_bool): Use bool, not int, for Lisp booleans.
6680 * regex.c [!emacs]: Include <stdbool.h>.
6681 (false, true): Remove; <stdbool.h> does this for us now.
6682
6683 2012-08-14 Chong Yidong <cyd@gnu.org>
6684
6685 * character.c (Fcharacterp): Doc fix (Bug#12076).
6686
6687 * data.c (Findirect_variable): Doc fix (Bug#11040).
6688
6689 * chartab.c (Fmap_char_table): Doc fix (Bug#12061).
6690
6691 * editfns.c (Fformat): Doc fix (Bug#12059).
6692 (Fsave_current_buffer): Doc fix (Bug#11542).
6693
6694 2012-08-14 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
6695
6696 * keyboard.c (access_keymap_keyremap): Accept anonymous functions
6697 (bug#12022).
6698
6699 2012-08-14 Martin Rudalics <rudalics@gmx.at>
6700
6701 * frame.c (make_frame_without_minibuffer, make_minibuffer_frame)
6702 (delete_frame, Fmake_frame_invisible, Ficonify_frame):
6703 * minibuf.c (choose_minibuf_frame, read_minibuf):
6704 * w32fns.c (x_create_tip_frame):
6705 * xfns.c (x_create_tip_frame): Call set_window_buffer instead of
6706 Fset_window_buffer (Bug#11984, Bug#12025, Bug#12026).
6707
6708 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
6709
6710 * intervals.c (offset_intervals): Remove obsolete comment.
6711
6712 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
6713
6714 * gtkutil.c (find_rtl_image, update_frame_tool_bar): Use NILP.
6715
6716 2012-08-14 Gergely Risko <gergely@risko.hu>
6717
6718 * coding.c (decode_coding): Record buffer modification before
6719 disabling undo_list (Bug#11773).
6720
6721 2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
6722
6723 Revert and cleanup some recent overlay changes.
6724 * buffer.h (enum overlay_type): Remove.
6725 (buffer_get_overlays, buffer_set_overlays): Likewise.
6726 (buffer_set_overlays_before, buffer_set_overlays_after):
6727 New function. Adjust users.
6728 (unchain_both): Add eassert.
6729
6730 2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
6731
6732 * gtkutil.c (update_frame_tool_bar): Use EQ where appropriate.
6733
6734 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
6735
6736 * gtkutil.c (xg_mark_data): Don't assume C99.
6737
6738 2012-08-13 Jan Djärv <jan.h.d@swipnet.se>
6739
6740 * gtkutil.c (xg_frame_tb_info): New struct.
6741 (TB_INFO_KEY): New define.
6742 (xg_free_frame_widgets): Free xg_frame_tb_info for frame if present.
6743 (xg_mark_data): Mark Lisp_Objects in xg_frame_tb_info.
6744 (xg_create_tool_bar): Allocate and initialize a xg_frame_tb_info
6745 if not present.
6746 (update_frame_tool_bar): Return early if data in xg_frame_tb_info
6747 is up to date. Otherwise store new data.
6748 (free_frame_tool_bar): Free xg_frame_tb_info if present.
6749
6750 2012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
6751
6752 Use KSET for write access to Lisp_Object members of struct kboard.
6753 * keyboard.h (KSET): New macro.
6754 * callint.c, category.c, frame.c, keyboard.c, keyboard.h, macros.c:
6755 * msdos.c, nsfns.m, nsterm.m, term.c, w32fns.c, w32term.c, xfns.c:
6756 * xterm.c: Adjust users.
6757
6758 2012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
6759
6760 Use BSET for write access to Lisp_Object members of struct buffer.
6761 * buffer.h (BSET): New macro.
6762 * buffer.c, casetab.c, cmds.c, coding.c, data.c, editfns.c:
6763 * fileio.c, frame.c, indent.c, insdel.c, intervals.c, keymap.c:
6764 * minibuf.c, print.c, process.c, syntax.c, undo.c, w32fns.c:
6765 * window.c, xdisp.c, xfns.c: Adjust users.
6766
6767 2012-08-11 BT Templeton <bpt@hcoop.net> (tiny change)
6768
6769 * lread.c (syms_of_lread): Initialize Vlexical_binding.
6770
6771 2012-08-11 Jan Djärv <jan.h.d@swipnet.se>
6772
6773 * nsterm.m (not_in_argv): New function.
6774 (application:openFile, application:openTempFile:):
6775 (application:openFileWithoutUI:, application:openFiles:): Open file
6776 if not_in_argv returns non-zero (bug#12171).
6777
6778 * gtkutil.c (gtk_font_chooser_dialog_new, GTK_FONT_CHOOSER)
6779 (gtk_font_chooser_set_font, gtk_font_chooser_get_font):
6780 Define for Gtk+ versions less than 3.2.
6781 (xg_get_font_name): Use those functions/macros here.
6782 Reported by Frans Oilinki <moilinki@gmail.com>.
6783
6784 2012-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6785
6786 * unexmacosx.c (copy_data_segment): Copy initialized data in
6787 statically linked libraries from input file rather than memory.
6788
6789 * unexmacosx.c (print_load_command_name): Add cases LC_MAIN,
6790 LC_SOURCE_VERSION, and LC_DYLIB_CODE_SIGN_DRS.
6791 (dump_it) [LC_DYLIB_CODE_SIGN_DRS]: Call copy_linkedit_data.
6792
6793 2012-08-10 Glenn Morris <rgm@gnu.org>
6794
6795 * conf_post.h (IF_LINT, lint_assume): Move here from lisp.h.
6796 * lisp.h (IF_LINT, lint_assume): Move to conf_post.h.
6797
6798 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
6799
6800 Fix last change to allow compilation with low optimization levels.
6801 * intervals.c (INTERVALS_INLINE): Define to EXTERN_INLINE.
6802 Reported by Jan Djärv <jan.h.d@swipnet.se>.
6803
6804 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
6805
6806 Use common inline syntax in intervals.h.
6807 * intervals.h (INTERVALS_INLINE): New macro.
6808 Change all users from LISP_INLINE.
6809
6810 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
6811
6812 Define Qnone once for all platforms.
6813 * frame.c (Qnone): Define here.
6814 (syms_of_frame): DEFSYM it.
6815 * lisp.h (Qnone): New declaration.
6816 * nsfns.m, nsterm.h, nsterm.m, w32fns.c, w32font.c:
6817 * xfns.c: Remove duplication. Adjust users.
6818
6819 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
6820
6821 Remove unused macros from intervals.h.
6822 * intervals.h (MERGE_INSERTIONS, DISPLAY_INVISIBLE_GLYPH): Remove.
6823 * intervals.c: Adjust comment.
6824
6825 2012-08-10 Eli Zaretskii <eliz@gnu.org>
6826
6827 * w32fns.c <w32_unicode_gui>: New static variable.
6828 (globals_of_w32fns): Initialize it according to os_subtype.
6829 (w32_init_class, w32_msg_pump, w32_wnd_proc): Use it instead of
6830 testing os_subtype.
6831
6832 2012-08-10 Joakim Hårsman <joakim.harsman@gmail.com> (tiny change)
6833 Eli Zaretskii <eliz@gnu.org>
6834
6835 Fix bug #10299 with Unicode characters sent by customized
6836 keyboards created by MSKLC.
6837 * w32fns.c (INIT_WINDOW_CLASS): New macro.
6838 (w32_init_class): Use it to initialize the Emacs class with either
6839 ANSI or Unicode API calls.
6840 (w32_msg_pump): Call GetMessageW and DispatchMessageW on NT and
6841 later.
6842 (w32_wnd_proc): If the character code sent by WM_CHAR or
6843 WM_SYSCHAR is above 255, post a WM_UNICHAR message, not the
6844 original message. Call DefWindowProcW on NT and later.
6845
6846 2012-08-10 Glenn Morris <rgm@gnu.org>
6847
6848 * Makefile.in (config_h): Fix conf_post.h out-of-tree build location.
6849
6850 * lisp.h (DIRECTORY_SEP): Let configure set it.
6851
6852 2012-08-09 Dmitry Antipov <dmantipov@yandex.ru>
6853
6854 Use TSET for write access to Lisp_Object slots of struct terminal.
6855 * termhooks.h (TSET): New macro.
6856 * coding.c, terminal.c, xselect.c: Adjust users.
6857
6858 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
6859
6860 * xdisp.c (safe_eval_handler): Remove prototype. Receive args describing
6861 the failing expression, include them in the error message.
6862 * eval.c (internal_condition_case_n): Pass nargs and args to hfun.
6863 * lisp.h (internal_condition_case_n): Update declaration.
6864
6865 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
6866
6867 Inline functions to examine and change buffer overlays.
6868 * buffer.c (unchain_both): New function.
6869 * buffer.h (buffer_get_overlays, buffer_set_overlays):
6870 (buffer_has_overlays): New function.
6871 (enum overlay_type): New enum.
6872 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c:
6873 * insdel.c, intervals.c, print.c, xdisp.c: Adjust users.
6874
6875 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
6876
6877 Inline functions to examine and change buffer intervals.
6878 * alloc.c (mark_interval_tree): Remove.
6879 (MARK_INTERVAL_TREE): Simplify.
6880 (UNMARK_BALANCE_INTERVALS): Remove. Adjust users.
6881 * intervals.c (buffer_balance_intervals): New function.
6882 (graft_intervals_into_buffer): Adjust indentation.
6883 (set_intervals_multibyte): Simplify.
6884 * buffer.h (BUF_INTERVALS): Remove.
6885 (buffer_get_intervals, buffer_set_intervals): New function.
6886 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c, insdel.c:
6887 * intervals.c, textprop.c: Adjust users.
6888
6889 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
6890
6891 Inline functions to examine and change string intervals.
6892 * lisp.h (STRING_INTERVALS, STRING_SET_INTERVALS): Remove.
6893 (string_get_intervals, string_set_intervals): New function.
6894 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
6895 * lread.c, print.c, textprop.c: Adjust users.
6896
6897 2012-08-08 Glenn Morris <rgm@gnu.org>
6898
6899 * lisp.mk (lisp): Remove language/persian.elc.
6900
6901 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
6902
6903 Cleanup intervals.
6904 * intervals.h (NULL_INTERVAL, DEFAULT_INTERVAL): Remove.
6905 (NULL_INTERVAL_P): Likewise. Adjust users.
6906 (FRONT_STICKY_P, END_NONSTICKY_P, FRONT_NONSTICKY_P):
6907 Adjust comment. Move under #if 0.
6908 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
6909 * print.c, syntax.c, textprop.c, xdisp.c: Adjust users.
6910
6911 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
6912
6913 Check total length of intervals with eassert.
6914 * intervals.h (CHECK_TOTAL_LENGTH): Remove.
6915 * intervals.c: Change all users to eassert.
6916
6917 2012-08-07 Eli Zaretskii <eliz@gnu.org>
6918
6919 * .gdbinit (xframe, xwindow, nextcons, xcar, xcdr, xlist):
6920 Rename fields to match removal of FGET and WGET and disuse of
6921 INTERNAL_FIELD in Lisp_Cons.
6922
6923 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
6924
6925 Revert and cleanup Lisp_Cons, Lisp_Misc and Lisp_Symbol things.
6926 * lisp.h (struct Lisp_Symbol): Change xname to meaningful
6927 name since all xname users are fixed long time ago. Do not
6928 use INTERNAL_FIELD.
6929 (set_symbol_name, set_symbol_function, set_symbol_plist):
6930 (set_symbol_next, set_overlay_plist): New function.
6931 (struct Lisp_Cons): Do not use INTERNAL_FIELD.
6932 (struct Lisp_Overlay): Likewise.
6933 (CVAR, MVAR, SVAR): Remove.
6934 * alloc.c, buffer.c, buffer.h, bytecode.c, cmds.c, data.c:
6935 * doc.c, eval.c, fns.c, keyboard.c, lread.c, nsselect.m:
6936 * xterm.c: Adjust users.
6937 * .gdbinit: Change to use name field of struct Lisp_Symbol
6938 where appropriate.
6939
6940 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
6941
6942 Basic functions to set Lisp_Object and pointer slots of intervals.
6943 * intervals.h (interval_set_parent, interval_set_object):
6944 (interval_set_left, interval_set_right, interval_set_plist):
6945 (interval_copy_parent): New function.
6946 (SET_INTERVAL_OBJECT, SET_INTERVAL_PARENT, INTERVAL_PTR_SIZE): Remove.
6947 (RESET_INTERVAL, COPY_INTERVAL_CACHE, MERGE_INTERVAL_CACHE):
6948 Adjust indentation.
6949 (INTERVAL_SIZE): Remove. Adjust users.
6950 * alloc.c, intervals.c, lread.c, textprop.c: Use new functions.
6951
6952 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
6953
6954 Drop PGET and revert read access to Lisp_Objects slots of Lisp_Process.
6955 * process.h (PGET): Remove.
6956 (struct Lisp_Process): Do not use INTERNAL_FIELD.
6957 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
6958
6959 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
6960
6961 Drop WGET and revert read access to Lisp_Objects slots of struct window.
6962 * window.h (WGET): Remove.
6963 (struct window): Do not use INTERNAL_FIELD.
6964 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
6965 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
6966 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
6967 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
6968 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
6969 Adjust users.
6970
6971 2012-08-07 Chong Yidong <cyd@gnu.org>
6972
6973 * window.c (Fwindow_edges, Fwindow_pixel_edges)
6974 (Fwindow_absolute_pixel_edges, Fdelete_other_windows_internal)
6975 (Fdelete_window_internal): Signal an error if the window is not on
6976 a live frame (Bug#12025).
6977
6978 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
6979
6980 Drop FGET and revert read access to Lisp_Objects slots of struct frame.
6981 * frame.h (FGET): Remove.
6982 (struct frame): Do not use INTERNAL_FIELD.
6983 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
6984 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
6985 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
6986 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
6987
6988 2012-08-06 Juanma Barranquero <lekktu@gmail.com>
6989
6990 * w32.c: Silence compiler warnings.
6991 (map_w32_filename): Remove unused variable `is_fat'.
6992 (chase_symlinks): Add parentheses around expression.
6993
6994 2012-08-06 Glenn Morris <rgm@gnu.org>
6995
6996 * sysdep.c: Respect BROKEN_GETWD.
6997
6998 * dispnew.c (GNU_LIBRARY_PENDING_OUTPUT_COUNT, PENDING_OUTPUT_COUNT):
6999 Let configure handle it.
7000 (stdio_ext.h) [DISPNEW_NEEDS_STDIO_EXT]: Include it.
7001
7002 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7003
7004 Use GCALIGNMENT where appropriate.
7005 * alloc.c (XMALLOC_HEADER_ALIGNMENT, roundup_size):
7006 (union aligned_Lisp_Symbol, union aligned_Lisp_Misc):
7007 (mark_maybe_pointer, pure_alloc): Change to use GCALIGNMENT.
7008
7009 2012-08-06 Eli Zaretskii <eliz@gnu.org>
7010
7011 * w32menu.c (set_frame_menubar, initialize_frame_menubar):
7012 Don't use FRAME_MENU_BAR_ITEMS as an lvalue.
7013
7014 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
7015
7016 * buffer.h (struct buffer): Revert `indirections' to a simple int;
7017 that should be sufficient for everyone.
7018
7019 2012-08-06 Jan Djärv <jan.h.d@swipnet.se>
7020
7021 * keyboard.c (timer_check_2): Add break so timer_check returns next
7022 timeout.
7023
7024 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7025
7026 Fix Windows build errors introduced after converting to WGET and WSET.
7027 * w32term.c (w32_set_vertical_scroll_bar): Change to use WSET.
7028 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
7029
7030 2012-08-06 Jan Djärv <jan.h.d@swipnet.se>
7031
7032 * nsterm.m (ns_frame_rehighlight): Use FSET.
7033
7034 * nsmenu.m (ns_update_menubar): Use FSET.
7035
7036 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7037
7038 Separate read and write access to Lisp_Object slots of Lisp_Process.
7039 * process.h (PGET, PSET): New macros similar to AREF and ASET.
7040 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
7041
7042 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7043
7044 Separate read and write access to Lisp_Object slots of struct window.
7045 * window.h (WGET, WSET): New macros similar to AREF and ASET.
7046 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
7047 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
7048 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
7049 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
7050 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
7051 Adjust users.
7052
7053 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7054
7055 Fix Windows build errors introduced after converting to FGET and FSET.
7056 * w32term.c (x_frame_rehighlight, x_scroll_bar_create):
7057 (w32_condemn_scroll_bars, w32_redeem_scroll_bar):
7058 (w32_judge_scroll_bars): Change to use FSET.
7059 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
7060
7061 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7062
7063 Fix replacement typo.
7064 * window.c (replace_window): Set root_window instead of
7065 selected_window. This fixes a total window subsystem
7066 malfunction reported by Bastien Guerry <bzg@gnu.org>.
7067
7068 2012-08-06 Glenn Morris <rgm@gnu.org>
7069
7070 * lisp.mk (lisp): Add language/persian.elc.
7071
7072 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7073
7074 Separate read and write access to Lisp_Object slots of struct frame.
7075 * frame.h (FGET, FSET): New macros similar to AREF and ASET.
7076 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
7077 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
7078 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
7079 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
7080
7081 2012-08-05 Andreas Schwab <schwab@linux-m68k.org>
7082
7083 * emacs.c (decode_env_path): Only use defaulted if WINDOWSNT.
7084
7085 2012-08-05 Dmitry Antipov <dmantipov@yandex.ru>
7086
7087 Generalize common compile-time constants.
7088 * lisp.h (header_size, bool_header_size, word_size): Now here.
7089 (struct Lisp_Vector): Add comment.
7090 (struct Lisp_Bool_Vector): Move up to define handy constants.
7091 (VECSIZE, PSEUDOVECSIZE): Simplify.
7092 (SAFE_ALLOCA_LISP): Use new constant. Adjust indentation.
7093 * buffer.c, buffer.h, bytecode.c, callint.c, eval.c, fns.c:
7094 * font.c, fontset.c, keyboard.c, keymap.c, macros.c, menu.c:
7095 * msdos.c, w32menu.c, w32term.h, window.c, xdisp.c, xfaces.c:
7096 * xfont.c, xmenu.c: Use word_size where appropriate.
7097
7098 2012-08-05 Lawrence Mitchell <wence@gmx.li>
7099
7100 * search.c (Freplace_match): Treat \? in the replacement text
7101 literally (Bug#8161).
7102
7103 2012-08-05 Chong Yidong <cyd@gnu.org>
7104
7105 * term.c (Vsuspend_tty_functions, Vresume_tty_functions):
7106 * frame.c (Vdelete_frame_functions):
7107 * emacs.c (Vkill_emacs_hook): Doc fix.
7108
7109 2012-08-04 Eli Zaretskii <eliz@gnu.org>
7110
7111 * xfns.c (x_set_menu_bar_lines): Fix compilation error in
7112 --with-x-toolkit=no builds.
7113 Reported by Carsten Mattner <carstenmattner@gmail.com>.
7114
7115 2012-08-04 Chong Yidong <cyd@gnu.org>
7116
7117 * syntax.c (Fmodify_syntax_entry): Doc fix.
7118
7119 2012-08-04 Eli Zaretskii <eliz@gnu.org>
7120
7121 Fix startup warnings about ../site-lisp on MS-Windows. (Bug#11959)
7122 * w32.c (init_environment): Change the default values of many
7123 environment variables in dflt_envvars[] to NULL, to avoid pushing
7124 them into environment when they were not already defined.
7125 Remove the code that deletes site-lisp subdirectories from the default
7126 value of EMACSLOADPATH, as it is no longer needed.
7127 (check_windows_init_file): Now external, not static.
7128 Use Vload_path as is, without adding anything, as this function is now
7129 called when Vload_path is already set up.
7130
7131 * w32.h (check_windows_init_file): Add prototype.
7132
7133 * emacs.c (init_cmdargs) [WINDOWSNT]: When running from the build
7134 directory, ignore the /*/i386/ tail in Vinvocation_directory, for
7135 compatibility with Posix platforms.
7136 (main): Move the call to check_windows_init_file to here from
7137 w32.c.
7138 (decode_env_path) [WINDOWSNT]: Expand the %emacs_dir%/ prefix, if
7139 any, in the DEFALT argument into the root of the Emacs build or
7140 installation tree, as appropriate.
7141
7142 * callproc.c (init_callproc_1): Call decode_env_path instead of
7143 doing its equivalent by hand.
7144 (init_callproc): Replace DOS_NT condition with MSDOS, thus letting
7145 the code that sets Vexec_path run on MS-Windows.
7146
7147 * lread.c (init_lread): Add comments to #ifdef's.
7148
7149 * msdos.c (dos_set_window_size, IT_update_begin)
7150 (IT_frame_up_to_date, IT_set_frame_parameters): Use FVAR and WVAR
7151 instead of direct references.
7152
7153 2012-08-04 Paul Eggert <eggert@cs.ucla.edu>
7154
7155 Export DEFAULT_REHASH_* to GDB.
7156 * lisp.h (DEFAULT_REHASH_THRESHOLD, DEFAULT_REHASH_SIZE):
7157 Now constants, not macros.
7158
7159 2012-08-03 Paul Eggert <eggert@cs.ucla.edu>
7160
7161 Remove unnecessary casts involving pointers.
7162 These casts are no longer needed now that we assume C89 or later,
7163 since they involve casting to or from void *.
7164 * alloc.c (make_pure_string, make_pure_c_string, pure_cons)
7165 (make_pure_float, make_pure_vector):
7166 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP):
7167 * macros.c (Fstart_kbd_macro):
7168 * menu.c (find_and_return_menu_selection):
7169 * minibuf.c (read_minibuf_noninteractive):
7170 * sysdep.c (closedir):
7171 * xdisp.c (x_produce_glyphs):
7172 * xfaces.c (compare_fonts_by_sort_order):
7173 * xfns.c (x_real_positions, select_visual):
7174 * xselect.c (x_stop_queuing_selection_requests)
7175 (x_get_window_property, x_get_window_property_as_lisp_data):
7176 * xterm.c (x_set_frame_alpha, x_find_modifier_meanings):
7177 Remove unnecessary pointer casts.
7178 * alloc.c (record_xmalloc): New function.
7179 * lisp.h (record_xmalloc): New decl.
7180 (SAFE_ALLOCA): Now takes just one arg -- the size -- and acts
7181 more like a function. This is because the pointer cast is not
7182 needed. All uses changed.
7183 * print.c (print_string, print_error_message): Avoid length recalc.
7184
7185 Improve fix for macroexp crash with debugging (Bug#12118).
7186 * lisp.h (ASET) [ENABLE_CHECKING]: Pay attention to
7187 ARRAY_MARK_FLAG when checking subscripts, because ASET is
7188 not supposed to be invoked from the garbage collector.
7189 See Andreas Schwab in <http://bugs.gnu.org/12118#25>.
7190 (gc_aset): New function, which is like ASET but can be
7191 used in the garbage collector.
7192 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
7193 (set_hash_index): Use it instead of ASET.
7194
7195 2012-08-03 Eli Zaretskii <eliz@gnu.org>
7196
7197 Support symlinks on latest versions of MS-Windows.
7198 * w32.c: Include winioctl.h and aclapi.h.
7199 (is_symlink, chase_symlinks, enable_privilege, restore_privilege)
7200 (revert_to_self): Forward declarations of static functions.
7201 <static BOOL g_b_init_get_security_info>:
7202 <g_b_init_create_symbolic_link>: New static flags.
7203 (globals_of_w32): Initialize them to zero.
7204 (GetSecurityInfo_Proc, CreateSymbolicLink_Proc): New typedefs.
7205 (map_w32_filename): Improve commentary. Simplify switch.
7206 (SYMBOLIC_LINK_FLAG_DIRECTORY): Define if not defined in system
7207 headers (most versions of MinGW w32api don't).
7208 (get_security_info, create_symbolic_link)
7209 (get_file_security_desc_by_handle, is_symlink, chase_symlinks):
7210 New functions.
7211 (sys_access, sys_chmod): Call 'chase_symlinks' to resolve symlinks
7212 in the argument file name.
7213 (sys_access): Call unc_volume_file_attributes only if
7214 GetFileAttributes fails with network-related error codes.
7215 (sys_rename): Diagnose renaming of a symlink when the user doesn't
7216 have the required privileges.
7217 (get_file_security_desc_by_name): Rename from
7218 get_file_security_desc.
7219 (stat_worker): New function, with most of the guts of 'stat', and
7220 with addition of handling of symlinks and support for 'lstat'.
7221 If possible, get file's attributes and security information by
7222 handle, not by name. Produce S_IFLNK bit for symlinks, when
7223 called from 'lstat'.
7224 (stat, lstat): New functions, call 'stat_worker'.
7225 (symlink, readlink, careadlinkat): Rewritten to create and resolve
7226 symlinks when the underlying filesystem supports them.
7227
7228 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
7229
7230 Fix macroexp crash on Windows with debugging (Bug#12118).
7231 * lisp.h (ASET) [ENABLE_CHECKING]: Ignore ARRAY_MARK_FLAG when
7232 checking subscripts; problem introduced with the recent
7233 "ASET (a, i, v)" rather than "AREF (a, i) = v" patch.
7234 (ARRAY_MARK_FLAG): Now a macro as well as a constant,
7235 since it's used in non-static inline functions now.
7236
7237 * xfaces.c (face_at_buffer_position, face_for_overlay_string):
7238 Don't assume buffer size fits in 'int'. Remove unused local.
7239
7240 Use C99-style 'extern inline' if available.
7241 * buffer.h (BUFFER_INLINE):
7242 * category.h (CATEGORY_INLINE):
7243 * character.h (CHARACTER_INLINE):
7244 * charset.h (CHARSET_INLINE):
7245 * composite.h (COMPOSITE_INLINE):
7246 * dispextern.h (DISPEXTERN_INLINE):
7247 * lisp.h (LISP_INLINE):
7248 * systime.h (SYSTIME_INLINE):
7249 New macro, replacing 'static inline' in this header.
7250 * buffer.h, category.h, character.h, charset.h, composite.h:
7251 * dispextern.h, lisp.h, systime.h:
7252 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
7253 * alloc.c (LISP_INLINE):
7254 * buffer.c (BUFFER_INLINE):
7255 * category.c (CATEGORY_INLINE):
7256 * character.c (CHARACTER_INLINE):
7257 * charset.c (CHARSET_INLINE):
7258 * composite.c (COMPOSITE_INLINE):
7259 * dispnew.c (DISPEXTERN_INLINE):
7260 * sysdep.c (SYSTIME_INLINE):
7261 Define to EXTERN_INLINE, so that the corresponding functions
7262 are compiled into code.
7263 * conf_post.h (INLINE, EXTERN_INLINE, INLINE_HEADER_BEGIN)
7264 (INLINE_HEADER_END): New macros.
7265 * lisp.h (PSEUDOVECTOR_FLAG): Now a macro as well as a constant,
7266 since it's used in non-static inline functions now.
7267 (VALMASK) [!USE_LSB_TAG]: Likewise.
7268
7269 2012-08-02 Glenn Morris <rgm@gnu.org>
7270
7271 * s/: Remove empty directory.
7272
7273 * s/ms-w32.h: Move to ../nt/inc.
7274 * makefile.w32-in (TAGS, TAGS-gmake, MS_W32_H):
7275 Update for new ms-w32.h location.
7276
7277 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
7278
7279 Port to Solaris 8.
7280 * syswait.h (WRETCODE): Remove, consistently with ../configure.ac.
7281
7282 2012-08-02 Glenn Morris <rgm@gnu.org>
7283
7284 * nsterm.m (ns_exec_path, ns_load_path): Use SEPCHAR rather than
7285 hard-coding the path separator.
7286
7287 2012-08-01 Paul Eggert <eggert@cs.ucla.edu>
7288
7289 Use "ASET (a, i, v)" rather than "AREF (a, i) = v".
7290 This how ASET and AREF are supposed to work, and makes
7291 it easier to think about future improvements. See
7292 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00026.html>.
7293 * charset.h (set_charset_attr): New function.
7294 All lvalue-style uses of CHARSET_DECODER etc. changed to use it.
7295 * lisp.h (ASET): Rewrite so as not to use AREF in an lvalue style.
7296 (aref_addr): New function. All uses of &AREF(...) changed.
7297 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
7298 (set_hash_index): New functions. All lvalue-style uses of
7299 HASH_KEY etc. changed.
7300 * keyboard.c (set_prop): New function. All lvalue-style uses
7301 of PROP changed.
7302
7303 2012-08-01 Alp Aker <alp.tekin.aker@gmail.com>
7304
7305 * nsterm.m (ns_set_vertical_scroll_bar, ns_redeem_scroll_bar)
7306 (EmacsWindow-accessibilityAttributeValue, EmacsScroller-initFrame:)
7307 (EmacsScroller-dealloc): Adjust to use WVAR. (Bug#12114)
7308 * nsfns.m (ns_set_name_as_filename): Likewise.
7309 * nsmenu.m (ns_update_menubar): Likewise.
7310 * nsselect.m (symbol_to_nsstring): Adjust to use SVAR.
7311
7312 2012-08-01 Eli Zaretskii <eliz@gnu.org>
7313
7314 * .gdbinit (xcar, xcdr, xlist, xwindow, nextcons, xprintsym):
7315 Adapt to latest changes in field names of the corresponding Lisp
7316 objects.
7317
7318 * xdisp.c (try_window_id): Use WVAR in IF_DEBUG code.
7319
7320 2012-08-01 Glenn Morris <rgm@gnu.org>
7321
7322 * s/msdos.h: Remove file.
7323 * conf_post.h [MSDOS]: New section, moved from s/msdos.h.
7324 * Makefile.in (S_FILE): Remove.
7325 (config_h): Remove S_FILE.
7326
7327 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
7328
7329 * s/ms-w32.h (DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP):
7330 Remove; moved to nt/config.nt.
7331
7332 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
7333
7334 Use INTERNAL_FIELD for conses and overlays.
7335 * lisp.h (struct Lisp_Cons): Use INTERNAL_FIELD.
7336 Remove obsolete comment.
7337 (MVAR): New macro.
7338 (struct Lisp_Overlay): Use INTERNAL_FIELD.
7339 * alloc.c, buffer.c, buffer.h, fns.c: Adjust users.
7340
7341 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
7342
7343 Use INTERNAL_FIELD for symbols.
7344 * lisp.h (SVAR): New macro. Adjust users.
7345 * alloc.c, bytecode.c, cmds.c, data.c, doc.c, eval.c:
7346 * fns.c, keyboard.c, lread.c, xterm.c: Users changed.
7347
7348 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
7349
7350 Use INTERNAL_FIELD for processes.
7351 * process.h (PVAR): New macro. Adjust style.
7352 (struct Lisp_Process): Change Lisp_Object members to INTERNAL_FIELD.
7353 * print.c, process.c, sysdep.c, w32.c, xdisp.c: Users changed.
7354
7355 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
7356
7357 Use INTERNAL_FIELD for windows.
7358 * window.h (WVAR): New macro.
7359 (struct window): Change Lisp_Object members to INTERNAL_FIELD.
7360 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
7361 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
7362 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, nsterm.m, print.c:
7363 * textprop.c, w32fns.c, w32menu.c, w32term.c, window.c, xdisp.c:
7364 * xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
7365
7366 2012-08-01 Paul Eggert <eggert@cs.ucla.edu>
7367
7368 * coding.h (CODING_ATTR_FLUSHING): Remove; unused and wouldn't work.
7369
7370 2012-08-01 Glenn Morris <rgm@gnu.org>
7371
7372 * lisp.h (IS_DIRECTORY_SEP, IS_DEVICE_SEP, IS_ANY_SEP):
7373 Move to configure.ac.
7374
7375 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
7376
7377 * makefile.w32-in (CONFIG_H): Update dependencies.
7378 (CONF_POST_H): New macro.
7379
7380 * s/ms-w32.h (SEPCHAR, NULL_DEVICE): Remove; moved to nt/config.nt.
7381
7382 2012-07-31 Glenn Morris <rgm@gnu.org>
7383
7384 * Makefile.in (S_FILE): No longer set by configure.
7385
7386 * conf_post.h (config_opsysfile): Move earlier, so that WINDOWSNT
7387 is available.
7388 (alloca.h) [WINDOWSNT]: Don't include it on MS Windows.
7389
7390 * process.h (NULL_DEVICE):
7391 * emacs.c (SEPCHAR):
7392 * editfns.c (USER_FULL_NAME): Let configure set them.
7393
7394 * s/README, s/template.h: Remove files.
7395
7396 * conf_post.h [HPUX]: Undefine HAVE_RANDOM and HAVE_RINT.
7397
7398 * conf_post.h (AMPERSAND_FULL_NAME, subprocesses):
7399 Move to configure.ac.
7400
7401 2012-07-31 Eli Zaretskii <eliz@gnu.org>
7402
7403 * .gdbinit (xframe): Adapt to introduction of FVAR and the
7404 resulting renaming of 'struct frame' members.
7405
7406 * w32menu.c (w32_menu_show): Revert bogus introduction of FVAR.
7407
7408 * fontset.c (dump_fontset): Fix compilation with ENABLE_CHECKING
7409 after introduction of FVAR.
7410
7411 2012-07-31 Jan Djärv <jan.h.d@swipnet.se>
7412
7413 * nsmenu.m (update_frame_tool_bar): Change key from NSObject* to id.
7414
7415 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Use drawInRect
7416 instead of compositeToPoint.
7417 (applicationShouldTerminate): Pass NS String literal to NSRunAlertPanel.
7418
7419 * nsfns.m, nsmenu.m, nsterm.m: Adopt to struct frame/FVAR changes.
7420
7421 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
7422
7423 Generalize INTERNAL_FIELD between buffers, keyboards and frames.
7424 * lisp.h (INTERNAL_FIELD): New macro.
7425 * buffer.h (BUFFER_INTERNAL_FIELD): Remove.
7426 (BVAR): Change to use INTERNAL_FIELD.
7427 * keyboard.h (KBOARD_INTERNAL_FIELD): Likewise.
7428 (KVAR): Change to use INTERNAL_FIELD.
7429 * frame.h (FVAR): New macro.
7430 (struct frame): Use INTERNAL_FIELD for all Lisp_Object fields.
7431 * alloc.c, buffer.c, data.c, dispnew.c, dosfns.c, eval.c, frame.c:
7432 * fringe.c, gtkutil.c, minibuf.c, nsfns.m, nsterm.m, print.c:
7433 * term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
7434 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
7435
7436 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
7437
7438 Miscellaneous fixes for non-default X toolkits.
7439 * xfns.c (Fx_file_dialog): Change to SSDATA to avoid warnings.
7440 * xterm.c (x_frame_of_widget): Remove redundant prototype.
7441 Move under #ifdef USE_LUCID.
7442 (x_create_toolkit_scroll_bar): Adjust scroll_bar_name
7443 definition and usage to avoid warnings.
7444
7445 2012-07-31 Jan Djärv <jan.h.d@swipnet.se>
7446
7447 * nsterm.m (openFiles): Fix previous checkin.
7448
7449 2012-07-31 Paul Eggert <eggert@cs.ucla.edu>
7450
7451 * indent.c (compute_motion): Remove unused local.
7452
7453 2012-07-31 Glenn Morris <rgm@gnu.org>
7454
7455 * s/usg5-4-common.h (wait3, WRETCODE): Let configure set them.
7456
7457 * conf_post.h [USG5_4]:
7458 Move remaining contents of s/usg5-4-common.h here.
7459 * s/usg5-4-common.h: Remove file.
7460
7461 * conf_post.h [IRIX6_5]: Move remaining contents of s/irix6-5.h here.
7462 * s/irix6-5.h: Remove file.
7463
7464 * conf_post.h [DARWIN_OS]: Move remaining contents of s/darwin.h here.
7465 * s/darwin.h: Remove file.
7466
7467 * conf_post.h [HPUX]: Move random, srandom here from s/hpux10-20.h.
7468 * s/hpux10-20.h: Remove file, which is now empty.
7469
7470 2012-07-30 Glenn Morris <rgm@gnu.org>
7471
7472 * conf_post.h: New, split from configure.ac's AH_BOTTOM.
7473 * Makefile.in (config_h): Add conf_post.h.
7474 * makefile.w32-in (CONFIG_H): Add conf_post.h.
7475
7476 2012-07-30 Jan Djärv <jan.h.d@swipnet.se>
7477
7478 * nsterm.m (ns_do_open_file): New variable.
7479 (ns_term_init): Set ns_do_open_file to YES after run returns.
7480 (openFile, openTempFile, openFileWithoutUI, openFiles):
7481 Open files only if ns_do_open_file.
7482
7483 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
7484
7485 * lisp.h (SWITCH_ENUM_CAST): Remove. All uses removed.
7486 This no-op macro hasn't been needed for many years.
7487 * src/regex.c (SWITCH_ENUM_CAST) [!emacs]: Likewise.
7488
7489 Export DIRECTORY_SEP, TYPEMASK, VALMASK to GDB.
7490 * alloc.c (gdb_make_enums_visible) [USE_LSB_TAG]: Add lsb_bits.
7491 * lisp.h (enum lsb_bits) [USE_LSB_TAG]: New enum, for
7492 gdb_make_enums_visible.
7493 (TYPEMASK, VALMASK) [USE_LSB_TAGS]: Now enum constants, not macros.
7494 (DIRECTORY_SEP): Now a constant, not a macro.
7495
7496 2012-07-30 Eli Zaretskii <eliz@gnu.org>
7497
7498 * w32fns.c (w32_wnd_proc): Pass w32_keyboard_codepage to
7499 w32_kbd_patch_key as the 2nd arg. (Bug#12082)
7500
7501 * w32term.c <w32_keyboard_codepage>: Renamed from
7502 keyboard_codepage and now external. All users changed.
7503
7504 * w32term.h: Add declaration of w32_keyboard_codepage.
7505
7506 * w32inevt.c (w32_kbd_patch_key): Accept an additional argument --
7507 the codepage to translate keys to Unicode. If this argument is
7508 -1, use the value returned by GetConsoleCP. All callers changed.
7509
7510 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
7511
7512 Update .PHONY listings in makefiles.
7513 * Makefile.in (.PHONY): Add all, mostlyclean, clean,
7514 bootstrap-clean, distclean, maintainer-clean, versioclean,
7515 extraclean, frc.
7516
7517 * lisp.h (STRING_BYTES_BOUND): Cast entire result to ptrdiff_t.
7518 This is a bit clearer. Fix some commentary typos.
7519
7520 2012-07-30 Glenn Morris <rgm@gnu.org>
7521
7522 * s/netbsd.h: Let configure include signal.h if needed.
7523 Remove file, which is now empty.
7524
7525 * s/usg5-4-common.h (_longjmp, _setjmp, TIOCSIGSEND):
7526 Let configure set them.
7527 * s/irix6-5.h (_longjmp, _setjmp, TIOCSIGSEND):
7528 No more need to undefine.
7529
7530 2012-07-30 Andreas Schwab <schwab@linux-m68k.org>
7531
7532 * keymap.c (Fkey_description): Don't remove 0x80 bit from
7533 non-single-byte char when adding meta modifier. (Bug#12090)
7534
7535 2012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
7536
7537 Convert safe_call to use variable number of arguments.
7538 * xdisp.c (safe_call): Convert to use varargs. Adjust users.
7539 (safe_call2): Fix comment.
7540 * lisp.h (safe_call): Adjust prototype.
7541 * coding.c (encode_coding_object): Change to use safe_call2.
7542 * xfaces.c (merge_face_heights): Change to use safe_call1.
7543
7544 2012-07-30 Glenn Morris <rgm@gnu.org>
7545
7546 * s/aix4-2.h (sigmask): No need to undefine it, since syssignal.h
7547 does that unconditionally. Remove file, which is now empty.
7548
7549 * s/freebsd.h, s/gnu-linux.h, s/sol2-6.h, s/unixware.h:
7550 Remove empty files.
7551
7552 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
7553
7554 Export to GDB most of lisp.h's remaining object-like macros.
7555 * lisp.h (min, max): Move earlier, because they're used earlier now.
7556 (INTMASK, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK)
7557 (CHAR_TABLE_STANDARD_SLOTS, CHARTAB_SIZE_BITS_0)
7558 (CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2, CHARTAB_SIZE_BITS_3)
7559 (DEFAULT_HASH_SIZE, COMPILED_ARGLIST, COMPILED_BYTECODE)
7560 (COMPILED_CONSTANTS, COMPILED_STACK_DEPTH, COMPILED_DOC_STRING)
7561 (COMPILED_INTERACTIVE, CHAR_ALT, CHAR_SUPER, CHAR_HYPER, CHAR_SHIFT)
7562 (CHAR_CTL, CHAR_META, CHAR_MODIFIER_MASK, CHARACTERBITS)
7563 (MANY, UNEVALLED, FLOAT_TO_STRING_BUFSIZE, MAX_ALLOCA):
7564 Now constants, for GDB. They need not be macros.
7565 (MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM, STRING_BYTES_BOUND):
7566 Now constants, for GDB, as well as macros, for static initializers.
7567 (CHAR_TABLE_STANDARD_SLOTS, CHAR_TABLE_EXTRA_SLOTS):
7568 Move to after the definition of struct Lisp_Char_Table,
7569 since the former now needs that type defined.
7570 (enum CHARTAB_SIZE_BITS, enum CHAR_TABLE_STANDARD_SLOTS)
7571 (enum DEFAULT_HASH_SIZE, enum Lisp_Compiled, enum char_bits)
7572 (enum maxargs, enum FLOAT_TO_STRING_BUFSIZE, enum MAX_ALLOCA):
7573 New enums, for gdb_make_enums_visible.
7574 (GLYPH_MODE_LINE_FACE): Remove; unused.
7575 * alloc.c (STRING_BYTES_MAX): Now a constant, not a macro.
7576 (gdb_make_enums_visible): Add enum CHARTAB_SIZE_BITS, enum
7577 CHAR_TABLE_STANDARD_SLOTS, enum char_bits, enum DEFAULT_HASH_SIZE,
7578 enum FLOAT_TO_STRING_BUFSIZE, enum Lisp_Bits, enum Lisp_Compiled,
7579 enum maxargs, enum MAX_ALLOCA.
7580 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): Remove.
7581 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Remove;
7582 no longer needed, now that they are done in lisp.h.
7583
7584 2012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
7585
7586 Cleanup string bytes checking.
7587 * alloc.c (GC_STRING_BYTES, CHECK_STRING_BYTES): Remove. Convert
7588 all users to STRING_BYTES or string_bytes if GC_CHECK_STRING_BYTES.
7589 (check_string_bytes): Define to empty if not GC_CHECK_STRING_BYTES.
7590 (check_sblock, compact_small_strings): Simplify.
7591
7592 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
7593
7594 * lisp.h (LISP_INT_TAG, LISP_INT1_TAG, LISP_STRING_TAG): Remove.
7595 These macros are confusing and no longer need to be defined, as
7596 the enum values now suffice. All uses replaced with definiens.
7597 (Lisp_Int1, Lisp_String): Define directly; this is clearer.
7598
7599 2012-07-29 Juanma Barranquero <lekktu@gmail.com>
7600
7601 * makefile.w32-in (LISP_H, $(BLD)/emacs.$(O), $(BLD)/w32inevt.$(O))
7602 ($(BLD)/w32console.$(O)): Update dependencies.
7603
7604 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
7605
7606 Remove HIDE_LISP_IMPLEMENTATION and cleanup cons free list check.
7607 * lisp.h (HIDE_LISP_IMPLEMENTATION): Remove as useless for a long
7608 time. Adjust users.
7609 (CHECK_CONS_LIST): Remove. Convert all users to check_cons_list.
7610
7611 2012-07-29 Jan Djärv <jan.h.d@swipnet.se>
7612
7613 * lread.c (init_lread): Remove if-statement in ifdef HAVE_NS before
7614 setting sitelisp (Bug#12010).
7615
7616 2012-07-29 Eli Zaretskii <eliz@gnu.org>
7617
7618 * w32heap.h (OS_9X): Rename from OS_WINDOWS_95.
7619
7620 * w32heap.c (cache_system_info):
7621 * w32.c (sys_rename):
7622 * w32proc.c (find_child_console, sys_kill): All users changed.
7623
7624 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
7625
7626 * alloc.c (Fgarbage_collect): Indent as per usual Emacs style.
7627
7628 2012-07-29 Eli Zaretskii <eliz@gnu.org>
7629
7630 * makefile.w32-in (LISP_H): Add $(NT_INC)/stdalign.h.
7631
7632 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
7633
7634 Cleanup statistics calculation in Fgarbage_collect.
7635 * alloc.c (Fgarbage_collect): Rename t1 to meaningful start.
7636 Fix zombies percentage calculation. Simplify elapsed time calculation.
7637
7638 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
7639
7640 Generalize marker debugging code under MARKER_DEBUG and use eassert.
7641 * insdel.c (CHECK_MARKERS, check_markers_debug_flag): Remove.
7642 (gap_left, gap_right, adjust_markers_for_delete, insert_1_both)
7643 (insert_from_string_1, insert_from_gap, insert_from_buffer_1)
7644 (replace_range, replace_range_2, del_range_2): Change to eassert.
7645 * marker.c (byte_char_debug_check): Adjust style.
7646
7647 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
7648
7649 Don't use the abbreviation "win" to refer to Windows (Bug#10421).
7650 * regex.c (MAX_BUF_SIZE): Remove some incorrect and
7651 long-ago-commented-out code that talks about "WIN32".
7652 * w32heap.h (OS_WINDOWS_95): Rename from OS_WIN95.
7653 All uses changed.
7654
7655 2012-07-28 Paul Eggert <eggert@cs.ucla.edu>
7656
7657 Use Gnulib stdalign module (Bug#9772, Bug#9960).
7658 * alloc.c (XMALLOC_BASE_ALIGNMENT, GC_POINTER_ALIGNMENT, pure_alloc):
7659 Simplify by using alignof.
7660 (pure_alloc) [! USE_LSB_TAG]: Don't over-align EMACS_INT values.
7661 * lisp.h: Include <stdalign.h>.
7662 (GCALIGNMENT): New macro and constant.
7663 (DECL_ALIGN): Remove. All uses replaced by alignas (GCALIGNMENT).
7664 (USE_LSB_TAG): ifdef on alignas, not on DECL_ALIGN.
7665 (stdalign): New macro, if not already defined.
7666
7667 2012-07-28 Eli Zaretskii <eliz@gnu.org>
7668
7669 Fix non-ASCII input in non-GUI frames on MS-Windows. (Bug#12055)
7670 * w32inevt.c: Include w32inevt.h.
7671 (w32_read_console_input): New inline function, calls either
7672 ReadConsoleInputA or ReadConsoleInputW, depending on the value of
7673 w32_console_unicode_input.
7674 (fill_queue): Call w32_read_console_input instead of ReadConsoleInput.
7675 (w32_kbd_patch_key, key_event): Use the codepage returned by
7676 GetConsoleCP, rather than the ANSI codepage returned by GetLocaleInfo.
7677 (key_event): use uChar.UnicodeChar only if
7678 w32_console_unicode_input is non-zero.
7679
7680 * w32console.c: Include w32heap.h.
7681 <w32_console_unicode_input>: New global variable.
7682 (initialize_w32_display): Set w32_console_unicode_input to 1 on NT
7683 family of Windows, zero otherwise.
7684
7685 * w32inevt.h: Declare w32_console_unicode_input.
7686
7687 * xdisp.c (init_iterator): Don't reference tip_frame in a build
7688 --without-x. (Bug#11742)
7689
7690 2012-07-27 Paul Eggert <eggert@cs.ucla.edu>
7691
7692 Adjust GDB to reflect pvec_type changes (Bug#12036).
7693 * .gdbinit (xvectype, xpr, xbacktrace): Adjust to reflect the
7694 2012-07-04 changes to pseudovector representation.
7695 Problem reported by Eli Zaretskii in <http://bugs.gnu.org/12036#30>.
7696
7697 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
7698
7699 * dbusbind.c (XD_DBUS_VALIDATE_BUS_ADDRESS): Canonicalize session
7700 bus address.
7701 (xd_close_bus, Fdbus_init_bus): Handle reference counter properly.
7702
7703 2012-07-27 Eli Zaretskii <eliz@gnu.org>
7704
7705 * alloc.c (listn): Fix the order the arguments are consed onto the
7706 list.
7707
7708 * lisp.h (enum constype): Use CONSTYPE_HEAP and CONSTYPE_PURE for
7709 enumeration constants, as PURE and HEAP are too general, and clash
7710 with other headers and sources, such as gmalloc.c and the
7711 MS-Windows system headers. All users changed.
7712
7713 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
7714
7715 Revert last save_excursion_save and save_excursion_restore changes.
7716 * alloc.c, editfns.c, marker.c, lisp.h: Revert.
7717 Lots of crashes reported by Chong Yidong <cyd@gnu.org>.
7718
7719 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
7720
7721 Fix recently-introduced typos in Windows port.
7722 Reported by Martin Rudalics <rudalics@gmx.at>.
7723 * w32.c (init_environment): Replace comma with semicolon.
7724 * w32fns.c (syms_of_w32fns): Add missing parenthesis.
7725
7726 2012-07-27 Paul Eggert <eggert@cs.ucla.edu>
7727
7728 Improve GDB symbol export (Bug#12036).
7729 * .gdbinit (xgetptr, xgetint, xgettype): Set $bugfix in different
7730 arms of an 'if', not using conditional expressions; otherwise GDB
7731 complains about the types in the unevaluated arm when the argument
7732 is an integer literal.
7733 (xgetint): Simplify expression.
7734 * alloc.c (gdb_make_enums_visible): New constant. This ports to
7735 GCC 3.4.2 the export of symbols to GDB. Problem reported by Eli
7736 Zaretskii in <http://bugs.gnu.org/12036#13>.
7737 * lisp.h (PUBLISH_TO_GDB): Remove. All uses removed. No longer
7738 needed now that we have gdb_make_enums_visible.
7739 (enum CHECK_LISP_OBJECT_TYPE, enum Lisp_Bits, enum More_Lisp_Bits)
7740 (enum enum_USE_LSB_TAG):
7741 New enum types, packaging up enums that need to be exported to GDB.
7742
7743 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
7744
7745 Utility function to make a list from specified amount of objects.
7746 * lisp.h (enum constype): New datatype.
7747 (listn): New prototype.
7748 * alloc.c (listn): New function.
7749 (Fmemory_use_count, syms_of_alloc): Use it.
7750 * buffer.c (syms_of_buffer): Likewise.
7751 * callint.c (syms_of_callint): Likewise.
7752 * charset.c (define_charset_internal): Likewise.
7753 * coding.c (syms_of_coding): Likewise.
7754 * keymap.c (syms_of_keymap): Likewise.
7755 * search.c (syms_of_search): Likewise.
7756 * syntax.c (syms_of_syntax): Likewise.
7757 * w32.c (init_environment): Likewise.
7758 * w32fns.c (Fw32_battery_status, syms_of_w32fns): Likewise.
7759 * xdisp.c (syms_of_xdisp): Likewise.
7760 * xfns.c (syms_of_xfns): Likewise.
7761
7762 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
7763
7764 Fast save_excursion_save and save_excursion_restore.
7765 * lisp.h (struct Lisp_Excursion): New data type.
7766 (PVEC_EXCURSION): New pseudovector type.
7767 (XEXCURSION, XSETEXCURSION, EXCURSIONP): Convenient macros
7768 to deal with it. Adjust comments.
7769 (init_marker, attach_marker): New prototype.
7770 (unchain_marker): Adjust prototype.
7771 * marker.c (attach_marker): Change to global.
7772 (init_marker): New function.
7773 * alloc.c (Fmake_marker, build_marker): Use it.
7774 (build_marker): More easserts.
7775 (mark_object): Handle struct Lisp_Excursion.
7776 * editfns.c (save_excursion_save, save_excursion_restore):
7777 Reimplement to use struct Lisp_Excursion. Add comments.
7778
7779 2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
7780
7781 Fix export of symbols to GDB (Bug#12036).
7782 * alloc.c (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL)
7783 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Move these here from
7784 emacs.c, as this is a more-suitable home. Had this been done earlier
7785 the fix for 12036 would have avoided some of the problems noted in
7786 <http://bugs.gnu.org/12036#13> by Eli Zaretskii, as the scope problems
7787 would have been more obvious.
7788 * emacs.c: Do not include <verify.h>; no longer needed.
7789 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS)
7790 (gdb_GCTYPEBITS, gdb_USE_LSB_TAG)
7791 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
7792 Remove; now done in lisp.h.
7793 * lisp.h (PUBLISH_TO_GDB): New macro.
7794 (GCTYPEBITS, USE_LSB_TAG, CHECK_LISP_OBJECT_TYPE, enum pvec_type)
7795 (DATA_SEG_BITS): Use it.
7796 (GCTYPEBITS, USE_LSB_TAG): Now also an enum, for GDB.
7797 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Now just an enum, for GDB.
7798 * mem-limits.h (EXCEEDS_LISP_PTR): Redo so that DATA_SEG_BITS need
7799 not be usable in #if. This simplifies things.
7800
7801 2012-07-26 Juanma Barranquero <lekktu@gmail.com>
7802
7803 * makefile.w32-in ($(BLD)/emacs.$(O)): Update dependencies.
7804
7805 2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
7806
7807 Simplify export of symbols to GDB (Bug#12036).
7808 * .gdbinit (xgetptr, xgetint, xgettype): Don't use "set $bugfix =
7809 $bugfix.i", as this doesn't work (with GDB 7.4.1, anyway).
7810 (xgetptr, xgetint, xgettype, xcoding, xcharset, xprintbytestr):
7811 Adjust to changes in lisp.h and emacs.c, by using
7812 CHECK_LISP_OBJECT_TYPE rather than gdb_use_struct, VALMASK instead
7813 of $valmask, DATA_SEG_BITS instead of gdb_data_seg_bits,
7814 INTTYPEBITS instead of gdb_gctypebits - 1, USE_LSB_TAG instead of
7815 gdb_use_lsb, (1 << GCTYPEBITS) - 1 instead of $tagmask, VALBITS
7816 instead of gdb_valbits.
7817 (xvectype, xvector, xpr, xprintstr, xbacktrace): Similarly, use
7818 PSEUDOVECTOR_FLAG instead of PVEC_FLAG, and ARRAY_MARK_FLAG
7819 instead of gdb_array_mark_flag.
7820 (xboolvector): Get size from $->size, not $->header.size.
7821 Use BOOL_VECTOR_BITS_PER_CHAR rather than mystery constants.
7822 (xreload, hook-run, hookpost-run): Remove.
7823 * emacs.c: Include <verify.h>.
7824 (gdb_use_lsb, gdb_use_struct, gdb_valbits, gdb_gctypebits)
7825 (gdb_data_seg_bits, PVEC_FLAG, gdb_array_mark_flag, gdb_pvec_type):
7826 Remove.
7827 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS, gdb_GCTYPEBITS)
7828 (gdb_USE_LSB_TAG): New enum constants.
7829 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
7830 Also define these as enum constants, so they're visible to GDB.
7831 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): New macros.
7832 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Also define these
7833 as constants, so they're visible to GDB.
7834 * lisp.h (VALBITS, INTTYPEBITS, FIXNUM_BITS, PSEUDOVECTOR_SIZE_BITS)
7835 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK, BOOL_VECTOR_BITS_PER_CHAR):
7836 Now enum constants, not macros, so they're visible to GDB.
7837 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Default to 0, as this is
7838 more convenient now. All uses changed.
7839 (VALMASK) [USE_LSB_TAG]: Also define in this case.
7840 * mem-limits.h (EXCEEDS_LISP_PTR): Adjust to DATA_SEG_BITS change.
7841
7842 2012-07-26 Dmitry Antipov <dmantipov@yandex.ru>
7843
7844 Explicitly free restriction data that are not needed anymore.
7845 * editfns.c (save_restriction_restore): Free restriction data.
7846
7847 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
7848
7849 * eval.c (Fautoload_do_load): Rename from do_autoload, export to Lisp,
7850 add argument, tune behavior, and adjust all callers.
7851
7852 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
7853
7854 Use typedef for EMACS_INT, EMACS_UINT.
7855 * lisp.h, s/ms-w32.h (EMACS_INT, EMACS_UINT): Use typedefs rather
7856 than macros. This simplifies debugging in the usual case, since
7857 it lets GDB show addresses as 'EMACS_INT *' rather than 'long int *'
7858 and it allows expressions involving EMACS_INT casts.
7859 * .gdbinit (xreload): Simplify by using EMACS_INT cast.
7860
7861 2012-07-25 Jan Djärv <jan.h.d@swipnet.se>
7862
7863 * nsterm.m (ns_read_socket): Return early if there is a modal
7864 window (Bug#12043).
7865
7866 2012-07-25 Martin Rudalics <rudalics@gmx.at>
7867
7868 * frame.c (Fredirect_frame_focus): In doc-string don't mention
7869 that FOCUS-FRAME can be omitted.
7870
7871 2012-07-25 Dmitry Antipov <dmantipov@yandex.ru>
7872
7873 Adjust buffer text indirection counters at the end of Fkill_buffer.
7874 * buffer.c (Fkill_buffer): Adjust indirection counters when the
7875 buffer is definitely dead. This should really fix an issue reported
7876 by Christoph Scholtes again. (Bug#12007).
7877 (init_buffer_once): Initialize indirection counters of
7878 buffer_defaults and buffer_local_symbols (for sanity and safety).
7879
7880 2012-07-24 Eli Zaretskii <eliz@gnu.org>
7881
7882 * xdisp.c (init_iterator): Don't compute dimensions of truncation
7883 and continuation glyphs on tooltip frames, leave them at zero.
7884 Avoids continued lines in tooltips. (Bug#11832)
7885
7886 2012-07-24 Dmitry Antipov <dmantipov@yandex.ru>
7887
7888 Simplify copy_overlay.
7889 * buffer.c (copy_overlay): Simplify. Use build_marker.
7890 * lisp.h (struct Lisp_Overlay): Restore comment with minor tweaks.
7891
7892 2012-07-23 Eli Zaretskii <eliz@gnu.org>
7893
7894 * print.c (print_object): Don't crash when a frame's name is nil
7895 or invalid. (Bug#12025)
7896
7897 * window.c (decode_any_window): Disable CHECK_LIVE_FRAME test, as
7898 it signals an error when a tooltip frame is being created.
7899
7900 2012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
7901
7902 Cleanup miscellaneous objects allocation and initialization.
7903 * alloc.c (allocate_misc): Change to static. Add argument to
7904 specify the subtype. Adjust comment and users.
7905 (build_overlay): New function.
7906 * buffer.c (copy_overlays, Fmake_overlay): Use it.
7907 * lisp.h (struct Lisp_Overlay): Remove obsolete comment.
7908 (allocate_misc): Remove prototype.
7909 (build_overlay): Add prototype.
7910
7911 2012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
7912
7913 Swap buffer text indirection counters in Fbuffer_swap_text.
7914 * buffer.c (Fbuffer_swap_text): Swap indirections too.
7915 This avoids crash reported by Christoph Scholtes at
7916 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00785.html.
7917
7918 2012-07-22 Jan Djärv <jan.h.d@swipnet.se>
7919
7920 * nsmenu.m (Popdown_data): New struct.
7921 (pop_down_menu): p->pointer is Popdown_data. Release the pool and
7922 free Popdown_data.
7923 (ns_popup_dialog): Use NSAutoreleasePool and pass it to pop_down_menu.
7924 (initWithContentRect): Make imgView and contentView non-static
7925 and autorelease them. Also autorelease img and matrix (Bug#12005).
7926 (dealloc): Remove (Bug#12005).
7927
7928 2012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
7929
7930 Adjust consing_since_gc when objects are explicitly freed.
7931 * alloc.c (GC_DEFAULT_THRESHOLD): New macro.
7932 (Fgarbage_collect): Use it. Change minimum to 1/10 of default.
7933 (free_cons, free_misc): Subtract object size from consing_since_gc.
7934
7935 2012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
7936
7937 Simplify and cleanup markers positioning code.
7938 * marker.c (attach_marker): More useful eassert.
7939 (live_buffer, set_marker_internal): New function.
7940 (Fset_marker, set_marker_restricted): Use set_marker_internal.
7941 (set_marker_both, set_marker_restricted_both): Use live_buffer.
7942
7943 2012-07-22 Paul Eggert <eggert@cs.ucla.edu>
7944
7945 * buffer.h (struct buffer.indirections): Now ptrdiff_t, not int,
7946 as it's limited by the amount of memory, not by INT_MAX.
7947
7948 2012-07-21 Eli Zaretskii <eliz@gnu.org>
7949
7950 * keyboard.c (keys_of_keyboard): Bind language-change to 'ignore'
7951 in special-event-map. See the discussion at
7952 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00417.html
7953 for the reasons.
7954
7955 * w32menu.c (add_menu_item): Cast to ULONG_PTR when assigning
7956 info.dwItemData. Fixes crashes on 64-bit Windows.
7957 Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
7958
7959 2012-07-21 Jan Djärv <jan.h.d@swipnet.se>
7960
7961 * nsterm.m (accessibilityAttributeValue): New function. (Bug#11134).
7962 (conversationIdentifier): Return value is NSInteger.
7963 * nsterm.m (accessibilityAttributeValue): Surround with NS_IMPL_COCOA.
7964
7965 2012-07-21 Chong Yidong <cyd@gnu.org>
7966
7967 * window.c (decode_any_window): Signal an error if the window is
7968 on a dead frame (Bug#11984).
7969
7970 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
7971
7972 Add indirection counting to speed up Fkill_buffer.
7973 * buffer.h (struct buffer): New member.
7974 * buffer.c (Fget_buffer_create): Set indirection counter to 0.
7975 (Fmake_indirect_buffer): Set indirection counter to -1, increment
7976 base buffer indirection counter.
7977 (compact_buffer): If ENABLE_CHECKING, verify indirection counters.
7978 (Fkill_buffer): Adjust indirection counters as needed, don't walk
7979 through buffer list if indirection counter is 0.
7980
7981 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
7982
7983 Extend the value returned by Fgarbage_collect with heap statistics.
7984 * alloc.c (Qheap): New symbol.
7985 (syms_of_alloc): DEFSYM it.
7986 (Fgarbage_collect): If DOUG_LEA_MALLOC, add mallinfo data.
7987 (Fmemory_free): Remove.
7988 (syms_of_alloc): Don't defsubr it.
7989 * buffer.c (Fcompact_buffer): Remove.
7990 (syms_of_buffer): Don't defsubr it.
7991
7992 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
7993
7994 Make maybe_gc inline.
7995 Verify that inlining is always possible (GCC 4.7.1, -O3 -Winline).
7996 * lisp.h (consing_since_gc, gc_relative_threshold)
7997 (memory_full_cons_threshold): Revert declaration.
7998 (maybe_gc): Remove prototype, define as inline.
7999 * alloc.c: Remove old commented-out code.
8000 (consing_since_gc, gc_relative_threshold)
8001 (memory_full_cons_threshold): Revert to global.
8002 (maybe_gc): Remove.
8003
8004 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
8005
8006 Simple wrapper for make_unibyte_string, adjust font_open_by_name.
8007 * lisp.h (build_unibyte_string): New function.
8008 * dosfns.c, fileio.c, fns.c, ftfont.c, process.c:
8009 * sysdep.c, w32fns.c, xfns.c: Use it.
8010 * font.c (font_open_by_name): Change 2nd and 3rd args to the only arg
8011 of type Lisp_Object to avoid redundant calls to make_unibyte_string.
8012 Adjust users accordingly.
8013 * font.h (font_open_by_name): Adjust prototype.
8014
8015 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
8016
8017 Cleanup calls to Fgarbage_collect.
8018 * lisp.h (maybe_gc): New prototype.
8019 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
8020 Remove declarations.
8021 * alloc.c (maybe_gc): New function.
8022 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
8023 Make them static.
8024 * bytecode.c (MAYBE_GC): Use maybe_gc.
8025 * eval.c (eval_sub, Ffuncall): Likewise.
8026 * keyboard.c (read_char): Likewise. Adjust call to maybe_gc
8027 to avoid dependency from auto-save feature.
8028
8029 2012-07-19 Paul Eggert <eggert@cs.ucla.edu>
8030
8031 * buffer.h (FOR_EACH_BUFFER): Rename from 'for_each_buffer'.
8032 (FOR_EACH_PER_BUFFER_OBJECT_AT): Rename from
8033 'for_each_per_buffer_object_at'.
8034 All uses changed. It's better to use upper-case for macros that
8035 cannot be implemented as functions, to give the reader a clue
8036 that they're special.
8037
8038 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
8039
8040 * alloc.c (Fgarbage_collect): Tweak docstring.
8041
8042 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
8043
8044 Tweak the value returned from Fgarbage_collect again.
8045 * alloc.c (Fgarbage_collect): New return value, as confirmed in
8046 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00418.html.
8047 Adjust documentation.
8048 (total_vector_bytes): Rename to total_vector_slots, adjust
8049 accounting.
8050 (total_free_vector_bytes): Rename to total_free_vector_slots,
8051 adjust accounting.
8052 (Qstring_bytes, Qvector_slots): New symbols.
8053 (syms_of_alloc): DEFSYM them.
8054
8055 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
8056
8057 Buffer compaction primitive which may be used from Lisp.
8058 * buffer.c (compact_buffer, Fcompact_buffer): New function.
8059 (syms_of_buffer): Register Fcompact_buffer.
8060 * alloc.c (Fgarbage_collect): Use compact_buffer.
8061 * buffer.h (compact_buffer): New prototype.
8062 (struct buffer_text): New member.
8063
8064 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
8065
8066 New macro to iterate over all buffers, miscellaneous cleanups.
8067 * lisp.h (all_buffers): Remove declaration.
8068 * buffer.h (all_buffers): Add declaration, with comment.
8069 (for_each_buffer): New macro.
8070 * alloc.c (Fgarbage_collect, mark_object): Use it.
8071 * buffer.c (Fkill_buffer, Fbuffer_swap_text, Fset_buffer_multibyte)
8072 (init_buffer): Likewise.
8073 * data.c (Fset_default): Likewise.
8074 * coding.c (code_conversion_restore): Remove redundant check
8075 for dead buffer.
8076 * buffer.c (Fkill_buffer): Likewise. Remove obsolete comment.
8077
8078 2012-07-18 Andreas Schwab <schwab@linux-m68k.org>
8079
8080 Fix bug that created negative-length intervals.
8081 * intervals.c (merge_interval_right, merge_interval_left):
8082 Do not zero out this interval if it is absorbed by its children,
8083 as this interval's total length doesn't change in that case. See
8084 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00403.html>.
8085
8086 2012-07-18 Paul Eggert <eggert@cs.ucla.edu>
8087
8088 * alloc.c (Fmake_bool_vector): Fix off-by-8 bug
8089 when invoking (make-bool-vector N t) and N is a positive
8090 multiple of 8 -- the last 8 bits were mistakenly cleared.
8091
8092 Remove some struct layout assumptions in bool vectors.
8093 * alloc.c (bool_header_size): New constant.
8094 (header_size, word_size): Move earlier, as they're now used earlier.
8095 Use 'word_size' in a few more places, where it's appropriate.
8096 (Fmake_bool_vector, sweep_vectors): Don't assume that there is no
8097 padding before the data member of a bool vector.
8098 (sweep_vectors): Use PSEUDOVECTOR_TYPEP, in an eassert, rather
8099 than doing the check by hand with an abort ().
8100
8101 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
8102
8103 * eval.c (Fdefvar): Don't check constants since we only set the var if
8104 it's not yet defined anyway (bug#11904).
8105
8106 * lisp.h (last_undo_boundary): Declare new var.
8107 * keyboard.c (command_loop_1): Set it.
8108 * cmds.c (Fself_insert_command): Use it to only remove boundaries that
8109 were auto-added by the command loop (bug#11774).
8110
8111 2012-07-18 Andreas Schwab <schwab@linux-m68k.org>
8112
8113 * w32font.c (Qsymbol): Remove local definition.
8114 (syms_of_w32font): Don't DEFSYM it.
8115
8116 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
8117
8118 Fix sweep_vectors to handle large bool vectors correctly.
8119 * alloc.c (sweep_vectors): Account total_vector_bytes for
8120 bool vectors larger than VBLOCK_BYTES_MAX.
8121
8122 2012-07-18 Chong Yidong <cyd@gnu.org>
8123
8124 * frame.c (x_set_frame_parameters): Revert bogus change introduced
8125 in 2012-05-25 commit by Paul Eggert (Bug#11738).
8126
8127 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
8128
8129 Return more descriptive data from Fgarbage_collect.
8130 Suggested by Stefan Monnier in
8131 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00369.html.
8132 * alloc.c (bounded_number): New function.
8133 (total_buffers, total_vectors): New variable.
8134 (total_string_size): Rename to total_string_bytes, adjust users.
8135 (total_vector_size): Rename to total_vector_bytes, adjust users.
8136 (sweep_vectors): Account total_vectors and total_vector_bytes.
8137 (Fgarbage_collect): New return value. Adjust documentation.
8138 (gc_sweep): Account total_buffers.
8139 (Fmemory_free, Fmemory_use_counts): Use bounded_number.
8140 (VECTOR_SIZE): Remove.
8141 * data.c (Qfloat, Qvector, Qsymbol, Qstring, Qcons): Make global.
8142 (Qinterval, Qmisc): New symbols.
8143 (syms_of_data): Initialize them.
8144 * lisp.h (Qinterval, Qsymbol, Qstring, Qmisc, Qvector, Qfloat)
8145 (Qcons, Qbuffer): New declarations.
8146
8147 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
8148
8149 * alloc.c (Fmemory_free): Account for memory-free's own storage.
8150 Round up, not down. Improve doc.
8151
8152 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
8153
8154 Restore old code in allocate_string_data to avoid Faset breakage.
8155 Reported by Julien Danjou <julien@danjou.info> in
8156 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00371.html.
8157 * alloc.c (allocate_string_data): Restore old code with minor
8158 adjustments, fix comment to explain this subtle issue.
8159
8160 2012-07-17 Eli Zaretskii <eliz@gnu.org>
8161
8162 Remove FILE_SYSTEM_CASE.
8163 * s/msdos.h (FILE_SYSTEM_CASE): Don't define.
8164
8165 * fileio.c (FILE_SYSTEM_CASE): Don't define.
8166 (Ffile_name_directory, Fexpand_file_name): Don't use FILE_SYSTEM_CASE.
8167 Fixes problems on MS-DOS with Vtemp_file_name_pattern when
8168 call-process-region passes it through expand-file-name.
8169
8170 * dired.c (file_name_completion): Don't use FILE_SYSTEM_CASE.
8171
8172 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
8173
8174 Fix crash when creating indirect buffer (Bug#11917)
8175 * buffer.c (buffer_lisp_local_variables): Add argument CLONE.
8176 Don't handle unbound variables specially if non-zero.
8177 (Fbuffer_local_variables): Pass zero.
8178 (clone_per_buffer_values): Pass non-zero.
8179
8180 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
8181
8182 * gnutls.c (emacs_gnutls_handshake): Revert last change. Add QUIT
8183 to make the loop interruptible.
8184
8185 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
8186
8187 * gnutls.c (emacs_gnutls_handshake): Only retry if
8188 GNUTLS_E_INTERRUPTED.
8189
8190 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
8191
8192 Cleanup and convert miscellaneous checks to eassert.
8193 * alloc.c (mark_interval): Fix comment, partially rephrase
8194 old comment from intervals.h (see below).
8195 * intervals.c (find_interval, adjust_intervals_for_insertion)
8196 (delete_interval, adjust_intervals_for_deletion)
8197 (graft_intervals_into_buffer, temp_set_point_both, copy_intervals):
8198 Convert to eassert.
8199 (adjust_intervals_for_insertion, make_new_interval):
8200 Remove obsolete and unused code.
8201 * intervals.h (struct interval): Remove obsolete comment.
8202 * textprotp.c (erase_properties): Remove unused code.
8203 (Fadd_text_properties, set_text_properties_1, Fremove_text_properties)
8204 (Fremove_list_of_text_properties): Convert to eassert.
8205
8206 2012-07-17 Chong Yidong <cyd@gnu.org>
8207
8208 * editfns.c (Finsert_char): Doc fix.
8209
8210 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
8211
8212 Fix previous change to make Fmemory_free always accurate.
8213 * alloc.c (make_interval): Update total_free_intervals.
8214 (make_float): Likewise for total_free_floats.
8215 (free_cons, Fcons): Likewise for total_free_conses.
8216 (SETUP_ON_FREE_LIST, allocate_vector_from_block):
8217 Likewise for total_free_vector_bytes.
8218 (Fmake_symbol): Likewise for total_free_symbols.
8219 (bytes_free): Remove.
8220
8221 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
8222
8223 Simple free memory accounting feature.
8224 * alloc.c (bytes_free, total_free_vector_bytes): New variable.
8225 (sweep_vectors): Accumulate size of free vectors.
8226 (Fgarbage_collect): Setup bytes_free.
8227 (Fmemory_free): New function.
8228 (syms_of_alloc): Register it.
8229
8230 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
8231
8232 Cleanup overlays checking.
8233 * buffer.h (OVERLAY_VALID): Remove as useless synonym of OVERLAYP.
8234 * buffer.c (overlay_touches_p, recenter_overlay_lists): Change to
8235 eassert and OVERLAYP.
8236 (sort_overlays): Change to use OVERLAYP.
8237
8238 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
8239
8240 * editfns.c (Finsert_char): Make it interactive, and make the
8241 second arg optional. Copy interactive spec and docstring from
8242 ucs-insert.
8243
8244 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
8245
8246 * floatfns.c (Fabs): Do not wrap fabs inside IN_FLOAT (Bug#11913).
8247 Unlike the other wrapped functions, fabs has an unspecified
8248 effect on errno.
8249
8250 2012-07-16 Jan Djärv <jan.h.d@swipnet.se>
8251
8252 * nsterm.m (keyDown): Interpret flags without left/right bits
8253 as the left key (Bug#11670).
8254
8255 2012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
8256
8257 Remove empty and useless init functions.
8258 * lisp.h (init_character_once, init_fns, init_image)
8259 (init_filelock, init_sound): Remove prototype.
8260 * character.c (init_character_once): Remove.
8261 * filelock.c (init_filelock): Likewise.
8262 * fns.c (init_fns): Likewise.
8263 * image.c (init_image): Likewise.
8264 * sound.c (init_sound): Likewise.
8265 * emacs.c (main): Adjust accordingly.
8266
8267 2012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
8268
8269 * gtkutil.h: Tiny cleanups.
8270 (use_old_gtk_file_dialog): Remove useless declaration.
8271 (xg_uses_old_file_dialog): Add suggested const attribute.
8272
8273 2012-07-15 Eli Zaretskii <eliz@gnu.org>
8274
8275 * bidi.c (MAX_STRONG_CHAR_SEARCH): New macro.
8276 (bidi_paragraph_init): Use it to limit search forward for a strong
8277 directional character in abnormally large paragraphs full of
8278 neutral or weak characters. (Bug#11943)
8279
8280 2012-07-15 Stefano Facchini <stefano.facchini@gmail.com> (tiny change)
8281
8282 * gtkutil.c (xg_create_tool_bar): Apply "primary-toolbar" style to
8283 the toolbar (Bug#9451).
8284 (xg_make_tool_item): Give the widget event box a transparent
8285 background.
8286
8287 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
8288
8289 Cleanup basic allocation variables and functions.
8290 * alloc.c (ignore_warnings, init_intervals, init_float)
8291 (init_cons, init_symbol, init_marker): Remove.
8292 (interval_block_index): Initialize to INTERVAL_BLOCK_SIZE.
8293 (float_block_index): Initialize to FLOAT_BLOCK_SIZE.
8294 (cons_block_index): Initialize to CONS_BLOCK_SIZE.
8295 (symbol_block_size): Initialize to SYMBOL_BLOCK_SIZE.
8296 (marker_block_index): Initialize to MARKER_BLOCK_SIZE.
8297 (staticidx, init_alloc_once, init_strings, free_ablock):
8298 Remove redundant initialization.
8299 * fns.c (init_weak_hash_tables): Remove.
8300 * lisp.h (init_weak_hash_tables): Remove prototype.
8301
8302 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
8303
8304 Use zero_vector where appropriate.
8305 * alloc.c (zero_vector): Define as Lisp_Object. Adjust users
8306 accordingly.
8307 * lisp.h (zero_vector): New declaration.
8308 * font.c (null_vector): Remove.
8309 (syms_of_font): Remove initialization and staticpro.
8310 (font_list_entities, font_find_for_lface): Change to use zero_vector.
8311 * keymap.c (Faccessible_keymaps): Likewise.
8312
8313 2012-07-15 Leo Liu <sdl.web@gmail.com>
8314
8315 * fringe.c: Fix typo in comments.
8316
8317 2012-07-14 Leo Liu <sdl.web@gmail.com>
8318
8319 * fringe.c: Add a new bitmap exclamation-mark.
8320
8321 2012-07-14 Eli Zaretskii <eliz@gnu.org>
8322
8323 * gmalloc.c (GMALLOC_INHIBIT_VALLOC): Don't reference.
8324
8325 * s/msdos.h (BSD_SYSTEM, DATA_START, GC_SETJMP_WORKS, HAVE_MOUSE)
8326 (HAVE_MENUS): Don't define, defined by editing config.in with
8327 msdos/sed2v2.inp.
8328 (GMALLOC_INHIBIT_VALLOC): Don't define.
8329 (MODE_LINE_BINARY_TEXT): Remove, not used anymore.
8330
8331 2012-07-14 Juanma Barranquero <lekktu@gmail.com>
8332
8333 * s/ms-w32.h (GC_SETJMP_WORKS, GC_MARK_STACK): Set in nt/config.nt.
8334
8335 2012-07-14 Glenn Morris <rgm@gnu.org>
8336
8337 * s/aix4-2.h, s/freebsd.h, s/gnu-linux.h, s/hpux10-20.h:
8338 * s/irix6-5.h, s/netbsd.h, s/sol2-6.h, s/unixware.h:
8339 Let configure set GC_SETJMP_WORKS, GC_MARK_STACK.
8340
8341 2012-07-13 Glenn Morris <rgm@gnu.org>
8342
8343 * s/gnu-linux.h (GC_MARK_SECONDARY_STACK): Let configure set it.
8344
8345 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Let configure set it.
8346 * s/irix6-5.h (SETUP_SLAVE_PTY): No more need to unset it.
8347
8348 2012-07-13 Jan Djärv <jan.h.d@swipnet.se>
8349
8350 * nsterm.m (uRect): Only define if NS_IMPL_GNUSTEP.
8351 (x_free_frame_resources): Pass x_free_frame_resources to NSTRACE.
8352 (ns_lisp_to_color, ns_string_to_lispmod, ns_term_init)
8353 (ns_term_shutdown, requestService, initFrameFromEmacs): Use SSDATA
8354 where appropriate.
8355 (ns_exec_path, ns_load_path, changeFont): Put () around assignment used
8356 as boolean expression.
8357 (x_set_window_size): Remove unused variable toolbar.
8358 (ns_get_color_default, ns_mod_to_lisp): Remove.
8359 (ns_mouse_position): Remove unused variables xchar and ychar.
8360 (ns_compute_glyph_string_overhangs): Remove unused variable face.
8361 (ns_set_vertical_scroll_bar): Remove unused variable count.
8362 (ns_delete_terminal): Remove unused variable i.
8363 (ns_term_init): Remove unused variables r, g and b.
8364 (mouseDown): Remove unused variable window.
8365 (windowDidResize): Move definition of theWindow inside NS_IMPL_GNUSTEP.
8366 (initFrameFromEmacs): Remove unused variable vbextra.
8367 (mouseEntered): Remove unused variables p and dpyinfo.
8368 (mouseExited): Remove unused variables p and r.
8369 (ns_define_frame_cursor, ns_clear_frame_area)
8370 (ns_draw_window_cursor, ns_initialize_display_info): Make static.
8371 (menuDown): Assign [sender tag] to variable and cast the variable.
8372
8373 * nsterm.h (menuDown): Add id as type to argument sender.
8374 (ns_display_info_for_name): Add Lisp_Object argument.
8375 (ns_term_init): Add Lisp_Object argument.
8376 (ns_map_event_to_object): Add void argument.
8377 (ns_string_from_pasteboard, ns_string_to_pasteboard): Add correct
8378 prototype with arguments and only declare if __OBJC__.
8379 (nxatoms_of_nsselect): Add void argument.
8380 (ns_lisp_to_cursor_type): Add Lisp_Object argument.
8381 (ns_alloc_autorelease_pool): Add void argument.
8382 (ns_release_autorelease_pool): Add void* argument.
8383 (ns_get_defaults_value): Add const char* argument.
8384
8385 * nsmenu.m (ns_update_menubar, ns_menu_show, process_dialog)
8386 (initFromContents): Use SSDATA where appropriate.
8387 (ns_update_menubar): Add braces to ambigous if-else.
8388 (initWithTitle): Put () around assignment in if statement.
8389 (ns_menu_show): Remove unused variables window and keymap.
8390 (update_frame_tool_bar): Remove unused variable selected_p.
8391 (initWithContentRect): Remove unused variable this_cmd_name.
8392
8393 * nsimage.m (ns_load_image, allocInitFromFile): Use SSDATA where
8394 appropriate.
8395 (setXBMColor): Remove unused variable len.
8396 (setPixmapData): Put () around assignment in loop statement.
8397
8398 * nsfont.m (ns_get_family, ns_lang_to_script, ns_otf_to_script)
8399 (ns_registry_to_script, ns_get_req_script, nsfont_open): Use SSDATA
8400 where appropriate.
8401 (ns_get_covering_families, ns_findfonts, nsfont_list_family): Put ()
8402 around assignment in loop statement.
8403 (nsfont_open): Remove unused variable i.
8404 (nsfont_open): Remove unused variable len.
8405 (nsfont_draw): Remove unused variable cs.
8406
8407 * nsfns.m (x_set_icon_name, ns_set_name_internal)
8408 (ns_set_name_as_filename, ns_implicitly_set_icon_type)
8409 (x_set_icon_type, ns_lisp_to_cursor_type, Fns_read_file_name)
8410 (Fns_get_resource, Fns_set_resource, Fx_open_connection)
8411 (Fns_font_name, Fns_perform_service)
8412 (Fns_convert_utf8_nfd_to_nfc, ns_do_applescript)
8413 (Fns_do_applescript, Fx_show_tip): Use SSDATA where appropriate.
8414 (ns_set_name): Remove unused variable view.
8415 (x_set_menu_bar_lines): Remove unused variable olines.
8416 (x_set_tool_bar_lines): Remove unused variable root_window.
8417 (Fns_list_colors): Put () around assignment in while statement.
8418 (Fns_perform_service): Remove unused variable len.
8419 (Fns_display_usable_bounds): Remove unused variable top.
8420 (syms_of_nsfns): Remove unused variable i.
8421
8422 * nsmenu.m (ns_update_menubar): Exchange place of argument 2 and 3 to
8423 memcpy (Bug#11907).
8424
8425 2012-07-13 Kalle Kankare <kalle.kankare@iki.fi> (tiny change)
8426
8427 * image.c (Fimagemagick_types): Initialize ex with GetExceptionInfo
8428 and free it with DestroyExceptionInfo (Bug#11558).
8429
8430 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
8431
8432 * s/ms-w32.h (FIRST_PTY_LETTER, HAVE_SOCKETS): Move to nt/config.nt.
8433 (HAVE_ATTRIBUTE_ALIGNED, HAVE_C99_STRTOLD, HAVE___BUILTIN_UNWIND_INIT):
8434 Set here, not in nt/config.nt.
8435
8436 2012-07-13 Eli Zaretskii <eliz@gnu.org>
8437
8438 * xdisp.c (move_it_in_display_line_to): On GUI terminals, allow
8439 cursor overflow into the last glyph on display line when the right
8440 fringe is off. (Bug#11832)
8441
8442 2012-07-13 Paul Eggert <eggert@cs.ucla.edu>
8443
8444 * xdisp.c (produce_special_glyphs): Now static.
8445 * dispextern.h (produce_special_glyphs): Remove decl.
8446
8447 2012-07-13 Glenn Morris <rgm@gnu.org>
8448
8449 * s/bsd-common.h, s/cygwin.h: Remove empty files.
8450 * s/freebsd.h, s/netbsd.h: Do not include bsd-common.h.
8451
8452 * s/usg5-4-common.h (USG, USG5):
8453 * s/template.h (USG5, USG, HPUX, BSD4_2, BSD_SYSTEM):
8454 * s/sol2-6.h (SOLARIS2):
8455 * s/irix6-5.h (IRIX6_5):
8456 * s/hpux10-20.h (USG, USG5, HPUX):
8457 * s/gnu-linux.h (USG, GNU_LINUX):
8458 * s/freebsd.h (BSD_SYSTEM):
8459 * s/darwin.h (BSD4_2, BSD_SYSTEM, DARWIN_OS):
8460 * s/cygwin.h (CYGWIN):
8461 * s/bsd-common.h (BSD_SYSTEM, BSD4_2):
8462 * s/aix4-2.h (USG, USG5, _AIX): Move "system type" macros to configure.
8463
8464 2012-07-13 BT Templeton <bpt@hcoop.net> (tiny change)
8465
8466 * nsfont.m (ns_charset_covers): Don't abort if no bitmap (Bug#11853).
8467
8468 2012-07-13 Glenn Morris <rgm@gnu.org>
8469
8470 * s/usg5-4-common.h (NSIG_MINIMUM): Let configure set it.
8471
8472 * s/gnu-linux.h, s/irix6-5.h: Let configure set ULIMIT_BREAK_VALUE.
8473
8474 * process.c (init_process_emacs): Replace MIN_PTY_KERNEL_VERSION.
8475 * s/darwin.h (MIN_PTY_KERNEL_VERSION): Remove single-use macro.
8476
8477 2012-07-12 Glenn Morris <rgm@gnu.org>
8478
8479 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Move to configure.
8480
8481 * process.c (init_process_emacs): Rename from init_process.
8482 The old name is also the name of a Mach system call.
8483 * lisp.h, emacs.c: Update for this name change.
8484 * nsgui.h, sysselect.h, s/darwin.h: Remove workaround that is no
8485 longer needed.
8486
8487 2012-07-12 Eli Zaretskii <eliz@gnu.org>
8488
8489 * xdisp.c (insert_left_trunc_glyphs): Fix incorrect size in
8490 memmove call that removes glyphs covered by the left truncation
8491 glyph. Improve commentary.
8492 (display_line): Fix display of continuation glyphs on GUI frames
8493 when the right fringe is turned off and variable-size fonts are
8494 used in the window. Move the code that appends a stretch glyph to
8495 produce_special_glyphs, so that it could be used for truncation
8496 and continuation glyphs alike.
8497 (produce_special_glyphs) [HAVE_WINDOW_SYSTEM]: Produce a stretch
8498 glyph of a suitably computed width, to align the special glyphs at
8499 the window margin. Code moved from display_line. (Bug#11832)
8500
8501 2012-07-12 Glenn Morris <rgm@gnu.org>
8502
8503 * s/aix4-2.h, s/hpux10-20.h: Let configure set NO_EDITRES.
8504
8505 * s/gnu-linux.h, s/hpux10-20.h:
8506 Do not unconditionally define HAVE_XRMSETDATABASE.
8507
8508 * s/gnu-linux.h (UNIX98_PTYS): Let configure set it.
8509
8510 2012-07-12 Paul Eggert <eggert@cs.ucla.edu>
8511
8512 Fix typos that broke OS X build.
8513 Reported by Randal L. Schwartz in
8514 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00225.html>.
8515 * nsterm.m (ns_timeout): Add missing local decl.
8516 (ns_get_color): snprintf -> sprintf, to fix typo.
8517
8518 2012-07-12 Glenn Morris <rgm@gnu.org>
8519
8520 * src/s/aix4-2.h, src/s/cygwin.h, src/s/darwin.h:
8521 * src/s/gnu-linux.h, src/s/hpux10-20.h, src/s/irix6-5.h:
8522 * src/s/sol2-6.h, src/s/unixware.h, src/s/usg5-4-common.h:
8523 Move PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF to configure.
8524
8525 * s/cygwin.h, s/darwin.h, s/gnu-linux.h, s/irix6-5.h:
8526 Move PTY_OPEN to configure.
8527
8528 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
8529 * s/gnu-linux.h, s/hpux10-20.h, s/irix6-5.h, s/template.h:
8530 * s/usg5-4-common.h: Move FIRST_PTY_LETTER, PTY_ITERATION to configure.
8531
8532 2012-07-12 Dmitry Antipov <dmantipov@yandex.ru>
8533
8534 Use empty_unibyte_string where applicable.
8535 * keyboard.c (parse_tool_bar_item): Use empty_unibyte_string.
8536 * lread.c (read1): Likewise.
8537 * xsettings.c (syms_of_xsettings): Likewise.
8538
8539 2012-07-12 Glenn Morris <rgm@gnu.org>
8540
8541 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC):
8542 * s/freebsd.h (BROKEN_PTY_READ_AFTER_EAGAIN):
8543 * s/irix6-5.h (SETPGRP_RELEASES_CTTY, PREFER_VSUSP):
8544 * s/hpux10-20.h (RUN_TIME_REMAP):
8545 * s/bsd-common.h (TABDLY): Move to configure.
8546
8547 * s/hpux10-20.h, s/sol2-6.h: Move XOS_NEEDS_TIME_H to configure.
8548
8549 * s/bsd-common.h, s/darwin.h: Move TAB3 to configure.
8550
8551 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
8552 (BROKEN_SIGPOLL, BROKEN_GET_CURRENT_DIR_NAME): Let configure set them.
8553
8554 * s/darwin.h (NO_ABORT, NO_MATHERR): Let configure set them.
8555
8556 * s/bsd-common.h, s/cygwin.h, s/gnu-linux.h, s/irix6-5.h:
8557 * s/template.h: Move NARROWPROTO to configure.
8558
8559 2012-07-11 Glenn Morris <rgm@gnu.org>
8560
8561 * s/gnu-linux.h, s/sol2-6.h: No longer define POSIX,
8562 unused since 2011-01-17 change to systty.h.
8563
8564 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h, s/gnu-linux.h:
8565 * s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
8566 Move HAVE_PTYS and HAVE_SOCKETS to configure.
8567
8568 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
8569
8570 * s/sol2-6.h (HAVE_LIBKSTAT): Remove. (Bug#11914)
8571
8572 2012-07-11 Glenn Morris <rgm@gnu.org>
8573
8574 * s/darwin.h, s/gnu-linux.h, s/template.h:
8575 Move INTERRUPT_INPUT to configure.
8576
8577 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
8578
8579 Minor adjustments to interning code.
8580 * lisp.h (intern, intern_c_string): Redefine as static inline
8581 wrappers for intern_1 and intern_c_string_1, respectively.
8582 (intern_1, intern_c_string_1): Rename prototypes.
8583 * lread.c (intern_1, intern_c_string_1, oblookup):
8584 Simplify Vobarray checking.
8585 * font.c (font_intern_prop): Likewise. Adjust comment.
8586 * w32font.c (intern_font_name): Likewise.
8587
8588 2012-07-11 Andreas Schwab <schwab@linux-m68k.org>
8589
8590 * gnutls.c (Fgnutls_boot): Properly parse :keylist argument.
8591
8592 * coding.c (Fdefine_coding_system_internal): Use XCAR/XCDR instead
8593 of Fcar/Fcdr if possible.
8594 * font.c (check_otf_features): Likewise.
8595 * fontset.c (Fnew_fontset): Likewise.
8596 * gnutls.c (Fgnutls_boot): Likewise.
8597 * minibuf.c (read_minibuf): Likewise.
8598 * msdos.c (IT_set_frame_parameters): Likewise.
8599 * xmenu.c (Fx_popup_dialog): Likewise.
8600 * w32menu.c (Fx_popup_dialog): Likewise.
8601
8602 2012-07-11 Glenn Morris <rgm@gnu.org>
8603
8604 * s/bsd-common.h, s/cygwin.h: No need to undefine INTERRUPT_INPUT,
8605 since nothing has defined it on these platforms.
8606
8607 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/gnu-linux.h:
8608 * s/irix6-5.h: Move SIGNALS_VIA_CHARACTERS to configure.
8609
8610 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
8611 * s/gnu-linux.h, s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
8612 Move CLASH_DETECTION to configure.
8613
8614 * s/gnu.h: Remove file, which is now empty.
8615
8616 * s/gnu.h, s/gnu-linux.h:
8617 Move GNU_LIBRARY_PENDING_OUTPUT_COUNT to configure.
8618
8619 2012-07-11 John Wiegley <johnw@newartisans.com>
8620
8621 * alloc.c (mark_memory): Guard the "no_address_safety_analysis"
8622 function attribute, so we only use it if it exists in the
8623 compiler.
8624
8625 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
8626
8627 Avoid call to strlen in fast_c_string_match_ignore_case.
8628 * search.c (fast_c_string_match_ignore_case): Change to use
8629 length argument. Adjust users accordingly.
8630 * lisp.h (fast_c_string_match_ignore_case): Adjust prototype.
8631
8632 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
8633
8634 Assume mkdir, rmdir.
8635 * sysdep.c (mkdir) [!HAVE_MKDIR]: Remove.
8636 * sysdep.c (rmdir) [!HAVE_RMDIR]: Remove.
8637
8638 Assume rename.
8639 * sysdep.c (rename) [!HAVE_RENAME]: Remove.
8640
8641 Assume perror.
8642 * s/hpux10-20.h (HAVE_PERROR): Remove.
8643 * sysdep.c (perror) [HPUX && !HAVE_PERROR]:
8644 Remove dummy definition, as this problem was obsolete long ago.
8645
8646 Assume strerror.
8647 * sysdep.c (strerror) [!HAVE_STRERROR && !WINDOWSNT]: Remove.
8648
8649 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
8650
8651 Avoid calls to strlen in font processing functions.
8652 * font.c (font_parse_name, font_parse_xlfd, font_parse_fcname)
8653 (font_open_by_name): Change to use length argument.
8654 Adjust users accordingly.
8655 * font.h (font_open_by_name, font_parse_xlfd, font_unparse_xlfd):
8656 Adjust prototypes.
8657 * xfont.c (xfont_decode_coding_xlfd, font_unparse_xlfd):
8658 Change to return ptrdiff_t.
8659 (xfont_list_pattern, xfont_match): Use length returned by
8660 xfont_decode_coding_xlfd.
8661 * xfns.c (x_default_font_parameter): Omit useless xstrdup.
8662
8663 2012-07-11 Glenn Morris <rgm@gnu.org>
8664
8665 * s/darwin.h, s/freebsd.h, s/netbsd.h:
8666 Move DONT_REOPEN_PTY to configure.
8667
8668 * sound.c (DEFAULT_SOUND_DEVICE) [!WINDOWSNT]:
8669 * s/netbsd.h (DEFAULT_SOUND_DEVICE): Let configure set it.
8670
8671 2012-07-10 Paul Eggert <eggert@cs.ucla.edu>
8672
8673 Remove "#define unix" that is no longer needed (Bug#11905).
8674 * s/aix4-2.h (unix): Remove; no longer needed.
8675
8676 EMACS_TIME simplification (Bug#11875).
8677 This replaces macros (which typically do not work in GDB)
8678 with functions, typedefs and enums, making the code easier to debug.
8679 The functional style also makes code easier to read and maintain.
8680 * systime.h: Include <sys/time.h> on all hosts, not just if
8681 WINDOWSNT, since 'struct timeval' is needed in general.
8682 (EMACS_TIME): Now a typedef, not a macro.
8683 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): Now constants,
8684 not macros.
8685 (EMACS_SECS, EMACS_NSECS, EMACS_TIME_SIGN, EMACS_TIME_VALID_P)
8686 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE, EMACS_TIME_EQ)
8687 (EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE, EMACS_TIME_LT)
8688 (EMACS_TIME_LE): Now functions, not macros.
8689 (EMACS_SET_SECS, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS)
8690 (EMACS_SET_USECS, EMACS_SET_SECS_USECS): Remove these macros,
8691 which are not functions. All uses rewritten to use:
8692 (make_emacs_time): New function.
8693 (EMACS_SECS_ADDR, EMACS_SET_INVALID_TIME, EMACS_GET_TIME)
8694 (EMACS_ADD_TIME, EMACS_SUB_TIME): Remove these macros, which are
8695 not functions. All uses rewritten to use the following, respectively:
8696 (emacs_secs_addr, invalid_emacs_time, get_emacs_time)
8697 (add_emacs_time, sub_emacs_time): New functions.
8698 * atimer.c: Don't include <sys/time.h>, as "systime.h" does this.
8699 * fileio.c (Fcopy_file):
8700 * xterm.c (XTflash): Get the current time closer to when it's used.
8701 * makefile.w32-in ($(BLD)/atimer.$(O)): Update dependencies.
8702
8703 * bytecode.c (targets): Suppress -Woverride-init warnings.
8704
8705 Simplify by avoiding confusing use of strncpy etc.
8706 * doc.c (Fsnarf_documentation):
8707 * fileio.c (Ffile_name_directory, Fsubstitute_in_file_name):
8708 * frame.c (Fmake_terminal_frame):
8709 * gtkutil.c (get_utf8_string):
8710 * lread.c (openp):
8711 * nsmenu.m (ns_update_menubar):
8712 * regex.c (regerror):
8713 Prefer memcpy to strncpy and strncat when either will do.
8714 * fileio.c (Fsubstitute_in_file_name):
8715 * keyboard.c (MULTI_LETTER_MOD, parse_modifiers_uncached)
8716 (menu_separator_name_p):
8717 * nsmenu.m (ns_update_menubar):
8718 Prefer memcmp to strncmp when either will do.
8719 * nsterm.m: Include <ftoastr.h>.
8720 (ns_get_color):
8721 * s/gnu-linux.h, s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF):
8722 Prefer snprintf to strncpy.
8723 * nsterm.m (ns_term_init):
8724 * widget.c (set_frame_size) [0]: Prefer xstrdup to xmalloc + strncpy.
8725 * nsterm.m (ns_term_init):
8726 Avoid the need for strncpy, by using build_string or
8727 make_unibyte_string directly. Use dtoastr, not snprintf.
8728 * process.c (Fmake_network_process): Diagnose service names that
8729 are too long, rather than silently truncating them or creating
8730 non-null-terminated names.
8731 (Fnetwork_interface_info): Likewise, for interface names.
8732 * sysdep.c (system_process_attributes) [GNU_LINUX]:
8733 Prefer sprintf to strncat.
8734 * xdisp.c (debug_method_add) [GLYPH_DEBUG]:
8735 Prefer vsnprintf to vsprintf + strncpy.
8736
8737 2012-07-10 Glenn Morris <rgm@gnu.org>
8738
8739 * dispnew.c (PENDING_OUTPUT_COUNT) [!__GNU_LIBRARY__]:
8740 Clarify fallback case.
8741
8742 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
8743
8744 Use XCAR and XCDR instead of Fcar and Fcdr where possible.
8745 * callint.c, coding.c, doc.c, editfns.c, eval.c, font.c, fontset.c,
8746 * frame.c, gnutls.c, minibuf.c, msdos.c, textprop.c, w32fns.c,
8747 * w32menu.c, window.c, xmenu.c: Change to use XCAR and XCDR
8748 where argument type is known to be a Lisp_Cons.
8749
8750 2012-07-10 Tom Tromey <tromey@redhat.com>
8751
8752 * bytecode.c (BYTE_CODE_THREADED): New macro.
8753 (BYTE_CODES): New macro. Replaces all old byte-code defines.
8754 (enum byte_code_op): New type.
8755 (CASE, NEXT, FIRST, CASE_DEFAULT, CASE_ABORT): New macros.
8756 (exec_byte_code): Use them. Use token threading when applicable.
8757
8758 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
8759
8760 Optimize pure C strings initialization.
8761 * lisp.h (make_pure_string): Fix prototype.
8762 (build_pure_c_string): New function, defined as static inline. This
8763 provides a better opportunity to optimize away calls to strlen when
8764 the function is called with compile-time constant argument.
8765 * alloc.c (make_pure_c_string): Fix comment. Change to add nchars
8766 argument, adjust users accordingly. Use build_pure_c_string where
8767 appropriate.
8768 * buffer.c, coding.c, data.c, dbusbind.c, fileio.c, fontset.c, frame.c,
8769 * keyboard.c, keymap.c, lread.c, search.c, syntax.c, w32fns.c, xdisp.c,
8770 * xfaces.c, xfns.c, xterm.c: Use build_pure_c_string where appropriate.
8771
8772 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
8773
8774 Avoid calls to strlen in miscellaneous functions.
8775 * buffer.c (init_buffer): Use precalculated len, adjust if needed.
8776 * font.c (Ffont_xlfd_name): Likewise. Change to call make_string.
8777 * lread.c (openp): Likewise.
8778
8779 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
8780
8781 Avoid calls to strlen in path processing functions.
8782 * fileio.c (file_name_as_directory): Add comment. Change to add
8783 srclen argument and return the length of result. Adjust users
8784 accordingly.
8785 (directory_file_name): Fix comment. Change to add srclen argument,
8786 swap 1st and 2nd arguments to obey the common convention.
8787 Adjust users accordingly.
8788 * filelock.c (fill_in_lock_file_name): Avoid calls to strlen.
8789
8790 2012-07-10 Glenn Morris <rgm@gnu.org>
8791
8792 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/netbsd.h, s/unixware.h:
8793 Move PENDING_OUTPUT_COUNT definition to configure.
8794
8795 * s/irix6-5.h (DATA_START, DATA_SEG_BITS):
8796 * s/hpux10-20.h (DATA_SEG_BITS, DATA_START):
8797 * s/gnu.h (DATA_START): Move definitions to configure.
8798
8799 * s/irix6-5.h (SETUP_SLAVE_PTY, PTY_NAME_SPRINTF): Drop ifdef guards.
8800 We include usg5-4-common.h, which defines them both.
8801
8802 * s/gnu.h: Don't include fcntl.h (every file in Emacs that uses
8803 O_RDONLY already includes it).
8804
8805 Stop ns builds setting the EMACSLOADPATH environment variable.
8806 * nsterm.m (ns_load_path): Rename from ns_init_paths.
8807 Now it does not set EMACSLOADPATH, just returns the load-path string.
8808 * nsterm.h: Update accordingly.
8809 * lread.c [HAVE_NS]: Include nsterm.h.
8810 (init_lread) [HAVE_NS]: Use ns_load_path.
8811 * emacs.c (main) [HAVE_NS]: No longer call ns_init_paths.
8812
8813 2012-07-09 Glenn Morris <rgm@gnu.org>
8814
8815 * s/gnu.h (SIGNALS_VIA_CHARACTERS): No need to define it here,
8816 since the included bsd-common.h does so.
8817
8818 Stop ns builds setting the EMACSPATH environment variable.
8819 * nsterm.m (ns_exec_path): New function, split from ns_init_paths.
8820 (ns_init_paths): Do not set EMACSPATH.
8821 * nsterm.h (ns_exec_path): Add it.
8822 * callproc.c (init_callproc_1, init_callproc) [HAVE_NS]:
8823 Use ns_exec_path.
8824
8825 * nsterm.m, nsterm.h (ns_etc_directory): Fix type, empty return.
8826
8827 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
8828
8829 * process.c (wait_reading_process_output): 'waitchannels' was unset
8830 when read_kbd || !NILP (wait_for_cell); fix this.
8831
8832 Add GCC-style 'const' attribute to functions that can use it.
8833 * character.h (char_resolve_modifier_mask):
8834 * keyboard.h (make_ctrl_char):
8835 * lisp.h (multibyte_char_to_unibyte, multibyte_char_to_unibyte_safe)
8836 (init_character_once, next_almost_prime, init_fns, init_image)
8837 (flush_pending_output, init_sound):
8838 * mem-limits.h (start_of_data):
8839 * menu.h (finish_menu_items):
8840 Add ATTRIBUTE_CONST.
8841 * emacs.c (DEFINE_DUMMY_FUNCTION):
8842 Declare the dummy function with ATTRIBUTE_CONST.
8843 * lisp.h (Fbyteorder, Fmax_char, Fidentity):
8844 Add decls with ATTRIBUTE_CONST.
8845
8846 Minor improvements to make_formatted_string.
8847 * alloc.c (make_formatted_string): Prefer int to ptrdiff_t
8848 where int is good enough, as vsprintf returns an int.
8849 * lisp.h (make_formatted_string): Add ATTRIBUTE_FORMAT_PRINTF.
8850
8851 2012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
8852
8853 Use make_formatted_string to avoid double length calculation.
8854 * lisp.h (make_formatted_string): New prototype.
8855 * alloc.c (make_formatted_string): New function.
8856 * buffer.c (Fgenerate_new_buffer_name): Use it.
8857 * dbusbind.c (syms_of_dbusbind): Likewise.
8858 * editfns.c (Fcurrent_time_zone): Likewise.
8859 * filelock.c (get_boot_time): Likewise.
8860 * frame.c (make_terminal_frame, set_term_frame_name)
8861 (x_report_frame_params): Likewise.
8862 * image.c (gs_load): Likewise.
8863 * minibuf.c (get_minibuffer): Likewise.
8864 * msdos.c (dos_set_window_size): Likewise.
8865 * process.c (make_process): Likewise.
8866 * xdisp.c (ensure_echo_area_buffers): Likewise.
8867 * xsettings.c (apply_xft_settings): Likewise.
8868
8869 2012-07-09 Glenn Morris <rgm@gnu.org>
8870
8871 Stop ns builds polluting the environment with EMACSDATA, EMACSDOC.
8872 * nsterm.m (ns_etc_directory): New function, split from ns_init_paths.
8873 (ns_init_paths): Do not set EMACSDATA, EMACSDOC.
8874 * nsterm.h (ns_etc_directory): Add it.
8875 * callproc.c [HAVE_NS]: Include nsterm.h.
8876 (init_callproc_1, init_callproc) [HAVE_NS]: Use ns_etc_directory.
8877
8878 2012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
8879
8880 Move marker debugging code under MARKER_DEBUG.
8881 * marker.c (MARKER_DEBUG): Move marker debugging code under
8882 #ifdef MARKER_DEBUG because byte_char_debug_check is too slow
8883 for bootstrap with --enable-checking (~3x slowdown reported
8884 by Juanma Barranquero <lekktu@gmail.com>).
8885 (verify_bytepos): Move under #ifdef MARKER_DEBUG.
8886
8887 2012-07-08 Paul Eggert <eggert@cs.ucla.edu>
8888
8889 * systime.h (EMACS_SUB_TIME): Clarify behavior with unsigned time_t.
8890 See <http://bugs.gnu.org/11825#29>.
8891
8892 2012-07-08 Eli Zaretskii <eliz@gnu.org>
8893
8894 * xdisp.c (fill_glyphless_glyph_string): If the face of the glyph
8895 has no font, use the frame's font. (Bug#11813)
8896 (display_line): Add commentary about displaying truncation glyphs
8897 on GUI frames.
8898 (produce_special_glyphs): Move here from term.c.
8899
8900 * term.c (produce_special_glyphs): Move to xdisp.c.
8901
8902 * dispextern.h (produce_special_glyphs): Move prototype to xdisp.c
8903 section.
8904
8905 2012-07-07 Andreas Schwab <schwab@linux-m68k.org>
8906
8907 * xdisp.c (display_line): Avoid warning about implicit declaration
8908 of FRAME_FONT.
8909
8910 * frame.c (get_frame_param): Define only if HAVE_WINDOW_SYSTEM.
8911
8912 * lisp.h: Remove empty conditional.
8913
8914 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
8915
8916 * lread.c (load_path_check): Now static.
8917
8918 Fix some minor --with-ns problems found by static checking.
8919 * frame.c (Ftool_bar_pixel_width) [!FRAME_TOOLBAR_WIDTH]:
8920 (x_set_font) [!HAVE_X_WINDOWS]:
8921 * image.c (xpm_load_image) [HAVE_NS]:
8922 (x_to_xcolors) [!HAVE_X_WINDOWS && !HAVE_NTGUI]:
8923 (x_disable_image) [!HAVE_NS && !HAVE_NTGUI]:
8924 Remove unused local.
8925 (Fx_parse_geometry) [HAVE_NS]: Don't return garbage.
8926 (xpm_load_image) [HAVE_NS && !HAVE_XPM]: Remove unused label.
8927 * image.c (x_create_bitmap_from_file) [HAVE_NS]:
8928 (xpm_load_image, xpm_load) [HAVE_NS && !HAVE_XPM]:
8929 * nsselect.m (symbol_to_nsstring, ns_string_to_pasteboard_internal):
8930 * xfaces.c (Fx_load_color_file) [!HAVE_X_WINDOWS]:
8931 Fix pointer signedness problem.
8932 * xfaces.c (FRAME_X_FONT_TABLE):
8933 * xterm.h (FRAME_X_FONT_TABLE): Remove unused, incompatible macros.
8934
8935 2012-07-07 Glenn Morris <rgm@gnu.org>
8936
8937 * lread.c (load_path_check): New function, split from init_lread.
8938 (init_lread): Reorganize. Motivation:
8939 If EMACSLOADPATH is set, check/warn about that rather than the
8940 defaults, which we are not going to use. Hence we can remove
8941 the turn_off_warning and WINDOWSNT || HAVE_NS tests.
8942 Don't warn if site-lisp directories are missing.
8943 If not installed, start from a blank load-path, since
8944 PATH_LOADSEARCH refers to the eventual installation directories.
8945
8946 2012-07-07 Eli Zaretskii <eliz@gnu.org>
8947
8948 Support truncation and continuation glyphs on GUI frames, when
8949 fringes are disabled. (Bug#11832)
8950 * xdisp.c (init_iterator): Get dimensions of truncation and
8951 continuation glyphs even if on GUI frames.
8952 Adjust it->last_visible_x on GUI frames when the left or right fringes,
8953 or both, are absent.
8954 (start_display, move_it_in_display_line_to): Handle the case of a
8955 GUI frame without a fringe to display continuation or truncation
8956 glyphs.
8957 (insert_left_trunc_glyphs): Support GUI frames: make sure
8958 truncation glyphs overwrite enough glyphs from the current line to
8959 have sufficient space in pixels.
8960 (display_line): Support truncation and continuation glyphs on GUI
8961 frames. If some spare pixels are left on the line after inserting
8962 the truncation glyphs, fill that space with a stretch glyph of a
8963 suitably computed width.
8964
8965 * term.c (produce_special_glyphs): Call PRODUCE_GLYPHS, not
8966 produce_glyphs, to support GUI sessions.
8967
8968 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
8969
8970 * sysdep.c (ULLONG_MAX): Define if not already defined (Bug#11781).
8971
8972 * sysdep.c (list_system_processes): Port to NetBSD-current (Bug#11797).
8973
8974 Do not require float-time's arg to fit in time_t (Bug#11825).
8975 This works better on hosts where time_t is unsigned, and where
8976 float-time is applied to the (negative) difference between two times.
8977 * editfns.c (decode_time_components): Last arg is now double *,
8978 not int *, and means to store all the result as a double, without
8979 worrying about whether the seconds part fits in time_t.
8980 All callers changed.
8981 (lisp_time_argument): Remove last int * arg, as it's no longer needed.
8982 All callers changed.
8983 (Ffloat_time): Do not fail merely because the specified time falls
8984 outside of time_t range.
8985
8986 2012-07-07 Glenn Morris <rgm@gnu.org>
8987
8988 * s/darwin.h (HAVE_RES_INIT, HAVE_LIBRESOLV):
8989 * s/hpux10-20.h (HAVE_RINT, HAVE_RANDOM):
8990 * s/unixware.h (HAVE_GETWD): Move undefs to configure (effectively).
8991
8992 2012-07-07 Juanma Barranquero <lekktu@gmail.com>
8993
8994 * makefile.w32-in (DISPEXTERN_H, $(BLD)/regex.$(O)):
8995 Update dependencies.
8996
8997 * s/ms-w32.h [_MSC_VER]: Remove strcasecmp, strncasecmp.
8998
8999 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
9000
9001 Use c_strcasecmp for ASCII case-insensitive comparison (Bug#11786).
9002 * dispextern.h, nsfns.m, nsterm.m: Include <c-strcase.h>.
9003 * dispextern.h (xstrcasecmp): Rewrite using c_strcasecmp.
9004 * nsfns.m (x_get_string_resource): Use c_strncasecmp, not strncasecmp.
9005 * nsterm.m (ns_default): Use c_strcasecmp, not strcasecmp.
9006 * xfaces.c (xstrcasecmp) [!HAVE_STRCASECMP]: Remove.
9007
9008 * xfont.c (compare_font_names): Redo to omit the need for casts.
9009
9010 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
9011
9012 * xfns.c (Fx_change_window_property): Doc fix.
9013 * w32fns.c (Fx_change_window_property): Doc fix.
9014
9015 * w32fns.c (Fx_window_property): Accept the same arguments as the
9016 X Windows version. Doc fix.
9017 * xfns.c (Fx_window_property): Doc fix. (Bug#11870)
9018
9019 2012-07-06 Juanma Barranquero <lekktu@gmail.com>
9020 Eli Zaretskii <eliz@gnu.org>
9021
9022 * s/ms-w32.h: Settings not specific to Windows moved to nt/config.nt.
9023 Windows-specific code from nt/config.nt moved here.
9024 Obsolete settings removed.
9025
9026 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
9027
9028 * process.c: Avoid unnecessary calls to gettime.
9029 (wait_reading_process_output): Don't get the time of day
9030 when gobbling data immediately and not waiting, as there's no need
9031 for it in that case. This removes a FIXME.
9032
9033 2012-07-06 Jan Djärv <jan.h.d@swipnet.se>
9034
9035 * gtkutil.c (xg_event_is_for_scrollbar): Assign gwin when HAVE_GTK3
9036 is defined (Bug#11768).
9037
9038 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
9039
9040 Fix marker debugging code.
9041 * marker.c (byte_char_debug_check): Do not perform the check
9042 if buffer is not multibyte.
9043 (buf_charpos_to_bytepos, buf_bytepos_to_charpos):
9044 Call byte_char_debug_check with correct arguments.
9045
9046 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
9047
9048 Compile marker debugging code only if ENABLE_CHECKING is defined.
9049 * marker.c (byte_char_debug_check, count_markers):
9050 Use only if ENABLE_CHECKING is defined.
9051 (byte_debug_flag): Remove.
9052 (CONSIDER, buf_charpos_to_bytepos, buf_bytepos_to_charpos):
9053 Always call byte_char_debug_check if ENABLE_CHECKING is defined.
9054
9055 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
9056
9057 Avoid code repetition in marker-related functions.
9058 * marker.c (attach_marker): New function.
9059 (Fset_marker, set_marker_restricted, set_marker_both)
9060 (set_marker_restricted_both): Use it.
9061 (Fset_marker, set_marker_restricted, Fbuffer_has_markers_at):
9062 Consistently rename charno to charpos.
9063 (marker_position): Add eassert.
9064 (marker_byte_position): Convert to eassert.
9065
9066 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
9067
9068 Simplify list operations in unchain_overlay and unchain_marker.
9069 * buffer.c (unchain_overlay): Simplify. Add comment.
9070 * marker.c (unchain_marker): Simplify. Fix comments.
9071
9072 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
9073
9074 Introduce fast path for the widely used marker operation.
9075 * alloc.c (build_marker): New function.
9076 * lisp.h (build_marker): New prototype.
9077 * buffer.c (clone_per_buffer_values, Fmake_indirect_buffer): Use it.
9078 * composite.c (autocmp_chars): Likewise.
9079 * editfns.c (buildmark): Remove.
9080 (Fpoint_marker, Fpoint_min_marker, Fpoint_max_marker)
9081 (save_restriction_save): Use build_marker.
9082 * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos): Likewise.
9083 * window.c (save_window_save): Likewise.
9084
9085 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
9086
9087 Do not use Fdelete_overlay in delete_all_overlays
9088 to avoid redundant calls to unchain_overlay.
9089 * buffer.c (drop_overlay): New function.
9090 (delete_all_overlays, Fdelete_overlay): Use it.
9091 * minibuf.c (get_minibuffer): Fix comment.
9092
9093 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
9094
9095 Port to OpenBSD 5.1 amd64.
9096 * sysdep.c [BSD_SYSTEM]: Include <sys/param.h> before <sys/sysctl.h>.
9097 This is needed for OpenBSD, and should be harmless on all BSD systems.
9098 Also, include <sys/sysctl.h>, as it should be available on all
9099 BSD_SYSTEM hosts given that we're already calling sysctl in that case.
9100 (list_system_processes) [__OpenBSD__]: Use DARWIN_OS style mib, but
9101 use p_pid member, not kp_proc.pid.
9102
9103 2012-07-06 Glenn Morris <rgm@gnu.org>
9104
9105 * Makefile.in (emacs$(EXEEXT)): Don't check for load-path shadows.
9106
9107 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
9108
9109 More xmalloc and related cleanup.
9110 * alloc.c, bidi.c, buffer.c, buffer.h, bytecode.c, callint.c:
9111 * callproc.c, charset.c, coding.c, composite.c, data.c, dispnew.c:
9112 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, fns.c:
9113 * font.c, fontset.c, frame.c, fringe.c, ftfont.c, ftxfont.c, gmalloc.c:
9114 * gtkutil.c, image.c, keyboard.c, keymap.c, lread.c, macros.c, menu.c:
9115 * nsfns.m, nsfont.m, nsmenu.m, nsterm.m, print.c, process.c, ralloc.c:
9116 * regex.c, region-cache.c, scroll.c, search.c, sound.c, syntax.c:
9117 * sysdep.c, term.c, termcap.c, unexmacosx.c, window.c, xdisp.c:
9118 * xfaces.c, xfns.c, xftfont.c, xgselect.c, xmenu.c, xrdb.c, xselect.c:
9119 * xterm.c:
9120 Omit needless casts involving void * pointers and allocation.
9121 Prefer "P = xmalloc (sizeof *P)" to "P = xmalloc (sizeof (TYPE_OF_P))",
9122 as the former is more robust if P's type is changed.
9123 Prefer xzalloc to xmalloc + memset 0.
9124 Simplify malloc-or-realloc to realloc.
9125 Don't worry about xmalloc returning a null pointer.
9126 Prefer xstrdup to xmalloc + strcpy.
9127 * editfns.c (Fmessage_box): Grow message_text by at least 80 when
9128 growing it.
9129 * keyboard.c (apply_modifiers_uncached): Prefer local array to
9130 alloca of a constant.
9131
9132 2012-07-05 Eli Zaretskii <eliz@gnu.org>
9133
9134 * xdisp.c (display_line): Fix horizontal pixel coordinates when
9135 hscroll is larger than the line width. Fixes long and futile
9136 looping inside extend_face_to_end_of_line (on a TTY) producing
9137 glyphs that are not needed and thrown away.
9138
9139 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
9140
9141 * marker.c (set_marker_restricted_both): Simplify by using
9142 clip_to_bounds.
9143
9144 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
9145
9146 * editfns.c (region_limit): Simplify by using clip_to_bounds.
9147
9148 2012-07-05 Jan Djärv <jan.h.d@swipnet.se>
9149
9150 * gtkutil.c (gtk_scrollbar_new, gtk_box_new): Define when HAVE_GTK3 is
9151 not defined (Bug#11768).
9152 (xg_create_frame_widgets): Use gtk_plug_new_for_display (Bug#11768).
9153 (xg_create_frame_widgets, create_dialog, xg_get_file_with_chooser)
9154 (make_widget_for_menu_item, xg_make_tool_item): Use gtk_box_new
9155 followed by gtk_box_set_homogeneous (Bug#11768).
9156 (xg_update_menu_item): Use GTK_IS_BOX (Bug#11768).
9157 (update_theme_scrollbar_width, xg_create_scroll_bar):
9158 Use gtk_scrollbar_new (Bug#11768).
9159 (xg_event_is_for_scrollbar): Use Gdk Device functions for HAVE_GTK3.
9160 (is_box_type): New function (Bug#11768).
9161 (xg_tool_item_stale_p): Call is_box_type.
9162 (xg_initialize): Get settings by calling gtk_settings_get_for_screen
9163 with default display (Bug#11768).
9164
9165 2012-07-05 Eli Zaretskii <eliz@gnu.org>
9166
9167 * xdisp.c (window_hscroll_limited): New function.
9168 (pos_visible_p, init_iterator): Use it to avoid overflow of pixel
9169 coordinates when window's hscroll is set to insanely large
9170 values. (Bug#11857)
9171
9172 2012-07-05 Juanma Barranquero <lekktu@gmail.com>
9173
9174 * makefile.w32-in ($(BLD)/dired.$(O), $(BLD)/fileio.$(O)): Fix typo.
9175 ($(BLD)/terminal.$(O), $(BLD)/syntax.$(O)): Update dependencies.
9176
9177 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
9178
9179 Cleanup xmalloc.
9180 * lisp.h (xzalloc): New prototype. Omit needless casts.
9181 * alloc.c (xzalloc): New function. Omit needless casts.
9182 * charset.c: Omit needless casts. Convert all calls to
9183 xmalloc with following memset to xzalloc.
9184 * dispnew.c: Likewise.
9185 * fringe.c: Likewise.
9186 * image.c: Likewise.
9187 * sound.c: Likewise.
9188 * term.c: Likewise.
9189 * w32fns.c: Likewise.
9190 * w32font.c: Likewise.
9191 * w32term.c: Likewise.
9192 * xfaces.c: Likewise.
9193 * xfns.c: Likewise.
9194 * xterm.c: Likewise.
9195 * atimer.c: Omit needless casts.
9196 * buffer.c: Likewise.
9197 * callproc.c: Likewise.
9198 * ccl.c: Likewise.
9199 * coding.c: Likewise.
9200 * composite.c: Likewise.
9201 * doc.c: Likewise.
9202 * doprnt.c: Likewise.
9203 * editfns.c: Likewise.
9204 * emacs.c: Likewise.
9205 * eval.c: Likewise.
9206 * filelock.c: Likewise.
9207 * fns.c: Likewise.
9208 * gtkutil.c: Likewise.
9209 * keyboard.c: Likewise.
9210 * lisp.h: Likewise.
9211 * lread.c: Likewise.
9212 * minibuf.c: Likewise.
9213 * msdos.c: Likewise.
9214 * print.c: Likewise.
9215 * process.c: Likewise.
9216 * region-cache.c: Likewise.
9217 * search.c: Likewise.
9218 * sysdep.c: Likewise.
9219 * termcap.c: Likewise.
9220 * terminal.c: Likewise.
9221 * tparam.c: Likewise.
9222 * w16select.c: Likewise.
9223 * w32.c: Likewise.
9224 * w32reg.c: Likewise.
9225 * w32select.c: Likewise.
9226 * w32uniscribe.c: Likewise.
9227 * widget.c: Likewise.
9228 * xdisp.c: Likewise.
9229 * xmenu.c: Likewise.
9230 * xrdb.c: Likewise.
9231 * xselect.c: Likewise.
9232
9233 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
9234
9235 * fileio.c (time_error_value): Check the right error number.
9236 Problem reported by Troels Nielsen in
9237 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00095.html>.
9238
9239 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
9240
9241 * window.c (set_window_hscroll): Revert the 100000 hscroll limit.
9242 This should be fixed in a better way; see Eli Zaretskii in
9243 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00088.html>.
9244 (HSCROLL_MAX): Remove; this is now internal to set_window_hscroll.
9245
9246 * fileio.c (time_error_value): Rename from special_mtime.
9247 The old name's problems were noted by Eli Zaretskii in
9248 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00087.html>.
9249
9250 * emacs.c (gdb_pvec_type): Change it back to enum pvec_type.
9251 This variable's comment says Emacs needs at least one GDB-visible
9252 symbol of type enum pvec_type, to work around GDB problems.
9253 The symbol's value doesn't matter.
9254
9255 * alloc.c (PSEUDOVECTOR_NBYTES): Remove stray ';'
9256 that causes compilation to fail on pre-C99 compilers.
9257
9258 2012-07-04 Juanma Barranquero <lekktu@gmail.com>
9259
9260 * s/ms-w32.h (LISP_FLOAT_TYPE, HAVE_MEMCMP, HAVE_MEMCPY)
9261 (HAVE_MEMMOVE, HAVE_MEMSET): Don't set, obsolete.
9262
9263 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
9264
9265 * buffer.c (init_buffer_once): Fix initialization of
9266 headers for buffer_defaults and buffer_local_symbols.
9267 Reported by Juanma Barranquero <lekktu@gmail.com>.
9268
9269 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
9270
9271 Turn VECTOR_FREE_LIST_FLAG into PVEC_FREE.
9272 * lisp.h (enum pvec_type): Use fewer bits.
9273 (PSEUDOVECTOR_SIZE_BITS): New constant.
9274 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK): Use it.
9275 (XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR, DEFUN): Adapt code to
9276 change in pvec_type.
9277 (PSEUDOVECTOR_TYPEP): New macro.
9278 (TYPED_PSEUDOVECTORP): Use it.
9279 * fns.c (internal_equal): Adapt code to extract pvectype.
9280 * emacs.c (gdb_pvec_type): Update type.
9281 * alloc.c (PSEUDOVECTOR_NBYTES): New macro.
9282 (VECTOR_FREE_LIST_SIZE_MASK): Remove (=> PSEUDOVECTOR_SIZE_MASK).
9283 (VECTOR_FREE_LIST_FLAG): Remove (=> PVEC_FREE).
9284 (SETUP_ON_FREE_LIST): Use XSETPVECTYPESIZE.
9285 (sweep_vectors): Use it. Use local var `total_bytes' instead of
9286 abusing vector->header.next.nbytes.
9287 (live_vector_p): Use PVEC_TYPE.
9288 (mark_object): Adapt code to extract pvectype. Use switch.
9289
9290 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
9291
9292 * doprnt.c (doprnt): Don't assume string length fits in 'int'.
9293 Tighten new eassert a bit.
9294
9295 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
9296
9297 Fix compilation with --enable-gcc-warnings and -O1
9298 optimization level.
9299 * doprnt.c (doprnt): Change type of tem to int, initialize
9300 to avoid compiler warning. Add eassert.
9301 * search.c (simple_search): Initialize match_byte to avoid
9302 compiler warning. Add eassert.
9303
9304 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
9305
9306 Avoid weird behavior with large horizontal scrolls.
9307 Without this change, for example, large hscroll values would
9308 mess up Emacs's display on Fedora 15 x86, presumably due to
9309 overflows in int calculations in the display code.
9310 Also, if buffers had long lines, Emacs would freeze.
9311 * window.c (HSCROLL_MAX): Reduce to 100000, and make it visible to GDB.
9312 (set_window_hscroll): New function, containing the old guts of
9313 Fset_window_hscroll. Return the clipped value.
9314 (Fset_window_hscroll, Fscroll_left, Fscroll_right): Use it.
9315 This avoids the need to check against PTRDIFF_MAX.
9316
9317 * buffer.c (Fgenerate_new_buffer_name): Fix sprintf format mismatch.
9318
9319 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
9320
9321 * buffer.c (Fgenerate_new_buffer_name): Fix type mismatch.
9322
9323 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
9324
9325 * regex.c: Suppress GCC warning on RHEL 6. (Bug#11207)
9326 Conditionalize the pragmas on GCC 4.5 or later, not GCC 4.3 or later,
9327 since GCC 4.4.6 issues a bogus warning for them.
9328
9329 Fix bugs in file timestamp newness comparisons.
9330 * fileio.c (Ffile_newer_than_file_p):
9331 * lread.c (Fload): Use full timestamp resolution of files,
9332 not just the 1-second resolution, so that files that are only
9333 slightly newer still count as newer.
9334 * fileio.c (Ffile_newer_than_file_p): Don't assume file
9335 timestamps fit in 'int'; this fixes a Y2038 bug on most hosts.
9336
9337 2012-07-03 Paul Eggert <eggert@cs.ucla.edu>
9338
9339 * fileio.c: Improve handling of file time marker. (Bug#11852)
9340 (special_mtime): New function.
9341 (Finsert_file_contents, Fverify_visited_file_modtime):
9342 Use it to set special mtime values consistently.
9343
9344 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
9345
9346 * fileio.c (Finsert_file_contents): Properly handle st_mtime
9347 marker for non-existing file. (Bug#11852)
9348
9349 2012-07-03 Glenn Morris <rgm@gnu.org>
9350
9351 * lisp.h (Fread_file_name): Restore EXFUN (it's not a normal DEFUN
9352 and did not make it into globals.h).
9353
9354 2012-07-03 Tom Tromey <tromey@redhat.com>
9355
9356 * window.c (Fset_window_margins, Fset_window_fringes)
9357 (Fset_window_scroll_bars, Fset_window_vscroll): No longer static.
9358 * textprop.c (Fprevious_property_change): No longer static.
9359 * syntax.c (Fsyntax_table_p): No longer static.
9360 * process.c (Fget_process, Fprocess_datagram_address): No longer
9361 static.
9362 * keymap.c (Flookup_key, Fcopy_keymap): No longer static.
9363 * keyboard.c (Fcommand_execute): No longer static.
9364 Remove EXFUN.
9365 * insdel.c (Fcombine_after_change_execute): No longer static.
9366 * image.c (Finit_image_library): No longer static.
9367 * fileio.c (Fmake_symbolic_link): No longer static.
9368 * eval.c (Ffetch_bytecode): No longer static.
9369 * editfns.c (Fuser_full_name): No longer static.
9370 * doc.c (Fdocumentation_property, Fsnarf_documentation):
9371 No longer static.
9372 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): No longer
9373 static.
9374 * dired.c (Ffile_attributes): No longer static.
9375 * composite.c (Fcomposition_get_gstring): No longer static.
9376 * callproc.c (Fgetenv_internal): No longer static.
9377
9378 * ccl.h: Remove EXFUNs.
9379 * buffer.h: Remove EXFUNs.
9380 * dispextern.h: Remove EXFUNs.
9381 * intervals.h: Remove EXFUNs.
9382 * fontset.h: Remove EXFUN.
9383 * font.h: Remove EXFUNs.
9384 * dosfns.c (system_process_attributes): Remove EXFUN.
9385 * keymap.h: Remove EXFUNs.
9386 * lisp.h: Remove EXFUNs.
9387 * w32term.h: Remove EXFUNs.
9388 * window.h: Remove EXFUNs.
9389 * xsettings.h: Remove EXFUN.
9390 * xterm.h: Remove EXFUN.
9391
9392 2012-07-03 Glenn Morris <rgm@gnu.org>
9393
9394 * lisp.h (Frandom): Make it visible to C.
9395 * buffer.c (Fgenerate_new_buffer_name): Speed up finding a new
9396 buffer for invisible buffers. (Bug#1229)
9397
9398 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
9399
9400 Fix block vector allocation code to allow VECTOR_BLOCK_SIZE
9401 values which aren't power of 2.
9402 * alloc.c (VECTOR_FREE_LIST_SIZE_MASK): New macro.
9403 Verify its value and the value of VECTOR_BLOCK_SIZE. Adjust users
9404 accordingly.
9405
9406 2012-07-03 Stefan Monnier <monnier@iro.umontreal.ca>
9407
9408 * lisp.h (Lisp_Misc, Lisp_Fwd): Move around to group better.
9409
9410 * alloc.c (mark_object): Revert part of last patch to use `switch'.
9411
9412 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
9413
9414 * alloc.c (allocate_vector_block): Remove redundant
9415 calls to mallopt if DOUG_LEA_MALLOC is defined.
9416 (allocate_vectorlike): If DOUG_LEA_MALLOC is defined,
9417 avoid calls to mallopt if zero_vector is returned.
9418
9419 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
9420
9421 * alloc.c (check_string_bytes): If GC_CHECK_STRING_BYTES
9422 is enabled, avoid dereferencing NULL current_sblock if
9423 running undumped.
9424
9425 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
9426
9427 Cleanup basic buffer management.
9428 * buffer.h (struct buffer): Change layout to use generic vector
9429 marking code. Fix some comments. Change type of 'clip_changed'
9430 to bitfield. Remove unused #ifndef old.
9431 (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER): Remove.
9432 (GET_OVERLAYS_AT): Fix indentation.
9433 (for_each_per_buffer_object_at): New macro.
9434 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
9435 (Fbuffer_local_variables): Use it.
9436 (init_buffer_once, syms_of_buffer): Remove unused #ifndef old.
9437 * alloc.c (allocate_buffer): Adjust to match new layout of
9438 struct buffer. Fix comment.
9439 (mark_overlay): New function.
9440 (mark_buffer): Use it. Use mark_vectorlike to mark normal
9441 Lisp area of struct buffer.
9442 (mark_object): Use it. Adjust marking of misc objects
9443 and related comments.
9444
9445 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
9446
9447 * alloc.c (mark_object): Remove "#ifdef GC_CHECK_MARKED_OBJECTS"
9448 wrapper that is not needed because the wrapped code is a no-op (zero
9449 machine instructions) when GC_CHECK_MARKED_OBJECTS is not defined.
9450 This avoids a -Wunused-macros diagnostic with GCC 4.7.1 x86-64.
9451
9452 2012-07-02 Dmitry Antipov <dmantipov@yandex.ru>
9453
9454 * alloc.c (mark_buffer): Simplify. Remove prototype.
9455 (mark_object): Add comment. Reorganize marking of vector-like
9456 objects. Use CHECK_LIVE for all vector-like objects except buffers
9457 and subroutines when GC_CHECK_MARKED_OBJECTS is defined.
9458 Avoid redundant calls to mark_vectorlike for bool vectors.
9459
9460 2012-06-30 Glenn Morris <rgm@gnu.org>
9461
9462 * nsterm.m (ns_init_paths): Ignore site-lisp if --no-site-lisp.
9463
9464 * epaths.in (PATH_SITELOADSEARCH): New.
9465 * lread.c (init_lread): Use PATH_SITELOADSEARCH.
9466 This is rather than relying on --enable-locallisppath elements
9467 having "site-lisp" in their names. (Bug#10208#25, 11658)
9468
9469 2012-06-30 Eli Zaretskii <eliz@gnu.org>
9470
9471 * w32proc.c (sys_select): Accept and ignore one more argument.
9472
9473 * w32.c (emacs_gnutls_pull): Call select with one more argument.
9474
9475 * sysselect.h [DOS_NT]: Don't include sys/select.h.
9476 (pselect) [!MS_DOS]: Redirect to sys_select.
9477
9478 * sysdep.c: Don't include dos.h and dosfns.h.
9479
9480 * process.c (sys_select):
9481 * msdos.c (sys_select): Accept one more argument and ignore it.
9482
9483 * msdos.c (event_timestamp, sys_select): Use gnulib's gettime;
9484 adapt data types and code to that.
9485
9486 * dosfns.c:
9487 * msdos.c (gettime, settime): Define away the prototypes in dos.h,
9488 which clashes with the gnulib function of the same name.
9489
9490 2012-06-30 Andreas Schwab <schwab@linux-m68k.org>
9491
9492 * font.c (font_style_to_value, font_style_symbolic)
9493 (font_prop_validate_style): Add type checks for values in
9494 font_style_table.
9495
9496 * lisp.h (CHECK_RANGED_INTEGER): Make value to check the first
9497 argument.
9498 * character.c, charset.c, menu.c, process.c, window.c: Adjust all
9499 uses.
9500
9501 2012-06-29 Eli Zaretskii <eliz@gnu.org>
9502
9503 * xdisp.c (try_window_id): Undo last change.
9504
9505 * w32.c (getwd): Adjust commentary about startup_dir.
9506 (init_environment): Always call sys_access, even in non-MSVC
9507 builds. Don't chdir to the directory of the Emacs executable.
9508 This undoes code from 1997 which was justified by the need to
9509 "avoid conflicts when removing and renaming directories". But its
9510 downside was that every relative file name was being interpreted
9511 relative to the directory of the Emacs executable, which can never
9512 be TRT. In particular, it broke sys_access when called with
9513 relative file names.
9514 (sys_access): Map GetLastError to errno.
9515
9516 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
9517
9518 * window.h (struct window): Change type of 'fringes_outside_margins'
9519 to bitfield. Fix comment. Adjust users accordingly.
9520 (struct window): Change type of 'window_end_bytepos' to ptrdiff_t.
9521 Adjust comment.
9522 * xdisp.c (try_window_id): Change type of 'first_vpos' and 'vpos'
9523 to ptrdiff_t.
9524
9525 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
9526
9527 * gnutls.c (emacs_gnutls_handshake):
9528 Add QUIT to make the loop interruptible.
9529
9530 2012-06-29 Glenn Morris <rgm@gnu.org>
9531
9532 * charset.c (init_charset): Make lack of etc/charsets fatal.
9533
9534 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
9535
9536 * editfns.c (region_limit): Fix type mismatch.
9537
9538 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
9539
9540 * nsfns.m: Fix GLYPH_DEBUG usage assuming that it may be
9541 undefined. Convert from xassert to eassert.
9542 * nsmenu.m: Convert from xassert to eassert.
9543 * nsterm.m: Likewise.
9544
9545 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
9546
9547 * editfns.c (region_limit): Clip to narrowing (bug#11770).
9548
9549 2012-06-28 Paul Eggert <eggert@cs.ucla.edu>
9550
9551 Avoid integer overflow on scroll-left and scroll-right.
9552 * window.c (HSCROLL_MAX): New macro.
9553 (Fscroll_left, Fscroll_right): Avoid undefined behavior on integer
9554 overflow when requested scroll falls outside ptrdiff_t range.
9555
9556 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
9557
9558 * window.h (struct window): Change type of 'hscroll',
9559 'min_hscroll' and 'last_point' from Lisp_Object to ptrdiff_t,
9560 'last_modified' and 'last_overlay_modified' to EMACS_INT.
9561 Adjust users accordingly.
9562 * xdisp.c (try_cursor_movement): Replace type check with eassert.
9563 * window.c (Fscroll_left, Fscroll_right): Change type of 'hscroll'
9564 from EMACS_INT to ptrdiff_t.
9565 (make_window): Omit redundant initialization.
9566
9567 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
9568
9569 * makefile.w32-in ($(BLD)/regex.$(O)): Update dependencies.
9570
9571 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
9572
9573 * window.h (struct window): Change type of 'use_time' and
9574 'sequence_number' from Lisp_Object to int.
9575 * frame.c (make_frame): Adjust users accordingly.
9576 * print.c (print_object): Likewise.
9577 * window.c (select_window, Fwindow_use_time, make_parent_window)
9578 (make_window): Likewise.
9579
9580 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
9581
9582 * dispextern.h (GLYPH_DEBUG): Now defined in config.h if
9583 enabled with --enable-checking=[all,glyphs] configure option.
9584 Fix GLYPH_DEBUG usage assuming that it may be undefined,
9585 adjust comments accordingly.
9586 * dispnew.c: Fix GLYPH_DEBUG usage assuming that it may be
9587 undefined, adjust comments accordingly.
9588 * image.c: Likewise.
9589 * scroll.c: Likewise.
9590 * w32fns.c: Likewise.
9591 * w32term.c: Likewise.
9592 * xdisp.c: Likewise.
9593 * xfaces.c: Likewise.
9594 * xfns.c: Likewise.
9595 * xterm.c: Likewise.
9596
9597 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
9598
9599 Generalize run-time debugging checks.
9600 * dispextern.h (XASSERTS): Remove.
9601 * fontset.c (xassert): Remove.
9602 Convert from xassert to eassert.
9603 * alloc.c: Convert from xassert to eassert.
9604 * bidi.c: Likewise.
9605 * dispnew.c: Likewise.
9606 * fns.c: Likewise.
9607 * fringe.c: Likewise.
9608 * ftfont.c: Likewise.
9609 * gtkutil.c: Likewise.
9610 * image.c: Likewise.
9611 * keyboard.c: Likewise.
9612 * menu.c: Likewise.
9613 * process.c: Likewise.
9614 * scroll.c: Likewise.
9615 * sound.c: Likewise.
9616 * term.c: Likewise.
9617 * w32console.c: Likewise.
9618 * w32fns.c: Likewise.
9619 * w32term.c: Likewise.
9620 * window.c: Likewise.
9621 * xdisp.c: Likewise.
9622 * xfaces.c: Likewise.
9623 * xfns.c: Likewise.
9624 * xselect.c: Likewise.
9625 * xterm.c: Likewise.
9626
9627 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
9628
9629 * fns.c (maybe_resize_hash_table): Output message when growing the
9630 purify-hashtable.
9631
9632 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
9633
9634 * alloc.c (allocate_string_data): Remove dead code.
9635 * xsettings.c (XSETTINGS_FONT_NAME): Move under HAVE_XFT to
9636 avoid GCC warning about unused macro.
9637
9638 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
9639
9640 * alloc.c (allocate_string): Omit intervals initialization.
9641 * alloc.c (make_uninit_multibyte_string): Initialize intervals
9642 as in make_pure_string and make_pure_c_string.
9643
9644 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
9645
9646 * alloc.c (allocate_string): Fix last change.
9647
9648 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
9649
9650 * alloc.c (allocate_string): Remove two redundant calls
9651 to memset, add explicit initialization where appropriate.
9652
9653 2012-06-27 Glenn Morris <rgm@gnu.org>
9654
9655 * lisp.mk (lisp): Remove paths.elc.
9656
9657 2012-06-27 Chong Yidong <cyd@gnu.org>
9658
9659 * doc.c (Fsubstitute_command_keys): Fix punctuation.
9660
9661 2012-06-26 John Wiegley <johnw@newartisans.com>
9662
9663 * unexmacosx.c (copy_data_segment): Add two section names used
9664 on Mac OS X Lion: __mod_init_func and __mod_term_func.
9665
9666 * alloc.c (mark_memory): Do not check with -faddress-sanitizer
9667 when building with Clang.
9668
9669 2012-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
9670
9671 * eval.c (Fapply): Allow calling it with a single argument.
9672
9673 2012-06-26 Eli Zaretskii <eliz@gnu.org>
9674
9675 * s/ms-w32.h (strcasecmp, strncasecmp) [_MSC_VER]: Redirect to
9676 _stricmp and _strnicmp.
9677 (HAVE_STRCASECMP, HAVE_STRNCASECMP): Define to 1.
9678
9679 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
9680
9681 * alloc.c (allocate_window): Zero out non-Lisp part of newly
9682 allocated window.
9683 (allocate_process): Likewise for new process.
9684 (allocate_terminal): Change to use offsetof.
9685 (allocate_frame): Likewise.
9686 * frame.c (make_frame): Omit redundant initialization.
9687 * window.c (make_parent_window): Use memset.
9688 (make_window): Omit redundant initialization.
9689 * process.c (make_process): Omit redundant initialization.
9690 * terminal.c (create_terminal): Likewise.
9691
9692 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
9693
9694 * term.c (delete_tty): Remove redundant call to memset.
9695
9696 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
9697
9698 * alloc.c: Remove build_string.
9699 * lisp.h: Define build_string as static inline. This provides
9700 a better opportunity to optimize away calls to strlen when the
9701 function is called with compile-time constant argument.
9702 * image.c (imagemagick_error): Convert to build_string.
9703 * w32proc.c (sys_spawnve): Likewise.
9704 * xterm.c (x_term_init): Likewise.
9705
9706 2012-06-26 Paul Eggert <eggert@cs.ucla.edu>
9707
9708 Use sprintf return value instead of invoking strlen on result.
9709 In the old days this wasn't portable, since some sprintf
9710 implementations returned char *. But they died out years ago and
9711 Emacs already assumes sprintf returns int.
9712 Similarly for float_to_string.
9713 This patch speeds up (number-to-string 1000) by 3% on Fedora 15 x86-64.
9714 * ccl.c (ccl_driver):
9715 * character.c (string_escape_byte8):
9716 * data.c (Fnumber_to_string):
9717 * doprnt.c (doprnt):
9718 * print.c (print_object):
9719 * xdisp.c (message_dolog):
9720 * xfns.c (syms_of_xfns):
9721 Use sprintf or float_to_string result to avoid need to call strlen.
9722 * data.c (Fnumber_to_string):
9723 Use make_unibyte_string, since the string must be ASCII.
9724 * lisp.h, print.c (float_to_string): Now returns int length.
9725 * term.c (produce_glyphless_glyph):
9726 Use sprintf result rather than recomputing it.
9727
9728 Clean out last vestiges of the old HAVE_CONFIG_H stuff.
9729 * Makefile.in (ALL_CFLAGS):
9730 * makefile.w32-in (LOCAL_FLAGS): Remove -DHAVE_CONFIG_H.
9731 * gmalloc.c, regex.c: Include <config.h> unconditionally.
9732
9733 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
9734
9735 * dispextern.h (xstrcasecmp): Define to library function
9736 strcasecmp if available.
9737 * xfaces.c: Do not use xstrcasecmp if strcasecmp is available.
9738
9739 2012-06-25 Andreas Schwab <schwab@linux-m68k.org>
9740
9741 * keyboard.c (menu_bar_items, menu_bar_item, read_key_sequence):
9742 Avoid comma operator.
9743 * menu.c (push_submenu_start, push_submenu_end)
9744 (push_left_right_boundary, push_menu_pane): Likewise.
9745 * msdos.c (dos_rawgetc): Likewise.
9746
9747 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
9748
9749 * xfns.c (xic_create_fontsetname): Remove redundant calls
9750 to memset.
9751
9752 2012-06-25 Paul Eggert <eggert@cs.ucla.edu>
9753
9754 * gtkutil.c (get_utf8_string): Remove redundant assignment.
9755 sprintf already null-terminates its output.
9756
9757 * xfns.c (x_window): Remove redundant cast.
9758
9759 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
9760
9761 * xmenu.c (xmenu_show, xdialog_show): Explicit cast from
9762 `const char *' to `char *' to avoid compiler warning.
9763
9764 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
9765
9766 * xterm.c (x_term_init): Build proper-sized _XSETTINGS_Snnn string
9767 instead of truncating it to 63 (admittedly a generous limit).
9768
9769 * process.c: Fix spelling and caps in comments.
9770
9771 2012-06-24 Dan Nicolaescu <dann@ics.uci.edu>
9772
9773 * emacs.c (setpgrp): Remove definition, unused.
9774 * sysdep.c (setpgrp): Remove definition, not used in this file.
9775
9776 2012-06-24 Juanma Barranquero <lekktu@gmail.com>
9777
9778 * makefile.w32-in: Update dependencies.
9779
9780 2012-06-24 Eli Zaretskii <eliz@gnu.org>
9781
9782 * makefile.w32-in (TIMESPEC_H): Remove nt/inc/sys/time.h.
9783 (SYSTIME_H): Add nt/inc/sys/time.h.
9784
9785 * systime.h [WINDOWSNT]: Include sys/time.h.
9786
9787 * s/ms-w32.h (struct timespec): Definition moved from
9788 nt/inc/sys/time.h. Suggested by Paul Eggert <eggert@cs.ucla.edu>.
9789
9790 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
9791
9792 Switch from NO_RETURN to C11's _Noreturn (Bug#11750).
9793 * buffer.h (buffer_slot_type_mismatch):
9794 * data.c (arith_error) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
9795 * eval.c (unwind_to_catch):
9796 * image.c (my_png_error, my_error_exit):
9797 * keyboard.c (quit_throw_to_read_char, user_error)
9798 (Fexit_recursive_edit, Fabort_recursive_edit):
9799 * lisp.h (die, args_out_of_range, args_out_of_range_3)
9800 (wrong_type_argument, buffer_overflow, __executable_start)
9801 (memory_full, buffer_memory_full, string_overflow, Fthrow)
9802 (xsignal, xsignal0, xsignal1, xsignal2, xsignal3, signal_error)
9803 (error, verror, nsberror, report_file_error, Ftop_level, Fkill_emacs)
9804 (fatal):
9805 (child_setup) [!DOS_NT]:
9806 * lread.c (end_of_file_error, invalid_syntax):
9807 * process.c (send_process_trap) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
9808 * puresize.h (pure_write_error):
9809 * search.c (matcher_overflow):
9810 * sound.c (sound_perror, alsa_sound_perror):
9811 * sysdep.c, syssignal.h (croak):
9812 * term.c (maybe_fatal, vfatal):
9813 * textprop.c (text_read_only):
9814 * undo.c (user_error):
9815 * unexmacosx.c (unexec_error):
9816 * xterm.c (x_ins_del_lines, x_delete_glyphs):
9817 Use _Noreturn rather than NO_RETURN.
9818 No need for separate decl merely because of _Noreturn.
9819 * sound.c (sound_warning, parse_sound):
9820 Remove unnecessary forward decls.
9821
9822 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
9823
9824 Fix bug when time_t is unsigned and as wide as intmax_t (Bug#9000).
9825 * lisp.h (WAIT_READING_MAX): New macro.
9826 * dispnew.c (Fsleep_for, sit_for):
9827 * keyboard.c (kbd_buffer_get_event):
9828 * process.c (Faccept_process_output):
9829 Use it to avoid bogus compiler warnings with obsolescent GCC versions.
9830 This improves on the previous patch, which introduced a bug
9831 when time_t is unsigned and as wide as intmax_t.
9832 See <http://bugs.gnu.org/9000#51>.
9833
9834 2012-06-23 Eli Zaretskii <eliz@gnu.org>
9835
9836 * dispnew.c (sit_for, Fsleep_for):
9837 * keyboard.c (kbd_buffer_get_event):
9838 * process.c (Faccept_process_output): Avoid compiler warnings when
9839 comparing a 32-bit time_t with a 64-bit INTMAX_MAX.
9840
9841 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
9842
9843 * makefile.w32-in: Update dependencies.
9844
9845 * w32.c (ltime): Add return type and declare static.
9846 (w32_get_internal_run_time): Remove usused variable `time_100ns'.
9847
9848 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
9849
9850 * sysdep.c [__FreeBSD__]: Fix more recently-introduced typos.
9851 Privately reported by Herbert J. Skuhra.
9852 (make_lisp_timeval) [__FreeBSD__]: Rename from TIMELIST.
9853 All uses changed.
9854 (system_process_attributes) [__FreeBSD__]: Invoke make_lisp_time,
9855 not make_lisp_timeval, when the argument is of type EMACS_TIME.
9856
9857 2012-06-23 Eli Zaretskii <eliz@gnu.org>
9858
9859 * w32proc.c (Fw32_get_locale_info): Fix an off-by-one error in
9860 last argument of make_unibyte_string.
9861
9862 * keyboard.c (kbd_buffer_get_event): Include the codepage and the
9863 language ID in the event parameters.
9864
9865 * w32term.c (w32_read_socket): Put the new keyboard codepage into
9866 event.code, not the obscure "character set ID".
9867
9868 2012-06-23 Chong Yidong <cyd@gnu.org>
9869
9870 * xmenu.c (x_menu_wait_for_event): Adapt GTK3 to new xg_select.
9871
9872 2012-06-23 Eli Zaretskii <eliz@gnu.org>
9873
9874 Fix the MS-Windows build broken by 2012-06-22T21:17:42Z!eggert@cs.ucla.edu.
9875 * w32.c (fdutimens): New function.
9876
9877 * w32proc.c (sys_select): Adapt to change in the EMACS_TIME type.
9878
9879 * s/ms-w32.h (pselect): Redirect to sys_select.
9880
9881 * sysselect.h [WINDOWSNT]: Don't include sys/select.h.
9882
9883 * ralloc.c (r_alloc_inhibit_buffer_relocation): Fix stupid thinko
9884 in the logic of incrementing and decrementing the value of
9885 use_relocatable_buffers.
9886
9887 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
9888
9889 * sysdep.c [__FreeBSD__]: Fix recently-introduced typos.
9890 Privately reported by Herbert J. Skuhra.
9891 [__FreeBSD__]: Remove "*/" typo after "#include".
9892 (timeval_to_EMACS_TIME) [__FreeBSD__]: New static function.
9893 (TIMEVAL) [__FreeBSD__]: Now a static function rather than a macro.
9894 (TIMEVAL, system_process_attributes) [__FreeBSD__]:
9895 Don't assume EMACS_TIME and struct timeval are the same type.
9896
9897 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
9898
9899 Support higher-resolution time stamps (Bug#9000).
9900 The time stamps are only nanosecond-resolution at the C level,
9901 since that's the best that any real-world system supports now.
9902 But they are picosecond-resolution at the Lisp level, as that's
9903 easy, and leaves room for future OS improvements.
9904
9905 * Makefile.in (LIB_CLOCK_GETTIME): New macro.
9906 (LIBES): Use it.
9907
9908 * alloc.c (Fgarbage_collect): Port to higher-res time stamps.
9909 Don't get current time unless it's needed.
9910
9911 * atimer.c: Include <sys/time.h> unconditionally, since gnulib
9912 now provides it if it's absent.
9913 (start_atimer): Port to higher-res time stamps.
9914 Check for time stamp overflow. Don't get current time more
9915 often than is needed.
9916
9917 * buffer.h (struct buffer): Buffer modtime now has high resolution.
9918 Include systime.h, not time.h.
9919 (NONEXISTENT_MODTIME_NSECS, UNKNOWN_MODTIME_NSECS): New macros.
9920
9921 * dired.c: Include stat-time.h.
9922 (Ffile-attributes): File times now have higher resolution.
9923
9924 * dispextern.h [HAVE_WINDOW_SYSTEM]: Include systime.h.
9925 (struct image): Timestamp now has higher resolution.
9926
9927 * dispnew.c (PERIODIC_PREEMPTION_CHECKING): Remove, as Emacs always
9928 has at least microseconds now. All uses removed.
9929 (update_frame, update_single_window, update_window, update_frame_1)
9930 (Fsleep_for, sit_for): Port to higher-resolution time stamps.
9931 (duration_to_sec_usec): Remove; no longer needed.
9932
9933 * editfns.c (time_overflow): Now extern.
9934 (Fcurrent_time, Fget_internal_run_time, make_time, lisp_time_argument)
9935 (float-time, Fformat_time_string, Fcurrent_time_string)
9936 (Fcurrent_time_zone): Accept and generate higher-resolution
9937 time stamps.
9938 (make_time_tail, make_lisp_time, dissassemble_lisp_time)
9939 (decode_time_components, lisp_seconds_argument): New functions.
9940 (make_time): Now static.
9941 (lisp_time_argument): Now returns EMACS_TIME. New arg ppsec.
9942 Report an error if the time is invalid, rather than having the caller
9943 do that.
9944
9945 * fileio.c: Include <stat-time.h>
9946 (Fcopy_file): Copy higher-resolution time stamps.
9947 Prefer to set the time stamp via a file descriptor if that works.
9948 (Fset_file_times, Finsert_file_contents, Fwrite_region)
9949 (Fverify_visited_file_modtime, Fclear_visited_file_modtime)
9950 (Fvisited_file_modtime, Fset_visited_file_modtime):
9951 Support higher-resolution time stamps.
9952
9953 * fns.c (Frandom): Use nanoseconds, not microseconds, for seed.
9954
9955 * gtkutil.c (xg_maybe_add_timer): Port to higher-res time stamps.
9956
9957 * image.c (prepare_image_for_display, clear_image_cache)
9958 (lookup_image): Port to higer-resolution time stamps.
9959
9960 * keyboard.c (start_polling, bind_polling_period):
9961 Check for time stamp overflow.
9962 (read_char, kbd_buffer_get_event, timer_start_idle)
9963 (timer_stop_idle, timer_resume_idle, timer_check_2, timer_check)
9964 (Fcurrent_idle_time, init_keyboard, set_waiting_for_input):
9965 Port to higher-resolution time stamps. Do not assume time_t is signed.
9966 (decode_timer): New function. Timers are now vectors of length 9,
9967 not 8, to accommodate the picosecond component.
9968 (timer_check_2): Use it.
9969
9970 * nsterm.m (select_timeout, timeval_subtract): Remove.
9971 (ns_timeout): Use Emacs's facilities for time stamp arithmetic,
9972 as they're a bit more accurate and handle overflow better.
9973 (ns_select): Change prototype to be compatible with pselect.
9974 (ns_select, ns_term_shutdown): Port to ns-resolution time stamps.
9975 * nsterm.h (ns_select): Adjust prototype.
9976
9977 * msdos.c (EMACS_TIME_ZERO_OR_NEG_P): Remove, as it assumes
9978 us-resolution time stamps.
9979 (sys_select): Use the new EMACS_TIME_SIGN macro instead.
9980
9981 * lread.c (read_filtered_event): Port to ns-resolution time stamps.
9982
9983 * lisp.h (time_overflow): New decl.
9984 (wait_reading_process_output): First arg is now intmax_t, not int,
9985 to accommodate larger waits.
9986
9987 * process.h (struct Lisp_Process.read_output_delay):
9988 Now counts nanoseconds, not microseconds.
9989 * process.c (ADAPTIVE_READ_BUFFERING): Don't worry about
9990 EMACS_HAS_USECS.
9991 (READ_OUTPUT_DELAY_INCREMENT, Faccept_process_output)
9992 (wait_reading_process_output):
9993 Port to ns-resolution time stamps.
9994 (Faccept_process_output, wait_reading_process_output):
9995 Check for time stamp overflow. Do not assume time_t is signed.
9996 (select_wrapper): Remove; we now use pselect.
9997 (Fprocess_attributes): Now generates ns-resolution time stamps.
9998
9999 * sysdep.c: Include utimens.h. Don't include utime.h
10000 or worry about struct utimbuf; gnulib does that for us now.
10001 (gettimeofday): Remove; gnulib provides a substitute.
10002 (make_timeval): New function.
10003 (set_file_times): Now sets ns-resolution time stamps.
10004 New arg FD; all uses changed.
10005 (time_from_jiffies, ltime_from_jiffies, get_up_time)
10006 (system_process_attributes):
10007 Now returns ns-resolution time stamp. All uses changed.
10008 Check for time stamp overflow.
10009
10010 * sysselect.h: Don't depend on HAVE_SYS_SELECT_H; gnulib
10011 provides a substitute now.
10012
10013 * systime.h: Include timespec.h rather than sys/time.h and time.h,
10014 since it guarantees struct timespec.
10015 (EMACS_TIME): Now struct timespec, so that we can support
10016 ns-resolution time stamps.
10017 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): New macros.
10018 (EMACS_HAS_USECS): Remove; Emacs always has sub-second time stamps now.
10019 (EMACS_USECS): Remove.
10020 (EMACS_SET_USECS): The underlying time stamp now has ns resolution,
10021 so multiply the arg by 1000 before storing it.
10022 (EMACS_NSECS, EMACS_SECS_ADDR, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS):
10023 New macros.
10024 (EMACS_GET_TIME, EMACS_ADD_TIME, EMACS_SUB_TIME):
10025 Port to ns-resolution time stamps.
10026 (EMACS_TIME_NEG_P): Remove; replaced by....
10027 (EMACS_TIME_SIGN): New macro.
10028 (EMACS_SET_INVALID_TIME, EMACS_TIME_VALID_P)
10029 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE): New macros.
10030 (set_file_times, make_time, lisp_time_argument): Adjust signature.
10031 (make_timeval, make_lisp_time, decode_time_components): New decls.
10032 (EMACS_TIME_CMP): Remove; no longer used. Plus, it was buggy, in
10033 that it mishandled time_t overflow. You can't compare by subtracting!
10034 (EMACS_TIME_EQ, EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE)
10035 (EMACS_TIME_LT, EMACS_TIME_LE): Rewrite in terms of timespec_cmp.
10036
10037 * term.c: Include <sys/time.h>.
10038 (timeval_to_Time): New function, for proper overflow wraparound.
10039 (term_mouse_position, term_mouse_click): Use it.
10040
10041 * undo.c (record_first_change): Support higher-resolution time stamps
10042 in the undo buffer.
10043 (Fprimitive_undo): Use them when restoring time stamps.
10044
10045 * w32.c (ltime, U64_TO_LISP_TIME, process_times, emacs_gnutls_pull)
10046 (w32_get_internal_run_time):
10047 Port to higher-resolution Emacs time stamps.
10048 (ltime): Now accepts single 64-bit integer, as that's more convenient
10049 for callers.
10050
10051 * xdisp.c (start_hourglass): Port to ns-resolution time stamps.
10052
10053 * xgselect.c, xgselect.h (xg_select): Add sigmask argument,
10054 for compatibility with pselect. Support ns-resolution time stamps.
10055
10056 * xmenu.c (x_menu_wait_for_event): Support ns-resolution time stamps.
10057
10058 * xselect.c (wait_for_property_change, x_get_foreign_selection):
10059 Check for time stamp overflow, and support ns-resolution time stamps.
10060
10061 * xterm.c: Don't include sys/time.h; gnulib does that for us now.
10062 Don't worry about whether HAVE_TIMEVAL and HAVE_SELECT are set.
10063 (timeval_subtract): Remove; no longer needed.
10064 (XTflash, XTring_bell, x_wait_for_event):
10065 Port to ns-resolution time stamps. Don't assume time_t is signed.
10066
10067 2012-06-22 Chong Yidong <cyd@gnu.org>
10068
10069 * xdisp.c (x_consider_frame_title): Revert last change.
10070
10071 2012-06-22 Eli Zaretskii <eliz@gnu.org>
10072
10073 * alloc.c (NSTATICS): Enlarge to 0x650. Otherwise, Emacs compiled
10074 with -DENABLE_CHECKING -DXASSERTS -DGLYPH_DEBUG=1 -DBYTE_CODE_METER
10075 aborts in staticpro during startup. (Without -DBYTE_CODE_METER,
10076 staticidx goes up to 1597 out of 1600 = 0x640.)
10077
10078 2012-06-20 Paul Eggert <eggert@cs.ucla.edu>
10079
10080 * fileio.c (Fdefault_file_modes): Block input while fiddling with umask.
10081 Otherwise, the umask might be mistakenly 0 while handling input signals.
10082
10083 2012-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
10084
10085 * minibuf.c (Fread_string): Bind minibuffer-completion-table.
10086
10087 2012-06-19 Dmitry Antipov <dmantipov@yandex.ru>
10088
10089 * alloc.c, bytecode.c, ccl.c, coding.c, composite.c, data.c, dosfns.c:
10090 * font.c, image.c, keyboard.c, lread.c, menu.c, minibuf.c, msdos.c:
10091 * print.c, syntax.c, window.c, xmenu.c, xselect.c: Replace direct
10092 access to `contents' member of Lisp_Vector objects with AREF and ASET
10093 where appropriate.
10094
10095 2012-06-19 Chong Yidong <cyd@gnu.org>
10096
10097 * frame.c (delete_frame): When selecting a frame on a different
10098 text terminal, do not alter the terminal's top-frame.
10099
10100 * xdisp.c (format_mode_line_unwind_data): Record the target
10101 frame's selected window and its terminal's top-frame.
10102 (unwind_format_mode_line): Restore them.
10103 (x_consider_frame_title, display_mode_line, Fformat_mode_line):
10104 Callers changed.
10105 (x_consider_frame_title): Do not condition on HAVE_WINDOW_SYSTEM,
10106 since tty frames can be explicitly named.
10107 (prepare_menu_bars): Likewise.
10108
10109 * term.c (Ftty_top_frame): New function.
10110
10111 2012-06-18 Paul Eggert <eggert@cs.ucla.edu>
10112
10113 Port byte-code-meter to modern targets.
10114 * bytecode.c (METER_CODE) [BYTE_CODE_METER]: Don't assume
10115 !CHECK_LISP_OBJECT_TYPE && !USE_LSB_TAG. Problem with
10116 CHECK_LISP_OBJECT_TYPE reported by Dmitry Antipov in
10117 <http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00282.html>.
10118 (METER_1, METER_2): Simplify.
10119
10120 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
10121
10122 * data.c (Fdefalias): Return `symbol' (bug#11686).
10123
10124 2012-06-18 Martin Rudalics <rudalics@gmx.at>
10125
10126 * buffer.c (Fkill_buffer): Don't throw an error when the buffer
10127 gets killed during executing of this function (Bug#11665).
10128 Try to always return Qt when the buffer has been actually killed.
10129 (Vkill_buffer_query_functions): In doc-string say that functions
10130 run by this hook should not change the current buffer.
10131
10132 2012-06-18 Paul Eggert <eggert@cs.ucla.edu>
10133
10134 Fix recently-introduced process.c problems found by static checking.
10135 * process.c (write_queue_push, write_queue_pop, send_process):
10136 Use ptrdiff_t, not int or EMACS_INT, for buffer lengths and offsets.
10137 (write_queue_pop): Fix pointer signedness problem.
10138 (send_process): Remove unused local.
10139
10140 2012-06-17 Chong Yidong <cyd@gnu.org>
10141
10142 * xdisp.c (redisplay_internal): No need to redisplay terminal
10143 frames that are not on top.
10144
10145 2012-06-17 Troels Nielsen <bn.troels@gmail.com>
10146
10147 * process.c (make_process): Initialize write_queue.
10148 (write_queue_push, write_queue_pop): New functions.
10149 (send_process): Use them to maintain correct ordering of process
10150 writes (Bug#10815).
10151
10152 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
10153
10154 * lisp.h (eassert): Assume C89 or later.
10155 This removes the need for CHECK.
10156 (CHECK): Remove. Its comments about always evaluating its
10157 argument were confusing, as 'eassert' typically does not evaluate
10158 its argument.
10159
10160 * coding.c (produce_chars): Use ptrdiff_t, not int.
10161
10162 * xterm.c (x_draw_underwave): Check for integer overflow.
10163 This pacifies gcc 4.7.0 -Wunsafe-loop-optimizations on x86-64.
10164
10165 2012-06-17 Jan Djärv <jan.h.d@swipnet.se>
10166
10167 * nsterm.m (x_free_frame_resources): Move xfree so freed memory isn't
10168 referenced (Bug#11583).
10169
10170 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
10171
10172 Implement wave-style variant of underlining.
10173 * dispextern.h (face_underline_type): New enum.
10174 (face): Add field for underline type.
10175 * nsterm.m (ns_draw_underwave): New function.
10176 (ns_draw_text_decoration): Use it.
10177 * w32term.c (w32_restore_glyph_string_clip, w32_draw_underwave):
10178 New functions.
10179 (x_draw_glyph_string): Use them.
10180 * xfaces.c (Qline, Qwave): New Lisp objects.
10181 (check_lface_attrs, merge_face_ref)
10182 (Finternal_set_lisp_face_attribute, realize_x_face):
10183 Handle wave-style underline face attributes.
10184 * xterm.c (x_draw_underwave): New function.
10185 (x_draw_glyph_string): Use it.
10186
10187 2012-06-16 Juanma Barranquero <lekktu@gmail.com>
10188
10189 * makefile.w32-in ($(BLD)/emacs.$(O), $(BLD)/fringe.$(O))
10190 ($(BLD)/xml.$(O), $(BLD)/intervals.$(O), $(BLD)/macros.$(O))
10191 ($(BLD)/minibuf.$(O), $(BLD)/regex.$(O), $(BLD)/region-cache.$(O))
10192 ($(BLD)/textprop.$(O), $(BLD)/undo.$(O), $(BLD)/window.$(O))
10193 ($(BLD)/w32select.$(O)): Update dependencies.
10194
10195 2012-06-16 Andreas Schwab <schwab@linux-m68k.org>
10196
10197 * buffer.h (FETCH_MULTIBYTE_CHAR): Define as inline.
10198 (BUF_FETCH_MULTIBYTE_CHAR): Likewise.
10199 * character.c (_fetch_multibyte_char_p): Remove.
10200 * alloc.c: Include "character.h" before "buffer.h".
10201 * bidi.c: Likewise.
10202 * buffer.c: Likewise.
10203 * bytecode.c: Likewise.
10204 * callint.c: Likewise.
10205 * callproc.c: Likewise.
10206 * casefiddle.c: Likewise.
10207 * casetab.c: Likewise.
10208 * category.c: Likewise.
10209 * cmds.c: Likewise.
10210 * coding.c: Likewise.
10211 * composite.c: Likewise.
10212 * dired.c: Likewise.
10213 * dispnew.c: Likewise.
10214 * doc.c: Likewise.
10215 * dosfns.c: Likewise.
10216 * editfns.c: Likewise.
10217 * emacs.c: Likewise.
10218 * fileio.c: Likewise.
10219 * filelock.c: Likewise.
10220 * font.c: Likewise.
10221 * fontset.c: Likewise.
10222 * fringe.c: Likewise.
10223 * indent.c: Likewise.
10224 * insdel.c: Likewise.
10225 * intervals.c: Likewise.
10226 * keyboard.c: Likewise.
10227 * keymap.c: Likewise.
10228 * lread.c: Likewise.
10229 * macros.c: Likewise.
10230 * marker.c: Likewise.
10231 * minibuf.c: Likewise.
10232 * nsfns.m: Likewise.
10233 * nsmenu.m: Likewise.
10234 * print.c: Likewise.
10235 * process.c: Likewise.
10236 * regex.c: Likewise.
10237 * region-cache.c: Likewise.
10238 * search.c: Likewise.
10239 * syntax.c: Likewise.
10240 * term.c: Likewise.
10241 * textprop.c: Likewise.
10242 * undo.c: Likewise.
10243 * unexsol.c: Likewise.
10244 * w16select.c: Likewise.
10245 * w32fns.c: Likewise.
10246 * w32menu.c: Likewise.
10247 * window.c: Likewise.
10248 * xdisp.c: Likewise.
10249 * xfns.c: Likewise.
10250 * xmenu.c: Likewise.
10251 * xml.c: Likewise.
10252 * xselect.c: Likewise.
10253
10254 2012-06-16 Eli Zaretskii <eliz@gnu.org>
10255
10256 * xdisp.c (set_cursor_from_row): Don't dereference glyphs_end.
10257 If all the glyphs of the glyph row came from strings, and we have no
10258 cursor positioning clues, put the cursor on the first glyph of the
10259 row.
10260 (handle_face_prop): Use chunk-relative overlay string index when
10261 indexing into it->string_overlays array. (Bug#11653)
10262 (set_cursor_from_row): Use the leftmost glyph as GLYPH_BEFORE, not
10263 the rightmost. (Bug#11720)
10264
10265 2012-06-16 Andreas Schwab <schwab@linux-m68k.org>
10266
10267 * category.h (CHAR_HAS_CATEGORY): Define as inline.
10268 (CATEGORY_MEMBER): Enforce 1/0 value.
10269 * category.c (_temp_category_set): Remove.
10270
10271 2012-06-16 Eli Zaretskii <eliz@gnu.org>
10272
10273 * window.c (Fdelete_other_windows_internal)
10274 (Fdelete_window_internal): Don't access frame's mouse highlight
10275 info of the initial frame. (Bug#11677)
10276
10277 2012-06-14 Paul Eggert <eggert@cs.ucla.edu>
10278
10279 * .gdbinit (xgetint): Fix recently-introduced paren typo.
10280 Assume USE_2_TAGS_FOR_INTS.
10281 (xreload): Adjust $tagmask width to match recent lisp.h change.
10282
10283 Simplify lisp.h in minor ways that should not affect code.
10284 * lisp.h (USE_2_TAGS_FOR_INTS): Remove, as it was always defined.
10285 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P)
10286 (LISP_INT1_TAG, enum Lisp_Type, XINT, XUINT, make_number):
10287 Simplify under the assumption that USE_2_TAGS_FOR_INTS is defined.
10288 (INTTYPEBITS): New macro, for clarity.
10289 (INTMASK, MOST_POSITIVE_FIXNUM): Use it.
10290 (LISP_INT1_TAG, LISP_STRING_TAG, LISP_INT_TAG_P):
10291 Simplify now that USE_LSB_TAG is always defined.
10292 (TYPEMASK, XINT) [USE_LSB_TAG]: Remove unnecessary cast.
10293 (make_number) [!USE_LSB_TAG]: Use INTMASK; that's simpler.
10294
10295 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
10296
10297 * makefile.w32-in ($(BLD)/data.$(O)): Update dependencies.
10298
10299 2012-06-13 Glenn Morris <rgm@gnu.org>
10300
10301 * s/bsd-common.h (BSD4_3):
10302 * s/usg5-4-common.h (USG5_4): No longer define; unused.
10303
10304 2012-06-13 Andreas Schwab <schwab@linux-m68k.org>
10305
10306 * lisp.h (Lisp_Object) [CHECK_LISP_OBJECT_TYPE]: Define as struct
10307 instead of union.
10308 (XLI, XIL): Define.
10309 (XHASH, XTYPE, XINT, XUINT, make_number, XSET, XPNTR, XUNTAG):
10310 Use them.
10311 * emacs.c (gdb_use_struct): Rename from gdb_use_union.
10312 * .gdbinit: Check gdb_use_struct instead of gdb_use_union.
10313 * alloc.c (widen_to_Lisp_Object): Remove.
10314 (mark_memory): Use XIL instead of widen_to_Lisp_Object.
10315 * frame.c (delete_frame): Remove outdated comment.
10316 * w32fns.c (Fw32_register_hot_key): Use XLI instead of checking
10317 USE_LISP_UNION_TYPE.
10318 (Fw32_unregister_hot_key): Likewise.
10319 (Fw32_toggle_lock_key): Likewise.
10320 * w32menu.c (add_menu_item): Likewise.
10321 (w32_menu_display_help): Use XIL instead of checking
10322 USE_LISP_UNION_TYPE.
10323 * w32heap.c (allocate_heap): Don't check USE_LISP_UNION_TYPE.
10324 (init_heap): Likewise.
10325 * w32term.c (w32_read_socket): Update comment.
10326
10327 2012-06-13 Glenn Morris <rgm@gnu.org>
10328
10329 * s/usg5-4-common.h, src/s/unixware.h:
10330 Remove define/undef of HAVE_SYSV_SIGPAUSE (not used since 2010-05-04).
10331
10332 * s/gnu.h (POSIX_SIGNALS): Remove (not used since 2010-05-04).
10333
10334 2012-06-13 Paul Eggert <eggert@cs.ucla.edu>
10335
10336 USE_LISP_UNION_TYPE + USE_LSB_TAG cleanup (Bug#11604)
10337 * alloc.c (make_number) [!defined make_number]:
10338 Remove, as lisp.h always defines this now.
10339 (mark_maybe_pointer): Simplify since USE_LSB_TAG is always defined now.
10340 (roundup_size): Verify that it is a power of 2.
10341 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
10342 * ftfont.c (ftfont_driver): Use LISP_INITIALLY_ZERO.
10343 * lisp.h (USE_LSB_TAG): Allow the builder to compile with
10344 -DUSE_LSB_TAG=0, to override the automatically-selected default.
10345 USE_LSB_TAG now is always defined to be either 0 or 1.
10346 All uses changed.
10347 (union Lisp_Object): Don't worry about WORDS_BIGENDIAN; the
10348 code works fine either way, and efficiency is not a concern here,
10349 as the union type is for debugging, not for production.
10350 (LISP_MAKE_RVALUE, make_number) [USE_LISP_UNION_TYPE]:
10351 Use an inline function on all platforms when using the union type,
10352 since this is simpler and 'static inline' can be used portably
10353 within Emacs now.
10354 (LISP_INITIALLY_ZERO): New macro.
10355 (XFASTINT, XSETFASTINT) [USE_LISP_UNION_TYPE]: Remove.
10356 (XSET) [USE_LISP_UNION_TYPE]: Don't overparenthesize.
10357
10358 2012-06-12 Glenn Morris <rgm@gnu.org>
10359
10360 * s/gnu-kfreebsd.h, s/hpux11.h, s/openbsd.h, s/sol2-10.h: Remove files.
10361
10362 * s/gnu-linux.h (HAVE_PROCFS): Move to configure.
10363
10364 * s/hpux10-20.h, s/openbsd.h, s/usg5-4-common.h:
10365 Move BROKEN_SIGIO to configure.
10366
10367 * s/bsd-common.h, s/darwin.h, s/gnu-kfreebsd.h, s/hpux10-20.h:
10368 Move NO_TERMIO to configure.
10369
10370 2012-06-12 Chong Yidong <cyd@gnu.org>
10371
10372 * image.c (imagemagick_load_image): Use MagickFlattenImage if
10373 MagickMergeImageLayers is undefined. Use pixel pusher loop if
10374 MagickExportImagePixels is undefined.
10375
10376 2012-06-12 Paul Eggert <eggert@cs.ucla.edu>
10377
10378 * image.c (imagemagick_load_image): Remove unused label.
10379
10380 2012-06-11 Glenn Morris <rgm@gnu.org>
10381
10382 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
10383 * s/gnu-kfreebsd.h, s/gnu-linux.h, s/gnu.h, s/hpux10-20.h:
10384 * s/irix6-5.h, s/ms-w32.h, s/msdos.h, s/template.h:
10385 * s/usg5-4-common.h: Move SYSTEM_TYPE to configure.
10386
10387 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
10388
10389 * alloc.c (make_byte_code): New function.
10390 (Fmake_byte_code): Use it. Don't purify here.
10391 * lread.c (read1): Use it as well to avoid extra allocation.
10392
10393 2012-06-11 Chong Yidong <cyd@gnu.org>
10394
10395 * image.c (imagemagick_load_image): Implement transparency.
10396
10397 2012-06-10 Andreas Schwab <schwab@linux-m68k.org>
10398
10399 * regex.c (at_begline_loc_p): Also recognize `(?N:' and correctly
10400 account for preceding backslashes. (Bug#11663)
10401
10402 2012-06-09 Chong Yidong <cyd@gnu.org>
10403
10404 * term.c: Support italics in capable terminals (Bug#9652).
10405 (no_color_bit): Replace unused NC_BLINK with NC_ITALIC.
10406 (turn_on_face): Output using TS_enter_italic_mode if available.
10407 Don't handle unused blinking and alt-charset cases.
10408 (turn_off_face): Handle italic case; discard unused tty_blinking_p
10409 and tty_alt_charset_p cases.
10410 (tty_capable_p, init_tty): Support italics.
10411
10412 * termchar.h (struct tty_display_info): Add field for italics.
10413 Remove unused blink field.
10414
10415 * xfaces.c (tty_supports_face_attributes_p, realize_tty_face):
10416 Handle slant.
10417
10418 * dispextern.h: Replace unused TTY_CAP_BLINK with TTY_CAP_ITALIC.
10419 (struct face): Remove unused fields tty_dim_p, tty_blinking_p, and
10420 tty_alt_charset_p. Add tty_italic_p.
10421
10422 2012-06-09 Michael Albinus <michael.albinus@gmx.de>
10423
10424 * dbusbind.c (XD_BASIC_DBUS_TYPE): Use dbus_type_is_valid and
10425 dbus_type_is_basic if available.
10426 (xd_extract_signed, xd_extract_unsigned): Rename from
10427 extract_signed and extract_unsigned, respectively. Adapt callers.
10428
10429 2012-06-09 Chong Yidong <cyd@gnu.org>
10430
10431 * xfaces.c (face_for_overlay_string): Handle face remapping (Bug#2066).
10432
10433 * fringe.c (Fset_fringe_bitmap_face): Handle the noninteractive
10434 case (Bug#9752).
10435
10436 2012-06-08 Paul Eggert <eggert@cs.ucla.edu>
10437
10438 * xdisp.c (vmessage): Treat frame message as multibyte.
10439 Without this change, (let ((§ 1)) (make-variable-buffer-local '§))
10440 would generate the diagnostic "Making \302\247 buffer-local while
10441 let-bound!".
10442
10443 2012-06-08 Eli Zaretskii <eliz@gnu.org>
10444
10445 * dispnew.c (showing_window_margins_p): Undo last change, which
10446 was done due to an inadvertent commit.
10447 (adjust_frame_glyphs_for_frame_redisplay): Do call
10448 showing_window_margins_p.
10449
10450 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
10451
10452 * eval.c (Fmake_var_non_special): New primitive.
10453 (syms_of_eval): Defsubr it.
10454 * lread.c (syms_of_lread): Mark `values' as lexically scoped.
10455
10456 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
10457
10458 * dispnew.c (showing_window_margins_p): Wrap in #if 0 to prevent unused
10459 function warning (the only call is inside #if 0 since 2012-06-08T08:44:45Z!eliz@gnu.org).
10460
10461 2012-06-08 Eli Zaretskii <eliz@gnu.org>
10462
10463 * alloc.c (allocate_vectorlike): Fix last change.
10464
10465 2012-06-08 Dmitry Antipov <dmantipov@yandex.ru>
10466
10467 Block-based vector allocation of small vectors.
10468 * lisp.h (struct vectorlike_header): New field `nbytes',
10469 adjust comment accordingly.
10470 * alloc.c (enum mem_type): New type `MEM_TYPE_VECTOR_BLOCK'
10471 to denote vector blocks. Adjust users (live_vector_p,
10472 mark_maybe_pointer, valid_lisp_object_p) accordingly.
10473 (COMMON_MULTIPLE): Move outside #if USE_LSB_TAG.
10474 (VECTOR_BLOCK_SIZE, vroundup, VECTOR_BLOCK_BYTES),
10475 (VBLOCK_BYTES_MIN, VBLOCK_BYTES_MAX, VECTOR_MAX_FREE_LIST_INDEX),
10476 (VECTOR_FREE_LIST_FLAG, ADVANCE, VINDEX, SETUP_ON_FREE_LIST),
10477 (VECTOR_SIZE, VECTOR_IN_BLOCK): New macros.
10478 (roundup_size): New constant.
10479 (struct vector_block): New data type.
10480 (vector_blocks, vector_free_lists, zero_vector): New variables.
10481 (all_vectors): Rename to `large_vectors'.
10482 (allocate_vector_from_block, init_vectors, allocate_vector_from_block)
10483 (sweep_vectors): New functions.
10484 (allocate_vectorlike): Return `zero_vector' as the only vector of
10485 0 items. Allocate new vector from block if vector size is less than
10486 or equal to VBLOCK_BYTES_MAX.
10487 (Fgarbage_collect): Move all vector sweeping code to sweep_vectors.
10488 (init_alloc_once): Add call to init_vectors.
10489
10490 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
10491
10492 * eval.c (Fmacroexpand): Stop if the macro returns the same form.
10493
10494 2012-06-07 Paul Eggert <eggert@cs.ucla.edu>
10495
10496 * doprnt.c (doprnt): Truncate multibyte char correctly.
10497 Without this change, doprnt (buf, 2, "%s", FORMAT_END, AP)
10498 would mishandle a string argument "Xc" if X was a multibyte
10499 character of length 2: it would truncate after X's first byte
10500 rather than including all of X.
10501
10502 2012-06-06 Chong Yidong <cyd@gnu.org>
10503
10504 * buffer.c (word_wrap): Doc fix.
10505
10506 2012-06-04 Paul Eggert <eggert@cs.ucla.edu>
10507
10508 * xdisp.c (note_mode_line_or_margin_highlight): Pacify gcc -Wall.
10509
10510 2012-06-03 Glenn Morris <rgm@gnu.org>
10511
10512 * xdisp.c (tool-bar-style): Doc fix.
10513
10514 2012-06-03 Ulrich Müller <ulm@gentoo.org>
10515
10516 * Makefile.in (PAXCTL): Define.
10517 (temacs$(EXEEXT)): Disable memory randomization for the temacs
10518 binary via PaX flags if the paxctl utility is available.
10519 (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
10520 Restore PaX flags to their default. (Bug#11398)
10521
10522 2012-06-03 Chong Yidong <cyd@gnu.org>
10523
10524 * xdisp.c (decode_mode_spec_coding): Display a space for a unibyte
10525 buffer (Bug#11226).
10526
10527 2012-06-03 Chong Yidong <cyd@gnu.org>
10528
10529 * xdisp.c (calc_pixel_width_or_height): Use Fbuffer_local_value.
10530 (note_mode_line_or_margin_highlight): If there is no help echo,
10531 use mode-line-default-help-echo. Handle the case where the mouse
10532 position is past the end of the mode line string.
10533
10534 * buffer.c (buffer_local_value_1): New function, split from
10535 Fbuffer_local_value; can return Qunbound.
10536 (Fbuffer_local_value): Use it.
10537 (Vmode_line_format): Docstring tweaks.
10538
10539 2012-06-02 Paul Eggert <eggert@cs.ucla.edu>
10540
10541 * sysdep.c (system_process_attributes): Improve comment.
10542
10543 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
10544
10545 * keyboard.c: Export real-this-command to Elisp.
10546 (syms_of_keyboard): Rename real_this_command to Vreal_this_command
10547 and DEFVAR it. Update all users.
10548
10549 2012-06-02 Paul Eggert <eggert@cs.ucla.edu>
10550
10551 * minibuf.c (Fassoc_string): Remove duplicate declaration.
10552
10553 * sysdep.c (system_process_attributes) [SOLARIS2 && HAVE_PROCFS]:
10554 Convert pctcpu and pctmem to Lisp float properly.
10555 Let the compiler fold better, as 100.0/0x8000 is exact.
10556
10557 2012-06-02 Andreas Schwab <schwab@linux-m68k.org>
10558
10559 * alloc.c (CONS_BLOCK_SIZE): Account for padding at the end of
10560 cons_block.
10561
10562 2012-06-01 Paul Eggert <eggert@cs.ucla.edu>
10563
10564 * xfns.c (x_set_tool_bar_lines) [USE_GTK]: Adjust to bitfield change.
10565
10566 2012-06-01 Dmitry Antipov <dmantipov@yandex.ru>
10567
10568 For a 'struct window', replace some Lisp_Object fields to
10569 bitfields where appropriate, remove unused fields.
10570 * window.h (struct window): Remove unused 'last_mark_x' and
10571 'last_mark_y' fields. Rename 'mini_p' field to 'mini',
10572 change its type from Lisp_Object to bitfield.
10573 Change type of 'force_start', 'optional_new_start',
10574 'last_had_star', 'update_mode_line' and 'start_at_line_beg'
10575 fields from Lisp_Object to bitfield. Adjust users accordingly.
10576
10577 2012-05-31 Paul Eggert <eggert@cs.ucla.edu>
10578
10579 Pacify gcc -Wdouble-precision when using Xaw.
10580 * xterm.c (xaw_jump_callback, x_set_toolkit_scroll_bar_thumb)
10581 [HAVE_X_WINDOWS && USE_TOOLKIT_SCROLL_BARS && !USE_MOTIF && !USE_GTK]:
10582 Use 'float' consistently, rather than 'float' in most places
10583 and 'double' in a couple of places.
10584
10585 2012-05-31 Eli Zaretskii <eliz@gnu.org>
10586
10587 * xdisp.c (handle_stop): Detect whether we have overlay strings
10588 loaded by testing it->current.overlay_string_index to be
10589 non-negative, instead of checking whether n_overlay_strings is
10590 positive. (Bug#11587)
10591
10592 2012-05-31 Chong Yidong <cyd@gnu.org>
10593
10594 * keymap.c (describe_map_tree): Revert 2011-07-07 change (Bug#1169).
10595
10596 * doc.c (Fsubstitute_command_keys): Doc fix.
10597
10598 2012-05-31 Eli Zaretskii <eliz@gnu.org>
10599
10600 * search.c (search_buffer): Remove calls to
10601 r_alloc_inhibit_buffer_relocation, as it is now called by
10602 maybe_unify_char, which was the cause of relocation of buffer text
10603 in bug#11519.
10604
10605 2012-05-31 Eli Zaretskii <eliz@gnu.org>
10606
10607 * charset.c (maybe_unify_char): Inhibit relocation of buffer text
10608 for the duration of call to load_charset, to avoid problems with
10609 callers of maybe_unify_char that access buffer text through C
10610 pointers.
10611
10612 * ralloc.c (r_alloc_inhibit_buffer_relocation): Increment and
10613 decrement the inhibition flag, instead of just setting or
10614 resetting it.
10615
10616 2012-05-31 Paul Eggert <eggert@cs.ucla.edu>
10617
10618 Remove obsolete '#define static' cruft.
10619 * s/hpux10-20.h (_FILE_OFFSET_BITS): Don't #undef.
10620 This #undef was "temporary" in 2000; it is no longer needed
10621 now that '#define static' has gone away.
10622 * xfns.c, xterm.h (gray_bitmap_width, gray_bitmap_height)
10623 (gray_bitmap_bits): Remove; no longer needed.
10624 All uses replaced with definiens.
10625 * xterm.c: Include "bitmaps/gray.xbm".
10626
10627 2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
10628
10629 Clean up __executable_start, monstartup when --enable-profiling.
10630 The following changes affect the code only when profiling.
10631 * dispnew.c (__executable_start): Rename from safe_bcopy.
10632 Define only on platforms that need it.
10633 * emacs.c: Include <sys/gmon.h> when profiling.
10634 (_mcleanup): Remove decl, since <sys/gmon.h> does it now.
10635 (__executable_start): Remove decl, since lisp.h does it now.
10636 (safe_bcopy): Remove decl; no longer has that name.
10637 (main): Coalesce #if into single bit of code, for simplicity.
10638 Cast pointers to uintptr_t, since standard libraries want integers
10639 and not pointers.
10640 * lisp.h (__executable_start): New decl.
10641
10642 2012-05-31 Glenn Morris <rgm@gnu.org>
10643
10644 * image.c (Fimagemagick_types): Doc fix.
10645
10646 2012-05-30 Jim Meyering <meyering@redhat.com>
10647
10648 * callproc.c (Fcall_process_region): Include directory component
10649 in mkstemp error message (Bug#11586).
10650
10651 2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
10652
10653 * alloc.c, lisp.h (make_pure_vector): Now static.
10654
10655 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
10656
10657 * eval.c (Fdefun, Fdefmacro, Vmacro_declaration_function):
10658 Move to byte-run.el.
10659 (Fautoload): Do the hash-doc more carefully.
10660 * data.c (Fdefalias): Purify definition, except for keymaps.
10661 (Qdefun): Move from eval.c.
10662 * lisp.h (Qdefun): Remove.
10663 * lread.c (read1): Tiny simplification.
10664
10665 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
10666
10667 Do not create empty overlays with the evaporate property (Bug#9642).
10668 * buffer.c (Fmove_overlay): Reinstate the earlier fix for
10669 Bug#9642, but explicitly check that the buffer the overlay would
10670 be moved to is live and rearrange lines to make sure that errors
10671 will not put the overlay in an inconsistent state.
10672 (Fdelete_overlay): Cosmetics.
10673
10674 2012-05-28 Eli Zaretskii <eliz@gnu.org>
10675
10676 * w32term.c (my_bring_window_to_top): New function.
10677 (x_raise_frame): Use handle returned by DeferWindowPos, which
10678 could be different from the original one.
10679 Call my_bring_window_to_top instead of my_set_foreground_window.
10680 (Bug#11513)
10681
10682 * w32fns.c (w32_wnd_proc): Accept and process WM_EMACS_BRINGTOTOP
10683 by calling BringWindowToTop.
10684
10685 * w32term.h (WM_EMACS_BRINGTOTOP): New message.
10686 (WM_EMACS_END): Increase by one.
10687
10688 2012-05-28 Paul Eggert <eggert@cs.ucla.edu>
10689
10690 * bidi.c (bidi_mirror_char): Put eassert before conversion to int.
10691 This avoids undefined behavior that might cause the eassert
10692 to not catch an out-of-range value.
10693
10694 2012-05-28 Juanma Barranquero <lekktu@gmail.com>
10695
10696 * makefile.w32-in ($(BLD)/w32inevt.$(O), $(BLD)/w32console.$(O)):
10697 Update dependencies.
10698
10699 2012-05-27 Eli Zaretskii <eliz@gnu.org>
10700
10701 * bidi.c (bidi_mirror_char): Fix last change.
10702
10703 2012-05-27 Andreas Schwab <schwab@linux-m68k.org>
10704
10705 * unexmacosx.c (copy_data_segment): Truncate after 16 characters
10706 when referring to sectname field in printf format.
10707
10708 2012-05-27 Paul Eggert <eggert@cs.ucla.edu>
10709
10710 * lisp.h [REL_ALLOC]: Omit duplicate prototypes.
10711 Only r_alloc_inhibit_buffer_relocation needed to be added;
10712 the others were already declared.
10713
10714 * bidi.c (bidi_mirror_char): Don't possibly truncate the integer
10715 before checking whether it's out of range. Put the check inside
10716 eassert. See
10717 <http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00485.html>.
10718
10719 2012-05-27 Ken Brown <kbrown@cornell.edu>
10720
10721 * callproc.c (Fcall_process): Restore a line that was accidentally
10722 commented out in the 2011-02-13 change (bug#11547).
10723
10724 2012-05-27 Eli Zaretskii <eliz@gnu.org>
10725
10726 * lisp.h [REL_ALLOC]: Add prototypes for external functions
10727 defined on ralloc.c.
10728
10729 * buffer.c [REL_ALLOC]: Remove prototypes of
10730 r_alloc_reset_variable, r_alloc, r_re_alloc, and r_alloc_free,
10731 they are now on lisp.h.
10732
10733 * ralloc.c (r_alloc_inhibit_buffer_relocation): New function.
10734
10735 * search.c (search_buffer): Use it to inhibit relocation of buffer
10736 text while re_search_2 is doing its job, because re_search_2 is
10737 passed C pointers to buffer text. (Bug#11519)
10738
10739 * msdos.c (internal_terminal_init) <Vwindow_system_version>:
10740 Update value to 24.
10741
10742 * xdisp.c (move_it_to): Under MOVE_TO_Y, when restoring iterator
10743 state after an additional call to move_it_in_display_line_to, keep
10744 the values of it->max_ascent and it->max_descent found for the
10745 entire line.
10746 (pos_visible_p): Revert the comparison against bottom_y to what it
10747 was in revid eliz@gnu.org-20120513182235-4p6386j761ld0nwb.
10748 (Bug#11464)
10749
10750 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
10751
10752 Fix coding-related core dumps with gcc -ftrapv.
10753 The code was computing A - B, where A and B are pointers, and B is
10754 random garbage. This can lead to core dumps on platforms that
10755 have special pointer registers, and it also leads to core dumps on
10756 x86-64 when compiled with gcc -ftrapv. The fix is to compute
10757 A - B only when B is initialized properly.
10758 * coding.c (coding_set_source, coding_set_destination): Return void.
10759 (coding_change_source, coding_change_destinations): New functions,
10760 with the old behaviors of coding_set_source and coding_set_destination.
10761 All callers that need an offset changed to use these new functions.
10762
10763 2012-05-26 Glenn Morris <rgm@gnu.org>
10764
10765 * nsterm.m (ns_init_paths): Don't mess with INFOPATH. (Bug#2791)
10766
10767 2012-05-26 Eli Zaretskii <eliz@gnu.org>
10768
10769 Extend mouse support on W32 text-mode console.
10770 * xdisp.c (draw_row_with_mouse_face):
10771 Call tty_draw_row_with_mouse_face for WINDOWSNT as well.
10772
10773 * w32console.c: Include window.h.
10774 (w32con_write_glyphs_with_face, tty_draw_row_with_mouse_face):
10775 New functions.
10776 (initialize_w32_display): Initialize mouse-highlight data.
10777
10778 * w32inevt.c: Include termchar.h and window.h.
10779 (do_mouse_event): Support mouse-autoselect-window. When the mouse
10780 moves, call note_mouse_highlight. If help_echo changed, call
10781 gen_help_event to produce help-echo message in the echo area.
10782 Call clear_mouse_face if mouse_face_hidden is set in the mouse
10783 highlight info.
10784
10785 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
10786
10787 * lread.c (read1): Simplify slightly to avoid an overflow warning
10788 with GCC 4.7.0 on x86-64.
10789
10790 2012-05-26 Eli Zaretskii <eliz@gnu.org>
10791
10792 * bidi.c (bidi_mirror_char): Revert last change: an int is
10793 definitely wide enough here.
10794
10795 2012-05-25 Paul Eggert <eggert@cs.ucla.edu>
10796
10797 Fix integer width and related bugs (Bug#9874).
10798 * alloc.c (pure_bytes_used_lisp, pure_bytes_used_non_lisp):
10799 (allocate_vectorlike, buffer_memory_full, struct sdata, SDATA_SIZE)
10800 (string_bytes, check_sblock, allocate_string_data):
10801 (compact_small_strings, Fmake_bool_vector, make_string)
10802 (make_unibyte_string, make_multibyte_string)
10803 (make_string_from_bytes, make_specified_string)
10804 (allocate_vectorlike, Fmake_vector, find_string_data_in_pure)
10805 (make_pure_string, make_pure_c_string, make_pure_vector, Fpurecopy)
10806 (mark_vectorlike):
10807 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10808 (allocate_pseudovector):
10809 Use int, not EMACS_INT, where int is wide enough.
10810 (inhibit_garbage_collection, Fgarbage_collect):
10811 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10812 * bidi.c (bidi_mirror_char): Use EMACS_INT, not int, where
10813 int might not be wide enough.
10814 (bidi_cache_search, bidi_cache_find, bidi_init_it)
10815 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
10816 (bidi_at_paragraph_end, bidi_find_paragraph_start)
10817 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
10818 (bidi_level_of_next_char, bidi_move_to_visually_next):
10819 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10820 * buffer.c (copy_overlays, Fgenerate_new_buffer_name)
10821 (Fkill_buffer, Fset_buffer_major_mode)
10822 (advance_to_char_boundary, Fbuffer_swap_text)
10823 (Fset_buffer_multibyte, overlays_at, overlays_in)
10824 (overlay_touches_p, struct sortvec, record_overlay_string)
10825 (overlay_strings, recenter_overlay_lists)
10826 (adjust_overlays_for_insert, adjust_overlays_for_delete)
10827 (fix_start_end_in_overlays, fix_overlays_before, modify_overlay)
10828 (Fmove_overlay, Fnext_overlay_change, Fprevious_overlay_change)
10829 (Foverlay_recenter, last_overlay_modification_hooks_used)
10830 (report_overlay_modification, evaporate_overlays, enlarge_buffer_text):
10831 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10832 (validate_region): Omit unnecessary test for b <= e,
10833 since that's guaranteed by the previous test.
10834 (adjust_overlays_for_delete): Avoid pos + length overflow.
10835 (Fmove_overlay, Fdelete_overlay, add_overlay_mod_hooklist)
10836 (report_overlay_modification):
10837 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10838 (Foverlays_at, Fnext_overlay_change, Fprevious_overlay_change):
10839 Omit pointer cast, which isn't needed anyway, and doesn't work
10840 after the EMACS_INT -> ptrdiff_t change.
10841 (Fmove_overlay): Clip BEG and END to ptrdiff_t to avoid overflow.
10842 * buffer.h: Adjust decls to match defn changes elsewhere.
10843 (struct buffer_text, struct buffer):
10844 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10845 Use EMACS_INT, not int, where int might not be wide enough.
10846 * bytecode.c (unmark_byte_stack, exec_byte_code): Use ptrdiff_t,
10847 not int, to avoid needless 32-bit limit on 64-bit hosts.
10848 (exec_byte_code): Use tighter memory-full test, one that checks
10849 for alloca overflow. Don't compute the address of the object just
10850 before an array, as that's not portable. Use EMACS_INT, not
10851 ptrdiff_t or int, where ptrdiff_t or int might not be wide enough.
10852 * callint.c (Fcall_interactively):
10853 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10854 * callproc.c (call_process_kill, Fcall_process):
10855 Don't assume pid_t fits into an Emacs fixnum.
10856 (call_process_cleanup, Fcall_process, child_setup):
10857 Don't assume pid_t fits into int.
10858 (call_process_cleanup, Fcall_process, delete_temp_file)
10859 (Fcall_process_region):
10860 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10861 (Fcall_process): Simplify handling of volatile integers.
10862 Use int, not EMACS_INT, where int will do.
10863 * casefiddle.c (casify_object, casify_region, operate_on_word)
10864 (Fupcase_word, Fdowncase_word, Fcapitalize_word):
10865 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10866 (casify_object): Avoid integer overflow when overallocating buffer.
10867 * casetab.c (set_identity, shuffle): Prefer int to unsigned when
10868 either works. Use lint_assume to convince GCC 4.6.1 that it's OK.
10869 * category.c (Fchar_category_set): Don't assume fixnum fits in int.
10870 * category.h (CATEGORYP): Don't assume arg is nonnegative.
10871 * ccl.c (GET_CCL_INT): Remove; no longer needed, since the
10872 integers are now checked earlier. All uses replaced with XINT.
10873 (ccl_driver):
10874 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10875 For CCL_MapSingle, check that content and value are in int range.
10876 (ccl_driver, Fregister_code_conversion_map):
10877 Check that Vcode_version_map_vector is a vector.
10878 (resolve_symbol_ccl_program): Check that vector header is in range.
10879 Always copy the vector, so that we can check its contents reliably
10880 now rather than having to recheck each instruction as it's being
10881 executed. Check that vector words fit in 'int'.
10882 (ccl_get_compiled_code, Fregister_ccl_program)
10883 (Fregister_code_conversion_map): Use ptrdiff_t, not int, for
10884 program indexes, to avoid needless 32-bit limit on 64-bit hosts.
10885 (Fccl_execute, Fccl_execute_on_string): Check that initial reg
10886 contents are in range.
10887 (Fccl_execute_on_string): Check that status is in range.
10888 * ccl.h (struct ccl_program.idx): Now ptrdiff_t, not int.
10889 * character.c (char_resolve_modifier_mask, Fchar_resolve_modifiers):
10890 Accept and return EMACS_INT, not int, because callers can pass values
10891 out of 'int' range.
10892 (c_string_width, strwidth, lisp_string_width, chars_in_text)
10893 (multibyte_chars_in_text, parse_str_as_multibyte)
10894 (str_as_multibyte, count_size_as_multibyte, str_to_multibyte)
10895 (str_as_unibyte, str_to_unibyte, string_count_byte8)
10896 (string_escape_byte8, Fget_byte):
10897 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10898 (Funibyte_string): Use CHECK_RANGED_INTEGER, not CHECK_NATNUM, to
10899 avoid mishandling large integers.
10900 * character.h: Adjust decls to match defn changes elsewhere.
10901 * charset.c (load_charset_map_from_file, find_charsets_in_text)
10902 (Ffind_charset_region):
10903 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10904 (load_charset_map_from_file): Redo idx calculation to avoid overflow.
10905 (load_charset_map_from_vector, Fdefine_charset_internal):
10906 Don't assume fixnum fits in int.
10907 (load_charset_map_from_vector, Fmap_charset_chars):
10908 Remove now-unnecessary CHECK_NATNUMs.
10909 (Fdefine_charset_internal): Check ranges here, more carefully.
10910 Don't rely on undefined behavior with signed left shift overflow.
10911 Don't assume unsigned int fits into fixnum, or that fixnum fits
10912 into unsigned int. Don't require max_code to be a valid fixnum;
10913 that's not true for gb10830 4-byte on a 32-bit host. Allow
10914 invalid_code to be a cons, for the same reason. Require code_offset
10915 to be a character. Avoid int overflow if max_char is close
10916 to INT_MAX.
10917 (CODE_POINT_TO_INDEX): On 32-bit hosts, return int, not unsigned;
10918 this is intended anyway and avoids some undefined behavior.
10919 (load_charset_map): Pass unsigned, not int, as 2nd arg of
10920 INDEX_TO_CODE_POINT, as that's what it expects.
10921 (Funify_charset, encode_char): Don't stuff unsigned vals into int vars.
10922 * charset.h (DECODE_CHAR): Return int, not unsigned;
10923 this is what was intended anyway, and it avoids undefined behavior.
10924 (CHARSET_OFFSET): Remove unused macro, instead of fixing its
10925 integer-overflow issues.
10926 (ENCODE_CHAR): Return unsigned on all hosts, not just on 32-bit hosts.
10927 Formerly, it returned EMACS_INT on 64-bit hosts in the common case
10928 where the argument is EMACS_INT, and this behavior is not intended.
10929 * chartab.c (Fmake_char_table, Fset_char_table_range)
10930 (uniprop_get_decoder, uniprop_get_encoder):
10931 Don't assume fixnum fits in int.
10932 * cmds.c (move_point): New function, that does the gist of
10933 Fforward_char and Fbackward_char, but does so while checking
10934 for integer overflow more accurately.
10935 (Fforward_char, Fbackward_char): Use it.
10936 (Fforward_line, Fend_of_line, internal_self_insert)
10937 (internal_self_insert):
10938 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10939 Fix a FIXME, by checking for integer overflow when calculating
10940 target_clm and actual_clm.
10941 * coding.c (detect_coding_XXX, encode_coding_XXX, CODING_DECODE_CHAR)
10942 (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET, CODING_CHAR_CHARSET_P)
10943 (ASSURE_DESTINATION, coding_alloc_by_realloc)
10944 (coding_alloc_by_making_gap, alloc_destination)
10945 (detect_coding_utf_8, encode_coding_utf_8, decode_coding_utf_16)
10946 (encode_coding_utf_16, detect_coding_emacs_mule)
10947 (decode_coding_emacs_mule, encode_coding_emacs_mule)
10948 (detect_coding_iso_2022, decode_coding_iso_2022)
10949 (encode_invocation_designation, encode_designation_at_bol)
10950 (encode_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
10951 (decode_coding_sjis, decode_coding_big5, encode_coding_sjis)
10952 (encode_coding_big5, detect_coding_ccl, decode_coding_ccl)
10953 (encode_coding_ccl, encode_coding_raw_text)
10954 (detect_coding_charset, decode_coding_charset)
10955 (encode_coding_charset, detect_eol, decode_eol, produce_chars)
10956 (produce_composition, produce_charset, produce_annotation)
10957 (decode_coding, handle_composition_annotation)
10958 (handle_charset_annotation, consume_chars, decode_coding_gap)
10959 (decode_coding_object, encode_coding_object, detect_coding_system)
10960 (Ffind_coding_systems_region_internal, Fcheck_coding_systems_region)
10961 (code_convert_region, code_convert_string)
10962 (Fdefine_coding_system_internal)
10963 (coding_set_source, coding_set_destination):
10964 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10965 (setup_iso_safe_charsets, consume_chars, Funencodable_char_position)
10966 (Fdefine_coding_system_internal):
10967 Don't assume fixnums fit in int.
10968 (decode_coding_gap, decode_coding_object, encode_coding_object)
10969 (Fread_coding_system, Fdetect_coding_region)
10970 (Funencodable_char_position, Fcheck_coding_systems_region)
10971 (get_translation, handle_composition_annotation, consume_chars):
10972 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10973 (consume_chars): Rewrite to not calculate an address outside buffer.
10974 (Ffind_operation_coding_system): NATNUMP can eval its arg twice.
10975 Don't access memory outside of the args array.
10976 (Fdefine_coding_system_internal): Check for charset-id overflow.
10977 (ENCODE_ISO_CHARACTER): Use unsigned, not int, to store the unsigned
10978 result of ENCODE_CHAR.
10979 * coding.h: Adjust decls to match defn changes elsewhere.
10980 (struct coding_system):
10981 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10982 * composite.c (get_composition_id, find_composition)
10983 (run_composition_function, update_compositions)
10984 (compose_text, composition_gstring_put_cache)
10985 (composition_gstring_p, composition_gstring_width)
10986 (fill_gstring_header, fill_gstring_body, autocmp_chars)
10987 (composition_compute_stop_pos, composition_reseat_it)
10988 (composition_update_it, struct position_record)
10989 (find_automatic_composition, composition_adjust_point)
10990 (Fcomposition_get_gstring, Ffind_composition_internal):
10991 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10992 (update_compositions):
10993 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10994 * composite.h: Adjust decls to match defn changes elsewhere.
10995 (struct composition):
10996 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10997 * data.c (let_shadows_buffer_binding_p, let_shadows_global_binding_p):
10998 Do not attempt to compute the address of the object just before a
10999 buffer; this is not portable.
11000 (Faref, Faset):
11001 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11002 (Faset): Use int, not EMACS_INT, where int is wide enough.
11003 (Fstring_to_number): Don't assume fixnums fit in int.
11004 (Frem): Don't assume arg is nonnegative.
11005 * dbusbind.c (xd_append_arg): Check for integers out of range.
11006 (Fdbus_call_method): Don't overflow the timeout int.
11007 (extract_signed, extract_unsigned): New functions.
11008 (XD_CHECK_DBUS_SERIAL): Remove; superseded by extract_unsigned.
11009 (xd_get_connection_references): Return ptrdiff_t, not int.
11010 All uses changed.
11011 (xd_signature, xd_append_arg, xd_retrieve_arg, Fdbus_message_internal)
11012 (xd_read_message_1):
11013 Use int, not unsigned, where the dbus API uses int.
11014 (Fdbus_message_internal): Don't overflow mtype.
11015 (syms_of_dbusbind): Allocate right-sized buffer for integers.
11016 * dired.c (directory_files_internal, file_name_completion, scmp)
11017 (file_name_completion_stat):
11018 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11019 (file_name_completion): Don't overflow matchcount.
11020 (file_name_completion_stat): Use SAFE_ALLOCA, not alloca.
11021 * dispextern.h: Adjust decls to match defn changes elsewhere.
11022 (struct text_pos, struct glyph, struct bidi_saved_info)
11023 (struct bidi_string_data, struct bidi_it, struct composition_it)
11024 (struct it):
11025 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11026 (struct display_pos, struct composition_it, struct it):
11027 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11028 * dispnew.c (increment_matrix_positions)
11029 (increment_row_positions, mode_line_string)
11030 (marginal_area_string):
11031 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11032 (change_frame_size_1, Fredisplay, Fframe_or_buffer_changed_p):
11033 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11034 (duration_to_sec_usec): New function, to check for overflow better.
11035 (Fsleep_for, sit_for): Use it.
11036 * doc.c (get_doc_string, store_function_docstring):
11037 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11038 (get_doc_string, Fsnarf_documentation):
11039 Use int, not EMACS_INT, where int is wide enough.
11040 (get_doc_string):
11041 Use SAFE_ALLOCA, not alloca.
11042 Check for overflow when converting EMACS_INT to off_t.
11043 * doprnt.c (doprnt):
11044 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11045 * editfns.c (init_editfns, Fuser_uid, Fuser_real_uid):
11046 Don't assume uid_t fits into fixnum.
11047 (buildmark, Fgoto_char, overlays_around, find_field, Fdelete_field)
11048 (Ffield_string, Ffield_string_no_properties, Ffield_beginning)
11049 (Ffield_end, Fconstrain_to_field, Fline_beginning_position)
11050 (Fline_end_position, Fprevious_char, Fchar_after, Fchar_before)
11051 (general_insert_function)
11052 (Finsert_char, make_buffer_string, make_buffer_string_both)
11053 (update_buffer_properties, Fbuffer_substring)
11054 (Fbuffer_substring_no_properties, Fcompare_buffer_substrings)
11055 (Fsubst_char_in_region, check_translation)
11056 (Ftranslate_region_internal, save_restriction_restore, Fformat)
11057 (transpose_markers, Ftranspose_regions):
11058 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11059 (clip_to_bounds): Move to lisp.h as an inline function).
11060 (Fconstrain_to_field): Don't assume integers are nonnegative.
11061 (Fline_beginning_position, Fsave_excursion, Fsave_current_buffer):
11062 (Fsubst_char_in_region, Fsave_restriction):
11063 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11064 (Femacs_pid): Don't assume pid_t fits into fixnum.
11065 (lo_time): Use int, not EMACS_INT, when int suffices.
11066 (lisp_time_argument): Check for usec out of range.
11067 (Fencode_time): Don't assume fixnum fits in int.
11068 (Fuser_login_name, Fuser_full_name): Signal an error
11069 if a uid argument is out of range, rather than relying on
11070 undefined behavior.
11071 (Fformat_time_string): Remove now-unnecessary check.
11072 lisp_time_argument checks for out-of-range usec now.
11073 Use ptrdiff_t, not size_t, where ptrdiff_t will do.
11074 * emacs.c (gdb_valbits, gdb_gctypebits): Now int, not EMACS_INT.
11075 (gdb_data_seg_bits): Now uintptr_t, not EMACS_INT.
11076 (PVEC_FLAG, gdb_array_mark_flag): Now ptrdiff_t, not EMACS_INT.
11077 (init_cmdargs, Fdump_emacs):
11078 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11079 (Fkill_emacs): Don't assume fixnum fits in int; instead, take just
11080 the bottom (typically) 32 bits of the fixnum.
11081 * eval.c (specpdl_size, call_debugger):
11082 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11083 (when_entered_debugger, Fbacktrace_debug):
11084 Don't assume fixnum can fit in int.
11085 (Fdefvaralias, Fdefvar): Do not attempt to compute the address of
11086 the object just before a buffer; this is not portable.
11087 (FletX, Flet, Funwind_protect, do_autoload, Feval, funcall_lambda)
11088 (grow_specpdl, unbind_to):
11089 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11090 (Fapply, apply_lambda): Don't assume ptrdiff_t can hold fixnum.
11091 (grow_specpdl): Simplify allocation by using xpalloc.
11092 (Fprog1, Fprog2): Don't assume list length fits in int. Simplify.
11093 * fileio.c (Ffind_file_name_handler, Fcopy_file, Frename_file)
11094 (Finsert_file_contents, Fwrite_region, Fdo_auto_save):
11095 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11096 (Ffind_file_name_handler, non_regular_inserted, Finsert_file_contents)
11097 (a_write, e_write):
11098 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11099 (Fcopy_file, non_regular_nbytes, read_non_regular)
11100 (Finsert_file_contents):
11101 Use int, not EMACS_INT, where int is wide enough.
11102 (READ_BUF_SIZE): Verify that it fits in int.
11103 (Finsert_file_contents): Check that counts are in proper range,
11104 rather than assuming fixnums fit into ptrdiff_t etc.
11105 Don't assume fixnums fit into int.
11106 * floatfns.c (Fexpt): Avoid undefined signed * signed overflow.
11107 * fns.c (Fcompare_strings, Fstring_lessp, struct textprop_rec, concat)
11108 (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
11109 (string_char_to_byte, string_byte_to_char)
11110 (string_make_multibyte, string_to_multibyte)
11111 (string_make_unibyte, Fstring_as_unibyte, Fstring_as_multibyte)
11112 (Fstring_to_unibyte, Fsubstring, Fsubstring_no_properties)
11113 (substring_both, Fdelete, internal_equal, Ffillarray)
11114 (Fclear_string, mapcar1)
11115 (Fbase64_encode_region, Fbase64_encode_string, base64_encode_1)
11116 (Fbase64_decode_region, Fbase64_decode_string, base64_decode_1)
11117 (larger_vector, make_hash_table, maybe_resize_hash_table)
11118 (hash_lookup, hash_remove_from_table, hash_clear, sweep_weak_table)
11119 (Fmaphash, secure_hash):
11120 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11121 (concat): Check for string index and length overflow.
11122 (Fmapconcat): Don't assume fixnums fit into ptrdiff_t.
11123 (Frequire):
11124 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11125 (larger_vector): New API (vec, incr_min, size_max) replaces old
11126 one (vec, new_size, init). This catches size overflow.
11127 INIT was removed because it was always Qnil.
11128 All callers changed.
11129 (INDEX_SIZE_BOUND): New macro, which calculates more precisely
11130 the upper bound on a hash table index size.
11131 (make_hash_table, maybe_resize_hash_table): Use it.
11132 (secure_hash): Computer start_byte and end_byte only after
11133 they're known to be in ptrdiff_t range.
11134 * font.c (font_intern_prop, font_at, font_range, Ffont_shape_gstring)
11135 (Ffont_get_glyphs, Ffont_at):
11136 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11137 (font_style_to_value, font_prop_validate_style, font_expand_wildcards)
11138 (Flist_fonts, Fopen_font):
11139 Don't assume fixnum can fit in int.
11140 (check_gstring): Don't assume index can fit in int.
11141 (font_match_p): Check that fixnum is a character, not a nonnegative
11142 fixnum, since the later code needs to stuff it into an int.
11143 (font_find_for_lface): Use SAFE_ALLOCA_LISP, not alloca.
11144 (font_fill_lglyph_metrics): Use unsigned, not EMACS_INT, to avoid
11145 conversion overflow issues.
11146 (Fopen_font): Check for integer out of range.
11147 (Ffont_get_glyphs): Don't assume index can fit in int.
11148 * font.h: Adjust decls to match defn changes elsewhere.
11149 * fontset.c (reorder_font_vector): Redo score calculation to avoid
11150 integer overflow.
11151 (num_auto_fontsets, fontset_from_font): Use ptrdiff_t, not
11152 printmax_t, where ptrdiff_t is wide enough.
11153 (Finternal_char_font):
11154 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11155 * frame.c (Fset_mouse_position, Fset_mouse_pixel_position)
11156 (Fset_frame_height, Fset_frame_width, Fset_frame_size)
11157 (Fset_frame_position, x_set_frame_parameters)
11158 (x_set_line_spacing, x_set_border_width)
11159 (x_set_internal_border_width, x_set_alpha, x_figure_window_size):
11160 Check that fixnums are in proper range for system types.
11161 (frame_name_fnn_p, Fframe_parameter, Fmodify_frame_parameters):
11162 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11163 (Fmodify_frame_parameters): Don't assume fixnum fits in int.
11164 Use SAFE_ALLOCA_LISP, not alloca.
11165 * frame.h (struct frame): Use intptr_t, not EMACS_INT, where
11166 intptr_t is wide enough.
11167 * fringe.c (lookup_fringe_bitmap, get_logical_fringe_bitmap)
11168 (Fdefine_fringe_bitmap): Don't assume fixnum fits in int.
11169 (Ffringe_bitmaps_at_pos): Don't assume index fits in int.
11170 Check for fixnum out of range.
11171 * ftfont.c (ftfont_list): Don't assume index fits in int.
11172 Check that fixnums are in proper range for system types.
11173 (ftfont_shape_by_flt):
11174 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11175 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
11176 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11177 (Fgnutls_error_fatalp, Fgnutls_error_string, Fgnutls_boot):
11178 Check that fixnums are in proper range for system types.
11179 * gnutls.h: Adjust decls to match defn changes elsewhere.
11180 * gtkutil.c (xg_dialog_run):
11181 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11182 (update_frame_tool_bar):
11183 Check that fixnums are in proper range for system types.
11184 * image.c (parse_image_spec): Redo count calculation to avoid overflow.
11185 (lookup_image): Check that fixnums are in range for system types.
11186 * indent.c (last_known_column, last_known_column_point):
11187 (current_column_bol_cache):
11188 (skip_invisible, current_column, check_display_width):
11189 (check_display_width, scan_for_column, current_column_1)
11190 (Findent_to, Fcurrent_indentation, position_indentation)
11191 (indented_beyond_p, Fmove_to_column, compute_motion):
11192 (Fcompute_motion, Fvertical_motion):
11193 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11194 (last_known_column_modified): Use EMACS_INT, not int.
11195 (check_display_width):
11196 (Fcompute_motion):
11197 Check that fixnums and floats are in proper range for system types.
11198 (compute_motion): Don't assume index or fixnum fits in int.
11199 (compute_motion, Fcompute_motion):
11200 Use int, not EMACS_INT, when it is wide enough.
11201 (vmotion): Omit local var start_hpos that is always 0; that way
11202 we don't need to worry about overflow in expressions involving it.
11203 * indent.h: Adjust decls to match defn changes elsewhere.
11204 (struct position):
11205 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11206 Use int, not EMACS_INT, where int is wide enough.
11207 Remove unused members ovstring_chars_done and tab_offset;
11208 all uses removed.
11209 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
11210 (adjust_markers_for_delete, adjust_markers_for_insert, adjust_point)
11211 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
11212 (make_gap, copy_text, insert, insert_and_inherit)
11213 (insert_before_markers, insert_before_markers_and_inherit)
11214 (insert_1, count_combining_before, count_combining_after)
11215 (insert_1_both, insert_from_string)
11216 (insert_from_string_before_markers, insert_from_string_1)
11217 (insert_from_gap, insert_from_buffer, insert_from_buffer_1)
11218 (adjust_after_replace, adjust_after_insert, replace_range)
11219 (replace_range_2, del_range, del_range_1, del_range_byte)
11220 (del_range_both, del_range_2, modify_region)
11221 (prepare_to_modify_buffer, signal_before_change)
11222 (signal_after_change, Fcombine_after_change_execute):
11223 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11224 * intervals.c (traverse_intervals, rotate_right, rotate_left)
11225 (balance_an_interval, split_interval_right, split_interval_left)
11226 (find_interval, next_interval, update_interval)
11227 (adjust_intervals_for_insertion, delete_node, delete_interval)
11228 (interval_deletion_adjustment, adjust_intervals_for_deletion)
11229 (static_offset_intervals, offset_intervals)
11230 (merge_interval_right, merge_interval_left, make_new_interval)
11231 (graft_intervals_into_buffer, temp_set_point_both)
11232 (temp_set_point, set_point, adjust_for_invis_intang)
11233 (set_point_both, move_if_not_intangible, get_property_and_range)
11234 (get_local_map, copy_intervals, copy_intervals_to_string)
11235 (compare_string_intervals, set_intervals_multibyte_1):
11236 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11237 * intervals.h: Adjust decls to match defn changes elsewhere.
11238 (struct interval):
11239 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11240 * keyboard.c (this_command_key_count, this_single_command_key_start)
11241 (before_command_key_count, before_command_echo_length, echo_now)
11242 (echo_length, recursive_edit_1, Frecursive_edit, Ftrack_mouse)
11243 (command_loop_1, safe_run_hooks, read_char, timer_check_2)
11244 (menu_item_eval_property, read_key_sequence, Fread_key_sequence)
11245 (Fread_key_sequence_vector, Fexecute_extended_command, Fsuspend_emacs):
11246 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11247 (last_non_minibuf_size, last_point_position, echo_truncate)
11248 (command_loop_1, adjust_point_for_property, read_char, gen_help_event)
11249 (make_lispy_position, make_lispy_event, parse_modifiers_uncached)
11250 (parse_modifiers, modify_event_symbol, Fexecute_extended_command)
11251 (stuff_buffered_input):
11252 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11253 (last_auto_save, command_loop_1, read_char):
11254 Use EMACS_INT, not int, to avoid integer overflow.
11255 (record_char): Avoid overflow in total_keys computation.
11256 (parse_modifiers_uncached): Redo index calculation to avoid overflow.
11257 * keyboard.h: Adjust decls to match defn changes elsewhere.
11258 * keymap.c (Fdefine_key, Fcurrent_active_maps, accessible_keymaps_1)
11259 (Fkey_description, Fdescribe_vector, Flookup_key):
11260 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11261 (click_position): New function, to check that positions are in range.
11262 (Fcurrent_active_maps):
11263 (describe_command):
11264 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11265 (Faccessible_keymaps, Fkey_description):
11266 (preferred_sequence_p):
11267 Don't assume fixnum can fit into int.
11268 (Fkey_description): Use SAFE_ALLOCA_LISP, not alloca.
11269 Check for integer overflow in size calculations.
11270 (Ftext_char_description): Use CHECK_CHARACTER, not CHECK_NUMBER, to
11271 avoid mishandling large integers.
11272 * lisp.h: Adjust decls to match defn changes elsewhere.
11273 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, struct Lisp_String)
11274 (struct vectorlike_header, struct Lisp_Subr, struct Lisp_Hash_Table)
11275 (struct Lisp_Marker):
11276 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11277 (clip_to_bounds): Now an inline function, moved here from editfns.c.
11278 (GLYPH_CODE_P): Check for overflow in system types, subsuming the
11279 need for GLYPH_CODE_CHAR_VALID_P and doing proper checking ourselves.
11280 All callers changed.
11281 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE):
11282 Assume the arg has valid form, since it always does.
11283 (TYPE_RANGED_INTEGERP): Avoid bug when checking against a wide
11284 unsigned integer system type.
11285 (CHECK_RANGED_INTEGER, CHECK_TYPE_RANGED_INTEGER): New macros.
11286 (struct catchtag, specpdl_size, SPECPDL_INDEX, USE_SAFE_ALLOCA):
11287 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11288 (struct catchtag): Use EMACS_INT, not int, since it may be a fixnum.
11289 (duration_to_sec_usec): New decl.
11290 * lread.c (read_from_string_index, read_from_string_index_byte)
11291 (read_from_string_limit, readchar, unreadchar, openp)
11292 (read_internal_start, read1, oblookup):
11293 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11294 (Fload, readevalloop, Feval_buffer, Feval_region):
11295 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11296 (openp): Check for out-of-range argument to 'access'.
11297 (read1): Use int, not EMACS_INT, where int is wide enough.
11298 Don't assume fixnum fits into int.
11299 Fix off-by-one error that can read outside a buffer.
11300 (read_filtered_event): Use duration_to_sec_usec
11301 to do proper overflow checking on durations.
11302 * macros.c (Fstart_kbd_macro): Use xpalloc to check for overflow
11303 in size calculation.
11304 (Fexecute_kbd_macro):
11305 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11306 * marker.c (cached_charpos, cached_bytepos, CONSIDER)
11307 (byte_char_debug_check, buf_charpos_to_bytepos, verify_bytepos)
11308 (buf_bytepos_to_charpos, Fset_marker, set_marker_restricted)
11309 (set_marker_both, set_marker_restricted_both, marker_position)
11310 (marker_byte_position, Fbuffer_has_markers_at):
11311 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11312 (Fset_marker, set_marker_restricted): Don't assume fixnum fits in int.
11313 * menu.c (ensure_menu_items): Rename from grow_menu_items.
11314 It now merely ensures that the menu is large enough, without
11315 necessarily growing it, as this avoids some integer overflow issues.
11316 All callers changed.
11317 (keymap_panes, parse_single_submenu, Fx_popup_menu):
11318 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11319 (parse_single_submenu, Fx_popup_menu): Don't assume fixnum fits in int.
11320 Use SAFE_ALLOCA_LISP, not alloca.
11321 (find_and_return_menu_selection): Avoid unnecessary casts of pointers
11322 to EMACS_INT. Check that fixnums are in proper range for system types.
11323 * minibuf.c (minibuf_prompt_width, string_to_object)
11324 (Fminibuffer_contents, Fminibuffer_contents_no_properties)
11325 (Fminibuffer_completion_contents, Ftry_completion, Fall_completions):
11326 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11327 (get_minibuffer, read_minibuf_unwind):
11328 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11329 (read_minibuf): Omit unnecessary arg BACKUP_N, which is always nil;
11330 this simplifies overflow checking. All callers changed.
11331 (read_minibuf, Fread_buffer, Ftry_completion, Fall_completions)
11332 (Ftest_completion):
11333 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11334 * nsfns.m (check_ns_display_info): Don't assume fixnum fits in long.
11335 (x_set_menu_bar_lines, x_set_tool_bar_lines, Fx_create_frame):
11336 Check that fixnums are in proper range for system types.
11337 (Fx_create_frame, Fx_show_tip):
11338 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11339 * nsfont.m (ns_findfonts, nsfont_list_family):
11340 Don't assume fixnum fits in long.
11341 * nsmenu.m (ns_update_menubar, ns_menu_show, ns_popup_dialog):
11342 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11343 (ns_update_menubar): Use intptr_t, not EMACS_INT, when intptr_t is
11344 wide enough.
11345 * nsselect.m (ns_get_local_selection, clean_local_selection_data):
11346 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11347 * print.c (print_buffer_size, print_buffer_pos, print_buffer_pos_byte)
11348 (PRINTDECLARE, PRINTPREPARE):
11349 (strout, print_string):
11350 (print, print_preprocess, print_check_string_charset_prop)
11351 (print_object):
11352 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11353 (PRINTDECLARE):
11354 (temp_output_buffer_setup, Fprin1_to_string, print_object):
11355 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11356 (PRINTPREPARE): Use int, not ptrdiff_t, where int is wide enough.
11357 (printchar, strout): Use xpalloc to catch size calculation overflow.
11358 (Fexternal_debugging_output): Don't overflow EMACS_INT->int conversion.
11359 (print_error_message): Use SAFE_ALLOCA, not alloca.
11360 (print_object): Use int, not EMACS_INT, where int is wide enough.
11361 (print_depth, new_backquote_output, print_number_index):
11362 Use ptrdiff_t, not int, where int might not be wide enough.
11363 * process.c (Fdelete_process): Don't assume pid fits into EMACS_INT.
11364 (Fset_process_window_size, Fformat_network_address)
11365 (get_lisp_to_sockaddr_size, set_socket_option, Fmake_network_process)
11366 (sigchld_handler):
11367 Check that fixnums are in proper range for system types.
11368 (Fsignal_process): Simplify by avoiding a goto.
11369 Check for process-ids out of pid_t range rather than relying on
11370 undefined behavior.
11371 (process_tick, update_tick): Use EMACS_INT, not int.
11372 (Fformat_network_address, read_process_output, send_process)
11373 (Fprocess_send_region, status_notify):
11374 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11375 (Fformat_network_address, Fmake_serial_process, Fmake_network_process)
11376 (wait_reading_process_output, read_process_output, exec_sentinel):
11377 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11378 (conv_lisp_to_sockaddr): Don't assume fixnums fit into int.
11379 (Faccept_process_output): Use duration_to_sec_usec to do proper
11380 overflow checking on durations.
11381 (emacs_get_tty_pgrp, Fprocess_running_child_p, process_send_signal):
11382 Don't assume pid_t fits in int.
11383 * process.h (struct Lisp_Process): Members tick and update_tick
11384 are now of type EMACS_INT, not int.
11385 * puresize.h (PURESIZE_RATIO): Shrink this to 8/6 on 32-bit hosts
11386 configured --with-wide-int.
11387 * scroll.c (calculate_scrolling, calculate_direct_scrolling)
11388 (line_ins_del): Use int, not EMACS_INT, where int is wide enough.
11389 * search.c (looking_at_1, string_match_1):
11390 (fast_string_match, fast_c_string_match_ignore_case)
11391 (fast_string_match_ignore_case, fast_looking_at, scan_buffer)
11392 (scan_newline, find_before_next_newline, search_command)
11393 (trivial_regexp_p, search_buffer, simple_search, boyer_moore)
11394 (set_search_regs, wordify):
11395 (Freplace_match):
11396 (Fmatch_data):
11397 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11398 (string_match_1, search_buffer, set_search_regs):
11399 (Fmatch_data):
11400 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11401 (wordify): Check for overflow in size calculation.
11402 (Freplace_match): Avoid potential buffer overflow in search_regs.start.
11403 (Fset_match_data): Don't assume fixnum fits in ptrdiff_t.
11404 Check that fixnums are in proper range for system types.
11405 * sound.c (struct sound_device)
11406 (wav_play, au_play, vox_write, alsa_period_size, alsa_write):
11407 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11408 (Fplay_sound_internal):
11409 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11410 * syntax.c (struct lisp_parse_state, find_start_modiff)
11411 (Finternal_describe_syntax_value, scan_lists, scan_sexps_forward):
11412 (Fparse_partial_sexp):
11413 Don't assume fixnums can fit in int.
11414 (struct lisp_parse_state, find_start_pos, find_start_value)
11415 (find_start_value_byte, find_start_begv)
11416 (update_syntax_table, char_quoted, dec_bytepos)
11417 (find_defun_start, prev_char_comend_first, back_comment):
11418 (scan_words, skip_chars, skip_syntaxes, forw_comment, Fforward_comment)
11419 (scan_lists, Fbackward_prefix_chars, scan_sexps_forward):
11420 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11421 (Finternal_describe_syntax_value): Check that match_lisp is a
11422 character, not an integer, since the code stuffs it into int.
11423 (scan_words, scan_sexps_forward):
11424 Check that fixnums are in proper range for system types.
11425 (Fforward_word):
11426 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11427 (scan_sexps_forward):
11428 Use CHARACTERP, not INTEGERP, since the value must fit into int.
11429 (Fparse_partial_sexp): Fix doc; element 8 is not ignored.
11430 * syntax.h: Adjust decls to match defn changes elsewhere.
11431 (struct gl_state_s):
11432 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11433 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Use PTRDIFF_MAX, not
11434 MOST_POSITIVE_FIXNUM.
11435 * sysdep.c (wait_for_termination_1, wait_for_termination)
11436 (interruptible_wait_for_termination, mkdir):
11437 Don't assume pid_t fits in int; on 64-bit AIX pid_t is 64-bit.
11438 (emacs_read, emacs_write):
11439 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11440 (system_process_attributes): Don't assume uid_t, gid_t, EMACS_INT,
11441 and double all fit in int.
11442 * term.c (set_tty_color_mode):
11443 Check that fixnums are in proper range for system types.
11444 * termhooks.h (struct input_event):
11445 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11446 * textprop.c (validate_interval_range, interval_of)
11447 (Fadd_text_properties, set_text_properties_1)
11448 (Fremove_text_properties, Fremove_list_of_text_properties)
11449 (Ftext_property_any, Ftext_property_not_all)
11450 (copy_text_properties, text_property_list, extend_property_ranges)
11451 (verify_interval_modification):
11452 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11453 (Fnext_single_char_property_change)
11454 (Fprevious_single_char_property_change):
11455 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11456 (copy_text_properties):
11457 Check for integer overflow in index calculation.
11458 * undo.c (last_boundary_position, record_point, record_insert)
11459 (record_delete, record_marker_adjustment, record_change)
11460 (record_property_change):
11461 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11462 (truncate_undo_list, Fprimitive_undo): Don't assume fixnum fits in int.
11463 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11464 * w32fns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
11465 (Fx_hide_tip, Fx_file_dialog):
11466 * w32menu.c (set_frame_menubar):
11467 Use ptrdiff_t, not int, for consistency with rest of code.
11468 * window.c (window_scroll_preserve_hpos, window_scroll_preserve_vpos)
11469 (select_window, Fdelete_other_windows_internal)
11470 (window_scroll_pixel_based, window_scroll_line_based)
11471 (Frecenter, Fset_window_configuration):
11472 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11473 (Fset_window_hscroll, run_window_configuration_change_hook)
11474 (set_window_buffer, temp_output_buffer_show, scroll_command)
11475 (Fscroll_other_window, Frecenter):
11476 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11477 (Fwindow_line_height, window_scroll, Fscroll_left, Fscroll_right):
11478 Don't assume fixnum fits in int.
11479 (Fset_window_scroll_bars):
11480 Check that fixnums are in proper range for system types.
11481 * xdisp.c (help_echo_pos, pos_visible_p, string_pos_nchars_ahead)
11482 (string_pos, c_string_pos, number_of_chars, init_iterator)
11483 (in_ellipses_for_invisible_text_p, init_from_display_pos)
11484 (compute_stop_pos, next_overlay_change, compute_display_string_pos)
11485 (compute_display_string_end, handle_face_prop)
11486 (face_before_or_after_it_pos, handle_invisible_prop)
11487 (handle_display_prop, handle_display_spec, handle_single_display_spec)
11488 (display_prop_intangible_p, string_buffer_position_lim)
11489 (string_buffer_position, handle_composition_prop, load_overlay_strings)
11490 (get_overlay_strings_1, get_overlay_strings)
11491 (iterate_out_of_display_property, forward_to_next_line_start)
11492 (back_to_previous_visible_line_start, reseat, reseat_to_string)
11493 (get_next_display_element, set_iterator_to_next)
11494 (get_visually_first_element, compute_stop_pos_backwards)
11495 (handle_stop_backwards, next_element_from_buffer)
11496 (move_it_in_display_line_to, move_it_in_display_line)
11497 (move_it_to, move_it_vertically_backward, move_it_by_lines)
11498 (add_to_log, message_dolog, message_log_check_duplicate)
11499 (message2, message2_nolog, message3, message3_nolog
11500 (with_echo_area_buffer, display_echo_area_1, resize_mini_window_1)
11501 (current_message_1, truncate_echo_area, truncate_message_1)
11502 (set_message, set_message_1, store_mode_line_noprop)
11503 (hscroll_window_tree, debug_delta, debug_delta_bytes, debug_end_vpos)
11504 (text_outside_line_unchanged_p, check_point_in_composition)
11505 (reconsider_clip_changes)
11506 (redisplay_internal, set_cursor_from_row, try_scrolling)
11507 (try_cursor_movement, set_vertical_scroll_bar, redisplay_window)
11508 (redisplay_window, find_last_unchanged_at_beg_row)
11509 (find_first_unchanged_at_end_row, row_containing_pos, try_window_id)
11510 (trailing_whitespace_p, find_row_edges, display_line)
11511 (RECORD_MAX_MIN_POS, Fcurrent_bidi_paragraph_direction)
11512 (display_mode_element, store_mode_line_string)
11513 (pint2str, pint2hrstr, decode_mode_spec)
11514 (display_count_lines, display_string, draw_glyphs)
11515 (x_produce_glyphs, x_insert_glyphs)
11516 (rows_from_pos_range, mouse_face_from_buffer_pos)
11517 (fast_find_string_pos, mouse_face_from_string_pos)
11518 (note_mode_line_or_margin_highlight, note_mouse_highlight):
11519 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11520 (safe_call, init_from_display_pos, handle_fontified_prop)
11521 (handle_single_display_spec, load_overlay_strings)
11522 (with_echo_area_buffer, setup_echo_area_for_printing)
11523 (display_echo_area, echo_area_display)
11524 (x_consider_frame_title, prepare_menu_bars, update_menu_bar)
11525 (update_tool_bar, hscroll_window_tree, redisplay_internal)
11526 (redisplay_window, dump_glyph_row, display_mode_line)
11527 (Fformat_mode_line, decode_mode_spec, on_hot_spot_p):
11528 (handle_display_spec, display_prop_string_p):
11529 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11530 (handle_single_display_spec, build_desired_tool_bar_string)
11531 (redisplay_tool_bar, scroll_window_tree, Fdump_glyph_matrix)
11532 (get_specified_cursor_type):
11533 Check that fixnums are in proper range for system types.
11534 (struct overlay_entry, resize_mini_window, Fdump_glyph_row)
11535 (Flookup_image_map):
11536 Don't assume fixnums fit in int.
11537 (compare_overlay_entries):
11538 Avoid mishandling comparisons due to subtraction overflow.
11539 (load_overlay_strings): Use SAFE_NALLOCA, not alloca.
11540 (last_escape_glyph_face_id, last_glyphless_glyph_face_id):
11541 (handle_tool_bar_click):
11542 Use int, not unsigned, since we prefer signed and the signedness
11543 doesn't matter here.
11544 (get_next_display_element, next_element_from_display_vector):
11545 Use int, not EMACS_INT, when int is wide enough.
11546 (start_hourglass): Use duration_to_sec_usec to do proper
11547 overflow checking on durations.
11548 * xfaces.c (Fbitmap_spec_p):
11549 Check that fixnums are in proper range for system types.
11550 (compare_fonts_by_sort_order):
11551 Avoid mishandling comparisons due to subtraction overflow.
11552 (Fx_family_fonts, realize_basic_faces):
11553 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11554 (Fx_family_fonts):
11555 Don't assume fixnum fits in int.
11556 Use SAFE_ALLOCA_LISP, not alloca.
11557 (merge_face_heights): Remove unnecessary cast to EMACS_INT.
11558 (Finternal_make_lisp_face): Don't allocate more than MAX_FACE_ID.
11559 (face_at_buffer_position, face_for_overlay_string)
11560 (face_at_string_position):
11561 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11562 (merge_faces): Use int, not EMACS_INT, where int is wide enough.
11563 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines, x_icon_verify)
11564 (Fx_show_tip):
11565 Check that fixnums are in proper range for system types.
11566 (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
11567 (Fx_hide_tip, Fx_file_dialog, Fx_select_font):
11568 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11569 (Fx_change_window_property): Don't assume fixnums fit in int.
11570 * xfont.c (xfont_chars_supported):
11571 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11572 * xmenu.c (Fx_popup_dialog, set_frame_menubar)
11573 (create_and_show_popup_menu, create_and_show_dialog, xmenu_show):
11574 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11575 * xml.c (parse_region):
11576 * xrdb.c (magic_file_p):
11577 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11578 * xselect.c (TRACE1): Don't assume pid_t promotes to int.
11579 (x_get_local_selection, x_reply_selection_request)
11580 (x_handle_selection_request, wait_for_property_change):
11581 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11582 (selection_data_to_lisp_data): Use short, not EMACS_INT, where
11583 short is wide enough.
11584 (x_send_client_event): Don't assume fixnum fits in int.
11585 * xterm.c (x_x_to_emacs_modifiers):
11586 Don't assume EMACS_INT overflows nicely into int.
11587 (x_emacs_to_x_modifiers): Use EMACS_INT, not int, because values
11588 may come from Lisp.
11589 (handle_one_xevent): NATNUMP can eval its arg twice.
11590 (x_connection_closed):
11591 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11592 * xterm.h: Adjust decls to match defn changes elsewhere.
11593 (struct scroll_bar): Use struct vectorlike_header
11594 rather than rolling our own approximation.
11595 (SCROLL_BAR_VEC_SIZE): Remove; not used.
11596
11597 2012-05-25 Glenn Morris <rgm@gnu.org>
11598
11599 * lisp.mk (lisp): Update for more files being compiled now.
11600
11601 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
11602
11603 * lread.c: Remove `read_pure' which makes no difference.
11604 (read_pure): Remove var.
11605 (unreadpure): Remove function.
11606 (readevalloop): Don't call read_list with -1 flag.
11607 (read1, read_vector): Don't test read_pure any more.
11608 (read_list): Simplify.
11609
11610 * fileio.c, character.h: Minor style tweaks.
11611
11612 2012-05-24 Dmitry Antipov <dmantipov@yandex.ru>
11613
11614 * window.h (clip_changed): Remove useless declaration.
11615
11616 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
11617
11618 * makefile.w32-in: Follow-up to 2012-05-22T16:20:27Z!eggert@cs.ucla.edu.
11619 (TAGS, TAGS-gmake, CONFIG_H): Remove further references to m/intel386.h.
11620
11621 2012-05-22 Paul Eggert <eggert@cs.ucla.edu>
11622
11623 Remove src/m/*.
11624 This directory predates autoconf and is no longer needed nowadays.
11625 Move its few remaining bits of functionality to where they're needed.
11626 * m/README, m/alpha.h, m/amdx86-64.h, m/ia64.h, m/ibmrs6000.h:
11627 * m/ibms390x.h, m/intel386.h, m/m68k.h, m/macppc.h, m/sparc.h:
11628 * m/template.h: Remove.
11629 * Makefile.in (M_FILE): Remove. All uses removed.
11630 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS):
11631 * lisp.h (USE_LSB_TAG):
11632 * mem-limits.h (EXCEEDS_LISP_PTR):
11633 Use VAL_MAX, not VALBITS, in #if.
11634 * lisp.h (EMACS_INT_MAX): New macro, useful in #if.
11635 (EMACS_UINT): Define unconditionally now.
11636 (BITS_PER_CHAR, BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG)
11637 (BITS_PER_EMACS_INT): New constants, replacing
11638 what used to be in config.h, but not useful in #if.
11639 (GCTYPEBITS, VALBITS): Define unconditionally, since m/* files don't
11640 define them any more.
11641 (VAL_MAX): New macro.
11642 (VALMASK): Use it.
11643 * puresize.h (PURESIZE_RATIO): Use EMACS_INT_MAX, not
11644 BITS_PER_EMACS_INT, in #if.
11645 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
11646 (BROKEN_SIGPOLL): Move here from m/ibmrs6000.h, which was removed.
11647 * s/gnu-linux.h (ULIMIT_BREAK_VALUE) [__i386__]:
11648 * s/ms-w32.h (DATA_START):
11649 Move here from removed file m/intel386.h.
11650 * s/gnu.h (NLIST_STRUCT): Remove undef; 'configure' does this.
11651 * s/irix6-5.h (_LP64): Remove; lisp.h no longer needs this.
11652
11653 2012-05-21 Paul Eggert <eggert@cs.ucla.edu>
11654
11655 Assume C89 or later.
11656 * alloc.c, buffer.c, lisp.h: Replace POINTER_TYPE with void.
11657 * alloc.c (overrun_check_malloc, overrun_check_realloc, xmalloc)
11658 (xrealloc):
11659 * buffer.c (mmap_free_1, mmap_enlarge): Omit needless casts.
11660 * editfns.c, fns.c, gmalloc.c, insdel.c, sysdep.c, termcap.c (NULL):
11661 * textprop.c, tparam.c (NULL): Remove.
11662 * ralloc.c, vm-limit.c (POINTER): Assume void * works.
11663 * regex.c (SIGN_EXTEND_CHAR): Assume signed char works.
11664 * regex.h (_RE_ARGS): Remove. All uses rewritten to use prototypes.
11665 * unexelf.c (ElfBitsW): Assume c89 preprocessor or better.
11666 * xterm.c (input_signal_count): Assume volatile works.
11667
11668 2012-05-21 Ken Brown <kbrown@cornell.edu>
11669
11670 * xgselect.c (xg_select): Fix first argument in call to 'select'
11671 (bug#11508).
11672
11673 2012-05-20 Ken Brown <kbrown@cornell.edu>
11674
11675 * gmalloc.c (_free_internal_nolock, _realloc_internal_nolock)
11676 [CYGWIN]: Cast ptr to (char *) before comparing to _heapbase.
11677
11678 2012-05-19 Ken Brown <kbrown@cornell.edu>
11679
11680 * xfns.c (x_in_use): Remove `static' qualifier.
11681 * xterm.h (x_in_use): Declare.
11682 * xgselect.c: Include xterm.h.
11683 (xg_select): Test `x_in_use' instead of `inhibit_window_system'
11684 and `display_arg' (bug#9754).
11685
11686 2012-05-19 Paul Eggert <eggert@cs.ucla.edu>
11687
11688 * s/ms-w32.h (HAVE_GETDOMAINNAME): Remove; not needed.
11689
11690 * m/vax.h: Remove; no longer needed since HAVE_FTIME is being removed.
11691 * s/ms-w32.h (HAVE_FTIME): Remove; not needed.
11692
11693 2012-05-18 Eli Zaretskii <eliz@gnu.org>
11694
11695 Fix compilation with -DGLYPH_DEBUG=1 on MS-Windows.
11696
11697 * w32term.c [GLYPH_DEBUG]: Add prototype for x_check_font.
11698 (x_check_font) [GLYPH_DEBUG]: New function, copied from xterm.c.
11699
11700 * w32fns.c (unwind_create_frame) [GLYPH_DEBUG]: Fix broken
11701 reference to image_cache->refcount.
11702 (x_create_tip_frame): Fix broken use of FRAME_IMAGE_CACHE.
11703
11704 2012-05-17 Juri Linkov <juri@jurta.org>
11705
11706 * search.c (Fword_search_regexp, Fword_search_backward)
11707 (Fword_search_forward, Fword_search_backward_lax)
11708 (Fword_search_forward_lax): Move functions to isearch.el
11709 (bug#10145, bug#11381).
11710
11711 2012-05-16 Paul Eggert <eggert@cs.ucla.edu>
11712
11713 * xgselect.c (xg_select): Just invoke 'select' if -nw (Bug#9754).
11714
11715 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
11716
11717 * lread.c (init_obarray): Declare Qt and Qnil as special.
11718
11719 2012-05-14 Glenn Morris <rgm@gnu.org>
11720
11721 * nsterm.m (ns_init_paths): Fix typo ("libexec" not "lib-exec").
11722 Put "libexec" before "bin", for the sake of init_callproc_1.
11723
11724 2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
11725
11726 * keyboard.c (kbd_buffer_get_event) [!HAVE_DBUS]: Omit unused local.
11727
11728 * unexaix.c: Port to more-recent AIX compilers.
11729 (report_error, report_error_1, make_hdr, copy_sym)
11730 (mark_x, adjust_lnnoptrs, unrelocate_symbols):
11731 Make arguments const char *, not char *, to avoid violations of C
11732 standard and to fix some AIX warnings reported by Gilles Pion.
11733
11734 2012-05-14 Eli Zaretskii <eliz@gnu.org>
11735
11736 * xdisp.c (handle_stop): Don't call get_overlay_strings_1 if we
11737 already have overlays loaded.
11738 (handle_single_display_spec): Before returning without displaying
11739 fringe bitmap, synchronize the bidi iterator with the main display
11740 iterator, by calling iterate_out_of_display_property.
11741 (iterate_out_of_display_property): Detect buffer iteration by
11742 testing that it->string is a Lisp string.
11743 (get_next_display_element): When the current object is exhausted,
11744 and there's something on it->stack, call set_iterator_to_next to
11745 proceed with what's on the stack, instead of returning zero.
11746 (set_iterator_to_next): If called at the end of a Lisp string,
11747 proceed to consider_string_end without incrementing string
11748 position. Don't increment display vector index past the end of
11749 the display vector. (Bug#11417)
11750 (pos_visible_p): Don't report a position visible when move_it_to
11751 stopped at the last line of window, which happens to be scanned
11752 backwards by the bidi iteration. (Bug#11464)
11753
11754 2012-05-14 Eli Zaretskii <eliz@gnu.org>
11755
11756 * xdisp.c (handle_single_display_spec): Return 1 for left-margin
11757 and right-margin display specs even if the spec is invalid or we
11758 are on a TTY, and thus unable to display on the fringes.
11759 That's because the text with the property will not be displayed anyway,
11760 so we need to signal to the caller that this is a "replacing"
11761 display spec. This fixes display when the spec is invalid or we
11762 are on a TTY.
11763
11764 2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
11765
11766 * unexaix.c (make_hdr): Fix typo in prototype.
11767 This bug broke the build on AIX. Problem reported by Gilles Pion.
11768
11769 2012-05-14 Michael Albinus <michael.albinus@gmx.de>
11770
11771 * keyboard.c (kbd_buffer_get_event): Read special events also in
11772 batch mode. (Bug#11415)
11773
11774 2012-05-12 Glenn Morris <rgm@gnu.org>
11775
11776 * ns.mk: Update for ns_appbindir no longer having trailing "/".
11777
11778 2012-05-12 Eli Zaretskii <eliz@gnu.org>
11779
11780 * lisp.mk (lisp): Add newcomment.elc.
11781
11782 2012-05-12 Glenn Morris <rgm@gnu.org>
11783
11784 * Makefile.in (MKDIR_P): New, set by configure.
11785 * ns.mk (${ns_appdir}, ${ns_appbindir}Emacs): Use $MKDIR_P.
11786
11787 2012-05-11 Paul Eggert <eggert@cs.ucla.edu>
11788
11789 Remove unused function hourglass_started.
11790 * dispextern.h (hourglass_started):
11791 * w32fns.c (hourglass_started):
11792 * xdisp.c (hourglass_started): Remove.
11793
11794 2012-05-10 Juanma Barranquero <lekktu@gmail.com>
11795
11796 * makefile.w32-in ($(BLD)/gmalloc.$(O), $(BLD)/w32menu.$(O)):
11797 Update dependencies.
11798
11799 2012-05-10 Paul Eggert <eggert@cs.ucla.edu>
11800
11801 * xgselect.c (xg_select): Put maxfds+1 into a var.
11802 This is slightly clearer, and pacifies Ubuntu 12.04 gcc.
11803
11804 * sound.c (DEFAULT_ALSA_SOUND_DEVICE): Define only if HAVE_ALSA.
11805
11806 2012-05-10 Dave Abrahams <dave@boostpro.com>
11807
11808 * filelock.c (syms_of_filelock): New boolean create-lockfiles.
11809 (lock_file): If create_lockfiles is 0, do nothing. (Bug#11227)
11810
11811 2012-05-09 Michael Albinus <michael.albinus@gmx.de>
11812
11813 * dbusbind.c (xd_registered_buses): New internal Lisp object.
11814 Rename all occurrences of Vdbus_registered_buses to xd_registered_buses.
11815 (syms_of_dbusbind): Remove declaration of Vdbus_registered_buses.
11816 Initialize xd_registered_buses.
11817
11818 2012-05-09 Paul Eggert <eggert@cs.ucla.edu>
11819
11820 Untag more efficiently if USE_LSB_TAG.
11821 This is based on a proposal by YAMAMOTO Mitsuharu in
11822 <http://lists.gnu.org/archive/html/emacs-devel/2008-01/msg01876.html>.
11823 For an admittedly artificial (nth 8000 longlist) benchmark on
11824 Fedora 15 x86-64, this yields a 25% CPU speedup. Also, it shrinks
11825 Emacs's overall text size by 1%.
11826 * lisp.h (XUNTAG): New macro.
11827 (XCONS, XVECTOR, XSTRING, XSYMBOL, XFLOAT, XMISC, XPROCESS, XWINDOW)
11828 (XTERMINAL, XSUBR, XBUFFER, XCHAR_TABLE, XSUB_CHAR_TABLE, XBOOL_VECTOR)
11829 (XSETTYPED_PSEUDOVECTOR, XHASH_TABLE, TYPED_PSEUDOVECTORP): Use it.
11830 * eval.c (Fautoload):
11831 * font.h (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT):
11832 * frame.h (XFRAME): Use XUNTAG.
11833
11834 Port recent dbusbind.c changes to 32-bit --with-wide-int.
11835 * dbusbind.c (xd_append_arg, xd_retrieve_arg, Fdbus_message_internal):
11836 Remove unportable assumptions about print widths of types like
11837 dbus_uint32_t.
11838 (xd_get_connection_address, Fdbus_init_bus): Cast Emacs integer to
11839 intptr_t when converting between pointer and integer, to avoid GCC
11840 warnings about wrong width.
11841
11842 2012-05-09 Eli Zaretskii <eliz@gnu.org>
11843
11844 * w32proc.c (new_child): Force Windows to reserve only 64KB of
11845 stack for each reader_thread, instead of defaulting to 8MB
11846 determined by the linker. This avoids failures in creating
11847 subprocesses on Windows 7, see the discussion in this thread:
11848 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00119.html.
11849
11850 2012-05-07 Jérémy Compostella <jeremy.compostella@gmail.com>
11851
11852 Fix up display of the *Minibuf-0* buffer in the mini window.
11853 * keyboard.c (read_char): Don't clear the echo area if there's no
11854 message to clear.
11855 * xdisp.c (redisplay_internal): Redisplay the mini window (with the
11856 contents of *Minibuf-0*) if there's no message displayed in its stead.
11857
11858 2012-05-07 Michael Albinus <michael.albinus@gmx.de>
11859
11860 * dbusbind.c (XD_DEBUG_MESSAGE): Don't print message twice in
11861 batch mode.
11862
11863 2012-05-06 Chong Yidong <cyd@gnu.org>
11864
11865 * lisp.mk (lisp): Update.
11866
11867 2012-05-05 Jim Meyering <meyering@redhat.com>
11868
11869 * w32font.c (fill_in_logfont): NUL-terminate a string (Bug#11372).
11870
11871 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
11872
11873 * data.c (PUT_ERROR): New macro.
11874 (syms_of_data): Use it. Add new error type `user-error'.
11875 * undo.c (user_error): New function.
11876 (Fprimitive_undo): Use it.
11877 * print.c (print_error_message): Adjust print style for `user-error'.
11878 * keyboard.c (user_error): New function.
11879 (Fexit_recursive_edit, Fabort_recursive_edit): Use it.
11880
11881 2012-05-03 Paul Eggert <eggert@cs.ucla.edu>
11882
11883 Do not limit current-time-string to years 1000..9999.
11884 * editfns.c (TM_YEAR_IN_ASCTIME_RANGE): Remove.
11885 (Fcurrent_time_string): Support any year that is supported by the
11886 underlying localtime representation. Don't use asctime, as it
11887 has undefined behavior for years outside the range -999..9999.
11888
11889 2012-05-02 Paul Eggert <eggert@cs.ucla.edu>
11890
11891 Fix race conditions involving setenv, gmtime, localtime, asctime.
11892 Without this fix, interrupts could mess up code that uses these
11893 nonreentrant functions, since setting TZ invalidates existing
11894 tm_zone or tzname values, and since most of these functions return
11895 pointers to static storage.
11896 * editfns.c (format_time_string, Fdecode_time, Fencode_time)
11897 (Fcurrent_time_string, Fcurrent_time_zone, Fset_time_zone_rule):
11898 Grow the critical sections to include not just invoking
11899 localtime/gmtime, but also accessing these functions' results
11900 including their tm_zone values if any, and any related TZ setting.
11901 (format_time_string): Last arg is now struct tm *, not struct tm **,
11902 so that the struct tm is saved in the critical section.
11903 All callers changed. Simplify allocation of initial buffer, partly
11904 motivated by the fact that memory allocation needs to be outside
11905 the critical section.
11906
11907 2012-05-02 Dmitry Antipov <dmantipov@yandex.ru>
11908
11909 * intervals.c (adjust_intervals_for_insertion): Initialize `newi'
11910 with RESET_INTERVAL.
11911
11912 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
11913 Remove duplicated buffer name initialization.
11914
11915 2012-05-02 Jim Meyering <jim@meyering.net>
11916
11917 * xterm.c (x_term_init): Use memcpy instead of strncpy (Bug#11373).
11918
11919 * xfns.c (x_window): Use xstrdup (Bug#11375).
11920
11921 2012-05-02 Eli Zaretskii <eliz@gnu.org>
11922
11923 * xdisp.c (pos_visible_p): If already at a newline from the
11924 display string before the 'while' loop, don't walk back the glyphs
11925 from it3.glyph_row. Solves assertion violation when the display
11926 string begins with a newline (egg.el). (Bug#11367)
11927
11928 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
11929
11930 * keyboard.c (Fexecute_extended_command, Vsuggest_key_bindings):
11931 Move to simple.el.
11932
11933 2012-05-01 Glenn Morris <rgm@gnu.org>
11934
11935 * syssignal.h: Remove reference to BROKEN_SIGINFO (last used in
11936 s/ptx4.h), BROKEN_SIGTSTP (last used in m/ustation.h, m/dpx2.h),
11937 and BROKEN_SIGURG (was in s/gnu-linux.h prior to 2008-02-10).
11938 All were removed before 23.1.
11939
11940 * dispnew.c: Remove HAVE_LIBNCURSES test;
11941 it is always true on relevant platforms.
11942
11943 * Makefile.in (LD_SWITCH_X_SITE_RPATH):
11944 Rename from LD_SWITCH_X_SITE_AUX_RPATH.
11945
11946 * Makefile.in (LD_SWITCH_X_SITE_AUX): Remove; no longer used.
11947
11948 2012-04-30 Andreas Schwab <schwab@linux-m68k.org>
11949
11950 * .gdbinit (xpr): Remove checks for no longer existing misc types.
11951 (xintfwd, xboolfwd, xobjfwd, xbufobjfwd, xkbobjfwd, xbuflocal):
11952 Remove.
11953
11954 2012-04-28 Paul Eggert <eggert@cs.ucla.edu>
11955
11956 Do not avoid creating empty evaporating overlays (Bug#9642).
11957 * buffer.c (Fmove_overlay): Revert the change of 2012-04-23.
11958 That is, do not delete an evaporating overlay if it becomes
11959 empty after its bounds are adjusted to fit within its buffer.
11960 This fix caused other problems, and I'm reverting it until we get
11961 to the bottom of them.
11962
11963 2012-04-27 Chong Yidong <cyd@gnu.org>
11964
11965 * xselect.c (x_convert_selection): Initialize a pointer (Bug#11315).
11966
11967 2012-04-27 Eli Zaretskii <eliz@gnu.org>
11968
11969 * xdisp.c (pos_visible_p): If the window start position is beyond
11970 ZV, start the display from buffer beginning. Prevents assertion
11971 violation in init_iterator when the minibuffer window is scrolled
11972 via the scroll bar.
11973
11974 * window.c (window_scroll_pixel_based): Likewise.
11975
11976 2012-04-27 Chong Yidong <cyd@gnu.org>
11977
11978 * keymap.c (where_is_internal): Doc fix (Bug#10872).
11979
11980 2012-04-27 Glenn Morris <rgm@gnu.org>
11981
11982 * fileio.c (Fcopy_file, Fset_file_selinux_context):
11983 Ignore ENOTSUP failures from setfilecon functions. (Bug#11245)
11984
11985 2012-04-27 Eli Zaretskii <eliz@gnu.org>
11986
11987 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers):
11988 Don't overrun array limits of glyph row's used[] array. (Bug#11288)
11989
11990 2012-04-26 Eli Zaretskii <eliz@gnu.org>
11991
11992 * xdisp.c (IT_DISPLAYING_WHITESPACE): In addition to the loaded
11993 display element, check also the underlying string or buffer
11994 character. (Bug#11341)
11995
11996 * w32menu.c: Include w32heap.h.
11997 (add_menu_item): If the call to AppendMenuW (via
11998 unicode_append_menu) fails, disable Unicode menus only if we are
11999 running on Windows 9X/Me.
12000
12001 2012-04-24 Andreas Schwab <schwab@linux-m68k.org>
12002
12003 * .gdbinit (xpr): Handle USE_2_TAGS_FOR_INTS.
12004 (xgetint): Add missing shift for LSB tags.
12005
12006 2012-04-24 Martin Rudalics <rudalics@gmx.at>
12007
12008 * keyboard.c (read_char): Don't wipe echo area for select window
12009 events: These might get delayed via `mouse-autoselect-window'
12010 (Bug#11304).
12011
12012 2012-04-24 Juanma Barranquero <lekktu@gmail.com>
12013
12014 * gnutls.c (init_gnutls_functions): Protect against (unlikely)
12015 manipulation of :loaded-from data.
12016
12017 2012-04-23 Juanma Barranquero <lekktu@gmail.com>
12018
12019 * gnutls.c (init_gnutls_functions): The value of :loaded-from is
12020 now a cons (bug#11311).
12021
12022 2012-04-23 Paul Eggert <eggert@cs.ucla.edu>
12023
12024 Do not create empty overlays with the evaporate property (Bug#9642).
12025 * buffer.c (Fmove_overlay): Delete an evaporating overlay
12026 if it becomes empty after its bounds are adjusted to fit within
12027 its buffer. Without this fix, in a nonempty buffer (let ((o
12028 (make-overlay 1 2))) (overlay-put o 'evaporate t) (move-overlay o 0 1))
12029 yields an empty overlay that has the evaporate property, which is
12030 not supposed to happen.
12031
12032 Fix minor GTK3 problems found by static checking.
12033 * emacsgtkfixed.c (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
12034 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
12035 (struct _EmacsFixedClass, emacs_fixed_get_type):
12036 Move decls here from emacsgtkfixed.h, since they needn't be public.
12037 (emacs_fixed_get_type): Now static.
12038 (emacs_fixed_class_init): Omit unused local.
12039 (emacs_fixed_child_type): Remove; unused.
12040 * emacsgtkfixed.h (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
12041 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
12042 (struct _EmacsFixedClass): Move to emacsgtkfixed.c.
12043 (EMACS_FIXED_CLASS, EMACS_IS_FIXED, EMACS_IS_FIXED_CLASS)
12044 (EMACS_FIXED_GET_CLASS): Remove; unused.
12045 * gtkutil.c (xg_create_frame_widgets) [!HAVE_GTK3]: Omit unused local.
12046
12047 * keyboard.c (handle_async_input): Define only if SYNC_INPUT || SIGIO.
12048 Problem reported by Juanma Barranquero for Windows -Wunused-function.
12049
12050 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
12051
12052 Modernize and clean up gmalloc.c to assume C89 (Bug#9119).
12053 * gmalloc.c (_MALLOC_INTERNAL, _MALLOC_H, _PP, __ptr_t)
12054 (__malloc_size_t, __malloc_ptrdiff_t):
12055 Remove. All uses removed, replaced by the definiens if needed,
12056 since we can assume C89 or better now.
12057 Include <stdint.h>, for PTRDIFF_MAX, uintptr_t.
12058 (protect_malloc_state, align, get_contiguous_space)
12059 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
12060 (malloc_atfork_handler_child, malloc_enable_thread)
12061 (malloc_initialize_1, __malloc_initialize, morecore_nolock)
12062 (_malloc_internal_nolock, _malloc_internal, malloc, _malloc)
12063 (_free, _realloc, _free_internal_nolock, _free_internal, free, cfree)
12064 (special_realloc, _realloc_internal_nolock, _realloc_internal)
12065 (realloc, calloc, __default_morecore, memalign, valloc, checkhdr)
12066 (freehook, mallochook, reallochook, mabort, mcheck, mprobe):
12067 Define using prototypes, not old style.
12068 (align, _malloc_internal_nolock, _free_internal_nolock, memalign):
12069 Don't assume ptrdiff_t and uintptr_t are no wider than unsigned long.
12070 (align): Don't assume that signed integer overflow wraps around.
12071 Omit unused local var.
12072 (malloc_initialize_1, morecore_nolock, _malloc_internal_nolock)
12073 (_free_internal_nolock, memalign, mallochook, reallochook):
12074 Omit no-longer-needed casts.
12075 (valloc): Use getpagesize, not __getpagesize.
12076 (MAGICWORD, MAGICFREE): Now randomish size_t values, not 32-bit.
12077 (struct hdr): The 'magic' member is now size_t, not unsigned long.
12078
12079 * dbusbind.c (XD_DBUS_VALIDATE_OBJECT): Define only if needed.
12080
12081 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
12082
12083 Move functions from C to Lisp. Make non-blocking method calls
12084 the default. Implement further D-Bus standard interfaces.
12085
12086 * dbusbind.c (DBUS_NUM_MESSAGE_TYPES): Declare.
12087 (QCdbus_request_name_allow_replacement)
12088 (QCdbus_request_name_replace_existing)
12089 (QCdbus_request_name_do_not_queue)
12090 (QCdbus_request_name_reply_primary_owner)
12091 (QCdbus_request_name_reply_in_queue)
12092 (QCdbus_request_name_reply_exists)
12093 (QCdbus_request_name_reply_already_owner): Move to dbus.el.
12094 (QCdbus_registered_serial, QCdbus_registered_method)
12095 (QCdbus_registered_signal): New Lisp objects.
12096 (XD_DEBUG_MESSAGE): Use sizeof.
12097 (XD_MESSAGE_TYPE_TO_STRING, XD_OBJECT_TO_STRING)
12098 (XD_DBUS_VALIDATE_BUS_ADDRESS, XD_DBUS_VALIDATE_OBJECT)
12099 (XD_DBUS_VALIDATE_BUS_NAME, XD_DBUS_VALIDATE_PATH)
12100 (XD_DBUS_VALIDATE_INTERFACE, XD_DBUS_VALIDATE_MEMBER): New macros.
12101 (XD_CHECK_DBUS_SERIAL): Rename from CHECK_DBUS_SERIAL_GET_SERIAL.
12102 (xd_signature, xd_append_arg): Allow float for integer types.
12103 (xd_get_connection_references): New function.
12104 (xd_get_connection_address): Rename from xd_initialize.
12105 Return cached address.
12106 (xd_remove_watch): Do not unset $DBUS_SESSION_BUS_ADDRESS.
12107 (xd_close_bus): Rename from Fdbus_close_bus. Not needed on Lisp
12108 level.
12109 (Fdbus_init_bus): New optional arg PRIVATE. Cache address.
12110 Return number of refcounts.
12111 (Fdbus_get_unique_name): Make stronger parameter check.
12112 (Fdbus_message_internal): New defun.
12113 (Fdbus_call_method, Fdbus_call_method_asynchronously)
12114 (Fdbus_method_return_internal, Fdbus_method_error_internal)
12115 (Fdbus_send_signal, Fdbus_register_service)
12116 (Fdbus_register_signal, Fdbus_register_method): Move to dbus.el.
12117 (xd_read_message_1): Obey new structure of Vdbus_registered_objects.
12118 (xd_read_queued_messages): Obey new structure of Vdbus_registered_buses.
12119 (Vdbus_compiled_version, Vdbus_runtime_version)
12120 (Vdbus_message_type_invalid, Vdbus_message_type_method_call)
12121 (Vdbus_message_type_method_return, Vdbus_message_type_error)
12122 (Vdbus_message_type_signal): New defvars.
12123 (Vdbus_registered_buses, Vdbus_registered_objects_table):
12124 Adapt docstring.
12125
12126 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
12127
12128 Fix GC_MALLOC_CHECK debugging output on 64-bit hosts.
12129 * alloc.c (emacs_blocked_malloc) [GC_MALLOC_CHECK]:
12130 Do not assume ptrdiff_t is the same width as 'int'.
12131
12132 * alloc.c: Handle unusual debugging option combinations.
12133 (GC_CHECK_MARKED_OBJECTS): Undef if ! GC_MARK_STACK,
12134 since the two debugging options are incompatible.
12135 (GC_MALLOC_CHECK): Similarly, undef if GC_CHECK_MARKED_OBJECTS
12136 is defined.
12137 (mem_init, mem_insert, mem_insert_fixup):
12138 Define if GC_MARK_STACK || GC_MALLOC_CHECK.
12139 (NEED_MEM_INSERT): Remove; no longer needed.
12140
12141 2012-04-22 Leo Liu <sdl.web@gmail.com>
12142
12143 * sysdep.c (list_system_processes): Support Darwin (Bug#5725).
12144
12145 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
12146
12147 * sysdep.c [__FreeBSD__]: Minor cleanups.
12148 (list_system_processes, system_process_attributes) [__FreeBSD__]:
12149 Use Emacs indenting style more consistently. Avoid some casts.
12150 Use 'double' consistently rather than mixing 'float' and 'double'.
12151
12152 2012-04-21 Eduard Wiebe <usenet@pusto.de>
12153
12154 * sysdep.c (list_system_processes, system_process_attributes):
12155 Add implementation for FreeBSD (Bug#5243).
12156
12157 2012-04-21 Andreas Schwab <schwab@linux-m68k.org>
12158
12159 * lisp.mk (lisp): Update.
12160
12161 2012-04-20 Paul Eggert <eggert@cs.ucla.edu>
12162
12163 * keyboard.c (process_pending_signals): Define only if SYNC_INPUT.
12164 It is never used otherwise.
12165
12166 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
12167
12168 * print.c (print_preprocess): Only check print_depth if print-circle
12169 is nil.
12170 (print_object): Check for cycles even when print-circle is nil and
12171 print-gensym is t, but only check print_depth if print-circle is nil.
12172
12173 2012-04-20 Chong Yidong <cyd@gnu.org>
12174
12175 * process.c (wait_reading_process_output): If EIO occurs on a pty,
12176 set the status to "failed" and ensure that sentinel is run.
12177
12178 2012-04-20 Glenn Morris <rgm@gnu.org>
12179
12180 * process.c (Fset_process_inherit_coding_system_flag)
12181 (Fset_process_query_on_exit_flag): Doc fix (mention return value).
12182 (Fmake_network_process, Fmake_serial_process): Doc fix.
12183
12184 2012-04-20 Eli Zaretskii <eliz@gnu.org>
12185
12186 * xdisp.c (string_buffer_position_lim): Limit starting position to
12187 BEGV.
12188 (set_cursor_from_row): If called for a mode-line or header-line
12189 row, return zero immediately.
12190 (try_cursor_movement): If inside continuation line, don't back up
12191 farther than the first row after the header line, if any.
12192 Don't consider the header-line row as "partially visible", even if
12193 MATRIX_ROW_PARTIALLY_VISIBLE_P returns non-zero. (Bug#11261)
12194
12195 2012-04-20 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
12196
12197 * lread.c (lisp_file_lexically_bound_p): Fix hang at ";-*-\n"
12198 (bug#11238).
12199
12200 2012-04-20 Teodor Zlatanov <tzz@lifelogs.com>
12201 2012-04-18 Paul Eggert <eggert@cs.ucla.edu>
12202
12203 configure: new option --enable-gcc-warnings (Bug#11207)
12204 * Makefile.in (C_WARNINGS_SWITCH): Remove.
12205 (WARN_CFLAGS, WERROR_CFLAGS): New macros.
12206 (ALL_CFLAGS): Use new macros rather than old.
12207 * process.c: Ignore -Wstrict-overflow to work around GCC bug 52904.
12208 * regex.c: Ignore -Wstrict-overflow. If !emacs, also ignore
12209 -Wunused-but-set-variable, -Wunused-function, -Wunused-macros,
12210 -Wunused-result, -Wunused-variable. This should go away once
12211 the Emacs and Gnulib regex code is merged.
12212 (xmalloc, xrealloc): Now static.
12213
12214 2012-04-17 Paul Eggert <eggert@cs.ucla.edu>
12215
12216 * dired.c (Fsystem_groups): Remove unused local.
12217
12218 2012-04-17 Glenn Morris <rgm@gnu.org>
12219
12220 * dired.c (Fsystem_users): Doc fix.
12221
12222 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
12223
12224 * dired.c (Fsystem_users, Fsystem_groups): New functions. (Bug#7900)
12225 (syms_of_dired): Add them.
12226
12227 2012-04-16 Paul Eggert <eggert@cs.ucla.edu>
12228
12229 Fix minor alloc.c problems found by static checking.
12230 * alloc.c (_malloc_internal, _free_internal) [!DOUG_LEA_MALLOC]:
12231 New extern decls, to avoid calling undeclared functions.
12232 (dont_register_blocks): Define if ((!SYSTEM_MALLOC && !SYNC_INPUT)
12233 && GC_MALLOC_CHECK), not if ((GC_MARK_STACK || defined
12234 GC_MALLOC_CHECK) && GC_MALLOC_CHECK), to match when it's used.
12235 (NEED_MEM_INSERT): New macro.
12236 (mem_insert, mem_insert_fixup) [!NEED_MEM_INSERT]: Remove; unused.
12237 Remove one incorrect comment and fix another.
12238
12239 Fix minor ralloc.c problems found by static checking.
12240 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
12241 * ralloc.c (ALIGNED, ROUND_TO_PAGE, HEAP_PTR_SIZE)
12242 (r_alloc_size_in_use, r_alloc_freeze, r_alloc_thaw): Remove; unused.
12243 (r_alloc_sbrk): Now static.
12244
12245 Improve ralloc.c interface checking.
12246 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
12247 * buffer.c (ralloc_reset_variable, r_alloc, r_re_alloc)
12248 (r_alloc_free) [REL_ALLOC]: Move decls from here ...
12249 * lisp.h (r_alloc, r_alloc_free, r_re_alloc, r_alloc_reset_variable)
12250 [REL_ALLOC]: ... to here, to check interface.
12251 * m/ia64.h (r_alloc, r_alloc_free) [REL_ALLOC && !_MALLOC_INTERNAL]:
12252 Remove decls. This fixes an "It stinks!".
12253
12254 * alloc.c (which_symbols): Fix alignment issue / type clash.
12255
12256 2012-04-15 Andreas Schwab <schwab@linux-m68k.org>
12257
12258 * lisp.h (struct Lisp_Symbol): Remove explicit padding.
12259 (struct Lisp_Misc_Any): Likewise.
12260 (struct Lisp_Free): Likewise.
12261 * alloc.c (union aligned_Lisp_Symbol): Define.
12262 (SYMBOL_BLOCK_SIZE, struct symbol_block): Use union
12263 aligned_Lisp_Symbol instead of struct Lisp_Symbol.
12264 (union aligned_Lisp_Misc): Define.
12265 (MARKER_BLOCK_SIZE, struct marker_block): Use union
12266 aligned_Lisp_Misc instead of union Lisp_Misc.
12267 (Fmake_symbol, allocate_misc, gc_sweep): Adjust.
12268
12269 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
12270
12271 Make GC_MAKE_GCPROS_NOOPS the default (Bug#9926).
12272 * lisp.h (GC_MARK_STACK): Default to GC_MAKE_GCPROS_NOOPS.
12273 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/gnu.h, s/irix6-5.h, s/msdos.h:
12274 * s/netbsd.h, s/sol2-6.h:
12275 Remove definition of GC_MARK_STACK, since the default now works.
12276 * s/aix4-2.h, s/hpux10-20.h, s/unixware.h:
12277 Define GC_MARK_STACK to GC_USE_GCPROS_AS_BEFORE, since that's
12278 no longer the default.
12279 * s/gnu-linux.h (GC_MARK_STACK): Adjust to change in default.
12280
12281 2012-04-14 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
12282
12283 * lread.c (lisp_file_lexically_bound_p):
12284 Fix hang at ";-*-\n" (bug#11238).
12285
12286 2012-04-14 Eli Zaretskii <eliz@gnu.org>
12287
12288 * xdisp.c (find_last_unchanged_at_beg_row): Don't consider a row
12289 "unchanged" if its end.pos is beyond ZV. (Bug#11199)
12290
12291 2012-04-14 Jan Djärv <jan.h.d@swipnet.se>
12292
12293 * nsterm.m (constrainFrameRect): Always constrain when there is only
12294 one screen (Bug#10962).
12295
12296 2012-04-13 Ken Brown <kbrown@cornell.edu>
12297
12298 * s/cygwin.h (PTY_OPEN): Don't try to close a bogus file descriptor.
12299
12300 2012-04-13 Reuben Thomas <rrt@sc3d.org>
12301
12302 * indent.c (Fmove_to_column): Change interactive spec (Bug#739).
12303
12304 2012-04-11 Daniel Colascione <dancol@dancol.org>
12305
12306 * s/cygwin.h: The vfork the #define in cygwin.h was protecting
12307 against is gone. It's better to use vfork now so that when Cygwin
12308 gains a new, working vfork, we use it automatically (bug#10398).
12309
12310 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
12311
12312 * window.c (save_window_save): Obey window-point-insertion-type.
12313
12314 2012-04-11 Glenn Morris <rgm@gnu.org>
12315
12316 * Makefile.in (GNUSTEP_CFLAGS): Rename from C_SWITCH_X_SYSTEM.
12317
12318 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
12319
12320 * alloc.c (lisp_align_malloc): Remove unneeded prototype.
12321
12322 2012-04-10 Jason S. Cornez <jcornez@ravenpack.com> (tiny change)
12323
12324 * keyboard.c: Override inhibit-quit after the third C-g (bug#6585).
12325 (force_quit_count): New var.
12326 (handle_interrupt): Use it.
12327
12328 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
12329
12330 * w32.c (w32_delayed_load): Record the full path of the library
12331 being loaded (bug#10424).
12332
12333 2012-04-09 Glenn Morris <rgm@gnu.org>
12334
12335 * doc.c (Fsnarf_documentation): Check variables, functions are bound,
12336 not just in the obarray, before snarfing them. (Bug#11036)
12337
12338 * Makefile.in ($(leimdir)/leim-list.el):
12339 Pass EMACS rather than BUILT_EMACS.
12340
12341 2012-04-09 Teodor Zlatanov <tzz@lifelogs.com>
12342
12343 * process.c (make_process):
12344 * process.h: Add integer `gnutls_handshakes_tried' member to
12345 process struct.
12346
12347 * gnutls.h: Add `GNUTLS_EMACS_HANDSHAKES_LIMIT' upper limit.
12348 Add convenience `GNUTLS_LOG2i' macro.
12349
12350 * gnutls.c (gnutls_log_function2i): Convenience log function.
12351 (emacs_gnutls_read): Use new log functions,
12352 `gnutls_handshakes_tried' process member, and
12353 `GNUTLS_EMACS_HANDSHAKES_LIMIT' to limit the number of handshake
12354 attempts per process (connection).
12355
12356 2012-04-09 Chong Yidong <cyd@gnu.org>
12357
12358 * eval.c (Fuser_variable_p, user_variable_p_eh)
12359 (lisp_indirect_variable): Functions deleted.
12360 (Fdefvar): Caller changed.
12361
12362 * callint.c (Finteractive, Fcall_interactively):
12363 * minibuf.c (Fread_variable): Callers changed.
12364
12365 2012-04-09 Eli Zaretskii <eliz@gnu.org>
12366
12367 * xdisp.c (set_cursor_from_row): If the display string appears in
12368 the buffer at position that is closer to point than the position
12369 after the display string, display the cursor on the first glyph of
12370 the display string. Fixes cursor display when a 'display' text
12371 property immediately follows invisible text. (Bug#11094)
12372
12373 2012-04-09 Paul Eggert <eggert@cs.ucla.edu>
12374
12375 composite.c: use 'double' consistently
12376 * composite.c (get_composition_id): Use 'double' consistently
12377 instead of converting 'float' to 'double' and vice versa; this is
12378 easier to understand and avoids a GCC warning.
12379
12380 2012-04-09 Glenn Morris <rgm@gnu.org>
12381
12382 * Makefile.in: Generate leim-list with bootstrap-emacs, in
12383 preparation for dumping it with emacs. (Bug#4789)
12384 (leimdir): New variable.
12385 ($(leimdir)/leim-list.el): New rule.
12386 (emacs$(EXEEXT)): Depend on leim-list.el.
12387
12388 * buffer.c (Qucs_set_table_for_input): Remove. (Bug#9821)
12389 (Fget_buffer_create): Don't call Qucs_set_table_for_input.
12390 (init_buffer_once, syms_of_buffer): Remove Qucs_set_table_for_input.
12391
12392 2012-04-08 Andreas Schwab <schwab@linux-m68k.org>
12393
12394 * lisp.h (struct Lisp_Symbol): Add explicit padding to ensure
12395 proper alignment.
12396
12397 2012-04-07 Juanma Barranquero <lekktu@gmail.com>
12398
12399 * xml.c (init_libxml2_functions) [WINDOWSNT]:
12400 Remove unused local variable.
12401
12402 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
12403
12404 Avoid unnecessary pointer scanning in garbage collection (Bug#10780).
12405 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS): New macro.
12406 (mark_memory): Mark Lisp_Objects only if pointers might hide in
12407 objects, as mark_maybe_pointer will catch them otherwise.
12408 (GC_LISP_OBJECT_ALIGNMENT): Remove; no longer needed.
12409 * s/gnu-linux.h (GC_LISP_OBJECT_ALIGNMENT) [__mc68000__]: Likewise.
12410
12411 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
12412
12413 Fix typo that broke non-Windows builds.
12414 * xml.c (libxml2_loaded_p) [!!WINDOWSNT]: 'inine' -> 'inline'.
12415
12416 2012-04-07 Eli Zaretskii <eliz@gnu.org>
12417
12418 Support building on MS-Windows with libxml2.
12419
12420 * makefile.w32-in (OBJ2): Add xml.$(O).
12421 (GLOBAL_SOURCES): Add xml.c.
12422 ($(BLD)/xml.$(O)): New dependency list.
12423
12424 * xml.c (DEF_XML2_FN, LOAD_XML2_FN) [WINDOWSNT]: New macros.
12425 (fn_htmlReadMemory, fn_xmlReadMemory, fn_xmlDocGetRootElement)
12426 (fn_xmlFreeDoc, fn_xmlCleanupParser, fn_xmlCheckVersion)
12427 [!WINDOWSNT]: New macros.
12428 (init_libxml2_functions, libxml2_loaded_p): New functions.
12429 (parse_region): Call fn_xmlCheckVersion instead of using the macro
12430 LIBXML_TEST_VERSION. Call libxml2 functions via the fn_* macros.
12431 (xml_cleanup_parser): New function, export for fn_xmlCleanupParser.
12432 Calls xmlCleanupParser only if libxml2 was loaded (or statically
12433 linked in).
12434 (Flibxml_parse_html_region, Flibxml_parse_xml_region):
12435 Call init_libxml2_functions before calling libxml2 functions.
12436 (syms_of_xml) <Qlibxml2_dll>: DEFSYM it.
12437
12438 * emacs.c: Don't include libxml/parser.h.
12439 (shut_down_emacs): Call xml_cleanup_parser, instead of calling
12440 xmlCleanupParser directly.
12441
12442 * lisp.h [HAVE_LIBXML2]: Add prototype for xml_cleanup_parser.
12443
12444 2012-04-07 Eli Zaretskii <eliz@gnu.org>
12445
12446 * indent.c (Fvertical_motion): If there is a display string at
12447 point, use it.vpos to compute how many lines to backtrack after
12448 move_it_to point. (Bug#11133)
12449
12450 2012-04-06 Eli Zaretskii <eliz@gnu.org>
12451
12452 * buffer.h (FETCH_CHAR, FETCH_MULTIBYTE_CHAR):
12453 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH): Add comments
12454 about subtle differences between FETCH_CHAR* and STRING_CHAR*
12455 macros related to unification of CJK characters. For the details,
12456 see the discussion following the message here:
12457 http://debbugs.gnu.org/cgi/bugreport.cgi?bug=11073#14.
12458
12459 2012-04-04 Chong Yidong <cyd@gnu.org>
12460
12461 * keyboard.c (Vdelayed_warnings_list): Doc fix.
12462
12463 2012-04-01 Eli Zaretskii <eliz@gnu.org>
12464
12465 * w32menu.c (simple_dialog_show, add_menu_item): Use SAFE_ALLOCA
12466 instead of alloca. (Bug#11138)
12467
12468 2012-04-01 Andreas Schwab <schwab@linux-m68k.org>
12469
12470 * w32menu.c (is_simple_dialog): Properly check lisp types.
12471 (Bug#11141)
12472
12473 2012-03-31 Eli Zaretskii <eliz@gnu.org>
12474
12475 * xdisp.c (move_it_by_lines): When DVPOS is positive, and the
12476 position we get to after a call to move_it_to fails the
12477 IS_POS_VALID_AFTER_MOVE_P test, move to the next buffer position
12478 only if we wind up in a string from display property. (Bug#11063)
12479
12480 * window.c (Fdelete_other_windows_internal): Invalidate the row
12481 and column information about mouse highlight, so that redisplay
12482 restores it after reallocating the glyph matrices. (Bug#7464)
12483
12484 * xdisp.c (set_cursor_from_row): If `cursor' property on a display
12485 string comes from a `display' text property, use the buffer
12486 position of that property as if we actually saw that position in
12487 the row's glyphs.
12488 (move_it_by_lines): Remove the assertion that
12489 "it->current_x == 0 && it->hpos == 0" which can be legitimately
12490 violated when there's a before-string at the beginning of a line.
12491 (Bug#11063)
12492
12493 2012-03-30 Eli Zaretskii <eliz@gnu.org>
12494
12495 * xdisp.c (append_space_for_newline): If the default face was
12496 remapped, use the remapped face for the appended newline.
12497 (extend_face_to_end_of_line): Use the remapped default face for
12498 extending the face to the end of the line.
12499 (display_line): Call extend_face_to_end_of_line when the default
12500 face was remapped. (Bug#11068)
12501
12502 2012-03-29 Eli Zaretskii <eliz@gnu.org>
12503
12504 * s/ms-w32.h: Discourage from defining HAVE_GETCWD.
12505
12506 2012-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
12507
12508 * keyboard.c (safe_run_hooks_error): Don't unquote strings.
12509
12510 2012-03-27 Glenn Morris <rgm@gnu.org>
12511
12512 * search.c (Fword_search_backward_lax, Fword_search_forward_lax):
12513 Doc fixes.
12514
12515 2012-03-26 Kenichi Handa <handa@m17n.org>
12516
12517 * dispextern.h (struct glyph): Fix previous change. Change the
12518 bit length of glyphless.ch to 25 (Bug#11082).
12519
12520 2012-03-26 Chong Yidong <cyd@gnu.org>
12521
12522 * keyboard.c (Vselection_inhibit_update_commands): New variable.
12523 (command_loop_1): Use it; inhibit selection update for
12524 handle-select-window too (Bug#8996).
12525
12526 2012-03-25 Fabrice Popineau <fabrice.popineau@supelec.fr>
12527
12528 * w32heap.c (_heap_init, _heap_term): Remove dead MSVC-specific code.
12529
12530 2012-03-25 Kenichi Handa <handa@m17n.org>
12531
12532 * dispextern.h (struct glyph): Change the bit length of
12533 glyphless.ch to 22 to make the member glyphless fit in 32 bits.
12534
12535 2012-03-24 Eli Zaretskii <eliz@gnu.org>
12536
12537 * s/ms-w32.h (tzname): Include time.h before redirecting to
12538 _tzname. Fixes the MSVC build. (Bug#9960)
12539
12540 2012-03-24 Andreas Schwab <schwab@linux-m68k.org>
12541
12542 * xdisp.c (produce_glyphless_glyph): Limit length of acronym to 6
12543 characters.
12544
12545 * xterm.c (XTread_socket): Only modify handling_signal if
12546 !SYNC_INPUT. (Bug#11080)
12547
12548 2012-03-23 Eli Zaretskii <eliz@gnu.org>
12549
12550 * bidi.c (bidi_fetch_char): Use STRING_CHAR_AND_LENGTH instead of
12551 FETCH_MULTIBYTE_CHAR followed by CHAR_BYTES. Prevents crashes
12552 when fetching a multibyte character consumes more bytes than
12553 CHAR_BYTES returns, due to unification of CJK characters in
12554 string_char. (Bug#11073)
12555
12556 2012-03-23 Troels Nielsen <bn.troels@gmail.com> (tiny change)
12557
12558 * process.c (wait_reading_process_output): Handle pty disconnect
12559 by refraining from sending oneself a SIGCHLD (bug#10933).
12560
12561 2012-03-22 Chong Yidong <cyd@gnu.org>
12562
12563 * dispextern.h (struct it): New member string_from_prefix_prop_p.
12564
12565 * xdisp.c (push_prefix_prop): Rename from push_display_prop.
12566 Mark string as coming from a prefix property.
12567 (handle_face_prop): Use default face for prefix strings (Bug#4281).
12568 (pop_it, reseat_1): Save and restore string_from_prefix_prop_p.
12569
12570 2012-03-21 Chong Yidong <cyd@gnu.org>
12571
12572 * xfaces.c (Vface_remapping_alist): Doc fix.
12573
12574 2012-03-20 Eli Zaretskii <eliz@gnu.org>
12575
12576 * w32proc.c (Fw32_set_console_codepage)
12577 (Fw32_set_console_output_codepage, Fw32_get_codepage_charset):
12578 Doc fixes.
12579
12580 2012-03-20 Chong Yidong <cyd@gnu.org>
12581
12582 * dispnew.c (Fredisplay, Vredisplay_preemption_period): Update doc
12583 to reflect default non-nil value of redisplay-dont-pause.
12584
12585 2012-03-19 Kenichi Handa <handa@m17n.org>
12586
12587 * ftfont.c (ftfont_drive_otf): Mask bits of character code to make
12588 it fit in a valid range (Bug#11003).
12589
12590 2012-03-18 Eli Zaretskii <eliz@gnu.org>
12591
12592 * xdisp.c (cursor_row_p): Even if the glyph row ends in a string
12593 that is not from display property, accept the row as a "cursor
12594 row" if one of the string's character has a non-nil `cursor'
12595 property. Fixes cursor positioning when there are newlines in
12596 overlay strings, e.g. in icomplete.el. (Bug#11035)
12597
12598 2012-03-12 Paul Eggert <eggert@cs.ucla.edu>
12599
12600 * buffer.c (compare_overlays): Don't assume args differ (Bug#6830).
12601
12602 2012-03-12 Chong Yidong <cyd@gnu.org>
12603
12604 * eval.c (inhibit_lisp_code): Rename from
12605 inhibit_window_configuration_change_hook; move from window.c.
12606
12607 * xfns.c (unwind_create_frame_1, Fx_create_frame):
12608 * window.c (run_window_configuration_change_hook)
12609 (syms_of_window): Callers changed.
12610
12611 2012-03-11 Chong Yidong <cyd@gnu.org>
12612
12613 * keymap.c (Fkey_description): Doc fix (Bug#9700).
12614
12615 * editfns.c (Fconstrain_to_field): Doc fix (Bug#9452).
12616
12617 2012-03-10 Chong Yidong <cyd@gnu.org>
12618
12619 * frame.c (other_visible_frames): Don't assume the selected frame
12620 is visible (Bug#10955).
12621
12622 2012-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
12623
12624 * buffer.c (compare_overlays): Avoid qsort's instability (bug#6830).
12625
12626 2012-03-08 Jan Djärv <jan.h.d@swipnet.se>
12627
12628 * gtkutil.c (x_wm_set_size_hint): Use one row in call to
12629 FRAME_TEXT_LINES_TO_PIXEL_HEIGHT so base_height is greater than
12630 zero (Bug#10954).
12631
12632 2012-03-03 Glenn Morris <rgm@gnu.org>
12633
12634 * alloc.c (Fgarbage_collect, misc-objects-consed): Doc fixes.
12635
12636 2012-03-02 Eli Zaretskii <eliz@gnu.org>
12637
12638 * xdisp.c (try_window_reusing_current_matrix): Don't move cursor
12639 position past the first glyph_row that ends at ZV. (Bug#10902)
12640 (redisplay_window, next_element_from_string): Fix typos in
12641 comments.
12642 (redisplay_window): Pass to move_it_vertically the margin in
12643 pixels, not in screen lines.
12644
12645 2012-03-02 Glenn Morris <rgm@gnu.org>
12646
12647 * buffer.c (buffer-list-update-hook): Doc fix.
12648
12649 2012-02-29 Eli Zaretskii <eliz@gnu.org>
12650
12651 * xdisp.c (get_overlay_strings_1): Under bidi redisplay, call
12652 push_it before setting up the iterator for the first overlay
12653 string, even if we have an empty string loaded.
12654 (next_overlay_string): If there's an empty string on the iterator
12655 stack, pop the stack. (Bug#10903)
12656
12657 2012-02-25 Paul Eggert <eggert@cs.ucla.edu>
12658
12659 Generalize fix for crash due to non-contiguous EMACS_INT (Bug#10780).
12660 Suggested by Stefan Monnier in
12661 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00692.html>.
12662 * alloc.c (widen_to_Lisp_Object): New static function.
12663 (mark_memory): Also mark Lisp_Objects by fetching pointer words
12664 and widening them to Lisp_Objects. This would work even if
12665 USE_LSB_TAG is defined and wide integers are used, which might
12666 happen in a future version of Emacs.
12667
12668 2012-02-25 Chong Yidong <cyd@gnu.org>
12669
12670 * fileio.c (Ffile_selinux_context, Fset_file_selinux_context):
12671 Doc fix.
12672
12673 * xselect.c (Fx_selection_exists_p): Doc fix.
12674 (x_clipboard_manager_save_all): Print an informative message
12675 before saving to clipboard manager.
12676
12677 2012-02-24 Chong Yidong <cyd@gnu.org>
12678
12679 * keyboard.c (process_special_events): Handle all X selection
12680 requests in kbd_buffer, not just the next one (Bug#8869).
12681
12682 2012-02-23 Chong Yidong <cyd@gnu.org>
12683
12684 * xfns.c (Fx_create_frame): Avoid window-configuration-change-hook
12685 call when setting menu-bar-lines and tool-bar-lines parameters.
12686 (unwind_create_frame_1): New helper function.
12687
12688 * window.c (inhibit_window_configuration_change_hook): New var.
12689 (run_window_configuration_change_hook): Obey it.
12690 (syms_of_window): Initialize it.
12691
12692 2012-02-22 Chong Yidong <cyd@gnu.org>
12693
12694 * xterm.c (x_draw_image_relief): Add missing type check for
12695 Vtool_bar_button_margin (Bug#10743).
12696
12697 2012-02-21 Chong Yidong <cyd@gnu.org>
12698
12699 * fileio.c (Vfile_name_handler_alist): Doc fix.
12700
12701 * buffer.c (Fget_file_buffer): Protect against invalid file
12702 handler return value.
12703
12704 2012-02-20 Paul Eggert <eggert@cs.ucla.edu>
12705
12706 * .gdbinit (xreload): Don't assume EMACS_INT fits in 'long'
12707 when computing $valmask.
12708
12709 Fix crash due to non-contiguous EMACS_INT (Bug#10780).
12710 * lisp.h (VALBITS): Move definition up, so that USE_LSB_TAG can use it.
12711 (USE_LSB_TAG): Do not define if UINTPTR_MAX >> VALBITS == 0.
12712 It's useless in that case, and it can cause problems on hosts
12713 that allocate halves of EMACS_INT values separately.
12714 Reported by Dan Horák. Diagnosed by Andreas Schwab in
12715 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=10780#30>.
12716 * mem-limits.h (EXCEEDS_LISP_PTR): Define to 0 on hosts where
12717 UINTPTR_MAX >> VALBITS == 0. This is required by the above change;
12718 it avoids undefined behavior on hosts where shifting right by more
12719 than the word width has undefined behavior.
12720
12721 2012-02-19 Chong Yidong <cyd@gnu.org>
12722
12723 * fileio.c (Ffile_name_directory, Ffile_name_nondirectory)
12724 (Funhandled_file_name_directory, Ffile_name_as_directory)
12725 (Fdirectory_file_name, Fexpand_file_name)
12726 (Fsubstitute_in_file_name): Protect against invalid file handler
12727 return values (Bug#10845).
12728
12729 2012-02-18 Eli Zaretskii <eliz@gnu.org>
12730
12731 * .gdbinit (pitx): Fix incorrect references to fields of the
12732 iterator stack.
12733
12734 2012-02-17 Chong Yidong <cyd@gnu.org>
12735
12736 * syntax.c (Fscan_lists): Doc fix (Bug#10833).
12737
12738 2012-02-15 Paul Eggert <eggert@cs.ucla.edu>
12739
12740 * image.c (MAX_IMAGE_SIZE): Increase from 6.0 to 10.0; see
12741 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00540.html>.
12742
12743 2012-02-15 Chong Yidong <cyd@gnu.org>
12744
12745 * eval.c (Fdefvar, Fdefconst): Doc fix; note that the variable is
12746 marked as special. Also, starting docstrings with * is obsolete.
12747
12748 2012-02-13 Andreas Schwab <schwab@linux-m68k.org>
12749
12750 * gnutls.c (emacs_gnutls_write): Fix last change.
12751
12752 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
12753
12754 * gnutls.c (emacs_gnutls_write): Set errno appropriately for
12755 send_process.
12756
12757 2012-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
12758
12759 * keymap.c (Fsingle_key_description): Handle char ranges.
12760
12761 2012-02-12 Chong Yidong <cyd@gnu.org>
12762
12763 * xdisp.c (handle_stop): Avoid assigning -1 to it->face_id here,
12764 as that creates a dangerous corner case.
12765
12766 * window.c (Fdelete_window_internal): Invalidate the mouse
12767 highlight (Bug#9904).
12768
12769 2012-02-12 Glenn Morris <rgm@gnu.org>
12770
12771 * xselect.c (Fx_own_selection_internal)
12772 (Fx_get_selection_internal, Fx_disown_selection_internal)
12773 (Fx_selection_owner_p, Fx_selection_exists_p): Doc fixes.
12774 * nsselect.m (Fx_own_selection_internal)
12775 (Fx_disown_selection_internal, Fx_selection_exists_p)
12776 (Fx_selection_owner_p, Fx_get_selection_internal):
12777 Sync docs and argument specs with the xselect.c versions.
12778
12779 2012-02-11 Lars Ingebrigtsen <larsi@gnus.org>
12780
12781 * gnutls.c (emacs_gnutls_write): Don't infloop if sendto fails.
12782
12783 2012-02-11 Eli Zaretskii <eliz@gnu.org>
12784
12785 * w32select.c (Fx_selection_exists_p): Sync doc string and
12786 argument list with xselect.c. (Bug#10783)
12787
12788 * w16select.c (Fx_selection_exists_p): Sync doc string and
12789 argument list with xselect.c. (Bug#10783)
12790
12791 2012-02-10 Glenn Morris <rgm@gnu.org>
12792
12793 * fns.c (Fsecure_hash): Doc fix.
12794
12795 2012-02-09 Kenichi Handa <handa@m17n.org>
12796
12797 * coding.c (produce_chars): Fix updating of src_end (Bug#10701).
12798
12799 2012-02-07 Chong Yidong <cyd@gnu.org>
12800
12801 * buffer.c (Fbuffer_local_variables)
12802 (buffer_lisp_local_variables): Handle unbound vars correctly;
12803 don't let Qunbound leak into Lisp.
12804
12805 2012-02-07 Glenn Morris <rgm@gnu.org>
12806
12807 * image.c (Fimagemagick_types): Doc fix.
12808
12809 * image.c (imagemagick-render-type): Change it from a lisp object
12810 to an integer. Move the doc here from the lisp manual.
12811 Treat all values not equal to 0 the same.
12812
12813 2012-02-06 Chong Yidong <cyd@gnu.org>
12814
12815 * doc.c (store_function_docstring): Avoid applying docstring of
12816 alias to base function (Bug#2603).
12817
12818 2012-02-04 Andreas Schwab <schwab@linux-m68k.org>
12819
12820 * .gdbinit (pp1, pv1): Remove redundant defines.
12821 (pr): Use pp.
12822
12823 2012-02-04 Chong Yidong <cyd@gnu.org>
12824
12825 * nsterm.m: Declare a global (Bug#10694).
12826
12827 2012-02-04 Eli Zaretskii <eliz@gnu.org>
12828
12829 * w32.c (get_emacs_configuration_options):
12830 Include --enable-checking, if specified, in the return value.
12831
12832 2012-02-04 Martin Rudalics <rudalics@gmx.at>
12833
12834 * dispnew.c (change_frame_size_1): Calculate new_frame_total_cols
12835 after rounding frame sizes. (Bug#9723)
12836
12837 2012-02-04 Eli Zaretskii <eliz@gnu.org>
12838
12839 * keyboard.c (adjust_point_for_property): Don't position point
12840 before BEGV. (Bug#10696)
12841
12842 2012-02-03 Paul Eggert <eggert@cs.ucla.edu>
12843
12844 Handle overflow when computing char display width (Bug#9496).
12845 * character.c (char_width): Return EMACS_INT, not int.
12846 (char_width, c_string_width): Check for overflow when
12847 computing the width; this is possible now that individual
12848 characters can have unbounded width. Problem introduced
12849 by merge from Emacs 23 on 2012-01-19.
12850
12851 2012-02-02 Michael Albinus <michael.albinus@gmx.de>
12852
12853 * dbusbind.c (Fdbus_register_method): Mention the return value
12854 :ignore in the docstring.
12855
12856 2012-02-02 Glenn Morris <rgm@gnu.org>
12857
12858 * callproc.c (Fcall_process, Fcall_process_region): Doc fix.
12859
12860 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
12861 Unconditionally set to t. (Bug#10673)
12862 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
12863 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
12864 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Doc fix.
12865
12866 2012-02-02 Kenichi Handa <handa@m17n.org>
12867
12868 (x_produce_glyphs): Cancel previous change. If cmp->glyph_len is
12869 0, do not call append_composite_glyph.
12870
12871 2012-02-02 Kenichi Handa <handa@m17n.org>
12872
12873 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING): Initialize first_s to
12874 NULL (Bug#6988).
12875 (x_produce_glyphs): If the component of a composition is a null
12876 string, set it->pixel_width to 1 to avoid zero-width glyph.
12877
12878 2012-02-01 Eli Zaretskii <eliz@gnu.org>
12879
12880 * ralloc.c (resize_bloc, r_alloc_sbrk): Don't call memmove if its
12881 first 2 arguments are identical. This makes inserting large
12882 output from a subprocess an order of magnitude faster on
12883 MS-Windows, where all sbrk'ed memory is always contiguous.
12884
12885 2012-01-31 Glenn Morris <rgm@gnu.org>
12886
12887 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
12888 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
12889 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Sync docs.
12890
12891 2012-01-29 Glenn Morris <rgm@gnu.org>
12892
12893 * gnutls.c (syms_of_gnutls): More doc (from etc/NEWS).
12894
12895 2012-01-28 Samuel Thibault <sthibault@debian.org> (tiny change)
12896
12897 * s/gnu.h: Define POSIX_SIGNALS (Bug#10552).
12898
12899 2012-01-28 Chong Yidong <cyd@gnu.org>
12900
12901 * minibuf.c (syms_of_minibuf): Doc fix (Bug#10550).
12902
12903 2012-01-26 Chong Yidong <cyd@gnu.org>
12904
12905 * keyboard.c (Vecho_keystrokes): Document zero value (Bug#10503).
12906
12907 * search.c (Fsearch_forward, Fsearch_backward): Document negative
12908 repeat counts (Bug#10507).
12909
12910 2012-01-26 Glenn Morris <rgm@gnu.org>
12911
12912 * lread.c (syms_of_lread): Doc fix.
12913
12914 2012-01-25 HIROSHI OOTA <nil@mad.dog.cx> (tiny change)
12915
12916 * coding.c (encode_designation_at_bol): Change return value to
12917 EMACS_INT.
12918
12919 2012-01-25 Chong Yidong <cyd@gnu.org>
12920
12921 * eval.c (Fuser_variable_p): Doc fix; mention custom-variable-p.
12922
12923 2012-01-21 Chong Yidong <cyd@gnu.org>
12924
12925 * floatfns.c (Fcopysign): Make the second argument non-optional,
12926 since nil is not allowed anyway.
12927
12928 2012-01-21 Andreas Schwab <schwab@linux-m68k.org>
12929
12930 * process.c (read_process_output): Use p instead of XPROCESS (proc).
12931 (send_process): Likewise.
12932
12933 2012-01-19 Martin Rudalics <rudalics@gmx.at>
12934
12935 * window.c (save_window_save, Fcurrent_window_configuration)
12936 (Vwindow_persistent_parameters): Do not use Qstate.
12937 Rewrite doc-strings.
12938
12939 2012-01-19 Kenichi Handa <handa@m17n.org>
12940
12941 * character.c (char_width): New function.
12942 (Fchar_width, c_string_width, lisp_string_width):
12943 Use char_width (Bug#9496).
12944
12945 2012-01-16 Martin Rudalics <rudalics@gmx.at>
12946
12947 * window.c (Vwindow_persistent_parameters): New variable.
12948 (Fset_window_configuration, save_window_save): Handle persistent
12949 window parameters.
12950
12951 2012-01-14 Eli Zaretskii <eliz@gnu.org>
12952
12953 * w32fns.c (signal_user_input): Don't do a QUIT, to avoid
12954 thrashing the stack of the thread. (Bug#9087)
12955
12956 2012-01-12 Paul Eggert <eggert@cs.ucla.edu>
12957
12958 * xdisp.c (rows_from_pos_range): Add parens as per gcc -Wparentheses.
12959
12960 2012-01-11 Eli Zaretskii <eliz@gnu.org>
12961
12962 * xdisp.c (rows_from_pos_range): Handle the case where the
12963 highlight ends on a newline. (Bug#10464)
12964 (mouse_face_from_buffer_pos): Fix off-by-one error in calculating
12965 he end column for display of highlight that ends on a newline
12966 before a R2L line.
12967
12968 2012-01-11 Glenn Morris <rgm@gnu.org>
12969
12970 * lread.c (init_lread): If no-site-lisp, remove site-lisp dirs
12971 from load-path also when installation-directory is nil. (Bug#10208)
12972
12973 2012-01-10 Glenn Morris <rgm@gnu.org>
12974
12975 * emacs.c (syms_of_emacs) <installation-directory>: Doc fix.
12976
12977 * epaths.in (PATH_LOADSEARCH, PATH_EXEC, PATH_DATA, PATH_DOC):
12978 Update template values to be closer to their typical values these days.
12979
12980 2012-01-09 Eli Zaretskii <eliz@gnu.org>
12981
12982 * xdisp.c (rows_from_pos_range): Accept additional argument
12983 DISP_STRING, and accept any glyph in a row whose object is that
12984 string as eligible for mouse highlight. Fixes mouse highlight of
12985 display strings from overlays. (Bug#10464)
12986
12987 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
12988
12989 emacs: fix an auto-save permissions race condition (Bug#10400)
12990 * fileio.c (auto_saving_dir_umask): New static var.
12991 (Fmake_directory_internal): Use it.
12992 (do_auto_save_make_dir): Set it, instead of invoking chmod after
12993 creating the directory. The old code temporarily assigns
12994 too-generous permissions to the directory.
12995 (do_auto_save_eh): Clear it.
12996 (Fdo_auto_save): Catch all errors, not just file errors, so
12997 that the var is always cleared.
12998
12999 2012-01-07 Eli Zaretskii <eliz@gnu.org>
13000
13001 * search.c (scan_buffer): Pass character positions to
13002 know_region_cache, not byte positions. (Bug#6540)
13003
13004 2012-01-07 LynX <_LynX@bk.ru> (tiny change)
13005
13006 * w32.c (sys_rename): Report EXDEV when rename of a directory
13007 fails because the target is on another logical disk. (Bug#10284)
13008
13009 2012-01-07 David Benjamin <davidben@mit.edu> (tiny change)
13010
13011 * xterm.c (x_embed_request_focus): New function.
13012
13013 * xterm.h: Add prototype.
13014
13015 * xfns.c (Fx_focus_frame): Use it for embedded frames (Bug#9977).
13016
13017 2012-01-05 Glenn Morris <rgm@gnu.org>
13018
13019 * emacs.c (emacs_copyright): Update short copyright year to 2012.
13020
13021 2012-01-01 Eli Zaretskii <eliz@gnu.org>
13022
13023 * gnutls.c (init_gnutls_functions): Load gnutls_check_version.
13024 Load gnutls_transport_set_lowat only if GnuTLS version is below
13025 2.11.1.
13026 (emacs_gnutls_handshake): Call gnutls_transport_set_lowat only for
13027 GnuTLS versions below 2.11.1.
13028
13029 2011-12-31 Antoine Levitt <antoine.levitt@gmail.com>
13030
13031 * xdisp.c (syms_of_xdisp) <window-scroll-functions>: Add warning
13032 to the doc string advising against its use for altering the way
13033 windows are scrolled.
13034
13035 2011-12-28 Kenichi Handa <handa@m17n.org>
13036
13037 * coding.c (Fdefine_coding_system_internal): Make an utf-8 base
13038 coding-system ASCII compatible only when it does not produce BOM
13039 on encoding (Bug#10383).
13040
13041 2011-12-26 Jan Djärv <jan.h.d@swipnet.se>
13042
13043 * xmenu.c (x_menu_wait_for_event): Use xg_select for Gtk3 so menus
13044 can scroll.
13045 (create_and_show_popup_menu): Always use menu_position_func for
13046 Gtk3 (Bug#10361).
13047
13048 2011-12-24 Andreas Schwab <schwab@linux-m68k.org>
13049
13050 * callint.c (Fcall_interactively): Don't truncate prompt string.
13051
13052 2011-12-23 Eli Zaretskii <eliz@gnu.org>
13053
13054 * xdisp.c (handle_invisible_prop): Handle correctly an invisible
13055 property that ends at ZV, so that the bidi iteration could be
13056 resumed from there (after widening). (Bug#10360)
13057
13058 2011-12-22 Jan Djärv <jan.h.d@swipnet.se>
13059
13060 * nsfont.m (ns_spec_to_descriptor): Do not autorelease fdesc.
13061
13062 2011-12-21 Jan Djärv <jan.h.d@swipnet.se>
13063
13064 * nsterm.m (x_free_frame_resources):
13065 Release f->output_data.ns->miniimage.
13066 (ns_index_color): Fix indentation. Do not retain
13067 color_table->colors[i].
13068
13069 * nsmenu.m (ns_update_menubar): Call free_menubar_widget_value_tree
13070 before returning.
13071
13072 * nsfns.m (x_set_background_color): Assign return value from
13073 ns_index_color to face-background instead of NSColor*.
13074 (ns_implicitly_set_icon_type): Fix indentation.
13075 Change assignment in for loop to comparison.
13076
13077 * emacs.c (ns_pool): New variable.
13078 (main): Assign ns_pool.
13079 (Fkill_emacs): Call ns_release_autorelease_pool.
13080
13081 * nsfont.m (ns_spec_to_descriptor): Fix indentation,
13082 autorelease fdesc, release fdAttrs and tdict.
13083 (ns_get_covering_families): Release charset.
13084 (ns_findfonts): Release NSFontDescriptor created with new.
13085 (ns_uni_to_glyphs): Fix indentation.
13086 (setString): Release attrStr before assigning new value.
13087
13088 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
13089
13090 * nsmenu.m (NSMenuDidBeginTrackingNotification): Declare if OSX < 10.5
13091 and NS_IMPL_COCOA.
13092 (trackingNotification): Surround with ifdef NS_IMPL_COCOA.
13093 (syms_of_nsmenu): Set trackingMenu to 1 if not NS_IMPL_COCOA.
13094
13095 2011-12-18 David Reitter <reitter@cmu.edu>
13096
13097 * nsterm.m (ns_term_init): Subscribe for notifications
13098 NSMenuDidBeginTrackingNotification and NSMenuDidEndTrackingNotification
13099 to method trackingNotification in EmacsMenu.
13100
13101 * nsmenu.m (trackingMenu): New variable.
13102 (trackingNotification): New method (from Aquamacs).
13103 (menuNeedsUpdate): Expand comment and return if trackingMenu is 0,
13104 from Aquamacs (Bug#7030).
13105
13106 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
13107
13108 * nsselect.m (CUT_BUFFER_SUPPORT): Remove define.
13109 (symbol_to_nsstring): Fix indentation.
13110 (ns_symbol_to_pb): New function.
13111 (Fns_get_selection_internal): Rename from Fns_get_cut_buffer_internal.
13112 (Fns_rotate_cut_buffers_internal): Remove.
13113 (Fns_store_selection_internal): Rename from
13114 Fns_store_cut_buffer_internal.
13115 (ns_get_foreign_selection, Fx_own_selection_internal)
13116 (Fx_disown_selection_internal, Fx_selection_exists_p)
13117 (Fns_get_selection_internal, Fns_store_selection_internal):
13118 Use ns_symbol_to_pb and check if return value is nil.
13119 (syms_of_nsselect): Remove ifdef CUT_BUFFER_SUPPORT. Remove defsubr
13120 Sns_rotate_cut_buffers_internal. Sns_get_cut_buffer_internal
13121 renamed to Sns_get_selection_internal, Sns_store_cut_buffer_internal
13122 renamed to Sns_store_selection_internal.
13123 (ns_handle_selection_request): Move code to Fx_own_selection_internal
13124 and remove this function.
13125 (ns_handle_selection_clear): Remove, never used.
13126 (Fx_own_selection_internal): Move code from ns_handle_selection_request
13127 here.
13128
13129 2011-12-17 Ken Brown <kbrown@cornell.edu>
13130
13131 * fileio.c (check_writable) [CYGWIN]: Return non-zero if UID or
13132 GID is unknown (Bug#10257).
13133
13134 2011-12-17 Paul Eggert <eggert@cs.ucla.edu>
13135
13136 * s/gnu-linux.h: Fix mark_memory typo (Bug#10286).
13137 (GC_MARK_SECONDARY_STACK): Omit removed 3rd arg to mark_memory,
13138 which caused a build failure on GNU/Linux IA-64. This problem was
13139 introduced by my 2011-10-07 patch.
13140
13141 2011-12-15 Juri Linkov <juri@jurta.org>
13142
13143 * image.c (imagemagick_error): New function. (Bug#10112)
13144 (imagemagick_load_image): Comment out `MagickSetResolution' call.
13145 Use `imagemagick_error' where ImageMagick functions return
13146 `MagickFalse'.
13147 (Fimagemagick_types): Add `Fnreverse' to return the list in the
13148 proper order.
13149
13150 2011-12-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13151
13152 * xftfont.c (xftfont_draw): Use the font metrics of s->font to
13153 fill background (Bug#8992).
13154
13155 2011-12-13 Martin Rudalics <rudalics@gmx.at>
13156
13157 * window.c (Vwindow_combination_resize)
13158 (Vwindow_combination_limit): Use t instead of non-nil in
13159 doc-strings.
13160 (Vrecenter_redisplay): Add first sentence of doc-string on
13161 separate line.
13162 (Frecenter): Fix doc-string typo.
13163
13164 2011-12-11 Kenichi Handa <handa@m17n.org>
13165
13166 * coding.c (Funencodable_char_position): Pay attention to the
13167 buffer text relocation (Bug#9389).
13168
13169 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
13170
13171 * xterm.c (x_term_init): Move call to gdk_window_add_filter before
13172 gtk_init (Bug#10100).
13173
13174 2011-12-10 Eli Zaretskii <eliz@gnu.org>
13175
13176 * xdisp.c (RECORD_MAX_MIN_POS): Use IT->cmp_it.charpos only if
13177 IT->string is nil. (Bug#10263)
13178
13179 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
13180
13181 * nsterm.h (x_free_frame_resources): Declare.
13182
13183 * nsfns.m (ns_get_defaults_value): New function (Bug#10103).
13184 (Fns_get_resource, x_get_string_resource): Call ns_get_defaults_value.
13185
13186 * nsterm.h (ns_get_defaults_value): Declare.
13187
13188 * nsterm.m (ns_default): Call ns_get_defaults_value.
13189
13190 2011-12-09 Eli Zaretskii <eliz@gnu.org>
13191
13192 * xdisp.c (try_scrolling): Don't set scroll_down_p if dy is zero.
13193 (Bug#10170)
13194
13195 2011-12-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13196
13197 * unexelf.c (unexec) [NS_IMPL_GNUSTEP]: Take account of the case
13198 that where the value of an _OBJC_* symbol points to is in the .bss
13199 section (Bug#10240).
13200
13201 2011-12-08 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
13202
13203 * coding.c (encode_coding_ccl): Check (charbuf < charbuf_end)
13204 after the loop to call ccl_driver at least once (Bug#8619).
13205
13206 2011-12-08 Kenichi Handa <handa@m17n.org>
13207
13208 * ftfont.c (get_adstyle_property): Fix previous change
13209 (Bug#10233).
13210
13211 2011-12-07 Juanma Barranquero <lekktu@gmail.com>
13212
13213 * w32.c (init_environment): If no_site_lisp, remove site-lisp
13214 dirs from the default value of EMACSLOADPATH (bug#10208).
13215
13216 2011-12-07 Glenn Morris <rgm@gnu.org>
13217
13218 * lread.c (init_lread): If no_site_lisp, exclude site-lisp/ in
13219 installation and source directories as well. (Bug#10208)
13220
13221 2011-12-06 Chong Yidong <cyd@gnu.org>
13222
13223 * minibuf.c (Fread_from_minibuffer): Doc fix (Bug#10228).
13224
13225 2011-12-06 Glenn Morris <rgm@gnu.org>
13226
13227 * process.c (start_process_unwind): Treat any pid <= 0, except -2,
13228 as an error, not just -1. (Bug#10217)
13229
13230 2011-12-05 Chong Yidong <cyd@gnu.org>
13231
13232 * keyboard.c (process_special_events): New function.
13233 (swallow_events, Finput_pending_p): Use it (Bug#10195).
13234
13235 2011-12-05 Paul Eggert <eggert@cs.ucla.edu>
13236
13237 * coding.c (encode_designation_at_bol): Don't use uninitialized
13238 local variable (Bug#9318).
13239
13240 2011-12-05 Kenichi Handa <handa@m17n.org>
13241
13242 * ftfont.c (get_adstyle_property): If the font is not BDF nor PCF,
13243 return Qnil (Bug#8046, Bug#10193).
13244
13245 2011-12-05 Kenichi Handa <handa@m17n.org>
13246
13247 * coding.c (encode_designation_at_bol): New args charbuf_end and
13248 dst. Return the number of produced bytes. Callers changed.
13249 (coding_set_source): Return how many bytes coding->source was
13250 relocated.
13251 (coding_set_destination): Return how many bytes
13252 coding->destination was relocated.
13253 (CODING_DECODE_CHAR, CODING_ENCODE_CHAR, CODING_CHAR_CHARSET)
13254 (CODING_CHAR_CHARSET_P): Adjust for the avove changes.
13255
13256 2011-12-05 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
13257
13258 * coding.c (CODING_CHAR_CHARSET_P): New macro.
13259 (encode_coding_emacs_mule, encode_coding_iso_2022): Use the above
13260 macro (Bug#9318).
13261
13262 2011-12-05 Andreas Schwab <schwab@linux-m68k.org>
13263
13264 The following changes are to fix Bug#9318.
13265
13266 * coding.c (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET): New macros.
13267 (encode_coding_emacs_mule, ENCODE_ISO_CHARACTER)
13268 (encode_coding_iso_2022, encode_coding_sjis)
13269 (encode_coding_big5, encode_coding_charset): Use the above macros.
13270
13271 2011-12-05 Juanma Barranquero <lekktu@gmail.com>
13272
13273 * lisp.h (process_quit_flag): Fix external declaration.
13274
13275 2011-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
13276
13277 Don't macro-inline non-performance-critical code.
13278 * eval.c (process_quit_flag): New function.
13279 * lisp.h (QUIT): Use it.
13280
13281 2011-12-04 Jan Djärv <jan.h.d@swipnet.se>
13282
13283 * nsfns.m (get_geometry_from_preferences): New function.
13284 (Fx_create_frame): Call get_geometry_from_preferences (Bug#10103).
13285
13286 2011-12-04 Andreas Schwab <schwab@linux-m68k.org>
13287
13288 * emacs.c (Qkill_emacs): Define.
13289 (syms_of_emacs): Initialize it.
13290 * keyboard.c (interrupt_signal): Don't call Fkill_emacs here, set
13291 Qquit_flag to `kill-emacs' instead.
13292 (quit_throw_to_read_char): Add parameter `from_signal'.
13293 All callers changed. Call Fkill_emacs if requested and safe.
13294 * lisp.h (QUIT): Call Fkill_emacs if requested.
13295
13296 2011-12-03 Jan Djärv <jan.h.d@swipnet.se>
13297
13298 * widget.c (update_wm_hints): Return if wmshell is null.
13299 (widget_update_wm_size_hints): New function.
13300
13301 * widget.h (widget_update_wm_size_hints): Declare.
13302
13303 * xterm.c (x_wm_set_size_hint): If USE_X_TOOLKIT, call
13304 widget_update_wm_size_hints (Bug#10104).
13305
13306 2011-12-03 Eli Zaretskii <eliz@gnu.org>
13307
13308 * xdisp.c (handle_invisible_prop): If the invisible text ends just
13309 before a newline, prepare the bidi iterator for consuming the
13310 newline, and keep the current paragraph direction. (Bug#10183)
13311 (redisplay_window): Don't let `margin' become negative. (Bug#10192)
13312
13313 2011-12-02 Juri Linkov <juri@jurta.org>
13314
13315 * search.c (Fword_search_regexp): New Lisp function created from
13316 `wordify'. Change type of arg `lax' from `int' to `Lisp_Object'.
13317 (Fword_search_backward, Fword_search_forward)
13318 (Fword_search_backward_lax, Fword_search_forward_lax):
13319 Use `Fword_search_regexp' instead of `wordify'. Doc fix.
13320 (syms_of_search): Define `Sword_search_regexp'. (Bug#10145)
13321
13322 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
13323
13324 * fileio.c (Finsert_file_contents): Move after-change-function call
13325 to before the "handled:" label, since all "goto handled" appear in
13326 cases where the *-change-functions have already been properly called
13327 (bug#10117).
13328
13329 2011-12-01 Andreas Schwab <schwab@linux-m68k.org>
13330
13331 * keyboard.c (interrupt_signal): Don't call kill-emacs when
13332 waiting for input. (Bug#10169)
13333
13334 2011-11-30 Eli Zaretskii <eliz@gnu.org>
13335
13336 * dispnew.c (adjust_glyph_matrix): Remove the assertion that
13337 verifies glyph row's hash code--we have just reallocated the
13338 glyphs, so their contents can be complete garbage. (Bug#10164)
13339
13340 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
13341
13342 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Add missing check.
13343
13344 2011-11-30 Eli Zaretskii <eliz@gnu.org>
13345
13346 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Ensure ROW's
13347 attributes are tested _before_ calling verify_row_hash, to protect
13348 against GCC re-ordering of the tests. (Bug#10164)
13349
13350 2011-11-29 Jan Djärv <jan.h.d@swipnet.se>
13351
13352 * xterm.h (struct x_output): net_wm_state_hidden_seen is new.
13353
13354 * xterm.c (handle_one_xevent): Only set async_visible and friends
13355 if net_wm_state_hidden_seen is non-zero (Bug#10002)
13356 (get_current_wm_state): Set net_wm_state_hidden_seen to 1 if
13357 _NET_WM_STATE_HIDDEN is in NET_WM_STATE.
13358
13359 2011-11-28 Paul Eggert <eggert@cs.ucla.edu>
13360
13361 Remove GCPRO-related macros that exist only to avoid shadowing locals.
13362 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR)
13363 (GCPRO6_VAR, UNGCPRO_VAR): Remove. See
13364 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
13365 All uses changed to use GCPRO1 etc.
13366 (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6, UNGCPRO):
13367 Revert to old implementation (i.e., before 2011-03-11).
13368
13369 2011-11-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13370
13371 * dispnew.c (scrolling_window): Truncate overlaps in copy destination
13372 of scroll runs so as to avoid assigning disabled bogus rows and
13373 unnecessary graphics copy operations.
13374
13375 2011-11-27 Eli Zaretskii <eliz@gnu.org>
13376
13377 * s/ms-w32.h (utimbuf) [_MSC_VER]: Don't define.
13378 (snprintf) [_MSC_VER]: Redirect to _snprintf.
13379 (strtoll) [_MSC_VER]: Redirect to _strtoi64.
13380 (malloc, free, realloc, calloc): Redirect to e_* only when
13381 compiling Emacs.
13382
13383 * lisp.h (GCTYPEBITS): Move before first use.
13384 (ALIGN_GCTYPEBITS) [_MSC_VER]: Define.
13385 (DECL_ALIGN) [_MSC_VER]: Use it, as MSVC doesn't like bit ops in
13386 this macro definition.
13387
13388 * s/ms-w32.h (tzname): Redirect to _tzname for all values of
13389 _MSC_VER.
13390
13391 2011-11-27 Jan Djärv <jan.h.d@swipnet.se>
13392
13393 * gtkutil.c (xg_create_frame_widgets):
13394 Call gtk_window_set_has_resize_grip (FALSE) if that function is
13395 present with Gtk+ 2.0.
13396
13397 2011-11-26 Paul Eggert <eggert@cs.ucla.edu>
13398
13399 * fileio.c (Finsert_file_contents): Undo previous change; see
13400 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
13401
13402 2011-11-26 Paul Eggert <eggert@cs.ucla.edu>
13403
13404 Rename locals to avoid shadowing.
13405 * fileio.c (Finsert_file_contents):
13406 Rename inner 'gcpro1' to 'inner_gcpro1' to avoid shadowing.
13407 * process.c (wait_reading_process_output):
13408 Rename inner 'proc' to 'p' to avoid shadowing.
13409 Indent for consistency with usual Emacs style.
13410
13411 2011-11-25 Eli Zaretskii <eliz@gnu.org>
13412
13413 * xdisp.c (redisplay_window): If cursor row is not fully visible
13414 after recentering, and scroll-conservatively is set to a large
13415 number, scroll window by a few more lines to make the cursor fully
13416 visible and out of scroll-margin. (Bug#10105)
13417 (start_display): Don't move to the next line if the display should
13418 start at a newline that is part of a display vector or an overlay
13419 string. (Bug#10119)
13420
13421 2011-11-24 Juri Linkov <juri@jurta.org>
13422
13423 * image.c (imagemagick_load_image): Move `MagickSetResolution' down
13424 after the `MagickPingImage' call. (Bug#10112)
13425
13426 2011-11-23 Chong Yidong <cyd@gnu.org>
13427
13428 * window.c (Fcoordinates_in_window_p): Accept only live windows.
13429
13430 2011-11-23 Martin Rudalics <rudalics@gmx.at>
13431
13432 * buffer.c (Fkill_buffer): Run replace_buffer_in_windows before
13433 making another buffer current. (Bug#10114)
13434
13435 2011-11-23 Glenn Morris <rgm@gnu.org>
13436
13437 * font.c (font_find_for_lface) [HAVE_NS]: Ignore case. (Bug#2526)
13438
13439 2011-11-23 Chong Yidong <cyd@gnu.org>
13440
13441 * xdisp.c (compute_stop_pos): Check validity of end_charpos before
13442 using it (Bug#5984).
13443
13444 2011-11-22 Eli Zaretskii <eliz@gnu.org>
13445
13446 * dispnew.c (adjust_glyph_matrix): Don't verify hash code of mode-
13447 and header-lines, as they don't have one computed for them.
13448 (Bug#10098)
13449
13450 * .gdbinit (prow): Make displayed values more self-explaining.
13451 Add row's hash code.
13452
13453 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
13454
13455 * process.c (wait_reading_process_output): Fix asynchrounous
13456 GnuTLS socket handling on some versions of the GnuTLS library.
13457 (wait_reading_process_output): Add comment and URL.
13458
13459 2011-11-21 Jan Djärv <jan.h.d@swipnet.se>
13460
13461 * xterm.c (x_clear_frame): Reinstate the XClearWindow call.
13462
13463 2011-11-21 Chong Yidong <cyd@gnu.org>
13464
13465 * window.c (Fnext_window, Fprevious_window): Doc fix.
13466
13467 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
13468
13469 * window.c (get_phys_cursor_glyph): Fix Lisp_Object/int mixup.
13470
13471 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
13472
13473 * nsfont.m (syms_of_nsfont) <ns-reg-to-script>: Fix typo.
13474
13475 2011-11-20 Martin Rudalics <rudalics@gmx.at>
13476
13477 * window.c (Fset_window_combination_limit): Rename argument
13478 STATUS to LIMIT.
13479 (Vwindow_combination_limit): Remove "status" from doc-string.
13480
13481 2011-11-20 Andreas Schwab <schwab@linux-m68k.org>
13482
13483 * m/ibms390.h: Remove.
13484 * m/ibms390x.h: Don't include "ibms390.h".
13485
13486 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
13487
13488 * fileio.c (Finsert_file_contents): Add missing gcpro1 variable.
13489 Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
13490
13491 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
13492
13493 * casetab.c (Fset_case_table):
13494 * charset.c (Fcharset_after): Fix typos.
13495
13496 2011-11-20 Paul Eggert <eggert@cs.ucla.edu>
13497
13498 Standardize on VIRT_ADDR_VARIES behavior (Bug#10042).
13499 Otherwise, valgrind does not work on some platforms.
13500 Problem reported by Andreas Schwab in
13501 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00081.html>.
13502 * puresize.h (pure, PURE_P): Always behave as if VIRT_ADDR_VARIES
13503 is set, removing the need for VIRT_ADDRESS_VARIES.
13504 (PURE_P): Use a more-efficient implementation that needs just one
13505 comparison, not two: on x86-64 with GCC 4.6.2, this cut down the
13506 number of instructions from 6 (xorl, cmpq, jge, xorl, cmpq, setge)
13507 to 4 (xorl, subq, cmpq, setbe).
13508 * alloc.c (pure): Always extern now, since that's the
13509 VIRT_ADDR_VARIES behavior.
13510 (PURE_POINTER_P): Use a single comparison, not two, for
13511 consistency with the new puresize.h.
13512 * lisp.h (PNTR_COMPARISON_TYPE): Remove; no longer needed.
13513 * m/ibms390.h, m/intel386.h, m/template.h, s/cygwin.h, s/hpux10-20.h:
13514 Remove VIRT_ADDR_VARIES no longer needed.
13515
13516 2011-11-19 Eli Zaretskii <eliz@gnu.org>
13517
13518 * xdisp.c (x_write_glyphs, draw_phys_cursor_glyph)
13519 (erase_phys_cursor, update_window_cursor, show_mouse_face)
13520 (cursor_in_mouse_face_p): If the cursor position is out of bounds,
13521 behave as if the cursor position were at the window margin.
13522
13523 * window.c (get_phys_cursor_glyph): If the window is hscrolled,
13524 and the cursor position is out of bounds, behave as if the cursor
13525 position were at the window margin. (Bug#10075)
13526
13527 2011-11-18 Chong Yidong <cyd@gnu.org>
13528
13529 * window.c (Fwindow_combination_limit): Make first argument
13530 non-optional, since it is meaningless for live windows like the
13531 selected window.
13532
13533 2011-11-18 Dmitry Antipov <dmantipov@yandex.ru>
13534
13535 * keymap.c (Fwhere_is_internal): Add missing RETURN_UNGCPROs.
13536
13537 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
13538
13539 * intervals.c: Fix grafting over the whole buffer (bug#10071).
13540 (graft_intervals_into_buffer): Simplify.
13541
13542 2011-11-18 Eli Zaretskii <eliz@gnu.org>
13543
13544 * dispnew.c (swap_glyph_pointers): Swap the used[] arrays and the
13545 hash values of the two rows.
13546 (copy_row_except_pointers): Preserve the used[] arrays and the
13547 hash values of the two rows. (Bug#10035)
13548 (add_row_entry): Add xassert to verify that ROW's hash code is valid.
13549
13550 * xdisp.c (row_hash): New function, body extracted from
13551 compute_line_metrics.
13552 (compute_line_metrics): Call row_hash, instead of computing the
13553 hash code inline.
13554
13555 * dispnew.c (verify_row_hash): Call row_hash for computing the
13556 hash code of a row, instead of duplicating code from xdisp.c.
13557
13558 * dispextern.h (row_hash): Add prototype.
13559
13560 2011-11-18 Tassilo Horn <tassilo@member.fsf.org>
13561
13562 * frame.c (delete_frame): Don't delete the terminal when the last
13563 X frame is closed if emacs is built with GTK toolkit.
13564
13565 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
13566
13567 * window.c (syms_of_window) <window-combination-resize>: Fix typo.
13568
13569 2011-11-17 Martin Rudalics <rudalics@gmx.at>
13570
13571 * window.c (Vwindow_splits): Rename to
13572 Vwindow_combination_resize. Suggested by Juri Linkov.
13573 (Fsplit_window_internal): Use Vwindow_combination_resize instead
13574 of Vwindow_splits.
13575
13576 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
13577
13578 * nsfns.m (Fns_font_name):
13579 * window.c (syms_of_window) <window-combination-limit>: Fix typos.
13580
13581 2011-11-16 Martin Rudalics <rudalics@gmx.at>
13582
13583 * window.h (window): Rename slot "nest" to "combination_limit".
13584 * window.c (Fwindow_nest): Rename to Fwindow_combination_limit.
13585 (Fset_window_nest): Rename to Fset_window_combination_limit.
13586 (Vwindow_nest): Rename to Vwindow_combination_limit.
13587 (recombine_windows, make_parent_window, make_window)
13588 (Fsplit_window_internal, saved_window)
13589 (Fset_window_configuration, save_window_save): Rename all
13590 occurrences of window_nest to window_combination_limit.
13591
13592 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
13593
13594 * image.c (imagemagick_load_image): Fix typo.
13595
13596 2011-11-14 Eli Zaretskii <eliz@gnu.org>
13597
13598 * xdisp.c (display_line): Move the call to
13599 highlight_trailing_whitespace before the call to
13600 compute_line_metrics, since the latter needs to see the final
13601 faces of all the glyphs to compute ROW's hash value.
13602 Fixes assertion violations in row_equal_p. (Bug#10035)
13603
13604 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
13605
13606 * w32proc.c (reader_thread): Don't check pending input if cp->fd < 0,
13607 just return (bug#10044).
13608
13609 2011-11-12 Eli Zaretskii <eliz@gnu.org>
13610
13611 * makefile.w32-in (HEAPSIZE): New variable, allows to build temacs
13612 with user-defined heap size. Bump the default size of the temacs
13613 heap to 27MB, to avoid memory warning when running temacs.
13614 ($(TEMACS)): Use HEAPSIZE instead of a hardcoded value.
13615
13616 * dispnew.c (scrolling_window): Fix incorrect indices in accessing
13617 current_matrix and desired_matrix. (Bug#9990)
13618 (verify_row_hash) [XASSERTS]: New function.
13619 (adjust_glyph_matrix, row_equal_p): Use it in xassert to verify
13620 that the hash value of glyph rows is correct.
13621
13622 2011-11-12 Martin Rudalics <rudalics@gmx.at>
13623
13624 * window.h (window): Remove splits slot.
13625 * window.c (Fwindow_splits, Fset_window_splits): Remove.
13626 (Fdelete_other_windows_internal, make_parent_window)
13627 (make_window, Fsplit_window_internal, Fdelete_window_internal)
13628 (Fset_window_configuration, save_window_save): Don't deal with
13629 split status of windows.
13630 (saved_window): Remove splits slot.
13631 (Vwindow_splits): Rewrite doc-string.
13632
13633 2011-11-11 Jan Djärv <jan.h.d@swipnet.se>
13634
13635 * xfns.c (unwind_create_frame):
13636 * nsfns.m (unwind_create_frame):
13637 * w32fns.c (unwind_create_frame): Use Fmemq to check if frame is in
13638 Vframe_list (Bug#9999).
13639
13640 2011-11-11 Dmitry Antipov <dmantipov@yandex.ru>
13641
13642 * xdisp.c (syms_of_xdisp): Remove duplicated definition of Qtext.
13643
13644 2011-11-11 Kenichi Handa <handa@m17n.org>
13645
13646 * callproc.c (Fcall_process): Set the member dst_multibyte of
13647 process_coding.
13648
13649 2011-11-11 Johan Bockgård <bojohan@gnu.org>
13650
13651 * xdisp.c (fill_composite_glyph_string): Always set s->face, to
13652 avoid a crash (bug#9496).
13653
13654 2011-11-09 Chong Yidong <cyd@gnu.org>
13655
13656 * window.c (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
13657 (Fwindow_inside_absolute_pixel_edges): Only allow live windows.
13658
13659 2011-11-08 Paul Eggert <eggert@cs.ucla.edu>
13660
13661 * s/gnu.h (GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS (Bug#9926).
13662
13663 2011-11-08 Paul Eggert <eggert@cs.ucla.edu>
13664
13665 Avoid some portability problems by eschewing 'extern inline' functions.
13666 The trivial performance wins aren't worth the portability hassles; see
13667 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>
13668 et seq.
13669 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
13670 (window_box_width, window_box_left, window_box_left_offset)
13671 (window_box_right, window_box_right_offset): Undo previous change,
13672 by removing the "extern"s.
13673 * intervals.c (adjust_intervals_for_insertion)
13674 (adjust_intervals_for_deletion): Undo previous change,
13675 making these static again.
13676 (offset_intervals, temp_set_point_both, temp_set_point)
13677 (copy_intervals_to_string): No longer inline.
13678 * xdisp.c (window_text_bottom_y, window_box_width)
13679 (window_box_height, window_box_left_offset)
13680 (window_box_right_offset, window_box_left, window_box_right)
13681 (window_box): No longer inline.
13682
13683 2011-11-08 Chong Yidong <cyd@gnu.org>
13684
13685 * window.c (Fwindow_left_column, Fwindow_top_line): Doc fix.
13686 (Fwindow_body_height, Fwindow_body_width): Move from Lisp.
13687 Signal an error if not a live window.
13688 (Fwindow_total_width, Fwindow_total_height): Move from Lisp.
13689 (Fwindow_total_size, Fwindow_body_size): Move to Lisp.
13690
13691 2011-11-07 Juanma Barranquero <lekktu@gmail.com>
13692
13693 * lisp.h (syms_of_abbrev): Remove declaration.
13694 Reported by CHENG Gao <chenggao@royau.me>.
13695
13696 2011-11-07 Eli Zaretskii <eliz@gnu.org>
13697
13698 * w32.c (check_windows_init_file): Don't look for term/w32-win.el
13699 if Vpurify_flag is non-nil. Fixes a crash when running w32 build
13700 of temacs in GUI mode.
13701
13702 2011-11-07 Martin Rudalics <rudalics@gmx.at>
13703
13704 * window.h: Declare delete_all_child_windows instead of
13705 delete_all_subwindows.
13706 * window.c (Fwindow_nest, Fset_window_nest)
13707 (Fset_window_new_total, Fset_window_new_normal)
13708 (Fwindow_resize_apply): Don't use term subwindow in doc-strings.
13709 (delete_all_subwindows): Rename to delete_all_child_windows.
13710 (Fdelete_other_windows_internal, Fset_window_configuration):
13711 Call delete_all_child_windows instead of delete_all_subwindows.
13712 * frame.c (delete_frame): Call delete_all_child_windows instead
13713 of delete_all_subwindows.
13714
13715 2011-11-07 Paul Eggert <eggert@cs.ucla.edu>
13716
13717 * alloc.c (DEADP): New macro, for porting to GNU/Hurd (Bug#9926).
13718 This is also needed for porting to any host where GC_MARK_STACK is
13719 not GC_MAKE_GCPROS_NOOPS.
13720 (which_symbols): Use it.
13721
13722 2011-11-07 Kenichi Handa <handa@m17n.org>
13723
13724 * coding.c (coding_set_destination): Check coding->src_pos only
13725 when coding->src_object is a buffer (bug#9910).
13726
13727 * process.c (send_process): Set the member src_multibyte of coding
13728 to 0 (bug#9911) when sending a unibyte text.
13729
13730 * callproc.c (Fcall_process): Set the member src_multibyte of
13731 process_coding to 0 (bug#9912).
13732
13733 2011-11-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13734
13735 * xmenu.c (cleanup_widget_value_tree): New function.
13736 (xmenu_show, xdialog_show): Use it in record_unwind_protect instead of
13737 calling free_menubar_widget_value_tree directly (Bug#9830).
13738
13739 2011-11-06 Paul Eggert <eggert@cs.ucla.edu>
13740
13741 Fix some portability problems with 'inline'.
13742 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
13743 (window_box_width, window_box_left, window_box_left_offset)
13744 (window_box_right, window_box_right_offset): Declare extern.
13745 Otherwise, these inline functions do not conform to C99 and
13746 are miscompiled by Microsoft compilers. Reported by Eli Zaretskii in
13747 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>.
13748 * intervals.c (adjust_intervals_for_insertion)
13749 (adjust_intervals_for_deletion): Now extern, because otherwise the
13750 extern inline functions 'offset_intervals' couldn't refer to it.
13751 (static_offset_intervals): Remove.
13752 (offset_intervals): Rewrite using the old contents of
13753 static_offset_intervals. The old version didn't conform to C99
13754 because an extern inline function contained a reference to an
13755 identifier with static linkage.
13756
13757 2011-11-06 Andreas Schwab <schwab@linux-m68k.org>
13758
13759 * keyboard.c (interrupt_signal): Don't call kill-emacs while in
13760 GC.
13761
13762 2011-11-06 Eli Zaretskii <eliz@gnu.org>
13763
13764 * xdisp.c (init_iterator, reseat_to_string): Don't set the
13765 iterator's bidi_p flag if Vpurify_flag is non-nil. (Bug#9963)
13766 (Fcurrent_bidi_paragraph_direction): If Vpurify_flag is non-nil,
13767 return Qleft_to_right.
13768
13769 2011-11-06 Chong Yidong <cyd@gnu.org>
13770
13771 * window.c (Fwindow_live_p, Fwindow_frame, Fframe_root_window)
13772 (Fminibuffer_window, Fwindow_buffer, Fwindow_splits)
13773 (Fset_window_splits, Fwindow_nest, Fset_window_nest)
13774 (Fwindow_use_time, Fwindow_total_size, Fwindow_normal_size)
13775 (Fwindow_new_normal, Fwindow_left_column, Fwindow_top_line)
13776 (Fwindow_margins, Fwindow_fringes, Fwindow_scroll_bars)
13777 (Fwindow_vscroll): Doc fix.
13778 (Fwindow_top_child, Fwindow_left_child): Eliminate a nil default
13779 argument, since it makes no sense to pass a live window and for
13780 consistency with window-child.
13781
13782 2011-11-05 Christoph Scholtes <cschol2112@googlemail.com>
13783
13784 * makefile.w32-in ($(TEMACS), (gl-stamp)): Use $(THISDIR) to
13785 support MSVC.
13786
13787 2011-11-05 Jason Rumney <jasonr@gnu.org>
13788
13789 * w32font.c (font_matches_spec): Filter out non-Japanese kana fonts.
13790 (add_font_entity_to_list): Filter out non-Japanese Shift-JIS
13791 fonts (Bug#6029).
13792 (add_font_entity_to_list): Fix logic errors in mixed boolean and
13793 bitwise arithmetic preventing use of unicode-sip and non-truetype
13794 opentype fonts.
13795
13796 2011-11-05 Eli Zaretskii <eliz@gnu.org>
13797
13798 * s/ms-w32.h (fstat, stat, utime): Move redirections to
13799 "emacs"-only part.
13800
13801 * w32fns.c (x_create_tip_frame, Fx_create_frame): Rearrange
13802 initialization code to keep similarity to xfns.c after changes
13803 from 2011-11-05.
13804
13805 2011-11-05 Jan Djärv <jan.h.d@swipnet.se>
13806
13807 * nsfns.m: Declare image_cache_refcount if GLYPH_DEBUG.
13808 (unwind_create_frame): New function (Bug#9943).
13809 (Fx_create_frame): Restructure code to be more similar to the one in
13810 xfns.c. Call record_unwind_protect with unwind_create_frame (Bug#9943).
13811 Initialize image_cache_refcount if GLYPH_DEBUG (Bug#9943).
13812 Move terminal->reference_count++ just before making the frame official
13813 (Bug#9943).
13814
13815 * nsterm.m (x_free_frame_resources): New function.
13816 (x_destroy_window): Move code to x_free_frame_resources.
13817
13818 * xfns.c (unwind_create_frame): Fix comment.
13819 (Fx_create_frame, x_create_tip_frame):
13820 Move terminal->reference_count++ just before making the frame
13821 official. Move initialization of image_cache_refcount and
13822 dpyinfo_refcount before calling init_frame_faces (Bug#9943).
13823
13824 2011-11-05 Eli Zaretskii <eliz@gnu.org>
13825
13826 Support MSVC build with newer versions of Visual Studio.
13827 * makefile.w32-in (TAGS-gmake): Don't use $(patsubst ...), as
13828 Nmake barfs on that. Use $(OBJ*_c) variables instead, defined on
13829 nt/gmake.defs.
13830
13831 * lisp.h (ENUM_BF): New macro, for enumerated types in bitfields,
13832 which are not supported by MSVC.
13833 (Lisp_Symbol, Lisp_Misc_Any, Lisp_Marker, Lisp_Misc_Overlay)
13834 (Lisp_Save_Value, Lisp_Free): Use ENUM_BF for enumerated types in
13835 bitfields.
13836 (Lisp_Object) [USE_LISP_UNION_TYPE]: Use ENUM_BF for enumerated
13837 types in bitfields.
13838 (DEFUN) [_MSC_VER]: Define in a different way for MSVC.
13839
13840 * w32fns.c [_MSC_VER]: DECLARE_HANDLE for any MSVC version.
13841
13842 2011-11-05 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
13843
13844 Support MSVC build with newer versions of Visual Studio.
13845 * w32.c: Don't include w32api.h for MSVC.
13846 (init_environment) [_MSC_VER]: Call sys_access, not _access.
13847
13848 * s/ms-w32.h <sigset_t, ssize_t> [_MSC_VER]: Typedefs for MSVC.
13849 [_MSC_VER]: Include sys/timeb.h, sys/stat.h, and signal.h.
13850 (fstat, stat, utime) [_MSC_VER]: Redirect to their sys_* cousins.
13851 (malloc, free, realloc, calloc) [_MSC_VER]: Always redirect to the
13852 e_* cousins.
13853 (alloca) [_MSC_VER]: Define to _alloca.
13854
13855 * lisp.h (DECL_ALIGN) [_MSC_VER]: Define for MSVC.
13856
13857 * regex.c <re_char> [_MSC_VER]: A separate definition for MSVC.
13858
13859 2011-11-04 Eli Zaretskii <eliz@gnu.org>
13860
13861 * xdisp.c (note_mouse_highlight): If either of
13862 previous/next-single-property-change returns nil, treat that as
13863 the beginning or the end of the buffer. (Bug#9955)
13864
13865 2011-11-04 Jan Djärv <jan.h.d@swipnet.se>
13866
13867 * gtkutil.c (xg_make_tool_item): Add callbacks if one of wimage or
13868 label is not null (Bug#9951).
13869 (xg_tool_item_stale_p): Handle the fact that wimage and/or wlbl
13870 may be NULL.
13871
13872 2011-11-04 Eli Zaretskii <eliz@gnu.org>
13873
13874 * window.c (Fwindow_body_size): Mention in the doc string that the
13875 return value is in frame's canonical units. (Bug#9949)
13876
13877 2011-11-03 Eli Zaretskii <eliz@gnu.org>
13878
13879 * xdisp.c (note_mouse_highlight): Initialize `area'. (Bug#9947)
13880
13881 * w32fns.c (unwind_create_frame): If needed, free the glyph
13882 matrices of the partially constructed frame. (Bug#9943)
13883 * xfns.c (unwind_create_frame): Likewise.
13884
13885 2011-11-01 Eli Zaretskii <eliz@gnu.org>
13886
13887 * xdisp.c (mouse_face_from_buffer_pos): Fix a typo in a comment.
13888 Don't stop backward scan on the continuation glyph, even though
13889 its CHARPOS is positive.
13890 (mouse_face_from_buffer_pos, note_mouse_highlight):
13891 Rename cover_string to disp_string.
13892
13893 2011-11-01 Martin Rudalics <rudalics@gmx.at>
13894
13895 * window.c (temp_output_buffer_show): Don't use
13896 Vtemp_buffer_show_specifiers.
13897 (Vtemp_buffer_show_specifiers): Remove unused variable.
13898
13899 2011-10-30 Eli Zaretskii <eliz@gnu.org>
13900
13901 * xdisp.c (try_cursor_movement): Make sure ROW isn't decremented
13902 past the beginning of the current glyph matrix.
13903
13904 2011-10-30 Adam Sjøgren <asjo@koldfront.dk> (tiny change)
13905
13906 * xterm.c: Include X11/Xproto.h if HAVE_GTK3.
13907 (x_error_handler): Ignore BadMatch for X_SetInputFocus for
13908 HAVE_GTK3 (Bug#9869).
13909
13910 * gtkutil.c (xg_win_to_widget, xg_event_is_for_menubar): Initialize
13911 type to GDK_NOTHING so valgrind does not complain (Bug#9901).
13912
13913 * xterm.h (x_display_info): Add Xatom_net_wm_state_hidden (Bug#9893).
13914
13915 * xterm.c: Declare x_handle_net_wm_state to return int.
13916 (handle_one_xevent): Check if we are iconified but don't have
13917 _NET_WM_STATE_HIDDEN. If do, treat as deiconify (Bug#9893).
13918 (get_current_wm_state): Return non-zero if not hidden,
13919 check for _NET_WM_STATE_HIDDEN (Bug#9893).
13920 (do_ewmh_fullscreen): Ignore return value from get_current_wm_state.
13921 (x_handle_net_wm_state): Return what get_current_wm_state returns.
13922 (x_term_init): Initialize dpyinfo->Xatom_net_wm_state_hidden.
13923
13924 2011-10-29 Paul Eggert <eggert@cs.ucla.edu>
13925
13926 * alloc.c (which_symbols): Declare EXTERNALLY_VISIBLE,
13927 so that this new function doesn't get optimized away by a
13928 whole-program optimizer. Make the 2nd arg EMACS_INT, not int.
13929
13930 2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
13931
13932 * frame.h (MOUSE_HL_INFO): Remove excess parens.
13933
13934 2011-10-29 Eli Zaretskii <eliz@gnu.org>
13935
13936 Fix the `xbytecode' command.
13937 * .gdbinit (xprintbytestr): New command.
13938 (xwhichsymbols): Rename from `which'; all callers changed.
13939 (xbytecode): Print the byte-code string as well.
13940
13941 2011-10-29 Kim Storm <storm@cua.dk>
13942
13943 * alloc.c (which_symbols): New function.
13944
13945 2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
13946
13947 * minibuf.c (read_minibuf_noninteractive): Allow reading empty
13948 line. (Bug#9903)
13949
13950 2011-10-29 Glenn Morris <rgm@gnu.org>
13951
13952 * process.c (wait_reading_process_output): Revert 2009-08-30 change.
13953 Not clear what it was for, and it causes various bugs. (Bug#9839)
13954
13955 2011-10-28 Eli Zaretskii <eliz@gnu.org>
13956
13957 * xdisp.c (note_mouse_highlight): Initialize `part', to avoid a
13958 possible random value that matches one of those tested as
13959 condition to clear the mouse face.
13960
13961 2011-10-28 Chong Yidong <cyd@gnu.org>
13962
13963 * xdisp.c (note_mouse_highlight): Fix use of uninitialized var.
13964
13965 2011-10-28 Dan Nicolaescu <dann@ics.uci.edu>
13966
13967 * window.c (make_window): Initialize phys_cursor_on_p.
13968
13969 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
13970
13971 * lisp.h (struct Lisp_Symbol): Update comments.
13972
13973 2011-10-28 Juanma Barranquero <lekktu@gmail.com>
13974
13975 * w32font.c (w32_load_unicows_or_gdi32): Add missing return.
13976
13977 2011-10-28 Eli Zaretskii <eliz@gnu.org>
13978
13979 Fix Emacs on Windows 9X (bug#8562). Thanks to oslsachem
13980 <oslsachem@gmail.com> for helping to debug this.
13981
13982 * w32font.c (g_b_init_is_w9x, g_b_init_get_outline_metrics_w)
13983 (g_b_init_get_text_metrics_w, g_b_init_get_glyph_outline_w)
13984 (g_b_init_get_glyph_outline_w): New static variables.
13985 (GetOutlineTextMetricsW_Proc, GetTextMetricsW_Proc)
13986 (GetGlyphOutlineW_Proc): New typedefs.
13987 (w32_load_unicows_or_gdi32, get_outline_metrics_w)
13988 (get_text_metrics_w, get_glyph_outline_w, globals_of_w32font):
13989 New functions.
13990 (w32font_open_internal, compute_metrics):
13991 Call get_outline_metrics_w, get_text_metrics_w, and get_glyph_outline_w
13992 instead of calling the "wide" APIs directly.
13993
13994 * emacs.c (main) [HAVE_NTGUI]: Call globals_of_w32font.
13995
13996 * w32.h (syms_of_w32font): Add prototype.
13997
13998 2011-10-27 Juanma Barranquero <lekktu@gmail.com>
13999
14000 * window.c (Fframe_root_window, Fframe_first_window, Fwindow_end)
14001 (Fframe_selected_window, Ftemp_output_buffer_show, Fnext_window)
14002 (Fdelete_window_internal, Fwindow_parameters): Fix typos in docstrings.
14003 (Fmove_to_window_line): Doc fix.
14004
14005 2011-10-27 Chong Yidong <cyd@gnu.org>
14006
14007 * process.c (make_process): Set gnutls_state to NULL.
14008
14009 * gnutls.c (emacs_gnutls_deinit): Deinit the gnutls_state if it is
14010 non-NULL, regardless of GNUTLS_INITSTAGE.
14011 (Fgnutls_boot): Cleanups. Call emacs_gnutls_deinit if we signal
14012 an error. Set process slots as soon as we allocate them.
14013
14014 * gnutls.h (GNUTLS_LOG, GNUTLS_LOG2): Fix macros.
14015
14016 2011-10-27 Chong Yidong <cyd@gnu.org>
14017
14018 * gnutls.c (emacs_gnutls_deinit): New function.
14019 Deallocate credentials structures as well as calling gnutls_deinit.
14020 (Fgnutls_deinit, Fgnutls_boot): Use it.
14021
14022 * process.c (make_process): Initialize GnuTLS credentials to NULL.
14023 (deactivate_process): Call emacs_gnutls_deinit.
14024
14025 2011-10-27 Juanma Barranquero <lekktu@gmail.com>
14026
14027 * image.c (x_create_x_image_and_pixmap):
14028 * w32.c (sys_rename, w32_delayed_load):
14029 * w32font.c (fill_in_logfont):
14030 * w32reg.c (x_get_string_resource): Silence compiler warnings.
14031
14032 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
14033
14034 * w32fns.c (w32_default_color_map): New function,
14035 extracted from Fw32_default_color_map.
14036 (Fw32_default_color_map, Fx_open_connection): Use it. (Bug#9785)
14037
14038 2011-10-25 Paul Eggert <eggert@cs.ucla.edu>
14039
14040 * dispextern.h (Fcontrolling_tty_p): New decl (Bug#6649 part 2).
14041
14042 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
14043
14044 * keyboard.c (test_undefined): New function (bug#9751).
14045 (read_key_sequence): Use it to detect when a key is bound to `undefined'.
14046
14047 2011-10-25 Enami Tsugutomo <tsugutomo.enami@jp.sony.com>
14048
14049 * sysdep.c (init_sys_modes): Fix the check for the controlling
14050 terminal (Bug#6649).
14051
14052 2011-10-20 Eli Zaretskii <eliz@gnu.org>
14053
14054 * dispextern.h (struct bidi_it): New member next_en_type.
14055
14056 * bidi.c (bidi_line_init): Initialize the next_en_type member.
14057 (bidi_resolve_explicit_1): When next_en_pos is valid for the
14058 current character, check also for next_en_type being WEAK_EN.
14059 (bidi_resolve_weak): Don't enter the expensive loop if the current
14060 position is before next_en_pos. Record the bidi type of the first
14061 non-ET, non-BN character we find, in addition to its position.
14062 (bidi_level_of_next_char): Invalidate next_en_type when
14063 next_en_pos is over-stepped.
14064
14065 2011-10-20 Paul Eggert <eggert@cs.ucla.edu>
14066
14067 Time zone name fixes for non-ASCII locales (Bug#641, Bug#9794)
14068 * editfns.c: Rewrite current-time-zone so that it invokes
14069 the equivalent of (format-time-string "%Z") to get the time zone name.
14070 This fixes a bug when the time zone name contains characters that
14071 need converting from the system time locale to Emacs internal format.
14072 This fixes a shortcoming that I introduced in my 1999-10-19 patch:
14073 that patch fixed format-time-string to do the conversion, but
14074 I forgot to fix current-time-zone.
14075 (format_time_string): New function, containing most of
14076 what Fformat_time_string used to contain.
14077 (Fformat_time_string): Rewrite in terms of format_time_string.
14078 This doesn't change this function's behavior.
14079 (current-time-zone): Rewrite to use format_time_string.
14080 This fixes the bug reported by Michael Schierl in
14081 <http://lists.gnu.org/archive/html/emacs-devel/2007-06/msg00334.html>.
14082 Jason Rumney's 2007-06-07 change worked around this bug, but
14083 didn't fix it.
14084 * systime.h (tzname, timezone): Remove no-longer-used declarations.
14085
14086 2011-10-19 Eli Zaretskii <eliz@gnu.org>
14087
14088 * xdisp.c (start_display): If the character at POS is displayed
14089 via a display vector, reset IT->current.dpvec_index to zero.
14090 (try_window_reusing_current_matrix): If a line ends in a display
14091 vector or the next line starts in a display vector, continue
14092 redrawing the window even though the character position of
14093 start_row was reached.
14094 (Bug#9771, part 2)
14095
14096 2011-10-18 Chong Yidong <cyd@gnu.org>
14097
14098 * xdisp.c (get_next_display_element): Handle U+2010 and U+2011
14099 with nobreak-char-display too.
14100
14101 2011-10-18 Eli Zaretskii <eliz@gnu.org>
14102
14103 Fix part 3 of bug#9771.
14104 * bidi.c (bidi_line_init): Initialize next_en_pos to zero, not -1.
14105 (bidi_resolve_neutral): Don't enter the expensive loop looking for
14106 non-neutral characters if the current character is a paragraph
14107 separator (a.k.a. Newline). This avoids running the same
14108 expensive loop twice, once when we consume the preceding newline
14109 and the other time when the line actually needs to be displayed.
14110 Avoid the loop when we see neutrals on the base embedding level
14111 following a character whose directionality is the same as the
14112 paragraph's. This avoids running the expensive loop when a line
14113 ends in a long sequence of neutrals, like control characters.
14114 Add assertion against STRONG_AL type. Slightly rearrange code
14115 that determines the type of a neutral given the first non-neutral
14116 that follows it.
14117 (bidi_level_of_next_char): Set next_en_pos to zero when
14118 invalidating its info.
14119
14120 2011-10-17 Eli Zaretskii <eliz@gnu.org>
14121
14122 * xdisp.c (push_display_prop): Determine whether to record string
14123 or buffer position by IT->string, not by IT->method. Allow
14124 GET_FROM_DISPLAY_VECTOR as IT->method on entry. (Bug#9771, part 4)
14125 (move_it_vertically_backward): Don't look for character position
14126 immediately after the newline when in a continuation line.
14127 (Bug#9771, part 1)
14128
14129 2011-10-15 Martin Rudalics <rudalics@gmx.at>
14130
14131 * window.c (coordinates_in_window): Rewrite and delabelize
14132 vertical border check. (Bug#5357) (Bug#9618)
14133
14134 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
14135
14136 * xterm.c (frame_highlight, frame_unhighlight): Ignore unexplained
14137 errors in XSetWindowBorder (bug#9310).
14138
14139 2011-10-13 Dmitry Antipov <dmantipov@yandex.ru>
14140
14141 * editfns.c (Fset_time_zone_rule): Replace free with xfree to
14142 avoid crash when xmalloc overrun checking is enabled.
14143
14144 2011-10-13 Eli Zaretskii <eliz@gnu.org>
14145
14146 * xdisp.c (Fcurrent_bidi_paragraph_direction): Initialize
14147 itb.paragraph_dir to NEUTRAL_DIR. Fixes an occasional incorrect
14148 cursor motion with <left> and <right> arrow keys.
14149
14150 * bidi.c (bidi_init_it): Don't initialize paragraph_dir here, as
14151 some callers set that themselves.
14152
14153 2011-10-12 Eli Zaretskii <eliz@gnu.org>
14154
14155 * xdisp.c (find_row_edges): Handle the case where ROW comes from a
14156 display string and the previous row comes from the same string and
14157 is empty. (Bug#9739) (Bug#9738)
14158
14159 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
14160
14161 * doc.c (get_doc_string): Encode file name (bug#9735).
14162
14163 2011-10-12 Eli Zaretskii <eliz@gnu.org>
14164
14165 * bidi.c (bidi_level_of_next_char):
14166 * xdisp.c (get_visually_first_element): Remove old incorrect
14167 comments regarding the Unicode Line Separator character.
14168
14169 * bidi.c (bidi_init_it): Initialize paragraph_dir to NEUTRAL_DIR.
14170
14171 2011-10-12 Dmitry Antipov <dmantipov@yandex.ru>
14172
14173 * alloc.c (Fgc_status): Do not access beyond zombies array
14174 boundary if nzombies > MAX_ZOMBIES.
14175 * alloc.c (dump_zombies): Add missing format specifier.
14176
14177 2011-10-12 Paul Eggert <eggert@cs.ucla.edu>
14178
14179 * xdisp.c (set_cursor_from_row): Simplify conditionals,
14180 to pacify GCC 4.6.1 x86-64 with -O2 -Wstrict-overflow.
14181
14182 * lread.c (read_escape): Allow hex escapes as large as ?\xfffffff.
14183 Some packages use them to denote characters with modifiers.
14184
14185 2011-10-11 Andreas Schwab <schwab@linux-m68k.org>
14186
14187 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR)
14188 (GCPRO5_VAR, GCPRO6_VAR, UNGCPRO_VAR): Add whitespace to avoid
14189 matching a pp-number. Rename parameter var to var1.
14190
14191 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
14192
14193 * minibuf.c (Finternal_complete_buffer): Fix last change (bug#9709).
14194
14195 2011-10-08 Glenn Morris <rgm@gnu.org>
14196
14197 * callint.c (Fcall_interactively): Give a more explicit error for the
14198 'c' case with a non-character input. (Bug#8479)
14199
14200 2011-10-08 Eli Zaretskii <eliz@gnu.org>
14201
14202 * xdisp.c (hscroll_window_tree): Support hscroll in right-to-left
14203 lines.
14204 (set_cursor_from_row): Fix cursor positioning in mixed L2R+R2L
14205 lines that are hscrolled on the left.
14206
14207 * dispnew.c (buffer_posn_from_coords): Account for a possible
14208 presence of header-line. (Bug#4426)
14209
14210 2011-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
14211
14212 * buffer.c (syms_of_buffer) <enable-multibyte-characters>:
14213 Don't advertise functionality which we discourage or doesn't work.
14214
14215 2011-10-07 Paul Eggert <eggert@cs.ucla.edu>
14216
14217 * alloc.c (GC_LISP_OBJECT_ALIGNMENT): Use offsetof, not __alignof__
14218 or sizeof. __alignof__ gives the wrong answer on Fedora x86-64
14219 with GCC 4.6.1 when configured with CC='gcc -m32' --with-wide-int;
14220 this makes Emacs dump core during garbage collection on rare
14221 occasions. sizeof is obviously inferior to offsetof here, so
14222 stick with offsetof.
14223 (GC_POINTER_ALIGNMENT): New macro.
14224 (mark_memory): Omit 3rd (offset) arg; caller changed.
14225 Don't assume EMACS_INT alignment is the same as pointer alignment.
14226
14227 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
14228
14229 * keyboard.c (read_key_sequence_remapped): New var.
14230 (read_key_sequence): Compute remapping in the right buffer.
14231 (command_loop_1): Use read_key_sequence's remapping directly.
14232
14233 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
14234
14235 * dired.c (file_name_completion): Don't expand file name.
14236 (Ffile_name_completion, Ffile_name_all_completions): Expand file name
14237 before checking file name handler.
14238
14239 * minibuf.c (Finternal_complete_buffer): Only show internal buffers if
14240 they've been requested explicitly (bug#9591).
14241
14242 2011-10-01 Andreas Schwab <schwab@linux-m68k.org>
14243
14244 * keymap.c (Fsingle_key_description): Use make_specified_string
14245 instead of build_string to build string from push_key_description.
14246 (Bug#5193)
14247
14248 2011-09-30 Paul Eggert <eggert@cs.ucla.edu>
14249
14250 * buffer.h (struct buffer): Use time_t, not int, for a time stamp.
14251 This fixes a Y2038 bug on 64-bit hosts.
14252 * buffer.c (reset_buffer):
14253 * fileio.c (Fdo_auto_save, Fset_buffer_auto_saved)
14254 (Fclear_buffer_auto_save_failure):
14255 Use 0, not -1, to represent an unset failure time, since time_t
14256 might not be signed.
14257
14258 Remove dependency on glibc malloc internals.
14259 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
14260 Move back here from lisp.h, but with their new implementations.
14261 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
14262 (XMALLOC_OVERRUN_SIZE_SIZE): Move these new lisp.h macros here.
14263 * charset.c (charset_table_init): New static var.
14264 (syms_of_charset): Use it instead of xmalloc. This removes a
14265 dependency on glibc malloc internals. See Eli Zaretskii's comment in
14266 <http://lists.gnu.org/archive/html/emacs-devel/2011-09/msg00815.html>.
14267 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
14268 Move back to alloc.c.
14269 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
14270 (XMALLOC_OVERRUN_SIZE_SIZE): Move to alloc.c.
14271
14272 2011-09-30 Jan Djärv <jan.h.d@swipnet.se>
14273
14274 * nsterm.m (windowDidResize): Call x_set_window_size only when
14275 ns_in_resize is true. Otherwise set pixelwidth/height and
14276 call change_frame_size (Bug#9628).
14277
14278 2011-09-30 Paul Eggert <eggert@cs.ucla.edu>
14279
14280 Port --enable-checking=all to Fedora 14 x86-64.
14281 * charset.c (syms_of_charset): Also account for glibc malloc's
14282 internal overhead when calculating the initial malloc maximum.
14283
14284 Port --enable-checking=all to Fedora 14 x86.
14285 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
14286 Move to lisp.h.
14287 (xmalloc_put_size, xmalloc_get_size, overrun_check_malloc)
14288 (overrun_check_realloc, overrun_check_free):
14289 Use XMALLOC_OVERRUN_SIZE_SIZE, not sizeof (size_t).
14290 That way, xmalloc returns a properly-aligned pointer even if
14291 XMALLOC_OVERRUN_CHECK is defined. The old debugging code happened
14292 to align OK on typical 64-bit hosts, but not on Fedora 14 x86.
14293 * charset.c (syms_of_charset): Take XMALLOC_OVERRUN_CHECK_OVERHEAD
14294 into account when calculating the initial malloc maximum.
14295 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
14296 Move here from alloc.c, so that charset.c can use it too.
14297 Properly align; the old code wasn't right for common 32-bit hosts
14298 when configured with --enable-checking=all.
14299 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
14300 (XMALLOC_OVERRUN_SIZE_SIZE): New macros.
14301
14302 2011-09-29 Eli Zaretskii <eliz@gnu.org>
14303
14304 * sysdep.c (snprintf) [!EOVERFLOW]: If EOVERFLOW is not defined,
14305 use EDOM.
14306
14307 2011-09-28 Eli Zaretskii <eliz@gnu.org>
14308
14309 * xdisp.c (compute_display_string_end): If there's no display
14310 string at CHARPOS, return -1.
14311
14312 * bidi.c (bidi_fetch_char): When compute_display_string_end
14313 returns a negative value, treat the character as a normal
14314 character not covered by a display string. (Bug#9624)
14315
14316 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
14317
14318 * lread.c (Fread_from_string): Fix typo in docstring.
14319
14320 2011-09-27 Eli Zaretskii <eliz@gnu.org>
14321
14322 * xdisp.c (handle_invisible_prop): If invisible text ends on a
14323 newline, reseat the iterator instead of bidi-iterating there one
14324 character at a time. (Bug#9610)
14325 (BUFFER_POS_REACHED_P, move_it_in_display_line_to): Bail when past
14326 TO_CHARPOS if the bidi iterator is at base embedding level.
14327
14328 2011-09-27 Andreas Schwab <schwab@linux-m68k.org>
14329
14330 * lread.c (readevalloop): Use correct code for NBSP.
14331 (read1): Likewise. (Bug#9608)
14332
14333 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
14334
14335 * dbusbind.c (Fdbus_register_signal): When service is not
14336 registered, use nil in Vdbus_registered_objects_table. (Bug#9581)
14337
14338 2011-09-25 Glenn Morris <rgm@gnu.org>
14339
14340 * buffer.c (truncate-lines): Doc fix.
14341
14342 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
14343
14344 * window.c (Fwindow_prev_buffers, Fset_window_prev_buffers)
14345 (Fset_window_next_buffers): Doc fix.
14346
14347 2011-09-24 Glenn Morris <rgm@gnu.org>
14348
14349 * minibuf.c (read_minibuf): Disable line truncation. (Bug#5715)
14350
14351 2011-09-24 Paul Eggert <eggert@cs.ucla.edu>
14352
14353 Fix minor problems found by static checking.
14354 * xdisp.c (string_from_display_spec): Don't assume vecsize fits in int.
14355 * indent.c (Fvertical_motion): Fix == vs = typo.
14356
14357 2011-09-24 Eli Zaretskii <eliz@gnu.org>
14358
14359 * dispnew.c (syms_of_display) <redisplay-dont-pause>:
14360 Default value is now t. Doc fix.
14361
14362 * indent.c (Fvertical_motion): Compute and apply the overshoot
14363 logic when moving up, not only when moving down. Fix the
14364 confusing name and values of the it_overshoot_expected variable;
14365 logic changes accordingly. (Bug#9254) (Bug#9549)
14366
14367 * xdisp.c (pos_visible_p): Produce correct pixel coordinates when
14368 CHARPOS is covered by a display string which includes newlines.
14369 (move_it_vertically_backward): Avoid inflooping when START_CHARPOS
14370 is covered by a display string with embedded newlines.
14371
14372 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
14373
14374 * dbusbind.c (Fdbus_register_signal): Add match rule to
14375 Vdbus_registered_objects_table. (Bug#9581)
14376 (Fdbus_register_method, Vdbus_registered_objects_table):
14377 Fix docstring.
14378
14379 2011-09-24 Jim Meyering <meyering@redhat.com>
14380
14381 do not ignore write error for any output size
14382 The previous change was incomplete.
14383 While it makes emacs --batch detect the vast majority of stdout
14384 write failures, errors were still ignored whenever the output size is
14385 k * (BUFSIZ+1) - 4. E.g., on a system with BUFSIZ of 4096,
14386 $ emacs --batch --eval '(print (format "%4093d" 0))' > /dev/full \
14387 && echo FAIL: ignored write error
14388 FAIL: ignored write error
14389 $ emacs --batch --eval '(print (format "%20481d" 0))' > /dev/full \
14390 && echo FAIL: ignored write error
14391 FAIL: ignored write error
14392 * emacs.c (Fkill_emacs): Also test ferror. (Bug#9574)
14393
14394 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
14395
14396 * emacs.c (Fkill_emacs): In noninteractive mode exit
14397 non-successfully if a write error occurred on stdout. (Bug#9574)
14398
14399 2011-09-21 Eli Zaretskii <eliz@gnu.org>
14400
14401 * xdisp.c (pop_it): Allow it->object that is a cons cell to pass
14402 the xassert test.
14403
14404 * dispextern.h (struct it): Update the comment documenting what
14405 can it->OBJECT be.
14406
14407 2011-09-20 Eli Zaretskii <eliz@gnu.org>
14408
14409 * xdisp.c (set_cursor_from_row): If the row ends in a newline from
14410 a display string, extend search for cursor position to end of row.
14411 (find_row_edges): If the row ends in a newline from a display
14412 string, increment its MATRIX_ROW_END_CHARPOS by one. (Bug#9549)
14413 Handle the case of a display string with multiple newlines.
14414 (Fcurrent_bidi_paragraph_direction): Fix search for previous
14415 non-empty line. Fixes confusing cursor motion with arrow keys at
14416 the beginning of a line that starts with whitespace.
14417
14418 2011-09-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
14419
14420 * lread.c (Fread_from_string): Document what FINAL-STRING-INDEX is
14421 (bug#9493).
14422
14423 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
14424
14425 * xfns.c (Fx_create_frame): Handle the bitmapIcon resource as
14426 boolean (Bug#9154).
14427
14428 2011-09-18 Eli Zaretskii <eliz@gnu.org>
14429
14430 * xdisp.c (display_line): Record maximum and minimum buffer
14431 positions even if no glyphs were produced (e.g., by a zero-width
14432 stretch). Fixes bug#9530 on a TTY. Under word-wrap, don't record
14433 buffer positions that will be removed from the glyph row because
14434 they don't fit.
14435 (produce_stretch_glyph): Fix a bug in :align-to on a TTY when the
14436 column is beyond frame width: don't subtract 1 "pixel" when
14437 computing width of the stretch.
14438 (reseat_at_next_visible_line_start): Undo the change made on
14439 2011-09-17 that saved paragraph information and restored it after
14440 the call to `reseat'. (Bug#9545)
14441
14442 2011-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14443
14444 * xdisp.c (expose_window): Save original value of phys_cursor_on_p
14445 and turn window cursor on if cleared (Bug#9415).
14446
14447 2011-09-18 Andreas Schwab <schwab@linux-m68k.org>
14448
14449 * search.c (boyer_moore): Take unibyte characters from pattern
14450 literally. (Bug#9458)
14451
14452 2011-09-18 Eli Zaretskii <eliz@gnu.org>
14453
14454 * xdisp.c (reseat_at_next_visible_line_start): Fix last change.
14455
14456 2011-09-18 Paul Eggert <eggert@cs.ucla.edu>
14457
14458 Fix minor problem found by static checking.
14459 * xdisp.c (reseat_at_next_visible_line_start): Mark locals as
14460 initialized, to pacify gcc -Wuninitialized.
14461
14462 * fileio.c: Report proper errno when syscall falls.
14463 (Finsert_file_contents): Save and restore errno,
14464 so that report_file_error outputs the correct diagnostic.
14465 (Fwrite_region) [CLASH_DETECTION]: Likewise.
14466
14467 2011-09-18 Eli Zaretskii <eliz@gnu.org>
14468
14469 * .gdbinit (pgx): Fix references to fields of `struct glyph'.
14470
14471 2011-09-17 Eli Zaretskii <eliz@gnu.org>
14472
14473 * xdisp.c (produce_stretch_glyph): Another fix for changes made on
14474 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9530)
14475
14476 2011-09-17 Eli Zaretskii <eliz@gnu.org>
14477
14478 * xdisp.c (reseat_at_next_visible_line_start): Keep information
14479 about the current paragraph and restore it after the call to reseat.
14480
14481 * bidi.c (MAX_PARAGRAPH_SEARCH): New macro.
14482 (bidi_find_paragraph_start): Search back for paragraph beginning
14483 at most MAX_PARAGRAPH_SEARCH lines; if not found, return BEGV_BYTE.
14484 (bidi_move_to_visually_next): Only trigger paragraph-related
14485 computations when the last character is a newline or at EOB, not
14486 just any NEUTRAL_B. (Bug#9470)
14487
14488 * xdisp.c (set_cursor_from_row): Don't invoke special treatment of
14489 truncated lines if point is covered by a display string. (Bug#9524)
14490
14491 2011-09-16 Paul Eggert <eggert@cs.ucla.edu>
14492
14493 * xselect.c: Relax test for outgoing X longs (Bug#9498).
14494 (cons_to_x_long): New function.
14495 (lisp_data_to_selection_data): Use it. Correct the test for
14496 short-versus-long data; it was negated. Break out of vector
14497 loop, for efficiency, when a long datum is discovered.
14498
14499 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
14500
14501 * eval.c (Fquote): Document its non-consing behavior (bug#9482).
14502
14503 2011-09-16 Eli Zaretskii <eliz@gnu.org>
14504
14505 * image.c (tiff_handler): Work around a bug in MinGW GCC 3.x (see
14506 GCC PR/17406) by declaring this function with external scope.
14507
14508 2011-09-15 Paul Eggert <eggert@cs.ucla.edu>
14509
14510 * editfns.c (Fformat): Fix bug in text-property fix (Bug#9514).
14511 Don't mishandle (length (format "%%")) and (format "%4000s%%" "").
14512
14513 2011-09-15 Andreas Schwab <schwab@linux-m68k.org>
14514
14515 * editfns.c (Fformat): Correctly handle text properties on "%%".
14516
14517 2011-09-15 Eli Zaretskii <eliz@gnu.org>
14518
14519 * xterm.c (x_draw_composite_glyph_string_foreground):
14520 * w32term.c (x_draw_composite_glyph_string_foreground):
14521 * term.c (encode_terminal_code):
14522 * composite.c (composition_update_it, get_composition_id):
14523 * xdisp.c (get_next_display_element)
14524 (fill_composite_glyph_string): Add comments about special meaning
14525 of TAB characters in a composition.
14526
14527 2011-09-15 Paul Eggert <eggert@cs.ucla.edu>
14528
14529 * editfns.c (Fformat): Fix off-by-1 bug for "%%b" (Bug#9514).
14530 This occurs when processing a multibyte format.
14531 Problem reported by Wolfgang Jenker.
14532
14533 2011-09-15 Johan Bockgård <bojohan@gnu.org>
14534
14535 * xdisp.c (try_cursor_movement): Only check for exact match if
14536 cursor hpos found by set_cursor_from_row is valid. (Bug#9495)
14537
14538 2011-09-14 Paul Eggert <eggert@cs.ucla.edu>
14539
14540 Remove unused external symbols.
14541 * dispextern.h (calc_pixel_width_or_height): Remove decl.
14542 * xdisp.c (calc_pixel_width_or_height): Now static.
14543 * doprnt.c (exprintf) [! (HAVE_X_WINDOWS && USE_X_TOOLKIT)]: Remove.
14544 * indent.c (check_display_width):
14545 * w32term.c: Fix comment to match code.
14546 * xterm.c, xterm.h (x_catching_errors): Remove.
14547
14548 2011-09-14 Paul Eggert <eggert@cs.ucla.edu>
14549
14550 * xselect.c: Use signed conversions more consistently (Bug#9498).
14551 (selection_data_to_lisp_data): Assume incoming selection data are
14552 signed integers, not unsigned. This is to be consistent with
14553 outgoing selection data, which was modified to use signed integers
14554 in as part of the fix to Bug#9196 in response to Jan D.'s comment
14555 in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9196#32> that X11
14556 expects long, not unsigned long.
14557
14558 2011-09-14 Eli Zaretskii <eliz@gnu.org>
14559
14560 * xdisp.c (try_window_reusing_current_matrix): Fix incorrect
14561 computation of loop end. Reported by Johan Bockgård
14562 <bojohan@gnu.org>.
14563
14564 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
14565
14566 * frame.c (Fother_visible_frames_p): Function deleted.
14567
14568 2011-09-12 Eli Zaretskii <eliz@gnu.org>
14569
14570 * indent.c (compute_motion): Process display vector front to back
14571 rather than the other way around. (Bug#2496)
14572
14573 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
14574
14575 * fileio.c (Finsert_file_contents): Don't assume beg_offset is 0.
14576
14577 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
14578
14579 * minibuf.c (Fread_from_minibuffer): Doc fix.
14580
14581 2011-09-11 Eli Zaretskii <eliz@gnu.org>
14582
14583 * xdisp.c (produce_stretch_glyph): Fix a typo made in changes from
14584 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9475)
14585
14586 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
14587
14588 * fileio.c (Fvisited_file_modtime): Document `(-1 65535)' as a
14589 value for non-existent files.
14590
14591 2011-09-11 Eli Zaretskii <eliz@gnu.org>
14592
14593 * fileio.c (Finsert_file_contents): If the file cannot be opened,
14594 set its "size" to -1. This will set the modtime_size field of
14595 the corresponding buffer to -1, which is what
14596 verify-visited-file-modtime expects for files that do not exist.
14597 (Bug#9139)
14598
14599 2011-09-11 Paul Eggert <eggert@cs.ucla.edu>
14600
14601 * keymap.h (KEY_DESCRIPTION_SIZE, push_key_description): Move decls
14602 here ...
14603 * lisp.h: ... from here. push_key_description is no longer
14604 defined in keyboard.c, so its declaration should not be in
14605 lisp.h's "Defined in keyboard.c" section, and KEY_DESCRIPTION_SIZE
14606 logically belongs with push_key_description.
14607
14608 2011-09-10 Paul Eggert <eggert@cs.ucla.edu>
14609
14610 * buffer.h: Include <sys/types.h> instead of <time.h>.
14611 Otherwise, off_t wasn't defined on FreeBSD 9.0-BETA2 i386.
14612 Problem reported by Herbert J. Skuhra.
14613
14614 2011-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
14615
14616 * xml.c (parse_region): Make the parsing work for
14617 non-comment-starting XML files again (bug#9144).
14618
14619 2011-09-10 Andreas Schwab <schwab@linux-m68k.org>
14620
14621 * image.c (gif_load): Fix calculation of bottom and right corner.
14622 (Bug#9468)
14623
14624 2011-09-10 Eli Zaretskii <eliz@gnu.org>
14625
14626 * xdisp.c (MAX_DISP_SCAN): Decrease to 250. Prevents sluggish
14627 redisplay in small windows.
14628
14629 2011-09-09 Eli Zaretskii <eliz@gnu.org>
14630
14631 * frame.c (x_report_frame_params): Cast to avoid compiler warnings.
14632
14633 2011-09-08 Martin Rudalics <rudalics@gmx.at>
14634
14635 * window.c (Fset_window_prev_buffers, Fset_window_next_buffers):
14636 Operate on live windows only.
14637
14638 2011-09-08 Juanma Barranquero <lekktu@gmail.com>
14639
14640 * emacs.c (my_heap_start): #ifdef to avoid warnings when unused.
14641
14642 2011-09-07 Eli Zaretskii <eliz@gnu.org>
14643
14644 * xdisp.c (move_it_in_display_line_to): Call RESTORE_IT on ppos_it
14645 only under bidi iteration.
14646
14647 2011-09-07 Jan Djärv <jan.h.d@swipnet.se>
14648
14649 * gtkutil.c (xg_make_tool_item): Insert comment about eventbox.
14650
14651 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
14652
14653 isnan: Fix porting problem to Solaris 10 with bundled gcc.
14654 Without this fix, the command to link temacs failed due to an
14655 undefined symbol __builtin_isnan. This is because
14656 /usr/include/iso/math_c99.h #defines isnan(x) to
14657 __builtin_isnan(x), but the bundled gcc, which identifies itself
14658 as gcc 3.4.3 (csl-sol210-3_4-branch+sol_rpath), does not have
14659 a __builtin_isnan.
14660 * floatfns.c (isnan): #undef, and then #define to a clone of
14661 what's in data.c.
14662 (Fisnan): Always define, since it's always available now.
14663 (syms_of_floatfns): Always define isnan at the Lisp level.
14664
14665 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
14666
14667 * Makefile.in (gl-stamp): move-if-change now in build-aux (Bug#9169).
14668
14669 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
14670
14671 * fileio.c: Fix bugs with large file offsets (Bug#9428).
14672 The previous code assumed that file offsets (off_t values) fit in
14673 EMACS_INT variables, which is not true on typical 32-bit hosts.
14674 The code messed up by falsely reporting buffer overflow in cases
14675 such as (insert-file-contents "big" nil 1 2) into an empty buffer
14676 when "big" contains more than 2**29 bytes, even though this
14677 inserts just one byte and does not overflow the buffer.
14678 (Finsert_file_contents): Store file offsets as off_t
14679 values, not as EMACS_INT values. Check for overflow when
14680 converting between EMACS_INT and off_t. When checking for
14681 buffer overflow or for overlap, take the offsets into account.
14682 Don't use EMACS_INT for small values where int suffices.
14683 When checking for overlap, fix a typo: ZV was used where
14684 ZV_BYTE was intended.
14685 (Fwrite_region): Don't assume off_t fits into 'long'.
14686 * buffer.h (struct buffer.modtime_size): Now off_t, not EMACS_INT.
14687
14688 2011-09-05 Michael Albinus <michael.albinus@gmx.de>
14689
14690 * dbusbind.c (xd_signature_cat): Rename from signature_cat.
14691
14692 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
14693
14694 sprintf-related integer and memory overflow issues (Bug#9412).
14695
14696 * doprnt.c (doprnt): Support printing ptrdiff_t and intmax_t values.
14697 (esprintf, exprintf, evxprintf): New functions.
14698 * keyboard.c (command_loop_level): Now EMACS_INT, not int.
14699 (cmd_error): Kbd macro iterations count is now EMACS_INT, not int.
14700 (modify_event_symbol): Do not assume that the length of
14701 name_alist_or_stem is safe to alloca and fits in int.
14702 (Fexecute_extended_command): Likewise for function name and binding.
14703 (Frecursion_depth): Wrap around reliably on integer overflow.
14704 * keymap.c (push_key_description): First arg is now EMACS_INT, not int,
14705 since some callers pass EMACS_INT values.
14706 (Fsingle_key_description): Don't crash if symbol name contains more
14707 than MAX_ALLOCA bytes.
14708 * minibuf.c (minibuf_level): Now EMACS_INT, not int.
14709 (get_minibuffer): Arg is now EMACS_INT, not int.
14710 * lisp.h (get_minibuffer, push_key_description): Reflect API changes.
14711 (esprintf, exprintf, evxprintf): New decls.
14712 * window.h (command_loop_level, minibuf_level): Reflect API changes.
14713
14714 * dbusbind.c (signature_cat): New function.
14715 (xd_signature, Fdbus_register_signal):
14716 Do not overrun buffer; instead, report string overflow.
14717
14718 * dispnew.c (add_window_display_history): Don't overrun buffer.
14719 Truncate instead; this is OK since it's just a log.
14720
14721 * editfns.c (Fcurrent_time_zone): Don't overrun buffer
14722 even if the time zone offset is outlandishly large.
14723 Don't mishandle offset == INT_MIN.
14724
14725 * emacs.c (main) [NS_IMPL_COCOA]: Don't overrun buffer
14726 when creating daemon; the previous buffer-overflow check was incorrect.
14727
14728 * eval.c (verror): Simplify by rewriting in terms of evxprintf,
14729 which has the guts of the old verror function.
14730
14731 * filelock.c (lock_file_1, lock_file): Don't blindly alloca long name;
14732 use SAFE_ALLOCA instead. Use esprintf to avoid int-overflow issues.
14733
14734 * font.c: Include <float.h>, for DBL_MAX_10_EXP.
14735 (font_unparse_xlfd): Don't blindly alloca long strings.
14736 Don't assume XINT result fits in int, or that XFLOAT_DATA * 10
14737 fits in int, when using sprintf. Use single snprintf to count
14738 length of string rather than counting it via multiple sprintfs;
14739 that's simpler and more reliable.
14740 (font_unparse_fcname): Use it to avoid sprintf buffer overrun.
14741 (generate_otf_features) [0 && HAVE_LIBOTF]: Use esprintf, not
14742 sprintf, in case result does not fit in int.
14743
14744 * fontset.c (num_auto_fontsets): Now printmax_t, not int.
14745 (fontset_from_font): Print it.
14746
14747 * frame.c (tty_frame_count): Now printmax_t, not int.
14748 (make_terminal_frame, set_term_frame_name): Print it.
14749 (x_report_frame_params): In X, window IDs are unsigned long,
14750 not signed long, so print them as unsigned.
14751 (validate_x_resource_name): Check for implausibly long names,
14752 and don't assume name length fits in 'int'.
14753 (x_get_resource_string): Don't blindly alloca invocation name;
14754 use SAFE_ALLOCA. Use esprintf, not sprintf, in case result does
14755 not fit in int.
14756
14757 * gtkutil.c: Include <float.h>, for DBL_MAX_10_EXP.
14758 (xg_check_special_colors, xg_set_geometry):
14759 Make sprintf buffers a bit bigger, to avoid potential buffer overrun.
14760
14761 * lread.c (dir_warning): Don't blindly alloca buffer; use SAFE_ALLOCA.
14762 Use esprintf, not sprintf, in case result does not fit in int.
14763
14764 * macros.c (executing_kbd_macro_iterations): Now EMACS_INT, not int.
14765 (Fend_kbd_macro): Don't mishandle MOST_NEGATIVE_FIXNUM by treating
14766 it as a large positive number.
14767 (Fexecute_kbd_macro): Don't assume repeat count fits in int.
14768 * macros.h (executing_kbd_macro_iterations): Now EMACS_INT, not int.
14769
14770 * nsterm.m ((NSSize)windowWillResize): Use esprintf, not sprintf,
14771 in case result does not fit in int.
14772
14773 * print.c (float_to_string): Detect width overflow more reliably.
14774 (print_object): Make sprintf buffer a bit bigger, to avoid potential
14775 buffer overrun. Don't assume list length fits in 'int'. Treat
14776 print length of 0 as 0, not as infinity; to be consistent with other
14777 uses of print length in this function. Don't overflow print length
14778 index. Don't assume hash table size fits in 'long', or that
14779 vectorlike size fits in 'unsigned long'.
14780
14781 * process.c (make_process): Use printmax_t, not int, to format
14782 process-name gensyms.
14783
14784 * sysdep.c (snprintf) [! HAVE_SNPRINTF]: New function.
14785
14786 * term.c (produce_glyphless_glyph): Make sprintf buffer a bit bigger
14787 to avoid potential buffer overrun.
14788
14789 * xfaces.c (x_update_menu_appearance): Don't overrun buffer
14790 if X resource line is longer than 512 bytes.
14791
14792 * xfns.c (x_window): Make sprintf buffer a bit bigger
14793 to avoid potential buffer overrun.
14794
14795 * xterm.c (x_io_error_quitter): Don't overrun sprintf buffer.
14796
14797 * xterm.h (x_check_errors): Add ATTRIBUTE_FORMAT_PRINTF.
14798
14799 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
14800
14801 Integer overflow fixes for scrolling, etc.
14802 Without these, Emacs silently mishandles large integers sometimes.
14803 For example, "C-u 4294967297 M-x recenter" was treated as if
14804 it were "C-u 1 M-x recenter" on a typical 64-bit host.
14805
14806 * xdisp.c (try_window_id): Check Emacs fixnum range before
14807 converting to 'int'.
14808
14809 * window.c (window_scroll_line_based, Frecenter):
14810 Check that an Emacs fixnum is in range before assigning it to 'int'.
14811 (Frecenter, Fmove_to_window_line): Use EMACS_INT, not int, for
14812 values converted from Emacs fixnums.
14813 (Frecenter): Don't wrap around a line count if it is out of 'int'
14814 range; instead, treat it as an extreme value.
14815 (Fset_window_configuration, compare_window_configurations):
14816 Use ptrdiff_t, not int, for index that might exceed 2 GiB.
14817
14818 * search.c (Freplace_match): Use ptrdiff_t, not int, for indexes
14819 that can exceed INT_MAX. Check that EMACS_INT value is in range
14820 before assigning it to the (possibly-narrower) index.
14821 (match_limit): Don't assume that a fixnum can fit in 'int'.
14822
14823 * print.c (print_object): Use ptrdiff_t, not int, for index that can
14824 exceed INT_MAX.
14825
14826 * indent.c (position_indentation): Now takes ptrdiff_t, not int.
14827 (Fvertical_motion): Don't wrap around LINES values that don't fit
14828 in 'int'. Instead, treat them as extreme values. This is good
14829 enough for windows, which can't have more than INT_MAX lines anyway.
14830
14831 2011-09-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
14832
14833 * Require libxml/parser.h to avoid compilation warning.
14834
14835 * emacs.c (shut_down_emacs): Call xmlCleanupParser on shutdown.
14836
14837 * xml.c (parse_region): Don't call xmlCleanupParser after parsing,
14838 since this reportedly can destroy thread storage.
14839
14840 2011-08-30 Chong Yidong <cyd@stupidchicken.com>
14841
14842 * syntax.c (find_defun_start): Update all cache variables if
14843 exiting early (Bug#9401).
14844
14845 2011-08-30 Eli Zaretskii <eliz@gnu.org>
14846
14847 * image.c (x_bitmap_pixmap): Cast to int to avoid compiler warnings.
14848
14849 * xdisp.c (produce_stretch_glyph): No longer static, compiled also
14850 when HAVE_WINDOW_SYSTEM is not defined. Support both GUI and TTY
14851 frames. Call tty_append_glyph in the TTY case. (Bug#9402)
14852
14853 * term.c (tty_append_glyph): New function.
14854 (produce_stretch_glyph): Static function and its prototype deleted.
14855
14856 * dispextern.h (produce_stretch_glyph, tty_append_glyph):
14857 Add prototypes.
14858
14859 2011-08-29 Paul Eggert <eggert@cs.ucla.edu>
14860
14861 * image.c (parse_image_spec): Check for nonnegative, not for positive,
14862 when checking :margin (Bug#9390).
14863 (IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR):
14864 Rename from IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR,
14865 so that the name doesn't mislead. All uses changed.
14866
14867 2011-08-28 Johan Bockgård <bojohan@gnu.org>
14868
14869 * term.c (init_tty) [HAVE_GPM]: Move mouse settings after
14870 set_tty_hooks.
14871
14872 2011-08-27 Eli Zaretskii <eliz@gnu.org>
14873
14874 * xdisp.c (move_it_to): Don't bail out early when reaching
14875 position beyond to_charpos, if we are scanning backwards.
14876 (move_it_vertically_backward): When DY == 0, make sure we get to
14877 the first character in the line after the newline.
14878
14879 2011-08-27 Paul Eggert <eggert@cs.ucla.edu>
14880
14881 * ccl.c: Improve and simplify overflow checking (Bug#9196).
14882 (ccl_driver): Do not generate an out-of-range pointer.
14883 (Fccl_execute_on_string): Remove unnecessary check for
14884 integer overflow, noted by Stefan Monnier in
14885 <http://lists.gnu.org/archive/html/emacs-devel/2011-08/msg00979.html>.
14886 Remove a FIXME that didn't need fixing.
14887 Simplify the newly-introduced buffer reallocation code.
14888
14889 2011-08-27 Juanma Barranquero <lekktu@gmail.com>
14890
14891 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on lib/verify.h.
14892
14893 2011-08-26 Paul Eggert <eggert@cs.ucla.edu>
14894
14895 Integer and memory overflow issues (Bug#9196).
14896
14897 * doc.c (get_doc_string): Rework so that
14898 get_doc_string_buffer_size is the actual buffer size, rather than
14899 being 1 less than the actual buffer size; this makes xpalloc more
14900 convenient.
14901
14902 * image.c (x_allocate_bitmap_record, cache_image):
14903 * xselect.c (Fx_register_dnd_atom):
14904 Simplify previous changes by using xpalloc.
14905
14906 * buffer.c (overlay_str_len): Now ptrdiff_t, not EMACS_INT,
14907 since either will do and ptrdiff_t is convenient with xpalloc.
14908
14909 * charset.c (charset_table_size)
14910 (struct charset_sort_data.priority): Now ptrdiff_t.
14911 (charset_compare): Don't overflow if priorities differ greatly.
14912 (Fsort_charsets): Don't assume list length fits in int.
14913 Check for size-calculation overflow when allocating sort data.
14914 (syms_of_charset): Allocate an initial charset table that is
14915 just under 64 KiB, to avoid problems with glibc malloc and mmap.
14916
14917 * cmds.c (internal_self_insert): Check for size-calculation overflow.
14918
14919 * composite.h (struct composition.glyph_len): Now int, not unsigned.
14920 The actual value is always <= INT_MAX, and leaving it unsigned made
14921 overflow checking harder.
14922
14923 * dispextern.h (struct glyph_matrix.rows_allocated)
14924 (struct face_cache.size): Now ptrdiff_t, for convenience in use
14925 with xpalloc. The values are still always <= INT_MAX.
14926
14927 * indent.c (compute_motion): Adjust to region_cache_forward sig change.
14928
14929 * lisp.h (xnmalloc, xnrealloc, xpalloc): New decls.
14930 (SAFE_NALLOCA): New macro.
14931
14932 * region-cache.c (struct boundary.pos, find_cache_boundary)
14933 (move_cache_gap, insert_cache_boundary, delete_cache_boundaries)
14934 (set_cache_region, invalidate_region_cache)
14935 (revalidate_region_cache, know_region_cache, region_cache_forward)
14936 (region_cache_backward, pp_cache):
14937 Use ptrdiff_t, not EMACS_INT, since either will do. This is needed
14938 so that ptrdiff_t * can be passed to xpalloc.
14939 (struct region_cache): Similarly, for gap_start, gap_len, cache_len,
14940 beg_unchanged, end_unchanged, buffer_beg, buffer_end members.
14941 (pp_cache): Don't assume cache_len fits in int.
14942 * region-cache.h: Adjust extern decls to match.
14943
14944 * search.c (scan_buffer, Freplace_match): Use ptrdiff_t, not
14945 EMACS_INT, since either will do, for xpalloc.
14946
14947 * alloc.c: Include verify.h, and check that int fits in ptrdiff_t.
14948 (xnmalloc, xnrealloc, xpalloc): New functions.
14949
14950 * bidi.c (bidi_shelve_header_size): New constant.
14951 (bidi_cache_ensure_space, bidi_shelve_cache): Use it.
14952 (bidi_cache_ensure_space): Avoid integer overflow when allocating.
14953
14954 * bidi.c (bidi_cache_shrink):
14955 * buffer.c (overlays_at, overlays_in, record_overlay_string)
14956 (overlay_strings):
14957 Don't update size of array until after memory allocation succeeds,
14958 because xmalloc/xrealloc may not return.
14959 (struct sortstrlist.bytes): Now ptrdiff_t, as EMACS_INT doesn't help
14960 now that we have proper integer overflow checking.
14961 (record_overlay_string, overlay_strings): Catch overflows when
14962 calculating size of overlay_str_buf.
14963
14964 * callproc.c (Fcall_process): Check for size overflow when
14965 calculating size of args2.
14966 (child_setup): Avoid overflow by using size_t rather than ptrdiff_t.
14967 Normally we prefer signed values, but sticking with ptrdiff_t would
14968 require adding more-complicated checks.
14969
14970 * ccl.c (Fccl_execute_on_string): Check for memory overflow.
14971 Use ptrdiff_t rather than EMACS_INT where ptrdiff_t will do.
14972 Redo buffer-overflow calculations to avoid integer overflow.
14973 Add a FIXME comment where memory seems to be over-allocated.
14974
14975 * character.c (Fstring): Check for size-calculation overflow.
14976
14977 * coding.c (produce_chars): Redo buffer-overflow calculations to avoid
14978 unnecessary integer overflow. Check for size overflow.
14979 (encode_coding_object): Don't update size until xmalloc succeeds.
14980
14981 * composite.c (get_composition_id): Check for overflow in glyph
14982 length calculations.
14983
14984 Integer and memory overflow fixes for display code.
14985 * dispextern.h (struct glyph_pool.nglyphs): Now ptrdiff_t, not int.
14986 * dispnew.c (adjust_glyph_matrix, realloc_glyph_pool)
14987 (scrolling_window): Check for overflow in size calculations.
14988 (line_draw_cost, realloc_glyph_pool, add_row_entry):
14989 Don't assume glyph table len fits in int.
14990 (struct row_entry.bucket, row_entry_pool_size, row_entry_idx)
14991 (row_table_size): Now ptrdiff_t, not int.
14992 (scrolling_window): Avoid overflow in size calculations.
14993 Don't update size until allocation succeeds.
14994 * fns.c (concat): Check for overflow in size calculations.
14995 (next_almost_prime): Verify NEXT_ALMOST_PRIME_LIMIT.
14996 * lisp.h (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
14997 (NEXT_ALMOST_PRIME_LIMIT): New constant.
14998
14999 * doc.c (get_doc_string_buffer_size): Now ptrdiff_t, not int.
15000 (get_doc_string): Check for size calculation overflow.
15001 Don't update size until allocation succeeds.
15002 (get_doc_string, Fsubstitute_command_keys): Use ptrdiff_t, not
15003 EMACS_INT, where ptrdiff_t will do.
15004 (Fsubstitute_command_keys): Check for string overflow.
15005
15006 * editfns.c (set_time_zone_rule): Don't assume environment length
15007 fits in int.
15008 (message_length): Now ptrdiff_t, not int.
15009 (Fmessage_box): Don't update size until allocation succeeds.
15010 Don't assume message length fits in int.
15011 (Fformat): Use ptrdiff_t, not EMACS_INT, where ptrdiff_t will do.
15012
15013 * emacs.c (main): Do not reallocate argv, since there is a null at
15014 the end that can be overwritten, and this way there's no need to
15015 worry about size-calculation overflow.
15016 (sort_args): Check for size-calculation overflow.
15017
15018 * eval.c (init_eval_once, grow_specpdl): Don't update size until
15019 alloc succeeds.
15020 (call_debugger, grow_specpdl): Redo calculations to avoid overflow.
15021
15022 * frame.c (set_menu_bar_lines, x_set_frame_parameters)
15023 (x_set_scroll_bar_width, x_figure_window_size):
15024 Check for integer overflow.
15025 (x_set_alpha): Do not assume XINT fits in int.
15026
15027 * frame.h (struct frame): Use int, not EMACS_INT, where int works.
15028 This is for the members text_lines, text_cols, total_lines, total_cols,
15029 where the system imposes an 'int' limit.
15030
15031 * fringe.c (Fdefine_fringe_bitmap):
15032 Don't update size until alloc works.
15033
15034 * ftfont.c (ftfont_get_open_type_spec, setup_otf_gstring)
15035 (ftfont_shape_by_flt): Check for integer overflow in size calculations.
15036
15037 * gtkutil.c (get_utf8_string, xg_store_widget_in_map):
15038 Check for size-calculation overflow.
15039 (get_utf8_string): Use ptrdiff_t, not size_t, where either will
15040 do, as we prefer signed integers.
15041 (id_to_widget.max_size, id_to_widget.used)
15042 (xg_store_widget_in_map, xg_remove_widget_from_map)
15043 (xg_get_widget_from_map, xg_get_scroll_id_for_window)
15044 (xg_remove_scroll_bar, xg_update_scrollbar_pos):
15045 Use and return ptrdiff_t, not int.
15046 (xg_gtk_scroll_destroy): Don't assume ptrdiff_t fits in int.
15047 * gtkutil.h: Change prototypes to match the above.
15048
15049 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): Remove; these
15050 are duplicate now that they've been promoted to lisp.h.
15051 (x_allocate_bitmap_record, x_alloc_image_color)
15052 (make_image_cache, cache_image, xpm_load):
15053 Don't update size until alloc is done.
15054 (xpm_load, lookup_rgb_color, lookup_pixel_color, x_to_xcolors)
15055 (x_detect_edges):
15056 Check for size calculation overflow.
15057 (ct_colors_allocated_max): New constant.
15058 (x_to_xcolors, x_detect_edges): Reorder multiplicands to avoid
15059 overflow.
15060
15061 * keyboard.c (read_char, menu_bar_items, tool_bar_items)
15062 (read_char_x_menu_prompt, read_char_minibuf_menu_width)
15063 (read_char_minibuf_menu_prompt, follow_key, read_key_sequence):
15064 Use ptrdiff_t, not int, to count maps.
15065 (read_char_minibuf_menu_prompt): Check for overflow in size
15066 calculations. Don't update size until allocation succeeds.
15067 Redo calculations to avoid overflow.
15068 * keyboard.h: Change prototypes to match the above.
15069
15070 * keymap.c (cmm_size, current_minor_maps): Use ptrdiff_t, not int,
15071 to count maps.
15072 (current_minor_maps): Check for size calculation overflow.
15073 * keymap.h: Change prototypes to match the above.
15074
15075 * lread.c (read1, init_obarray): Don't update size until alloc done.
15076
15077 * macros.c (Fstart_kbd_macro): Don't update size until alloc done.
15078 (store_kbd_macro_char): Reorder multiplicands to avoid overflow.
15079
15080 * nsterm.h (struct ns_color_table.size, struct ns_color_table.avail):
15081 Now ptrdiff_t, not int.
15082 * nsterm.m (ns_index_color): Use ptrdiff_t, not int, for table indexes.
15083 (ns_draw_fringe_bitmap): Rewrite to avoid overflow.
15084
15085 * process.c (Fnetwork_interface_list): Check for overflow
15086 in size calculation.
15087
15088 * region-cache.c (move_cache_gap): Check for size calculation overflow.
15089
15090 * scroll.c (do_line_insertion_deletion_costs): Check for size calc
15091 overflow. Don't bother calling xmalloc when xrealloc will do.
15092
15093 * search.c (Freplace_match): Check for size calculation overflow.
15094 (Fset_match_data): Don't assume list lengths fit in 'int'.
15095
15096 * sysdep.c (system_process_attributes): Use ptrdiff_t, not int,
15097 for command line length. Do not attempt to address one before the
15098 beginning of an array, as that's not portable.
15099
15100 * term.c (max_frame_lines): Remove; unused.
15101 (encode_terminal_src_size, encode_terminal_dst_size): Now ptrdiff_t,
15102 not int.
15103 (encode_terminal_code, calculate_costs): Check for size
15104 calculation overflow.
15105 (encode_terminal_code): Use ptrdiff_t, not int, to record glyph
15106 table lengths and related sizes. Don't update size until alloc
15107 done. Redo calculations to avoid overflow.
15108 (calculate_costs): Don't bother calling xmalloc when xrealloc will do.
15109
15110 * termcap.c (tgetent): Use ptrdiff_t, not int, to record results of
15111 subtracting pointers.
15112 (gobble_line): Check for overflow more carefully. Don't update size
15113 until alloc done.
15114
15115 * tparam.c (tparam1): Use ptrdiff_t, not int, for sizes.
15116 Don't update size until alloc done.
15117 Redo size calculations to avoid overflow.
15118 Check for size calculation overflow.
15119 (main) [DEBUG]: Fix typo in invoking tparam1.
15120
15121 * xdisp.c (store_mode_line_noprop_char, x_consider_frame_title):
15122 Use ptrdiff_t, not int, for sizes.
15123 (store_mode_line_noprop_char): Don't update size until alloc done.
15124
15125 * xfaces.c (lface_id_to_name_size, Finternal_make_lisp_face):
15126 Use ptrdiff_t, not int, for sizes.
15127 (Finternal_make_lisp_face, cache_face):
15128 Check for size calculation overflow.
15129 (cache_face): Treat size calculation overflows as if they were
15130 memory exhaustion (the usual treatment), rather than aborting.
15131
15132 * xfns.c (x_encode_text, x_set_name_internal)
15133 (Fx_change_window_property): Use ptrdiff_t, not int, to count
15134 sizes, since they can exceed INT_MAX in size. Check for size
15135 calculation overflow.
15136
15137 * xgselect.c (gfds_size): Now ptrdiff_t, for convenience with xpalloc.
15138 (xg_select): Check for size calculation overflow.
15139 Don't update size until alloc done.
15140
15141 * xrdb.c (get_environ_db): Don't assume path length fits in int,
15142 as sprintf is limited to int lengths.
15143
15144 * xselect.c (X_LONG_SIZE, X_SHRT_MAX, X_SHRT_MIN, X_LONG_MAX)
15145 (X_LONG_MIN): New macros.
15146 Use them to make the following changes clearer.
15147 (MAX_SELECTION_QUANTUM): Make the other bounds on this value clearer.
15148 This change doesn't affect the value now, but it may help remind
15149 future maintainers not to raise the value too much later.
15150 (SELECTION_QUANTUM): Remove, replacing with ...
15151 (selection_quantum): ... new function, which avoids overflow.
15152 All uses changed.
15153 (struct selection_data.size): Now ptrdiff_t, not int, to avoid
15154 assumption that selection length fits in 'int'.
15155 (x_reply_selection_request, x_handle_selection_request)
15156 (x_get_window_property, receive_incremental_selection)
15157 (x_get_window_property_as_lisp_data, selection_data_to_lisp_data)
15158 (lisp_data_to_selection_data, clean_local_selection_data):
15159 Use ptrdiff_t, not int, to record length of selection.
15160 (x_reply_selection_request, x_get_window_property)
15161 (receive_incremental_selection, x_property_data_to_lisp):
15162 Redo calculations to avoid overflow.
15163 (x_reply_selection_request): When sending hint, ceiling it at
15164 X_LONG_MAX rather than relying on wraparound overflow to send
15165 something.
15166 (x_get_window_property, receive_incremental_selection)
15167 (lisp_data_to_selection_data, x_property_data_to_lisp):
15168 Check for size-calculation overflow.
15169 (x_get_window_property, receive_incremental_selection)
15170 (lisp_data_to_selection_data, Fx_register_dnd_atom):
15171 Don't store size until memory allocation succeeds.
15172 (x_get_window_property): Plug memory leak on memory exhaustion.
15173 Don't double-block input; malloc is safe here. Don't assume 2**34
15174 - 4 fits in unsigned long. Add an xassert to check
15175 XGetWindowProperty overflow. Be more careful about overflow
15176 calculations, and distinguish size from memory overflow better.
15177 (receive_incremental_selection): When tracing, don't assume
15178 unsigned int is less than INT_MAX.
15179 (x_selection_data_to_lisp_data): Remove unnecessary (and in theory
15180 harmful) conversions of unsigned short to int.
15181 (lisp_data_to_selection_data): Don't assume that integers
15182 in the range -65535 through -1 fit in an X unsigned short.
15183 Don't assume that ULONG_MAX == X_ULONG_MAX. Don't store into
15184 result parameters unless successful. Rely on cons_to_unsigned
15185 to report problems with elements; the old code wasn't right anyway.
15186 (x_check_property_data): Check for int overflow; we cannot use
15187 a wider type due to X limits.
15188 (x_handle_dnd_message): Use unsigned int, to avoid int overflow.
15189
15190 * xsmfns.c (smc_save_yourself_CB): Check for size calc overflow.
15191
15192 * xterm.c (x_color_cells, x_send_scrollbar_event, handle_one_xevent)
15193 (x_term_init): Check for size calculation overflow.
15194 (x_color_cells): Don't store size until memory allocation succeeds.
15195 (handle_one_xevent): Use ptrdiff_t, not int, for byte counts.
15196 Don't assume alloca size is less than MAX_ALLOCA.
15197 (x_term_init): Don't assume length fits in int (sprintf is limited
15198 to int size).
15199
15200 Use ptrdiff_t for composition IDs.
15201 * character.c (lisp_string_width):
15202 * composite.c (composition_table_size, n_compositions)
15203 (get_composition_id, composition_gstring_from_id):
15204 * dispextern.h (struct glyph_string.cmp_id, struct composition_it.id):
15205 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING):
15206 * window.c (Frecenter):
15207 Use ptrdiff_t, not int, for composition IDs.
15208 * composite.c (get_composition_id): Check for integer overflow.
15209 * composite.h: Adjust prototypes to match the above changes.
15210
15211 Use ptrdiff_t for hash table indexes.
15212 * category.c (hash_get_category_set):
15213 * ccl.c (ccl_driver):
15214 * charset.h (struct charset.hash_index, CHECK_CHARSET_GET_ID):
15215 * coding.c (coding_system_charset_list, detect_coding_system):
15216 * coding.h (struct coding_system.id):
15217 * composite.c (get_composition_id, gstring_lookup_cache):
15218 * fns.c (hash_lookup, hash_put, Fgethash, Fputhash):
15219 * image.c (xpm_get_color_table_h):
15220 * lisp.h (hash_lookup, hash_put):
15221 * minibuf.c (Ftest_completion):
15222 Use ptrdiff_t for hash table indexes, not int (which is too
15223 narrow, on 64-bit hosts) or EMACS_INT (which is too wide, on
15224 32-bit --with-wide-int hosts).
15225
15226 * charset.c (Fdefine_charset_internal): Check for integer overflow.
15227 Add a FIXME comment about memory leaks.
15228 (syms_of_charset): Don't assume xmalloc returns.
15229
15230 Don't assume that stated character widths fit in int.
15231 * character.c (Fchar_width, c_string_width, lisp_string_width):
15232 * character.h (CHAR_WIDTH):
15233 * indent.c (MULTIBYTE_BYTES_WIDTH):
15234 Use sanitize_char_width to avoid undefined and/or bad behavior
15235 with outlandish widths.
15236 * character.h (sanitize_tab_width): Rename from sanitize_width,
15237 now that we have two such functions. All uses changed.
15238 (sanitize_char_width): New inline function.
15239
15240 Don't assume that tab-width fits in int.
15241 * character.h (sanitize_width): New inline function.
15242 (SANE_TAB_WIDTH): New macro.
15243 (ASCII_CHAR_WIDTH): Use it.
15244 * indent.c (sane_tab_width): Remove. All uses replaced by
15245 SANE_TAB_WIDTH (current_buffer).
15246 * xdisp.c (init_iterator): Use SANE_TAB_WIDTH.
15247
15248 * fileio.c: Integer overflow issues with file modes.
15249 (Fset_file_modes, auto_save_1): Don't assume EMACS_INT fits in int.
15250
15251 * charset.c (read_hex): New arg OVERFLOW. All uses changed.
15252 Remove unreachable code.
15253 (read_hex, load_charset_map_from_file): Check for integer overflow.
15254
15255 * xterm.c: Don't go over XClientMessageEvent limit.
15256 (scroll_bar_windows_size): Now ptrdiff_t, as we prefer signed.
15257 (x_send_scroll_bar_event): Likewise. Check that the size does not
15258 exceed limits imposed by XClientMessageEvent, as well as the usual
15259 ptrdiff_t and size_t limits.
15260
15261 * keyboard.c: Overflow, signedness and related fixes.
15262 (make_lispy_movement): Use same integer type in forward decl
15263 that is used in the definition.
15264 (read_key_sequence, keyremap_step):
15265 Change bufsize argument back to int, undoing my 2011-03-30 change.
15266 We prefer signed types, and int is wide enough here.
15267 (parse_tool_bar_item): Don't assume tool_bar_max_label_size is less
15268 than TYPE_MAXIMUM (EMACS_INT) / 2. Don't let the label size grow
15269 larger than STRING_BYTES_BOUND. Use ptrdiff_t for Emacs string
15270 length, not size_t. Use ptrdiff_t for index, not int.
15271 (keyremap_step, read_key_sequence): Redo bufsize check to avoid
15272 possibility of integer overflow.
15273
15274 Overflow, signedness and related fixes for images.
15275
15276 * dispextern.h (struct it.stack[0].u.image.image_id)
15277 (struct_it.image_id, struct image.id, struct image_cache.size)
15278 (struct image_cache.used, struct image_cache.ref_count):
15279 * gtkutil.c (update_frame_tool_bar):
15280 * image.c (x_reference_bitmap, Fimage_size, Fimage_mask_p)
15281 (Fimage_metadata, free_image_cache, clear_image_cache, lookup_image)
15282 (cache_image, mark_image_cache, x_kill_gs_process, Flookup_image):
15283 * nsmenu.m (update_frame_tool_bar):
15284 * xdisp.c (calc_pixel_width_or_height):
15285 * xfns.c (image_cache_refcount):
15286 Image IDs are now ptrdiff_t, not int, to avoid arbitrary limits
15287 on typical 64-bit hosts.
15288
15289 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
15290 (x_bitmap_pixmap, x_create_x_image_and_pixmap):
15291 Omit unnecessary casts to int.
15292 (parse_image_spec): Check that integers fall into 'int' range
15293 when the callers expect that.
15294 (image_ascent): Redo ascent calculation to avoid int overflow.
15295 (clear_image_cache): Avoid overflow when sqrt (INT_MAX) < nimages.
15296 (lookup_image): Remove unnecessary tests.
15297 (xbm_image_p): Locals are now of int, not EMACS_INT,
15298 since parse_image_check makes sure they fit into int.
15299 (png_load, gif_load, svg_load_image):
15300 Prefer int to unsigned where either will do.
15301 (tiff_handler): New function, combining the cores of the
15302 old tiff_error_handler and tiff_warning_handler.
15303 This function is rewritten to use vsnprintf and thereby avoid
15304 stack buffer overflows. It uses only the features of vsnprintf
15305 that are common to both POSIX and native Microsoft.
15306 (tiff_error_handler, tiff_warning_handler): Use it.
15307 (tiff_load, gif_load, imagemagick_load_image):
15308 Don't assume :index value fits in 'int'.
15309 (gif_load): Omit unnecessary cast to double, and avoid double-rounding.
15310 (imagemagick_load_image): Check that crop parameters fit into
15311 the integer types that MagickCropImage accepts. Don't assume
15312 Vimagemagick_render_type has a nonnegative value. Don't assume
15313 size_t fits in 'long'.
15314 (gs_load): Use printmax_t to print the widest integers possible.
15315 Check for integer overflow when computing image height and width.
15316
15317 2011-08-26 Eli Zaretskii <eliz@gnu.org>
15318
15319 * xdisp.c (redisplay_window): Don't force window start if point
15320 will be invisible in the resulting window. (Bug#9324)
15321
15322 2011-08-25 Eli Zaretskii <eliz@gnu.org>
15323
15324 * xdisp.c (compute_display_string_pos): Return 2 in DISP_PROP when
15325 the display spec is of the form `(space ...)'.
15326 (handle_display_spec): Return the value returned by
15327 handle_single_display_spec, not just 1 or zero.
15328 (handle_single_display_spec): If the display spec is of the form
15329 `(space ...)', and specifies display in the text area, return 2
15330 rather than 1.
15331 (try_cursor_movement): Check for the need to scroll more
15332 accurately, and prefer exact match for point under bidi.
15333 Don't advance `row' beyond the last row of the window.
15334
15335 * dispextern.h (struct bidi_it): Rename the disp_prop_p member
15336 into disp_prop; all users changed.
15337
15338 * bidi.c (bidi_fetch_char): If compute_display_string_pos returns
15339 DISP_PROP = 2, substitute the u+2029 PARAGRAPH SEPARATOR character
15340 for the text covered by the display property.
15341
15342 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
15343
15344 * buffer.c (Fbury_buffer_internal): Rename from Funrecord_buffer.
15345 Change return value to nil.
15346 (Frecord_buffer): Delete unused function.
15347
15348 2011-08-24 Eli Zaretskii <eliz@gnu.org>
15349
15350 * xdisp.c (Fcurrent_bidi_paragraph_direction): For unibyte
15351 buffers, return left-to-right.
15352 (set_cursor_from_row): Consider candidate row a win if its glyph
15353 represents a newline and point is on that newline. Fixes cursor
15354 positioning on the newline at EOL of R2L text within L2R
15355 paragraph, and vice versa.
15356 (try_cursor_movement): Check continued rows, in addition to
15357 continuation rows. Fixes unwarranted scroll when point enters a
15358 continued line of R2L text within an L2R paragraph, or vice versa.
15359 (cursor_row_p): Consider the case of point being equal to
15360 MATRIX_ROW_END_CHARPOS. Prevents cursor being stuck when moving
15361 from the end of a short line to the beginning of a continued line
15362 of R2L text within L2R paragraph.
15363 (RECORD_MAX_MIN_POS): For max_pos, use IT_CHARPOS even for
15364 composed characters.
15365
15366 * bidi.c (bidi_check_type): Use xassert.
15367 (bidi_cache_iterator_state): Update the disp_pos and disp_prop_p
15368 members.
15369
15370 2011-08-23 Eli Zaretskii <eliz@gnu.org>
15371
15372 * bidi.c (bidi_get_type): Abort if we get zero as the bidi type of
15373 a character.
15374
15375 2011-08-23 Chong Yidong <cyd@stupidchicken.com>
15376
15377 * nsfont.m (ns_otf_to_script): Fix typo.
15378
15379 2011-08-22 Kenichi Handa <handa@m17n.org>
15380
15381 * chartab.c (Fset_char_table_extra_slot): Do not inhibit setting a
15382 extra slot even if the purpose is char-code-property-table.
15383
15384 2011-08-23 Eli Zaretskii <eliz@gnu.org>
15385
15386 * xdisp.c (redisplay_window): When computing centering_position,
15387 account for the height of the header line. (Bug#8874)
15388
15389 * dispnew.c (buffer_posn_from_coords): Use buf_charpos_to_bytepos
15390 instead of CHAR_TO_BYTE. Fixes a crash when a completion
15391 candidate is selected by the mouse, and that candidate has a
15392 composed character under the mouse.
15393
15394 * xdisp.c (x_produce_glyphs): Set it->nglyphs to 1. Fixes pixel
15395 coordinates reported by pos-visible-in-window-p for a composed
15396 character in column zero.
15397
15398 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
15399
15400 * cmds.c (Fself_insert_command): Mention post-self-insert-hook.
15401
15402 2011-08-22 Eli Zaretskii <eliz@gnu.org>
15403
15404 * xdisp.c (BUFFER_POS_REACHED_P): If this is a composition,
15405 consider it a hit if to_charpos is anywhere in the range of the
15406 composed buffer positions.
15407
15408 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
15409
15410 * image.c (gif_load): Don't assume that each subimage has the same
15411 dimensions as the base image. Handle disposal method that is
15412 "undefined" by the gif spec (Bug#9335).
15413
15414 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
15415
15416 * eval.c (Fsignal): Handle `debug' symbol in error handler (Bug#9329).
15417 (Fcondition_case): Document `debug' symbol in error handler.
15418
15419 2011-08-19 Eli Zaretskii <eliz@gnu.org>
15420
15421 * xfaces.c (face_at_buffer_position): Avoid repeated evaluation of
15422 face ID by FACE_FROM_ID, and avoid a crash when mouse is moved
15423 from an Org mode buffer to a Speedbar frame.
15424
15425 * xdisp.c (RECORD_MAX_MIN_POS): If the display element comes from
15426 a composition, take its buffer position from IT->cmp_it.charpos.
15427 Fixes cursor positioning at the beginning of a line that begins
15428 with a composed character.
15429
15430 2011-08-18 Eli Zaretskii <eliz@gnu.org>
15431
15432 * bidi.c (bidi_get_type): If bidi_type_table reports zero as the
15433 character bidirectional type, use STRONG_L instead. Fixes crashes
15434 in a buffer produced by `describe-categories'.
15435
15436 * dispextern.h (struct bidi_it): Move disp_pos and disp_prop_p
15437 members before the level stack, so they would be saved and
15438 restored when copying iterator state. Fixes incorrect reordering
15439 around TABs covered by display properties.
15440
15441 2011-08-18 Andreas Schwab <schwab@linux-m68k.org>
15442
15443 * process.c (Fnetwork_interface_list): Correctly determine buffer size.
15444
15445 2011-08-17 Chong Yidong <cyd@stupidchicken.com>
15446
15447 * eval.c (internal_condition_case, internal_condition_case_1)
15448 (internal_condition_case_2, internal_condition_case_n):
15449 Remove unnecessary aborts (Bug#9081).
15450
15451 2011-08-17 Eli Zaretskii <eliz@gnu.org>
15452
15453 * lread.c (Fload) [DOS_NT]: If `openp' returns -2, but the file
15454 has no `load' handler, try opening the file locally. (Bug#9311)
15455
15456 2011-08-16 Ken Brown <kbrown@cornell.edu>
15457
15458 * gmalloc.c: Expand comment.
15459
15460 2011-08-16 Eli Zaretskii <eliz@gnu.org>
15461
15462 * xdisp.c (set_cursor_from_row): Don't accept a previous candidate
15463 if it fails the cursor_row_p test. Fixes cursor positioning at ZV.
15464
15465 2011-08-16 Ken Brown <kbrown@cornell.edu>
15466
15467 Fix memory allocation problems in Cygwin build (Bug#9273).
15468
15469 * unexcw.c ( __malloc_initialized): Declare external variable.
15470 (fixup_executable): Force the dumped emacs to reinitialize malloc.
15471
15472 * gmalloc.c [CYGWIN] (bss_sbrk_heapbase, bss_sbrk_heapinfo):
15473 New variables.
15474 (malloc_initialize_1) [CYGWIN]: Prepare for reinitializing the
15475 dumped emacs.
15476 (_free_internal_nolock) [CYGWIN]: Ignore requests to free storage
15477 in the static heap.
15478 [CYGWIN] (special_realloc): New function.
15479 (_realloc_internal_nolock) [CYGWIN]: Use the new function on
15480 requests to realloc storage in the static heap.
15481
15482 2011-08-15 Paul Eggert <eggert@cs.ucla.edu>
15483
15484 * bidi.c (bidi_initialize): Remove unused local.
15485
15486 2011-08-15 Eli Zaretskii <eliz@gnu.org>
15487
15488 * bidimirror.h:
15489 * biditype.h: Remove file.
15490 * makefile.w32-in ($(BLD)/bidi.$(O)):
15491 * deps.mk (bidi.o): Remove biditype.h and bidimirror.h.
15492
15493 * dispextern.h: Fix a typo in the comment to bidi_type_t.
15494
15495 * chartab.c: Improve commentary for the uniprop_table API.
15496
15497 * bidi.c (bidi_paragraph_init): Support zero value of
15498 bidi_ignore_explicit_marks_for_paragraph_level.
15499 (bidi_initialize): Use uniprop_table instead of including
15500 biditype.h and bidimirror.h.
15501
15502 * xdisp.c (move_it_in_display_line_to): Don't reset pixel
15503 coordinates of the iterator when restoring from ppos_it.
15504 (Bug#9296)
15505
15506 2011-08-14 Kenichi Handa <handa@m17n.org>
15507
15508 * process.c (create_process): Call setup_process_coding_systems
15509 after the pid of the process is set to -1 (Bug#8162).
15510
15511 2011-08-14 Eli Zaretskii <eliz@gnu.org>
15512
15513 * xdisp.c (move_it_in_display_line_to): Don't invoke
15514 IT_RESET_X_ASCENT_DESCENT when iterator position was restored from
15515 ppos_it. Fixes vertical cursor motion when line beginning is
15516 covered by an image. (Bug#9296)
15517
15518 2011-08-14 Jan Djärv <jan.h.d@swipnet.se>
15519
15520 * nsterm.h (ns_run_ascript): Declare.
15521 (NSAPP_DATA2_RUNASSCRIPT): Define.
15522
15523 * nsfns.m (as_script, as_result, as_status): New static variables.
15524 (ns_run_ascript): New function.
15525 (Fns_do_applescript): Set variables as_*. Make an NSApplicationDefined
15526 event with data2 set to NSAPP_DATA2_RUNASSCRIPT, post it and then start
15527 the event loop. Get status from as_status (Bug#7276).
15528
15529 * nsterm.m (sendEvent): If event is NSApplicationDefined and
15530 data2 is NSAPP_DATA2_RUNASSCRIPT, call ns_run_ascript and then exit
15531 the event loop (Bug#7276).
15532
15533 2011-08-14 Andreas Schwab <schwab@linux-m68k.org>
15534
15535 * gnutls.c (QCgnutls_bootprop_priority)
15536 (QCgnutls_bootprop_trustfiles, QCgnutls_bootprop_keylist)
15537 (QCgnutls_bootprop_crlfiles, QCgnutls_bootprop_callbacks)
15538 (QCgnutls_bootprop_loglevel, QCgnutls_bootprop_hostname)
15539 (QCgnutls_bootprop_min_prime_bits, QCgnutls_bootprop_verify_flags)
15540 (QCgnutls_bootprop_verify_hostname_error)
15541 (QCgnutls_bootprop_callbacks_verify): Rename from
15542 Qgnutls_bootprop_..., all uses changed.
15543
15544 * xfaces.c (QCignore_defface): Rename from Qignore_defface, all
15545 uses changed.
15546
15547 2011-08-14 Paul Eggert <eggert@cs.ucla.edu>
15548
15549 * xfaces.c (Qframe_set_background_mode): Now static.
15550 * dispextern.h (Qframe_set_background_mode): Remove decl.
15551
15552 * process.c (Fnetwork_interface_info): Declare local only if needed.
15553
15554 2011-08-13 Jan Djärv <jan.h.d@swipnet.se>
15555
15556 * process.c: Include ifaddrs.h and net/if_dl.h if available (Bug#8477).
15557 (Fnetwork_interface_list): Allocate in increments of bytes instead
15558 of sizeof (struct ifreq). Iterate over ifconf.ifc_req by counting
15559 bytes (Bug#8477). Count bytes correctly when ifr_addr is a struct
15560 sockaddr.
15561 (struct ifflag_def): notrailers is smart on OSX.
15562 (Fnetwork_interface_info): Handle case when ifr_flags is negative.
15563 Get hardware address with getifaddrs if available.
15564
15565 2011-08-12 Eli Zaretskii <eliz@gnu.org>
15566
15567 * xdisp.c (iterate_out_of_display_property): xassert that
15568 IT->position is set to within IT->object's boundaries. Break from
15569 the loop as soon as EOB is reached; avoids infloops in redisplay
15570 when IT->position is set up wrongly due to some bug.
15571 Set IT->current to match the bidi iterator unconditionally.
15572 (push_display_prop): Allow GET_FROM_STRING as IT->method on
15573 entry. Force push_it to save on the stack the current
15574 buffer/string position, to be restored by pop_it. Fix flags in
15575 the iterator structure wrt the object coming from a display
15576 property, as `line-prefix' and `wrap-prefix' are not ``replacing''
15577 properties. (Bug#9284)
15578
15579 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
15580
15581 * fontset.c (fontset_get_font_group): Add proper type checks.
15582 (Bug#9172)
15583
15584 2011-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15585
15586 * unexmacosx.c (print_load_command_name): Add cases LC_FUNCTION_STARTS
15587 and LC_VERSION_MIN_MACOSX.
15588 (copy_linkedit_data) [LC_FUNCTION_STARTS]: New function.
15589 (dump_it) [LC_FUNCTION_STARTS]: Use it.
15590
15591 2011-08-08 Eli Zaretskii <eliz@gnu.org>
15592
15593 * xdisp.c (forward_to_next_line_start): Allow to use the
15594 no-display-properties-and-no-overlays under bidi display.
15595 Set disp_pos in the bidi iterator to avoid searches for display
15596 properties and overlays.
15597
15598 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
15599
15600 * editfns.c (Fset_time_zone_rule): Document relationship with the
15601 setenv function.
15602
15603 * ftfont.c (ftfont_pattern_entity): Copy the extras argument to
15604 the font entity extracted from the cache (Bug#8109).
15605
15606 2011-08-07 Chong Yidong <cyd@stupidchicken.com>
15607
15608 * composite.c (autocmp_chars): Don't reset point. That is done by
15609 restore_point_unwind (Bug#5984).
15610
15611 2011-08-07 Juri Linkov <juri@jurta.org>
15612
15613 * editfns.c (Fformat_time_string): Doc fix, add tag `usage:'
15614 to show the arg `TIME' instead of `TIMEVAL'.
15615
15616 2011-08-06 Eli Zaretskii <eliz@gnu.org>
15617
15618 * xdisp.c (set_cursor_from_row): Fix cursor positioning when a
15619 display property strides EOL and includes a newline, as in
15620 longlines-mode. (Bug#9254)
15621 (move_it_in_display_line_to): Fix vertical-motion in a buffer with
15622 word-wrap under bidirectional display. (Bug#9224)
15623
15624 * bidi.c (bidi_unshelve_cache): Don't reset the cache if JUST_FREE
15625 is non-zero, even if the data buffer is NULL. Fixes a crash in
15626 vertical-motion with longlines-mode. (Bug#9254)
15627
15628 2011-08-05 Eli Zaretskii <eliz@gnu.org>
15629
15630 * bidi.c <bidi_cache_total_alloc>: Now static.
15631 (bidi_initialize): Initialize bidi_cache_total_alloc.
15632
15633 * xdisp.c (display_line): Release buffer allocated for shelved bidi
15634 cache. (Bug#9221)
15635
15636 * bidi.c (bidi_shelve_cache, bidi_unshelve_cache): Track total
15637 amount allocated this far in `bidi_cache_total_alloc'.
15638 (bidi_unshelve_cache): Accept an additional argument JUST_FREE; if
15639 non-zero, only free the data buffer without restoring the cache
15640 contents. All callers changed.
15641
15642 * dispextern.h (bidi_unshelve_cache): Update prototype.
15643
15644 * xdisp.c (SAVE_IT, pos_visible_p, move_it_in_display_line_to)
15645 (move_it_in_display_line, move_it_to)
15646 (move_it_vertically_backward, move_it_by_lines): Replace the call
15647 to xfree to an equivalent call to bidi_unshelve_cache.
15648 (move_it_in_display_line_to): Fix logic of returning
15649 MOVE_POS_MATCH_OR_ZV in the bidi case. (Bug#9224)
15650
15651 2011-08-05 Eli Zaretskii <eliz@gnu.org>
15652
15653 * xdisp.c (set_cursor_from_row): Prefer the candidate glyph that
15654 came from a string character with a `cursor' property. (Bug#9229)
15655
15656 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
15657
15658 * Makefile.in (LIB_PTHREAD): New variable.
15659 (LIBES): Add LIB_PTHREAD (Bug#9216).
15660
15661 * alloc.c, emacs.c, gmalloc.c, gtkutil.c, keyboard.c, syssignal.h:
15662 Rename HAVE_GTK_AND_PTHREAD to HAVE_PTHREAD (Bug#9216).
15663
15664 2011-08-04 Andreas Schwab <schwab@linux-m68k.org>
15665
15666 * regex.c (re_iswctype): Remove some redundant boolean conversions.
15667
15668 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
15669
15670 * xterm.c (x_find_topmost_parent): New function.
15671 (x_set_frame_alpha): Find topmost parent window with
15672 x_find_topmost_parent and set the property there also (bug#9181).
15673 (handle_one_xevent): Call x_set_frame_alpha on ReparentNotify.
15674
15675 2011-08-04 Paul Eggert <eggert@cs.ucla.edu>
15676
15677 * callproc.c (Fcall_process): Avoid vfork clobbering
15678 the local vars buffer, coding_systems, current_dir.
15679
15680 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
15681
15682 * keymap.c (Fmake_composed_keymap): Move to subr.el.
15683
15684 2011-08-03 Paul Eggert <eggert@cs.ucla.edu>
15685
15686 * fontset.c (dump_fontset) [FONTSET_DEBUG]: Declare EXTERNALLY_VISIBLE
15687 so that it is not optimized away.
15688
15689 * xdisp.c (compute_display_string_pos): Remove unused local.
15690
15691 2011-08-02 Eli Zaretskii <eliz@gnu.org>
15692
15693 Fix slow cursor motion and scrolling in large buffers with
15694 selective display, like Org Mode buffers. (Bug#9218)
15695
15696 * dispextern.h (struct bidi_it): New member disp_prop_p.
15697
15698 * xdisp.c: Remove one-slot cache of display string positions.
15699 (compute_display_string_pos): Accept an additional argument
15700 DISP_PROP_P; callers changed. Scan at most 5K characters forward
15701 for a display string or property. If found, set DISP_PROP_P
15702 non-zero.
15703
15704 * bidi.c (bidi_fetch_char): Accept an additional argument
15705 DISP_PROP_P, and pass it to compute_display_string_pos.
15706 Only handle text covered by a display string if DISP_PROP_P is returned
15707 non-zero. All callers of bidi_fetch_char changed.
15708
15709 2011-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
15710
15711 * keymap.c (Fdefine_key): Fix Lisp_Object/int mixup; apply some CSE.
15712
15713 2010-12-03 Don March <don@ohspite.net>
15714
15715 * keymap.c (Fdefine_key): Fix non-prefix key error message when
15716 last character M-[char] is translated to ESC [char] (bug#7541).
15717
15718 2011-08-02 Kenichi Handa <handa@m17n.org>
15719
15720 * lisp.h (uniprop_table): Extern it.
15721
15722 * chartab.c (uniprop_table): Make it non-static.
15723
15724 2011-08-01 Eli Zaretskii <eliz@gnu.org>
15725
15726 * xdisp.c (forward_to_next_line_start): Accept additional argument
15727 BIDI_IT_PREV, and store into it the state of the bidi iterator had
15728 on the newline.
15729 (reseat_at_next_visible_line_start): Use the bidi iterator state
15730 returned by forward_to_next_line_start to restore the state of
15731 it->bidi_it after backing up to previous newline. (Bug#9212)
15732
15733 2011-07-30 Andreas Schwab <schwab@linux-m68k.org>
15734
15735 * regex.c (re_comp): Protoize.
15736 (re_exec): Fix return type.
15737 (regexec): Fix type of `ret'. (Bug#9203)
15738
15739 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
15740
15741 * image.c (check_image_size): Use 1024x1024 if unknown frame (Bug#9189).
15742 This is needed if max-image-size is a floating-point number.
15743
15744 2011-07-28 Andreas Schwab <schwab@linux-m68k.org>
15745
15746 * print.c (print_object): Print empty symbol as ##.
15747
15748 * lread.c (read1): Read ## as empty symbol.
15749
15750 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
15751
15752 * nsfns.m (x_set_foreground_color): Set f->foreground_pixel when
15753 setting frame foreground color (Bug#9175).
15754 (x_set_background_color): Likewise.
15755
15756 * nsmenu.m (-setText): Size tooltip dimensions precisely to
15757 contents (Bug#9176).
15758 (EmacsTooltip -init): Remove bezels and add shadows to
15759 tooltip windows.
15760
15761 * nsterm.m (ns_dumpglyphs_stretch): Avoid overwriting left fringe
15762 or scroll bar (Bug#8470).
15763
15764 * nsfont.m (nsfont_open): Remove assignment to voffset and
15765 unnecessary vars hshink, expand, hd, full_height, min_height.
15766 (nsfont_draw): Use s->ybase as baseline for glyph drawing (Bug#8913).
15767
15768 * nsterm.h (nsfont_info): Remove voffset field.
15769
15770 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
15771
15772 Implement strike-through and overline on NextStep (Bug#8863).
15773
15774 * nsfont.m (nsfont_open): Use underline position provided by font,
15775 instead of hard-coded value of 2.
15776 (nsfont_draw): Call ns_draw_text_decoration instead.
15777
15778 * nsterm.h: Add declaration for ns_draw_text_decoration.
15779
15780 * nsterm.m (ns_draw_text_decoration): New function for drawing
15781 underline, overline, and strike-through.
15782 (ns_dumpglyphs_image, ns_dumpglyphs_stretch): Add call to
15783 ns_draw_text_decoration. Change treatment of cursor drawing to
15784 accommodate underlining, etc.
15785
15786 2011-07-28 Eli Zaretskii <eliz@gnu.org>
15787
15788 * buffer.c (init_buffer_once): Set bidi-display-reordering to t by
15789 default.
15790
15791 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
15792
15793 * alloc.c (memory_full) [!SYNC_INPUT]: Fix signal-related race.
15794 Without this fix, if a signal arrives just after memory fills up,
15795 'malloc' might be invoked reentrantly.
15796
15797 * image.c (x_check_image_size) [!HAVE_X_WINDOWS]: Return 1.
15798 In other words, assume that every image size is allowed, on non-X
15799 hosts. This assumption is probably wrong, but it lets Emacs compile.
15800
15801 2011-07-28 Andreas Schwab <schwab@linux-m68k.org>
15802
15803 * regex.c (re_iswctype): Convert return values to boolean.
15804
15805 2011-07-28 Eli Zaretskii <eliz@fencepost.gnu.org>
15806
15807 * xdisp.c (compute_display_string_pos): Don't use cached display
15808 string position if the buffer had its restriction changed.
15809 (Bug#9184)
15810
15811 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
15812
15813 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
15814
15815 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
15816
15817 Integer signedness and overflow and related fixes. (Bug#9079)
15818
15819 * bidi.c: Integer size and overflow fixes.
15820 (bidi_cache_size, bidi_cache_idx, bidi_cache_last_idx)
15821 (bidi_cache_start, bidi_cache_fetch_state, bidi_cache_search)
15822 (bidi_cache_find_level_change, bidi_cache_ensure_space)
15823 (bidi_cache_iterator_state, bidi_cache_find, bidi_cache_start_stack)
15824 (bidi_find_other_level_edge):
15825 Use ptrdiff_t instead of EMACS_INT where either will do.
15826 This works better on 32-bit hosts configured --with-wide-int.
15827 (bidi_cache_ensure_space): Check for size-calculation overflow.
15828 Use % rather than repeated addition, for better worst-case speed.
15829 Don't set bidi_cache_size until after xrealloc returns, because it
15830 might not return.
15831 (bidi_dump_cached_states): Use ptrdiff_t, not int, to avoid overflow.
15832 (bidi_cache_ensure_space): Also check that the bidi cache size
15833 does not exceed that of the largest Lisp string or buffer. See Eli
15834 Zaretskii in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#29>.
15835
15836 * alloc.c (__malloc_size_t): Remove.
15837 All uses replaced by size_t. See Andreas Schwab's note
15838 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#8>.
15839
15840 * image.c: Improve checking for integer overflow.
15841 (check_image_size): Assume that f is nonnull, since
15842 it is always nonnull in practice. This is one less thing to
15843 worry about when checking for integer overflow later.
15844 (x_check_image_size): New function, which checks for integer
15845 overflow issues inside X.
15846 (x_create_x_image_and_pixmap, xbm_read_bitmap_data): Use it.
15847 This removes the need for a memory_full check.
15848 (xbm_image_p): Rewrite to avoid integer multiplication overflow.
15849 (Create_Pixmap_From_Bitmap_Data, xbm_load): Use x_check_image_size.
15850 (xbm_read_bitmap_data): Change locals back to 'int', since
15851 their values must fit in 'int'.
15852 (xpm_load_image, png_load, tiff_load):
15853 Invoke x_create_x_image_and_pixmap earlier,
15854 to avoid much needless work if the image is too large.
15855 (tiff_load): Treat overly large images as if
15856 x_create_x_image_and_pixmap failed, not as malloc failures.
15857 (gs_load): Use x_check_image_size.
15858
15859 * gtkutil.c: Omit integer casts.
15860 (xg_get_pixbuf_from_pixmap): Remove unnecessary cast.
15861 (xg_set_toolkit_scroll_bar_thumb): Rewrite to avoid need for cast.
15862
15863 * image.c (png_load): Don't assume height * row_bytes fits in 'int'.
15864
15865 * xfaces.c (Fbitmap_spec_p): Fix integer overflow bug.
15866 Without this fix, (bitmap-spec-p '(34359738368 1 "x"))
15867 would wrongly return t on a 64-bit host.
15868
15869 * dispnew.c (init_display): Use *_RANGE_OVERFLOW macros.
15870 The plain *_OVERFLOW macros run afoul of GCC bug 49705
15871 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49705>
15872 and therefore cause GCC to emit a bogus diagnostic in some cases.
15873
15874 * image.c: Integer signedness and overflow and related fixes.
15875 This is not an exhaustive set of fixes, but it's time to
15876 record what I've got.
15877 (lookup_pixel_color, check_image_size): Remove redundant decls.
15878 (check_image_size): Don't assume that arbitrary EMACS_INT values
15879 fit in 'int', or that arbitrary 'double' values fit in 'int'.
15880 (x_alloc_image_color, x_create_x_image_and_pixmap, png_load)
15881 (tiff_load, imagemagick_load_image):
15882 Check for overflow in size calculations.
15883 (x_create_x_image_and_pixmap): Remove unnecessary test for
15884 xmalloc returning NULL; that can't happen.
15885 (xbm_read_bitmap_data): Don't assume sizes fit into 'int'.
15886 (xpm_color_bucket): Use better integer hashing function.
15887 (xpm_cache_color): Don't possibly over-allocate memory.
15888 (struct png_memory_storage, tiff_memory_source, tiff_seek_in_memory)
15889 (gif_memory_source):
15890 Use ptrdiff_t, not int or size_t, to record sizes.
15891 (png_load): Don't assume values greater than 2**31 fit in 'int'.
15892 (our_stdio_fill_input_buffer): Prefer ptrdiff_t to size_t when
15893 either works, as we prefer signed integers.
15894 (tiff_read_from_memory, tiff_write_from_memory):
15895 Return tsize_t, not size_t, since that's what the TIFF API wants.
15896 (tiff_read_from_memory): Don't fail simply because the read would
15897 go past EOF; instead, return a short read.
15898 (tiff_load): Omit no-longer-needed casts.
15899 (Fimagemagick_types): Don't assume size fits into 'int'.
15900
15901 Improve hashing quality when configured --with-wide-int.
15902 * fns.c (hash_string): New function, taken from sxhash_string.
15903 Do not discard information about ASCII character case; this
15904 discarding is no longer needed.
15905 (sxhash-string): Use it. Change sig to match it. Caller changed.
15906 * lisp.h: Declare it.
15907 * lread.c (hash_string): Remove, since we now use fns.c's version.
15908 The fns.c version returns a wider integer if --with-wide-int is
15909 specified, so this should help the quality of the hashing a bit.
15910
15911 * emacs.c: Integer overflow minor fix.
15912 (heap_bss_diff): Now uprintmax_t, not unsigned long. All used changed.
15913 Define only if GNU_LINUX.
15914 (main, Fdump_emacs): Set and use heap_bss_diff only if GNU_LINUX.
15915
15916 * dispnew.c: Integer signedness and overflow fixes.
15917 Remove unnecessary forward decls, that were a maintenance hassle.
15918 (history_tick): Now uprintmax_t, so it's more likely to avoid overflow.
15919 All uses changed.
15920 (adjust_glyph_matrix, realloc_glyph_pool, adjust_frame_message_buffer)
15921 (scrolling_window): Use ptrdiff_t, not int, for byte count.
15922 (prepare_desired_row, line_draw_cost):
15923 Use int, not unsigned, where either works.
15924 (save_current_matrix, restore_current_matrix):
15925 Use ptrdiff_t, not size_t, where either works.
15926 (init_display): Check for overflow more accurately, and without
15927 relying on undefined behavior.
15928
15929 * editfns.c (pWIDE, pWIDElen, signed_wide, unsigned_wide):
15930 Remove, replacing with the new symbols in lisp.h. All uses changed.
15931 * fileio.c (make_temp_name):
15932 * filelock.c (lock_file_1, lock_file):
15933 * xdisp.c (message_dolog):
15934 Don't assume PRIdMAX etc. works; this isn't portable to pre-C99 hosts.
15935 Use pMd etc. instead.
15936 * lisp.h (printmax_t, uprintmax_t, pMd, pMu): New types and macros,
15937 replacing the pWIDE etc. symbols removed from editfns.c.
15938
15939 * keyboard.h (num_input_events): Now uintmax_t.
15940 This is (very slightly) less likely to mess up due to wraparound.
15941 All uses changed.
15942
15943 * buffer.c: Integer signedness fixes.
15944 (alloc_buffer_text, enlarge_buffer_text):
15945 Use ptrdiff_t rather than size_t when either will do, as we prefer
15946 signed integers.
15947
15948 * alloc.c: Integer signedness and overflow fixes.
15949 Do not impose an arbitrary 32-bit limit on malloc sizes when debugging.
15950 (__malloc_size_t): Default to size_t, not to int.
15951 (pure_size, pure_bytes_used_before_overflow, stack_copy_size)
15952 (Fgarbage_collect, mark_object_loop_halt, mark_object):
15953 Prefer ptrdiff_t to size_t when either would do, as we prefer
15954 signed integers.
15955 (XMALLOC_OVERRUN_CHECK_OVERHEAD): New macro.
15956 (xmalloc_overrun_check_header, xmalloc_overrun_check_trailer):
15957 Now const. Initialize with values that are in range even if char
15958 is signed.
15959 (XMALLOC_PUT_SIZE, XMALLOC_GET_SIZE): Remove, replacing with ...
15960 (xmalloc_put_size, xmalloc_get_size): New functions. All uses changed.
15961 These functions do the right thing with sizes > 2**32.
15962 (check_depth): Now ptrdiff_t, not int.
15963 (overrun_check_malloc, overrun_check_realloc, overrun_check_free):
15964 Adjust to new way of storing sizes. Check for size overflow bugs
15965 in rest of code.
15966 (STRING_BYTES_MAX): Adjust to new overheads. The old code was
15967 slightly wrong anyway, as it missed one instance of
15968 XMALLOC_OVERRUN_CHECK_OVERHEAD.
15969 (refill_memory_reserve): Omit needless cast to size_t.
15970 (mark_object_loop_halt): Mark as externally visible.
15971
15972 * xselect.c: Integer signedness and overflow fixes.
15973 (Fx_register_dnd_atom, x_handle_dnd_message):
15974 Use ptrdiff_t, not size_t, since we prefer signed.
15975 (Fx_register_dnd_atom): Check for ptrdiff_t (and size_t) overflow.
15976 * xterm.h (struct x_display_info): Use ptrdiff_t, not size_t, for
15977 x_dnd_atoms_size and x_dnd_atoms_length.
15978
15979 * doprnt.c: Prefer signed to unsigned when either works.
15980 * eval.c (verror):
15981 * doprnt.c (doprnt):
15982 * lisp.h (doprnt):
15983 * xdisp.c (vmessage):
15984 Use ptrdiff_t, not size_t, when using or implementing doprnt,
15985 since the sizes cannot exceed ptrdiff_t bounds anyway, and we
15986 prefer signed arithmetic to avoid comparison confusion.
15987 * doprnt.c (doprnt): Avoid a "+ 1" that can't overflow,
15988 but is a bit tricky.
15989
15990 Assume freestanding C89 headers, string.h, stdlib.h.
15991 * data.c, doprnt.c, floatfns.c, print.c:
15992 Include float.h unconditionally.
15993 * gmalloc.c: Assume C89-at-least behavior for preprocessor,
15994 limits.h, stddef.h, string.h. Use memset instead of 'flood'.
15995 * regex.c: Likewise for stddef.h, string.h.
15996 (ISASCII): Remove; can assume it returns 1 now. All uses removed.
15997 * s/aix4-2.h (HAVE_STRING_H): Remove obsolete undef.
15998 * s/ms-w32.h (HAVE_LIMITS_H, HAVE_STRING_H, HAVE_STDLIB_H)
15999 (STDC_HEADERS): Remove obsolete defines.
16000 * sysdep.c: Include limits.h unconditionally.
16001
16002 Assume support for memcmp, memcpy, memmove, memset.
16003 * lisp.h, sysdep.c (memcmp, memcpy, memmove, memset):
16004 * regex.c (memcmp, memcpy):
16005 Remove; we assume C89 now.
16006
16007 * gmalloc.c (memcpy, memset, memmove): Remove; we assume C89 now.
16008 (__malloc_safe_bcopy): Remove; no longer needed.
16009
16010 * lisp.h (struct vectorlike_header, struct Lisp_Subr): Signed sizes.
16011 Use EMACS_INT, not EMACS_UINT, for sizes. The code works equally
16012 well either way, and we prefer signed to unsigned.
16013
16014 2011-07-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
16015
16016 * gnutls.c (emacs_gnutls_read): Don't message anything if the peer
16017 closes the connection while we're reading (bug#9182).
16018
16019 2011-07-25 Jan Djärv <jan.h.d@swipnet.se>
16020
16021 * nsmenu.m (ns_popup_dialog): Add an "ok" button if no buttons
16022 are specified (Bug#9168).
16023
16024 2011-07-25 Paul Eggert <eggert@cs.ucla.edu>
16025
16026 * bidi.c (bidi_dump_cached_states): Fix printf format mismatch.
16027 Found by GCC static checking and --with-wide-int on a 32-bit host.
16028
16029 2011-07-25 Eli Zaretskii <eliz@gnu.org>
16030
16031 * xdisp.c (compute_display_string_pos): Fix logic of caching
16032 previous display string position. Initialize cached_prev_pos to
16033 -1. Fixes slow-down at the beginning of a buffer.
16034
16035 2011-07-24 Eli Zaretskii <eliz@gnu.org>
16036
16037 * xfaces.c (check_lface_attrs) [HAVE_WINDOW_SYSTEM]: Allow `nil'
16038 for attrs[LFACE_FONTSET_INDEX].
16039
16040 2011-07-23 Paul Eggert <eggert@cs.ucla.edu>
16041
16042 * xml.c (parse_region): Remove unused local
16043 that was recently introduced.
16044
16045 2011-07-23 Eli Zaretskii <eliz@gnu.org>
16046
16047 * xfns.c (unwind_create_frame) [GLYPH_DEBUG]: Adapt to changes in
16048 2008-02-22T17:42:09Z!monnier@iro.umontreal.ca.
16049
16050 * xdisp.c (move_it_in_display_line_to): Record the best matching
16051 position for TO_CHARPOS while scanning the line, and restore it on
16052 exit if none of the characters scanned was an exact match.
16053 Fixes vertical-motion and pos-visible-in-window-p under bidi redisplay
16054 when exact match is impossible due to invisible text, and the
16055 lines are truncated.
16056
16057 2011-07-23 Jan Djärv <jan.h.d@swipnet.se>
16058
16059 * nsterm.m (initFrameFromEmacs): Set NSTitledWindowMask in styleMask
16060 for OSX >= 10.7.
16061
16062 2011-07-22 Eli Zaretskii <eliz@gnu.org>
16063
16064 Fix a significant slow-down of cursor motion with C-n, C-p,
16065 C-f/C-b, and C-v/M-v that couldn't keep up with keyboard
16066 auto-repeat under bidi redisplay in fontified buffers.
16067 * xdisp.c (compute_stop_pos_backwards): New function.
16068 (next_element_from_buffer): Call compute_stop_pos_backwards to
16069 find a suitable prev_stop when we find ourselves before
16070 base_level_stop.
16071 (reseat): Don't look for prev_stop, as that could mean a very long
16072 run.
16073 <cached_disp_pos, cached_disp_buffer, cached_disp_modiff>
16074 <cached_disp_overlay_modiff>: Cache for last found display string
16075 position.
16076 (compute_display_string_pos): Return the cached position if asked
16077 about the same buffer in the same area of character positions, and
16078 the buffer wasn't changed since the time the display string
16079 position was cached.
16080
16081 2011-07-22 Eli Zaretskii <eliz@gnu.org>
16082
16083 * xdisp.c (rows_from_pos_range): Don't ignore glyphs whose object
16084 is an integer, which is important for empty lines. (Bug#9149)
16085
16086 2011-07-22 Chong Yidong <cyd@stupidchicken.com>
16087
16088 * frame.c (Fmodify_frame_parameters): In tty case, update the
16089 default face if necessary (Bug#4238).
16090
16091 2011-07-21 Chong Yidong <cyd@stupidchicken.com>
16092
16093 * editfns.c (Fstring_to_char): No need to explain what a character
16094 is in the docstring (Bug#6576).
16095
16096 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
16097
16098 * xml.c (parse_region): Make sure we always return a tree.
16099
16100 2011-07-20 HAMANO Kiyoto <khiker.mail@gmail.com>
16101
16102 * xml.c (parse_region): If a document contains only comments,
16103 return that, too.
16104
16105 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
16106
16107 * xml.c (make_dom): Return comments, too.
16108
16109 2011-07-19 Paul Eggert <eggert@cs.ucla.edu>
16110
16111 Port to OpenBSD.
16112 See http://lists.gnu.org/archive/html/emacs-devel/2011-07/msg00688.html
16113 and the surrounding thread.
16114 * minibuf.c (read_minibuf_noninteractive): Rewrite to use getchar
16115 rather than fgets, and retry after EINTR. Otherwise, 'emacs
16116 --batch -f byte-compile-file' fails on OpenBSD if an inactivity
16117 timer goes off.
16118 * s/openbsd.h (BROKEN_SIGIO): Define.
16119 * unexelf.c (unexec) [__OpenBSD__]:
16120 Don't update the .mdebug section of the Alpha COFF symbol table.
16121
16122 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
16123
16124 * lread.c (syms_of_lread): Clarify when `lexical-binding' is used
16125 (bug#8460).
16126
16127 2011-07-18 Paul Eggert <eggert@cs.ucla.edu>
16128
16129 * fileio.c (Fcopy_file) [!MSDOS]: Tighten created file's mask.
16130 This fixes some race conditions on the permissions of any newly
16131 created file.
16132
16133 * alloc.c (valid_pointer_p): Use pipe, not open.
16134 This fixes some permissions issues when debugging.
16135
16136 * fileio.c (Fcopy_file): Adjust mode if fchown fails. (Bug#9002)
16137 If fchown fails to set both uid and gid, try to set just gid,
16138 as that is sometimes allowed. Adjust the file's mode to eliminate
16139 setuid or setgid bits that are inappropriate if fchown fails.
16140
16141 2011-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
16142
16143 * xdisp.c (next_element_from_string, next_element_from_buffer): Use EQ
16144 to compare Lisp_Objects.
16145 * gnutls.c (syms_of_gnutls): Rename Vgnutls_log_level to
16146 global_gnutls_log_level, don't mistake it for a Lisp_Object.
16147 (init_gnutls_functions, emacs_gnutls_handle_error): Fix up uses.
16148
16149 2011-07-17 Andreas Schwab <schwab@linux-m68k.org>
16150
16151 * lread.c (read_integer): Unread even EOF character.
16152 (read1): Likewise. Properly record start position of symbol.
16153
16154 * lread.c (read1): Read `#:' as empty uninterned symbol if no
16155 symbol character follows.
16156
16157 2011-07-17 Paul Eggert <eggert@cs.ucla.edu>
16158
16159 * fileio.c (Fcopy_file): Pacify gcc re fchown. (Bug#9002)
16160 This works around a problem with the previous change to Fcopy_file.
16161 Recent glibc declares fchown with __attribute__((warn_unused_result)),
16162 and without this change, GCC might complain about discarding
16163 fchown's return value.
16164
16165 2011-07-16 Juanma Barranquero <lekktu@gmail.com>
16166
16167 * makefile.w32-in (GLOBAL_SOURCES): Add gnutls.c (followup to bug#9059).
16168
16169 2011-07-16 Paul Eggert <eggert@cs.ucla.edu>
16170
16171 * fileio.c (Fcopy_file): Don't diagnose fchown failures. (Bug#9002)
16172
16173 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
16174
16175 * gnutls.c (syms_of_gnutls): Define `gnutls-log-level' here, since
16176 it's used from the C level.
16177
16178 * process.c: Use the same condition for POLL_FOR_INPUT in both
16179 keyboard.c and process.c (bug#1858).
16180
16181 2011-07-09 Lawrence Mitchell <wence@gmx.li>
16182
16183 * gnutls.c (Qgnutls_bootprop_min_prime_bits): New variable.
16184 (Fgnutls_boot): Use it.
16185
16186 2011-07-15 Andreas Schwab <schwab@linux-m68k.org>
16187
16188 * doc.c (Fsubstitute_command_keys): Revert last change.
16189
16190 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
16191
16192 * doc.c (Fsubstitute_command_keys): Clarify that \= really only
16193 quotes the next character, and doesn't affect other longer
16194 sequences (bug#8935).
16195
16196 * lread.c (syms_of_lread): Clarify that is isn't only
16197 `eval-buffer' and `eval-defun' that's affected by
16198 `lexical-binding' (bug#8460).
16199
16200 2011-07-15 Eli Zaretskii <eliz@gnu.org>
16201
16202 * xdisp.c (move_it_in_display_line_to): Fix vertical motion with
16203 bidi redisplay when a line includes both an image and is truncated.
16204
16205 2011-07-14 Paul Eggert <eggert@cs.ucla.edu>
16206
16207 Fix minor problems found by static checking.
16208 * bidi.c (bidi_cache_size): Now EMACS_INT, not size_t.
16209 (elsz): Now a signed constant, not a size_t var. We prefer signed
16210 types to unsigned, to avoid integer comparison confusion. Without
16211 this change, GCC 4.6.1 with -Wunsafe-loop-optimizations complains
16212 "cannot optimize loop, the loop counter may overflow", a symptom
16213 of the confusion.
16214 * indent.c (Fvertical_motion): Mark locals as initialized.
16215 * xdisp.c (reseat_to_string): Fix pointer signedness issue.
16216
16217 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
16218
16219 * search.c (Fre_search_backward): Mention `case-fold-search' in
16220 all the re_search_* functions (bug#8138).
16221
16222 * keyboard.c (Fopen_dribble_file): Document when the file is
16223 closed (bug#8056).
16224
16225 2011-07-14 Eli Zaretskii <eliz@gnu.org>
16226
16227 * bidi.c (bidi_dump_cached_states): Fix format of displaying
16228 bidi_cache_idx.
16229
16230 Support bidi reordering of display and overlay strings.
16231 * xdisp.c (compute_display_string_pos)
16232 (compute_display_string_end): Accept additional argument STRING.
16233 (init_iterator, reseat_1): Initialize bidi_it->string.s to NULL.
16234 (reseat_to_string): Initialize bidi_it->string.s and
16235 bidi_it->string.schars.
16236 (Fcurrent_bidi_paragraph_direction): Initialize itb.string.s to
16237 NULL (avoids a crash in bidi_paragraph_init).
16238 Initialize itb.string.lstring.
16239 (init_iterator): Call bidi_init_it only of a valid
16240 buffer position was specified. Initialize paragraph_embedding to
16241 L2R.
16242 (reseat_to_string): Initialize the bidi iterator.
16243 (display_string): If we need to ignore text properties of
16244 LISP_STRING, set IT->stop_charpos to IT->end_charpos. (The
16245 original value of -1 will not work with bidi.)
16246 (compute_display_string_pos): First arg is now struct
16247 `text_pos *'; all callers changed. Support display properties on
16248 Lisp strings.
16249 (compute_display_string_end): Support display properties on Lisp
16250 strings.
16251 (init_iterator, reseat_1, reseat_to_string): Initialize the
16252 string.bufpos member to 0 (zero, for compatibility with IT_CHARPOS
16253 when iterating on a string not from display properties).
16254 (compute_display_string_pos, compute_display_string_end):
16255 Fix calculation of the object to scan. Fixes an error when using
16256 arrow keys.
16257 (next_element_from_buffer): Don't abort when IT_CHARPOS is before
16258 base_level_stop; instead, set base_level_stop to BEGV.
16259 Fixes crashes in vertical-motion.
16260 (next_element_from_buffer): Improve commentary for when
16261 the iterator is before prev_stop.
16262 (init_iterator): Initialize bidi_p from the default value of
16263 bidi-display-reordering, not from buffer-local value. Use the
16264 buffer-local value only if initializing for buffer iteration.
16265 (handle_invisible_prop): Support invisible properties on strings
16266 that are being bidi-reordered.
16267 (set_iterator_to_next): Support bidi reordering of C strings and
16268 Lisp strings.
16269 (next_element_from_string): Support bidi reordering of Lisp
16270 strings.
16271 (handle_stop_backwards): Support Lisp strings as well.
16272 (display_string): Support display of R2L glyph rows.
16273 Use IT_STRING_CHARPOS when displaying from a Lisp string.
16274 (init_iterator): Don't initialize it->bidi_p for strings
16275 here.
16276 (reseat_to_string): Initialize it->bidi_p for strings here.
16277 (next_element_from_string, next_element_from_c_string)
16278 (next_element_from_buffer): Add xassert's for correspondence
16279 between IT's object being iterated and it->bidi_it.string
16280 structure.
16281 (face_before_or_after_it_pos): Support bidi iteration.
16282 (next_element_from_c_string): Handle the case of the first string
16283 character that is not the first one in the visual order.
16284 (get_visually_first_element): New function, refactored from common
16285 parts of next_element_from_buffer, next_element_from_string, and
16286 next_element_from_c_string.
16287 (tool_bar_lines_needed, redisplay_tool_bar)
16288 (display_menu_bar): Force left-to-right direction. Add a FIXME
16289 comment for making that be controlled by a user option.
16290 (push_it, pop_it): Save and restore the state of the
16291 bidi iterator. Save and restore the bidi_p flag.
16292 (pop_it): Iterate out of display property for string iteration as
16293 well.
16294 (iterate_out_of_display_property): Support iteration over strings.
16295 (handle_single_display_spec): Set up it->bidi_it for iteration
16296 over a display string, and call bidi_init_it.
16297 (handle_single_display_spec, next_overlay_string)
16298 (get_overlay_strings_1, push_display_prop): Set up the bidi
16299 iterator for displaying display or overlay strings.
16300 (forward_to_next_line_start): Don't use the shortcut if
16301 bidi-iterating.
16302 (back_to_previous_visible_line_start): If handle_display_prop
16303 pushed the iterator stack, restore the internal state of the bidi
16304 iterator by calling bidi_pop_it same number of times.
16305 (reseat_at_next_visible_line_start): If ON_NEWLINE_P is non-zero,
16306 and we are bidi-iterating, don't decrement the iterator position;
16307 instead, set the first_elt flag in the bidi iterator, to produce
16308 the same effect.
16309 (reseat_1): Remove redundant setting of string_from_display_prop_p.
16310 (push_display_prop): xassert that we are iterating a buffer.
16311 (push_it, pop_it): Save and restore paragraph_embedding member.
16312 (handle_single_display_spec, next_overlay_string)
16313 (get_overlay_strings_1, reseat_1, reseat_to_string)
16314 (push_display_prop): Set up the `unibyte' member of bidi_it.string
16315 correctly. Don't assume unibyte strings are not bidi-reordered.
16316 (compute_display_string_pos)
16317 (compute_display_string_end): Fix handling the case of C string.
16318 (push_it, pop_it): Save and restore from_disp_prop_p.
16319 (handle_single_display_spec, push_display_prop): Set the
16320 from_disp_prop_p flag.
16321 (get_overlay_strings_1): Reset the from_disp_prop_p flag.
16322 (pop_it): Call iterate_out_of_display_property only if we are
16323 popping after iteration over a string that came from a display
16324 property. Fix a typo in popping stretch info. Add an assertion
16325 for verifying that the iterator position is in sync with the bidi
16326 iterator.
16327 (handle_single_display_spec, get_overlay_strings_1)
16328 (push_display_prop): Fix initialization of paragraph direction for
16329 string when that of the parent object is not yet determined.
16330 (reseat_1): Call bidi_init_it to resync the bidi
16331 iterator with IT's position. (Bug#7616)
16332 (find_row_edges): If ROW->start.pos gives position
16333 smaller than min_pos, use it as ROW->minpos. (Bug#7616)
16334 (handle_stop, back_to_previous_visible_line_start, reseat_1):
16335 Reset the from_disp_prop_p flag.
16336 (SAVE_IT, RESTORE_IT): New macros.
16337 (pos_visible_p, face_before_or_after_it_pos)
16338 (back_to_previous_visible_line_start)
16339 (move_it_in_display_line_to, move_it_in_display_line)
16340 (move_it_to, move_it_vertically_backward, move_it_by_lines)
16341 (try_scrolling, redisplay_window, display_line): Use them when
16342 saving a temporary copy of the iterator and restoring it back.
16343 (back_to_previous_visible_line_start, reseat_1)
16344 (init_iterator): Empty the bidi cache "stack".
16345 (move_it_in_display_line_to): If iterator ended up at
16346 EOL, but we never saw any buffer positions smaller than
16347 to_charpos, return MOVE_POS_MATCH_OR_ZV. Fixes vertical cursor
16348 motion in bidi-reordered lines.
16349 (move_it_in_display_line_to): Record prev_method and prev_pos
16350 immediately before the call to set_iterator_to_next. Fixes cursor
16351 motion in bidi-reordered lines with stretch glyphs and strings
16352 displayed in margins. (Bug#8133) (Bug#8867)
16353 Return MOVE_POS_MATCH_OR_ZV only if iterator position is past
16354 TO_CHARPOS.
16355 (pos_visible_p): Support positions in bidi-reordered lines.
16356 Save and restore bidi cache.
16357
16358 * bidi.c (bidi_level_of_next_char): clen should be EMACS_NT, not int.
16359 (bidi_paragraph_info): Delete unused struct.
16360 (bidi_cache_idx, bidi_cache_last_idx): Declare EMACS_INT.
16361 (bidi_cache_start): New variable.
16362 (bidi_cache_reset): Reset bidi_cache_idx to bidi_cache_start, not
16363 to zero.
16364 (bidi_cache_fetch_state, bidi_cache_search)
16365 (bidi_cache_find_level_change, bidi_cache_iterator_state)
16366 (bidi_cache_find, bidi_peek_at_next_level)
16367 (bidi_level_of_next_char, bidi_find_other_level_edge)
16368 (bidi_move_to_visually_next): Compare cache index with
16369 bidi_cache_start rather than with zero.
16370 (bidi_fetch_char): Accept new argument STRING; all callers
16371 changed. Support iteration over a string. Support strings with
16372 display properties. Support unibyte strings. Fix the type of
16373 `len' according to what STRING_CHAR_AND_LENGTH expects.
16374 (bidi_paragraph_init, bidi_resolve_explicit_1)
16375 (bidi_resolve_explicit, bidi_resolve_weak)
16376 (bidi_level_of_next_char, bidi_move_to_visually_next):
16377 Support iteration over a string.
16378 (bidi_set_sor_type, bidi_resolve_explicit_1)
16379 (bidi_resolve_explicit, bidi_type_of_next_char): ignore_bn_limit
16380 can now be zero (for strings); special values 0 and -1 were
16381 changed to -1 and -2, respectively.
16382 (bidi_char_at_pos): New function.
16383 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak):
16384 Call it instead of FETCH_MULTIBYTE_CHAR.
16385 (bidi_move_to_visually_next): Abort if charpos or bytepos were not
16386 initialized to valid values.
16387 (bidi_init_it): Don't initialize charpos and bytepos with invalid
16388 values.
16389 (bidi_level_of_next_char): Allow the sentinel "position" to pass
16390 the test for valid cached positions. Fix the logic for looking up
16391 the sentinel state in the cache. GCPRO the Lisp string we are
16392 iterating.
16393 (bidi_push_it, bidi_pop_it): New functions.
16394 (bidi_initialize): Initialize the bidi cache start stack pointer.
16395 (bidi_cache_ensure_space): New function, refactored from part of
16396 bidi_cache_iterator_state. Don't assume the required size is just
16397 one BIDI_CACHE_CHUNK away.
16398 (bidi_cache_start_stack, bidi_push_it): Use IT_STACK_SIZE.
16399 (bidi_count_bytes, bidi_char_at_pos): New functions.
16400 (bidi_cache_search): Don't assume bidi_cache_last_idx is
16401 always valid if bidi_cache_idx is valid.
16402 (bidi_cache_find_level_change): xassert that bidi_cache_last_idx
16403 is valid if it's going to be used.
16404 (bidi_shelve_cache, bidi_unshelve_cache): New functions.
16405 (bidi_cache_fetch_state, bidi_cache_search)
16406 (bidi_cache_find_level_change, bidi_cache_ensure_space)
16407 (bidi_cache_iterator_state, bidi_cache_find)
16408 (bidi_find_other_level_edge, bidi_cache_start_stack):
16409 All variables related to cache indices are now EMACS_INT.
16410
16411 * dispextern.h (struct bidi_string_data): New structure.
16412 (struct bidi_it): New member `string'. Make flag members be 1-bit
16413 fields, and put them last in the struct.
16414 (compute_display_string_pos, compute_display_string_end):
16415 Update prototypes.
16416 (bidi_push_it, bidi_pop_it): Add prototypes.
16417 (struct iterator_stack_entry): New members bidi_p,
16418 paragraph_embedding, and from_disp_prop_p.
16419 (struct it): Member bidi_p is now a bit field 1 bit wide.
16420 (bidi_shelve_cache, bidi_unshelve_cache):
16421 Declare prototypes.
16422
16423 * .gdbinit (xvectype, xvector, xcompiled, xchartable, xboolvector)
16424 (xpr, xfont, xbacktrace): Use "header.size" when accessing vectors
16425 and vector-like objects.
16426
16427 * dispnew.c (buffer_posn_from_coords): Save and restore the bidi
16428 cache around display iteration.
16429
16430 * window.c (Fwindow_end, window_scroll_pixel_based)
16431 (displayed_window_lines, Frecenter): Save and restore the bidi
16432 cache around display iteration.
16433
16434 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
16435
16436 * editfns.c (Fdelete_region): Clarify the use of the named
16437 parameters (bug#6788).
16438
16439 2011-07-14 Martin Rudalics <rudalics@gmx.at>
16440
16441 * indent.c (Fvertical_motion): Set and restore w->pointm when
16442 saving and restoring the window's buffer (Bug#9006).
16443
16444 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16445
16446 * editfns.c (Fstring_to_char): Clarify just what is returned
16447 (bug#6576). Text by Eli Zaretskii.
16448
16449 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
16450
16451 * gnutls.c (init_gnutls_functions): Honor gnutls_log_level (bug#9059).
16452
16453 2011-07-13 Eli Zaretskii <eliz@gnu.org>
16454
16455 * buffer.c (mmap_find): Fix a typo.
16456
16457 2011-07-13 Johan Bockgård <bojohan@gnu.org>
16458
16459 Fix execution of x selection hooks.
16460 * xselect.c (Qx_lost_selection_functions)
16461 (Qx_sent_selection_functions): New vars.
16462 (syms_of_xselect): DEFSYM them.
16463 (x_handle_selection_request): Pass Qx_sent_selection_functions
16464 rather than Vx_sent_selection_functions to Frun_hook_with_args.
16465 (x_handle_selection_clear,x_clear_frame_selections):
16466 Pass Qx_lost_selection_functions rather than
16467 Vx_lost_selection_functions to Frun_hook_with_args.
16468
16469 2011-07-13 Paul Eggert <eggert@cs.ucla.edu>
16470
16471 * buffer.c (Fget_buffer_create): Initialize inhibit_shrinking.
16472 The old code sometimes used this field without initializing it.
16473
16474 * alloc.c (gc_sweep): Don't read past end of array.
16475 In theory, the old code could also have corrupted Emacs internals,
16476 though it'd be very unlikely.
16477
16478 2011-07-12 Andreas Schwab <schwab@linux-m68k.org>
16479
16480 * character.c (Fcharacterp): Don't advertise optional ignored
16481 argument. (Bug#4026)
16482
16483 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
16484
16485 * keymap.c (syms_of_keymap): Clarify that "modifier" is "modifier
16486 key" (bug#4257).
16487
16488 * window.c (Fset_window_start): Doc fix (bug#4199).
16489 (Fset_window_hscroll): Ditto.
16490
16491 2011-07-12 Paul Eggert <eggert@cs.ucla.edu>
16492
16493 Fix minor new problems caught by GCC 4.6.1.
16494 * term.c (init_tty): Remove unused local.
16495 * xsettings.c (store_monospaced_changed): Define this function only
16496 if (defined HAVE_GSETTINGS || defined HAVE_GCONF), as it's
16497 not used otherwise.
16498
16499 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
16500
16501 * xdisp.c (Vresize_mini_windows): Minor doc fix (Bug#3300).
16502
16503 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
16504
16505 * xdisp.c (syms_of_xdisp): Make it explicit that the mini-windows
16506 are the mini-buffer and the echo area (bug#3320).
16507
16508 * term.c (init_tty): Remove support for supdup, c10 and perq
16509 terminals, which are no longer supported (bug#1482).
16510
16511 2011-07-10 Johan Bockgård <bojohan@gnu.org>
16512
16513 * xdisp.c (Ftool_bar_lines_needed): Fix WINDOWP check.
16514
16515 2011-07-10 Jan Djärv <jan.h.d@swipnet.se>
16516
16517 * xmenu.c (menu_highlight_callback): Only pass frame to show_help_event
16518 for non-popups (Bug#3642).
16519
16520 2011-07-10 Andreas Schwab <schwab@linux-m68k.org>
16521
16522 * alloc.c (reset_malloc_hooks): Protoize.
16523 * buffer.c (mmap_init, mmap_find, mmap_free_1, mmap_enlarge)
16524 (mmap_set_vars, mmap_alloc, mmap_free, mmap_realloc): Likewise.
16525 * cm.c (losecursor): Likewise.
16526 * data.c (fmod): Likewise.
16527 * dispnew.c (swap_glyphs_in_rows): Likewise.
16528 * emacs.c (memory_warning_signal): Likewise.
16529 * floatfns.c (float_error): Likewise.
16530 * font.c (check_gstring, check_otf_features, otf_tag_symbol)
16531 (otf_open, font_otf_capability, generate_otf_features)
16532 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
16533 Likewise.
16534 * image.c (pbm_read_file): Likewise.
16535 * indent.c (string_display_width): Likewise.
16536 * intervals.c (check_for_interval, search_for_interval)
16537 (inc_interval_count, count_intervals, root_interval)
16538 (adjust_intervals_for_insertion, make_new_interval): Likewise.
16539 * lread.c (defalias): Likewise.
16540 * ralloc.c (r_alloc_check): Likewise.
16541 * regex.c (set_image_of_range_1, set_image_of_range)
16542 (regex_grow_registers): Likewise.
16543 * sysdep.c (strerror): Likewise.
16544 * termcap.c (valid_filename_p, tprint, main): Likewise.
16545 * tparam.c (main): Likewise.
16546 * unexhp9k800.c (run_time_remap, save_data_space)
16547 (update_file_ptrs, read_header, write_header, calculate_checksum)
16548 (copy_file, copy_rest, display_header): Likewise.
16549 * widget.c (mark_shell_size_user_specified, create_frame_gcs):
16550 Likewise.
16551 * xdisp.c (check_it): Likewise.
16552 * xfaces.c (register_color, unregister_color, unregister_colors):
16553 Likewise.
16554 * xfns.c (print_fontset_result): Likewise.
16555 * xrdb.c (member, fatal, main): Likewise.
16556
16557 2011-07-10 Paul Eggert <eggert@cs.ucla.edu>
16558
16559 Fix minor problems found by static checking (Bug#9031).
16560 * chartab.c (char_table_set_range, map_sub_char_table):
16561 Remove unused locals.
16562 (uniprop_table): Now static.
16563 * composite.c (_work_char): Remove unused static var.
16564
16565 2011-07-09 Juanma Barranquero <lekktu@gmail.com>
16566
16567 * chartab.c (uniprop_table_uncompress): Remove unused local variable.
16568
16569 2011-07-09 Jan Djärv <jan.h.d@swipnet.se>
16570
16571 * gtkutil.c (qttip_cb): Remove code without function.
16572
16573 2011-07-09 Eli Zaretskii <eliz@gnu.org>
16574
16575 * w32.c (pthread_sigmask): New stub.
16576
16577 2011-07-08 Paul Eggert <eggert@cs.ucla.edu>
16578
16579 Use pthread_sigmask, not sigprocmask (Bug#9010).
16580 sigprocmask is portable only for single-threaded applications, and
16581 Emacs can be multi-threaded when it uses GTK.
16582 * Makefile.in (LIB_PTHREAD_SIGMASK): New macro.
16583 (LIBES): Use it.
16584 * callproc.c (Fcall_process):
16585 * process.c (create_process):
16586 * sysdep.c (sys_sigblock, sys_sigunblock, sys_sigsetmask):
16587 Use pthread_sigmask, not sigprocmask.
16588
16589 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
16590
16591 * gtkutil.c (qttip_cb): Set line wrap to FALSE for tooltip widget.
16592 (xg_prepare_tooltip): Revert text in x->ttip_lbl, margins was
16593 wrong (Bug#8591).
16594
16595 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
16596
16597 * gtkutil.c (xg_prepare_tooltip): Fix indentation and comment.
16598 Put text in x->ttip_lbl instead of gtk_tooltip_set_text (Bug#8591).
16599 (xg_hide_tooltip): Fix comment.
16600
16601 * nsterm.m (initFrameFromEmacs): Don't use ns_return_types
16602 in registerServicesMenuSendTypes.
16603 (validRequestorForSendType): Don't check ns_return_types.
16604
16605 * nsfns.m (Fx_open_connection): Put NSStringPboardType into
16606 ns_return_type.
16607
16608 2011-07-08 Jason Rumney <jasonr@gnu.org>
16609
16610 * w32term.c (x_make_frame_visible): Use SH_SHOWNORMAL rather than
16611 SH_SHOW for hidden windows (Bug#5482).
16612
16613 * w32fns.c (w32_wnd_proc) [WM_TIMER, WM_SET_CURSOR]: Avoid using
16614 frame struct members of non-existent frames (Bug#6284).
16615
16616 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
16617
16618 * nsterm.m (keyDown): Call to wantsToDelayTextChangeNotifications and
16619 variable firstTime not needed on OSX >= 10.6.
16620 (setPosition): setFloatValue:knobProportion: is deprecated on OSX
16621 >= 10.5. Use setKnobProportion, setDoubleValue.
16622
16623 * nsterm.h (MAC_OS_X_VERSION_10_3, MAC_OS_X_VERSION_10_4)
16624 (MAC_OS_X_VERSION_10_5): Define if not defined.
16625 (EmacsView, EmacsTooltip): Implements NSWindowDelegate on OSX >= 10.6.
16626 (EmacsMenu): Implements NSMenuDelegate on OSX >= 10.6.
16627 (EmacsToolbar): Implements NSToolbarDelegate on OSX >= 10.6.
16628
16629 * nsselect.m (ns_string_from_pasteboard): Don't use deprecated methods
16630 cString and lossyCString on OSX >= 10.4.
16631
16632 * nsmenu.m (fillWithWidgetValue): Don't use deprecated method
16633 sizeToFit on OSX >= 10.2.
16634
16635 * nsimage.m (allocInitFromFile): Don't use deprecated method
16636 bestRepresentationForDevice on OSX >= 10.6.
16637
16638 * nsfns.m (check_ns_display_info): Cast to long and use %ld in error
16639 to avoid warning.
16640
16641 * emacs.c: Declare unexec_init_emacs_zone.
16642
16643 * nsgui.h: Fix compiler warning about gnulib redefining verify.
16644
16645 * nsselect.m (ns_get_local_selection): Change to extern (Bug#8842).
16646
16647 * nsmenu.m (ns_update_menubar): Remove useless setDelegate call
16648 on svcsMenu (Bug#8842).
16649
16650 * nsfns.m (Fx_open_connection): Remove NSStringPboardType from
16651 ns_return_types.
16652 (Fns_list_services): Just return Qnil on 10.6, code not working there.
16653
16654 * nsterm.m (QUTF8_STRING): Declare.
16655 (initFrameFromEmacs): Call registerServicesMenuSendTypes.
16656 (validRequestorForSendType): Return type is (id).
16657 Change indexOfObjectIdenticalTo to indexOfObject.
16658 Check if we have local selection before returning self (Bug#8842).
16659 (writeSelectionToPasteboard): Put local selection into paste board
16660 if we have a local selection (Bug#8842).
16661 (syms_of_nsterm): DEFSYM QUTF8_STRING.
16662
16663 * nsterm.h (MAC_OS_X_VERSION_10_6): Define here instead of nsterm.m.
16664 (ns_get_local_selection): Declare.
16665
16666 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
16667
16668 * keymap.c (describe_map_tree): Don't insert a double newline at
16669 the end of the buffer (bug#1169) and return whether we inserted
16670 something.
16671
16672 * callint.c (Fcall_interactively): Change "reading args" to
16673 "providing args" to try to clarify what it does (bug#1010).
16674
16675 2011-07-07 Kenichi Handa <handa@m17n.org>
16676
16677 * composite.c (composition_compute_stop_pos): Ignore a static
16678 composition starting before CHARPOS (Bug#8915).
16679
16680 * xdisp.c (handle_composition_prop): Likewise.
16681
16682 2011-07-07 Eli Zaretskii <eliz@gnu.org>
16683
16684 * term.c (produce_glyphs) <xassert>: Allow IT_GLYPHLESS in it->what.
16685 (Bug#9015)
16686
16687 2011-07-07 Kenichi Handa <handa@m17n.org>
16688
16689 * character.h (unicode_category_t): New enum type.
16690
16691 * chartab.c (uniprop_decoder_t, uniprop_encoder_t): New types.
16692 (Qchar_code_property_table): New variable.
16693 (UNIPROP_TABLE_P, UNIPROP_GET_DECODER)
16694 (UNIPROP_COMPRESSED_FORM_P): New macros.
16695 (char_table_ascii): Uncompress the compressed values.
16696 (sub_char_table_ref): New arg is_uniprop. Callers changed.
16697 Uncompress the compressed values.
16698 (sub_char_table_ref_and_range): Likewise.
16699 (char_table_ref_and_range): Uncompress the compressed values.
16700 (sub_char_table_set): New arg is_uniprop. Callers changed.
16701 Uncompress the compressed values.
16702 (sub_char_table_set_range): Args changed. Callers changed.
16703 (char_table_set_range): Adjuted for the above change.
16704 (map_sub_char_table): Delete args default_val and parent. Add arg
16705 top. Give decoded values to a Lisp function.
16706 (map_char_table): Adjust for the above change. Give decoded
16707 values to a Lisp function. Gcpro more variables.
16708 (uniprop_table_uncompress)
16709 (uniprop_decode_value_run_length): New functions.
16710 (uniprop_decoder, uniprop_decoder_count): New variables.
16711 (uniprop_get_decoder, uniprop_encode_value_character)
16712 (uniprop_encode_value_run_length, uniprop_encode_value_numeric):
16713 New functions.
16714 (uniprop_encoder, uniprop_encoder_count): New variables.
16715 (uniprop_get_encoder, uniprop_table)
16716 (Funicode_property_table_internal, Fget_unicode_property_internal)
16717 (Fput_unicode_property_internal): New functions.
16718 (syms_of_chartab): DEFSYM Qchar_code_property_table, defsubr
16719 Sunicode_property_table_internal, Sget_unicode_property_internal,
16720 and Sput_unicode_property_internal. Defvar_lisp
16721 char-code-property-alist.
16722
16723 * composite.c (CHAR_COMPOSABLE_P): Adjust for the change of
16724 Vunicode_category_table.
16725
16726 * font.c (font_range): Adjust for the change of
16727 Vunicode_category_table.
16728
16729 2011-07-07 Dan Nicolaescu <dann@ics.uci.edu>
16730
16731 * m/iris4d.h: Remove file, move contents ...
16732 * s/irix6-5.h: ... here.
16733
16734 2011-07-06 Paul Eggert <eggert@cs.ucla.edu>
16735
16736 Remove unportable assumption about struct layout (Bug#8884).
16737 * alloc.c (mark_buffer):
16738 * buffer.c (reset_buffer_local_variables, Fbuffer_local_variables)
16739 (clone_per_buffer_values): Don't assume that
16740 sizeof (struct buffer) is a multiple of sizeof (Lisp_Object).
16741 This isn't true in general, and it's particularly not true
16742 if Emacs is configured with --with-wide-int.
16743 * buffer.h (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER):
16744 New macros, used in the buffer.c change.
16745
16746 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
16747
16748 * xsettings.c: Use both GConf and GSettings if both are available.
16749 (store_config_changed_event): Add comment.
16750 (dpyinfo_valid, store_font_name_changed, map_tool_bar_style)
16751 (store_tool_bar_style_changed): New functions.
16752 (store_monospaced_changed): Add comment. Call dpyinfo_valid.
16753 (struct xsettings): Move font inside HAVE_XFT.
16754 (GSETTINGS_TOOL_BAR_STYLE, GSETTINGS_FONT_NAME): New defines.
16755 (GSETTINGS_MONO_FONT): Rename from SYSTEM_MONO_FONT.
16756 Move inside HAVE_XFT.
16757 (something_changed_gsettingsCB): Rename from something_changedCB.
16758 Check for changes in GSETTINGS_TOOL_BAR_STYLE and GSETTINGS_FONT_NAME
16759 also.
16760 (GCONF_TOOL_BAR_STYLE, GCONF_FONT_NAME): New defines.
16761 (GCONF_MONO_FONT): Rename from SYSTEM_MONO_FONT. Move inside HAVE_XFT.
16762 (something_changed_gconfCB): Rename from something_changedCB.
16763 Check for changes in GCONF_TOOL_BAR_STYLE and GCONF_FONT_NAME also.
16764 (parse_settings): Move check for font inside HAVE_XFT.
16765 (read_settings, apply_xft_settings): Add comment.
16766 (read_and_apply_settings): Add comment. Call map_tool_bar_style and
16767 store_tool_bar_style_changed. Move check for font inside HAVE_XFT and
16768 call store_font_name_changed.
16769 (xft_settings_event): Add comment.
16770 (init_gsettings): Add comment. Get values for GSETTINGS_TOOL_BAR_STYLE
16771 and GSETTINGS_FONT_NAME. Move check for fonts within HAVE_XFT.
16772 (init_gconf): Add comment. Get values for GCONF_TOOL_BAR_STYLE
16773 and GCONF_FONT_NAME. Move check for fonts within HAVE_XFT.
16774 (xsettings_initialize): Call init_gsettings last.
16775 (xsettings_get_system_font, xsettings_get_system_normal_font):
16776 Add comment.
16777
16778 2011-07-05 Paul Eggert <eggert@cs.ucla.edu>
16779
16780 Random fixes. E.g., (random) never returned negative values.
16781 * fns.c (Frandom): Use GET_EMACS_TIME for random seed, and add the
16782 subseconds part to the entropy, as that's a bit more random.
16783 Prefer signed to unsigned, since the signedness doesn't matter and
16784 in general we prefer signed. When given a limit, use a
16785 denominator equal to INTMASK + 1, not to VALMASK + 1, because the
16786 latter isn't right if USE_2_TAGS_FOR_INTS.
16787 * sysdep.c (get_random): Return a value in the range 0..INTMASK,
16788 not 0..VALMASK. Don't discard "excess" bits that random () returns.
16789
16790 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
16791
16792 * textprop.c (text_property_stickiness):
16793 Obey Vtext_property_default_nonsticky.
16794 (syms_of_textprop): Add `display' to Vtext_property_default_nonsticky.
16795 * w32fns.c (syms_of_w32fns):
16796 * xfns.c (syms_of_xfns): Don't Add `display' since it's there by default.
16797
16798 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
16799
16800 * fileio.c (barf_or_query_if_file_exists): Use S_ISDIR.
16801 This is more efficient than Ffile_directory_p and avoids a minor race.
16802
16803 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
16804
16805 * buffer.c (Foverlay_put): Say what the return value is
16806 (bug#7835).
16807
16808 * fileio.c (barf_or_query_if_file_exists): Check first if the file
16809 is a directory before asking whether to use the file name
16810 (bug#7564).
16811 (barf_or_query_if_file_exists): Make the "File is a directory"
16812 error be more correct.
16813
16814 * fns.c (Frequire): Remove the mention of the .gz files, since
16815 that's installation-specific, but keep the mention of
16816 `get-load-suffixes'.
16817
16818 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
16819
16820 * editfns.c (Fformat_time_string): Don't assume strlen fits in int.
16821 Report string overflow if the output is too long.
16822
16823 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
16824
16825 * gnutls.c (Fgnutls_boot): Don't mention :verify-error.
16826 (syms_of_gnutls): Remove duplicate DEFSYM for
16827 Qgnutls_bootprop_verify_hostname_error, an error for
16828 Qgnutls_bootprop_verify_error (which is no longer used).
16829
16830 * eval.c (find_handler_clause): Remove parameters `sig' and `data',
16831 unused since 2011-01-26T20:02:07Z!monnier@iro.umontreal.ca. All callers changed.
16832 Also (re)move comments that are misplaced or no longer relevant.
16833
16834 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16835
16836 * callint.c (Finteractive): Clarify the meaning of "@" (bug#8813).
16837
16838 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
16839
16840 * xfaces.c (Finternal_merge_in_global_face): Modify the foreground
16841 and background color parameters if they have been changed.
16842
16843 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16844
16845 * editfns.c (Fformat): Clarify the - and 0 flags (bug#6659).
16846
16847 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
16848
16849 * xsettings.c (SYSTEM_FONT): Define only when used.
16850 No need to define when HAVE_GSETTINGS || !HAVE_XFT.
16851
16852 * keymap.c (access_keymap_1): Now static.
16853
16854 2011-07-02 Chong Yidong <cyd@stupidchicken.com>
16855
16856 * keyboard.c (command_loop_1): If a down-mouse event is unbound,
16857 leave any prefix arg for the up event (Bug#1586).
16858
16859 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
16860
16861 * lread.c (syms_of_lread): Mention single symbols defined by
16862 `defvar' or `defconst' (bug#7154).
16863
16864 * fns.c (Frequire): Mention .el.gz files (bug#7314).
16865 (Frequire): Mention get-load-suffixes.
16866
16867 2011-07-02 Martin Rudalics <rudalics@gmx.at>
16868
16869 * window.h (window): Remove clone_number slot.
16870 * window.c (Fwindow_clone_number, Fset_window_clone_number):
16871 Remove.
16872 (make_parent_window, make_window, saved_window)
16873 (Fset_window_configuration, save_window_save): Don't deal with
16874 clone numbers.
16875 * buffer.c (Qclone_number): Remove declaration.
16876 (sort_overlays, overlay_strings): Don't deal with clone numbers.
16877
16878 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
16879
16880 Add multiple inheritance to keymaps.
16881 * keymap.c (Fmake_composed_keymap): New function.
16882 (Fset_keymap_parent): Simplify.
16883 (fix_submap_inheritance): Remove.
16884 (access_keymap_1): New function extracted from access_keymap to handle
16885 embedded parents and handle lists of maps.
16886 (access_keymap): Use it.
16887 (Fkeymap_prompt, map_keymap_internal, map_keymap, store_in_keymap)
16888 (Fcopy_keymap): Handle embedded parents.
16889 (Fcommand_remapping, define_as_prefix): Simplify.
16890 (Fkey_binding): Simplify.
16891 (syms_of_keymap): Move minibuffer-local-completion-map,
16892 minibuffer-local-filename-completion-map,
16893 minibuffer-local-must-match-map, and
16894 minibuffer-local-filename-must-match-map to Elisp.
16895 (syms_of_keymap): Defsubr make-composed-keymap.
16896 * keyboard.c (menu_bar_items): Use map_keymap_canonical.
16897 (parse_menu_item): Trivial simplification.
16898
16899 2011-07-01 Glenn Morris <rgm@gnu.org>
16900
16901 * Makefile.in (SETTINGS_LIBS): Fix typo.
16902
16903 2011-07-01 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
16904
16905 * coding.c (Fencode_coding_string): Record the last coding system
16906 used, as the function doc string says (bug#8738).
16907
16908 2011-07-01 Jan Djärv <jan.h.d@swipnet.se>
16909
16910 * xsettings.c (store_monospaced_changed): Take new font as arg and
16911 check for change against current_mono_font.
16912 (EMACS_TYPE_SETTINGS): Remove this and related defines.
16913 (emacs_settings_constructor, emacs_settings_get_property)
16914 (emacs_settings_set_property, emacs_settings_class_init)
16915 (emacs_settings_init, gsettings_obj): Remove.
16916 (something_changedCB): New function for HAVE_GSETTINGS.
16917 (something_changedCB): HAVE_GCONF: Call store_monospaced_changed
16918 with value as argument.
16919 (init_gsettings): Check that GSETTINGS_SCHEMA exists before calling
16920 g_settings_new (Bug#8967). Do not create gsettings_obj.
16921 Remove calls to g_settings_bind. Connect something_changedCB to
16922 "changed".
16923
16924 * xgselect.c: Add defined (HAVE_GSETTINGS).
16925 (xgselect_initialize): Ditto.
16926
16927 * process.c: Add defined (HAVE_GSETTINGS) for xgselect.h
16928 (wait_reading_process_output): Add defined (HAVE_GSETTINGS) for
16929 xg_select.
16930
16931 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
16932
16933 * eval.c (struct backtrace): Simplify and port the data structure.
16934 Do not assume that "int nargs : BITS_PER_INT - 2;" produces a
16935 signed bit field, as this assumption is not portable and it makes
16936 Emacs crash when compiled with Sun C 5.8 on sparc. Do not use
16937 "char debug_on_exit : 1" as this is not portable either; instead,
16938 use the portable "unsigned int debug_on_exit : 1". Remove unused
16939 member evalargs. Remove obsolete comments about cc bombing out.
16940
16941 2011-06-30 Jan Djärv <jan.h.d@swipnet.se>
16942
16943 * xsettings.c: Include glib-object.h, gio/gio.h if HAVE_GSETTINGS.
16944 Let HAVE_GSETTINGS override HAVE_GCONF.
16945 (store_monospaced_changed): New function.
16946 (EMACS_SETTINGS): A new type derived from GObject to handle
16947 GSettings notifications.
16948 (emacs_settings_constructor, emacs_settings_get_property)
16949 (emacs_settings_set_property, emacs_settings_class_init):
16950 New functions.
16951 (gsettings_client, gsettings_obj): New variables.
16952 (GSETTINGS_SCHEMA): New define.
16953 (something_changedCB): Call store_monospaced_changed.
16954 (init_gsettings): New function.
16955 (xsettings_initialize): Call init_gsettings.
16956 (syms_of_xsettings): Initialize gsettings_client, gsettings_obj
16957 to NULL.
16958
16959 * Makefile.in (SETTINGS_CFLAGS, SETTINGS_LIBS): Rename from
16960 GCONF_CFLAGS/LIBS.
16961
16962 2011-06-29 Martin Rudalics <rudalics@gmx.at>
16963
16964 * window.c (resize_root_window, grow_mini_window)
16965 (shrink_mini_window): Rename Qresize_root_window to
16966 Qwindow_resize_root_window and Qresize_root_window_vertically to
16967 Qwindow_resize_root_window_vertically.
16968
16969 2011-06-28 Paul Eggert <eggert@cs.ucla.edu>
16970
16971 * gnutls.c (Qgnutls_bootprop_verify_error): Remove unused var.
16972
16973 2011-06-27 Juanma Barranquero <lekktu@gmail.com>
16974
16975 * makefile.w32-in: Redesign dependencies so they reflect more
16976 clearly which files are directly included by each source file,
16977 and not through other includes.
16978
16979 2011-06-27 Martin Rudalics <rudalics@gmx.at>
16980
16981 * buffer.c (Qclone_number): Declare static and DEFSYM it.
16982 (sort_overlays, overlay_strings): When an overlay's clone number
16983 matches the window's clone number process the overlay even if
16984 the overlay's window property doesn't match the current window.
16985
16986 * window.c (Fwindow_vchild): Rename to Fwindow_top_child.
16987 (Fwindow_hchild): Rename to Fwindow_left_child.
16988 (Fwindow_next): Rename to Fwindow_next_sibling.
16989 (Fwindow_prev): Rename to Fwindow_prev_sibling.
16990 (resize_window_check): Rename to window_resize_check.
16991 (resize_window_apply): Rename to window_resize_apply.
16992 (Fresize_window_apply): Rename to Fwindow_resize_apply.
16993 (Fdelete_other_windows_internal, resize_frame_windows)
16994 (Fsplit_window_internal, Fdelete_window_internal)
16995 (grow_mini_window, shrink_mini_window)
16996 (Fresize_mini_window_internal): Fix callers accordingly.
16997
16998 2011-06-26 Jan Djärv <jan.h.d@swipnet.se>
16999
17000 * emacsgtkfixed.h: State that this is only used with Gtk+3.
17001 (emacs_fixed_set_min_size): Remove.
17002 (emacs_fixed_new): Take frame as argument.
17003
17004 * emacsgtkfixed.c: State that this is only used with Gtk+3.
17005 (_EmacsFixedPrivate): Remove minwidth/height.
17006 Add struct frame *f.
17007 (emacs_fixed_init): Initialize priv->f.
17008 (get_parent_class, emacs_fixed_set_min_size): Remove.
17009 (emacs_fixed_new): Set priv->f to argument.
17010 (emacs_fixed_get_preferred_width)
17011 (emacs_fixed_get_preferred_height): Use min_width/height from
17012 frames size_hint to set minimum and natural (Bug#8919).
17013 (XSetWMSizeHints, XSetWMNormalHints): Override these functions
17014 and use min_width/height from frames size_hint to set
17015 min_width/height (Bug#8919).
17016
17017 * gtkutil.c (xg_create_frame_widgets): Pass f to emacs_fixed_new.
17018 (x_wm_set_size_hint): Remove call to emacs_fixed_set_min_size.
17019 Fix indentation.
17020
17021 2011-06-26 Eli Zaretskii <eliz@gnu.org>
17022
17023 * bidi.c (bidi_paragraph_init): Test for ZV_BYTE before calling
17024 bidi_at_paragraph_end, since fast_looking_at doesn't like to be
17025 called at ZV.
17026
17027 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
17028
17029 * process.c (wait_reading_process_output): Bypass select if
17030 waiting for a cell while ignoring keyboard input, and input is
17031 pending. Suggested by Jan Djärv (Bug#8869).
17032
17033 2011-06-25 Paul Eggert <eggert@cs.ucla.edu>
17034
17035 Use gnulib's dup2 module instead of rolling our own.
17036 * sysdep.c (dup2) [!HAVE_DUP2]: Remove; gnulib now does this.
17037
17038 2011-06-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17039
17040 * dispnew.c (scrolling_window): Before scrolling, turn off a
17041 mouse-highlight in the window being scrolled.
17042
17043 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
17044
17045 Move DEFSYM to lisp.h and use everywhere.
17046
17047 * character.h (DEFSYM): Move declaration...
17048 * lisp.h (DEFSYM): ...here.
17049
17050 * gnutls.c:
17051 * minibuf.c:
17052 * w32menu.c:
17053 * w32proc.c:
17054 * w32select.c: Don't include character.h.
17055
17056 * alloc.c (syms_of_alloc):
17057 * buffer.c (syms_of_buffer):
17058 * bytecode.c (syms_of_bytecode):
17059 * callint.c (syms_of_callint):
17060 * casefiddle.c (syms_of_casefiddle):
17061 * casetab.c (init_casetab_once):
17062 * category.c (init_category_once, syms_of_category):
17063 * ccl.c (syms_of_ccl):
17064 * cmds.c (syms_of_cmds):
17065 * composite.c (syms_of_composite):
17066 * dbusbind.c (syms_of_dbusbind):
17067 * dired.c (syms_of_dired):
17068 * dispnew.c (syms_of_display):
17069 * doc.c (syms_of_doc):
17070 * editfns.c (syms_of_editfns):
17071 * emacs.c (syms_of_emacs):
17072 * eval.c (syms_of_eval):
17073 * fileio.c (syms_of_fileio):
17074 * fns.c (syms_of_fns):
17075 * frame.c (syms_of_frame):
17076 * fringe.c (syms_of_fringe):
17077 * insdel.c (syms_of_insdel):
17078 * keymap.c (syms_of_keymap):
17079 * lread.c (init_obarray, syms_of_lread):
17080 * macros.c (syms_of_macros):
17081 * msdos.c (syms_of_msdos):
17082 * print.c (syms_of_print):
17083 * process.c (syms_of_process):
17084 * search.c (syms_of_search):
17085 * sound.c (syms_of_sound):
17086 * syntax.c (init_syntax_once, syms_of_syntax):
17087 * terminal.c (syms_of_terminal):
17088 * textprop.c (syms_of_textprop):
17089 * undo.c (syms_of_undo):
17090 * w32.c (globals_of_w32):
17091 * window.c (syms_of_window):
17092 * xdisp.c (syms_of_xdisp):
17093 * xfaces.c (syms_of_xfaces):
17094 * xfns.c (syms_of_xfns):
17095 * xmenu.c (syms_of_xmenu):
17096 * xsettings.c (syms_of_xsettings):
17097 * xterm.c (syms_of_xterm): Use DEFSYM.
17098
17099 2011-06-24 Teodor Zlatanov <tzz@lifelogs.com>
17100
17101 * gnutls.c (syms_of_gnutls): Use the DEFSYM macro from character.h.
17102
17103 2011-06-23 Paul Eggert <eggert@cs.ucla.edu>
17104
17105 Integer and buffer overflow fixes (Bug#8873).
17106
17107 * print.c (printchar, strout): Check for string overflow.
17108 (PRINTPREPARE, printchar, strout):
17109 Don't set size unless allocation succeeds.
17110
17111 * minibuf.c (read_minibuf_noninteractive): Use ptrdiff_t, not int,
17112 for sizes. Check for string overflow more accurately.
17113 Simplify newline removal at end; this suppresses a GCC 4.6.0 warning.
17114
17115 * macros.c: Integer and buffer overflow fixes.
17116 * keyboard.h (struct keyboard.kbd_macro_bufsize):
17117 * macros.c (Fstart_kbd_macro, store_kbd_macro_char):
17118 Use ptrdiff_t, not int, for sizes.
17119 Don't increment bufsize until after realloc succeeds.
17120 Check for size-calculation overflow.
17121 (Fstart_kbd_macro): Use EMACS_INT, not int, for XINT result.
17122
17123 * lisp.h (DEFVAR_KBOARD): Use offsetof instead of char * finagling.
17124
17125 * lread.c: Integer overflow fixes.
17126 (read_integer): Radix is now EMACS_INT, not int,
17127 to improve quality of diagnostics for out-of-range radices.
17128 Calculate buffer size correctly for out-of-range radices.
17129 (read1): Check for integer overflow in radices, and in
17130 read-circle numbers.
17131 (read_escape): Avoid int overflow.
17132 (Fload, openp, read_buffer_size, read1)
17133 (substitute_object_recurse, read_vector, read_list, map_obarray):
17134 Use ptrdiff_t, not int, for sizes.
17135 (read1): Use EMACS_INT, not int, for sizes.
17136 Check for size overflow.
17137
17138 * image.c (cache_image): Check for size arithmetic overflow.
17139
17140 * lread.c: Integer overflow issues.
17141 (saved_doc_string_size, saved_doc_string_length)
17142 (prev_saved_doc_string_size, prev_saved_doc_string_length):
17143 Now ptrdiff_t, not int.
17144 (read1): Don't assume doc string length fits in int. Check for
17145 out-of-range doc string lengths.
17146 (read_list): Don't assume file position fits in int.
17147 (read_escape): Check for hex character overflow.
17148
17149 2011-06-22 Leo Liu <sdl.web@gmail.com>
17150
17151 * minibuf.c (Fcompleting_read_default, Vcompleting_read_function):
17152 Move to minibuffer.el.
17153
17154 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
17155
17156 Fixes for GLYPH_DEBUG found by GCC 4.6.0 static checking.
17157 The following patches are for when GLYPH_DEBUG && !XASSERT.
17158 * dispextern.h (trace_redisplay_p, dump_glyph_string):
17159 * dispnew.c (flush_stdout):
17160 * xdisp.c (dump_glyph_row, dump_glyph_matrix, dump_glyph):
17161 Mark as externally visible.
17162 * dispnew.c (check_window_matrix_pointers): Now static.
17163 * dispnew.c (window_to_frame_vpos):
17164 * xfns.c (unwind_create_frame):
17165 * xterm.c (x_check_font): Remove unused local.
17166 * scroll.c (CHECK_BOUNDS):
17167 * xfaces.c (cache_fache): Rename local to avoid shadowing.
17168 * xfns.c, w32fns.c (image_cache_refcount, dpyinfo_refcount): Now static.
17169 * xdisp.c (check_window_end): Now a no-op if !XASSERTS.
17170 (debug_first_unchanged_at_end_vpos, debug_last_unchanged_at_beg_vpos)
17171 (debug_dvpos, debug_dy, debug_delta, debug_delta_bytes, debug_end_vpos):
17172 Now static.
17173 (debug_method_add): Use va_list and vsprintf rather than relying
17174 on undefined behavior with wrong number of arguments.
17175 (dump_glyph, dump_glyph_row, Fdump_glyph_matrix):
17176 Don't assume ptrdiff_t and EMACS_INT are the same width as int.
17177 In this code, it's OK to assume C99 behavior for ptrdiff_t formats
17178 since we're not interested in debugging glyphs with old libraries.
17179 * xfaces.c (cache_face): Move debugging code earlier; this pacifies
17180 GCC 4.6.0's static checking.
17181
17182 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
17183
17184 Integer overflow and signedness fixes (Bug#8873).
17185 A few related buffer overrun fixes, too.
17186
17187 * font.c (font_score): Use EMACS_INT, not int, to store XINT value.
17188
17189 * dispextern.h (struct face.stipple):
17190 * image.c (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
17191 (x_bitmap_mask, x_allocate_bitmap_record)
17192 (x_create_bitmap_from_data, x_create_bitmap_from_file)
17193 (x_destroy_bitmap, x_destroy_all_bitmaps, x_create_bitmap_mask)
17194 (x_create_bitmap_from_xpm_data):
17195 * nsterm.h (struct ns_display_info.bitmaps_size, .bitmaps_last):
17196 * w32term.h (struct w32_display_info.icon_bitmap_id, .bitmaps_size)
17197 (.bitmaps_last):
17198 * xfaces.c (load_pixmap):
17199 * xterm.c (x_bitmap_icon, x_wm_set_icon_pixmap):
17200 * xterm.h (struct x_display_info.icon_bitmap_id, .bitmaps_size)
17201 (.bitmaps_last, struct x_output.icon_bitmap):
17202 Use ptrdiff_t, not int, for bitmap indexes.
17203 (x_allocate_bitmap_record): Check for size overflow.
17204 * dispextern.h, lisp.h: Adjust to API changes elsewhere.
17205
17206 Use ptrdiff_t, not int, for overlay counts.
17207 * buffer.h (overlays_at, sort_overlays, GET_OVERLAYS_AT):
17208 * editfns.c (overlays_around, get_pos_property):
17209 * textprop.c (get_char_property_and_overlay):
17210 * xdisp.c (next_overlay_change, note_mouse_highlight):
17211 * xfaces.c (face_at_buffer_position):
17212 * buffer.c (OVERLAY_COUNT_MAX): New macro.
17213 (overlays_at, overlays_in, sort_overlays, Foverlays_at)
17214 (Fnext_overlay_change, Fprevious_overlay_change)
17215 (mouse_face_overlay_overlaps, Foverlays_in):
17216 Use ptrdiff_t, not int, for sizes.
17217 (overlays_at, overlays_in): Check for size-calculation overflow.
17218
17219 * xterm.c (xim_initialize, same_x_server): Strlen may not fit in int.
17220
17221 * xsmfns.c (smc_save_yourself_CB, x_session_initialize): Avoid strlen.
17222 (x_session_initialize): Do not assume string length fits in int.
17223
17224 * xsettings.c (apply_xft_settings): Fix potential buffer overrun.
17225 This is unlikely, but can occur if DPI is outlandish.
17226
17227 * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
17228 * xselect.c (Fx_get_atom_name): Avoid need for strlen.
17229
17230 * xrdb.c: Don't assume strlen fits in int; avoid some strlens.
17231 * xrdb.c (magic_file_p, search_magic_path):
17232 Omit last arg SUFFIX; it was always 0. All callers changed.
17233 (magic_file_p): Use ptrdiff_t, not int. Check for size overflow.
17234
17235 * xfont.c (xfont_match): Avoid need for strlen.
17236
17237 * xfns.c: Don't assume strlen fits in int.
17238 (xic_create_fontsetname, x_window): Use ptrdiff_t, not int.
17239
17240 * xdisp.c (message_log_check_duplicate): Return intmax_t,
17241 not unsigned long, as we prefer signed integers. All callers changed.
17242 Detect integer overflow in repeat count.
17243 (message_dolog): Don't assume print length fits in 39 bytes.
17244 (display_mode_element): Don't assume strlen fits in int.
17245
17246 * termcap.c: Don't assume sizes fit in int and never overflow.
17247 (struct termcap_buffer, tgetent): Use ptrdiff_t, not int, for sizes.
17248 (gobble_line): Check for size-calculation overflow.
17249
17250 * minibuf.c (Fread_buffer):
17251 * lread.c (intern, intern_c_string):
17252 * image.c (xpm_scan) [HAVE_NS && !HAVE_XPM]:
17253 Don't assume string length fits in int.
17254
17255 * keyboard.c (parse_tool_bar_item):
17256 * gtkutil.c (style_changed_cb): Avoid need for strlen.
17257
17258 * font.c: Don't assume string length fits in int.
17259 (font_parse_xlfd, font_parse_fcname, font_unparse_fcname):
17260 Use ptrdiff_t, not int.
17261 (font_intern_prop): Don't assume string length fits in int.
17262 Don't assume integer property fits in fixnum.
17263 * font.h (font_intern_prop): 2nd arg is now ptrdiff_t, not int.
17264
17265 * filelock.c: Fix some buffer overrun and integer overflow issues.
17266 (get_boot_time): Don't assume gzip command string fits in 100 bytes.
17267 Reformulate so as not to need the command string.
17268 Invoke gzip -cd rather than gunzip, as it's more portable.
17269 (lock_info_type, lock_file_1, lock_file):
17270 Don't assume pid_t and time_t fit in unsigned long.
17271 (LOCK_PID_MAX): Remove; we now use more-reliable bounds.
17272 (current_lock_owner): Prefer signed type for sizes.
17273 Use memcpy, not strncpy, where memcpy is what is really wanted.
17274 Don't assume (via atoi) that time_t and pid_t fit in int.
17275 Check for time_t and/or pid_t out of range, e.g., via a network share.
17276 Don't alloca where an auto var works fine.
17277
17278 * fileio.c: Fix some integer overflow issues.
17279 (file_name_as_directory, Fexpand_file_name, Fsubstitute_in_file_name):
17280 Don't assume string length fits in int.
17281 (directory_file_name): Don't assume string length fits in long.
17282 (make_temp_name): Don't assume pid fits in int, or that its print
17283 length is less than 20.
17284
17285 * data.c (Fsubr_name): Rewrite to avoid a strlen call.
17286
17287 * coding.c (make_subsidiaries): Don't assume string length fits in int.
17288
17289 * callproc.c (child_setup): Rewrite to avoid two strlen calls.
17290
17291 * process.c (Fformat_network_address): Use EMACS_INT, not EMACS_UINT.
17292 We prefer signed integers, even for size calculations.
17293
17294 * emacs.c: Don't assume string length fits in 'int'.
17295 (DEFINE_DUMMY_FUNCTION, sort_args): Use ptrdiff_t, not int.
17296 (main): Don't invoke strlen when not needed.
17297
17298 * dbusbind.c (XD_ERROR): Don't arbitrarily truncate string.
17299 (XD_DEBUG_MESSAGE): Don't waste a byte.
17300
17301 * callproc.c (getenv_internal_1, getenv_internal)
17302 (Fgetenv_internal):
17303 * buffer.c (init_buffer): Don't assume string length fits in 'int'.
17304
17305 * lread.c (invalid_syntax): Omit length argument.
17306 All uses changed. This doesn't fix a bug, but it simplifies the
17307 code away from its former Hollerith-constant appearance, and it's
17308 one less 'int' to worry about when looking at integer-overflow issues.
17309 (string_to_number): Simplify 2011-04-26 change by invoking xsignal1.
17310
17311 * lisp.h (DEFUN): Remove bogus use of sizeof (struct Lisp_Subr).
17312 This didn't break anything, but it didn't help either.
17313 It's confusing to put a bogus integer in a place where the actual
17314 value does not matter.
17315 (LIST_END_P): Remove unused macro and its bogus comment.
17316 (make_fixnum_or_float): Remove unnecessary cast to EMACS_INT.
17317
17318 * lisp.h (union Lisp_Object.i): EMACS_INT, not EMACS_UINT.
17319 This is for consistency with the ordinary, non-USE_LISP_UNION_TYPE,
17320 implementation.
17321 (struct Lisp_Bool_Vector.size): EMACS_INT, not EMACS_UINT.
17322 We prefer signed types, and the value cannot exceed the EMACS_INT
17323 range anyway (because otherwise the length would not be representable).
17324 (XSET) [USE_LISP_UNION_TYPE]: Use uintptr_t and intptr_t,
17325 not EMACS_UINT and EMACS_INT, when converting pointer to integer.
17326 This avoids a GCC warning when WIDE_EMACS_INT.
17327
17328 * indent.c (sane_tab_width): New function.
17329 (current_column, scan_for_column, Findent_to, position_indentation)
17330 (compute_motion): Use it. This is just for clarity.
17331 (Fcompute_motion): Don't assume hscroll and tab offset fit in int.
17332
17333 * image.c (xbm_image_p): Don't assume stated width, height fit in int.
17334
17335 * lisp.h (lint_assume): New macro.
17336 * composite.c (composition_gstring_put_cache):
17337 * ftfont.c (ftfont_shape_by_flt): Use it to pacify GCC 4.6.0.
17338
17339 * editfns.c, insdel.c:
17340 Omit unnecessary forward decls, to simplify future changes.
17341
17342 * ftfont.c (ftfont_shape_by_flt): Use signed integers for lengths.
17343
17344 * font.c (Ffont_shape_gstring): Don't assume glyph len fits in 'int'.
17345
17346 * fns.c (Ffillarray): Don't assume bool vector size fits in 'int'.
17347 Use much-faster test for byte-length change.
17348 Don't assume string byte-length fits in 'int'.
17349 Check that character arg fits in 'int'.
17350 (mapcar1): Declare byte as byte, for clarity.
17351
17352 * alloc.c (Fmake_bool_vector): Avoid unnecessary multiplication.
17353
17354 * fns.c (concat): Catch string overflow earlier.
17355 Do not rely on integer wraparound.
17356
17357 * dispextern.h (struct it.overlay_strings_charpos)
17358 (struct it.selective): Now EMACS_INT, not int.
17359 * xdisp.c (forward_to_next_line_start)
17360 (back_to_previous_visible_line_start)
17361 (reseat_at_next_visible_line_start, next_element_from_buffer):
17362 Don't arbitrarily truncate the value of 'selective' to int.
17363
17364 * xdisp.c (init_iterator): Use XINT, not XFASTINT; it might be < 0.
17365
17366 * composite.c: Don't truncate sizes to 'int'.
17367 (composition_gstring_p, composition_reseat_it)
17368 (composition_adjust_point): Use EMACS_INT, not int.
17369 (get_composition_id, composition_gstring_put_cache): Use EMACS_INT,
17370 not EMACS_UINT, for indexes.
17371
17372 * category.h (CATEGORY_SET_P): Remove unnecessary cast to EMACS_INT.
17373
17374 * buffer.c: Include <verify.h>.
17375 (struct sortvec.priority, struct sortstr.priority):
17376 Now EMACS_INT, not int.
17377 (compare_overlays, cmp_for_strings): Avoid subtraction overflow.
17378 (struct sortstr.size, record_overlay_string)
17379 (struct sortstrlist.size, struct sortlist.used):
17380 Don't truncate size to int.
17381 (record_overlay_string): Check for size-calculation overflow.
17382 (init_buffer_once): Check at compile-time, not run-time.
17383
17384 2011-06-22 Jim Meyering <meyering@redhat.com>
17385
17386 Don't leak an XBM-image-sized buffer
17387 * image.c (xbm_load): Free the image buffer after using it.
17388
17389 2011-06-21 Paul Eggert <eggert@cs.ucla.edu>
17390
17391 Port to Sun C.
17392 * composite.c (find_automatic_composition): Omit needless 'return 0;'
17393 that Sun C diagnosed.
17394 * fns.c (secure_hash): Fix pointer signedness issue.
17395 * intervals.c (static_offset_intervals): New function.
17396 (offset_intervals): Use it.
17397
17398 2011-06-21 Leo Liu <sdl.web@gmail.com>
17399
17400 * deps.mk (fns.o):
17401 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha256.h and
17402 sha512.h.
17403
17404 * fns.c (secure_hash): Rename from crypto_hash_function and change
17405 the first arg to accept symbols.
17406 (Fsecure_hash): New primitive.
17407 (syms_of_fns): New symbols.
17408
17409 2011-06-20 Deniz Dogan <deniz@dogan.se>
17410
17411 * process.c (Fset_process_buffer): Clarify return value in
17412 docstring.
17413
17414 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
17415
17416 * dispnew.c (add_window_display_history): Use BVAR.
17417
17418 * xdisp.c (debug_method_add): Use BVAR.
17419 (check_window_end, dump_glyph_matrix, dump_glyph)
17420 (dump_glyph_row, dump_glyph_string): Convert arglist to ANSI C.
17421
17422 * xfaces.c (check_lface_attrs, check_lface, dump_realized_face):
17423 Likewise.
17424
17425 * xfns.c (Fx_create_frame, x_create_tip_frame): Delay image cache
17426 check till after the cache is created in init_frame_faces.
17427
17428 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
17429
17430 * fns.c (Fsafe_length): Yet another int/Lisp_Object mixup.
17431
17432 2011-06-16 Paul Eggert <eggert@cs.ucla.edu>
17433
17434 * lisp.h: Include <limits.h>, for INT_MAX, LONG_MAX, LLONG_MAX.
17435 Without this, prin1 mishandles Lisp_Misc_Save_Value printing on
17436 hosts with pre-C99 libraries, because pD is wrongly defined to "t".
17437
17438 Improve buffer-overflow checking (Bug#8873).
17439 * fileio.c (Finsert_file_contents):
17440 * insdel.c (insert_from_buffer_1, replace_range, replace_range_2):
17441 Remove the old (too-loose) buffer overflow checks.
17442 They weren't needed, since make_gap checks for buffer overflow.
17443 * insdel.c (make_gap_larger): Catch buffer overflows that were missed.
17444 The old code merely checked for Emacs fixnum overflow, and relied
17445 on undefined (wraparound) behavior. The new code avoids undefined
17446 behavior, and also checks for ptrdiff_t and/or size_t overflow.
17447
17448 * editfns.c (Finsert_char): Don't dump core with very negative counts.
17449 Tune. Don't use wider integers than needed. Don't use alloca.
17450 Use a bigger 'string' buffer. Rewrite to avoid 'n > 0' test.
17451
17452 * insdel.c (replace_range): Fix buf overflow when insbytes < outgoing.
17453
17454 * insdel.c, lisp.h (buffer_overflow): New function.
17455 (insert_from_buffer_1, replace_range, replace_range_2):
17456 * insdel.c (make_gap_larger):
17457 * editfns.c (Finsert_char):
17458 * fileio.c (Finsert_file_contents): Use it, to normalize wording.
17459
17460 * buffer.h (BUF_BYTES_MAX): Cast to ptrdiff_t so that it's signed.
17461
17462 2011-06-15 Paul Eggert <eggert@cs.ucla.edu>
17463
17464 Integer overflow and signedness fixes (Bug#8873, Bug#8828).
17465
17466 * ccl.c (ASCENDING_ORDER): New macro, to work around GCC bug 43772.
17467 (GET_CCL_RANGE, IN_INT_RANGE): Use it.
17468
17469 * fileio.c: Don't assume EMACS_INT fits in off_t.
17470 (emacs_lseek): New static function.
17471 (Finsert_file_contents, Fwrite_region): Use it.
17472 Use SEEK_SET, SEEK_CUR, SEEK_END as appropriate.
17473
17474 * fns.c (Fload_average): Don't assume 100 * load average fits in int.
17475
17476 * fns.c: Don't overflow int when computing a list length.
17477 * fns.c (QUIT_COUNT_HEURISTIC): New constant.
17478 (Flength, Fsafe_length): Use EMACS_INT, not int, to avoid unwanted
17479 truncation on 64-bit hosts. Check for QUIT every
17480 QUIT_COUNT_HEURISTIC entries rather than every other entry; that's
17481 faster and is responsive enough.
17482 (Flength): Report an error instead of overflowing an integer.
17483 (Fsafe_length): Return a float if the value is not representable
17484 as a fixnum. This shouldn't happen except in contrived situations.
17485 (Fnthcdr, Fsort): Don't assume list length fits in int.
17486 (Fcopy_sequence): Don't assume vector length fits in int.
17487
17488 * alloc.c: Check that resized vectors' lengths fit in fixnums.
17489 (header_size, word_size): New constants.
17490 (allocate_vectorlike): Don't check size overflow here.
17491 (allocate_vector): Check it here instead, since this is the only
17492 caller of allocate_vectorlike that could cause overflow.
17493 Check that the new vector's length is representable as a fixnum.
17494
17495 * fns.c (next_almost_prime): Don't return a multiple of 3 or 5.
17496 The previous code was bogus. For example, next_almost_prime (32)
17497 returned 39, which is undesirable as it is a multiple of 3; and
17498 next_almost_prime (24) returned 25, which is a multiple of 5 so
17499 why was the code bothering to check for multiples of 7?
17500
17501 * bytecode.c (exec_byte_code): Use ptrdiff_t, not int, for vector length.
17502
17503 * eval.c, doprnt.c (SIZE_MAX): Remove; inttypes.h defines this now.
17504
17505 Variadic C functions now count arguments with ptrdiff_t.
17506 This partly undoes my 2011-03-30 change, which replaced int with size_t.
17507 Back then I didn't know that the Emacs coding style prefers signed int.
17508 Also, in the meantime I found a few more instances where arguments
17509 were being counted with int, which may truncate counts on 64-bit
17510 machines, or EMACS_INT, which may be unnecessarily wide.
17511 * lisp.h (struct Lisp_Subr.function.aMANY)
17512 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call):
17513 Arg counts are now ptrdiff_t, not size_t.
17514 All variadic functions and their callers changed accordingly.
17515 (struct gcpro.nvars): Now size_t, not size_t. All uses changed.
17516 * bytecode.c (exec_byte_code): Check maxdepth for overflow,
17517 to avoid potential buffer overrun. Don't assume arg counts fit in 'int'.
17518 * callint.c (Fcall_interactively): Check arg count for overflow,
17519 to avoid potential buffer overrun. Use signed char, not 'int',
17520 for 'varies' array, so that we needn't bother to check its size
17521 calculation for overflow.
17522 * editfns.c (Fformat): Use ptrdiff_t, not EMACS_INT, to count args.
17523 * eval.c (apply_lambda):
17524 * fns.c (Fmapconcat): Use XFASTINT, not XINT, to get args length.
17525 (struct textprop_rec.argnum): Now ptrdiff_t, not int. All uses changed.
17526 (mapconcat): Use ptrdiff_t, not int and EMACS_INT, to count args.
17527
17528 * callint.c (Fcall_interactively): Don't use index var as event count.
17529
17530 * vm-limit.c (check_memory_limits): Fix incorrect extern function decls.
17531 * mem-limits.h (SIZE): Remove; no longer used.
17532
17533 * xterm.c (x_alloc_nearest_color_1): Prefer int to long when int works.
17534
17535 Remove unnecessary casts.
17536 * xterm.c (x_term_init):
17537 * xfns.c (x_set_border_pixel):
17538 * widget.c (create_frame_gcs): Remove casts to unsigned long etc.
17539 These aren't needed now that we assume ANSI C.
17540
17541 * sound.c (Fplay_sound_internal): Remove cast to unsigned long.
17542 It's more likely to cause problems (due to unsigned overflow)
17543 than to cure them.
17544
17545 * dired.c (Ffile_attributes): Don't use 32-bit hack on 64-bit hosts.
17546
17547 * unexelf.c (unexec): Don't assume BSS addr fits in unsigned.
17548
17549 * xterm.c (handle_one_xevent): Omit unnecessary casts to unsigned.
17550
17551 * keyboard.c (modify_event_symbol): Don't limit alist len to UINT_MAX.
17552
17553 * lisp.h (CHAR_TABLE_SET): Omit now-redundant test.
17554
17555 * lread.c (Fload): Don't compare a possibly-garbage time_t value.
17556
17557 GLYPH_CODE_FACE returns EMACS_INT, not int.
17558 * dispextern.h (merge_faces):
17559 * xfaces.c (merge_faces):
17560 * xdisp.c (get_next_display_element, next_element_from_display_vector):
17561 Don't assume EMACS_INT fits in int.
17562
17563 * character.h (CHAR_VALID_P): Remove unused parameter.
17564 * fontset.c, lisp.h, xdisp.c: All uses changed.
17565
17566 * editfns.c (Ftranslate_region_internal): Omit redundant test.
17567
17568 * fns.c (concat): Minor tuning based on overflow analysis.
17569 This doesn't fix any bugs. Use int to hold character, instead
17570 of constantly refetching from Emacs object. Use XFASTINT, not
17571 XINT, for value known to be a character. Don't bother comparing
17572 a single byte to 0400, as it's always less.
17573
17574 * floatfns.c (Fexpt):
17575 * fileio.c (make_temp_name): Omit unnecessary cast to unsigned.
17576
17577 * editfns.c (Ftranslate_region_internal): Use int, not EMACS_INT
17578 for characters.
17579
17580 * doc.c (get_doc_string): Omit (unsigned)c that mishandled negatives.
17581
17582 * data.c (Faset): If ARRAY is a string, check that NEWELT is a char.
17583 Without this fix, on a 64-bit host (aset S 0 4294967386) would
17584 incorrectly succeed when S was a string, because 4294967386 was
17585 truncated before it was used.
17586
17587 * chartab.c (Fchar_table_range): Use CHARACTERP to check range.
17588 Otherwise, an out-of-range integer could cause undefined behavior
17589 on a 64-bit host.
17590
17591 * composite.c: Use int, not EMACS_INT, for characters.
17592 (fill_gstring_body, composition_compute_stop_pos): Use int, not
17593 EMACS_INT, for values that are known to be in character range.
17594 This doesn't fix any bugs but is the usual style inside Emacs and
17595 may generate better code on 32-bit machines.
17596
17597 Make sure a 64-bit char is never passed to ENCODE_CHAR.
17598 This is for reasons similar to the recent CHAR_STRING fix.
17599 * charset.c (Fencode_char): Check that character arg is actually
17600 a character. Pass an int to ENCODE_CHAR.
17601 * charset.h (ENCODE_CHAR): Verify that the character argument is no
17602 wider than 'int', as a compile-time check to prevent future regressions
17603 in this area.
17604
17605 * character.c (char_string): Remove unnecessary casts.
17606
17607 Make sure a 64-bit char is never passed to CHAR_STRING.
17608 Otherwise, CHAR_STRING would do the wrong thing on a 64-bit platform,
17609 by silently ignoring the top 32 bits, allowing some values
17610 that were far too large to be valid characters.
17611 * character.h: Include <verify.h>.
17612 (CHAR_STRING, CHAR_STRING_ADVANCE): Verify that the character
17613 arguments are no wider than unsigned, as a compile-time check
17614 to prevent future regressions in this area.
17615 * data.c (Faset):
17616 * editfns.c (Fchar_to_string, general_insert_function, Finsert_char)
17617 (Fsubst_char_in_region):
17618 * fns.c (concat):
17619 * xdisp.c (decode_mode_spec_coding):
17620 Adjust to CHAR_STRING's new requirement.
17621 * editfns.c (Finsert_char, Fsubst_char_in_region):
17622 * fns.c (concat): Check that character args are actually
17623 characters. Without this test, these functions did the wrong
17624 thing with wildly out-of-range values on 64-bit hosts.
17625
17626 Remove incorrect casts to 'unsigned' that lose info on 64-bit hosts.
17627 These casts should not be needed on 32-bit hosts, either.
17628 * keyboard.c (read_char):
17629 * lread.c (Fload): Remove casts to unsigned.
17630
17631 * lisp.h (UNSIGNED_CMP): New macro.
17632 This fixes comparison bugs on 64-bit hosts.
17633 (ASCII_CHAR_P): Use it.
17634 * casefiddle.c (casify_object):
17635 * character.h (ASCII_BYTE_P, CHAR_VALID_P)
17636 (SINGLE_BYTE_CHAR_P, CHAR_STRING):
17637 * composite.h (COMPOSITION_ENCODE_RULE_VALID):
17638 * dispextern.h (FACE_FROM_ID):
17639 * keyboard.c (read_char): Use UNSIGNED_CMP.
17640
17641 * xmenu.c (dialog_selection_callback) [!USE_GTK]: Cast to intptr_t,
17642 not to EMACS_INT, to avoid GCC warning.
17643
17644 * xfns.c (x_set_scroll_bar_default_width): Remove unused 'int' locals.
17645
17646 * buffer.h (PTR_BYTE_POS, BUF_PTR_BYTE_POS): Remove harmful cast.
17647 The cast incorrectly truncated 64-bit byte offsets to 32 bits, and
17648 isn't needed on 32-bit machines.
17649
17650 * buffer.c (Fgenerate_new_buffer_name):
17651 Use EMACS_INT for count, not int.
17652 (advance_to_char_boundary): Return EMACS_INT, not int.
17653
17654 * data.c (Qcompiled_function): Now static.
17655
17656 * window.c (window_body_lines): Now static.
17657
17658 * image.c (gif_load): Rename local to avoid shadowing.
17659
17660 * lisp.h (SAFE_ALLOCA_LISP): Check for integer overflow.
17661 (struct Lisp_Save_Value): Use ptrdiff_t, not int, for 'integer' member.
17662 * alloc.c (make_save_value): Integer argument is now of type
17663 ptrdiff_t, not int.
17664 (mark_object): Use ptrdiff_t, not int.
17665 * lisp.h (pD): New macro.
17666 * print.c (print_object): Use it.
17667
17668 * alloc.c: Use EMACS_INT, not int, to count objects.
17669 (total_conses, total_markers, total_symbols, total_vector_size)
17670 (total_free_conses, total_free_markers, total_free_symbols)
17671 (total_free_floats, total_floats, total_free_intervals)
17672 (total_intervals, total_strings, total_free_strings):
17673 Now EMACS_INT, not int. All uses changed.
17674 (Fgarbage_collect): Compute overall total using a double, so that
17675 integer overflow is less likely to be a problem. Check for overflow
17676 when converting back to an integer.
17677 (n_interval_blocks, n_string_blocks, n_float_blocks, n_cons_blocks)
17678 (n_vectors, n_symbol_blocks, n_marker_blocks): Remove.
17679 These were 'int' variables that could overflow on 64-bit hosts;
17680 they were never used, so remove them instead of repairing them.
17681 (nzombies, ngcs, max_live, max_zombies): Now EMACS_INT, not 'int'.
17682 (inhibit_garbage_collection): Set gc_cons_threshold to max value.
17683 Previously, this ceilinged at INT_MAX, but that doesn't work on
17684 64-bit machines.
17685 (allocate_pseudovector): Don't use EMACS_INT when int would do.
17686
17687 * alloc.c (Fmake_bool_vector): Don't assume vector size fits in int.
17688 (allocate_vectorlike): Check for ptrdiff_t overflow.
17689 (mark_vectorlike, mark_char_table, mark_object): Avoid EMACS_UINT
17690 when a (possibly-narrower) signed value would do just as well.
17691 We prefer using signed arithmetic, to avoid comparison confusion.
17692
17693 * alloc.c: Catch some string size overflows that we were missing.
17694 (XMALLOC_OVERRUN_CHECK_SIZE) [!XMALLOC_OVERRUN_CHECK]: Define to 0,
17695 for convenience in STRING_BYTES_MAX.
17696 (STRING_BYTES_MAX): New macro, superseding the old one in lisp.h.
17697 The definition here is exact; the one in lisp.h was approximate.
17698 (allocate_string_data): Check for string overflow. This catches
17699 some instances we weren't catching before. Also, it catches
17700 size_t overflow on (unusual) hosts where SIZE_MAX <= min
17701 (PTRDIFF_MAX, MOST_POSITIVE_FIXNUM), e.g., when size_t is 32 bits
17702 and ptrdiff_t and EMACS_INT are both 64 bits.
17703
17704 * character.c, coding.c, doprnt.c, editfns.c, eval.c:
17705 All uses of STRING_BYTES_MAX replaced by STRING_BYTES_BOUND.
17706 * lisp.h (STRING_BYTES_BOUND): Rename from STRING_BYTES_MAX.
17707
17708 * character.c (string_escape_byte8): Fix nbytes/nchars typo.
17709
17710 * alloc.c (Fmake_string): Check for out-of-range init.
17711
17712 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
17713
17714 * eval.c (Fdefvaralias): Also mark the target as variable-special-p.
17715
17716 2011-06-14 Jan Djärv <jan.h.d@swipnet.se>
17717
17718 * xfns.c (x_set_scroll_bar_default_width): Remove argument to
17719 xg_get_default_scrollbar_width.
17720
17721 * gtkutil.c: Include emacsgtkfixed.h if HAVE_GTK3.
17722 (int_gtk_range_get_value): Move to the scroll bar part of the file.
17723 (style_changed_cb): Call update_theme_scrollbar_width and call
17724 x_set_scroll_bar_default_width and xg_frame_set_char_size for
17725 all frames (Bug#8505).
17726 (xg_create_frame_widgets): Call emacs_fixed_new if HAVE_GTK3 (Bug#8505).
17727 Call gtk_window_set_resizable if HAVE_GTK3.
17728 (x_wm_set_size_hint): Call emacs_fixed_set_min_size with min width
17729 and height if HAVE_GTK3 (Bug#8505).
17730 (scroll_bar_width_for_theme): New variable.
17731 (update_theme_scrollbar_width): New function.
17732 (xg_get_default_scrollbar_width): Move code to
17733 update_theme_scrollbar_width, just return scroll_bar_width_for_theme.
17734 (xg_initialize): Call update_theme_scrollbar_width.
17735
17736 * gtkutil.h (xg_get_default_scrollbar_width): Remove argument.
17737
17738 * emacsgtkfixed.c, emacsgtkfixed.h: New files.
17739
17740 2011-06-12 Martin Rudalics <rudalics@gmx.at>
17741
17742 * frame.c (make_frame): Call other_buffer_safely instead of
17743 other_buffer.
17744
17745 * window.c (temp_output_buffer_show): Call display_buffer with
17746 second argument Vtemp_buffer_show_specifiers and reset latter
17747 immediately after the call.
17748 (Vtemp_buffer_show_specifiers): New variable.
17749 (auto_window_vscroll_p, next_screen_context_lines)
17750 (Vscroll_preserve_screen_position): Remove leading asterisks from
17751 doc-strings.
17752
17753 2011-06-12 Paul Eggert <eggert@cs.ucla.edu>
17754
17755 Fix minor problems found by GCC 4.6.0 static checking.
17756 * buffer.c (Qclone_number): Remove for now, as it's unused.
17757 (record_buffer, Funrecord_buffer): Rename local to avoid shadowing.
17758 (record_buffer): Remove unused local.
17759 * frame.c (other_visible_frames, frame_buffer_list): Now static.
17760 (set_frame_buffer_list): Remove; unused.
17761 * frame.h (other_visible_frames): Remove decl.
17762 * keyboard.h (menu_items_inuse): Declare only if USE_GTK || USE_MOTIF.
17763 * lisp.h (frame_buffer_list, set_frame_buffer_list): Remove decls.
17764 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor): Declare only
17765 if HAVE_GPM.
17766 * menu.c (menu_items_inuse): Now static unless USE_GTK || USE_MOTIF.
17767 * process.c (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
17768 Define only if HAVE_GPM.
17769 * widget.c (EmacsFrameResize, emacsFrameClassRec): Now static.
17770 (update_hints_inhibit): Remove; never set. All uses removed.
17771 * widgetprv.h (emacsFrameClassRec): Remove decl.
17772 * window.c (delete_deletable_window): Now returns void, since it
17773 wasn't returning anything.
17774 (compare_window_configurations): Remove unused locals.
17775 * xfns.c (x_set_scroll_bar_default_width): Remove unused locals.
17776 * xmenu.c (x_menu_set_in_use): Define only if USE_GTK || USE_MOTIF.
17777 (dialog_selection_callback) [!USE_GTK]: Prefer intptr_t for integers
17778 the same widths as pointers. This follows up on the 2011-05-06 patch.
17779 * xterm.c (x_alloc_lighter_color_for_widget): Define only if USE_LUCID.
17780 * xterm.h: Likewise.
17781 (x_menu_set_in_use): Declare only if USE_GTK || USE_MOTIF.
17782
17783 2011-06-12 Juanma Barranquero <lekktu@gmail.com>
17784
17785 * makefile.w32-in: Update dependencies.
17786 (LISP_H): Add lib/intprops.h.
17787
17788 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
17789
17790 * image.c (gif_load): Add animation frame delay to the metadata.
17791 (syms_of_image): Use DEFSYM. New symbol `delay'.
17792
17793 2011-06-11 Martin Rudalics <rudalics@gmx.at>
17794
17795 * window.c (delete_deletable_window): Re-add.
17796 (Fset_window_configuration): Rewrite to handle dead buffers and
17797 consequently deletable windows.
17798 (window_tree, Fwindow_tree): Remove. Supply functionality in
17799 window.el.
17800 (compare_window_configurations): Simplify code.
17801
17802 2011-06-11 Andreas Schwab <schwab@linux-m68k.org>
17803
17804 * image.c (imagemagick_load_image): Fix type mismatch.
17805 (Fimagemagick_types): Likewise.
17806
17807 * window.h (replace_buffer_in_windows): Declare.
17808
17809 2011-06-11 Martin Rudalics <rudalics@gmx.at>
17810
17811 * buffer.c: New Lisp objects Qbuffer_list_update_hook and
17812 Qclone_number. Remove external declaration of Qdelete_window.
17813 (Fbuffer_list): Rewrite doc-string. Minor restructuring of
17814 code.
17815 (Fget_buffer_create, Fmake_indirect_buffer, Frename_buffer):
17816 Run Qbuffer_list_update_hook if allowed.
17817 (Fother_buffer): Rewrite doc-string. Major rewrite for new
17818 buffer list implementation.
17819 (other_buffer_safely): New function.
17820 (Fkill_buffer): Replace call to replace_buffer_in_all_windows by
17821 calls to replace_buffer_in_windows and
17822 replace_buffer_in_windows_safely. Run Qbuffer_list_update_hook
17823 if allowed.
17824 (record_buffer): Inhibit quitting and rewrite using quittable
17825 functions. Run Qbuffer_list_update_hook if allowed.
17826 (Frecord_buffer, Funrecord_buffer): New functions.
17827 (switch_to_buffer_1, Fswitch_to_buffer): Remove.
17828 Move switch-to-buffer to window.el.
17829 (bury-buffer): Move to window.el.
17830 (Vbuffer_list_update_hook): New variable.
17831
17832 * lisp.h (other_buffer_safely): Add prototype in buffer.c
17833 section.
17834
17835 * window.h (resize_frame_windows): Move up in code.
17836 (Fwindow_frame): Remove EXFUN.
17837 (replace_buffer_in_all_windows): Remove prototype.
17838 (replace_buffer_in_windows_safely): Add prototype.
17839
17840 * window.c: Declare Qdelete_window static again. Move down
17841 declaration of select_count.
17842 (Fnext_window, Fprevious_window): Rewrite doc-strings.
17843 (Fother_window): Move to window.el.
17844 (window_loop): Remove DELETE_BUFFER_WINDOWS and UNSHOW_BUFFER
17845 cases. Add REPLACE_BUFFER_IN_WINDOWS_SAFELY case.
17846 (Fdelete_windows_on, Freplace_buffer_in_windows): Move to
17847 window.el.
17848 (replace_buffer_in_windows): Implement by calling
17849 Qreplace_buffer_in_windows.
17850 (replace_buffer_in_all_windows): Remove with some functionality
17851 moved into replace_buffer_in_windows_safely.
17852 (replace_buffer_in_windows_safely): New function.
17853 (select_window_norecord, select_frame_norecord): Move in front
17854 of run_window_configuration_change_hook. Remove now obsolete
17855 declarations.
17856 (Fset_window_buffer): Rewrite doc-string.
17857 Call Qrecord_window_buffer.
17858 (keys_of_window): Move binding for other-window to window.el.
17859
17860 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
17861
17862 * dispextern.h (struct image): Replace data member, whose int_val
17863 and ptr_val fields were not used by anything, with a single
17864 lisp_val object.
17865
17866 * image.c (Fimage_metadata, make_image, mark_image, tiff_load)
17867 (gif_clear_image, gif_load, imagemagick_load_image)
17868 (gs_clear_image, gs_load): Callers changed.
17869
17870 2011-06-10 Paul Eggert <eggert@cs.ucla.edu>
17871
17872 * buffer.h: Include <time.h>, for time_t.
17873 Needed to build on FreeBSD 8.2. Problem reported by Herbert J. Skuhra.
17874
17875 Fix minor problems found by static checking.
17876
17877 * image.c (PixelGetMagickColor): Declare if ImageMagick headers don't.
17878
17879 Make identifiers static if they are not used in other modules.
17880 * data.c (Qcompiled_function, Qframe, Qvector):
17881 * image.c (QimageMagick, Qsvg):
17882 * minibuf.c (Qmetadata):
17883 * window.c (resize_window_check, resize_root_window): Now static.
17884 * window.h (resize_window_check, resize_root_window): Remove decls.
17885
17886 * window.c (window_deletion_count, delete_deletable_window):
17887 Remove; unused.
17888 (window_body_lines): Now static.
17889 (Fdelete_other_windows_internal): Mark vars as initialized.
17890 Make sure 'resize_failed' is initialized.
17891 (run_window_configuration_change_hook): Rename local to avoid shadowing.
17892 (resize_window_apply): Remove unused local.
17893 * window.h (delete_deletable_window): Remove decl.
17894
17895 * image.c (gif_load, svg_load_image): Rename locals to avoid shadowing.
17896 (imagemagick_load_image): Fix pointer signedness problem by changing
17897 last arg from unsigned char * to char *. All uses changed.
17898 Also, fix a local for similar reasons.
17899 Remove unused locals. Remove locals to avoid shadowing.
17900 (fn_rsvg_handle_free): Remove; unused.
17901 (svg_load, svg_load_image): Fix pointer signedness problem.
17902 (imagemagick_load_image): Don't use garbage pointer image_wand.
17903
17904 * ftfont.c (ftfont_get_metrics, ftfont_drive_otf): Remove unused locals.
17905
17906 2011-06-10 Chong Yidong <cyd@stupidchicken.com>
17907
17908 * image.c (gif_load): Fix omitted cast error introduced by
17909 2011-06-06 change.
17910
17911 2011-06-10 Martin Rudalics <rudalics@gmx.at>
17912
17913 * window.h (resize_proportionally, orig_total_lines)
17914 (orig_top_line): Remove from window structure.
17915 (set_window_height, set_window_width, change_window_heights)
17916 (Fdelete_window): Remove prototypes.
17917 (resize_frame_windows): Remove duplicate declaration.
17918
17919 2011-06-10 Eli Zaretskii <eliz@gnu.org>
17920
17921 * window.h (resize_frame_windows, resize_window_check)
17922 (delete_deletable_window, resize_root_window)
17923 (resize_frame_windows): Declare prototypes.
17924
17925 * window.c (resize_window_apply): Make definition be "static" to
17926 match the prototype.
17927
17928 2011-06-10 Martin Rudalics <rudalics@gmx.at>
17929
17930 * window.c: Remove declarations of Qwindow_size_fixed,
17931 window_min_size_1, window_min_size_2, window_min_size,
17932 size_window, window_fixed_size_p, enlarge_window, delete_window.
17933 Remove static from declaration of Qdelete_window, it's
17934 temporarily needed by Fbury_buffer.
17935 (replace_window): Don't assign orig_top_line and
17936 orig_total_lines.
17937 (Fdelete_window, delete_window): Remove. Window deletion is
17938 handled by window.el.
17939 (window_loop): Remove DELETE_OTHER_WINDOWS case.
17940 Replace Fdelete_window calls with calls to Qdelete_window.
17941 (Fdelete_other_windows): Remove. Deleting other windows is
17942 handled by window.el.
17943 (window_fixed_size_p): Remove. Fixed-sizeness of windows is
17944 handled in window.el.
17945 (window_min_size_2, window_min_size_1, window_min_size): Remove.
17946 Window minimum sizes are handled in window.el.
17947 (shrink_windows, size_window, set_window_height)
17948 (set_window_width, change_window_heights, window_height)
17949 (window_width, CURBEG, CURSIZE, enlarge_window)
17950 (adjust_window_trailing_edge, Fadjust_window_trailing_edge)
17951 (Fenlarge_window, Fshrink_window): Remove. Window resizing is
17952 handled in window.el.
17953 (make_dummy_parent): Rename to make_parent_window and give it a
17954 second argument horflag.
17955 (make_window): Don't set resize_proportionally any more.
17956 (Fsplit_window): Remove. Windows are split in window.el.
17957 (save_restore_action, save_restore_orig_size)
17958 (shrink_window_lowest_first, save_restore_orig_size): Remove.
17959 Resize mini windows in window.el.
17960 (grow_mini_window, shrink_mini_window): Implement by calling
17961 Qresize_root_window_vertically, resize_window_check and
17962 resize_window_apply.
17963 (saved_window, Fset_window_configuration, save_window_save):
17964 Do not handle orig_top_line, orig_total_lines, and
17965 resize_proportionally.
17966 (window_min_height, window_min_width): Move to window.el.
17967 (keys_of_window): Move bindings for delete-other-windows,
17968 split-window, delete-window and enlarge-window to window.el.
17969
17970 * buffer.c: Temporarily extern Qdelete_window.
17971 (Fbury_buffer): Temporarily call Qdelete_window instead of
17972 Fdelete_window (Fbury_buffer will move to window.el soon).
17973
17974 * frame.c (set_menu_bar_lines_1): Remove code handling
17975 orig_top_line and orig_total_lines.
17976
17977 * dispnew.c (adjust_frame_glyphs_initially): Don't use
17978 set_window_height but set heights directly.
17979 (change_frame_size_1): Use resize_frame_windows.
17980
17981 * xdisp.c (init_xdisp): Don't use set_window_height but set
17982 heights directly.
17983
17984 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines):
17985 Use resize_frame_windows instead of change_window_heights and run
17986 run_window_configuration_change_hook.
17987
17988 * w32fns.c (x_set_tool_bar_lines): Use resize_frame_windows
17989 instead of change_window_heights and run
17990 run_window_configuration_change_hook.
17991
17992 2011-06-09 Martin Rudalics <rudalics@gmx.at>
17993
17994 * window.c (replace_window): Rename second argument REPLACEMENT to
17995 NEW. New third argument SETFLAG. Rewrite.
17996 (delete_window, make_dummy_parent): Call replace_window with
17997 third argument 1.
17998 (window_list_1): Move down in code.
17999 (run_window_configuration_change_hook): Move set_buffer part
18000 before select_frame_norecord part in order to unwind correctly.
18001 Rename count1 to count.
18002 (recombine_windows, delete_deletable_window, resize_root_window)
18003 (Fdelete_other_windows_internal)
18004 (Frun_window_configuration_change_hook, make_parent_window)
18005 (resize_window_check, resize_window_apply, Fresize_window_apply)
18006 (resize_frame_windows, Fsplit_window_internal)
18007 (Fdelete_window_internal, Fresize_mini_window_internal):
18008 New functions.
18009 (syms_of_window): New variables Vwindow_splits and Vwindow_nest.
18010
18011 2011-06-08 Martin Rudalics <rudalics@gmx.at>
18012
18013 * window.h (window): Add some new members to window structure -
18014 normal_lines, normal_cols, new_total, new_normal, clone_number,
18015 splits, nest, prev_buffers, next_buffers.
18016 (WINDOW_TOTAL_SIZE): Move here from window.c.
18017 (MIN_SAFE_WINDOW_WIDTH, MIN_SAFE_WINDOW_HEIGHT): Define here.
18018
18019 * window.c (Fwindow_height, Fwindow_width, Fwindow_full_width_p):
18020 Remove.
18021 (make_dummy_parent): Set new members of windows structure.
18022 (make_window): Move down in code. Handle new members of window
18023 structure.
18024 (Fwindow_clone_number, Fwindow_splits, Fset_window_splits)
18025 (Fwindow_nest, Fset_window_nest, Fwindow_new_total)
18026 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_prev_buffers)
18027 (Fset_window_prev_buffers, Fwindow_next_buffers)
18028 (Fset_window_next_buffers, Fset_window_clone_number):
18029 New functions.
18030 (Fwindow_hscroll, Fwindow_at, Fwindow_point, Fwindow_start)
18031 (Fwindow_end, Fwindow_line_height, Fset_window_dedicated_p):
18032 Doc-string fixes.
18033 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter):
18034 Argument WINDOW can be now internal window too.
18035 (Fwindow_use_time): Move up in code.
18036 (Fget_buffer_window): Rename argument FRAME to ALL-FRAMES.
18037 Rewrite doc-string.
18038 (Fset_window_configuration, saved_window)
18039 (Fcurrent_window_configuration, save_window_save): Handle new
18040 members of window structure.
18041 (WINDOW_TOTAL_SIZE, MIN_SAFE_WINDOW_WIDTH)
18042 (MIN_SAFE_WINDOW_HEIGHT): Move to window.h.
18043 (syms_of_window): New Lisp objects Qrecord_window_buffer,
18044 Qwindow_deletable_p, Qdelete_window, Qreplace_buffer_in_windows,
18045 Qget_mru_window, Qresize_root_window,
18046 Qresize_root_window_vertically, Qsafe, Qabove, Qbelow,
18047 Qauto_buffer_name; staticpro them.
18048
18049 2011-06-07 Martin Rudalics <rudalics@gmx.at>
18050
18051 * window.c (Fwindow_total_size, Fwindow_left_column)
18052 (Fwindow_top_line, window_body_lines, Fwindow_body_size)
18053 (Fwindow_list_1): New functions.
18054 (window_box_text_cols): Replace with window_body_cols.
18055 (Fwindow_width, Fscroll_left, Fscroll_right):
18056 Use window_body_cols instead of window_box_text_cols.
18057 (delete_window, Fset_window_configuration):
18058 Call delete_all_subwindows with window as argument.
18059 (delete_all_subwindows): Take a window as argument and not a
18060 structure. Rewrite.
18061 (window_loop): Remove handling of GET_LRU_WINDOW and
18062 GET_LARGEST_WINDOW.
18063 (Fget_lru_window, Fget_largest_window): Move to window.el.
18064
18065 * window.h: Extern window_body_cols instead of
18066 window_box_text_cols. delete_all_subwindows now takes a
18067 Lisp_Object as argument.
18068
18069 * indent.c (compute_motion, Fcompute_motion):
18070 Use window_body_cols instead of window_box_text_cols.
18071
18072 * frame.c (delete_frame): Call delete_all_subwindows with root
18073 window as argument.
18074
18075 2011-06-07 Daniel Colascione <dan.colascione@gmail.com>
18076
18077 * fns.c (Fputhash): Document return value.
18078
18079 2011-06-06 Chong Yidong <cyd@stupidchicken.com>
18080
18081 * image.c (gif_load): Implement gif89a spec "no disposal" method.
18082
18083 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
18084
18085 Cons<->int and similar integer overflow fixes (Bug#8794).
18086
18087 Check for overflow when converting integer to cons and back.
18088 * charset.c (Fdefine_charset_internal, Fdecode_char):
18089 Use cons_to_unsigned to catch overflow.
18090 (Fencode_char): Use INTEGER_TO_CONS.
18091 * composite.h (LGLYPH_CODE): Use cons_to_unsigned.
18092 (LGLYPH_SET_CODE): Use INTEGER_TO_CONS.
18093 * data.c (long_to_cons, cons_to_long): Remove.
18094 (cons_to_unsigned, cons_to_signed): New functions.
18095 These signal an error for invalid or out-of-range values.
18096 * dired.c (Ffile_attributes): Use INTEGER_TO_CONS.
18097 * fileio.c (Fset_visited_file_modtime): Use CONS_TO_INTEGER.
18098 * font.c (Ffont_variation_glyphs):
18099 * fontset.c (Finternal_char_font): Use INTEGER_TO_CONS.
18100 * lisp.h: Include <intprops.h>.
18101 (INTEGER_TO_CONS, CONS_TO_INTEGER): New macros.
18102 (cons_to_signed, cons_to_unsigned): New decls.
18103 (long_to_cons, cons_to_long): Remove decls.
18104 * undo.c (record_first_change): Use INTEGER_TO_CONS.
18105 (Fprimitive_undo): Use CONS_TO_INTEGER.
18106 * xfns.c (Fx_window_property): Likewise.
18107 * xselect.c: Include <limits.h>.
18108 (x_own_selection, selection_data_to_lisp_data):
18109 Use INTEGER_TO_CONS.
18110 (x_handle_selection_request, x_handle_selection_clear)
18111 (x_get_foreign_selection, Fx_disown_selection_internal)
18112 (Fx_get_atom_name, x_send_client_event): Use CONS_TO_INTEGER.
18113 (lisp_data_to_selection_data): Use cons_to_unsigned.
18114 (x_fill_property_data): Use cons_to_signed.
18115 Report values out of range.
18116
18117 Check for buffer and string overflow more precisely.
18118 * buffer.h (BUF_BYTES_MAX): New macro.
18119 * lisp.h (STRING_BYTES_MAX): New macro.
18120 * alloc.c (Fmake_string):
18121 * character.c (string_escape_byte8):
18122 * coding.c (coding_alloc_by_realloc):
18123 * doprnt.c (doprnt):
18124 * editfns.c (Fformat):
18125 * eval.c (verror):
18126 Use STRING_BYTES_MAX, not MOST_POSITIVE_FIXNUM,
18127 since they may not be the same number.
18128 * editfns.c (Finsert_char):
18129 * fileio.c (Finsert_file_contents):
18130 Likewise for BUF_BYTES_MAX.
18131
18132 * image.c: Use ptrdiff_t, not int, for sizes.
18133 (slurp_file): Switch from int to ptrdiff_t.
18134 All uses changed.
18135 (slurp_file): Check that file size fits in both size_t (for
18136 malloc) and ptrdiff_t (for sanity and safety).
18137
18138 * fileio.c (Fverify_visited_file_modtime): Avoid time overflow
18139 if b->modtime has its maximal value.
18140
18141 * dired.c (Ffile_attributes): Don't assume EMACS_INT has >32 bits.
18142
18143 Don't assume time_t can fit into int.
18144 * buffer.h (struct buffer.modtime): Now time_t, not int.
18145 * fileio.c (Fvisited_file_modtime): No need for time_t cast now.
18146 * undo.c (Fprimitive_undo): Use time_t, not int, for time_t value.
18147
18148 Minor fixes for signed vs unsigned integers.
18149 * character.h (MAYBE_UNIFY_CHAR):
18150 * charset.c (maybe_unify_char):
18151 * keyboard.c (read_char, reorder_modifiers):
18152 XINT -> XFASTINT, since the integer must be nonnegative.
18153 * ftfont.c (ftfont_spec_pattern):
18154 * keymap.c (access_keymap, silly_event_symbol_error):
18155 XUINT -> XFASTINT, since the integer must be nonnegative.
18156 (Fsingle_key_description, preferred_sequence_p): XUINT -> XINT,
18157 since it makes no difference and we prefer signed.
18158 * keyboard.c (record_char): Use XUINT when all the neighbors do.
18159 (access_keymap): NATNUMP -> INTEGERP, since the integer must be
18160 nonnegative.
18161
18162 2011-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
18163
18164 * window.h (Fwindow_frame): Declare.
18165
18166 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
18167
18168 * alloc.c: Simplify handling of large-request failures (Bug#8800).
18169 (SPARE_MEMORY): Always define.
18170 (LARGE_REQUEST): Remove.
18171 (memory_full): Use SPARE_MEMORY rather than LARGE_REQUEST.
18172
18173 2011-06-06 Martin Rudalics <rudalics@gmx.at>
18174
18175 * lisp.h: Move EXFUNS for Fframe_root_window,
18176 Fframe_first_window and Fset_frame_selected_window to window.h.
18177
18178 * window.h: Move EXFUNS for Fframe_root_window,
18179 Fframe_first_window and Fset_frame_selected_window here from
18180 lisp.h.
18181
18182 * frame.c (Fwindow_frame, Fframe_first_window)
18183 (Fframe_root_window, Fframe_selected_window)
18184 (Fset_frame_selected_window): Move to window.c.
18185 (Factive_minibuffer_window): Move to minibuf.c.
18186 (Fother_visible_frames_p): New function.
18187
18188 * minibuf.c (Factive_minibuffer_window): Move here from frame.c.
18189
18190 * window.c (decode_window, decode_any_window): Move up in code.
18191 (Fwindowp, Fwindow_live_p): Rewrite doc-strings.
18192 (inhibit_frame_unsplittable): Remove unused variable.
18193 (Fwindow_buffer): Move up and rewrite doc-string.
18194 (Fwindow_parent, Fwindow_vchild, Fwindow_hchild, Fwindow_next)
18195 (Fwindow_prev): New functions.
18196 (Fwindow_frame): Move here from frame.c. Accept any window as
18197 argument.
18198 (Fframe_root_window, Fframe_first_window)
18199 (Fframe_selected_window): Move here from frame.c. Accept frame
18200 or arbitrary window as argument. Update doc-strings.
18201 (Fminibuffer_window): Move up in code.
18202 (Fwindow_minibuffer_p): Move up in code and simplify.
18203 (Fset_frame_selected_window): Move here from frame.c.
18204 Marginal rewrite.
18205 (Fselected_window, select_window, Fselect_window): Move up in
18206 code. Minor doc-string fixes.
18207
18208 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
18209
18210 * alloc.c (memory_full) [SYSTEM_MALLOC]: Port to MacOS (Bug#8800).
18211 Do not assume that spare memory exists; that assumption is valid
18212 only if SYSTEM_MALLOC.
18213 (LARGE_REQUEST): New macro, so that the issue of large requests
18214 is separated from the issue of spare memory.
18215
18216 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
18217
18218 * editfns.c (Fformat): Correctly handle zero flag with hexadecimal
18219 format. (Bug#8806)
18220
18221 * gtkutil.c (xg_get_default_scrollbar_width): Avoid warning.
18222
18223 * xfns.c (x_set_scroll_bar_default_width): Move declarations
18224 before statements.
18225
18226 2011-06-05 Jan Djärv <jan.h.d@swipnet.se>
18227
18228 * gtkutil.c (xg_get_default_scrollbar_width): New function.
18229
18230 * gtkutil.h: Declare xg_get_default_scrollbar_width.
18231
18232 * xfns.c (x_set_scroll_bar_default_width): If USE_GTK, get
18233 min width by calling x_set_scroll_bar_default_width (Bug#8505).
18234
18235 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
18236
18237 * xdisp.c (single_display_spec_intangible_p): Remove declaration.
18238
18239 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
18240
18241 * xselect.c (x_clipboard_manager_save): Remove redundant arg.
18242 (x_clipboard_manager_save): Add return value.
18243 (x_clipboard_manager_error_1, x_clipboard_manager_error_2):
18244 New error handlers.
18245 (x_clipboard_manager_save_frame, x_clipboard_manager_save_all):
18246 Obey Vx_select_enable_clipboard_manager. Catch errors in
18247 x_clipboard_manager_save (Bug#8779).
18248 (Vx_select_enable_clipboard_manager): New variable.
18249 (x_get_foreign_selection): Reduce scope of x_catch_errors (Bug#8790).
18250
18251 2011-06-04 Dan Nicolaescu <dann@ics.uci.edu>
18252
18253 * emacs.c (main): Warn when starting a GTK emacs in daemon mode.
18254
18255 2011-06-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18256
18257 * fringe.c (update_window_fringes): Don't update overlay arrow bitmap
18258 in the current matrix if keep_current_p is non-zero.
18259
18260 2011-06-04 Eli Zaretskii <eliz@gnu.org>
18261
18262 * bidi.c (bidi_level_of_next_char): Fix last change.
18263
18264 2011-06-03 Eli Zaretskii <eliz@gnu.org>
18265
18266 Support bidi reordering of text covered by display properties.
18267
18268 * bidi.c (bidi_copy_it): Use offsetof instead of emulating it.
18269 (bidi_fetch_char, bidi_fetch_char_advance): New functions.
18270 (bidi_cache_search, bidi_cache_iterator_state)
18271 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
18272 (bidi_level_of_next_char, bidi_move_to_visually_next):
18273 Support character positions inside a run of characters covered by a
18274 display string.
18275 (bidi_paragraph_init, bidi_resolve_explicit_1)
18276 (bidi_level_of_next_char): Call bidi_fetch_char and
18277 bidi_fetch_char_advance instead of FETCH_CHAR and
18278 FETCH_CHAR_ADVANCE.
18279 (bidi_init_it): Initialize new members.
18280 (LRE_CHAR, RLE_CHAR, PDF_CHAR, LRO_CHAR, RLO_CHAR): Remove macro
18281 definitions.
18282 (bidi_explicit_dir_char): Lookup character type in bidi_type_table,
18283 instead of using explicit *_CHAR codes.
18284 (bidi_resolve_explicit, bidi_resolve_weak):
18285 Use FETCH_MULTIBYTE_CHAR instead of FETCH_CHAR, as reordering of
18286 bidirectional text is supported only in multibyte buffers.
18287 (bidi_init_it): Accept additional argument FRAME_WINDOW_P and use
18288 it to initialize the frame_window_p member of struct bidi_it.
18289 (bidi_cache_iterator_state, bidi_resolve_explicit_1)
18290 (bidi_resolve_explicit, bidi_resolve_weak)
18291 (bidi_level_of_next_char, bidi_move_to_visually_next): Abort if
18292 bidi_it->nchars is non-positive.
18293 (bidi_level_of_next_char): Don't try to lookup the cache for the
18294 next/previous character if nothing is cached there yet, or if we
18295 were just reseat()'ed to a new position.
18296
18297 * xdisp.c (set_cursor_from_row): Set start and stop points
18298 according to the row's direction when priming the loop that looks
18299 for the glyph on which to display cursor.
18300 (single_display_spec_intangible_p): Function deleted.
18301 (display_prop_intangible_p): Reimplement to call
18302 handle_display_spec instead of single_display_spec_intangible_p.
18303 Accept 3 additional arguments needed by handle_display_spec.
18304 This fixes incorrect cursor motion across display property with complex
18305 values: lists, `(when COND...)' forms, etc.
18306 (single_display_spec_string_p): Support property values that are
18307 lists with the argument STRING its top-level element.
18308 (display_prop_string_p): Fix the condition for processing a
18309 property that is a list to be consistent with handle_display_spec.
18310 (handle_display_spec): New function, refactored from the
18311 last portion of handle_display_prop.
18312 (compute_display_string_pos): Accept additional argument
18313 FRAME_WINDOW_P. Call handle_display_spec to determine whether the
18314 value of a `display' property is a "replacing spec".
18315 (handle_single_display_spec): Accept 2 additional arguments BUFPOS
18316 and FRAME_WINDOW_P. If IT is NULL, don't set up the iterator from
18317 the display property, but just return a value indicating whether
18318 the display property will replace the characters it covers.
18319 (Fcurrent_bidi_paragraph_direction): Initialize the nchars and
18320 frame_window_p members of struct bidi_it.
18321 (compute_display_string_pos, compute_display_string_end):
18322 New functions.
18323 (push_it): Accept second argument POSITION, where pop_it should
18324 jump to continue iteration.
18325 (reseat_1): Initialize bidi_it.disp_pos.
18326
18327 * keyboard.c (adjust_point_for_property): Adjust the call to
18328 display_prop_intangible_p to its new signature.
18329
18330 * dispextern.h (struct bidi_it): New member frame_window_p.
18331 (bidi_init_it): Update prototypes.
18332 (display_prop_intangible_p): Update prototype.
18333 (compute_display_string_pos, compute_display_string_end):
18334 Declare prototypes.
18335 (struct bidi_it): New members nchars and disp_pos. ch_len is now
18336 EMACS_INT.
18337
18338 2011-06-02 Paul Eggert <eggert@cs.ucla.edu>
18339
18340 Malloc failure behavior now depends on size of allocation.
18341 * alloc.c (buffer_memory_full, memory_full): New arg NBYTES.
18342 * lisp.h: Change signatures accordingly.
18343 * alloc.c, buffer.c, editfns.c, menu.c, minibuf.c, xterm.c:
18344 All callers changed. (Bug#8762)
18345
18346 * gnutls.c: Use Emacs's memory allocators.
18347 Without this change, the gnutls library would invoke malloc etc.
18348 directly, which causes problems on non-SYNC_INPUT hosts, and which
18349 runs afoul of improving memory_full behavior. (Bug#8761)
18350 (fn_gnutls_global_set_mem_functions): New macro or function pointer.
18351 (emacs_gnutls_global_init): Use it to specify xmalloc, xrealloc,
18352 xfree instead of the default malloc, realloc, free.
18353 (Fgnutls_boot): No need to check for memory allocation failure,
18354 since xmalloc does that for us.
18355
18356 Remove arbitrary limit of 2**31 entries in hash tables. (Bug#8771)
18357 * category.c (hash_get_category_set):
18358 * ccl.c (ccl_driver):
18359 * charset.c (Fdefine_charset_internal):
18360 * charset.h (struct charset.hash_index):
18361 * composite.c (get_composition_id, gstring_lookup_cache)
18362 (composition_gstring_put_cache):
18363 * composite.h (struct composition.hash_index):
18364 * dispextern.h (struct image.hash):
18365 * fns.c (next_almost_prime, larger_vector, cmpfn_eql)
18366 (cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
18367 (hashfn_equal, hashfn_user_defined, make_hash_table)
18368 (maybe_resize_hash_table, hash_lookup, hash_put)
18369 (hash_remove_from_table, hash_clear, sweep_weak_table, SXHASH_COMBINE)
18370 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector)
18371 (Fsxhash, Fgethash, Fputhash, Fmaphash):
18372 * image.c (make_image, search_image_cache, lookup_image)
18373 (xpm_put_color_table_h):
18374 * lisp.h (struct Lisp_Hash_Table):
18375 * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
18376 * print.c (print): Use 'EMACS_UINT' and 'EMACS_INT'
18377 for hashes and hash indexes, instead of 'unsigned' and 'int'.
18378 * alloc.c (allocate_vectorlike):
18379 Check for overflow in vector size calculations.
18380 * ccl.c (ccl_driver):
18381 Check for overflow when converting EMACS_INT to int.
18382 * fns.c, image.c: Remove unnecessary static decls that would otherwise
18383 need to be updated by these changes.
18384 * fns.c (make_hash_table, maybe_resize_hash_table):
18385 Check for integer overflow with large hash tables.
18386 (make_hash_table, maybe_resize_hash_table, Fmake_hash_table):
18387 Prefer the faster XFLOAT_DATA to XFLOATINT where either will do.
18388 (SXHASH_REDUCE): New macro.
18389 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector):
18390 Use it instead of discarding useful hash info with large hash values.
18391 (sxhash_float): New function.
18392 (sxhash): Use it. No more need for "& INTMASK" due to above changes.
18393 * lisp.h (FIXNUM_BITS): New macro, useful for SXHASH_REDUCE etc.
18394 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
18395 Rewrite to use FIXNUM_BITS, as this simplifies things.
18396 (next_almost_prime, larger_vector, sxhash, hash_lookup, hash_put):
18397 Adjust signatures to match updated version of code.
18398 (consing_since_gc): Now EMACS_INT, since a single hash table can
18399 use more than INT_MAX bytes.
18400
18401 2011-06-01 Dan Nicolaescu <dann@ics.uci.edu>
18402
18403 Make it possible to build with GCC-4.6+ -O2 -flto.
18404
18405 * emacs.c (__malloc_initialize_hook): Mark as EXTERNALLY_VISIBLE.
18406
18407 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
18408
18409 * minibuf.c (get_minibuffer, read_minibuf_unwind):
18410 Call minibuffer-inactive-mode.
18411
18412 2011-05-31 Juanma Barranquero <lekktu@gmail.com>
18413
18414 * makefile.w32-in ($(BLD)/data.$(O), $(BLD)/editfns.$(O)):
18415 Update dependencies.
18416
18417 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
18418
18419 * data.c (init_data): Remove code for UTS, this system is not
18420 supported anymore.
18421
18422 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
18423
18424 Don't force ./temacs to start in terminal mode.
18425
18426 * frame.c (make_initial_frame): Initialize faces in all cases, not
18427 only when CANNOT_DUMP is defined.
18428 * dispnew.c (init_display): Remove CANNOT_DUMP condition.
18429
18430 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
18431
18432 * dispnew.c (add_window_display_history): Use const for the string
18433 pointer. Remove declaration, not needed.
18434
18435 2011-05-31 Paul Eggert <eggert@cs.ucla.edu>
18436
18437 Use 'inline', not 'INLINE'.
18438 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00914.html>
18439 * alloc.c, fontset.c (INLINE): Remove.
18440 * alloc.c, bidi.c, charset.c, coding.c, dispnew.c, fns.c, image.c:
18441 * intervals.c, keyboard.c, process.c, syntax.c, textprop.c, w32term.c:
18442 * xdisp.c, xfaces.c, xterm.c: Replace all uses of INLINE with inline.
18443 * gmalloc.c (register_heapinfo): Use inline unconditionally.
18444 * lisp.h (LISP_MAKE_RVALUE): Use inline, not __inline__.
18445
18446 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
18447
18448 Make it possible to run ./temacs.
18449
18450 * callproc.c (set_initial_environment): Remove CANNOT_DUMP code,
18451 syms_of_callproc does the same thing. Remove test for
18452 "initialized", do it in the caller.
18453 * emacs.c (main): Avoid calling set_initial_environment when dumping.
18454
18455 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
18456
18457 * minibuf.c (Finternal_complete_buffer): Return `category' metadata.
18458 (read_minibuf): Use get_minibuffer.
18459 (syms_of_minibuf): Use DEFSYM.
18460 (Qmetadata): New var.
18461 * data.c (Qbuffer): Don't make it static.
18462 (syms_of_data): Use DEFSYM.
18463
18464 2011-05-31 Paul Eggert <eggert@cs.ucla.edu>
18465
18466 * ccl.c (CCL_CODE_RANGE): Allow negative numbers. (Bug#8751)
18467 (CCL_CODE_MIN): New macro.
18468
18469 2011-05-30 Paul Eggert <eggert@cs.ucla.edu>
18470
18471 * alloc.c (lisp_align_malloc): Omit unnecessary val==NULL tests.
18472
18473 * eval.c (Qdebug): Now static.
18474 * lisp.h (Qdebug): Remove decl. This reverts a part of the
18475 2011-04-26T11:26:05Z!dan.colascione@gmail.com that inadvertently undid part of
18476 2011-04-14T06:48:41Z!eggert@cs.ucla.edu.
18477
18478 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
18479
18480 * image.c: Various fixes to ImageMagick code comments.
18481 (Fimagemagick_types): Doc fix.
18482
18483 2011-05-29 Paul Eggert <eggert@cs.ucla.edu>
18484
18485 Minor fixes prompted by GCC 4.6.0 warnings.
18486
18487 * xselect.c (converted_selections, conversion_fail_tag): Now static.
18488
18489 * emacs.c [HAVE_X_WINDOWS]: Include "xterm.h".
18490 (x_clipboard_manager_save_all): Move extern decl to ...
18491 * xterm.h: ... here, so that it can be checked for consistency.
18492
18493 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
18494
18495 * xselect.c (x_clipboard_manager_save_frame)
18496 (x_clipboard_manager_save_all): New functions.
18497 (Fx_clipboard_manager_save): Lisp function deleted.
18498
18499 * emacs.c (Fkill_emacs): Call x_clipboard_manager_save_all.
18500 * frame.c (delete_frame): Call x_clipboard_manager_save_frame.
18501
18502 * xterm.h: Update prototype.
18503
18504 2011-05-28 William Xu <william.xwl@gmail.com>
18505
18506 * nsterm.m (ns_term_shutdown): Synchronize user defaults before
18507 exiting (Bug#8239).
18508
18509 2011-05-28 Jim Meyering <meyering@redhat.com>
18510
18511 Avoid a sign-extension bug in crypto_hash_function.
18512 * fns.c (to_uchar): Define.
18513 (crypto_hash_function): Use it to convert some newly-signed
18514 variables to unsigned, to avoid sign-extension bugs. For example,
18515 without this change, (md5 "truc") would evaluate to
18516 45723a2aff78ff4fff7fff1114760e62 rather than the expected
18517 45723a2af3788c4ff17f8d1114760e62. Reported by Antoine Levitt in
18518 https://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00883.html.
18519
18520 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
18521
18522 Integer overflow fixes.
18523
18524 * dbusbind.c: Serial number integer overflow fixes.
18525 (CHECK_DBUS_SERIAL_GET_SERIAL): New macro.
18526 (Fdbus_call_method_asynchronously, xd_read_message_1): Use a float
18527 to hold a serial number that is too large for a fixnum.
18528 (Fdbus_method_return_internal, Fdbus_method_error_internal):
18529 Check for serial numbers out of range. Decode any serial number
18530 that was so large that it became a float. (Bug#8722)
18531
18532 * dbusbind.c: Use XFASTINT rather than XUINT, and check for nonneg.
18533 (Fdbus_call_method, Fdbus_call_method_asynchronously):
18534 Use XFASTINT rather than XUINT when numbers are nonnegative.
18535 (xd_append_arg, Fdbus_method_return_internal):
18536 (Fdbus_method_error_internal): Likewise. Also, for unsigned
18537 arguments, check that Lisp number is nonnegative, rather than
18538 silently wrapping negative numbers around. (Bug#8722)
18539 (xd_read_message_1): Don't assume dbus_uint32_t can fit in int.
18540 (Bug#8722)
18541
18542 * data.c (arith_driver, Flsh): Avoid unnecessary casts to EMACS_UINT.
18543
18544 * ccl.c (ccl_driver): Redo slightly to avoid the need for 'unsigned'.
18545
18546 ccl: Add integer overflow checks.
18547 * ccl.c (CCL_CODE_MAX, GET_CCL_RANGE, GET_CCL_CODE, GET_CCL_INT):
18548 (IN_INT_RANGE): New macros.
18549 (ccl_driver): Use them to check for integer overflow when
18550 decoding a CCL program. Many of the new checks are whether XINT (x)
18551 fits in int; it doesn't always, on 64-bit hosts. The new version
18552 doesn't catch all possible integer overflows, but it's an
18553 improvement. (Bug#8719)
18554
18555 * alloc.c (make_event_array): Use XINT, not XUINT.
18556 There's no need for unsigned here.
18557
18558 * mem-limits.h (EXCEEDS_LISP_PTR) [!USE_LSB_TAG]: EMACS_UINT -> uintptr_t
18559 This follows up to the 2011-05-06 change that substituted uintptr_t
18560 for EMACS_INT. This case wasn't caught back then.
18561
18562 Rework Fformat to avoid integer overflow issues.
18563 * editfns.c: Include <float.h> unconditionally, as it's everywhere
18564 now (part of C89). Include <verify.h>.
18565 (MAX_10_EXP, CONVERTED_BYTE_SIZE): Remove; no longer needed.
18566 (pWIDE, pWIDElen, signed_wide, unsigned_wide): New defns.
18567 (Fformat): Avoid the prepass trying to compute sizes; it was only
18568 approximate and thus did not catch overflow reliably. Instead, walk
18569 through the format just once, formatting and computing sizes as we go,
18570 checking for integer overflow at every step, and allocating a larger
18571 buffer as needed. Keep track separately whether the format is
18572 multibyte. Keep only the most-recently calculated precision, rather
18573 than them all. Record whether each argument has been converted to
18574 string. Use EMACS_INT, not int, for byte and char and arg counts.
18575 Support field widths and precisions larger than INT_MAX. Avoid
18576 sprintf's undefined behavior with conversion specifications such as %#d
18577 and %.0c. Fix bug with strchr succeeding on '\0' when looking for
18578 flags. Fix bug with (format "%c" 256.0). Avoid integer overflow when
18579 formatting out-of-range floating point numbers with int
18580 formats. (Bug#8668)
18581
18582 * lisp.h (FIXNUM_OVERFLOW_P): Work even if arg is a NaN.
18583
18584 * data.c: Avoid integer truncation in expressions involving floats.
18585 * data.c: Include <intprops.h>.
18586 (arith_driver): When there's an integer overflow in an expression
18587 involving floating point, convert the integers to floating point
18588 so that the resulting value does not suffer from catastrophic
18589 integer truncation. For example, on a 64-bit host (* 4
18590 most-negative-fixnum 0.5) should yield about -4.6e+18, not zero.
18591 Do not rely on undefined behavior after integer overflow.
18592
18593 merge count_size_as_multibyte, parse_str_to_multibyte
18594 * character.c, character.h (count_size_as_multibyte):
18595 Rename from parse_str_to_multibyte; all uses changed.
18596 Check for integer overflow.
18597 * insdel.c, lisp.h (count_size_as_multibyte): Remove,
18598 since it's now a duplicate of the other. This is more of
18599 a character than a buffer op, so better that it's in character.c.
18600 * fns.c, print.c: Adjust to above changes.
18601
18602 2011-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
18603
18604 * xselect.c (x_convert_selection): Yet another int/Lisp_Object mixup.
18605
18606 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
18607
18608 * xselect.c: Fix minor problems prompted by GCC 4.6.0 warnings.
18609 (x_handle_selection_request, frame_for_x_selection): Remove unused vars.
18610 (x_clipboard_manager_save): Now static.
18611 (Fx_clipboard_manager_save): Rename local to avoid shadowing.
18612
18613 * fns.c: Fix minor problems prompted by GCC 4.6.0 warnings.
18614 (crypto_hash_function): Now static.
18615 Fix pointer signedness problems. Avoid unnecessary initializations.
18616
18617 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
18618
18619 * termhooks.h (Vselection_alist): Make it terminal-local.
18620
18621 * terminal.c (create_terminal): Initialize it.
18622
18623 * xselect.c: Support for clipboard managers.
18624 (Vselection_alist): Move to termhooks.h as terminal-local var.
18625 (LOCAL_SELECTION): New macro.
18626 (x_atom_to_symbol): Handle x_display_info_for_display fail case.
18627 (symbol_to_x_atom): Remove gratuitous arg.
18628 (x_handle_selection_request, lisp_data_to_selection_data)
18629 (x_get_foreign_selection, Fx_register_dnd_atom): Callers changed.
18630 (x_own_selection, x_get_local_selection, x_convert_selection):
18631 New arg, specifying work frame. Use terminal-local Vselection_alist.
18632 (some_frame_on_display): Delete unused function.
18633 (Fx_own_selection_internal, Fx_get_selection_internal)
18634 (Fx_disown_selection_internal, Fx_selection_owner_p)
18635 (Fx_selection_exists_p): New optional frame arg.
18636 (frame_for_x_selection, Fx_clipboard_manager_save): New functions.
18637 (x_handle_selection_clear): Don't treat other terminals with the
18638 same keyboard specially. Use the terminal-local Vselection_alist.
18639 (x_clear_frame_selections): Use Frun_hook_with_args.
18640
18641 * xterm.c (x_term_init): Intern ATOM and CLIPBOARD_MANAGER atoms.
18642
18643 * xterm.h: Add support for those atoms.
18644
18645 2011-05-26 Chong Yidong <cyd@stupidchicken.com>
18646
18647 * xselect.c: ICCCM-compliant handling of MULTIPLE targets.
18648 (converted_selections, conversion_fail_tag): New global variables.
18649 (x_selection_request_lisp_error): Free the above.
18650 (x_get_local_selection): Remove unnecessary code.
18651 (x_reply_selection_request): Args changed; handle arbitrary array
18652 of converted selections stored in converted_selections.
18653 Separate the XChangeProperty and SelectionNotify steps.
18654 (x_handle_selection_request): Rewrite to handle MULTIPLE target.
18655 (x_convert_selection): New function.
18656 (x_handle_selection_event): Simplify.
18657 (x_get_foreign_selection): Don't ignore incoming requests while
18658 waiting for an answer; this will fail when we implement
18659 SAVE_TARGETS, and seems unnecessary anyway.
18660 (selection_data_to_lisp_data): Recognize ATOM_PAIR type.
18661 (Vx_sent_selection_functions): Doc fix.
18662
18663 2011-05-26 Leo Liu <sdl.web@gmail.com>
18664
18665 * editfns.c (Ftranspose_regions): Allow empty regions. (Bug#8699)
18666
18667 2011-05-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18668
18669 * dispextern.h (struct glyph_row): New member fringe_bitmap_periodic_p.
18670
18671 * dispnew.c (shift_glyph_matrix, scrolling_window): Mark scrolled row
18672 for fringe update if it has periodic bitmap.
18673 (row_equal_p): Also compare left_fringe_offset, right_fringe_offset,
18674 and fringe_bitmap_periodic_p.
18675
18676 * fringe.c (get_fringe_bitmap_data): New function.
18677 (draw_fringe_bitmap_1, update_window_fringes): Use it.
18678 (update_window_fringes): Record periodicity of fringe bitmap in glyph
18679 row. Mark glyph row for fringe update if periodicity changed.
18680
18681 * xdisp.c (try_window_reusing_current_matrix): Don't mark scrolled row
18682 for fringe update unless it has periodic bitmap.
18683
18684 2011-05-25 Kenichi Handa <handa@m17n.org>
18685
18686 * xdisp.c (get_next_display_element): Set correct it->face_id for
18687 a static composition.
18688
18689 2011-05-24 Leo Liu <sdl.web@gmail.com>
18690
18691 * deps.mk (fns.o):
18692 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha1.h.
18693
18694 * fns.c (crypto_hash_function, Fsha1): New function.
18695 (Fmd5): Use crypto_hash_function.
18696 (syms_of_fns): Add Ssha1.
18697
18698 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
18699
18700 * gnutls.c: Remove unused macros.
18701 (fn_gnutls_transport_set_lowat, fn_gnutls_transport_set_pull_function):
18702 (fn_gnutls_transport_set_push_function) [!WINDOWSNT]:
18703 Remove macros that are defined and never used.
18704 Caught by gcc -Wunused-macros (GCC 4.6.0, Fedora 14).
18705
18706 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
18707
18708 * xselect.c (syms_of_xselect): Remove unused symbol SAVE_TARGETS.
18709 (Fx_get_selection_internal): Minor cleanup.
18710 (Fx_own_selection_internal): Rename arguments for consistency with
18711 select.el.
18712
18713 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
18714
18715 * xselect.c (QSAVE_TARGETS): New static var, to fix build failure.
18716
18717 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
18718
18719 * xselect.c (syms_of_xselect): Include character.h; use DEFSYM.
18720
18721 2011-05-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18722
18723 * dispnew.c (scrolling_window): Don't exclude the case that the
18724 last enabled row in the desired matrix touches the bottom boundary.
18725
18726 2011-05-21 Glenn Morris <rgm@gnu.org>
18727
18728 * Makefile.in ($(etc)/DOC): Make second command line even shorter.
18729 (SOME_MACHINE_OBJECTS): Replace FONT_OBJ by its maximal expansion,
18730 and add some more files.
18731
18732 2011-05-20 Eli Zaretskii <eliz@gnu.org>
18733
18734 * callproc.c (Fcall_process) [MSDOS]: Fix arguments to
18735 report_file_error introduced by the change from 2011-05-07.
18736
18737 2011-05-20 Paul Eggert <eggert@cs.ucla.edu>
18738
18739 * systime.h (Time): Define only if emacs is defined.
18740 This is to allow ../lib-src/profile.c to be compiled on FreeBSD,
18741 where the include path doesn't have X11/X.h by default. See
18742 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00561.html>.
18743
18744 2011-05-20 Kenichi Handa <handa@m17n.org>
18745
18746 * composite.c (find_automatic_composition): Fix previous change.
18747
18748 2011-05-20 Glenn Morris <rgm@gnu.org>
18749
18750 * lisp.mk: New file, split from Makefile.in.
18751 * Makefile.in (lisp): Move to separate file, inserted by @lisp_frag@.
18752 (shortlisp): Remove.
18753 ($(etc)/DOC): Edit lisp.mk rather than using $shortlisp.
18754
18755 2011-05-19 Glenn Morris <rgm@gnu.org>
18756
18757 * Makefile.in (MSDOS_SUPPORT_REAL, MSDOS_SUPPORT, NS_SUPPORT)
18758 (REAL_MOUSE_SUPPORT, GPM_MOUSE_SUPPORT, MOUSE_SUPPORT, TOOLTIP_SUPPORT)
18759 (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT, WINDOW_SUPPORT): Remove.
18760 (lisp): Set the order to that of loadup.el.
18761 (shortlisp): Make it a copy of $lisp.
18762 (SOME_MACHINE_LISP): Remove.
18763 ($(etc)/DOC): Depend just on $lisp, not $SOME_MACHINE_LISP too.
18764 Use just $shortlisp, not $SOME_MACHINE_LISP too.
18765
18766 2011-05-18 Kenichi Handa <handa@m17n.org>
18767
18768 * composite.c (CHAR_COMPOSABLE_P): Add more check for efficiency.
18769 (BACKWARD_CHAR): Wrap the arg STOP by parenthesis.
18770 (find_automatic_composition): Mostly rewrite for efficiency.
18771
18772 2011-05-18 Juanma Barranquero <lekktu@gmail.com>
18773
18774 * makefile.w32-in: Update dependencies.
18775
18776 2011-05-18 Christoph Scholtes <cschol2112@googlemail.com>
18777
18778 * menu.c: Include limits.h (fixes the MS-Windows build broken by
18779 2011-06-18T18:49:19Z!cyd@stupidchicken.com).
18780
18781 2011-05-18 Paul Eggert <eggert@cs.ucla.edu>
18782
18783 Fix some integer overflow issues, such as string length overflow.
18784
18785 * insdel.c (count_size_as_multibyte): Check for string overflow.
18786
18787 * character.c (lisp_string_width): Check for string overflow.
18788 Use EMACS_INT, not int, for string indexes and lengths; in
18789 particular, 2nd arg is now EMACS_INT, not int. Do not crash if
18790 the resulting string length overflows an EMACS_INT; instead,
18791 report a string overflow if no precision given. When checking for
18792 precision exhaustion, use a check that cannot possibly have
18793 integer overflow. (Bug#8675)
18794 * character.h (lisp_string_width): Adjust to new signature.
18795
18796 * alloc.c (string_overflow): New function.
18797 (Fmake_string): Use it. This doesn't change behavior, but saves
18798 a few bytes and will simplify future changes.
18799 * character.c (string_escape_byte8): Likewise.
18800 * lisp.h (string_overflow): New decl.
18801
18802 Fixups, following up to the user-interface timestamp change.
18803 * nsterm.m (last_mouse_movement_time, ns_mouse_position): Use Time
18804 for UI timestamps, instead of unsigned long.
18805 * msdos.c (mouse_get_pos): Likewise.
18806 * w32inevt.c (movement_time, w32_console_mouse_position): Likewise.
18807 * w32gui.h (Time): Define by including "systime.h" rather than by
18808 declaring it ourselves. (Bug#8664)
18809
18810 * dispextern.h (struct image): Don't assume time_t <= unsigned long.
18811 * image.c (clear_image_cache): Likewise.
18812
18813 * term.c (term_mouse_position): Don't assume time_t wraparound.
18814
18815 Be more systematic about user-interface timestamps.
18816 Before, the code sometimes used 'Time', sometimes 'unsigned long',
18817 and sometimes 'EMACS_UINT', to represent these timestamps.
18818 This change causes it to use 'Time' uniformly, as that's what X uses.
18819 This makes the code easier to follow, and makes it easier to catch
18820 integer overflow bugs such as Bug#8664.
18821 * frame.c (Fmouse_position, Fmouse_pixel_position):
18822 Use Time, not unsigned long, for user-interface timestamps.
18823 * keyboard.c (last_event_timestamp, kbd_buffer_get_event): Likewise.
18824 (button_down_time, make_lispy_position, make_lispy_movement): Likewise.
18825 * keyboard.h (last_event_timestamp): Likewise.
18826 * menu.c (Fx_popup_menu) [!HAVE_X_WINDOWS]: Likewise.
18827 * menu.h (xmenu_show): Likewise.
18828 * term.c (term_mouse_position): Likewise.
18829 * termhooks.h (struct input_event.timestamp): Likewise.
18830 (struct terminal.mouse_position_hook): Likewise.
18831 * xmenu.c (create_and_show_popup_menu, xmenu_show): Likewise.
18832 * xterm.c (XTmouse_position, x_scroll_bar_report_motion): Likewise.
18833 * systime.h (Time): New decl. Pull it in from <X11/X.h> if
18834 HAVE_X_WINDOWS, otherwise define it as unsigned long, which is
18835 what it was before.
18836 * menu.h, termhooks.h: Include "systime.h", for Time.
18837
18838 * keyboard.c (make_lispy_event): Fix problem in integer overflow.
18839 Don't assume that the difference between two unsigned long values
18840 can fit into an integer. At this point, we know button_down_time
18841 <= event->timestamp, so the difference must be nonnegative, so
18842 there's no need to cast the result if double-click-time is
18843 nonnegative, as it should be; check that it's nonnegative, just in
18844 case. This bug is triggered when events are more than 2**31 ms
18845 apart (about 25 days). (Bug#8664)
18846
18847 * xselect.c (last_event_timestamp): Remove duplicate decl.
18848 (x_own_selection): Remove needless cast to unsigned long.
18849
18850 * xmenu.c (set_frame_menubar): Use int, not EMACS_UINT, for indexes
18851 that always fit in int. Use a sentinel instead of a counter, to
18852 avoid a temp and to allay GCC's concerns about possible int overflow.
18853 * frame.h (struct frame): Use int for menu_bar_items_used
18854 instead of EMACS_INT, since it always fits in int.
18855
18856 * menu.c (grow_menu_items): Check for int overflow.
18857
18858 * xmenu.c (set_frame_menubar): Don't mishandle vectors with no nils.
18859
18860 * xterm.c: Use EMACS_INT for Emacs modifiers, and int for X modifiers.
18861 Before, the code was not consistent. These values cannot exceed
18862 2**31 - 1 so there's no need to make them unsigned.
18863 (x_x_to_emacs_modifiers): Accept int and return EMACS_INT.
18864 (x_emacs_to_x_modifiers): Accept EMACS_INT and return int.
18865 (x_x_to_emacs_modifiers, x_emacs_to_x_modifiers): Reject non-integers
18866 as modifiers.
18867 * xterm.h (x_x_to_emacs_modifiers): Adjust to signature change.
18868
18869 * lisp.h (XINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_INT.
18870 (XUINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_UINT.
18871 Otherwise, GCC 4.6.0 warns about printf (pI, XINT (...)),
18872 presumably because the widths might not match.
18873
18874 * window.c (size_window): Avoid needless test at loop start.
18875
18876 2011-05-18 Courtney Bane <emacs-bugs-7626@cbane.org> (tiny change)
18877
18878 * term.c (Fresume_tty): Restore hooks before reinitializing (bug#8687).
18879
18880 2011-05-12 Drew Adams <drew.adams@oracle.com>
18881
18882 * textprop.c (Fprevious_single_char_property_change): Doc fix (bug#8655).
18883
18884 2011-05-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18885
18886 * w32term.c (w32_draw_fringe_bitmap): Rename local vars `left' and
18887 `width' to `bar_area_x' and `bar_area_width', respectively.
18888 (x_scroll_run): Take account of fringe background extension.
18889
18890 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
18891 Rename local vars `left' and `width' to `bar_area_x' and
18892 `bar_area_width', respectively.
18893 (x_scroll_run) [USE_TOOLKIT_SCROLL_BARS]: Take account of fringe
18894 background extension.
18895
18896 2011-05-10 Jim Meyering <meyering@redhat.com>
18897
18898 * xdisp.c (x_intersect_rectangles): Fix typo "the the -> the".
18899
18900 2011-05-10 Juanma Barranquero <lekktu@gmail.com>
18901
18902 * image.c (Finit_image_library): Return t for built-in image types,
18903 like pbm and xbm. (Bug#8640)
18904
18905 2011-05-09 Andreas Schwab <schwab@linux-m68k.org>
18906
18907 * w32menu.c (set_frame_menubar): Fix submenu allocation.
18908
18909 2011-05-07 Eli Zaretskii <eliz@gnu.org>
18910
18911 * w32console.c (Fset_screen_color): Doc fix.
18912 (Fget_screen_color): New function.
18913 (syms_of_ntterm): Defsubr it.
18914
18915 * callproc.c (call_process_cleanup) [MSDOS]: Don't close and
18916 unlink the temporary file if Fcall_process didn't create it in the
18917 first place.
18918 (Fcall_process) [MSDOS]: Don't create tempfile if stdout of the
18919 child process will be redirected to a file specified with `:file'.
18920 Don't try to re-open tempfile in that case, and set fd[0] to -1 as
18921 cue to call_process_cleanup not to close that handle.
18922
18923 2011-05-07 Ben Key <bkey76@gmail.com>
18924
18925 * makefile.w32-in: The bootstrap-temacs rule now makes use of
18926 one of two shell specific rules, either bootstrap-temacs-CMD or
18927 bootstrap-temacs-SH. The bootstrap-temacs-SH rule is identical
18928 to the previous implementation of the bootstrap-temacs rule.
18929 The bootstrap-temacs-CMD rule is similar to the previous
18930 implementation of the bootstrap-temacs rule except that it
18931 makes use of the ESC_CFLAGS variable instead of the CFLAGS
18932 variable.
18933
18934 These changes, along with some changes to nt/configure.bat,
18935 nt/gmake.defs, and nt/nmake.defs, are required to extend my
18936 earlier fix to add support for --cflags and --ldflags options
18937 that include quotes so that it works whether make uses cmd or
18938 sh as the shell.
18939
18940 2011-05-06 Michael Albinus <michael.albinus@gmx.de>
18941
18942 * dbusbind.c (QCdbus_type_unix_fd): Declare static.
18943 (xd_remove_watch): Don't check QCdbus_type_unix_fd for SYMBOLP, it
18944 is a constant.
18945 (Fdbus_init_bus, xd_read_queued_messages): Bus can be a symbol or
18946 a string. Handle both cases.
18947 (Fdbus_call_method_asynchronously, Fdbus_register_signal)
18948 (Fdbus_register_method): Use Qinvalid_function.
18949
18950 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
18951
18952 * makefile.w32-in: Update dependencies.
18953 (LISP_H): Add inttypes.h and stdin.h.
18954 (PROCESS_H): Add unistd.h.
18955
18956 2011-05-06 Eli Zaretskii <eliz@gnu.org>
18957
18958 * lread.c: Include limits.h (fixes the MS-Windows build broken by
18959 2011-05-06T07:13:19Z!eggert@cs.ucla.edu).
18960
18961 2011-05-06 Paul Eggert <eggert@cs.ucla.edu>
18962
18963 * image.c (Finit_image_library) [!HAVE_NTGUI]: Omit unused local.
18964
18965 * term.c (vfatal): Remove stray call to va_end.
18966 It's not needed and the C Standard doesn't allow it here anyway.
18967
18968 Use C99's va_copy to avoid undefined behavior on x86-64 GNU/Linux.
18969 * eval.c (verror): doprnt a copy of ap, not the original. (Bug#8545)
18970
18971 * eval.c (verror): OK to create a string of up to MOST_POSITIVE_FIXNUM
18972 bytes.
18973
18974 * term.c: Don't include <stdarg.h>, as <lisp.h> does that.
18975
18976 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
18977
18978 * process.c (Fformat_network_address): Fix typo: args2 -> *args2.
18979
18980 * xmenu.c (set_frame_menubar): Fix typo: int * -> int (3 times).
18981
18982 * coding.c (detect_coding_charset): Fix typo: * 2 -> *4 (Bug#8601).
18983
18984 * charset.h (struct charset.code_space): Now has 15 elements, not 16.
18985 * charset.c (Fdefine_charset_internal): Don't initialize
18986 charset.code_space[15]. The value was garbage, on hosts with
18987 32-bit int (Bug#8600).
18988
18989 * lread.c (read_integer): Be more consistent with string-to-number.
18990 Use string_to_number to do the actual conversion; this avoids
18991 rounding errors and fixes some other screwups. Without this fix,
18992 for example, #x1fffffffffffffff was misread as -2305843009213693952.
18993 (digit_to_number): Move earlier, for benefit of read_integer.
18994 Return -1 if the digit is out of range for the base, -2 if it is
18995 not a digit in any supported base. (Bug#8602)
18996
18997 * doprnt.c (doprnt): Support arbitrary pI values, such as "I64".
18998
18999 * dispnew.c (scrolling_window): Return 1 if we scrolled,
19000 to match comment at start of function. This also removes a
19001 GCC warning about overflow in a 32+64-bit port.
19002
19003 * lisp.h (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Simplify.
19004
19005 * dbusbind.c: Do not use XPNTR on a value that may be an integer.
19006 Reported by Stefan Monnier in
19007 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00919.html>.
19008 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
19009 Use SYMBOLP-guarded XSYMBOL, not XPNTR.
19010
19011 * lisp.h (EMACS_INTPTR): Remove. All uses changed to intptr_t.
19012 (EMACS_UINTPTR): Likewise, with uintptr_t.
19013
19014 * lisp.h: Prefer 64-bit EMACS_INT if available.
19015 (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Define to 64-bit
19016 on 32-bit hosts that have 64-bit int, so that they can access
19017 large files.
19018 However, temporarily disable this change unless the temporary
19019 symbol WIDE_EMACS_INT is defined.
19020
19021 * lread.c, process.c: Do not include <inttypes.h>; lisp.h does it now.
19022
19023 Prefer intptr_t/uintptr_t for integers the same widths as pointers.
19024 This removes an assumption that EMACS_INT and long are the same
19025 width as pointers. The assumption is true for Emacs porting targets
19026 now, but we want to make other targets possible.
19027 * lisp.h: Include <inttypes.h>, for INTPTR_MAX, UINTPTR_MAX.
19028 (EMACS_INTPTR, EMACS_UINTPTR): New macros.
19029 In the rest of the code, change types of integers that hold casted
19030 pointers to EMACS_INTPTR and EMACS_UINTPTR, systematically
19031 replacing EMACS_INT, long, EMACS_UINT, and unsigned long.
19032 (XTYPE): Don't cast arg to EMACS_UINT; normally is not needed.
19033 (XSET): Cast type of XTYPE arg to EMACS_INTPTR; it is needed here.
19034 No need to cast type when ORing.
19035 (XPNTR): Return a value of type EMACS_INTPTR or EMACS_UINTPTR.
19036 * alloc.c (lisp_align_malloc): Remove a no-longer-needed cast.
19037 * doc.c (store_function_docstring): Use EMACS_INTPTR, so as not to
19038 assume EMACS_INT is the same width as char *.
19039 * gtkutil.c (xg_gtk_scroll_destroy, xg_tool_bar_button_cb):
19040 (xg_tool_bar_callback, xg_tool_bar_help_callback, xg_make_tool_item):
19041 Remove no-longer-needed casts.
19042 (xg_create_scroll_bar, xg_tool_bar_button_cb, xg_tool_bar_callback):
19043 (xg_tool_bar_help_callback, xg_make_tool_item):
19044 Use EMACS_INTPTR to hold an integer
19045 that will be cast to void *; this can avoid a GCC warning
19046 if EMACS_INT is not the same width as void *.
19047 * menu.c (find_and_call_menu_selection): Remove no-longer-needed cast.
19048 * xdisp.c (display_echo_area_1, resize_mini_window_1):
19049 (current_message_1, set_message_1):
19050 Use a local to convert to proper width without a cast.
19051 * xmenu.c (dialog_selection_callback): Likewise.
19052
19053 * sysdep.c (get_random): Don't assume EMACS_INT is no wider than long.
19054 Also, don't assume VALBITS / RAND_BITS is less than 5,
19055 and don't rely on undefined behavior when shifting a 1 left into
19056 the sign bit.
19057 * lisp.h (get_random): Change signature to match.
19058
19059 * lread.c (hash_string): Use size_t, not int, for hash computation.
19060 Normally we prefer signed values; but hashing is special, because
19061 it's better to use unsigned division on hash table sizes so that
19062 the remainder is nonnegative. Also, size_t is the natural width
19063 for hashing into memory. The previous code used 'int', which doesn't
19064 retain enough info to hash well into very large tables.
19065 (oblookup, oblookup_last_bucket_number, Funintern): Likewise.
19066
19067 * dbusbind.c: Don't possibly lose pointer info when converting.
19068 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
19069 Use XPNTR rather than XHASH, so that the high-order bits of
19070 the pointer aren't lost when converting through void *.
19071
19072 * eval.c (Fautoload): Don't double-shift a pointer.
19073
19074 * fns.c (Frandom): Let EMACS_UINT be wider than unsigned long.
19075
19076 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
19077
19078 * gnutls.c (DEF_GNUTLS_FN):
19079 * image.c (DEF_IMGLIB_FN): Make function pointers static.
19080
19081 2011-05-05 Andreas Schwab <schwab@linux-m68k.org>
19082
19083 * lread.c (lisp_file_lexically_bound_p): Stop scanning at end
19084 marker. (Bug#8610)
19085
19086 2011-05-05 Eli Zaretskii <eliz@gnu.org>
19087
19088 * w32heap.c (allocate_heap) [USE_LISP_UNION_TYPE || USE_LSB_TAG]:
19089 New version that can reserve upto 2GB of heap space.
19090
19091 2011-05-05 Chong Yidong <cyd@stupidchicken.com>
19092
19093 * nsfns.m (Fns_read_file_name): Doc fix (Bug#8534).
19094
19095 2011-05-05 Teodor Zlatanov <tzz@lifelogs.com>
19096
19097 * gnutls.c (fn_gnutls_certificate_set_x509_key_file): Add alias to
19098 `gnutls_certificate_set_x509_key_file'.
19099
19100 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
19101
19102 * makefile.w32-in ($(BLD)/image.$(O), $(BLD)/process.$(O)):
19103 Update dependencies.
19104
19105 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
19106
19107 * gnutls.h (emacs_gnutls_write, emacs_gnutls_read):
19108 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
19109 Remove unused parameter `fildes'.
19110 * process.c (read_process_output, send_process): Don't pass it.
19111
19112 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
19113
19114 Fix previous change: the library cache is defined in w32.c.
19115 * image.c (CACHE_IMAGE_TYPE) [!HAVE_NTGUI]: Define to noop.
19116 (Finit_image_library): Wrap Vlibrary_cache on "#ifdef HAVE_NTGUI".
19117
19118 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
19119
19120 Implement dynamic loading of GnuTLS on Windows.
19121
19122 * gnutls.h (GNUTLS_EMACS_ERROR_NOT_LOADED): New macro.
19123 (emacs_gnutls_write, emacs_gnutls_read): Mark as extern.
19124 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
19125 Declare.
19126
19127 * gnutls.c (Qgnutls_dll): Define.
19128 (DEF_GNUTLS_FN, LOAD_GNUTLS_FN): New macros.
19129 (gnutls_*): Declare function pointers.
19130 (init_gnutls_functions): New function to initialize function pointers.
19131 (emacs_gnutls_handshake, Fgnutls_error_string, Fgnutls_deinit)
19132 (emacs_gnutls_global_init, Fgnutls_bye): Use function pointers.
19133 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
19134 Wrappers for gnutls_record_check_pending and gnutls_transport_set_errno.
19135 (emacs_gnutls_write, emacs_gnutls_read)
19136 (emacs_gnutls_handle_error, Fgnutls_error_fatalp)
19137 (Fgnutls_available_p): New function.
19138 (Fgnutls_boot): Call Fgnutls_available_p. Use function pointers.
19139 (syms_of_gnutls) <Qgnutls_dll>: Initialize and staticpro it.
19140 (syms_of_gnutls) <Sgnutls_available_p>: defsubr it.
19141
19142 * image.c: Include w32.h.
19143 (Vimage_type_cache): Delete.
19144 (syms_of_image) <Vimage_type_cache>: Don't initialize and staticpro it.
19145 (CACHE_IMAGE_TYPE, Finit_image_library): Use Vlibrary_cache instead.
19146 (w32_delayed_load): Move to w32.c.
19147
19148 * w32.h (VlibraryCache, QCloaded_from, w32_delayed_load): Declare.
19149
19150 * w32.c (QCloaded_from, Vlibrary_cache): Define.
19151 (w32_delayed_load): Move from image.c. When loading a library, record
19152 its filename in the :loaded-from property of the library id.
19153 (globals_of_w32) <QCloaded_from, Vlibrary_cache>:
19154 Initialize and staticpro them.
19155 (emacs_gnutls_pull, emacs_gnutls_push): Call emacs_gnutls_* functions.
19156
19157 * process.c: Include lisp.h before w32.h, not after.
19158 (wait_reading_process_output): Call emacs_gnutls_record_check_pending
19159 instead of gnutls_record_check_pending.
19160
19161 * callproc.c, emacs.c: Include lisp.h before w32.h, not after.
19162
19163 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
19164
19165 * gnutls.c (Fgnutls_boot): Support :keylist and :crlfiles options
19166 instead of :keyfiles. Give GnuTLS the keylist and the CRL lists
19167 as passed in.
19168
19169 2011-05-03 Jan Djärv <jan.h.d@swipnet.se>
19170
19171 * xterm.c (x_set_frame_alpha): Do not set property on anything
19172 else than FRAME_X_OUTER_WINDOW (Bug#8608).
19173
19174 2011-05-02 Juanma Barranquero <lekktu@gmail.com>
19175
19176 * sysdep.c (get_tty_size) [WINDOWSNT]: Implement. (Bug#8596)
19177
19178 2011-05-02 Juanma Barranquero <lekktu@gmail.com>
19179
19180 * gnutls.c (Qgnutls_log_level, Qgnutls_code, Qgnutls_anon)
19181 (Qgnutls_x509pki, Qgnutls_e_interrupted, Qgnutls_e_again)
19182 (Qgnutls_e_invalid_session, Qgnutls_e_not_ready_for_handshake)
19183 (gnutls_global_initialized, Qgnutls_bootprop_priority)
19184 (Qgnutls_bootprop_trustfiles, Qgnutls_bootprop_keyfiles)
19185 (Qgnutls_bootprop_callbacks, Qgnutls_bootprop_loglevel)
19186 (Qgnutls_bootprop_hostname, Qgnutls_bootprop_verify_flags)
19187 (Qgnutls_bootprop_verify_error, Qgnutls_bootprop_verify_hostname_error)
19188 (Qgnutls_bootprop_callbacks_verify): Make static.
19189
19190 2011-05-01 Andreas Schwab <schwab@linux-m68k.org>
19191
19192 * callproc.c: Indentation fixup.
19193
19194 * sysdep.c (wait_for_termination_1): Make static.
19195 (wait_for_termination, interruptible_wait_for_termination):
19196 Move after wait_for_termination_1.
19197
19198 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
19199
19200 * sysdep.c (interruptible_wait_for_termination): New function
19201 which is like wait_for_termination, but allows keyboard
19202 interruptions.
19203
19204 * callproc.c (Fcall_process): Add (:file "file") as an option for
19205 the STDOUT buffer.
19206 (Fcall_process_region): Ditto.
19207
19208 2011-04-30 Eli Zaretskii <eliz@gnu.org>
19209
19210 * dosfns.c (Fint86, Fdos_memget, Fdos_memput): Use `ASIZE (FOO)'
19211 rather than `XVECTOR (FOO)->size'.
19212
19213 * process.c: Remove HAVE_INTTYPES_H condition from inclusion of
19214 inttypes.h, as a gnulib replacement is used if it not available in
19215 system headers.
19216
19217 2011-04-21 Eli Zaretskii <eliz@gnu.org>
19218
19219 Lift the MOST_POSITIVE_FIXNUM/4 limitation on visited files.
19220 * fileio.c (Finsert_file_contents): Don't limit file size to 1/4
19221 of MOST_POSITIVE_FIXNUM. (Bug#8528)
19222
19223 * coding.c (coding_alloc_by_realloc): Error out if destination
19224 will grow beyond MOST_POSITIVE_FIXNUM.
19225 (decode_coding_emacs_mule): Abort if there isn't enough place in
19226 charbuf for the composition carryover bytes. Reserve an extra
19227 space for up to 2 characters produced in a loop.
19228 (decode_coding_iso_2022): Abort if there isn't enough place in
19229 charbuf for the composition carryover bytes.
19230
19231 2011-04-21 Eli Zaretskii <eliz@gnu.org>
19232
19233 * doprnt.c (doprnt) [!HAVE_LONG_LONG_INT]: Error out instead of
19234 aborting when %lld or %lll format is passed.
19235 [!HAVE_UNSIGNED_LONG_LONG_INT]: Error out instead of aborting when
19236 %llo or %llx format is passed. (Bug#8545)
19237
19238 * window.c (window_scroll_line_based): Use a marker instead of
19239 simple variables to record original value of point. (Bug#7952)
19240
19241 * doprnt.c (doprnt): Fix the case where a multibyte sequence
19242 produced by %s or %c overflows available buffer space. (Bug#8545)
19243
19244 2011-04-28 Paul Eggert <eggert@cs.ucla.edu>
19245
19246 * doprnt.c (doprnt): Omit useless test; int overflow check (Bug#8545).
19247 (SIZE_MAX): Move defn after all includes, as they might #define it.
19248
19249 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
19250
19251 * w32.c (init_environment): Warn about defaulting HOME to C:\.
19252
19253 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
19254
19255 * keyboard.c (Qdelayed_warnings_hook): Define.
19256 (command_loop_1): Run `delayed-warnings-hook'
19257 if Vdelayed_warnings_list is non-nil.
19258 (syms_of_keyboard) <delayed-warnings-hook>: DEFSYM it.
19259 (syms_of_keyboard) <delayed-warnings-list>: DEFVAR_LISP it.
19260
19261 2011-04-28 Eli Zaretskii <eliz@gnu.org>
19262
19263 * doprnt.c (doprnt): Don't return value smaller than the buffer
19264 size if the message was truncated. (Bug#8545).
19265
19266 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
19267
19268 * w32fns.c (Fx_change_window_property, Fx_delete_window_property)
19269 (Fx_window_property): #if-0 the whole functions, not just the bodies.
19270
19271 2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
19272
19273 * doprnt.c (doprnt): Support "ll" length modifier, for long long.
19274
19275 2011-04-27 Juanma Barranquero <lekktu@gmail.com>
19276
19277 * makefile.w32-in: Update dependencies.
19278
19279 2011-04-27 Eli Zaretskii <eliz@gnu.org>
19280
19281 Improve `doprnt' and its usage. (Bug#8545)
19282 * doprnt.c (doprnt): Make sure `format' is never accessed beyond
19283 `format_end'. Remove support for %l as a conversion specifier.
19284 Don't use xrealloc. Improve diagnostics when the %l size modifier
19285 is used. Update the commentary.
19286
19287 * eval.c (verror): Simplify calculation of size_t.
19288
19289 * coding.c (Ffind_operation_coding_system): Fix diagnostic error
19290 messages.
19291
19292 2011-04-27 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
19293
19294 * buffer.c (init_buffer) [USE_MMAP_FOR_BUFFERS]: Adjust to aliasing
19295 change.
19296
19297 2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
19298
19299 * nsmenu.m: Replace all uses of XVECTOR with ASIZE and AREF.
19300 This makes this file independent of the recent pseudovector change.
19301
19302 2011-04-26 Paul Eggert <eggert@cs.ucla.edu>
19303
19304 * keyboard.c (handle_user_signal): Fix pointer signedness problem.
19305
19306 * gnutls.c (emacs_gnutls_handle_error): Remove unused local.
19307 (Fgnutls_boot): gnutls_certificate_verify_peers2 wants unsigned *.
19308 Remove unused local.
19309 (emacs_gnutls_write): Don't use uninitialized rtnval if nbyte <= 0.
19310
19311 * lisp.h: Fix a problem with aliasing and vector headers. (Bug#8546)
19312 GCC 4.6.0 optimizes based on type-based alias analysis.
19313 For example, if b is of type struct buffer * and v of type struct
19314 Lisp_Vector *, then gcc -O2 was incorrectly assuming that &b->size
19315 != &v->size, and therefore "v->size = 1; b->size = 2; return
19316 v->size;" must therefore return 1. This assumption is incorrect
19317 for Emacs, since it type-puns struct Lisp_Vector * with many other
19318 types. To fix this problem, this patch adds a new type struct
19319 vectorlike_header that documents the constraints on layout of vectors
19320 and pseudovectors, and helps optimizing compilers not get fooled
19321 by Emacs's type punning. It also adds the macros XSETTYPED_PVECTYPE
19322 XSETTYPED_PSEUDOVECTOR, TYPED_PSEUDOVECTORP, for similar reasons.
19323 * lisp.h (XSETTYPED_PVECTYPE): New macro, specifying the name of
19324 the size member.
19325 (XSETPVECTYPE): Rewrite in terms of new macro.
19326 (XSETPVECTYPESIZE): New macro, specifying both type and size.
19327 This is a bit clearer, and further avoids the possibility of
19328 undesirable aliasing.
19329 (XSETTYPED_PSEUDOVECTOR): New macro, specifying the size.
19330 (XSETPSEUDOVECTOR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR.
19331 (XSETSUBR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR and XSIZE,
19332 since Lisp_Subr is a special case (no "next" field).
19333 (ASIZE): Now uses header.size rather than size.
19334 All previous uses of XVECTOR (foo)->size replaced to use this macro,
19335 to avoid the hassle of writing XVECTOR (foo)->header.size.
19336 (struct vectorlike_header): New type.
19337 (TYPED_PSEUDOVECTORP): New macro, also specifying the C type of the
19338 object, to help avoid aliasing.
19339 (PSEUDOVECTORP): Rewrite in terms of TYPED_PSEUDOVECTORP.
19340 (SUBRP): Likewise, since Lisp_Subr is a special case.
19341 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table):
19342 (struct Lisp_Sub_Char_Table, struct Lisp_Bool_Vector):
19343 (struct Lisp_Hash_Table): Combine first two members into a single
19344 struct vectorlike_header member. All uses of "size" and "next" members
19345 changed to be "header.size" and "header.next".
19346 * buffer.h (struct buffer): Likewise.
19347 * font.h (struct font_spec, struct font_entity, struct font): Likewise.
19348 * frame.h (struct frame): Likewise.
19349 * process.h (struct Lisp_Process): Likewise.
19350 * termhooks.h (struct terminal): Likewise.
19351 * window.c (struct save_window_data, struct saved_window): Likewise.
19352 * window.h (struct window): Likewise.
19353 * alloc.c (allocate_buffer, Fmake_bool_vector, allocate_pseudovector):
19354 Use XSETPVECTYPESIZE, not XSETPVECTYPE, to avoid aliasing problems.
19355 * buffer.c (init_buffer_once): Likewise.
19356 * lread.c (defsubr): Use XSETTYPED_PVECTYPE, since Lisp_Subr is a
19357 special case.
19358 * process.c (Fformat_network_address): Use local var for size,
19359 for brevity.
19360
19361 * bytecode.c (exec_byte_code): Don't use XVECTOR before CHECK_VECTOR.
19362
19363 Make the Lisp reader and string-to-float more consistent (Bug#8525)
19364 * data.c (atof): Remove decl; no longer used or needed.
19365 (digit_to_number): Move to lread.c.
19366 (Fstring_to_number): Use new string_to_number function, to be
19367 consistent with how the Lisp reader treats infinities and NaNs.
19368 Do not assume that floating-point numbers represent EMACS_INT
19369 without losing information; this is not true on most 64-bit hosts.
19370 Avoid double-rounding errors, by insisting on integers when
19371 parsing non-base-10 numbers, as the documentation specifies.
19372 * lisp.h (string_to_number): New decl, replacing ...
19373 (isfloat_string): Remove.
19374 * lread.c: Include <inttypes.h>, for uintmax_t and strtoumax.
19375 (read1): Do not accept +. and -. as integers; this
19376 appears to have been a coding error. Similarly, do not accept
19377 strings like +-1e0 as floating point numbers. Do not report
19378 overflow for integer overflows unless the base is not 10 which
19379 means we have no simple and reliable way to continue.
19380 Break out the floating-point parsing into a new
19381 function string_to_number, so that Fstring_to_number parses
19382 floating point numbers consistently with the Lisp reader.
19383 (digit_to_number): Move here from data.c. Make it static inline.
19384 (E_CHAR, EXP_INT): Remove, replacing with ...
19385 (E_EXP): New macro, to solve the "1.0e+" problem mentioned below.
19386 (string_to_number): New function, replacing isfloat_string.
19387 This function checks for valid syntax and produces the resulting
19388 Lisp float number too. Rework it so that string-to-number
19389 no longer mishandles examples like "1.0e+". Use strtoumax,
19390 so that overflow for non-base-10 numbers is reported only when
19391 there's no portable and simple way to convert to floating point.
19392
19393 * textprop.c (set_text_properties_1): Rewrite for clarity,
19394 and to avoid GCC warning about integer overflow.
19395
19396 * intervals.h (struct interval): Use EMACS_INT for members
19397 where EMACS_UINT might cause problems. See
19398 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html>.
19399 (CHECK_TOTAL_LENGTH): Remove cast to EMACS_INT; no longer needed.
19400 * intervals.c (interval_deletion_adjustment): Now returns EMACS_INT.
19401 All uses changed.
19402 (offset_intervals): Tell GCC not to worry about length overflow
19403 when negating a negative length.
19404
19405 * alloc.c (overrun_check_malloc, overrun_check_realloc): Now static.
19406 (overrun_check_free): Likewise.
19407
19408 * alloc.c (SDATA_SIZE) [!GC_CHECK_STRING_BYTES]: Avoid runtime check
19409 in the common case where SDATA_DATA_OFFSET is a multiple of Emacs
19410 word size.
19411
19412 * gnutls.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
19413 (gnutls_make_error): Rename local to avoid shadowing.
19414 (gnutls_emacs_global_deinit): ifdef out; not used.
19415 (Fgnutls_boot): Use const for pointer to readonly storage.
19416 Comment out unused local. Fix pointer signedness problems.
19417
19418 * lread.c (openp): Don't stuff size_t into an 'int'.
19419 Use <= on length, not < on length + 1, to avoid GCC 4.6.0 warning
19420 about possible signed overflow.
19421
19422 * gtkutil.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
19423 (GDK_KEY_g): Don't define if already defined.
19424 (xg_prepare_tooltip): Avoid pointer signedness problem.
19425 (xg_set_toolkit_scroll_bar_thumb): Redo to avoid two casts.
19426
19427 * process.c (Fnetwork_interface_info): Avoid left-shift undefined
19428 behavior with 1 << 31. GCC 4.6.0 warns about this on 32-bit hosts.
19429
19430 * xfns.c (Fx_window_property): Simplify a bit,
19431 to make a bit faster and to avoid GCC 4.6.0 warning.
19432 * xselect.c (x_get_window_property, x_handle_dnd_message): Likewise.
19433
19434 * fns.c (internal_equal): Don't assume size_t fits in int.
19435
19436 * alloc.c (compact_small_strings): Tighten assertion a little.
19437
19438 Replace pEd with more-general pI, and fix some printf arg casts.
19439 * lisp.h (pI): New macro, generalizing old pEd macro to other
19440 conversion specifiers. For example, use "...%"pI"d..." rather
19441 than "...%"pEd"...".
19442 (pEd): Remove. All uses replaced with similar uses of pI.
19443 * m/amdx86-64.h, m/ia64.h, m/ibms390x.h: Likewise.
19444 * alloc.c (check_pure_size): Don't overflow by converting size to int.
19445 * bidi.c (bidi_dump_cached_states): Use pI to avoid cast.
19446 * data.c (Fnumber_to_string): Use pI instead of if-then-else-abort.
19447 * dbusbind.c (xd_append_arg): Use pI to avoid cast.
19448 (Fdbus_method_return_internal, Fdbus_method_error_internal): Likewise.
19449 * font.c (font_unparse_xlfd): Avoid potential buffer overrun on
19450 64-bit hosts.
19451 (font_unparse_xlfd, font_unparse_fcname): Use pI to avoid casts.
19452 * keyboard.c (record_char, modify_event_symbol): Use pI to avoid casts.
19453 * print.c (safe_debug_print, print_object): Likewise.
19454 (print_object): Don't overflow by converting EMACS_INT or EMACS_UINT
19455 to int.
19456 Use pI instead of if-then-else-abort. Use %p to avoid casts,
19457 avoiding the 0 flag, which is not portable.
19458 * process.c (Fmake_network_process): Use pI to avoid cast.
19459 * region-cache.c (pp_cache): Likewise.
19460 * xdisp.c (decode_mode_spec): Likewise.
19461 * xrdb.c (x_load_resources) [USE_MOTIF]: Use pI to avoid undefined
19462 behavior on 64-bit hosts with printf arg.
19463 * xselect.c (x_queue_event): Use %p to avoid casts, avoiding 0 flag.
19464 (x_stop_queuing_selection_requests): Likewise.
19465 (x_get_window_property): Don't truncate byte count to an 'int'
19466 when tracing.
19467
19468 * frame.c (frame_name_fnn_p): Get rid of strtol, which isn't right
19469 here, since it parses constructs like leading '-' and spaces,
19470 which are not wanted; and it overflows with large numbers.
19471 Instead, simply match F[0-9]+, which is what is wanted anyway.
19472
19473 * alloc.c: Remove unportable assumptions about struct layout.
19474 (SDATA_SELECTOR, SDATA_DATA_OFFSET): New macros.
19475 (SDATA_OF_STRING, SDATA_SIZE, allocate_string_data):
19476 (allocate_vectorlike, make_pure_vector): Use the new macros,
19477 plus offsetof, to remove unportable assumptions about struct layout.
19478 These assumptions hold on all porting targets that I know of, but
19479 they are not guaranteed, they're easy to remove, and removing them
19480 makes further changes easier.
19481
19482 * alloc.c (BLOCK BYTES): Fix typo by changing "ablock" to "ablocks".
19483 This doesn't fix a bug but makes the code clearer.
19484 (string_overrun_cookie): Now const. Use initializers that
19485 don't formally overflow signed char, to avoid warnings.
19486 (allocate_string_data) [GC_CHECK_STRING_OVERRUN]: Fix typo that
19487 can cause Emacs to crash when string overrun checking is enabled.
19488 (allocate_buffer): Don't assume sizeof (struct buffer) is a
19489 multiple of sizeof (EMACS_INT); it need not be, if
19490 alignof(EMACS_INT) < sizeof (EMACS_INT).
19491 (check_sblock, check_string_bytes, check_string_free_list): Protoize.
19492
19493 2011-04-26 Juanma Barranquero <lekktu@gmail.com>
19494
19495 * keyboard.c (QCrtl): Rename from Qrtl. All uses changed.
19496
19497 2011-04-26 Teodor Zlatanov <tzz@lifelogs.com>
19498
19499 * gnutls.c (emacs_gnutls_handshake): Return an error if we're not
19500 supposed to be handshaking. (Bug#8556)
19501 Reported by Paul Eggert <eggert@cs.ucla.edu>.
19502
19503 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
19504
19505 * lisp.h (Qdebug): List symbol.
19506 * eval.c (Qdebug): Restore global linkage.
19507 * keyboard.c (debug-on-event): New variable.
19508 (handle_user_signal): Break into debugger when debug-on-event
19509 matches the current signal symbol.
19510
19511 2011-04-25 Dan Nicolaescu <dann@ics.uci.edu>
19512
19513 * alloc.c (check_sblock, check_string_bytes)
19514 (check_string_free_list): Convert to standard C.
19515
19516 2011-04-25 Teodor Zlatanov <tzz@lifelogs.com>
19517
19518 * w32.c (emacs_gnutls_push): Fix typo.
19519
19520 2011-04-25 Eli Zaretskii <eliz@gnu.org>
19521
19522 * gnutls.c (emacs_gnutls_handshake): Avoid compiler warnings about
19523 "cast to pointer from integer of different size".
19524
19525 Improve doprnt and its use in verror. (Bug#8545)
19526 * doprnt.c (doprnt): Document the set of format control sequences
19527 supported by the function. Use SAFE_ALLOCA instead of always
19528 using `alloca'.
19529
19530 * eval.c (verror): Don't limit the buffer size at size_max-1, that
19531 is one byte too soon. Don't use xrealloc; instead xfree and
19532 xmalloc anew.
19533
19534 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
19535
19536 * gnutls.h: Add GNUTLS_STAGE_CALLBACKS enum to denote we're in the
19537 callbacks stage.
19538
19539 * gnutls.c: Renamed global_initialized to
19540 gnutls_global_initialized. Added internals for the
19541 :verify-hostname-error, :verify-error, and :verify-flags
19542 parameters of `gnutls-boot' and documented those parameters in the
19543 docstring. Start callback support.
19544 (emacs_gnutls_handshake): Add Woe32 support. Retry handshake
19545 unless a fatal error occurred. Call gnutls_alert_send_appropriate
19546 on error. Return error code.
19547 (emacs_gnutls_write): Call emacs_gnutls_handle_error.
19548 (emacs_gnutls_read): Likewise.
19549 (Fgnutls_boot): Return handshake error code.
19550 (emacs_gnutls_handle_error): New function.
19551 (wsaerror_to_errno): Likewise.
19552
19553 * w32.h (emacs_gnutls_pull): Add prototype.
19554 (emacs_gnutls_push): Likewise.
19555
19556 * w32.c (emacs_gnutls_pull): New function for GnuTLS on Woe32.
19557 (emacs_gnutls_push): Likewise.
19558
19559 2011-04-24 Claudio Bley <claudio.bley@gmail.com> (tiny change)
19560
19561 * process.c (wait_reading_process_output): Check if GnuTLS
19562 buffered some data internally if no FDs are set for TLS
19563 connections.
19564
19565 * makefile.w32-in (OBJ2): Add gnutls.$(O).
19566 (LIBS): Link to USER_LIBS.
19567 ($(BLD)/gnutls.$(0)): New target.
19568
19569 2011-04-24 Eli Zaretskii <eliz@gnu.org>
19570
19571 * xdisp.c (handle_single_display_spec): Rename the
19572 display_replaced_before_p argument into display_replaced_p, to
19573 make it consistent with the commentary. Fix typos in the
19574 commentary.
19575
19576 * textprop.c (syms_of_textprop): Remove dead code.
19577 (copy_text_properties): Delete obsolete commentary about an
19578 interface that was deleted long ago. Fix typos in the description
19579 of arguments.
19580
19581 * msdos.c (XMenuActivate, XMenuAddSelection): Adjust argument list
19582 to changes in oldXMenu/XMenu.h from 2011-04-16.
19583 <menu_help_message, prev_menu_help_message>: Constify.
19584 (IT_menu_make_room): menu->help_text is now `const char **';
19585 adjust.
19586
19587 * msdos.h (XMenuActivate, XMenuAddSelection): Adjust prototypes
19588 to changes in oldXMenu/XMenu.h from 2011-04-16.
19589 (struct XMenu): Declare `help_text' `const char **'.
19590
19591 * xfaces.c <Qunspecified>: Make extern again.
19592
19593 * syntax.c: Include sys/types.h before including regex.h, as
19594 required by POSIX.
19595
19596 * doc.c (get_doc_string): Improve the format passed to `error'.
19597
19598 * doprnt.c (doprnt): Improve commentary.
19599
19600 * term.c (init_tty) [MSDOS]: Fix 1st argument to maybe_fatal.
19601
19602 * Makefile.in (TAGS): Depend on $(M_FILE) and $(S_FILE), and scan
19603 them with etags.
19604
19605 * makefile.w32-in (globals.h): Add a dummy recipe, to make any
19606 changes in globals.h immediately force recompilation.
19607 (TAGS): Depend on $(CURDIR)/m/intel386.h and
19608 $(CURDIR)/s/ms-w32.h.
19609 (TAGS-gmake): Scan $(CURDIR)/m/intel386.h and $(CURDIR)/s/ms-w32.h.
19610
19611 * character.c (Fchar_direction): Function deleted.
19612 (syms_of_character): Don't defsubr it.
19613 <char-direction-table>: Deleted.
19614
19615 2011-04-23 Eli Zaretskii <eliz@gnu.org>
19616
19617 Fix doprnt so it could be used again safely in `verror'. (Bug#8435)
19618 * doprnt.c: Include limits.h.
19619 (SIZE_MAX): New macro.
19620 (doprnt): Return a size_t value. 2nd arg is now size_t.
19621 Many local variables are now size_t instead of int or unsigned.
19622 Improve overflow protection. Support `l' modifier for integer
19623 conversions. Support %l conversion. Don't assume an EMACS_INT
19624 argument for integer conversions and for %c.
19625
19626 * lisp.h (doprnt): Restore prototype.
19627
19628 * makefile.w32-in ($(BLD)/callint.$(O)): Depend on
19629 $(SRC)/character.h.
19630
19631 * Makefile.in (base_obj): Add back doprnt.o.
19632
19633 * deps.mk (doprnt.o): Add back prerequisites.
19634 (callint.o): Depend on character.h.
19635
19636 * eval.c (internal_lisp_condition_case): Include the handler
19637 representation in the error message.
19638 (verror): Call doprnt instead of vsnprintf. Fix an off-by-one bug
19639 when breaking from the loop.
19640
19641 * xdisp.c (vmessage): Call doprnt instead of vsnprintf.
19642
19643 * callint.c (Fcall_interactively): When displaying error message
19644 about invalid control letter, pass the character's codepoint, not
19645 a pointer to its multibyte form. Improve display of the character
19646 in octal and display also its hex code.
19647
19648 * character.c (char_string): Use %x to display the (unsigned)
19649 codepoint of an invalid character, to avoid displaying a bogus
19650 negative value.
19651
19652 * font.c (check_otf_features): Pass SDATA of SYMBOL_NAME to
19653 `error', not SYMBOL_NAME itself.
19654
19655 * coding.c (Fencode_sjis_char, Fencode_big5_char): Use %c for
19656 character arguments to `error'.
19657
19658 * charset.c (check_iso_charset_parameter): Fix incorrect argument
19659 to `error' in error message about FINAL_CHAR argument. Make sure
19660 FINAL_CHAR is a character, and use %c when it is passed as
19661 argument to `error'.
19662
19663 2011-04-23 Eli Zaretskii <eliz@gnu.org>
19664
19665 * s/ms-w32.h (localtime): Redirect to sys_localtime.
19666
19667 * w32.c: Include <time.h>.
19668 (sys_localtime): New function.
19669
19670 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
19671
19672 * xdisp.c (init_xdisp): Initialize echo_area_window (Bug#6451).
19673
19674 * buffer.c (syms_of_buffer): Doc fix (Bug#6902).
19675
19676 2011-04-23 Samuel Thibault <sthibault@debian.org> (tiny change)
19677
19678 * sysdep.c (wait_for_termination): On GNU Hurd, kill returns -1 on
19679 zombies (Bug#8467).
19680
19681 2011-04-19 Eli Zaretskii <eliz@gnu.org>
19682
19683 * syntax.h (SETUP_SYNTAX_TABLE_FOR_OBJECT): Fix setting of
19684 gl_state.e_property when gl_state.object is Qt.
19685
19686 * insdel.c (make_gap_larger): Remove limitation of buffer size
19687 to <= INT_MAX.
19688
19689 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
19690
19691 * xdisp.c (lookup_glyphless_char_display)
19692 (produce_glyphless_glyph): Handle cons cell entry in
19693 glyphless-char-display.
19694 (Vglyphless_char_display): Document it.
19695
19696 * term.c (produce_glyphless_glyph): Handle cons cell entry in
19697 glyphless-char-display.
19698
19699 2011-04-17 Chong Yidong <cyd@stupidchicken.com>
19700
19701 * xdisp.c (get_next_display_element): Remove unnecessary ifdefs.
19702
19703 * termhooks.h (FRAME_WINDOW_P): Remove duplicated definitions.
19704
19705 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): Add missing
19706 definition for no-X builds.
19707
19708 2011-04-16 Paul Eggert <eggert@cs.ucla.edu>
19709
19710 Static checks with GCC 4.6.0 and non-default toolkits.
19711
19712 * s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF): Protoize decl.
19713
19714 * process.c (keyboard_bit_set): Define only if SIGIO.
19715 (send_process_trap): Mark it with NO_RETURN if it doesn't return.
19716 (send_process): Repair possible setjmp clobbering.
19717
19718 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Don't pass extra arg to 'fatal'.
19719
19720 * eval.c: Include <stdio.h>, for vsnprintf on non-GNU/Linux hosts.
19721
19722 * data.c (arith_error): Mark with NO_RETURN if it doesn't return.
19723
19724 * alloc.c (bytes_used_when_full, SPARE_MEMORY, BYTES_USED):
19725 Define only if needed.
19726
19727 * sysdep.c (_FILE_OFFSET_BITS): Make this hack even uglier
19728 by pacifying GCC about it. Maybe it's time to retire it?
19729 * xfaces.c (USG, __TIMEVAL__): Likewise.
19730
19731 * dispextern.h (struct redisplay_interface): Rename param
19732 to avoid shadowing.
19733 * termhooks.h (struct terminal): Likewise.
19734 * xterm.c (xembed_send_message): Likewise.
19735
19736 * insdel.c (make_gap_smaller): Define only if
19737 USE_MMAP_FOR_BUFFERS || REL_ALLOC || DOUG_LEA_MALLOC.
19738
19739 * keyboard.c (read_char): Make a var volatile so longjmp won't clobber
19740 it.
19741
19742 * emacs.c (MAX_HEAP_BSS_DIFF, my_edata): Move to where they're used,
19743 so that we aren't warned about unused symbols.
19744
19745 * xfns.c (Fx_file_dialog): Rename local to avoid shadowing.
19746
19747 * xdisp.c (x_produce_glyphs): Mark var as initialized (Bug#8512).
19748
19749 * xfns.c (x_real_positions): Mark locals as initialized.
19750
19751 * xmenu.c (xmenu_show): Don't use uninitialized vars.
19752
19753 * xterm.c: Fix problems found by static analysis with other toolkits.
19754 (toolkit_scroll_bar_interaction): Define and use only if USE_X_TOOLKIT.
19755 (x_dispatch_event): Declare static if USE_GTK, and
19756 define if USE_GTK || USE_X_TOOLKIT.
19757 (SET_SAVED_BUTTON_EVENT): Define only if USE_X_TOOLKIT || USE_GTK.
19758 * xterm.h (x_dispatch_event): Extern only if USE_X_TOOLKIT.
19759 * xterm.c, xterm.h (x_mouse_leave): Bring this function back, but only
19760 if defined HAVE_MENUS && !defined USE_X_TOOLKIT && !defined USE_GTK.
19761
19762 * xmenu.c (menu_help_callback): Pointer type fixes.
19763 Use const pointers when pointing at readonly data. Avoid pointer
19764 signedness clashes.
19765 (FALSE): Remove unused macro.
19766 (update_frame_menubar): Remove unused decl.
19767
19768 * xfns.c (Fx_hide_tip): Move locals to avoid shadowing.
19769
19770 * menu.c (push_submenu_start, push_submenu_end): Do not define unless
19771 USE_X_TOOLKIT || USE_GTK || HAVE_NS || defined HAVE_NTGUI.
19772 (single_menu_item): Rename local to avoid shadowing.
19773
19774 * keyboard.c (make_lispy_event): Remove unused local var.
19775
19776 * frame.c, frame.h (x_get_resource_string): Bring this back, but
19777 only if HAVE_X_WINDOWS && !USE_X_TOOLKIT.
19778
19779 * bitmaps: Change bitmaps from unsigned char back to the X11
19780 compatible char. Avoid the old compiler warnings about
19781 out-of-range initializers by using, for example, '\xab' rather
19782 than 0xab.
19783
19784 * xgselect.c (xgselect_initialize): Check vs interface
19785 even if ! (defined (USE_GTK) || defined (HAVE_GCONF)).
19786
19787 * xmenu.c (xmenu_show): Rename parm to avoid shadowing.
19788
19789 * xterm.c (x_create_toolkit_scroll_bar): Use const * for pointers
19790 to read-only memory.
19791
19792 * fns.c (vector): Remove; this old hack is no longer needed.
19793
19794 * xsmfns.c (create_client_leader_window): Rename shadowing arg.
19795 Remove unused var.
19796 (gdk_x11_set_sm_client_id) [!USE_GTK]: Don't define.
19797
19798 * xrdb.c (x_load_resources): Omit unused local.
19799
19800 * xfns.c (free_frame_menubar, atof): Remove duplicate decls.
19801 (x_window): Rename locals to avoid shadowing.
19802 (USG): Use the kludged USG macro, to pacify gcc.
19803
19804 * xterm.c (x_alloc_nearest_color_for_widget): Remove; unused.
19805 (x_term_init): Remove local to avoid shadowing.
19806
19807 * xfns.c, xterm.c (_XEditResCheckMessages): Protoize decl.
19808
19809 * xdisp.c, dispextern.h (set_vertical_scroll_bar): Now extern if
19810 USE_TOOLKIT_SCROLL_BARS && !USE_GTK, as xterm.c needs it then.
19811
19812 2011-04-16 Eli Zaretskii <eliz@gnu.org>
19813
19814 * gnutls.c (Fgnutls_boot): Don't pass Lisp_Object to `error'.
19815
19816 Fix regex.c, syntax.c and friends for buffers > 2GB.
19817 * syntax.h (struct gl_state_s): Declare character position members
19818 EMACS_INT.
19819
19820 * syntax.c (update_syntax_table): Declare 2nd argument EMACS_INT.
19821
19822 * textprop.c (verify_interval_modification, interval_of):
19823 Declare arguments EMACS_INT.
19824
19825 * intervals.c (adjust_intervals_for_insertion): Declare arguments
19826 EMACS_INT.
19827
19828 * intervals.h (CHECK_TOTAL_LENGTH): Cast to EMACS_INT, not `int'.
19829
19830 * indent.c (Fvertical_motion): Local variable it_start is now
19831 EMACS_INT.
19832
19833 * regex.c (re_match, re_match_2, re_match_2_internal)
19834 (bcmp_translate, regcomp, regexec, print_double_string)
19835 (group_in_compile_stack, re_search, re_search_2, regex_compile)
19836 (re_compile_pattern, re_exec): Declare arguments and local
19837 variables `size_t' and `ssize_t' and return values `regoff_t', as
19838 appropriate.
19839 (POP_FAILURE_REG_OR_COUNT) <pfreg>: Declare `long'.
19840 (CHECK_INFINITE_LOOP) <failure>: Declare `ssize_t'.
19841 <compile_stack_type>: `size' and `avail' are now `size_t'.
19842
19843 * regex.h <regoff_t>: Use ssize_t, not int.
19844 (re_search, re_search_2, re_match, re_match_2): Arguments that
19845 specify buffer/string position and length are now ssize_t and
19846 size_t. Return type is regoff_t.
19847
19848 2011-04-16 Ben Key <bkey76@gmail.com>
19849
19850 * nsfont.m: Fixed bugs in ns_get_family and
19851 ns_descriptor_to_entity that were caused by using free to
19852 deallocate memory blocks that were allocated by xmalloc (via
19853 xstrdup). This caused Emacs to crash when compiled with
19854 XMALLOC_OVERRUN_CHECK defined (when Emacs was configured with
19855 --enable-checking=xmallocoverrun). xfree is now used to
19856 deallocate these memory blocks.
19857
19858 2011-04-15 Paul Eggert <eggert@cs.ucla.edu>
19859
19860 * sysdep.c (emacs_read): Remove unnecessary check vs MAX_RW_COUNT.
19861
19862 emacs_write: Accept and return EMACS_INT for sizes.
19863 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html
19864 et seq.
19865 * gnutls.c, gnutls.h (emacs_gnutls_read, emacs_gnutls_write):
19866 Accept and return EMACS_INT.
19867 (emacs_gnutls_write): Return the number of bytes written on
19868 partial writes.
19869 * sysdep.c, lisp.h (emacs_read, emacs_write): Likewise.
19870 (emacs_read, emacs_write): Remove check for negative size, as the
19871 Emacs source code has been audited now.
19872 * sysdep.c (MAX_RW_COUNT): New macro, to work around kernel bugs.
19873 (emacs_read, emacs_write): Use it.
19874 * process.c (send_process): Adjust to the new signatures of
19875 emacs_write and emacs_gnutls_write. Do not attempt to store
19876 a byte offset into an 'int'; it might overflow.
19877 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00483.html
19878
19879 * sound.c: Don't assume sizes fit in 'int'.
19880 (struct sound_device.period_size, alsa_period_size):
19881 Return EMACS_INT, not int.
19882 (struct sound_device.write, vox_write, alsa_write):
19883 Accept EMACS_INT, not int.
19884 (wav_play, au_play): Use EMACS_INT to store sizes and to
19885 record read return values.
19886
19887 2011-04-15 Ben Key <bkey76@gmail.com>
19888
19889 * keyboard.c (Qundefined): Don't declare static since it is used
19890 in nsfns.m.
19891 * xfaces.c (Qbold, Qexpanded, Qitalic, Qcondensed): Don't declare
19892 static since they are used in nsfont.m.
19893
19894 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
19895
19896 * process.c (Qprocessp): Don't declare static.
19897 * lisp.h (Qprocessp): Declare again.
19898
19899 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
19900
19901 * font.c (Qopentype): Don't make static (used from w32uniscribe.c).
19902
19903 2011-04-14 Paul Eggert <eggert@cs.ucla.edu>
19904
19905 Improve C-level modularity by making more things 'static'.
19906
19907 Don't publish debugger-only interfaces to other modules.
19908 * lisp.h (safe_debug_print, debug_output_compilation_hack):
19909 (verify_bytepos, count_markers): Move decls to the only modules
19910 that need them.
19911 * region-cache.h (pp_cache): Likewise.
19912 * window.h (check_all_windows): Likewise.
19913 * marker.c, print.c, region-cache.c, window.c: Decls moved here.
19914
19915 * sysdep.c (croak): Now static, if
19916 defined TIOCNOTTY || defined USG5 || defined CYGWIN.
19917 * syssignal.h (croak): Declare only if not static.
19918
19919 * alloc.c (refill_memory_reserve): Now static if
19920 !defined REL_ALLOC || defined SYSTEM_MALLOC.
19921 * lisp.h (refill_memory_reserve): Declare only if not static.
19922
19923 * xsettings.c, xsettings.h (xsettings_get_system_normal_font):
19924 Define only if USE_LUCID.
19925
19926 * xrdb.c (x_customization_string, x_rm_string): Now static.
19927
19928 * xmenu.c (x_menu_wait_for_event): Export only if USE_MOTIF.
19929 * xterm.h (x_menu_wait_for_event): Declare only if USE_MOTIF.
19930
19931 * xdisp.c (draw_row_with_mouse_face): Now static.
19932 * dispextern.h (draw_row_with_mouse_fave): Remove decl.
19933
19934 * window.h (check_all_windows): Mark externally visible.
19935
19936 * window.c (window_deletion_count): Now static.
19937
19938 * undo.c: Make symbols static if they're not exported.
19939 (last_undo_buffer, last_boundary_position, pending_boundary):
19940 Now static.
19941
19942 * textprop.c (interval_insert_behind_hooks): Now static.
19943 (interval_insert_in_front_hooks): Likewise.
19944
19945 * term.c: Make symbols static if they're not exported.
19946 (tty_turn_off_highlight, get_tty_terminal, max_frame_cols):
19947 (max_frame_lines, tty_set_terminal_modes):
19948 (tty_reset_terminal_modes, tty_turn_off_highlight):
19949 (get_tty_terminal): Now static.
19950 (term_mouse_moveto): Do not define if HAVE_WINDOW_SYSTEM.
19951 * termhooks.h (term_mouse_moveto): Do not declare if
19952 HAVE_WINDOW_SYSTEM.
19953 * dispextern.h (tty_set_terminal_modes, tty_reset_terminal_modes):
19954 (tty_turn_off_highlight, get_tty_terminal): Remove decls.
19955
19956 * sysdep.c: Make symbols static if they're not exported.
19957 (emacs_get_tty, emacs_set_tty, old_fcntl_flags, old_fcntl_owner):
19958 Now static.
19959 (sigprocmask_set, full_mask): Remove; unused.
19960 (wait_debugging): Mark as visible.
19961 * syssignal.h (SIGFULLMASK, full_mask): Remove decls.
19962 * systty.h (emacs_get_tty, emacs_set_tty): Remove decls.
19963
19964 * syntax.c (syntax_temp): Define only if !__GNUC__.
19965
19966 * sound.c (current_sound_device, current_sound): Now static.
19967
19968 * search.c (searchbufs, searchbuf_head): Now static.
19969
19970 * scroll.c (scroll_cost): Remove; unused.
19971 * dispextern.h (scroll_cost): Remove decl.
19972
19973 * region-cache.h (pp_cache): Mark as externally visible.
19974
19975 * process.c: Make symbols static if they're not exported.
19976 (process_tick, update_tick, create_process, chan_process):
19977 (Vprocess_alist, proc_buffered_char, datagram_access):
19978 (fd_callback_data, send_process_frame, process_sent_to): Now static.
19979 (deactivate_process): Mark defn as static, as well as decl.
19980 * lisp.h (create_process): Remove decl.
19981 * process.h (chan_process, Vprocess_alist): Remove decls.
19982
19983 * print.c: Make symbols static if they're not exported.
19984 (print_depth, new_backquote_output, being_printed, print_buffer):
19985 (print_buffer_size, print_buffer_pos, print_buffer_pos_byte):
19986 (print_interval, print_number_index, initial_stderr_stream):
19987 Now static.
19988 * lisp.h (Fprinc): Remove decl.
19989 (debug_output_compilation_hack): Mark as externally visible.
19990
19991 * sysdep.c (croak): Move decl from here to syssignal.h.
19992 * syssignal.h (croak): Put it here, so the API can be checked when
19993 'croak' is called from dissociate_if_controlling_tty.
19994
19995 * minibuf.c: Make symbols static if they're not exported.
19996 (minibuf_save_list, choose_minibuf_frame): Now static.
19997 * lisp.h (choose_minibuf_frame): Remove decl.
19998
19999 * lisp.h (verify_bytepos, count_markers): Mark as externally visible.
20000
20001 * lread.c: Make symbols static if they're not exported.
20002 (read_objects, initial_obarray, oblookup_last_bucket_number):
20003 Now static.
20004 (make_symbol): Remove; unused.
20005 * lisp.h (initial_obarray, make_symbol): Remove decls.
20006
20007 * keyboard.c: Make symbols static if they're not exported.
20008 (single_kboard, recent_keys_index, total_keys, recent_keys):
20009 (this_command_key_count_reset, raw_keybuf, raw_keybuf_count):
20010 (this_single_command_key_start, echoing, last_auto_save):
20011 (read_key_sequence_cmd, dribble, recursive_edit_unwind):
20012 (command_loop, echo_now, keyboard_init_hook, help_char_p):
20013 (quit_throw_to_read_char, command_loop_2, top_level_1, poll_timer):
20014 (Vlispy_mouse_stem, double_click_count):
20015 Now static.
20016 (force_auto_save_soon): Define only if SIGDANGER.
20017 (ignore_mouse_drag_p): Now static if
20018 !defined HAVE_WINDOW_SYSTEM || defined USE_GTK || defined HAVE_NS.
20019 (print_help): Remove; unused.
20020 (stop_character, last_timer_event): Mark as externally visible.
20021 * keyboard.h (ignore_mouse_drag_p): Declare only if
20022 defined HAVE_WINDOW_SYSTEM && !defined USE_GTK && !defined HAVE_NS.
20023 (echo_now, help_char_p, quit_throw_to_read_char): Remove decls.
20024 * lisp.h (echoing): Remove decl.
20025 (force_auto_save_soon): Declare only if SIGDANGER.
20026 * xdisp.c (redisplay_window): Simplify code, to make it more
20027 obvious that ignore_mouse_drag_p is not accessed if !defined
20028 USE_GTK && !defined HAVE_NS.
20029
20030 * intervals.c: Make symbols static if they're not exported.
20031 (merge_properties_sticky, merge_interval_right, delete_interval):
20032 Now static.
20033 * intervals.h (merge_interval_right, delete_interval): Remove decls.
20034
20035 * insdel.c: Make symbols static if they're not exported.
20036 However, leave prepare_to_modify_buffer alone. It's never
20037 called from outside this function, but that appears to be a bug.
20038 (combine_after_change_list, combine_after_change_buffer):
20039 (adjust_after_replace, signal_before_change): Now static.
20040 (adjust_after_replace_noundo): Remove; unused.
20041 * lisp.h (adjust_after_replace, adjust_after_replace_noundo):
20042 (signal_before_change): Remove decls.
20043
20044 * indent.c (val_compute_motion, val_vmotion): Now static.
20045
20046 * image.c: Make symbols static if they're not exported.
20047 * dispextern.h (x_create_bitmap_from_xpm_data): Do not declare
20048 if USE_GTK.
20049 * image.c (x_create_bitmap_from_xpm_data): Do not define if USE_GTK.
20050 (xpm_color_cache, ct_table, ct_colors_allocated): Now static.
20051
20052 * fringe.c (standard_bitmaps): Now static.
20053 (max_used_fringe_bitmap): Now static, unless HAVE_NS.
20054
20055 * frame.c: Make symbols static if they're not exported.
20056 (x_report_frame_params, make_terminal_frame): Now static.
20057 (get_frame_param): Now static, unless HAVE_NS.
20058 (x_fullscreen_adjust): Define if WINDOWSNT, not if HAVE_WINDOW_SYSTEM.
20059 (x_get_resource_string): Remove; not used.
20060 * frame.h (make_terminal_frame, x_report_frame_params):
20061 (x_get_resource_string); Remove decls.
20062 (x_fullscreen_adjust): Declare only if WINDOWSNT.
20063 * lisp.h (get_frame_param): Declare only if HAVE_NS.
20064
20065 * font.c, fontset.c: Make symbols static if they're not exported.
20066 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): New macro.
20067 (FACE_SUITABLE_FOR_CHAR_P): Use it.
20068 * font.c (font_close_object): Now static.
20069 * font.h (font_close_object): Remove.
20070 * fontset.c (FONTSET_OBJLIST): Remove.
20071 (free_realized_fontset) #if-0 the body, which does nothing.
20072 (face_suitable_for_char_p): #if-0, as it's never called.
20073 * fontset.h (face_suitable_for_char_p): Remove decl.
20074 * xfaces.c (face_at_string_position):
20075 Use FACE_SUITABLE_FOR_ASCII_CHAR_P, not FACE_SUITABLE_FOR_CHAR_P,
20076 since 0 is always ASCII.
20077
20078 * fns.c (weak_hash_tables): Now static.
20079
20080 * fileio.c: Make symbols static if they're not exported.
20081 (auto_saving, auto_save_mode_bits, auto_save_error_occurred):
20082 (Vwrite_region_annotation_buffers): Now static.
20083
20084 * eval.c: Make symbols static if they're not exported.
20085 (backtrace_list, lisp_eval_depth, when_entered_debugger): Now static.
20086 * lisp.h (backtrace_list): Remove decl.
20087
20088 * emacs.c: Make symbols static if they're not exported.
20089 (malloc_state_ptr, malloc_using_checking, syms_of_emacs):
20090 (fatal_error_code, fatal_error_signal_hook, standard_args):
20091 Now static.
20092 (fatal_error_signal): Now static, unless FLOAT_CATCH_SIGKILL.
20093 (DEFINE_DUMMY_FUNCTION): Mark function as externally visible.
20094 (__CTOR_LIST__, __DTOR_LIST__): Now externally visible.
20095 * lisp.h (fatal_error_signal_hook): Remove decl.
20096 (fatal_error_signal): Declare only if FLOAT_CATCH_SIGKILL.
20097
20098 * editfns.c: Move a (normally-unused) function to its only use.
20099 * editfns.c, lisp.h (get_operating_system_release): Remove.
20100 * process.c (init_process) [DARWIN_OS]: Do it inline, as it is not
20101 worth the hassle of breaking this out.
20102
20103 * xterm.c: Make symbols static if they're not exported.
20104 (x_raise_frame, x_lower_frame, x_wm_set_window_state):
20105 (x_wm_set_icon_pixmap, x_initialize, XTread_socket_fake_io_error):
20106 (x_destroy_window, x_delete_display):
20107 Now static.
20108 (x_dispatch_event): Now static if ! (USE_MOTIF || USE_X_TOOLKIT).
20109 (x_mouse_leave): Remove; unused.
20110 * xterm.h (x_display_info_for_name, x_raise_frame, x_lower_frame):
20111 (x_destroy_window, x_wm_set_window_state, x_wm_set_icon_pixmap):
20112 (x_delete_display, x_initialize, x_set_border_pixel, x_screen_planes):
20113 Remove decls.
20114 (x_mouse_leave): Declare only if WINDOWSNT.
20115 (x_dispatch_event): Declare only if USE_MOTIF or USE_X_TOOLKIT.
20116 (xic_create_fontsetname): Declare only if HAVE_X_WINDOWS &&
20117 USE_X_TOOLKIT.
20118
20119 * ftxfont.c: Make symbols static if they're not exported.
20120 (ftxfont_driver): Export only if !defined HAVE_XFT && def8ined
20121 HAVE_FREETYPE.
20122 * font.h (ftxfont_driver): Likewise.
20123
20124 * xfns.c: Make symbols static if they're not exported.
20125 (x_last_font_name, x_display_info_for_name):
20126 (x_set_foreground_color, x_set_background_color, x_set_mouse_color):
20127 (x_set_cursor_color, x_set_border_pixel, x_set_border_color):
20128 (x_set_cursor_type, x_set_icon_type, x_set_icon_name):
20129 (x_set_scroll_bar_foreground, x_set_scroll_bar_background):
20130 (x_explicitly_set_name, x_set_title, xic_defaut_fontset, tip_timer):
20131 (last_show_tip_args): Now static.
20132 (xic_defaut_fontset, xic_create_fontsetname): Define only if
20133 defined HAVE_X_WINDOWS && defined USE_X_TOOLKIT
20134 (x_screen_planes): Remove; unused.
20135 * dispextern.h (x_screen_planes): Remove decl.
20136
20137 * dispnew.c: Make symbols static if they're not exported.
20138 * dispextern.h (redraw_garbaged_frames, scrolling):
20139 (increment_row_positions): Remove.
20140 * dispnew.c (new_glyph_matrix, increment_row_positions, scrolling):
20141 (delayed_size_change, glyph_matrix_count, glyph_pool_count):
20142 Now static.
20143 (redraw_garbaged_frames): Remove; unused.
20144
20145 * xfaces.c: Make symbols static if they're not exported.
20146 * dispextern.h (ascii_face_of_lisp_face, free_realized_face):
20147 Remove decls.
20148 * xterm.h (defined_color): Remove decls.
20149 (x_free_dpy_colors): Declare only if USE_X_TOOLKIT.
20150 * xfaces.c (tty_suppress_bold_inverse_default_colors_p):
20151 (menu_face_changed_default, defined_color, free_realized_face):
20152 (x_free_dpy_colors): Define only if USE_X_TOOLKIT.
20153 (ascii_face_of_lisp_face): Remove; unused.
20154
20155 * xdisp.c: Make symbols static if they're not exported.
20156 * dispextern.h (scratch_glyph_row, window_box_edges):
20157 (glyph_to_pixel_coords, set_cursor_from_row):
20158 (get_next_display_element, set_iterator_to_next):
20159 (highlight_trailing_whitespace, frame_to_window_pixel_xy):
20160 (show_mouse_face): Remove decls
20161 * frame.h (message_buf_print): Likewise.
20162 * lisp.h (pop_message, set_message, check_point_in_composition):
20163 Likewise.
20164 * xterm.h (set_vertical_scroll_bar): Likewise.
20165 * xdisp.c (list_of_error, Vmessage_stack, line_number_displayed):
20166 (message_buf_print, scratch_glyph_row, displayed_buffer):
20167 (set_iterator_to_next, pop_message, set_message, set_cursor_from_row):
20168 (get_next_display_element, show_mouse_face, window_box_edges):
20169 (frame_to_window_pixel_xy, check_point_in_composition):
20170 (set_vertical_scroll_bar, highlight_trailing_whitespace): Now static.
20171 (glyph_to_pixel_coords): Remove; unused.
20172
20173 * dired.c (file_name_completion): Now static.
20174
20175 * dbusbind.c (xd_in_read_queued_messages): Now static.
20176
20177 * lisp.h (circular_list_error, FOREACH): Remove; unused.
20178 * data.c (circular_list_error): Remove.
20179
20180 * commands.h (last_point_position, last_point_position_buffer):
20181 (last_point_position_window): Remove decls.
20182 * keyboard.c: Make these variables static.
20183
20184 * coding.h (coding, code_convert_region, encode_coding_gap):
20185 Remove decls.
20186 * coding.c (Vsjis_coding_system, Vbig5_coding_system):
20187 (iso_code_class, detect_coding, code_convert_region): Now static.
20188 (encode_coding_gap): Remove; unused.
20189
20190 * chartab.c (chartab_chars, chartab_bits): Now static.
20191
20192 * charset.h (charset_iso_8859_1): Remove decl.
20193 * charset.c (charset_iso_8859_1, charset_emacs, map_charset_for_dump):
20194 Now static.
20195
20196 * ccl.h (check_ccl_update, Vccl_program_table): Remove decls.
20197 * ccl.c (Vccl_program_table): Now static.
20198 (check_ccl_update): Remove; unused.
20199
20200 * category.c (SET_CATEGORY_SET, set_category_set): Move here.
20201 * category.h: ... from here.
20202 * category.c (check_category_table, set_category_set): Now static.
20203
20204 * casetab.c (Vascii_upcase_table, Vascii_eqv_table): Now static.
20205 * lisp.h: Remove these decls.
20206
20207 * buffer.c (buffer_count): Remove unused var.
20208
20209 * bidi.c (bidi_dump_cached_states): Mark as externally visible,
20210 so that it's not optimized away.
20211 (bidi_ignore_explicit_marks_for_paragraph_level): Likewise.
20212 * dispextern.h (bidi_dump_cached_states): Remove, since it's
20213 exported only to the debugger.
20214
20215 * atimer.c (alarm_signal_handler, run_all_atimers): Now static.
20216 * atimer.h (run_all_atimers): Remove; not exported.
20217
20218 font.c: Make copy_font_spec and merge_font_spec ordinary C functions.
20219 * font.c (copy_font_spec): Rename from Fcopy_font_spec, since it
20220 was inaccessible from Lisp.
20221 (merge_font_spec): Likewise, renaming from Fmerge_font_spec.
20222 * font.c, font.h, fontset.c, xfaces.c, xfont.c: Change all uses.
20223
20224 alloc.c: Import and export fewer symbols, and remove unused items.
20225 * lisp.h (suppress_checking, die): Declare only if ENABLE_CHECKING
20226 is defined.
20227 (suppress_checking): Add EXTERNALLY_VISIBLE attribute, so that
20228 it's not optimized away by whole-program optimization.
20229 (message_enable_multibyte, free_misc): Remove.
20230 (catchlist, handlerlist, mark_backtrace):
20231 Declare only if BYTE_MARK_STACK.
20232 (mark_byte_stack): Likewise, fixing a ifdef-vs-if typo.
20233 * alloc.c (pure): Export only if VIRT_ADDR_VARIES is defined.
20234 (message_enable_multibyte): Remove decl.
20235 (free_misc, interval_free_list, float_block, float_block_index):
20236 (n_float_blocks, float_free_list, cons_block, cons_block_index):
20237 (cons_free_list, last_marked_index):
20238 Now static.
20239 (suppress_checking, die): Define only if ENABLE_CHECKING is defined.
20240 * eval.c (catchlist, handlerlist): Export only if BYTE_MARK_STACK.
20241 (mark_backtrace): Define only if BYTE_MARK_STACK.
20242 * xdisp.c (message_enable_multibyte): Now static.
20243
20244 Declare Lisp_Object Q* variables to be 'static' if not exported.
20245 This makes it easier for human readers (and static analyzers)
20246 to see whether these variables are used from other modules.
20247 * alloc.c, buffer.c, bytecode.c, callint.c, casetab.c, category.c:
20248 * ccl.c, character.c, charset.c, cmds.c, coding.c, composite.c:
20249 * data.c, dbusbind.c, dired.c, editfns.c, eval.c, fileio.c, fns.c:
20250 * font.c, frame.c, fringe.c, ftfont.c, image.c, keyboard.c, keymap.c:
20251 * lread.c, macros.c, minibuf.c, print.c, process.c, search.c:
20252 * sound.c, syntax.c, textprop.c, window.c, xdisp.c, xfaces.c, xfns.c:
20253 * xmenu.c, xselect.c:
20254 Declare Q* vars static if they are not used in other modules.
20255 * ccl.h, character.h, charset.h, coding.h, composite.h, font.h:
20256 * frame.h, intervals.h, keyboard.h, lisp.h, process.h, syntax.h:
20257 Remove decls of unexported vars.
20258 * keyboard.h (EVENT_HEAD_UNMODIFIED): Remove now-unused macro.
20259
20260 * lisp.h (DEFINE_FUNC): Make sname 'static'.
20261
20262 Make Emacs functions such as Fatom 'static' by default.
20263 This makes it easier for human readers (and static analyzers)
20264 to see whether these functions can be called from other modules.
20265 DEFUN now defines a static function. To make the function external
20266 so that it can be used in other C modules, use the new macro DEFUE.
20267 * lisp.h (Funibyte_char_to_multibyte, Fsyntax_table_p):
20268 (Finit_image_library):
20269 (Feval_region, Fbacktrace, Ffetch_bytecode, Fswitch_to_buffer):
20270 (Ffile_executable_p, Fmake_symbolic_link, Fcommand_execute):
20271 (Fget_process, Fdocumentation_property, Fbyte_code, Ffile_attributes):
20272 Remove decls, since these functions are now static.
20273 (Funintern, Fget_internal_run_time): New decls, since these functions
20274 were already external.
20275
20276 * alloc.c, buffer.c, callint.c, callproc.c, casefiddle.c, casetab.c:
20277 * ccl.c, character.c, chartab.c, cmds.c, coding.c, data.c, dispnew.c:
20278 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, floatfns.c:
20279 * fns.c, font.c, fontset.c, frame.c, image.c, indent.c:
20280 * keyboard.c, keymap.c, lread.c:
20281 * macros.c, marker.c, menu.c, minibuf.c, print.c, process.c, search.c:
20282 * syntax.c, term.c, terminal.c, textprop.c, undo.c:
20283 * window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xsettings.c:
20284 Mark functions with DEFUE instead of DEFUN,
20285 if they are used in other modules.
20286 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): New forward
20287 decls for now-static functions.
20288 * buffer.h (Fdelete_overlay): Remove decl.
20289 * callproc.c (Fgetenv_internal): Mark as internal.
20290 * composite.c (Fremove_list_of_text_properties): Remove decl.
20291 (Fcomposition_get_gstring): New forward static decl.
20292 * composite.h (Fcomposite_get_gstring): Remove decl.
20293 * dired.c (Ffile_attributes): New forward static decl.
20294 * doc.c (Fdocumntation_property): New forward static decl.
20295 * eval.c (Ffetch_bytecode): New forward static decl.
20296 (Funintern): Remove extern decl; now in .h file where it belongs.
20297 * fileio.c (Fmake_symbolic_link): New forward static decl.
20298 * image.c (Finit_image_library): New forward static decl.
20299 * insdel.c (Fcombine_after_change_execute): Make forward decl static.
20300 * intervals.h (Fprevious_property_change):
20301 (Fremove_list_of_text_properties): Remove decls.
20302 * keyboard.c (Fthis_command_keys): Remove decl.
20303 (Fcommand_execute): New forward static decl.
20304 * keymap.c (Flookup_key): New forward static decl.
20305 (Fcopy_keymap): Now static.
20306 * keymap.h (Flookup_key): Remove decl.
20307 * process.c (Fget_process): New forward static decl.
20308 (Fprocess_datagram_address): Mark as internal.
20309 * syntax.c (Fsyntax_table_p): New forward static decl.
20310 (skip_chars): Remove duplicate decl.
20311 * textprop.c (Fprevious_property_change): New forward static decl.
20312 * window.c (Fset_window_fringes, Fset_window_scroll_bars):
20313 Now internal.
20314 (Fset_window_margins, Fset_window_vscroll): New forward static decls.
20315 * window.h (Fset_window_vscroll, Fset_window_margins): Remove decls.
20316
20317 * editfns.c (Fformat): Remove unreachable code.
20318
20319 2011-04-14 Andreas Schwab <schwab@linux-m68k.org>
20320
20321 * fileio.c (Finsert_file_contents): Fix typo in 2005-05-13
20322 change. (Bug#8496)
20323
20324 2011-04-13 Eli Zaretskii <eliz@gnu.org>
20325
20326 * xdisp.c (handle_invisible_prop): Don't call bidi_paragraph_init
20327 when at ZV. (Bug#8487)
20328
20329 2011-04-12 Andreas Schwab <schwab@linux-m68k.org>
20330
20331 * charset.c (Fclear_charset_maps): Use xfree instead of free.
20332 (Bug#8437)
20333 * keyboard.c (parse_tool_bar_item): Likewise.
20334 * sound.c (sound_cleanup, alsa_close): Likewise.
20335 * termcap.c (tgetent): Likewise.
20336 * xfns.c (x_default_font_parameter): Likewise.
20337 * xsettings.c (read_and_apply_settings): Likewise.
20338
20339 * alloc.c (overrun_check_malloc, overrun_check_realloc)
20340 (overrun_check_free): Protoize.
20341
20342 2011-04-12 Paul Eggert <eggert@cs.ucla.edu>
20343
20344 * sysdep.c (emacs_read, emacs_write): Check for negative sizes
20345 since callers should never pass a negative size.
20346 Change the signature to match that of plain 'read' and 'write'; see
20347 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00397.html>.
20348 * lisp.h: Update prototypes of emacs_write and emacs_read.
20349
20350 2011-04-11 Eli Zaretskii <eliz@gnu.org>
20351
20352 * xdisp.c (redisplay_window): Don't try to determine the character
20353 position of the scroll margin if the window start point w->startp
20354 is outside the buffer's accessible region. (Bug#8468)
20355
20356 2011-04-10 Eli Zaretskii <eliz@gnu.org>
20357
20358 Fix write-region and its subroutines for buffers > 2GB.
20359 * fileio.c (a_write, e_write): Modify declaration of arguments and
20360 local variables to support buffers larger than 2GB.
20361 (Fcopy_file): Use EMACS_INT for return value of emacs_read.
20362
20363 * sysdep.c (emacs_write, emacs_read): Use ssize_t for last
20364 argument, local variables, and return value.
20365
20366 * lisp.h: Update prototypes of emacs_write and emacs_read.
20367
20368 * sound.c (vox_write): Use ssize_t for return value of emacs_write.
20369
20370 2011-04-10 Paul Eggert <eggert@cs.ucla.edu>
20371
20372 * xdisp.c (vmessage): Use memchr, not strnlen, which some hosts lack.
20373
20374 Fix more problems found by GCC 4.6.0's static checks.
20375
20376 * xdisp.c (vmessage): Use a better test for character truncation.
20377
20378 * charset.c (load_charset_map): <, not <=, for optimization,
20379 and to avoid potential problems with integer overflow.
20380 * chartab.c (sub_char_table_set_range, char_table_set_range): Likewise.
20381 * casetab.c (set_identity, shuffle): Likewise.
20382 * editfns.c (Fformat): Likewise.
20383 * syntax.c (skip_chars): Likewise.
20384
20385 * xmenu.c (set_frame_menubar): Allocate smaller local vectors.
20386 This also lets GCC 4.6.0 generate slightly better loop code.
20387
20388 * callint.c (Fcall_interactively): <, not <=, for optimization.
20389 (Fcall_interactively): Count the number of arguments produced,
20390 not the number of arguments given. This is simpler and lets GCC
20391 4.6.0 generate slightly better code.
20392
20393 * ftfont.c: Distingish more carefully between FcChar8 and char.
20394 The previous code passed unsigned char * to a functions like
20395 strlen and xstrcasecmp that expect char *, which does not
20396 conform to the C standard.
20397 (get_adstyle_property, ftfont_pattern_entity): Use FcChar8 for
20398 arguments to FcPatternGetString, and explicitly cast FcChar8 * to
20399 char * when the C standard requires it.
20400
20401 * keyboard.c (read_char): Remove unused var.
20402
20403 * eval.c: Port to Windows vsnprintf (Bug#8435).
20404 Include <limits.h>.
20405 (SIZE_MAX): Define if the headers do not.
20406 (verror): Do not give up if vsnprintf returns a negative count.
20407 Instead, grow the buffer. This ports to Windows vsnprintf, which
20408 does not conform to C99. Problem reported by Eli Zaretskii.
20409 Also, simplify the allocation scheme, by avoiding the need for
20410 calling realloc, and removing the ALLOCATED variable.
20411
20412 * eval.c (verror): Initial buffer size is 4000 (not 200) bytes.
20413
20414 Remove invocations of doprnt, as Emacs now uses vsnprintf.
20415 But keep the doprint source code for now, as we might revamp it
20416 and use it again (Bug#8435).
20417 * lisp.h (doprnt): Remove.
20418 * Makefile.in (base_obj): Remove doprnt.o.
20419 * deps.mk (doprnt.o): Remove.
20420
20421 error: Print 32- and 64-bit integers portably (Bug#8435).
20422 Without this change, on typical 64-bit hosts error ("...%d...", N)
20423 was used to print both 32- and 64-bit integers N, which relied on
20424 undefined behavior.
20425 * lisp.h, m/amdx86-64.h, m/ia64.h, m/ibms390x.h (pEd): New macro.
20426 * lisp.h (error, verror): Mark as printf-like functions.
20427 * eval.c (verror): Use vsnprintf, not doprnt, to do the real work.
20428 Report overflow in size calculations when allocating printf buffer.
20429 Do not truncate output string at its first null byte.
20430 * xdisp.c (vmessage): Use vsnprintf, not doprnt, to do the real work.
20431 Truncate the output at a character boundary, since vsnprintf does not
20432 do that.
20433 * charset.c (check_iso_charset_parameter): Convert internal
20434 character to string before calling 'error', since %c now has the
20435 printf meaning.
20436 * coding.c (Fdecode_sjis_char, Fdecode_big5_char): Avoid int
20437 overflow when computing char to be passed to 'error'. Do not
20438 pass Lisp_Object to 'error'; pass the integer instead.
20439 * nsfns.m (Fns_do_applescript): Use int, not long, since it's
20440 formatted with plain %d.
20441
20442 * eval.c (internal_lisp_condition_case): Don't pass spurious arg.
20443
20444 * keyboard.c (access_keymap_keyremap): Print func name, not garbage.
20445
20446 * coding.c (Fdecode_sjis_char): Don't assume CODE fits in int.
20447
20448 * xterm.c (x_catch_errors): Remove duplicate declaration.
20449
20450 * term.c (maybe_fatal): Mark its 3rd arg as a printf format, too.
20451
20452 * xdisp.c, lisp.h (message_nolog): Remove; unused.
20453
20454 2011-04-10 Jim Meyering <meyering@redhat.com>
20455
20456 use ssize_t and size_t for read- and write-like emacs_gnutls_* functions
20457 * gnutls.c (emacs_gnutls_read): Adjust signature to be more read-like:
20458 return ssize_t not "int", and use size_t as the buffer length.
20459 (emacs_gnutls_write): Likewise, and make the buffer pointer "const".
20460 * gnutls.h: Update declarations.
20461 * process.c (read_process_output): Use ssize_t, to match.
20462 (send_process): Likewise.
20463
20464 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
20465
20466 * image.c (Fimagemagick_types): Doc fix, and comment cleanup.
20467
20468 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
20469
20470 * ftfont.c (get_adstyle_property, ftfont_pattern_entity):
20471 Use unsigned char, to match FcChar8 type definition.
20472
20473 * xterm.c (handle_one_xevent):
20474 * xmenu.c (create_and_show_popup_menu):
20475 * xselect.c (x_decline_selection_request)
20476 (x_reply_selection_request): Avoid type-punned deref of X events.
20477
20478 2011-04-09 Eli Zaretskii <eliz@gnu.org>
20479
20480 Fix some uses of `int' instead of EMACS_INT.
20481 * search.c (string_match_1, fast_string_match)
20482 (fast_c_string_match_ignore_case, fast_string_match_ignore_case)
20483 (scan_buffer, find_next_newline_no_quit)
20484 (find_before_next_newline, search_command, Freplace_match)
20485 (Fmatch_data): Make some `int' variables be EMACS_INT.
20486
20487 * xdisp.c (display_count_lines): 3rd argument and return value now
20488 EMACS_INT. All callers changed.
20489 (pint2hrstr): Last argument is now EMACS_INT.
20490
20491 * coding.c (detect_coding_utf_8, detect_coding_emacs_mule)
20492 (detect_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
20493 (detect_coding_ccl, detect_coding_charset, decode_coding_utf_8)
20494 (decode_coding_utf_16, decode_coding_emacs_mule)
20495 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
20496 (decode_coding_ccl, decode_coding_charset)
20497 <consumed_chars, consumed_chars_base>: Declare EMACS_INT.
20498 (decode_coding_iso_2022, decode_coding_emacs_mule)
20499 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
20500 <char_offset, last_offset>: Declare EMACS_INT.
20501 (encode_coding_utf_8, encode_coding_utf_16)
20502 (encode_coding_emacs_mule, encode_invocation_designation)
20503 (encode_designation_at_bol, encode_coding_iso_2022)
20504 (encode_coding_sjis, encode_coding_big5, encode_coding_ccl)
20505 (encode_coding_raw_text, encode_coding_charset) <produced_chars>:
20506 Declare EMACS_INT.
20507 (ASSURE_DESTINATION): Declare more_bytes EMACS_INT.
20508 (encode_invocation_designation): Last argument P_NCHARS is now
20509 EMACS_INT.
20510 (decode_eol): Declare pos_byte, pos, and pos_end EMACS_INT.
20511 (produce_chars): from_nchars and to_nchars are now EMACS_INT.
20512
20513 * coding.h (struct coding_system) <head_ascii>: Declare EMACS_INT.
20514 All users changed.
20515
20516 * ccl.c (Fccl_execute_on_string): Declare some variables
20517 EMACS_INT.
20518
20519 2011-04-08 Samuel Thibault <sthibault@debian.org> (tiny change)
20520
20521 * term.c (init_tty): Fix incorrect ifdef placement (Bug#8450).
20522
20523 2011-03-19 Christoph Scholtes <cschol2112@googlemail.com>
20524
20525 * process.c (Fformat_network_address): Doc fix.
20526
20527 2011-04-08 T.V. Raman <tv.raman.tv@gmail.com> (tiny change)
20528
20529 * xml.c (parse_region): Avoid creating spurious whitespace nodes.
20530
20531 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
20532
20533 * keyboard.c (read_char): Call Lisp function help-form-show,
20534 instead of using internal_with_output_to_temp_buffer.
20535 (Qhelp_form_show): New var.
20536 (syms_of_keyboard): Use DEFSYM macro.
20537
20538 * print.c (internal_with_output_to_temp_buffer): Function deleted.
20539
20540 * lisp.h (internal_with_output_to_temp_buffer): Remove prototype.
20541
20542 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
20543
20544 * process.c (Flist_processes): Remove to Lisp.
20545 (list_processes_1): Delete.
20546
20547 2011-04-06 Eli Zaretskii <eliz@gnu.org>
20548
20549 * msdos.c (careadlinkat, careadlinkatcwd): MS-DOS replacements.
20550
20551 * w32.c (careadlinkat, careadlinkatcwd): New always-fail stubs.
20552
20553 2011-04-06 Paul Eggert <eggert@cs.ucla.edu>
20554
20555 Fix more problems found by GCC 4.6.0's static checks.
20556
20557 * xmenu.c (Fx_popup_dialog): Don't assume string is free of formats.
20558
20559 * menu.c (Fx_popup_menu): Don't assume error_name lacks printf formats.
20560
20561 * lisp.h (message, message_nolog, fatal): Mark as printf-like.
20562
20563 * xdisp.c (vmessage): Mark as a printf-like function.
20564
20565 * term.c (vfatal, maybe_fatal): Mark as printf-like functions.
20566
20567 * sound.c (sound_warning): Don't crash if arg contains a printf format.
20568
20569 * image.c (tiff_error_handler, tiff_warning_handler): Mark as
20570 printf-like functions.
20571 (tiff_load): Add casts to remove these marks before passing them
20572 to system-supplied API.
20573
20574 * eval.c (Fsignal): Remove excess argument to 'fatal'.
20575
20576 * coding.c (EMIT_ONE_BYTE, EMIT_TWO_BYTES): Use unsigned, not int.
20577 This avoids several warnings with gcc -Wstrict-overflow.
20578 (DECODE_COMPOSITION_RULE): If the rule is invalid, goto invalid_code
20579 directly, rather than having caller test rule sign. This avoids
20580 some unnecessary tests.
20581 * composite.h (COMPOSITION_ENCODE_RULE_VALID): New macro.
20582 (COMPOSITION_ENCODE_RULE): Arguments now must be valid. This
20583 affects only one use, in DECODE_COMPOSITION_RULE, which is changed.
20584
20585 * xfont.c (xfont_text_extents): Remove var that was set but not used.
20586 (xfont_open): Avoid unnecessary tests.
20587
20588 * composite.c (composition_gstring_put_cache): Use unsigned integer.
20589
20590 * composite.h, composite.c (composition_gstring_put_cache):
20591 Use EMACS_INT, not int, for length.
20592
20593 * composite.h (COMPOSITION_DECODE_REFS): New macro,
20594 breaking out part of COMPOSITION_DECODE_RULE.
20595 (COMPOSITION_DECODE_RULE): Use it.
20596 * composite.c (get_composition_id): Remove unused local vars,
20597 by using the new macro.
20598
20599 * textprop.c (set_text_properties_1): Change while to do-while,
20600 since the condition is always true at first.
20601
20602 * intervals.c (graft_intervals_into_buffer): Mark var as used.
20603 (interval_deletion_adjustment): Return unsigned value.
20604 All uses changed.
20605
20606 * process.c (list_processes_1, create_pty, read_process_output):
20607 (exec_sentinel): Remove vars that were set but not used.
20608 (create_pty): Remove unnecessary "volatile"s.
20609 (Fnetwork_interface_info): Avoid possibility of int overflow.
20610 (read_process_output): Do adaptive read buffering even if carryover.
20611 (read_process_output): Simplify nbytes computation if buffered.
20612
20613 * bytecode.c (exec_byte_code): Rename local to avoid shadowing.
20614
20615 * syntax.c (scan_words): Remove var that was set but not used.
20616 (update_syntax_table): Use unsigned instead of int.
20617
20618 * lread.c (lisp_file_lexically_bound_p): Use ints rather than endptrs.
20619 (lisp_file_lexically_bound_p, read1): Use unsigned instead of int.
20620 (safe_to_load_p): Make the end-of-loop test the inverse of the in-loop.
20621
20622 * print.c (print_error_message): Avoid int overflow.
20623
20624 * font.c (font_list_entities): Redo for clarity,
20625 so that reader need not know FONT_DPI_INDEX + 1 == FONT_SPACING_INDEX.
20626
20627 * font.c (font_find_for_lface, Ffont_get_glyphs): Remove unused vars.
20628 (font_score): Avoid potential overflow in diff calculation.
20629
20630 * fns.c (substring_both): Remove var that is set but not used.
20631 (sxhash): Redo loop for clarity and to avoid wraparound warning.
20632
20633 * eval.c (funcall_lambda): Rename local to avoid shadowing.
20634
20635 * alloc.c (mark_object_loop_halt, mark_object): Use size_t, not int.
20636 Otherwise, GCC 4.6.0 optimizes the loop check away since the check
20637 can always succeed if overflow has undefined behavior.
20638
20639 * search.c (boyer_moore, wordify): Remove vars set but not used.
20640 (wordify): Omit three unnecessary tests.
20641
20642 * indent.c (MULTIBYTE_BYTES_WIDTH): Don't compute wide_column.
20643 All callers changed. This avoids the need for an unused var.
20644
20645 * casefiddle.c (casify_region): Remove var that is set but not used.
20646
20647 * dired.c (file_name_completion): Remove var that is set but not used.
20648
20649 * fileio.c (Finsert_file_contents): Make EOF condition clearer.
20650
20651 * fileio.c (Finsert_file_contents): Avoid signed integer overflow.
20652 (Finsert_file_contents): Remove unnecessary code checking fd.
20653
20654 * minibuf.c (read_minibuf_noninteractive): Use size_t for sizes.
20655 Check for integer overflow on size calculations.
20656
20657 * buffer.c (Fprevious_overlay_change): Remove var that is set
20658 but not used.
20659
20660 * keyboard.c (menu_bar_items, read_char_minibuf_menu_prompt):
20661 Remove vars that are set but not used.
20662 (timer_check_2): Don't assume timer-list and idle-timer-list are lists.
20663 (timer_check_2): Mark vars as initialized.
20664
20665 * gtkutil.c (xg_get_file_with_chooser): Mark var as initialized.
20666
20667 * image.c (lookup_image): Remove var that is set but not used.
20668 (xbm_load): Use parse_p, for gcc -Werror=unused-but-set-variable.
20669
20670 * fontset.c (Finternal_char_font, Ffontset_info): Remove vars
20671 that are set but not used.
20672
20673 * xfns.c (make_invisible_cursor): Don't return garbage
20674 if XCreateBitmapFromData fails (Bug#8410).
20675
20676 * xselect.c (x_get_local_selection, x_handle_property_notify):
20677 Remove vars that are set but not used.
20678
20679 * xfns.c (x_create_tip_frame): Remove var that is set but not used.
20680 (make_invisible_cursor): Initialize a possibly-uninitialized variable.
20681
20682 * xterm.c (x_scroll_bar_to_input_event) [!USE_GTK]:
20683 Remove var that is set but not used.
20684 (scroll_bar_windows_size): Now size_t, not int.
20685 (x_send_scroll_bar_event): Use size_t, not int, for sizes.
20686 Check for overflow.
20687
20688 * xfaces.c (realize_named_face): Remove vars that are set but not used.
20689 (map_tty_color) [!defined MSDOS]: Likewise.
20690
20691 * term.c (tty_write_glyphs): Use size_t; this avoids overflow warning.
20692
20693 * coding.c: Remove vars that are set but not used.
20694 (DECODE_COMPOSITION_RULE): Remove 2nd arg, which is unused.
20695 All callers changed.
20696 (decode_coding_utf_8, decode_coding_utf_16 decode_coding_emacs_mule):
20697 (decode_coding_iso_2022, encode_coding_sjis, encode_coding_big5):
20698 (decode_coding_charset): Remove vars that are set but not used.
20699
20700 * bytecode.c (Fbyte_code) [!defined BYTE_CODE_SAFE]: Remove var
20701 that is set but not used.
20702
20703 * print.c (print_object): Remove var that is set but not used.
20704
20705 Replace 2 copies of readlink code with 1 gnulib version (Bug#8401).
20706 The gnulib version avoids calling malloc in the usual case,
20707 and on 64-bit hosts doesn't have some arbitrary 32-bit limits.
20708 * fileio.c (Ffile_symlink_p): Use emacs_readlink.
20709 * filelock.c (current_lock_owner): Likewise.
20710 * lisp.h (READLINK_BUFSIZE, emacs_readlink): New function.
20711 * sysdep.c: Include allocator.h, careadlinkat.h.
20712 (emacs_no_realloc_allocator): New static constant.
20713 (emacs_readlink): New function.
20714 * deps.mk (sysdep.o): Depend on ../lib/allocator.h and on
20715 ../lib/careadlinkat.h.
20716
20717 2011-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
20718
20719 * keyboard.c (safe_run_hook_funcall): Fix last change (don't stop at the
20720 first non-nil return value).
20721
20722 2011-04-03 Jan Djärv <jan.h.d@swipnet.se>
20723
20724 * nsterm.m (ns_update_auto_hide_menu_bar): Define MAC_OS_X_VERSION_10_6
20725 if not defined (Bug#8403).
20726
20727 2011-04-02 Juanma Barranquero <lekktu@gmail.com>
20728
20729 * xdisp.c (display_count_lines): Remove parameter `start',
20730 unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
20731 (get_char_face_and_encoding): Remove parameter `multibyte_p',
20732 unused since 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
20733 (fill_stretch_glyph_string): Remove parameters `row' and `area',
20734 unused at least since Kim's GUI unification at 2003-03-16T20:45:46Z!storm@cua.dk
20735 and thereabouts. All callers changed.
20736 (get_per_char_metric): Remove parameter `f', unused since
20737 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
20738
20739 2011-04-02 Jim Meyering <meyering@redhat.com>
20740
20741 do not dereference NULL upon failed strdup
20742 * nsfont.m (ns_descriptor_to_entity): Use xstrdup, not strdup.
20743 (ns_get_family): Likewise.
20744
20745 2011-04-02 Juanma Barranquero <lekktu@gmail.com>
20746
20747 * eval.c (unwind_to_catch) [DEBUG_GCPRO]: Remove redundant assignment.
20748
20749 2011-04-02 Jan Djärv <jan.h.d@swipnet.se>
20750
20751 * nsterm.m (ns_update_auto_hide_menu_bar): Only for OSX 10.6 or
20752 later (Bug#8403).
20753
20754 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
20755
20756 Add lexical binding.
20757
20758 * window.c (Ftemp_output_buffer_show): New fun.
20759 (Fsave_window_excursion):
20760 * print.c (Fwith_output_to_temp_buffer): Move to subr.el.
20761
20762 * lread.c (lisp_file_lexically_bound_p): New function.
20763 (Fload): Bind Qlexical_binding.
20764 (readevalloop): Remove `evalfun' arg.
20765 Bind Qinternal_interpreter_environment.
20766 (Feval_buffer): Bind Qlexical_binding.
20767 (defvar_int, defvar_bool, defvar_lisp_nopro, defvar_kboard):
20768 Mark as dynamic.
20769 (syms_of_lread): Declare `lexical-binding'.
20770
20771 * lisp.h (struct Lisp_Symbol): New field `declared_special'.
20772
20773 * keyboard.c (eval_dyn): New fun.
20774 (menu_item_eval_property): Use it.
20775
20776 * image.c (parse_image_spec): Use Ffunctionp.
20777
20778 * fns.c (concat, mapcar1): Accept byte-code-functions.
20779
20780 * eval.c (Fsetq): Handle lexical vars.
20781 (Fdefun, Fdefmacro, Ffunction): Make closures when needed.
20782 (Fdefconst, Fdefvaralias, Fdefvar): Mark as dynamic.
20783 (FletX, Flet): Obey lexical binding.
20784 (Fcommandp): Handle closures.
20785 (Feval): New `lexical' arg.
20786 (eval_sub): New function extracted from Feval. Use it almost
20787 everywhere where Feval was used. Look up vars in lexical env.
20788 Handle closures.
20789 (Ffunctionp): Move from subr.el.
20790 (Ffuncall): Handle closures.
20791 (apply_lambda): Remove `eval_flags'.
20792 (funcall_lambda): Handle closures and new byte-code-functions.
20793 (Fspecial_variable_p): New function.
20794 (syms_of_eval): Initialize the Vinternal_interpreter_environment var,
20795 but without exporting it to Lisp.
20796
20797 * doc.c (Fdocumentation, store_function_docstring):
20798 * data.c (Finteractive_form): Handle closures.
20799
20800 * callint.c (Fcall_interactively): Preserve lexical-binding mode for
20801 interactive spec.
20802
20803 * bytecode.c (Bstack_ref, Bstack_set, Bstack_set2, BdiscardN):
20804 New byte-codes.
20805 (exec_byte_code): New function extracted from Fbyte_code to handle new
20806 calling convention for byte-code-functions. Add new byte-codes.
20807
20808 * buffer.c (defvar_per_buffer): Set new `declared_special' field.
20809
20810 * alloc.c (Fmake_symbol): Init new `declared_special' field.
20811
20812 2011-03-31 Juanma Barranquero <lekktu@gmail.com>
20813
20814 * xdisp.c (redisplay_internal): Fix prototype.
20815
20816 2011-03-31 Eli Zaretskii <eliz@gnu.org>
20817
20818 * xdisp.c (SCROLL_LIMIT): New macro.
20819 (try_scrolling): Use it when setting scroll_limit.
20820 Limit scrolling to 100 screen lines.
20821 (redisplay_window): Even when falling back on "recentering",
20822 position point in the window according to scroll-conservatively,
20823 scroll-margin, and scroll-*-aggressively variables. (Bug#6671)
20824
20825 (try_scrolling): When point is above the window, allow searching
20826 as far as scroll_max, or one screenful, to compute vertical
20827 distance from PT to the scroll margin position. This prevents
20828 try_scrolling from unnecessarily failing when
20829 scroll-conservatively is set to a value slightly larger than the
20830 window height. Clean up the case of PT below the margin at bottom
20831 of window: scroll_max can no longer be INT_MAX. When aggressive
20832 scrolling is in use, don't let point enter the opposite scroll
20833 margin as result of the scroll.
20834 (syms_of_xdisp) <scroll-conservatively>: Document the
20835 threshold of 100 lines for never-recentering scrolling.
20836
20837 2011-03-31 Juanma Barranquero <lekktu@gmail.com>
20838
20839 * dispextern.h (move_it_by_lines):
20840 * xdisp.c (move_it_by_lines): Remove parameter `need_y_p', unused
20841 since 2000-12-29T14:24:09Z!gerd@gnu.org. All callers changed.
20842 (message_log_check_duplicate): Remove parameters `prev_bol' and
20843 `this_bol', unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
20844 (redisplay_internal): Remove parameter `preserve_echo_area',
20845 unused since 1999-07-21T21:43:52Z!gerd@gnu.org. All callers changed.
20846
20847 * indent.c (Fvertical_motion):
20848 * window.c (window_scroll_pixel_based, Frecenter):
20849 Don't pass `need_y_p' to `move_it_by_lines'.
20850
20851 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
20852
20853 * eval.c (struct backtrace): Don't cheat with negative numbers, but do
20854 steal a few bits to be more compact.
20855 (interactive_p, Fbacktrace, Fbacktrace_frame, mark_backtrace):
20856 Remove unneeded casts.
20857
20858 * bytecode.c (Fbyte_code): CAR and CDR can GC.
20859
20860 2011-03-30 Zachary Kanfer <zkanfer@gmail.com> (tiny change)
20861
20862 * keyboard.c (Fexecute_extended_command): Do log the "suggest key
20863 binding" message (bug#7967).
20864
20865 2011-03-30 Paul Eggert <eggert@cs.ucla.edu>
20866
20867 Fix more problems found by GCC 4.6.0's static checks.
20868
20869 * unexelf.c (unexec) [! (defined _SYSTYPE_SYSV || defined __sgi)]:
20870 Remove unused local var.
20871
20872 * editfns.c (Fmessage_box): Remove unused local var.
20873
20874 * xdisp.c (try_window_reusing_current_matrix, x_produce_glyphs):
20875 (note_mode_line_or_margin_highlight, note_mouse_highlight):
20876 Omit unused local vars.
20877 * window.c (shrink_windows): Omit unused local var.
20878 * menu.c (digest_single_submenu): Omit unused local var.
20879 * dispnew.c (update_window) [PERIODIC_PREEMPTION_CHECKING]:
20880 Omit unused local var.
20881
20882 * keyboard.c (parse_modifiers_uncached, parse_modifiers):
20883 Don't assume string length fits in int.
20884 (keyremap_step, read_key_sequence): Use size_t for sizes.
20885 (read_key_sequence): Don't check last_real_key_start redundantly.
20886
20887 * callproc.c (Fcall_process, Fcall_process_region): Use SAFE_ALLOCA
20888 instead of alloca (Bug#8344).
20889
20890 * eval.c (Fbacktrace): Don't assume nargs fits in int.
20891 (Fbacktrace_frame): Don't assume nframes fits in int.
20892
20893 * syntax.c (scan_sexps_forward): Avoid pointer wraparound.
20894
20895 * xterm.c (x_make_frame_visible, same_x_server): Redo to avoid overflow
20896 concerns.
20897
20898 * term.c (produce_glyphless_glyph): Remove unnecessary test.
20899
20900 * cm.c (calccost): Turn while-do into do-while, for clarity.
20901
20902 * keyboard.c (syms_of_keyboard): Use the same style as later
20903 in this function when indexing through an array. This also
20904 works around GCC bug 48267.
20905
20906 * image.c (tiff_load): Fix off-by-one image count (Bug#8336).
20907
20908 * xselect.c (x_check_property_data): Return correct size (Bug#8335).
20909
20910 * chartab.c (sub_char_table_ref_and_range): Redo for slight
20911 efficiency gain, and to bypass a gcc -Wstrict-overflow warning.
20912
20913 * keyboard.c, keyboard.h (num_input_events): Now size_t.
20914 This avoids undefined behavior on integer overflow, and is a bit
20915 more convenient anyway since it is compared to a size_t variable.
20916
20917 Variadic C functions now count arguments with size_t, not int.
20918 This avoids an unnecessary limitation on 64-bit machines, which
20919 caused (substring ...) to crash on large vectors (Bug#8344).
20920 * lisp.h (struct Lisp_Subr.function.aMANY): Now takes size_t, not int.
20921 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call): Likewise.
20922 All variadic functions and their callers changed accordingly.
20923 (struct gcpro.nvars): Now size_t, not int. All uses changed.
20924 * data.c (arith_driver, float_arith_driver): Likewise.
20925 * editfns.c (general_insert_function): Likewise.
20926 * eval.c (struct backtrace.nargs, interactive_p)
20927 (internal_condition_case_n, run_hook_with_args, apply_lambda)
20928 (funcall_lambda, mark_backtrace): Likewise.
20929 * fns.c (concat): Likewise.
20930 * frame.c (x_set_frame_parameters): Likewise.
20931 * fns.c (get_key_arg): Now accepts and returns size_t, and returns
20932 0 if not found, not -1. All callers changed.
20933
20934 * alloc.c (garbage_collect): Don't assume stack size fits in int.
20935 (stack_copy_size): Now size_t, not int.
20936 (stack_copy, stack_copy_size): Define only if MAX_SAVE_STACK > 0.
20937
20938 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
20939
20940 * coding.c (encode_designation_at_bol): Remove parameter `charbuf_end',
20941 unused since 2002-03-01T01:17:24Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
20942 All callers changed.
20943
20944 * lisp.h (multibyte_char_to_unibyte):
20945 * character.c (multibyte_char_to_unibyte): Remove parameter `rev_tbl',
20946 unused since 2002-03-01T01:16:34Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
20947 * character.h (CHAR_TO_BYTE8):
20948 * cmds.c (internal_self_insert):
20949 * editfns.c (general_insert_function):
20950 * keymap.c (push_key_description):
20951 * search.c (Freplace_match):
20952 * xdisp.c (message_dolog, set_message_1): All callers changed.
20953
20954 2011-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
20955
20956 * keyboard.c (safe_run_hook_funcall): New function.
20957 (safe_run_hooks_1, safe_run_hooks_error, safe_run_hooks): On error,
20958 don't set the hook to nil, but remove the offending function instead.
20959 (Qcommand_hook_internal): Remove, unused.
20960 (syms_of_keyboard): Don't initialize Qcommand_hook_internal nor define
20961 Vcommand_hook_internal.
20962
20963 * eval.c (enum run_hooks_condition): Remove.
20964 (funcall_nil, funcall_not): New functions.
20965 (run_hook_with_args): Call each function through a `funcall' argument.
20966 Remove `cond' argument, now redundant.
20967 (Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success)
20968 (Frun_hook_with_args_until_failure): Adjust accordingly.
20969 (run_hook_wrapped_funcall, Frun_hook_wrapped): New functions.
20970
20971 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
20972
20973 * dispextern.h (string_buffer_position): Remove declaration.
20974
20975 * print.c (strout): Remove parameter `multibyte', unused since
20976 1999-08-21T19:30:21Z!gerd@gnu.org. All callers changed.
20977
20978 * search.c (boyer_moore): Remove parameters `len', `pos' and `lim',
20979 never used since function introduction in 1998-02-08T21:33:56Z!rms@gnu.org.
20980 All callers changed.
20981
20982 * w32.c (_wsa_errlist): Use braces for struct initializers.
20983
20984 * xdisp.c (string_buffer_position_lim): Remove parameter `w',
20985 never used since function introduction in 2001-03-09T18:41:50Z!gerd@gnu.org.
20986 All callers changed.
20987 (string_buffer_position): Likewise. Also, make static (it's never
20988 used outside xdisp.c).
20989 (cursor_row_p): Remove parameter `w', unused since
20990 2000-10-17T16:08:57Z!gerd@gnu.org. All callers changed.
20991 (decode_mode_spec): Remove parameter `precision', introduced during
20992 Gerd Moellmann's rewrite at 1999-07-21T21:43:52Z!gerd@gnu.org, but never used.
20993 All callers changed.
20994
20995 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
20996
20997 * nsterm.m (syms_of_nsterm): Use doc: for ns-auto-hide-menu-bar.
20998
20999 2011-03-27 Anders Lindgren <andlind@gmail.com>
21000
21001 * nsterm.m (ns_menu_bar_is_hidden): New variable.
21002 (ns_constrain_all_frames, ns_menu_bar_should_be_hidden)
21003 (ns_update_auto_hide_menu_bar): New functions.
21004 (ns_update_begin): Call ns_update_auto_hide_menu_bar.
21005 (applicationDidBecomeActive): Call ns_update_auto_hide_menu_bar and
21006 ns_constrain_all_frames.
21007 (constrainFrameRect): Return at once if ns_menu_bar_should_be_hidden.
21008 (syms_of_nsterm): DEFVAR ns-auto-hide-menu-bar, init to Qnil.
21009
21010 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
21011
21012 * nsmenu.m (runDialogAt): Remove argument to timer_check.
21013
21014 2011-03-27 Glenn Morris <rgm@gnu.org>
21015
21016 * syssignal.h: Replace RETSIGTYPE with void.
21017 * atimer.c, data.c, dispnew.c, emacs.c, floatfns.c, keyboard.c:
21018 * keyboard.h, lisp.h, process.c, sysdep.c, xterm.c:
21019 Replace SIGTYPE with void everywhere.
21020 * s/usg5-4-common.h (SIGTYPE): Remove definition.
21021 * s/template.h (SIGTYPE): Remove commented out definition.
21022
21023 2011-03-26 Eli Zaretskii <eliz@gnu.org>
21024
21025 * xdisp.c (redisplay_window): Don't check buffer's clip_changed
21026 flag as a prerequisite for invoking try_scrolling. (Bug#6671)
21027
21028 2011-03-26 Juanma Barranquero <lekktu@gmail.com>
21029
21030 * w32.c (read_unc_volume): Use parameter `henum', instead of
21031 global variable `wget_enum_handle'.
21032
21033 * keymap.c (describe_vector): Remove parameters `indices' and
21034 `char_table_depth', unused since 2002-03-01T01:43:26Z!handa@m17n.org.
21035 (describe_map, Fdescribe_vector): Adjust calls to `describe_vector'.
21036
21037 * keyboard.h (timer_check, show_help_echo): Remove unused parameters.
21038
21039 * keyboard.c (timer_check): Remove parameter `do_it_now',
21040 unused since 1996-04-12T06:01:29Z!rms@gnu.org.
21041 (show_help_echo): Remove parameter `ok_to_overwrite_keystroke_echo',
21042 unused since 2008-04-19T19:30:53Z!monnier@iro.umontreal.ca.
21043
21044 * keyboard.c (read_char):
21045 * w32menu.c (w32_menu_display_help):
21046 * xmenu.c (show_help_event, menu_help_callback):
21047 Adjust calls to `show_help_echo'.
21048
21049 * gtkutil.c (xg_maybe_add_timer):
21050 * keyboard.c (readable_events):
21051 * process.c (wait_reading_process_output):
21052 * xmenu.c (x_menu_wait_for_event): Adjust calls to `timer_check'.
21053
21054 * insdel.c (adjust_markers_gap_motion):
21055 Remove; no-op since 1998-01-02T21:29:48Z!rms@gnu.org.
21056 (gap_left, gap_right): Don't call it.
21057
21058 2011-03-25 Chong Yidong <cyd@stupidchicken.com>
21059
21060 * xdisp.c (handle_fontified_prop): Discard changes to clip_changed
21061 incurred during fontification.
21062
21063 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
21064
21065 * buffer.c (defvar_per_buffer): Remove unused parameter `doc'.
21066 (DEFVAR_PER_BUFFER): Don't pass it.
21067
21068 * dispnew.c (row_equal_p, add_row_entry): Remove unused parameter `w'.
21069 (scrolling_window): Don't pass it.
21070
21071 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
21072
21073 * dispextern.h (glyph_matric): Use #if GLYPH_DEBUG, not #ifdef.
21074
21075 * fileio.c (check_executable) [DOS_NT]: Remove unused variables `len'
21076 and `suffix'.
21077 (Fset_file_selinux_context) [HAVE_LIBSELINUX]: Move here declaration
21078 of variables specific to SELinux and computation of `encoded_absname'.
21079
21080 * image.c (XPutPixel): Remove unused variable `height'.
21081
21082 * keyboard.c (make_lispy_event): Remove unused variable `hpos'.
21083
21084 * unexw32.c (get_section_info): Remove unused variable `section'.
21085
21086 * w32.c (stat): Remove unused variables `drive_root' and `devtype'.
21087 (system_process_attributes): Remove unused variable `sess'.
21088 (sys_read): Remove unused variable `err'.
21089
21090 * w32fns.c (top): Wrap variables with #if GLYPH_DEBUG, not #ifdef.
21091 (w32_wnd_proc): Remove unused variable `isdead'.
21092 (unwind_create_frame): Use #if GLYPH_DEBUG, not #ifdef.
21093 (Fx_server_max_request_size): Remove unused variable `dpyinfo'.
21094 (x_create_tip_frame): Remove unused variable `tem'.
21095
21096 * w32inevt.c (w32_console_read_socket):
21097 Remove unused variable `no_events'.
21098
21099 * w32term.c (x_draw_composite_glyph_string_foreground):
21100 Remove unused variable `width'.
21101
21102 2011-03-24 Juanma Barranquero <lekktu@gmail.com>
21103
21104 * w32term.c (x_set_glyph_string_clipping):
21105 Don't pass uninitialized region to CombineRgn.
21106
21107 2011-03-23 Juanma Barranquero <lekktu@gmail.com>
21108
21109 * w32fns.c (x_set_menu_bar_lines): Remove unused variable `olines'.
21110 (w32_wnd_proc): Pass NULL to Windows API, not uninitialized buffer.
21111 (Fx_close_connection): Remove unused variable `i'.
21112
21113 * w32font.c (w32font_draw): Return number of glyphs.
21114 (w32font_open_internal): Remove unused variable `i'.
21115 (w32font_driver): Add missing initializer.
21116
21117 * w32menu.c (utf8to16): Remove unused variable `utf16'.
21118 (fill_in_menu): Remove unused variable `items_added'.
21119
21120 * w32term.c (last_mouse_press_frame): Remove static global variable.
21121 (w32_clip_to_row): Remove unused variable `f'.
21122 (x_delete_terminal): Remove unused variable `i'.
21123
21124 * w32uniscribe.c (uniscribe_shape): Remove unused variable `nclusters'.
21125 (NOTHING): Remove unused static global variable.
21126 (uniscribe_check_otf): Remove unused variable `table'.
21127 (uniscribe_font_driver): Add missing initializers.
21128
21129 2011-03-23 Julien Danjou <julien@danjou.info>
21130
21131 * term.c (Fsuspend_tty, Fresume_tty):
21132 * minibuf.c (read_minibuf, run_exit_minibuf_hook):
21133 * window.c (temp_output_buffer_show):
21134 * insdel.c (signal_before_change):
21135 * frame.c (Fhandle_switch_frame):
21136 * fileio.c (Fdo_auto_save):
21137 * emacs.c (Fkill_emacs):
21138 * editfns.c (save_excursion_restore):
21139 * cmds.c (internal_self_insert):
21140 * callint.c (Fcall_interactively):
21141 * buffer.c (Fkill_all_local_variables):
21142 * keyboard.c (Fcommand_execute, Fsuspend_emacs, safe_run_hooks_1):
21143 Use Frun_hooks.
21144 (command_loop_1): Use Frun_hooks. Call safe_run_hooks
21145 unconditionally since it does the check itself.
21146
21147 2011-03-23 Paul Eggert <eggert@cs.ucla.edu>
21148
21149 Fix more problems found by GCC 4.5.2's static checks.
21150
21151 * coding.c (encode_coding_raw_text): Avoid unnecessary test
21152 the first time through the loop, since we know p0 < p1 then.
21153 This also avoids a gcc -Wstrict-overflow warning.
21154
21155 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP): Avoid 'int' overflow
21156 leading to a memory leak, possible in functions like
21157 load_charset_map_from_file that can allocate an unbounded number
21158 of objects (Bug#8318).
21159
21160 * xmenu.c (set_frame_menubar): Use EMACS_UINT, not int, for indexes
21161 that could (at least in theory) be that large.
21162
21163 * xdisp.c (message_log_check_duplicate): Return unsigned long, not int.
21164 This is less likely to overflow, and avoids undefined behavior if
21165 overflow does occur. All callers changed. Use strtoul to scan
21166 for the unsigned long integer.
21167 (pint2hrstr): Simplify and tune code slightly.
21168 This also avoids a (bogus) GCC warning with gcc -Wstrict-overflow.
21169
21170 * scroll.c (do_scrolling): Work around GCC bug 48228.
21171 See <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48228>.
21172
21173 * frame.c (Fmodify_frame_parameters): Simplify loop counter.
21174 This also avoids a warning with gcc -Wstrict-overflow.
21175 (validate_x_resource_name): Simplify count usage.
21176 This also avoids a warning with gcc -Wstrict-overflow.
21177
21178 * fileio.c (Fcopy_file): Report error if fchown or fchmod
21179 fail (Bug#8306).
21180
21181 * emacs.c (Fdaemon_initialized): Do not ignore I/O errors (Bug#8303).
21182
21183 * process.c (Fmake_network_process): Use socklen_t, not int,
21184 where POSIX says socklen_t is required in portable programs.
21185 This fixes a porting bug on hosts like 64-bit HP-UX, where
21186 socklen_t is wider than int (Bug#8277).
21187 (Fmake_network_process, server_accept_connection):
21188 (wait_reading_process_output, read_process_output):
21189 Likewise.
21190
21191 * process.c: Rename or move locals to avoid shadowing.
21192 (list_processes_1, Fmake_network_process):
21193 (read_process_output_error_handler, exec_sentinel_error_handler):
21194 Rename or move locals.
21195 (Fmake_network_process): Define label "retry_connect" only if needed.
21196 (Fnetwork_interface_info): Fix pointer signedness.
21197 (process_send_signal): Add cast to avoid pointer signedness problem.
21198 (FIRST_PROC_DESC, IF_NON_BLOCKING_CONNECT): Remove unused macros.
21199 (create_process): Use 'volatile' to avoid vfork clobbering (Bug#8298).
21200
21201 Make tparam.h and terminfo.c consistent.
21202 * cm.c (tputs, tgoto, BC, UP): Remove extern decls.
21203 Include tparam.h instead, since it declares them.
21204 * cm.h (PC): Remove extern decl; tparam.h now does this.
21205 * deps.mk (cm.o, terminfo.o): Depend on tparam.h.
21206 * terminfo.c: Include tparam.h, to check interfaces.
21207 (tparm): Make 1st arg a const pointer in decl. Put it at top level.
21208 (tparam): Adjust signature to match interface in tparam.h;
21209 this removes some undefined behavior. Check that outstring and len
21210 are zero, which they always are with Emacs.
21211 * tparam.h (PC, BC, UP): New extern decls.
21212
21213 * xftfont.c (xftfont_shape): Now static, and defined only if needed.
21214 (xftfont_open): Rename locals to avoid shadowing.
21215
21216 * ftfont.c (ftfont_resolve_generic_family): Fix pointer signedness.
21217 (ftfont_otf_capability, ftfont_shape): Omit decls if not needed.
21218 (OTF_TAG_SYM): Omit macro if not needed.
21219 (ftfont_list): Remove unused local.
21220 (get_adstyle_property, ftfont_pattern_entity):
21221 (ftfont_lookup_cache, ftfont_open, ftfont_anchor_point):
21222 Rename locals to avoid shadowing.
21223
21224 * xfont.c (xfont_list_family): Mark var as initialized.
21225
21226 * xml.c (make_dom): Now static.
21227
21228 * composite.c (composition_compute_stop_pos): Rename local to
21229 avoid shadowing.
21230 (composition_reseat_it): Remove unused locals.
21231 (find_automatic_composition, composition_adjust_point): Likewise.
21232 (composition_update_it): Mark var as initialized.
21233 (find_automatic_composition): Mark vars as initialized,
21234 with a FIXME (Bug#8290).
21235
21236 character.h: Rename locals to avoid shadowing.
21237 * character.h (PREV_CHAR_BOUNDARY, FETCH_STRING_CHAR_ADVANCE):
21238 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE, FETCH_CHAR_ADVANCE):
21239 (FETCH_CHAR_ADVANCE_NO_CHECK, INC_POS, DEC_POS, BUF_INC_POS):
21240 (BUF_DEC_POS): Be more systematic about renaming local temporaries
21241 to avoid shadowing.
21242
21243 * textprop.c (property_change_between_p): Remove; unused.
21244
21245 * intervals.c (interval_start_pos): Now static.
21246
21247 * intervals.h (CHECK_TOTAL_LENGTH): Avoid empty "else".
21248
21249 * atimer.c (start_atimer, append_atimer_lists, set_alarm):
21250 Rename locals to avoid shadowing.
21251
21252 * sound.c (wav_play, au_play, Fplay_sound_internal):
21253 Fix pointer signedness.
21254 (alsa_choose_format): Remove unused local var.
21255 (wav_play): Initialize a variable to 0, to prevent undefined
21256 behavior (Bug#8278).
21257
21258 * region-cache.c (insert_cache_boundary): Redo var to avoid shadowing.
21259
21260 * region-cache.h (pp_cache): New decl, for gcc -Wmissing-prototypes.
21261
21262 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork
21263 clobbering (Bug#8298).
21264 * sysdep.c (sys_subshell): Likewise.
21265 Previously, the sys_subshell 'volatile' was incorrectly IF_LINTted out.
21266
21267 * lisp.h (child_setup): Now NO_RETURN unless DOS_NT.
21268 This should get cleaned up, so that child_setup has the
21269 same signature on all platforms.
21270
21271 * callproc.c (call_process_cleanup): Now static.
21272 (relocate_fd): Rename locals to avoid shadowing.
21273
21274 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
21275
21276 * xterm.c (x_clear_frame): Remove XClearWindow call. This appears
21277 not to be necessary, and produces flickering.
21278
21279 2011-03-20 Glenn Morris <rgm@gnu.org>
21280
21281 * config.in: Remove file.
21282
21283 2011-03-20 Juanma Barranquero <lekktu@gmail.com>
21284
21285 * minibuf.c (Vcompleting_read_function): Don't declare, global variables
21286 are now in src/globals.h.
21287 (syms_of_minibuf): Remove spurious & from previous change.
21288
21289 2011-03-20 Leo Liu <sdl.web@gmail.com>
21290
21291 * minibuf.c (completing-read-function): New variable.
21292 (completing-read-default): Rename from completing-read.
21293 (completing-read): Call completing-read-function.
21294
21295 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
21296
21297 * xfaces.c (Fx_load_color_file):
21298 Read color file from absolute filename (bug#8250).
21299
21300 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
21301
21302 * makefile.w32-in: Update dependencies.
21303
21304 2011-03-17 Eli Zaretskii <eliz@gnu.org>
21305
21306 * makefile.w32-in ($(BLD)/unexw32.$(O)): Depend on $(SRC)/unexec.h.
21307
21308 2011-03-17 Paul Eggert <eggert@cs.ucla.edu>
21309
21310 Fix more problems found by GCC 4.5.2's static checks.
21311
21312 * process.c (make_serial_process_unwind, send_process_trap):
21313 (sigchld_handler): Now static.
21314
21315 * process.c (allocate_pty): Let PTY_ITERATION declare iteration vars.
21316 That way, the code declares only the vars that it needs.
21317 * s/aix4-2.h (PTY_ITERATION): Declare iteration vars.
21318 * s/cygwin.h (PTY_ITERATION): Likewise.
21319 * s/darwin.h (PTY_ITERATION): Likewise.
21320 * s/gnu-linux.h (PTY_ITERATION): Likewise.
21321
21322 * s/irix6-5.h (PTY_OPEN): Declare stb, to loosen coupling.
21323 * process.c (allocate_pty): Don't declare stb unless it's needed.
21324
21325 * bytecode.c (MAYBE_GC): Rewrite so as not to use empty "else".
21326 (CONSTANTLIM): Remove; unused.
21327 (METER_CODE, Bscan_buffer, Bread_char, Bset_mark):
21328 Define only if needed.
21329
21330 * unexelf.c (unexec): Name an expression,
21331 to avoid gcc -Wbad-function-cast warning.
21332 Use a different way to cause a compilation error if anyone uses
21333 n rather than nn, a way that does not involve shadowing.
21334 (ELF_BSS_SECTION_NAME, OLD_PROGRAM_H): Remove; unused.
21335
21336 * deps.mk (unexalpha.o): Remove; unused.
21337
21338 New file unexec.h, the (simple) interface for unexec (Bug#8267).
21339 * unexec.h: New file.
21340 * deps.mk (emacs.o, unexaix.o, unexcw.o, unexcoff.o, unexelf.o):
21341 (unexhp9k800.o, unexmacosx.o, unexsol.o, unexw32.o):
21342 Depend on unexec.h.
21343 * emacs.c [!defined CANNOT_DUMP]: Include unexec.h.
21344 * unexaix.c, unexcoff.c, unexcw.c, unexelf.c, unexhp9k800.c:
21345 * unexmacosx.c, unexsol.c, unexw32.c: Include unexec.h.
21346 Change as necessary to match prototype in unexec.h.
21347
21348 * syntax.c (Fforward_comment, scan_lists): Rename locals to avoid
21349 shadowing.
21350 (back_comment, skip_chars): Mark vars as initialized.
21351
21352 * character.h (FETCH_STRING_CHAR_ADVANCE_NO_CHECK, BUF_INC_POS):
21353 Rename locals to avoid shadowing.
21354
21355 * lread.c (read1): Rewrite so as not to use empty "else".
21356 (Fload, readevalloop, read1): Rename locals to avoid shadowing.
21357
21358 * print.c (Fredirect_debugging_output): Fix pointer signedess.
21359
21360 * lisp.h (debug_output_compilation_hack): Add decl here, to avoid
21361 warning when compiling print.c.
21362
21363 * font.c (font_unparse_fcname): Abort in an "impossible" situation
21364 instead of using an uninitialized var.
21365 (font_sort_entities): Mark var as initialized.
21366
21367 * character.h (FETCH_CHAR_ADVANCE): Rename locals to avoid shadowing.
21368
21369 * font.c (font_unparse_xlfd): Don't mix pointers to variables with
21370 pointers to constants.
21371 (font_parse_fcname): Remove unused vars.
21372 (font_delete_unmatched): Now static.
21373 (font_get_spec): Remove; unused.
21374 (font_style_to_value, font_prop_validate_style, font_unparse_fcname):
21375 (font_update_drivers, Ffont_get_glyphs, font_add_log):
21376 Rename or move locals to avoid shadowing.
21377
21378 * fns.c (require_nesting_list, require_unwind): Now static.
21379 (Ffillarray): Rename locals to avoid shadowing.
21380
21381 * floatfns.c (domain_error2): Define only if needed.
21382 (Ffrexp, Fldexp): Rename locals to avoid shadowing.
21383
21384 * alloc.c (mark_backtrace): Move decl from here ...
21385 * lisp.h: ... to here, so that it can be checked.
21386
21387 * eval.c (call_debugger, do_debug_on_call, grow_specpdl): Now static.
21388 (Fdefvar): Rewrite so as not to use empty "else".
21389 (lisp_indirect_variable): Name an expression,
21390 to avoid gcc -Wbad-function-cast warning.
21391 (Fdefvar): Rename locals to avoid shadowing.
21392
21393 * callint.c (quotify_arg, quotify_args): Now static.
21394 (Fcall_interactively): Rename locals to avoid shadowing.
21395 Use const pointer when appropriate.
21396
21397 * lisp.h (get_system_name, get_operating_system_release):
21398 Move decls here, to check interfaces.
21399 * process.c (get_operating_system_release): Move decl to lisp.h.
21400 * xrdb.c (get_system_name): Likewise.
21401 * editfns.c (init_editfns, Fuser_login_name, Fuser_uid):
21402 (Fuser_real_uid, Fuser_full_name): Remove unnecessary casts,
21403 some of which prompt warnings from gcc -Wbad-function-cast.
21404 (Fformat_time_string, Fencode_time, Finsert_char):
21405 (Ftranslate_region_internal, Fformat):
21406 Rename or remove local vars to avoid shadowing.
21407 (Ftranslate_region_internal): Mark var as initialized.
21408
21409 * doc.c (Fdocumentation, Fsnarf_documentation): Move locals to
21410 avoid shadowing.
21411
21412 * lisp.h (eassert): Check that the argument compiles, even if
21413 ENABLE_CHECKING is not defined.
21414
21415 * data.c (Findirect_variable): Name an expression, to avoid
21416 gcc -Wbad-function-cast warning.
21417 (default_value, arithcompare, arith_driver, arith_error): Now static.
21418 (store_symval_forwarding): Rename local to avoid shadowing.
21419 (Fmake_variable_buffer_local, Fmake_local_variable):
21420 Mark variables as initialized.
21421 (do_blv_forwarding, do_symval_forwarding): Remove; unused.
21422
21423 * alloc.c (check_cons_list): Do not define unless GC_CHECK_CONS_LIST.
21424 (Fmake_vector, Fvector, Fmake_byte_code, Fgarbage_collect):
21425 Rename locals to avoid shadowing.
21426 (mark_stack): Move local variables into the #ifdef region where
21427 they're used.
21428 (BLOCK_INPUT_ALLOC, UNBLOCK_INPUT_ALLOC): Define only if
21429 ! defined SYSTEM_MALLOC && ! defined SYNC_INPUT, as they are not
21430 needed otherwise.
21431 (CHECK_ALLOCATED): Define only if GC_CHECK_MARKED_OBJECTS.
21432 (GC_STRING_CHARS): Remove; not used.
21433 (Fmemory_limit): Cast sbrk's returned value to char *.
21434
21435 * lisp.h (check_cons_list): Declare if GC_CHECK_CONS_LIST; this
21436 avoids undefined behavior in theory.
21437
21438 * regex.c (IF_LINT): Add defn, for benefit of ../lib-src.
21439
21440 Use functions, not macros, for up- and down-casing (Bug#8254).
21441 * buffer.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
21442 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Remove. All callers changed
21443 to use the following functions instead of these macros.
21444 (downcase): Adjust to lack of DOWNCASE_TABLE. Return int, not
21445 EMACS_INT, since callers assume the returned value fits in int.
21446 (upcase1): Likewise, for UPCASE_TABLE.
21447 (uppercasep, lowercasep, upcase): New static inline functions.
21448 * editfns.c (Fchar_equal): Remove no-longer-needed workaround for
21449 the race-condition problem in the old DOWNCASE.
21450
21451 * regex.c (CHARSET_LOOKUP_RANGE_TABLE_RAW, POP_FAILURE_REG_OR_COUNT):
21452 Rename locals to avoid shadowing.
21453 (regex_compile, re_match_2_internal): Move locals to avoid shadowing.
21454 (regex_compile, re_search_2, re_match_2_internal):
21455 Remove unused local vars.
21456 (FREE_VAR): Rewrite so as not to use empty "else",
21457 which gcc can warn about.
21458 (regex_compile, re_match_2_internal): Mark locals as initialized.
21459 (RETALLOC_IF): Define only if needed.
21460 (WORDCHAR_P): Likewise. This one is never needed, but is used
21461 only in a comment talking about a compiler bug, so put inside
21462 the #if 0 of that comment.
21463 (CHARSET_LOOKUP_BITMAP, FAIL_STACK_FULL, RESET_FAIL_STACK):
21464 (PUSH_FAILURE_ELT, BUF_PUSH_3, STOP_ADDR_VSTRING):
21465 Remove; unused.
21466
21467 * search.c (boyer_moore): Rename locals to avoid shadowing.
21468 * character.h (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE):
21469 (PREV_CHAR_BOUNDARY): Likewise.
21470
21471 * search.c (simple_search): Remove unused var.
21472
21473 * dired.c (compile_pattern): Move decl from here ...
21474 * lisp.h: ... to here, so that it can be checked.
21475 (struct re_registers): New forward decl.
21476
21477 * character.h (INC_POS, DEC_POS): Rename locals to avoid shadowing.
21478
21479 * indent.c (MULTIBYTE_BYTES_WIDTH): New args bytes, width.
21480 All uses changed.
21481 (MULTIBYTE_BYTES_WIDTH, scan_for_column, compute_motion):
21482 Rename locals to avoid shadowing.
21483 (Fvertical_motion): Mark locals as initialized.
21484
21485 * casefiddle.c (casify_object, casify_region): Now static.
21486 (casify_region): Mark local as initialized.
21487
21488 * cmds.c (internal_self_insert): Rename local to avoid shadowing.
21489
21490 * lisp.h (GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR, GCPRO6_VAR):
21491 New macros, so that the caller can use some names other than
21492 gcpro1, gcpro2, etc.
21493 (GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6): Reimplement in terms
21494 of the new macros.
21495 (GCPRO1_VAR, UNGCPRO_VAR): Change the meaning of the second
21496 argument, for consistency with GCPRO2_VAR, etc: it is now the
21497 prefix of the variable, not the variable itself. All uses
21498 changed.
21499 * dired.c (directory_files_internal, file_name_completion):
21500 Rename locals to avoid shadowing.
21501
21502 Fix a race condition diagnosed by gcc -Wsequence-point (Bug#8254).
21503 An expression of the form (DOWNCASE (x) == DOWNCASE (y)), found in
21504 dired.c's scmp function, had undefined behavior.
21505 * lisp.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
21506 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Move from here ...
21507 * buffer.h: ... to here, because these macros use current_buffer,
21508 and the new implementation with inline functions needs to have
21509 current_buffer in scope now, rather than later when the macros
21510 are used.
21511 (downcase, upcase1): New static inline functions.
21512 (DOWNCASE, UPCASE1): Reimplement using these functions.
21513 This avoids undefined behavior in expressions like
21514 DOWNCASE (x) == DOWNCASE (y), which previously suffered
21515 from race conditions in accessing the global variables
21516 case_temp1 and case_temp2.
21517 * casetab.c (case_temp1, case_temp2): Remove; no longer needed.
21518 * lisp.h (case_temp1, case_temp2): Remove their decls.
21519 * character.h (ASCII_CHAR_P): Move from here ...
21520 * lisp.h: ... to here, so that the inline functions mentioned
21521 above can use them.
21522
21523 * dired.c (directory_files_internal_unwind): Now static.
21524
21525 * fileio.c (file_name_as_directory, directory_file_name):
21526 (barf_or_query_if_file_exists, auto_save_error, auto_save_1):
21527 Now static.
21528 (file_name_as_directory): Use const pointers when appropriate.
21529 (Fexpand_file_name): Likewise. In particular, newdir might
21530 point at constant storage, so make it a const pointer.
21531 (Fmake_directory_internal, Fread_file_name): Remove unused vars.
21532 (Ffile_selinux_context, Fset_file_selinux_context): Fix pointer
21533 signedness issues.
21534 (Fset_file_times, Finsert_file_contents, auto_save_error):
21535 Rename locals to avoid shadowing.
21536
21537 * minibuf.c (choose_minibuf_frame_1): Now static.
21538 (Ftry_completion, Fall_completions): Rename or remove locals
21539 to avoid shadowing.
21540
21541 * marker.c (bytepos_to_charpos): Remove; unused.
21542
21543 * lisp.h (verify_bytepos, count_markers): New decls,
21544 so that gcc does not warn that these functions aren't declared.
21545
21546 * insdel.c (check_markers, make_gap_larger, make_gap_smaller):
21547 (reset_var_on_error, Fcombine_after_change_execute_1): Now static.
21548 (CHECK_MARKERS): Redo to avoid gcc -Wempty-body diagnostic.
21549 (copy_text): Remove unused local var.
21550
21551 * filelock.c (within_one_second): Now static.
21552 (lock_file_1): Rename local to avoid shadowing.
21553
21554 * buffer.c (fix_overlays_before): Mark locals as initialized.
21555 (fix_start_end_in_overlays): Likewise. This function should be
21556 simplified by using pointers-to-pointers, but that's a different
21557 matter.
21558 (switch_to_buffer_1): Now static.
21559 (Fkill_buffer, record_buffer, Fbury_buffer, Fset_buffer_multibyte):
21560 (report_overlay_modification): Rename locals to avoid shadowing.
21561
21562 * sysdep.c (system_process_attributes): Rename vars to avoid shadowing.
21563 Fix pointer signedness issue.
21564 (sys_subshell): Mark local as volatile if checking for lint,
21565 to suppress a gcc -Wclobbered warning that does not seem to be right.
21566 (MAXPATHLEN): Define only if needed.
21567
21568 * process.c (serial_open, serial_configure): Move decls from here ...
21569 * systty.h: ... to here, so that they can be checked.
21570
21571 * fns.c (get_random, seed_random): Move extern decls from here ...
21572 * lisp.h: ... to here, so that they can be checked.
21573
21574 * sysdep.c (reset_io): Now static.
21575 (wait_for_termination_signal): Remove; unused.
21576
21577 * keymap.c (keymap_parent, keymap_memberp, map_keymap_internal):
21578 (copy_keymap_item, append_key, push_text_char_description):
21579 Now static.
21580 (Fwhere_is_internal): Don't test CONSP (sequences) unnecessarily.
21581 (DENSE_TABLE_SIZE): Remove; unused.
21582 (get_keymap, access_keymap, Fdefine_key, Fwhere_is_internal):
21583 (describe_map_tree):
21584 Rename locals to avoid shadowing.
21585
21586 * keyboard.c: Declare functions static if they are not used elsewhere.
21587 (echo_char, echo_dash, cmd_error, top_level_2):
21588 (poll_for_input, handle_async_input): Now static.
21589 (read_char, kbd_buffer_get_event, make_lispy_position):
21590 (make_lispy_event, make_lispy_movement, apply_modifiers):
21591 (decode_keyboard_code, tty_read_avail_input, menu_bar_items):
21592 (parse_tool_bar_item, read_key_sequence, Fread_key_sequence):
21593 (Fread_key_sequence_vector): Rename locals to avoid shadowing.
21594 (read_key_sequence, read_char): Mark locals as initialized.
21595 (Fexit_recursive_edit, Fabort_recursive_edit): Mark with NO_RETURN.
21596
21597 * keyboard.h (make_ctrl_char): New decl.
21598 (mark_kboards): Move decl here ...
21599 * alloc.c (mark_kboards): ... from here.
21600
21601 * lisp.h (force_auto_save_soon): New decl.
21602
21603 * emacs.c (init_cmdargs): Rename local to avoid shadowing.
21604 (DEFINE_DUMMY_FUNCTION): New macro.
21605 (__do_global_ctors, __do_global_ctors_aux, __do_global_dtors, __main):
21606 Use it.
21607 (main): Add casts to avoid warnings
21608 if GCC considers string literals to be constants.
21609
21610 * lisp.h (fatal_error_signal): Add decl, since it's exported.
21611
21612 * dbusbind.c: Pointer signedness fixes.
21613 (xd_signature, xd_append_arg, xd_initialize):
21614 (Fdbus_call_method, Fdbus_call_method_asynchronously):
21615 (Fdbus_method_return_internal, Fdbus_method_error_internal):
21616 (Fdbus_send_signal, xd_read_message_1, Fdbus_register_service):
21617 (Fdbus_register_signal): Use SSDATA when the context wants char *.
21618
21619 * dbusbind.c (Fdbus_init_bus): Add cast to avoid warning
21620 if GCC considers string literals to be constants.
21621 (Fdbus_register_service, Fdbus_register_method): Remove unused vars.
21622
21623 2011-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
21624
21625 * print.c (PRINT_CIRCLE_CANDIDATE_P): New macro.
21626 (print_preprocess, print_object): New macro to fix last change.
21627
21628 * print.c (print_preprocess): Don't forget font objects.
21629
21630 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
21631
21632 * emacs.c (USAGE3): Doc fixes.
21633
21634 2011-03-15 Andreas Schwab <schwab@linux-m68k.org>
21635
21636 * coding.c (detect_coding_iso_2022): Reorganize code to clarify
21637 structure.
21638
21639 2011-03-14 Juanma Barranquero <lekktu@gmail.com>
21640
21641 * lisp.h (VWindow_system, Qfile_name_history):
21642 * keyboard.h (lispy_function_keys) [WINDOWSNT]:
21643 * w32term.h (w32_system_caret_hwnd, w32_system_caret_height)
21644 (w32_system_caret_x, w32_system_caret_y): Declare extern.
21645
21646 * w32select.c: Don't #include "keyboard.h".
21647 (run_protected): Add extern declaration for waiting_for_input.
21648
21649 * w32.c (Qlocal, noninteractive1, inhibit_window_system):
21650 * w32console.c (detect_input_pending, read_input_pending)
21651 (encode_terminal_code):
21652 * w32fns.c (quit_char, lispy_function_keys, Qtooltip)
21653 (w32_system_caret_hwnd, w32_system_caret_height, w32_system_caret_x)
21654 (w32_system_caret_y, Qfile_name_history):
21655 * w32font.c (w32font_driver, QCantialias, QCotf, QClang):
21656 * w32inevt.c (reinvoke_input_signal, lispy_function_keys):
21657 * w32menu.c (Qmenu_bar, QCtoggle, QCradio, Qoverriding_local_map)
21658 (Qoverriding_terminal_local_map, Qmenu_bar_update_hook):
21659 * w32proc.c (Qlocal, report_file_error):
21660 * w32term.c (Vwindow_system, updating_frame):
21661 * w32uniscribe.c (initialized, uniscribe_font_driver):
21662 Remove unneeded extern declarations.
21663
21664 2011-03-14 Chong Yidong <cyd@stupidchicken.com>
21665
21666 * buffer.c (Fmake_indirect_buffer): Fix incorrect assertions.
21667
21668 2011-03-13 Chong Yidong <cyd@stupidchicken.com>
21669
21670 * buffer.h (BUF_BEGV, BUF_BEGV_BYTE, BUF_ZV, BUF_ZV_BYTE, BUF_PT)
21671 (BUF_PT_BYTE): Rewrite to handle indirect buffers (Bug#8219).
21672 These macros can no longer be used for assignment.
21673
21674 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
21675 Assign struct members directly, instead of using BUF_BEGV etc.
21676 (record_buffer_markers, fetch_buffer_markers): New functions for
21677 recording and fetching special buffer markers.
21678 (set_buffer_internal_1, set_buffer_temp): Use them.
21679
21680 * lread.c (unreadchar): Use SET_BUF_PT_BOTH.
21681
21682 * insdel.c (adjust_point): Use SET_BUF_PT_BOTH.
21683
21684 * intervals.c (temp_set_point_both): Use SET_BUF_PT_BOTH.
21685 (get_local_map): Use SET_BUF_BEGV_BOTH and SET_BUF_ZV_BOTH.
21686
21687 * xdisp.c (hscroll_window_tree):
21688 (reconsider_clip_changes): Use PT instead of BUF_PT.
21689
21690 2011-03-13 Eli Zaretskii <eliz@gnu.org>
21691
21692 * makefile.w32-in ($(BLD)/editfns.$(O)): Depend on
21693 $(EMACS_ROOT)/lib/intprops.h.
21694
21695 2011-03-13 Paul Eggert <eggert@cs.ucla.edu>
21696
21697 Fix more problems found by GCC 4.5.2's static checks.
21698
21699 * gtkutil.c (xg_get_pixbuf_from_pixmap): Add cast from char *
21700 to unsigned char * to avoid compiler diagnostic.
21701 (xg_free_frame_widgets): Make it clear that a local variable is
21702 needed only if USE_GTK_TOOLTIP.
21703 (gdk_window_get_screen): Make it clear that this macro is needed
21704 only if USE_GTK_TOOLTIP.
21705 (int_gtk_range_get_value): New function, which avoids a diagnostic
21706 from gcc -Wbad-function-cast.
21707 (xg_set_toolkit_scroll_bar_thumb): Use it.
21708 (xg_tool_bar_callback, xg_tool_item_stale_p): Rewrite to avoid
21709 diagnostic from gcc -Wbad-function-cast.
21710 (get_utf8_string, xg_get_file_with_chooser):
21711 Rename locals to avoid shadowing.
21712 (create_dialog): Move locals to avoid shadowing.
21713
21714 * xgselect.c (xg_select): Remove unused var.
21715
21716 * image.c (four_corners_best): Mark locals as initialized.
21717 (gif_load): Initialize transparent_p to zero (Bug#8238).
21718 Mark another local as initialized.
21719 (my_png_error, my_error_exit): Mark with NO_RETURN.
21720
21721 * image.c (clear_image_cache): Now static.
21722 (DIM, HAVE_STDLIB_H_1): Remove unused macros.
21723 (xpm_load): Redo to avoid "discards qualifiers" gcc warning.
21724 (x_edge_detection): Remove unnecessary cast that
21725 gcc -Wbad-function-cast diagnoses.
21726 (gif_load): Fix pointer signedness.
21727 (clear_image_cache, xbm_read_bitmap_data, x_detect_edges):
21728 (jpeg_load, gif_load): Rename locals to avoid shadowing.
21729
21730 2011-03-12 Paul Eggert <eggert@cs.ucla.edu>
21731
21732 Improve quality of tests for time stamp overflow.
21733 For example, without this patch (encode-time 0 0 0 1 1
21734 1152921504606846976) returns the obviously-bogus value (-948597
21735 62170) on my RHEL 5.5 x86-64 host. With the patch, it correctly
21736 reports time overflow. See
21737 <http://lists.gnu.org/archive/html/emacs-devel/2011-03/msg00470.html>.
21738 * deps.mk (editfns.o): Depend on ../lib/intprops.h.
21739 * editfns.c: Include limits.h and intprops.h.
21740 (TIME_T_MIN, TIME_T_MAX): New macros.
21741 (time_overflow): Move earlier, to before first use.
21742 (hi_time, lo_time): New functions, for an accurate test for
21743 out-of-range times.
21744 (Fcurrent_time, Fget_internal_run_time, make_time): Use them.
21745 (Fget_internal_run_time): Don't assume time_t fits in int.
21746 (make_time): Use list2 instead of Fcons twice.
21747 (Fdecode_time): More accurate test for out-of-range times.
21748 (check_tm_member): New function.
21749 (Fencode_time): Use it, to test for out-of-range times.
21750 (lisp_time_argument): Don't rely on undefined left-shift and
21751 right-shift behavior when checking for time stamp overflow.
21752
21753 * editfns.c (time_overflow): New function, refactoring common code.
21754 (Fformat_time_string, Fdecode_time, Fencode_time):
21755 (Fcurrent_time_string): Use it.
21756
21757 Move 'make_time' to be next to its inverse 'lisp_time_argument'.
21758 * dired.c (make_time): Move to ...
21759 * editfns.c (make_time): ... here.
21760 * systime.h: Note the move.
21761
21762 2011-03-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21763
21764 * fringe.c (update_window_fringes): Remove unused variables.
21765
21766 * unexmacosx.c (copy_data_segment): Also copy __got section.
21767 (Bug#8223)
21768
21769 2011-03-12 Eli Zaretskii <eliz@gnu.org>
21770
21771 * termcap.c [MSDOS]: Include "msdos.h".
21772 (find_capability, tgetnum, tgetflag, tgetstr, tputs, tgetent):
21773 Constify `char *' arguments and their references according to
21774 prototypes in tparam.h.
21775
21776 * deps.mk (termcap.o): Depend on tparam.h and msdos.h.
21777
21778 * msdos.c (XMenuAddPane): 3rd argument is `const char *' now.
21779 Adapt all references accordingly.
21780
21781 * msdos.h (XMenuAddPane): 3rd argument is `const char *' now.
21782
21783 2011-03-11 Tom Tromey <tromey@redhat.com>
21784
21785 * buffer.c (syms_of_buffer): Remove obsolete comment.
21786
21787 2011-03-11 Eli Zaretskii <eliz@gnu.org>
21788
21789 * termhooks.h (encode_terminal_code): Declare prototype.
21790
21791 * msdos.c (encode_terminal_code): Don't declare prototype.
21792
21793 * term.c (encode_terminal_code): Now external again, used by
21794 w32console.c and msdos.c.
21795
21796 * makefile.w32-in ($(BLD)/term.$(O), ($(BLD)/tparam.$(O)):
21797 Depend on $(SRC)/tparam.h, see 2011-03-11T07:24:21Z!eggert@cs.ucla.edu.
21798
21799 2011-03-11 Paul Eggert <eggert@cs.ucla.edu>
21800
21801 Fix some minor problems found by GCC 4.5.2's static checks.
21802
21803 * fringe.c (update_window_fringes): Mark locals as initialized
21804 (Bug#8227).
21805 (destroy_fringe_bitmap, init_fringe_bitmap): Now static.
21806
21807 * alloc.c (mark_fringe_data): Move decl from here ...
21808 * lisp.h (mark_fringe_data) [HAVE_WINDOW_SYSTEM]: ... to here,
21809 to check its interface.
21810 (init_fringe_once): Do not declare unless HAVE_WINDOW_SYSTEM.
21811
21812 * fontset.c (free_realized_fontset): Now static.
21813 (Fset_fontset_font): Rename local to avoid shadowing.
21814 (fontset_font): Mark local as initialized.
21815 (FONTSET_SPEC, FONTSET_REPERTORY, RFONT_DEF_REPERTORY): Remove; unused.
21816
21817 * xrdb.c: Include "xterm.h", to check x_load_resources's interface.
21818
21819 * xselect.c (x_disown_buffer_selections): Remove; not used.
21820 (TRACE3) [!defined TRACE_SELECTION]: Remove; not used.
21821 (x_own_selection, Fx_disown_selection_internal): Rename locals
21822 to avoid shadowing.
21823 (x_handle_dnd_message): Remove local to avoid shadowing.
21824
21825 * lisp.h (GCPRO1_VAR, UNGCPRO_VAR): New macros,
21826 so that the caller can use some name other than gcpro1.
21827 (GCPRO1, UNGCPRO): Reimplement in terms of the new macros.
21828 * xfns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
21829 (Fx_backspace_delete_keys_p):
21830 Use them to avoid shadowing, and rename vars to avoid shadowing.
21831 (x_decode_color, x_set_name, x_window): Now static.
21832 (Fx_create_frame): Add braces to silence GCC warning.
21833 (Fx_file_dialog, Fx_select_font): Fix pointer signedness.
21834 (x_real_positions, xg_set_icon_from_xpm_data, x_create_tip_frame):
21835 Remove unused locals.
21836 (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
21837 (Fx_backspace_delete_keys_p): Rename locals to avoid shadowing.
21838 Some of these renamings use the new GCPRO1_VAR and UNGCPRO_VAR
21839 macros.
21840
21841 * xterm.h (x_mouse_leave): New decl.
21842
21843 * xterm.c (x_copy_dpy_color, x_focus_on_frame, x_unfocus_frame):
21844 Remove unused functions.
21845 (x_shift_glyphs_for_insert, XTflash, XTring_bell):
21846 (x_calc_absolute_position): Now static.
21847 (XTread_socket): Don't define label "out" unless it's used.
21848 Don't declare local "event" unless it's used.
21849 (x_iconify_frame, x_free_frame_resources): Don't declare locals
21850 unless they are used.
21851 (XEMBED_VERSION, xembed_set_info): Don't define unless needed.
21852 (x_fatal_error_signal): Remove; not used.
21853 (x_draw_image_foreground, redo_mouse_highlight, XTmouse_position):
21854 (x_scroll_bar_report_motion, handle_one_xevent, x_draw_bar_cursor):
21855 (x_error_catcher, x_connection_closed, x_error_handler):
21856 (x_error_quitter, xembed_send_message, x_iconify_frame):
21857 (my_log_handler): Rename locals to avoid shadowing.
21858 (x_delete_glyphs, x_ins_del_lines): Mark with NO_RETURN.
21859 (x_connection_closed): Tell GCC not to suggest NO_RETURN.
21860
21861 * xfaces.c (clear_face_cache, Fx_list_fonts, Fface_font):
21862 Rename or move locals to avoid shadowing.
21863 (tty_defined_color, merge_face_heights): Now static.
21864 (free_realized_faces_for_fontset): Remove; not used.
21865 (Fx_list_fonts): Mark variable that gcc -Wuninitialized
21866 does not deduce is never used uninitialized.
21867 (STRDUPA, LSTRDUPA, FONT_POINT_SIZE_QUANTUM): Remove; not used.
21868 (LFACEP): Define only if XASSERTS, as it's not needed otherwise.
21869
21870 * terminal.c (store_terminal_param): Now static.
21871
21872 * xmenu.c (menu_highlight_callback): Now static.
21873 (set_frame_menubar): Remove unused local.
21874 (xmenu_show): Rename parameter to avoid shadowing.
21875 (xmenu_show, xdialog_show, xmenu_show): Make local pointers "const"
21876 since they might point to immutable storage.
21877 (next_menubar_widget_id): Declare only if USE_X_TOOLKIT,
21878 since it's unused otherwise.
21879
21880 * xdisp.c (produce_glyphless_glyph): Initialize lower_xoff.
21881 Add a FIXME, since the code still doesn't look right. (Bug#8215)
21882 (Fcurrent_bidi_paragraph_direction): Simplify slightly; this
21883 avoids a gcc -Wuninitialized diagnostic.
21884 (display_line, BUILD_COMPOSITE_GLYPH_STRING, draw_glyphs):
21885 (note_mouse_highlight): Mark variables that gcc -Wuninitialized
21886 does not deduce are never used uninitialized.
21887
21888 * lisp.h (IF_LINT): New macro, copied from ../lib-src/emacsclient.c.
21889
21890 * xdisp.c (redisplay_window): Rename local to avoid shadowing.
21891 * window.c (window_loop, size_window):
21892 (run_window_configuration_change_hook, enlarge_window): Likewise.
21893
21894 * window.c (display_buffer): Now static.
21895 (size_window): Mark variables that gcc -Wuninitialized
21896 does not deduce are never used uninitialized.
21897 * window.h (check_all_windows): New decl, to forestall
21898 gcc -Wmissing-prototypes diagnostic.
21899 * dispextern.h (bidi_dump_cached_states): Likewise.
21900
21901 * charset.h (CHECK_CHARSET_GET_CHARSET): Rename locals to avoid
21902 shadowing.
21903 * charset.c (map_charset_for_dump, Fchar_charset): Likewise.
21904 Include <limits.h>.
21905 (Fsort_charsets): Redo min/max calculation to shorten the code a bit
21906 and to avoid gcc -Wuninitialized warning.
21907 (load_charset_map): Mark variables that gcc -Wuninitialized
21908 does not deduce are never used uninitialized.
21909 (load_charset): Abort instead of using uninitialized var (Bug#8229).
21910
21911 * coding.c (coding_set_source, coding_set_destination):
21912 Use "else { /* comment */ }" rather than "else /* comment */;"
21913 for clarity, and to avoid gcc -Wempty-body warning.
21914 (Fdefine_coding_system_internal): Don't redeclare 'i' inside
21915 a block, when the outer 'i' will do.
21916 (decode_coding_utf_8, decode_coding_utf_16, detect_coding_emacs_mule):
21917 (emacs_mule_char, decode_coding_emacs_mule, detect_coding_iso_2022):
21918 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5):
21919 (decode_coding_raw_text, decode_coding_charset, get_translation_table):
21920 (Fdecode_sjis_char, Fdefine_coding_system_internal):
21921 Rename locals to avoid shadowing.
21922 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
21923 * coding.c (emacs_mule_char, encode_invocation_designation):
21924 Now static, since they're not used elsewhere.
21925 (decode_coding_iso_2022): Add "default: abort ();" as a safety check.
21926 (decode_coding_object, encode_coding_object, detect_coding_system):
21927 (decode_coding_emacs_mule): Mark variables that gcc
21928 -Wuninitialized does not deduce are never used uninitialized.
21929 (detect_coding_iso_2022): Initialize a local variable that might
21930 be used uninitialized. Leave a FIXME because it's not clear that
21931 this initialization is needed. (Bug#8211)
21932 (ISO_CODE_LF, ISO_CODE_CR, CODING_ISO_FLAG_EUC_TW_SHIFT):
21933 (ONE_MORE_BYTE_NO_CHECK, UTF_BOM, UTF_16_INVALID_P):
21934 (SHIFT_OUT_OK, ENCODE_CONTROL_SEQUENCE_INTRODUCER):
21935 (ENCODE_DIRECTION_R2L, ENCODE_DIRECTION_L2R):
21936 Remove unused macros.
21937
21938 * category.c (hash_get_category_set): Remove unused local var.
21939 (copy_category_table): Now static, since it's not used elsewhere.
21940 * character.c (string_count_byte8): Likewise.
21941
21942 * ccl.c (CCL_WRITE_STRING, CCL_ENCODE_CHAR, Fccl_execute_on_string):
21943 (Fregister_code_conversion_map): Rename locals to avoid shadowing.
21944
21945 * chartab.c (copy_sub_char_table): Now static, since it's not used
21946 elsewhere.
21947 (sub_char_table_ref_and_range, char_table_ref_and_range):
21948 Rename locals to avoid shadowing.
21949 (ASET_RANGE, GET_SUB_CHAR_TABLE): Remove unused macros.
21950
21951 * bidi.c (bidi_check_type): Now static, since it's not used elsewhere.
21952 (BIDI_BOB): Remove unused macro.
21953
21954 * cm.c (cmgoto): Mark variables that gcc -Wuninitialized does not
21955 deduce are never used uninitialized.
21956 * term.c (encode_terminal_code): Likewise.
21957
21958 * term.c (encode_terminal_code): Now static. Remove unused local.
21959
21960 * tparam.h: New file.
21961 * term.c, tparam.h: Include it.
21962 * deps.mk (term.o, tparam.o): Depend on tparam.h.
21963 * term.c (tputs, tgetent, tgetflag, tgetnum, tparam, tgetstr):
21964 Move these decls to tparam.h, and make them agree with what
21965 is actually in tparam.c. The previous trick of using incompatible
21966 decls in different modules does not conform to the C standard.
21967 All callers of tparam changed to use tparam's actual API.
21968 * tparam.c (tparam1, tparam, tgoto):
21969 Use const pointers where appropriate.
21970
21971 * cm.c (calccost, cmgoto): Use const pointers where appropriate.
21972 * cm.h (struct cm): Likewise.
21973 * dispextern.h (do_line_insertion_deletion_costs): Likewise.
21974 * scroll.c (ins_del_costs, do_line_insertion_deletion_costs): Likewise.
21975 * term.c (tty_ins_del_lines, calculate_costs, struct fkey_table):
21976 (term_get_fkeys_1, append_glyphless_glyph, produce_glyphless_glyph):
21977 (turn_on_face, init_tty): Likewise.
21978 * termchar.h (struct tty_display_info): Likewise.
21979
21980 * term.c (term_mouse_position): Rename local to avoid shadowing.
21981
21982 * alloc.c (mark_ttys): Move decl from here ...
21983 * lisp.h (mark_ttys): ... to here, so that it's checked against defn.
21984
21985 2011-03-11 Andreas Schwab <schwab@linux-m68k.org>
21986
21987 * .gdbinit (pwinx, xbuffer): Fix access to buffer name.
21988
21989 2011-03-09 Juanma Barranquero <lekktu@gmail.com>
21990
21991 * search.c (compile_pattern_1): Remove argument regp, unused since
21992 revid:rms@gnu.org-19941211082627-3x1g1wyqkjmwloig.
21993 (compile_pattern): Don't pass it.
21994
21995 2011-03-08 Jan Djärv <jan.h.d@swipnet.se>
21996
21997 * xterm.h (DEFAULT_GDK_DISPLAY): New define.
21998 (GDK_WINDOW_XID, gtk_widget_get_preferred_size): New defines
21999 for ! HAVE_GTK3.
22000 (GTK_WIDGET_TO_X_WIN): Use GDK_WINDOW_XID.
22001
22002 * xmenu.c (menu_position_func): Call gtk_widget_get_preferred_size.
22003
22004 * gtkutil.c: Include gtkx.h if HAVE_GTK3. If ! HAVE_GTK3, define
22005 gdk_window_get_screen, gdk_window_get_geometry,
22006 gdk_x11_window_lookup_for_display and GDK_KEY_g.
22007 (xg_set_screen): Use DEFAULT_GDK_DISPLAY.
22008 (xg_get_pixbuf_from_pixmap): New function.
22009 (xg_get_pixbuf_from_pix_and_mask): Change parameters from GdkPixmap
22010 to Pixmap, take frame as parameter, remove GdkColormap parameter.
22011 Call xg_get_pixbuf_from_pixmap instead of
22012 gdk_pixbuf_get_from_drawable.
22013 (xg_get_image_for_pixmap): Do not make GdkPixmaps, call
22014 xg_get_pixbuf_from_pix_and_mask with Pixmap parameters instead.
22015 (xg_check_special_colors): Use GtkStyleContext and its functions
22016 for HAVE_GTK3.
22017 (xg_prepare_tooltip, xg_hide_tooltip): Call gdk_window_get_screen.
22018 (xg_prepare_tooltip, create_dialog, menubar_map_cb)
22019 (xg_update_frame_menubar, xg_tool_bar_detach_callback)
22020 (xg_tool_bar_attach_callback, xg_update_tool_bar_sizes):
22021 Call gtk_widget_get_preferred_size.
22022 (xg_frame_resized): gdk_window_get_geometry only takes 5
22023 parameters.
22024 (xg_win_to_widget, xg_event_is_for_menubar):
22025 Call gdk_x11_window_lookup_for_display.
22026 (xg_set_widget_bg): New function.
22027 (delete_cb): New function.
22028 (xg_create_frame_widgets): Connect delete-event to delete_cb.
22029 Call xg_set_widget_bg. Only set background pixmap for ! HAVE_GTK3
22030 (xg_set_background_color): Call xg_set_widget_bg.
22031 (xg_set_frame_icon): Call xg_get_pixbuf_from_pix_and_mask.
22032 (xg_create_scroll_bar): vadj is a GtkAdjustment for HAVE_GTK3.
22033 Only call gtk_range_set_update_policy if ! HAVE_GTK3.
22034 (xg_make_tool_item): Only connect xg_tool_bar_item_expose_callback
22035 if ! HAVE_GTK3.
22036 (update_frame_tool_bar): Call gtk_widget_hide.
22037 (xg_initialize): Use GDK_KEY_g.
22038
22039 * xsmfns.c (gdk_set_sm_client_id): Define to gdk_set_sm_client_id
22040 if ! HAVE_GTK3
22041 (x_session_initialize): Call gdk_x11_set_sm_client_id.
22042
22043 * xterm.c (XFillRectangle): Use cairo routines for HAVE_GTK3.
22044 (x_term_init): Disable Xinput(2) with GDK_CORE_DEVICE_EVENTS.
22045 Load ~/emacs.d/gtkrc only for ! HAVE_GTK3.
22046
22047 2011-03-08 Juanma Barranquero <lekktu@gmail.com>
22048
22049 * w32xfns.c (select_palette): Check success of RealizePalette against
22050 GDI_ERROR, not zero.
22051
22052 See ChangeLog.11 for earlier changes.
22053
22054 ;; Local Variables:
22055 ;; coding: utf-8
22056 ;; End:
22057
22058 Copyright (C) 2011-2013 Free Software Foundation, Inc.
22059
22060 This file is part of GNU Emacs.
22061
22062 GNU Emacs is free software: you can redistribute it and/or modify
22063 it under the terms of the GNU General Public License as published by
22064 the Free Software Foundation, either version 3 of the License, or
22065 (at your option) any later version.
22066
22067 GNU Emacs is distributed in the hope that it will be useful,
22068 but WITHOUT ANY WARRANTY; without even the implied warranty of
22069 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22070 GNU General Public License for more details.
22071
22072 You should have received a copy of the GNU General Public License
22073 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.