Merge from emacs-24; up to 2012-12-05T00:13:56Z!yamaoka@jpl.org
[bpt/emacs.git] / src / ChangeLog
1 2012-12-30 Andreas Schwab <schwab@linux-m68k.org>
2
3 * src/Makefile.in (TEMACS_LDFLAGS2): Remove.
4 (LIBS_GNUSTEP): Define.
5 (LIBES): Add $(LIBS_GNUSTEP).
6 (temacs$(EXEEXT)): Use $(LDFLAGS) instead of $(TEMACS_LDFLAGS2).
7
8 2012-12-30 Eli Zaretskii <eliz@gnu.org>
9
10 * xdisp.c (set_cursor_from_row): Don't confuse a truncation or
11 continuation glyph on a TTY with an indication of an empty line.
12 (Bug#13277)
13
14 2012-12-29 Eli Zaretskii <eliz@gnu.org>
15
16 * fileio.c (Fset_file_selinux_context, Fset_file_acl): Return t if
17 file's SELinux context or ACLs successfully set, nil otherwise.
18 (Bug#13298)
19 (Fcopy_file) [WINDOWSNT]: Improve diagnostics when CopyFile fails.
20
21 * w32proc.c (reader_thread): Avoid passing NULL handles to
22 SetEvent and WaitForSingleObject.
23
24 2012-12-28 Paul Eggert <eggert@cs.ucla.edu>
25
26 Port EXTERNALLY_VISIBLE to Clang 3.2.
27 * conf_post.h (__has_attribute): New macro.
28 (EXTERNALLY_VISIBLE): Use it. This ports to Clang 3.2.
29
30 2012-12-27 Glenn Morris <rgm@gnu.org>
31
32 * cygw32.c (Fcygwin_convert_file_name_to_windows)
33 (Fcygwin_convert_file_name_from_windows): Doc fixes.
34
35 2012-12-27 Eli Zaretskii <eliz@gnu.org>
36
37 * fileio.c (file_name_as_directory, directory_file_name): Accept
38 an additional argument MULTIBYTE to indicate whether the input C
39 came from a multibyte or a unibyte Lisp string; all callers
40 adjusted. Don't assume the input string is always multibyte.
41 (Bug#13262)
42 (Ffile_name_directory) [DOS_NT]: Handle unibyte strings correctly:
43 don't ENCODE_FILE them, and return a unibyte string if the input
44 was unibyte.
45 (Fexpand_file_name): Don't mix unibyte with multibyte strings, and
46 don't assume the input strings will always be multibyte. If the
47 input strings are multibyte, decode strings obtained from C
48 library functions.
49
50 2012-12-26 Dmitry Antipov <dmantipov@yandex.ru>
51
52 * lisp.h (toplevel): Add two notices to the comment about
53 defining a new Lisp data type.
54 * print.c (print_object): If Lisp_Save_Value object's pointer
55 is the address of a memory area containing Lisp_Objects, try
56 to print them.
57 * alloc.c (valid_lisp_object_p): Adjust comment.
58
59 2012-12-26 Dmitry Antipov <dmantipov@yandex.ru>
60
61 * keyboard.c (record_asynch_buffer_change): Initialize an event
62 only if it's really needed.
63 * frame.h (enum output_method): Remove output_mac member since
64 it's a leftover from the deleted code.
65 * frame.c (Fframep): Adjust user here ...
66 * terminal.c (Fterminal_live_p): ... and here.
67 * coding.c (Qmac): Now here because it's only used to denote
68 end-of-line encoding type.
69 (syms_of_coding): DEFSYM it.
70 * frame.h (Qmac): Remove duplicated declaration.
71
72 2012-12-26 Paul Eggert <eggert@cs.ucla.edu>
73
74 * window.c (select_window_1): Now static, since it's used only here.
75
76 2012-12-25 Eli Zaretskii <eliz@gnu.org>
77
78 * window.c (window_body_cols): Subtract display margins from the
79 window body width on TTYs as well. See
80 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-12/msg00317.html
81 for the original report.
82
83 2012-12-25 Dmitry Antipov <dmantipov@yandex.ru>
84
85 * xdisp.c (redisplay_window): Remove inner local variable
86 because the outer shadowed one has the same meaning.
87 * xterm.h (struct x_output): Remove toolbar_detached member since it's
88 set but never used.
89 * gtkutil.c (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
90 (xg_create_tool_bar): Adjust users.
91
92 2012-12-24 Dmitry Antipov <dmantipov@yandex.ru>
93
94 * buffer.h (BUF_COMPACT): New macro to follow the common style.
95 * buffer.c (Fget_buffer_create): Use it to set compact field of
96 struct buffer_text to avoid accessing an uninitialized value
97 when compact_buffer is called for the first time.
98 (compact_buffer): Use convenient BUF_COMPACT and BUF_MODIFF.
99 (Fset_buffer_modified_p): Use buffer_window_count to check
100 whether the buffer is displayed in some window.
101 * xdisp.c (message_dolog): Likewise.
102
103 2012-12-23 Eli Zaretskii <eliz@gnu.org>
104
105 * w32.c (acl_set_file): If setting the file security descriptor
106 fails, and the new DACL is identical to the existing one, silently
107 return success. This fixes problems for users backing up their
108 own files without having the necessary privileges for setting
109 security descriptors.
110
111 * w32proc.c (reader_thread): Do not index fd_info[] with negative
112 values.
113 (reader_thread): Exit when cp->status becomes STATUS_READ_ERROR
114 after WaitForSingleObject returns normally. This expedites reader
115 thread shutdown when delete_child triggers it.
116 (reap_subprocess): More accurate commentary for why we call
117 delete_child only when cp->fd is negative.
118
119 * w32.c (sys_close): Do not call delete_child on a subprocess
120 whose handle is not yet closed. Instead, set its file descriptor
121 to a negative value, so that reap_subprocess will call
122 delete_child on that subprocess when its SIGCHLD arrives. This
123 avoids closing handles used for communications between sys_select
124 and reader_thread, which doesn't give sys_select a chance to
125 notice that the process exited and invoke the SIGCHLD handler for
126 it.
127
128 2012-12-23 Jan Djärv <jan.h.d@swipnet.se>
129
130 * nsfns.m (Fns_do_applescript): Run event loop until script has
131 been executed (Bug#12969).
132 (ns_run_ascript): Chech as_script for nil, set to nil after
133 executing script.
134
135 2012-12-22 Martin Rudalics <rudalics@gmx.at>
136
137 * window.c (Fselect_window): Reword doc-string (Bug#13248).
138
139 2012-12-22 Eli Zaretskii <eliz@gnu.org>
140
141 * w32term.c (w32fullscreen_hook): New function.
142 (w32_create_terminal): Plug it into the terminal's fullscreen_hook.
143
144 2012-12-21 Eli Zaretskii <eliz@gnu.org>
145
146 * fileio.c (Finsert_file_contents): Doc fix.
147
148 * w32proc.c (new_child, delete_child, find_child_pid): For a
149 subprocess, consider its slot being in use as long as its process
150 handle (procinfo.hProcess) is not NULL. This avoids reusing the
151 slot when a new process is started immediately after killing
152 another one, without waiting enough time for the first process to
153 be reaped and resources allocated for it be orderly freed.
154 (Bug#13086)
155 Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
156
157 2012-12-21 Chong Yidong <cyd@gnu.org>
158
159 * buffer.c (Fset_buffer_major_mode): Doc fix (Bug#13231).
160
161 * fns.c (Fcompare_strings): Doc fix (Bug#13081).
162
163 2012-12-21 Eli Zaretskii <eliz@gnu.org>
164
165 * w32.c (get_name_and_id): Always pass NULL as the first argument
166 of lookup_account_sid. Avoids crashes with UNC file names that
167 refer to DFS domains, not to specific machine names. (Bug#12621)
168 Remove now unused argument FNAME; all callers changed.
169 (get_file_owner_and_group): Remove now unused argument FNAME; all
170 callers changed.
171
172 2012-12-21 Chong Yidong <cyd@gnu.org>
173
174 * editfns.c (Finsert_char): Since read-char-by-name now signals an
175 error for invalid chars, don't check for a nil return value.
176
177 2012-12-20 Dmitry Antipov <dmantipov@yandex.ru>
178
179 Avoid calls to CHAR_TO_BYTE if byte position is known.
180 * editfns.c (make_buffer_string_both): Use move_gap_both.
181 (Fbuffer_string): Use make_buffer_string_both.
182 * marker.c (buf_charpos_to_bytepos): Convert to eassert.
183 Adjust comment.
184 (buf_bytepos_to_charpos): Likewise.
185 (charpos_to_bytepos): Remove.
186 * fileio.c (Finsert_file_contents): Use move_gap_both.
187 * search.c (Freplace_match): Likewise.
188 * process.c (process_send_region): Likewise. Use convenient
189 names for byte positions.
190 * lisp.h (charpos_to_bytepos): Remove prototype.
191 * indent.c (scan_for_column): Use CHAR_TO_BYTE.
192 * insdel.c (move_gap): Likewise.
193
194 2012-12-20 Paul Eggert <eggert@cs.ucla.edu>
195
196 * xdisp.c (redisplay_internal): Remove now-unused local.
197
198 2012-12-20 Stefan Monnier <monnier@iro.umontreal.ca>
199
200 * xdisp.c (select_frame_for_redisplay, ensure_selected_frame): Remove.
201 (redisplay_internal): Don't bother selecting the frame to get the
202 proper value of frame-local variables.
203
204 2012-12-20 Dmitry Antipov <dmantipov@yandex.ru>
205
206 * textprop.c (set_text_properties_1): Do not allow NULL interval.
207 Rename 4th argument since it may be buffer or string. Adjust comment.
208 * intervals.c (graft_intervals_info_buffer): Find an interval here.
209
210 2012-12-19 Dmitry Antipov <dmantipov@yandex.ru>
211
212 * coding.c (Fdetect_coding_region): Do not check start and end with
213 CHECK_NUMBER_COERCE_MARKER since validate_region does that itself.
214 (code_convert_region): Likewise.
215
216 2012-12-18 Eli Zaretskii <eliz@gnu.org>
217
218 * w32.c (acl_get_file, acl_set_file): Run the file name through
219 map_w32_filename, and resolve any symlinks in the file name, like
220 Posix platforms do.
221 (acl_set_file): Call revert_to_self, if any privileges were
222 enabled.
223
224 2012-12-17 Juanma Barranquero <lekktu@gmail.com>
225
226 * makefile.w32-in ($(BLD)/editfns.$(O), $(BLD)/fileio.$(O))
227 ($(BLD)/w32.$(O)): Update dependencies.
228
229 2012-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
230
231 * xdisp.c (select_frame_for_redisplay): Use select_window_1 to
232 propagate redisplay's scrolling (if any) to the right window.
233 (redisplay_internal): Use ensure_selected_frame.
234 (display_mode_lines): Complete last fix.
235 * window.c (select_window_1): New func, extracted from select_window.
236 (select_window): Use it.
237 * window.h (select_window_1): Declare.
238
239 2012-12-17 Eli Zaretskii <eliz@gnu.org>
240
241 Emulate Posix ACL APIs on MS-Windows.
242 * w32.c: Include sddl.h and sys/acl.h.
243 (SDDL_REVISION_1): Define if not already defined.
244 (g_b_init_get_security_descriptor_dacl)
245 (g_b_init_convert_sd_to_sddl, g_b_init_convert_sddl_to_sd)
246 (g_b_init_is_valid_security_descriptor)
247 (g_b_init_set_file_security): New static flags.
248 (globals_of_w32): Initialize them to zero.
249 (SetFileSecurity_Name): New string constant.
250 (SetFileSecurity_Proc, GetSecurityDescriptorDacl_Proc)
251 (ConvertStringSecurityDescriptorToSecurityDescriptor_Proc)
252 (ConvertSecurityDescriptorToStringSecurityDescriptor_Proc)
253 (IsValidSecurityDescriptor_Proc): New typedefs.
254 (get_file_security, get_security_descriptor_owner)
255 (get_security_descriptor_group): Set errno to ENOTSUP.
256 (set_file_security, get_security_descriptor_dacl)
257 (is_valid_security_descriptor, convert_sd_to_sddl)
258 (convert_sddl_to_sd, acl_valid, acl_to_text, acl_from_text)
259 (acl_free, acl_get_file, acl_set_file): New functions.
260
261 * fileio.c (Fcopy_file) [WINDOWSNT]: Support copying ACLs.
262
263 2012-12-17 Paul Eggert <eggert@cs.ucla.edu>
264
265 Don't reraise SIGCHLD, as that can now lose (Bug#13192).
266 With the 2012-12-03 fix for Bug#12980 in place, an old workaround
267 for some of that bug's symptoms can now cause Emacs to abort.
268 Remove the workaround.
269 * process.c (wait_reading_process_output): Don't reraise SIGCHLD.
270 The bug that caused SIGCHLD to get lost has been fixed, and the
271 workaround for it can now cause Emacs to abort.
272
273 2012-12-16 Paul Eggert <eggert@cs.ucla.edu>
274
275 * sysdep.c (emacs_abort): Bump backtrace size to 40.
276 Companion to the 2012-09-30 patch. Suggested by Eli Zaretskii in
277 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00796.html>.
278
279 2012-12-16 Romain Francoise <romain@orebokech.com>
280
281 * fileio.c (Ffile_acl, Fset_file_acl): New functions.
282 (Fcopy_file): Change last arg to `preserve_extended_attributes'
283 and copy ACL entries of file in addition to SELinux context if set.
284 (syms_of_fileio): Add `file-acl' and `set-file-acl'.
285
286 * Makefile.in (LIBACL_LIBS): New macro.
287 (LIBES): Use it.
288
289 2012-12-15 Paul Eggert <eggert@cs.ucla.edu>
290
291 * fileio.c (internal_delete_file): Use bool for boolean.
292
293 2012-12-15 Eli Zaretskii <eliz@gnu.org>
294
295 Fix bug #13079 on MS-Windows with temp files not being deleted.
296 * w32.h (_child_process): New members input_file and
297 pending_deletion.
298 (register_child): First argument is now pid_t.
299 (record_infile, record_pending_deletion): New prototypes.
300
301 * w32proc.c (new_child): Initialize input_file and
302 pending_deletion members of the child.
303 (delete_child): Delete the child's temporary input file, if any,
304 that is pending deletion.
305 (register_child): First argument is now pid_t.
306 (record_infile, record_pending_deletion): New functions.
307 (reap_subprocess): Fix a typo in DebPrint string.
308 (sys_spawnve, sys_kill): Use pid_t for PID arguments.
309
310 * fileio.c (internal_delete_file): Return an int again: non-zero
311 if delete-file succeeds, zero otherwise.
312
313 * lisp.h (internal_delete_file): Adjust prototype.
314
315 * callproc.c (Fcall_process): Don't overwrite infile with result
316 of DECODE_FILE.
317 [WINDOWSNT] If BUFFER is an integer, i.e. we are launching an
318 asynchronous subprocess, record the name of the input file name,
319 if any.
320 (delete_temp_file) [WINDOWSNT]: If internal_delete_file fails to
321 delete the file, record it as pending deletion when the subprocess
322 exits.
323
324 2012-12-14 Eli Zaretskii <eliz@gnu.org>
325
326 * editfns.c [HAVE_PWD_H]: Include grp.h.
327
328 * makefile.w32-in ($(BLD)/editfns.$(O)): Add $(NT_INC)/grp.h.
329
330 2012-12-14 Paul Eggert <eggert@cs.ucla.edu>
331
332 Fix permissions bugs with setgid directories etc. (Bug#13125)
333 * dired.c (Ffile_attributes): Return t as the 9th attribute,
334 to mark it as a placeholder. The old value was often wrong.
335 The only user of this attribute has been changed to use
336 file-ownership-preserved-p instead, with its new group arg.
337 * editfns.c (Fgroup_gid, Fgroup_real_gid): New functions.
338
339 2012-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
340
341 * xdisp.c (select_frame_for_redisplay, display_mode_lines):
342 Keep selected_window and selected_frame in sync.
343
344 2012-12-14 Eli Zaretskii <eliz@gnu.org>
345
346 * w32.c (stat_worker): If w32_stat_get_owner_group is zero, do not
347 try to get accurate owner and group information from NT file
348 security APIs. This is to make most callers of 'stat' and
349 'lstat', which don't need that information, much faster.
350
351 * dired.c (Ffile_attributes) [WINDOWSNT]:
352 Set w32_stat_get_owner_group to a non-zero value, to request accurate
353 owner and group information from 'lstat'.
354
355 2012-12-13 Paul Eggert <eggert@cs.ucla.edu>
356
357 * fileio.c (Finsert_file_contents): Don't put tail into head area,
358 as that confuses set-auto-coding, so insist on the head-read
359 returning the full 1024 bytes. Let lseek compute the tail offset;
360 less work for us. Do not ignore I/O errors when reading the tail.
361
362 * xdisp.c: Minor style fixes.
363 (init_iterator): Hoist assignment out of if-expression.
364 (markpos_of_region): Callers now test for sign, not for -1.
365
366 2012-12-13 Dmitry Antipov <dmantipov@yandex.ru>
367
368 Minor redisplay optimization when the region length is zero.
369 * xdisp.c (markpos_of_region): New function.
370 (init_iterator): Do not highlight the region of zero length.
371 (redisplay_window): Check whether the region is of non-zero length.
372 (try_cursor_movement): Allow if the region length is zero.
373 (try_window_reusing_current_matrix, try_window_id): Likewise.
374
375 2012-12-13 Eli Zaretskii <eliz@gnu.org>
376
377 * search.c (search_buffer): Check the inverse translations of each
378 character in pattern when the buffer being searched is unibyte.
379 (Bug#13084)
380
381 2012-12-13 Paul Eggert <eggert@cs.ucla.edu>
382
383 * fileio.c (Fvisited_file_modtime): Return (-1 ...) for nonexistent
384 files, fixing a regression from 24.2.
385 (Fverify_visited_file_modtime): Don't read uninitialized st.st_size.
386
387 2012-12-13 Paul Eggert <eggert@cs.ucla.edu>
388
389 * fileio.c (Fcopy_file): Make fstat failure as serious as open failure.
390 fstat shouldn't fail, and if it does fail copy-file should not proceed.
391 Remove unnecessary S_ISLNK test, as (contra the comments) this
392 function can't copy symlinks. Improve quality of error message
393 when attempting to copy files that are neither regular files nor
394 directories.
395
396 2012-12-12 Dmitry Antipov <dmantipov@yandex.ru>
397
398 * dispnew.c (set_window_cursor_after_update): Use clip_to_bounds.
399 * gtkutil.c (xg_set_toolkit_scroll_bar_thumb):
400 * window.c (Frecenter):
401 * xdisp.c (resize_mini_window, hscroll_window_tree, draw_glyphs):
402 * xterm.c (x_set_toolkit_scroll_bar_thumb): Likewise.
403
404 2012-12-12 Daniel Colascione <dancol@dancol.org>
405
406 * unexcw.c (fixup_executable): Use posix_fallocate to ensure that
407 the dumped Emacs is not a sparse file, greatly improving Cygwin
408 "make bootstrap" performance.
409
410 2012-12-11 Michael Albinus <michael.albinus@gmx.de>
411
412 * inotify.c (inotify_callback): Generate an Emacs event for every
413 incoming inotify event.
414
415 2012-12-11 Eli Zaretskii <eliz@gnu.org>
416
417 * xdisp.c (handle_face_prop): Fix logic of computing
418 it->start_of_box_run_p.
419 (append_space_for_newline): If the glyph row is R2L, reset the
420 iterator's end_of_box_run_p flag before prepending the space glyph.
421 (extend_face_to_end_of_line): If the glyph row is R2L, reset the
422 iterator's start_of_box_run_p flag before prepending the stretch.
423 (append_glyph, produce_image_glyph, append_composite_glyph)
424 (append_stretch_glyph, append_glyphless_glyph): Reverse the
425 left_box_line_p and right_box_line_p flags of the glyph for R2L
426 glyph rows. (Bug#13011)
427
428 2012-12-11 Dmitry Antipov <dmantipov@yandex.ru>
429
430 * buffer.c (Fset_buffer_multibyte): Do not force redisplay
431 if changed buffer is not shown in a window.
432 * insdel.c (prepare_to_modify_buffer): Likewise.
433 * window.c (replace_buffer_in_windows_safely): Do nothing
434 if buffer is not shown in a window.
435 (Fforce_window_update): Likewise if string or buffer argument
436 is passed.
437
438 2012-12-11 Eli Zaretskii <eliz@gnu.org>
439
440 * inotify.c (Finotify_add_watch): Rename decoded_file_name to
441 encoded_file_name, which is what it is.
442
443 2012-12-11 Dmitry Antipov <dmantipov@yandex.ru>
444
445 Consistently use marker_position and marker_byte_position.
446 * fringe.c (Ffringe_bitmaps_at_pos):
447 * indent.c (Fvertical_motion):
448 * insdel.c (prepare_to_modify_buffer):
449 * keyboard.c (make_lispy_position):
450 * window.c (Fwindow_end, Fpos_visible_in_window_p, unshow_buffer)
451 (window_scroll_pixel_based, displayed_window_lines)
452 (Fset_window_configuration):
453 * xdisp.c (message_dolog, with_echo_area_buffer_unwind_data)
454 (mark_window_display_accurate_1, redisplay_window, decode_mode_spec):
455 Replace direct access to marker fields with calls
456 to marker_position and/or marker_byte_position.
457
458 2012-12-11 Juanma Barranquero <lekktu@gmail.com>
459
460 * makefile.w32-in (SIG2STR_H): New macro.
461 (SYSWAIT_H, $(BLD)/emacs.$(O), $(BLD)/process.$(O))
462 ($(BLD)/w32notify.$(O)): Update dependencies.
463
464 2012-12-10 Daniel Colascione <dancol@dancol.org>
465
466 * w32term.c, keyboard.c: Fix build break in cygw32 by omitting
467 Windows file notification functionality unless WINDOWSNT.
468
469 * w32gui.h (hprevinst, lpCmdLine, nCmdShow): Remove unused
470 declarations.
471
472 * w32fns.c (cache_system_info): Initialize the global hinst
473 variable here so various initialization calls DTRT.
474
475 * unexw32.c (hprevinst, lpCmdLine, nCmdShow): Remove unused variables.
476 (hinst): Remove unneeded extern declaration.
477 (_start): Remove initialization of above variables; remove
478 initialization of hinst, as cache_system_info now does that.
479
480 * emacs.c (main): Call cache_system_info early in startup; we
481 previously weren't calling it in Cygwin builds.
482
483 * Makefile.in (ntsource, WINDRES, W32_RES, W#@_RES_LINK):
484 Teach the autoconf build system how to compile a Windows resource file
485 and link it to Emacs.
486
487 2012-12-10 Dmitry Antipov <dmantipov@yandex.ru>
488
489 Per-buffer window counters.
490 * buffer.h (struct buffer): New member window_count.
491 (buffer_window_count): New function.
492 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
493 Initialize window_count.
494 (Fkill_buffer): Verify window_count for the buffer being killed.
495 (modify_overlay): Do not force redisplay if buffer is not shown
496 in any window.
497 (init_buffer_once): Initialize window_count for buffer_defaults
498 and buffer_local_symbols.
499 * window.h (buffer_shared): Remove declaration.
500 (wset_buffer): Convert from inline ...
501 * window.c (wset_buffer): ... to an ordinary function.
502 (adjust_window_count): New function.
503 (make_parent_window): Use it.
504 * xdisp.c (buffer_shared): Remove.
505 (redisplay_internal, redisplay_window): Adjust users.
506 (buffer_shared_and_changed): Use per-buffer window counter.
507
508 2012-12-10 Eli Zaretskii <eliz@gnu.org>
509
510 Support for filesystem notifications on MS-Windows.
511 * w32proc.c (sys_select): If drain_message_queue returns non-zero,
512 and this is a TTY frame, signal the caller that keyboard input is
513 available.
514
515 * w32xfns.c (drain_message_queue): Now returns an int: an
516 indication whether any WM_EMACS_FILENOTIFY messages were found in
517 the queue.
518
519 * w32inevt.c (handle_file_notifications): New function.
520 (w32_console_read_socket): Call it to process file notifications.
521
522 * w32console.c (initialize_w32_display): Record the main thread ID
523 in dwMainThreadId.
524
525 * deps.mk (inotify.o): New dependency list.
526
527 * Makefile.in (SOME_MACHINE_OBJECTS): Add w32notify.o.
528
529 * w32term.h (WM_EMACS_FILENOTIFY): New custom message.
530 (WM_EMACS_END): Bump value by 1.
531 (notification_buffer_in_use, file_notifications)
532 (notifications_size, notifications_desc): Declare.
533 (w32_get_watch_object, lispy_file_action, globals_of_w32notify):
534 Add prototypes.
535
536 * w32term.c (lispy_file_action, queue_notifications): New functions.
537 (syms_of_w32term) <Qadded, Qremoved, Qmodified, Qrenamed_from>
538 <Qrenamed_to>: New symbols.
539 (w32_read_socket): Handle the WM_EMACS_FILENOTIFY message.
540
541 * w32notify.c: New file, implements file event notifications for
542 MS-Windows.
543
544 * w32fns.c (w32_wnd_proc): Handle the WM_EMACS_FILENOTIFY message
545 by posting it to the w32_read_socket queue.
546
547 * termhooks.h (enum event_kind) [HAVE_NTGUI]: Support FILE_NOTIFY_EVENT.
548
549 * makefile.w32-in (OBJ2): Add $(BLD)/w32notify.$(O).
550 (GLOBAL_SOURCES): Add w32notify.c
551 ($(BLD)/w32notify.$(O)): New set of dependencies.
552
553 * lisp.h (syms_of_w32notify) [WINDOWSNT]: Add prototype.
554
555 * keyboard.c (kbd_buffer_get_event) [WINDOWSNT]:
556 Handle FILE_NOTIFY_EVENT.
557 (syms_of_keyboard) [HAVE_NTGUI] <Qfile_notify>: New symbol.
558 (keys_of_keyboard) [WINDOWSNT]: Bind file-notify to
559 w32notify-handle-event by default.
560
561 * emacs.c (main) [WINDOWSNT]: Call globals_of_w32notify and
562 syms_of_w32notify.
563
564 2012-12-10 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
565
566 Support for filesystem notifications on GNU/Linux via inotify.
567 * termhooks.h (enum event_kind) [HAVE_INOTIFY]: Add FILE_NOTIFY_EVENT.
568
569 * lisp.h (syms_of_inotify) [HAVE_INOTIFY]: Add prototype.
570
571 * keyboard.c (Qfile_inotify) [HAVE_INOTIFY]: New variable.
572 (syms_of_keyboard): DEFSYM it.
573 (kbd_buffer_get_event) [HAVE_INOTIFY]: Generate FILE_NOTIFY_EVENT.
574 (make_lispy_event): Support FILE_NOTIFY_EVENT by generating
575 Qfile_inotify events.
576 (keys_of_keyboard) [HAVE_INOTIFY]: Bind file-inotify events in
577 special-event-map to inotify-handle-event.
578
579 * emacs.c (main) [HAVE_INOTIFY]: Call syms_of_inotify.
580
581 * Makefile.in (base_obj): Add inotify.o.
582
583 * inotify.c: New file.
584
585 2012-12-10 Jan Djärv <jan.h.d@swipnet.se>
586
587 * nsterm.m (fd_handler:): FD_ZERO fds (Bug#13103).
588
589 2012-12-10 Fabrice Popineau <fabrice.popineau@gmail.com>
590
591 * w32fns.c (cache_system_info): Cast sysinfo_cache.dwPageSize to
592 DWORD_PTR, for compatibility with 64-bit builds.
593
594 * w32.c (_PROCESS_MEMORY_COUNTERS_EX):
595 (GetProcessWorkingSetSize_Proc, get_process_working_set_size)
596 (system_process_attributes): Use SIZE_T rather than DWORD, for
597 compatibility with 64-bit builds.
598
599 2012-12-10 Christopher Schmidt <christopher@ch.ristopher.com>
600
601 * lread.c (Vload_source_file_function): Doc fix (Bug#11647).
602
603 2012-12-10 Eli Zaretskii <eliz@gnu.org>
604
605 * indent.c (Fvertical_motion): If a display string will be
606 displayed on the left or the right margin, don't consider it as a
607 factor in cursor positioning. (Bug#13108)
608
609 2012-12-10 Martin Rudalics <rudalics@gmx.at>
610
611 * editfns.c (Fcompare_buffer_substrings): Reword doc-string.
612
613 2012-12-10 Paul Eggert <eggert@cs.ucla.edu>
614
615 * fileio.c (Fsubstitute_in_file_name): Use ptrdiff_t, not int,
616 for string length.
617
618 2012-12-08 Eli Zaretskii <eliz@gnu.org>
619
620 * w32.c (unsetenv): Return 0 if the input string is too long.
621
622 2012-12-08 Paul Eggert <eggert@cs.ucla.edu>
623
624 Use putenv+unsetenv instead of modifying environ directly (Bug#13070).
625 * alloc.c (xputenv): New function.
626 * dbusbind.c (Fdbus_init_bus):
627 * emacs.c (main):
628 * xterm.c (x_term_init):
629 Use xputenv instead of setenv or putenv, to detect memory exhaustion.
630 * editfns.c (initial_tz): Move static var decl up.
631 (tzvalbuf_in_environ): New static var.
632 (init_editfns): Initialize these two static vars.
633 (Fencode_time): Don't assume arbitrary limit on EMACS_INT width.
634 Save old TZ value on stack, if it's small.
635 (Fencode_time, set_time_zone_rule): Don't modify 'environ' directly;
636 instead, use xputenv+unsetenv to set and restore TZ.
637 (environbuf): Remove static var. All uses removed.
638 (Fset_time_zone_rule): Do not save TZ and environ;
639 no longer needed here.
640 (set_time_zone_rule_tz1, set_time_zone_rule_tz2) [LOCALTIME_CACHE]:
641 Move to inside set_time_zone_rule; they don't need file scope any more.
642 (set_time_zone_rule): Maintain the TZ=value string separately.
643 (syms_of_editfns): Don't initialize initial_tz;
644 init_editfns now does it.
645 * emacs.c (dump_tz) [HAVE_TZSET]: Now const.
646 * lisp.h (xputenv): New decl.
647
648 2012-12-08 Fabrice Popineau <fabrice.popineau@gmail.com>
649
650 * w32fns.c (emacs_abort): Don't do arithmetics on void pointers.
651
652 2012-12-08 Eli Zaretskii <eliz@gnu.org>
653
654 * w32.c (unsetenv, sys_putenv): New functions.
655
656 2012-12-08 Chong Yidong <cyd@gnu.org>
657
658 * editfns.c (Finsert_char): Make the error message more
659 informative (Bug#12992).
660
661 2012-12-08 Paul Eggert <eggert@cs.ucla.edu>
662
663 Simplify get_lim_data.
664 * vm-limit.c (get_lim_data): Combine RLIMIT_AS and RLIMIT_DATA methods.
665 Remove USG and vlimit methods; no longer used these days.
666 Add #error catchall just in case.
667
668 Assume POSIX 1003.1-1988 or later for signal.h (Bug#13026).
669 Exceptions: do not assume SIGCONT, SIGSTOP, SIGTSTP, SIGTTIN,
670 SIGTTOU, SIGUSR1, SIGUSR2, as Microsoft platforms lack these.
671 * process.c [subprocesses]: Include <c-ctype.h>, <sig2str.h>.
672 (deleted_pid_list, Fdelete_process, create_process)
673 (record_child_status_change, handle_child_signal, deliver_child_signal)
674 (init_process_emacs, syms_of_process):
675 Assume SIGCHLD is defined.
676 (parse_signal): Remove. All uses removed.
677 (abbr_to_signal): New static function.
678 (Fsignal_process): Use it to convert signal names to ints.
679 * sysdep.c (sys_suspend) [!DOS_NT]: Use kill (0, ...) rather than
680 kill (getpgrp (), ...).
681 (emacs_sigaction_init): Assume SIGCHLD is defined.
682 (init_signals): Assume SIGALRM, SIGCHLD, SIGHUP, SIGKILL,
683 SIGPIPE, and SIGQUIT are defined. Do not worry about SIGCLD any more.
684 * syssignal.h (EMACS_KILLPG): Remove.
685 All uses replaced by 'kill' with a negative pid.
686 (SIGCHLD): Remove definition, as we now assume SIGCHLD.
687 * w32proc.c (sys_kill): Support negative pids compatibly with POSIX.
688
689 2012-12-07 Paul Eggert <eggert@cs.ucla.edu>
690
691 * sysdep.c (get_child_status): Abort on internal error (Bug#13086).
692 This will cause a production Emacs to dump core instead of
693 infinite-looping.
694
695 2012-12-07 Dmitry Antipov <dmantipov@yandex.ru>
696
697 * frame.c (make_frame): Do not set window's buffer to t.
698 * window.c (Fsplit_window_internal): Likewise. Previously it was
699 used to indicate that the window is being set up. Now we use
700 set_window_buffer for all new windows, so the condition in ...
701 (Fset_window_buffer): ... is always true and can be removed.
702
703 2012-12-07 Dmitry Antipov <dmantipov@yandex.ru>
704
705 Convenient macro to check whether the buffer is hidden.
706 * buffer.h (BUFFER_HIDDEN_P): New macro.
707 * frame.c (make_frame): Use it. Adjust comment.
708 * buffer.c (candidate_buffer): New function.
709 (Fother_buffer, other_buffer_safely): Use it.
710
711 2012-12-06 Eli Zaretskii <eliz@gnu.org>
712
713 * w32proc.c (waitpid): Avoid busy-waiting when called with WNOHANG
714 if the child process is still running. Instead, exit the wait
715 loop and return zero. (Bug#13086)
716
717 2012-12-06 Dmitry Antipov <dmantipov@yandex.ru>
718
719 * frame.h (x_char_width, x_char_height): Remove prototypes.
720 * w32term.h (x_char_width, x_char_height): Likewise.
721 * xfns.c (x_char_width, x_char_height): Remove.
722 * w32fns.c (x_char_width, x_char_height): Likewise.
723 * nsfns.c (x_char_width, x_char_height): Likewise.
724 * frame.c (Fframe_char_width): Use FRAME_COLUMN_WIDTH for
725 all window frames.
726 (Fframe_char_height): Likewise with FRAME_LINE_HEIGHT.
727 * keyboard.c (command_loop_1): Remove prototype.
728 (command_loop_2, top_level_1): Add static to match prototype.
729
730 2012-12-06 Paul Eggert <eggert@cs.ucla.edu>
731
732 Fix a recently-introduced delete-process race condition.
733 * callproc.c, process.h (record_kill_process):
734 New function, containing part of the old call_process_kill.
735 (call_process_kill): Use it.
736 This does not change call_process_kill's behavior.
737 * process.c (Fdelete_process): Use record_kill_process to fix a
738 race condition that could cause Emacs to lose track of a child.
739
740 2012-12-06 Dmitry Antipov <dmantipov@yandex.ru>
741
742 Avoid code duplication between prev_frame and next_frame.
743 * frame.c (candidate_frame): New function. Add comment.
744 (prev_frame, next_frame): Use it. Adjust comment.
745
746 2012-12-06 Eli Zaretskii <eliz@gnu.org>
747
748 * callproc.c (Fcall_process_region) [!HAVE_MKSTEMP]: If mktemp
749 fails, signal an error instead of continuing with an empty
750 string. (Bug#13079)
751 Encode expanded temp file pattern before passing it to mkstemp or
752 mktemp.
753
754 * fileio.c (file_name_as_directory, directory_file_name) [DOS_NT]:
755 Encode the file name before passing it to dostounix_filename, in
756 case it will downcase it (under w32-downcase-file-names).
757 (Bug#12933)
758
759 2012-12-05 Paul Eggert <eggert@cs.ucla.edu>
760
761 Minor call-process cleanups.
762 * callproc.c (Fcall_process): Do record-unwind-protect on MSDOS
763 at the same time as other platforms, to simplify analysis.
764 No need for fd0_volatile since we have synch_process_fd.
765 Avoid needless emacs_close; arg is always negative.
766
767 2012-12-04 Andreas Schwab <schwab@linux-m68k.org>
768
769 * callproc.c (Fcall_process): Fix specpdl nesting for asynchronous
770 processes.
771
772 2012-12-04 Dmitry Antipov <dmantipov@yandex.ru>
773
774 * lisp.h (Mouse_HLInfo): Remove set-but-unused mouse_face_image_state
775 member. Adjust users. Convert mouse_face_past_end, mouse_face_defer
776 and mouse_face_hidden members to a bitfields.
777 * frame.h (struct frame): Remove set-but-not-used space_width member.
778 (FRAME_SPACE_WIDTH): Remove.
779 * nsterm.m, w32term.c, xterm.c: Adjust users.
780 * termchar.h (struct tty_display_info): Remove set-but-unused se_is_so
781 member. Adjust users. Convert term_initted, delete_in_insert_mode,
782 costs_set, insert_mode, standout_mode, cursor_hidden and flow_control
783 members to a bitfields.
784
785 2012-12-03 Paul Eggert <eggert@cs.ucla.edu>
786
787 Don't let call-process be a zombie factory (Bug#12980).
788 Fixing this bug required some cleanup of the signal-handling code.
789 As a side effect, this change also fixes a longstanding rare race
790 condition whereby Emacs could mistakenly kill unrelated processes,
791 and it fixes a bug where a second C-g does not kill a recalcitrant
792 synchronous process in GNU/Linux and similar platforms.
793 The patch should also fix the last vestiges of Bug#9488,
794 a bug which has mostly been fixed on the trunk by other changes.
795 * callproc.c, process.h (synch_process_alive, synch_process_death)
796 (synch_process_termsig, sync_process_retcode):
797 Remove. All uses removed, to simplify analysis and so that
798 less consing is done inside critical sections.
799 * callproc.c (call_process_exited): Remove. All uses replaced
800 with !synch_process_pid.
801 * callproc.c (synch_process_pid, synch_process_fd): New static vars.
802 These take the role of what used to be in unwind-protect arg.
803 All uses changed.
804 (block_child_signal, unblock_child_signal):
805 New functions, to avoid races that could kill innocent-victim processes.
806 (call_process_kill, call_process_cleanup, Fcall_process): Use them.
807 (call_process_kill): Record killed processes as deleted, so that
808 zombies do not clutter up the system. Do this inside a critical
809 section, to avoid a race that would allow the clutter.
810 (call_process_cleanup): Fix code so that the second C-g works again
811 on common platforms such as GNU/Linux.
812 (Fcall_process): Create the child process in a critical section,
813 to fix a race condition. If creating an asynchronous process,
814 record it as deleted so that zombies do not clutter up the system.
815 Do unwind-protect for WINDOWSNT too, as that's simpler in the
816 light of these changes. Omit unnecessary call to emacs_close
817 before failure, as the unwind-protect code does that.
818 * callproc.c (call_process_cleanup):
819 * w32proc.c (waitpid): Simplify now that synch_process_alive is gone.
820 * process.c (record_deleted_pid): New function, containing
821 code refactored out of Fdelete_process.
822 (Fdelete_process): Use it.
823 (process_status_retrieved): Remove. All callers changed to use
824 child_status_change.
825 (record_child_status_change): Remove, folding its contents into ...
826 (handle_child_signal): ... this signal handler. Now, this
827 function is purely a handler for SIGCHLD, and is not called after
828 a synchronous waitpid returns; the synchronous code is moved to
829 wait_for_termination. There is no need to worry about reaping
830 more than one child now.
831 * sysdep.c (get_child_status, child_status_changed): New functions.
832 (wait_for_termination): Now takes int * status and bool
833 interruptible arguments, too. Do not record child status change;
834 that's now the caller's responsibility. All callers changed.
835 Reimplement in terms of get_child_status.
836 (wait_for_termination_1, interruptible_wait_for_termination):
837 Remove. All callers changed to use wait_for_termination.
838 * syswait.h: Include <stdbool.h>, for bool.
839 (record_child_status_change, interruptible_wait_for_termination):
840 Remove decls.
841 (record_deleted_pid, child_status_changed): New decls.
842 (wait_for_termination): Adjust to API changes noted above.
843
844 * bytecode.c, lisp.h (Qbytecode): Remove.
845 No longer needed after 2012-11-20 interactive-p changes.
846
847 2012-12-03 Eli Zaretskii <eliz@gnu.org>
848
849 * xdisp.c (redisplay_window): If the cursor is visible, but inside
850 the scroll margin, move point outside the margin. (Bug#13055)
851
852 2012-12-03 Jan Djärv <jan.h.d@swipnet.se>
853
854 * gtkutil.c (my_log_handler): New function.
855 (xg_set_geometry): Set log handler to my_log_handler (Bug#11177).
856
857 2012-12-03 Dmitry Antipov <dmantipov@yandex.ru>
858
859 * lisp.h (modify_region): Rename to...
860 (modify_region_1): ...new prototype.
861 * textprop.c (modify_region): Now static. Adjust users.
862 * insdel.c (modify_region): Rename to...
863 (modify_region_1): ...new function to work with current buffer.
864 Adjust comment and users. Use true and false for booleans.
865
866 2012-12-03 Dmitry Antipov <dmantipov@yandex.ru>
867
868 * alloc.c (free_save_value): New function.
869 (safe_alloca_unwind): Use it.
870 * lisp.h (free_save_value): New prototype.
871 * editfns.c (save_excursion_save): Use Lisp_Misc_Save_Value.
872 Add comment.
873 (save_excursion_restore): Adjust to match saved data structure.
874 Use free_save_value to offload some work from GC. Drop obsolete
875 #if 0 code.
876
877 2012-12-03 Chong Yidong <cyd@gnu.org>
878
879 * fileio.c (Vauto_save_list_file_name): Doc fix.
880
881 2012-12-03 Fabrice Popineau <fabrice.popineau@gmail.com>
882
883 * w32fns.c: Remove prototype of atof.
884 (syspage_mask): Make it DWORD_PTR, for compatibility with 64-bit
885 builds.
886 (file_dialog_callback): Make it UINT_PTR.
887
888 * w32common.h (syspage_mask): Declare DWORD_PTR, for compatibility
889 with 64-bit builds.
890
891 * w32.c (FILE_DEVICE_FILE_SYSTEM, METHOD_BUFFERED)
892 (FILE_ANY_ACCESS, CTL_CODE) [_MSC_VER]: Define only if not already
893 defined.
894
895 2012-12-03 Glenn Morris <rgm@gnu.org>
896
897 * data.c (Fboundp, Fsymbol_value): Doc fix re lexical-binding.
898
899 2012-12-02 Paul Eggert <eggert@cs.ucla.edu>
900
901 Fix xpalloc confusion after memory is exhausted.
902 * alloc.c (xpalloc): Comment fix.
903 * charset.c (Fdefine_charset_internal): If xpalloc exhausts memory
904 and signals an error, do not clear charset_table_size, as
905 charset_table is still valid.
906 * doprnt.c (evxprintf): Clear *BUF after freeing it.
907
908 Use execve to avoid need to munge environ (Bug#13054).
909 * callproc.c (Fcall_process):
910 * process.c (create_process):
911 Don't save and restore environ; no longer needed.
912 * callproc.c (child_setup):
913 Use execve, not execvp, to preserve environ.
914
915 2012-12-01 Paul Eggert <eggert@cs.ucla.edu>
916
917 * xterm.c (x_draw_image_relief): Remove unused locals (Bug#10500).
918
919 2012-12-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
920
921 * xterm.c (x_draw_relief_rect, x_draw_image_relief): Fix relief
922 display for sliced images (Bug#10500).
923
924 * w32term.c (w32_draw_relief_rect, x_draw_image_relief): Likewise.
925
926 2012-11-30 Juanma Barranquero <lekktu@gmail.com>
927
928 * doc.c (Fdocumentation): Re-add handling of function-documentation,
929 accidentally removed in 2012-11-09T04:10:16Z!monnier@iro.umontreal.ca (bug#13034).
930
931 2012-11-29 Dmitry Antipov <dmantipov@yandex.ru>
932
933 * xdisp.c (window_outdated): Remove eassert since it hits
934 some suspicious corner cases (see Bug#13007 and Bug#13012).
935 (mode_line_update_needed): New function.
936 (redisplay_internal, redisplay_window): Use it.
937 (ensure_selected_frame): New function.
938 (redisplay_internal, unwind_redisplay): Use it.
939 (redisplay_internal): Move comment about buffer_shared...
940 (buffer_shared_and_changed): ...near to its real use.
941
942 2012-11-29 Paul Eggert <eggert@cs.ucla.edu>
943
944 * callproc.c (Fcall_process): Don't misreport vfork failure.
945
946 2012-11-28 Paul Eggert <eggert@cs.ucla.edu>
947
948 * callproc.c (Fcall_process): Fix vfork portability problems.
949 Do not assume that fd[0], count, filefd, and save_environ survive
950 vfork. Fix bug whereby wrong errno value could be reported for
951 pipe failure. Some minor cleanups, too, as follows. Move buf and
952 bufsize to the context where they're needed. Change new_argv to
953 be of type char **, as this is more convenient and avoids casts.
954 (CALLPROC_BUFFER_SIZE_MIN, CALLPROC_BUFFER_SIZE_MAX):
955 Now local constants, not macros.
956
957 2012-11-18 Kenichi Handa <handa@gnu.org>
958
959 * font.c (font_unparse_xlfd): Fix previous change. Keep "const"
960 for the variable "f".
961
962 2012-11-13 Kenichi Handa <handa@gnu.org>
963
964 * font.c (font_unparse_xlfd): Exclude special characters from the
965 generating XLFD name.
966
967 2012-11-27 Paul Eggert <eggert@cs.ucla.edu>
968
969 Assume POSIX 1003.1-1988 or later for grp.h, pwd.h.
970 * dired.c (stat_uname, stat_gname):
971 * fileio.c (Fexpand_file_name): Remove no-longer-needed casts.
972
973 Assume POSIX 1003.1-1988 or later for errno.h (Bug#12968).
974 * dired.c (directory_files_internal, file_name_completion):
975 Assume EAGAIN and EINTR are defined.
976
977 * fileio.c (Fcopy_file): Assume EISDIR is defined.
978 * gmalloc.c (ENOMEM, EINVAL): Assume they're defined.
979 * gnutls.c (emacs_gnutls_write): Assume EAGAIN is defined.
980 * lread.c (readbyte_from_file): Assume EINTR is defined.
981 * process.c (wait_reading_process_output, send_process) [subprocesses]:
982 Assume EIO and EAGAIN are defined.
983 * unexcoff.c (write_segment): Assume EFAULT is defined.
984
985 2012-11-27 Eli Zaretskii <eliz@gnu.org>
986
987 * fontset.c (Finternal_char_font): Return nil on non-GUI frames.
988 (Bug#11964)
989
990 * xdisp.c (draw_glyphs): Don't draw in mouse face if mouse
991 highlighting on the frame was cleared. Prevents assertion
992 violations when repeatedly clicking on the "Top" link of the
993 "bread-crumbs" in Info buffers.
994
995 2012-11-25 Paul Eggert <eggert@cs.ucla.edu>
996
997 * sysdep.c (sys_subshell): Don't assume pid_t fits in int.
998
999 2012-11-24 Ken Brown <kbrown@cornell.edu>
1000
1001 * keyboard.c (HAVE_MOUSE):
1002 * frame.c (HAVE_MOUSE): Remove, and rewrite code as if HAVE_MOUSE
1003 were always defined.
1004
1005 2012-11-24 Eli Zaretskii <eliz@gnu.org>
1006
1007 * xdisp.c (set_cursor_from_row): Skip step 2 only if point is not
1008 between bpos_covered and bpos_max. This fixes cursor display when
1009 several display strings follow each other.
1010
1011 * .gdbinit (pgx): If the glyph's object is a string, display the
1012 pointer to string data, rather than the value of the string object
1013 itself (which barfs under CHECK_LISP_OBJECT_TYPE).
1014
1015 * indent.c (Fvertical_motion): If the starting position is covered
1016 by a display string, return to one position before that, to avoid
1017 overshooting it inside move_it_to. (Bug#12930)
1018
1019 2012-11-23 Dmitry Antipov <dmantipov@yandex.ru>
1020
1021 * frame.h (struct frame): Remove display_preempted member
1022 since all users are dead long ago.
1023 * nsterm.h (struct x_output): Use the only dummy member.
1024 * w32menu.c (pending_menu_activation): Remove since not
1025 really used.
1026 (set_frame_menubar): Adjust user.
1027 * w32term.h (struct x_output): Drop outdated #if 0 code.
1028 (struct w32_output): Use bitfields for explicit_parent,
1029 asked_for_visible and menubar_active members.
1030 Drop unused pending_menu_activation member.
1031 * xterm.h (struct x_output): Drop outdated #if 0 code.
1032 Use bitfields for explicit_parent, asked_for_visible,
1033 has_been_visible and net_wm_state_hidden_seen members.
1034
1035 2012-11-23 Eli Zaretskii <eliz@gnu.org>
1036
1037 * makefile.w32-in (globals.h, gl-stamp): Use $(SWITCHCHAR) instead
1038 of a literal "/". (Bug#12955)
1039 (gl-stamp): Invoke fc.exe directly, not through cmd.
1040
1041 2012-11-23 Paul Eggert <eggert@cs.ucla.edu>
1042
1043 Assume POSIX 1003.1-1988 or later for dirent.h (Bug#12958).
1044 * dired.c: Assume HAVE_DIRENT_H.
1045 (NAMLEN): Remove, replacing with ...
1046 (dirent_namelen): New function. All uses changed. Use the GNU macro
1047 _D_EXACT_NAMELEN if available, as it's faster than strlen.
1048 (DIRENTRY): Remove, replacing all uses with 'struct dirent'.
1049 (DIRENTRY_NONEMPTY): Remove. All callers now assume it's nonzero.
1050 * makefile.w32-in (DIR_H): Remove. All uses replaced with
1051 $(NT_INC)/dirent.h.
1052 ($(BLD)/w32.$(O)): Do not depend on $(SRC)/ndir.h.
1053 * ndir.h: Rename to ../nt/inc/dirent.h.
1054 * sysdep.h (closedir) [!HAVE_CLOSEDIR]: Remove.
1055 Do not include <dirent.h>; no longer needed.
1056 * w32.c: Include <dirent.h> rather than "ndir.h".
1057
1058 2012-11-23 Chong Yidong <cyd@gnu.org>
1059
1060 * xftfont.c (xftfont_open): Remove duplicate assignment.
1061
1062 2012-11-22 Dmitry Antipov <dmantipov@yandex.ru>
1063
1064 * alloc.c (Fgarbage_collect): Unblock input after clearing
1065 gc_in_progress to avoid note_mouse_highlight glitch with GC.
1066 * frame.h (FRAME_MOUSE_UPDATE): New macro.
1067 * msdos.c (IT_frame_up_to_date): Use it here...
1068 * w32term.c (w32_frame_up_to_date): ...here...
1069 * xterm.c (XTframe_up_to_date): ...and here...
1070 * nsterm.m (ns_frame_up_to_date): ...but not here.
1071 * lisp.h (Mouse_HLInfo): Remove mouse_face_deferred_gc member.
1072 Adjust users.
1073 * xdisp.c (message2_nolog, message3_nolog, note_mouse_highlight):
1074 Do not check whether GC is in progress.
1075
1076 2012-11-22 Dmitry Antipov <dmantipov@yandex.ru>
1077
1078 * xdisp.c (window_buffer_changed): New function.
1079 (update_menu_bar, update_tool_bar): Use it to
1080 simplify large 'if' statements.
1081 (redisplay_internal): Generalize commonly used
1082 'tail' and 'frame' local variables.
1083
1084 2012-11-22 Eli Zaretskii <eliz@gnu.org>
1085
1086 * w32.c (getcwd): Fix the 2nd argument type, to prevent conflicts
1087 with Windows system header.
1088
1089 2012-11-21 Paul Eggert <eggert@cs.ucla.edu>
1090
1091 Assume POSIX 1003.1-1988 or later for unistd.h (Bug#12945).
1092 * alloc.c: Assume unistd.h exists.
1093 * fileio.c (Fexpand_file_name) [DOS_NT]: Use getcwd, not getwd.
1094 * sysdep.c (get_current_dir_name): Assume getcwd exists.
1095 (getwd) [USG]: Remove; no longer needed.
1096 (sys_subshell) [DOS_NT]: Use getcwd, not getwd.
1097 * w32.c (getcwd): Rename from getwd, and switch to getcwd's API.
1098 * w32.h (getcwd): Remove decl.
1099
1100 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
1101
1102 * xdisp.c (fast_set_selected_frame): Rename from update_tool_bar_unwind.
1103 Make it set selected_window as well.
1104 (update_tool_bar): Use it.
1105
1106 2012-11-21 Ken Brown <kbrown@cornell.edu>
1107
1108 * emacs.c (main): Set the G_SLICE environment variable for all
1109 Cygwin builds, not just GTK builds. See
1110 https://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00368.html.
1111
1112 2012-11-21 Eli Zaretskii <eliz@gnu.org>
1113
1114 * w32.c (FILE_DEVICE_FILE_SYSTEM, METHOD_BUFFERED)
1115 (FILE_ANY_ACCESS, CTL_CODE, FSCTL_GET_REPARSE_POINT) [_MSC_VER]:
1116 Define for the MSVC compiler.
1117
1118 * w32term.h (EnumSystemLocalesW) [_MSC_VER]: Add a missing semi-colon.
1119
1120 * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
1121 (Fexpand_file_name) [DOS_NT]: Pass encoded file name to
1122 dostounix_filename. Prevents crashes down the road, because
1123 dostounix_filename assumes it gets a unibyte string.
1124 Reported by Michel de Ruiter <michel@sentient.nl>, see
1125 http://lists.gnu.org/archive/html/help-emacs-windows/2012-11/msg00017.html
1126
1127 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
1128
1129 Conflate Qnil and Qunbound for `symbol-function'.
1130 * alloc.c (Fmake_symbol): Initialize `function' to Qnil.
1131 * lread.c (init_obarray): Set `function' fields to Qnil.
1132 * eval.c (Fcommandp): Ignore Qunbound.
1133 (Fautoload, eval_sub, Fapply, Ffuncall, Fmacroexpand):
1134 * data.c (Ffset, Ffboundp, indirect_function, Findirect_function):
1135 Test NILP rather than Qunbound.
1136 (Ffmakunbound): Set to Qnil.
1137 (Fsymbol_function): Never signal an error.
1138 (Finteractive_form): Ignore Qunbound.
1139
1140 2012-11-20 Paul Eggert <eggert@cs.ucla.edu>
1141
1142 * eval.c (interactive_p): Remove no-longer-used decl.
1143
1144 2012-11-20 Dmitry Antipov <dmantipov@yandex.ru>
1145
1146 * xdisp.c (buffer_shared): Adjust comment.
1147 (buffer_shared_and_changed): New function.
1148 (prepare_menu_bars, redisplay_internal): Use it to
1149 decide whether all windows or frames should be updated.
1150 (window_outdated): New function.
1151 (text_outside_line_unchanged_p, redisplay_window): Use it.
1152 (redisplay_internal): Likewise. Fix indentation.
1153
1154 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
1155
1156 * eval.c (Finteractive_p, Fcalled_interactively_p, interactive_p): Remove.
1157 (syms_of_eval): Remove corresponding defsubr.
1158 * bytecode.c (exec_byte_code): `interactive-p' is now a Lisp function.
1159
1160 2012-11-19 Daniel Colascione <dancol@dancol.org>
1161
1162 * w32fns.c (Fx_file_dialog):
1163 (Fx_file_dialog): Accomodate rename of cygwin_convert_path* to
1164 cygwin_convert_file_name*.
1165
1166 * cygw32.c (Fcygwin_convert_path_to_windows, syms_of_cygw32):
1167 Rename cygwin_convert_path* to cygwin_convert_file_name*.
1168
1169 2012-11-18 Paul Eggert <eggert@cs.ucla.edu>
1170
1171 * nsterm.m (ns_select): Send SIGIO only to self, not to process group.
1172
1173 2012-11-18 Eli Zaretskii <eliz@gnu.org>
1174
1175 * w32select.c: Include w32common.h before w32term.h, so that
1176 windows.h gets included before w32term.h uses some of its
1177 features, see below.
1178
1179 * w32term.h (LOCALE_ENUMPROCA, LOCALE_ENUMPROCW) [_MSC_VER]:
1180 New typedefs.
1181 (EnumSystemLocalesA, EnumSystemLocalesW) [_MSC_VER]:
1182 New prototypes.
1183 (EnumSystemLocales) [_MSC_VER]: Define if undefined. (Bug#12878)
1184
1185 2012-11-18 Jan Djärv <jan.h.d@swipnet.se>
1186
1187 * nsterm.m (hold_event): Set send_appdefined to YES (Bug#12834).
1188 (ns_select): Return at once if events are held (Bug#12834).
1189
1190 2012-11-18 enami tsugutomo <tsugutomo.enami@jp.sony.com>
1191
1192 * unexelf.c (ELFSIZE) [__NetBSD__ && _LP64]: Set to 64.
1193 Needed following 2012-10-20 change. (Bug#12902)
1194
1195 2012-11-18 Juanma Barranquero <lekktu@gmail.com>
1196
1197 * w32proc.c (waitpid): Remove unused label get_result.
1198
1199 2012-11-17 Juanma Barranquero <lekktu@gmail.com>
1200
1201 * makefile.w32-in (SYSWAIT_H): New macro.
1202 ($(BLD)/callproc.$(O), $(BLD)/w32proc.$(O), $(BLD)/process.$(O))
1203 ($(BLD)/sysdep.$(O)): Update dependencies.
1204
1205 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
1206
1207 Assume POSIX 1003.1-1988 or later for fcntl.h (Bug#12881).
1208 * callproc.c (relocate_fd): Assume F_DUPFD.
1209 * emacs.c, term.c (O_RDWR): Remove.
1210 * keyboard.c (tty_read_avail_input): Use O_NONBLOCK rather than
1211 O_NDELAY, since O_NONBLOCK is the standard name for this flag.
1212 * nsterm.m: Assume <fcntl.h> exists.
1213 * process.c (NON_BLOCKING_CONNECT, allocate_pty, create_process)
1214 (create_pty, Fmake_network_process, server_accept_connection)
1215 (wait_reading_process_output, init_process_emacs):
1216 Assume O_NONBLOCK.
1217 (wait_reading_process_output): Put in a special case for WINDOWSNT
1218 to mimick the older behavior where it had O_NDELAY but not O_NONBLOCK.
1219 It's not clear this is needed, but it's a more-conservative change.
1220 (create_process): Assume FD_CLOEXEC.
1221 (create_process, create_pty): Assume O_NOCTTY.
1222 * sysdep.c (init_sys_modes, reset_sys_modes): Assume F_SETFL.
1223 (reset_sys_modes): Use O_NONBLOCK rather than O_NDELAY.
1224 Omit if not DOS_NT, since F_GETFL is not defined there.
1225 (serial_open): Assume O_NONBLOCK and O_NOCTTY.
1226 * term.c: Include <fcntl.h>, for flags like O_NOCTTY.
1227 (O_NOCTTY): Remove.
1228 (init_tty): Assume O_IGNORE_CTTY is defined to 0 on platforms that
1229 lack it, since gnulib guarantees this.
1230 * w32.c (fcntl): Test for O_NONBLOCK rather than O_NDELAY.
1231
1232 2012-11-17 Eli Zaretskii <eliz@gnu.org>
1233
1234 * w32.c (faccessat): Pretend that directories have the execute bit
1235 set. Emacs expects that, e.g., in files.el:cd-absolute.
1236
1237 * w32proc.c (create_child): Don't clip the PID of the child
1238 process to fit into an Emacs integer, as this is no longer a
1239 restriction.
1240 (waitpid): Rename from sys_wait. Emulate a Posix 'waitpid' by
1241 reaping only the process specified by PID argument, if that is
1242 positive. Use PID instead of dead_child to know which process to
1243 reap. Wait for the child to die only if WNOHANG is not in
1244 OPTIONS.
1245 (sys_select): Don't set dead_child.
1246
1247 * sysdep.c (wait_for_termination_1): Remove the WINDOWSNT portion,
1248 as it is no longer needed.
1249
1250 * process.c (waitpid, WUNTRACED) [!WNOHANG]: Remove definitions,
1251 no longer needed.
1252 (record_child_status_change): Remove the setting of
1253 record_at_most_one_child for the !WNOHANG case.
1254
1255 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
1256
1257 Fix problems in ns port found by static checking.
1258 * nsterm.m: Include <pthread.h>, for pthread_mutex_lock etc.
1259 (hold_event, setPosition:portion:whole:): Send SIGIO only to self,
1260 not to process group.
1261 (ns_select): Use emacs_write, not write, as that's more robust
1262 in the presence of signals.
1263 (fd_handler:): Check for read errors.
1264
1265 2012-11-16 Glenn Morris <rgm@gnu.org>
1266
1267 * editfns.c (Fmessage): Mention message-log-max. (Bug#12849)
1268
1269 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
1270
1271 * eval.c (Finteractive_p): Revert lexbind-merge mishap.
1272
1273 2012-11-16 Eli Zaretskii <eliz@gnu.org>
1274
1275 * w32proc.c (timer_loop): Make sure SuspendThread and ResumeThread
1276 use the same value of thread handle.
1277 (start_timer_thread): If the timer thread exited (due to error),
1278 clean up by closing the two handles it used. Duplicate the caller
1279 thread's handle here, so it gets duplicated only once, when
1280 launching the timer thread. Set priority of the timer thread, not
1281 the caller thread.
1282 (getitimer): Don't duplicate the caller thread's handle here.
1283 (Bug#12832)
1284
1285 2012-11-16 Jan Djärv <jan.h.d@swipnet.se>
1286
1287 * nsterm.m (hold_event): Send SIGIO to make sure ns_read_socket is
1288 called (Bug#12834).
1289
1290 2012-11-16 Paul Eggert <eggert@cs.ucla.edu>
1291
1292 Remove no-longer-used pty_max_bytes variable.
1293 * process.c (pty_max_bytes): Remove; unused.
1294 (send_process): Do not set it.
1295
1296 2012-11-15 Juanma Barranquero <lekktu@gmail.com>
1297
1298 * makefile.w32-in ($(BLD)/dispnew.$(O), $(BLD)/emacs.$(O)):
1299 Update dependencies.
1300
1301 2012-11-15 Paul Eggert <eggert@cs.ucla.edu>
1302
1303 * eval.c (mark_backtrace) [BYTE_MARK_STACK]: Remove stray '*'.
1304 This follows up on the 2012-09-29 patch that removed indirection
1305 for the 'function' field. Reported by Sergey Vinokurov in
1306 <http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00263.html>.
1307
1308 2012-11-14 Eli Zaretskii <eliz@gnu.org>
1309
1310 * w32.c (faccessat): Rename from sys_faccessat. (No need to use a
1311 different name, as the MS runtime does not have such a function,
1312 and probably never will.) All callers changed. Ignore DIRFD
1313 value if PATH is an absolute file name, to match Posix spec
1314 better. If AT_SYMLINK_NOFOLLOW is set in FLAGS, don't resolve
1315 symlinks.
1316
1317 2012-11-14 Dmitry Antipov <dmantipov@yandex.ru>
1318
1319 * xdisp.c (echo_area_display, redisplay_internal):
1320 Omit redundant check whether frame_garbaged is set.
1321
1322 2012-11-14 Paul Eggert <eggert@cs.ucla.edu>
1323
1324 Use faccessat, not access, when checking file permissions (Bug#12632).
1325 This fixes a bug that has been present in Emacs since its creation.
1326 It was reported by Chris Torek in 1983 even before GNU Emacs existed,
1327 which must set some sort of record. (Torek's bug report was against
1328 a predecessor of GNU Emacs, but GNU Emacs happened to have the
1329 same common flaw.) See Torek's Usenet posting
1330 "setuid/setgid programs & Emacs" Article-I.D.: sri-arpa.858
1331 Posted: Fri Apr 8 14:18:56 1983.
1332 * Makefile.in (LIB_EACCESS): New macro.
1333 (LIBES): Use it.
1334 * callproc.c (init_callproc):
1335 * charset.c (init_charset):
1336 * fileio.c (check_existing, check_executable, check_writable)
1337 (Ffile_readable_p):
1338 * lread.c (openp, load_path_check):
1339 * process.c (allocate_pty):
1340 * xrdb.c (file_p):
1341 Use effective UID when checking permissions, not real UID.
1342 * callproc.c (init_callproc):
1343 * charset.c (init_charset):
1344 * lread.c (load_path_check, init_lread):
1345 Test whether directories are accessible, not merely whether they exist.
1346 * conf_post.h (GNULIB_SUPPORT_ONLY_AT_FDCWD): New macro.
1347 * fileio.c (check_existing, check_executable, check_writable)
1348 (Ffile_readable_p):
1349 Use symbolic names instead of integers for the flags, as they're
1350 portable now.
1351 (check_writable): New arg AMODE. All uses changed.
1352 Set errno on failure.
1353 (Ffile_readable_p): Use faccessat, not stat + open + close.
1354 (Ffile_writable_p): No need to call check_existing + check_writable.
1355 Just call check_writable and then look at errno. This saves a syscall.
1356 dir should never be nil; replace an unnecessary runtime check
1357 with an eassert. When checking the parent directory of a nonexistent
1358 file, check that the directory is searchable as well as writable, as
1359 we can't create files in unsearchable directories.
1360 (file_directory_p): New function, which uses 'stat' on most platforms
1361 but faccessat with D_OK (for efficiency) if WINDOWSNT.
1362 (Ffile_directory_p, Fset_file_times): Use it.
1363 (file_accessible_directory_p): New function, which uses a single
1364 syscall for efficiency.
1365 (Ffile_accessible_directory_p): Use it.
1366 * xrdb.c (file_p): Use file_directory_p.
1367 * lisp.h (file_directory_p, file_accessible_directory_p): New decls.
1368 * lread.c (openp): When opening a file, use fstat rather than
1369 stat, as that avoids a permissions race. When not opening a file,
1370 use file_directory_p rather than stat.
1371 (dir_warning): First arg is now a usage string, not a format.
1372 Use errno. All uses changed.
1373 * nsterm.m (ns_term_init): Remove unnecessary call to file-readable
1374 that merely introduced a race.
1375 * process.c, sysdep.c, term.c: All uses of '#ifdef O_NONBLOCK'
1376 changed to '#if O_NONBLOCK', to accommodate gnulib O_* style,
1377 and similarly for the other O_* flags.
1378 * w32.c (sys_faccessat): Rename from sys_access and switch to
1379 faccessat's API. All uses changed.
1380 * xrdb.c: Do not include <sys/stat.h>; no longer needed.
1381 (magic_db): Rename from magic_file_p.
1382 (magic_db, search_magic_path): Return an XrmDatabase rather than a
1383 char *, so that we don't have to test for file existence
1384 separately from opening the file for reading. This removes a race
1385 fixes a permission-checking problem, and simplifies the code.
1386 All uses changed.
1387 (file_p): Remove; no longer needed.
1388
1389 2012-11-13 Dmitry Antipov <dmantipov@yandex.ru>
1390
1391 Omit glyphs initialization at startup.
1392 * dispnew.c (glyphs_initialized_initially_p): Remove.
1393 (adjust_frame_glyphs_initially): Likewise. Adjust users.
1394 (Fredraw_frame): Move actual code from here...
1395 (redraw_frame): ...to here. Add eassert. Adjust comment.
1396 (Fredraw_display): Use redraw_frame.
1397 * xdisp.c (clear_garbaged_frames): Likewise.
1398
1399 2012-11-13 Eli Zaretskii <eliz@gnu.org>
1400
1401 * xdisp.c (decode_mode_spec): Limit the value of WIDTH argument
1402 passed to pint2str and pint2hrstr to be at most the size of the
1403 frame's decode_mode_spec_buffer. This avoids crashes with very
1404 large values of FIELD_WIDTH argument to decode_mode_spec.
1405 (Bug#12867)
1406
1407 2012-11-13 Paul Eggert <eggert@cs.ucla.edu>
1408
1409 Fix a race with verify-visited-file-modtime (Bug#12863).
1410 Since at least 1991 Emacs has ignored an mtime difference of no
1411 more than one second, but my guess is that this was to work around
1412 file system bugs that were fixed long ago. Since the race is
1413 causing problems now, let's remove that code.
1414 * fileio.c (Fverify_visited_file_modtime): Do not accept a file
1415 whose time stamp is off by no more than a second. Insist that the
1416 file time stamps match exactly.
1417
1418 2012-11-12 Dmitry Antipov <dmantipov@yandex.ru>
1419
1420 * frame.h (struct frame): Convert external_tool_bar member to
1421 1-bit unsigned bitfield.
1422 * termhooks.h (struct terminal): Remove mouse_moved member since
1423 all users are long dead. Adjust comment on mouse_position_hook.
1424
1425 2012-11-12 Dmitry Antipov <dmantipov@yandex.ru>
1426
1427 Simplify by using FOR_EACH_FRAME here and there.
1428 * frame.c (next_frame, prev_frame, other_visible_frames)
1429 (delete_frame, visible-frame-list): Use FOR_EACH_FRAME.
1430 * w32term.c (x_window_to_scroll_bar): Likewise.
1431 * window.c (window_list): Likewise.
1432 * xdisp.c (x_consider_frame_title): Likewise.
1433 * xfaces.c ( Fdisplay_supports_face_attributes_p): Likewise.
1434 * xfns.c (x_window_to_frame, x_any_window_to_frame)
1435 (x_menubar_window_to_frame, x_top_window_to_frame): Likewise.
1436 * xmenu.c (menubar_id_to_frame): Likewise.
1437 * xselect.c (frame_for_x_selection): Likewise.
1438 * xterm.c (x_frame_of_widget, x_window_to_scroll_bar)
1439 (x_window_to_menu_bar): Likewise.
1440 * w32fns.c (x_window_to_frame): Likewise. Adjust comment.
1441
1442 2012-11-12 Paul Eggert <eggert@cs.ucla.edu>
1443
1444 * data.c (Qdefalias_fset_function): Now static.
1445
1446 Another tweak to vectorlike_header change.
1447 * alloc.c (struct Lisp_Vectorlike_Free, NEXT_IN_FREE_LIST):
1448 Remove, and replace all uses with ...
1449 (next_in_free_list, set_next_in_free_list):
1450 New functions, which respect C's aliasing rules better.
1451
1452 2012-11-11 Paul Eggert <eggert@cs.ucla.edu>
1453
1454 * window.c (list4i): Rename from 'quad'. All uses changed.
1455 Needed because <sys/types.h> defines 'quad' on Solaris 10.
1456
1457 2012-11-11 Juanma Barranquero <lekktu@gmail.com>
1458
1459 * xdisp.c (start_hourglass) [HAVE_NTGUI]: Add block to silence
1460 warning about mixing declarations and code in ISO C90.
1461
1462 2012-11-10 Martin Rudalics <rudalics@gmx.at>
1463
1464 * window.c (Fsplit_window_internal): Set combination limit of
1465 new parent window to t iff Vwindow_combination_limit is t;
1466 fixing a regression introduced with the change from 2012-09-22.
1467 (Fset_window_combination_limit): Fix doc-string.
1468
1469 2012-11-10 Eli Zaretskii <eliz@gnu.org>
1470
1471 * xdisp.c (try_scrolling): Fix correction of aggressive-scroll
1472 amount when the scroll margins are too large. When scrolling
1473 backwards in the buffer, give up if cannot reach point or the
1474 scroll margin within a reasonable number of screen lines.
1475 Fixes point position in window under scroll-up/down-aggressively when
1476 point is positioned many lines beyond the window top/bottom.
1477 (Bug#12811)
1478
1479 * ralloc.c (relinquish): If real_morecore fails to return memory
1480 to the system, don't crash; instead, leave the last heap
1481 unchanged and return. (Bug#12774)
1482
1483 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
1484
1485 * lisp.h (AUTOLOADP): New macro.
1486 * eval.c (Fautoload): Don't attach to loadhist, call Fdefalias instead.
1487 * data.c (Ffset): Remove special ad-advice-info handling.
1488 (Fdefalias): Handle autoload definitions and new Qdefalias_fset_function.
1489 (Fsubr_arity): CSE.
1490 (Finteractive_form): Simplify.
1491 (Fquo): Don't insist on having at least 2 arguments.
1492 (Qdefalias_fset_function): New var.
1493
1494 2012-11-09 Jan Djärv <jan.h.d@swipnet.se>
1495
1496 * image.c (xpm_make_color_table_h): Change to hashtest_equal.
1497
1498 * nsfont.m (Qcondensed, Qexpanded): New variables.
1499 (ns_descriptor_to_entity): Restore Qcondensed, Qexpanded setting.
1500 (syms_of_nsfont): Defsym Qcondensed, Qexpanded.
1501
1502 2012-11-09 Dmitry Antipov <dmantipov@yandex.ru>
1503
1504 Fix recently introduced crash on MS-Windows (Bug#12839).
1505 * w32term.h (struct scroll_bar): Use convenient header.
1506 (SCROLL_BAR_VEC_SIZE): Remove.
1507 * w32term.c (x_scroll_bar_create): Use VECSIZE.
1508
1509 2012-11-09 Dmitry Antipov <dmantipov@yandex.ru>
1510
1511 Tweak last vectorlike_header change.
1512 * alloc.c (struct Lisp_Vectorlike_Free): Special type to represent
1513 vectorlike object on the free list. This is introduced to avoid
1514 some (but not all) pointer casting and aliasing problems, see
1515 http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00105.html.
1516 * .gdbinit (pvectype, pvecsize): New commands to examine vectorlike
1517 objects.
1518 (xvectype, xvecsize): Use them to examine Lisp_Object values.
1519
1520 2012-11-09 Jan Djärv <jan.h.d@swipnet.se>
1521
1522 * nsfont.m (ns_descriptor_to_entity): Qcondensed and Qexpanded has
1523 been removed, so remove them here also.
1524
1525 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
1526
1527 * doc.c (Fdocumentation): Handle new property
1528 dynamic-docstring-function to replace the old ad-advice-info.
1529
1530 2012-11-09 Paul Eggert <eggert@cs.ucla.edu>
1531
1532 * fns.c (Qeql, hashtest_eq): Now static.
1533
1534 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
1535
1536 * lisp.h (XHASH): Redefine to be imperfect and fit in a Lisp int.
1537 * fns.c (hashfn_eq, hashfn_eql, sxhash):
1538 * profiler.c (hashfn_profiler): Don't use XUINT on non-integers.
1539 * buffer.c (compare_overlays): Use XLI rather than XHASH.
1540
1541 2012-11-08 Paul Eggert <eggert@cs.ucla.edu>
1542
1543 Use same hash function for hashfn_profiler as for hash_string etc.
1544 * fns.c (SXHASH_COMBINE): Remove. All uses replaced by sxhash_combine.
1545 * lisp.h (sxhash_combine): New inline function, with the contents
1546 of the old SXHASH_COMBINE.
1547 * profiler.c (hashfn_profiler): Use it, instead of having a
1548 special hash function containing a comparison that always yields 1.
1549
1550 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
1551
1552 * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic)
1553 (Qultra_condensed, Qextra_condensed, Qcondensed, Qsemi_condensed)
1554 (Qsemi_expanded, Qextra_expanded, Qexpanded, Qultra_expanded):
1555 Remove unused vars.
1556
1557 2012-11-08 Jan Djärv <jan.h.d@swipnet.se>
1558
1559 * image.c (xpm_make_color_table_h): Fix compiler error because
1560 make_hash_table changed.
1561
1562 2012-11-08 Thomas Kappler <tkappler@gmail.com> (tiny change)
1563
1564 * nsfont.m (ns_findfonts): Handle empty matchingDescs (Bug#11541).
1565
1566 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
1567
1568 Use ad-hoc comparison function for the profiler's hash-tables.
1569 * profiler.c (Qprofiler_backtrace_equal, hashtest_profiler): New vars.
1570 (make_log): Use them.
1571 (handle_profiler_signal): Don't inhibit quit any longer since we don't
1572 call Fequal any more.
1573 (Ffunction_equal): New function.
1574 (cmpfn_profiler, hashfn_profiler): New functions.
1575 (syms_of_profiler): Initialize them.
1576 * lisp.h (struct hash_table_test): New struct.
1577 (struct Lisp_Hash_Table): Use it.
1578 * alloc.c (mark_object): Mark hash_table_test fields of hash tables.
1579 * fns.c (make_hash_table): Take a struct to describe the test.
1580 (cmpfn_eql, cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
1581 (hashfn_equal, hashfn_user_defined): Adjust to new calling convention.
1582 (hash_lookup, hash_remove_from_table): Move assertion checking of
1583 hashfn result here. Check hash-equality before calling cmpfn.
1584 (Fmake_hash_table): Adjust call to make_hash_table.
1585 (hashtest_eq, hashtest_eql, hashtest_equal): New structs.
1586 (syms_of_fns): Initialize them.
1587 * emacs.c (main): Move syms_of_fns earlier.
1588 * xterm.c (syms_of_xterm):
1589 * category.c (hash_get_category_set): Adjust call to make_hash_table.
1590 * print.c (print_object): Adjust to new hash-table struct.
1591 * composite.c (composition_gstring_put_cache): Adjust to new hashfn.
1592
1593 2012-11-08 Eli Zaretskii <eliz@gnu.org>
1594
1595 * w32fns.c (modifier_set): Fix handling of Scroll Lock when the
1596 value of w32-scroll-lock-modifier is neither nil nor one of the
1597 known key modifiers. (Bug#12806)
1598
1599 2012-11-08 Dmitry Antipov <dmantipov@yandex.ru>
1600
1601 Shrink struct vectorlike_header to the only size field.
1602 * lisp.h (enum pvec_type): Avoid explicit enum member values.
1603 Adjust comment.
1604 (enum More_Lisp_Bits): Change PSEUDOVECTOR_SIZE_BITS and
1605 PVEC_TYPE_MASK to arrange new bitfield in the vector header.
1606 (PSEUDOVECTOR_REST_BITS, PSEUDOVECTOR_REST_MASK): New members.
1607 (PSEUDOVECTOR_AREA_BITS): New member used to extract subtype
1608 information from the vector header. Adjust comment.
1609 (XSETPVECTYPE, XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR)
1610 (PSEUDOVECTOR_TYPEP, DEFUN): Adjust to match new vector header
1611 layout.
1612 (XSETSUBR, SUBRP): Adjust to match new Lisp_Subr layout.
1613 (struct vectorlike_header): Remove next member. Adjust comment.
1614 (struct Lisp_Subr): Add convenient header. Adjust comment.
1615 (allocate_pseudovector): Adjust prototype.
1616 * alloc.c (mark_glyph_matrix, mark_face_cache, allocate_string)
1617 (sweep_string, lisp_malloc): Remove useless prototypes.
1618 (enum mem_type): Adjust comment.
1619 (NEXT_IN_FREE_LIST): New macro.
1620 (SETUP_ON_FREE_LIST): Adjust XSETPVECTYPESIZE usage.
1621 (Fmake_bool_vector): Likewise.
1622 (struct large_vector): New type to represent allocation unit for
1623 the vectors with the memory footprint more than VBLOOCK_BYTES_MAX.
1624 (large_vectors): Change type to struct large_vector.
1625 (allocate_vector_from_block): Simplify.
1626 (PSEUDOVECTOR_NBYTES): Replace with...
1627 (vector_nbytes): ...new function. Adjust users.
1628 (sweep_vectors): Adjust processing of large vectors.
1629 (allocate_vectorlike): Likewise.
1630 (allocate_pseudovector): Change type of 3rd arg to enum pvec_type.
1631 Add easserts. Adjust XSETPVECTYPESIZE usage.
1632 (allocate_buffer): Use BUFFER_PVEC_INIT.
1633 (live_vector_p): Adjust to match large vector.
1634 * buffer.c (init_buffer_once): Use BUFFER_PVEC_INIT.
1635 * buffer.h (struct buffer): Add next member.
1636 (BUFFER_LISP_SIZE, BUFFER_REST_SIZE, BUFFER_PVEC_INIT):
1637 New macros.
1638 (FOR_EACH_BUFFER): Adjust to match struct buffer change.
1639 * fns.c (internal_equal): Adjust to match enum pvec_type change.
1640 (copy_hash_table): Adjust to match vector header change.
1641 * lread.c (defsubr): Use XSETPVECTYPE.
1642 * .gdbinit (xpr, xbacktrace): Adjust to match vector header change.
1643 (xvectype): Likewise. Print PVEC_NORMAL_VECTOR for regular vectors.
1644 (xvecsize): New command.
1645
1646 2012-11-08 Dmitry Antipov <dmantipov@yandex.ru>
1647
1648 * keyboard.c (event_to_kboard): Do not dereference
1649 frame_or_window field of SELECTION_REQUEST_EVENT
1650 and SELECTION_CLEAR_EVENT events (Bug#12814).
1651 * xterm.h (struct selection_input_event): Adjust comment.
1652
1653 2012-11-07 Eli Zaretskii <eliz@gnu.org>
1654
1655 * w32fns.c (modifier_set): Don't report modifiers from toggle key,
1656 such as Scroll Lock, if the respective keys are treated as
1657 function keys, not as modifiers. This avoids destroying non-ASCII
1658 keyboard input when Scroll Lock is toggled ON. (Bug#12806)
1659
1660 2012-11-07 Dmitry Antipov <dmantipov@yandex.ru>
1661
1662 * xfns.c (Fx_wm_set_size_hint): Use check_x_frame. Adjust docstring.
1663
1664 2012-11-06 Paul Eggert <eggert@cs.ucla.edu>
1665
1666 Restore some duplicate definitions (Bug#12814).
1667 This undoes part of the 2012-11-03 changes. Some people build
1668 with plain -g rather than with -g3, and they need the duplicate
1669 definitions for .gdbinit to work; see <http://bugs.gnu.org/12814#26>.
1670 * lisp.h (GCTYPEBITS, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK):
1671 Define as macros, as well as as enums or as constants.
1672
1673 2012-11-06 Jan Djärv <jan.h.d@swipnet.se>
1674
1675 * nsterm.m (convert_ns_to_X_keysym, keyDown:): Add NSNumericPadKeyMask
1676 to keypad keys (Bug#12816).
1677
1678 2012-11-06 Paul Eggert <eggert@cs.ucla.edu>
1679
1680 Minor adjustments of recently-changed frame functions.
1681 * buffer.c (Fbuffer_list): Omit CHECK_FRAME, since arg is already
1682 known to be a frame (we're in the FRAMEP branch).
1683 * lisp.h (Qframep): Remove decl. frame.h declares this.
1684 * window.c (quad): Args are of type EMACS_INT, not ptrdiff_t,
1685 since they're meant for Lisp fixnum values.
1686
1687 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
1688
1689 * window.c (Fwindow_combination_limit): Revert to the only
1690 required argument and adjust docstring as suggested in
1691 http://lists.gnu.org/archive/html/emacs-diffs/2012-11/msg01082.html
1692 by Martin Rudalics <rudalics@gmx.at>.
1693
1694 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
1695
1696 Widely used frame validity and checking functions.
1697 * frame.h (decode_live_frame, decode_any_frame): Add prototypes.
1698 * frame.c (decode_live_frame, decode_any_frame): New functions.
1699 (delete_frame, Fredirect_frame_focus, Fframe_parameters)
1700 (Fframe_parameter, Fframe_char_height, Fframe_char_width)
1701 (Fframe_pixel_height, Fframe_pixel_width, Ftool_bar_pixel_width)
1702 (Fframe_pointer_visible_p): Use decode_any_frame.
1703 (Fmake_frame_visible, Fmake_frame_invisible, Ficonify_frame)
1704 (Fraise_frame, Flower_frame, Fmodify_frame_parameters)
1705 (Fset_frame_height, Fset_frame_width): Use decode_live_frame.
1706 (Fframe_focus): Likewise. Allow zero number of arguments.
1707 Adjust docstring.
1708 (frame_buffer_list, frame_buffer_predicate): Remove.
1709 * lisp.h (frame_buffer_predicate): Remove prototype.
1710 * buffer.c (Fother_buffer): Use decode_any_frame.
1711 * xdisp.c (Ftool_bar_lines_needed): Likewise.
1712 * xfaces.c (Fcolor_gray_p, Fcolor_supported_p): Likewise.
1713 * font.c (Ffont_face_attributes, Ffont_family_list, Fopen_font)
1714 (Fclose_font, Ffont_info): Use decode_live_frame.
1715 * fontset.c (check_fontset_name): Likewise.
1716 * terminal.c (Fframe_terminal): Likewise.
1717 * w32fns.c (check_x_frame): Likewise.
1718 * window.c (Fminibuffer_window, Fwindow_at)
1719 (Fcurrent_window_configuration): Likewise.
1720 (Frun_window_configuration_change_hook, Fwindow_resize_apply):
1721 Likewise. Allow zero number of arguments. Adjust docstring.
1722 * dispnew.c (Fredraw_frame): Likewise.
1723 * xfaces.c (frame_or_selected_frame): Remove.
1724 (Fx_list_fonts, Finternal_get_lisp_face_attribute, Fface_font)
1725 (Finternal_lisp_face_equal_p, Finternal_lisp_face_empty_p)
1726 (Fframe_face_alist): Use decode_live_frame.
1727 * xfns.c (check_x_frame): Likewise.
1728
1729 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
1730
1731 * window.c (quad): New function.
1732 (Fwindow_edges, Fwindow_pixel_edges, Fwindow_inside_edges)
1733 (Fwindow_absolute_pixel_edges, Fwindow_inside_absolute_pixel_edges)
1734 (Fwindow_inside_pixel_edges, Fpos_visible_in_window_p)
1735 (Fwindow_line_height): Use it.
1736 (Fwindow_fringes): Use list3.
1737 (Fwindow_scroll_bars): Use list4.
1738 (Fwindow_frame, Fwindow_top_child, Fwindow_left_child)
1739 (Fwindow_combination_limit): Allow zero number of arguments.
1740
1741 2012-11-05 Eli Zaretskii <eliz@gnu.org>
1742
1743 * makefile.w32-in ($(BLD)/w32fns.$(O)): Depend on $(NT_INC)/unistd.h.
1744
1745 * w32fns.c: Include unistd.h, to avoid compiler warnings on Cygwin.
1746 (emacs_abort) [CYGWIN]: Don't call _open_osfhandle; instead, use
1747 file descriptor 2 for standard error. (Bug#12805)
1748
1749 2012-11-05 Chong Yidong <cyd@gnu.org>
1750
1751 * process.c (wait_reading_process_output): Revert previous change.
1752
1753 2012-11-05 Paul Eggert <eggert@cs.ucla.edu>
1754
1755 Assume at least POSIX.1-1988 for getpgrp, setpgid, setsid (Bug#12800).
1756 This removes code that has been obsolete since around 1990.
1757 * callproc.c (Fcall_process):
1758 * emacs.c (main):
1759 * process.c (create_process):
1760 * term.c (dissociate_if_controlling_tty):
1761 Assume setsid exists.
1762 * callproc.c (child_setup): Assume setpgid exists and behaves as
1763 per POSIX.1-1988 or later.
1764 * conf_post.h (setpgid) [!HAVE_SETPGID]: Remove.
1765 * emacs.c (shut_down_emacs):
1766 * sysdep.c (sys_suspend, init_foreground_group):
1767 Assume getpgrp behaves as per POSIX.1-1998 or later.
1768 * msdos.c (setpgrp): Remove.
1769 (tcgetpgrp, setpgid, setsid): New functions.
1770 * systty.h (EMACS_GETPGRP): Remove. All callers now use getpgrp.
1771 * term.c (no_controlling_tty): Remove; unused.
1772 * w32proc.c (setpgrp): Remove.
1773 (setsid, tcgetpgrp): New functions.
1774
1775 Simplify by assuming __fpending.
1776 * dispnew.c: Include <fpending.h>, not <stdio_ext.h>.
1777 (update_frame_1): Use __fpending, not PENDING_OUTPUT_COUNT.
1778 Do not assume that __fpending's result fits in int.
1779
1780 2012-11-04 Paul Eggert <eggert@cs.ucla.edu>
1781
1782 Remove EMACS_OUTQSIZE+sleep hack.
1783 * dispnew.c (update_frame_1): Remove hack for terminals slower
1784 than 2400 bps, which throttled Emacs by having it sleep.
1785 This code hasn't worked since at least 2007, when the multi-tty stuff
1786 was added, and anyway those old terminals are long dead.
1787 * systty.h (EMACS_OUTQSIZE): Remove; unused. The macro isn't used even
1788 without the dispnew.c change, as dispnew.c doesn't include systty.h.
1789
1790 Fix data-loss with --version (Bug#9574).
1791 * emacs.c (close_output_streams): Use strerror, not emacs_strerror,
1792 as we can't assume that emacs_strerror is initialized, and strerror
1793 is good enough here.
1794 (main): Invoke atexit earlier, to catch earlier instances of
1795 sending data to stdout and exiting, e.g., "emacs --version >/dev/full".
1796
1797 2012-11-04 Michael Marchionna <tralfaz@pacbell.net>
1798
1799 * nsterm.m: Add NSClearLineFunctionKey and keypad keys (Bug#8680).
1800 (keyDown): Remap keypad keys to X11 virtual key codes.
1801
1802 2012-11-03 Paul Eggert <eggert@cs.ucla.edu>
1803
1804 Fix data-loss with --batch (Bug#9574).
1805 * emacs.c: Include <close-stream.h>.
1806 (close_output_streams): New function.
1807 (main): Pass it to atexit, so that Emacs closes stdout and stderr
1808 and handles errors appropriately.
1809 (Fkill_emacs): Don't worry about flushing, as close_output_stream
1810 does that now.
1811
1812 Fix a race condition that causes Emacs to mess up glib (Bug#8855).
1813 The symptom is a diagnostic "GLib-WARNING **: In call to
1814 g_spawn_sync(), exit status of a child process was requested but
1815 SIGCHLD action was set to SIG_IGN and ECHILD was received by
1816 waitpid(), so exit status can't be returned." The diagnostic
1817 is partly wrong, as the SIGCHLD action is not set to SIG_IGN.
1818 The real bug is a race condition between Emacs and glib: Emacs
1819 does a waitpid (-1, ...) and reaps glib's subprocess by mistake,
1820 so that glib can't find it. Work around the bug by invoking
1821 waitpid only on subprocesses that Emacs itself creates.
1822 * process.c (create_process, record_child_status_change):
1823 Don't use special value -1 in pid field, as the caller now must
1824 know the pid rather than having the callee infer it.
1825 The inference was sometimes incorrect anyway, due to another race.
1826 (create_process): Set new 'alive' member if child is created.
1827 (process_status_retrieved): New function.
1828 (record_child_status_change): Use it.
1829 Accept negative 1st argument, which means to wait for the
1830 processes that Emacs already knows about. Move special-case code
1831 for DOS_NT (which lacks WNOHANG) here, from caller. Keep track of
1832 processes that have already been waited for, by testing and
1833 clearing new 'alive' member.
1834 (CAN_HANDLE_MULTIPLE_CHILDREN): Remove, as record_child_status_change
1835 now does this internally.
1836 (handle_child_signal): Let record_child_status_change do all
1837 the work, since we do not want to reap all exited child processes,
1838 only the child processes that Emacs itself created.
1839 * process.h (Lisp_Process): New boolean member 'alive'.
1840
1841 Omit duplicate definitions no longer needed with gcc -g3.
1842 * lisp.h (GCTYPEBITS, GCALIGNMENT, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG)
1843 (VALMASK, MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM):
1844 Define only as macros. There's no longer any need to also define
1845 these symbols as enums or as constants, since we now assume
1846 gcc -g3 when debugging.
1847
1848 2012-11-03 Eli Zaretskii <eliz@gnu.org>
1849
1850 * lisp.mk: Adjust comments to the fact that term/internal is now
1851 loaded from loadup.el.
1852
1853 * msdos.c (msdos_abort): Rename from emacs_abort, and make static.
1854 (msdos_fatal_signal): New function.
1855 (XMenuActivate): Adjust the call to kbd_buffer_events_waiting to
1856 its argument list.
1857
1858 * conf_post.h (_GL_EXECINFO_INLINE) [MSDOS]: Define to "inline"
1859 for GCC versions before 4.
1860 (emacs_raise): Define to call msdos_fatal_signal.
1861
1862 * xdisp.c (init_from_display_pos): Fix initialization of the bidi
1863 iterator when starting in the middle of a display or overlay
1864 string. (Bug#12745)
1865
1866 2012-11-03 Chong Yidong <cyd@gnu.org>
1867
1868 * process.c (wait_reading_process_output): Clean up the last
1869 change.
1870
1871 2012-11-03 Jim Paris <jim@jtan.com> (tiny change)
1872
1873 * process.c (wait_reading_process_output): Avoid a race condition
1874 with SIGIO delivery (Bug#11536).
1875
1876 2012-11-03 Chong Yidong <cyd@gnu.org>
1877
1878 * buffer.c (cursor_type): Untabify docstring.
1879
1880 2012-11-03 Dmitry Antipov <dmantipov@yandex.ru>
1881
1882 * frame.h (struct frame): Drop can_have_scroll_bars member
1883 which is meaningless for a long time. Adjust comments.
1884 (FRAME_CAN_HAVE_SCROLL_BARS): Remove.
1885 * frame.c, nsfns.m, term.c, w32fns.c, xfns.c: Adjust users.
1886
1887 2012-11-03 Dmitry Antipov <dmantipov@yandex.ru>
1888
1889 * window.c (decode_next_window_args): Update window arg after
1890 calling decode_live_window and so fix crash reported at
1891 http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00035.html
1892 by Juanma Barranquero <lekktu@gmail.com>.
1893 (Fwindow_body_width, Fwindow_body_height): Simplify a bit.
1894 * font.c (Ffont_at): Likewise.
1895
1896 2012-11-01 Jan Djärv <jan.h.d@swipnet.se>
1897
1898 * widget.c (resize_cb): New function.
1899 (EmacsFrameRealize): Add resize_cb as event handler (Bug#12733).
1900 (EmacsFrameResize): Check if all is up to date before changing frame
1901 size.
1902
1903 2012-11-02 Eli Zaretskii <eliz@gnu.org>
1904
1905 Implement backtrace output for fatal errors on MS-Windows.
1906 * w32fns.c (CaptureStackBackTrace_proc): New typedef.
1907 (BACKTRACE_LIMIT_MAX): New macro.
1908 (w32_backtrace): New function.
1909 (emacs_abort): Use w32_backtrace when the user chooses not to
1910 attach a debugger. Update the text of the abort dialog.
1911
1912 2012-11-02 Dmitry Antipov <dmantipov@yandex.ru>
1913
1914 Window-related stuff cleanup here and there.
1915 * dispnew.c (Finternal_show_cursor, Finternal_show_cursor_p):
1916 Use decode_any_window.
1917 * fringe.c (Ffringe_bitmaps_at_pos): Likewise.
1918 * xdisp.c (Fformat_mode_line): Likewise.
1919 * font.c (Ffont_at): Use decode_live_window.
1920 * indent.c (Fcompute_motion, Fvertical_motion): Likewise.
1921 * window.c (decode_next_window_args): Likewise.
1922 (decode_any_window): Remove static.
1923 * window.h (decode_any_window): Add prototype.
1924 * lisp.h (CHECK_VALID_WINDOW, CHECK_LIVE_WINDOW): Move from here...
1925 * window.h: ...to here, redefine via WINDOW_VALID_P and WINDOW_LIVE_P,
1926 respectively.
1927
1928 2012-11-02 Dmitry Antipov <dmantipov@yandex.ru>
1929
1930 Remove pad from struct input_event.
1931 * termhooks.h (struct input_event): Remove padding field.
1932 Adjust comment.
1933 * keyboard.c (event_to_kboard): Simplify because frame_or_window
1934 member is never cons for a long time. Adjust comment.
1935 (mark_kboards): Adjust because SELECTION_REQUEST_EVENT and
1936 SELECTION_CLEAR_EVENT has no Lisp_Objects to mark. Add comment.
1937 * xterm.c (handle_one_xevent): Do not initialize frame_or_window
1938 field of SELECTION_REQUEST_EVENT and SELECTION_CLEAR_EVENT.
1939
1940 2012-11-01 Eli Zaretskii <eliz@gnu.org>
1941
1942 * w32proc.c (getpgrp, setpgid): New functions. (Bug#12776)
1943
1944 2012-10-31 Paul Eggert <eggert@cs.ucla.edu>
1945
1946 Fix crash when using Emacs as commit editor for git (Bug#12697).
1947 * callproc.c (setpgrp): Remove macro, as we now use setpgid
1948 and it is configured in conf_post.h.
1949 (Fcall_process): Don't invoke both setsid and setpgid; the former
1950 is enough, if it exists.
1951 * callproc.c (Fcall_process, child_setup):
1952 * process.c (create_process): Use setpgid.
1953 * conf_post.h (setpgid) [!HAVE_SETPGID]: New macro, which substitutes
1954 for the real thing.
1955 * dispnew.c (init_display): Initialize the foreground group
1956 if we are running a tty display.
1957 * emacs.c (main): Do not worry about setpgrp; init_display does it now.
1958 * lisp.h (init_foreground_group): New decl.
1959 * sysdep.c (inherited_pgroup): New static var.
1960 (init_foreground_group, tcsetpgrp_without_stopping)
1961 (narrow_foreground_group, widen_foreground_group): New functions.
1962 (init_sys_modes): Narrow foreground group.
1963 (reset_sys_modes): Widen foreground group.
1964
1965 2012-10-31 Michael Albinus <michael.albinus@gmx.de>
1966
1967 * dbusbind.c: Fix cut'n'waste error. Use HAVE_DBUS_VALIDATE_INTERFACE.
1968
1969 2012-10-31 Martin Rudalics <rudalics@gmx.at>
1970
1971 * minibuf.c (read_minibuf): Restore current buffer since
1972 choose_minibuf_frame calling Fset_frame_selected_window may
1973 change it (Bug#12766).
1974
1975 2012-10-30 Jan Djärv <jan.h.d@swipnet.se>
1976
1977 * frame.c (Fframe_pixel_height): Fix documentation (Bug#12733).
1978
1979 2012-10-30 Kenichi Handa <handa@gnu.org>
1980
1981 * font.c (Ffont_at): If WINDOW is specified and it is not
1982 displaying the current buffer, signal an error.
1983
1984 2012-10-29 Daniel Colascione <dancol@dancol.org>
1985
1986 * cygw32.h, cygw32.c (Qutf_16le, from_unicode, to_unicode):
1987 In preparation for fixing bug#12739, move these functions from
1988 here...
1989
1990 * coding.h, coding.c: ... to here, and compile them only when
1991 WINDOWSNT or CYGWIN. Moving these functions out of cygw32 proper
1992 lets us write cygw32-agnostic code for the HAVE_NTGUI case.
1993
1994 2012-10-28 Eli Zaretskii <eliz@gnu.org>
1995
1996 * w32proc.c (TIMER_TICKS_PER_SEC): New macro.
1997 (timer_loop, getitimer, setitimer): Use it instead of
1998 CLOCKS_PER_SEC, which is no longer pertinent, since we don't use
1999 'clock'.
2000 (w32_get_timer_time): Use 10*TIMER_TICKS_PER_SEC instead of a
2001 literal 10000.
2002
2003 2012-10-28 Jan Djärv <jan.h.d@swipnet.se>
2004
2005 * nsterm.m (NO_APPDEFINED_DATA): New define.
2006 (last_appdefined_event_data): New variable
2007 (last_appdefined_event): Remove.
2008 (ns_select): Initialize t from last_appdefined_event_data instead
2009 of [last_appdefined_event data1].
2010 (sendEvent:): Save [theEvent data1] to last_appdefined_event_data,
2011 remove last_appdefined_event (Bug#12698).
2012
2013 2012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
2014
2015 * frame.c (x_set_font): Catch internal error.
2016
2017 2012-10-27 Eli Zaretskii <eliz@gnu.org>
2018
2019 Avoid overflow in w32 implementation of interval timers.
2020 When possible, for ITIMER_PROF count only times the main thread
2021 actually executes.
2022 * w32proc.c <struct itimer_data>: 'expire' and 'reload' are now
2023 'volatile ULONGLONG' types. All the other data which was
2024 previously clock_t is now ULONGLONG. 'terminate' is 'volatile int'.
2025 (GetThreadTimes_Proc): New typedef.
2026 (w32_get_timer_time): New function, returns a suitable time value
2027 for the timer.
2028 (timer_loop): Enter critical section when accessing ULONGLONG
2029 values of the itimer_data struct, as these accesses are no longer
2030 atomic. Call 'w32_get_timer_time' instead of 'clock'.
2031 Remove unused variable.
2032 (init_timers): Initialize s_pfn_Get_Thread_Times.
2033 (start_timer_thread): Don't assign itimer->caller_thread here.
2034 (getitimer): Assign itimer->caller_thread here.
2035 (setitimer): Always call getitimer to get the value of ticks_now.
2036 (sys_spawnve): Avoid compiler warning about format mismatch.
2037
2038 2012-10-26 Eli Zaretskii <eliz@gnu.org>
2039
2040 * w32fns.c (w32_wnd_proc) <WM_MOUSEMOVE>: Don't enable tracking of
2041 mouse movement events if the menu bar is active. This avoids
2042 producing a busy "hour-glass" cursor by Windows if the mouse
2043 pointer is positioned over a tooltip shown for some menu item.
2044
2045 2012-10-25 Paul Eggert <eggert@cs.ucla.edu>
2046
2047 Don't assume process IDs fit in int.
2048 * emacs.c (shut_down_emacs) [!DOS_NT]:
2049 * sysdep.c (sys_suspend) [SIGTSTP && !MSDOS]:
2050 * term.c (dissociate_if_controlling_tty) [!DOS_NT]:
2051 Use pid_t, not int, to store process IDs, as 'int'
2052 is not wide enough on a few platforms (e.g., AIX and IRIX).
2053
2054 2012-10-23 Kenichi Handa <handa@gnu.org>
2055
2056 The following change is to make face-font-rescale-alist work
2057 correctly for non-ASCII fonts.
2058
2059 * font.c (font_open_entity): Don't handle Vface_font_rescale_alist.
2060 (font_open_for_lface): Handle Vface_font_rescale_alist.
2061
2062 2012-10-23 Chong Yidong <cyd@gnu.org>
2063
2064 * xfaces.c (Vfont_list_limit): Move unused variable to faces.el.
2065
2066 2012-10-21 Jan Djärv <jan.h.d@swipnet.se>
2067
2068 * nsfont.m (nsfont_open, ns_glyph_metrics): Force integer advancement
2069 for screen font.
2070 (nsfont_draw): Turn off LCD-smoothing (Bug#11484).
2071
2072 * xterm.c (x_focus_changed): Check if daemonp when sending focus in
2073 event (Bug#12681).
2074
2075 2012-10-21 Glenn Morris <rgm@gnu.org>
2076
2077 * lisp.mk (lisp): Add cp51932.el and eucjp-ms.el.
2078
2079 2012-10-20 Paul Eggert <eggert@cs.ucla.edu>
2080
2081 Port to OpenBSD 5.1.
2082 * frame.c (Fmouse_position, Fmouse_pixel_position):
2083 * xdisp.c (produce_stretch_glyph):
2084 Declare local vars only when they're needed.
2085 This is clearer and avoids a warning on OpenBSD about unused vars.
2086 * frame.h (FRAME_WINDOW_P): Always evaluate its argument.
2087 This is safer, and avoids OpenBSD warnings about unused vars.
2088 * keyboard.c (record_menu_key): Remove unnecessary decl.
2089 (poll_timer): Define only if POLL_FOR_INPUT is defined.
2090 * unexelf.c (ELFSIZE) [!ElfW]: Do not define if already defined,
2091 as our definition clashes with OpenBSD's.
2092 * xfaces.c (load_face_colors, check_lface_attrs)
2093 (get_lface_attributes_no_remap, get_lface_attributes)
2094 (lface_fully_specified_p, x_supports_face_attributes_p)
2095 (tty_supports_face_attributes_p, face_fontset, realize_face)
2096 (realize_x_face, realize_tty_face):
2097 Declare parameters to be Lisp_Object[LFACE_VECTOR_SIZE], not
2098 merely Lisp_Object *. This is more informative and avoids
2099 a warning on OpenBSD about accessing beyond an object's size.
2100
2101 2012-10-20 Chong Yidong <cyd@gnu.org>
2102
2103 * lread.c (Fload): Doc fix (Bug#12592).
2104
2105 2012-10-19 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
2106
2107 * font.c (Ffont_at): Fix previous change.
2108
2109 2012-10-19 Eli Zaretskii <eliz@gnu.org>
2110
2111 * puresize.h (BASE_PURESIZE): Bump the base value to 1700000.
2112 See http://lists.gnu.org/archive/html/emacs-devel/2012-10/msg00593.html
2113 for the reasons.
2114
2115 * alloc.c (NSTATICS): Decrease to 0x800.
2116
2117 2012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
2118
2119 * fns.c (Fnreverse): Include the problem element when signaling an
2120 error (bug#12677).
2121
2122 2012-10-18 Jan Djärv <jan.h.d@swipnet.se>
2123
2124 * nsterm.m (ns_select): Check writefds before call to
2125 FD_ISSET (Bug#12668).
2126
2127 2012-10-18 Daniel Colascione <dancol@dancol.org>
2128
2129 * alloc.c (NSTATICS): Increase from 0x650 to 0x1000
2130 (staticpro): If we run out of staticpro slots, die with an
2131 informative error instead of just calling emacs_abort.
2132
2133 2012-10-18 Martin Rudalics <rudalics@gmx.at>
2134
2135 Fix two flaws reported by Dmitry Antipov.
2136 * window.c (Ftemp_output_buffer_show): Remove.
2137 (Fwindow_vscroll, Fset_window_vscroll): Use decode_live_window.
2138 (syms_of_window): Remove defsubr for Stemp_output_buffer_show.
2139
2140 2012-10-17 Eli Zaretskii <eliz@gnu.org>
2141
2142 * makefile.w32-in ($(BLD)/w32.$(O)):
2143 ($(BLD)/vm-limit.$(O)):
2144 ($(BLD)/term.$(O)):
2145 ($(BLD)/unexw32.$(O)):
2146 ($(BLD)/fileio.$(O)):
2147 ($(BLD)/dispnew.$(O)): Update dependencies.
2148
2149 * w32term.h (w32_initialize_display_info, initialize_w32_display):
2150 Add prototypes.
2151
2152 * w32proc.c: Include ctype.h.
2153
2154 * w32.h (init_environment, check_windows_init_file)
2155 (syms_of_ntproc, syms_of_ntterm, dostounix_filename)
2156 (unixtodos_filename, init_winsock, srandom, random, sys_pipe)
2157 (set_process_dir, sys_spawnve, register_child, sys_sleep, getwd)
2158 (sys_link): Add prototypes.
2159
2160 * w32.c: Include w32select.h.
2161 (sys_access, e_malloc, sys_select): Add prototypes.
2162 (emacs_gnutls_pull): 'timeout' is now EMACS_TIME, not struct timeval.
2163
2164 * vm-limit.c [WINDOWSNT]: Include w32heap.h.
2165
2166 * unexw32.c: Include lisp.h and w32.h.
2167
2168 * term.c [WINDOWSNT]: Include w32term.h.
2169
2170 * process.c [WINDOWSNT]: Add prototype of sys_select.
2171
2172 * fileio.c [WINDOWSNT]: Include w32.h.
2173
2174 * dispnew.c [WINDOWSNT]: Include w32.h.
2175
2176 * cygw32.c (Fcygwin_convert_path_to_windows)
2177 (Fcygwin_convert_path_from_windows): Use EQ to compare 2
2178 Lisp_Object values. (Bug#12661)
2179
2180 * w32fns.c (w32_msg_pump): Use XIL instead of casting an integer
2181 to Lisp_Object. (Bug#12661)
2182
2183 2012-10-17 Kenichi Handa <handa@gnu.org>
2184
2185 * xdisp.c (reseat_1): Make the information stored in it->cmp_it
2186 invalidate.
2187
2188 2012-10-17 Dmitry Antipov <dmantipov@yandex.ru>
2189
2190 * buffer.c (Fkill_buffer): When unchaining the marker,
2191 reset its buffer pointer to NULL (Bug#12652).
2192
2193 2012-10-17 Dmitry Antipov <dmantipov@yandex.ru>
2194
2195 Do not verify indirection counters of killed buffers (Bug#12579).
2196 * buffer.h (BUFFER_CHECK_INDIRECTION): New macro.
2197 * buffer.c (compact_buffer, set_buffer_internal_1): Use it.
2198
2199 2012-10-16 Dmitry Antipov <dmantipov@yandex.ru>
2200
2201 * alloc.c (Fmake_byte_code): Fix typo in comment.
2202 * print.c (print_interval): Define as static to match prototype.
2203 * indent.c (disptab_matches_widthtab, recompute_width_table):
2204 Convert to eassert.
2205
2206 2012-10-16 Dmitry Antipov <dmantipov@yandex.ru>
2207
2208 * editfns.c (get_system_name): Remove.
2209 * lisp.h (get_system_name): Remove prototype.
2210 * xrdb.c (getenv, getpwuid, getpwnam): Remove prototypes.
2211 (get_environ_db): Use Vsystem_name. Avoid call to strlen.
2212
2213 2012-10-15 Daniel Colascione <dancol@dancol.org>
2214
2215 * dbusbind.c: Add comment explaining reason for previous change.
2216
2217 2012-10-15 Martin Rudalics <rudalics@gmx.at>
2218
2219 * window.c (Fwindow_end): Rewrite check whether cached position
2220 can be used (Bug#12600).
2221 (resize_frame_windows, grow_mini_window, shrink_mini_window):
2222 Set windows_or_buffers_changed.
2223
2224 2012-10-15 Daniel Colascione <dancol@dancol.org>
2225
2226 * dbusbind.c: Fix cygw32 build break when compiling with dbus
2227 enabled by undefining the symbol "interface", which the platform
2228 headers define to something incompatible.
2229
2230 2012-10-14 Daniel Colascione <dancol@dancol.org>
2231
2232 * image.c (init_tiff_functions, init_imagemagick_functions)
2233 (init_svg_functions): Fix cygw32 build break by using these
2234 functions only when WINDOWSNT _and_ HAVE_NTGUI.
2235
2236 2012-10-14 Jan Djärv <jan.h.d@swipnet.se>
2237
2238 * nsterm.m (ns_select): Count fd:s in writefs also (Bug#12422).
2239
2240 2012-10-13 Jan Djärv <jan.h.d@swipnet.se>
2241
2242 * gtkutil.c (xg_set_widget_bg): Divide by 65535 (Bug#12612).
2243
2244 2012-10-13 HANATAKA, Shinya <bogytech@gmail.com> (tiny change)
2245
2246 * coding.c (detect_coding): Set coding->id before calling
2247 this->detector.
2248
2249 2012-10-13 Andreas Schwab <schwab@linux-m68k.org>
2250
2251 * fileio.c: Formatting fixes.
2252
2253 2012-10-13 Paul Eggert <eggert@cs.ucla.edu>
2254
2255 Fix some stat-related races.
2256 * fileio.c (Fwrite_region): Avoid race condition if a file is
2257 removed or renamed by some other process immediately after Emacs
2258 writes it but before Emacs stats it. Do not assume that stat (or
2259 fstat) succeeds.
2260 * image.c (slurp_file): Resolve the file name with fopen + fstat
2261 rather than stat + fopen.
2262 (pbm_read_file) [0]: Remove unused code with stat race.
2263 * process.c (allocate_pty) [HAVE_PTYS && !PTY_ITERATION && !PTY_OPEN]:
2264 Remove ineffective code with stat race.
2265
2266 2012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
2267
2268 * doc.c (get_doc_string): Don't signal an error if the file is missing.
2269
2270 2012-10-12 Jan Djärv <jan.h.d@swipnet.se>
2271
2272 * nsterm.m (hold_event_q): New static variable.
2273 (EV_TRAILER, sendScrollEventAtLoc:fromEvent:): Call hold_event if
2274 ! q_event_ptr.
2275 (hold_event): New function.
2276 (ns_read_socket): If hold_event_q have events, store them and
2277 return (Bug#12384).
2278 (setPosition:portion:whole:): Send SIGIO to ourselves if apploopnr
2279 is zero (Bug#12384).
2280
2281 2012-10-12 Juanma Barranquero <lekktu@gmail.com>
2282
2283 * makefile.w32-in ($(BLD)/w32select.$(O)): Update dependencies.
2284
2285 2012-10-12 Eli Zaretskii <eliz@gnu.org>
2286
2287 * makefile.w32-in ($(BLD)/fileio.$(O)): Add sys/file.h.
2288
2289 * fileio.c (check_existing): New function.
2290 (make_temp_name, Ffile_exists_p, Ffile_writable_p): Call it
2291 instead of calling 'stat', when what's needed is to check whether
2292 a file exists. This avoids expensive system calls on MS-Windows.
2293 (Bug#12587)
2294
2295 * w32.c (init_environment): Call 'check_existing' instead of 'stat'.
2296
2297 * lread.c (openp) [WINDOWSNT]: Call 'access' instead of 'stat' to
2298 determine whether a file exists and is not a directory.
2299
2300 * lisp.h (check_existing): Add prototype.
2301
2302 2012-10-12 Jan Djärv <jan.h.d@swipnet.se>
2303
2304 * nsfont.m (nsfont_open): Remove font cache, it is not GC correct.
2305
2306 2012-10-12 Glenn Morris <rgm@gnu.org>
2307
2308 * buffer.c (Fset_buffer): Doc fix. (Bug#12624)
2309
2310 2012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
2311
2312 * buffer.c (Fkill_buffer): Null out the overlay list(s) as well.
2313
2314 * eval.c (Fautoload): Remember previous autoload status in load-history.
2315
2316 2012-10-11 Paul Eggert <eggert@cs.ucla.edu>
2317
2318 lread.c, macros.c, marker.c, menu.c, minibuf.c: Use bool for booleans.
2319 * lread.c (load_each_byte, new_backquote_flag, readchar)
2320 (read_filtered_event, lisp_file_lexically_bound_p)
2321 (safe_to_load_version, Fload, complete_filename_p, openp)
2322 (build_load_history, readevalloop, read_escape, read1)
2323 (string_to_number, read_vector, read_list):
2324 * macros.c (Fstart_kbd_macro):
2325 * marker.c (CONSIDER):
2326 * menu.c (parse_single_submenu, digest_single_submenu)
2327 (find_and_return_menu_selection, Fx_popup_menu):
2328 * minibuf.c (read_minibuf_noninteractive, read_minibuf)
2329 (Ftry_completion):
2330 * nsmenu.m (ns_update_menubar, runMenuAt:forFrame:keymaps:):
2331 (ns_menu_show):
2332 * xmenu.c (set_frame_menubar, create_and_show_popup_menu)
2333 (xmenu_show, xdialog_show):
2334 Use bool for booleans.
2335 * lread.c (safe_to_load_version): Rename from safe_to_load_p,
2336 as it's not a predicate. All uses changed. Omit unnecessary
2337 buffer termination.
2338
2339 2012-10-11 Dmitry Antipov <dmantipov@yandex.ru>
2340
2341 * editfns.c (save_excursion_save): Use nil if mark points to nowhere.
2342 (save_excursion_restore): Do not restore mark if it was not saved.
2343
2344 2012-10-11 Paul Eggert <eggert@cs.ucla.edu>
2345
2346 * marker.c (cached_modiff): EMACS_INT, not int.
2347
2348 * w32select.c (waiting_for_input): Declare by including "keyboard.h"
2349 instead of having a wrong decl.
2350 * nsmenu.m (waiting_for_input): Remove wrong decl.
2351
2352 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
2353
2354 keyboard.c, keymap.c: Use bool for booleans.
2355 * dispnew.c (sit_for): Distinguish between 3-way display_option
2356 and boolean do_display.
2357 * keyboard.c (single_kboard, this_command_key_count_reset)
2358 (waiting_for_input, echoing, immediate_quit, input_pending)
2359 (interrupt_input, interrupts_deferred, pop_kboard)
2360 (temporarily_switch_to_single_kboard, ignore_mouse_drag_p)
2361 (command_loop_1, adjust_point_for_property)
2362 (safe_run_hooks_error, input_polling_used, read_char):
2363 (help_char_p, readable_events, kbd_buffer_events_waiting)
2364 (kbd_buffer_get_event, timer_check_2, make_lispy_event)
2365 (lucid_event_type_list_p, get_input_pending):
2366 (gobble_input, menu_separator_name_p, menu_bar_item)
2367 (parse_menu_item, parse_tool_bar_item, read_char_x_menu_prompt)
2368 (read_char_minibuf_menu_prompt, access_keymap_keyremap)
2369 (keyremap_step, test_undefined, read_key_sequence)
2370 (detect_input_pending, detect_input_pending_ignore_squeezables)
2371 (detect_input_pending_run_timers, requeued_events_pending_p)
2372 (quit_throw_to_read_char, Fset_input_interrupt_mode):
2373 * keymap.c (get_keymap, keymap_parent, keymap_memberp)
2374 (access_keymap_1, access_keymap, map_keymap, get_keyelt)
2375 (Fdefine_key, Flookup_key, struct accessible_keymaps_data)
2376 (accessible_keymaps_1, Fkey_description, push_key_description):
2377 (shadow_lookup, struct where_is_internal_data)
2378 (where_is_internal, Fwhere_is_internal, where_is_internal_1)
2379 (Fdescribe_buffer_bindings, describe_map_tree, struct describe_map_elt)
2380 (describe_map, describe_vector):
2381 * menu.c (single_menu_item):
2382 * nsmenu.m (ns_update_menubar):
2383 * process.c (wait_reading_process_output):
2384 * search.c (scan_buffer, scan_newline):
2385 Use bool for boolean.
2386 * keyboard.c (timers_run, swallow_events)
2387 (detect_input_pending_run_timers):
2388 * process.c (wait_reading_process_output):
2389 Use unsigned for counter where wraparound-on-overflow is desired,
2390 since unsigned is guaranteed to have that behavior and signed is not.
2391 (read_char): Use ptrdiff_t for string length.
2392 (get_input_pending): Remove first argument, since it was always
2393 the same pointer-to-int (now pointer-to-boolean) &input_pending,
2394 and behave as if it had that value. Return new value of
2395 input_pending. All callers changed.
2396 * keyboard.h (struct kboard): Use unsigned : 1 for boolean member
2397 immediate_echo. Use ptrdiff_t for echo_after_prompt, since it's
2398 a string length.
2399 * keymap.c (push_key_description): Omit last arg, which was always 1.
2400 All callers changed.
2401
2402 * regex.c (immediate_quit) [emacs]: Remove duplicate decl.
2403
2404 2012-10-10 Juanma Barranquero <lekktu@gmail.com>
2405
2406 * makefile.w32-in ($(BLD)/dispnew.$(O), $(BLD)/indent.$(O))
2407 ($(BLD)/term.$(O)): Update dependencies.
2408
2409 2012-10-10 Dmitry Antipov <dmantipov@yandex.ru>
2410
2411 * alloc.c (mark_object): Use meaningful PVEC_NORMAL_VECTOR.
2412 * lisp.h (enum pvec_type): Adjust comments and omit explicit
2413 initializer for PVEC_NORMAL_VECTOR.
2414
2415 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
2416
2417 Clean out old termopts cruft.
2418 * termopts.h (flow_control, meta_key): Remove unused decls.
2419 * dispnew.c, indent.c, nsterm.m, term.c, xsettings.c, xsmfns.c:
2420 Don't include termopts.h.
2421
2422 2012-10-10 Dmitry Antipov <dmantipov@yandex.ru>
2423
2424 * alloc.c (gc_sweep): Use pointer-to-a-pointer loop for buffers.
2425
2426 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
2427
2428 * commands.h (immediate_quit): Remove duplicate decl.
2429
2430 2012-10-09 Jan Djärv <jan.h.d@swipnet.se>
2431
2432 * nsfont.m (Vfonts_in_cache): Remove, not needed as font.c handles
2433 caching.
2434 (nsfont_open): Remove setting of Vfonts_in_cache.
2435 (syms_of_nsfont): Remove initialization of Vfonts_in_cache.
2436
2437 2012-10-09 Eli Zaretskii <eliz@gnu.org>
2438
2439 * w32fns.c (w32_last_error): Change the return value to DWORD, to
2440 match what GetLastError returns. Explain why the function is
2441 needed.
2442
2443 * frame.c (delete_frame): Rename local variable 'tooltip_frame' to
2444 'is_tooltip_frame', to avoid confusion with its global namesake.
2445
2446 2012-10-08 Daniel Colascione <dancol@dancol.org>
2447
2448 * xdisp.c (start_hourglass): Call w32_note_current_window when
2449 HAVE_NTGUI, not just WINDOWSNT, resolving a problem in the cygw32
2450 build that caused Emacs to display the hourglass cursor forever.
2451
2452 * w32fns.c (Fx_display_color_cells): Instead of using NCOLORS,
2453 which is broken under remote desktop, calculate the number of
2454 colors available for a display based on the display's number of
2455 planes and number of bits per pixel per plane. (bug#10397).
2456
2457 2012-10-08 Jan Djärv <jan.h.d@swipnet.se>
2458
2459 * nsfont.m (Vfonts_in_cache): New variable.
2460 (nsfont_open): Use unsignedLongLongValue for cache in case wide ints
2461 are used. Add cached fonts to Vfonts_in_cache.
2462 (syms_of_nsfont): Initialize and staticpro Vfonts_in_cache.
2463
2464 2012-10-08 Juanma Barranquero <lekktu@gmail.com>
2465
2466 * makefile.w32-in (LOCAL_FLAGS): Don't define HAVE_NTGUI, it's now
2467 in nt/config.nt.
2468 (FONT_H): Define after FRAME_H.
2469 ($(BLD)/emacs.$(O), $(BLD)/process.$(O), $(BLD)/w32heap.$(O)):
2470 Update dependencies.
2471
2472 * w32term.c: Remove leftover declaration of keyboard_codepage.
2473
2474 2012-10-08 Eli Zaretskii <eliz@gnu.org>
2475
2476 * makefile.w32-in (FONT_H): Add $(FRAME_H).
2477 (W32TERM_H): Add $(ATIMER_H) and $(FRAME_H).
2478 ($(BLD)/emacs.$(O), $(BLD)/w32console.$(O)): Update dependencies.
2479 (GLOBAL_SOURCES): Add cygw32.c.
2480 ($(BLD)/unexw32.$(O)):
2481 ($(BLD)/w32.$(O)):
2482 ($(BLD)/w32console.$(O)):
2483 ($(BLD)/w32fns.$(O)):
2484 ($(BLD)/w32heap.$(O)):
2485 ($(BLD)/w32menu.$(O)):
2486 ($(BLD)/w32proc.$(O)): Add w32common.h.
2487
2488 * w32fns.c (w32_color_map_lookup, x_to_w32_color): Argument is now
2489 'const char *'.
2490 (x_to_w32_color): Don't modify the argument, modify a copy instead.
2491
2492 2012-10-08 Daniel Colascione <dancol@dancol.org>
2493
2494 * w32term.h (WM_EMACS_BRINGTOTOP, WM_EMACS_INPUT_READY)
2495 (WM_EMACS_END): Change WM_EMACS_BRINGTOTOP from 22 to 21 to close
2496 accidental message numbering hole. Change other messages to
2497 match.
2498
2499 * w32select.h (HAVE_W32SELECT): Remove.
2500
2501 * w32select.c, w32proc.c, w32menu.c, w32console.c, w32.c: Include
2502 w32common.h instead of w32heap.h.
2503
2504 * w32heap.h (ROUND_UP, ROUND_DOWN, get_page_size)
2505 (get_allocation_unit, get_processor_type, get_w32_major_version)
2506 (get_w32_minor_version, sysinfo_cache, osinfo_cache)
2507 (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
2508 (OS_NT, os_subtype, cache_system_info): Move declarations to
2509 w32common.
2510
2511 * w32heap.c: Include w32common.h.
2512 (sysinfo_cache, syspage_mask, osinfo_cache, w32_major_version)
2513 (w32_minor_version, w32_build_number, w32_subtype):
2514 Remove duplicate definitions.
2515
2516 * w32fns.c: Include w32common.h; include w32heap.h only in
2517 WINDOWSNT.
2518
2519 (Fx_file_dialog): Clarify comment on GetOpenFileName structure.
2520 Use `report_file_error' instead of `error' in order to better
2521 inform users of what went wrong. Increase NTGUI_UNICODE file
2522 dialog box file name length to 32k, the maximum allowed by the NT
2523 kernel.
2524
2525 * w32common.h: New file.
2526 (ROUND_UP, ROUND_DOWN, get_page_size)
2527 (get_allocation_unit, get_processor_type, get_w32_major_version)
2528 (get_w32_minor_version, sysinfo_cache, osinfo_cache)
2529 (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
2530 (OS_NT, os_subtype, cache_system_info): Move here.
2531
2532 * unexw32.c, unexcw.c: Include w32common.h.
2533
2534 * emacs.c (main): Use (defined (WINDOWSNT) || defined
2535 HAVE_NTGUI) instead of removed HAVE_W32SELECT to decide whether
2536 to call syms_of_w32select.
2537
2538 * cygw32.h: Remove obsolete EXFUN declarations.
2539
2540 * cygw32.c (Qutf_16_le): Rename to Qutf_16le.
2541
2542 * Makefile.in (SOME_MACHINE_OBJECTS): Reverse accidental removal
2543 of w32inevt.o from SOME_MACHINE_OBJECTS.
2544
2545 2012-10-08 Daniel Colascione <dancol@dancol.org>
2546
2547 * image.c: Permanent fix for JPEG compilation issue --- limit
2548 jpeglib `boolean' redefinition to Cygwin builds.
2549
2550 2012-10-08 Eli Zaretskii <eliz@gnu.org>
2551
2552 * image.c (CHECK_LIB_AVAILABLE): Remove, no longer used.
2553
2554 * emacs.c (DAEMON_MUST_EXEC) [HAVE_NTGUI]: Define this only on
2555 Cygwin.
2556
2557 2012-10-08 Daniel Colascione <dancol@dancol.org>
2558
2559 * xfaces.c, xdisp.c, window.c, w32xfns.c, w32term.h, w32term.c,
2560 w32select.h w32select.c, w32proc.c, w32menu.c, w32inevt.c,
2561 w32help.c, w32font.c, w32font.c, w32fns.c, w32console.c, w32.h,
2562 w32.c, unexw32.c, termhooks.h, process.c, menu.c, keyboard.h,
2563 keyboard.c, image.c, frame.h, frame.c, fontset.c, font.h, font.c,
2564 emacs.c, dispextern.h, cygw32.h, cygw32.c, conf_post.h,
2565 Makefile.in: use HAVE_NTGUI for W32 GUI and WINDOWSNT for the
2566 operating system. defined(HAVE_NTGUI) && !defined(WINDOWSNT) is
2567 now a supported configuration.
2568
2569 * Makefile.in: consolidate image variables into LIBIMAGE; add
2570 W32_OBJ and W32_LIBS. Compile new files.
2571
2572 * conf_post.h:
2573 (_DebPrint) declare tracing facility for W32 debugging. We need
2574 to unify tracing later.
2575
2576 (NTGUI_UNICODE) Define when compiling for Cygwin to allow the
2577 unconditional use of W32 Unicode functions. Cygwin runs only on
2578 100% Unicode operating systems.
2579
2580 * cygw32.c: New file. Define Cygwin-specific facilities.
2581 (Fcygwin_convert_path_to_windows)
2582 (Fcygwin_convert_path_from_windows): New user functions for
2583 accessing Cygwin path-munging routines.
2584
2585 * cygw32.h: New file.
2586 (WCSDATA, to_unicode, from_unicode): Define facilities for storing
2587 UTF-16LE strings temporarily inside non-Lisp-visible string
2588 objects.
2589
2590 (w32_strerror): Just what it says on the tin.
2591
2592 * emacs.c: Make the NS fork-then-exec code for daemon-launching
2593 also run for Cygwin; both systems have the same problem with using
2594 GUI facilities in a forked child. Also call syms_of_cygw32,
2595 syms_of_w32select in correct places.
2596
2597 (DAEMON_MUST_EXEC): new macro defined to signal that a platform
2598 needs fork-then-exec for daemon launching.
2599
2600 * font.h: Include frame.h.
2601
2602 * image.c: Use the image library cache machinery only when we're
2603 compiling for native WINDOWSNT; Cygwin can use shared libraries
2604 like any other Unixlike system.
2605
2606 * keyboard.c: Clarify a comment regarding the input loop.
2607
2608 * menu.c: When NTGUI_UNICODE is defined, use Unicode menu
2609 functions directly instead of trying to detect at runtime that our
2610 host operating system supports them. We make this change for two
2611 reasons: Cygwin lacks support for the multibyte character
2612 conversion functions used by the legacy menu code, and Cygwin
2613 never needs to rely on non-Unicode APIs.
2614
2615 * unexw32.c (hinst): Declare extern.
2616
2617 * w32.c: Change header order;
2618 (w32_strerror): Move to w32fns.c because we need it for
2619 non-WINDOWSNT builds.
2620
2621 * w32.h: Add #error macro to make sure we don't include w32.h for
2622 Cygwin builds. Remove w32select declarations.
2623
2624 * w32console.c (w32_sys_ring_bell, Fset_message_beep): Move to
2625 w32fns.c. w32console.c is WINDOWSNT-only.
2626
2627 * w32fns.c: Include cygw32.h or w32.h depending on CYGWIN; more
2628 NTGUI_UNICODE tweaks. (See above.) Change _snprintf to the more
2629 POSIXy alternative.
2630 (faked_key, sysinfo_cache, osinfo_cahce, syspage_mask)
2631 (w32_major_version, w32_minor_version, w32_build_number)
2632 (os_subtype, sound_type): Define here
2633 (w32_defined_color): Make color parameter const for consistency
2634 with other _defined_color functions.
2635 (w32_createwindow): Unconditionally call w32_init_class instead of
2636 doing so only when hprevinst is non-NULL. Plumbing hprevinst
2637 through the code is complex and unnecessary because class
2638 registration is practically free.
2639 (w32_name_of_message): New EMACSDEBUG-only function.
2640 (Fset_message_beep): Move here
2641 (Fx_open_connection): Require that the display name for Windows be
2642 "w32" for consistency, emacsclient disambiguation, and maybe, one
2643 day, multi-window-system support.
2644 (file_dialog_callback): NTGUI_UNICODE changes; encode and decode
2645 Cygwin files for W32 GUI facilities, since these clearly don't
2646 expect Cygwin names.
2647 (_DebPrint): Define.
2648 (w32_strerror, w32_console_toggle_lock_key, w32_kbd_mods_to_emacs)
2649 (w32_kbd_patch_key, w32_sys_ring_bell): Move here.
2650 (Ssystem_move_file_to_trash): Define only for native WINDOWSNT.
2651 (w32_last_error): Remove.
2652
2653 * w32font.c: Define _strlwr to strlwr for non-WINDOWSNT builds.
2654
2655 * w32heap.c (syspage_mask): Declare here.
2656 (cache_system_info): Remove.
2657
2658 * w32inevt.c (faked_key): Define globally, not statically.
2659 (w32_kbd_mods_to_emacs, w32_kbd_patch_key, faked_key)
2660 (w32_console_toggle_lock_key): Move to w32fns.c.
2661
2662 * w32menu.c: Include setjmp.h. NTGUI_UNICODE changes throughout.
2663
2664 * w32proc.c (_DebPrint): Move to w32fns.c.
2665 * w32select.c: Include string.h, stdio.h for Cygwin.
2666 * w32select.h: New File.
2667
2668 * w32term.c: Include io.h for non-CYGWIN builds; needed for
2669 get_osfhandle.
2670 (w32_message_fd): New variable. Under Cygwin, holds the file
2671 descriptor the system used to tell us about pending thread
2672 messages.
2673
2674 (w32_init_term): Remove incorrect calls to fcntl and init_sigio
2675 that prevented compilation under non-WINDOWSNT systems.
2676
2677 (w32_initialize): Open /dev/windows and assign it to
2678 w32_message_fd. Provide w32 feature.
2679
2680 * w32term.h: Include frame.h, atimer.h. Declare various frame functions.
2681 (WM_EMACS_INPUT_READY): add.
2682 (prepend_msg, w32_message_fd): Declare globally.
2683
2684 * w32xfns.c:
2685 (keyboard_handle): Use only when WINDOWSNT.
2686 (notify_msg_ready): New function. Posts a message to the main
2687 thread's message queue under CYGWIN, which wakes up the main
2688 thread from select(2) by making the /dev/windows file descriptor
2689 ready. Under WINDOWSNT, it sets an event the same way the old
2690 code did.
2691
2692 (post, prepend_msg): Actually call notify_msg_ready instead of
2693 setting the input event directly.
2694
2695 2012-10-07 Eli Zaretskii <eliz@gnu.org>
2696
2697 * ralloc.c (relinquish): If a heap is ready to be relinquished,
2698 but it still has blocs in it, don't return it to the system,
2699 instead of aborting. (Bug#12402)
2700
2701 2012-10-07 Jan Djärv <jan.h.d@swipnet.se>
2702
2703 * nsterm.m (ns_dumpglyphs_image): Only draw slice of image (Bug#12506).
2704
2705 * nsterm.m (ns_update_auto_hide_menu_bar): Remove defintion of
2706 MAC_OS_X_VERSION_10_6.
2707 (syms_of_nsterm): Remove comment about Panther and above for
2708 ns-antialias-text.
2709 * nsterm.h (MAC_OS_X_VERSION_10_3, onTiger): Remove.
2710 (EmacsApp): Remove check for >= MAC_OS_X_VERSION_10_4.
2711 (struct nsfont_info): Remove check for >= MAC_OS_X_VERSION_10_3.
2712
2713 * nsselect.m (ns_string_from_pasteboard): Remove check for >=
2714 MAC_OS_X_VERSION_10_4.
2715
2716 * nsmenu.m (fillWithWidgetValue:): Remove code for <
2717 MAC_OS_X_VERSION_10_2.
2718
2719 * nsimage.m (setPixmapData, getPixelAtX, setAlphaAtX): Remove onTiger.
2720
2721 * nsfns.m (Fns_list_services): Remove comment and check for OSX < 10.4.
2722 (ns_do_applescript): Remove check for >= MAC_OS_X_VERSION_10_4.
2723
2724 * nsterm.m (ns_in_resize): Remove (Bug#12479).
2725 (ns_resize_handle_rect, mouseDown, mouseUp, mouseDragged): Remove.
2726 (ns_clear_frame, sendEvent, windowDidResize, drawRect:):
2727 Remove ns_in_resize check.
2728 (ns_clear_frame_area): Remove resize handle code.
2729
2730 * nsfns.m (ns_in_resize): Remove.
2731 (x_set_icon_name, ns_set_name, ns_set_name_as_filename):
2732 Remove ns_in_resize check.
2733
2734 2012-10-07 Paul Eggert <eggert@cs.ucla.edu>
2735
2736 Improve sys_siglist detection.
2737 * sysdep.c (sys_siglist, init_signals): Use _sys_siglist if it's
2738 defined as a macro, as is done in Solaris.
2739 (sys_siglist_entries): New macro.
2740 (save_strsignal): Use it.
2741 * syssignal.h (safe_strsignal): Now ATTRIBUTE_CONST, to pacify
2742 GCC 4.7.2 on Fedora 17 with the fixed sys_siglist detection.
2743
2744 2012-10-06 Jan Djärv <jan.h.d@swipnet.se>
2745
2746 * nsfns.m (Fx_create_frame): Call x_default_parameter with
2747 fullscreen/Fullscreen.
2748
2749 * nsterm.h (EmacsView): Rename tbar_height to tibar_height.
2750 tobar_height is new.
2751
2752 * nsterm.m (x_make_frame_visible): Check for fullscreen.
2753 (ns_fullscreen_hook): Activate old style fullscreen with a timer.
2754 (ns_term_init): Set activateIgnoringOtherApps if old style fullscreen.
2755 (windowDidResize:): Check for correct window if old style fullscreen.
2756 Capitalize word in comment. Remove incorrect comment.
2757 (initFrameFromEmacs:): tbar_height renamed tibar_height.
2758 (windowDidEnterFullScreen:): Toggle toolbar for fullscreen to fix
2759 error in drawing background.
2760 (toggleFullScreen:): Remove comment. Rearrange calls.
2761 Set toolbar values to zero, save old height in tobar_height.
2762 Restore tool bar height when leaving fullscreen.
2763 (canBecomeMainWindow): New function.
2764
2765 2012-10-06 Paul Eggert <eggert@cs.ucla.edu>
2766
2767 * keyboard.c (read_char): Remove unnecessary 'volatile's and label.
2768
2769 2012-10-05 Eli Zaretskii <eliz@gnu.org>
2770
2771 * w32proc.c (stop_timer_thread): Fix declaration of 'err'.
2772
2773 * w32.c (utime): Open the file with FILE_FLAG_BACKUP_SEMANTICS, so
2774 that time stamps of directories could also be changed.
2775 Don't request the too broad GENERIC_WRITE, only the more restrictive
2776 FILE_WRITE_ATTRIBUTES access rights.
2777
2778 * fileio.c (Fset_file_times): Special-case ignoring errors for
2779 directories only on MSDOS, not on MS-Windows.
2780
2781 2012-10-05 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
2782
2783 * minibuf.c (Fcompleting_read): Doc fix. (Bug#12555)
2784
2785 2012-10-04 Eli Zaretskii <eliz@gnu.org>
2786
2787 * w32.c (utime): Test for INVALID_HANDLE_VALUE, not for NULL, to
2788 see whether CreateFile failed.
2789
2790 2012-10-04 Paul Eggert <eggert@cs.ucla.edu>
2791
2792 * profiler.c (handle_profiler_signal): Inhibit pending signals too,
2793 to avoid similar races.
2794 * keyboard.c (pending_signals): Now bool, not int.
2795
2796 Port timers to OpenBSD, plus check for timer failures.
2797 OpenBSD problem reported by Han Boetes.
2798 * profiler.c (setup_cpu_timer): Check for failure of timer_settime
2799 and/or setitimer.
2800 (Fprofiler_cpu_stop): Don't assume HAVE_SETITIMER.
2801 * syssignal.h (HAVE_ITIMERSPEC): New macro. This is for platforms
2802 like OpenBSD, which has timer_settime but does not declare it.
2803 OpenBSD does not define SIGEV_SIGNAL, so use that when deciding
2804 whether to use itimerspec-related primitives. All uses of
2805 HAVE_TIMER_SETTIME replaced with HAVE_ITIMERSPEC.
2806
2807 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
2808
2809 * profiler.c (handle_profiler_signal): Fix a malloc race
2810 that caused Emacs to hang on Fedora 17 when profiling Lisp.
2811
2812 2012-10-02 Jan Djärv <jan.h.d@swipnet.se>
2813
2814 * nsterm.m (windowDidEnterFullScreen): Remove fprintf.
2815
2816 2012-10-02 Eli Zaretskii <eliz@gnu.org>
2817
2818 * w32proc.c (sys_wait): Declare 'signame' 'const char *', to be
2819 consistent with the change in return value of 'safe_strsignal'.
2820
2821 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
2822
2823 Prefer plain 'static' to 'static inline' (Bug#12541).
2824 * bidi.c (bidi_get_type, bidi_check_type, bidi_get_category)
2825 (bidi_set_sor_type, bidi_push_embedding_level)
2826 (bidi_pop_embedding_level, bidi_remember_char, bidi_copy_it)
2827 (bidi_cache_reset, bidi_cache_shrink, bidi_cache_fetch_state)
2828 (bidi_cache_search, bidi_cache_ensure_space)
2829 (bidi_cache_iterator_state, bidi_cache_find)
2830 (bidi_peek_at_next_level, bidi_set_paragraph_end)
2831 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
2832 (bidi_explicit_dir_char, bidi_resolve_neutral_1):
2833 Now 'static', not 'static inline'.
2834
2835 Count overruns when profiling; change units to ns.
2836 * profiler.c (handle_profiler_signal): Count sampling intervals, not ms.
2837 Give extra weight to samples after overruns, to attempt to count
2838 the time more accurately.
2839 (setup_cpu_timer): Change sampling interval units from ms to ns, since
2840 the underlying primitives nominally do ns.
2841 (Fprofiler_cpu_start): Document the change. Mention that
2842 the sampling intervals are only approximate.
2843
2844 2012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
2845
2846 * frame.c (Fmake_terminal_frame): Prefer safer CONSP over !NILP.
2847
2848 * coding.h (ENCODE_FILE, DECODE_FILE, DECODE_SYSTEM): Remove special
2849 case for the special 0 coding-system.
2850
2851 * buffer.c (Fset_buffer_multibyte): Signal an error instead of widening.
2852 (Fmake_overlay): Remove redundant tests.
2853 (fix_start_end_in_overlays): Remove redundant recentering.
2854
2855 2012-10-02 Juanma Barranquero <lekktu@gmail.com>
2856
2857 * makefile.w32-in ($(BLD)/alloc.$(O), $(BLD)/gmalloc.$(O)):
2858 Update dependencies.
2859
2860 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
2861
2862 Fix a malloc race condition involving strsignal.
2863 A signal can arrive in the middle of a malloc, and Emacs's signal
2864 handler can invoke strsignal, which can invoke malloc, which is
2865 not portable. This race condition bug makes Emacs hang on GNU/Linux.
2866 Fix it by altering the signal handler so that it does not invoke
2867 strsignal.
2868 * emacs.c (shut_down_emacs): Use safe_strsignal, not strsignal.
2869 * process.c (status_message): Use const pointer, in case strsignal
2870 is #defined to safe_strsignal.
2871 * sysdep.c (sys_siglist, init_signals): Always define and
2872 initialize a substitute sys_siglist if the system does not define
2873 one, even if HAVE_STRSIGNAL.
2874 (safe_strsignal): Rename from strsignal. Always define,
2875 using sys_siglist. Return a const pointer.
2876 * syssignal.h (safe_strsignal): New decl.
2877 (strsignal) [!HAVE_STRSIGNAL]: Define in terms of safe_strsignal.
2878
2879 2012-10-01 Eli Zaretskii <eliz@gnu.org>
2880
2881 * w32proc.c (timer_loop): Fix code that waits for timer
2882 expiration, to avoid high CPU usage.
2883
2884 2012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
2885
2886 * fns.c (check_hash_table, get_key_arg, maybe_resize_hash_table)
2887 (sweep_weak_table): Remove redundant prototypes.
2888
2889 2012-10-01 Fabrice Popineau <fabrice.popineau@gmail.com>
2890
2891 * emacs.c: Move the inclusion of TERM_HEADER after including
2892 windows.h on WINDOWSNT. This avoids compilation problems with
2893 MSVC.
2894
2895 2012-10-01 Eli Zaretskii <eliz@gnu.org>
2896
2897 * unexw32.c (OFFSET_TO_RVA, RVA_TO_OFFSET)
2898 (RVA_TO_SECTION_OFFSET): Encode all macro arguments in parentheses.
2899 (RVA_TO_PTR): Cast the result of RVA_TO_OFFSET to 'unsigned char *',
2900 as the previous version used 'void *'.
2901
2902 * ralloc.c (ROUNDUP): Fix last change.
2903 (MEM_ROUNDUP): Don't cast MEM_ALIGN, it is already of type
2904 'size_t'.
2905
2906 * w32proc.c <disable_itimers>: New static flag.
2907 (init_timers): Initialize it to zero, after creating the critical
2908 sections used by the timer threads.
2909 (term_timers): Set to 1 before deleting the critical sections.
2910 (getitimer, setitimer): If disable_itimers is non-zero, return an
2911 error indication without doing anything. Reported by Fabrice
2912 Popineau <fabrice.popineau@supelec.fr> as part of bug#12544.
2913 (alarm) [HAVE_SETITIMER]: Be more conformant to the expected
2914 return results.
2915 [!HAVE_SETITIMER]: Behave as the previous version that didn't
2916 support timers.
2917
2918 * emacs.c (shut_down_emacs) [WINDOWSNT]: Move the call to
2919 term_ntproc after all the other bookkeeping, to get timers working
2920 as long as possible.
2921
2922 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
2923
2924 * xdisp.c (syms_of_xdisp): Default message-log-max to 1000, not 100.
2925 Suggested by Juri Linkov in
2926 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00821.html>.
2927
2928 Prefer plain 'static' to 'static inline' (Bug#12541).
2929 With static functions, modern compilers inline pretty well by
2930 themselves; advice from programmers often hurts as much as it helps.
2931 On my host (x86-64, Fedora 17, GCC 4.7.2, default 'configure'),
2932 this change shrinks the text size of the Emacs executable by 1.1%
2933 without affecting CPU significantly in my benchmark.
2934 * alloc.c (mem_find, live_string_p, live_cons_p, live_symbol_p)
2935 (live_float_p, live_misc_p, live_vector_p, live_buffer_p)
2936 (mark_maybe_object, mark_maybe_pointer, bounded_number):
2937 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
2938 (bset_auto_fill_function, bset_auto_save_file_format)
2939 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
2940 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
2941 (bset_cache_long_line_scans, bset_case_fold_search)
2942 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
2943 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
2944 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
2945 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
2946 (bset_header_line_format, bset_indicate_buffer_boundaries)
2947 (bset_indicate_empty_lines, bset_invisibility_spec)
2948 (bset_left_fringe_width, bset_major_mode, bset_mark)
2949 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
2950 (bset_name, bset_overwrite_mode, bset_pt_marker)
2951 (bset_right_fringe_width, bset_save_length)
2952 (bset_scroll_bar_width, bset_scroll_down_aggressively)
2953 (bset_scroll_up_aggressively, bset_selective_display)
2954 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
2955 (bset_word_wrap, bset_zv_marker, set_buffer_overlays_before)
2956 (set_buffer_overlays_after):
2957 * category.c (bset_category_table):
2958 * charset.c (read_hex):
2959 * coding.c (produce_composition, produce_charset)
2960 (handle_composition_annotation, handle_charset_annotation)
2961 (char_encodable_p):
2962 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers)
2963 (assign_row, set_frame_matrix_frame, make_current)
2964 (add_row_entry):
2965 * eval.c (set_specpdl_symbol, set_specpdl_old_value):
2966 * fns.c (maybe_resize_hash_table):
2967 * frame.c (fset_buffer_predicate, fset_minibuffer_window):
2968 * gmalloc.c (register_heapinfo):
2969 * image.c (lookup_image_type):
2970 * intervals.c (set_interval_object, set_interval_left)
2971 (set_interval_right, copy_interval_parent, rotate_right)
2972 (rotate_left, balance_possible_root_interval):
2973 * keyboard.c (kset_echo_string, kset_kbd_queue)
2974 (kset_keyboard_translate_table, kset_last_prefix_arg)
2975 (kset_last_repeatable_command, kset_local_function_key_map)
2976 (kset_overriding_terminal_local_map, kset_real_last_command)
2977 (kset_system_key_syms, clear_event, set_prop):
2978 * lread.c (digit_to_number):
2979 * marker.c (attach_marker, live_buffer, set_marker_internal):
2980 * nsterm.m (ns_compute_glyph_string_overhangs):
2981 * process.c (pset_buffer, pset_command)
2982 (pset_decode_coding_system, pset_decoding_buf)
2983 (pset_encode_coding_system, pset_encoding_buf, pset_filter)
2984 (pset_log, pset_mark, pset_name, pset_plist, pset_sentinel)
2985 (pset_status, pset_tty_name, pset_type, pset_write_queue):
2986 * syntax.c (bset_syntax_table, dec_bytepos):
2987 * terminal.c (tset_param_alist):
2988 * textprop.c (interval_has_some_properties)
2989 (interval_has_some_properties_list):
2990 * window.c (wset_combination_limit, wset_dedicated)
2991 (wset_display_table, wset_hchild, wset_left_fringe_width)
2992 (wset_left_margin_cols, wset_new_normal, wset_new_total)
2993 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
2994 (wset_right_fringe_width, wset_right_margin_cols)
2995 (wset_scroll_bar_width, wset_start, wset_temslot, wset_vchild)
2996 (wset_vertical_scroll_bar_type, wset_window_parameters):
2997 * xdisp.c (wset_base_line_number, wset_base_line_pos)
2998 (wset_column_number_displayed, wset_region_showing)
2999 (window_box_edges, run_window_scroll_functions)
3000 (append_glyph_string_lists, prepend_glyph_string_lists)
3001 (append_glyph_string, set_glyph_string_background_width)
3002 (append_glyph, append_composite_glyph)
3003 (take_vertical_position_into_account):
3004 * xfaces.c (x_create_gc, x_free_gc, merge_face_vectors)
3005 (face_attr_equal_p, lface_equal_p, hash_string_case_insensitive)
3006 (lface_hash, lface_same_font_attributes_p, lookup_face):
3007 * xml.c (libxml2_loaded_p):
3008 * xterm.c (x_set_mode_line_face_gc, x_set_glyph_string_gc)
3009 (x_set_glyph_string_clipping, x_clear_glyph_string_rect):
3010 Now 'static', not 'static inline'.
3011
3012 * bidi.c: Tune.
3013 (bidi_copy_it): Do the whole copy with a single memcpy.
3014 (bidi_char_at_pos): Merge the two STRING_CHAR calls into one.
3015
3016 Revert the FOLLOW-SYMLINKS change for file-attributes.
3017 Doing it right would require several changes to Tramp, and there's
3018 not enough time to get that tested before the freeze today.
3019 * dired.c (directory_files_internal, Ffile_attributes):
3020 Undo last change.
3021
3022 * frame.c (x_report_frame_params): Port better to wider ints.
3023 Do not assume that EMACS_UINT is the same width as uprintmax_t,
3024 or that pointers can be printed in 15 decimal digits.
3025 Avoid GCC warnings if EMACS_UINT is wider than a pointer.
3026
3027 2012-09-30 Fabrice Popineau <fabrice.popineau@supelec.fr>
3028
3029 Support x64 build on MS-Windows.
3030 * w32term.h (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK): Define for x64.
3031 (SET_SCROLL_BAR_W32_WINDOW): Cast ID to intptr_t, for
3032 compatibility with x64.
3033 (x_get_focus_frame): Add prototype.
3034
3035 * w32term.c (w32_draw_underwave): Don't use GCC extensions for
3036 defining an XRectangle structure.
3037
3038 * w32proc.c (RVA_TO_PTR, w32_executable_type): Fix pointer
3039 arithmetics for compatibility with x64.
3040
3041 * w32menu.c (add_menu_item): Use UINT_PTR instead of UINT, for
3042 compatibility with x64.
3043
3044 * w32heap.h: Adjust prototypes and declarations.
3045
3046 * w32heap.c (RVA_TO_PTR, allocate_heap, sbrk, init_heap)
3047 (round_heap): Use DWORD_PTR, ptrdiff_t and size_t instead of
3048 DWORD, long, and unsigned long, for compatibility with x64.
3049 (allocate_heap) [_WIN64]: Reserve 32GB of memory.
3050 (sbrk): Argument is now of type ptrdiff_t.
3051
3052 * w32fns.c (HMONITOR): Condition declaration on _WIN32_WINNT being
3053 less than 0x0500.
3054 (w32_msg_pump): Use WPARAM type for 'result'.
3055
3056 * w32.c (init_environment, get_emacs_configuration): Support AMD64
3057 architecture.
3058 (init_ntproc): Cast arguments of _open_osfhandle to intptr_t, for
3059 compatibility with x64.
3060
3061 * vm-limit.c (lim_data): Now size_t.
3062 (check_memory_limits): Adjust prototypes of real_morecore and
3063 __morecore to receive argument of type ptrdiff_t. Use size_t for
3064 five_percent and data_size.
3065
3066 * unexw32.c: Use DWORD_PTR instead of DWORD for file-scope
3067 variables, for compatibility with x64.
3068 (rva_to_section, offset_to_section, relocate_offset)
3069 (OFFSET_TO_RVA, RVA_TO_OFFSET, RVA_TO_SECTION_OFFSET)
3070 (PTR_TO_RVA, RVA_TO_PTR, OFFSET_TO_PTR, get_section_info)
3071 (copy_executable_and_dump_data): Use DWORD_PTR instead of DWORD
3072 for compatibility with x64.
3073
3074 * sysdep.c (STDERR_FILENO): Define if not already defined.
3075
3076 * ralloc.c (real_morecore): Argument type is now ptrdiff_t.
3077 (__morecore): Argument type is now ptrdiff_t.
3078 (ROUNDUP, MEM_ROUNDUP): Use size_t instead of 'unsigned long'.
3079 (relinquish): Use ptrdiff_t type for 'excess'.
3080 (r_alloc_sbrk): Argument type is now ptrdiff_t.
3081
3082 * makefile.w32-in (HEAPSIZE): Get value from EMACS_HEAPSIZE.
3083 (bootstrap-temacs-CMD, bootstrap-temacs-SH): Use $(EMACS_PURESIZE)
3084 instead of a literal number.
3085
3086 * gmalloc.c [WINDOWSNT]: Include w32heap.h.
3087 (min): Define only if not already defined.
3088
3089 * frame.c (x_report_frame_params): Use EMACS_UINT for the return
3090 value of FRAME_X_WINDOW, to fit a 64-bit pointer on 64-bit Windows
3091 hosts.
3092
3093 * image.c (x_bitmap_pixmap): Return ptrdiff_t, not int, since
3094 'bitmaps' is a pointer.
3095
3096 * dispextern.h (x_bitmap_pixmap): Adjust prototype.
3097
3098 * alloc.c (gdb_make_enums_visible): Now conditional on __GNUC__.
3099
3100 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
3101
3102 file-attributes has a new optional arg FOLLOW-SYMLINKS.
3103 * dired.c (directory_files_internal, Ffile_attributes):
3104 New arg follow_symlinks. All uses changed.
3105
3106 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
3107
3108 * .gdbinit (xbacktrace): Adjust to recent "struct backtrace" change.
3109
3110 2012-09-30 Eli Zaretskii <eliz@gnu.org>
3111
3112 Support atimers and CPU profiler via profile.c on MS-Windows.
3113 * w32proc.c (sig_mask, crit_sig): New static variables.
3114 (sys_signal): Support SIGALRM and SIGPROF.
3115 (sigemptyset, sigaddset, sigfillset, sigprocmask)
3116 (pthread_sigmask, setpgrp): Move here from w32.c. sigaddset,
3117 sigfillset, and sigprocmask are no longer no-ops.
3118 (sigismember): New function.
3119 (struct itimer_data): New definition.
3120 (ticks_now, real_itimer, prof_itimer, clocks_min, crit_real)
3121 (crit_prof): New static variables.
3122 (MAX_SINGLE_SLEEP): New definition.
3123 (timer_loop, stop_timer_thread, term_timers, init_timers)
3124 (start_timer_thread, getitimer, setitimer): New functions.
3125 (alarm): No longer a no-op, calls setitimer.
3126
3127 * w32.c (term_ntproc): Call term_timers.
3128 (init_ntproc): Make sure all signals are unblocked at startup, to
3129 erase any traces of dumping. Call init_timers.
3130
3131 * w32fns.c (hourglass_timer, HOURGLASS_ID): Remove.
3132 Windows-specific code to display the hourglass mouse pointer is no
3133 longer used.
3134 (w32_wnd_proc): Remove code that handled the WM_TIMER message due
3135 to hourglass timer expiration.
3136 (start_hourglass, cancel_hourglass, DEFAULT_HOURGLASS_DELAY):
3137 Remove, no longer used.
3138 (w32_note_current_window, show_hourglass, hide_hourglass):
3139 New functions, in support of hourglass cursor display similar to other
3140 window systems.
3141 (syms_of_w32fns): Don't initialize hourglass_timer.
3142
3143 * xdisp.c (start_hourglass, cancel_hourglass): Now used on
3144 WINDOWSNT as well.
3145 (start_hourglass) [WINDOWSNT]: Call w32_note_current_window.
3146
3147 * w32.h (init_timers, term_timers): Add prototypes.
3148
3149 2012-09-30 Kenichi Handa <handa@gnu.org>
3150
3151 * coding.c (decode_coding_ccl, encode_coding_ccl): Pay attention
3152 to the buffer relocation which may be caused by ccl_driver.
3153
3154 2012-09-30 Jan Djärv <jan.h.d@swipnet.se>
3155
3156 * xfns.c (Fx_file_dialog): Update comment.
3157
3158 * w32fns.c (Fx_file_dialog): Update comment.
3159
3160 * nsfns.m (Fns_read_file_name): Add argument DIR_ONLY_P.
3161 Initialize panel name field if OSX >= 10.6.
3162
3163 * fileio.c (Fnext_read_file_uses_dialog_p): Add HAVE_NS.
3164
3165 * nsfns.m (ns_frame_parm_handlers): Add x_set_fullscreen.
3166
3167 * nsterm.m (NEW_STYLE_FS): New define.
3168 (ns_fullscreen_hook, windowWillEnterFullScreen)
3169 (windowDidEnterFullScreen, windowWillExitFullScreen)
3170 (windowDidExitFullScreen, toggleFullScreen, handleFS)
3171 (setFSValue): New functions.
3172 (EmacsFSWindow): New implementation.
3173 (canBecomeKeyWindow): New function for EmacsFSWindow.
3174 (ns_create_terminal): Set fullscreen_hook to ns_fullscreen_hook.
3175 (dealloc): Release nonfs_window if in fullscreen.
3176 (updateFrameSize:): Call windowDidMove to update top/left.
3177 (windowWillResize:toSize:): Check if frame is still maximized.
3178 (initFrameFromEmacs:): Initialize fs_state, fs_before_fs,
3179 next_maximized, maximized_width, maximized_height and nonfs_window.
3180 Call setCollectionBehavior if NEW_STYLE_FS. Initialize bwidth and
3181 tbar_height.
3182 (windowWillUseStandardFrame:defaultFrame:): Update frame parameter
3183 fullscreen. Set maximized_width/height. Act on next_maximized.
3184
3185 * nsterm.h (MAC_OS_X_VERSION_10_7, MAC_OS_X_VERSION_10_8): New.
3186 (EmacsView): Add variables for fullscreen.
3187 (handleFS, setFSValue, toggleFullScreen): New in EmacsView.
3188 (EmacsFSWindow): New interface for fullscreen.
3189
3190 2012-09-30 Juanma Barranquero <lekktu@gmail.com>
3191
3192 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
3193
3194 2012-09-30 Chong Yidong <cyd@gnu.org>
3195
3196 * fns.c (Frandom): Doc fix.
3197
3198 2012-09-30 Martin Rudalics <rudalics@gmx.at>
3199
3200 * window.c (Vwindow_combination_limit): New default value.
3201 (Qwindow_size): New symbol replacing Qtemp_buffer_resize.
3202
3203 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
3204
3205 * syssignal.h (PROFILER_CPU_SUPPORT): Don't define if PROFILING.
3206 Suggested by Eli Zaretskii in
3207 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00811.html>.
3208
3209 2012-09-30 Eli Zaretskii <eliz@gnu.org>
3210
3211 * profiler.c (Fprofiler_cpu_stop): Use timer_settime only if
3212 HAVE_TIMER_SETTIME is defined.
3213
3214 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
3215
3216 Profiler improvements: more-accurate timers, overflow checks.
3217 * profiler.c: Don't include stdio.h, limits.h, sys/time.h,
3218 signal.h, setjmp.h. Include systime.h instead.
3219 (saturated_add): New function.
3220 (record_backtrace, current_sample_interval): Use EMACS_INT, not size_t.
3221 (record_backtrace, handle_profiler_signal): Saturate on fixnum overflow.
3222 (profiler_timer, profiler_timer_ok) [HAVE_TIMER_SETTIME]:
3223 New static vars.
3224 (enum profiler_cpu_running): New enum.
3225 (profiler_cpu_running): Now of that enum type, not bool.
3226 All uses changed to store the new value.
3227 (handle_profiler_signal): Rename from sigprof_handler_1,
3228 for consistency with other handlers. Do not check whether
3229 cpu_log is a hash-table if garbage collecting, since it
3230 doesn't matter in that case.
3231 (deliver_profiler_signal): Rename from sigprof_handler,
3232 for consistency with other handlers.
3233 (setup_cpu_timer): New function, with much of what used to be in
3234 Fprofiler_cpu_start. Check for out-of-range argument.
3235 Prefer timer_settime if available, and prefer
3236 thread cputime clocks, then process cputime clocks, then
3237 monotonic clocks, to the old realtime clock. Use make_timeval
3238 to round more-correctly when falling back to setitimer.
3239 (Fprofiler_cpu_start): Use it.
3240 (Fprofiler_cpu_stop): Prefer timer_settime if available.
3241 Don't assume that passing NULL as the 2nd argument of setitimer
3242 is the same as passing a pointer to all-zero storage.
3243 Ignore SIGPROF afterwards.
3244 (malloc_probe): Saturate at MOST_POSITIVE_FIXNUM.
3245 * sysdep.c (emacs_sigaction_init): Also mask out SIGPROF in
3246 non-fatal signal handlers. Ignore SIGPROF on startup.
3247 * syssignal.h (PROFILER_CPU_SUPPORT): Define this macro here, not
3248 in profiler.c, since sysdep.c now uses it.
3249
3250 * sysdep.c (handle_fatal_signal): Bump backtrace size to 40.
3251 Suggested by Eli Zaretskii in
3252 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00796.html>.
3253
3254 2012-09-29 Juanma Barranquero <lekktu@gmail.com>
3255
3256 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
3257
3258 2012-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
3259
3260 * lisp.h (struct backtrace): Remove indirection for `function' field.
3261 * xdisp.c (redisplay_internal):
3262 * profiler.c (record_backtrace, sigprof_handler_1):
3263 * alloc.c (Fgarbage_collect):
3264 * eval.c (interactive_p, Fsignal, eval_sub, Ffuncall, Fbacktrace)
3265 (Fbacktrace_frame): Adjust accordingly.
3266
3267 2012-09-28 Glenn Morris <rgm@gnu.org>
3268
3269 * eval.c (Frun_hook_with_args, Frun_hook_with_args_until_success)
3270 (Frun_hook_with_args_until_failure): Doc fixes.
3271
3272 2012-09-28 Eli Zaretskii <eliz@gnu.org>
3273
3274 * xdisp.c (syms_of_xdisp) <Qredisplay_internal>: Rename from
3275 Qautomatic_redisplay and change the symbol name. All users changed.
3276
3277 2012-09-28 Tomohiro Matsuyama <tomo@cx4a.org>
3278
3279 * profiler.c (sigprof_handler): Fix race condition.
3280
3281 2012-09-28 Glenn Morris <rgm@gnu.org>
3282
3283 * lread.c (lisp_file_lexically_bound_p): Handle #! lines. (Bug#12528)
3284
3285 2012-09-27 Paul Eggert <eggert@cs.ucla.edu>
3286
3287 Check more robustly for timer_settime.
3288 * Makefile.in (LIB_TIMER_TIME): New macro.
3289 (LIBES): Add it.
3290 * atimer.c (alarm_timer, alarm_timer_ok, set_alarm, init_atimer):
3291 Use HAVE_TIMER_SETTIME, not SIGEV_SIGNAL, to decide whether to
3292 call timer_settime.
3293
3294 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
3295
3296 * profiler.c (Fprofiler_cpu_start): Remove unnecessary flag SA_SIGINFO.
3297
3298 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
3299
3300 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
3301
3302 2012-09-26 Paul Eggert <eggert@cs.ucla.edu>
3303
3304 * character.h (MAYBE_UNIFY_CHAR): Remove.
3305 * charset.c, charset.h (maybe_unify_char): Now static.
3306 * charset.c (decode_char): Use maybe_unify_char, not MAYBE_UNIFY_CHAR.
3307 Since this stuff is now private to charset.c, there's no need for
3308 a public macro and no need to inline by hand.
3309
3310 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
3311 Stefan Monnier <monnier@iro.umontreal.ca>
3312 Juanma Barranquero <lekktu@gmail.com>
3313
3314 * profiler.c: New file.
3315 * Makefile.in (base_obj): Add profiler.o.
3316 * makefile.w32-in (OBJ2, GLOBAL_SOURCES): Add profiler.c.
3317 ($(BLD)/profiler.$(O)): New target.
3318 * emacs.c (main): Call syms_of_profiler.
3319 * alloc.c (Qautomatic_gc): New constant.
3320 (MALLOC_PROBE): New macro.
3321 (xmalloc, xzalloc, xrealloc, lisp_malloc, lisp_align_malloc): Use it.
3322 (total_bytes_of_live_objects): New function.
3323 (Fgarbage_collect): Use it. Record itself in backtrace_list.
3324 Call malloc_probe for the memory profiler.
3325 (syms_of_alloc): Define Qautomatic_gc.
3326 * eval.c (eval_sub, Ffuncall): Reorder assignments to avoid
3327 race condition.
3328 (struct backtrace): Move definition...
3329 * lisp.h (struct backtrace): ..here.
3330 (Qautomatic_gc, profiler_memory_running): Declare vars.
3331 (malloc_probe, syms_of_profiler): Declare functions.
3332 * xdisp.c (Qautomatic_redisplay): New constant.
3333 (redisplay_internal): Record itself in backtrace_list.
3334 (syms_of_xdisp): Define Qautomatic_redisplay.
3335
3336 2012-09-25 Eli Zaretskii <eliz@gnu.org>
3337 2012-09-25 Juanma Barranquero <lekktu@gmail.com>
3338
3339 * makefile.w32-in ($(BLD)/callproc.$(O)): Update dependencies.
3340
3341 2012-09-25 Paul Eggert <eggert@cs.ucla.edu>
3342
3343 Prefer POSIX timers if available.
3344 They avoid a race if the timer is too close to the current time.
3345 * atimer.c (alarm_timer, alarm_timer_ok) [SIGEV_SIGNAL]: New static vars.
3346 (set_alarm) [SIGEV_SIGNAL]: Use POSIX timers if available.
3347 (init_atimer) [SIGEV_SIGNAL]: Initialize them.
3348
3349 2012-09-25 Eli Zaretskii <eliz@gnu.org>
3350
3351 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY): Make it an alias of
3352 CHAR_STRING_ADVANCE.
3353 (STRING_CHAR_ADVANCE_NO_UNIFY): Make it an alias of
3354 STRING_CHAR_ADVANCE.
3355
3356 2012-09-25 Juanma Barranquero <lekktu@gmail.com>
3357
3358 Move Vlibrary_cache to emacs.c and reset before dumping.
3359
3360 * lisp.h (reset_image_types): Declare.
3361 [WINDOWSNT] (Vlibrary_cache): Declare.
3362
3363 * image.c (reset_image_types): New function.
3364
3365 * emacs.c [WINDOWSNT] (Vlibrary_cache): Move from w32.c.
3366 (syms_of_emacs) [WINDOWSNT] <Vlibrary_cache>: Initialize and staticpro.
3367 (Fdump_emacs): Reset Vlibrary_cache and image_types.
3368
3369 * w32.c (Vlibrary_cache): Do not define; moved to emacs.c
3370 (globals_of_w32) <Vlibrary_cache>: Do not initialize.
3371
3372 * w32.h (Vlibrary_cache): Do not declare.
3373
3374 2012-09-25 Eli Zaretskii <eliz@gnu.org>
3375
3376 * w32proc.c (sys_signal): Handle all signals defined by the
3377 MS-Windows runtime, not just SIGCHLD. Actually install the signal
3378 handlers for signals supported by Windows. Don't override
3379 term_ntproc as the handler for SIGABRT.
3380 (sigaction): Rewrite to call sys_signal instead of duplicating its
3381 code.
3382 (sys_kill): Improve commentary.
3383
3384 * w32.c (term_ntproc): Accept (and ignore) one argument, for
3385 consistency with a signature of a signal handler. All callers
3386 changed.
3387 (init_ntproc): Accept an argument DUMPING. If dumping, don't
3388 install term_ntproc as a signal handler for SIGABRT, as that
3389 should be done by the dumped Emacs.
3390
3391 * w32.h (init_ntproc, term_ntproc): Adjust prototypes.
3392
3393 * w32select.c (term_w32select): Protect against repeated
3394 invocation by setting clipboard_owner to NULL after calling
3395 DestroyWindow.
3396
3397 * emacs.c (shut_down_emacs, main): Adapt the calls to init_ntproc
3398 and term_ntproc to their modified signatures.
3399
3400 * character.c (char_string, string_char): Remove calls to
3401 MAYBE_UNIFY_CHAR. See the discussion starting at
3402 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00433.html
3403 for the details.
3404
3405 2012-09-25 Chong Yidong <cyd@gnu.org>
3406
3407 * xdisp.c (mode_line_inverse_video): Delete obsolete variable.
3408
3409 2012-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
3410
3411 * bytecode.c (exec_byte_code): Signal an error instead of aborting,
3412 when encountering an unknown bytecode.
3413
3414 2012-09-24 Paul Eggert <eggert@cs.ucla.edu>
3415
3416 image.c, indent.c: Use bool for booleans.
3417 * dispextern.h (struct image_type): Members valid_p, load, init
3418 now return bool, not int. All uses changed.
3419 * image.c: Omit unnecessary static decls.
3420 (x_create_bitmap_mask, x_build_heuristic_mask):
3421 Return void, not int, since callers don't care about the return value.
3422 (x_create_bitmap_mask, define_image_type, valid_image_p)
3423 (struct image_keyword, parse_image_spec, image_spec_value)
3424 (check_image_size, image_background)
3425 (image_background_transparent, x_clear_image_1)
3426 (postprocess_image, lookup_image, x_check_image_size)
3427 (x_create_x_image_and_pixmap, xbm_image_p)
3428 (Create_Pixmap_From_Bitmap_Data, xbm_read_bitmap_data)
3429 (xbm_load_image, xbm_file_p, xbm_load, xpm_lookup_color)
3430 (init_xpm_functions, xpm_valid_color_symbols_p, xpm_image_p)
3431 (xpm_load, xpm_load_image, lookup_rgb_color, lookup_pixel_color)
3432 (x_to_xcolors, x_build_heuristic_mask, pbm_image_p, pbm_load)
3433 (png_image_p, init_png_functions, png_load_body, png_load)
3434 (jpeg_image_p, init_jpeg_functions, jpeg_load_body, jpeg_load)
3435 (tiff_image_p, init_tiff_functions, tiff_load, gif_image_p)
3436 (init_gif_functions, gif_load, imagemagick_image_p)
3437 (imagemagick_load_image, imagemagick_load, svg_image_p)
3438 (init_svg_functions, svg_load, svg_load_image, gs_image_p)
3439 (gs_load):
3440 * nsimage.m (ns_load_image):
3441 * nsterm.m (ns_defined_color):
3442 * xfaces.c (tty_lookup_color, tty_defined_color, defined_color):
3443 * xfns.c (x_defined_color):
3444 * xterm.c (x_alloc_lighter_color_for_widget)
3445 (x_alloc_nearest_color_1, x_alloc_nearest_color)
3446 (x_alloc_lighter_color):
3447 * indent.c (disptab_matches_widthtab, current_column)
3448 (scan_for_column, string_display_width, indented_beyond_p)
3449 (compute_motion, vmotion, Fvertical_motion):
3450 Use bool for booleans.
3451
3452 2012-09-24 Chong Yidong <cyd@gnu.org>
3453
3454 * chartab.c (Fset_char_table_default): Obsolete function removed.
3455
3456 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
3457
3458 Move pid_t related decls out of lisp.h.
3459 * lisp.h, syswait.h (record_child_status_change, wait_for_termination)
3460 (interruptible_wait_for_termination):
3461 Move these decls from lisp.h to syswait.h, since they use pid_t.
3462 Needed on FreeBSD; see Herbert J. Skuhra in
3463 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00571.html>.
3464 * callproc.c: Include syswait.h.
3465
3466 gnutls.c, gtkutil.c: Use bool for boolean.
3467 * gnutls.c (gnutls_global_initialized, init_gnutls_functions)
3468 (emacs_gnutls_handle_error):
3469 * gtkutil.c (xg_check_special_colors, xg_prepare_tooltip)
3470 (xg_hide_tooltip, xg_create_frame_widgets)
3471 (create_dialog, xg_uses_old_file_dialog)
3472 (xg_get_file_with_chooser, xg_get_file_with_selection)
3473 (xg_get_file_name, xg_have_tear_offs, create_menus, xg_create_widget)
3474 (xg_item_label_same_p, xg_update_menubar)
3475 (xg_modify_menubar_widgets, xg_event_is_for_menubar)
3476 (xg_ignore_gtk_scrollbar, xg_set_toolkit_scroll_bar_thumb)
3477 (xg_event_is_for_scrollbar, xg_pack_tool_bar, xg_make_tool_item)
3478 (is_box_type, xg_tool_item_stale_p, xg_update_tool_bar_sizes)
3479 (update_frame_tool_bar, free_frame_tool_bar):
3480 * gtkutil.c, w32term.c, xterm.c (x_wm_set_size_hint):
3481 * nsmenu.m (ns_update_menubar):
3482 * nsmenu.m, w32menu.c, xmenu.c (set_frame_menubar):
3483 * xfns.c (Fx_show_tip) [USE_GTK]:
3484 Use bool for boolean.
3485 * gtkutil.c (xg_update_frame_menubar):
3486 * xmenu.c (update_frame_menubar):
3487 Return void, not int, since caller ignores return value.
3488 * gtkutil.c (xg_change_toolbar_position):
3489 Return void, not 1.
3490
3491 2012-09-23 Juanma Barranquero <lekktu@gmail.com>
3492
3493 * makefile.w32-in (BLOCKINPUT_H): Remove.
3494 (SYSSIGNAL_H): New macro.
3495 ($(BLD)/alloc.$(O), $(BLD)/atimer.$(O), $(BLD)/buffer.$(O))
3496 ($(BLD)/callproc.$(O), $(BLD)/data.$(O), $(BLD)/dired.$(O))
3497 ($(BLD)/dispnew.$(O), $(BLD)/editfns.$(O), $(BLD)/emacs.$(O))
3498 ($(BLD)/eval.$(O), $(BLD)/fileio.$(O), $(BLD)/floatfns.$(O))
3499 ($(BLD)/fns.$(O), $(BLD)/fontset.$(O), $(BLD)/frame.$(O))
3500 ($(BLD)/fringe.$(O), $(BLD)/image.$(O), $(BLD)/insdel.$(O))
3501 ($(BLD)/keyboard.$(O), $(BLD)/keymap.$(O), $(BLD)/lread.$(O))
3502 ($(BLD)/menu.$(O), $(BLD)/w32inevt.$(O), $(BLD)/w32proc.$(O))
3503 ($(BLD)/print.$(O), $(BLD)/process.$(O), $(BLD)/ralloc.$(O))
3504 ($(BLD)/search.$(O), $(BLD)/sound.$(O), $(BLD)/sysdep.$(O))
3505 ($(BLD)/term.$(O), $(BLD)/window.$(O), $(BLD)/xdisp.$(O))
3506 ($(BLD)/xfaces.$(O), $(BLD)/w32fns.$(O), $(BLD)/w32menu.$(O))
3507 ($(BLD)/w32term.$(O), $(BLD)/w32select.$(O), $(BLD)/w32reg.$(O))
3508 ($(BLD)/w32xfns.$(O)): Update dependencies.
3509
3510 2012-09-23 Eli Zaretskii <eliz@gnu.org>
3511
3512 * .gdbinit: Set breakpoint on terminate_due_to_signal, not on
3513 fatal_error_backtrace.
3514
3515 * w32proc.c (sys_kill): Undo last change: don't do anything when
3516 invoked to deliver SIGABRT to our own process. This is now
3517 handled by emacs_raise.
3518
3519 2012-09-23 Juanma Barranquero <lekktu@gmail.com>
3520
3521 * w32term.c (w32_read_socket): Remove leftover reference to
3522 interrupt_input_pending.
3523
3524 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
3525
3526 Do not use SA_NODEFER.
3527 Problem reported by Dani Moncayo in
3528 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00557.html>.
3529 * alloc.c (die):
3530 * sysdep.c (emacs_abort): Do not reset signal handler.
3531 * emacs.c (terminate_due_to_signal): Reset signal handler here.
3532 * sysdep.c (init_signals): Do not use SA_NODEFER. It wasn't
3533 wanted even on POSIXish hosts, and it doesn't work on Windows.
3534
3535 2012-09-23 Jan Djärv <jan.h.d@swipnet.se>
3536
3537 * xterm.c (x_term_init): Call fixup_locale before and after calling
3538 gtk_init (Bug#12392).
3539
3540 2012-09-23 Chong Yidong <cyd@gnu.org>
3541
3542 * w32.c (w32_delayed_load): Remove LIBRARIES argument; always use
3543 Vdynamic_library_alist.
3544
3545 * gnutls.c (init_gnutls_functions): Caller changed; remove arg.
3546 (Fgnutls_available_p): Caller changed.
3547
3548 * xml.c (init_libxml2_functions, Flibxml_parse_html_region)
3549 (Flibxml_parse_xml_region): Likewise.
3550
3551 * dispextern.h (struct image_type): Remove arg from init function.
3552
3553 * image.c (Finit_image_library, lookup_image_type)
3554 (define_image_type): Remove now-unneeded second arg.
3555 (init_xpm_functions, init_png_functions, init_jpeg_functions)
3556 (init_tiff_functions, init_gif_functions, init_svg_functions):
3557 Arglist and w32_delayed_load calling convention changed.
3558 (gs_type): Remove init_gs_functions; there is no such function.
3559 (valid_image_p, make_image): Fix caller to lookup_image_type.
3560
3561 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
3562
3563 Simplify and avoid signal-handling races (Bug#12471).
3564 * alloc.c (die):
3565 * sysdep.c (emacs_abort) [HAVE_NTGUI]:
3566 Avoid recursive loop if there's a fatal error in the function itself.
3567 * atimer.c (pending_atimers):
3568 * blockinput.h: Don't include "atimer.h"; no longer needed.
3569 (interrupt_input_pending): Remove. All uses removed.
3570 pending_signals now counts both atimers and ordinary interrupts.
3571 This is less racy than having three separate pending-signal flags.
3572 (block_input, unblock_input, totally_unblock_input, unblock_input_to)
3573 (input_blocked_p):
3574 Rename from their upper-case counterparts BLOCK_INPUT,
3575 UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT, UNBLOCK_INPUT_TO,
3576 INPUT_BLOCKED_P, and turn into functions. All uses changed.
3577 This makes it easier to access volatile variables more accurately.
3578 (BLOCK_INPUT_RESIGNAL): Remove. All uses replaced by unblock_input ().
3579 (input_blocked_p): Prefer this to 'interrupt_input_blocked', as
3580 that's more reliable if the code is buggy and sets
3581 interrupt_input_blocked to a negative value. All uses changed.
3582 * atimer.c (deliver_alarm_signal):
3583 Remove. No need to deliver this to the parent; any thread can
3584 handle this signal now. All uses replaced by underlying handler.
3585 * atimer.c (turn_on_atimers):
3586 * dispnew.c (handle_window_change_signal):
3587 * emacs.c (handle_danger_signal):
3588 * keyboard.c (kbd_buffer_get_event):
3589 Don't reestablish signal handler; not needed with sigaction.
3590 * blockinput.h (UNBLOCK_INPUT_TO, TOTALLY_UNBLOCK_INPUT)
3591 (UNBLOCK_INPUT_TO):
3592 Rework to avoid unnecessary accesses to volatile variables.
3593 (UNBLOCK_INPUT_TO): Now a function.
3594 (totally_unblock_input, unblock_input): New decls.
3595 * data.c (handle_arith_signal, deliver_arith_signal): Move to sysdep.c
3596 (init_data): Remove. Necessary stuff now done in init_signal.
3597 * emacs.c, xdisp.c: Include "atimer.h", since we invoke atimer functions.
3598 * emacs.c (handle_fatal_signal, deliver_fatal_signal): Move to sysdep.c.
3599 (fatal_error_code): Remove; no longer needed.
3600 (terminate_due_to_signal): Rename from fatal_error_backtrace, since
3601 it doesn't always backtrace. All uses changed. No need to reset
3602 signal to default, since sigaction and/or die does that for us now.
3603 Use emacs_raise (FOO), not kill (getpid (), FOO).
3604 (main): Check more-accurately whether we're dumping.
3605 Move fatal-error setup to sysdep.c
3606 * floatfns.c: Do not include "syssignal.h"; no longer needed.
3607 * gtkutil.c (xg_get_file_name, xg_get_font):
3608 Remove no-longer-needed signal-mask manipulation.
3609 * keyboard.c, process.c (POLL_FOR_INPUT):
3610 Don't depend on USE_ASYNC_EVENTS, a symbol that is never defined.
3611 * keyboard.c (read_avail_input): Remove.
3612 All uses replaced by gobble_input.
3613 (Ftop_level): Use TOTALLY_UNBLOCK_INPUT rather than open code.
3614 (kbd_buffer_store_event_hold, gobble_input):
3615 (record_asynch_buffer_change) [USABLE_SIGIO]:
3616 (store_user_signal_events):
3617 No need to mess with signal mask.
3618 (gobble_input): If blocking input and there are terminals, simply
3619 set pending_signals to 1 and return. All hooks changed to not
3620 worry about whether input is blocked.
3621 (process_pending_signals): Clear pending_signals before processing
3622 them, in case a signal comes in while we're processing.
3623 By convention callers now test pending_signals before calling us.
3624 (UNBLOCK_INPUT_TO, unblock_input, totally_unblock_input):
3625 New functions, to support changes to blockinput.h.
3626 (handle_input_available_signal): Now extern.
3627 (reinvoke_input_signal): Remove. All uses replaced by
3628 handle_async_input.
3629 (quit_count): Now volatile, since a signal handler uses it.
3630 (handle_interrupt): Now takes bool IN_SIGNAL_HANDLER as arg.
3631 All callers changed. Block SIGINT only if not already blocked.
3632 Clear sigmask reliably, even if Fsignal returns, which it can.
3633 Omit unnecessary accesses to volatile var.
3634 (quit_throw_to_read_char): No need to restore sigmask.
3635 * keyboard.c (gobble_input, handle_user_signal):
3636 * process.c (wait_reading_process_output):
3637 Call signal-handling code rather than killing ourselves.
3638 * lisp.h: Include <float.h>, for...
3639 (IEEE_FLOATING_POINT): New macro, moved here to avoid duplication.
3640 (pending_signals): Now volatile.
3641 (syms_of_data): Now const if IEEE floating point.
3642 (handle_input_available_signal) [USABLE_SIGIO]:
3643 (terminate_due_to_signal, record_child_status_change): New decls.
3644 * process.c (create_process): Avoid disaster if memory is exhausted
3645 while we're processing a vfork, by tightening the critical section
3646 around the vfork.
3647 (send_process_frame, process_sent_to, handle_pipe_signal)
3648 (deliver_pipe_signal): Remove. No longer needed, as Emacs now
3649 ignores SIGPIPE.
3650 (send_process): No need for setjmp/longjmp any more, since the
3651 SIGPIPE stuff is now gone. Instead, report an error if errno
3652 is EPIPE.
3653 (record_child_status_change): Now extern. PID and W are now args.
3654 Return void, not bool. All callers changed.
3655 * sysdep.c (wait_debugging) [(BSD_SYSTEM || HPUX) && !defined (__GNU__)]:
3656 Remove. All uses removed. This bug should be fixed now in a
3657 different way.
3658 (wait_for_termination_1): Use waitpid rather than sigsuspend,
3659 and record the child status change directly. This avoids the
3660 need to futz with the signal mask.
3661 (process_fatal_action): Move here from emacs.c.
3662 (emacs_sigaction_flags): New function, containing
3663 much of what used to be in emacs_sigaction_init.
3664 (emacs_sigaction_init): Use it. Block nonfatal system signals that are
3665 caught by emacs, to make races less likely.
3666 (deliver_process_signal): Rename from handle_on_main_thread.
3667 All uses changed.
3668 (BACKTRACE_LIMIT_MAX): Now at top level.
3669 (thread_backtrace_buffer, threadback_backtrace_pointers):
3670 New static vars.
3671 (deliver_thread_signal, deliver_fatal_thread_signal):
3672 New functions, for more-accurate delivery of thread-specific signals.
3673 (handle_fatal_signal, deliver_fatal_signal): Move here from emacs.c.
3674 (deliver_arith_signal): Handle in this thread, not
3675 in the main thread, since it's triggered by this thread.
3676 (maybe_fatal_sig): New function.
3677 (init_signals): New arg DUMPING so that we can be more accurate
3678 about whether we're dumping. Caller changed.
3679 Treat thread-specific signals differently from process-general signals.
3680 Block all signals while handling fatal error; that's safer.
3681 xsignal from SIGFPE only on non-IEEE hosts, treating it as fatal
3682 on IEEE hosts.
3683 When batch, ignore SIGHUP, SIGINT, SIGTERM if they were already ignored.
3684 Ignore SIGPIPE unless batch.
3685 (emacs_backtrace): Output backtrace for the appropriate thread,
3686 which is not necessarily the main thread.
3687 * syssignal.h: Include <stdbool.h>.
3688 (emacs_raise): New macro.
3689 * xterm.c (x_connection_signal): Remove; no longer needed
3690 now that we use sigaction.
3691 (x_connection_closed): No need to mess with sigmask now.
3692 (x_initialize): No need to reset SIGPIPE handler here, since
3693 init_signals does this for us now.
3694
3695 2012-09-23 Jan Djärv <jan.h.d@swipnet.se>
3696
3697 * nsterm.m (ns_dumpglyphs_image): dr is a new rect to draw image into,
3698 background rect may be larger (Bug#12245).
3699
3700 2012-09-23 Chong Yidong <cyd@gnu.org>
3701
3702 * keyboard.c (timer_check): Avoid quitting during Fcopy_sequence.
3703
3704 2012-09-22 Paul Eggert <eggert@cs.ucla.edu>
3705
3706 * .gdbinit: Just stop at fatal_error_backtrace.
3707 See Stefan Monnier's request in
3708 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00549.html>.
3709 Remove no-longer-used query of system type.
3710
3711 2012-09-22 Chong Yidong <cyd@gnu.org>
3712
3713 * search.c (Freplace_match): Doc fix (Bug#12325).
3714
3715 * minibuf.c (Finternal_complete_buffer): Doc fix (Bug#12391).
3716
3717 * editfns.c (Fline_beginning_position): Doc fix (Bug#12416).
3718 (Fline_end_position): Doc fix.
3719
3720 * cmds.c (Fforward_char, Fbackward_char): Doc fix (Bug#12414).
3721
3722 2012-09-22 Chong Yidong <cyd@gnu.org>
3723
3724 * dispextern.h (struct image_type): Add new slot, storing a type
3725 initialization function.
3726
3727 * image.c (define_image_type): Call the image initializer function
3728 if it is defined. Arguments and return value changed.
3729 (valid_image_p, make_image): Callers changed.
3730 (xbm_type, xpm_type, pbm_type, png_type, jpeg_type, tiff_type)
3731 (gif_type, imagemagick_type, svg_type, gs_type):
3732 Add initialization functions.
3733 (Finit_image_library): Call lookup_image_type.
3734 (CHECK_LIB_AVAILABLE): Macro deleted.
3735 (lookup_image_type): Call define_image_type here, rather than via
3736 Finit_image_library, and without using CHECK_LIB_AVAILABLE.
3737 (syms_of_image): Move define_image_type calls for xbm_type and
3738 pbm_type to lookup_image_type.
3739
3740 2012-09-22 Eli Zaretskii <eliz@gnu.org>
3741
3742 * keyboard.c (timer_check_2): Move calculation of 'timers' and
3743 'idle_timers' from here ...
3744 (timer_check): ... to here. Use Fcopy_sequence to copy the timer
3745 lists, to avoid infloops when the timer does something stupid,
3746 like reinvoke itself with the same or smaller time-out.
3747 (Bug#12447)
3748
3749 2012-09-22 Martin Rudalics <rudalics@gmx.at>
3750
3751 * window.c (Fsplit_window_internal): Handle only Qt value of
3752 Vwindow_combination_limit separately.
3753 (Qtemp_buffer_resize): New symbol.
3754 (Vwindow_combination_limit): New default value.
3755 Rewrite doc-string.
3756
3757 2012-09-22 Eli Zaretskii <eliz@gnu.org>
3758
3759 * xdisp.c (next_overlay_string): Initialize it->end_charpos for
3760 the new overlay string. (Bug#10159)
3761
3762 2012-09-22 Paul Eggert <eggert@cs.ucla.edu>
3763
3764 * emacs.c (shut_down_emacs): Don't assume stderr is buffered,
3765 or that fprintf is async-signal-safe. POSIX doesn't require
3766 either assumption.
3767
3768 2012-09-22 Chong Yidong <cyd@gnu.org>
3769
3770 * buffer.c (Fset_buffer_modified_p): Handle indirect buffers
3771 (Bug#8207).
3772
3773 2012-09-22 Kenichi Handa <handa@gnu.org>
3774
3775 * composite.c (composition_reseat_it): Handle the case that a
3776 grapheme cluster is not covered by a single font (Bug#12352).
3777
3778 2012-09-21 Chong Yidong <cyd@gnu.org>
3779
3780 * image.c (define_image_type): Avoid adding duplicate types to
3781 image_types (Bug#12463). Suggested by Jörg Walter.
3782
3783 2012-09-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3784
3785 * unexmacosx.c: Define LC_DATA_IN_CODE if not defined.
3786 (print_load_command_name): Add case LC_DATA_IN_CODE.
3787 (dump_it) [LC_DATA_IN_CODE]: Call copy_linkedit_data.
3788
3789 2012-09-21 Glenn Morris <rgm@gnu.org>
3790
3791 * eval.c (Frun_hook_with_args_until_success)
3792 (Frun_hook_with_args_until_failure): Doc fixes. (Bug#12393)
3793
3794 2012-09-21 Andreas Schwab <schwab@linux-m68k.org>
3795
3796 * fileio.c (Ffile_selinux_context): Only call freecon when
3797 lgetfilecon succeeded.
3798 (Fset_file_selinux_context): Likewise. (Bug#12444)
3799
3800 2012-09-21 Eli Zaretskii <eliz@gnu.org>
3801
3802 * xdisp.c (try_window_reusing_current_matrix): Under bidi
3803 reordering, locate the cursor by calling set_cursor_from_row; if
3804 that fails, clear the desired glyph matrix before returning a
3805 failure indication to the caller. Fixes leaving garbled display
3806 when fast scrolling with a down-key. (Bug#12403)
3807 (compute_stop_pos_backwards): Fix a typo that caused crashes while
3808 scrolling through multibyte text.
3809
3810 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
3811
3812 * alloc.c (mark_object) <PVEC_WINDOW>: Mark prev/next_buffers *after*
3813 calling mark_vectorlike since that's the one that marks the window.
3814 (mark_discard_killed_buffers): Mark the final cdr.
3815 * window.h (struct window): Move prev/next_buffers to the
3816 non-standard fields.
3817 * window.c (make_window): Initialize prev/next_buffers manually.
3818
3819 2012-09-20 Paul Eggert <eggert@cs.ucla.edu>
3820
3821 Omit unused arg EXPECTED from socket hooks.
3822 * keyboard.c (gobble_input, read_avail_input, tty_read_avail_input):
3823 * nsterm.m (ns_term_init):
3824 * termhooks.h (struct terminal.read_socket_hook):
3825 * w32inevt.c (w32_console_read_socket):
3826 * w32term.c (w32_read_socket):
3827 * xterm.c (XTread_socket):
3828 Omit unused arg EXPECTED. All callers changed.
3829 (store_user_signal_events): Return void, not int, since callers no
3830 longer care about the return value. All uses changed.
3831
3832 2012-09-20 Juanma Barranquero <lekktu@gmail.com>
3833
3834 * w32gui.h (XParseGeometry): Do not declare.
3835
3836 2012-09-19 Paul Eggert <eggert@cs.ucla.edu>
3837
3838 * w32inevt.c (w32_console_read_socket): Return -1 on failure, not 0.
3839 Ignore 'expected'. See Eli Zaretskii in
3840 <http://bugs.gnu.org/12471#8> (last line).
3841
3842 * frame.c (read_integer): Remove. All uses replaced by strtol/strtoul.
3843 (XParseGeometry): Now static. Substitute extremal values for
3844 values that are out of range.
3845
3846 2012-09-19 Jan Djärv <jan.h.d@swipnet.se>
3847
3848 * w32xfns.c (read_integer, XParseGeometry): Move to frame.c.
3849
3850 * nsfns.m (XParseGeometry): Remove.
3851 (Fx_create_frame): Call x_set_offset to correctly interpret
3852 top_pos in geometry.
3853
3854 * frame.c (read_integer, XParseGeometry): Move from w32xfns.c.
3855 (Fx_parse_geometry): If there is a space in string, call
3856 Qns_parse_geometry, otherwise do as on other terms (Bug#12368).
3857
3858 2012-09-17 Eli Zaretskii <eliz@gnu.org>
3859
3860 * search.c (scan_buffer): Use character positions in calls to
3861 region_cache_forward and region_cache_backward, not byte
3862 positions. (Bug#12196)
3863
3864 * w32term.c (w32_read_socket): Set pending_signals to 1, like
3865 xterm.c does. Reported by Daniel Colascione <dancol@dancol.org>.
3866
3867 * ralloc.c (r_alloc_init) [!SYSTEM_MALLOC]: Initialize
3868 __malloc_extra_blocks to 32 instead of 64, like alloc.c did in
3869 emacs_blocked_malloc, now deleted.
3870
3871 2012-09-17 Paul Eggert <eggert@cs.ucla.edu>
3872
3873 Remove no-longer-needed Solaris 2.4 vfork bug workaround.
3874 The workaround was for improving performance on Solaris 2.4, but
3875 is getting in the way now. Emacs will still work if someone is
3876 still running Solaris 2.4 in a museum somewhere; Sun dropped
3877 support for Solaris 2.4 in 2003.
3878 * callproc.c (Fcall_process) [HAVE_WORKING_VFORK]:
3879 * process.c (create_process) [HAVE_WORKING_VFORK]:
3880 Omit now-unnecessary workaround for the Solaris 2.4 vfork bug,
3881 since Emacs no longer uses vfork on that platform.
3882
3883 2012-09-17 Glenn Morris <rgm@gnu.org>
3884
3885 * emacs.c: Use COPYRIGHT.
3886
3887 2012-09-16 Paul Eggert <eggert@cs.ucla.edu>
3888
3889 Remove configure's --without-sync-input option (Bug#12450).
3890 When auditing signal-handling in preparation for cleaning it up,
3891 I found that SYNC_INPUT has race conditions and would be a real
3892 pain to fix. Since it's an undocumented and deprecated
3893 configure-time option, now seems like a good time to remove it.
3894 Also see <http://bugs.gnu.org/11080#16>.
3895 * alloc.c (_bytes_used, __malloc_extra_blocks, _malloc_internal)
3896 (_free_internal) [!DOUG_LEA_MALLOC]: Remove decls.
3897 (alloc_mutex) [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
3898 (malloc_hysteresis):
3899 (check_depth) [XMALLOC_OVERRUN_CHECK]:
3900 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT):
3901 (__malloc_hook, __realloc_hook, __free_hook, BYTES_USED)
3902 (dont_register_blocks, bytes_used_when_reconsidered)
3903 (bytes_used_when_full, emacs_blocked_free, emacs_blocked_malloc)
3904 (emacs_blocked_realloc, reset_malloc_hooks, uninterrupt_malloc):
3905 [!SYSTEM_MALLOC && !SYNC_INPUT]:
3906 Remove. All uses removed.
3907 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): Use a different
3908 implementation, one that depends on whether the new macro
3909 XMALLOC_BLOCK_INPUT_CHECK is defined, not on whether SYNC_INPUT
3910 is defined.
3911 * atimer.c (run_timers, handle_alarm_signal):
3912 * keyboard.c (pending_signal, poll_for_input_1, poll_for_input)
3913 (handle_async_input, process_pending_signals)
3914 (handle_input_available_signal, init_keyboard):
3915 * nsterm.m (ns_read_socket):
3916 * process.c (wait_reading_process_output):
3917 * regex.c (immediate_quit, IMMEDIATE_QUIT_CHECK):
3918 * sysdep.c (emacs_sigaction_init) [SA_RESTART]:
3919 (emacs_write):
3920 * xterm.c (XTread_socket):
3921 Assume SYNC_INPUT.
3922 * conf_post.h (SA_RESTART) [IRIX6_5]: Do not #undef.
3923 * eval.c (handling_signal): Remove. All uses removed.
3924 * lisp.h (ELSE_PENDING_SIGNALS): Remove.
3925 All uses replaced with the SYNC_INPUT version.
3926 (reset_malloc_hooks, uninterrupt_malloc, handling_signal):
3927 Remove decls.
3928 * sysdep.c, syssignal.h (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
3929 Now static.
3930
3931 * font.c (Ffont_shape_gstring): Remove unused local.
3932
3933 2012-09-16 Glenn Morris <rgm@gnu.org>
3934
3935 * Makefile.in (clean): No longer run nextstep's clean.
3936
3937 * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Remove variables.
3938 (ns_frag): Remove.
3939 (ns-app): Move here from ns.mk, and simplify.
3940 (clean): Simplify nextstep entry.
3941 * ns.mk: Remove file.
3942
3943 2012-09-17 Kenichi Handa <handa@gnu.org>
3944
3945 * font.c (Ffont_shape_gstring): Fix previous change; GLYPHs may
3946 not covert the last few charactes.
3947
3948 2012-09-16 Kenichi Handa <handa@gnu.org>
3949
3950 * font.c (Ffont_shape_gstring): Don't adjust grapheme cluster
3951 here, but just check the validity of glyphs in the glyph-string.
3952
3953 2012-09-16 Martin Rudalics <rudalics@gmx.at>
3954
3955 * window.c (Fwindow_parameter, Fset_window_parameter):
3956 Accept any window as argument (Bug#12452).
3957
3958 2012-09-16 Jan Djärv <jan.h.d@swipnet.se>
3959
3960 * nsfns.m (Fx_open_connection): Move initialization of ns_*_types
3961 to ns_term_init to avoid memory leak.
3962
3963 * nsterm.m (ns_update_begin): Initialize bp after lcokFocus, use
3964 explicit retain/release.
3965 (ns_term_init): Only allow one display. Initialize outerpool and
3966 ns_*_types.
3967
3968 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
3969
3970 Port _setjmp fix to POSIXish hosts as well as Microsoft.
3971 * image.c (_setjmp) [!HAVE__SETJMP]: Restore definition, as
3972 it's needed on POSIXish hosts that lack _setjmp. Attempt to solve
3973 the Microsoft problem in a different way, by altering ../nt/config.nt.
3974
3975 2012-09-15 Eli Zaretskii <eliz@gnu.org>
3976
3977 * w32xfns.c:
3978 * w32uniscribe.c:
3979 * w32term.c:
3980 * w32select.c:
3981 * w32reg.c:
3982 * w32proc.c:
3983 * w32menu.c:
3984 * w32inevt.c:
3985 * w32heap.c:
3986 * w32font.c:
3987 * w32fns.c:
3988 * w32console.c:
3989 * w32.c:
3990 * w16select.c: Remove inclusion of setjmp.h, as it is now included
3991 by lisp.h. This completes removal of setjmp.h inclusion
3992 erroneously announced in the previous commit. (Bug#12446)
3993
3994 * lisp.h [!HAVE__SETJMP, !HAVE_SIGSETJMP]: Make the commentary
3995 more accurate.
3996
3997 * image.c (_setjmp) [!HAVE__SETJMP]: Define only if 'setjmp' is
3998 not defined as a macro. The latter happens on MS-Windows.
3999 (Bug#12446)
4000
4001 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
4002
4003 Port better to POSIX hosts lacking _setjmp (Bug#12446).
4004 * lisp.h: Include <setjmp.h> here, since we use its symbols here.
4005 Some instances of '#include <setjmp.h>' removed, if the
4006 only reason for the instance was because "lisp.h" was included.
4007 (sys_jmp_buf, sys_setjmp, sys_longjmp): New symbols.
4008 Unless otherwise specified, replace all uses of jmp_buf, _setjmp,
4009 and _longjmp with the new symbols. Emacs already uses _setjmp if
4010 available, so this change affects only POSIXish hosts that have
4011 sigsetjmp but not _setjmp, such as some versions of Solaris and
4012 Unixware. (Also, POSIX-2008 marks _setjmp as obsolescent.)
4013 * image.c (_setjmp, _longjmp) [HAVE_PNG && !HAVE__SETJMP]: New macros.
4014 (png_load_body) [HAVE_PNG]:
4015 (PNG_LONGJMP) [HAVE_PNG && PNG_LIBPNG_VER < 10500]:
4016 (PNG_JMPBUF) [HAVE_PNG && PNG_LIBPNG_VER >= 10500]:
4017 Use _setjmp and _longjmp rather than sys_setjmp and sys_longjmp,
4018 since PNG requires jmp_buf. This is the only exception to the
4019 general rule that we now use sys_setjmp and sys_longjmp.
4020 This exception is OK since this code does not change the signal
4021 mask or longjmp out of a signal handler.
4022
4023 2012-09-14 Paul Eggert <eggert@cs.ucla.edu>
4024
4025 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
4026 Include "syssignal.h", for 'main_thread'.
4027
4028 2012-09-14 Dmitry Antipov <dmantipov@yandex.ru>
4029
4030 Avoid out-of-range marker position (Bug#12426).
4031 * insdel.c (replace_range, replace_range_2):
4032 Adjust markers before overlays, as suggested by comments.
4033 (insert_1_both, insert_from_buffer_1, adjust_after_replace):
4034 Remove redundant check before calling offset_intervals.
4035
4036 2012-09-14 Martin Rudalics <rudalics@gmx.at>
4037
4038 * xdisp.c (Fformat_mode_line): Unconditionally save/restore
4039 current buffer (Bug#12387).
4040
4041 2012-09-14 Juanma Barranquero <lekktu@gmail.com>
4042
4043 * makefile.w32-in ($(BLD)/alloc.$(O)): Update dependencies.
4044
4045 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
4046
4047 Use a more backwards-compatible timer format (Bug#12430).
4048 * keyboard.c (decode_timer): Get PSECS from the 8th (origin-0)
4049 vector element, not from the 4th, since PSECS is now at the end.
4050 (Fcurrent_idle_time): Doc fix.
4051
4052 2012-09-13 Dmitry Antipov <dmantipov@yandex.ru>
4053
4054 Function to mark objects and remove killed buffers at once.
4055 * alloc.c (discard_killed_buffers): Rename to ...
4056 (mark_discard_killed buffers) ... new name. Add marking
4057 of remaining objects. Fix comment. Adjust users.
4058 (mark_object): Do not touch frame buffer lists here.
4059 * frame.c (delete_frame): Reset frame buffer lists here.
4060
4061 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
4062
4063 Better workaround for GNOME bug when --enable-gcc-warnings.
4064 * emacsgtkfixed.c (G_STATIC_ASSERT): Remove, undoing last change.
4065 Instead, disable -Wunused-local-typedefs. See Dmitry Antipov in
4066 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00335.html>.
4067
4068 Simplify SIGIO usage (Bug#12408).
4069 The code that dealt with SIGIO was crufty and confusing, e.g., it
4070 played tricks like "#undef SIGIO" but these tricks were not used
4071 consistently. Simplify mostly by not #undeffing standard symbols,
4072 e.g., use "defined USABLE_SIGIO" (our symbol, which we can define
4073 or not as we please) rather than "defined SIGIO" (standard symbol
4074 that we probably shouldn't #undef).
4075 * conf_post.h [USG5_4]: Do not include <sys/wait.h> here.
4076 Modules that need it can include it.
4077 [USG5_4 && emacs]: Likewise, do not include the streams stuff here.
4078 * dispextern.h (ignore_sigio): New decl.
4079 * emacs.c (shut_down_emacs): Invoke unrequest_sigio
4080 unconditionally, since it's now a no-op if !USABLE_SIGIO.
4081 * emacs.c (shut_down_emacs):
4082 * keyboard.c (kbd_buffer_store_event_hold):
4083 Use ignore_sigio rather than invoking 'signal' directly.
4084 * keyboard.c (USABLE_FIONREAD && USG5_4): Include <sys/filio.h>,
4085 for FIONREAD.
4086 (FIONREAD, SIGIO): Do not #undef.
4087 (tty_read_avail_input): Use #error rather than a syntax error.
4088 * process.c [USG5_4]: Include <sys/stream.h> and <sys/stropts.h>,
4089 for I_PIPE, used by SETUP_SLAVE_PTY.
4090 (DATAGRAM_SOCKETS): Simplify defn, based on USABLE_FIONREAD.
4091 * sysdep.c (croak): Remove; no longer needed. This bit of
4092 temporary code, with Fred N. Fish's comment that it's temporary,
4093 has been in Emacs since at least 1992!
4094 (init_sigio, reset_sigio, request_sigio, unrequest_sigio):
4095 Arrange for them to be no-ops in all cases when ! USABLE_SIGIO.
4096 * syssignal.h (croak): Remove decl.
4097 (SIGIO, SIGPOO, SIGAIO, SIGPTY): Do not #undef; that's too fragile.
4098 * systty.h [!NO_TERMIO]: Do not include <termio.h>; no longer needed
4099 now that we're termios-only.
4100 (FIONREAD, ASYNC) [BROKEN_FIONREAD]: Do not #undef.
4101 * term.c (dissociate_if_controlling_tty): Use #error rather than
4102 a run-time error.
4103
4104 Work around GCC and GNOME bugs when --enable-gcc-warnings.
4105 * emacsgtkfixed.c (G_STATIC_ASSERT): Redefine to use 'verify',
4106 to work around GNOME bug 683906.
4107 * image.c (jpeg_load_body) [HAVE_JPEG && lint]: Pacify gcc -Wclobber.
4108 (struct my_jpeg_error_mgr) [HAVE_JPEG && lint]: New member fp.
4109 This works around GCC bug 54561.
4110
4111 2012-09-12 Paul Eggert <eggert@cs.ucla.edu>
4112
4113 More fixes for 'volatile' and setjmp/longjmp.
4114 * eval.c (Fdefvar, Fcondition_case): Remove unnecessary 'volatile's.
4115 * image.c (struct png_load_context) [HAVE_PNG]: New type.
4116 (png_load_body) [HAVE_PNG]:
4117 (jpeg_load_body) [HAVE_JPEG]:
4118 New function, with most of the old parent function's body.
4119 (png_load) [HAVE_PNG]:
4120 (jpeg_load) [HAVE_JPEG]:
4121 Invoke the new function, to avoid longjmp munging our locals.
4122 (struct my_jpeg_error_mgr) [HAVE_JPEG]: New members cinfo, failure_code.
4123 (my_error_exit) [HAVE_JPEG]: Don't trust 'setjmp' to return 2 when
4124 longjmp is passed 2, as the C standard doesn't guarantee this.
4125 Instead, store the failure code into mgr->failure_code.
4126
4127 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
4128
4129 * keyboard.c (read_char, requeued_events_pending_p, Finput_pending_p)
4130 (Fdiscard_input, quit_throw_to_read_char, init_keyboard)
4131 (syms_of_keyboard): Remove support for unread-command-char.
4132
4133 2012-09-12 Eli Zaretskii <eliz@gnu.org>
4134
4135 * w32proc.c (sys_kill): If PID is our process ID and the signal is
4136 SIGABRT, call emacs_abort. Avoids silently exiting upon assertion
4137 violation. (Bug#12426)
4138
4139 2012-09-12 Paul Eggert <eggert@cs.ucla.edu>
4140
4141 * image.c (jpeg_memory_src): Don't assume string len fits in unsigned.
4142
4143 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
4144
4145 * eval.c: Add `inhibit-debugger'.
4146 (Qinhibit_debugger): New symbol.
4147 (call_debugger): Bind it instead of Qdebug_on_error.
4148 (maybe_call_debugger): Test Vinhibit_debugger.
4149 (syms_of_eval): Define inhibit-debugger.
4150 * xdisp.c (set_message): Don't bind Qinhibit_debug_on_message.
4151 (syms_of_xdisp): Remove inhibit-debug-on-message.
4152
4153 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
4154
4155 Avoid _setjmp/_longjmp problems with local nonvolatile variables.
4156 If a nonvolatile local variable is written before a _longjmp to
4157 the frame containing the variable, and is read after the _longjmp,
4158 the value read is indeterminate. Some local variables of type
4159 'struct handler' and 'struct catchtag' are used in this way, so
4160 mark each of their slots as volatile if the slot can be set before
4161 _longjmp and read afterwards.
4162 * lisp.h (struct handler): var and chosen_clause are now volatile.
4163 (struct catchtag): val, next, and pdlcount are now volatile.
4164
4165 * bidi.c (bidi_push_it, bidi_pop_it):
4166 * fns.c (copy_hash_table):
4167 * image.c (define_image_type):
4168 * keyboard.c (kbd_buffer_store_event_hold):
4169 * process.c (Fprocess_send_eof):
4170 * xfaces.c (x_create_gc) [HAVE_NS]:
4171 * xgselect.c (xg_select):
4172 Prefer assignment to memcpy when either will do.
4173
4174 * alloc.c (discard_killed_buffers): Tune and simplify a bit.
4175 Use pointer-to-a-pointer to simplify and avoid a NILP check each
4176 time an item is removed. No need to mark this function 'inline';
4177 the compiler knows better than we do.
4178
4179 2012-09-11 Jan Djärv <jan.h.d@swipnet.se>
4180
4181 * nsterm.m (ns_judge_scroll_bars): Pass NO to updateFrameSize.
4182 (updateFrameSize:): Add delay parameter to updateFrameSize, send it
4183 to change_frame_size (Bug#12388).
4184 (windowDidResize:): Pass YES to updateFrameSize.
4185
4186 * nsterm.h: Add delay parameter to updateFrameSize.
4187
4188 2012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
4189
4190 Discard killed buffers from deleted window and frame objects.
4191 This reduces an amount of references to killed buffers and
4192 helps GC to reclaim them faster.
4193 * alloc.c (discard_killed_buffers): New function.
4194 (mark_object): Use it for deleted windows and frames.
4195 (mark_object): If symbol's value is set up for a killed buffer
4196 or deleted frame, restore its global binding.
4197 * data.c (swap_in_global_binding): Add GC notice.
4198 (swap_in_symval_forwarding): Use convenient set_blv_where.
4199 * window.c (wset_next_buffers, wset_prev_buffers): Move ...
4200 * window.h: ... to here.
4201
4202 2012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
4203
4204 Convenient macro to check whether the buffer is live.
4205 * buffer.h (BUFFER_LIVE_P): New macro.
4206 * alloc.c, buffer.c, editfns.c, insdel.c, lread.c, marker.c:
4207 * minibuf.c, print.c, process.c, window.c, xdisp.c: Use it.
4208
4209 2012-09-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4210
4211 * xdisp.c (right_overwritten, right_overwriting): Also handle gstring
4212 composition cases (Bug#12364).
4213
4214 * xterm.c (x_draw_glyph_string): Avoid overwriting inverted left
4215 overhang of succeeding glyphs overlapping box cursor.
4216
4217 * w32term.c (x_draw_glyph_string): Likewise.
4218
4219 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
4220
4221 Simplify, document, and port floating-point (Bug#12381).
4222 The porting part of this patch fixes bugs on non-IEEE platforms
4223 with frexp, ldexp, logb.
4224 * data.c, lisp.h (Qdomain_error, Qsingularity_error, Qunderflow_error):
4225 Now static.
4226 * floatfns.c: Simplify discussion of functions that Emacs doesn't
4227 support, by removing commented-out code and briefly listing the
4228 C89 functions excluded. The commented-out stuff was confusing
4229 maintenance, e.g., we thought we needed cbrt but it was commented out.
4230 (logb): Remove decl; no longer needed.
4231 (isfinite): New macro, if not already supplied.
4232 (isnan): Don't replace any existing macro.
4233 (Ffrexp, Fldexp): Define even if !HAVE_COPYSIGN, as frexp and ldexp
4234 are present on all C89 platforms.
4235 (Ffrexp): Do not special-case zero, as frexp does the right thing
4236 for that case.
4237 (Flogb): Do not use logb, as it doesn't have the desired meaning
4238 on hosts that use non-base-2 floating point. Instead, stick with
4239 frexp, which is C89 anyway. Do not pass an infinity or a NaN to
4240 frexp, to avoid getting an unspecified result.
4241
4242 * xdisp.c (Qinhibit_debug_on_message): Now static.
4243
4244 2012-09-10 Jan Djärv <jan.h.d@swipnet.se>
4245
4246 * nsterm.m (ns_update_begin): Set clip path to whole view by using
4247 NSBezierPath (Bug#12131).
4248
4249 2012-09-10 Chong Yidong <cyd@gnu.org>
4250
4251 * fns.c (Fdelq, Fdelete): Doc fix.
4252
4253 2012-09-10 Paul Eggert <eggert@cs.ucla.edu>
4254
4255 * lisp.h (XSETINT, XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL)
4256 (XSETFLOAT, XSETMISC): Parenthesize macro bodies.
4257
4258 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
4259
4260 * lisp.h (make_lisp_ptr): New macro to replace XSET.
4261 (XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL, XSETFLOAT, XSETMISC):
4262 Use it.
4263
4264 2012-09-09 Eli Zaretskii <eliz@gnu.org>
4265
4266 * fringe.c (draw_fringe_bitmap_1): Don't reduce the width of the
4267 left fringe if the window has a left margin. This avoids leaving
4268 traces of the cursor because its leftmost pixel is not drawn over.
4269
4270 * dispnew.c (update_window_line): When the left margin area of a
4271 screen line is updated, set the redraw_fringe_bitmaps_p flag of
4272 that screen line. (Bug#12277)
4273
4274 2012-09-09 Paul Eggert <eggert@cs.ucla.edu>
4275
4276 Assume C89 or later for math functions (Bug#12381).
4277 This simplifies the code, and makes it a bit smaller and faster,
4278 and (most important) makes it easier to clean up signal handling
4279 since we can stop worring about floating-point exceptions in
4280 library code. That was a problem before C89, but the problem
4281 went away many years ago on all practical Emacs targets.
4282 * data.c, image.c, lread.c, print.c:
4283 Don't include <math.h>; no longer needed.
4284 * data.c, floatfns.c (IEEE_FLOATING_POINT): Don't worry that it
4285 might be autoconfigured, as that never happens.
4286 * data.c (fmod):
4287 * doprnt.c (DBL_MAX_10_EXP):
4288 * print.c (DBL_DIG):
4289 Remove. C89 or later always defines these.
4290 * floatfns.c (HAVE_MATHERR, FLOAT_CHECK_ERRNO, FLOAT_CHECK_DOMAIN)
4291 (in_float, float_error_arg, float_error_arg2, float_error_fn_name)
4292 (arith_error, domain_error, domain_error2):
4293 Remove all this pre-C89 cruft. Do not include <errno.h> as that's
4294 no longer needed -- we simply return what C returns. All uses removed.
4295 (IN_FLOAT, IN_FLOAT2): Remove. All uses replaced with
4296 the wrapped code.
4297 (FLOAT_TO_INT, FLOAT_TO_INT2, range_error, range_error2):
4298 Remove. All uses expanded, as these macros are no longer used
4299 more than once and are now more trouble than they're worth.
4300 (Ftan): Use tan, not sin / cos.
4301 (Flogb): Assume C89 frexp.
4302 (fmod_float): Assume C89 fmod.
4303 (matherr) [HAVE_MATHERR]: Remove; no longer needed.
4304 (init_floatfns): Remove. All uses removed.
4305
4306 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
4307
4308 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Take back
4309 compositeToPoint for OSX < 10.6 (Bug#12390).
4310
4311 2012-09-08 Paul Eggert <eggert@cs.ucla.edu>
4312
4313 * floatfns.c (Ftan): Use tan (x), not (sin (x) / cos (x)).
4314 This produces more-accurate results.
4315
4316 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
4317
4318 * nsterm.m (updateFrameSize): Call setFrame: on the view when size
4319 changes (Bug#12088).
4320
4321 2012-09-08 Chong Yidong <cyd@gnu.org>
4322
4323 * syntax.c (Fstring_to_syntax): Doc fix.
4324
4325 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
4326
4327 * nsterm.m (ns_clip_to_row): Remove code that deals with drawing fringe
4328 in the internal border.
4329 (x_set_window_size): Remove static variables and their usage.
4330 (ns_redraw_scroll_bars): Fix NSTRACE arg.
4331 (ns_after_update_window_line, ns_draw_fringe_bitmap):
4332 Remove fringe/internal border adjustment (Bug#11052).
4333 (ns_draw_fringe_bitmap): Make code more like other terms (xterm.c).
4334 (ns_draw_window_cursor): Remove fringe/internal border adjustment.
4335 (ns_fix_rect_ibw): Remove.
4336 (ns_get_glyph_string_clip_rect): Remove call to ns_fix_rect_ibw.
4337 (ns_dumpglyphs_box_or_relief): Ditto.
4338 (ns_maybe_dumpglyphs_background): Remove fringe/internal border
4339 adjustment.
4340 (ns_dumpglyphs_image): Ditto.
4341 (ns_dumpglyphs_stretch): Fix coding style. Remove fringe/internal
4342 border adjustment.
4343 (ns_set_vertical_scroll_bar): Remove variables barOnVeryLeft/Right and
4344 their usage. Add fringe_extended_p and its use as in other terms.
4345 (ns_judge_scroll_bars): Code style fix. Call updateFrameSize if
4346 scroll bar was removed.
4347 (updateFrameSize): New function.
4348 (windowDidResize): Move code to updateFrameSize and call it.
4349
4350 * nsterm.h (EmacsView): Add updateFrameSize.
4351
4352 2012-09-07 Chong Yidong <cyd@gnu.org>
4353
4354 * textprop.c (Fget_text_property): Minor doc fix (Bug#12323).
4355
4356 * data.c (Flocal_variable_if_set_p): Doc fix (Bug#10713).
4357
4358 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
4359
4360 More signal-handler cleanup (Bug#12327).
4361 * emacs.c (main): Convert three 'signal' calls to 'sigaction' calls.
4362 Problem introduced when merging patches. Noted by Eli Zaretskii in
4363 <http://bugs.gnu.org/12327#67>.
4364 * floatfns.c: Comment fix.
4365 * lisp.h (force_auto_save_soon): Declare regardless of SIGDANGER.
4366 SIGDANGER might not be in scope so "#ifdef SIGDANGER" is not right,
4367 and anyway the declaration is harmless even if SIGDANGER is not defined.
4368 * syssignal.h (SIGIO): Also #undef if (! defined FIONREAD ||
4369 defined BROKEN_FIONREAD). systty.h formerly did this, but other
4370 source files not surprisingly expected syssignal.h to define, or
4371 not define, SIGIO, and it's cleaner to do it that way, for consistency.
4372 Include <sys/ioctl.h>, for FIONREAD.
4373 * systty.h (SIGIO): Do not #undef here; it's now syssignal.h's job.
4374 This eliminates a problem whereby other files mysteriously had
4375 to include "syssignal.h" before including "systty.h" if they
4376 wanted to use "#ifdef SIGIO".
4377
4378 2012-09-07 Eli Zaretskii <eliz@gnu.org>
4379
4380 * w32proc.c (sigaction): New function, emulates Posix 'sigaction'.
4381
4382 * w32.c (sigemptyset): Empty the set.
4383 (sigsetmask, sigmask, sigblock, sigunblock): Remove unused functions.
4384
4385 * alloc.c [ENABLE_CHECKING]: Include signal.h, since we need SIGABRT.
4386
4387 2012-09-07 Dmitry Antipov <dmantipov@yandex.ru>
4388
4389 * alloc.c (mark_buffer): Revert unsafe marking optimization.
4390 (mark_object): Likewise for frame objects.
4391
4392 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
4393
4394 * syssignal.h (handle_on_main_thread): Always declare,
4395 even if FORWARD_SIGNAL_TO_MAIN_THREAD is not defined.
4396 This ports to platforms without HAVE_PTHREAD.
4397
4398 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
4399
4400 Signal-handler cleanup (Bug#12327).
4401 Emacs's signal handlers were written in the old 4.2BSD style with
4402 sigblock and sigmask and so forth, and this led to some
4403 inefficiencies and confusion. Rewrite these to use
4404 pthread_sigmask etc. without copying signal sets around. Also,
4405 get rid of the confusing macros 'SIGNAL_THREAD_CHECK' and
4406 'signal', and instead use functions that do not attempt to take
4407 over the system name space. This patch causes Emacs's text
4408 segment to shrink by 0.7% on my platform, Fedora 17 x86-64.
4409 * alloc.c, emacsgtkfixed.c, nsfns.m, widget.c, xmenu.c:
4410 Do not include <signal.h> or "syssignal.h", as these
4411 modules do not use signals.
4412 * atimer.c, callproc.c, data.c, dispnew.c, emacs.c, floatfns.c:
4413 * gtkutil.c, keyboard.c, process.c, sound.c, sysdep.c, term.c, xterm.c:
4414 Do not include <signal.h>, as "syssignal.h" does that for us now.
4415 * atimer.c (sigmask_atimers): New function.
4416 (block_atimers, unblock_atimers): New functions,
4417 replacing the old macros BLOCK_ATIMERS and UNBLOCK_ATIMERS.
4418 All uses replaced.
4419 * conf_post.h [SIGNAL_H_AHB]: Do not include <signal.h>;
4420 no longer needed here.
4421 * emacs.c (main): Inspect existing signal handler with sigaction,
4422 so that there's no need to block and unblock SIGHUP.
4423 * sysdep.c (struct save_signal): New member 'action', replacing
4424 old member 'handler'.
4425 (save_signal_handlers, restore_signal_handlers):
4426 Use sigaction instead of 'signal' to save and restore.
4427 (get_set_sighandler, set_sighandler) [!WINDOWSNT]:
4428 New function. All users of 'signal' modified to use set_sighandler
4429 if they're writeonly, and to use sys_signal if they're read+write.
4430 (emacs_sigaction_init, forwarded_signal): New functions.
4431 (sys_signal): Remove. All uses replaced by calls to sigaction
4432 and emacs_sigaction_init, or by direct calls to 'signal'.
4433 (sys_sigmask) [!__GNUC__]: Remove; no longer needed.
4434 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove;
4435 all uses replaced by pthread_sigmask etc. calls.
4436 * syssignal.h: Include <signal.h>.
4437 (emacs_sigaction_init, forwarded_signal): New decls.
4438 (SIGMASKTYPE): Remove. All uses replaced by its definiens, sigset_t.
4439 (SIGEMPTYMASK): Remove; all uses replaced by its definiens, empty_mask.
4440 (sigmask, sys_sigmask): Remove; no longer needed.
4441 (sigpause): Remove. All uses replaced by its definiens, sigsuspend.
4442 (sigblock, sigunblock, sigfree):
4443 (sigsetmask) [!defined sigsetmask]:
4444 Remove. All uses replaced by pthread_sigmask.
4445 (signal): Remove. Its remaining uses (with SIG_DFL and SIG_IGN)
4446 no longer need to be replaced, and its typical old uses
4447 are now done via emacs_sigaction_init and sigaction.
4448 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove decls.
4449 (sys_sigdel): Remove; unused.
4450 (NSIG): Remove a FIXME; the code's fine. Remove an unnecessary ifdef.
4451
4452 2012-09-06 Eli Zaretskii <eliz@gnu.org>
4453
4454 * process.c (CAN_HANDLE_MULTIPLE_CHILDREN): Fix a typo that broke
4455 SIGCHLD handling on systems that don't have WNOHANG. (Bug#12327)
4456
4457 2012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
4458
4459 Explicitly mark buffer_defaults and buffer_local_symbols.
4460 * alloc.c (Fgarbage_collect): Mark buffer_defaults and
4461 mark_local_symbols here.
4462 (mark_object): If GC_CHECK_MARKED_OBJECTS, simplify checking
4463 since special buffers aren't marked here any more.
4464 (allocate_buffer): Chain new buffer with all_buffers here...
4465 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): ...and
4466 not here.
4467 (Vbuffer_defaults, Vbuffer_local_symbols): Remove.
4468 (syms_of_buffer): Remove staticpro of the above.
4469 (init_buffer_once): Set names for buffer_defaults and
4470 buffer_local_symbols.
4471
4472 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
4473
4474 Use bool for booleans in font-related modules.
4475 * font.c (font_intern_prop, font_style_to_value)
4476 (font_style_symbolic, font_parse_xlfd, font_parse_fcname)
4477 (generate_otf_features, font_check_otf_features, font_check_otf)
4478 (font_match_p, font_list_entities, font_at):
4479 * fontset.c (fontset_id_valid_p, reorder_font_vector
4480 (fontset_find_font, Fset_fontset_font)
4481 (face_suitable_for_char_p) [0]:
4482 * ftfont.c (fc_initialized, ftfont_get_open_type_spec)
4483 (ftfont_open, ftfont_text_extents, ftfont_check_otf):
4484 (m17n_flt_initialized, ftfont_shape_by_flt):
4485 * ftxfont.c (ftxfont_draw_bitmap, ftxfont_draw):
4486 * nsfont.m (nsfont_draw):
4487 * w32font.c (w32font_draw):
4488 * w32term.c (x_draw_glyphless_glyph_string_foreground):
4489 Use bool for booleans.
4490 * font.h: Adjust to above API changes.
4491 (struct font, struct font_driver, struct font_driver_list):
4492 Use bool for booleans.
4493 (struct font): Remove useless member encoding_type.
4494 All users removed.
4495 * fontset.c, xftfont.c: Omit unnecessary static decls.
4496
4497 2012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
4498
4499 * alloc.c (mark_object): Revert window marking code
4500 since it's unsafe for the Fset_window_configuration.
4501
4502 2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
4503
4504 Fix race conditions with signal handlers and errno (Bug#12327).
4505 Be more systematic about preserving errno whenever a signal
4506 handler returns, even if it's not in the main thread. Do this by
4507 renaming signal handlers to distinguish between signal delivery
4508 and signal handling. All uses changed.
4509 * atimer.c (deliver_alarm_signal): Rename from alarm_signal_handler.
4510 * data.c (deliver_arith_signal): Rename from arith_error.
4511 * dispnew.c (deliver_window_change_signal): Rename from
4512 window_change_signal.
4513 * emacs.c (deliver_error_signal): Rename from fatal_error_signal.
4514 (deliver_danger_signal) [SIGDANGER]: Rename from memory_warning_signal.
4515 * keyboard.c (deliver_input_available_signal): Rename from
4516 input_available_signal.
4517 (deliver_user_signal): Rename from handle_user_signal.
4518 (deliver_interrupt_signal): Rename from interrupt_signal.
4519 * process.c (deliver_pipe_signal): Rename from send_process_trap.
4520 (deliver_child_signal): Rename from sigchld_handler.
4521 * atimer.c (handle_alarm_signal):
4522 * data.c (handle_arith_signal):
4523 * dispnew.c (handle_window_change_signal):
4524 * emacs.c (handle_fatal_signal, handle_danger_signal):
4525 * keyboard.c (handle_input_available_signal):
4526 * keyboard.c (handle_user_signal, handle_interrupt_signal):
4527 * process.c (handle_pipe_signal, handle_child_signal):
4528 New functions, with the actual signal-handling code taken from the
4529 original respective signal handlers, sans the sporadic attempts to
4530 preserve errno, since that's now done by handle_on_main_thread.
4531 * atimer.c (alarm_signal_handler): Remove unnecessary decl.
4532 * emacs.c, floatfns.c, lisp.h: Remove unused FLOAT_CATCH_SIGKILL cruft.
4533 * emacs.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
4534 Move to sysdep.c.
4535 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
4536 Move initialization of main_thread to sysdep.c's init_signals.
4537 * process.c (waitpid) [!WNOHANG]: #define to wait; that's good enough for
4538 our usage, and simplifies the mainline code.
4539 (record_child_status_change): New static function, as a helper
4540 for handle_child_signal, and with most of the old child handler's
4541 contents.
4542 (CAN_HANDLE_MULTIPLE_CHILDREN): New constant.
4543 (handle_child_signal): Use the above.
4544 * sysdep.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
4545 Moved here from emacs.c.
4546 (init_signals) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it;
4547 code moved here from emacs.c's main function.
4548 * sysdep.c, syssignal.h (handle_on_main_thread): New function,
4549 replacing the old SIGNAL_THREAD_CHECK. All uses changed.
4550 This lets callers save and restore errno properly.
4551
4552 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
4553
4554 Remove redundant or unused things here and there.
4555 * lisp.h (CYCLE_CHECK, CHAR_TABLE_TRANSLATE): Remove.
4556 * conf_post.h (RE_TRANSLATE): Use char_table_translate.
4557 * editfns.c (Fcompare_buffer_substrings): Likewise.
4558 * frame.h (struct terminal, struct font_driver_list):
4559 Remove redundant declarations.
4560 * window.h (Qleft, Qright): Likewise.
4561
4562 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
4563
4564 Do not mark objects from deleted buffers, windows and frames.
4565 * alloc.c (mark_buffer): Mark just the buffer if it is dead.
4566 (mark_object): Likewise for windows and frames.
4567
4568 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
4569
4570 * alloc.c (valid_lisp_object_p): Treat killed buffers,
4571 buffer_defaults and buffer_local_symbols as valid objects.
4572 Return special value to denote them.
4573
4574 2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
4575
4576 * fileio.c, filelock.c, floatfns.c, fns.c: Use bool for boolean.
4577 * fileio.c (auto_saving, auto_save_error_occurred, make_temp_name)
4578 (Fexpand_file_name, barf_or_query_if_file_exists, Fcopy_file)
4579 (file_name_absolute_p, Fsubstitute_in_file_name):
4580 (check_executable, check_writable, Ffile_accessible_directory_p)
4581 (Fset_file_selinux_context, Fdefault_file_modes)
4582 (Finsert_file_contents, choose_write_coding_system)
4583 (Fwrite_region, build_annotations, a_write, e_write)
4584 (Fdo_auto_save):
4585 * filelock.c (boot_time_initialized, get_boot_time)
4586 (get_boot_time_1, lock_file_1, within_one_second):
4587 * floatfns.c (in_float):
4588 * fns.c (concat, internal_equal, Frequire, base64_encode_1)
4589 (base64_decode_1, cmpfn_eql, cmpfn_user_defined)
4590 (sweep_weak_table, sweep_weak_hash_tables, secure_hash):
4591 * lisp.h (struct Lisp_Hash_Table.cmpfn):
4592 * window.c (compare_window_configurations):
4593 Use bool for booleans.
4594 * fileio.c (auto_saving_dir_umask, auto_saving_mode_bits)
4595 (Fdefault_file_modes): Now mode_t, not int, for modes.
4596 (Fdo_auto_save): Set a boolean to 1 rather than using ++.
4597 (internal_delete_file): Now returns void, not a (boolean) int,
4598 since nobody was looking at the return value.
4599 * lisp.h, window.h: Adjust to above API changes.
4600
4601 * xdisp.c (set_message): Simplify and reindent last change.
4602
4603 2012-09-05 Juanma Barranquero <lekktu@gmail.com>
4604
4605 * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies.
4606
4607 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
4608
4609 * eval.c (call_debugger): Make the function non-static so that we
4610 can call it from set_message.
4611
4612 * xdisp.c (set_message): Implement the new variable `debug-on-message'.
4613 (syms_of_xdisp): Defvar it and `inhibit-debug-on-message'.
4614
4615 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
4616
4617 Give more-useful info on a fatal error (Bug#12328).
4618 * alloc.c [ENABLE_CHECKING]: Do not include <execinfo.h>.
4619 (die) [ENABLE_CHECKING]: Call fatal_error_backtrace instead
4620 of doing the work ourselves.
4621 * emacs.c (fatal_error_signal): Let fatal_error_backtrace
4622 do most of the work.
4623 (fatal_error_backtrace): New function, taken from the guts
4624 of the old fatal_error_signal, but with a new option to output
4625 a backtrace.
4626 (shut_down_emacs) [!DOS_NT]: Use strsignal to give more-useful
4627 info about the signal than just its number.
4628 * lisp.h (fatal_error_backtrace, emacs_backtrace): New decls.
4629 * sysdep.c: Include <execinfo.h>
4630 (emacs_backtrace): New function, taken partly from the previous
4631 code of the 'die' function.
4632 (emacs_abort): Call fatal_error_backtrace rather than abort.
4633
4634 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
4635
4636 * lread.c (readevalloop): Call internal-macroexpand-for-load to perform
4637 eager (load-time) macro-expansion.
4638 * lisp.mk (lisp): Add macroexp.
4639
4640 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
4641
4642 Simplify redefinition of 'abort' (Bug#12316).
4643 Do not try to redefine the 'abort' function. Instead, redo
4644 the code so that it calls 'emacs_abort' rather than 'abort'.
4645 This removes the need for the NO_ABORT configure-time macro
4646 and makes it easier to change the abort code to do a backtrace.
4647 * .gdbinit: Just stop at emacs_abort, not at w32_abort or abort.
4648 * emacs.c (abort) [!DOS_NT && !NO_ABORT]:
4649 Remove; sysdep.c's emacs_abort now takes its place.
4650 * lisp.h (emacs_abort): New decl. All calls from Emacs code to
4651 'abort' changed to use 'emacs_abort'.
4652 * msdos.c (dos_abort) [defined abort]: Remove; not used.
4653 (abort) [!defined abort]: Rename to ...
4654 (emacs_abort): ... new name.
4655 * sysdep.c (emacs_abort) [!HAVE_NTGUI]: New function, taking
4656 the place of the old 'abort' in emacs.c.
4657 * w32.c, w32fns.c (abort): Do not #undef.
4658 * w32.c (emacs_abort): Rename from w32_abort.
4659
4660 2012-09-04 Eli Zaretskii <eliz@gnu.org>
4661
4662 * w32uniscribe.c (uniscribe_shape): Reverse the sign of
4663 offsets[j].dv, since the y axis of the screen coordinates points
4664 down, while the y axis of the font definition coordinates points
4665 up. This fixes display of Arabic diacritics such as KASRA and
4666 KASRATAN. (Bug#11860)
4667
4668 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
4669
4670 Be more systematic about _setjmp vs setjmp.
4671 * alloc.c (test_setjmp, mark_stack):
4672 * image.c (PNG_LONGJMP) [PNG_LIBPNG_VER < 10500]:
4673 (PNG_JMPBUF) [! (PNG_LIBPNG_VER < 10500)]:
4674 (png_load, my_error_exit, jpeg_load):
4675 * process.c (send_process_trap, send_process):
4676 Uniformly prefer _setjmp and _longjmp to setjmp and longjmp.
4677 The underscored versions are up to 30x faster on some hosts.
4678 Formerly, the code used setjmp+longjmp sometimes and
4679 _setjmp+_longjmp at other times, with no particular reason to
4680 prefer setjmp+longjmp.
4681
4682 2012-09-03 Paul Eggert <eggert@cs.ucla.edu>
4683
4684 Fix minor problem found by static checking.
4685 * buffer.c (Fdelete_all_overlays): Return nil.
4686
4687 2012-09-03 Martin Rudalics <rudalics@gmx.at>
4688
4689 * buffer.c (Fdelete_all_overlays): New function.
4690
4691 2012-09-03 Chong Yidong <cyd@gnu.org>
4692
4693 * gtkutil.c: Add extern decl for Qxft.
4694
4695 2012-09-02 Paul Eggert <eggert@cs.ucla.edu>
4696
4697 * emacs.c, eval.c: Use bool for boolean.
4698 * emacs.c (initialized, inhibit_window_system, running_asynch_code):
4699 (malloc_using_checking) [DOUG_LEA_MALLOC]:
4700 (display_arg) [HAVE_X_WINDOWS || HAVE_NS]:
4701 (noninteractive, no_site_lisp, fatal_error_in_progress, argmatch)
4702 (main, decode_env_path, Fdaemon_initialized):
4703 * eval.c (call_debugger, Finteractive_p, interactive_p):
4704 (unwind_to_catch, Fsignal, wants_debugger, skip_debugger)
4705 (maybe_call_debugger, Fbacktrace):
4706 * process.c (read_process_output, exec_sentinel):
4707 Use bool for booleans.
4708 * emacs.c (shut_down_emacs): Omit unused boolean argument NO_X.
4709 All callers changed.
4710 * eval.c (interactive_p): Omit always-true boolean argument
4711 EXCLUDE_SUBRS_P. All callers changed.
4712 * dispextern.h, lisp.h: Reflect above API changes.
4713 * firstfile.c (dummy): Use the address of 'main', whose signature
4714 won't change, instead of the address of 'initialize', whose
4715 signature just changed from int to bool.
4716 * lisp.h (fatal_error_in_progress): New decl of boolean, moved here ...
4717 * msdos.c (fatal_error_in_progress): ... from here.
4718 * xdisp.c (redisplaying_p): Now a boolean. Set it to 1 instead
4719 of incrementing it.
4720 (redisplay_internal, unwind_redisplay): Simply clear
4721 REDISPLAYING_P when unwinding, instead of saving its previous,
4722 always-false value and then restoring it.
4723
4724 Clean up some extern decls.
4725 Mostly, this hoists extern decls out of .c files and into .h files.
4726 That way, we're more likely to catch errors if the interfaces change.
4727 * alloc.c [USE_GTK]: Include "gtkutil.h" so that we need not
4728 declare xg_mark_data.
4729 * dispextern.h (x_frame_parm_handlers):
4730 * font.h (Qxft):
4731 * lisp.h (Qlexical_binding, Qinternal_interpreter_environment)
4732 (Qextra_light, Qlight, Qsemi_light, Qsemi_bold, Qbold, Qextra_bold)
4733 (Qultra_bold, Qoblique, Qitalic):
4734 Move extern decl here from .c file.
4735 * alloc.c (xg_mark_data) [USE_GTK]:
4736 * doc.c (Qclosure):
4737 * eval.c (Qlexical_binding):
4738 * fns.c (time) [!HAVE_UNISTD_H]:
4739 * gtkutil.c (Qxft, Qnormal, Qextra_light, Qlight, Qsemi_light)
4740 (Qsemi_bold, Qbold, Qextra_bold, Qultra_bold, Qoblique, Qitalic):
4741 * image.c (Vlibrary_cache, QCloaded_from) [HAVE_NTGUI]:
4742 * lread.c (Qinternal_interpreter_environment):
4743 * minibuf.c (Qbuffer):
4744 * process.c (QCfamily, QCfilter):
4745 * widget.c (free_frame_faces):
4746 * xfaces.c (free_frame_menubar) [USE_X_TOOLKIT]:
4747 * xfont.c (x_clear_errors):
4748 * xterm.c (x_frame_parm_handlers):
4749 Remove now-redundant extern decls.
4750 * keyboard.c, keyboard.h (ignore_mouse_drag_p) [USE_GTK || HAVE_NS]:
4751 * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic):
4752 Now static.
4753 * xfaces.c: Remove unnecessary static decls.
4754 * xterm.c (updating_frame): Remove decl of nonexistent object.
4755
4756 * Makefile.in (gl-stamp): Don't scan $(SOME_MACHINE_OBJECTS)
4757 when building globals.h, as the objects that are not built on
4758 this host are not needed to compile C files on this host.
4759
4760 2012-09-02 Jan Djärv <jan.h.d@swipnet.se>
4761
4762 * gtkutil.h: Remove prototype for x_wm_set_size_hint.
4763
4764 * frame.h: Add missing prototype for x_wm_set_size_hint.
4765
4766 2012-09-02 Paul Eggert <eggert@cs.ucla.edu>
4767
4768 * doc.c, editfns.c, insdel.c, intervals.c: Use bool for boolean.
4769 * doc.c (read_bytecode_char, get_doc_string, reread_doc_file)
4770 (Fdocumentation, Fdocumentation_property, Fsnarf_documentation)
4771 (Fsubstitute_command_keys):
4772 * editfns.c (region_limit, find_field, Fconstrain_to_field)
4773 (save_excursion_save, save_excursion_restore)
4774 (disassemble_lisp_time, decode_time_components, emacs_nmemftime)
4775 (format_time_string, general_insert_function)
4776 (make_buffer_string, make_buffer_string_both)
4777 (Fsubst_char_in_region, Ftranslate_region_internal, Fformat):
4778 * insdel.c (check_markers, gap_left, adjust_markers_for_insert)
4779 (copy_text, insert_1, insert_1_both, insert_from_string)
4780 (insert_from_string_before_markers, insert_from_string_1)
4781 (insert_from_buffer, insert_from_buffer_1, replace_range)
4782 (replace_range_2, del_range_1, del_range_byte, del_range_both)
4783 (del_range_2, modify_region):
4784 * intervals.c (intervals_equal, balance_possible_root_interval)
4785 (adjust_intervals_for_insertion, merge_properties_sticky)
4786 (graft_intervals_into_buffer, lookup_char_property)
4787 (adjust_for_invis_intang, set_point_both)
4788 (get_property_and_range, compare_string_intervals)
4789 (set_intervals_multibyte_1, set_intervals_multibyte):
4790 * keyboard.c (decode_timer):
4791 Use bool for boolean.
4792 * intervals.h, lisp.h, systime.h: Reflect above API changes.
4793 * editfns.c (struct info): Use 1-bit unsigned bitfields for booleans.
4794
4795 2012-09-02 Chong Yidong <cyd@gnu.org>
4796
4797 * keymap.c (push_key_description): Print M-TAB as C-M-i
4798 (Bug#11758).
4799
4800 2012-09-02 Juanma Barranquero <lekktu@gmail.com>
4801
4802 * makefile.w32-in (CCL_H, W32FONT_H): New macros.
4803 (ATIMER_H, FONT_H, $(BLD)/alloc.$(O), $(BLD)/callproc.$(O))
4804 ($(BLD)/editfns.$(O), $(BLD)/ccl.$(O), $(BLD)/chartab.$(O))
4805 ($(BLD)/coding.$(O), $(BLD)/sysdep.$(O), $(BLD)/fontset.$(O))
4806 ($(BLD)/sysdep.$(O), $(BLD)/w32fns.$(O), $(BLD)/keyboard.$(O))
4807 ($(BLD)/w32term.$(O), $(BLD)/w32menu.$(O), $(BLD)/process.$(O))
4808 ($(BLD)/w32font.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
4809
4810 2012-09-01 Eli Zaretskii <eliz@gnu.org>
4811
4812 * w32uniscribe.c (uniscribe_shape): Handle correctly the case of
4813 more than one grapheme cluster passed to the shaper: compute the
4814 offset adjustment values separately for each cluster. (Bug#11860)
4815
4816 * image.c: Restore mistakenly removed inclusion of w32.h. Without
4817 it, GCC doesn't see prototypes of w32_delayed_load, and complains
4818 about implicit conversions from integer to pointer.
4819
4820 2012-09-01 Daniel Colascione <dancol@dancol.org>
4821
4822 * w32fns.c (x_display_info_for_name): Prevent crash if w32 window
4823 system used too early.
4824
4825 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
4826
4827 Better seed support for (random).
4828 * emacs.c (main): Call init_random.
4829 * fns.c (Frandom): Set the seed from a string argument, if given.
4830 Remove long-obsolete Gentzel cruft.
4831 * lisp.h, sysdep.c (seed_random): Now takes address and size, not long.
4832 (init_random): New function.
4833
4834 2012-09-01 Daniel Colascione <dancol@dancol.org>
4835
4836 * xterm.h: Add header guards. Declare x_menubar_window_to_frame.
4837 Remove x_set_frame_alpha, x_bitmap_icon, x_make_frame_visible,
4838 x_make_frame_invisible, x_iconify_frame, x_free_frame_resources,
4839 x_wm_set_size_hint, x_query_colors, x_real_positions,
4840 x_set_menu_bar_lines, x_char_width, x_char_height, x_sync,
4841 x_set_tool_bar_lines, x_activate_menubar, and free_frame_menubar,
4842 all of which have been moved to common code.
4843
4844 * xfaces.c: Include TERM_HEADER instead of listing all possible
4845 window-system headers.
4846
4847 * w32xfns.c (x_sync): Correct definition of x_sync (a no-op here)
4848 to match header.
4849
4850 * w32term.h (FRAME_X_WINDOW): Use FRAME_W32_WINDOW instead of
4851 directly accessing frame internals.
4852
4853 * w32font.h: Include font.h. Define syms_of_w32font and
4854 globals_of_w32font.
4855
4856 * process.c: Include TERM_HEADER instead of listing all possible
4857 window-system headers.
4858
4859 * nsterm.h: Remove declarations now in frame.h.
4860 Define FRAME_X_SCREEN, FRAME_X_VISUAL.
4861
4862 * menu.c: Include TERM_HEADER instead of listing all possible
4863 window-system headers.
4864
4865 * keyboard.h: Declare ignore_mouse_drag_p whenever we have a
4866 window system.
4867
4868 * keyboard.c: Include TERM_HEADER instead of listing all possible
4869 window-system headers.
4870
4871 * image.c: Include TERM_HEADER instead of listing all possible
4872 window-system headers. Declare Vlibrary_cache when compiling for
4873 Windows.
4874
4875 * gtkutil.h (xg_list_node_): Include xterm.h to pick up needed
4876 window system declarations.
4877
4878 * frame.h: Move common functions here: set_frame_menubar,
4879 x_set_window_size, x_sync, x_get_focus_frame,
4880 x_set_mouse_position, x_set_mouse_pixel_position,
4881 x_make_frame_visible, x_make_frame_invisible, x_iconify_frame,
4882 x_char_width, x_char_height, x_pixel_width, x_pixel_height,
4883 x_set_frame_alpha, x_set_menu_bar_lines, x_set_tool_bar_lines,
4884 x_activate_menubar, x_real_positions, x_bitmap_icon,
4885 x_set_menu_bar_lines, free_frame_menubar, x_free_frame_resources,
4886 and x_query_colors.
4887
4888 * frame.c: Include TERM_HEADER instead of listing all possible
4889 window-system headers.
4890
4891 * font.c: Include TERM_HEADER instead of listing all possible
4892 window-system headers.
4893
4894 * emacs.c: Include TERM_HEADER.
4895
4896 * dispnew.c: Include TERM_HEADER instead of listing all possible
4897 window-system headers.
4898
4899 * ccl.h: Include character.h.
4900
4901 * Makefile.in: Define WINDOW_SYSTEM_OBJ to hold objects needed for
4902 the current window system; include in list of objects to link into
4903 Emacs.
4904
4905 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
4906
4907 Remove mark_ttys function and fix tty_display_info initialization.
4908 * lisp.h (mark_ttys): Remove prototype.
4909 * alloc.c (Fgarbage_collect): Remove redundant (and the only) call
4910 to mark_ttys because all possible values of 'top_frame' slot are
4911 the frames which are reachable from Vframe_list.
4912 * term.c (mark_ttys): Remove.
4913 (init_tty): Safely initialize 'top_frame' slot with Qnil.
4914
4915 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
4916
4917 Change struct frame bitfields from unsigned char to unsigned.
4918 * frame.h (struct frame): Change type of 'display_preempted',
4919 'visible', 'iconified', 'has_minibuffer', 'wants_modeline',
4920 'auto_raise', 'auto_lower', 'no_split', 'explicit_name',
4921 'window_sizes_changed', 'mouse_moved' and 'pointer_invisible'
4922 bitfields from unsigned char to unsigned.
4923
4924 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
4925
4926 Remove unused member of struct x_output and struct w32_output.
4927 * xterm.h (struct x_output): Remove unused field 'needs_exposure'.
4928 * w32term.h (struct w32_output): Likewise.
4929
4930 2012-08-30 Jan Djärv <jan.h.d@swipnet.se>
4931
4932 * gtkutil.c (x_wm_set_size_hint): Use 1 col for base_width so it
4933 does not become zero (Bug#12234).
4934
4935 2012-08-30 Paul Eggert <eggert@cs.ucla.edu>
4936
4937 * dispnew.c (update_frame_1): Pacify gcc -Wstrict-overflow
4938 for GCC 4.7.1 x86-64.
4939
4940 2012-08-30 Glenn Morris <rgm@gnu.org>
4941
4942 * lread.c (init_lread): For out-of-tree builds, only add the
4943 source directory's site-lisp dir to the load-path if it exists,
4944 consistent with in-tree builds. (Bug#12302)
4945
4946 2012-08-28 Jan Djärv <jan.h.d@swipnet.se>
4947
4948 * nsmenu.m (initWithContentRect:styleMask:backing:defer:): Initialize
4949 button_values to NULL. Call setStykeMask so dialogs get a close button.
4950 (windowShouldClose:): Set window_closed.
4951 (dealloc): New member, free button_values.
4952 (process_dialog:): Make member function. Remove window argument,
4953 replace window with self. Count buttons and allocate and store values
4954 in button_values.
4955 (addButton:value:row:): value is int with the name tag. Call setTag
4956 with tag. Remove return self, declare return value as void.
4957 (addString:row:): Remove return self, declare return value as void.
4958 (addSplit): Remove return self, declare return value as void.
4959 (clicked:): Remove return self, declare return value as void.
4960 Set dialog_return to button_values[seltag]. Code formatting change.
4961 (initFromContents:isQuestion:): Adjust call to process_dialog.
4962 Code formatting change.
4963 (timeout_handler:): Set timer_fired to YES.
4964 (runDialogAt:): Set timer_fired to NO.
4965 Handle click on close button as quit.
4966
4967 * nsterm.h (EmacsDialogPanel): Make timer_fired BOOL.
4968 Add window_closed and button_values. Add void as return value for
4969 add(Button|String|Split). addButton takes int instead of Lisp_Object.
4970 Add process_dialog as new member.
4971
4972 2012-08-28 Eli Zaretskii <eliz@gnu.org>
4973
4974 * ralloc.c (free_bloc): Don't dereference a 'heap' structure if it
4975 is not one of the heaps we manage. (Bug#12242)
4976
4977 2012-08-28 Glenn Morris <rgm@gnu.org>
4978
4979 * eval.c (Fcalled_interactively_p): Doc fix. (Bug#11747)
4980
4981 2012-08-28 Martin Rudalics <rudalics@gmx.at>
4982
4983 * window.c (Fset_window_configuration): Remove handling of
4984 auto-buffer-name window parameter. Install revision of reverted
4985 fix.
4986
4987 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
4988
4989 Do not allow to set major mode for a dead buffer.
4990 * buffer.c (Fset_buffer_major_mode): Signal an error
4991 if the buffer is dead.
4992 (Fother_buffer, other_buffer_safely): Remove redundant
4993 nested declaration.
4994
4995 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
4996
4997 Always use set_buffer_if_live to restore original buffer at unwind.
4998 * buffer.h (record_unwind_current_buffer): New function.
4999 * bytecode.c, dispnew.c, editfns.c, fileio.c, fns.c, insdel.c:
5000 * keyboard.c, keymap.c, minibuf.c, print.c, process.c, textprop.c:
5001 * undo.c, window.c: Adjust users.
5002 * buffer.c (set_buffer_if_live): Fix comment.
5003
5004 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
5005
5006 Fix usage of set_buffer_internal.
5007 * buffer.h (set_buffer_internal): Make it BUFFER_INLINE.
5008 * buffer.c (set_buffer_if_live): Use set_buffer_internal.
5009 * coding.c (decode_coding): Omit redundant test.
5010 * fileio.c (decide_coding_unwind): Likewise.
5011 * fns.c (secure_hash): Likewise.
5012 * insdel.c (modify_region): Likewise.
5013 * keyboard.c (command_loop_1): Likewise.
5014 * print.c (PRINTFINISH): Likewise.
5015 * xdisp.c (run_window_scroll_functions): Use set_buffer_internal.
5016
5017 2012-08-27 Paul Eggert <eggert@cs.ucla.edu>
5018
5019 * dispnew.c: Use bool for boolean.
5020 (frame_garbaged, display_completed, delayed_size_change)
5021 (fonts_changed_p, add_window_display_history)
5022 (add_frame_display_history, verify_row_hash)
5023 (adjust_glyph_matrix, clear_window_matrices, glyph_row_slice_p)
5024 (row_equal_p, realloc_glyph_pool)
5025 (allocate_matrices_for_frame_redisplay)
5026 (showing_window_margins_p)
5027 (adjust_frame_glyphs_for_frame_redisplay)
5028 (build_frame_matrix_from_leaf_window, make_current)
5029 (mirrored_line_dance, mirror_line_dance, update_frame)
5030 (update_window_tree, update_single_window)
5031 (check_current_matrix_flags, update_window, update_text_area)
5032 (update_window_line, set_window_update_flags, scrolling_window)
5033 (update_frame_1, scrolling, buffer_posn_from_coords)
5034 (do_pending_window_change, change_frame_size)
5035 (change_frame_size_1, sit_for):
5036 Use bool for boolean.
5037 (clear_glyph_matrix_rows): Rename from enable_glyph_matrix_rows,
5038 and remove last int (actually boolean) argument, which was always 0.
5039 All callers changed.
5040 * dispextern.h, frame.h, lisp.h: Reflect above API changes.
5041 * dispextern.h (struct composition_it): Use bool for boolean.
5042 (struct glyph_matrix): Don't assume buffer sizes can fit in 'int'.
5043 (struct bidi_it): Use unsigned:1, not int, for boolean prev_was_pdf.
5044 * dired.c (file_name_completion):
5045 Use bool for boolean. (This was missed in an earlier change.)
5046
5047 2012-08-27 Martin Rudalics <rudalics@gmx.at>
5048
5049 * window.c (Fset_window_configuration): Revert first part of
5050 last change.
5051
5052 2012-08-27 Jan Djärv <jan.h.d@swipnet.se>
5053
5054 * nsterm.h (NSPanel): New class variable dialog_return.
5055
5056 * nsmenu.m (initWithContentRect:styleMask:backing:defer:):
5057 Initialize dialog_return.
5058 (windowShouldClose:): Use stop instead of stopModalWithCode.
5059 (clicked:): Ditto, and also set dialog_return (Bug#12258).
5060 (timeout_handler:): Use stop instead of abortModal. Send a dummy
5061 event.
5062 (runDialogAt:): Make ret Lisp_Object. Set it from dialog_return when
5063 modal loop returns.
5064
5065 2012-08-27 Paul Eggert <eggert@cs.ucla.edu>
5066
5067 * composite.c, data.c, dbusbind.c, dired.c: Use bool for booleans.
5068 * composite.c (find_composition, composition_gstring_p)
5069 (composition_reseat_it, find_automatic_composition):
5070 * data.c (let_shadows_buffer_binding_p)
5071 (let_shadows_global_binding_p, set_internal, make_blv)
5072 (Fmake_variable_buffer_local, Fmake_local_variable)
5073 (Fmake_variable_frame_local, arithcompare, cons_to_unsigned)
5074 (cons_to_signed, arith_driver):
5075 * dbusbind.c (xd_in_read_queued_messages):
5076 * dired.c (directory_files_internal, file_name_completion):
5077 Use bool for booleans.
5078 * dired.c (file_name_completion):
5079 * process.h (fd_callback):
5080 Omit int (actually boolean) argument. It wasn't being used.
5081 All uses changed.
5082 * composite.h, lisp.h: Reflect above API changes.
5083
5084 * cmds.c, coding.c: Use bool for booleans.
5085 * cmds.c (move_point, Fself_insert_command):
5086 * coding.h (struct composition status, struct coding_system):
5087 * coding.c (detect_coding_utf_8, encode_coding_utf_8)
5088 (detect_coding_utf_16, encode_coding_utf_16, detect_coding_emacs_mule)
5089 (emacs_mule_char, decode_coding_emacs_mule)
5090 (encode_coding_emacs_mule, detect_coding_iso_2022)
5091 (decode_coding_iso_2022, encode_invocation_designation)
5092 (encode_designation_at_bol, encode_coding_iso_2022)
5093 (detect_coding_sjis, detect_coding_big5, decode_coding_sjis)
5094 (decode_coding_big5, encode_coding_sjis, encode_coding_big5)
5095 (detect_coding_ccl, encode_coding_ccl, decode_coding_raw_text)
5096 (encode_coding_raw_text, detect_coding_charset)
5097 (decode_coding_charset, encode_coding_charset, detect_eol)
5098 (detect_coding, get_translation_table, produce_chars)
5099 (consume_chars, reused_workbuf_in_use)
5100 (make_conversion_work_buffer, code_conversion_save)
5101 (decode_coding_object, encode_coding_object)
5102 (detect_coding_system, char_encodable_p)
5103 (Funencodable_char_position, code_convert_region)
5104 (code_convert_string, code_convert_string_norecord)
5105 (Fset_coding_system_priority):
5106 * fileio.c (Finsert_file_contents):
5107 Use bool for booleans.
5108 * coding.h, lisp.h: Reflect above API changes.
5109 * coding.c: Remove unnecessary static function decls.
5110 (detect_coding): Use unsigned, not signed, to copy an unsigned field.
5111 (decode_coding, encode_coding, decode_coding_gap): Return 'void',
5112 not a boolean 'int', since callers never look at the return value.
5113 (ALLOC_CONVERSION_WORK_AREA): Assume caller returns 'void', not 'int'.
5114 * coding.h (decoding_buffer_size, encoding_buffer_size)
5115 (emacs_mule_string_char): Remove unused extern decls.
5116 (struct iso_2022_spec, struct coding_system):
5117 Use 'unsigned int : 1' for boolean fields, since there's more than one.
5118 (struct emacs_mule_spec): Remove unused field 'full_support'.
5119 All initializations removed.
5120 * cmds.c (internal_self_insert): Don't assume EMACS_INT fits in 'int'.
5121
5122 2012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
5123
5124 Fix spare memory change (Bug#12286).
5125 * alloc.c (mark_maybe_pointer): Handle MEM_TYPE_SPARE.
5126 (valid_lisp_object_p): Likewise.
5127
5128 2012-08-27 Martin Rudalics <rudalics@gmx.at>
5129
5130 * window.c (Fset_window_configuration): Record any window's old
5131 buffer if it's replaced (see Bug#8789). If the new current
5132 buffer doesn't appear in the selected window, go to its old
5133 point (Bug#12208).
5134
5135 2012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
5136
5137 Special MEM_TYPE_SPARE to denote reserved memory.
5138 * alloc.c (enum mem_type): New memory type.
5139 (refill_memory_reserve): Use new type for spare memory.
5140 This prevents live_cons_p and live_string_p from incorrect
5141 detection of uninitialized objects from spare memory as live.
5142
5143 2012-08-26 Paul Eggert <eggert@cs.ucla.edu>
5144
5145 Spelling fixes.
5146 * Makefile.in (.PHONY): versioclean -> versionclean.
5147
5148 Remove unused external symbols.
5149 * data.c (Qcons, Qfloat, Qmisc, Qstring, Qvector):
5150 * window.c (Qwindow_valid_p, decode_valid_window):
5151 Now static, not extern.
5152 * data.c (Qinterval): Remove; unused.
5153 (syms_of_data): Do not define 'interval'.
5154 * lisp.h (Qinteger, Qstring, Qmisc, Qvector, Qfloat, Qcons):
5155 * window.h (decode_valid_window):
5156 Remove decls.
5157
5158 * character.c, charset.c, chartab.c: Use bool for booleans.
5159 * character.c (lisp_string_width, string_count_byte8)
5160 (string_escape_byte8):
5161 * charset.c (charset_map_loaded, load_charset_map, read_hex):
5162 (load_charset_map_from_file, map_charset_chars)
5163 (Fdefine_charset_internal, define_charset_internal)
5164 (Fdeclare_equiv_charset, find_charsets_in_text)
5165 (Ffind_charset_region, char_charset, Fiso_charset):
5166 * chartab.c (sub_char_table_ref, sub_char_table_ref_and_range)
5167 (sub_char_table_set, sub_char_table_set_range)
5168 (char_table_set_range, optimize_sub_char_table)
5169 (map_sub_char_table):
5170 Use bool for boolean.
5171 * character.c (str_to_unibyte): Omit last boolean argument; it was
5172 always 0. All callers changed.
5173 * character.h, charset.h: Adjust to match previous changes.
5174 * character.h (char_printable_p): Remove decl of nonexistent function.
5175 * charset.h (struct charset): Members code_linear_p, iso_chars_96,
5176 ascii_compatible_p, supplementary_p, compact_codes_p, unified_p
5177 are all boolean, so make them single-bit bitfields.
5178
5179 * lisp.h (ASET): Remove attempt to detect side effects.
5180 It was meant to be temporary and it often doesn't work,
5181 because when IDX has side effects the behavior of IDX==IDX
5182 is undefined. See Stefan Monnier in
5183 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00762.html>.
5184
5185 2012-08-26 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
5186
5187 * lisp.h (functionp): New function (extracted from Ffunctionp).
5188 (FUNCTIONP): Use it.
5189 * eval.c (Ffunctionp): Use it.
5190
5191 2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
5192
5193 * xgselect.c (xg_select): Use auto storage for the GPollFD buffer
5194 as that's faster and simpler than static storage. Don't bother
5195 with the g_main_context_query overhead if g_main_context_pending
5196 says no events are pending.
5197 (gfds, gfds_size): Remove these static vars.
5198 (xgselect_initialize): Remove; no longer needed.
5199 All uses and decls removed.
5200
5201 * emacs.c (fatal_error_signal_hook): Remove.
5202 All uses removed. This leftover from old code was always 0.
5203
5204 * casefiddle.c, casetab.c, category.c: Use bool for boolean.
5205 * casefiddle.c (casify_object, casify_region):
5206 * casetab.c (set_case_table):
5207 * category.c, category.h (word_boundary_p):
5208 * category.h (CHAR_HAS_CATEGORY):
5209 Use bool for booleans, instead of int.
5210
5211 2012-08-25 Eli Zaretskii <eliz@gnu.org>
5212
5213 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on $(GNU_LIB)/execinfo.h.
5214
5215 2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
5216
5217 On assertion failure, print backtrace if available.
5218 * alloc.c [ENABLE_CHECKING]: Include <execinfo.h>.
5219 (die) [ENABLE_CHECKING]: Print a backtrace if available.
5220 * Makefile.in (LIB_EXECINFO): New macro.
5221 (LIBES): Use it.
5222
5223 * bytecode.c, callint.c, callproc.c: Use bool for boolean.
5224 * bytecode.c (exec_byte_code):
5225 * callint.c (check_mark, Fcall_interactively):
5226 * callproc.c (Fcall_process, add_env, child_setup, getenv_internal_1)
5227 (getenv_internal, sync_process_alive, call_process_exited):
5228 * lisp.h (USE_SAFE_ALLOCA):
5229 Use bool for booleans, instead of int.
5230 * lisp.h, process.h: Adjust prototypes to match above changes.
5231 * callint.c (Fcall_interactively): Don't assume the mark's
5232 offset fits in 'int'.
5233
5234 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
5235
5236 * buffer.c, buffer.h: Use bool for boolean.
5237 * buffer.c (reset_buffer_local_variables)
5238 (buffer_lisp_local_variables, Fset_buffer_modified_p)
5239 (Frestore_buffer_modified_p, Fset_buffer_multibyte):
5240 (overlays_at, overlays_in, mouse_face_overlay_overlaps)
5241 (overlay_touches_p, overlay_strings, Foverlay_put)
5242 (report_overlay_modification, call_overlay_mod_hooks):
5243 (mmap_enlarge, mmap_set_vars):
5244 * buffer.h (buffer_has_overlays, uppercasep, lowercasep):
5245 Use bool for booleans, instead of int.
5246 * buffer.c (compact_buffer, mmap_free_1): Return void, not int,
5247 since the 1-or-0 return value is always ignored anyway.
5248 (mmap_initialized_p):
5249 * buffer.h (struct buffer_text.inhibit_shrinking): Now bool, not int.
5250 * buffer.h, lisp.h: Adjust prototypes to match above changes.
5251
5252 2012-08-23 Paul Eggert <eggert@cs.ucla.edu>
5253
5254 * bidi.c: Use bool for boolean.
5255 This is a bit more readable, and makes the text segment of bidi.o
5256 0.4% smaller on my platform (GCC 4.7.1 x86-64, Fedora 15).
5257 Presumably it's faster too.
5258 (bidi_initialized, bidi_ignore_explicit_marks_for_paragraph_level):
5259 Now bool.
5260 (bidi_cache_find_level_change, bidi_cache_iterator_state)
5261 (bidi_unshelve_cache, bidi_init_it, bidi_count_bytes)
5262 (bidi_char_at_pos, bidi_fetch_char, bidi_paragraph_init)
5263 (bidi_explicit_dir_char, bidi_level_of_next_char)
5264 (bidi_find_other_level_edge, bidi_move_to_visually_next):
5265 Use bool for booleans, instead of int.
5266 * dispextern.h (bidi_init_it, bidi_paragraph_init)
5267 (bidi_unshelve_cache): Adjust decls to match code.
5268
5269 2012-08-23 Martin Rudalics <rudalics@gmx.at>
5270
5271 * keyboard.c (Fposn_at_x_y): Do not allow internal window as
5272 argument.
5273
5274 2012-08-23 Paul Eggert <eggert@cs.ucla.edu>
5275
5276 * atimer.c, atimer.h (turn_on_atimers): Use bool for boolean.
5277 * atimer.h: Include <stdbool.h>.
5278
5279 2012-08-22 Dan Nicolaescu <dann@gnu.org>
5280
5281 * frame.h (FRAME_W32_P, FRAME_MSDOS_P, FRAME_NS_P): Change to
5282 compile time tests instead of run time tests on systems that do
5283 not use them.
5284 (FRAME_MAC_P): Remove leftover from deleted code.
5285 * frame.c (syms_of_frame): Remove leftover from deleted code.
5286
5287 2012-08-22 Jan Djärv <jan.h.d@swipnet.se>
5288
5289 * nsterm.m (insertText:): Don't clear modifiers if code is space.
5290
5291 2012-08-22 Paul Eggert <eggert@cs.ucla.edu>
5292
5293 * fontset.c (FONTSET_ADD): Return void, not Lisp_Object.
5294 Otherwise, the compiler complains about (A?B:C) where B is void
5295 and C is Lisp_Object. This fixes an incompatibility with Sun C 5.12.
5296 (fontset_add): Return void, for FONTSET_ADD.
5297
5298 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
5299
5300 * alloc.c: Use bool for booleans.
5301 (gc_in_progress, abort_on_gc)
5302 (setjmp_tested_p) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
5303 (dont_register_blocks) [GC_MALLOC_CHECK]:
5304 (suppress_checking) [ENABLE_CHECKING]: Now bool, not int.
5305 (check_string_bytes, make_specified_string, memory_full)
5306 (live_string_p, live_cons_p, live_symbol_p, live_float_p)
5307 (live_misc_p, live_vector_p, live_buffer_p, mark_maybe_object)
5308 (mark_stack, valid_pointer_p, make_pure_string)
5309 (Fgarbage_collect, survives_gc_p, gc_sweep):
5310 Use bool for booleans, instead of int.
5311 (test_setjmp) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
5312 Remove unused local.
5313 * alloc.c (PURE_POINTER_P):
5314 * lisp.h (STRING_MULTIBYTE): Document that it returns a boolean.
5315 * editfns.c (Fformat):
5316 * fileio.c (Fexpand_file_name, Fsubstitute_in_file_name)
5317 (Fdo_auto_save):
5318 * fns.c (sweep_weak_table):
5319 * lisp.h (suppress_checking, push_message, survives_gc_p)
5320 (make_pure_string, gc_in_progress, abort_on_gc):
5321 * lread.c (readchar, read1):
5322 * print.c (Fprin1_to_string):
5323 * xdisp.c (push_message):
5324 Use bool for booleans affected directly or indirectly by
5325 alloc.c's changes.
5326
5327 Make recently-introduced setters macros.
5328 * fontset.c (set_fontset_id, set_fontset_name, set_fontset_ascii)
5329 (set_fontset_base, set_fontset_frame, set_fontset_nofont_face)
5330 (set_fontset_default, set_fontset_fallback): Rename from their
5331 upper-case counterparts, and make them functions rather than macros.
5332 This is more consistent with the other recently-introduced setters.
5333 These don't need to be inline, since they're local.
5334
5335 2012-08-21 Jan Djärv <jan.h.d@swipnet.se>
5336
5337 * nsterm.m (fd_handler:): Alloc and release a NSAutoreleasePool in
5338 the loop (Bug#12247).
5339
5340 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
5341
5342 * lisp.h (vcopy): Use memcpy rather than our own loop.
5343 This fixes a performance regression introduced by the recent
5344 addition of vcopy. This means 'vcopy' will need to be modified
5345 for a copying collector, but that's OK. Also, tighten the
5346 checking in the assertion.
5347
5348 2012-08-21 Eli Zaretskii <eliz@gnu.org>
5349
5350 * w32uniscribe.c (uniscribe_shape): Fix producing gstring
5351 components for RTL text (Bug#11860). Adjust X-OFFSET of each
5352 non-base glyph for the width of the base character, according to
5353 what x_draw_composite_glyph_string_foreground expects.
5354 Generate WADJUST value according to composition_gstring_width's
5355 expectations, to produce correct width of the composed character.
5356 Reverse the sign of the DU offset produced by ScriptPlace.
5357
5358 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
5359
5360 * dbusbind.c (xd_remove_watch): Do not assume C99 comments.
5361
5362 2012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
5363
5364 Avoid direct writes to contents member of struct Lisp_Vector.
5365 * lisp.h (vcopy): New function to copy data into vector.
5366 * dispnew.c (Fframe_or_buffer_changed_p): Use AREF and ASET.
5367 * fns.c (Ffillarray): Use ASET.
5368 * keyboard.c (timer_check_2): Use AREF and ASET.
5369 (append_tool_bar_item, Frecent_keys): Use vcopy.
5370 * lread.c (read_vector): Use ASET.
5371 * msdos.c (Frecent_doskeys): Use vcopy.
5372 * xface.c (Finternal_copy_lisp_face): Use vcopy.
5373 (Finternal_merge_in_global_face): Use ASET and vcopy.
5374 * xfont.c (xfont_list_pattern): Likewise.
5375
5376 2012-08-21 Martin Rudalics <rudalics@gmx.at>
5377
5378 * window.c (Fwindow_point): For the selected window always return
5379 the position of its buffer's point.
5380 (Fset_window_point): For the selected window always go in its
5381 buffer to the specified position.
5382
5383 2012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
5384
5385 Setter macros for fontsets.
5386 * fontset.c (SET_FONTSET_ID, SET_FONTSET_NAME, SET_FONTSET_ASCII)
5387 (SET_FONTSET_BASE, SET_FONTSET_FRAME, SET_FONTSET_NOFONT_FACE)
5388 (SET_FONTSET_DEFAULT, SET_FONTSET_FALLBACK): New macros.
5389 Adjust users.
5390
5391 2012-08-20 Glenn Morris <rgm@gnu.org>
5392
5393 * Makefile.in (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
5394 Don't assume that `ln -f' works.
5395
5396 2012-08-20 Eli Zaretskii <eliz@gnu.org>
5397
5398 * .gdbinit: Use "set $dummy = ..." to avoid warnings from GDB 7.5
5399 and later about non-assignments with no effect. See discussion at
5400 http://sourceware.org/ml/gdb-patches/2012-08/msg00518.html for
5401 details.
5402
5403 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
5404
5405 Inline setter functions for Lisp_Objects slots of struct specbinding.
5406 * eval.c (set_specpdl_symbol, set_specpdl_old_value): New functions.
5407 Adjust users.
5408
5409 2012-08-20 Martin Rudalics <rudalics@gmx.at>
5410
5411 * window.c (select_window): Always make selected window's buffer
5412 current.
5413
5414 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
5415
5416 Use AREF and ASET for docstrings of category tables.
5417 * category.h (CATEGORY_DOCSTRING): Use AREF.
5418 (SET_CATEGORY_DOCSTRING): Use ASET.
5419 * category.c (Fdefine_category): Use SET_CATEGORY_DOCSTRING.
5420
5421 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
5422
5423 Inline setter functions for hash table members.
5424 * lisp.h (set_hash_key, set_hash_value, set_hash_next)
5425 (set_hash_hash, set_hash_index): Rename with _slot suffix.
5426 (set_hash_key_and_value, set_hash_index, set_hash_next)
5427 (set_hash_hash): New functions.
5428 * charset.c, fns.c: Adjust users.
5429
5430 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
5431
5432 Inline getter and setter functions for per-buffer values.
5433 * buffer.h (per_buffer_default, set_per_buffer_default)
5434 (per_buffer_value, set_per_buffer_value): New functions.
5435 (PER_BUFFER_VALUE, PER_BUFFER_DEFAULT): Remove.
5436 * buffer.c, data.c: Adjust users.
5437
5438 2012-08-20 Juanma Barranquero <lekktu@gmail.com>
5439
5440 * makefile.w32-in ($(BLD)/vm-limit.$(O)): Update dependencies.
5441
5442 2012-08-19 Paul Eggert <eggert@cs.ucla.edu>
5443
5444 Rely on <config.h> + <unistd.h> to declare 'environ',
5445 as gnulib does this if the system doesn't.
5446 * callproc.c, editfns.c, process.c (environ) [!USE_CRT_DLL]:
5447 Remove declaration. MS-Windows declares it on stdlib.h which is
5448 included by conf_post.h.
5449 * emacs.c (environ) [DOUG_LEA_MALLOC]:
5450 * vm-limit.c (environ) [ORDINARY_LINK]: Remove decl.
5451 * vm-limit.c: Include <unistd.h>, for 'environ'.
5452
5453 * unexaix.c, unexcoff.c: Include "mem-limits.h".
5454 (start_of_data): Remove decl; mem-limits.h provides it.
5455
5456 * xdisp.c (handle_invisible_prop): Make it a bit faster
5457 and avoid a gcc -Wmaybe-uninitialized diagnostic.
5458
5459 2012-08-19 Chong Yidong <cyd@gnu.org>
5460
5461 * xdisp.c (handle_invisible_prop): Fix ellipses at overlay string
5462 ends (Bug#3874).
5463
5464 2012-08-19 Andreas Schwab <schwab@linux-m68k.org>
5465
5466 * .gdbinit: Use call instead of set when calling a function in the
5467 inferior.
5468
5469 * data.c (set_internal): Don't use set_blv_found.
5470 (Fkill_local_variable): Likewise.
5471
5472 2012-08-18 Alp Aker <alp.tekin.aker@gmail.com>
5473
5474 * nsfont.m (ns_ascii_average_width): Ensure the string
5475 ascii_printable is initialized with a null-terminated character
5476 array. Otherwise, it can contain undesired extra characters.
5477
5478 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
5479
5480 port new setting code to Sun C 5.8 2005/10/13
5481 * chartab.c, lisp.h (char_table_set, char_table_set_range):
5482 Return void, not Lisp_Object. Otherwise, the compiler
5483 complains about (A?B:C) where B is void and C is Lisp_Object
5484 when compiling CHAR_TABLE_SET, due to the recent change to
5485 the API of sub_char_table_set_contents.
5486
5487 2012-08-18 Chong Yidong <cyd@gnu.org>
5488
5489 * xdisp.c (handle_invisible_prop): Obey TEXT_PROP_MEANS_INVISIBLE
5490 for the string case (Bug#3874).
5491
5492 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
5493
5494 * buffer.h (BSET): Remove (Bug#12215).
5495 Replace all uses with calls to new setter functions.
5496 (bset_bidi_paragraph_direction, bset_case_canon_table)
5497 (bset_case_eqv_table, bset_directory, bset_display_count)
5498 (bset_display_time, bset_downcase_table)
5499 (bset_enable_multibyte_characters, bset_filename, bset_keymap)
5500 (bset_last_selected_window, bset_local_var_alist)
5501 (bset_mark_active, bset_point_before_scroll, bset_read_only)
5502 (bset_truncate_lines, bset_undo_list, bset_upcase_table)
5503 (bset_width_table):
5504 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
5505 (bset_auto_fill_function, bset_auto_save_file_format)
5506 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
5507 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
5508 (bset_cache_long_line_scans, bset_case_fold_search)
5509 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
5510 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
5511 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
5512 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
5513 (bset_header_line_format, bset_indicate_buffer_boundaries)
5514 (bset_indicate_empty_lines, bset_invisibility_spec)
5515 (bset_left_fringe_width, bset_major_mode, bset_mark)
5516 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
5517 (bset_name, bset_overwrite_mode, bset_pt_marker)
5518 (bset_right_fringe_width, bset_save_length)
5519 (bset_scroll_bar_width, bset_scroll_down_aggressively)
5520 (bset_scroll_up_aggressively, bset_selective_display)
5521 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
5522 (bset_word_wrap, bset_zv_marker):
5523 * category.c (bset_category_table):
5524 * syntax.c (bset_syntax_table):
5525 New setter functions.
5526
5527 * process.h (PSET): Remove (Bug#12215).
5528 Replace all uses with calls to new setter functions.
5529 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
5530 (PROCESS_INLINE): New macro.
5531 (pset_childp): New setter function.
5532 (pset_gnutls_cred_type) [HAVE_GNUTLS]: New setter function.
5533 * process.c (PROCESS_INLINE):
5534 Define to EXTERN_INLINE, so that the corresponding functions
5535 are compiled into code.
5536 (pset_buffer, pset_command, pset_decode_coding_system)
5537 (pset_decoding_buf, pset_encode_coding_system)
5538 (pset_encoding_buf, pset_filter, pset_log, pset_mark, pset_name)
5539 (pset_plist, pset_sentinel, pset_status, pset_tty_name)
5540 (pset_type, pset_write_queue): New setter functions.
5541
5542 * window.h (WSET): Remove (Bug#12215).
5543 Replace all uses with calls to new setter functions.
5544 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
5545 (WINDOW_INLINE): New macro.
5546 (wset_buffer, wset_frame, wset_left_col, wset_next, wset_prev)
5547 (wset_redisplay_end_trigger, wset_top_line, wset_total_cols)
5548 (wset_total_lines, wset_vertical_scroll_bar)
5549 (wset_window_end_pos, wset_window_end_valid)
5550 (wset_window_end_vpos): New setter functions.
5551 * window.c (WINDOW_INLINE):
5552 Define to EXTERN_INLINE, so that the corresponding functions
5553 are compiled into code.
5554 (wset_combination_limit, wset_dedicated, wset_display_table)
5555 (wset_hchild, wset_left_fringe_width, wset_left_margin_cols)
5556 (wset_new_normal, wset_new_total, wset_next_buffers)
5557 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
5558 (wset_prev_buffers, wset_right_fringe_width)
5559 (wset_right_margin_cols, wset_scroll_bar_width, wset_start)
5560 (wset_temslot, wset_vchild, wset_vertical_scroll_bar_type)
5561 (wset_window_parameters):
5562 * xdisp.c (wset_base_line_number, wset_base_line_pos)
5563 (wset_column_number_displayed, wset_region_showing):
5564 New setter functions.
5565
5566 * termhooks.h (TSET): Remove (Bug#12215).
5567 Replace all uses with calls to new setter functions.
5568 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
5569 (TERMHOOKS_INLINE): New macro.
5570 (tset_charset_list, tset_selection_alist): New setter functions.
5571 * terminal.c (TERMHOOKS_INLINE):
5572 Define to EXTERN_INLINE, so that the corresponding functions
5573 are compiled into code.
5574 (tset_param_alist): New setter function.
5575
5576 2012-08-17 Paul Eggert <eggert@cs.ucla.edu>
5577
5578 * keyboard.h (KSET): Remove (Bug#12215).
5579 Replace all uses with calls to new setter functions.
5580 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
5581 (KEYBOARD_INLINE): New macro.
5582 (kset_default_minibuffer_frame, kset_defining_kbd_macro)
5583 (kset_input_decode_map, kset_last_command, kset_last_kbd_macro)
5584 (kset_prefix_arg, kset_system_key_alist, kset_window_system):
5585 New setter functions.
5586 * keyboard.c (KEYBOARD_INLINE):
5587 Define to EXTERN_INLINE, so that the corresponding functions
5588 are compiled into code.
5589 (kset_echo_string, kset_kbd_queue)
5590 (kset_keyboard_translate_table, kset_last_prefix_arg)
5591 (kset_last_repeatable_command, kset_local_function_key_map)
5592 (kset_overriding_terminal_local_map, kset_real_last_command)
5593 (kset_system_key_syms): New setter functions.
5594
5595 * frame.h (FSET): Remove (Bug#12215).
5596 Replace all uses with calls to new setter functions.
5597 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
5598 (FRAME_INLINE): New macro.
5599 (fset_buffer_list, fset_buried_buffer_list, fset_condemned_scroll_bars)
5600 (fset_current_tool_bar_string, fset_desired_tool_bar_string)
5601 (fset_face_alist, fset_focus_frame, fset_icon_name, fset_menu_bar_items)
5602 (fset_menu_bar_vector, fset_menu_bar_window, fset_name)
5603 (fset_param_alist, fset_root_window, fset_scroll_bars)
5604 (fset_selected_window, fset_title, fset_tool_bar_items)
5605 (fset_tool_bar_position, fset_tool_bar_window): New functions.
5606 * frame.c (FRAME_INLINE):
5607 Define to EXTERN_INLINE, so that the corresponding functions
5608 are compiled into code.
5609 (fset_buffer_predicate, fset_minibuffer_window): New setter functions.
5610
5611 A few more naming-convention fixes for getters and setters.
5612 * buffer.c (set_buffer_overlays_before): Move here from buffer.h,
5613 and rename from buffer_overlays_set_before.
5614 (set_buffer_overlays_after): Move here from buffer.h, and rename
5615 from buffer_overlays_set_after.
5616 * buffer.h (buffer_intervals): Rename from buffer_get_intervals.
5617 All uses changed.
5618 (set_buffer_intervals): Rename from buffer_set_intervals.
5619 * intervals.c (set_interval_object): Move here from intervals.h,
5620 and rename from interval_set_object.
5621 (set_interval_left): Move here from intervals.h, and rename from
5622 interval_set_left.
5623 (set_interval_right): Move here from intervals.h, and rename from
5624 interval_set_right.
5625 (copy_interval_parent): Move here from intervals.h, and rename from
5626 interval_copy_parent.
5627 * intervals.h (set_interval_parent): Rename from interval_set_parent.
5628 (set_interval_plist): Rename from interval_set_plist.
5629 Return void, not Lisp_Object, since no caller uses the result.
5630 * lisp.h (string_intervals): Rename from string_get_intervals.
5631 (set_string_intervals): Rename from string_set_intervals.
5632
5633 * lisp.h (set_char_table_extras): Rename from char_table_set_extras.
5634 (set_char_table_contents): Rename from char_table_set_contents.
5635 (set_sub_char_table_contents): Rename from sub_char_table_set_contents.
5636 All uses changed. See the end of
5637 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00549.html>.
5638
5639 * lisp.h (CSET): Remove (Bug#12215).
5640 (set_char_table_ascii, set_char_table_defalt, set_char_table_parent)
5641 (set_char_table_purpose): New functions,
5642 replacing CSET. All uses changed. For example, replace
5643 "CSET (XCHAR_TABLE (char_table), parent, parent);" with
5644 "set_char_table_parent (char_table, parent);".
5645 The old version was confusing because it used the same name
5646 'parent' for two different things.
5647
5648 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
5649
5650 Functions to get and set Lisp_Object fields of buffer-local variables.
5651 * lisp.h (blv_found, set_blv_found, blv_value, set_blv_value)
5652 (set_blv_where, set_blv_defcell, set_blv_valcell): New functions.
5653 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): Remove.
5654 * data.c, eval.c, frame.c: Adjust users.
5655
5656 2012-08-17 Chong Yidong <cyd@gnu.org>
5657
5658 * xfaces.c (merge_face_vectors): If the target font specfies a
5659 font spec, make the font's attributes take precedence over
5660 directly-specified attributes.
5661 (merge_face_ref): Recognize :font.
5662
5663 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
5664
5665 Do not use memcpy for copying intervals.
5666 * intervals.c (reproduce_interval): New function.
5667 (reproduce_tree, reproduce_tree_obj): Use it.
5668 (reproduce_tree_obj): Remove prototype.
5669
5670 2012-08-17 Paul Eggert <eggert@cs.ucla.edu>
5671
5672 * lisp.h (duration_to_sec_usec): Remove unused decl.
5673
5674 2012-08-17 Alp Aker <alp.tekin.aker@gmail.com>
5675
5676 * nsfont.m (ns_ascii_average_width): Send initWithFormat selector
5677 to an allocated instance of NSString, not to the class itself.
5678
5679 2012-08-17 Juanma Barranquero <lekktu@gmail.com>
5680
5681 * makefile.w32-in (C_CTYPE_H): New macro.
5682 (LISP_H, $(BLD)/ccl.$(O), $(BLD)/doc.$(O), $(BLD)/w32console.$(O)):
5683 ($(BLD)/fontset.$(O), $(BLD)/frame.$(O), $(BLD)/composite.$(O)):
5684 ($(BLD)/sysdep.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
5685
5686 2012-08-16 Paul Eggert <eggert@cs.ucla.edu>
5687
5688 Use ASCII tests for character types.
5689 * category.c, dispnew.c, doprnt.c, editfns.c, syntax.c, term.c:
5690 * xfns.c, xterm.c:
5691 Don't include <ctype.h>; was not needed.
5692 * charset.c, doc.c, fileio.c, font.c, frame.c, gtkutil.c, image.c:
5693 * sysdep.c, xfaces.c:
5694 Include <c-ctype.h> instead of <ctype.h>.
5695 * nsterm.m: Include <c-ctype.h>.
5696 * charset.c (read_hex):
5697 * doc.c (Fsnarf_documentation):
5698 * fileio.c (IS_DRIVE) [WINDOWSNT]:
5699 (DRIVE_LETTER) [DOS_NT]:
5700 (Ffile_name_directory, Fexpand_file_name)
5701 (Fsubstitute_in_file_name):
5702 * font.c (font_parse_xlfd, font_parse_fcname):
5703 * frame.c (x_set_font_backend):
5704 * gtkutil.c (xg_get_font):
5705 * image.c (xbm_scan, xpm_scan, pbm_scan_number):
5706 * nsimage.m (hexchar):
5707 * nsterm.m (ns_xlfd_to_fontname):
5708 * sysdep.c (system_process_attributes):
5709 * xfaces.c (hash_string_case_insensitive):
5710 Use C-locale tests instead of locale-specific tests for character
5711 types, since we want the ASCII interpretation here, not the
5712 interpretation suitable for whatever happens to be the current locale.
5713
5714 2012-08-16 Martin Rudalics <rudalics@gmx.at>
5715
5716 Consistently check windows for validity/liveness
5717 (Bug#11984, Bug#12025, Bug#12026).
5718 * lisp.h (CHECK_VALID_WINDOW): New macro.
5719 * window.c (decode_window): Rename to decode_live_window.
5720 (decode_valid_window, Fwindow_valid_p): New functions.
5721 (Fwindow_frame, Fframe_root_window, Fwindow_minibuffer_p)
5722 (Fframe_first_window, Fframe_selected_window, Fwindow_parent)
5723 (Fwindow_top_child, Fwindow_left_child, Fwindow_next_sibling)
5724 (Fwindow_prev_sibling, Fwindow_combination_limit)
5725 (Fset_window_combination_limit, Fwindow_use_time)
5726 (Fwindow_total_height, Fwindow_total_width, Fwindow_new_total)
5727 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_left_column)
5728 (Fwindow_top_line, Fwindow_body_height, Fwindow_body_width)
5729 (Fwindow_hscroll, Fset_window_hscroll)
5730 (Fwindow_redisplay_end_trigger)
5731 (Fset_window_redisplay_end_trigger, Fwindow_edges)
5732 (Fwindow_pixel_edges, Fwindow_absolute_pixel_edges)
5733 (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
5734 (Fcoordinates_in_window_p, Fwindow_point, Fwindow_start)
5735 (Fwindow_end, Fset_window_point, Fset_window_start)
5736 (Fpos_visible_in_window_p, Fwindow_line_height)
5737 (Fwindow_dedicated_p, Fset_window_dedicated_p)
5738 (Fwindow_prev_buffers, Fset_window_prev_buffers)
5739 (Fwindow_next_buffers, Fwindow_parameters, Fwindow_parameter)
5740 (Fset_window_parameter, Fwindow_display_table)
5741 (Fset_window_display_table, Fdelete_other_windows_internal)
5742 (Fset_window_buffer, Fset_window_new_total)
5743 (Fset_window_new_normal, Fdelete_window_internal)
5744 (Fwindow_text_height, Fset_window_margins, Fwindow_margins)
5745 (Fset_window_fringes, Fwindow_fringes, Fset_window_scroll_bars)
5746 (Fwindow_scroll_bars): Check whether argument window is a valid or
5747 live window. Update doc-strings.
5748 (syms_of_window): New symbol Qwindow_valid_p.
5749 * keyboard.c (Fposn_at_x_y): Check whether argument
5750 frame_or_window denotes a valid window.
5751
5752 2012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
5753
5754 Fix previous char table change.
5755 * lisp.h (CHAR_TABLE_SET): Use sub_char_table_set_contents.
5756 * chartab.c (optimize_sub_char_table): Likewise.
5757
5758 2012-08-16 Chong Yidong <cyd@gnu.org>
5759
5760 * gtkutil.c (xg_get_font): Demand an Xft font (Bug#3228).
5761
5762 * xfont.c (xfont_open):
5763 * xftfont.c (xftfont_open): Set the font's max_width field.
5764
5765 * nsfont.m (nsfont_open): Similar to the Xft backend, set
5766 min_width to space_width and average_width to the average over
5767 printable ASCII characters.
5768 (ns_char_width): Code cleanup.
5769 (ns_ascii_average_width): New utility function.
5770
5771 * font.h (struct font): Update comments.
5772
5773 2012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
5774
5775 Simple interface to set Lisp_Object fields of character tables.
5776 * lisp.h (CSET): New macro.
5777 (char_table_set_extras, char_table_set_contents)
5778 (sub_char_table_set_contents): New function.
5779 * casetab.c, category.c, chartab.c, fns.c, fontset.c, search.c:
5780 * syntax.c: Adjust users.
5781
5782 2012-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
5783
5784 * eval.c (eval_sub): Bind lexical-binding.
5785 * lread.c (Qlexical_binding): Make non-static.
5786
5787 2012-08-15 Jan Djärv <jan.h.d@swipnet.se>
5788
5789 * nsmenu.m (popupSession): Remove.
5790 (pop_down_menu): Remove endModalSession.
5791 (timeout_handler:): New method.
5792 (runDialogAt:): Get next timeout. Start a NSTimer with that timeout.
5793 Call runModalForWindow. Check timer_fired when it returns.
5794 If not set, cancel timer and break out of loop.
5795 Otherwise loop again, with a new timeout.
5796
5797 * nsterm.m: Include fcntl.h if present.
5798 (fd_entry, t_readfds, inNsSelect): Remove.
5799 (select_writefds, select_valid, select_timeout, selfds)
5800 (select_mutex, apploopnr): Add.
5801 (EV_TRAILER): Call kbd_buffer_store_event_hold only if q_event_ptr.
5802 Otherwise call kbd_buffer_store_event.
5803 (ns_send_appdefined): Remove release of fd_entry.
5804 (ns_read_socket): Always send appdefined. Remove inNsSelect check.
5805 Increment and decrement apploopnr.
5806 (ns_select): If no file descriptors, just do a NSTimer.
5807 Otherwise copy read/write masks and start select thread (fd_handler).
5808 Start main loop and wait for application defined event.
5809 Inform select thread to stop selecting after main loop is exited.
5810 (ns_term_init): Create selfds pipe and set non-blocking.
5811 Initialize select_mutex. Start the select thread (fd_handler).
5812 (fd_handler:): Loop forever, wait for info from the main thread
5813 to either start or stop selecting. When select returns, send
5814 and appdefined event.
5815 (sendScrollEventAtLoc:fromEvent:): Check if q_event_ptr is set.
5816 If not call kbd_buffer_store_event.
5817
5818 * nsterm.h (EmacsApp): fd_handler takes id argument.
5819 (EmacsDialogPanel): Add timer_fired and timeout_handler.
5820
5821 * gtkutil.c (xg_mark_data): Use FRAME_X_P.
5822
5823 2012-08-15 Eli Zaretskii <eliz@gnu.org>
5824
5825 * region-cache.c (move_cache_gap): Update gap_len using the actual
5826 growth of the boundaries array. Do not change cache_len.
5827 (Bug#12196)
5828
5829 2012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
5830
5831 Generalize and cleanup font subsystem checks.
5832 * font.h (FONT_DEBUG, font_assert): Remove.
5833 * font.c, fontset.c, w32font.c, xfont.c, xftfont.c:
5834 Change font_assert to eassert. Use eassert where appropriate.
5835
5836 2012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
5837
5838 * gtkutil.c (xg_get_font): Use pango_units_to_double.
5839
5840 2012-08-15 Chong Yidong <cyd@gnu.org>
5841
5842 * gtkutil.c (xg_get_font): Rename from xg_get_font_name.
5843 When using the new font chooser, use gtk_font_chooser_get_font_desc to
5844 extract the font descriptor instead of just the font name.
5845 In that case, return a font spec instead of a string.
5846 (x_last_font_name): Move to this file from xfns.c.
5847
5848 * xfns.c (Fx_select_font): The return value can also be a font
5849 spec. Move x_last_font_name management to gtkutil.c.
5850
5851 * xfaces.c: Make font weight and style symbols non-static.
5852
5853 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
5854
5855 * minibuf.c (read_minibuf): Ignore caller's inhibit-read-only
5856 (bug#12117).
5857
5858 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
5859
5860 * alloc.c (Fgarbage_collect): Use plural form consistently.
5861
5862 2012-08-14 Eli Zaretskii <eliz@gnu.org>
5863
5864 * keyboard.c (command_loop_1): Reset ignore_mouse_drag_p flag each
5865 iteration through the command loop. Fixes a problem whereby mouse
5866 movements are ignored until the first mouse click.
5867
5868 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
5869
5870 Use bool, not int, for Lisp booleans.
5871 This is more natural, and on my platform (GCC 4.7.1 x86-64) it
5872 makes Emacs a bit smaller and presumably a bit faster.
5873 * lisp.h: Include <stdbool.h>.
5874 (struct Lisp_Boolfwd, defvar_bool):
5875 * lread.c (defvar_bool): Use bool, not int, for Lisp booleans.
5876 * regex.c [!emacs]: Include <stdbool.h>.
5877 (false, true): Remove; <stdbool.h> does this for us now.
5878
5879 2012-08-14 Chong Yidong <cyd@gnu.org>
5880
5881 * character.c (Fcharacterp): Doc fix (Bug#12076).
5882
5883 * data.c (Findirect_variable): Doc fix (Bug#11040).
5884
5885 * chartab.c (Fmap_char_table): Doc fix (Bug#12061).
5886
5887 * editfns.c (Fformat): Doc fix (Bug#12059).
5888 (Fsave_current_buffer): Doc fix (Bug#11542).
5889
5890 2012-08-14 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
5891
5892 * keyboard.c (access_keymap_keyremap): Accept anonymous functions
5893 (bug#12022).
5894
5895 2012-08-14 Martin Rudalics <rudalics@gmx.at>
5896
5897 * frame.c (make_frame_without_minibuffer, make_minibuffer_frame)
5898 (delete_frame, Fmake_frame_invisible, Ficonify_frame):
5899 * minibuf.c (choose_minibuf_frame, read_minibuf):
5900 * w32fns.c (x_create_tip_frame):
5901 * xfns.c (x_create_tip_frame): Call set_window_buffer instead of
5902 Fset_window_buffer (Bug#11984, Bug#12025, Bug#12026).
5903
5904 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
5905
5906 * intervals.c (offset_intervals): Remove obsolete comment.
5907
5908 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
5909
5910 * gtkutil.c (find_rtl_image, update_frame_tool_bar): Use NILP.
5911
5912 2012-08-14 Gergely Risko <gergely@risko.hu>
5913
5914 * coding.c (decode_coding): Record buffer modification before
5915 disabling undo_list (Bug#11773).
5916
5917 2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
5918
5919 Revert and cleanup some recent overlay changes.
5920 * buffer.h (enum overlay_type): Remove.
5921 (buffer_get_overlays, buffer_set_overlays): Likewise.
5922 (buffer_set_overlays_before, buffer_set_overlays_after):
5923 New function. Adjust users.
5924 (unchain_both): Add eassert.
5925
5926 2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
5927
5928 * gtkutil.c (update_frame_tool_bar): Use EQ where appropriate.
5929
5930 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
5931
5932 * gtkutil.c (xg_mark_data): Don't assume C99.
5933
5934 2012-08-13 Jan Djärv <jan.h.d@swipnet.se>
5935
5936 * gtkutil.c (xg_frame_tb_info): New struct.
5937 (TB_INFO_KEY): New define.
5938 (xg_free_frame_widgets): Free xg_frame_tb_info for frame if present.
5939 (xg_mark_data): Mark Lisp_Objects in xg_frame_tb_info.
5940 (xg_create_tool_bar): Allocate and initialize a xg_frame_tb_info
5941 if not present.
5942 (update_frame_tool_bar): Return early if data in xg_frame_tb_info
5943 is up to date. Otherwise store new data.
5944 (free_frame_tool_bar): Free xg_frame_tb_info if present.
5945
5946 2012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
5947
5948 Use KSET for write access to Lisp_Object members of struct kboard.
5949 * keyboard.h (KSET): New macro.
5950 * callint.c, category.c, frame.c, keyboard.c, keyboard.h, macros.c:
5951 * msdos.c, nsfns.m, nsterm.m, term.c, w32fns.c, w32term.c, xfns.c:
5952 * xterm.c: Adjust users.
5953
5954 2012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
5955
5956 Use BSET for write access to Lisp_Object members of struct buffer.
5957 * buffer.h (BSET): New macro.
5958 * buffer.c, casetab.c, cmds.c, coding.c, data.c, editfns.c:
5959 * fileio.c, frame.c, indent.c, insdel.c, intervals.c, keymap.c:
5960 * minibuf.c, print.c, process.c, syntax.c, undo.c, w32fns.c:
5961 * window.c, xdisp.c, xfns.c: Adjust users.
5962
5963 2012-08-11 BT Templeton <bpt@hcoop.net> (tiny change)
5964
5965 * lread.c (syms_of_lread): Initialize Vlexical_binding.
5966
5967 2012-08-11 Jan Djärv <jan.h.d@swipnet.se>
5968
5969 * nsterm.m (not_in_argv): New function.
5970 (application:openFile, application:openTempFile:):
5971 (application:openFileWithoutUI:, application:openFiles:): Open file
5972 if not_in_argv returns non-zero (bug#12171).
5973
5974 * gtkutil.c (gtk_font_chooser_dialog_new, GTK_FONT_CHOOSER)
5975 (gtk_font_chooser_set_font, gtk_font_chooser_get_font):
5976 Define for Gtk+ versions less than 3.2.
5977 (xg_get_font_name): Use those functions/macros here.
5978 Reported by Frans Oilinki <moilinki@gmail.com>.
5979
5980 2012-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5981
5982 * unexmacosx.c (copy_data_segment): Copy initialized data in
5983 statically linked libraries from input file rather than memory.
5984
5985 * unexmacosx.c (print_load_command_name): Add cases LC_MAIN,
5986 LC_SOURCE_VERSION, and LC_DYLIB_CODE_SIGN_DRS.
5987 (dump_it) [LC_DYLIB_CODE_SIGN_DRS]: Call copy_linkedit_data.
5988
5989 2012-08-10 Glenn Morris <rgm@gnu.org>
5990
5991 * conf_post.h (IF_LINT, lint_assume): Move here from lisp.h.
5992 * lisp.h (IF_LINT, lint_assume): Move to conf_post.h.
5993
5994 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
5995
5996 Fix last change to allow compilation with low optimization levels.
5997 * intervals.c (INTERVALS_INLINE): Define to EXTERN_INLINE.
5998 Reported by Jan Djärv <jan.h.d@swipnet.se>.
5999
6000 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
6001
6002 Use common inline syntax in intervals.h.
6003 * intervals.h (INTERVALS_INLINE): New macro.
6004 Change all users from LISP_INLINE.
6005
6006 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
6007
6008 Define Qnone once for all platforms.
6009 * frame.c (Qnone): Define here.
6010 (syms_of_frame): DEFSYM it.
6011 * lisp.h (Qnone): New declaration.
6012 * nsfns.m, nsterm.h, nsterm.m, w32fns.c, w32font.c:
6013 * xfns.c: Remove duplication. Adjust users.
6014
6015 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
6016
6017 Remove unused macros from intervals.h.
6018 * intervals.h (MERGE_INSERTIONS, DISPLAY_INVISIBLE_GLYPH): Remove.
6019 * intervals.c: Adjust comment.
6020
6021 2012-08-10 Eli Zaretskii <eliz@gnu.org>
6022
6023 * w32fns.c <w32_unicode_gui>: New static variable.
6024 (globals_of_w32fns): Initialize it according to os_subtype.
6025 (w32_init_class, w32_msg_pump, w32_wnd_proc): Use it instead of
6026 testing os_subtype.
6027
6028 2012-08-10 Joakim Hårsman <joakim.harsman@gmail.com> (tiny change)
6029 Eli Zaretskii <eliz@gnu.org>
6030
6031 Fix bug #10299 with Unicode characters sent by customized
6032 keyboards created by MSKLC.
6033 * w32fns.c (INIT_WINDOW_CLASS): New macro.
6034 (w32_init_class): Use it to initialize the Emacs class with either
6035 ANSI or Unicode API calls.
6036 (w32_msg_pump): Call GetMessageW and DispatchMessageW on NT and
6037 later.
6038 (w32_wnd_proc): If the character code sent by WM_CHAR or
6039 WM_SYSCHAR is above 255, post a WM_UNICHAR message, not the
6040 original message. Call DefWindowProcW on NT and later.
6041
6042 2012-08-10 Glenn Morris <rgm@gnu.org>
6043
6044 * Makefile.in (config_h): Fix conf_post.h out-of-tree build location.
6045
6046 * lisp.h (DIRECTORY_SEP): Let configure set it.
6047
6048 2012-08-09 Dmitry Antipov <dmantipov@yandex.ru>
6049
6050 Use TSET for write access to Lisp_Object slots of struct terminal.
6051 * termhooks.h (TSET): New macro.
6052 * coding.c, terminal.c, xselect.c: Adjust users.
6053
6054 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
6055
6056 * xdisp.c (safe_eval_handler): Remove prototype. Receive args describing
6057 the failing expression, include them in the error message.
6058 * eval.c (internal_condition_case_n): Pass nargs and args to hfun.
6059 * lisp.h (internal_condition_case_n): Update declaration.
6060
6061 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
6062
6063 Inline functions to examine and change buffer overlays.
6064 * buffer.c (unchain_both): New function.
6065 * buffer.h (buffer_get_overlays, buffer_set_overlays):
6066 (buffer_has_overlays): New function.
6067 (enum overlay_type): New enum.
6068 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c:
6069 * insdel.c, intervals.c, print.c, xdisp.c: Adjust users.
6070
6071 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
6072
6073 Inline functions to examine and change buffer intervals.
6074 * alloc.c (mark_interval_tree): Remove.
6075 (MARK_INTERVAL_TREE): Simplify.
6076 (UNMARK_BALANCE_INTERVALS): Remove. Adjust users.
6077 * intervals.c (buffer_balance_intervals): New function.
6078 (graft_intervals_into_buffer): Adjust indentation.
6079 (set_intervals_multibyte): Simplify.
6080 * buffer.h (BUF_INTERVALS): Remove.
6081 (buffer_get_intervals, buffer_set_intervals): New function.
6082 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c, insdel.c:
6083 * intervals.c, textprop.c: Adjust users.
6084
6085 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
6086
6087 Inline functions to examine and change string intervals.
6088 * lisp.h (STRING_INTERVALS, STRING_SET_INTERVALS): Remove.
6089 (string_get_intervals, string_set_intervals): New function.
6090 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
6091 * lread.c, print.c, textprop.c: Adjust users.
6092
6093 2012-08-08 Glenn Morris <rgm@gnu.org>
6094
6095 * lisp.mk (lisp): Remove language/persian.elc.
6096
6097 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
6098
6099 Cleanup intervals.
6100 * intervals.h (NULL_INTERVAL, DEFAULT_INTERVAL): Remove.
6101 (NULL_INTERVAL_P): Likewise. Adjust users.
6102 (FRONT_STICKY_P, END_NONSTICKY_P, FRONT_NONSTICKY_P):
6103 Adjust comment. Move under #if 0.
6104 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
6105 * print.c, syntax.c, textprop.c, xdisp.c: Adjust users.
6106
6107 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
6108
6109 Check total length of intervals with eassert.
6110 * intervals.h (CHECK_TOTAL_LENGTH): Remove.
6111 * intervals.c: Change all users to eassert.
6112
6113 2012-08-07 Eli Zaretskii <eliz@gnu.org>
6114
6115 * .gdbinit (xframe, xwindow, nextcons, xcar, xcdr, xlist):
6116 Rename fields to match removal of FGET and WGET and disuse of
6117 INTERNAL_FIELD in Lisp_Cons.
6118
6119 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
6120
6121 Revert and cleanup Lisp_Cons, Lisp_Misc and Lisp_Symbol things.
6122 * lisp.h (struct Lisp_Symbol): Change xname to meaningful
6123 name since all xname users are fixed long time ago. Do not
6124 use INTERNAL_FIELD.
6125 (set_symbol_name, set_symbol_function, set_symbol_plist):
6126 (set_symbol_next, set_overlay_plist): New function.
6127 (struct Lisp_Cons): Do not use INTERNAL_FIELD.
6128 (struct Lisp_Overlay): Likewise.
6129 (CVAR, MVAR, SVAR): Remove.
6130 * alloc.c, buffer.c, buffer.h, bytecode.c, cmds.c, data.c:
6131 * doc.c, eval.c, fns.c, keyboard.c, lread.c, nsselect.m:
6132 * xterm.c: Adjust users.
6133 * .gdbinit: Change to use name field of struct Lisp_Symbol
6134 where appropriate.
6135
6136 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
6137
6138 Basic functions to set Lisp_Object and pointer slots of intervals.
6139 * intervals.h (interval_set_parent, interval_set_object):
6140 (interval_set_left, interval_set_right, interval_set_plist):
6141 (interval_copy_parent): New function.
6142 (SET_INTERVAL_OBJECT, SET_INTERVAL_PARENT, INTERVAL_PTR_SIZE): Remove.
6143 (RESET_INTERVAL, COPY_INTERVAL_CACHE, MERGE_INTERVAL_CACHE):
6144 Adjust indentation.
6145 (INTERVAL_SIZE): Remove. Adjust users.
6146 * alloc.c, intervals.c, lread.c, textprop.c: Use new functions.
6147
6148 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
6149
6150 Drop PGET and revert read access to Lisp_Objects slots of Lisp_Process.
6151 * process.h (PGET): Remove.
6152 (struct Lisp_Process): Do not use INTERNAL_FIELD.
6153 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
6154
6155 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
6156
6157 Drop WGET and revert read access to Lisp_Objects slots of struct window.
6158 * window.h (WGET): Remove.
6159 (struct window): Do not use INTERNAL_FIELD.
6160 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
6161 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
6162 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
6163 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
6164 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
6165 Adjust users.
6166
6167 2012-08-07 Chong Yidong <cyd@gnu.org>
6168
6169 * window.c (Fwindow_edges, Fwindow_pixel_edges)
6170 (Fwindow_absolute_pixel_edges, Fdelete_other_windows_internal)
6171 (Fdelete_window_internal): Signal an error if the window is not on
6172 a live frame (Bug#12025).
6173
6174 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
6175
6176 Drop FGET and revert read access to Lisp_Objects slots of struct frame.
6177 * frame.h (FGET): Remove.
6178 (struct frame): Do not use INTERNAL_FIELD.
6179 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
6180 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
6181 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
6182 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
6183
6184 2012-08-06 Juanma Barranquero <lekktu@gmail.com>
6185
6186 * w32.c: Silence compiler warnings.
6187 (map_w32_filename): Remove unused variable `is_fat'.
6188 (chase_symlinks): Add parentheses around expression.
6189
6190 2012-08-06 Glenn Morris <rgm@gnu.org>
6191
6192 * sysdep.c: Respect BROKEN_GETWD.
6193
6194 * dispnew.c (GNU_LIBRARY_PENDING_OUTPUT_COUNT, PENDING_OUTPUT_COUNT):
6195 Let configure handle it.
6196 (stdio_ext.h) [DISPNEW_NEEDS_STDIO_EXT]: Include it.
6197
6198 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
6199
6200 Use GCALIGNMENT where appropriate.
6201 * alloc.c (XMALLOC_HEADER_ALIGNMENT, roundup_size):
6202 (union aligned_Lisp_Symbol, union aligned_Lisp_Misc):
6203 (mark_maybe_pointer, pure_alloc): Change to use GCALIGNMENT.
6204
6205 2012-08-06 Eli Zaretskii <eliz@gnu.org>
6206
6207 * w32menu.c (set_frame_menubar, initialize_frame_menubar):
6208 Don't use FRAME_MENU_BAR_ITEMS as an lvalue.
6209
6210 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
6211
6212 * buffer.h (struct buffer): Revert `indirections' to a simple int;
6213 that should be sufficient for everyone.
6214
6215 2012-08-06 Jan Djärv <jan.h.d@swipnet.se>
6216
6217 * keyboard.c (timer_check_2): Add break so timer_check returns next
6218 timeout.
6219
6220 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
6221
6222 Fix Windows build errors introduced after converting to WGET and WSET.
6223 * w32term.c (w32_set_vertical_scroll_bar): Change to use WSET.
6224 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
6225
6226 2012-08-06 Jan Djärv <jan.h.d@swipnet.se>
6227
6228 * nsterm.m (ns_frame_rehighlight): Use FSET.
6229
6230 * nsmenu.m (ns_update_menubar): Use FSET.
6231
6232 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
6233
6234 Separate read and write access to Lisp_Object slots of Lisp_Process.
6235 * process.h (PGET, PSET): New macros similar to AREF and ASET.
6236 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
6237
6238 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
6239
6240 Separate read and write access to Lisp_Object slots of struct window.
6241 * window.h (WGET, WSET): New macros similar to AREF and ASET.
6242 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
6243 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
6244 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
6245 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
6246 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
6247 Adjust users.
6248
6249 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
6250
6251 Fix Windows build errors introduced after converting to FGET and FSET.
6252 * w32term.c (x_frame_rehighlight, x_scroll_bar_create):
6253 (w32_condemn_scroll_bars, w32_redeem_scroll_bar):
6254 (w32_judge_scroll_bars): Change to use FSET.
6255 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
6256
6257 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
6258
6259 Fix replacement typo.
6260 * window.c (replace_window): Set root_window instead of
6261 selected_window. This fixes a total window subsystem
6262 malfunction reported by Bastien Guerry <bzg@gnu.org>.
6263
6264 2012-08-06 Glenn Morris <rgm@gnu.org>
6265
6266 * lisp.mk (lisp): Add language/persian.elc.
6267
6268 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
6269
6270 Separate read and write access to Lisp_Object slots of struct frame.
6271 * frame.h (FGET, FSET): New macros similar to AREF and ASET.
6272 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
6273 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
6274 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
6275 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
6276
6277 2012-08-05 Andreas Schwab <schwab@linux-m68k.org>
6278
6279 * emacs.c (decode_env_path): Only use defaulted if WINDOWSNT.
6280
6281 2012-08-05 Dmitry Antipov <dmantipov@yandex.ru>
6282
6283 Generalize common compile-time constants.
6284 * lisp.h (header_size, bool_header_size, word_size): Now here.
6285 (struct Lisp_Vector): Add comment.
6286 (struct Lisp_Bool_Vector): Move up to define handy constants.
6287 (VECSIZE, PSEUDOVECSIZE): Simplify.
6288 (SAFE_ALLOCA_LISP): Use new constant. Adjust indentation.
6289 * buffer.c, buffer.h, bytecode.c, callint.c, eval.c, fns.c:
6290 * font.c, fontset.c, keyboard.c, keymap.c, macros.c, menu.c:
6291 * msdos.c, w32menu.c, w32term.h, window.c, xdisp.c, xfaces.c:
6292 * xfont.c, xmenu.c: Use word_size where appropriate.
6293
6294 2012-08-05 Lawrence Mitchell <wence@gmx.li>
6295
6296 * search.c (Freplace_match): Treat \? in the replacement text
6297 literally (Bug#8161).
6298
6299 2012-08-05 Chong Yidong <cyd@gnu.org>
6300
6301 * term.c (Vsuspend_tty_functions, Vresume_tty_functions):
6302 * frame.c (Vdelete_frame_functions):
6303 * emacs.c (Vkill_emacs_hook): Doc fix.
6304
6305 2012-08-04 Eli Zaretskii <eliz@gnu.org>
6306
6307 * xfns.c (x_set_menu_bar_lines): Fix compilation error in
6308 --with-x-toolkit=no builds.
6309 Reported by Carsten Mattner <carstenmattner@gmail.com>.
6310
6311 2012-08-04 Chong Yidong <cyd@gnu.org>
6312
6313 * syntax.c (Fmodify_syntax_entry): Doc fix.
6314
6315 2012-08-04 Eli Zaretskii <eliz@gnu.org>
6316
6317 Fix startup warnings about ../site-lisp on MS-Windows. (Bug#11959)
6318 * w32.c (init_environment): Change the default values of many
6319 environment variables in dflt_envvars[] to NULL, to avoid pushing
6320 them into environment when they were not already defined.
6321 Remove the code that deletes site-lisp subdirectories from the default
6322 value of EMACSLOADPATH, as it is no longer needed.
6323 (check_windows_init_file): Now external, not static.
6324 Use Vload_path as is, without adding anything, as this function is now
6325 called when Vload_path is already set up.
6326
6327 * w32.h (check_windows_init_file): Add prototype.
6328
6329 * emacs.c (init_cmdargs) [WINDOWSNT]: When running from the build
6330 directory, ignore the /*/i386/ tail in Vinvocation_directory, for
6331 compatibility with Posix platforms.
6332 (main): Move the call to check_windows_init_file to here from
6333 w32.c.
6334 (decode_env_path) [WINDOWSNT]: Expand the %emacs_dir%/ prefix, if
6335 any, in the DEFALT argument into the root of the Emacs build or
6336 installation tree, as appropriate.
6337
6338 * callproc.c (init_callproc_1): Call decode_env_path instead of
6339 doing its equivalent by hand.
6340 (init_callproc): Replace DOS_NT condition with MSDOS, thus letting
6341 the code that sets Vexec_path run on MS-Windows.
6342
6343 * lread.c (init_lread): Add comments to #ifdef's.
6344
6345 * msdos.c (dos_set_window_size, IT_update_begin)
6346 (IT_frame_up_to_date, IT_set_frame_parameters): Use FVAR and WVAR
6347 instead of direct references.
6348
6349 2012-08-04 Paul Eggert <eggert@cs.ucla.edu>
6350
6351 Export DEFAULT_REHASH_* to GDB.
6352 * lisp.h (DEFAULT_REHASH_THRESHOLD, DEFAULT_REHASH_SIZE):
6353 Now constants, not macros.
6354
6355 2012-08-03 Paul Eggert <eggert@cs.ucla.edu>
6356
6357 Remove unnecessary casts involving pointers.
6358 These casts are no longer needed now that we assume C89 or later,
6359 since they involve casting to or from void *.
6360 * alloc.c (make_pure_string, make_pure_c_string, pure_cons)
6361 (make_pure_float, make_pure_vector):
6362 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP):
6363 * macros.c (Fstart_kbd_macro):
6364 * menu.c (find_and_return_menu_selection):
6365 * minibuf.c (read_minibuf_noninteractive):
6366 * sysdep.c (closedir):
6367 * xdisp.c (x_produce_glyphs):
6368 * xfaces.c (compare_fonts_by_sort_order):
6369 * xfns.c (x_real_positions, select_visual):
6370 * xselect.c (x_stop_queuing_selection_requests)
6371 (x_get_window_property, x_get_window_property_as_lisp_data):
6372 * xterm.c (x_set_frame_alpha, x_find_modifier_meanings):
6373 Remove unnecessary pointer casts.
6374 * alloc.c (record_xmalloc): New function.
6375 * lisp.h (record_xmalloc): New decl.
6376 (SAFE_ALLOCA): Now takes just one arg -- the size -- and acts
6377 more like a function. This is because the pointer cast is not
6378 needed. All uses changed.
6379 * print.c (print_string, print_error_message): Avoid length recalc.
6380
6381 Improve fix for macroexp crash with debugging (Bug#12118).
6382 * lisp.h (ASET) [ENABLE_CHECKING]: Pay attention to
6383 ARRAY_MARK_FLAG when checking subscripts, because ASET is
6384 not supposed to be invoked from the garbage collector.
6385 See Andreas Schwab in <http://bugs.gnu.org/12118#25>.
6386 (gc_aset): New function, which is like ASET but can be
6387 used in the garbage collector.
6388 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
6389 (set_hash_index): Use it instead of ASET.
6390
6391 2012-08-03 Eli Zaretskii <eliz@gnu.org>
6392
6393 Support symlinks on latest versions of MS-Windows.
6394 * w32.c: Include winioctl.h and aclapi.h.
6395 (is_symlink, chase_symlinks, enable_privilege, restore_privilege)
6396 (revert_to_self): Forward declarations of static functions.
6397 <static BOOL g_b_init_get_security_info>:
6398 <g_b_init_create_symbolic_link>: New static flags.
6399 (globals_of_w32): Initialize them to zero.
6400 (GetSecurityInfo_Proc, CreateSymbolicLink_Proc): New typedefs.
6401 (map_w32_filename): Improve commentary. Simplify switch.
6402 (SYMBOLIC_LINK_FLAG_DIRECTORY): Define if not defined in system
6403 headers (most versions of MinGW w32api don't).
6404 (get_security_info, create_symbolic_link)
6405 (get_file_security_desc_by_handle, is_symlink, chase_symlinks):
6406 New functions.
6407 (sys_access, sys_chmod): Call 'chase_symlinks' to resolve symlinks
6408 in the argument file name.
6409 (sys_access): Call unc_volume_file_attributes only if
6410 GetFileAttributes fails with network-related error codes.
6411 (sys_rename): Diagnose renaming of a symlink when the user doesn't
6412 have the required privileges.
6413 (get_file_security_desc_by_name): Rename from
6414 get_file_security_desc.
6415 (stat_worker): New function, with most of the guts of 'stat', and
6416 with addition of handling of symlinks and support for 'lstat'.
6417 If possible, get file's attributes and security information by
6418 handle, not by name. Produce S_IFLNK bit for symlinks, when
6419 called from 'lstat'.
6420 (stat, lstat): New functions, call 'stat_worker'.
6421 (symlink, readlink, careadlinkat): Rewritten to create and resolve
6422 symlinks when the underlying filesystem supports them.
6423
6424 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
6425
6426 Fix macroexp crash on Windows with debugging (Bug#12118).
6427 * lisp.h (ASET) [ENABLE_CHECKING]: Ignore ARRAY_MARK_FLAG when
6428 checking subscripts; problem introduced with the recent
6429 "ASET (a, i, v)" rather than "AREF (a, i) = v" patch.
6430 (ARRAY_MARK_FLAG): Now a macro as well as a constant,
6431 since it's used in non-static inline functions now.
6432
6433 * xfaces.c (face_at_buffer_position, face_for_overlay_string):
6434 Don't assume buffer size fits in 'int'. Remove unused local.
6435
6436 Use C99-style 'extern inline' if available.
6437 * buffer.h (BUFFER_INLINE):
6438 * category.h (CATEGORY_INLINE):
6439 * character.h (CHARACTER_INLINE):
6440 * charset.h (CHARSET_INLINE):
6441 * composite.h (COMPOSITE_INLINE):
6442 * dispextern.h (DISPEXTERN_INLINE):
6443 * lisp.h (LISP_INLINE):
6444 * systime.h (SYSTIME_INLINE):
6445 New macro, replacing 'static inline' in this header.
6446 * buffer.h, category.h, character.h, charset.h, composite.h:
6447 * dispextern.h, lisp.h, systime.h:
6448 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
6449 * alloc.c (LISP_INLINE):
6450 * buffer.c (BUFFER_INLINE):
6451 * category.c (CATEGORY_INLINE):
6452 * character.c (CHARACTER_INLINE):
6453 * charset.c (CHARSET_INLINE):
6454 * composite.c (COMPOSITE_INLINE):
6455 * dispnew.c (DISPEXTERN_INLINE):
6456 * sysdep.c (SYSTIME_INLINE):
6457 Define to EXTERN_INLINE, so that the corresponding functions
6458 are compiled into code.
6459 * conf_post.h (INLINE, EXTERN_INLINE, INLINE_HEADER_BEGIN)
6460 (INLINE_HEADER_END): New macros.
6461 * lisp.h (PSEUDOVECTOR_FLAG): Now a macro as well as a constant,
6462 since it's used in non-static inline functions now.
6463 (VALMASK) [!USE_LSB_TAG]: Likewise.
6464
6465 2012-08-02 Glenn Morris <rgm@gnu.org>
6466
6467 * s/: Remove empty directory.
6468
6469 * s/ms-w32.h: Move to ../nt/inc.
6470 * makefile.w32-in (TAGS, TAGS-gmake, MS_W32_H):
6471 Update for new ms-w32.h location.
6472
6473 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
6474
6475 Port to Solaris 8.
6476 * syswait.h (WRETCODE): Remove, consistently with ../configure.ac.
6477
6478 2012-08-02 Glenn Morris <rgm@gnu.org>
6479
6480 * nsterm.m (ns_exec_path, ns_load_path): Use SEPCHAR rather than
6481 hard-coding the path separator.
6482
6483 2012-08-01 Paul Eggert <eggert@cs.ucla.edu>
6484
6485 Use "ASET (a, i, v)" rather than "AREF (a, i) = v".
6486 This how ASET and AREF are supposed to work, and makes
6487 it easier to think about future improvements. See
6488 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00026.html>.
6489 * charset.h (set_charset_attr): New function.
6490 All lvalue-style uses of CHARSET_DECODER etc. changed to use it.
6491 * lisp.h (ASET): Rewrite so as not to use AREF in an lvalue style.
6492 (aref_addr): New function. All uses of &AREF(...) changed.
6493 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
6494 (set_hash_index): New functions. All lvalue-style uses of
6495 HASH_KEY etc. changed.
6496 * keyboard.c (set_prop): New function. All lvalue-style uses
6497 of PROP changed.
6498
6499 2012-08-01 Alp Aker <alp.tekin.aker@gmail.com>
6500
6501 * nsterm.m (ns_set_vertical_scroll_bar, ns_redeem_scroll_bar)
6502 (EmacsWindow-accessibilityAttributeValue, EmacsScroller-initFrame:)
6503 (EmacsScroller-dealloc): Adjust to use WVAR. (Bug#12114)
6504 * nsfns.m (ns_set_name_as_filename): Likewise.
6505 * nsmenu.m (ns_update_menubar): Likewise.
6506 * nsselect.m (symbol_to_nsstring): Adjust to use SVAR.
6507
6508 2012-08-01 Eli Zaretskii <eliz@gnu.org>
6509
6510 * .gdbinit (xcar, xcdr, xlist, xwindow, nextcons, xprintsym):
6511 Adapt to latest changes in field names of the corresponding Lisp
6512 objects.
6513
6514 * xdisp.c (try_window_id): Use WVAR in IF_DEBUG code.
6515
6516 2012-08-01 Glenn Morris <rgm@gnu.org>
6517
6518 * s/msdos.h: Remove file.
6519 * conf_post.h [MSDOS]: New section, moved from s/msdos.h.
6520 * Makefile.in (S_FILE): Remove.
6521 (config_h): Remove S_FILE.
6522
6523 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
6524
6525 * s/ms-w32.h (DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP):
6526 Remove; moved to nt/config.nt.
6527
6528 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
6529
6530 Use INTERNAL_FIELD for conses and overlays.
6531 * lisp.h (struct Lisp_Cons): Use INTERNAL_FIELD.
6532 Remove obsolete comment.
6533 (MVAR): New macro.
6534 (struct Lisp_Overlay): Use INTERNAL_FIELD.
6535 * alloc.c, buffer.c, buffer.h, fns.c: Adjust users.
6536
6537 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
6538
6539 Use INTERNAL_FIELD for symbols.
6540 * lisp.h (SVAR): New macro. Adjust users.
6541 * alloc.c, bytecode.c, cmds.c, data.c, doc.c, eval.c:
6542 * fns.c, keyboard.c, lread.c, xterm.c: Users changed.
6543
6544 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
6545
6546 Use INTERNAL_FIELD for processes.
6547 * process.h (PVAR): New macro. Adjust style.
6548 (struct Lisp_Process): Change Lisp_Object members to INTERNAL_FIELD.
6549 * print.c, process.c, sysdep.c, w32.c, xdisp.c: Users changed.
6550
6551 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
6552
6553 Use INTERNAL_FIELD for windows.
6554 * window.h (WVAR): New macro.
6555 (struct window): Change Lisp_Object members to INTERNAL_FIELD.
6556 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
6557 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
6558 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, nsterm.m, print.c:
6559 * textprop.c, w32fns.c, w32menu.c, w32term.c, window.c, xdisp.c:
6560 * xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
6561
6562 2012-08-01 Paul Eggert <eggert@cs.ucla.edu>
6563
6564 * coding.h (CODING_ATTR_FLUSHING): Remove; unused and wouldn't work.
6565
6566 2012-08-01 Glenn Morris <rgm@gnu.org>
6567
6568 * lisp.h (IS_DIRECTORY_SEP, IS_DEVICE_SEP, IS_ANY_SEP):
6569 Move to configure.ac.
6570
6571 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
6572
6573 * makefile.w32-in (CONFIG_H): Update dependencies.
6574 (CONF_POST_H): New macro.
6575
6576 * s/ms-w32.h (SEPCHAR, NULL_DEVICE): Remove; moved to nt/config.nt.
6577
6578 2012-07-31 Glenn Morris <rgm@gnu.org>
6579
6580 * Makefile.in (S_FILE): No longer set by configure.
6581
6582 * conf_post.h (config_opsysfile): Move earlier, so that WINDOWSNT
6583 is available.
6584 (alloca.h) [WINDOWSNT]: Don't include it on MS Windows.
6585
6586 * process.h (NULL_DEVICE):
6587 * emacs.c (SEPCHAR):
6588 * editfns.c (USER_FULL_NAME): Let configure set them.
6589
6590 * s/README, s/template.h: Remove files.
6591
6592 * conf_post.h [HPUX]: Undefine HAVE_RANDOM and HAVE_RINT.
6593
6594 * conf_post.h (AMPERSAND_FULL_NAME, subprocesses):
6595 Move to configure.ac.
6596
6597 2012-07-31 Eli Zaretskii <eliz@gnu.org>
6598
6599 * .gdbinit (xframe): Adapt to introduction of FVAR and the
6600 resulting renaming of 'struct frame' members.
6601
6602 * w32menu.c (w32_menu_show): Revert bogus introduction of FVAR.
6603
6604 * fontset.c (dump_fontset): Fix compilation with ENABLE_CHECKING
6605 after introduction of FVAR.
6606
6607 2012-07-31 Jan Djärv <jan.h.d@swipnet.se>
6608
6609 * nsmenu.m (update_frame_tool_bar): Change key from NSObject* to id.
6610
6611 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Use drawInRect
6612 instead of compositeToPoint.
6613 (applicationShouldTerminate): Pass NS String literal to NSRunAlertPanel.
6614
6615 * nsfns.m, nsmenu.m, nsterm.m: Adopt to struct frame/FVAR changes.
6616
6617 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
6618
6619 Generalize INTERNAL_FIELD between buffers, keyboards and frames.
6620 * lisp.h (INTERNAL_FIELD): New macro.
6621 * buffer.h (BUFFER_INTERNAL_FIELD): Remove.
6622 (BVAR): Change to use INTERNAL_FIELD.
6623 * keyboard.h (KBOARD_INTERNAL_FIELD): Likewise.
6624 (KVAR): Change to use INTERNAL_FIELD.
6625 * frame.h (FVAR): New macro.
6626 (struct frame): Use INTERNAL_FIELD for all Lisp_Object fields.
6627 * alloc.c, buffer.c, data.c, dispnew.c, dosfns.c, eval.c, frame.c:
6628 * fringe.c, gtkutil.c, minibuf.c, nsfns.m, nsterm.m, print.c:
6629 * term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
6630 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
6631
6632 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
6633
6634 Miscellaneous fixes for non-default X toolkits.
6635 * xfns.c (Fx_file_dialog): Change to SSDATA to avoid warnings.
6636 * xterm.c (x_frame_of_widget): Remove redundant prototype.
6637 Move under #ifdef USE_LUCID.
6638 (x_create_toolkit_scroll_bar): Adjust scroll_bar_name
6639 definition and usage to avoid warnings.
6640
6641 2012-07-31 Jan Djärv <jan.h.d@swipnet.se>
6642
6643 * nsterm.m (openFiles): Fix previous checkin.
6644
6645 2012-07-31 Paul Eggert <eggert@cs.ucla.edu>
6646
6647 * indent.c (compute_motion): Remove unused local.
6648
6649 2012-07-31 Glenn Morris <rgm@gnu.org>
6650
6651 * s/usg5-4-common.h (wait3, WRETCODE): Let configure set them.
6652
6653 * conf_post.h [USG5_4]:
6654 Move remaining contents of s/usg5-4-common.h here.
6655 * s/usg5-4-common.h: Remove file.
6656
6657 * conf_post.h [IRIX6_5]: Move remaining contents of s/irix6-5.h here.
6658 * s/irix6-5.h: Remove file.
6659
6660 * conf_post.h [DARWIN_OS]: Move remaining contents of s/darwin.h here.
6661 * s/darwin.h: Remove file.
6662
6663 * conf_post.h [HPUX]: Move random, srandom here from s/hpux10-20.h.
6664 * s/hpux10-20.h: Remove file, which is now empty.
6665
6666 2012-07-30 Glenn Morris <rgm@gnu.org>
6667
6668 * conf_post.h: New, split from configure.ac's AH_BOTTOM.
6669 * Makefile.in (config_h): Add conf_post.h.
6670 * makefile.w32-in (CONFIG_H): Add conf_post.h.
6671
6672 2012-07-30 Jan Djärv <jan.h.d@swipnet.se>
6673
6674 * nsterm.m (ns_do_open_file): New variable.
6675 (ns_term_init): Set ns_do_open_file to YES after run returns.
6676 (openFile, openTempFile, openFileWithoutUI, openFiles):
6677 Open files only if ns_do_open_file.
6678
6679 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
6680
6681 * lisp.h (SWITCH_ENUM_CAST): Remove. All uses removed.
6682 This no-op macro hasn't been needed for many years.
6683 * src/regex.c (SWITCH_ENUM_CAST) [!emacs]: Likewise.
6684
6685 Export DIRECTORY_SEP, TYPEMASK, VALMASK to GDB.
6686 * alloc.c (gdb_make_enums_visible) [USE_LSB_TAG]: Add lsb_bits.
6687 * lisp.h (enum lsb_bits) [USE_LSB_TAG]: New enum, for
6688 gdb_make_enums_visible.
6689 (TYPEMASK, VALMASK) [USE_LSB_TAGS]: Now enum constants, not macros.
6690 (DIRECTORY_SEP): Now a constant, not a macro.
6691
6692 2012-07-30 Eli Zaretskii <eliz@gnu.org>
6693
6694 * w32fns.c (w32_wnd_proc): Pass w32_keyboard_codepage to
6695 w32_kbd_patch_key as the 2nd arg. (Bug#12082)
6696
6697 * w32term.c <w32_keyboard_codepage>: Renamed from
6698 keyboard_codepage and now external. All users changed.
6699
6700 * w32term.h: Add declaration of w32_keyboard_codepage.
6701
6702 * w32inevt.c (w32_kbd_patch_key): Accept an additional argument --
6703 the codepage to translate keys to Unicode. If this argument is
6704 -1, use the value returned by GetConsoleCP. All callers changed.
6705
6706 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
6707
6708 Update .PHONY listings in makefiles.
6709 * Makefile.in (.PHONY): Add all, mostlyclean, clean,
6710 bootstrap-clean, distclean, maintainer-clean, versioclean,
6711 extraclean, frc.
6712
6713 * lisp.h (STRING_BYTES_BOUND): Cast entire result to ptrdiff_t.
6714 This is a bit clearer. Fix some commentary typos.
6715
6716 2012-07-30 Glenn Morris <rgm@gnu.org>
6717
6718 * s/netbsd.h: Let configure include signal.h if needed.
6719 Remove file, which is now empty.
6720
6721 * s/usg5-4-common.h (_longjmp, _setjmp, TIOCSIGSEND):
6722 Let configure set them.
6723 * s/irix6-5.h (_longjmp, _setjmp, TIOCSIGSEND):
6724 No more need to undefine.
6725
6726 2012-07-30 Andreas Schwab <schwab@linux-m68k.org>
6727
6728 * keymap.c (Fkey_description): Don't remove 0x80 bit from
6729 non-single-byte char when adding meta modifier. (Bug#12090)
6730
6731 2012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
6732
6733 Convert safe_call to use variable number of arguments.
6734 * xdisp.c (safe_call): Convert to use varargs. Adjust users.
6735 (safe_call2): Fix comment.
6736 * lisp.h (safe_call): Adjust prototype.
6737 * coding.c (encode_coding_object): Change to use safe_call2.
6738 * xfaces.c (merge_face_heights): Change to use safe_call1.
6739
6740 2012-07-30 Glenn Morris <rgm@gnu.org>
6741
6742 * s/aix4-2.h (sigmask): No need to undefine it, since syssignal.h
6743 does that unconditionally. Remove file, which is now empty.
6744
6745 * s/freebsd.h, s/gnu-linux.h, s/sol2-6.h, s/unixware.h:
6746 Remove empty files.
6747
6748 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
6749
6750 Export to GDB most of lisp.h's remaining object-like macros.
6751 * lisp.h (min, max): Move earlier, because they're used earlier now.
6752 (INTMASK, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK)
6753 (CHAR_TABLE_STANDARD_SLOTS, CHARTAB_SIZE_BITS_0)
6754 (CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2, CHARTAB_SIZE_BITS_3)
6755 (DEFAULT_HASH_SIZE, COMPILED_ARGLIST, COMPILED_BYTECODE)
6756 (COMPILED_CONSTANTS, COMPILED_STACK_DEPTH, COMPILED_DOC_STRING)
6757 (COMPILED_INTERACTIVE, CHAR_ALT, CHAR_SUPER, CHAR_HYPER, CHAR_SHIFT)
6758 (CHAR_CTL, CHAR_META, CHAR_MODIFIER_MASK, CHARACTERBITS)
6759 (MANY, UNEVALLED, FLOAT_TO_STRING_BUFSIZE, MAX_ALLOCA):
6760 Now constants, for GDB. They need not be macros.
6761 (MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM, STRING_BYTES_BOUND):
6762 Now constants, for GDB, as well as macros, for static initializers.
6763 (CHAR_TABLE_STANDARD_SLOTS, CHAR_TABLE_EXTRA_SLOTS):
6764 Move to after the definition of struct Lisp_Char_Table,
6765 since the former now needs that type defined.
6766 (enum CHARTAB_SIZE_BITS, enum CHAR_TABLE_STANDARD_SLOTS)
6767 (enum DEFAULT_HASH_SIZE, enum Lisp_Compiled, enum char_bits)
6768 (enum maxargs, enum FLOAT_TO_STRING_BUFSIZE, enum MAX_ALLOCA):
6769 New enums, for gdb_make_enums_visible.
6770 (GLYPH_MODE_LINE_FACE): Remove; unused.
6771 * alloc.c (STRING_BYTES_MAX): Now a constant, not a macro.
6772 (gdb_make_enums_visible): Add enum CHARTAB_SIZE_BITS, enum
6773 CHAR_TABLE_STANDARD_SLOTS, enum char_bits, enum DEFAULT_HASH_SIZE,
6774 enum FLOAT_TO_STRING_BUFSIZE, enum Lisp_Bits, enum Lisp_Compiled,
6775 enum maxargs, enum MAX_ALLOCA.
6776 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): Remove.
6777 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Remove;
6778 no longer needed, now that they are done in lisp.h.
6779
6780 2012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
6781
6782 Cleanup string bytes checking.
6783 * alloc.c (GC_STRING_BYTES, CHECK_STRING_BYTES): Remove. Convert
6784 all users to STRING_BYTES or string_bytes if GC_CHECK_STRING_BYTES.
6785 (check_string_bytes): Define to empty if not GC_CHECK_STRING_BYTES.
6786 (check_sblock, compact_small_strings): Simplify.
6787
6788 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
6789
6790 * lisp.h (LISP_INT_TAG, LISP_INT1_TAG, LISP_STRING_TAG): Remove.
6791 These macros are confusing and no longer need to be defined, as
6792 the enum values now suffice. All uses replaced with definiens.
6793 (Lisp_Int1, Lisp_String): Define directly; this is clearer.
6794
6795 2012-07-29 Juanma Barranquero <lekktu@gmail.com>
6796
6797 * makefile.w32-in (LISP_H, $(BLD)/emacs.$(O), $(BLD)/w32inevt.$(O))
6798 ($(BLD)/w32console.$(O)): Update dependencies.
6799
6800 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
6801
6802 Remove HIDE_LISP_IMPLEMENTATION and cleanup cons free list check.
6803 * lisp.h (HIDE_LISP_IMPLEMENTATION): Remove as useless for a long
6804 time. Adjust users.
6805 (CHECK_CONS_LIST): Remove. Convert all users to check_cons_list.
6806
6807 2012-07-29 Jan Djärv <jan.h.d@swipnet.se>
6808
6809 * lread.c (init_lread): Remove if-statement in ifdef HAVE_NS before
6810 setting sitelisp (Bug#12010).
6811
6812 2012-07-29 Eli Zaretskii <eliz@gnu.org>
6813
6814 * w32heap.h (OS_9X): Rename from OS_WINDOWS_95.
6815
6816 * w32heap.c (cache_system_info):
6817 * w32.c (sys_rename):
6818 * w32proc.c (find_child_console, sys_kill): All users changed.
6819
6820 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
6821
6822 * alloc.c (Fgarbage_collect): Indent as per usual Emacs style.
6823
6824 2012-07-29 Eli Zaretskii <eliz@gnu.org>
6825
6826 * makefile.w32-in (LISP_H): Add $(NT_INC)/stdalign.h.
6827
6828 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
6829
6830 Cleanup statistics calculation in Fgarbage_collect.
6831 * alloc.c (Fgarbage_collect): Rename t1 to meaningful start.
6832 Fix zombies percentage calculation. Simplify elapsed time calculation.
6833
6834 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
6835
6836 Generalize marker debugging code under MARKER_DEBUG and use eassert.
6837 * insdel.c (CHECK_MARKERS, check_markers_debug_flag): Remove.
6838 (gap_left, gap_right, adjust_markers_for_delete, insert_1_both)
6839 (insert_from_string_1, insert_from_gap, insert_from_buffer_1)
6840 (replace_range, replace_range_2, del_range_2): Change to eassert.
6841 * marker.c (byte_char_debug_check): Adjust style.
6842
6843 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
6844
6845 Don't use the abbreviation "win" to refer to Windows (Bug#10421).
6846 * regex.c (MAX_BUF_SIZE): Remove some incorrect and
6847 long-ago-commented-out code that talks about "WIN32".
6848 * w32heap.h (OS_WINDOWS_95): Rename from OS_WIN95.
6849 All uses changed.
6850
6851 2012-07-28 Paul Eggert <eggert@cs.ucla.edu>
6852
6853 Use Gnulib stdalign module (Bug#9772, Bug#9960).
6854 * alloc.c (XMALLOC_BASE_ALIGNMENT, GC_POINTER_ALIGNMENT, pure_alloc):
6855 Simplify by using alignof.
6856 (pure_alloc) [! USE_LSB_TAG]: Don't over-align EMACS_INT values.
6857 * lisp.h: Include <stdalign.h>.
6858 (GCALIGNMENT): New macro and constant.
6859 (DECL_ALIGN): Remove. All uses replaced by alignas (GCALIGNMENT).
6860 (USE_LSB_TAG): ifdef on alignas, not on DECL_ALIGN.
6861 (stdalign): New macro, if not already defined.
6862
6863 2012-07-28 Eli Zaretskii <eliz@gnu.org>
6864
6865 Fix non-ASCII input in non-GUI frames on MS-Windows. (Bug#12055)
6866 * w32inevt.c: Include w32inevt.h.
6867 (w32_read_console_input): New inline function, calls either
6868 ReadConsoleInputA or ReadConsoleInputW, depending on the value of
6869 w32_console_unicode_input.
6870 (fill_queue): Call w32_read_console_input instead of ReadConsoleInput.
6871 (w32_kbd_patch_key, key_event): Use the codepage returned by
6872 GetConsoleCP, rather than the ANSI codepage returned by GetLocaleInfo.
6873 (key_event): use uChar.UnicodeChar only if
6874 w32_console_unicode_input is non-zero.
6875
6876 * w32console.c: Include w32heap.h.
6877 <w32_console_unicode_input>: New global variable.
6878 (initialize_w32_display): Set w32_console_unicode_input to 1 on NT
6879 family of Windows, zero otherwise.
6880
6881 * w32inevt.h: Declare w32_console_unicode_input.
6882
6883 * xdisp.c (init_iterator): Don't reference tip_frame in a build
6884 --without-x. (Bug#11742)
6885
6886 2012-07-27 Paul Eggert <eggert@cs.ucla.edu>
6887
6888 Adjust GDB to reflect pvec_type changes (Bug#12036).
6889 * .gdbinit (xvectype, xpr, xbacktrace): Adjust to reflect the
6890 2012-07-04 changes to pseudovector representation.
6891 Problem reported by Eli Zaretskii in <http://bugs.gnu.org/12036#30>.
6892
6893 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
6894
6895 * dbusbind.c (XD_DBUS_VALIDATE_BUS_ADDRESS): Canonicalize session
6896 bus address.
6897 (xd_close_bus, Fdbus_init_bus): Handle reference counter properly.
6898
6899 2012-07-27 Eli Zaretskii <eliz@gnu.org>
6900
6901 * alloc.c (listn): Fix the order the arguments are consed onto the
6902 list.
6903
6904 * lisp.h (enum constype): Use CONSTYPE_HEAP and CONSTYPE_PURE for
6905 enumeration constants, as PURE and HEAP are too general, and clash
6906 with other headers and sources, such as gmalloc.c and the
6907 MS-Windows system headers. All users changed.
6908
6909 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
6910
6911 Revert last save_excursion_save and save_excursion_restore changes.
6912 * alloc.c, editfns.c, marker.c, lisp.h: Revert.
6913 Lots of crashes reported by Chong Yidong <cyd@gnu.org>.
6914
6915 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
6916
6917 Fix recently-introduced typos in Windows port.
6918 Reported by Martin Rudalics <rudalics@gmx.at>.
6919 * w32.c (init_environment): Replace comma with semicolon.
6920 * w32fns.c (syms_of_w32fns): Add missing parenthesis.
6921
6922 2012-07-27 Paul Eggert <eggert@cs.ucla.edu>
6923
6924 Improve GDB symbol export (Bug#12036).
6925 * .gdbinit (xgetptr, xgetint, xgettype): Set $bugfix in different
6926 arms of an 'if', not using conditional expressions; otherwise GDB
6927 complains about the types in the unevaluated arm when the argument
6928 is an integer literal.
6929 (xgetint): Simplify expression.
6930 * alloc.c (gdb_make_enums_visible): New constant. This ports to
6931 GCC 3.4.2 the export of symbols to GDB. Problem reported by Eli
6932 Zaretskii in <http://bugs.gnu.org/12036#13>.
6933 * lisp.h (PUBLISH_TO_GDB): Remove. All uses removed. No longer
6934 needed now that we have gdb_make_enums_visible.
6935 (enum CHECK_LISP_OBJECT_TYPE, enum Lisp_Bits, enum More_Lisp_Bits)
6936 (enum enum_USE_LSB_TAG):
6937 New enum types, packaging up enums that need to be exported to GDB.
6938
6939 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
6940
6941 Utility function to make a list from specified amount of objects.
6942 * lisp.h (enum constype): New datatype.
6943 (listn): New prototype.
6944 * alloc.c (listn): New function.
6945 (Fmemory_use_count, syms_of_alloc): Use it.
6946 * buffer.c (syms_of_buffer): Likewise.
6947 * callint.c (syms_of_callint): Likewise.
6948 * charset.c (define_charset_internal): Likewise.
6949 * coding.c (syms_of_coding): Likewise.
6950 * keymap.c (syms_of_keymap): Likewise.
6951 * search.c (syms_of_search): Likewise.
6952 * syntax.c (syms_of_syntax): Likewise.
6953 * w32.c (init_environment): Likewise.
6954 * w32fns.c (Fw32_battery_status, syms_of_w32fns): Likewise.
6955 * xdisp.c (syms_of_xdisp): Likewise.
6956 * xfns.c (syms_of_xfns): Likewise.
6957
6958 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
6959
6960 Fast save_excursion_save and save_excursion_restore.
6961 * lisp.h (struct Lisp_Excursion): New data type.
6962 (PVEC_EXCURSION): New pseudovector type.
6963 (XEXCURSION, XSETEXCURSION, EXCURSIONP): Convenient macros
6964 to deal with it. Adjust comments.
6965 (init_marker, attach_marker): New prototype.
6966 (unchain_marker): Adjust prototype.
6967 * marker.c (attach_marker): Change to global.
6968 (init_marker): New function.
6969 * alloc.c (Fmake_marker, build_marker): Use it.
6970 (build_marker): More easserts.
6971 (mark_object): Handle struct Lisp_Excursion.
6972 * editfns.c (save_excursion_save, save_excursion_restore):
6973 Reimplement to use struct Lisp_Excursion. Add comments.
6974
6975 2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
6976
6977 Fix export of symbols to GDB (Bug#12036).
6978 * alloc.c (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL)
6979 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Move these here from
6980 emacs.c, as this is a more-suitable home. Had this been done earlier
6981 the fix for 12036 would have avoided some of the problems noted in
6982 <http://bugs.gnu.org/12036#13> by Eli Zaretskii, as the scope problems
6983 would have been more obvious.
6984 * emacs.c: Do not include <verify.h>; no longer needed.
6985 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS)
6986 (gdb_GCTYPEBITS, gdb_USE_LSB_TAG)
6987 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
6988 Remove; now done in lisp.h.
6989 * lisp.h (PUBLISH_TO_GDB): New macro.
6990 (GCTYPEBITS, USE_LSB_TAG, CHECK_LISP_OBJECT_TYPE, enum pvec_type)
6991 (DATA_SEG_BITS): Use it.
6992 (GCTYPEBITS, USE_LSB_TAG): Now also an enum, for GDB.
6993 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Now just an enum, for GDB.
6994 * mem-limits.h (EXCEEDS_LISP_PTR): Redo so that DATA_SEG_BITS need
6995 not be usable in #if. This simplifies things.
6996
6997 2012-07-26 Juanma Barranquero <lekktu@gmail.com>
6998
6999 * makefile.w32-in ($(BLD)/emacs.$(O)): Update dependencies.
7000
7001 2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
7002
7003 Simplify export of symbols to GDB (Bug#12036).
7004 * .gdbinit (xgetptr, xgetint, xgettype): Don't use "set $bugfix =
7005 $bugfix.i", as this doesn't work (with GDB 7.4.1, anyway).
7006 (xgetptr, xgetint, xgettype, xcoding, xcharset, xprintbytestr):
7007 Adjust to changes in lisp.h and emacs.c, by using
7008 CHECK_LISP_OBJECT_TYPE rather than gdb_use_struct, VALMASK instead
7009 of $valmask, DATA_SEG_BITS instead of gdb_data_seg_bits,
7010 INTTYPEBITS instead of gdb_gctypebits - 1, USE_LSB_TAG instead of
7011 gdb_use_lsb, (1 << GCTYPEBITS) - 1 instead of $tagmask, VALBITS
7012 instead of gdb_valbits.
7013 (xvectype, xvector, xpr, xprintstr, xbacktrace): Similarly, use
7014 PSEUDOVECTOR_FLAG instead of PVEC_FLAG, and ARRAY_MARK_FLAG
7015 instead of gdb_array_mark_flag.
7016 (xboolvector): Get size from $->size, not $->header.size.
7017 Use BOOL_VECTOR_BITS_PER_CHAR rather than mystery constants.
7018 (xreload, hook-run, hookpost-run): Remove.
7019 * emacs.c: Include <verify.h>.
7020 (gdb_use_lsb, gdb_use_struct, gdb_valbits, gdb_gctypebits)
7021 (gdb_data_seg_bits, PVEC_FLAG, gdb_array_mark_flag, gdb_pvec_type):
7022 Remove.
7023 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS, gdb_GCTYPEBITS)
7024 (gdb_USE_LSB_TAG): New enum constants.
7025 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
7026 Also define these as enum constants, so they're visible to GDB.
7027 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): New macros.
7028 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Also define these
7029 as constants, so they're visible to GDB.
7030 * lisp.h (VALBITS, INTTYPEBITS, FIXNUM_BITS, PSEUDOVECTOR_SIZE_BITS)
7031 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK, BOOL_VECTOR_BITS_PER_CHAR):
7032 Now enum constants, not macros, so they're visible to GDB.
7033 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Default to 0, as this is
7034 more convenient now. All uses changed.
7035 (VALMASK) [USE_LSB_TAG]: Also define in this case.
7036 * mem-limits.h (EXCEEDS_LISP_PTR): Adjust to DATA_SEG_BITS change.
7037
7038 2012-07-26 Dmitry Antipov <dmantipov@yandex.ru>
7039
7040 Explicitly free restriction data that are not needed anymore.
7041 * editfns.c (save_restriction_restore): Free restriction data.
7042
7043 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
7044
7045 * eval.c (Fautoload_do_load): Rename from do_autoload, export to Lisp,
7046 add argument, tune behavior, and adjust all callers.
7047
7048 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
7049
7050 Use typedef for EMACS_INT, EMACS_UINT.
7051 * lisp.h, s/ms-w32.h (EMACS_INT, EMACS_UINT): Use typedefs rather
7052 than macros. This simplifies debugging in the usual case, since
7053 it lets GDB show addresses as 'EMACS_INT *' rather than 'long int *'
7054 and it allows expressions involving EMACS_INT casts.
7055 * .gdbinit (xreload): Simplify by using EMACS_INT cast.
7056
7057 2012-07-25 Jan Djärv <jan.h.d@swipnet.se>
7058
7059 * nsterm.m (ns_read_socket): Return early if there is a modal
7060 window (Bug#12043).
7061
7062 2012-07-25 Martin Rudalics <rudalics@gmx.at>
7063
7064 * frame.c (Fredirect_frame_focus): In doc-string don't mention
7065 that FOCUS-FRAME can be omitted.
7066
7067 2012-07-25 Dmitry Antipov <dmantipov@yandex.ru>
7068
7069 Adjust buffer text indirection counters at the end of Fkill_buffer.
7070 * buffer.c (Fkill_buffer): Adjust indirection counters when the
7071 buffer is definitely dead. This should really fix an issue reported
7072 by Christoph Scholtes again. (Bug#12007).
7073 (init_buffer_once): Initialize indirection counters of
7074 buffer_defaults and buffer_local_symbols (for sanity and safety).
7075
7076 2012-07-24 Eli Zaretskii <eliz@gnu.org>
7077
7078 * xdisp.c (init_iterator): Don't compute dimensions of truncation
7079 and continuation glyphs on tooltip frames, leave them at zero.
7080 Avoids continued lines in tooltips. (Bug#11832)
7081
7082 2012-07-24 Dmitry Antipov <dmantipov@yandex.ru>
7083
7084 Simplify copy_overlay.
7085 * buffer.c (copy_overlay): Simplify. Use build_marker.
7086 * lisp.h (struct Lisp_Overlay): Restore comment with minor tweaks.
7087
7088 2012-07-23 Eli Zaretskii <eliz@gnu.org>
7089
7090 * print.c (print_object): Don't crash when a frame's name is nil
7091 or invalid. (Bug#12025)
7092
7093 * window.c (decode_any_window): Disable CHECK_LIVE_FRAME test, as
7094 it signals an error when a tooltip frame is being created.
7095
7096 2012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
7097
7098 Cleanup miscellaneous objects allocation and initialization.
7099 * alloc.c (allocate_misc): Change to static. Add argument to
7100 specify the subtype. Adjust comment and users.
7101 (build_overlay): New function.
7102 * buffer.c (copy_overlays, Fmake_overlay): Use it.
7103 * lisp.h (struct Lisp_Overlay): Remove obsolete comment.
7104 (allocate_misc): Remove prototype.
7105 (build_overlay): Add prototype.
7106
7107 2012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
7108
7109 Swap buffer text indirection counters in Fbuffer_swap_text.
7110 * buffer.c (Fbuffer_swap_text): Swap indirections too.
7111 This avoids crash reported by Christoph Scholtes at
7112 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00785.html.
7113
7114 2012-07-22 Jan Djärv <jan.h.d@swipnet.se>
7115
7116 * nsmenu.m (Popdown_data): New struct.
7117 (pop_down_menu): p->pointer is Popdown_data. Release the pool and
7118 free Popdown_data.
7119 (ns_popup_dialog): Use NSAutoreleasePool and pass it to pop_down_menu.
7120 (initWithContentRect): Make imgView and contentView non-static
7121 and autorelease them. Also autorelease img and matrix (Bug#12005).
7122 (dealloc): Remove (Bug#12005).
7123
7124 2012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
7125
7126 Adjust consing_since_gc when objects are explicitly freed.
7127 * alloc.c (GC_DEFAULT_THRESHOLD): New macro.
7128 (Fgarbage_collect): Use it. Change minimum to 1/10 of default.
7129 (free_cons, free_misc): Subtract object size from consing_since_gc.
7130
7131 2012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
7132
7133 Simplify and cleanup markers positioning code.
7134 * marker.c (attach_marker): More useful eassert.
7135 (live_buffer, set_marker_internal): New function.
7136 (Fset_marker, set_marker_restricted): Use set_marker_internal.
7137 (set_marker_both, set_marker_restricted_both): Use live_buffer.
7138
7139 2012-07-22 Paul Eggert <eggert@cs.ucla.edu>
7140
7141 * buffer.h (struct buffer.indirections): Now ptrdiff_t, not int,
7142 as it's limited by the amount of memory, not by INT_MAX.
7143
7144 2012-07-21 Eli Zaretskii <eliz@gnu.org>
7145
7146 * keyboard.c (keys_of_keyboard): Bind language-change to 'ignore'
7147 in special-event-map. See the discussion at
7148 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00417.html
7149 for the reasons.
7150
7151 * w32menu.c (add_menu_item): Cast to ULONG_PTR when assigning
7152 info.dwItemData. Fixes crashes on 64-bit Windows.
7153 Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
7154
7155 2012-07-21 Jan Djärv <jan.h.d@swipnet.se>
7156
7157 * nsterm.m (accessibilityAttributeValue): New function. (Bug#11134).
7158 (conversationIdentifier): Return value is NSInteger.
7159 * nsterm.m (accessibilityAttributeValue): Surround with NS_IMPL_COCOA.
7160
7161 2012-07-21 Chong Yidong <cyd@gnu.org>
7162
7163 * window.c (decode_any_window): Signal an error if the window is
7164 on a dead frame (Bug#11984).
7165
7166 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
7167
7168 Add indirection counting to speed up Fkill_buffer.
7169 * buffer.h (struct buffer): New member.
7170 * buffer.c (Fget_buffer_create): Set indirection counter to 0.
7171 (Fmake_indirect_buffer): Set indirection counter to -1, increment
7172 base buffer indirection counter.
7173 (compact_buffer): If ENABLE_CHECKING, verify indirection counters.
7174 (Fkill_buffer): Adjust indirection counters as needed, don't walk
7175 through buffer list if indirection counter is 0.
7176
7177 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
7178
7179 Extend the value returned by Fgarbage_collect with heap statistics.
7180 * alloc.c (Qheap): New symbol.
7181 (syms_of_alloc): DEFSYM it.
7182 (Fgarbage_collect): If DOUG_LEA_MALLOC, add mallinfo data.
7183 (Fmemory_free): Remove.
7184 (syms_of_alloc): Don't defsubr it.
7185 * buffer.c (Fcompact_buffer): Remove.
7186 (syms_of_buffer): Don't defsubr it.
7187
7188 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
7189
7190 Make maybe_gc inline.
7191 Verify that inlining is always possible (GCC 4.7.1, -O3 -Winline).
7192 * lisp.h (consing_since_gc, gc_relative_threshold)
7193 (memory_full_cons_threshold): Revert declaration.
7194 (maybe_gc): Remove prototype, define as inline.
7195 * alloc.c: Remove old commented-out code.
7196 (consing_since_gc, gc_relative_threshold)
7197 (memory_full_cons_threshold): Revert to global.
7198 (maybe_gc): Remove.
7199
7200 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
7201
7202 Simple wrapper for make_unibyte_string, adjust font_open_by_name.
7203 * lisp.h (build_unibyte_string): New function.
7204 * dosfns.c, fileio.c, fns.c, ftfont.c, process.c:
7205 * sysdep.c, w32fns.c, xfns.c: Use it.
7206 * font.c (font_open_by_name): Change 2nd and 3rd args to the only arg
7207 of type Lisp_Object to avoid redundant calls to make_unibyte_string.
7208 Adjust users accordingly.
7209 * font.h (font_open_by_name): Adjust prototype.
7210
7211 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
7212
7213 Cleanup calls to Fgarbage_collect.
7214 * lisp.h (maybe_gc): New prototype.
7215 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
7216 Remove declarations.
7217 * alloc.c (maybe_gc): New function.
7218 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
7219 Make them static.
7220 * bytecode.c (MAYBE_GC): Use maybe_gc.
7221 * eval.c (eval_sub, Ffuncall): Likewise.
7222 * keyboard.c (read_char): Likewise. Adjust call to maybe_gc
7223 to avoid dependency from auto-save feature.
7224
7225 2012-07-19 Paul Eggert <eggert@cs.ucla.edu>
7226
7227 * buffer.h (FOR_EACH_BUFFER): Rename from 'for_each_buffer'.
7228 (FOR_EACH_PER_BUFFER_OBJECT_AT): Rename from
7229 'for_each_per_buffer_object_at'.
7230 All uses changed. It's better to use upper-case for macros that
7231 cannot be implemented as functions, to give the reader a clue
7232 that they're special.
7233
7234 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
7235
7236 * alloc.c (Fgarbage_collect): Tweak docstring.
7237
7238 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
7239
7240 Tweak the value returned from Fgarbage_collect again.
7241 * alloc.c (Fgarbage_collect): New return value, as confirmed in
7242 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00418.html.
7243 Adjust documentation.
7244 (total_vector_bytes): Rename to total_vector_slots, adjust
7245 accounting.
7246 (total_free_vector_bytes): Rename to total_free_vector_slots,
7247 adjust accounting.
7248 (Qstring_bytes, Qvector_slots): New symbols.
7249 (syms_of_alloc): DEFSYM them.
7250
7251 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
7252
7253 Buffer compaction primitive which may be used from Lisp.
7254 * buffer.c (compact_buffer, Fcompact_buffer): New function.
7255 (syms_of_buffer): Register Fcompact_buffer.
7256 * alloc.c (Fgarbage_collect): Use compact_buffer.
7257 * buffer.h (compact_buffer): New prototype.
7258 (struct buffer_text): New member.
7259
7260 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
7261
7262 New macro to iterate over all buffers, miscellaneous cleanups.
7263 * lisp.h (all_buffers): Remove declaration.
7264 * buffer.h (all_buffers): Add declaration, with comment.
7265 (for_each_buffer): New macro.
7266 * alloc.c (Fgarbage_collect, mark_object): Use it.
7267 * buffer.c (Fkill_buffer, Fbuffer_swap_text, Fset_buffer_multibyte)
7268 (init_buffer): Likewise.
7269 * data.c (Fset_default): Likewise.
7270 * coding.c (code_conversion_restore): Remove redundant check
7271 for dead buffer.
7272 * buffer.c (Fkill_buffer): Likewise. Remove obsolete comment.
7273
7274 2012-07-18 Andreas Schwab <schwab@linux-m68k.org>
7275
7276 Fix bug that created negative-length intervals.
7277 * intervals.c (merge_interval_right, merge_interval_left):
7278 Do not zero out this interval if it is absorbed by its children,
7279 as this interval's total length doesn't change in that case. See
7280 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00403.html>.
7281
7282 2012-07-18 Paul Eggert <eggert@cs.ucla.edu>
7283
7284 * alloc.c (Fmake_bool_vector): Fix off-by-8 bug
7285 when invoking (make-bool-vector N t) and N is a positive
7286 multiple of 8 -- the last 8 bits were mistakenly cleared.
7287
7288 Remove some struct layout assumptions in bool vectors.
7289 * alloc.c (bool_header_size): New constant.
7290 (header_size, word_size): Move earlier, as they're now used earlier.
7291 Use 'word_size' in a few more places, where it's appropriate.
7292 (Fmake_bool_vector, sweep_vectors): Don't assume that there is no
7293 padding before the data member of a bool vector.
7294 (sweep_vectors): Use PSEUDOVECTOR_TYPEP, in an eassert, rather
7295 than doing the check by hand with an abort ().
7296
7297 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
7298
7299 * eval.c (Fdefvar): Don't check constants since we only set the var if
7300 it's not yet defined anyway (bug#11904).
7301
7302 * lisp.h (last_undo_boundary): Declare new var.
7303 * keyboard.c (command_loop_1): Set it.
7304 * cmds.c (Fself_insert_command): Use it to only remove boundaries that
7305 were auto-added by the command loop (bug#11774).
7306
7307 2012-07-18 Andreas Schwab <schwab@linux-m68k.org>
7308
7309 * w32font.c (Qsymbol): Remove local definition.
7310 (syms_of_w32font): Don't DEFSYM it.
7311
7312 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
7313
7314 Fix sweep_vectors to handle large bool vectors correctly.
7315 * alloc.c (sweep_vectors): Account total_vector_bytes for
7316 bool vectors larger than VBLOCK_BYTES_MAX.
7317
7318 2012-07-18 Chong Yidong <cyd@gnu.org>
7319
7320 * frame.c (x_set_frame_parameters): Revert bogus change introduced
7321 in 2012-05-25 commit by Paul Eggert (Bug#11738).
7322
7323 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
7324
7325 Return more descriptive data from Fgarbage_collect.
7326 Suggested by Stefan Monnier in
7327 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00369.html.
7328 * alloc.c (bounded_number): New function.
7329 (total_buffers, total_vectors): New variable.
7330 (total_string_size): Rename to total_string_bytes, adjust users.
7331 (total_vector_size): Rename to total_vector_bytes, adjust users.
7332 (sweep_vectors): Account total_vectors and total_vector_bytes.
7333 (Fgarbage_collect): New return value. Adjust documentation.
7334 (gc_sweep): Account total_buffers.
7335 (Fmemory_free, Fmemory_use_counts): Use bounded_number.
7336 (VECTOR_SIZE): Remove.
7337 * data.c (Qfloat, Qvector, Qsymbol, Qstring, Qcons): Make global.
7338 (Qinterval, Qmisc): New symbols.
7339 (syms_of_data): Initialize them.
7340 * lisp.h (Qinterval, Qsymbol, Qstring, Qmisc, Qvector, Qfloat)
7341 (Qcons, Qbuffer): New declarations.
7342
7343 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
7344
7345 * alloc.c (Fmemory_free): Account for memory-free's own storage.
7346 Round up, not down. Improve doc.
7347
7348 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
7349
7350 Restore old code in allocate_string_data to avoid Faset breakage.
7351 Reported by Julien Danjou <julien@danjou.info> in
7352 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00371.html.
7353 * alloc.c (allocate_string_data): Restore old code with minor
7354 adjustments, fix comment to explain this subtle issue.
7355
7356 2012-07-17 Eli Zaretskii <eliz@gnu.org>
7357
7358 Remove FILE_SYSTEM_CASE.
7359 * s/msdos.h (FILE_SYSTEM_CASE): Don't define.
7360
7361 * fileio.c (FILE_SYSTEM_CASE): Don't define.
7362 (Ffile_name_directory, Fexpand_file_name): Don't use FILE_SYSTEM_CASE.
7363 Fixes problems on MS-DOS with Vtemp_file_name_pattern when
7364 call-process-region passes it through expand-file-name.
7365
7366 * dired.c (file_name_completion): Don't use FILE_SYSTEM_CASE.
7367
7368 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
7369
7370 Fix crash when creating indirect buffer (Bug#11917)
7371 * buffer.c (buffer_lisp_local_variables): Add argument CLONE.
7372 Don't handle unbound variables specially if non-zero.
7373 (Fbuffer_local_variables): Pass zero.
7374 (clone_per_buffer_values): Pass non-zero.
7375
7376 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
7377
7378 * gnutls.c (emacs_gnutls_handshake): Revert last change. Add QUIT
7379 to make the loop interruptible.
7380
7381 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
7382
7383 * gnutls.c (emacs_gnutls_handshake): Only retry if
7384 GNUTLS_E_INTERRUPTED.
7385
7386 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
7387
7388 Cleanup and convert miscellaneous checks to eassert.
7389 * alloc.c (mark_interval): Fix comment, partially rephrase
7390 old comment from intervals.h (see below).
7391 * intervals.c (find_interval, adjust_intervals_for_insertion)
7392 (delete_interval, adjust_intervals_for_deletion)
7393 (graft_intervals_into_buffer, temp_set_point_both, copy_intervals):
7394 Convert to eassert.
7395 (adjust_intervals_for_insertion, make_new_interval):
7396 Remove obsolete and unused code.
7397 * intervals.h (struct interval): Remove obsolete comment.
7398 * textprotp.c (erase_properties): Remove unused code.
7399 (Fadd_text_properties, set_text_properties_1, Fremove_text_properties)
7400 (Fremove_list_of_text_properties): Convert to eassert.
7401
7402 2012-07-17 Chong Yidong <cyd@gnu.org>
7403
7404 * editfns.c (Finsert_char): Doc fix.
7405
7406 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
7407
7408 Fix previous change to make Fmemory_free always accurate.
7409 * alloc.c (make_interval): Update total_free_intervals.
7410 (make_float): Likewise for total_free_floats.
7411 (free_cons, Fcons): Likewise for total_free_conses.
7412 (SETUP_ON_FREE_LIST, allocate_vector_from_block):
7413 Likewise for total_free_vector_bytes.
7414 (Fmake_symbol): Likewise for total_free_symbols.
7415 (bytes_free): Remove.
7416
7417 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
7418
7419 Simple free memory accounting feature.
7420 * alloc.c (bytes_free, total_free_vector_bytes): New variable.
7421 (sweep_vectors): Accumulate size of free vectors.
7422 (Fgarbage_collect): Setup bytes_free.
7423 (Fmemory_free): New function.
7424 (syms_of_alloc): Register it.
7425
7426 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
7427
7428 Cleanup overlays checking.
7429 * buffer.h (OVERLAY_VALID): Remove as useless synonym of OVERLAYP.
7430 * buffer.c (overlay_touches_p, recenter_overlay_lists): Change to
7431 eassert and OVERLAYP.
7432 (sort_overlays): Change to use OVERLAYP.
7433
7434 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
7435
7436 * editfns.c (Finsert_char): Make it interactive, and make the
7437 second arg optional. Copy interactive spec and docstring from
7438 ucs-insert.
7439
7440 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
7441
7442 * floatfns.c (Fabs): Do not wrap fabs inside IN_FLOAT (Bug#11913).
7443 Unlike the other wrapped functions, fabs has an unspecified
7444 effect on errno.
7445
7446 2012-07-16 Jan Djärv <jan.h.d@swipnet.se>
7447
7448 * nsterm.m (keyDown): Interpret flags without left/right bits
7449 as the left key (Bug#11670).
7450
7451 2012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
7452
7453 Remove empty and useless init functions.
7454 * lisp.h (init_character_once, init_fns, init_image)
7455 (init_filelock, init_sound): Remove prototype.
7456 * character.c (init_character_once): Remove.
7457 * filelock.c (init_filelock): Likewise.
7458 * fns.c (init_fns): Likewise.
7459 * image.c (init_image): Likewise.
7460 * sound.c (init_sound): Likewise.
7461 * emacs.c (main): Adjust accordingly.
7462
7463 2012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
7464
7465 * gtkutil.h: Tiny cleanups.
7466 (use_old_gtk_file_dialog): Remove useless declaration.
7467 (xg_uses_old_file_dialog): Add suggested const attribute.
7468
7469 2012-07-15 Eli Zaretskii <eliz@gnu.org>
7470
7471 * bidi.c (MAX_STRONG_CHAR_SEARCH): New macro.
7472 (bidi_paragraph_init): Use it to limit search forward for a strong
7473 directional character in abnormally large paragraphs full of
7474 neutral or weak characters. (Bug#11943)
7475
7476 2012-07-15 Stefano Facchini <stefano.facchini@gmail.com> (tiny change)
7477
7478 * gtkutil.c (xg_create_tool_bar): Apply "primary-toolbar" style to
7479 the toolbar (Bug#9451).
7480 (xg_make_tool_item): Give the widget event box a transparent
7481 background.
7482
7483 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
7484
7485 Cleanup basic allocation variables and functions.
7486 * alloc.c (ignore_warnings, init_intervals, init_float)
7487 (init_cons, init_symbol, init_marker): Remove.
7488 (interval_block_index): Initialize to INTERVAL_BLOCK_SIZE.
7489 (float_block_index): Initialize to FLOAT_BLOCK_SIZE.
7490 (cons_block_index): Initialize to CONS_BLOCK_SIZE.
7491 (symbol_block_size): Initialize to SYMBOL_BLOCK_SIZE.
7492 (marker_block_index): Initialize to MARKER_BLOCK_SIZE.
7493 (staticidx, init_alloc_once, init_strings, free_ablock):
7494 Remove redundant initialization.
7495 * fns.c (init_weak_hash_tables): Remove.
7496 * lisp.h (init_weak_hash_tables): Remove prototype.
7497
7498 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
7499
7500 Use zero_vector where appropriate.
7501 * alloc.c (zero_vector): Define as Lisp_Object. Adjust users
7502 accordingly.
7503 * lisp.h (zero_vector): New declaration.
7504 * font.c (null_vector): Remove.
7505 (syms_of_font): Remove initialization and staticpro.
7506 (font_list_entities, font_find_for_lface): Change to use zero_vector.
7507 * keymap.c (Faccessible_keymaps): Likewise.
7508
7509 2012-07-15 Leo Liu <sdl.web@gmail.com>
7510
7511 * fringe.c: Fix typo in comments.
7512
7513 2012-07-14 Leo Liu <sdl.web@gmail.com>
7514
7515 * fringe.c: Add a new bitmap exclamation-mark.
7516
7517 2012-07-14 Eli Zaretskii <eliz@gnu.org>
7518
7519 * gmalloc.c (GMALLOC_INHIBIT_VALLOC): Don't reference.
7520
7521 * s/msdos.h (BSD_SYSTEM, DATA_START, GC_SETJMP_WORKS, HAVE_MOUSE)
7522 (HAVE_MENUS): Don't define, defined by editing config.in with
7523 msdos/sed2v2.inp.
7524 (GMALLOC_INHIBIT_VALLOC): Don't define.
7525 (MODE_LINE_BINARY_TEXT): Remove, not used anymore.
7526
7527 2012-07-14 Juanma Barranquero <lekktu@gmail.com>
7528
7529 * s/ms-w32.h (GC_SETJMP_WORKS, GC_MARK_STACK): Set in nt/config.nt.
7530
7531 2012-07-14 Glenn Morris <rgm@gnu.org>
7532
7533 * s/aix4-2.h, s/freebsd.h, s/gnu-linux.h, s/hpux10-20.h:
7534 * s/irix6-5.h, s/netbsd.h, s/sol2-6.h, s/unixware.h:
7535 Let configure set GC_SETJMP_WORKS, GC_MARK_STACK.
7536
7537 2012-07-13 Glenn Morris <rgm@gnu.org>
7538
7539 * s/gnu-linux.h (GC_MARK_SECONDARY_STACK): Let configure set it.
7540
7541 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Let configure set it.
7542 * s/irix6-5.h (SETUP_SLAVE_PTY): No more need to unset it.
7543
7544 2012-07-13 Jan Djärv <jan.h.d@swipnet.se>
7545
7546 * nsterm.m (uRect): Only define if NS_IMPL_GNUSTEP.
7547 (x_free_frame_resources): Pass x_free_frame_resources to NSTRACE.
7548 (ns_lisp_to_color, ns_string_to_lispmod, ns_term_init)
7549 (ns_term_shutdown, requestService, initFrameFromEmacs): Use SSDATA
7550 where appropriate.
7551 (ns_exec_path, ns_load_path, changeFont): Put () around assignment used
7552 as boolean expression.
7553 (x_set_window_size): Remove unused variable toolbar.
7554 (ns_get_color_default, ns_mod_to_lisp): Remove.
7555 (ns_mouse_position): Remove unused variables xchar and ychar.
7556 (ns_compute_glyph_string_overhangs): Remove unused variable face.
7557 (ns_set_vertical_scroll_bar): Remove unused variable count.
7558 (ns_delete_terminal): Remove unused variable i.
7559 (ns_term_init): Remove unused variables r, g and b.
7560 (mouseDown): Remove unused variable window.
7561 (windowDidResize): Move definition of theWindow inside NS_IMPL_GNUSTEP.
7562 (initFrameFromEmacs): Remove unused variable vbextra.
7563 (mouseEntered): Remove unused variables p and dpyinfo.
7564 (mouseExited): Remove unused variables p and r.
7565 (ns_define_frame_cursor, ns_clear_frame_area)
7566 (ns_draw_window_cursor, ns_initialize_display_info): Make static.
7567 (menuDown): Assign [sender tag] to variable and cast the variable.
7568
7569 * nsterm.h (menuDown): Add id as type to argument sender.
7570 (ns_display_info_for_name): Add Lisp_Object argument.
7571 (ns_term_init): Add Lisp_Object argument.
7572 (ns_map_event_to_object): Add void argument.
7573 (ns_string_from_pasteboard, ns_string_to_pasteboard): Add correct
7574 prototype with arguments and only declare if __OBJC__.
7575 (nxatoms_of_nsselect): Add void argument.
7576 (ns_lisp_to_cursor_type): Add Lisp_Object argument.
7577 (ns_alloc_autorelease_pool): Add void argument.
7578 (ns_release_autorelease_pool): Add void* argument.
7579 (ns_get_defaults_value): Add const char* argument.
7580
7581 * nsmenu.m (ns_update_menubar, ns_menu_show, process_dialog)
7582 (initFromContents): Use SSDATA where appropriate.
7583 (ns_update_menubar): Add braces to ambigous if-else.
7584 (initWithTitle): Put () around assignment in if statement.
7585 (ns_menu_show): Remove unused variables window and keymap.
7586 (update_frame_tool_bar): Remove unused variable selected_p.
7587 (initWithContentRect): Remove unused variable this_cmd_name.
7588
7589 * nsimage.m (ns_load_image, allocInitFromFile): Use SSDATA where
7590 appropriate.
7591 (setXBMColor): Remove unused variable len.
7592 (setPixmapData): Put () around assignment in loop statement.
7593
7594 * nsfont.m (ns_get_family, ns_lang_to_script, ns_otf_to_script)
7595 (ns_registry_to_script, ns_get_req_script, nsfont_open): Use SSDATA
7596 where appropriate.
7597 (ns_get_covering_families, ns_findfonts, nsfont_list_family): Put ()
7598 around assignment in loop statement.
7599 (nsfont_open): Remove unused variable i.
7600 (nsfont_open): Remove unused variable len.
7601 (nsfont_draw): Remove unused variable cs.
7602
7603 * nsfns.m (x_set_icon_name, ns_set_name_internal)
7604 (ns_set_name_as_filename, ns_implicitly_set_icon_type)
7605 (x_set_icon_type, ns_lisp_to_cursor_type, Fns_read_file_name)
7606 (Fns_get_resource, Fns_set_resource, Fx_open_connection)
7607 (Fns_font_name, Fns_perform_service)
7608 (Fns_convert_utf8_nfd_to_nfc, ns_do_applescript)
7609 (Fns_do_applescript, Fx_show_tip): Use SSDATA where appropriate.
7610 (ns_set_name): Remove unused variable view.
7611 (x_set_menu_bar_lines): Remove unused variable olines.
7612 (x_set_tool_bar_lines): Remove unused variable root_window.
7613 (Fns_list_colors): Put () around assignment in while statement.
7614 (Fns_perform_service): Remove unused variable len.
7615 (Fns_display_usable_bounds): Remove unused variable top.
7616 (syms_of_nsfns): Remove unused variable i.
7617
7618 * nsmenu.m (ns_update_menubar): Exchange place of argument 2 and 3 to
7619 memcpy (Bug#11907).
7620
7621 2012-07-13 Kalle Kankare <kalle.kankare@iki.fi> (tiny change)
7622
7623 * image.c (Fimagemagick_types): Initialize ex with GetExceptionInfo
7624 and free it with DestroyExceptionInfo (Bug#11558).
7625
7626 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
7627
7628 * s/ms-w32.h (FIRST_PTY_LETTER, HAVE_SOCKETS): Move to nt/config.nt.
7629 (HAVE_ATTRIBUTE_ALIGNED, HAVE_C99_STRTOLD, HAVE___BUILTIN_UNWIND_INIT):
7630 Set here, not in nt/config.nt.
7631
7632 2012-07-13 Eli Zaretskii <eliz@gnu.org>
7633
7634 * xdisp.c (move_it_in_display_line_to): On GUI terminals, allow
7635 cursor overflow into the last glyph on display line when the right
7636 fringe is off. (Bug#11832)
7637
7638 2012-07-13 Paul Eggert <eggert@cs.ucla.edu>
7639
7640 * xdisp.c (produce_special_glyphs): Now static.
7641 * dispextern.h (produce_special_glyphs): Remove decl.
7642
7643 2012-07-13 Glenn Morris <rgm@gnu.org>
7644
7645 * s/bsd-common.h, s/cygwin.h: Remove empty files.
7646 * s/freebsd.h, s/netbsd.h: Do not include bsd-common.h.
7647
7648 * s/usg5-4-common.h (USG, USG5):
7649 * s/template.h (USG5, USG, HPUX, BSD4_2, BSD_SYSTEM):
7650 * s/sol2-6.h (SOLARIS2):
7651 * s/irix6-5.h (IRIX6_5):
7652 * s/hpux10-20.h (USG, USG5, HPUX):
7653 * s/gnu-linux.h (USG, GNU_LINUX):
7654 * s/freebsd.h (BSD_SYSTEM):
7655 * s/darwin.h (BSD4_2, BSD_SYSTEM, DARWIN_OS):
7656 * s/cygwin.h (CYGWIN):
7657 * s/bsd-common.h (BSD_SYSTEM, BSD4_2):
7658 * s/aix4-2.h (USG, USG5, _AIX): Move "system type" macros to configure.
7659
7660 2012-07-13 BT Templeton <bpt@hcoop.net> (tiny change)
7661
7662 * nsfont.m (ns_charset_covers): Don't abort if no bitmap (Bug#11853).
7663
7664 2012-07-13 Glenn Morris <rgm@gnu.org>
7665
7666 * s/usg5-4-common.h (NSIG_MINIMUM): Let configure set it.
7667
7668 * s/gnu-linux.h, s/irix6-5.h: Let configure set ULIMIT_BREAK_VALUE.
7669
7670 * process.c (init_process_emacs): Replace MIN_PTY_KERNEL_VERSION.
7671 * s/darwin.h (MIN_PTY_KERNEL_VERSION): Remove single-use macro.
7672
7673 2012-07-12 Glenn Morris <rgm@gnu.org>
7674
7675 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Move to configure.
7676
7677 * process.c (init_process_emacs): Rename from init_process.
7678 The old name is also the name of a Mach system call.
7679 * lisp.h, emacs.c: Update for this name change.
7680 * nsgui.h, sysselect.h, s/darwin.h: Remove workaround that is no
7681 longer needed.
7682
7683 2012-07-12 Eli Zaretskii <eliz@gnu.org>
7684
7685 * xdisp.c (insert_left_trunc_glyphs): Fix incorrect size in
7686 memmove call that removes glyphs covered by the left truncation
7687 glyph. Improve commentary.
7688 (display_line): Fix display of continuation glyphs on GUI frames
7689 when the right fringe is turned off and variable-size fonts are
7690 used in the window. Move the code that appends a stretch glyph to
7691 produce_special_glyphs, so that it could be used for truncation
7692 and continuation glyphs alike.
7693 (produce_special_glyphs) [HAVE_WINDOW_SYSTEM]: Produce a stretch
7694 glyph of a suitably computed width, to align the special glyphs at
7695 the window margin. Code moved from display_line. (Bug#11832)
7696
7697 2012-07-12 Glenn Morris <rgm@gnu.org>
7698
7699 * s/aix4-2.h, s/hpux10-20.h: Let configure set NO_EDITRES.
7700
7701 * s/gnu-linux.h, s/hpux10-20.h:
7702 Do not unconditionally define HAVE_XRMSETDATABASE.
7703
7704 * s/gnu-linux.h (UNIX98_PTYS): Let configure set it.
7705
7706 2012-07-12 Paul Eggert <eggert@cs.ucla.edu>
7707
7708 Fix typos that broke OS X build.
7709 Reported by Randal L. Schwartz in
7710 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00225.html>.
7711 * nsterm.m (ns_timeout): Add missing local decl.
7712 (ns_get_color): snprintf -> sprintf, to fix typo.
7713
7714 2012-07-12 Glenn Morris <rgm@gnu.org>
7715
7716 * src/s/aix4-2.h, src/s/cygwin.h, src/s/darwin.h:
7717 * src/s/gnu-linux.h, src/s/hpux10-20.h, src/s/irix6-5.h:
7718 * src/s/sol2-6.h, src/s/unixware.h, src/s/usg5-4-common.h:
7719 Move PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF to configure.
7720
7721 * s/cygwin.h, s/darwin.h, s/gnu-linux.h, s/irix6-5.h:
7722 Move PTY_OPEN to configure.
7723
7724 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
7725 * s/gnu-linux.h, s/hpux10-20.h, s/irix6-5.h, s/template.h:
7726 * s/usg5-4-common.h: Move FIRST_PTY_LETTER, PTY_ITERATION to configure.
7727
7728 2012-07-12 Dmitry Antipov <dmantipov@yandex.ru>
7729
7730 Use empty_unibyte_string where applicable.
7731 * keyboard.c (parse_tool_bar_item): Use empty_unibyte_string.
7732 * lread.c (read1): Likewise.
7733 * xsettings.c (syms_of_xsettings): Likewise.
7734
7735 2012-07-12 Glenn Morris <rgm@gnu.org>
7736
7737 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC):
7738 * s/freebsd.h (BROKEN_PTY_READ_AFTER_EAGAIN):
7739 * s/irix6-5.h (SETPGRP_RELEASES_CTTY, PREFER_VSUSP):
7740 * s/hpux10-20.h (RUN_TIME_REMAP):
7741 * s/bsd-common.h (TABDLY): Move to configure.
7742
7743 * s/hpux10-20.h, s/sol2-6.h: Move XOS_NEEDS_TIME_H to configure.
7744
7745 * s/bsd-common.h, s/darwin.h: Move TAB3 to configure.
7746
7747 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
7748 (BROKEN_SIGPOLL, BROKEN_GET_CURRENT_DIR_NAME): Let configure set them.
7749
7750 * s/darwin.h (NO_ABORT, NO_MATHERR): Let configure set them.
7751
7752 * s/bsd-common.h, s/cygwin.h, s/gnu-linux.h, s/irix6-5.h:
7753 * s/template.h: Move NARROWPROTO to configure.
7754
7755 2012-07-11 Glenn Morris <rgm@gnu.org>
7756
7757 * s/gnu-linux.h, s/sol2-6.h: No longer define POSIX,
7758 unused since 2011-01-17 change to systty.h.
7759
7760 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h, s/gnu-linux.h:
7761 * s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
7762 Move HAVE_PTYS and HAVE_SOCKETS to configure.
7763
7764 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
7765
7766 * s/sol2-6.h (HAVE_LIBKSTAT): Remove. (Bug#11914)
7767
7768 2012-07-11 Glenn Morris <rgm@gnu.org>
7769
7770 * s/darwin.h, s/gnu-linux.h, s/template.h:
7771 Move INTERRUPT_INPUT to configure.
7772
7773 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
7774
7775 Minor adjustments to interning code.
7776 * lisp.h (intern, intern_c_string): Redefine as static inline
7777 wrappers for intern_1 and intern_c_string_1, respectively.
7778 (intern_1, intern_c_string_1): Rename prototypes.
7779 * lread.c (intern_1, intern_c_string_1, oblookup):
7780 Simplify Vobarray checking.
7781 * font.c (font_intern_prop): Likewise. Adjust comment.
7782 * w32font.c (intern_font_name): Likewise.
7783
7784 2012-07-11 Andreas Schwab <schwab@linux-m68k.org>
7785
7786 * gnutls.c (Fgnutls_boot): Properly parse :keylist argument.
7787
7788 * coding.c (Fdefine_coding_system_internal): Use XCAR/XCDR instead
7789 of Fcar/Fcdr if possible.
7790 * font.c (check_otf_features): Likewise.
7791 * fontset.c (Fnew_fontset): Likewise.
7792 * gnutls.c (Fgnutls_boot): Likewise.
7793 * minibuf.c (read_minibuf): Likewise.
7794 * msdos.c (IT_set_frame_parameters): Likewise.
7795 * xmenu.c (Fx_popup_dialog): Likewise.
7796 * w32menu.c (Fx_popup_dialog): Likewise.
7797
7798 2012-07-11 Glenn Morris <rgm@gnu.org>
7799
7800 * s/bsd-common.h, s/cygwin.h: No need to undefine INTERRUPT_INPUT,
7801 since nothing has defined it on these platforms.
7802
7803 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/gnu-linux.h:
7804 * s/irix6-5.h: Move SIGNALS_VIA_CHARACTERS to configure.
7805
7806 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
7807 * s/gnu-linux.h, s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
7808 Move CLASH_DETECTION to configure.
7809
7810 * s/gnu.h: Remove file, which is now empty.
7811
7812 * s/gnu.h, s/gnu-linux.h:
7813 Move GNU_LIBRARY_PENDING_OUTPUT_COUNT to configure.
7814
7815 2012-07-11 John Wiegley <johnw@newartisans.com>
7816
7817 * alloc.c (mark_memory): Guard the "no_address_safety_analysis"
7818 function attribute, so we only use it if it exists in the
7819 compiler.
7820
7821 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
7822
7823 Avoid call to strlen in fast_c_string_match_ignore_case.
7824 * search.c (fast_c_string_match_ignore_case): Change to use
7825 length argument. Adjust users accordingly.
7826 * lisp.h (fast_c_string_match_ignore_case): Adjust prototype.
7827
7828 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
7829
7830 Assume mkdir, rmdir.
7831 * sysdep.c (mkdir) [!HAVE_MKDIR]: Remove.
7832 * sysdep.c (rmdir) [!HAVE_RMDIR]: Remove.
7833
7834 Assume rename.
7835 * sysdep.c (rename) [!HAVE_RENAME]: Remove.
7836
7837 Assume perror.
7838 * s/hpux10-20.h (HAVE_PERROR): Remove.
7839 * sysdep.c (perror) [HPUX && !HAVE_PERROR]:
7840 Remove dummy definition, as this problem was obsolete long ago.
7841
7842 Assume strerror.
7843 * sysdep.c (strerror) [!HAVE_STRERROR && !WINDOWSNT]: Remove.
7844
7845 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
7846
7847 Avoid calls to strlen in font processing functions.
7848 * font.c (font_parse_name, font_parse_xlfd, font_parse_fcname)
7849 (font_open_by_name): Change to use length argument.
7850 Adjust users accordingly.
7851 * font.h (font_open_by_name, font_parse_xlfd, font_unparse_xlfd):
7852 Adjust prototypes.
7853 * xfont.c (xfont_decode_coding_xlfd, font_unparse_xlfd):
7854 Change to return ptrdiff_t.
7855 (xfont_list_pattern, xfont_match): Use length returned by
7856 xfont_decode_coding_xlfd.
7857 * xfns.c (x_default_font_parameter): Omit useless xstrdup.
7858
7859 2012-07-11 Glenn Morris <rgm@gnu.org>
7860
7861 * s/darwin.h, s/freebsd.h, s/netbsd.h:
7862 Move DONT_REOPEN_PTY to configure.
7863
7864 * sound.c (DEFAULT_SOUND_DEVICE) [!WINDOWSNT]:
7865 * s/netbsd.h (DEFAULT_SOUND_DEVICE): Let configure set it.
7866
7867 2012-07-10 Paul Eggert <eggert@cs.ucla.edu>
7868
7869 Remove "#define unix" that is no longer needed (Bug#11905).
7870 * s/aix4-2.h (unix): Remove; no longer needed.
7871
7872 EMACS_TIME simplification (Bug#11875).
7873 This replaces macros (which typically do not work in GDB)
7874 with functions, typedefs and enums, making the code easier to debug.
7875 The functional style also makes code easier to read and maintain.
7876 * systime.h: Include <sys/time.h> on all hosts, not just if
7877 WINDOWSNT, since 'struct timeval' is needed in general.
7878 (EMACS_TIME): Now a typedef, not a macro.
7879 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): Now constants,
7880 not macros.
7881 (EMACS_SECS, EMACS_NSECS, EMACS_TIME_SIGN, EMACS_TIME_VALID_P)
7882 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE, EMACS_TIME_EQ)
7883 (EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE, EMACS_TIME_LT)
7884 (EMACS_TIME_LE): Now functions, not macros.
7885 (EMACS_SET_SECS, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS)
7886 (EMACS_SET_USECS, EMACS_SET_SECS_USECS): Remove these macros,
7887 which are not functions. All uses rewritten to use:
7888 (make_emacs_time): New function.
7889 (EMACS_SECS_ADDR, EMACS_SET_INVALID_TIME, EMACS_GET_TIME)
7890 (EMACS_ADD_TIME, EMACS_SUB_TIME): Remove these macros, which are
7891 not functions. All uses rewritten to use the following, respectively:
7892 (emacs_secs_addr, invalid_emacs_time, get_emacs_time)
7893 (add_emacs_time, sub_emacs_time): New functions.
7894 * atimer.c: Don't include <sys/time.h>, as "systime.h" does this.
7895 * fileio.c (Fcopy_file):
7896 * xterm.c (XTflash): Get the current time closer to when it's used.
7897 * makefile.w32-in ($(BLD)/atimer.$(O)): Update dependencies.
7898
7899 * bytecode.c (targets): Suppress -Woverride-init warnings.
7900
7901 Simplify by avoiding confusing use of strncpy etc.
7902 * doc.c (Fsnarf_documentation):
7903 * fileio.c (Ffile_name_directory, Fsubstitute_in_file_name):
7904 * frame.c (Fmake_terminal_frame):
7905 * gtkutil.c (get_utf8_string):
7906 * lread.c (openp):
7907 * nsmenu.m (ns_update_menubar):
7908 * regex.c (regerror):
7909 Prefer memcpy to strncpy and strncat when either will do.
7910 * fileio.c (Fsubstitute_in_file_name):
7911 * keyboard.c (MULTI_LETTER_MOD, parse_modifiers_uncached)
7912 (menu_separator_name_p):
7913 * nsmenu.m (ns_update_menubar):
7914 Prefer memcmp to strncmp when either will do.
7915 * nsterm.m: Include <ftoastr.h>.
7916 (ns_get_color):
7917 * s/gnu-linux.h, s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF):
7918 Prefer snprintf to strncpy.
7919 * nsterm.m (ns_term_init):
7920 * widget.c (set_frame_size) [0]: Prefer xstrdup to xmalloc + strncpy.
7921 * nsterm.m (ns_term_init):
7922 Avoid the need for strncpy, by using build_string or
7923 make_unibyte_string directly. Use dtoastr, not snprintf.
7924 * process.c (Fmake_network_process): Diagnose service names that
7925 are too long, rather than silently truncating them or creating
7926 non-null-terminated names.
7927 (Fnetwork_interface_info): Likewise, for interface names.
7928 * sysdep.c (system_process_attributes) [GNU_LINUX]:
7929 Prefer sprintf to strncat.
7930 * xdisp.c (debug_method_add) [GLYPH_DEBUG]:
7931 Prefer vsnprintf to vsprintf + strncpy.
7932
7933 2012-07-10 Glenn Morris <rgm@gnu.org>
7934
7935 * dispnew.c (PENDING_OUTPUT_COUNT) [!__GNU_LIBRARY__]:
7936 Clarify fallback case.
7937
7938 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
7939
7940 Use XCAR and XCDR instead of Fcar and Fcdr where possible.
7941 * callint.c, coding.c, doc.c, editfns.c, eval.c, font.c, fontset.c,
7942 * frame.c, gnutls.c, minibuf.c, msdos.c, textprop.c, w32fns.c,
7943 * w32menu.c, window.c, xmenu.c: Change to use XCAR and XCDR
7944 where argument type is known to be a Lisp_Cons.
7945
7946 2012-07-10 Tom Tromey <tromey@redhat.com>
7947
7948 * bytecode.c (BYTE_CODE_THREADED): New macro.
7949 (BYTE_CODES): New macro. Replaces all old byte-code defines.
7950 (enum byte_code_op): New type.
7951 (CASE, NEXT, FIRST, CASE_DEFAULT, CASE_ABORT): New macros.
7952 (exec_byte_code): Use them. Use token threading when applicable.
7953
7954 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
7955
7956 Optimize pure C strings initialization.
7957 * lisp.h (make_pure_string): Fix prototype.
7958 (build_pure_c_string): New function, defined as static inline. This
7959 provides a better opportunity to optimize away calls to strlen when
7960 the function is called with compile-time constant argument.
7961 * alloc.c (make_pure_c_string): Fix comment. Change to add nchars
7962 argument, adjust users accordingly. Use build_pure_c_string where
7963 appropriate.
7964 * buffer.c, coding.c, data.c, dbusbind.c, fileio.c, fontset.c, frame.c,
7965 * keyboard.c, keymap.c, lread.c, search.c, syntax.c, w32fns.c, xdisp.c,
7966 * xfaces.c, xfns.c, xterm.c: Use build_pure_c_string where appropriate.
7967
7968 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
7969
7970 Avoid calls to strlen in miscellaneous functions.
7971 * buffer.c (init_buffer): Use precalculated len, adjust if needed.
7972 * font.c (Ffont_xlfd_name): Likewise. Change to call make_string.
7973 * lread.c (openp): Likewise.
7974
7975 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
7976
7977 Avoid calls to strlen in path processing functions.
7978 * fileio.c (file_name_as_directory): Add comment. Change to add
7979 srclen argument and return the length of result. Adjust users
7980 accordingly.
7981 (directory_file_name): Fix comment. Change to add srclen argument,
7982 swap 1st and 2nd arguments to obey the common convention.
7983 Adjust users accordingly.
7984 * filelock.c (fill_in_lock_file_name): Avoid calls to strlen.
7985
7986 2012-07-10 Glenn Morris <rgm@gnu.org>
7987
7988 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/netbsd.h, s/unixware.h:
7989 Move PENDING_OUTPUT_COUNT definition to configure.
7990
7991 * s/irix6-5.h (DATA_START, DATA_SEG_BITS):
7992 * s/hpux10-20.h (DATA_SEG_BITS, DATA_START):
7993 * s/gnu.h (DATA_START): Move definitions to configure.
7994
7995 * s/irix6-5.h (SETUP_SLAVE_PTY, PTY_NAME_SPRINTF): Drop ifdef guards.
7996 We include usg5-4-common.h, which defines them both.
7997
7998 * s/gnu.h: Don't include fcntl.h (every file in Emacs that uses
7999 O_RDONLY already includes it).
8000
8001 Stop ns builds setting the EMACSLOADPATH environment variable.
8002 * nsterm.m (ns_load_path): Rename from ns_init_paths.
8003 Now it does not set EMACSLOADPATH, just returns the load-path string.
8004 * nsterm.h: Update accordingly.
8005 * lread.c [HAVE_NS]: Include nsterm.h.
8006 (init_lread) [HAVE_NS]: Use ns_load_path.
8007 * emacs.c (main) [HAVE_NS]: No longer call ns_init_paths.
8008
8009 2012-07-09 Glenn Morris <rgm@gnu.org>
8010
8011 * s/gnu.h (SIGNALS_VIA_CHARACTERS): No need to define it here,
8012 since the included bsd-common.h does so.
8013
8014 Stop ns builds setting the EMACSPATH environment variable.
8015 * nsterm.m (ns_exec_path): New function, split from ns_init_paths.
8016 (ns_init_paths): Do not set EMACSPATH.
8017 * nsterm.h (ns_exec_path): Add it.
8018 * callproc.c (init_callproc_1, init_callproc) [HAVE_NS]:
8019 Use ns_exec_path.
8020
8021 * nsterm.m, nsterm.h (ns_etc_directory): Fix type, empty return.
8022
8023 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
8024
8025 * process.c (wait_reading_process_output): 'waitchannels' was unset
8026 when read_kbd || !NILP (wait_for_cell); fix this.
8027
8028 Add GCC-style 'const' attribute to functions that can use it.
8029 * character.h (char_resolve_modifier_mask):
8030 * keyboard.h (make_ctrl_char):
8031 * lisp.h (multibyte_char_to_unibyte, multibyte_char_to_unibyte_safe)
8032 (init_character_once, next_almost_prime, init_fns, init_image)
8033 (flush_pending_output, init_sound):
8034 * mem-limits.h (start_of_data):
8035 * menu.h (finish_menu_items):
8036 Add ATTRIBUTE_CONST.
8037 * emacs.c (DEFINE_DUMMY_FUNCTION):
8038 Declare the dummy function with ATTRIBUTE_CONST.
8039 * lisp.h (Fbyteorder, Fmax_char, Fidentity):
8040 Add decls with ATTRIBUTE_CONST.
8041
8042 Minor improvements to make_formatted_string.
8043 * alloc.c (make_formatted_string): Prefer int to ptrdiff_t
8044 where int is good enough, as vsprintf returns an int.
8045 * lisp.h (make_formatted_string): Add ATTRIBUTE_FORMAT_PRINTF.
8046
8047 2012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
8048
8049 Use make_formatted_string to avoid double length calculation.
8050 * lisp.h (make_formatted_string): New prototype.
8051 * alloc.c (make_formatted_string): New function.
8052 * buffer.c (Fgenerate_new_buffer_name): Use it.
8053 * dbusbind.c (syms_of_dbusbind): Likewise.
8054 * editfns.c (Fcurrent_time_zone): Likewise.
8055 * filelock.c (get_boot_time): Likewise.
8056 * frame.c (make_terminal_frame, set_term_frame_name)
8057 (x_report_frame_params): Likewise.
8058 * image.c (gs_load): Likewise.
8059 * minibuf.c (get_minibuffer): Likewise.
8060 * msdos.c (dos_set_window_size): Likewise.
8061 * process.c (make_process): Likewise.
8062 * xdisp.c (ensure_echo_area_buffers): Likewise.
8063 * xsettings.c (apply_xft_settings): Likewise.
8064
8065 2012-07-09 Glenn Morris <rgm@gnu.org>
8066
8067 Stop ns builds polluting the environment with EMACSDATA, EMACSDOC.
8068 * nsterm.m (ns_etc_directory): New function, split from ns_init_paths.
8069 (ns_init_paths): Do not set EMACSDATA, EMACSDOC.
8070 * nsterm.h (ns_etc_directory): Add it.
8071 * callproc.c [HAVE_NS]: Include nsterm.h.
8072 (init_callproc_1, init_callproc) [HAVE_NS]: Use ns_etc_directory.
8073
8074 2012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
8075
8076 Move marker debugging code under MARKER_DEBUG.
8077 * marker.c (MARKER_DEBUG): Move marker debugging code under
8078 #ifdef MARKER_DEBUG because byte_char_debug_check is too slow
8079 for bootstrap with --enable-checking (~3x slowdown reported
8080 by Juanma Barranquero <lekktu@gmail.com>).
8081 (verify_bytepos): Move under #ifdef MARKER_DEBUG.
8082
8083 2012-07-08 Paul Eggert <eggert@cs.ucla.edu>
8084
8085 * systime.h (EMACS_SUB_TIME): Clarify behavior with unsigned time_t.
8086 See <http://bugs.gnu.org/11825#29>.
8087
8088 2012-07-08 Eli Zaretskii <eliz@gnu.org>
8089
8090 * xdisp.c (fill_glyphless_glyph_string): If the face of the glyph
8091 has no font, use the frame's font. (Bug#11813)
8092 (display_line): Add commentary about displaying truncation glyphs
8093 on GUI frames.
8094 (produce_special_glyphs): Move here from term.c.
8095
8096 * term.c (produce_special_glyphs): Move to xdisp.c.
8097
8098 * dispextern.h (produce_special_glyphs): Move prototype to xdisp.c
8099 section.
8100
8101 2012-07-07 Andreas Schwab <schwab@linux-m68k.org>
8102
8103 * xdisp.c (display_line): Avoid warning about implicit declaration
8104 of FRAME_FONT.
8105
8106 * frame.c (get_frame_param): Define only if HAVE_WINDOW_SYSTEM.
8107
8108 * lisp.h: Remove empty conditional.
8109
8110 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
8111
8112 * lread.c (load_path_check): Now static.
8113
8114 Fix some minor --with-ns problems found by static checking.
8115 * frame.c (Ftool_bar_pixel_width) [!FRAME_TOOLBAR_WIDTH]:
8116 (x_set_font) [!HAVE_X_WINDOWS]:
8117 * image.c (xpm_load_image) [HAVE_NS]:
8118 (x_to_xcolors) [!HAVE_X_WINDOWS && !HAVE_NTGUI]:
8119 (x_disable_image) [!HAVE_NS && !HAVE_NTGUI]:
8120 Remove unused local.
8121 (Fx_parse_geometry) [HAVE_NS]: Don't return garbage.
8122 (xpm_load_image) [HAVE_NS && !HAVE_XPM]: Remove unused label.
8123 * image.c (x_create_bitmap_from_file) [HAVE_NS]:
8124 (xpm_load_image, xpm_load) [HAVE_NS && !HAVE_XPM]:
8125 * nsselect.m (symbol_to_nsstring, ns_string_to_pasteboard_internal):
8126 * xfaces.c (Fx_load_color_file) [!HAVE_X_WINDOWS]:
8127 Fix pointer signedness problem.
8128 * xfaces.c (FRAME_X_FONT_TABLE):
8129 * xterm.h (FRAME_X_FONT_TABLE): Remove unused, incompatible macros.
8130
8131 2012-07-07 Glenn Morris <rgm@gnu.org>
8132
8133 * lread.c (load_path_check): New function, split from init_lread.
8134 (init_lread): Reorganize. Motivation:
8135 If EMACSLOADPATH is set, check/warn about that rather than the
8136 defaults, which we are not going to use. Hence we can remove
8137 the turn_off_warning and WINDOWSNT || HAVE_NS tests.
8138 Don't warn if site-lisp directories are missing.
8139 If not installed, start from a blank load-path, since
8140 PATH_LOADSEARCH refers to the eventual installation directories.
8141
8142 2012-07-07 Eli Zaretskii <eliz@gnu.org>
8143
8144 Support truncation and continuation glyphs on GUI frames, when
8145 fringes are disabled. (Bug#11832)
8146 * xdisp.c (init_iterator): Get dimensions of truncation and
8147 continuation glyphs even if on GUI frames.
8148 Adjust it->last_visible_x on GUI frames when the left or right fringes,
8149 or both, are absent.
8150 (start_display, move_it_in_display_line_to): Handle the case of a
8151 GUI frame without a fringe to display continuation or truncation
8152 glyphs.
8153 (insert_left_trunc_glyphs): Support GUI frames: make sure
8154 truncation glyphs overwrite enough glyphs from the current line to
8155 have sufficient space in pixels.
8156 (display_line): Support truncation and continuation glyphs on GUI
8157 frames. If some spare pixels are left on the line after inserting
8158 the truncation glyphs, fill that space with a stretch glyph of a
8159 suitably computed width.
8160
8161 * term.c (produce_special_glyphs): Call PRODUCE_GLYPHS, not
8162 produce_glyphs, to support GUI sessions.
8163
8164 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
8165
8166 * sysdep.c (ULLONG_MAX): Define if not already defined (Bug#11781).
8167
8168 * sysdep.c (list_system_processes): Port to NetBSD-current (Bug#11797).
8169
8170 Do not require float-time's arg to fit in time_t (Bug#11825).
8171 This works better on hosts where time_t is unsigned, and where
8172 float-time is applied to the (negative) difference between two times.
8173 * editfns.c (decode_time_components): Last arg is now double *,
8174 not int *, and means to store all the result as a double, without
8175 worrying about whether the seconds part fits in time_t.
8176 All callers changed.
8177 (lisp_time_argument): Remove last int * arg, as it's no longer needed.
8178 All callers changed.
8179 (Ffloat_time): Do not fail merely because the specified time falls
8180 outside of time_t range.
8181
8182 2012-07-07 Glenn Morris <rgm@gnu.org>
8183
8184 * s/darwin.h (HAVE_RES_INIT, HAVE_LIBRESOLV):
8185 * s/hpux10-20.h (HAVE_RINT, HAVE_RANDOM):
8186 * s/unixware.h (HAVE_GETWD): Move undefs to configure (effectively).
8187
8188 2012-07-07 Juanma Barranquero <lekktu@gmail.com>
8189
8190 * makefile.w32-in (DISPEXTERN_H, $(BLD)/regex.$(O)):
8191 Update dependencies.
8192
8193 * s/ms-w32.h [_MSC_VER]: Remove strcasecmp, strncasecmp.
8194
8195 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
8196
8197 Use c_strcasecmp for ASCII case-insensitive comparison (Bug#11786).
8198 * dispextern.h, nsfns.m, nsterm.m: Include <c-strcase.h>.
8199 * dispextern.h (xstrcasecmp): Rewrite using c_strcasecmp.
8200 * nsfns.m (x_get_string_resource): Use c_strncasecmp, not strncasecmp.
8201 * nsterm.m (ns_default): Use c_strcasecmp, not strcasecmp.
8202 * xfaces.c (xstrcasecmp) [!HAVE_STRCASECMP]: Remove.
8203
8204 * xfont.c (compare_font_names): Redo to omit the need for casts.
8205
8206 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
8207
8208 * xfns.c (Fx_change_window_property): Doc fix.
8209 * w32fns.c (Fx_change_window_property): Doc fix.
8210
8211 * w32fns.c (Fx_window_property): Accept the same arguments as the
8212 X Windows version. Doc fix.
8213 * xfns.c (Fx_window_property): Doc fix. (Bug#11870)
8214
8215 2012-07-06 Juanma Barranquero <lekktu@gmail.com>
8216 Eli Zaretskii <eliz@gnu.org>
8217
8218 * s/ms-w32.h: Settings not specific to Windows moved to nt/config.nt.
8219 Windows-specific code from nt/config.nt moved here.
8220 Obsolete settings removed.
8221
8222 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
8223
8224 * process.c: Avoid unnecessary calls to gettime.
8225 (wait_reading_process_output): Don't get the time of day
8226 when gobbling data immediately and not waiting, as there's no need
8227 for it in that case. This removes a FIXME.
8228
8229 2012-07-06 Jan Djärv <jan.h.d@swipnet.se>
8230
8231 * gtkutil.c (xg_event_is_for_scrollbar): Assign gwin when HAVE_GTK3
8232 is defined (Bug#11768).
8233
8234 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
8235
8236 Fix marker debugging code.
8237 * marker.c (byte_char_debug_check): Do not perform the check
8238 if buffer is not multibyte.
8239 (buf_charpos_to_bytepos, buf_bytepos_to_charpos):
8240 Call byte_char_debug_check with correct arguments.
8241
8242 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
8243
8244 Compile marker debugging code only if ENABLE_CHECKING is defined.
8245 * marker.c (byte_char_debug_check, count_markers):
8246 Use only if ENABLE_CHECKING is defined.
8247 (byte_debug_flag): Remove.
8248 (CONSIDER, buf_charpos_to_bytepos, buf_bytepos_to_charpos):
8249 Always call byte_char_debug_check if ENABLE_CHECKING is defined.
8250
8251 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
8252
8253 Avoid code repetition in marker-related functions.
8254 * marker.c (attach_marker): New function.
8255 (Fset_marker, set_marker_restricted, set_marker_both)
8256 (set_marker_restricted_both): Use it.
8257 (Fset_marker, set_marker_restricted, Fbuffer_has_markers_at):
8258 Consistently rename charno to charpos.
8259 (marker_position): Add eassert.
8260 (marker_byte_position): Convert to eassert.
8261
8262 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
8263
8264 Simplify list operations in unchain_overlay and unchain_marker.
8265 * buffer.c (unchain_overlay): Simplify. Add comment.
8266 * marker.c (unchain_marker): Simplify. Fix comments.
8267
8268 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
8269
8270 Introduce fast path for the widely used marker operation.
8271 * alloc.c (build_marker): New function.
8272 * lisp.h (build_marker): New prototype.
8273 * buffer.c (clone_per_buffer_values, Fmake_indirect_buffer): Use it.
8274 * composite.c (autocmp_chars): Likewise.
8275 * editfns.c (buildmark): Remove.
8276 (Fpoint_marker, Fpoint_min_marker, Fpoint_max_marker)
8277 (save_restriction_save): Use build_marker.
8278 * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos): Likewise.
8279 * window.c (save_window_save): Likewise.
8280
8281 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
8282
8283 Do not use Fdelete_overlay in delete_all_overlays
8284 to avoid redundant calls to unchain_overlay.
8285 * buffer.c (drop_overlay): New function.
8286 (delete_all_overlays, Fdelete_overlay): Use it.
8287 * minibuf.c (get_minibuffer): Fix comment.
8288
8289 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
8290
8291 Port to OpenBSD 5.1 amd64.
8292 * sysdep.c [BSD_SYSTEM]: Include <sys/param.h> before <sys/sysctl.h>.
8293 This is needed for OpenBSD, and should be harmless on all BSD systems.
8294 Also, include <sys/sysctl.h>, as it should be available on all
8295 BSD_SYSTEM hosts given that we're already calling sysctl in that case.
8296 (list_system_processes) [__OpenBSD__]: Use DARWIN_OS style mib, but
8297 use p_pid member, not kp_proc.pid.
8298
8299 2012-07-06 Glenn Morris <rgm@gnu.org>
8300
8301 * Makefile.in (emacs$(EXEEXT)): Don't check for load-path shadows.
8302
8303 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
8304
8305 More xmalloc and related cleanup.
8306 * alloc.c, bidi.c, buffer.c, buffer.h, bytecode.c, callint.c:
8307 * callproc.c, charset.c, coding.c, composite.c, data.c, dispnew.c:
8308 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, fns.c:
8309 * font.c, fontset.c, frame.c, fringe.c, ftfont.c, ftxfont.c, gmalloc.c:
8310 * gtkutil.c, image.c, keyboard.c, keymap.c, lread.c, macros.c, menu.c:
8311 * nsfns.m, nsfont.m, nsmenu.m, nsterm.m, print.c, process.c, ralloc.c:
8312 * regex.c, region-cache.c, scroll.c, search.c, sound.c, syntax.c:
8313 * sysdep.c, term.c, termcap.c, unexmacosx.c, window.c, xdisp.c:
8314 * xfaces.c, xfns.c, xftfont.c, xgselect.c, xmenu.c, xrdb.c, xselect.c:
8315 * xterm.c:
8316 Omit needless casts involving void * pointers and allocation.
8317 Prefer "P = xmalloc (sizeof *P)" to "P = xmalloc (sizeof (TYPE_OF_P))",
8318 as the former is more robust if P's type is changed.
8319 Prefer xzalloc to xmalloc + memset 0.
8320 Simplify malloc-or-realloc to realloc.
8321 Don't worry about xmalloc returning a null pointer.
8322 Prefer xstrdup to xmalloc + strcpy.
8323 * editfns.c (Fmessage_box): Grow message_text by at least 80 when
8324 growing it.
8325 * keyboard.c (apply_modifiers_uncached): Prefer local array to
8326 alloca of a constant.
8327
8328 2012-07-05 Eli Zaretskii <eliz@gnu.org>
8329
8330 * xdisp.c (display_line): Fix horizontal pixel coordinates when
8331 hscroll is larger than the line width. Fixes long and futile
8332 looping inside extend_face_to_end_of_line (on a TTY) producing
8333 glyphs that are not needed and thrown away.
8334
8335 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
8336
8337 * marker.c (set_marker_restricted_both): Simplify by using
8338 clip_to_bounds.
8339
8340 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
8341
8342 * editfns.c (region_limit): Simplify by using clip_to_bounds.
8343
8344 2012-07-05 Jan Djärv <jan.h.d@swipnet.se>
8345
8346 * gtkutil.c (gtk_scrollbar_new, gtk_box_new): Define when HAVE_GTK3 is
8347 not defined (Bug#11768).
8348 (xg_create_frame_widgets): Use gtk_plug_new_for_display (Bug#11768).
8349 (xg_create_frame_widgets, create_dialog, xg_get_file_with_chooser)
8350 (make_widget_for_menu_item, xg_make_tool_item): Use gtk_box_new
8351 followed by gtk_box_set_homogeneous (Bug#11768).
8352 (xg_update_menu_item): Use GTK_IS_BOX (Bug#11768).
8353 (update_theme_scrollbar_width, xg_create_scroll_bar):
8354 Use gtk_scrollbar_new (Bug#11768).
8355 (xg_event_is_for_scrollbar): Use Gdk Device functions for HAVE_GTK3.
8356 (is_box_type): New function (Bug#11768).
8357 (xg_tool_item_stale_p): Call is_box_type.
8358 (xg_initialize): Get settings by calling gtk_settings_get_for_screen
8359 with default display (Bug#11768).
8360
8361 2012-07-05 Eli Zaretskii <eliz@gnu.org>
8362
8363 * xdisp.c (window_hscroll_limited): New function.
8364 (pos_visible_p, init_iterator): Use it to avoid overflow of pixel
8365 coordinates when window's hscroll is set to insanely large
8366 values. (Bug#11857)
8367
8368 2012-07-05 Juanma Barranquero <lekktu@gmail.com>
8369
8370 * makefile.w32-in ($(BLD)/dired.$(O), $(BLD)/fileio.$(O)): Fix typo.
8371 ($(BLD)/terminal.$(O), $(BLD)/syntax.$(O)): Update dependencies.
8372
8373 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
8374
8375 Cleanup xmalloc.
8376 * lisp.h (xzalloc): New prototype. Omit needless casts.
8377 * alloc.c (xzalloc): New function. Omit needless casts.
8378 * charset.c: Omit needless casts. Convert all calls to
8379 xmalloc with following memset to xzalloc.
8380 * dispnew.c: Likewise.
8381 * fringe.c: Likewise.
8382 * image.c: Likewise.
8383 * sound.c: Likewise.
8384 * term.c: Likewise.
8385 * w32fns.c: Likewise.
8386 * w32font.c: Likewise.
8387 * w32term.c: Likewise.
8388 * xfaces.c: Likewise.
8389 * xfns.c: Likewise.
8390 * xterm.c: Likewise.
8391 * atimer.c: Omit needless casts.
8392 * buffer.c: Likewise.
8393 * callproc.c: Likewise.
8394 * ccl.c: Likewise.
8395 * coding.c: Likewise.
8396 * composite.c: Likewise.
8397 * doc.c: Likewise.
8398 * doprnt.c: Likewise.
8399 * editfns.c: Likewise.
8400 * emacs.c: Likewise.
8401 * eval.c: Likewise.
8402 * filelock.c: Likewise.
8403 * fns.c: Likewise.
8404 * gtkutil.c: Likewise.
8405 * keyboard.c: Likewise.
8406 * lisp.h: Likewise.
8407 * lread.c: Likewise.
8408 * minibuf.c: Likewise.
8409 * msdos.c: Likewise.
8410 * print.c: Likewise.
8411 * process.c: Likewise.
8412 * region-cache.c: Likewise.
8413 * search.c: Likewise.
8414 * sysdep.c: Likewise.
8415 * termcap.c: Likewise.
8416 * terminal.c: Likewise.
8417 * tparam.c: Likewise.
8418 * w16select.c: Likewise.
8419 * w32.c: Likewise.
8420 * w32reg.c: Likewise.
8421 * w32select.c: Likewise.
8422 * w32uniscribe.c: Likewise.
8423 * widget.c: Likewise.
8424 * xdisp.c: Likewise.
8425 * xmenu.c: Likewise.
8426 * xrdb.c: Likewise.
8427 * xselect.c: Likewise.
8428
8429 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
8430
8431 * fileio.c (time_error_value): Check the right error number.
8432 Problem reported by Troels Nielsen in
8433 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00095.html>.
8434
8435 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
8436
8437 * window.c (set_window_hscroll): Revert the 100000 hscroll limit.
8438 This should be fixed in a better way; see Eli Zaretskii in
8439 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00088.html>.
8440 (HSCROLL_MAX): Remove; this is now internal to set_window_hscroll.
8441
8442 * fileio.c (time_error_value): Rename from special_mtime.
8443 The old name's problems were noted by Eli Zaretskii in
8444 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00087.html>.
8445
8446 * emacs.c (gdb_pvec_type): Change it back to enum pvec_type.
8447 This variable's comment says Emacs needs at least one GDB-visible
8448 symbol of type enum pvec_type, to work around GDB problems.
8449 The symbol's value doesn't matter.
8450
8451 * alloc.c (PSEUDOVECTOR_NBYTES): Remove stray ';'
8452 that causes compilation to fail on pre-C99 compilers.
8453
8454 2012-07-04 Juanma Barranquero <lekktu@gmail.com>
8455
8456 * s/ms-w32.h (LISP_FLOAT_TYPE, HAVE_MEMCMP, HAVE_MEMCPY)
8457 (HAVE_MEMMOVE, HAVE_MEMSET): Don't set, obsolete.
8458
8459 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
8460
8461 * buffer.c (init_buffer_once): Fix initialization of
8462 headers for buffer_defaults and buffer_local_symbols.
8463 Reported by Juanma Barranquero <lekktu@gmail.com>.
8464
8465 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
8466
8467 Turn VECTOR_FREE_LIST_FLAG into PVEC_FREE.
8468 * lisp.h (enum pvec_type): Use fewer bits.
8469 (PSEUDOVECTOR_SIZE_BITS): New constant.
8470 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK): Use it.
8471 (XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR, DEFUN): Adapt code to
8472 change in pvec_type.
8473 (PSEUDOVECTOR_TYPEP): New macro.
8474 (TYPED_PSEUDOVECTORP): Use it.
8475 * fns.c (internal_equal): Adapt code to extract pvectype.
8476 * emacs.c (gdb_pvec_type): Update type.
8477 * alloc.c (PSEUDOVECTOR_NBYTES): New macro.
8478 (VECTOR_FREE_LIST_SIZE_MASK): Remove (=> PSEUDOVECTOR_SIZE_MASK).
8479 (VECTOR_FREE_LIST_FLAG): Remove (=> PVEC_FREE).
8480 (SETUP_ON_FREE_LIST): Use XSETPVECTYPESIZE.
8481 (sweep_vectors): Use it. Use local var `total_bytes' instead of
8482 abusing vector->header.next.nbytes.
8483 (live_vector_p): Use PVEC_TYPE.
8484 (mark_object): Adapt code to extract pvectype. Use switch.
8485
8486 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
8487
8488 * doprnt.c (doprnt): Don't assume string length fits in 'int'.
8489 Tighten new eassert a bit.
8490
8491 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
8492
8493 Fix compilation with --enable-gcc-warnings and -O1
8494 optimization level.
8495 * doprnt.c (doprnt): Change type of tem to int, initialize
8496 to avoid compiler warning. Add eassert.
8497 * search.c (simple_search): Initialize match_byte to avoid
8498 compiler warning. Add eassert.
8499
8500 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
8501
8502 Avoid weird behavior with large horizontal scrolls.
8503 Without this change, for example, large hscroll values would
8504 mess up Emacs's display on Fedora 15 x86, presumably due to
8505 overflows in int calculations in the display code.
8506 Also, if buffers had long lines, Emacs would freeze.
8507 * window.c (HSCROLL_MAX): Reduce to 100000, and make it visible to GDB.
8508 (set_window_hscroll): New function, containing the old guts of
8509 Fset_window_hscroll. Return the clipped value.
8510 (Fset_window_hscroll, Fscroll_left, Fscroll_right): Use it.
8511 This avoids the need to check against PTRDIFF_MAX.
8512
8513 * buffer.c (Fgenerate_new_buffer_name): Fix sprintf format mismatch.
8514
8515 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
8516
8517 * buffer.c (Fgenerate_new_buffer_name): Fix type mismatch.
8518
8519 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
8520
8521 * regex.c: Suppress GCC warning on RHEL 6. (Bug#11207)
8522 Conditionalize the pragmas on GCC 4.5 or later, not GCC 4.3 or later,
8523 since GCC 4.4.6 issues a bogus warning for them.
8524
8525 Fix bugs in file timestamp newness comparisons.
8526 * fileio.c (Ffile_newer_than_file_p):
8527 * lread.c (Fload): Use full timestamp resolution of files,
8528 not just the 1-second resolution, so that files that are only
8529 slightly newer still count as newer.
8530 * fileio.c (Ffile_newer_than_file_p): Don't assume file
8531 timestamps fit in 'int'; this fixes a Y2038 bug on most hosts.
8532
8533 2012-07-03 Paul Eggert <eggert@cs.ucla.edu>
8534
8535 * fileio.c: Improve handling of file time marker. (Bug#11852)
8536 (special_mtime): New function.
8537 (Finsert_file_contents, Fverify_visited_file_modtime):
8538 Use it to set special mtime values consistently.
8539
8540 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
8541
8542 * fileio.c (Finsert_file_contents): Properly handle st_mtime
8543 marker for non-existing file. (Bug#11852)
8544
8545 2012-07-03 Glenn Morris <rgm@gnu.org>
8546
8547 * lisp.h (Fread_file_name): Restore EXFUN (it's not a normal DEFUN
8548 and did not make it into globals.h).
8549
8550 2012-07-03 Tom Tromey <tromey@redhat.com>
8551
8552 * window.c (Fset_window_margins, Fset_window_fringes)
8553 (Fset_window_scroll_bars, Fset_window_vscroll): No longer static.
8554 * textprop.c (Fprevious_property_change): No longer static.
8555 * syntax.c (Fsyntax_table_p): No longer static.
8556 * process.c (Fget_process, Fprocess_datagram_address): No longer
8557 static.
8558 * keymap.c (Flookup_key, Fcopy_keymap): No longer static.
8559 * keyboard.c (Fcommand_execute): No longer static.
8560 Remove EXFUN.
8561 * insdel.c (Fcombine_after_change_execute): No longer static.
8562 * image.c (Finit_image_library): No longer static.
8563 * fileio.c (Fmake_symbolic_link): No longer static.
8564 * eval.c (Ffetch_bytecode): No longer static.
8565 * editfns.c (Fuser_full_name): No longer static.
8566 * doc.c (Fdocumentation_property, Fsnarf_documentation):
8567 No longer static.
8568 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): No longer
8569 static.
8570 * dired.c (Ffile_attributes): No longer static.
8571 * composite.c (Fcomposition_get_gstring): No longer static.
8572 * callproc.c (Fgetenv_internal): No longer static.
8573
8574 * ccl.h: Remove EXFUNs.
8575 * buffer.h: Remove EXFUNs.
8576 * dispextern.h: Remove EXFUNs.
8577 * intervals.h: Remove EXFUNs.
8578 * fontset.h: Remove EXFUN.
8579 * font.h: Remove EXFUNs.
8580 * dosfns.c (system_process_attributes): Remove EXFUN.
8581 * keymap.h: Remove EXFUNs.
8582 * lisp.h: Remove EXFUNs.
8583 * w32term.h: Remove EXFUNs.
8584 * window.h: Remove EXFUNs.
8585 * xsettings.h: Remove EXFUN.
8586 * xterm.h: Remove EXFUN.
8587
8588 2012-07-03 Glenn Morris <rgm@gnu.org>
8589
8590 * lisp.h (Frandom): Make it visible to C.
8591 * buffer.c (Fgenerate_new_buffer_name): Speed up finding a new
8592 buffer for invisible buffers. (Bug#1229)
8593
8594 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
8595
8596 Fix block vector allocation code to allow VECTOR_BLOCK_SIZE
8597 values which aren't power of 2.
8598 * alloc.c (VECTOR_FREE_LIST_SIZE_MASK): New macro.
8599 Verify its value and the value of VECTOR_BLOCK_SIZE. Adjust users
8600 accordingly.
8601
8602 2012-07-03 Stefan Monnier <monnier@iro.umontreal.ca>
8603
8604 * lisp.h (Lisp_Misc, Lisp_Fwd): Move around to group better.
8605
8606 * alloc.c (mark_object): Revert part of last patch to use `switch'.
8607
8608 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
8609
8610 * alloc.c (allocate_vector_block): Remove redundant
8611 calls to mallopt if DOUG_LEA_MALLOC is defined.
8612 (allocate_vectorlike): If DOUG_LEA_MALLOC is defined,
8613 avoid calls to mallopt if zero_vector is returned.
8614
8615 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
8616
8617 * alloc.c (check_string_bytes): If GC_CHECK_STRING_BYTES
8618 is enabled, avoid dereferencing NULL current_sblock if
8619 running undumped.
8620
8621 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
8622
8623 Cleanup basic buffer management.
8624 * buffer.h (struct buffer): Change layout to use generic vector
8625 marking code. Fix some comments. Change type of 'clip_changed'
8626 to bitfield. Remove unused #ifndef old.
8627 (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER): Remove.
8628 (GET_OVERLAYS_AT): Fix indentation.
8629 (for_each_per_buffer_object_at): New macro.
8630 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
8631 (Fbuffer_local_variables): Use it.
8632 (init_buffer_once, syms_of_buffer): Remove unused #ifndef old.
8633 * alloc.c (allocate_buffer): Adjust to match new layout of
8634 struct buffer. Fix comment.
8635 (mark_overlay): New function.
8636 (mark_buffer): Use it. Use mark_vectorlike to mark normal
8637 Lisp area of struct buffer.
8638 (mark_object): Use it. Adjust marking of misc objects
8639 and related comments.
8640
8641 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
8642
8643 * alloc.c (mark_object): Remove "#ifdef GC_CHECK_MARKED_OBJECTS"
8644 wrapper that is not needed because the wrapped code is a no-op (zero
8645 machine instructions) when GC_CHECK_MARKED_OBJECTS is not defined.
8646 This avoids a -Wunused-macros diagnostic with GCC 4.7.1 x86-64.
8647
8648 2012-07-02 Dmitry Antipov <dmantipov@yandex.ru>
8649
8650 * alloc.c (mark_buffer): Simplify. Remove prototype.
8651 (mark_object): Add comment. Reorganize marking of vector-like
8652 objects. Use CHECK_LIVE for all vector-like objects except buffers
8653 and subroutines when GC_CHECK_MARKED_OBJECTS is defined.
8654 Avoid redundant calls to mark_vectorlike for bool vectors.
8655
8656 2012-06-30 Glenn Morris <rgm@gnu.org>
8657
8658 * nsterm.m (ns_init_paths): Ignore site-lisp if --no-site-lisp.
8659
8660 * epaths.in (PATH_SITELOADSEARCH): New.
8661 * lread.c (init_lread): Use PATH_SITELOADSEARCH.
8662 This is rather than relying on --enable-locallisppath elements
8663 having "site-lisp" in their names. (Bug#10208#25, 11658)
8664
8665 2012-06-30 Eli Zaretskii <eliz@gnu.org>
8666
8667 * w32proc.c (sys_select): Accept and ignore one more argument.
8668
8669 * w32.c (emacs_gnutls_pull): Call select with one more argument.
8670
8671 * sysselect.h [DOS_NT]: Don't include sys/select.h.
8672 (pselect) [!MS_DOS]: Redirect to sys_select.
8673
8674 * sysdep.c: Don't include dos.h and dosfns.h.
8675
8676 * process.c (sys_select):
8677 * msdos.c (sys_select): Accept one more argument and ignore it.
8678
8679 * msdos.c (event_timestamp, sys_select): Use gnulib's gettime;
8680 adapt data types and code to that.
8681
8682 * dosfns.c:
8683 * msdos.c (gettime, settime): Define away the prototypes in dos.h,
8684 which clashes with the gnulib function of the same name.
8685
8686 2012-06-30 Andreas Schwab <schwab@linux-m68k.org>
8687
8688 * font.c (font_style_to_value, font_style_symbolic)
8689 (font_prop_validate_style): Add type checks for values in
8690 font_style_table.
8691
8692 * lisp.h (CHECK_RANGED_INTEGER): Make value to check the first
8693 argument.
8694 * character.c, charset.c, menu.c, process.c, window.c: Adjust all
8695 uses.
8696
8697 2012-06-29 Eli Zaretskii <eliz@gnu.org>
8698
8699 * xdisp.c (try_window_id): Undo last change.
8700
8701 * w32.c (getwd): Adjust commentary about startup_dir.
8702 (init_environment): Always call sys_access, even in non-MSVC
8703 builds. Don't chdir to the directory of the Emacs executable.
8704 This undoes code from 1997 which was justified by the need to
8705 "avoid conflicts when removing and renaming directories". But its
8706 downside was that every relative file name was being interpreted
8707 relative to the directory of the Emacs executable, which can never
8708 be TRT. In particular, it broke sys_access when called with
8709 relative file names.
8710 (sys_access): Map GetLastError to errno.
8711
8712 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
8713
8714 * window.h (struct window): Change type of 'fringes_outside_margins'
8715 to bitfield. Fix comment. Adjust users accordingly.
8716 (struct window): Change type of 'window_end_bytepos' to ptrdiff_t.
8717 Adjust comment.
8718 * xdisp.c (try_window_id): Change type of 'first_vpos' and 'vpos'
8719 to ptrdiff_t.
8720
8721 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
8722
8723 * gnutls.c (emacs_gnutls_handshake):
8724 Add QUIT to make the loop interruptible.
8725
8726 2012-06-29 Glenn Morris <rgm@gnu.org>
8727
8728 * charset.c (init_charset): Make lack of etc/charsets fatal.
8729
8730 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
8731
8732 * editfns.c (region_limit): Fix type mismatch.
8733
8734 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
8735
8736 * nsfns.m: Fix GLYPH_DEBUG usage assuming that it may be
8737 undefined. Convert from xassert to eassert.
8738 * nsmenu.m: Convert from xassert to eassert.
8739 * nsterm.m: Likewise.
8740
8741 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
8742
8743 * editfns.c (region_limit): Clip to narrowing (bug#11770).
8744
8745 2012-06-28 Paul Eggert <eggert@cs.ucla.edu>
8746
8747 Avoid integer overflow on scroll-left and scroll-right.
8748 * window.c (HSCROLL_MAX): New macro.
8749 (Fscroll_left, Fscroll_right): Avoid undefined behavior on integer
8750 overflow when requested scroll falls outside ptrdiff_t range.
8751
8752 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
8753
8754 * window.h (struct window): Change type of 'hscroll',
8755 'min_hscroll' and 'last_point' from Lisp_Object to ptrdiff_t,
8756 'last_modified' and 'last_overlay_modified' to EMACS_INT.
8757 Adjust users accordingly.
8758 * xdisp.c (try_cursor_movement): Replace type check with eassert.
8759 * window.c (Fscroll_left, Fscroll_right): Change type of 'hscroll'
8760 from EMACS_INT to ptrdiff_t.
8761 (make_window): Omit redundant initialization.
8762
8763 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
8764
8765 * makefile.w32-in ($(BLD)/regex.$(O)): Update dependencies.
8766
8767 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
8768
8769 * window.h (struct window): Change type of 'use_time' and
8770 'sequence_number' from Lisp_Object to int.
8771 * frame.c (make_frame): Adjust users accordingly.
8772 * print.c (print_object): Likewise.
8773 * window.c (select_window, Fwindow_use_time, make_parent_window)
8774 (make_window): Likewise.
8775
8776 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
8777
8778 * dispextern.h (GLYPH_DEBUG): Now defined in config.h if
8779 enabled with --enable-checking=[all,glyphs] configure option.
8780 Fix GLYPH_DEBUG usage assuming that it may be undefined,
8781 adjust comments accordingly.
8782 * dispnew.c: Fix GLYPH_DEBUG usage assuming that it may be
8783 undefined, adjust comments accordingly.
8784 * image.c: Likewise.
8785 * scroll.c: Likewise.
8786 * w32fns.c: Likewise.
8787 * w32term.c: Likewise.
8788 * xdisp.c: Likewise.
8789 * xfaces.c: Likewise.
8790 * xfns.c: Likewise.
8791 * xterm.c: Likewise.
8792
8793 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
8794
8795 Generalize run-time debugging checks.
8796 * dispextern.h (XASSERTS): Remove.
8797 * fontset.c (xassert): Remove.
8798 Convert from xassert to eassert.
8799 * alloc.c: Convert from xassert to eassert.
8800 * bidi.c: Likewise.
8801 * dispnew.c: Likewise.
8802 * fns.c: Likewise.
8803 * fringe.c: Likewise.
8804 * ftfont.c: Likewise.
8805 * gtkutil.c: Likewise.
8806 * image.c: Likewise.
8807 * keyboard.c: Likewise.
8808 * menu.c: Likewise.
8809 * process.c: Likewise.
8810 * scroll.c: Likewise.
8811 * sound.c: Likewise.
8812 * term.c: Likewise.
8813 * w32console.c: Likewise.
8814 * w32fns.c: Likewise.
8815 * w32term.c: Likewise.
8816 * window.c: Likewise.
8817 * xdisp.c: Likewise.
8818 * xfaces.c: Likewise.
8819 * xfns.c: Likewise.
8820 * xselect.c: Likewise.
8821 * xterm.c: Likewise.
8822
8823 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
8824
8825 * fns.c (maybe_resize_hash_table): Output message when growing the
8826 purify-hashtable.
8827
8828 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
8829
8830 * alloc.c (allocate_string_data): Remove dead code.
8831 * xsettings.c (XSETTINGS_FONT_NAME): Move under HAVE_XFT to
8832 avoid GCC warning about unused macro.
8833
8834 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
8835
8836 * alloc.c (allocate_string): Omit intervals initialization.
8837 * alloc.c (make_uninit_multibyte_string): Initialize intervals
8838 as in make_pure_string and make_pure_c_string.
8839
8840 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
8841
8842 * alloc.c (allocate_string): Fix last change.
8843
8844 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
8845
8846 * alloc.c (allocate_string): Remove two redundant calls
8847 to memset, add explicit initialization where appropriate.
8848
8849 2012-06-27 Glenn Morris <rgm@gnu.org>
8850
8851 * lisp.mk (lisp): Remove paths.elc.
8852
8853 2012-06-27 Chong Yidong <cyd@gnu.org>
8854
8855 * doc.c (Fsubstitute_command_keys): Fix punctuation.
8856
8857 2012-06-26 John Wiegley <johnw@newartisans.com>
8858
8859 * unexmacosx.c (copy_data_segment): Add two section names used
8860 on Mac OS X Lion: __mod_init_func and __mod_term_func.
8861
8862 * alloc.c (mark_memory): Do not check with -faddress-sanitizer
8863 when building with Clang.
8864
8865 2012-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
8866
8867 * eval.c (Fapply): Allow calling it with a single argument.
8868
8869 2012-06-26 Eli Zaretskii <eliz@gnu.org>
8870
8871 * s/ms-w32.h (strcasecmp, strncasecmp) [_MSC_VER]: Redirect to
8872 _stricmp and _strnicmp.
8873 (HAVE_STRCASECMP, HAVE_STRNCASECMP): Define to 1.
8874
8875 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
8876
8877 * alloc.c (allocate_window): Zero out non-Lisp part of newly
8878 allocated window.
8879 (allocate_process): Likewise for new process.
8880 (allocate_terminal): Change to use offsetof.
8881 (allocate_frame): Likewise.
8882 * frame.c (make_frame): Omit redundant initialization.
8883 * window.c (make_parent_window): Use memset.
8884 (make_window): Omit redundant initialization.
8885 * process.c (make_process): Omit redundant initialization.
8886 * terminal.c (create_terminal): Likewise.
8887
8888 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
8889
8890 * term.c (delete_tty): Remove redundant call to memset.
8891
8892 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
8893
8894 * alloc.c: Remove build_string.
8895 * lisp.h: Define build_string as static inline. This provides
8896 a better opportunity to optimize away calls to strlen when the
8897 function is called with compile-time constant argument.
8898 * image.c (imagemagick_error): Convert to build_string.
8899 * w32proc.c (sys_spawnve): Likewise.
8900 * xterm.c (x_term_init): Likewise.
8901
8902 2012-06-26 Paul Eggert <eggert@cs.ucla.edu>
8903
8904 Use sprintf return value instead of invoking strlen on result.
8905 In the old days this wasn't portable, since some sprintf
8906 implementations returned char *. But they died out years ago and
8907 Emacs already assumes sprintf returns int.
8908 Similarly for float_to_string.
8909 This patch speeds up (number-to-string 1000) by 3% on Fedora 15 x86-64.
8910 * ccl.c (ccl_driver):
8911 * character.c (string_escape_byte8):
8912 * data.c (Fnumber_to_string):
8913 * doprnt.c (doprnt):
8914 * print.c (print_object):
8915 * xdisp.c (message_dolog):
8916 * xfns.c (syms_of_xfns):
8917 Use sprintf or float_to_string result to avoid need to call strlen.
8918 * data.c (Fnumber_to_string):
8919 Use make_unibyte_string, since the string must be ASCII.
8920 * lisp.h, print.c (float_to_string): Now returns int length.
8921 * term.c (produce_glyphless_glyph):
8922 Use sprintf result rather than recomputing it.
8923
8924 Clean out last vestiges of the old HAVE_CONFIG_H stuff.
8925 * Makefile.in (ALL_CFLAGS):
8926 * makefile.w32-in (LOCAL_FLAGS): Remove -DHAVE_CONFIG_H.
8927 * gmalloc.c, regex.c: Include <config.h> unconditionally.
8928
8929 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
8930
8931 * dispextern.h (xstrcasecmp): Define to library function
8932 strcasecmp if available.
8933 * xfaces.c: Do not use xstrcasecmp if strcasecmp is available.
8934
8935 2012-06-25 Andreas Schwab <schwab@linux-m68k.org>
8936
8937 * keyboard.c (menu_bar_items, menu_bar_item, read_key_sequence):
8938 Avoid comma operator.
8939 * menu.c (push_submenu_start, push_submenu_end)
8940 (push_left_right_boundary, push_menu_pane): Likewise.
8941 * msdos.c (dos_rawgetc): Likewise.
8942
8943 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
8944
8945 * xfns.c (xic_create_fontsetname): Remove redundant calls
8946 to memset.
8947
8948 2012-06-25 Paul Eggert <eggert@cs.ucla.edu>
8949
8950 * gtkutil.c (get_utf8_string): Remove redundant assignment.
8951 sprintf already null-terminates its output.
8952
8953 * xfns.c (x_window): Remove redundant cast.
8954
8955 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
8956
8957 * xmenu.c (xmenu_show, xdialog_show): Explicit cast from
8958 `const char *' to `char *' to avoid compiler warning.
8959
8960 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
8961
8962 * xterm.c (x_term_init): Build proper-sized _XSETTINGS_Snnn string
8963 instead of truncating it to 63 (admittedly a generous limit).
8964
8965 * process.c: Fix spelling and caps in comments.
8966
8967 2012-06-24 Dan Nicolaescu <dann@ics.uci.edu>
8968
8969 * emacs.c (setpgrp): Remove definition, unused.
8970 * sysdep.c (setpgrp): Remove definition, not used in this file.
8971
8972 2012-06-24 Juanma Barranquero <lekktu@gmail.com>
8973
8974 * makefile.w32-in: Update dependencies.
8975
8976 2012-06-24 Eli Zaretskii <eliz@gnu.org>
8977
8978 * makefile.w32-in (TIMESPEC_H): Remove nt/inc/sys/time.h.
8979 (SYSTIME_H): Add nt/inc/sys/time.h.
8980
8981 * systime.h [WINDOWSNT]: Include sys/time.h.
8982
8983 * s/ms-w32.h (struct timespec): Definition moved from
8984 nt/inc/sys/time.h. Suggested by Paul Eggert <eggert@cs.ucla.edu>.
8985
8986 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
8987
8988 Switch from NO_RETURN to C11's _Noreturn (Bug#11750).
8989 * buffer.h (buffer_slot_type_mismatch):
8990 * data.c (arith_error) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
8991 * eval.c (unwind_to_catch):
8992 * image.c (my_png_error, my_error_exit):
8993 * keyboard.c (quit_throw_to_read_char, user_error)
8994 (Fexit_recursive_edit, Fabort_recursive_edit):
8995 * lisp.h (die, args_out_of_range, args_out_of_range_3)
8996 (wrong_type_argument, buffer_overflow, __executable_start)
8997 (memory_full, buffer_memory_full, string_overflow, Fthrow)
8998 (xsignal, xsignal0, xsignal1, xsignal2, xsignal3, signal_error)
8999 (error, verror, nsberror, report_file_error, Ftop_level, Fkill_emacs)
9000 (fatal):
9001 (child_setup) [!DOS_NT]:
9002 * lread.c (end_of_file_error, invalid_syntax):
9003 * process.c (send_process_trap) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
9004 * puresize.h (pure_write_error):
9005 * search.c (matcher_overflow):
9006 * sound.c (sound_perror, alsa_sound_perror):
9007 * sysdep.c, syssignal.h (croak):
9008 * term.c (maybe_fatal, vfatal):
9009 * textprop.c (text_read_only):
9010 * undo.c (user_error):
9011 * unexmacosx.c (unexec_error):
9012 * xterm.c (x_ins_del_lines, x_delete_glyphs):
9013 Use _Noreturn rather than NO_RETURN.
9014 No need for separate decl merely because of _Noreturn.
9015 * sound.c (sound_warning, parse_sound):
9016 Remove unnecessary forward decls.
9017
9018 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
9019
9020 Fix bug when time_t is unsigned and as wide as intmax_t (Bug#9000).
9021 * lisp.h (WAIT_READING_MAX): New macro.
9022 * dispnew.c (Fsleep_for, sit_for):
9023 * keyboard.c (kbd_buffer_get_event):
9024 * process.c (Faccept_process_output):
9025 Use it to avoid bogus compiler warnings with obsolescent GCC versions.
9026 This improves on the previous patch, which introduced a bug
9027 when time_t is unsigned and as wide as intmax_t.
9028 See <http://bugs.gnu.org/9000#51>.
9029
9030 2012-06-23 Eli Zaretskii <eliz@gnu.org>
9031
9032 * dispnew.c (sit_for, Fsleep_for):
9033 * keyboard.c (kbd_buffer_get_event):
9034 * process.c (Faccept_process_output): Avoid compiler warnings when
9035 comparing a 32-bit time_t with a 64-bit INTMAX_MAX.
9036
9037 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
9038
9039 * makefile.w32-in: Update dependencies.
9040
9041 * w32.c (ltime): Add return type and declare static.
9042 (w32_get_internal_run_time): Remove usused variable `time_100ns'.
9043
9044 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
9045
9046 * sysdep.c [__FreeBSD__]: Fix more recently-introduced typos.
9047 Privately reported by Herbert J. Skuhra.
9048 (make_lisp_timeval) [__FreeBSD__]: Rename from TIMELIST.
9049 All uses changed.
9050 (system_process_attributes) [__FreeBSD__]: Invoke make_lisp_time,
9051 not make_lisp_timeval, when the argument is of type EMACS_TIME.
9052
9053 2012-06-23 Eli Zaretskii <eliz@gnu.org>
9054
9055 * w32proc.c (Fw32_get_locale_info): Fix an off-by-one error in
9056 last argument of make_unibyte_string.
9057
9058 * keyboard.c (kbd_buffer_get_event): Include the codepage and the
9059 language ID in the event parameters.
9060
9061 * w32term.c (w32_read_socket): Put the new keyboard codepage into
9062 event.code, not the obscure "character set ID".
9063
9064 2012-06-23 Chong Yidong <cyd@gnu.org>
9065
9066 * xmenu.c (x_menu_wait_for_event): Adapt GTK3 to new xg_select.
9067
9068 2012-06-23 Eli Zaretskii <eliz@gnu.org>
9069
9070 Fix the MS-Windows build broken by 2012-06-22T21:17:42Z!eggert@cs.ucla.edu.
9071 * w32.c (fdutimens): New function.
9072
9073 * w32proc.c (sys_select): Adapt to change in the EMACS_TIME type.
9074
9075 * s/ms-w32.h (pselect): Redirect to sys_select.
9076
9077 * sysselect.h [WINDOWSNT]: Don't include sys/select.h.
9078
9079 * ralloc.c (r_alloc_inhibit_buffer_relocation): Fix stupid thinko
9080 in the logic of incrementing and decrementing the value of
9081 use_relocatable_buffers.
9082
9083 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
9084
9085 * sysdep.c [__FreeBSD__]: Fix recently-introduced typos.
9086 Privately reported by Herbert J. Skuhra.
9087 [__FreeBSD__]: Remove "*/" typo after "#include".
9088 (timeval_to_EMACS_TIME) [__FreeBSD__]: New static function.
9089 (TIMEVAL) [__FreeBSD__]: Now a static function rather than a macro.
9090 (TIMEVAL, system_process_attributes) [__FreeBSD__]:
9091 Don't assume EMACS_TIME and struct timeval are the same type.
9092
9093 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
9094
9095 Support higher-resolution time stamps (Bug#9000).
9096 The time stamps are only nanosecond-resolution at the C level,
9097 since that's the best that any real-world system supports now.
9098 But they are picosecond-resolution at the Lisp level, as that's
9099 easy, and leaves room for future OS improvements.
9100
9101 * Makefile.in (LIB_CLOCK_GETTIME): New macro.
9102 (LIBES): Use it.
9103
9104 * alloc.c (Fgarbage_collect): Port to higher-res time stamps.
9105 Don't get current time unless it's needed.
9106
9107 * atimer.c: Include <sys/time.h> unconditionally, since gnulib
9108 now provides it if it's absent.
9109 (start_atimer): Port to higher-res time stamps.
9110 Check for time stamp overflow. Don't get current time more
9111 often than is needed.
9112
9113 * buffer.h (struct buffer): Buffer modtime now has high resolution.
9114 Include systime.h, not time.h.
9115 (NONEXISTENT_MODTIME_NSECS, UNKNOWN_MODTIME_NSECS): New macros.
9116
9117 * dired.c: Include stat-time.h.
9118 (Ffile-attributes): File times now have higher resolution.
9119
9120 * dispextern.h [HAVE_WINDOW_SYSTEM]: Include systime.h.
9121 (struct image): Timestamp now has higher resolution.
9122
9123 * dispnew.c (PERIODIC_PREEMPTION_CHECKING): Remove, as Emacs always
9124 has at least microseconds now. All uses removed.
9125 (update_frame, update_single_window, update_window, update_frame_1)
9126 (Fsleep_for, sit_for): Port to higher-resolution time stamps.
9127 (duration_to_sec_usec): Remove; no longer needed.
9128
9129 * editfns.c (time_overflow): Now extern.
9130 (Fcurrent_time, Fget_internal_run_time, make_time, lisp_time_argument)
9131 (float-time, Fformat_time_string, Fcurrent_time_string)
9132 (Fcurrent_time_zone): Accept and generate higher-resolution
9133 time stamps.
9134 (make_time_tail, make_lisp_time, dissassemble_lisp_time)
9135 (decode_time_components, lisp_seconds_argument): New functions.
9136 (make_time): Now static.
9137 (lisp_time_argument): Now returns EMACS_TIME. New arg ppsec.
9138 Report an error if the time is invalid, rather than having the caller
9139 do that.
9140
9141 * fileio.c: Include <stat-time.h>
9142 (Fcopy_file): Copy higher-resolution time stamps.
9143 Prefer to set the time stamp via a file descriptor if that works.
9144 (Fset_file_times, Finsert_file_contents, Fwrite_region)
9145 (Fverify_visited_file_modtime, Fclear_visited_file_modtime)
9146 (Fvisited_file_modtime, Fset_visited_file_modtime):
9147 Support higher-resolution time stamps.
9148
9149 * fns.c (Frandom): Use nanoseconds, not microseconds, for seed.
9150
9151 * gtkutil.c (xg_maybe_add_timer): Port to higher-res time stamps.
9152
9153 * image.c (prepare_image_for_display, clear_image_cache)
9154 (lookup_image): Port to higer-resolution time stamps.
9155
9156 * keyboard.c (start_polling, bind_polling_period):
9157 Check for time stamp overflow.
9158 (read_char, kbd_buffer_get_event, timer_start_idle)
9159 (timer_stop_idle, timer_resume_idle, timer_check_2, timer_check)
9160 (Fcurrent_idle_time, init_keyboard, set_waiting_for_input):
9161 Port to higher-resolution time stamps. Do not assume time_t is signed.
9162 (decode_timer): New function. Timers are now vectors of length 9,
9163 not 8, to accommodate the picosecond component.
9164 (timer_check_2): Use it.
9165
9166 * nsterm.m (select_timeout, timeval_subtract): Remove.
9167 (ns_timeout): Use Emacs's facilities for time stamp arithmetic,
9168 as they're a bit more accurate and handle overflow better.
9169 (ns_select): Change prototype to be compatible with pselect.
9170 (ns_select, ns_term_shutdown): Port to ns-resolution time stamps.
9171 * nsterm.h (ns_select): Adjust prototype.
9172
9173 * msdos.c (EMACS_TIME_ZERO_OR_NEG_P): Remove, as it assumes
9174 us-resolution time stamps.
9175 (sys_select): Use the new EMACS_TIME_SIGN macro instead.
9176
9177 * lread.c (read_filtered_event): Port to ns-resolution time stamps.
9178
9179 * lisp.h (time_overflow): New decl.
9180 (wait_reading_process_output): First arg is now intmax_t, not int,
9181 to accommodate larger waits.
9182
9183 * process.h (struct Lisp_Process.read_output_delay):
9184 Now counts nanoseconds, not microseconds.
9185 * process.c (ADAPTIVE_READ_BUFFERING): Don't worry about
9186 EMACS_HAS_USECS.
9187 (READ_OUTPUT_DELAY_INCREMENT, Faccept_process_output)
9188 (wait_reading_process_output):
9189 Port to ns-resolution time stamps.
9190 (Faccept_process_output, wait_reading_process_output):
9191 Check for time stamp overflow. Do not assume time_t is signed.
9192 (select_wrapper): Remove; we now use pselect.
9193 (Fprocess_attributes): Now generates ns-resolution time stamps.
9194
9195 * sysdep.c: Include utimens.h. Don't include utime.h
9196 or worry about struct utimbuf; gnulib does that for us now.
9197 (gettimeofday): Remove; gnulib provides a substitute.
9198 (make_timeval): New function.
9199 (set_file_times): Now sets ns-resolution time stamps.
9200 New arg FD; all uses changed.
9201 (time_from_jiffies, ltime_from_jiffies, get_up_time)
9202 (system_process_attributes):
9203 Now returns ns-resolution time stamp. All uses changed.
9204 Check for time stamp overflow.
9205
9206 * sysselect.h: Don't depend on HAVE_SYS_SELECT_H; gnulib
9207 provides a substitute now.
9208
9209 * systime.h: Include timespec.h rather than sys/time.h and time.h,
9210 since it guarantees struct timespec.
9211 (EMACS_TIME): Now struct timespec, so that we can support
9212 ns-resolution time stamps.
9213 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): New macros.
9214 (EMACS_HAS_USECS): Remove; Emacs always has sub-second time stamps now.
9215 (EMACS_USECS): Remove.
9216 (EMACS_SET_USECS): The underlying time stamp now has ns resolution,
9217 so multiply the arg by 1000 before storing it.
9218 (EMACS_NSECS, EMACS_SECS_ADDR, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS):
9219 New macros.
9220 (EMACS_GET_TIME, EMACS_ADD_TIME, EMACS_SUB_TIME):
9221 Port to ns-resolution time stamps.
9222 (EMACS_TIME_NEG_P): Remove; replaced by....
9223 (EMACS_TIME_SIGN): New macro.
9224 (EMACS_SET_INVALID_TIME, EMACS_TIME_VALID_P)
9225 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE): New macros.
9226 (set_file_times, make_time, lisp_time_argument): Adjust signature.
9227 (make_timeval, make_lisp_time, decode_time_components): New decls.
9228 (EMACS_TIME_CMP): Remove; no longer used. Plus, it was buggy, in
9229 that it mishandled time_t overflow. You can't compare by subtracting!
9230 (EMACS_TIME_EQ, EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE)
9231 (EMACS_TIME_LT, EMACS_TIME_LE): Rewrite in terms of timespec_cmp.
9232
9233 * term.c: Include <sys/time.h>.
9234 (timeval_to_Time): New function, for proper overflow wraparound.
9235 (term_mouse_position, term_mouse_click): Use it.
9236
9237 * undo.c (record_first_change): Support higher-resolution time stamps
9238 in the undo buffer.
9239 (Fprimitive_undo): Use them when restoring time stamps.
9240
9241 * w32.c (ltime, U64_TO_LISP_TIME, process_times, emacs_gnutls_pull)
9242 (w32_get_internal_run_time):
9243 Port to higher-resolution Emacs time stamps.
9244 (ltime): Now accepts single 64-bit integer, as that's more convenient
9245 for callers.
9246
9247 * xdisp.c (start_hourglass): Port to ns-resolution time stamps.
9248
9249 * xgselect.c, xgselect.h (xg_select): Add sigmask argument,
9250 for compatibility with pselect. Support ns-resolution time stamps.
9251
9252 * xmenu.c (x_menu_wait_for_event): Support ns-resolution time stamps.
9253
9254 * xselect.c (wait_for_property_change, x_get_foreign_selection):
9255 Check for time stamp overflow, and support ns-resolution time stamps.
9256
9257 * xterm.c: Don't include sys/time.h; gnulib does that for us now.
9258 Don't worry about whether HAVE_TIMEVAL and HAVE_SELECT are set.
9259 (timeval_subtract): Remove; no longer needed.
9260 (XTflash, XTring_bell, x_wait_for_event):
9261 Port to ns-resolution time stamps. Don't assume time_t is signed.
9262
9263 2012-06-22 Chong Yidong <cyd@gnu.org>
9264
9265 * xdisp.c (x_consider_frame_title): Revert last change.
9266
9267 2012-06-22 Eli Zaretskii <eliz@gnu.org>
9268
9269 * alloc.c (NSTATICS): Enlarge to 0x650. Otherwise, Emacs compiled
9270 with -DENABLE_CHECKING -DXASSERTS -DGLYPH_DEBUG=1 -DBYTE_CODE_METER
9271 aborts in staticpro during startup. (Without -DBYTE_CODE_METER,
9272 staticidx goes up to 1597 out of 1600 = 0x640.)
9273
9274 2012-06-20 Paul Eggert <eggert@cs.ucla.edu>
9275
9276 * fileio.c (Fdefault_file_modes): Block input while fiddling with umask.
9277 Otherwise, the umask might be mistakenly 0 while handling input signals.
9278
9279 2012-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
9280
9281 * minibuf.c (Fread_string): Bind minibuffer-completion-table.
9282
9283 2012-06-19 Dmitry Antipov <dmantipov@yandex.ru>
9284
9285 * alloc.c, bytecode.c, ccl.c, coding.c, composite.c, data.c, dosfns.c:
9286 * font.c, image.c, keyboard.c, lread.c, menu.c, minibuf.c, msdos.c:
9287 * print.c, syntax.c, window.c, xmenu.c, xselect.c: Replace direct
9288 access to `contents' member of Lisp_Vector objects with AREF and ASET
9289 where appropriate.
9290
9291 2012-06-19 Chong Yidong <cyd@gnu.org>
9292
9293 * frame.c (delete_frame): When selecting a frame on a different
9294 text terminal, do not alter the terminal's top-frame.
9295
9296 * xdisp.c (format_mode_line_unwind_data): Record the target
9297 frame's selected window and its terminal's top-frame.
9298 (unwind_format_mode_line): Restore them.
9299 (x_consider_frame_title, display_mode_line, Fformat_mode_line):
9300 Callers changed.
9301 (x_consider_frame_title): Do not condition on HAVE_WINDOW_SYSTEM,
9302 since tty frames can be explicitly named.
9303 (prepare_menu_bars): Likewise.
9304
9305 * term.c (Ftty_top_frame): New function.
9306
9307 2012-06-18 Paul Eggert <eggert@cs.ucla.edu>
9308
9309 Port byte-code-meter to modern targets.
9310 * bytecode.c (METER_CODE) [BYTE_CODE_METER]: Don't assume
9311 !CHECK_LISP_OBJECT_TYPE && !USE_LSB_TAG. Problem with
9312 CHECK_LISP_OBJECT_TYPE reported by Dmitry Antipov in
9313 <http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00282.html>.
9314 (METER_1, METER_2): Simplify.
9315
9316 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
9317
9318 * data.c (Fdefalias): Return `symbol' (bug#11686).
9319
9320 2012-06-18 Martin Rudalics <rudalics@gmx.at>
9321
9322 * buffer.c (Fkill_buffer): Don't throw an error when the buffer
9323 gets killed during executing of this function (Bug#11665).
9324 Try to always return Qt when the buffer has been actually killed.
9325 (Vkill_buffer_query_functions): In doc-string say that functions
9326 run by this hook should not change the current buffer.
9327
9328 2012-06-18 Paul Eggert <eggert@cs.ucla.edu>
9329
9330 Fix recently-introduced process.c problems found by static checking.
9331 * process.c (write_queue_push, write_queue_pop, send_process):
9332 Use ptrdiff_t, not int or EMACS_INT, for buffer lengths and offsets.
9333 (write_queue_pop): Fix pointer signedness problem.
9334 (send_process): Remove unused local.
9335
9336 2012-06-17 Chong Yidong <cyd@gnu.org>
9337
9338 * xdisp.c (redisplay_internal): No need to redisplay terminal
9339 frames that are not on top.
9340
9341 2012-06-17 Troels Nielsen <bn.troels@gmail.com>
9342
9343 * process.c (make_process): Initialize write_queue.
9344 (write_queue_push, write_queue_pop): New functions.
9345 (send_process): Use them to maintain correct ordering of process
9346 writes (Bug#10815).
9347
9348 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
9349
9350 * lisp.h (eassert): Assume C89 or later.
9351 This removes the need for CHECK.
9352 (CHECK): Remove. Its comments about always evaluating its
9353 argument were confusing, as 'eassert' typically does not evaluate
9354 its argument.
9355
9356 * coding.c (produce_chars): Use ptrdiff_t, not int.
9357
9358 * xterm.c (x_draw_underwave): Check for integer overflow.
9359 This pacifies gcc 4.7.0 -Wunsafe-loop-optimizations on x86-64.
9360
9361 2012-06-17 Jan Djärv <jan.h.d@swipnet.se>
9362
9363 * nsterm.m (x_free_frame_resources): Move xfree so freed memory isn't
9364 referenced (Bug#11583).
9365
9366 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
9367
9368 Implement wave-style variant of underlining.
9369 * dispextern.h (face_underline_type): New enum.
9370 (face): Add field for underline type.
9371 * nsterm.m (ns_draw_underwave): New function.
9372 (ns_draw_text_decoration): Use it.
9373 * w32term.c (w32_restore_glyph_string_clip, w32_draw_underwave):
9374 New functions.
9375 (x_draw_glyph_string): Use them.
9376 * xfaces.c (Qline, Qwave): New Lisp objects.
9377 (check_lface_attrs, merge_face_ref)
9378 (Finternal_set_lisp_face_attribute, realize_x_face):
9379 Handle wave-style underline face attributes.
9380 * xterm.c (x_draw_underwave): New function.
9381 (x_draw_glyph_string): Use it.
9382
9383 2012-06-16 Juanma Barranquero <lekktu@gmail.com>
9384
9385 * makefile.w32-in ($(BLD)/emacs.$(O), $(BLD)/fringe.$(O))
9386 ($(BLD)/xml.$(O), $(BLD)/intervals.$(O), $(BLD)/macros.$(O))
9387 ($(BLD)/minibuf.$(O), $(BLD)/regex.$(O), $(BLD)/region-cache.$(O))
9388 ($(BLD)/textprop.$(O), $(BLD)/undo.$(O), $(BLD)/window.$(O))
9389 ($(BLD)/w32select.$(O)): Update dependencies.
9390
9391 2012-06-16 Andreas Schwab <schwab@linux-m68k.org>
9392
9393 * buffer.h (FETCH_MULTIBYTE_CHAR): Define as inline.
9394 (BUF_FETCH_MULTIBYTE_CHAR): Likewise.
9395 * character.c (_fetch_multibyte_char_p): Remove.
9396 * alloc.c: Include "character.h" before "buffer.h".
9397 * bidi.c: Likewise.
9398 * buffer.c: Likewise.
9399 * bytecode.c: Likewise.
9400 * callint.c: Likewise.
9401 * callproc.c: Likewise.
9402 * casefiddle.c: Likewise.
9403 * casetab.c: Likewise.
9404 * category.c: Likewise.
9405 * cmds.c: Likewise.
9406 * coding.c: Likewise.
9407 * composite.c: Likewise.
9408 * dired.c: Likewise.
9409 * dispnew.c: Likewise.
9410 * doc.c: Likewise.
9411 * dosfns.c: Likewise.
9412 * editfns.c: Likewise.
9413 * emacs.c: Likewise.
9414 * fileio.c: Likewise.
9415 * filelock.c: Likewise.
9416 * font.c: Likewise.
9417 * fontset.c: Likewise.
9418 * fringe.c: Likewise.
9419 * indent.c: Likewise.
9420 * insdel.c: Likewise.
9421 * intervals.c: Likewise.
9422 * keyboard.c: Likewise.
9423 * keymap.c: Likewise.
9424 * lread.c: Likewise.
9425 * macros.c: Likewise.
9426 * marker.c: Likewise.
9427 * minibuf.c: Likewise.
9428 * nsfns.m: Likewise.
9429 * nsmenu.m: Likewise.
9430 * print.c: Likewise.
9431 * process.c: Likewise.
9432 * regex.c: Likewise.
9433 * region-cache.c: Likewise.
9434 * search.c: Likewise.
9435 * syntax.c: Likewise.
9436 * term.c: Likewise.
9437 * textprop.c: Likewise.
9438 * undo.c: Likewise.
9439 * unexsol.c: Likewise.
9440 * w16select.c: Likewise.
9441 * w32fns.c: Likewise.
9442 * w32menu.c: Likewise.
9443 * window.c: Likewise.
9444 * xdisp.c: Likewise.
9445 * xfns.c: Likewise.
9446 * xmenu.c: Likewise.
9447 * xml.c: Likewise.
9448 * xselect.c: Likewise.
9449
9450 2012-06-16 Eli Zaretskii <eliz@gnu.org>
9451
9452 * xdisp.c (set_cursor_from_row): Don't dereference glyphs_end.
9453 If all the glyphs of the glyph row came from strings, and we have no
9454 cursor positioning clues, put the cursor on the first glyph of the
9455 row.
9456 (handle_face_prop): Use chunk-relative overlay string index when
9457 indexing into it->string_overlays array. (Bug#11653)
9458 (set_cursor_from_row): Use the leftmost glyph as GLYPH_BEFORE, not
9459 the rightmost. (Bug#11720)
9460
9461 2012-06-16 Andreas Schwab <schwab@linux-m68k.org>
9462
9463 * category.h (CHAR_HAS_CATEGORY): Define as inline.
9464 (CATEGORY_MEMBER): Enforce 1/0 value.
9465 * category.c (_temp_category_set): Remove.
9466
9467 2012-06-16 Eli Zaretskii <eliz@gnu.org>
9468
9469 * window.c (Fdelete_other_windows_internal)
9470 (Fdelete_window_internal): Don't access frame's mouse highlight
9471 info of the initial frame. (Bug#11677)
9472
9473 2012-06-14 Paul Eggert <eggert@cs.ucla.edu>
9474
9475 * .gdbinit (xgetint): Fix recently-introduced paren typo.
9476 Assume USE_2_TAGS_FOR_INTS.
9477 (xreload): Adjust $tagmask width to match recent lisp.h change.
9478
9479 Simplify lisp.h in minor ways that should not affect code.
9480 * lisp.h (USE_2_TAGS_FOR_INTS): Remove, as it was always defined.
9481 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P)
9482 (LISP_INT1_TAG, enum Lisp_Type, XINT, XUINT, make_number):
9483 Simplify under the assumption that USE_2_TAGS_FOR_INTS is defined.
9484 (INTTYPEBITS): New macro, for clarity.
9485 (INTMASK, MOST_POSITIVE_FIXNUM): Use it.
9486 (LISP_INT1_TAG, LISP_STRING_TAG, LISP_INT_TAG_P):
9487 Simplify now that USE_LSB_TAG is always defined.
9488 (TYPEMASK, XINT) [USE_LSB_TAG]: Remove unnecessary cast.
9489 (make_number) [!USE_LSB_TAG]: Use INTMASK; that's simpler.
9490
9491 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
9492
9493 * makefile.w32-in ($(BLD)/data.$(O)): Update dependencies.
9494
9495 2012-06-13 Glenn Morris <rgm@gnu.org>
9496
9497 * s/bsd-common.h (BSD4_3):
9498 * s/usg5-4-common.h (USG5_4): No longer define; unused.
9499
9500 2012-06-13 Andreas Schwab <schwab@linux-m68k.org>
9501
9502 * lisp.h (Lisp_Object) [CHECK_LISP_OBJECT_TYPE]: Define as struct
9503 instead of union.
9504 (XLI, XIL): Define.
9505 (XHASH, XTYPE, XINT, XUINT, make_number, XSET, XPNTR, XUNTAG):
9506 Use them.
9507 * emacs.c (gdb_use_struct): Rename from gdb_use_union.
9508 * .gdbinit: Check gdb_use_struct instead of gdb_use_union.
9509 * alloc.c (widen_to_Lisp_Object): Remove.
9510 (mark_memory): Use XIL instead of widen_to_Lisp_Object.
9511 * frame.c (delete_frame): Remove outdated comment.
9512 * w32fns.c (Fw32_register_hot_key): Use XLI instead of checking
9513 USE_LISP_UNION_TYPE.
9514 (Fw32_unregister_hot_key): Likewise.
9515 (Fw32_toggle_lock_key): Likewise.
9516 * w32menu.c (add_menu_item): Likewise.
9517 (w32_menu_display_help): Use XIL instead of checking
9518 USE_LISP_UNION_TYPE.
9519 * w32heap.c (allocate_heap): Don't check USE_LISP_UNION_TYPE.
9520 (init_heap): Likewise.
9521 * w32term.c (w32_read_socket): Update comment.
9522
9523 2012-06-13 Glenn Morris <rgm@gnu.org>
9524
9525 * s/usg5-4-common.h, src/s/unixware.h:
9526 Remove define/undef of HAVE_SYSV_SIGPAUSE (not used since 2010-05-04).
9527
9528 * s/gnu.h (POSIX_SIGNALS): Remove (not used since 2010-05-04).
9529
9530 2012-06-13 Paul Eggert <eggert@cs.ucla.edu>
9531
9532 USE_LISP_UNION_TYPE + USE_LSB_TAG cleanup (Bug#11604)
9533 * alloc.c (make_number) [!defined make_number]:
9534 Remove, as lisp.h always defines this now.
9535 (mark_maybe_pointer): Simplify since USE_LSB_TAG is always defined now.
9536 (roundup_size): Verify that it is a power of 2.
9537 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
9538 * ftfont.c (ftfont_driver): Use LISP_INITIALLY_ZERO.
9539 * lisp.h (USE_LSB_TAG): Allow the builder to compile with
9540 -DUSE_LSB_TAG=0, to override the automatically-selected default.
9541 USE_LSB_TAG now is always defined to be either 0 or 1.
9542 All uses changed.
9543 (union Lisp_Object): Don't worry about WORDS_BIGENDIAN; the
9544 code works fine either way, and efficiency is not a concern here,
9545 as the union type is for debugging, not for production.
9546 (LISP_MAKE_RVALUE, make_number) [USE_LISP_UNION_TYPE]:
9547 Use an inline function on all platforms when using the union type,
9548 since this is simpler and 'static inline' can be used portably
9549 within Emacs now.
9550 (LISP_INITIALLY_ZERO): New macro.
9551 (XFASTINT, XSETFASTINT) [USE_LISP_UNION_TYPE]: Remove.
9552 (XSET) [USE_LISP_UNION_TYPE]: Don't overparenthesize.
9553
9554 2012-06-12 Glenn Morris <rgm@gnu.org>
9555
9556 * s/gnu-kfreebsd.h, s/hpux11.h, s/openbsd.h, s/sol2-10.h: Remove files.
9557
9558 * s/gnu-linux.h (HAVE_PROCFS): Move to configure.
9559
9560 * s/hpux10-20.h, s/openbsd.h, s/usg5-4-common.h:
9561 Move BROKEN_SIGIO to configure.
9562
9563 * s/bsd-common.h, s/darwin.h, s/gnu-kfreebsd.h, s/hpux10-20.h:
9564 Move NO_TERMIO to configure.
9565
9566 2012-06-12 Chong Yidong <cyd@gnu.org>
9567
9568 * image.c (imagemagick_load_image): Use MagickFlattenImage if
9569 MagickMergeImageLayers is undefined. Use pixel pusher loop if
9570 MagickExportImagePixels is undefined.
9571
9572 2012-06-12 Paul Eggert <eggert@cs.ucla.edu>
9573
9574 * image.c (imagemagick_load_image): Remove unused label.
9575
9576 2012-06-11 Glenn Morris <rgm@gnu.org>
9577
9578 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
9579 * s/gnu-kfreebsd.h, s/gnu-linux.h, s/gnu.h, s/hpux10-20.h:
9580 * s/irix6-5.h, s/ms-w32.h, s/msdos.h, s/template.h:
9581 * s/usg5-4-common.h: Move SYSTEM_TYPE to configure.
9582
9583 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
9584
9585 * alloc.c (make_byte_code): New function.
9586 (Fmake_byte_code): Use it. Don't purify here.
9587 * lread.c (read1): Use it as well to avoid extra allocation.
9588
9589 2012-06-11 Chong Yidong <cyd@gnu.org>
9590
9591 * image.c (imagemagick_load_image): Implement transparency.
9592
9593 2012-06-10 Andreas Schwab <schwab@linux-m68k.org>
9594
9595 * regex.c (at_begline_loc_p): Also recognize `(?N:' and correctly
9596 account for preceding backslashes. (Bug#11663)
9597
9598 2012-06-09 Chong Yidong <cyd@gnu.org>
9599
9600 * term.c: Support italics in capable terminals (Bug#9652).
9601 (no_color_bit): Replace unused NC_BLINK with NC_ITALIC.
9602 (turn_on_face): Output using TS_enter_italic_mode if available.
9603 Don't handle unused blinking and alt-charset cases.
9604 (turn_off_face): Handle italic case; discard unused tty_blinking_p
9605 and tty_alt_charset_p cases.
9606 (tty_capable_p, init_tty): Support italics.
9607
9608 * termchar.h (struct tty_display_info): Add field for italics.
9609 Remove unused blink field.
9610
9611 * xfaces.c (tty_supports_face_attributes_p, realize_tty_face):
9612 Handle slant.
9613
9614 * dispextern.h: Replace unused TTY_CAP_BLINK with TTY_CAP_ITALIC.
9615 (struct face): Remove unused fields tty_dim_p, tty_blinking_p, and
9616 tty_alt_charset_p. Add tty_italic_p.
9617
9618 2012-06-09 Michael Albinus <michael.albinus@gmx.de>
9619
9620 * dbusbind.c (XD_BASIC_DBUS_TYPE): Use dbus_type_is_valid and
9621 dbus_type_is_basic if available.
9622 (xd_extract_signed, xd_extract_unsigned): Rename from
9623 extract_signed and extract_unsigned, respectively. Adapt callers.
9624
9625 2012-06-09 Chong Yidong <cyd@gnu.org>
9626
9627 * xfaces.c (face_for_overlay_string): Handle face remapping (Bug#2066).
9628
9629 * fringe.c (Fset_fringe_bitmap_face): Handle the noninteractive
9630 case (Bug#9752).
9631
9632 2012-06-08 Paul Eggert <eggert@cs.ucla.edu>
9633
9634 * xdisp.c (vmessage): Treat frame message as multibyte.
9635 Without this change, (let ((§ 1)) (make-variable-buffer-local '§))
9636 would generate the diagnostic "Making \302\247 buffer-local while
9637 let-bound!".
9638
9639 2012-06-08 Eli Zaretskii <eliz@gnu.org>
9640
9641 * dispnew.c (showing_window_margins_p): Undo last change, which
9642 was done due to an inadvertent commit.
9643 (adjust_frame_glyphs_for_frame_redisplay): Do call
9644 showing_window_margins_p.
9645
9646 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
9647
9648 * eval.c (Fmake_var_non_special): New primitive.
9649 (syms_of_eval): Defsubr it.
9650 * lread.c (syms_of_lread): Mark `values' as lexically scoped.
9651
9652 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
9653
9654 * dispnew.c (showing_window_margins_p): Wrap in #if 0 to prevent unused
9655 function warning (the only call is inside #if 0 since 2012-06-08T08:44:45Z!eliz@gnu.org).
9656
9657 2012-06-08 Eli Zaretskii <eliz@gnu.org>
9658
9659 * alloc.c (allocate_vectorlike): Fix last change.
9660
9661 2012-06-08 Dmitry Antipov <dmantipov@yandex.ru>
9662
9663 Block-based vector allocation of small vectors.
9664 * lisp.h (struct vectorlike_header): New field `nbytes',
9665 adjust comment accordingly.
9666 * alloc.c (enum mem_type): New type `MEM_TYPE_VECTOR_BLOCK'
9667 to denote vector blocks. Adjust users (live_vector_p,
9668 mark_maybe_pointer, valid_lisp_object_p) accordingly.
9669 (COMMON_MULTIPLE): Move outside #if USE_LSB_TAG.
9670 (VECTOR_BLOCK_SIZE, vroundup, VECTOR_BLOCK_BYTES),
9671 (VBLOCK_BYTES_MIN, VBLOCK_BYTES_MAX, VECTOR_MAX_FREE_LIST_INDEX),
9672 (VECTOR_FREE_LIST_FLAG, ADVANCE, VINDEX, SETUP_ON_FREE_LIST),
9673 (VECTOR_SIZE, VECTOR_IN_BLOCK): New macros.
9674 (roundup_size): New constant.
9675 (struct vector_block): New data type.
9676 (vector_blocks, vector_free_lists, zero_vector): New variables.
9677 (all_vectors): Rename to `large_vectors'.
9678 (allocate_vector_from_block, init_vectors, allocate_vector_from_block)
9679 (sweep_vectors): New functions.
9680 (allocate_vectorlike): Return `zero_vector' as the only vector of
9681 0 items. Allocate new vector from block if vector size is less than
9682 or equal to VBLOCK_BYTES_MAX.
9683 (Fgarbage_collect): Move all vector sweeping code to sweep_vectors.
9684 (init_alloc_once): Add call to init_vectors.
9685
9686 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
9687
9688 * eval.c (Fmacroexpand): Stop if the macro returns the same form.
9689
9690 2012-06-07 Paul Eggert <eggert@cs.ucla.edu>
9691
9692 * doprnt.c (doprnt): Truncate multibyte char correctly.
9693 Without this change, doprnt (buf, 2, "%s", FORMAT_END, AP)
9694 would mishandle a string argument "Xc" if X was a multibyte
9695 character of length 2: it would truncate after X's first byte
9696 rather than including all of X.
9697
9698 2012-06-06 Chong Yidong <cyd@gnu.org>
9699
9700 * buffer.c (word_wrap): Doc fix.
9701
9702 2012-06-04 Paul Eggert <eggert@cs.ucla.edu>
9703
9704 * xdisp.c (note_mode_line_or_margin_highlight): Pacify gcc -Wall.
9705
9706 2012-06-03 Glenn Morris <rgm@gnu.org>
9707
9708 * xdisp.c (tool-bar-style): Doc fix.
9709
9710 2012-06-03 Ulrich Müller <ulm@gentoo.org>
9711
9712 * Makefile.in (PAXCTL): Define.
9713 (temacs$(EXEEXT)): Disable memory randomization for the temacs
9714 binary via PaX flags if the paxctl utility is available.
9715 (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
9716 Restore PaX flags to their default. (Bug#11398)
9717
9718 2012-06-03 Chong Yidong <cyd@gnu.org>
9719
9720 * xdisp.c (decode_mode_spec_coding): Display a space for a unibyte
9721 buffer (Bug#11226).
9722
9723 2012-06-03 Chong Yidong <cyd@gnu.org>
9724
9725 * xdisp.c (calc_pixel_width_or_height): Use Fbuffer_local_value.
9726 (note_mode_line_or_margin_highlight): If there is no help echo,
9727 use mode-line-default-help-echo. Handle the case where the mouse
9728 position is past the end of the mode line string.
9729
9730 * buffer.c (buffer_local_value_1): New function, split from
9731 Fbuffer_local_value; can return Qunbound.
9732 (Fbuffer_local_value): Use it.
9733 (Vmode_line_format): Docstring tweaks.
9734
9735 2012-06-02 Paul Eggert <eggert@cs.ucla.edu>
9736
9737 * sysdep.c (system_process_attributes): Improve comment.
9738
9739 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
9740
9741 * keyboard.c: Export real-this-command to Elisp.
9742 (syms_of_keyboard): Rename real_this_command to Vreal_this_command
9743 and DEFVAR it. Update all users.
9744
9745 2012-06-02 Paul Eggert <eggert@cs.ucla.edu>
9746
9747 * minibuf.c (Fassoc_string): Remove duplicate declaration.
9748
9749 * sysdep.c (system_process_attributes) [SOLARIS2 && HAVE_PROCFS]:
9750 Convert pctcpu and pctmem to Lisp float properly.
9751 Let the compiler fold better, as 100.0/0x8000 is exact.
9752
9753 2012-06-02 Andreas Schwab <schwab@linux-m68k.org>
9754
9755 * alloc.c (CONS_BLOCK_SIZE): Account for padding at the end of
9756 cons_block.
9757
9758 2012-06-01 Paul Eggert <eggert@cs.ucla.edu>
9759
9760 * xfns.c (x_set_tool_bar_lines) [USE_GTK]: Adjust to bitfield change.
9761
9762 2012-06-01 Dmitry Antipov <dmantipov@yandex.ru>
9763
9764 For a 'struct window', replace some Lisp_Object fields to
9765 bitfields where appropriate, remove unused fields.
9766 * window.h (struct window): Remove unused 'last_mark_x' and
9767 'last_mark_y' fields. Rename 'mini_p' field to 'mini',
9768 change its type from Lisp_Object to bitfield.
9769 Change type of 'force_start', 'optional_new_start',
9770 'last_had_star', 'update_mode_line' and 'start_at_line_beg'
9771 fields from Lisp_Object to bitfield. Adjust users accordingly.
9772
9773 2012-05-31 Paul Eggert <eggert@cs.ucla.edu>
9774
9775 Pacify gcc -Wdouble-precision when using Xaw.
9776 * xterm.c (xaw_jump_callback, x_set_toolkit_scroll_bar_thumb)
9777 [HAVE_X_WINDOWS && USE_TOOLKIT_SCROLL_BARS && !USE_MOTIF && !USE_GTK]:
9778 Use 'float' consistently, rather than 'float' in most places
9779 and 'double' in a couple of places.
9780
9781 2012-05-31 Eli Zaretskii <eliz@gnu.org>
9782
9783 * xdisp.c (handle_stop): Detect whether we have overlay strings
9784 loaded by testing it->current.overlay_string_index to be
9785 non-negative, instead of checking whether n_overlay_strings is
9786 positive. (Bug#11587)
9787
9788 2012-05-31 Chong Yidong <cyd@gnu.org>
9789
9790 * keymap.c (describe_map_tree): Revert 2011-07-07 change (Bug#1169).
9791
9792 * doc.c (Fsubstitute_command_keys): Doc fix.
9793
9794 2012-05-31 Eli Zaretskii <eliz@gnu.org>
9795
9796 * search.c (search_buffer): Remove calls to
9797 r_alloc_inhibit_buffer_relocation, as it is now called by
9798 maybe_unify_char, which was the cause of relocation of buffer text
9799 in bug#11519.
9800
9801 2012-05-31 Eli Zaretskii <eliz@gnu.org>
9802
9803 * charset.c (maybe_unify_char): Inhibit relocation of buffer text
9804 for the duration of call to load_charset, to avoid problems with
9805 callers of maybe_unify_char that access buffer text through C
9806 pointers.
9807
9808 * ralloc.c (r_alloc_inhibit_buffer_relocation): Increment and
9809 decrement the inhibition flag, instead of just setting or
9810 resetting it.
9811
9812 2012-05-31 Paul Eggert <eggert@cs.ucla.edu>
9813
9814 Remove obsolete '#define static' cruft.
9815 * s/hpux10-20.h (_FILE_OFFSET_BITS): Don't #undef.
9816 This #undef was "temporary" in 2000; it is no longer needed
9817 now that '#define static' has gone away.
9818 * xfns.c, xterm.h (gray_bitmap_width, gray_bitmap_height)
9819 (gray_bitmap_bits): Remove; no longer needed.
9820 All uses replaced with definiens.
9821 * xterm.c: Include "bitmaps/gray.xbm".
9822
9823 2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
9824
9825 Clean up __executable_start, monstartup when --enable-profiling.
9826 The following changes affect the code only when profiling.
9827 * dispnew.c (__executable_start): Rename from safe_bcopy.
9828 Define only on platforms that need it.
9829 * emacs.c: Include <sys/gmon.h> when profiling.
9830 (_mcleanup): Remove decl, since <sys/gmon.h> does it now.
9831 (__executable_start): Remove decl, since lisp.h does it now.
9832 (safe_bcopy): Remove decl; no longer has that name.
9833 (main): Coalesce #if into single bit of code, for simplicity.
9834 Cast pointers to uintptr_t, since standard libraries want integers
9835 and not pointers.
9836 * lisp.h (__executable_start): New decl.
9837
9838 2012-05-31 Glenn Morris <rgm@gnu.org>
9839
9840 * image.c (Fimagemagick_types): Doc fix.
9841
9842 2012-05-30 Jim Meyering <meyering@redhat.com>
9843
9844 * callproc.c (Fcall_process_region): Include directory component
9845 in mkstemp error message (Bug#11586).
9846
9847 2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
9848
9849 * alloc.c, lisp.h (make_pure_vector): Now static.
9850
9851 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
9852
9853 * eval.c (Fdefun, Fdefmacro, Vmacro_declaration_function):
9854 Move to byte-run.el.
9855 (Fautoload): Do the hash-doc more carefully.
9856 * data.c (Fdefalias): Purify definition, except for keymaps.
9857 (Qdefun): Move from eval.c.
9858 * lisp.h (Qdefun): Remove.
9859 * lread.c (read1): Tiny simplification.
9860
9861 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
9862
9863 Do not create empty overlays with the evaporate property (Bug#9642).
9864 * buffer.c (Fmove_overlay): Reinstate the earlier fix for
9865 Bug#9642, but explicitly check that the buffer the overlay would
9866 be moved to is live and rearrange lines to make sure that errors
9867 will not put the overlay in an inconsistent state.
9868 (Fdelete_overlay): Cosmetics.
9869
9870 2012-05-28 Eli Zaretskii <eliz@gnu.org>
9871
9872 * w32term.c (my_bring_window_to_top): New function.
9873 (x_raise_frame): Use handle returned by DeferWindowPos, which
9874 could be different from the original one.
9875 Call my_bring_window_to_top instead of my_set_foreground_window.
9876 (Bug#11513)
9877
9878 * w32fns.c (w32_wnd_proc): Accept and process WM_EMACS_BRINGTOTOP
9879 by calling BringWindowToTop.
9880
9881 * w32term.h (WM_EMACS_BRINGTOTOP): New message.
9882 (WM_EMACS_END): Increase by one.
9883
9884 2012-05-28 Paul Eggert <eggert@cs.ucla.edu>
9885
9886 * bidi.c (bidi_mirror_char): Put eassert before conversion to int.
9887 This avoids undefined behavior that might cause the eassert
9888 to not catch an out-of-range value.
9889
9890 2012-05-28 Juanma Barranquero <lekktu@gmail.com>
9891
9892 * makefile.w32-in ($(BLD)/w32inevt.$(O), $(BLD)/w32console.$(O)):
9893 Update dependencies.
9894
9895 2012-05-27 Eli Zaretskii <eliz@gnu.org>
9896
9897 * bidi.c (bidi_mirror_char): Fix last change.
9898
9899 2012-05-27 Andreas Schwab <schwab@linux-m68k.org>
9900
9901 * unexmacosx.c (copy_data_segment): Truncate after 16 characters
9902 when referring to sectname field in printf format.
9903
9904 2012-05-27 Paul Eggert <eggert@cs.ucla.edu>
9905
9906 * lisp.h [REL_ALLOC]: Omit duplicate prototypes.
9907 Only r_alloc_inhibit_buffer_relocation needed to be added;
9908 the others were already declared.
9909
9910 * bidi.c (bidi_mirror_char): Don't possibly truncate the integer
9911 before checking whether it's out of range. Put the check inside
9912 eassert. See
9913 <http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00485.html>.
9914
9915 2012-05-27 Ken Brown <kbrown@cornell.edu>
9916
9917 * callproc.c (Fcall_process): Restore a line that was accidentally
9918 commented out in the 2011-02-13 change (bug#11547).
9919
9920 2012-05-27 Eli Zaretskii <eliz@gnu.org>
9921
9922 * lisp.h [REL_ALLOC]: Add prototypes for external functions
9923 defined on ralloc.c.
9924
9925 * buffer.c [REL_ALLOC]: Remove prototypes of
9926 r_alloc_reset_variable, r_alloc, r_re_alloc, and r_alloc_free,
9927 they are now on lisp.h.
9928
9929 * ralloc.c (r_alloc_inhibit_buffer_relocation): New function.
9930
9931 * search.c (search_buffer): Use it to inhibit relocation of buffer
9932 text while re_search_2 is doing its job, because re_search_2 is
9933 passed C pointers to buffer text. (Bug#11519)
9934
9935 * msdos.c (internal_terminal_init) <Vwindow_system_version>:
9936 Update value to 24.
9937
9938 * xdisp.c (move_it_to): Under MOVE_TO_Y, when restoring iterator
9939 state after an additional call to move_it_in_display_line_to, keep
9940 the values of it->max_ascent and it->max_descent found for the
9941 entire line.
9942 (pos_visible_p): Revert the comparison against bottom_y to what it
9943 was in revid eliz@gnu.org-20120513182235-4p6386j761ld0nwb.
9944 (Bug#11464)
9945
9946 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
9947
9948 Fix coding-related core dumps with gcc -ftrapv.
9949 The code was computing A - B, where A and B are pointers, and B is
9950 random garbage. This can lead to core dumps on platforms that
9951 have special pointer registers, and it also leads to core dumps on
9952 x86-64 when compiled with gcc -ftrapv. The fix is to compute
9953 A - B only when B is initialized properly.
9954 * coding.c (coding_set_source, coding_set_destination): Return void.
9955 (coding_change_source, coding_change_destinations): New functions,
9956 with the old behaviors of coding_set_source and coding_set_destination.
9957 All callers that need an offset changed to use these new functions.
9958
9959 2012-05-26 Glenn Morris <rgm@gnu.org>
9960
9961 * nsterm.m (ns_init_paths): Don't mess with INFOPATH. (Bug#2791)
9962
9963 2012-05-26 Eli Zaretskii <eliz@gnu.org>
9964
9965 Extend mouse support on W32 text-mode console.
9966 * xdisp.c (draw_row_with_mouse_face):
9967 Call tty_draw_row_with_mouse_face for WINDOWSNT as well.
9968
9969 * w32console.c: Include window.h.
9970 (w32con_write_glyphs_with_face, tty_draw_row_with_mouse_face):
9971 New functions.
9972 (initialize_w32_display): Initialize mouse-highlight data.
9973
9974 * w32inevt.c: Include termchar.h and window.h.
9975 (do_mouse_event): Support mouse-autoselect-window. When the mouse
9976 moves, call note_mouse_highlight. If help_echo changed, call
9977 gen_help_event to produce help-echo message in the echo area.
9978 Call clear_mouse_face if mouse_face_hidden is set in the mouse
9979 highlight info.
9980
9981 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
9982
9983 * lread.c (read1): Simplify slightly to avoid an overflow warning
9984 with GCC 4.7.0 on x86-64.
9985
9986 2012-05-26 Eli Zaretskii <eliz@gnu.org>
9987
9988 * bidi.c (bidi_mirror_char): Revert last change: an int is
9989 definitely wide enough here.
9990
9991 2012-05-25 Paul Eggert <eggert@cs.ucla.edu>
9992
9993 Fix integer width and related bugs (Bug#9874).
9994 * alloc.c (pure_bytes_used_lisp, pure_bytes_used_non_lisp):
9995 (allocate_vectorlike, buffer_memory_full, struct sdata, SDATA_SIZE)
9996 (string_bytes, check_sblock, allocate_string_data):
9997 (compact_small_strings, Fmake_bool_vector, make_string)
9998 (make_unibyte_string, make_multibyte_string)
9999 (make_string_from_bytes, make_specified_string)
10000 (allocate_vectorlike, Fmake_vector, find_string_data_in_pure)
10001 (make_pure_string, make_pure_c_string, make_pure_vector, Fpurecopy)
10002 (mark_vectorlike):
10003 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10004 (allocate_pseudovector):
10005 Use int, not EMACS_INT, where int is wide enough.
10006 (inhibit_garbage_collection, Fgarbage_collect):
10007 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10008 * bidi.c (bidi_mirror_char): Use EMACS_INT, not int, where
10009 int might not be wide enough.
10010 (bidi_cache_search, bidi_cache_find, bidi_init_it)
10011 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
10012 (bidi_at_paragraph_end, bidi_find_paragraph_start)
10013 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
10014 (bidi_level_of_next_char, bidi_move_to_visually_next):
10015 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10016 * buffer.c (copy_overlays, Fgenerate_new_buffer_name)
10017 (Fkill_buffer, Fset_buffer_major_mode)
10018 (advance_to_char_boundary, Fbuffer_swap_text)
10019 (Fset_buffer_multibyte, overlays_at, overlays_in)
10020 (overlay_touches_p, struct sortvec, record_overlay_string)
10021 (overlay_strings, recenter_overlay_lists)
10022 (adjust_overlays_for_insert, adjust_overlays_for_delete)
10023 (fix_start_end_in_overlays, fix_overlays_before, modify_overlay)
10024 (Fmove_overlay, Fnext_overlay_change, Fprevious_overlay_change)
10025 (Foverlay_recenter, last_overlay_modification_hooks_used)
10026 (report_overlay_modification, evaporate_overlays, enlarge_buffer_text):
10027 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10028 (validate_region): Omit unnecessary test for b <= e,
10029 since that's guaranteed by the previous test.
10030 (adjust_overlays_for_delete): Avoid pos + length overflow.
10031 (Fmove_overlay, Fdelete_overlay, add_overlay_mod_hooklist)
10032 (report_overlay_modification):
10033 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10034 (Foverlays_at, Fnext_overlay_change, Fprevious_overlay_change):
10035 Omit pointer cast, which isn't needed anyway, and doesn't work
10036 after the EMACS_INT -> ptrdiff_t change.
10037 (Fmove_overlay): Clip BEG and END to ptrdiff_t to avoid overflow.
10038 * buffer.h: Adjust decls to match defn changes elsewhere.
10039 (struct buffer_text, struct buffer):
10040 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10041 Use EMACS_INT, not int, where int might not be wide enough.
10042 * bytecode.c (unmark_byte_stack, exec_byte_code): Use ptrdiff_t,
10043 not int, to avoid needless 32-bit limit on 64-bit hosts.
10044 (exec_byte_code): Use tighter memory-full test, one that checks
10045 for alloca overflow. Don't compute the address of the object just
10046 before an array, as that's not portable. Use EMACS_INT, not
10047 ptrdiff_t or int, where ptrdiff_t or int might not be wide enough.
10048 * callint.c (Fcall_interactively):
10049 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10050 * callproc.c (call_process_kill, Fcall_process):
10051 Don't assume pid_t fits into an Emacs fixnum.
10052 (call_process_cleanup, Fcall_process, child_setup):
10053 Don't assume pid_t fits into int.
10054 (call_process_cleanup, Fcall_process, delete_temp_file)
10055 (Fcall_process_region):
10056 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10057 (Fcall_process): Simplify handling of volatile integers.
10058 Use int, not EMACS_INT, where int will do.
10059 * casefiddle.c (casify_object, casify_region, operate_on_word)
10060 (Fupcase_word, Fdowncase_word, Fcapitalize_word):
10061 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10062 (casify_object): Avoid integer overflow when overallocating buffer.
10063 * casetab.c (set_identity, shuffle): Prefer int to unsigned when
10064 either works. Use lint_assume to convince GCC 4.6.1 that it's OK.
10065 * category.c (Fchar_category_set): Don't assume fixnum fits in int.
10066 * category.h (CATEGORYP): Don't assume arg is nonnegative.
10067 * ccl.c (GET_CCL_INT): Remove; no longer needed, since the
10068 integers are now checked earlier. All uses replaced with XINT.
10069 (ccl_driver):
10070 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10071 For CCL_MapSingle, check that content and value are in int range.
10072 (ccl_driver, Fregister_code_conversion_map):
10073 Check that Vcode_version_map_vector is a vector.
10074 (resolve_symbol_ccl_program): Check that vector header is in range.
10075 Always copy the vector, so that we can check its contents reliably
10076 now rather than having to recheck each instruction as it's being
10077 executed. Check that vector words fit in 'int'.
10078 (ccl_get_compiled_code, Fregister_ccl_program)
10079 (Fregister_code_conversion_map): Use ptrdiff_t, not int, for
10080 program indexes, to avoid needless 32-bit limit on 64-bit hosts.
10081 (Fccl_execute, Fccl_execute_on_string): Check that initial reg
10082 contents are in range.
10083 (Fccl_execute_on_string): Check that status is in range.
10084 * ccl.h (struct ccl_program.idx): Now ptrdiff_t, not int.
10085 * character.c (char_resolve_modifier_mask, Fchar_resolve_modifiers):
10086 Accept and return EMACS_INT, not int, because callers can pass values
10087 out of 'int' range.
10088 (c_string_width, strwidth, lisp_string_width, chars_in_text)
10089 (multibyte_chars_in_text, parse_str_as_multibyte)
10090 (str_as_multibyte, count_size_as_multibyte, str_to_multibyte)
10091 (str_as_unibyte, str_to_unibyte, string_count_byte8)
10092 (string_escape_byte8, Fget_byte):
10093 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10094 (Funibyte_string): Use CHECK_RANGED_INTEGER, not CHECK_NATNUM, to
10095 avoid mishandling large integers.
10096 * character.h: Adjust decls to match defn changes elsewhere.
10097 * charset.c (load_charset_map_from_file, find_charsets_in_text)
10098 (Ffind_charset_region):
10099 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10100 (load_charset_map_from_file): Redo idx calculation to avoid overflow.
10101 (load_charset_map_from_vector, Fdefine_charset_internal):
10102 Don't assume fixnum fits in int.
10103 (load_charset_map_from_vector, Fmap_charset_chars):
10104 Remove now-unnecessary CHECK_NATNUMs.
10105 (Fdefine_charset_internal): Check ranges here, more carefully.
10106 Don't rely on undefined behavior with signed left shift overflow.
10107 Don't assume unsigned int fits into fixnum, or that fixnum fits
10108 into unsigned int. Don't require max_code to be a valid fixnum;
10109 that's not true for gb10830 4-byte on a 32-bit host. Allow
10110 invalid_code to be a cons, for the same reason. Require code_offset
10111 to be a character. Avoid int overflow if max_char is close
10112 to INT_MAX.
10113 (CODE_POINT_TO_INDEX): On 32-bit hosts, return int, not unsigned;
10114 this is intended anyway and avoids some undefined behavior.
10115 (load_charset_map): Pass unsigned, not int, as 2nd arg of
10116 INDEX_TO_CODE_POINT, as that's what it expects.
10117 (Funify_charset, encode_char): Don't stuff unsigned vals into int vars.
10118 * charset.h (DECODE_CHAR): Return int, not unsigned;
10119 this is what was intended anyway, and it avoids undefined behavior.
10120 (CHARSET_OFFSET): Remove unused macro, instead of fixing its
10121 integer-overflow issues.
10122 (ENCODE_CHAR): Return unsigned on all hosts, not just on 32-bit hosts.
10123 Formerly, it returned EMACS_INT on 64-bit hosts in the common case
10124 where the argument is EMACS_INT, and this behavior is not intended.
10125 * chartab.c (Fmake_char_table, Fset_char_table_range)
10126 (uniprop_get_decoder, uniprop_get_encoder):
10127 Don't assume fixnum fits in int.
10128 * cmds.c (move_point): New function, that does the gist of
10129 Fforward_char and Fbackward_char, but does so while checking
10130 for integer overflow more accurately.
10131 (Fforward_char, Fbackward_char): Use it.
10132 (Fforward_line, Fend_of_line, internal_self_insert)
10133 (internal_self_insert):
10134 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10135 Fix a FIXME, by checking for integer overflow when calculating
10136 target_clm and actual_clm.
10137 * coding.c (detect_coding_XXX, encode_coding_XXX, CODING_DECODE_CHAR)
10138 (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET, CODING_CHAR_CHARSET_P)
10139 (ASSURE_DESTINATION, coding_alloc_by_realloc)
10140 (coding_alloc_by_making_gap, alloc_destination)
10141 (detect_coding_utf_8, encode_coding_utf_8, decode_coding_utf_16)
10142 (encode_coding_utf_16, detect_coding_emacs_mule)
10143 (decode_coding_emacs_mule, encode_coding_emacs_mule)
10144 (detect_coding_iso_2022, decode_coding_iso_2022)
10145 (encode_invocation_designation, encode_designation_at_bol)
10146 (encode_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
10147 (decode_coding_sjis, decode_coding_big5, encode_coding_sjis)
10148 (encode_coding_big5, detect_coding_ccl, decode_coding_ccl)
10149 (encode_coding_ccl, encode_coding_raw_text)
10150 (detect_coding_charset, decode_coding_charset)
10151 (encode_coding_charset, detect_eol, decode_eol, produce_chars)
10152 (produce_composition, produce_charset, produce_annotation)
10153 (decode_coding, handle_composition_annotation)
10154 (handle_charset_annotation, consume_chars, decode_coding_gap)
10155 (decode_coding_object, encode_coding_object, detect_coding_system)
10156 (Ffind_coding_systems_region_internal, Fcheck_coding_systems_region)
10157 (code_convert_region, code_convert_string)
10158 (Fdefine_coding_system_internal)
10159 (coding_set_source, coding_set_destination):
10160 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10161 (setup_iso_safe_charsets, consume_chars, Funencodable_char_position)
10162 (Fdefine_coding_system_internal):
10163 Don't assume fixnums fit in int.
10164 (decode_coding_gap, decode_coding_object, encode_coding_object)
10165 (Fread_coding_system, Fdetect_coding_region)
10166 (Funencodable_char_position, Fcheck_coding_systems_region)
10167 (get_translation, handle_composition_annotation, consume_chars):
10168 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10169 (consume_chars): Rewrite to not calculate an address outside buffer.
10170 (Ffind_operation_coding_system): NATNUMP can eval its arg twice.
10171 Don't access memory outside of the args array.
10172 (Fdefine_coding_system_internal): Check for charset-id overflow.
10173 (ENCODE_ISO_CHARACTER): Use unsigned, not int, to store the unsigned
10174 result of ENCODE_CHAR.
10175 * coding.h: Adjust decls to match defn changes elsewhere.
10176 (struct coding_system):
10177 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10178 * composite.c (get_composition_id, find_composition)
10179 (run_composition_function, update_compositions)
10180 (compose_text, composition_gstring_put_cache)
10181 (composition_gstring_p, composition_gstring_width)
10182 (fill_gstring_header, fill_gstring_body, autocmp_chars)
10183 (composition_compute_stop_pos, composition_reseat_it)
10184 (composition_update_it, struct position_record)
10185 (find_automatic_composition, composition_adjust_point)
10186 (Fcomposition_get_gstring, Ffind_composition_internal):
10187 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10188 (update_compositions):
10189 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10190 * composite.h: Adjust decls to match defn changes elsewhere.
10191 (struct composition):
10192 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10193 * data.c (let_shadows_buffer_binding_p, let_shadows_global_binding_p):
10194 Do not attempt to compute the address of the object just before a
10195 buffer; this is not portable.
10196 (Faref, Faset):
10197 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10198 (Faset): Use int, not EMACS_INT, where int is wide enough.
10199 (Fstring_to_number): Don't assume fixnums fit in int.
10200 (Frem): Don't assume arg is nonnegative.
10201 * dbusbind.c (xd_append_arg): Check for integers out of range.
10202 (Fdbus_call_method): Don't overflow the timeout int.
10203 (extract_signed, extract_unsigned): New functions.
10204 (XD_CHECK_DBUS_SERIAL): Remove; superseded by extract_unsigned.
10205 (xd_get_connection_references): Return ptrdiff_t, not int.
10206 All uses changed.
10207 (xd_signature, xd_append_arg, xd_retrieve_arg, Fdbus_message_internal)
10208 (xd_read_message_1):
10209 Use int, not unsigned, where the dbus API uses int.
10210 (Fdbus_message_internal): Don't overflow mtype.
10211 (syms_of_dbusbind): Allocate right-sized buffer for integers.
10212 * dired.c (directory_files_internal, file_name_completion, scmp)
10213 (file_name_completion_stat):
10214 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10215 (file_name_completion): Don't overflow matchcount.
10216 (file_name_completion_stat): Use SAFE_ALLOCA, not alloca.
10217 * dispextern.h: Adjust decls to match defn changes elsewhere.
10218 (struct text_pos, struct glyph, struct bidi_saved_info)
10219 (struct bidi_string_data, struct bidi_it, struct composition_it)
10220 (struct it):
10221 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10222 (struct display_pos, struct composition_it, struct it):
10223 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10224 * dispnew.c (increment_matrix_positions)
10225 (increment_row_positions, mode_line_string)
10226 (marginal_area_string):
10227 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10228 (change_frame_size_1, Fredisplay, Fframe_or_buffer_changed_p):
10229 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10230 (duration_to_sec_usec): New function, to check for overflow better.
10231 (Fsleep_for, sit_for): Use it.
10232 * doc.c (get_doc_string, store_function_docstring):
10233 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10234 (get_doc_string, Fsnarf_documentation):
10235 Use int, not EMACS_INT, where int is wide enough.
10236 (get_doc_string):
10237 Use SAFE_ALLOCA, not alloca.
10238 Check for overflow when converting EMACS_INT to off_t.
10239 * doprnt.c (doprnt):
10240 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10241 * editfns.c (init_editfns, Fuser_uid, Fuser_real_uid):
10242 Don't assume uid_t fits into fixnum.
10243 (buildmark, Fgoto_char, overlays_around, find_field, Fdelete_field)
10244 (Ffield_string, Ffield_string_no_properties, Ffield_beginning)
10245 (Ffield_end, Fconstrain_to_field, Fline_beginning_position)
10246 (Fline_end_position, Fprevious_char, Fchar_after, Fchar_before)
10247 (general_insert_function)
10248 (Finsert_char, make_buffer_string, make_buffer_string_both)
10249 (update_buffer_properties, Fbuffer_substring)
10250 (Fbuffer_substring_no_properties, Fcompare_buffer_substrings)
10251 (Fsubst_char_in_region, check_translation)
10252 (Ftranslate_region_internal, save_restriction_restore, Fformat)
10253 (transpose_markers, Ftranspose_regions):
10254 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10255 (clip_to_bounds): Move to lisp.h as an inline function).
10256 (Fconstrain_to_field): Don't assume integers are nonnegative.
10257 (Fline_beginning_position, Fsave_excursion, Fsave_current_buffer):
10258 (Fsubst_char_in_region, Fsave_restriction):
10259 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10260 (Femacs_pid): Don't assume pid_t fits into fixnum.
10261 (lo_time): Use int, not EMACS_INT, when int suffices.
10262 (lisp_time_argument): Check for usec out of range.
10263 (Fencode_time): Don't assume fixnum fits in int.
10264 (Fuser_login_name, Fuser_full_name): Signal an error
10265 if a uid argument is out of range, rather than relying on
10266 undefined behavior.
10267 (Fformat_time_string): Remove now-unnecessary check.
10268 lisp_time_argument checks for out-of-range usec now.
10269 Use ptrdiff_t, not size_t, where ptrdiff_t will do.
10270 * emacs.c (gdb_valbits, gdb_gctypebits): Now int, not EMACS_INT.
10271 (gdb_data_seg_bits): Now uintptr_t, not EMACS_INT.
10272 (PVEC_FLAG, gdb_array_mark_flag): Now ptrdiff_t, not EMACS_INT.
10273 (init_cmdargs, Fdump_emacs):
10274 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10275 (Fkill_emacs): Don't assume fixnum fits in int; instead, take just
10276 the bottom (typically) 32 bits of the fixnum.
10277 * eval.c (specpdl_size, call_debugger):
10278 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10279 (when_entered_debugger, Fbacktrace_debug):
10280 Don't assume fixnum can fit in int.
10281 (Fdefvaralias, Fdefvar): Do not attempt to compute the address of
10282 the object just before a buffer; this is not portable.
10283 (FletX, Flet, Funwind_protect, do_autoload, Feval, funcall_lambda)
10284 (grow_specpdl, unbind_to):
10285 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10286 (Fapply, apply_lambda): Don't assume ptrdiff_t can hold fixnum.
10287 (grow_specpdl): Simplify allocation by using xpalloc.
10288 (Fprog1, Fprog2): Don't assume list length fits in int. Simplify.
10289 * fileio.c (Ffind_file_name_handler, Fcopy_file, Frename_file)
10290 (Finsert_file_contents, Fwrite_region, Fdo_auto_save):
10291 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10292 (Ffind_file_name_handler, non_regular_inserted, Finsert_file_contents)
10293 (a_write, e_write):
10294 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10295 (Fcopy_file, non_regular_nbytes, read_non_regular)
10296 (Finsert_file_contents):
10297 Use int, not EMACS_INT, where int is wide enough.
10298 (READ_BUF_SIZE): Verify that it fits in int.
10299 (Finsert_file_contents): Check that counts are in proper range,
10300 rather than assuming fixnums fit into ptrdiff_t etc.
10301 Don't assume fixnums fit into int.
10302 * floatfns.c (Fexpt): Avoid undefined signed * signed overflow.
10303 * fns.c (Fcompare_strings, Fstring_lessp, struct textprop_rec, concat)
10304 (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
10305 (string_char_to_byte, string_byte_to_char)
10306 (string_make_multibyte, string_to_multibyte)
10307 (string_make_unibyte, Fstring_as_unibyte, Fstring_as_multibyte)
10308 (Fstring_to_unibyte, Fsubstring, Fsubstring_no_properties)
10309 (substring_both, Fdelete, internal_equal, Ffillarray)
10310 (Fclear_string, mapcar1)
10311 (Fbase64_encode_region, Fbase64_encode_string, base64_encode_1)
10312 (Fbase64_decode_region, Fbase64_decode_string, base64_decode_1)
10313 (larger_vector, make_hash_table, maybe_resize_hash_table)
10314 (hash_lookup, hash_remove_from_table, hash_clear, sweep_weak_table)
10315 (Fmaphash, secure_hash):
10316 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10317 (concat): Check for string index and length overflow.
10318 (Fmapconcat): Don't assume fixnums fit into ptrdiff_t.
10319 (Frequire):
10320 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10321 (larger_vector): New API (vec, incr_min, size_max) replaces old
10322 one (vec, new_size, init). This catches size overflow.
10323 INIT was removed because it was always Qnil.
10324 All callers changed.
10325 (INDEX_SIZE_BOUND): New macro, which calculates more precisely
10326 the upper bound on a hash table index size.
10327 (make_hash_table, maybe_resize_hash_table): Use it.
10328 (secure_hash): Computer start_byte and end_byte only after
10329 they're known to be in ptrdiff_t range.
10330 * font.c (font_intern_prop, font_at, font_range, Ffont_shape_gstring)
10331 (Ffont_get_glyphs, Ffont_at):
10332 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10333 (font_style_to_value, font_prop_validate_style, font_expand_wildcards)
10334 (Flist_fonts, Fopen_font):
10335 Don't assume fixnum can fit in int.
10336 (check_gstring): Don't assume index can fit in int.
10337 (font_match_p): Check that fixnum is a character, not a nonnegative
10338 fixnum, since the later code needs to stuff it into an int.
10339 (font_find_for_lface): Use SAFE_ALLOCA_LISP, not alloca.
10340 (font_fill_lglyph_metrics): Use unsigned, not EMACS_INT, to avoid
10341 conversion overflow issues.
10342 (Fopen_font): Check for integer out of range.
10343 (Ffont_get_glyphs): Don't assume index can fit in int.
10344 * font.h: Adjust decls to match defn changes elsewhere.
10345 * fontset.c (reorder_font_vector): Redo score calculation to avoid
10346 integer overflow.
10347 (num_auto_fontsets, fontset_from_font): Use ptrdiff_t, not
10348 printmax_t, where ptrdiff_t is wide enough.
10349 (Finternal_char_font):
10350 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10351 * frame.c (Fset_mouse_position, Fset_mouse_pixel_position)
10352 (Fset_frame_height, Fset_frame_width, Fset_frame_size)
10353 (Fset_frame_position, x_set_frame_parameters)
10354 (x_set_line_spacing, x_set_border_width)
10355 (x_set_internal_border_width, x_set_alpha, x_figure_window_size):
10356 Check that fixnums are in proper range for system types.
10357 (frame_name_fnn_p, Fframe_parameter, Fmodify_frame_parameters):
10358 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10359 (Fmodify_frame_parameters): Don't assume fixnum fits in int.
10360 Use SAFE_ALLOCA_LISP, not alloca.
10361 * frame.h (struct frame): Use intptr_t, not EMACS_INT, where
10362 intptr_t is wide enough.
10363 * fringe.c (lookup_fringe_bitmap, get_logical_fringe_bitmap)
10364 (Fdefine_fringe_bitmap): Don't assume fixnum fits in int.
10365 (Ffringe_bitmaps_at_pos): Don't assume index fits in int.
10366 Check for fixnum out of range.
10367 * ftfont.c (ftfont_list): Don't assume index fits in int.
10368 Check that fixnums are in proper range for system types.
10369 (ftfont_shape_by_flt):
10370 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10371 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
10372 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10373 (Fgnutls_error_fatalp, Fgnutls_error_string, Fgnutls_boot):
10374 Check that fixnums are in proper range for system types.
10375 * gnutls.h: Adjust decls to match defn changes elsewhere.
10376 * gtkutil.c (xg_dialog_run):
10377 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10378 (update_frame_tool_bar):
10379 Check that fixnums are in proper range for system types.
10380 * image.c (parse_image_spec): Redo count calculation to avoid overflow.
10381 (lookup_image): Check that fixnums are in range for system types.
10382 * indent.c (last_known_column, last_known_column_point):
10383 (current_column_bol_cache):
10384 (skip_invisible, current_column, check_display_width):
10385 (check_display_width, scan_for_column, current_column_1)
10386 (Findent_to, Fcurrent_indentation, position_indentation)
10387 (indented_beyond_p, Fmove_to_column, compute_motion):
10388 (Fcompute_motion, Fvertical_motion):
10389 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10390 (last_known_column_modified): Use EMACS_INT, not int.
10391 (check_display_width):
10392 (Fcompute_motion):
10393 Check that fixnums and floats are in proper range for system types.
10394 (compute_motion): Don't assume index or fixnum fits in int.
10395 (compute_motion, Fcompute_motion):
10396 Use int, not EMACS_INT, when it is wide enough.
10397 (vmotion): Omit local var start_hpos that is always 0; that way
10398 we don't need to worry about overflow in expressions involving it.
10399 * indent.h: Adjust decls to match defn changes elsewhere.
10400 (struct position):
10401 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10402 Use int, not EMACS_INT, where int is wide enough.
10403 Remove unused members ovstring_chars_done and tab_offset;
10404 all uses removed.
10405 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
10406 (adjust_markers_for_delete, adjust_markers_for_insert, adjust_point)
10407 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
10408 (make_gap, copy_text, insert, insert_and_inherit)
10409 (insert_before_markers, insert_before_markers_and_inherit)
10410 (insert_1, count_combining_before, count_combining_after)
10411 (insert_1_both, insert_from_string)
10412 (insert_from_string_before_markers, insert_from_string_1)
10413 (insert_from_gap, insert_from_buffer, insert_from_buffer_1)
10414 (adjust_after_replace, adjust_after_insert, replace_range)
10415 (replace_range_2, del_range, del_range_1, del_range_byte)
10416 (del_range_both, del_range_2, modify_region)
10417 (prepare_to_modify_buffer, signal_before_change)
10418 (signal_after_change, Fcombine_after_change_execute):
10419 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10420 * intervals.c (traverse_intervals, rotate_right, rotate_left)
10421 (balance_an_interval, split_interval_right, split_interval_left)
10422 (find_interval, next_interval, update_interval)
10423 (adjust_intervals_for_insertion, delete_node, delete_interval)
10424 (interval_deletion_adjustment, adjust_intervals_for_deletion)
10425 (static_offset_intervals, offset_intervals)
10426 (merge_interval_right, merge_interval_left, make_new_interval)
10427 (graft_intervals_into_buffer, temp_set_point_both)
10428 (temp_set_point, set_point, adjust_for_invis_intang)
10429 (set_point_both, move_if_not_intangible, get_property_and_range)
10430 (get_local_map, copy_intervals, copy_intervals_to_string)
10431 (compare_string_intervals, set_intervals_multibyte_1):
10432 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10433 * intervals.h: Adjust decls to match defn changes elsewhere.
10434 (struct interval):
10435 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10436 * keyboard.c (this_command_key_count, this_single_command_key_start)
10437 (before_command_key_count, before_command_echo_length, echo_now)
10438 (echo_length, recursive_edit_1, Frecursive_edit, Ftrack_mouse)
10439 (command_loop_1, safe_run_hooks, read_char, timer_check_2)
10440 (menu_item_eval_property, read_key_sequence, Fread_key_sequence)
10441 (Fread_key_sequence_vector, Fexecute_extended_command, Fsuspend_emacs):
10442 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10443 (last_non_minibuf_size, last_point_position, echo_truncate)
10444 (command_loop_1, adjust_point_for_property, read_char, gen_help_event)
10445 (make_lispy_position, make_lispy_event, parse_modifiers_uncached)
10446 (parse_modifiers, modify_event_symbol, Fexecute_extended_command)
10447 (stuff_buffered_input):
10448 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10449 (last_auto_save, command_loop_1, read_char):
10450 Use EMACS_INT, not int, to avoid integer overflow.
10451 (record_char): Avoid overflow in total_keys computation.
10452 (parse_modifiers_uncached): Redo index calculation to avoid overflow.
10453 * keyboard.h: Adjust decls to match defn changes elsewhere.
10454 * keymap.c (Fdefine_key, Fcurrent_active_maps, accessible_keymaps_1)
10455 (Fkey_description, Fdescribe_vector, Flookup_key):
10456 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10457 (click_position): New function, to check that positions are in range.
10458 (Fcurrent_active_maps):
10459 (describe_command):
10460 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10461 (Faccessible_keymaps, Fkey_description):
10462 (preferred_sequence_p):
10463 Don't assume fixnum can fit into int.
10464 (Fkey_description): Use SAFE_ALLOCA_LISP, not alloca.
10465 Check for integer overflow in size calculations.
10466 (Ftext_char_description): Use CHECK_CHARACTER, not CHECK_NUMBER, to
10467 avoid mishandling large integers.
10468 * lisp.h: Adjust decls to match defn changes elsewhere.
10469 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, struct Lisp_String)
10470 (struct vectorlike_header, struct Lisp_Subr, struct Lisp_Hash_Table)
10471 (struct Lisp_Marker):
10472 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10473 (clip_to_bounds): Now an inline function, moved here from editfns.c.
10474 (GLYPH_CODE_P): Check for overflow in system types, subsuming the
10475 need for GLYPH_CODE_CHAR_VALID_P and doing proper checking ourselves.
10476 All callers changed.
10477 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE):
10478 Assume the arg has valid form, since it always does.
10479 (TYPE_RANGED_INTEGERP): Avoid bug when checking against a wide
10480 unsigned integer system type.
10481 (CHECK_RANGED_INTEGER, CHECK_TYPE_RANGED_INTEGER): New macros.
10482 (struct catchtag, specpdl_size, SPECPDL_INDEX, USE_SAFE_ALLOCA):
10483 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10484 (struct catchtag): Use EMACS_INT, not int, since it may be a fixnum.
10485 (duration_to_sec_usec): New decl.
10486 * lread.c (read_from_string_index, read_from_string_index_byte)
10487 (read_from_string_limit, readchar, unreadchar, openp)
10488 (read_internal_start, read1, oblookup):
10489 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10490 (Fload, readevalloop, Feval_buffer, Feval_region):
10491 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10492 (openp): Check for out-of-range argument to 'access'.
10493 (read1): Use int, not EMACS_INT, where int is wide enough.
10494 Don't assume fixnum fits into int.
10495 Fix off-by-one error that can read outside a buffer.
10496 (read_filtered_event): Use duration_to_sec_usec
10497 to do proper overflow checking on durations.
10498 * macros.c (Fstart_kbd_macro): Use xpalloc to check for overflow
10499 in size calculation.
10500 (Fexecute_kbd_macro):
10501 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10502 * marker.c (cached_charpos, cached_bytepos, CONSIDER)
10503 (byte_char_debug_check, buf_charpos_to_bytepos, verify_bytepos)
10504 (buf_bytepos_to_charpos, Fset_marker, set_marker_restricted)
10505 (set_marker_both, set_marker_restricted_both, marker_position)
10506 (marker_byte_position, Fbuffer_has_markers_at):
10507 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10508 (Fset_marker, set_marker_restricted): Don't assume fixnum fits in int.
10509 * menu.c (ensure_menu_items): Rename from grow_menu_items.
10510 It now merely ensures that the menu is large enough, without
10511 necessarily growing it, as this avoids some integer overflow issues.
10512 All callers changed.
10513 (keymap_panes, parse_single_submenu, Fx_popup_menu):
10514 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10515 (parse_single_submenu, Fx_popup_menu): Don't assume fixnum fits in int.
10516 Use SAFE_ALLOCA_LISP, not alloca.
10517 (find_and_return_menu_selection): Avoid unnecessary casts of pointers
10518 to EMACS_INT. Check that fixnums are in proper range for system types.
10519 * minibuf.c (minibuf_prompt_width, string_to_object)
10520 (Fminibuffer_contents, Fminibuffer_contents_no_properties)
10521 (Fminibuffer_completion_contents, Ftry_completion, Fall_completions):
10522 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10523 (get_minibuffer, read_minibuf_unwind):
10524 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10525 (read_minibuf): Omit unnecessary arg BACKUP_N, which is always nil;
10526 this simplifies overflow checking. All callers changed.
10527 (read_minibuf, Fread_buffer, Ftry_completion, Fall_completions)
10528 (Ftest_completion):
10529 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10530 * nsfns.m (check_ns_display_info): Don't assume fixnum fits in long.
10531 (x_set_menu_bar_lines, x_set_tool_bar_lines, Fx_create_frame):
10532 Check that fixnums are in proper range for system types.
10533 (Fx_create_frame, Fx_show_tip):
10534 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10535 * nsfont.m (ns_findfonts, nsfont_list_family):
10536 Don't assume fixnum fits in long.
10537 * nsmenu.m (ns_update_menubar, ns_menu_show, ns_popup_dialog):
10538 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10539 (ns_update_menubar): Use intptr_t, not EMACS_INT, when intptr_t is
10540 wide enough.
10541 * nsselect.m (ns_get_local_selection, clean_local_selection_data):
10542 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10543 * print.c (print_buffer_size, print_buffer_pos, print_buffer_pos_byte)
10544 (PRINTDECLARE, PRINTPREPARE):
10545 (strout, print_string):
10546 (print, print_preprocess, print_check_string_charset_prop)
10547 (print_object):
10548 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10549 (PRINTDECLARE):
10550 (temp_output_buffer_setup, Fprin1_to_string, print_object):
10551 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10552 (PRINTPREPARE): Use int, not ptrdiff_t, where int is wide enough.
10553 (printchar, strout): Use xpalloc to catch size calculation overflow.
10554 (Fexternal_debugging_output): Don't overflow EMACS_INT->int conversion.
10555 (print_error_message): Use SAFE_ALLOCA, not alloca.
10556 (print_object): Use int, not EMACS_INT, where int is wide enough.
10557 (print_depth, new_backquote_output, print_number_index):
10558 Use ptrdiff_t, not int, where int might not be wide enough.
10559 * process.c (Fdelete_process): Don't assume pid fits into EMACS_INT.
10560 (Fset_process_window_size, Fformat_network_address)
10561 (get_lisp_to_sockaddr_size, set_socket_option, Fmake_network_process)
10562 (sigchld_handler):
10563 Check that fixnums are in proper range for system types.
10564 (Fsignal_process): Simplify by avoiding a goto.
10565 Check for process-ids out of pid_t range rather than relying on
10566 undefined behavior.
10567 (process_tick, update_tick): Use EMACS_INT, not int.
10568 (Fformat_network_address, read_process_output, send_process)
10569 (Fprocess_send_region, status_notify):
10570 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10571 (Fformat_network_address, Fmake_serial_process, Fmake_network_process)
10572 (wait_reading_process_output, read_process_output, exec_sentinel):
10573 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10574 (conv_lisp_to_sockaddr): Don't assume fixnums fit into int.
10575 (Faccept_process_output): Use duration_to_sec_usec to do proper
10576 overflow checking on durations.
10577 (emacs_get_tty_pgrp, Fprocess_running_child_p, process_send_signal):
10578 Don't assume pid_t fits in int.
10579 * process.h (struct Lisp_Process): Members tick and update_tick
10580 are now of type EMACS_INT, not int.
10581 * puresize.h (PURESIZE_RATIO): Shrink this to 8/6 on 32-bit hosts
10582 configured --with-wide-int.
10583 * scroll.c (calculate_scrolling, calculate_direct_scrolling)
10584 (line_ins_del): Use int, not EMACS_INT, where int is wide enough.
10585 * search.c (looking_at_1, string_match_1):
10586 (fast_string_match, fast_c_string_match_ignore_case)
10587 (fast_string_match_ignore_case, fast_looking_at, scan_buffer)
10588 (scan_newline, find_before_next_newline, search_command)
10589 (trivial_regexp_p, search_buffer, simple_search, boyer_moore)
10590 (set_search_regs, wordify):
10591 (Freplace_match):
10592 (Fmatch_data):
10593 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10594 (string_match_1, search_buffer, set_search_regs):
10595 (Fmatch_data):
10596 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10597 (wordify): Check for overflow in size calculation.
10598 (Freplace_match): Avoid potential buffer overflow in search_regs.start.
10599 (Fset_match_data): Don't assume fixnum fits in ptrdiff_t.
10600 Check that fixnums are in proper range for system types.
10601 * sound.c (struct sound_device)
10602 (wav_play, au_play, vox_write, alsa_period_size, alsa_write):
10603 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10604 (Fplay_sound_internal):
10605 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10606 * syntax.c (struct lisp_parse_state, find_start_modiff)
10607 (Finternal_describe_syntax_value, scan_lists, scan_sexps_forward):
10608 (Fparse_partial_sexp):
10609 Don't assume fixnums can fit in int.
10610 (struct lisp_parse_state, find_start_pos, find_start_value)
10611 (find_start_value_byte, find_start_begv)
10612 (update_syntax_table, char_quoted, dec_bytepos)
10613 (find_defun_start, prev_char_comend_first, back_comment):
10614 (scan_words, skip_chars, skip_syntaxes, forw_comment, Fforward_comment)
10615 (scan_lists, Fbackward_prefix_chars, scan_sexps_forward):
10616 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10617 (Finternal_describe_syntax_value): Check that match_lisp is a
10618 character, not an integer, since the code stuffs it into int.
10619 (scan_words, scan_sexps_forward):
10620 Check that fixnums are in proper range for system types.
10621 (Fforward_word):
10622 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10623 (scan_sexps_forward):
10624 Use CHARACTERP, not INTEGERP, since the value must fit into int.
10625 (Fparse_partial_sexp): Fix doc; element 8 is not ignored.
10626 * syntax.h: Adjust decls to match defn changes elsewhere.
10627 (struct gl_state_s):
10628 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10629 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Use PTRDIFF_MAX, not
10630 MOST_POSITIVE_FIXNUM.
10631 * sysdep.c (wait_for_termination_1, wait_for_termination)
10632 (interruptible_wait_for_termination, mkdir):
10633 Don't assume pid_t fits in int; on 64-bit AIX pid_t is 64-bit.
10634 (emacs_read, emacs_write):
10635 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10636 (system_process_attributes): Don't assume uid_t, gid_t, EMACS_INT,
10637 and double all fit in int.
10638 * term.c (set_tty_color_mode):
10639 Check that fixnums are in proper range for system types.
10640 * termhooks.h (struct input_event):
10641 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10642 * textprop.c (validate_interval_range, interval_of)
10643 (Fadd_text_properties, set_text_properties_1)
10644 (Fremove_text_properties, Fremove_list_of_text_properties)
10645 (Ftext_property_any, Ftext_property_not_all)
10646 (copy_text_properties, text_property_list, extend_property_ranges)
10647 (verify_interval_modification):
10648 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10649 (Fnext_single_char_property_change)
10650 (Fprevious_single_char_property_change):
10651 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10652 (copy_text_properties):
10653 Check for integer overflow in index calculation.
10654 * undo.c (last_boundary_position, record_point, record_insert)
10655 (record_delete, record_marker_adjustment, record_change)
10656 (record_property_change):
10657 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10658 (truncate_undo_list, Fprimitive_undo): Don't assume fixnum fits in int.
10659 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10660 * w32fns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
10661 (Fx_hide_tip, Fx_file_dialog):
10662 * w32menu.c (set_frame_menubar):
10663 Use ptrdiff_t, not int, for consistency with rest of code.
10664 * window.c (window_scroll_preserve_hpos, window_scroll_preserve_vpos)
10665 (select_window, Fdelete_other_windows_internal)
10666 (window_scroll_pixel_based, window_scroll_line_based)
10667 (Frecenter, Fset_window_configuration):
10668 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10669 (Fset_window_hscroll, run_window_configuration_change_hook)
10670 (set_window_buffer, temp_output_buffer_show, scroll_command)
10671 (Fscroll_other_window, Frecenter):
10672 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10673 (Fwindow_line_height, window_scroll, Fscroll_left, Fscroll_right):
10674 Don't assume fixnum fits in int.
10675 (Fset_window_scroll_bars):
10676 Check that fixnums are in proper range for system types.
10677 * xdisp.c (help_echo_pos, pos_visible_p, string_pos_nchars_ahead)
10678 (string_pos, c_string_pos, number_of_chars, init_iterator)
10679 (in_ellipses_for_invisible_text_p, init_from_display_pos)
10680 (compute_stop_pos, next_overlay_change, compute_display_string_pos)
10681 (compute_display_string_end, handle_face_prop)
10682 (face_before_or_after_it_pos, handle_invisible_prop)
10683 (handle_display_prop, handle_display_spec, handle_single_display_spec)
10684 (display_prop_intangible_p, string_buffer_position_lim)
10685 (string_buffer_position, handle_composition_prop, load_overlay_strings)
10686 (get_overlay_strings_1, get_overlay_strings)
10687 (iterate_out_of_display_property, forward_to_next_line_start)
10688 (back_to_previous_visible_line_start, reseat, reseat_to_string)
10689 (get_next_display_element, set_iterator_to_next)
10690 (get_visually_first_element, compute_stop_pos_backwards)
10691 (handle_stop_backwards, next_element_from_buffer)
10692 (move_it_in_display_line_to, move_it_in_display_line)
10693 (move_it_to, move_it_vertically_backward, move_it_by_lines)
10694 (add_to_log, message_dolog, message_log_check_duplicate)
10695 (message2, message2_nolog, message3, message3_nolog
10696 (with_echo_area_buffer, display_echo_area_1, resize_mini_window_1)
10697 (current_message_1, truncate_echo_area, truncate_message_1)
10698 (set_message, set_message_1, store_mode_line_noprop)
10699 (hscroll_window_tree, debug_delta, debug_delta_bytes, debug_end_vpos)
10700 (text_outside_line_unchanged_p, check_point_in_composition)
10701 (reconsider_clip_changes)
10702 (redisplay_internal, set_cursor_from_row, try_scrolling)
10703 (try_cursor_movement, set_vertical_scroll_bar, redisplay_window)
10704 (redisplay_window, find_last_unchanged_at_beg_row)
10705 (find_first_unchanged_at_end_row, row_containing_pos, try_window_id)
10706 (trailing_whitespace_p, find_row_edges, display_line)
10707 (RECORD_MAX_MIN_POS, Fcurrent_bidi_paragraph_direction)
10708 (display_mode_element, store_mode_line_string)
10709 (pint2str, pint2hrstr, decode_mode_spec)
10710 (display_count_lines, display_string, draw_glyphs)
10711 (x_produce_glyphs, x_insert_glyphs)
10712 (rows_from_pos_range, mouse_face_from_buffer_pos)
10713 (fast_find_string_pos, mouse_face_from_string_pos)
10714 (note_mode_line_or_margin_highlight, note_mouse_highlight):
10715 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10716 (safe_call, init_from_display_pos, handle_fontified_prop)
10717 (handle_single_display_spec, load_overlay_strings)
10718 (with_echo_area_buffer, setup_echo_area_for_printing)
10719 (display_echo_area, echo_area_display)
10720 (x_consider_frame_title, prepare_menu_bars, update_menu_bar)
10721 (update_tool_bar, hscroll_window_tree, redisplay_internal)
10722 (redisplay_window, dump_glyph_row, display_mode_line)
10723 (Fformat_mode_line, decode_mode_spec, on_hot_spot_p):
10724 (handle_display_spec, display_prop_string_p):
10725 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10726 (handle_single_display_spec, build_desired_tool_bar_string)
10727 (redisplay_tool_bar, scroll_window_tree, Fdump_glyph_matrix)
10728 (get_specified_cursor_type):
10729 Check that fixnums are in proper range for system types.
10730 (struct overlay_entry, resize_mini_window, Fdump_glyph_row)
10731 (Flookup_image_map):
10732 Don't assume fixnums fit in int.
10733 (compare_overlay_entries):
10734 Avoid mishandling comparisons due to subtraction overflow.
10735 (load_overlay_strings): Use SAFE_NALLOCA, not alloca.
10736 (last_escape_glyph_face_id, last_glyphless_glyph_face_id):
10737 (handle_tool_bar_click):
10738 Use int, not unsigned, since we prefer signed and the signedness
10739 doesn't matter here.
10740 (get_next_display_element, next_element_from_display_vector):
10741 Use int, not EMACS_INT, when int is wide enough.
10742 (start_hourglass): Use duration_to_sec_usec to do proper
10743 overflow checking on durations.
10744 * xfaces.c (Fbitmap_spec_p):
10745 Check that fixnums are in proper range for system types.
10746 (compare_fonts_by_sort_order):
10747 Avoid mishandling comparisons due to subtraction overflow.
10748 (Fx_family_fonts, realize_basic_faces):
10749 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10750 (Fx_family_fonts):
10751 Don't assume fixnum fits in int.
10752 Use SAFE_ALLOCA_LISP, not alloca.
10753 (merge_face_heights): Remove unnecessary cast to EMACS_INT.
10754 (Finternal_make_lisp_face): Don't allocate more than MAX_FACE_ID.
10755 (face_at_buffer_position, face_for_overlay_string)
10756 (face_at_string_position):
10757 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10758 (merge_faces): Use int, not EMACS_INT, where int is wide enough.
10759 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines, x_icon_verify)
10760 (Fx_show_tip):
10761 Check that fixnums are in proper range for system types.
10762 (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
10763 (Fx_hide_tip, Fx_file_dialog, Fx_select_font):
10764 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10765 (Fx_change_window_property): Don't assume fixnums fit in int.
10766 * xfont.c (xfont_chars_supported):
10767 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10768 * xmenu.c (Fx_popup_dialog, set_frame_menubar)
10769 (create_and_show_popup_menu, create_and_show_dialog, xmenu_show):
10770 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10771 * xml.c (parse_region):
10772 * xrdb.c (magic_file_p):
10773 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
10774 * xselect.c (TRACE1): Don't assume pid_t promotes to int.
10775 (x_get_local_selection, x_reply_selection_request)
10776 (x_handle_selection_request, wait_for_property_change):
10777 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10778 (selection_data_to_lisp_data): Use short, not EMACS_INT, where
10779 short is wide enough.
10780 (x_send_client_event): Don't assume fixnum fits in int.
10781 * xterm.c (x_x_to_emacs_modifiers):
10782 Don't assume EMACS_INT overflows nicely into int.
10783 (x_emacs_to_x_modifiers): Use EMACS_INT, not int, because values
10784 may come from Lisp.
10785 (handle_one_xevent): NATNUMP can eval its arg twice.
10786 (x_connection_closed):
10787 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
10788 * xterm.h: Adjust decls to match defn changes elsewhere.
10789 (struct scroll_bar): Use struct vectorlike_header
10790 rather than rolling our own approximation.
10791 (SCROLL_BAR_VEC_SIZE): Remove; not used.
10792
10793 2012-05-25 Glenn Morris <rgm@gnu.org>
10794
10795 * lisp.mk (lisp): Update for more files being compiled now.
10796
10797 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
10798
10799 * lread.c: Remove `read_pure' which makes no difference.
10800 (read_pure): Remove var.
10801 (unreadpure): Remove function.
10802 (readevalloop): Don't call read_list with -1 flag.
10803 (read1, read_vector): Don't test read_pure any more.
10804 (read_list): Simplify.
10805
10806 * fileio.c, character.h: Minor style tweaks.
10807
10808 2012-05-24 Dmitry Antipov <dmantipov@yandex.ru>
10809
10810 * window.h (clip_changed): Remove useless declaration.
10811
10812 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
10813
10814 * makefile.w32-in: Follow-up to 2012-05-22T16:20:27Z!eggert@cs.ucla.edu.
10815 (TAGS, TAGS-gmake, CONFIG_H): Remove further references to m/intel386.h.
10816
10817 2012-05-22 Paul Eggert <eggert@cs.ucla.edu>
10818
10819 Remove src/m/*.
10820 This directory predates autoconf and is no longer needed nowadays.
10821 Move its few remaining bits of functionality to where they're needed.
10822 * m/README, m/alpha.h, m/amdx86-64.h, m/ia64.h, m/ibmrs6000.h:
10823 * m/ibms390x.h, m/intel386.h, m/m68k.h, m/macppc.h, m/sparc.h:
10824 * m/template.h: Remove.
10825 * Makefile.in (M_FILE): Remove. All uses removed.
10826 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS):
10827 * lisp.h (USE_LSB_TAG):
10828 * mem-limits.h (EXCEEDS_LISP_PTR):
10829 Use VAL_MAX, not VALBITS, in #if.
10830 * lisp.h (EMACS_INT_MAX): New macro, useful in #if.
10831 (EMACS_UINT): Define unconditionally now.
10832 (BITS_PER_CHAR, BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG)
10833 (BITS_PER_EMACS_INT): New constants, replacing
10834 what used to be in config.h, but not useful in #if.
10835 (GCTYPEBITS, VALBITS): Define unconditionally, since m/* files don't
10836 define them any more.
10837 (VAL_MAX): New macro.
10838 (VALMASK): Use it.
10839 * puresize.h (PURESIZE_RATIO): Use EMACS_INT_MAX, not
10840 BITS_PER_EMACS_INT, in #if.
10841 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
10842 (BROKEN_SIGPOLL): Move here from m/ibmrs6000.h, which was removed.
10843 * s/gnu-linux.h (ULIMIT_BREAK_VALUE) [__i386__]:
10844 * s/ms-w32.h (DATA_START):
10845 Move here from removed file m/intel386.h.
10846 * s/gnu.h (NLIST_STRUCT): Remove undef; 'configure' does this.
10847 * s/irix6-5.h (_LP64): Remove; lisp.h no longer needs this.
10848
10849 2012-05-21 Paul Eggert <eggert@cs.ucla.edu>
10850
10851 Assume C89 or later.
10852 * alloc.c, buffer.c, lisp.h: Replace POINTER_TYPE with void.
10853 * alloc.c (overrun_check_malloc, overrun_check_realloc, xmalloc)
10854 (xrealloc):
10855 * buffer.c (mmap_free_1, mmap_enlarge): Omit needless casts.
10856 * editfns.c, fns.c, gmalloc.c, insdel.c, sysdep.c, termcap.c (NULL):
10857 * textprop.c, tparam.c (NULL): Remove.
10858 * ralloc.c, vm-limit.c (POINTER): Assume void * works.
10859 * regex.c (SIGN_EXTEND_CHAR): Assume signed char works.
10860 * regex.h (_RE_ARGS): Remove. All uses rewritten to use prototypes.
10861 * unexelf.c (ElfBitsW): Assume c89 preprocessor or better.
10862 * xterm.c (input_signal_count): Assume volatile works.
10863
10864 2012-05-21 Ken Brown <kbrown@cornell.edu>
10865
10866 * xgselect.c (xg_select): Fix first argument in call to 'select'
10867 (bug#11508).
10868
10869 2012-05-20 Ken Brown <kbrown@cornell.edu>
10870
10871 * gmalloc.c (_free_internal_nolock, _realloc_internal_nolock)
10872 [CYGWIN]: Cast ptr to (char *) before comparing to _heapbase.
10873
10874 2012-05-19 Ken Brown <kbrown@cornell.edu>
10875
10876 * xfns.c (x_in_use): Remove `static' qualifier.
10877 * xterm.h (x_in_use): Declare.
10878 * xgselect.c: Include xterm.h.
10879 (xg_select): Test `x_in_use' instead of `inhibit_window_system'
10880 and `display_arg' (bug#9754).
10881
10882 2012-05-19 Paul Eggert <eggert@cs.ucla.edu>
10883
10884 * s/ms-w32.h (HAVE_GETDOMAINNAME): Remove; not needed.
10885
10886 * m/vax.h: Remove; no longer needed since HAVE_FTIME is being removed.
10887 * s/ms-w32.h (HAVE_FTIME): Remove; not needed.
10888
10889 2012-05-18 Eli Zaretskii <eliz@gnu.org>
10890
10891 Fix compilation with -DGLYPH_DEBUG=1 on MS-Windows.
10892
10893 * w32term.c [GLYPH_DEBUG]: Add prototype for x_check_font.
10894 (x_check_font) [GLYPH_DEBUG]: New function, copied from xterm.c.
10895
10896 * w32fns.c (unwind_create_frame) [GLYPH_DEBUG]: Fix broken
10897 reference to image_cache->refcount.
10898 (x_create_tip_frame): Fix broken use of FRAME_IMAGE_CACHE.
10899
10900 2012-05-17 Juri Linkov <juri@jurta.org>
10901
10902 * search.c (Fword_search_regexp, Fword_search_backward)
10903 (Fword_search_forward, Fword_search_backward_lax)
10904 (Fword_search_forward_lax): Move functions to isearch.el
10905 (bug#10145, bug#11381).
10906
10907 2012-05-16 Paul Eggert <eggert@cs.ucla.edu>
10908
10909 * xgselect.c (xg_select): Just invoke 'select' if -nw (Bug#9754).
10910
10911 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
10912
10913 * lread.c (init_obarray): Declare Qt and Qnil as special.
10914
10915 2012-05-14 Glenn Morris <rgm@gnu.org>
10916
10917 * nsterm.m (ns_init_paths): Fix typo ("libexec" not "lib-exec").
10918 Put "libexec" before "bin", for the sake of init_callproc_1.
10919
10920 2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
10921
10922 * keyboard.c (kbd_buffer_get_event) [!HAVE_DBUS]: Omit unused local.
10923
10924 * unexaix.c: Port to more-recent AIX compilers.
10925 (report_error, report_error_1, make_hdr, copy_sym)
10926 (mark_x, adjust_lnnoptrs, unrelocate_symbols):
10927 Make arguments const char *, not char *, to avoid violations of C
10928 standard and to fix some AIX warnings reported by Gilles Pion.
10929
10930 2012-05-14 Eli Zaretskii <eliz@gnu.org>
10931
10932 * xdisp.c (handle_stop): Don't call get_overlay_strings_1 if we
10933 already have overlays loaded.
10934 (handle_single_display_spec): Before returning without displaying
10935 fringe bitmap, synchronize the bidi iterator with the main display
10936 iterator, by calling iterate_out_of_display_property.
10937 (iterate_out_of_display_property): Detect buffer iteration by
10938 testing that it->string is a Lisp string.
10939 (get_next_display_element): When the current object is exhausted,
10940 and there's something on it->stack, call set_iterator_to_next to
10941 proceed with what's on the stack, instead of returning zero.
10942 (set_iterator_to_next): If called at the end of a Lisp string,
10943 proceed to consider_string_end without incrementing string
10944 position. Don't increment display vector index past the end of
10945 the display vector. (Bug#11417)
10946 (pos_visible_p): Don't report a position visible when move_it_to
10947 stopped at the last line of window, which happens to be scanned
10948 backwards by the bidi iteration. (Bug#11464)
10949
10950 2012-05-14 Eli Zaretskii <eliz@gnu.org>
10951
10952 * xdisp.c (handle_single_display_spec): Return 1 for left-margin
10953 and right-margin display specs even if the spec is invalid or we
10954 are on a TTY, and thus unable to display on the fringes.
10955 That's because the text with the property will not be displayed anyway,
10956 so we need to signal to the caller that this is a "replacing"
10957 display spec. This fixes display when the spec is invalid or we
10958 are on a TTY.
10959
10960 2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
10961
10962 * unexaix.c (make_hdr): Fix typo in prototype.
10963 This bug broke the build on AIX. Problem reported by Gilles Pion.
10964
10965 2012-05-14 Michael Albinus <michael.albinus@gmx.de>
10966
10967 * keyboard.c (kbd_buffer_get_event): Read special events also in
10968 batch mode. (Bug#11415)
10969
10970 2012-05-12 Glenn Morris <rgm@gnu.org>
10971
10972 * ns.mk: Update for ns_appbindir no longer having trailing "/".
10973
10974 2012-05-12 Eli Zaretskii <eliz@gnu.org>
10975
10976 * lisp.mk (lisp): Add newcomment.elc.
10977
10978 2012-05-12 Glenn Morris <rgm@gnu.org>
10979
10980 * Makefile.in (MKDIR_P): New, set by configure.
10981 * ns.mk (${ns_appdir}, ${ns_appbindir}Emacs): Use $MKDIR_P.
10982
10983 2012-05-11 Paul Eggert <eggert@cs.ucla.edu>
10984
10985 Remove unused function hourglass_started.
10986 * dispextern.h (hourglass_started):
10987 * w32fns.c (hourglass_started):
10988 * xdisp.c (hourglass_started): Remove.
10989
10990 2012-05-10 Juanma Barranquero <lekktu@gmail.com>
10991
10992 * makefile.w32-in ($(BLD)/gmalloc.$(O), $(BLD)/w32menu.$(O)):
10993 Update dependencies.
10994
10995 2012-05-10 Paul Eggert <eggert@cs.ucla.edu>
10996
10997 * xgselect.c (xg_select): Put maxfds+1 into a var.
10998 This is slightly clearer, and pacifies Ubuntu 12.04 gcc.
10999
11000 * sound.c (DEFAULT_ALSA_SOUND_DEVICE): Define only if HAVE_ALSA.
11001
11002 2012-05-10 Dave Abrahams <dave@boostpro.com>
11003
11004 * filelock.c (syms_of_filelock): New boolean create-lockfiles.
11005 (lock_file): If create_lockfiles is 0, do nothing. (Bug#11227)
11006
11007 2012-05-09 Michael Albinus <michael.albinus@gmx.de>
11008
11009 * dbusbind.c (xd_registered_buses): New internal Lisp object.
11010 Rename all occurrences of Vdbus_registered_buses to xd_registered_buses.
11011 (syms_of_dbusbind): Remove declaration of Vdbus_registered_buses.
11012 Initialize xd_registered_buses.
11013
11014 2012-05-09 Paul Eggert <eggert@cs.ucla.edu>
11015
11016 Untag more efficiently if USE_LSB_TAG.
11017 This is based on a proposal by YAMAMOTO Mitsuharu in
11018 <http://lists.gnu.org/archive/html/emacs-devel/2008-01/msg01876.html>.
11019 For an admittedly artificial (nth 8000 longlist) benchmark on
11020 Fedora 15 x86-64, this yields a 25% CPU speedup. Also, it shrinks
11021 Emacs's overall text size by 1%.
11022 * lisp.h (XUNTAG): New macro.
11023 (XCONS, XVECTOR, XSTRING, XSYMBOL, XFLOAT, XMISC, XPROCESS, XWINDOW)
11024 (XTERMINAL, XSUBR, XBUFFER, XCHAR_TABLE, XSUB_CHAR_TABLE, XBOOL_VECTOR)
11025 (XSETTYPED_PSEUDOVECTOR, XHASH_TABLE, TYPED_PSEUDOVECTORP): Use it.
11026 * eval.c (Fautoload):
11027 * font.h (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT):
11028 * frame.h (XFRAME): Use XUNTAG.
11029
11030 Port recent dbusbind.c changes to 32-bit --with-wide-int.
11031 * dbusbind.c (xd_append_arg, xd_retrieve_arg, Fdbus_message_internal):
11032 Remove unportable assumptions about print widths of types like
11033 dbus_uint32_t.
11034 (xd_get_connection_address, Fdbus_init_bus): Cast Emacs integer to
11035 intptr_t when converting between pointer and integer, to avoid GCC
11036 warnings about wrong width.
11037
11038 2012-05-09 Eli Zaretskii <eliz@gnu.org>
11039
11040 * w32proc.c (new_child): Force Windows to reserve only 64KB of
11041 stack for each reader_thread, instead of defaulting to 8MB
11042 determined by the linker. This avoids failures in creating
11043 subprocesses on Windows 7, see the discussion in this thread:
11044 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00119.html.
11045
11046 2012-05-07 Jérémy Compostella <jeremy.compostella@gmail.com>
11047
11048 Fix up display of the *Minibuf-0* buffer in the mini window.
11049 * keyboard.c (read_char): Don't clear the echo area if there's no
11050 message to clear.
11051 * xdisp.c (redisplay_internal): Redisplay the mini window (with the
11052 contents of *Minibuf-0*) if there's no message displayed in its stead.
11053
11054 2012-05-07 Michael Albinus <michael.albinus@gmx.de>
11055
11056 * dbusbind.c (XD_DEBUG_MESSAGE): Don't print message twice in
11057 batch mode.
11058
11059 2012-05-06 Chong Yidong <cyd@gnu.org>
11060
11061 * lisp.mk (lisp): Update.
11062
11063 2012-05-05 Jim Meyering <meyering@redhat.com>
11064
11065 * w32font.c (fill_in_logfont): NUL-terminate a string (Bug#11372).
11066
11067 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
11068
11069 * data.c (PUT_ERROR): New macro.
11070 (syms_of_data): Use it. Add new error type `user-error'.
11071 * undo.c (user_error): New function.
11072 (Fprimitive_undo): Use it.
11073 * print.c (print_error_message): Adjust print style for `user-error'.
11074 * keyboard.c (user_error): New function.
11075 (Fexit_recursive_edit, Fabort_recursive_edit): Use it.
11076
11077 2012-05-03 Paul Eggert <eggert@cs.ucla.edu>
11078
11079 Do not limit current-time-string to years 1000..9999.
11080 * editfns.c (TM_YEAR_IN_ASCTIME_RANGE): Remove.
11081 (Fcurrent_time_string): Support any year that is supported by the
11082 underlying localtime representation. Don't use asctime, as it
11083 has undefined behavior for years outside the range -999..9999.
11084
11085 2012-05-02 Paul Eggert <eggert@cs.ucla.edu>
11086
11087 Fix race conditions involving setenv, gmtime, localtime, asctime.
11088 Without this fix, interrupts could mess up code that uses these
11089 nonreentrant functions, since setting TZ invalidates existing
11090 tm_zone or tzname values, and since most of these functions return
11091 pointers to static storage.
11092 * editfns.c (format_time_string, Fdecode_time, Fencode_time)
11093 (Fcurrent_time_string, Fcurrent_time_zone, Fset_time_zone_rule):
11094 Grow the critical sections to include not just invoking
11095 localtime/gmtime, but also accessing these functions' results
11096 including their tm_zone values if any, and any related TZ setting.
11097 (format_time_string): Last arg is now struct tm *, not struct tm **,
11098 so that the struct tm is saved in the critical section.
11099 All callers changed. Simplify allocation of initial buffer, partly
11100 motivated by the fact that memory allocation needs to be outside
11101 the critical section.
11102
11103 2012-05-02 Dmitry Antipov <dmantipov@yandex.ru>
11104
11105 * intervals.c (adjust_intervals_for_insertion): Initialize `newi'
11106 with RESET_INTERVAL.
11107
11108 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
11109 Remove duplicated buffer name initialization.
11110
11111 2012-05-02 Jim Meyering <jim@meyering.net>
11112
11113 * xterm.c (x_term_init): Use memcpy instead of strncpy (Bug#11373).
11114
11115 * xfns.c (x_window): Use xstrdup (Bug#11375).
11116
11117 2012-05-02 Eli Zaretskii <eliz@gnu.org>
11118
11119 * xdisp.c (pos_visible_p): If already at a newline from the
11120 display string before the 'while' loop, don't walk back the glyphs
11121 from it3.glyph_row. Solves assertion violation when the display
11122 string begins with a newline (egg.el). (Bug#11367)
11123
11124 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
11125
11126 * keyboard.c (Fexecute_extended_command, Vsuggest_key_bindings):
11127 Move to simple.el.
11128
11129 2012-05-01 Glenn Morris <rgm@gnu.org>
11130
11131 * syssignal.h: Remove reference to BROKEN_SIGINFO (last used in
11132 s/ptx4.h), BROKEN_SIGTSTP (last used in m/ustation.h, m/dpx2.h),
11133 and BROKEN_SIGURG (was in s/gnu-linux.h prior to 2008-02-10).
11134 All were removed before 23.1.
11135
11136 * dispnew.c: Remove HAVE_LIBNCURSES test;
11137 it is always true on relevant platforms.
11138
11139 * Makefile.in (LD_SWITCH_X_SITE_RPATH):
11140 Rename from LD_SWITCH_X_SITE_AUX_RPATH.
11141
11142 * Makefile.in (LD_SWITCH_X_SITE_AUX): Remove; no longer used.
11143
11144 2012-04-30 Andreas Schwab <schwab@linux-m68k.org>
11145
11146 * .gdbinit (xpr): Remove checks for no longer existing misc types.
11147 (xintfwd, xboolfwd, xobjfwd, xbufobjfwd, xkbobjfwd, xbuflocal):
11148 Remove.
11149
11150 2012-04-28 Paul Eggert <eggert@cs.ucla.edu>
11151
11152 Do not avoid creating empty evaporating overlays (Bug#9642).
11153 * buffer.c (Fmove_overlay): Revert the change of 2012-04-23.
11154 That is, do not delete an evaporating overlay if it becomes
11155 empty after its bounds are adjusted to fit within its buffer.
11156 This fix caused other problems, and I'm reverting it until we get
11157 to the bottom of them.
11158
11159 2012-04-27 Chong Yidong <cyd@gnu.org>
11160
11161 * xselect.c (x_convert_selection): Initialize a pointer (Bug#11315).
11162
11163 2012-04-27 Eli Zaretskii <eliz@gnu.org>
11164
11165 * xdisp.c (pos_visible_p): If the window start position is beyond
11166 ZV, start the display from buffer beginning. Prevents assertion
11167 violation in init_iterator when the minibuffer window is scrolled
11168 via the scroll bar.
11169
11170 * window.c (window_scroll_pixel_based): Likewise.
11171
11172 2012-04-27 Chong Yidong <cyd@gnu.org>
11173
11174 * keymap.c (where_is_internal): Doc fix (Bug#10872).
11175
11176 2012-04-27 Glenn Morris <rgm@gnu.org>
11177
11178 * fileio.c (Fcopy_file, Fset_file_selinux_context):
11179 Ignore ENOTSUP failures from setfilecon functions. (Bug#11245)
11180
11181 2012-04-27 Eli Zaretskii <eliz@gnu.org>
11182
11183 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers):
11184 Don't overrun array limits of glyph row's used[] array. (Bug#11288)
11185
11186 2012-04-26 Eli Zaretskii <eliz@gnu.org>
11187
11188 * xdisp.c (IT_DISPLAYING_WHITESPACE): In addition to the loaded
11189 display element, check also the underlying string or buffer
11190 character. (Bug#11341)
11191
11192 * w32menu.c: Include w32heap.h.
11193 (add_menu_item): If the call to AppendMenuW (via
11194 unicode_append_menu) fails, disable Unicode menus only if we are
11195 running on Windows 9X/Me.
11196
11197 2012-04-24 Andreas Schwab <schwab@linux-m68k.org>
11198
11199 * .gdbinit (xpr): Handle USE_2_TAGS_FOR_INTS.
11200 (xgetint): Add missing shift for LSB tags.
11201
11202 2012-04-24 Martin Rudalics <rudalics@gmx.at>
11203
11204 * keyboard.c (read_char): Don't wipe echo area for select window
11205 events: These might get delayed via `mouse-autoselect-window'
11206 (Bug#11304).
11207
11208 2012-04-24 Juanma Barranquero <lekktu@gmail.com>
11209
11210 * gnutls.c (init_gnutls_functions): Protect against (unlikely)
11211 manipulation of :loaded-from data.
11212
11213 2012-04-23 Juanma Barranquero <lekktu@gmail.com>
11214
11215 * gnutls.c (init_gnutls_functions): The value of :loaded-from is
11216 now a cons (bug#11311).
11217
11218 2012-04-23 Paul Eggert <eggert@cs.ucla.edu>
11219
11220 Do not create empty overlays with the evaporate property (Bug#9642).
11221 * buffer.c (Fmove_overlay): Delete an evaporating overlay
11222 if it becomes empty after its bounds are adjusted to fit within
11223 its buffer. Without this fix, in a nonempty buffer (let ((o
11224 (make-overlay 1 2))) (overlay-put o 'evaporate t) (move-overlay o 0 1))
11225 yields an empty overlay that has the evaporate property, which is
11226 not supposed to happen.
11227
11228 Fix minor GTK3 problems found by static checking.
11229 * emacsgtkfixed.c (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
11230 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
11231 (struct _EmacsFixedClass, emacs_fixed_get_type):
11232 Move decls here from emacsgtkfixed.h, since they needn't be public.
11233 (emacs_fixed_get_type): Now static.
11234 (emacs_fixed_class_init): Omit unused local.
11235 (emacs_fixed_child_type): Remove; unused.
11236 * emacsgtkfixed.h (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
11237 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
11238 (struct _EmacsFixedClass): Move to emacsgtkfixed.c.
11239 (EMACS_FIXED_CLASS, EMACS_IS_FIXED, EMACS_IS_FIXED_CLASS)
11240 (EMACS_FIXED_GET_CLASS): Remove; unused.
11241 * gtkutil.c (xg_create_frame_widgets) [!HAVE_GTK3]: Omit unused local.
11242
11243 * keyboard.c (handle_async_input): Define only if SYNC_INPUT || SIGIO.
11244 Problem reported by Juanma Barranquero for Windows -Wunused-function.
11245
11246 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
11247
11248 Modernize and clean up gmalloc.c to assume C89 (Bug#9119).
11249 * gmalloc.c (_MALLOC_INTERNAL, _MALLOC_H, _PP, __ptr_t)
11250 (__malloc_size_t, __malloc_ptrdiff_t):
11251 Remove. All uses removed, replaced by the definiens if needed,
11252 since we can assume C89 or better now.
11253 Include <stdint.h>, for PTRDIFF_MAX, uintptr_t.
11254 (protect_malloc_state, align, get_contiguous_space)
11255 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
11256 (malloc_atfork_handler_child, malloc_enable_thread)
11257 (malloc_initialize_1, __malloc_initialize, morecore_nolock)
11258 (_malloc_internal_nolock, _malloc_internal, malloc, _malloc)
11259 (_free, _realloc, _free_internal_nolock, _free_internal, free, cfree)
11260 (special_realloc, _realloc_internal_nolock, _realloc_internal)
11261 (realloc, calloc, __default_morecore, memalign, valloc, checkhdr)
11262 (freehook, mallochook, reallochook, mabort, mcheck, mprobe):
11263 Define using prototypes, not old style.
11264 (align, _malloc_internal_nolock, _free_internal_nolock, memalign):
11265 Don't assume ptrdiff_t and uintptr_t are no wider than unsigned long.
11266 (align): Don't assume that signed integer overflow wraps around.
11267 Omit unused local var.
11268 (malloc_initialize_1, morecore_nolock, _malloc_internal_nolock)
11269 (_free_internal_nolock, memalign, mallochook, reallochook):
11270 Omit no-longer-needed casts.
11271 (valloc): Use getpagesize, not __getpagesize.
11272 (MAGICWORD, MAGICFREE): Now randomish size_t values, not 32-bit.
11273 (struct hdr): The 'magic' member is now size_t, not unsigned long.
11274
11275 * dbusbind.c (XD_DBUS_VALIDATE_OBJECT): Define only if needed.
11276
11277 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
11278
11279 Move functions from C to Lisp. Make non-blocking method calls
11280 the default. Implement further D-Bus standard interfaces.
11281
11282 * dbusbind.c (DBUS_NUM_MESSAGE_TYPES): Declare.
11283 (QCdbus_request_name_allow_replacement)
11284 (QCdbus_request_name_replace_existing)
11285 (QCdbus_request_name_do_not_queue)
11286 (QCdbus_request_name_reply_primary_owner)
11287 (QCdbus_request_name_reply_in_queue)
11288 (QCdbus_request_name_reply_exists)
11289 (QCdbus_request_name_reply_already_owner): Move to dbus.el.
11290 (QCdbus_registered_serial, QCdbus_registered_method)
11291 (QCdbus_registered_signal): New Lisp objects.
11292 (XD_DEBUG_MESSAGE): Use sizeof.
11293 (XD_MESSAGE_TYPE_TO_STRING, XD_OBJECT_TO_STRING)
11294 (XD_DBUS_VALIDATE_BUS_ADDRESS, XD_DBUS_VALIDATE_OBJECT)
11295 (XD_DBUS_VALIDATE_BUS_NAME, XD_DBUS_VALIDATE_PATH)
11296 (XD_DBUS_VALIDATE_INTERFACE, XD_DBUS_VALIDATE_MEMBER): New macros.
11297 (XD_CHECK_DBUS_SERIAL): Rename from CHECK_DBUS_SERIAL_GET_SERIAL.
11298 (xd_signature, xd_append_arg): Allow float for integer types.
11299 (xd_get_connection_references): New function.
11300 (xd_get_connection_address): Rename from xd_initialize.
11301 Return cached address.
11302 (xd_remove_watch): Do not unset $DBUS_SESSION_BUS_ADDRESS.
11303 (xd_close_bus): Rename from Fdbus_close_bus. Not needed on Lisp
11304 level.
11305 (Fdbus_init_bus): New optional arg PRIVATE. Cache address.
11306 Return number of refcounts.
11307 (Fdbus_get_unique_name): Make stronger parameter check.
11308 (Fdbus_message_internal): New defun.
11309 (Fdbus_call_method, Fdbus_call_method_asynchronously)
11310 (Fdbus_method_return_internal, Fdbus_method_error_internal)
11311 (Fdbus_send_signal, Fdbus_register_service)
11312 (Fdbus_register_signal, Fdbus_register_method): Move to dbus.el.
11313 (xd_read_message_1): Obey new structure of Vdbus_registered_objects.
11314 (xd_read_queued_messages): Obey new structure of Vdbus_registered_buses.
11315 (Vdbus_compiled_version, Vdbus_runtime_version)
11316 (Vdbus_message_type_invalid, Vdbus_message_type_method_call)
11317 (Vdbus_message_type_method_return, Vdbus_message_type_error)
11318 (Vdbus_message_type_signal): New defvars.
11319 (Vdbus_registered_buses, Vdbus_registered_objects_table):
11320 Adapt docstring.
11321
11322 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
11323
11324 Fix GC_MALLOC_CHECK debugging output on 64-bit hosts.
11325 * alloc.c (emacs_blocked_malloc) [GC_MALLOC_CHECK]:
11326 Do not assume ptrdiff_t is the same width as 'int'.
11327
11328 * alloc.c: Handle unusual debugging option combinations.
11329 (GC_CHECK_MARKED_OBJECTS): Undef if ! GC_MARK_STACK,
11330 since the two debugging options are incompatible.
11331 (GC_MALLOC_CHECK): Similarly, undef if GC_CHECK_MARKED_OBJECTS
11332 is defined.
11333 (mem_init, mem_insert, mem_insert_fixup):
11334 Define if GC_MARK_STACK || GC_MALLOC_CHECK.
11335 (NEED_MEM_INSERT): Remove; no longer needed.
11336
11337 2012-04-22 Leo Liu <sdl.web@gmail.com>
11338
11339 * sysdep.c (list_system_processes): Support Darwin (Bug#5725).
11340
11341 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
11342
11343 * sysdep.c [__FreeBSD__]: Minor cleanups.
11344 (list_system_processes, system_process_attributes) [__FreeBSD__]:
11345 Use Emacs indenting style more consistently. Avoid some casts.
11346 Use 'double' consistently rather than mixing 'float' and 'double'.
11347
11348 2012-04-21 Eduard Wiebe <usenet@pusto.de>
11349
11350 * sysdep.c (list_system_processes, system_process_attributes):
11351 Add implementation for FreeBSD (Bug#5243).
11352
11353 2012-04-21 Andreas Schwab <schwab@linux-m68k.org>
11354
11355 * lisp.mk (lisp): Update.
11356
11357 2012-04-20 Paul Eggert <eggert@cs.ucla.edu>
11358
11359 * keyboard.c (process_pending_signals): Define only if SYNC_INPUT.
11360 It is never used otherwise.
11361
11362 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
11363
11364 * print.c (print_preprocess): Only check print_depth if print-circle
11365 is nil.
11366 (print_object): Check for cycles even when print-circle is nil and
11367 print-gensym is t, but only check print_depth if print-circle is nil.
11368
11369 2012-04-20 Chong Yidong <cyd@gnu.org>
11370
11371 * process.c (wait_reading_process_output): If EIO occurs on a pty,
11372 set the status to "failed" and ensure that sentinel is run.
11373
11374 2012-04-20 Glenn Morris <rgm@gnu.org>
11375
11376 * process.c (Fset_process_inherit_coding_system_flag)
11377 (Fset_process_query_on_exit_flag): Doc fix (mention return value).
11378 (Fmake_network_process, Fmake_serial_process): Doc fix.
11379
11380 2012-04-20 Eli Zaretskii <eliz@gnu.org>
11381
11382 * xdisp.c (string_buffer_position_lim): Limit starting position to
11383 BEGV.
11384 (set_cursor_from_row): If called for a mode-line or header-line
11385 row, return zero immediately.
11386 (try_cursor_movement): If inside continuation line, don't back up
11387 farther than the first row after the header line, if any.
11388 Don't consider the header-line row as "partially visible", even if
11389 MATRIX_ROW_PARTIALLY_VISIBLE_P returns non-zero. (Bug#11261)
11390
11391 2012-04-20 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
11392
11393 * lread.c (lisp_file_lexically_bound_p): Fix hang at ";-*-\n"
11394 (bug#11238).
11395
11396 2012-04-20 Teodor Zlatanov <tzz@lifelogs.com>
11397 2012-04-18 Paul Eggert <eggert@cs.ucla.edu>
11398
11399 configure: new option --enable-gcc-warnings (Bug#11207)
11400 * Makefile.in (C_WARNINGS_SWITCH): Remove.
11401 (WARN_CFLAGS, WERROR_CFLAGS): New macros.
11402 (ALL_CFLAGS): Use new macros rather than old.
11403 * process.c: Ignore -Wstrict-overflow to work around GCC bug 52904.
11404 * regex.c: Ignore -Wstrict-overflow. If !emacs, also ignore
11405 -Wunused-but-set-variable, -Wunused-function, -Wunused-macros,
11406 -Wunused-result, -Wunused-variable. This should go away once
11407 the Emacs and Gnulib regex code is merged.
11408 (xmalloc, xrealloc): Now static.
11409
11410 2012-04-17 Paul Eggert <eggert@cs.ucla.edu>
11411
11412 * dired.c (Fsystem_groups): Remove unused local.
11413
11414 2012-04-17 Glenn Morris <rgm@gnu.org>
11415
11416 * dired.c (Fsystem_users): Doc fix.
11417
11418 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
11419
11420 * dired.c (Fsystem_users, Fsystem_groups): New functions. (Bug#7900)
11421 (syms_of_dired): Add them.
11422
11423 2012-04-16 Paul Eggert <eggert@cs.ucla.edu>
11424
11425 Fix minor alloc.c problems found by static checking.
11426 * alloc.c (_malloc_internal, _free_internal) [!DOUG_LEA_MALLOC]:
11427 New extern decls, to avoid calling undeclared functions.
11428 (dont_register_blocks): Define if ((!SYSTEM_MALLOC && !SYNC_INPUT)
11429 && GC_MALLOC_CHECK), not if ((GC_MARK_STACK || defined
11430 GC_MALLOC_CHECK) && GC_MALLOC_CHECK), to match when it's used.
11431 (NEED_MEM_INSERT): New macro.
11432 (mem_insert, mem_insert_fixup) [!NEED_MEM_INSERT]: Remove; unused.
11433 Remove one incorrect comment and fix another.
11434
11435 Fix minor ralloc.c problems found by static checking.
11436 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
11437 * ralloc.c (ALIGNED, ROUND_TO_PAGE, HEAP_PTR_SIZE)
11438 (r_alloc_size_in_use, r_alloc_freeze, r_alloc_thaw): Remove; unused.
11439 (r_alloc_sbrk): Now static.
11440
11441 Improve ralloc.c interface checking.
11442 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
11443 * buffer.c (ralloc_reset_variable, r_alloc, r_re_alloc)
11444 (r_alloc_free) [REL_ALLOC]: Move decls from here ...
11445 * lisp.h (r_alloc, r_alloc_free, r_re_alloc, r_alloc_reset_variable)
11446 [REL_ALLOC]: ... to here, to check interface.
11447 * m/ia64.h (r_alloc, r_alloc_free) [REL_ALLOC && !_MALLOC_INTERNAL]:
11448 Remove decls. This fixes an "It stinks!".
11449
11450 * alloc.c (which_symbols): Fix alignment issue / type clash.
11451
11452 2012-04-15 Andreas Schwab <schwab@linux-m68k.org>
11453
11454 * lisp.h (struct Lisp_Symbol): Remove explicit padding.
11455 (struct Lisp_Misc_Any): Likewise.
11456 (struct Lisp_Free): Likewise.
11457 * alloc.c (union aligned_Lisp_Symbol): Define.
11458 (SYMBOL_BLOCK_SIZE, struct symbol_block): Use union
11459 aligned_Lisp_Symbol instead of struct Lisp_Symbol.
11460 (union aligned_Lisp_Misc): Define.
11461 (MARKER_BLOCK_SIZE, struct marker_block): Use union
11462 aligned_Lisp_Misc instead of union Lisp_Misc.
11463 (Fmake_symbol, allocate_misc, gc_sweep): Adjust.
11464
11465 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
11466
11467 Make GC_MAKE_GCPROS_NOOPS the default (Bug#9926).
11468 * lisp.h (GC_MARK_STACK): Default to GC_MAKE_GCPROS_NOOPS.
11469 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/gnu.h, s/irix6-5.h, s/msdos.h:
11470 * s/netbsd.h, s/sol2-6.h:
11471 Remove definition of GC_MARK_STACK, since the default now works.
11472 * s/aix4-2.h, s/hpux10-20.h, s/unixware.h:
11473 Define GC_MARK_STACK to GC_USE_GCPROS_AS_BEFORE, since that's
11474 no longer the default.
11475 * s/gnu-linux.h (GC_MARK_STACK): Adjust to change in default.
11476
11477 2012-04-14 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
11478
11479 * lread.c (lisp_file_lexically_bound_p):
11480 Fix hang at ";-*-\n" (bug#11238).
11481
11482 2012-04-14 Eli Zaretskii <eliz@gnu.org>
11483
11484 * xdisp.c (find_last_unchanged_at_beg_row): Don't consider a row
11485 "unchanged" if its end.pos is beyond ZV. (Bug#11199)
11486
11487 2012-04-14 Jan Djärv <jan.h.d@swipnet.se>
11488
11489 * nsterm.m (constrainFrameRect): Always constrain when there is only
11490 one screen (Bug#10962).
11491
11492 2012-04-13 Ken Brown <kbrown@cornell.edu>
11493
11494 * s/cygwin.h (PTY_OPEN): Don't try to close a bogus file descriptor.
11495
11496 2012-04-13 Reuben Thomas <rrt@sc3d.org>
11497
11498 * indent.c (Fmove_to_column): Change interactive spec (Bug#739).
11499
11500 2012-04-11 Daniel Colascione <dancol@dancol.org>
11501
11502 * s/cygwin.h: The vfork the #define in cygwin.h was protecting
11503 against is gone. It's better to use vfork now so that when Cygwin
11504 gains a new, working vfork, we use it automatically (bug#10398).
11505
11506 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
11507
11508 * window.c (save_window_save): Obey window-point-insertion-type.
11509
11510 2012-04-11 Glenn Morris <rgm@gnu.org>
11511
11512 * Makefile.in (GNUSTEP_CFLAGS): Rename from C_SWITCH_X_SYSTEM.
11513
11514 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
11515
11516 * alloc.c (lisp_align_malloc): Remove unneeded prototype.
11517
11518 2012-04-10 Jason S. Cornez <jcornez@ravenpack.com> (tiny change)
11519
11520 * keyboard.c: Override inhibit-quit after the third C-g (bug#6585).
11521 (force_quit_count): New var.
11522 (handle_interrupt): Use it.
11523
11524 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
11525
11526 * w32.c (w32_delayed_load): Record the full path of the library
11527 being loaded (bug#10424).
11528
11529 2012-04-09 Glenn Morris <rgm@gnu.org>
11530
11531 * doc.c (Fsnarf_documentation): Check variables, functions are bound,
11532 not just in the obarray, before snarfing them. (Bug#11036)
11533
11534 * Makefile.in ($(leimdir)/leim-list.el):
11535 Pass EMACS rather than BUILT_EMACS.
11536
11537 2012-04-09 Teodor Zlatanov <tzz@lifelogs.com>
11538
11539 * process.c (make_process):
11540 * process.h: Add integer `gnutls_handshakes_tried' member to
11541 process struct.
11542
11543 * gnutls.h: Add `GNUTLS_EMACS_HANDSHAKES_LIMIT' upper limit.
11544 Add convenience `GNUTLS_LOG2i' macro.
11545
11546 * gnutls.c (gnutls_log_function2i): Convenience log function.
11547 (emacs_gnutls_read): Use new log functions,
11548 `gnutls_handshakes_tried' process member, and
11549 `GNUTLS_EMACS_HANDSHAKES_LIMIT' to limit the number of handshake
11550 attempts per process (connection).
11551
11552 2012-04-09 Chong Yidong <cyd@gnu.org>
11553
11554 * eval.c (Fuser_variable_p, user_variable_p_eh)
11555 (lisp_indirect_variable): Functions deleted.
11556 (Fdefvar): Caller changed.
11557
11558 * callint.c (Finteractive, Fcall_interactively):
11559 * minibuf.c (Fread_variable): Callers changed.
11560
11561 2012-04-09 Eli Zaretskii <eliz@gnu.org>
11562
11563 * xdisp.c (set_cursor_from_row): If the display string appears in
11564 the buffer at position that is closer to point than the position
11565 after the display string, display the cursor on the first glyph of
11566 the display string. Fixes cursor display when a 'display' text
11567 property immediately follows invisible text. (Bug#11094)
11568
11569 2012-04-09 Paul Eggert <eggert@cs.ucla.edu>
11570
11571 composite.c: use 'double' consistently
11572 * composite.c (get_composition_id): Use 'double' consistently
11573 instead of converting 'float' to 'double' and vice versa; this is
11574 easier to understand and avoids a GCC warning.
11575
11576 2012-04-09 Glenn Morris <rgm@gnu.org>
11577
11578 * Makefile.in: Generate leim-list with bootstrap-emacs, in
11579 preparation for dumping it with emacs. (Bug#4789)
11580 (leimdir): New variable.
11581 ($(leimdir)/leim-list.el): New rule.
11582 (emacs$(EXEEXT)): Depend on leim-list.el.
11583
11584 * buffer.c (Qucs_set_table_for_input): Remove. (Bug#9821)
11585 (Fget_buffer_create): Don't call Qucs_set_table_for_input.
11586 (init_buffer_once, syms_of_buffer): Remove Qucs_set_table_for_input.
11587
11588 2012-04-08 Andreas Schwab <schwab@linux-m68k.org>
11589
11590 * lisp.h (struct Lisp_Symbol): Add explicit padding to ensure
11591 proper alignment.
11592
11593 2012-04-07 Juanma Barranquero <lekktu@gmail.com>
11594
11595 * xml.c (init_libxml2_functions) [WINDOWSNT]:
11596 Remove unused local variable.
11597
11598 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
11599
11600 Avoid unnecessary pointer scanning in garbage collection (Bug#10780).
11601 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS): New macro.
11602 (mark_memory): Mark Lisp_Objects only if pointers might hide in
11603 objects, as mark_maybe_pointer will catch them otherwise.
11604 (GC_LISP_OBJECT_ALIGNMENT): Remove; no longer needed.
11605 * s/gnu-linux.h (GC_LISP_OBJECT_ALIGNMENT) [__mc68000__]: Likewise.
11606
11607 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
11608
11609 Fix typo that broke non-Windows builds.
11610 * xml.c (libxml2_loaded_p) [!!WINDOWSNT]: 'inine' -> 'inline'.
11611
11612 2012-04-07 Eli Zaretskii <eliz@gnu.org>
11613
11614 Support building on MS-Windows with libxml2.
11615
11616 * makefile.w32-in (OBJ2): Add xml.$(O).
11617 (GLOBAL_SOURCES): Add xml.c.
11618 ($(BLD)/xml.$(O)): New dependency list.
11619
11620 * xml.c (DEF_XML2_FN, LOAD_XML2_FN) [WINDOWSNT]: New macros.
11621 (fn_htmlReadMemory, fn_xmlReadMemory, fn_xmlDocGetRootElement)
11622 (fn_xmlFreeDoc, fn_xmlCleanupParser, fn_xmlCheckVersion)
11623 [!WINDOWSNT]: New macros.
11624 (init_libxml2_functions, libxml2_loaded_p): New functions.
11625 (parse_region): Call fn_xmlCheckVersion instead of using the macro
11626 LIBXML_TEST_VERSION. Call libxml2 functions via the fn_* macros.
11627 (xml_cleanup_parser): New function, export for fn_xmlCleanupParser.
11628 Calls xmlCleanupParser only if libxml2 was loaded (or statically
11629 linked in).
11630 (Flibxml_parse_html_region, Flibxml_parse_xml_region):
11631 Call init_libxml2_functions before calling libxml2 functions.
11632 (syms_of_xml) <Qlibxml2_dll>: DEFSYM it.
11633
11634 * emacs.c: Don't include libxml/parser.h.
11635 (shut_down_emacs): Call xml_cleanup_parser, instead of calling
11636 xmlCleanupParser directly.
11637
11638 * lisp.h [HAVE_LIBXML2]: Add prototype for xml_cleanup_parser.
11639
11640 2012-04-07 Eli Zaretskii <eliz@gnu.org>
11641
11642 * indent.c (Fvertical_motion): If there is a display string at
11643 point, use it.vpos to compute how many lines to backtrack after
11644 move_it_to point. (Bug#11133)
11645
11646 2012-04-06 Eli Zaretskii <eliz@gnu.org>
11647
11648 * buffer.h (FETCH_CHAR, FETCH_MULTIBYTE_CHAR):
11649 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH): Add comments
11650 about subtle differences between FETCH_CHAR* and STRING_CHAR*
11651 macros related to unification of CJK characters. For the details,
11652 see the discussion following the message here:
11653 http://debbugs.gnu.org/cgi/bugreport.cgi?bug=11073#14.
11654
11655 2012-04-04 Chong Yidong <cyd@gnu.org>
11656
11657 * keyboard.c (Vdelayed_warnings_list): Doc fix.
11658
11659 2012-04-01 Eli Zaretskii <eliz@gnu.org>
11660
11661 * w32menu.c (simple_dialog_show, add_menu_item): Use SAFE_ALLOCA
11662 instead of alloca. (Bug#11138)
11663
11664 2012-04-01 Andreas Schwab <schwab@linux-m68k.org>
11665
11666 * w32menu.c (is_simple_dialog): Properly check lisp types.
11667 (Bug#11141)
11668
11669 2012-03-31 Eli Zaretskii <eliz@gnu.org>
11670
11671 * xdisp.c (move_it_by_lines): When DVPOS is positive, and the
11672 position we get to after a call to move_it_to fails the
11673 IS_POS_VALID_AFTER_MOVE_P test, move to the next buffer position
11674 only if we wind up in a string from display property. (Bug#11063)
11675
11676 * window.c (Fdelete_other_windows_internal): Invalidate the row
11677 and column information about mouse highlight, so that redisplay
11678 restores it after reallocating the glyph matrices. (Bug#7464)
11679
11680 * xdisp.c (set_cursor_from_row): If `cursor' property on a display
11681 string comes from a `display' text property, use the buffer
11682 position of that property as if we actually saw that position in
11683 the row's glyphs.
11684 (move_it_by_lines): Remove the assertion that
11685 "it->current_x == 0 && it->hpos == 0" which can be legitimately
11686 violated when there's a before-string at the beginning of a line.
11687 (Bug#11063)
11688
11689 2012-03-30 Eli Zaretskii <eliz@gnu.org>
11690
11691 * xdisp.c (append_space_for_newline): If the default face was
11692 remapped, use the remapped face for the appended newline.
11693 (extend_face_to_end_of_line): Use the remapped default face for
11694 extending the face to the end of the line.
11695 (display_line): Call extend_face_to_end_of_line when the default
11696 face was remapped. (Bug#11068)
11697
11698 2012-03-29 Eli Zaretskii <eliz@gnu.org>
11699
11700 * s/ms-w32.h: Discourage from defining HAVE_GETCWD.
11701
11702 2012-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
11703
11704 * keyboard.c (safe_run_hooks_error): Don't unquote strings.
11705
11706 2012-03-27 Glenn Morris <rgm@gnu.org>
11707
11708 * search.c (Fword_search_backward_lax, Fword_search_forward_lax):
11709 Doc fixes.
11710
11711 2012-03-26 Kenichi Handa <handa@m17n.org>
11712
11713 * dispextern.h (struct glyph): Fix previous change. Change the
11714 bit length of glyphless.ch to 25 (Bug#11082).
11715
11716 2012-03-26 Chong Yidong <cyd@gnu.org>
11717
11718 * keyboard.c (Vselection_inhibit_update_commands): New variable.
11719 (command_loop_1): Use it; inhibit selection update for
11720 handle-select-window too (Bug#8996).
11721
11722 2012-03-25 Fabrice Popineau <fabrice.popineau@supelec.fr>
11723
11724 * w32heap.c (_heap_init, _heap_term): Remove dead MSVC-specific code.
11725
11726 2012-03-25 Kenichi Handa <handa@m17n.org>
11727
11728 * dispextern.h (struct glyph): Change the bit length of
11729 glyphless.ch to 22 to make the member glyphless fit in 32 bits.
11730
11731 2012-03-24 Eli Zaretskii <eliz@gnu.org>
11732
11733 * s/ms-w32.h (tzname): Include time.h before redirecting to
11734 _tzname. Fixes the MSVC build. (Bug#9960)
11735
11736 2012-03-24 Andreas Schwab <schwab@linux-m68k.org>
11737
11738 * xdisp.c (produce_glyphless_glyph): Limit length of acronym to 6
11739 characters.
11740
11741 * xterm.c (XTread_socket): Only modify handling_signal if
11742 !SYNC_INPUT. (Bug#11080)
11743
11744 2012-03-23 Eli Zaretskii <eliz@gnu.org>
11745
11746 * bidi.c (bidi_fetch_char): Use STRING_CHAR_AND_LENGTH instead of
11747 FETCH_MULTIBYTE_CHAR followed by CHAR_BYTES. Prevents crashes
11748 when fetching a multibyte character consumes more bytes than
11749 CHAR_BYTES returns, due to unification of CJK characters in
11750 string_char. (Bug#11073)
11751
11752 2012-03-23 Troels Nielsen <bn.troels@gmail.com> (tiny change)
11753
11754 * process.c (wait_reading_process_output): Handle pty disconnect
11755 by refraining from sending oneself a SIGCHLD (bug#10933).
11756
11757 2012-03-22 Chong Yidong <cyd@gnu.org>
11758
11759 * dispextern.h (struct it): New member string_from_prefix_prop_p.
11760
11761 * xdisp.c (push_prefix_prop): Rename from push_display_prop.
11762 Mark string as coming from a prefix property.
11763 (handle_face_prop): Use default face for prefix strings (Bug#4281).
11764 (pop_it, reseat_1): Save and restore string_from_prefix_prop_p.
11765
11766 2012-03-21 Chong Yidong <cyd@gnu.org>
11767
11768 * xfaces.c (Vface_remapping_alist): Doc fix.
11769
11770 2012-03-20 Eli Zaretskii <eliz@gnu.org>
11771
11772 * w32proc.c (Fw32_set_console_codepage)
11773 (Fw32_set_console_output_codepage, Fw32_get_codepage_charset):
11774 Doc fixes.
11775
11776 2012-03-20 Chong Yidong <cyd@gnu.org>
11777
11778 * dispnew.c (Fredisplay, Vredisplay_preemption_period): Update doc
11779 to reflect default non-nil value of redisplay-dont-pause.
11780
11781 2012-03-19 Kenichi Handa <handa@m17n.org>
11782
11783 * ftfont.c (ftfont_drive_otf): Mask bits of character code to make
11784 it fit in a valid range (Bug#11003).
11785
11786 2012-03-18 Eli Zaretskii <eliz@gnu.org>
11787
11788 * xdisp.c (cursor_row_p): Even if the glyph row ends in a string
11789 that is not from display property, accept the row as a "cursor
11790 row" if one of the string's character has a non-nil `cursor'
11791 property. Fixes cursor positioning when there are newlines in
11792 overlay strings, e.g. in icomplete.el. (Bug#11035)
11793
11794 2012-03-12 Paul Eggert <eggert@cs.ucla.edu>
11795
11796 * buffer.c (compare_overlays): Don't assume args differ (Bug#6830).
11797
11798 2012-03-12 Chong Yidong <cyd@gnu.org>
11799
11800 * eval.c (inhibit_lisp_code): Rename from
11801 inhibit_window_configuration_change_hook; move from window.c.
11802
11803 * xfns.c (unwind_create_frame_1, Fx_create_frame):
11804 * window.c (run_window_configuration_change_hook)
11805 (syms_of_window): Callers changed.
11806
11807 2012-03-11 Chong Yidong <cyd@gnu.org>
11808
11809 * keymap.c (Fkey_description): Doc fix (Bug#9700).
11810
11811 * editfns.c (Fconstrain_to_field): Doc fix (Bug#9452).
11812
11813 2012-03-10 Chong Yidong <cyd@gnu.org>
11814
11815 * frame.c (other_visible_frames): Don't assume the selected frame
11816 is visible (Bug#10955).
11817
11818 2012-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
11819
11820 * buffer.c (compare_overlays): Avoid qsort's instability (bug#6830).
11821
11822 2012-03-08 Jan Djärv <jan.h.d@swipnet.se>
11823
11824 * gtkutil.c (x_wm_set_size_hint): Use one row in call to
11825 FRAME_TEXT_LINES_TO_PIXEL_HEIGHT so base_height is greater than
11826 zero (Bug#10954).
11827
11828 2012-03-03 Glenn Morris <rgm@gnu.org>
11829
11830 * alloc.c (Fgarbage_collect, misc-objects-consed): Doc fixes.
11831
11832 2012-03-02 Eli Zaretskii <eliz@gnu.org>
11833
11834 * xdisp.c (try_window_reusing_current_matrix): Don't move cursor
11835 position past the first glyph_row that ends at ZV. (Bug#10902)
11836 (redisplay_window, next_element_from_string): Fix typos in
11837 comments.
11838 (redisplay_window): Pass to move_it_vertically the margin in
11839 pixels, not in screen lines.
11840
11841 2012-03-02 Glenn Morris <rgm@gnu.org>
11842
11843 * buffer.c (buffer-list-update-hook): Doc fix.
11844
11845 2012-02-29 Eli Zaretskii <eliz@gnu.org>
11846
11847 * xdisp.c (get_overlay_strings_1): Under bidi redisplay, call
11848 push_it before setting up the iterator for the first overlay
11849 string, even if we have an empty string loaded.
11850 (next_overlay_string): If there's an empty string on the iterator
11851 stack, pop the stack. (Bug#10903)
11852
11853 2012-02-25 Paul Eggert <eggert@cs.ucla.edu>
11854
11855 Generalize fix for crash due to non-contiguous EMACS_INT (Bug#10780).
11856 Suggested by Stefan Monnier in
11857 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00692.html>.
11858 * alloc.c (widen_to_Lisp_Object): New static function.
11859 (mark_memory): Also mark Lisp_Objects by fetching pointer words
11860 and widening them to Lisp_Objects. This would work even if
11861 USE_LSB_TAG is defined and wide integers are used, which might
11862 happen in a future version of Emacs.
11863
11864 2012-02-25 Chong Yidong <cyd@gnu.org>
11865
11866 * fileio.c (Ffile_selinux_context, Fset_file_selinux_context):
11867 Doc fix.
11868
11869 * xselect.c (Fx_selection_exists_p): Doc fix.
11870 (x_clipboard_manager_save_all): Print an informative message
11871 before saving to clipboard manager.
11872
11873 2012-02-24 Chong Yidong <cyd@gnu.org>
11874
11875 * keyboard.c (process_special_events): Handle all X selection
11876 requests in kbd_buffer, not just the next one (Bug#8869).
11877
11878 2012-02-23 Chong Yidong <cyd@gnu.org>
11879
11880 * xfns.c (Fx_create_frame): Avoid window-configuration-change-hook
11881 call when setting menu-bar-lines and tool-bar-lines parameters.
11882 (unwind_create_frame_1): New helper function.
11883
11884 * window.c (inhibit_window_configuration_change_hook): New var.
11885 (run_window_configuration_change_hook): Obey it.
11886 (syms_of_window): Initialize it.
11887
11888 2012-02-22 Chong Yidong <cyd@gnu.org>
11889
11890 * xterm.c (x_draw_image_relief): Add missing type check for
11891 Vtool_bar_button_margin (Bug#10743).
11892
11893 2012-02-21 Chong Yidong <cyd@gnu.org>
11894
11895 * fileio.c (Vfile_name_handler_alist): Doc fix.
11896
11897 * buffer.c (Fget_file_buffer): Protect against invalid file
11898 handler return value.
11899
11900 2012-02-20 Paul Eggert <eggert@cs.ucla.edu>
11901
11902 * .gdbinit (xreload): Don't assume EMACS_INT fits in 'long'
11903 when computing $valmask.
11904
11905 Fix crash due to non-contiguous EMACS_INT (Bug#10780).
11906 * lisp.h (VALBITS): Move definition up, so that USE_LSB_TAG can use it.
11907 (USE_LSB_TAG): Do not define if UINTPTR_MAX >> VALBITS == 0.
11908 It's useless in that case, and it can cause problems on hosts
11909 that allocate halves of EMACS_INT values separately.
11910 Reported by Dan Horák. Diagnosed by Andreas Schwab in
11911 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=10780#30>.
11912 * mem-limits.h (EXCEEDS_LISP_PTR): Define to 0 on hosts where
11913 UINTPTR_MAX >> VALBITS == 0. This is required by the above change;
11914 it avoids undefined behavior on hosts where shifting right by more
11915 than the word width has undefined behavior.
11916
11917 2012-02-19 Chong Yidong <cyd@gnu.org>
11918
11919 * fileio.c (Ffile_name_directory, Ffile_name_nondirectory)
11920 (Funhandled_file_name_directory, Ffile_name_as_directory)
11921 (Fdirectory_file_name, Fexpand_file_name)
11922 (Fsubstitute_in_file_name): Protect against invalid file handler
11923 return values (Bug#10845).
11924
11925 2012-02-18 Eli Zaretskii <eliz@gnu.org>
11926
11927 * .gdbinit (pitx): Fix incorrect references to fields of the
11928 iterator stack.
11929
11930 2012-02-17 Chong Yidong <cyd@gnu.org>
11931
11932 * syntax.c (Fscan_lists): Doc fix (Bug#10833).
11933
11934 2012-02-15 Paul Eggert <eggert@cs.ucla.edu>
11935
11936 * image.c (MAX_IMAGE_SIZE): Increase from 6.0 to 10.0; see
11937 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00540.html>.
11938
11939 2012-02-15 Chong Yidong <cyd@gnu.org>
11940
11941 * eval.c (Fdefvar, Fdefconst): Doc fix; note that the variable is
11942 marked as special. Also, starting docstrings with * is obsolete.
11943
11944 2012-02-13 Andreas Schwab <schwab@linux-m68k.org>
11945
11946 * gnutls.c (emacs_gnutls_write): Fix last change.
11947
11948 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
11949
11950 * gnutls.c (emacs_gnutls_write): Set errno appropriately for
11951 send_process.
11952
11953 2012-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
11954
11955 * keymap.c (Fsingle_key_description): Handle char ranges.
11956
11957 2012-02-12 Chong Yidong <cyd@gnu.org>
11958
11959 * xdisp.c (handle_stop): Avoid assigning -1 to it->face_id here,
11960 as that creates a dangerous corner case.
11961
11962 * window.c (Fdelete_window_internal): Invalidate the mouse
11963 highlight (Bug#9904).
11964
11965 2012-02-12 Glenn Morris <rgm@gnu.org>
11966
11967 * xselect.c (Fx_own_selection_internal)
11968 (Fx_get_selection_internal, Fx_disown_selection_internal)
11969 (Fx_selection_owner_p, Fx_selection_exists_p): Doc fixes.
11970 * nsselect.m (Fx_own_selection_internal)
11971 (Fx_disown_selection_internal, Fx_selection_exists_p)
11972 (Fx_selection_owner_p, Fx_get_selection_internal):
11973 Sync docs and argument specs with the xselect.c versions.
11974
11975 2012-02-11 Lars Ingebrigtsen <larsi@gnus.org>
11976
11977 * gnutls.c (emacs_gnutls_write): Don't infloop if sendto fails.
11978
11979 2012-02-11 Eli Zaretskii <eliz@gnu.org>
11980
11981 * w32select.c (Fx_selection_exists_p): Sync doc string and
11982 argument list with xselect.c. (Bug#10783)
11983
11984 * w16select.c (Fx_selection_exists_p): Sync doc string and
11985 argument list with xselect.c. (Bug#10783)
11986
11987 2012-02-10 Glenn Morris <rgm@gnu.org>
11988
11989 * fns.c (Fsecure_hash): Doc fix.
11990
11991 2012-02-09 Kenichi Handa <handa@m17n.org>
11992
11993 * coding.c (produce_chars): Fix updating of src_end (Bug#10701).
11994
11995 2012-02-07 Chong Yidong <cyd@gnu.org>
11996
11997 * buffer.c (Fbuffer_local_variables)
11998 (buffer_lisp_local_variables): Handle unbound vars correctly;
11999 don't let Qunbound leak into Lisp.
12000
12001 2012-02-07 Glenn Morris <rgm@gnu.org>
12002
12003 * image.c (Fimagemagick_types): Doc fix.
12004
12005 * image.c (imagemagick-render-type): Change it from a lisp object
12006 to an integer. Move the doc here from the lisp manual.
12007 Treat all values not equal to 0 the same.
12008
12009 2012-02-06 Chong Yidong <cyd@gnu.org>
12010
12011 * doc.c (store_function_docstring): Avoid applying docstring of
12012 alias to base function (Bug#2603).
12013
12014 2012-02-04 Andreas Schwab <schwab@linux-m68k.org>
12015
12016 * .gdbinit (pp1, pv1): Remove redundant defines.
12017 (pr): Use pp.
12018
12019 2012-02-04 Chong Yidong <cyd@gnu.org>
12020
12021 * nsterm.m: Declare a global (Bug#10694).
12022
12023 2012-02-04 Eli Zaretskii <eliz@gnu.org>
12024
12025 * w32.c (get_emacs_configuration_options):
12026 Include --enable-checking, if specified, in the return value.
12027
12028 2012-02-04 Martin Rudalics <rudalics@gmx.at>
12029
12030 * dispnew.c (change_frame_size_1): Calculate new_frame_total_cols
12031 after rounding frame sizes. (Bug#9723)
12032
12033 2012-02-04 Eli Zaretskii <eliz@gnu.org>
12034
12035 * keyboard.c (adjust_point_for_property): Don't position point
12036 before BEGV. (Bug#10696)
12037
12038 2012-02-03 Paul Eggert <eggert@cs.ucla.edu>
12039
12040 Handle overflow when computing char display width (Bug#9496).
12041 * character.c (char_width): Return EMACS_INT, not int.
12042 (char_width, c_string_width): Check for overflow when
12043 computing the width; this is possible now that individual
12044 characters can have unbounded width. Problem introduced
12045 by merge from Emacs 23 on 2012-01-19.
12046
12047 2012-02-02 Michael Albinus <michael.albinus@gmx.de>
12048
12049 * dbusbind.c (Fdbus_register_method): Mention the return value
12050 :ignore in the docstring.
12051
12052 2012-02-02 Glenn Morris <rgm@gnu.org>
12053
12054 * callproc.c (Fcall_process, Fcall_process_region): Doc fix.
12055
12056 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
12057 Unconditionally set to t. (Bug#10673)
12058 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
12059 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
12060 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Doc fix.
12061
12062 2012-02-02 Kenichi Handa <handa@m17n.org>
12063
12064 (x_produce_glyphs): Cancel previous change. If cmp->glyph_len is
12065 0, do not call append_composite_glyph.
12066
12067 2012-02-02 Kenichi Handa <handa@m17n.org>
12068
12069 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING): Initialize first_s to
12070 NULL (Bug#6988).
12071 (x_produce_glyphs): If the component of a composition is a null
12072 string, set it->pixel_width to 1 to avoid zero-width glyph.
12073
12074 2012-02-01 Eli Zaretskii <eliz@gnu.org>
12075
12076 * ralloc.c (resize_bloc, r_alloc_sbrk): Don't call memmove if its
12077 first 2 arguments are identical. This makes inserting large
12078 output from a subprocess an order of magnitude faster on
12079 MS-Windows, where all sbrk'ed memory is always contiguous.
12080
12081 2012-01-31 Glenn Morris <rgm@gnu.org>
12082
12083 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
12084 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
12085 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Sync docs.
12086
12087 2012-01-29 Glenn Morris <rgm@gnu.org>
12088
12089 * gnutls.c (syms_of_gnutls): More doc (from etc/NEWS).
12090
12091 2012-01-28 Samuel Thibault <sthibault@debian.org> (tiny change)
12092
12093 * s/gnu.h: Define POSIX_SIGNALS (Bug#10552).
12094
12095 2012-01-28 Chong Yidong <cyd@gnu.org>
12096
12097 * minibuf.c (syms_of_minibuf): Doc fix (Bug#10550).
12098
12099 2012-01-26 Chong Yidong <cyd@gnu.org>
12100
12101 * keyboard.c (Vecho_keystrokes): Document zero value (Bug#10503).
12102
12103 * search.c (Fsearch_forward, Fsearch_backward): Document negative
12104 repeat counts (Bug#10507).
12105
12106 2012-01-26 Glenn Morris <rgm@gnu.org>
12107
12108 * lread.c (syms_of_lread): Doc fix.
12109
12110 2012-01-25 HIROSHI OOTA <nil@mad.dog.cx> (tiny change)
12111
12112 * coding.c (encode_designation_at_bol): Change return value to
12113 EMACS_INT.
12114
12115 2012-01-25 Chong Yidong <cyd@gnu.org>
12116
12117 * eval.c (Fuser_variable_p): Doc fix; mention custom-variable-p.
12118
12119 2012-01-21 Chong Yidong <cyd@gnu.org>
12120
12121 * floatfns.c (Fcopysign): Make the second argument non-optional,
12122 since nil is not allowed anyway.
12123
12124 2012-01-21 Andreas Schwab <schwab@linux-m68k.org>
12125
12126 * process.c (read_process_output): Use p instead of XPROCESS (proc).
12127 (send_process): Likewise.
12128
12129 2012-01-19 Martin Rudalics <rudalics@gmx.at>
12130
12131 * window.c (save_window_save, Fcurrent_window_configuration)
12132 (Vwindow_persistent_parameters): Do not use Qstate.
12133 Rewrite doc-strings.
12134
12135 2012-01-19 Kenichi Handa <handa@m17n.org>
12136
12137 * character.c (char_width): New function.
12138 (Fchar_width, c_string_width, lisp_string_width):
12139 Use char_width (Bug#9496).
12140
12141 2012-01-16 Martin Rudalics <rudalics@gmx.at>
12142
12143 * window.c (Vwindow_persistent_parameters): New variable.
12144 (Fset_window_configuration, save_window_save): Handle persistent
12145 window parameters.
12146
12147 2012-01-14 Eli Zaretskii <eliz@gnu.org>
12148
12149 * w32fns.c (signal_user_input): Don't do a QUIT, to avoid
12150 thrashing the stack of the thread. (Bug#9087)
12151
12152 2012-01-12 Paul Eggert <eggert@cs.ucla.edu>
12153
12154 * xdisp.c (rows_from_pos_range): Add parens as per gcc -Wparentheses.
12155
12156 2012-01-11 Eli Zaretskii <eliz@gnu.org>
12157
12158 * xdisp.c (rows_from_pos_range): Handle the case where the
12159 highlight ends on a newline. (Bug#10464)
12160 (mouse_face_from_buffer_pos): Fix off-by-one error in calculating
12161 he end column for display of highlight that ends on a newline
12162 before a R2L line.
12163
12164 2012-01-11 Glenn Morris <rgm@gnu.org>
12165
12166 * lread.c (init_lread): If no-site-lisp, remove site-lisp dirs
12167 from load-path also when installation-directory is nil. (Bug#10208)
12168
12169 2012-01-10 Glenn Morris <rgm@gnu.org>
12170
12171 * emacs.c (syms_of_emacs) <installation-directory>: Doc fix.
12172
12173 * epaths.in (PATH_LOADSEARCH, PATH_EXEC, PATH_DATA, PATH_DOC):
12174 Update template values to be closer to their typical values these days.
12175
12176 2012-01-09 Eli Zaretskii <eliz@gnu.org>
12177
12178 * xdisp.c (rows_from_pos_range): Accept additional argument
12179 DISP_STRING, and accept any glyph in a row whose object is that
12180 string as eligible for mouse highlight. Fixes mouse highlight of
12181 display strings from overlays. (Bug#10464)
12182
12183 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
12184
12185 emacs: fix an auto-save permissions race condition (Bug#10400)
12186 * fileio.c (auto_saving_dir_umask): New static var.
12187 (Fmake_directory_internal): Use it.
12188 (do_auto_save_make_dir): Set it, instead of invoking chmod after
12189 creating the directory. The old code temporarily assigns
12190 too-generous permissions to the directory.
12191 (do_auto_save_eh): Clear it.
12192 (Fdo_auto_save): Catch all errors, not just file errors, so
12193 that the var is always cleared.
12194
12195 2012-01-07 Eli Zaretskii <eliz@gnu.org>
12196
12197 * search.c (scan_buffer): Pass character positions to
12198 know_region_cache, not byte positions. (Bug#6540)
12199
12200 2012-01-07 LynX <_LynX@bk.ru> (tiny change)
12201
12202 * w32.c (sys_rename): Report EXDEV when rename of a directory
12203 fails because the target is on another logical disk. (Bug#10284)
12204
12205 2012-01-07 David Benjamin <davidben@mit.edu> (tiny change)
12206
12207 * xterm.c (x_embed_request_focus): New function.
12208
12209 * xterm.h: Add prototype.
12210
12211 * xfns.c (Fx_focus_frame): Use it for embedded frames (Bug#9977).
12212
12213 2012-01-05 Glenn Morris <rgm@gnu.org>
12214
12215 * emacs.c (emacs_copyright): Update short copyright year to 2012.
12216
12217 2012-01-01 Eli Zaretskii <eliz@gnu.org>
12218
12219 * gnutls.c (init_gnutls_functions): Load gnutls_check_version.
12220 Load gnutls_transport_set_lowat only if GnuTLS version is below
12221 2.11.1.
12222 (emacs_gnutls_handshake): Call gnutls_transport_set_lowat only for
12223 GnuTLS versions below 2.11.1.
12224
12225 2011-12-31 Antoine Levitt <antoine.levitt@gmail.com>
12226
12227 * xdisp.c (syms_of_xdisp) <window-scroll-functions>: Add warning
12228 to the doc string advising against its use for altering the way
12229 windows are scrolled.
12230
12231 2011-12-28 Kenichi Handa <handa@m17n.org>
12232
12233 * coding.c (Fdefine_coding_system_internal): Make an utf-8 base
12234 coding-system ASCII compatible only when it does not produce BOM
12235 on encoding (Bug#10383).
12236
12237 2011-12-26 Jan Djärv <jan.h.d@swipnet.se>
12238
12239 * xmenu.c (x_menu_wait_for_event): Use xg_select for Gtk3 so menus
12240 can scroll.
12241 (create_and_show_popup_menu): Always use menu_position_func for
12242 Gtk3 (Bug#10361).
12243
12244 2011-12-24 Andreas Schwab <schwab@linux-m68k.org>
12245
12246 * callint.c (Fcall_interactively): Don't truncate prompt string.
12247
12248 2011-12-23 Eli Zaretskii <eliz@gnu.org>
12249
12250 * xdisp.c (handle_invisible_prop): Handle correctly an invisible
12251 property that ends at ZV, so that the bidi iteration could be
12252 resumed from there (after widening). (Bug#10360)
12253
12254 2011-12-22 Jan Djärv <jan.h.d@swipnet.se>
12255
12256 * nsfont.m (ns_spec_to_descriptor): Do not autorelease fdesc.
12257
12258 2011-12-21 Jan Djärv <jan.h.d@swipnet.se>
12259
12260 * nsterm.m (x_free_frame_resources):
12261 Release f->output_data.ns->miniimage.
12262 (ns_index_color): Fix indentation. Do not retain
12263 color_table->colors[i].
12264
12265 * nsmenu.m (ns_update_menubar): Call free_menubar_widget_value_tree
12266 before returning.
12267
12268 * nsfns.m (x_set_background_color): Assign return value from
12269 ns_index_color to face-background instead of NSColor*.
12270 (ns_implicitly_set_icon_type): Fix indentation.
12271 Change assignment in for loop to comparison.
12272
12273 * emacs.c (ns_pool): New variable.
12274 (main): Assign ns_pool.
12275 (Fkill_emacs): Call ns_release_autorelease_pool.
12276
12277 * nsfont.m (ns_spec_to_descriptor): Fix indentation,
12278 autorelease fdesc, release fdAttrs and tdict.
12279 (ns_get_covering_families): Release charset.
12280 (ns_findfonts): Release NSFontDescriptor created with new.
12281 (ns_uni_to_glyphs): Fix indentation.
12282 (setString): Release attrStr before assigning new value.
12283
12284 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
12285
12286 * nsmenu.m (NSMenuDidBeginTrackingNotification): Declare if OSX < 10.5
12287 and NS_IMPL_COCOA.
12288 (trackingNotification): Surround with ifdef NS_IMPL_COCOA.
12289 (syms_of_nsmenu): Set trackingMenu to 1 if not NS_IMPL_COCOA.
12290
12291 2011-12-18 David Reitter <reitter@cmu.edu>
12292
12293 * nsterm.m (ns_term_init): Subscribe for notifications
12294 NSMenuDidBeginTrackingNotification and NSMenuDidEndTrackingNotification
12295 to method trackingNotification in EmacsMenu.
12296
12297 * nsmenu.m (trackingMenu): New variable.
12298 (trackingNotification): New method (from Aquamacs).
12299 (menuNeedsUpdate): Expand comment and return if trackingMenu is 0,
12300 from Aquamacs (Bug#7030).
12301
12302 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
12303
12304 * nsselect.m (CUT_BUFFER_SUPPORT): Remove define.
12305 (symbol_to_nsstring): Fix indentation.
12306 (ns_symbol_to_pb): New function.
12307 (Fns_get_selection_internal): Rename from Fns_get_cut_buffer_internal.
12308 (Fns_rotate_cut_buffers_internal): Remove.
12309 (Fns_store_selection_internal): Rename from
12310 Fns_store_cut_buffer_internal.
12311 (ns_get_foreign_selection, Fx_own_selection_internal)
12312 (Fx_disown_selection_internal, Fx_selection_exists_p)
12313 (Fns_get_selection_internal, Fns_store_selection_internal):
12314 Use ns_symbol_to_pb and check if return value is nil.
12315 (syms_of_nsselect): Remove ifdef CUT_BUFFER_SUPPORT. Remove defsubr
12316 Sns_rotate_cut_buffers_internal. Sns_get_cut_buffer_internal
12317 renamed to Sns_get_selection_internal, Sns_store_cut_buffer_internal
12318 renamed to Sns_store_selection_internal.
12319 (ns_handle_selection_request): Move code to Fx_own_selection_internal
12320 and remove this function.
12321 (ns_handle_selection_clear): Remove, never used.
12322 (Fx_own_selection_internal): Move code from ns_handle_selection_request
12323 here.
12324
12325 2011-12-17 Ken Brown <kbrown@cornell.edu>
12326
12327 * fileio.c (check_writable) [CYGWIN]: Return non-zero if UID or
12328 GID is unknown (Bug#10257).
12329
12330 2011-12-17 Paul Eggert <eggert@cs.ucla.edu>
12331
12332 * s/gnu-linux.h: Fix mark_memory typo (Bug#10286).
12333 (GC_MARK_SECONDARY_STACK): Omit removed 3rd arg to mark_memory,
12334 which caused a build failure on GNU/Linux IA-64. This problem was
12335 introduced by my 2011-10-07 patch.
12336
12337 2011-12-15 Juri Linkov <juri@jurta.org>
12338
12339 * image.c (imagemagick_error): New function. (Bug#10112)
12340 (imagemagick_load_image): Comment out `MagickSetResolution' call.
12341 Use `imagemagick_error' where ImageMagick functions return
12342 `MagickFalse'.
12343 (Fimagemagick_types): Add `Fnreverse' to return the list in the
12344 proper order.
12345
12346 2011-12-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12347
12348 * xftfont.c (xftfont_draw): Use the font metrics of s->font to
12349 fill background (Bug#8992).
12350
12351 2011-12-13 Martin Rudalics <rudalics@gmx.at>
12352
12353 * window.c (Vwindow_combination_resize)
12354 (Vwindow_combination_limit): Use t instead of non-nil in
12355 doc-strings.
12356 (Vrecenter_redisplay): Add first sentence of doc-string on
12357 separate line.
12358 (Frecenter): Fix doc-string typo.
12359
12360 2011-12-11 Kenichi Handa <handa@m17n.org>
12361
12362 * coding.c (Funencodable_char_position): Pay attention to the
12363 buffer text relocation (Bug#9389).
12364
12365 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
12366
12367 * xterm.c (x_term_init): Move call to gdk_window_add_filter before
12368 gtk_init (Bug#10100).
12369
12370 2011-12-10 Eli Zaretskii <eliz@gnu.org>
12371
12372 * xdisp.c (RECORD_MAX_MIN_POS): Use IT->cmp_it.charpos only if
12373 IT->string is nil. (Bug#10263)
12374
12375 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
12376
12377 * nsterm.h (x_free_frame_resources): Declare.
12378
12379 * nsfns.m (ns_get_defaults_value): New function (Bug#10103).
12380 (Fns_get_resource, x_get_string_resource): Call ns_get_defaults_value.
12381
12382 * nsterm.h (ns_get_defaults_value): Declare.
12383
12384 * nsterm.m (ns_default): Call ns_get_defaults_value.
12385
12386 2011-12-09 Eli Zaretskii <eliz@gnu.org>
12387
12388 * xdisp.c (try_scrolling): Don't set scroll_down_p if dy is zero.
12389 (Bug#10170)
12390
12391 2011-12-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12392
12393 * unexelf.c (unexec) [NS_IMPL_GNUSTEP]: Take account of the case
12394 that where the value of an _OBJC_* symbol points to is in the .bss
12395 section (Bug#10240).
12396
12397 2011-12-08 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
12398
12399 * coding.c (encode_coding_ccl): Check (charbuf < charbuf_end)
12400 after the loop to call ccl_driver at least once (Bug#8619).
12401
12402 2011-12-08 Kenichi Handa <handa@m17n.org>
12403
12404 * ftfont.c (get_adstyle_property): Fix previous change
12405 (Bug#10233).
12406
12407 2011-12-07 Juanma Barranquero <lekktu@gmail.com>
12408
12409 * w32.c (init_environment): If no_site_lisp, remove site-lisp
12410 dirs from the default value of EMACSLOADPATH (bug#10208).
12411
12412 2011-12-07 Glenn Morris <rgm@gnu.org>
12413
12414 * lread.c (init_lread): If no_site_lisp, exclude site-lisp/ in
12415 installation and source directories as well. (Bug#10208)
12416
12417 2011-12-06 Chong Yidong <cyd@gnu.org>
12418
12419 * minibuf.c (Fread_from_minibuffer): Doc fix (Bug#10228).
12420
12421 2011-12-06 Glenn Morris <rgm@gnu.org>
12422
12423 * process.c (start_process_unwind): Treat any pid <= 0, except -2,
12424 as an error, not just -1. (Bug#10217)
12425
12426 2011-12-05 Chong Yidong <cyd@gnu.org>
12427
12428 * keyboard.c (process_special_events): New function.
12429 (swallow_events, Finput_pending_p): Use it (Bug#10195).
12430
12431 2011-12-05 Paul Eggert <eggert@cs.ucla.edu>
12432
12433 * coding.c (encode_designation_at_bol): Don't use uninitialized
12434 local variable (Bug#9318).
12435
12436 2011-12-05 Kenichi Handa <handa@m17n.org>
12437
12438 * ftfont.c (get_adstyle_property): If the font is not BDF nor PCF,
12439 return Qnil (Bug#8046, Bug#10193).
12440
12441 2011-12-05 Kenichi Handa <handa@m17n.org>
12442
12443 * coding.c (encode_designation_at_bol): New args charbuf_end and
12444 dst. Return the number of produced bytes. Callers changed.
12445 (coding_set_source): Return how many bytes coding->source was
12446 relocated.
12447 (coding_set_destination): Return how many bytes
12448 coding->destination was relocated.
12449 (CODING_DECODE_CHAR, CODING_ENCODE_CHAR, CODING_CHAR_CHARSET)
12450 (CODING_CHAR_CHARSET_P): Adjust for the avove changes.
12451
12452 2011-12-05 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
12453
12454 * coding.c (CODING_CHAR_CHARSET_P): New macro.
12455 (encode_coding_emacs_mule, encode_coding_iso_2022): Use the above
12456 macro (Bug#9318).
12457
12458 2011-12-05 Andreas Schwab <schwab@linux-m68k.org>
12459
12460 The following changes are to fix Bug#9318.
12461
12462 * coding.c (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET): New macros.
12463 (encode_coding_emacs_mule, ENCODE_ISO_CHARACTER)
12464 (encode_coding_iso_2022, encode_coding_sjis)
12465 (encode_coding_big5, encode_coding_charset): Use the above macros.
12466
12467 2011-12-05 Juanma Barranquero <lekktu@gmail.com>
12468
12469 * lisp.h (process_quit_flag): Fix external declaration.
12470
12471 2011-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
12472
12473 Don't macro-inline non-performance-critical code.
12474 * eval.c (process_quit_flag): New function.
12475 * lisp.h (QUIT): Use it.
12476
12477 2011-12-04 Jan Djärv <jan.h.d@swipnet.se>
12478
12479 * nsfns.m (get_geometry_from_preferences): New function.
12480 (Fx_create_frame): Call get_geometry_from_preferences (Bug#10103).
12481
12482 2011-12-04 Andreas Schwab <schwab@linux-m68k.org>
12483
12484 * emacs.c (Qkill_emacs): Define.
12485 (syms_of_emacs): Initialize it.
12486 * keyboard.c (interrupt_signal): Don't call Fkill_emacs here, set
12487 Qquit_flag to `kill-emacs' instead.
12488 (quit_throw_to_read_char): Add parameter `from_signal'.
12489 All callers changed. Call Fkill_emacs if requested and safe.
12490 * lisp.h (QUIT): Call Fkill_emacs if requested.
12491
12492 2011-12-03 Jan Djärv <jan.h.d@swipnet.se>
12493
12494 * widget.c (update_wm_hints): Return if wmshell is null.
12495 (widget_update_wm_size_hints): New function.
12496
12497 * widget.h (widget_update_wm_size_hints): Declare.
12498
12499 * xterm.c (x_wm_set_size_hint): If USE_X_TOOLKIT, call
12500 widget_update_wm_size_hints (Bug#10104).
12501
12502 2011-12-03 Eli Zaretskii <eliz@gnu.org>
12503
12504 * xdisp.c (handle_invisible_prop): If the invisible text ends just
12505 before a newline, prepare the bidi iterator for consuming the
12506 newline, and keep the current paragraph direction. (Bug#10183)
12507 (redisplay_window): Don't let `margin' become negative. (Bug#10192)
12508
12509 2011-12-02 Juri Linkov <juri@jurta.org>
12510
12511 * search.c (Fword_search_regexp): New Lisp function created from
12512 `wordify'. Change type of arg `lax' from `int' to `Lisp_Object'.
12513 (Fword_search_backward, Fword_search_forward)
12514 (Fword_search_backward_lax, Fword_search_forward_lax):
12515 Use `Fword_search_regexp' instead of `wordify'. Doc fix.
12516 (syms_of_search): Define `Sword_search_regexp'. (Bug#10145)
12517
12518 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
12519
12520 * fileio.c (Finsert_file_contents): Move after-change-function call
12521 to before the "handled:" label, since all "goto handled" appear in
12522 cases where the *-change-functions have already been properly called
12523 (bug#10117).
12524
12525 2011-12-01 Andreas Schwab <schwab@linux-m68k.org>
12526
12527 * keyboard.c (interrupt_signal): Don't call kill-emacs when
12528 waiting for input. (Bug#10169)
12529
12530 2011-11-30 Eli Zaretskii <eliz@gnu.org>
12531
12532 * dispnew.c (adjust_glyph_matrix): Remove the assertion that
12533 verifies glyph row's hash code--we have just reallocated the
12534 glyphs, so their contents can be complete garbage. (Bug#10164)
12535
12536 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
12537
12538 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Add missing check.
12539
12540 2011-11-30 Eli Zaretskii <eliz@gnu.org>
12541
12542 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Ensure ROW's
12543 attributes are tested _before_ calling verify_row_hash, to protect
12544 against GCC re-ordering of the tests. (Bug#10164)
12545
12546 2011-11-29 Jan Djärv <jan.h.d@swipnet.se>
12547
12548 * xterm.h (struct x_output): net_wm_state_hidden_seen is new.
12549
12550 * xterm.c (handle_one_xevent): Only set async_visible and friends
12551 if net_wm_state_hidden_seen is non-zero (Bug#10002)
12552 (get_current_wm_state): Set net_wm_state_hidden_seen to 1 if
12553 _NET_WM_STATE_HIDDEN is in NET_WM_STATE.
12554
12555 2011-11-28 Paul Eggert <eggert@cs.ucla.edu>
12556
12557 Remove GCPRO-related macros that exist only to avoid shadowing locals.
12558 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR)
12559 (GCPRO6_VAR, UNGCPRO_VAR): Remove. See
12560 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
12561 All uses changed to use GCPRO1 etc.
12562 (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6, UNGCPRO):
12563 Revert to old implementation (i.e., before 2011-03-11).
12564
12565 2011-11-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12566
12567 * dispnew.c (scrolling_window): Truncate overlaps in copy destination
12568 of scroll runs so as to avoid assigning disabled bogus rows and
12569 unnecessary graphics copy operations.
12570
12571 2011-11-27 Eli Zaretskii <eliz@gnu.org>
12572
12573 * s/ms-w32.h (utimbuf) [_MSC_VER]: Don't define.
12574 (snprintf) [_MSC_VER]: Redirect to _snprintf.
12575 (strtoll) [_MSC_VER]: Redirect to _strtoi64.
12576 (malloc, free, realloc, calloc): Redirect to e_* only when
12577 compiling Emacs.
12578
12579 * lisp.h (GCTYPEBITS): Move before first use.
12580 (ALIGN_GCTYPEBITS) [_MSC_VER]: Define.
12581 (DECL_ALIGN) [_MSC_VER]: Use it, as MSVC doesn't like bit ops in
12582 this macro definition.
12583
12584 * s/ms-w32.h (tzname): Redirect to _tzname for all values of
12585 _MSC_VER.
12586
12587 2011-11-27 Jan Djärv <jan.h.d@swipnet.se>
12588
12589 * gtkutil.c (xg_create_frame_widgets):
12590 Call gtk_window_set_has_resize_grip (FALSE) if that function is
12591 present with Gtk+ 2.0.
12592
12593 2011-11-26 Paul Eggert <eggert@cs.ucla.edu>
12594
12595 * fileio.c (Finsert_file_contents): Undo previous change; see
12596 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
12597
12598 2011-11-26 Paul Eggert <eggert@cs.ucla.edu>
12599
12600 Rename locals to avoid shadowing.
12601 * fileio.c (Finsert_file_contents):
12602 Rename inner 'gcpro1' to 'inner_gcpro1' to avoid shadowing.
12603 * process.c (wait_reading_process_output):
12604 Rename inner 'proc' to 'p' to avoid shadowing.
12605 Indent for consistency with usual Emacs style.
12606
12607 2011-11-25 Eli Zaretskii <eliz@gnu.org>
12608
12609 * xdisp.c (redisplay_window): If cursor row is not fully visible
12610 after recentering, and scroll-conservatively is set to a large
12611 number, scroll window by a few more lines to make the cursor fully
12612 visible and out of scroll-margin. (Bug#10105)
12613 (start_display): Don't move to the next line if the display should
12614 start at a newline that is part of a display vector or an overlay
12615 string. (Bug#10119)
12616
12617 2011-11-24 Juri Linkov <juri@jurta.org>
12618
12619 * image.c (imagemagick_load_image): Move `MagickSetResolution' down
12620 after the `MagickPingImage' call. (Bug#10112)
12621
12622 2011-11-23 Chong Yidong <cyd@gnu.org>
12623
12624 * window.c (Fcoordinates_in_window_p): Accept only live windows.
12625
12626 2011-11-23 Martin Rudalics <rudalics@gmx.at>
12627
12628 * buffer.c (Fkill_buffer): Run replace_buffer_in_windows before
12629 making another buffer current. (Bug#10114)
12630
12631 2011-11-23 Glenn Morris <rgm@gnu.org>
12632
12633 * font.c (font_find_for_lface) [HAVE_NS]: Ignore case. (Bug#2526)
12634
12635 2011-11-23 Chong Yidong <cyd@gnu.org>
12636
12637 * xdisp.c (compute_stop_pos): Check validity of end_charpos before
12638 using it (Bug#5984).
12639
12640 2011-11-22 Eli Zaretskii <eliz@gnu.org>
12641
12642 * dispnew.c (adjust_glyph_matrix): Don't verify hash code of mode-
12643 and header-lines, as they don't have one computed for them.
12644 (Bug#10098)
12645
12646 * .gdbinit (prow): Make displayed values more self-explaining.
12647 Add row's hash code.
12648
12649 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
12650
12651 * process.c (wait_reading_process_output): Fix asynchrounous
12652 GnuTLS socket handling on some versions of the GnuTLS library.
12653 (wait_reading_process_output): Add comment and URL.
12654
12655 2011-11-21 Jan Djärv <jan.h.d@swipnet.se>
12656
12657 * xterm.c (x_clear_frame): Reinstate the XClearWindow call.
12658
12659 2011-11-21 Chong Yidong <cyd@gnu.org>
12660
12661 * window.c (Fnext_window, Fprevious_window): Doc fix.
12662
12663 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
12664
12665 * window.c (get_phys_cursor_glyph): Fix Lisp_Object/int mixup.
12666
12667 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
12668
12669 * nsfont.m (syms_of_nsfont) <ns-reg-to-script>: Fix typo.
12670
12671 2011-11-20 Martin Rudalics <rudalics@gmx.at>
12672
12673 * window.c (Fset_window_combination_limit): Rename argument
12674 STATUS to LIMIT.
12675 (Vwindow_combination_limit): Remove "status" from doc-string.
12676
12677 2011-11-20 Andreas Schwab <schwab@linux-m68k.org>
12678
12679 * m/ibms390.h: Remove.
12680 * m/ibms390x.h: Don't include "ibms390.h".
12681
12682 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
12683
12684 * fileio.c (Finsert_file_contents): Add missing gcpro1 variable.
12685 Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
12686
12687 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
12688
12689 * casetab.c (Fset_case_table):
12690 * charset.c (Fcharset_after): Fix typos.
12691
12692 2011-11-20 Paul Eggert <eggert@cs.ucla.edu>
12693
12694 Standardize on VIRT_ADDR_VARIES behavior (Bug#10042).
12695 Otherwise, valgrind does not work on some platforms.
12696 Problem reported by Andreas Schwab in
12697 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00081.html>.
12698 * puresize.h (pure, PURE_P): Always behave as if VIRT_ADDR_VARIES
12699 is set, removing the need for VIRT_ADDRESS_VARIES.
12700 (PURE_P): Use a more-efficient implementation that needs just one
12701 comparison, not two: on x86-64 with GCC 4.6.2, this cut down the
12702 number of instructions from 6 (xorl, cmpq, jge, xorl, cmpq, setge)
12703 to 4 (xorl, subq, cmpq, setbe).
12704 * alloc.c (pure): Always extern now, since that's the
12705 VIRT_ADDR_VARIES behavior.
12706 (PURE_POINTER_P): Use a single comparison, not two, for
12707 consistency with the new puresize.h.
12708 * lisp.h (PNTR_COMPARISON_TYPE): Remove; no longer needed.
12709 * m/ibms390.h, m/intel386.h, m/template.h, s/cygwin.h, s/hpux10-20.h:
12710 Remove VIRT_ADDR_VARIES no longer needed.
12711
12712 2011-11-19 Eli Zaretskii <eliz@gnu.org>
12713
12714 * xdisp.c (x_write_glyphs, draw_phys_cursor_glyph)
12715 (erase_phys_cursor, update_window_cursor, show_mouse_face)
12716 (cursor_in_mouse_face_p): If the cursor position is out of bounds,
12717 behave as if the cursor position were at the window margin.
12718
12719 * window.c (get_phys_cursor_glyph): If the window is hscrolled,
12720 and the cursor position is out of bounds, behave as if the cursor
12721 position were at the window margin. (Bug#10075)
12722
12723 2011-11-18 Chong Yidong <cyd@gnu.org>
12724
12725 * window.c (Fwindow_combination_limit): Make first argument
12726 non-optional, since it is meaningless for live windows like the
12727 selected window.
12728
12729 2011-11-18 Dmitry Antipov <dmantipov@yandex.ru>
12730
12731 * keymap.c (Fwhere_is_internal): Add missing RETURN_UNGCPROs.
12732
12733 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
12734
12735 * intervals.c: Fix grafting over the whole buffer (bug#10071).
12736 (graft_intervals_into_buffer): Simplify.
12737
12738 2011-11-18 Eli Zaretskii <eliz@gnu.org>
12739
12740 * dispnew.c (swap_glyph_pointers): Swap the used[] arrays and the
12741 hash values of the two rows.
12742 (copy_row_except_pointers): Preserve the used[] arrays and the
12743 hash values of the two rows. (Bug#10035)
12744 (add_row_entry): Add xassert to verify that ROW's hash code is valid.
12745
12746 * xdisp.c (row_hash): New function, body extracted from
12747 compute_line_metrics.
12748 (compute_line_metrics): Call row_hash, instead of computing the
12749 hash code inline.
12750
12751 * dispnew.c (verify_row_hash): Call row_hash for computing the
12752 hash code of a row, instead of duplicating code from xdisp.c.
12753
12754 * dispextern.h (row_hash): Add prototype.
12755
12756 2011-11-18 Tassilo Horn <tassilo@member.fsf.org>
12757
12758 * frame.c (delete_frame): Don't delete the terminal when the last
12759 X frame is closed if emacs is built with GTK toolkit.
12760
12761 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
12762
12763 * window.c (syms_of_window) <window-combination-resize>: Fix typo.
12764
12765 2011-11-17 Martin Rudalics <rudalics@gmx.at>
12766
12767 * window.c (Vwindow_splits): Rename to
12768 Vwindow_combination_resize. Suggested by Juri Linkov.
12769 (Fsplit_window_internal): Use Vwindow_combination_resize instead
12770 of Vwindow_splits.
12771
12772 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
12773
12774 * nsfns.m (Fns_font_name):
12775 * window.c (syms_of_window) <window-combination-limit>: Fix typos.
12776
12777 2011-11-16 Martin Rudalics <rudalics@gmx.at>
12778
12779 * window.h (window): Rename slot "nest" to "combination_limit".
12780 * window.c (Fwindow_nest): Rename to Fwindow_combination_limit.
12781 (Fset_window_nest): Rename to Fset_window_combination_limit.
12782 (Vwindow_nest): Rename to Vwindow_combination_limit.
12783 (recombine_windows, make_parent_window, make_window)
12784 (Fsplit_window_internal, saved_window)
12785 (Fset_window_configuration, save_window_save): Rename all
12786 occurrences of window_nest to window_combination_limit.
12787
12788 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
12789
12790 * image.c (imagemagick_load_image): Fix typo.
12791
12792 2011-11-14 Eli Zaretskii <eliz@gnu.org>
12793
12794 * xdisp.c (display_line): Move the call to
12795 highlight_trailing_whitespace before the call to
12796 compute_line_metrics, since the latter needs to see the final
12797 faces of all the glyphs to compute ROW's hash value.
12798 Fixes assertion violations in row_equal_p. (Bug#10035)
12799
12800 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
12801
12802 * w32proc.c (reader_thread): Don't check pending input if cp->fd < 0,
12803 just return (bug#10044).
12804
12805 2011-11-12 Eli Zaretskii <eliz@gnu.org>
12806
12807 * makefile.w32-in (HEAPSIZE): New variable, allows to build temacs
12808 with user-defined heap size. Bump the default size of the temacs
12809 heap to 27MB, to avoid memory warning when running temacs.
12810 ($(TEMACS)): Use HEAPSIZE instead of a hardcoded value.
12811
12812 * dispnew.c (scrolling_window): Fix incorrect indices in accessing
12813 current_matrix and desired_matrix. (Bug#9990)
12814 (verify_row_hash) [XASSERTS]: New function.
12815 (adjust_glyph_matrix, row_equal_p): Use it in xassert to verify
12816 that the hash value of glyph rows is correct.
12817
12818 2011-11-12 Martin Rudalics <rudalics@gmx.at>
12819
12820 * window.h (window): Remove splits slot.
12821 * window.c (Fwindow_splits, Fset_window_splits): Remove.
12822 (Fdelete_other_windows_internal, make_parent_window)
12823 (make_window, Fsplit_window_internal, Fdelete_window_internal)
12824 (Fset_window_configuration, save_window_save): Don't deal with
12825 split status of windows.
12826 (saved_window): Remove splits slot.
12827 (Vwindow_splits): Rewrite doc-string.
12828
12829 2011-11-11 Jan Djärv <jan.h.d@swipnet.se>
12830
12831 * xfns.c (unwind_create_frame):
12832 * nsfns.m (unwind_create_frame):
12833 * w32fns.c (unwind_create_frame): Use Fmemq to check if frame is in
12834 Vframe_list (Bug#9999).
12835
12836 2011-11-11 Dmitry Antipov <dmantipov@yandex.ru>
12837
12838 * xdisp.c (syms_of_xdisp): Remove duplicated definition of Qtext.
12839
12840 2011-11-11 Kenichi Handa <handa@m17n.org>
12841
12842 * callproc.c (Fcall_process): Set the member dst_multibyte of
12843 process_coding.
12844
12845 2011-11-11 Johan Bockgård <bojohan@gnu.org>
12846
12847 * xdisp.c (fill_composite_glyph_string): Always set s->face, to
12848 avoid a crash (bug#9496).
12849
12850 2011-11-09 Chong Yidong <cyd@gnu.org>
12851
12852 * window.c (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
12853 (Fwindow_inside_absolute_pixel_edges): Only allow live windows.
12854
12855 2011-11-08 Paul Eggert <eggert@cs.ucla.edu>
12856
12857 * s/gnu.h (GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS (Bug#9926).
12858
12859 2011-11-08 Paul Eggert <eggert@cs.ucla.edu>
12860
12861 Avoid some portability problems by eschewing 'extern inline' functions.
12862 The trivial performance wins aren't worth the portability hassles; see
12863 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>
12864 et seq.
12865 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
12866 (window_box_width, window_box_left, window_box_left_offset)
12867 (window_box_right, window_box_right_offset): Undo previous change,
12868 by removing the "extern"s.
12869 * intervals.c (adjust_intervals_for_insertion)
12870 (adjust_intervals_for_deletion): Undo previous change,
12871 making these static again.
12872 (offset_intervals, temp_set_point_both, temp_set_point)
12873 (copy_intervals_to_string): No longer inline.
12874 * xdisp.c (window_text_bottom_y, window_box_width)
12875 (window_box_height, window_box_left_offset)
12876 (window_box_right_offset, window_box_left, window_box_right)
12877 (window_box): No longer inline.
12878
12879 2011-11-08 Chong Yidong <cyd@gnu.org>
12880
12881 * window.c (Fwindow_left_column, Fwindow_top_line): Doc fix.
12882 (Fwindow_body_height, Fwindow_body_width): Move from Lisp.
12883 Signal an error if not a live window.
12884 (Fwindow_total_width, Fwindow_total_height): Move from Lisp.
12885 (Fwindow_total_size, Fwindow_body_size): Move to Lisp.
12886
12887 2011-11-07 Juanma Barranquero <lekktu@gmail.com>
12888
12889 * lisp.h (syms_of_abbrev): Remove declaration.
12890 Reported by CHENG Gao <chenggao@royau.me>.
12891
12892 2011-11-07 Eli Zaretskii <eliz@gnu.org>
12893
12894 * w32.c (check_windows_init_file): Don't look for term/w32-win.el
12895 if Vpurify_flag is non-nil. Fixes a crash when running w32 build
12896 of temacs in GUI mode.
12897
12898 2011-11-07 Martin Rudalics <rudalics@gmx.at>
12899
12900 * window.h: Declare delete_all_child_windows instead of
12901 delete_all_subwindows.
12902 * window.c (Fwindow_nest, Fset_window_nest)
12903 (Fset_window_new_total, Fset_window_new_normal)
12904 (Fwindow_resize_apply): Don't use term subwindow in doc-strings.
12905 (delete_all_subwindows): Rename to delete_all_child_windows.
12906 (Fdelete_other_windows_internal, Fset_window_configuration):
12907 Call delete_all_child_windows instead of delete_all_subwindows.
12908 * frame.c (delete_frame): Call delete_all_child_windows instead
12909 of delete_all_subwindows.
12910
12911 2011-11-07 Paul Eggert <eggert@cs.ucla.edu>
12912
12913 * alloc.c (DEADP): New macro, for porting to GNU/Hurd (Bug#9926).
12914 This is also needed for porting to any host where GC_MARK_STACK is
12915 not GC_MAKE_GCPROS_NOOPS.
12916 (which_symbols): Use it.
12917
12918 2011-11-07 Kenichi Handa <handa@m17n.org>
12919
12920 * coding.c (coding_set_destination): Check coding->src_pos only
12921 when coding->src_object is a buffer (bug#9910).
12922
12923 * process.c (send_process): Set the member src_multibyte of coding
12924 to 0 (bug#9911) when sending a unibyte text.
12925
12926 * callproc.c (Fcall_process): Set the member src_multibyte of
12927 process_coding to 0 (bug#9912).
12928
12929 2011-11-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12930
12931 * xmenu.c (cleanup_widget_value_tree): New function.
12932 (xmenu_show, xdialog_show): Use it in record_unwind_protect instead of
12933 calling free_menubar_widget_value_tree directly (Bug#9830).
12934
12935 2011-11-06 Paul Eggert <eggert@cs.ucla.edu>
12936
12937 Fix some portability problems with 'inline'.
12938 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
12939 (window_box_width, window_box_left, window_box_left_offset)
12940 (window_box_right, window_box_right_offset): Declare extern.
12941 Otherwise, these inline functions do not conform to C99 and
12942 are miscompiled by Microsoft compilers. Reported by Eli Zaretskii in
12943 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>.
12944 * intervals.c (adjust_intervals_for_insertion)
12945 (adjust_intervals_for_deletion): Now extern, because otherwise the
12946 extern inline functions 'offset_intervals' couldn't refer to it.
12947 (static_offset_intervals): Remove.
12948 (offset_intervals): Rewrite using the old contents of
12949 static_offset_intervals. The old version didn't conform to C99
12950 because an extern inline function contained a reference to an
12951 identifier with static linkage.
12952
12953 2011-11-06 Andreas Schwab <schwab@linux-m68k.org>
12954
12955 * keyboard.c (interrupt_signal): Don't call kill-emacs while in
12956 GC.
12957
12958 2011-11-06 Eli Zaretskii <eliz@gnu.org>
12959
12960 * xdisp.c (init_iterator, reseat_to_string): Don't set the
12961 iterator's bidi_p flag if Vpurify_flag is non-nil. (Bug#9963)
12962 (Fcurrent_bidi_paragraph_direction): If Vpurify_flag is non-nil,
12963 return Qleft_to_right.
12964
12965 2011-11-06 Chong Yidong <cyd@gnu.org>
12966
12967 * window.c (Fwindow_live_p, Fwindow_frame, Fframe_root_window)
12968 (Fminibuffer_window, Fwindow_buffer, Fwindow_splits)
12969 (Fset_window_splits, Fwindow_nest, Fset_window_nest)
12970 (Fwindow_use_time, Fwindow_total_size, Fwindow_normal_size)
12971 (Fwindow_new_normal, Fwindow_left_column, Fwindow_top_line)
12972 (Fwindow_margins, Fwindow_fringes, Fwindow_scroll_bars)
12973 (Fwindow_vscroll): Doc fix.
12974 (Fwindow_top_child, Fwindow_left_child): Eliminate a nil default
12975 argument, since it makes no sense to pass a live window and for
12976 consistency with window-child.
12977
12978 2011-11-05 Christoph Scholtes <cschol2112@googlemail.com>
12979
12980 * makefile.w32-in ($(TEMACS), (gl-stamp)): Use $(THISDIR) to
12981 support MSVC.
12982
12983 2011-11-05 Jason Rumney <jasonr@gnu.org>
12984
12985 * w32font.c (font_matches_spec): Filter out non-Japanese kana fonts.
12986 (add_font_entity_to_list): Filter out non-Japanese Shift-JIS
12987 fonts (Bug#6029).
12988 (add_font_entity_to_list): Fix logic errors in mixed boolean and
12989 bitwise arithmetic preventing use of unicode-sip and non-truetype
12990 opentype fonts.
12991
12992 2011-11-05 Eli Zaretskii <eliz@gnu.org>
12993
12994 * s/ms-w32.h (fstat, stat, utime): Move redirections to
12995 "emacs"-only part.
12996
12997 * w32fns.c (x_create_tip_frame, Fx_create_frame): Rearrange
12998 initialization code to keep similarity to xfns.c after changes
12999 from 2011-11-05.
13000
13001 2011-11-05 Jan Djärv <jan.h.d@swipnet.se>
13002
13003 * nsfns.m: Declare image_cache_refcount if GLYPH_DEBUG.
13004 (unwind_create_frame): New function (Bug#9943).
13005 (Fx_create_frame): Restructure code to be more similar to the one in
13006 xfns.c. Call record_unwind_protect with unwind_create_frame (Bug#9943).
13007 Initialize image_cache_refcount if GLYPH_DEBUG (Bug#9943).
13008 Move terminal->reference_count++ just before making the frame official
13009 (Bug#9943).
13010
13011 * nsterm.m (x_free_frame_resources): New function.
13012 (x_destroy_window): Move code to x_free_frame_resources.
13013
13014 * xfns.c (unwind_create_frame): Fix comment.
13015 (Fx_create_frame, x_create_tip_frame):
13016 Move terminal->reference_count++ just before making the frame
13017 official. Move initialization of image_cache_refcount and
13018 dpyinfo_refcount before calling init_frame_faces (Bug#9943).
13019
13020 2011-11-05 Eli Zaretskii <eliz@gnu.org>
13021
13022 Support MSVC build with newer versions of Visual Studio.
13023 * makefile.w32-in (TAGS-gmake): Don't use $(patsubst ...), as
13024 Nmake barfs on that. Use $(OBJ*_c) variables instead, defined on
13025 nt/gmake.defs.
13026
13027 * lisp.h (ENUM_BF): New macro, for enumerated types in bitfields,
13028 which are not supported by MSVC.
13029 (Lisp_Symbol, Lisp_Misc_Any, Lisp_Marker, Lisp_Misc_Overlay)
13030 (Lisp_Save_Value, Lisp_Free): Use ENUM_BF for enumerated types in
13031 bitfields.
13032 (Lisp_Object) [USE_LISP_UNION_TYPE]: Use ENUM_BF for enumerated
13033 types in bitfields.
13034 (DEFUN) [_MSC_VER]: Define in a different way for MSVC.
13035
13036 * w32fns.c [_MSC_VER]: DECLARE_HANDLE for any MSVC version.
13037
13038 2011-11-05 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
13039
13040 Support MSVC build with newer versions of Visual Studio.
13041 * w32.c: Don't include w32api.h for MSVC.
13042 (init_environment) [_MSC_VER]: Call sys_access, not _access.
13043
13044 * s/ms-w32.h <sigset_t, ssize_t> [_MSC_VER]: Typedefs for MSVC.
13045 [_MSC_VER]: Include sys/timeb.h, sys/stat.h, and signal.h.
13046 (fstat, stat, utime) [_MSC_VER]: Redirect to their sys_* cousins.
13047 (malloc, free, realloc, calloc) [_MSC_VER]: Always redirect to the
13048 e_* cousins.
13049 (alloca) [_MSC_VER]: Define to _alloca.
13050
13051 * lisp.h (DECL_ALIGN) [_MSC_VER]: Define for MSVC.
13052
13053 * regex.c <re_char> [_MSC_VER]: A separate definition for MSVC.
13054
13055 2011-11-04 Eli Zaretskii <eliz@gnu.org>
13056
13057 * xdisp.c (note_mouse_highlight): If either of
13058 previous/next-single-property-change returns nil, treat that as
13059 the beginning or the end of the buffer. (Bug#9955)
13060
13061 2011-11-04 Jan Djärv <jan.h.d@swipnet.se>
13062
13063 * gtkutil.c (xg_make_tool_item): Add callbacks if one of wimage or
13064 label is not null (Bug#9951).
13065 (xg_tool_item_stale_p): Handle the fact that wimage and/or wlbl
13066 may be NULL.
13067
13068 2011-11-04 Eli Zaretskii <eliz@gnu.org>
13069
13070 * window.c (Fwindow_body_size): Mention in the doc string that the
13071 return value is in frame's canonical units. (Bug#9949)
13072
13073 2011-11-03 Eli Zaretskii <eliz@gnu.org>
13074
13075 * xdisp.c (note_mouse_highlight): Initialize `area'. (Bug#9947)
13076
13077 * w32fns.c (unwind_create_frame): If needed, free the glyph
13078 matrices of the partially constructed frame. (Bug#9943)
13079 * xfns.c (unwind_create_frame): Likewise.
13080
13081 2011-11-01 Eli Zaretskii <eliz@gnu.org>
13082
13083 * xdisp.c (mouse_face_from_buffer_pos): Fix a typo in a comment.
13084 Don't stop backward scan on the continuation glyph, even though
13085 its CHARPOS is positive.
13086 (mouse_face_from_buffer_pos, note_mouse_highlight):
13087 Rename cover_string to disp_string.
13088
13089 2011-11-01 Martin Rudalics <rudalics@gmx.at>
13090
13091 * window.c (temp_output_buffer_show): Don't use
13092 Vtemp_buffer_show_specifiers.
13093 (Vtemp_buffer_show_specifiers): Remove unused variable.
13094
13095 2011-10-30 Eli Zaretskii <eliz@gnu.org>
13096
13097 * xdisp.c (try_cursor_movement): Make sure ROW isn't decremented
13098 past the beginning of the current glyph matrix.
13099
13100 2011-10-30 Adam Sjøgren <asjo@koldfront.dk> (tiny change)
13101
13102 * xterm.c: Include X11/Xproto.h if HAVE_GTK3.
13103 (x_error_handler): Ignore BadMatch for X_SetInputFocus for
13104 HAVE_GTK3 (Bug#9869).
13105
13106 * gtkutil.c (xg_win_to_widget, xg_event_is_for_menubar): Initialize
13107 type to GDK_NOTHING so valgrind does not complain (Bug#9901).
13108
13109 * xterm.h (x_display_info): Add Xatom_net_wm_state_hidden (Bug#9893).
13110
13111 * xterm.c: Declare x_handle_net_wm_state to return int.
13112 (handle_one_xevent): Check if we are iconified but don't have
13113 _NET_WM_STATE_HIDDEN. If do, treat as deiconify (Bug#9893).
13114 (get_current_wm_state): Return non-zero if not hidden,
13115 check for _NET_WM_STATE_HIDDEN (Bug#9893).
13116 (do_ewmh_fullscreen): Ignore return value from get_current_wm_state.
13117 (x_handle_net_wm_state): Return what get_current_wm_state returns.
13118 (x_term_init): Initialize dpyinfo->Xatom_net_wm_state_hidden.
13119
13120 2011-10-29 Paul Eggert <eggert@cs.ucla.edu>
13121
13122 * alloc.c (which_symbols): Declare EXTERNALLY_VISIBLE,
13123 so that this new function doesn't get optimized away by a
13124 whole-program optimizer. Make the 2nd arg EMACS_INT, not int.
13125
13126 2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
13127
13128 * frame.h (MOUSE_HL_INFO): Remove excess parens.
13129
13130 2011-10-29 Eli Zaretskii <eliz@gnu.org>
13131
13132 Fix the `xbytecode' command.
13133 * .gdbinit (xprintbytestr): New command.
13134 (xwhichsymbols): Rename from `which'; all callers changed.
13135 (xbytecode): Print the byte-code string as well.
13136
13137 2011-10-29 Kim Storm <storm@cua.dk>
13138
13139 * alloc.c (which_symbols): New function.
13140
13141 2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
13142
13143 * minibuf.c (read_minibuf_noninteractive): Allow reading empty
13144 line. (Bug#9903)
13145
13146 2011-10-29 Glenn Morris <rgm@gnu.org>
13147
13148 * process.c (wait_reading_process_output): Revert 2009-08-30 change.
13149 Not clear what it was for, and it causes various bugs. (Bug#9839)
13150
13151 2011-10-28 Eli Zaretskii <eliz@gnu.org>
13152
13153 * xdisp.c (note_mouse_highlight): Initialize `part', to avoid a
13154 possible random value that matches one of those tested as
13155 condition to clear the mouse face.
13156
13157 2011-10-28 Chong Yidong <cyd@gnu.org>
13158
13159 * xdisp.c (note_mouse_highlight): Fix use of uninitialized var.
13160
13161 2011-10-28 Dan Nicolaescu <dann@ics.uci.edu>
13162
13163 * window.c (make_window): Initialize phys_cursor_on_p.
13164
13165 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
13166
13167 * lisp.h (struct Lisp_Symbol): Update comments.
13168
13169 2011-10-28 Juanma Barranquero <lekktu@gmail.com>
13170
13171 * w32font.c (w32_load_unicows_or_gdi32): Add missing return.
13172
13173 2011-10-28 Eli Zaretskii <eliz@gnu.org>
13174
13175 Fix Emacs on Windows 9X (bug#8562). Thanks to oslsachem
13176 <oslsachem@gmail.com> for helping to debug this.
13177
13178 * w32font.c (g_b_init_is_w9x, g_b_init_get_outline_metrics_w)
13179 (g_b_init_get_text_metrics_w, g_b_init_get_glyph_outline_w)
13180 (g_b_init_get_glyph_outline_w): New static variables.
13181 (GetOutlineTextMetricsW_Proc, GetTextMetricsW_Proc)
13182 (GetGlyphOutlineW_Proc): New typedefs.
13183 (w32_load_unicows_or_gdi32, get_outline_metrics_w)
13184 (get_text_metrics_w, get_glyph_outline_w, globals_of_w32font):
13185 New functions.
13186 (w32font_open_internal, compute_metrics):
13187 Call get_outline_metrics_w, get_text_metrics_w, and get_glyph_outline_w
13188 instead of calling the "wide" APIs directly.
13189
13190 * emacs.c (main) [HAVE_NTGUI]: Call globals_of_w32font.
13191
13192 * w32.h (syms_of_w32font): Add prototype.
13193
13194 2011-10-27 Juanma Barranquero <lekktu@gmail.com>
13195
13196 * window.c (Fframe_root_window, Fframe_first_window, Fwindow_end)
13197 (Fframe_selected_window, Ftemp_output_buffer_show, Fnext_window)
13198 (Fdelete_window_internal, Fwindow_parameters): Fix typos in docstrings.
13199 (Fmove_to_window_line): Doc fix.
13200
13201 2011-10-27 Chong Yidong <cyd@gnu.org>
13202
13203 * process.c (make_process): Set gnutls_state to NULL.
13204
13205 * gnutls.c (emacs_gnutls_deinit): Deinit the gnutls_state if it is
13206 non-NULL, regardless of GNUTLS_INITSTAGE.
13207 (Fgnutls_boot): Cleanups. Call emacs_gnutls_deinit if we signal
13208 an error. Set process slots as soon as we allocate them.
13209
13210 * gnutls.h (GNUTLS_LOG, GNUTLS_LOG2): Fix macros.
13211
13212 2011-10-27 Chong Yidong <cyd@gnu.org>
13213
13214 * gnutls.c (emacs_gnutls_deinit): New function.
13215 Deallocate credentials structures as well as calling gnutls_deinit.
13216 (Fgnutls_deinit, Fgnutls_boot): Use it.
13217
13218 * process.c (make_process): Initialize GnuTLS credentials to NULL.
13219 (deactivate_process): Call emacs_gnutls_deinit.
13220
13221 2011-10-27 Juanma Barranquero <lekktu@gmail.com>
13222
13223 * image.c (x_create_x_image_and_pixmap):
13224 * w32.c (sys_rename, w32_delayed_load):
13225 * w32font.c (fill_in_logfont):
13226 * w32reg.c (x_get_string_resource): Silence compiler warnings.
13227
13228 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
13229
13230 * w32fns.c (w32_default_color_map): New function,
13231 extracted from Fw32_default_color_map.
13232 (Fw32_default_color_map, Fx_open_connection): Use it. (Bug#9785)
13233
13234 2011-10-25 Paul Eggert <eggert@cs.ucla.edu>
13235
13236 * dispextern.h (Fcontrolling_tty_p): New decl (Bug#6649 part 2).
13237
13238 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
13239
13240 * keyboard.c (test_undefined): New function (bug#9751).
13241 (read_key_sequence): Use it to detect when a key is bound to `undefined'.
13242
13243 2011-10-25 Enami Tsugutomo <tsugutomo.enami@jp.sony.com>
13244
13245 * sysdep.c (init_sys_modes): Fix the check for the controlling
13246 terminal (Bug#6649).
13247
13248 2011-10-20 Eli Zaretskii <eliz@gnu.org>
13249
13250 * dispextern.h (struct bidi_it): New member next_en_type.
13251
13252 * bidi.c (bidi_line_init): Initialize the next_en_type member.
13253 (bidi_resolve_explicit_1): When next_en_pos is valid for the
13254 current character, check also for next_en_type being WEAK_EN.
13255 (bidi_resolve_weak): Don't enter the expensive loop if the current
13256 position is before next_en_pos. Record the bidi type of the first
13257 non-ET, non-BN character we find, in addition to its position.
13258 (bidi_level_of_next_char): Invalidate next_en_type when
13259 next_en_pos is over-stepped.
13260
13261 2011-10-20 Paul Eggert <eggert@cs.ucla.edu>
13262
13263 Time zone name fixes for non-ASCII locales (Bug#641, Bug#9794)
13264 * editfns.c: Rewrite current-time-zone so that it invokes
13265 the equivalent of (format-time-string "%Z") to get the time zone name.
13266 This fixes a bug when the time zone name contains characters that
13267 need converting from the system time locale to Emacs internal format.
13268 This fixes a shortcoming that I introduced in my 1999-10-19 patch:
13269 that patch fixed format-time-string to do the conversion, but
13270 I forgot to fix current-time-zone.
13271 (format_time_string): New function, containing most of
13272 what Fformat_time_string used to contain.
13273 (Fformat_time_string): Rewrite in terms of format_time_string.
13274 This doesn't change this function's behavior.
13275 (current-time-zone): Rewrite to use format_time_string.
13276 This fixes the bug reported by Michael Schierl in
13277 <http://lists.gnu.org/archive/html/emacs-devel/2007-06/msg00334.html>.
13278 Jason Rumney's 2007-06-07 change worked around this bug, but
13279 didn't fix it.
13280 * systime.h (tzname, timezone): Remove no-longer-used declarations.
13281
13282 2011-10-19 Eli Zaretskii <eliz@gnu.org>
13283
13284 * xdisp.c (start_display): If the character at POS is displayed
13285 via a display vector, reset IT->current.dpvec_index to zero.
13286 (try_window_reusing_current_matrix): If a line ends in a display
13287 vector or the next line starts in a display vector, continue
13288 redrawing the window even though the character position of
13289 start_row was reached.
13290 (Bug#9771, part 2)
13291
13292 2011-10-18 Chong Yidong <cyd@gnu.org>
13293
13294 * xdisp.c (get_next_display_element): Handle U+2010 and U+2011
13295 with nobreak-char-display too.
13296
13297 2011-10-18 Eli Zaretskii <eliz@gnu.org>
13298
13299 Fix part 3 of bug#9771.
13300 * bidi.c (bidi_line_init): Initialize next_en_pos to zero, not -1.
13301 (bidi_resolve_neutral): Don't enter the expensive loop looking for
13302 non-neutral characters if the current character is a paragraph
13303 separator (a.k.a. Newline). This avoids running the same
13304 expensive loop twice, once when we consume the preceding newline
13305 and the other time when the line actually needs to be displayed.
13306 Avoid the loop when we see neutrals on the base embedding level
13307 following a character whose directionality is the same as the
13308 paragraph's. This avoids running the expensive loop when a line
13309 ends in a long sequence of neutrals, like control characters.
13310 Add assertion against STRONG_AL type. Slightly rearrange code
13311 that determines the type of a neutral given the first non-neutral
13312 that follows it.
13313 (bidi_level_of_next_char): Set next_en_pos to zero when
13314 invalidating its info.
13315
13316 2011-10-17 Eli Zaretskii <eliz@gnu.org>
13317
13318 * xdisp.c (push_display_prop): Determine whether to record string
13319 or buffer position by IT->string, not by IT->method. Allow
13320 GET_FROM_DISPLAY_VECTOR as IT->method on entry. (Bug#9771, part 4)
13321 (move_it_vertically_backward): Don't look for character position
13322 immediately after the newline when in a continuation line.
13323 (Bug#9771, part 1)
13324
13325 2011-10-15 Martin Rudalics <rudalics@gmx.at>
13326
13327 * window.c (coordinates_in_window): Rewrite and delabelize
13328 vertical border check. (Bug#5357) (Bug#9618)
13329
13330 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
13331
13332 * xterm.c (frame_highlight, frame_unhighlight): Ignore unexplained
13333 errors in XSetWindowBorder (bug#9310).
13334
13335 2011-10-13 Dmitry Antipov <dmantipov@yandex.ru>
13336
13337 * editfns.c (Fset_time_zone_rule): Replace free with xfree to
13338 avoid crash when xmalloc overrun checking is enabled.
13339
13340 2011-10-13 Eli Zaretskii <eliz@gnu.org>
13341
13342 * xdisp.c (Fcurrent_bidi_paragraph_direction): Initialize
13343 itb.paragraph_dir to NEUTRAL_DIR. Fixes an occasional incorrect
13344 cursor motion with <left> and <right> arrow keys.
13345
13346 * bidi.c (bidi_init_it): Don't initialize paragraph_dir here, as
13347 some callers set that themselves.
13348
13349 2011-10-12 Eli Zaretskii <eliz@gnu.org>
13350
13351 * xdisp.c (find_row_edges): Handle the case where ROW comes from a
13352 display string and the previous row comes from the same string and
13353 is empty. (Bug#9739) (Bug#9738)
13354
13355 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
13356
13357 * doc.c (get_doc_string): Encode file name (bug#9735).
13358
13359 2011-10-12 Eli Zaretskii <eliz@gnu.org>
13360
13361 * bidi.c (bidi_level_of_next_char):
13362 * xdisp.c (get_visually_first_element): Remove old incorrect
13363 comments regarding the Unicode Line Separator character.
13364
13365 * bidi.c (bidi_init_it): Initialize paragraph_dir to NEUTRAL_DIR.
13366
13367 2011-10-12 Dmitry Antipov <dmantipov@yandex.ru>
13368
13369 * alloc.c (Fgc_status): Do not access beyond zombies array
13370 boundary if nzombies > MAX_ZOMBIES.
13371 * alloc.c (dump_zombies): Add missing format specifier.
13372
13373 2011-10-12 Paul Eggert <eggert@cs.ucla.edu>
13374
13375 * xdisp.c (set_cursor_from_row): Simplify conditionals,
13376 to pacify GCC 4.6.1 x86-64 with -O2 -Wstrict-overflow.
13377
13378 * lread.c (read_escape): Allow hex escapes as large as ?\xfffffff.
13379 Some packages use them to denote characters with modifiers.
13380
13381 2011-10-11 Andreas Schwab <schwab@linux-m68k.org>
13382
13383 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR)
13384 (GCPRO5_VAR, GCPRO6_VAR, UNGCPRO_VAR): Add whitespace to avoid
13385 matching a pp-number. Rename parameter var to var1.
13386
13387 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
13388
13389 * minibuf.c (Finternal_complete_buffer): Fix last change (bug#9709).
13390
13391 2011-10-08 Glenn Morris <rgm@gnu.org>
13392
13393 * callint.c (Fcall_interactively): Give a more explicit error for the
13394 'c' case with a non-character input. (Bug#8479)
13395
13396 2011-10-08 Eli Zaretskii <eliz@gnu.org>
13397
13398 * xdisp.c (hscroll_window_tree): Support hscroll in right-to-left
13399 lines.
13400 (set_cursor_from_row): Fix cursor positioning in mixed L2R+R2L
13401 lines that are hscrolled on the left.
13402
13403 * dispnew.c (buffer_posn_from_coords): Account for a possible
13404 presence of header-line. (Bug#4426)
13405
13406 2011-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
13407
13408 * buffer.c (syms_of_buffer) <enable-multibyte-characters>:
13409 Don't advertise functionality which we discourage or doesn't work.
13410
13411 2011-10-07 Paul Eggert <eggert@cs.ucla.edu>
13412
13413 * alloc.c (GC_LISP_OBJECT_ALIGNMENT): Use offsetof, not __alignof__
13414 or sizeof. __alignof__ gives the wrong answer on Fedora x86-64
13415 with GCC 4.6.1 when configured with CC='gcc -m32' --with-wide-int;
13416 this makes Emacs dump core during garbage collection on rare
13417 occasions. sizeof is obviously inferior to offsetof here, so
13418 stick with offsetof.
13419 (GC_POINTER_ALIGNMENT): New macro.
13420 (mark_memory): Omit 3rd (offset) arg; caller changed.
13421 Don't assume EMACS_INT alignment is the same as pointer alignment.
13422
13423 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
13424
13425 * keyboard.c (read_key_sequence_remapped): New var.
13426 (read_key_sequence): Compute remapping in the right buffer.
13427 (command_loop_1): Use read_key_sequence's remapping directly.
13428
13429 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
13430
13431 * dired.c (file_name_completion): Don't expand file name.
13432 (Ffile_name_completion, Ffile_name_all_completions): Expand file name
13433 before checking file name handler.
13434
13435 * minibuf.c (Finternal_complete_buffer): Only show internal buffers if
13436 they've been requested explicitly (bug#9591).
13437
13438 2011-10-01 Andreas Schwab <schwab@linux-m68k.org>
13439
13440 * keymap.c (Fsingle_key_description): Use make_specified_string
13441 instead of build_string to build string from push_key_description.
13442 (Bug#5193)
13443
13444 2011-09-30 Paul Eggert <eggert@cs.ucla.edu>
13445
13446 * buffer.h (struct buffer): Use time_t, not int, for a time stamp.
13447 This fixes a Y2038 bug on 64-bit hosts.
13448 * buffer.c (reset_buffer):
13449 * fileio.c (Fdo_auto_save, Fset_buffer_auto_saved)
13450 (Fclear_buffer_auto_save_failure):
13451 Use 0, not -1, to represent an unset failure time, since time_t
13452 might not be signed.
13453
13454 Remove dependency on glibc malloc internals.
13455 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
13456 Move back here from lisp.h, but with their new implementations.
13457 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
13458 (XMALLOC_OVERRUN_SIZE_SIZE): Move these new lisp.h macros here.
13459 * charset.c (charset_table_init): New static var.
13460 (syms_of_charset): Use it instead of xmalloc. This removes a
13461 dependency on glibc malloc internals. See Eli Zaretskii's comment in
13462 <http://lists.gnu.org/archive/html/emacs-devel/2011-09/msg00815.html>.
13463 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
13464 Move back to alloc.c.
13465 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
13466 (XMALLOC_OVERRUN_SIZE_SIZE): Move to alloc.c.
13467
13468 2011-09-30 Jan Djärv <jan.h.d@swipnet.se>
13469
13470 * nsterm.m (windowDidResize): Call x_set_window_size only when
13471 ns_in_resize is true. Otherwise set pixelwidth/height and
13472 call change_frame_size (Bug#9628).
13473
13474 2011-09-30 Paul Eggert <eggert@cs.ucla.edu>
13475
13476 Port --enable-checking=all to Fedora 14 x86-64.
13477 * charset.c (syms_of_charset): Also account for glibc malloc's
13478 internal overhead when calculating the initial malloc maximum.
13479
13480 Port --enable-checking=all to Fedora 14 x86.
13481 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
13482 Move to lisp.h.
13483 (xmalloc_put_size, xmalloc_get_size, overrun_check_malloc)
13484 (overrun_check_realloc, overrun_check_free):
13485 Use XMALLOC_OVERRUN_SIZE_SIZE, not sizeof (size_t).
13486 That way, xmalloc returns a properly-aligned pointer even if
13487 XMALLOC_OVERRUN_CHECK is defined. The old debugging code happened
13488 to align OK on typical 64-bit hosts, but not on Fedora 14 x86.
13489 * charset.c (syms_of_charset): Take XMALLOC_OVERRUN_CHECK_OVERHEAD
13490 into account when calculating the initial malloc maximum.
13491 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
13492 Move here from alloc.c, so that charset.c can use it too.
13493 Properly align; the old code wasn't right for common 32-bit hosts
13494 when configured with --enable-checking=all.
13495 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
13496 (XMALLOC_OVERRUN_SIZE_SIZE): New macros.
13497
13498 2011-09-29 Eli Zaretskii <eliz@gnu.org>
13499
13500 * sysdep.c (snprintf) [!EOVERFLOW]: If EOVERFLOW is not defined,
13501 use EDOM.
13502
13503 2011-09-28 Eli Zaretskii <eliz@gnu.org>
13504
13505 * xdisp.c (compute_display_string_end): If there's no display
13506 string at CHARPOS, return -1.
13507
13508 * bidi.c (bidi_fetch_char): When compute_display_string_end
13509 returns a negative value, treat the character as a normal
13510 character not covered by a display string. (Bug#9624)
13511
13512 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
13513
13514 * lread.c (Fread_from_string): Fix typo in docstring.
13515
13516 2011-09-27 Eli Zaretskii <eliz@gnu.org>
13517
13518 * xdisp.c (handle_invisible_prop): If invisible text ends on a
13519 newline, reseat the iterator instead of bidi-iterating there one
13520 character at a time. (Bug#9610)
13521 (BUFFER_POS_REACHED_P, move_it_in_display_line_to): Bail when past
13522 TO_CHARPOS if the bidi iterator is at base embedding level.
13523
13524 2011-09-27 Andreas Schwab <schwab@linux-m68k.org>
13525
13526 * lread.c (readevalloop): Use correct code for NBSP.
13527 (read1): Likewise. (Bug#9608)
13528
13529 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
13530
13531 * dbusbind.c (Fdbus_register_signal): When service is not
13532 registered, use nil in Vdbus_registered_objects_table. (Bug#9581)
13533
13534 2011-09-25 Glenn Morris <rgm@gnu.org>
13535
13536 * buffer.c (truncate-lines): Doc fix.
13537
13538 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
13539
13540 * window.c (Fwindow_prev_buffers, Fset_window_prev_buffers)
13541 (Fset_window_next_buffers): Doc fix.
13542
13543 2011-09-24 Glenn Morris <rgm@gnu.org>
13544
13545 * minibuf.c (read_minibuf): Disable line truncation. (Bug#5715)
13546
13547 2011-09-24 Paul Eggert <eggert@cs.ucla.edu>
13548
13549 Fix minor problems found by static checking.
13550 * xdisp.c (string_from_display_spec): Don't assume vecsize fits in int.
13551 * indent.c (Fvertical_motion): Fix == vs = typo.
13552
13553 2011-09-24 Eli Zaretskii <eliz@gnu.org>
13554
13555 * dispnew.c (syms_of_display) <redisplay-dont-pause>:
13556 Default value is now t. Doc fix.
13557
13558 * indent.c (Fvertical_motion): Compute and apply the overshoot
13559 logic when moving up, not only when moving down. Fix the
13560 confusing name and values of the it_overshoot_expected variable;
13561 logic changes accordingly. (Bug#9254) (Bug#9549)
13562
13563 * xdisp.c (pos_visible_p): Produce correct pixel coordinates when
13564 CHARPOS is covered by a display string which includes newlines.
13565 (move_it_vertically_backward): Avoid inflooping when START_CHARPOS
13566 is covered by a display string with embedded newlines.
13567
13568 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
13569
13570 * dbusbind.c (Fdbus_register_signal): Add match rule to
13571 Vdbus_registered_objects_table. (Bug#9581)
13572 (Fdbus_register_method, Vdbus_registered_objects_table):
13573 Fix docstring.
13574
13575 2011-09-24 Jim Meyering <meyering@redhat.com>
13576
13577 do not ignore write error for any output size
13578 The previous change was incomplete.
13579 While it makes emacs --batch detect the vast majority of stdout
13580 write failures, errors were still ignored whenever the output size is
13581 k * (BUFSIZ+1) - 4. E.g., on a system with BUFSIZ of 4096,
13582 $ emacs --batch --eval '(print (format "%4093d" 0))' > /dev/full \
13583 && echo FAIL: ignored write error
13584 FAIL: ignored write error
13585 $ emacs --batch --eval '(print (format "%20481d" 0))' > /dev/full \
13586 && echo FAIL: ignored write error
13587 FAIL: ignored write error
13588 * emacs.c (Fkill_emacs): Also test ferror. (Bug#9574)
13589
13590 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
13591
13592 * emacs.c (Fkill_emacs): In noninteractive mode exit
13593 non-successfully if a write error occurred on stdout. (Bug#9574)
13594
13595 2011-09-21 Eli Zaretskii <eliz@gnu.org>
13596
13597 * xdisp.c (pop_it): Allow it->object that is a cons cell to pass
13598 the xassert test.
13599
13600 * dispextern.h (struct it): Update the comment documenting what
13601 can it->OBJECT be.
13602
13603 2011-09-20 Eli Zaretskii <eliz@gnu.org>
13604
13605 * xdisp.c (set_cursor_from_row): If the row ends in a newline from
13606 a display string, extend search for cursor position to end of row.
13607 (find_row_edges): If the row ends in a newline from a display
13608 string, increment its MATRIX_ROW_END_CHARPOS by one. (Bug#9549)
13609 Handle the case of a display string with multiple newlines.
13610 (Fcurrent_bidi_paragraph_direction): Fix search for previous
13611 non-empty line. Fixes confusing cursor motion with arrow keys at
13612 the beginning of a line that starts with whitespace.
13613
13614 2011-09-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
13615
13616 * lread.c (Fread_from_string): Document what FINAL-STRING-INDEX is
13617 (bug#9493).
13618
13619 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
13620
13621 * xfns.c (Fx_create_frame): Handle the bitmapIcon resource as
13622 boolean (Bug#9154).
13623
13624 2011-09-18 Eli Zaretskii <eliz@gnu.org>
13625
13626 * xdisp.c (display_line): Record maximum and minimum buffer
13627 positions even if no glyphs were produced (e.g., by a zero-width
13628 stretch). Fixes bug#9530 on a TTY. Under word-wrap, don't record
13629 buffer positions that will be removed from the glyph row because
13630 they don't fit.
13631 (produce_stretch_glyph): Fix a bug in :align-to on a TTY when the
13632 column is beyond frame width: don't subtract 1 "pixel" when
13633 computing width of the stretch.
13634 (reseat_at_next_visible_line_start): Undo the change made on
13635 2011-09-17 that saved paragraph information and restored it after
13636 the call to `reseat'. (Bug#9545)
13637
13638 2011-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13639
13640 * xdisp.c (expose_window): Save original value of phys_cursor_on_p
13641 and turn window cursor on if cleared (Bug#9415).
13642
13643 2011-09-18 Andreas Schwab <schwab@linux-m68k.org>
13644
13645 * search.c (boyer_moore): Take unibyte characters from pattern
13646 literally. (Bug#9458)
13647
13648 2011-09-18 Eli Zaretskii <eliz@gnu.org>
13649
13650 * xdisp.c (reseat_at_next_visible_line_start): Fix last change.
13651
13652 2011-09-18 Paul Eggert <eggert@cs.ucla.edu>
13653
13654 Fix minor problem found by static checking.
13655 * xdisp.c (reseat_at_next_visible_line_start): Mark locals as
13656 initialized, to pacify gcc -Wuninitialized.
13657
13658 * fileio.c: Report proper errno when syscall falls.
13659 (Finsert_file_contents): Save and restore errno,
13660 so that report_file_error outputs the correct diagnostic.
13661 (Fwrite_region) [CLASH_DETECTION]: Likewise.
13662
13663 2011-09-18 Eli Zaretskii <eliz@gnu.org>
13664
13665 * .gdbinit (pgx): Fix references to fields of `struct glyph'.
13666
13667 2011-09-17 Eli Zaretskii <eliz@gnu.org>
13668
13669 * xdisp.c (produce_stretch_glyph): Another fix for changes made on
13670 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9530)
13671
13672 2011-09-17 Eli Zaretskii <eliz@gnu.org>
13673
13674 * xdisp.c (reseat_at_next_visible_line_start): Keep information
13675 about the current paragraph and restore it after the call to reseat.
13676
13677 * bidi.c (MAX_PARAGRAPH_SEARCH): New macro.
13678 (bidi_find_paragraph_start): Search back for paragraph beginning
13679 at most MAX_PARAGRAPH_SEARCH lines; if not found, return BEGV_BYTE.
13680 (bidi_move_to_visually_next): Only trigger paragraph-related
13681 computations when the last character is a newline or at EOB, not
13682 just any NEUTRAL_B. (Bug#9470)
13683
13684 * xdisp.c (set_cursor_from_row): Don't invoke special treatment of
13685 truncated lines if point is covered by a display string. (Bug#9524)
13686
13687 2011-09-16 Paul Eggert <eggert@cs.ucla.edu>
13688
13689 * xselect.c: Relax test for outgoing X longs (Bug#9498).
13690 (cons_to_x_long): New function.
13691 (lisp_data_to_selection_data): Use it. Correct the test for
13692 short-versus-long data; it was negated. Break out of vector
13693 loop, for efficiency, when a long datum is discovered.
13694
13695 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
13696
13697 * eval.c (Fquote): Document its non-consing behavior (bug#9482).
13698
13699 2011-09-16 Eli Zaretskii <eliz@gnu.org>
13700
13701 * image.c (tiff_handler): Work around a bug in MinGW GCC 3.x (see
13702 GCC PR/17406) by declaring this function with external scope.
13703
13704 2011-09-15 Paul Eggert <eggert@cs.ucla.edu>
13705
13706 * editfns.c (Fformat): Fix bug in text-property fix (Bug#9514).
13707 Don't mishandle (length (format "%%")) and (format "%4000s%%" "").
13708
13709 2011-09-15 Andreas Schwab <schwab@linux-m68k.org>
13710
13711 * editfns.c (Fformat): Correctly handle text properties on "%%".
13712
13713 2011-09-15 Eli Zaretskii <eliz@gnu.org>
13714
13715 * xterm.c (x_draw_composite_glyph_string_foreground):
13716 * w32term.c (x_draw_composite_glyph_string_foreground):
13717 * term.c (encode_terminal_code):
13718 * composite.c (composition_update_it, get_composition_id):
13719 * xdisp.c (get_next_display_element)
13720 (fill_composite_glyph_string): Add comments about special meaning
13721 of TAB characters in a composition.
13722
13723 2011-09-15 Paul Eggert <eggert@cs.ucla.edu>
13724
13725 * editfns.c (Fformat): Fix off-by-1 bug for "%%b" (Bug#9514).
13726 This occurs when processing a multibyte format.
13727 Problem reported by Wolfgang Jenker.
13728
13729 2011-09-15 Johan Bockgård <bojohan@gnu.org>
13730
13731 * xdisp.c (try_cursor_movement): Only check for exact match if
13732 cursor hpos found by set_cursor_from_row is valid. (Bug#9495)
13733
13734 2011-09-14 Paul Eggert <eggert@cs.ucla.edu>
13735
13736 Remove unused external symbols.
13737 * dispextern.h (calc_pixel_width_or_height): Remove decl.
13738 * xdisp.c (calc_pixel_width_or_height): Now static.
13739 * doprnt.c (exprintf) [! (HAVE_X_WINDOWS && USE_X_TOOLKIT)]: Remove.
13740 * indent.c (check_display_width):
13741 * w32term.c: Fix comment to match code.
13742 * xterm.c, xterm.h (x_catching_errors): Remove.
13743
13744 2011-09-14 Paul Eggert <eggert@cs.ucla.edu>
13745
13746 * xselect.c: Use signed conversions more consistently (Bug#9498).
13747 (selection_data_to_lisp_data): Assume incoming selection data are
13748 signed integers, not unsigned. This is to be consistent with
13749 outgoing selection data, which was modified to use signed integers
13750 in as part of the fix to Bug#9196 in response to Jan D.'s comment
13751 in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9196#32> that X11
13752 expects long, not unsigned long.
13753
13754 2011-09-14 Eli Zaretskii <eliz@gnu.org>
13755
13756 * xdisp.c (try_window_reusing_current_matrix): Fix incorrect
13757 computation of loop end. Reported by Johan Bockgård
13758 <bojohan@gnu.org>.
13759
13760 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
13761
13762 * frame.c (Fother_visible_frames_p): Function deleted.
13763
13764 2011-09-12 Eli Zaretskii <eliz@gnu.org>
13765
13766 * indent.c (compute_motion): Process display vector front to back
13767 rather than the other way around. (Bug#2496)
13768
13769 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
13770
13771 * fileio.c (Finsert_file_contents): Don't assume beg_offset is 0.
13772
13773 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
13774
13775 * minibuf.c (Fread_from_minibuffer): Doc fix.
13776
13777 2011-09-11 Eli Zaretskii <eliz@gnu.org>
13778
13779 * xdisp.c (produce_stretch_glyph): Fix a typo made in changes from
13780 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9475)
13781
13782 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
13783
13784 * fileio.c (Fvisited_file_modtime): Document `(-1 65535)' as a
13785 value for non-existent files.
13786
13787 2011-09-11 Eli Zaretskii <eliz@gnu.org>
13788
13789 * fileio.c (Finsert_file_contents): If the file cannot be opened,
13790 set its "size" to -1. This will set the modtime_size field of
13791 the corresponding buffer to -1, which is what
13792 verify-visited-file-modtime expects for files that do not exist.
13793 (Bug#9139)
13794
13795 2011-09-11 Paul Eggert <eggert@cs.ucla.edu>
13796
13797 * keymap.h (KEY_DESCRIPTION_SIZE, push_key_description): Move decls
13798 here ...
13799 * lisp.h: ... from here. push_key_description is no longer
13800 defined in keyboard.c, so its declaration should not be in
13801 lisp.h's "Defined in keyboard.c" section, and KEY_DESCRIPTION_SIZE
13802 logically belongs with push_key_description.
13803
13804 2011-09-10 Paul Eggert <eggert@cs.ucla.edu>
13805
13806 * buffer.h: Include <sys/types.h> instead of <time.h>.
13807 Otherwise, off_t wasn't defined on FreeBSD 9.0-BETA2 i386.
13808 Problem reported by Herbert J. Skuhra.
13809
13810 2011-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
13811
13812 * xml.c (parse_region): Make the parsing work for
13813 non-comment-starting XML files again (bug#9144).
13814
13815 2011-09-10 Andreas Schwab <schwab@linux-m68k.org>
13816
13817 * image.c (gif_load): Fix calculation of bottom and right corner.
13818 (Bug#9468)
13819
13820 2011-09-10 Eli Zaretskii <eliz@gnu.org>
13821
13822 * xdisp.c (MAX_DISP_SCAN): Decrease to 250. Prevents sluggish
13823 redisplay in small windows.
13824
13825 2011-09-09 Eli Zaretskii <eliz@gnu.org>
13826
13827 * frame.c (x_report_frame_params): Cast to avoid compiler warnings.
13828
13829 2011-09-08 Martin Rudalics <rudalics@gmx.at>
13830
13831 * window.c (Fset_window_prev_buffers, Fset_window_next_buffers):
13832 Operate on live windows only.
13833
13834 2011-09-08 Juanma Barranquero <lekktu@gmail.com>
13835
13836 * emacs.c (my_heap_start): #ifdef to avoid warnings when unused.
13837
13838 2011-09-07 Eli Zaretskii <eliz@gnu.org>
13839
13840 * xdisp.c (move_it_in_display_line_to): Call RESTORE_IT on ppos_it
13841 only under bidi iteration.
13842
13843 2011-09-07 Jan Djärv <jan.h.d@swipnet.se>
13844
13845 * gtkutil.c (xg_make_tool_item): Insert comment about eventbox.
13846
13847 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
13848
13849 isnan: Fix porting problem to Solaris 10 with bundled gcc.
13850 Without this fix, the command to link temacs failed due to an
13851 undefined symbol __builtin_isnan. This is because
13852 /usr/include/iso/math_c99.h #defines isnan(x) to
13853 __builtin_isnan(x), but the bundled gcc, which identifies itself
13854 as gcc 3.4.3 (csl-sol210-3_4-branch+sol_rpath), does not have
13855 a __builtin_isnan.
13856 * floatfns.c (isnan): #undef, and then #define to a clone of
13857 what's in data.c.
13858 (Fisnan): Always define, since it's always available now.
13859 (syms_of_floatfns): Always define isnan at the Lisp level.
13860
13861 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
13862
13863 * Makefile.in (gl-stamp): move-if-change now in build-aux (Bug#9169).
13864
13865 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
13866
13867 * fileio.c: Fix bugs with large file offsets (Bug#9428).
13868 The previous code assumed that file offsets (off_t values) fit in
13869 EMACS_INT variables, which is not true on typical 32-bit hosts.
13870 The code messed up by falsely reporting buffer overflow in cases
13871 such as (insert-file-contents "big" nil 1 2) into an empty buffer
13872 when "big" contains more than 2**29 bytes, even though this
13873 inserts just one byte and does not overflow the buffer.
13874 (Finsert_file_contents): Store file offsets as off_t
13875 values, not as EMACS_INT values. Check for overflow when
13876 converting between EMACS_INT and off_t. When checking for
13877 buffer overflow or for overlap, take the offsets into account.
13878 Don't use EMACS_INT for small values where int suffices.
13879 When checking for overlap, fix a typo: ZV was used where
13880 ZV_BYTE was intended.
13881 (Fwrite_region): Don't assume off_t fits into 'long'.
13882 * buffer.h (struct buffer.modtime_size): Now off_t, not EMACS_INT.
13883
13884 2011-09-05 Michael Albinus <michael.albinus@gmx.de>
13885
13886 * dbusbind.c (xd_signature_cat): Rename from signature_cat.
13887
13888 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
13889
13890 sprintf-related integer and memory overflow issues (Bug#9412).
13891
13892 * doprnt.c (doprnt): Support printing ptrdiff_t and intmax_t values.
13893 (esprintf, exprintf, evxprintf): New functions.
13894 * keyboard.c (command_loop_level): Now EMACS_INT, not int.
13895 (cmd_error): Kbd macro iterations count is now EMACS_INT, not int.
13896 (modify_event_symbol): Do not assume that the length of
13897 name_alist_or_stem is safe to alloca and fits in int.
13898 (Fexecute_extended_command): Likewise for function name and binding.
13899 (Frecursion_depth): Wrap around reliably on integer overflow.
13900 * keymap.c (push_key_description): First arg is now EMACS_INT, not int,
13901 since some callers pass EMACS_INT values.
13902 (Fsingle_key_description): Don't crash if symbol name contains more
13903 than MAX_ALLOCA bytes.
13904 * minibuf.c (minibuf_level): Now EMACS_INT, not int.
13905 (get_minibuffer): Arg is now EMACS_INT, not int.
13906 * lisp.h (get_minibuffer, push_key_description): Reflect API changes.
13907 (esprintf, exprintf, evxprintf): New decls.
13908 * window.h (command_loop_level, minibuf_level): Reflect API changes.
13909
13910 * dbusbind.c (signature_cat): New function.
13911 (xd_signature, Fdbus_register_signal):
13912 Do not overrun buffer; instead, report string overflow.
13913
13914 * dispnew.c (add_window_display_history): Don't overrun buffer.
13915 Truncate instead; this is OK since it's just a log.
13916
13917 * editfns.c (Fcurrent_time_zone): Don't overrun buffer
13918 even if the time zone offset is outlandishly large.
13919 Don't mishandle offset == INT_MIN.
13920
13921 * emacs.c (main) [NS_IMPL_COCOA]: Don't overrun buffer
13922 when creating daemon; the previous buffer-overflow check was incorrect.
13923
13924 * eval.c (verror): Simplify by rewriting in terms of evxprintf,
13925 which has the guts of the old verror function.
13926
13927 * filelock.c (lock_file_1, lock_file): Don't blindly alloca long name;
13928 use SAFE_ALLOCA instead. Use esprintf to avoid int-overflow issues.
13929
13930 * font.c: Include <float.h>, for DBL_MAX_10_EXP.
13931 (font_unparse_xlfd): Don't blindly alloca long strings.
13932 Don't assume XINT result fits in int, or that XFLOAT_DATA * 10
13933 fits in int, when using sprintf. Use single snprintf to count
13934 length of string rather than counting it via multiple sprintfs;
13935 that's simpler and more reliable.
13936 (font_unparse_fcname): Use it to avoid sprintf buffer overrun.
13937 (generate_otf_features) [0 && HAVE_LIBOTF]: Use esprintf, not
13938 sprintf, in case result does not fit in int.
13939
13940 * fontset.c (num_auto_fontsets): Now printmax_t, not int.
13941 (fontset_from_font): Print it.
13942
13943 * frame.c (tty_frame_count): Now printmax_t, not int.
13944 (make_terminal_frame, set_term_frame_name): Print it.
13945 (x_report_frame_params): In X, window IDs are unsigned long,
13946 not signed long, so print them as unsigned.
13947 (validate_x_resource_name): Check for implausibly long names,
13948 and don't assume name length fits in 'int'.
13949 (x_get_resource_string): Don't blindly alloca invocation name;
13950 use SAFE_ALLOCA. Use esprintf, not sprintf, in case result does
13951 not fit in int.
13952
13953 * gtkutil.c: Include <float.h>, for DBL_MAX_10_EXP.
13954 (xg_check_special_colors, xg_set_geometry):
13955 Make sprintf buffers a bit bigger, to avoid potential buffer overrun.
13956
13957 * lread.c (dir_warning): Don't blindly alloca buffer; use SAFE_ALLOCA.
13958 Use esprintf, not sprintf, in case result does not fit in int.
13959
13960 * macros.c (executing_kbd_macro_iterations): Now EMACS_INT, not int.
13961 (Fend_kbd_macro): Don't mishandle MOST_NEGATIVE_FIXNUM by treating
13962 it as a large positive number.
13963 (Fexecute_kbd_macro): Don't assume repeat count fits in int.
13964 * macros.h (executing_kbd_macro_iterations): Now EMACS_INT, not int.
13965
13966 * nsterm.m ((NSSize)windowWillResize): Use esprintf, not sprintf,
13967 in case result does not fit in int.
13968
13969 * print.c (float_to_string): Detect width overflow more reliably.
13970 (print_object): Make sprintf buffer a bit bigger, to avoid potential
13971 buffer overrun. Don't assume list length fits in 'int'. Treat
13972 print length of 0 as 0, not as infinity; to be consistent with other
13973 uses of print length in this function. Don't overflow print length
13974 index. Don't assume hash table size fits in 'long', or that
13975 vectorlike size fits in 'unsigned long'.
13976
13977 * process.c (make_process): Use printmax_t, not int, to format
13978 process-name gensyms.
13979
13980 * sysdep.c (snprintf) [! HAVE_SNPRINTF]: New function.
13981
13982 * term.c (produce_glyphless_glyph): Make sprintf buffer a bit bigger
13983 to avoid potential buffer overrun.
13984
13985 * xfaces.c (x_update_menu_appearance): Don't overrun buffer
13986 if X resource line is longer than 512 bytes.
13987
13988 * xfns.c (x_window): Make sprintf buffer a bit bigger
13989 to avoid potential buffer overrun.
13990
13991 * xterm.c (x_io_error_quitter): Don't overrun sprintf buffer.
13992
13993 * xterm.h (x_check_errors): Add ATTRIBUTE_FORMAT_PRINTF.
13994
13995 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
13996
13997 Integer overflow fixes for scrolling, etc.
13998 Without these, Emacs silently mishandles large integers sometimes.
13999 For example, "C-u 4294967297 M-x recenter" was treated as if
14000 it were "C-u 1 M-x recenter" on a typical 64-bit host.
14001
14002 * xdisp.c (try_window_id): Check Emacs fixnum range before
14003 converting to 'int'.
14004
14005 * window.c (window_scroll_line_based, Frecenter):
14006 Check that an Emacs fixnum is in range before assigning it to 'int'.
14007 (Frecenter, Fmove_to_window_line): Use EMACS_INT, not int, for
14008 values converted from Emacs fixnums.
14009 (Frecenter): Don't wrap around a line count if it is out of 'int'
14010 range; instead, treat it as an extreme value.
14011 (Fset_window_configuration, compare_window_configurations):
14012 Use ptrdiff_t, not int, for index that might exceed 2 GiB.
14013
14014 * search.c (Freplace_match): Use ptrdiff_t, not int, for indexes
14015 that can exceed INT_MAX. Check that EMACS_INT value is in range
14016 before assigning it to the (possibly-narrower) index.
14017 (match_limit): Don't assume that a fixnum can fit in 'int'.
14018
14019 * print.c (print_object): Use ptrdiff_t, not int, for index that can
14020 exceed INT_MAX.
14021
14022 * indent.c (position_indentation): Now takes ptrdiff_t, not int.
14023 (Fvertical_motion): Don't wrap around LINES values that don't fit
14024 in 'int'. Instead, treat them as extreme values. This is good
14025 enough for windows, which can't have more than INT_MAX lines anyway.
14026
14027 2011-09-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
14028
14029 * Require libxml/parser.h to avoid compilation warning.
14030
14031 * emacs.c (shut_down_emacs): Call xmlCleanupParser on shutdown.
14032
14033 * xml.c (parse_region): Don't call xmlCleanupParser after parsing,
14034 since this reportedly can destroy thread storage.
14035
14036 2011-08-30 Chong Yidong <cyd@stupidchicken.com>
14037
14038 * syntax.c (find_defun_start): Update all cache variables if
14039 exiting early (Bug#9401).
14040
14041 2011-08-30 Eli Zaretskii <eliz@gnu.org>
14042
14043 * image.c (x_bitmap_pixmap): Cast to int to avoid compiler warnings.
14044
14045 * xdisp.c (produce_stretch_glyph): No longer static, compiled also
14046 when HAVE_WINDOW_SYSTEM is not defined. Support both GUI and TTY
14047 frames. Call tty_append_glyph in the TTY case. (Bug#9402)
14048
14049 * term.c (tty_append_glyph): New function.
14050 (produce_stretch_glyph): Static function and its prototype deleted.
14051
14052 * dispextern.h (produce_stretch_glyph, tty_append_glyph):
14053 Add prototypes.
14054
14055 2011-08-29 Paul Eggert <eggert@cs.ucla.edu>
14056
14057 * image.c (parse_image_spec): Check for nonnegative, not for positive,
14058 when checking :margin (Bug#9390).
14059 (IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR):
14060 Rename from IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR,
14061 so that the name doesn't mislead. All uses changed.
14062
14063 2011-08-28 Johan Bockgård <bojohan@gnu.org>
14064
14065 * term.c (init_tty) [HAVE_GPM]: Move mouse settings after
14066 set_tty_hooks.
14067
14068 2011-08-27 Eli Zaretskii <eliz@gnu.org>
14069
14070 * xdisp.c (move_it_to): Don't bail out early when reaching
14071 position beyond to_charpos, if we are scanning backwards.
14072 (move_it_vertically_backward): When DY == 0, make sure we get to
14073 the first character in the line after the newline.
14074
14075 2011-08-27 Paul Eggert <eggert@cs.ucla.edu>
14076
14077 * ccl.c: Improve and simplify overflow checking (Bug#9196).
14078 (ccl_driver): Do not generate an out-of-range pointer.
14079 (Fccl_execute_on_string): Remove unnecessary check for
14080 integer overflow, noted by Stefan Monnier in
14081 <http://lists.gnu.org/archive/html/emacs-devel/2011-08/msg00979.html>.
14082 Remove a FIXME that didn't need fixing.
14083 Simplify the newly-introduced buffer reallocation code.
14084
14085 2011-08-27 Juanma Barranquero <lekktu@gmail.com>
14086
14087 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on lib/verify.h.
14088
14089 2011-08-26 Paul Eggert <eggert@cs.ucla.edu>
14090
14091 Integer and memory overflow issues (Bug#9196).
14092
14093 * doc.c (get_doc_string): Rework so that
14094 get_doc_string_buffer_size is the actual buffer size, rather than
14095 being 1 less than the actual buffer size; this makes xpalloc more
14096 convenient.
14097
14098 * image.c (x_allocate_bitmap_record, cache_image):
14099 * xselect.c (Fx_register_dnd_atom):
14100 Simplify previous changes by using xpalloc.
14101
14102 * buffer.c (overlay_str_len): Now ptrdiff_t, not EMACS_INT,
14103 since either will do and ptrdiff_t is convenient with xpalloc.
14104
14105 * charset.c (charset_table_size)
14106 (struct charset_sort_data.priority): Now ptrdiff_t.
14107 (charset_compare): Don't overflow if priorities differ greatly.
14108 (Fsort_charsets): Don't assume list length fits in int.
14109 Check for size-calculation overflow when allocating sort data.
14110 (syms_of_charset): Allocate an initial charset table that is
14111 just under 64 KiB, to avoid problems with glibc malloc and mmap.
14112
14113 * cmds.c (internal_self_insert): Check for size-calculation overflow.
14114
14115 * composite.h (struct composition.glyph_len): Now int, not unsigned.
14116 The actual value is always <= INT_MAX, and leaving it unsigned made
14117 overflow checking harder.
14118
14119 * dispextern.h (struct glyph_matrix.rows_allocated)
14120 (struct face_cache.size): Now ptrdiff_t, for convenience in use
14121 with xpalloc. The values are still always <= INT_MAX.
14122
14123 * indent.c (compute_motion): Adjust to region_cache_forward sig change.
14124
14125 * lisp.h (xnmalloc, xnrealloc, xpalloc): New decls.
14126 (SAFE_NALLOCA): New macro.
14127
14128 * region-cache.c (struct boundary.pos, find_cache_boundary)
14129 (move_cache_gap, insert_cache_boundary, delete_cache_boundaries)
14130 (set_cache_region, invalidate_region_cache)
14131 (revalidate_region_cache, know_region_cache, region_cache_forward)
14132 (region_cache_backward, pp_cache):
14133 Use ptrdiff_t, not EMACS_INT, since either will do. This is needed
14134 so that ptrdiff_t * can be passed to xpalloc.
14135 (struct region_cache): Similarly, for gap_start, gap_len, cache_len,
14136 beg_unchanged, end_unchanged, buffer_beg, buffer_end members.
14137 (pp_cache): Don't assume cache_len fits in int.
14138 * region-cache.h: Adjust extern decls to match.
14139
14140 * search.c (scan_buffer, Freplace_match): Use ptrdiff_t, not
14141 EMACS_INT, since either will do, for xpalloc.
14142
14143 * alloc.c: Include verify.h, and check that int fits in ptrdiff_t.
14144 (xnmalloc, xnrealloc, xpalloc): New functions.
14145
14146 * bidi.c (bidi_shelve_header_size): New constant.
14147 (bidi_cache_ensure_space, bidi_shelve_cache): Use it.
14148 (bidi_cache_ensure_space): Avoid integer overflow when allocating.
14149
14150 * bidi.c (bidi_cache_shrink):
14151 * buffer.c (overlays_at, overlays_in, record_overlay_string)
14152 (overlay_strings):
14153 Don't update size of array until after memory allocation succeeds,
14154 because xmalloc/xrealloc may not return.
14155 (struct sortstrlist.bytes): Now ptrdiff_t, as EMACS_INT doesn't help
14156 now that we have proper integer overflow checking.
14157 (record_overlay_string, overlay_strings): Catch overflows when
14158 calculating size of overlay_str_buf.
14159
14160 * callproc.c (Fcall_process): Check for size overflow when
14161 calculating size of args2.
14162 (child_setup): Avoid overflow by using size_t rather than ptrdiff_t.
14163 Normally we prefer signed values, but sticking with ptrdiff_t would
14164 require adding more-complicated checks.
14165
14166 * ccl.c (Fccl_execute_on_string): Check for memory overflow.
14167 Use ptrdiff_t rather than EMACS_INT where ptrdiff_t will do.
14168 Redo buffer-overflow calculations to avoid integer overflow.
14169 Add a FIXME comment where memory seems to be over-allocated.
14170
14171 * character.c (Fstring): Check for size-calculation overflow.
14172
14173 * coding.c (produce_chars): Redo buffer-overflow calculations to avoid
14174 unnecessary integer overflow. Check for size overflow.
14175 (encode_coding_object): Don't update size until xmalloc succeeds.
14176
14177 * composite.c (get_composition_id): Check for overflow in glyph
14178 length calculations.
14179
14180 Integer and memory overflow fixes for display code.
14181 * dispextern.h (struct glyph_pool.nglyphs): Now ptrdiff_t, not int.
14182 * dispnew.c (adjust_glyph_matrix, realloc_glyph_pool)
14183 (scrolling_window): Check for overflow in size calculations.
14184 (line_draw_cost, realloc_glyph_pool, add_row_entry):
14185 Don't assume glyph table len fits in int.
14186 (struct row_entry.bucket, row_entry_pool_size, row_entry_idx)
14187 (row_table_size): Now ptrdiff_t, not int.
14188 (scrolling_window): Avoid overflow in size calculations.
14189 Don't update size until allocation succeeds.
14190 * fns.c (concat): Check for overflow in size calculations.
14191 (next_almost_prime): Verify NEXT_ALMOST_PRIME_LIMIT.
14192 * lisp.h (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
14193 (NEXT_ALMOST_PRIME_LIMIT): New constant.
14194
14195 * doc.c (get_doc_string_buffer_size): Now ptrdiff_t, not int.
14196 (get_doc_string): Check for size calculation overflow.
14197 Don't update size until allocation succeeds.
14198 (get_doc_string, Fsubstitute_command_keys): Use ptrdiff_t, not
14199 EMACS_INT, where ptrdiff_t will do.
14200 (Fsubstitute_command_keys): Check for string overflow.
14201
14202 * editfns.c (set_time_zone_rule): Don't assume environment length
14203 fits in int.
14204 (message_length): Now ptrdiff_t, not int.
14205 (Fmessage_box): Don't update size until allocation succeeds.
14206 Don't assume message length fits in int.
14207 (Fformat): Use ptrdiff_t, not EMACS_INT, where ptrdiff_t will do.
14208
14209 * emacs.c (main): Do not reallocate argv, since there is a null at
14210 the end that can be overwritten, and this way there's no need to
14211 worry about size-calculation overflow.
14212 (sort_args): Check for size-calculation overflow.
14213
14214 * eval.c (init_eval_once, grow_specpdl): Don't update size until
14215 alloc succeeds.
14216 (call_debugger, grow_specpdl): Redo calculations to avoid overflow.
14217
14218 * frame.c (set_menu_bar_lines, x_set_frame_parameters)
14219 (x_set_scroll_bar_width, x_figure_window_size):
14220 Check for integer overflow.
14221 (x_set_alpha): Do not assume XINT fits in int.
14222
14223 * frame.h (struct frame): Use int, not EMACS_INT, where int works.
14224 This is for the members text_lines, text_cols, total_lines, total_cols,
14225 where the system imposes an 'int' limit.
14226
14227 * fringe.c (Fdefine_fringe_bitmap):
14228 Don't update size until alloc works.
14229
14230 * ftfont.c (ftfont_get_open_type_spec, setup_otf_gstring)
14231 (ftfont_shape_by_flt): Check for integer overflow in size calculations.
14232
14233 * gtkutil.c (get_utf8_string, xg_store_widget_in_map):
14234 Check for size-calculation overflow.
14235 (get_utf8_string): Use ptrdiff_t, not size_t, where either will
14236 do, as we prefer signed integers.
14237 (id_to_widget.max_size, id_to_widget.used)
14238 (xg_store_widget_in_map, xg_remove_widget_from_map)
14239 (xg_get_widget_from_map, xg_get_scroll_id_for_window)
14240 (xg_remove_scroll_bar, xg_update_scrollbar_pos):
14241 Use and return ptrdiff_t, not int.
14242 (xg_gtk_scroll_destroy): Don't assume ptrdiff_t fits in int.
14243 * gtkutil.h: Change prototypes to match the above.
14244
14245 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): Remove; these
14246 are duplicate now that they've been promoted to lisp.h.
14247 (x_allocate_bitmap_record, x_alloc_image_color)
14248 (make_image_cache, cache_image, xpm_load):
14249 Don't update size until alloc is done.
14250 (xpm_load, lookup_rgb_color, lookup_pixel_color, x_to_xcolors)
14251 (x_detect_edges):
14252 Check for size calculation overflow.
14253 (ct_colors_allocated_max): New constant.
14254 (x_to_xcolors, x_detect_edges): Reorder multiplicands to avoid
14255 overflow.
14256
14257 * keyboard.c (read_char, menu_bar_items, tool_bar_items)
14258 (read_char_x_menu_prompt, read_char_minibuf_menu_width)
14259 (read_char_minibuf_menu_prompt, follow_key, read_key_sequence):
14260 Use ptrdiff_t, not int, to count maps.
14261 (read_char_minibuf_menu_prompt): Check for overflow in size
14262 calculations. Don't update size until allocation succeeds.
14263 Redo calculations to avoid overflow.
14264 * keyboard.h: Change prototypes to match the above.
14265
14266 * keymap.c (cmm_size, current_minor_maps): Use ptrdiff_t, not int,
14267 to count maps.
14268 (current_minor_maps): Check for size calculation overflow.
14269 * keymap.h: Change prototypes to match the above.
14270
14271 * lread.c (read1, init_obarray): Don't update size until alloc done.
14272
14273 * macros.c (Fstart_kbd_macro): Don't update size until alloc done.
14274 (store_kbd_macro_char): Reorder multiplicands to avoid overflow.
14275
14276 * nsterm.h (struct ns_color_table.size, struct ns_color_table.avail):
14277 Now ptrdiff_t, not int.
14278 * nsterm.m (ns_index_color): Use ptrdiff_t, not int, for table indexes.
14279 (ns_draw_fringe_bitmap): Rewrite to avoid overflow.
14280
14281 * process.c (Fnetwork_interface_list): Check for overflow
14282 in size calculation.
14283
14284 * region-cache.c (move_cache_gap): Check for size calculation overflow.
14285
14286 * scroll.c (do_line_insertion_deletion_costs): Check for size calc
14287 overflow. Don't bother calling xmalloc when xrealloc will do.
14288
14289 * search.c (Freplace_match): Check for size calculation overflow.
14290 (Fset_match_data): Don't assume list lengths fit in 'int'.
14291
14292 * sysdep.c (system_process_attributes): Use ptrdiff_t, not int,
14293 for command line length. Do not attempt to address one before the
14294 beginning of an array, as that's not portable.
14295
14296 * term.c (max_frame_lines): Remove; unused.
14297 (encode_terminal_src_size, encode_terminal_dst_size): Now ptrdiff_t,
14298 not int.
14299 (encode_terminal_code, calculate_costs): Check for size
14300 calculation overflow.
14301 (encode_terminal_code): Use ptrdiff_t, not int, to record glyph
14302 table lengths and related sizes. Don't update size until alloc
14303 done. Redo calculations to avoid overflow.
14304 (calculate_costs): Don't bother calling xmalloc when xrealloc will do.
14305
14306 * termcap.c (tgetent): Use ptrdiff_t, not int, to record results of
14307 subtracting pointers.
14308 (gobble_line): Check for overflow more carefully. Don't update size
14309 until alloc done.
14310
14311 * tparam.c (tparam1): Use ptrdiff_t, not int, for sizes.
14312 Don't update size until alloc done.
14313 Redo size calculations to avoid overflow.
14314 Check for size calculation overflow.
14315 (main) [DEBUG]: Fix typo in invoking tparam1.
14316
14317 * xdisp.c (store_mode_line_noprop_char, x_consider_frame_title):
14318 Use ptrdiff_t, not int, for sizes.
14319 (store_mode_line_noprop_char): Don't update size until alloc done.
14320
14321 * xfaces.c (lface_id_to_name_size, Finternal_make_lisp_face):
14322 Use ptrdiff_t, not int, for sizes.
14323 (Finternal_make_lisp_face, cache_face):
14324 Check for size calculation overflow.
14325 (cache_face): Treat size calculation overflows as if they were
14326 memory exhaustion (the usual treatment), rather than aborting.
14327
14328 * xfns.c (x_encode_text, x_set_name_internal)
14329 (Fx_change_window_property): Use ptrdiff_t, not int, to count
14330 sizes, since they can exceed INT_MAX in size. Check for size
14331 calculation overflow.
14332
14333 * xgselect.c (gfds_size): Now ptrdiff_t, for convenience with xpalloc.
14334 (xg_select): Check for size calculation overflow.
14335 Don't update size until alloc done.
14336
14337 * xrdb.c (get_environ_db): Don't assume path length fits in int,
14338 as sprintf is limited to int lengths.
14339
14340 * xselect.c (X_LONG_SIZE, X_SHRT_MAX, X_SHRT_MIN, X_LONG_MAX)
14341 (X_LONG_MIN): New macros.
14342 Use them to make the following changes clearer.
14343 (MAX_SELECTION_QUANTUM): Make the other bounds on this value clearer.
14344 This change doesn't affect the value now, but it may help remind
14345 future maintainers not to raise the value too much later.
14346 (SELECTION_QUANTUM): Remove, replacing with ...
14347 (selection_quantum): ... new function, which avoids overflow.
14348 All uses changed.
14349 (struct selection_data.size): Now ptrdiff_t, not int, to avoid
14350 assumption that selection length fits in 'int'.
14351 (x_reply_selection_request, x_handle_selection_request)
14352 (x_get_window_property, receive_incremental_selection)
14353 (x_get_window_property_as_lisp_data, selection_data_to_lisp_data)
14354 (lisp_data_to_selection_data, clean_local_selection_data):
14355 Use ptrdiff_t, not int, to record length of selection.
14356 (x_reply_selection_request, x_get_window_property)
14357 (receive_incremental_selection, x_property_data_to_lisp):
14358 Redo calculations to avoid overflow.
14359 (x_reply_selection_request): When sending hint, ceiling it at
14360 X_LONG_MAX rather than relying on wraparound overflow to send
14361 something.
14362 (x_get_window_property, receive_incremental_selection)
14363 (lisp_data_to_selection_data, x_property_data_to_lisp):
14364 Check for size-calculation overflow.
14365 (x_get_window_property, receive_incremental_selection)
14366 (lisp_data_to_selection_data, Fx_register_dnd_atom):
14367 Don't store size until memory allocation succeeds.
14368 (x_get_window_property): Plug memory leak on memory exhaustion.
14369 Don't double-block input; malloc is safe here. Don't assume 2**34
14370 - 4 fits in unsigned long. Add an xassert to check
14371 XGetWindowProperty overflow. Be more careful about overflow
14372 calculations, and distinguish size from memory overflow better.
14373 (receive_incremental_selection): When tracing, don't assume
14374 unsigned int is less than INT_MAX.
14375 (x_selection_data_to_lisp_data): Remove unnecessary (and in theory
14376 harmful) conversions of unsigned short to int.
14377 (lisp_data_to_selection_data): Don't assume that integers
14378 in the range -65535 through -1 fit in an X unsigned short.
14379 Don't assume that ULONG_MAX == X_ULONG_MAX. Don't store into
14380 result parameters unless successful. Rely on cons_to_unsigned
14381 to report problems with elements; the old code wasn't right anyway.
14382 (x_check_property_data): Check for int overflow; we cannot use
14383 a wider type due to X limits.
14384 (x_handle_dnd_message): Use unsigned int, to avoid int overflow.
14385
14386 * xsmfns.c (smc_save_yourself_CB): Check for size calc overflow.
14387
14388 * xterm.c (x_color_cells, x_send_scrollbar_event, handle_one_xevent)
14389 (x_term_init): Check for size calculation overflow.
14390 (x_color_cells): Don't store size until memory allocation succeeds.
14391 (handle_one_xevent): Use ptrdiff_t, not int, for byte counts.
14392 Don't assume alloca size is less than MAX_ALLOCA.
14393 (x_term_init): Don't assume length fits in int (sprintf is limited
14394 to int size).
14395
14396 Use ptrdiff_t for composition IDs.
14397 * character.c (lisp_string_width):
14398 * composite.c (composition_table_size, n_compositions)
14399 (get_composition_id, composition_gstring_from_id):
14400 * dispextern.h (struct glyph_string.cmp_id, struct composition_it.id):
14401 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING):
14402 * window.c (Frecenter):
14403 Use ptrdiff_t, not int, for composition IDs.
14404 * composite.c (get_composition_id): Check for integer overflow.
14405 * composite.h: Adjust prototypes to match the above changes.
14406
14407 Use ptrdiff_t for hash table indexes.
14408 * category.c (hash_get_category_set):
14409 * ccl.c (ccl_driver):
14410 * charset.h (struct charset.hash_index, CHECK_CHARSET_GET_ID):
14411 * coding.c (coding_system_charset_list, detect_coding_system):
14412 * coding.h (struct coding_system.id):
14413 * composite.c (get_composition_id, gstring_lookup_cache):
14414 * fns.c (hash_lookup, hash_put, Fgethash, Fputhash):
14415 * image.c (xpm_get_color_table_h):
14416 * lisp.h (hash_lookup, hash_put):
14417 * minibuf.c (Ftest_completion):
14418 Use ptrdiff_t for hash table indexes, not int (which is too
14419 narrow, on 64-bit hosts) or EMACS_INT (which is too wide, on
14420 32-bit --with-wide-int hosts).
14421
14422 * charset.c (Fdefine_charset_internal): Check for integer overflow.
14423 Add a FIXME comment about memory leaks.
14424 (syms_of_charset): Don't assume xmalloc returns.
14425
14426 Don't assume that stated character widths fit in int.
14427 * character.c (Fchar_width, c_string_width, lisp_string_width):
14428 * character.h (CHAR_WIDTH):
14429 * indent.c (MULTIBYTE_BYTES_WIDTH):
14430 Use sanitize_char_width to avoid undefined and/or bad behavior
14431 with outlandish widths.
14432 * character.h (sanitize_tab_width): Rename from sanitize_width,
14433 now that we have two such functions. All uses changed.
14434 (sanitize_char_width): New inline function.
14435
14436 Don't assume that tab-width fits in int.
14437 * character.h (sanitize_width): New inline function.
14438 (SANE_TAB_WIDTH): New macro.
14439 (ASCII_CHAR_WIDTH): Use it.
14440 * indent.c (sane_tab_width): Remove. All uses replaced by
14441 SANE_TAB_WIDTH (current_buffer).
14442 * xdisp.c (init_iterator): Use SANE_TAB_WIDTH.
14443
14444 * fileio.c: Integer overflow issues with file modes.
14445 (Fset_file_modes, auto_save_1): Don't assume EMACS_INT fits in int.
14446
14447 * charset.c (read_hex): New arg OVERFLOW. All uses changed.
14448 Remove unreachable code.
14449 (read_hex, load_charset_map_from_file): Check for integer overflow.
14450
14451 * xterm.c: Don't go over XClientMessageEvent limit.
14452 (scroll_bar_windows_size): Now ptrdiff_t, as we prefer signed.
14453 (x_send_scroll_bar_event): Likewise. Check that the size does not
14454 exceed limits imposed by XClientMessageEvent, as well as the usual
14455 ptrdiff_t and size_t limits.
14456
14457 * keyboard.c: Overflow, signedness and related fixes.
14458 (make_lispy_movement): Use same integer type in forward decl
14459 that is used in the definition.
14460 (read_key_sequence, keyremap_step):
14461 Change bufsize argument back to int, undoing my 2011-03-30 change.
14462 We prefer signed types, and int is wide enough here.
14463 (parse_tool_bar_item): Don't assume tool_bar_max_label_size is less
14464 than TYPE_MAXIMUM (EMACS_INT) / 2. Don't let the label size grow
14465 larger than STRING_BYTES_BOUND. Use ptrdiff_t for Emacs string
14466 length, not size_t. Use ptrdiff_t for index, not int.
14467 (keyremap_step, read_key_sequence): Redo bufsize check to avoid
14468 possibility of integer overflow.
14469
14470 Overflow, signedness and related fixes for images.
14471
14472 * dispextern.h (struct it.stack[0].u.image.image_id)
14473 (struct_it.image_id, struct image.id, struct image_cache.size)
14474 (struct image_cache.used, struct image_cache.ref_count):
14475 * gtkutil.c (update_frame_tool_bar):
14476 * image.c (x_reference_bitmap, Fimage_size, Fimage_mask_p)
14477 (Fimage_metadata, free_image_cache, clear_image_cache, lookup_image)
14478 (cache_image, mark_image_cache, x_kill_gs_process, Flookup_image):
14479 * nsmenu.m (update_frame_tool_bar):
14480 * xdisp.c (calc_pixel_width_or_height):
14481 * xfns.c (image_cache_refcount):
14482 Image IDs are now ptrdiff_t, not int, to avoid arbitrary limits
14483 on typical 64-bit hosts.
14484
14485 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
14486 (x_bitmap_pixmap, x_create_x_image_and_pixmap):
14487 Omit unnecessary casts to int.
14488 (parse_image_spec): Check that integers fall into 'int' range
14489 when the callers expect that.
14490 (image_ascent): Redo ascent calculation to avoid int overflow.
14491 (clear_image_cache): Avoid overflow when sqrt (INT_MAX) < nimages.
14492 (lookup_image): Remove unnecessary tests.
14493 (xbm_image_p): Locals are now of int, not EMACS_INT,
14494 since parse_image_check makes sure they fit into int.
14495 (png_load, gif_load, svg_load_image):
14496 Prefer int to unsigned where either will do.
14497 (tiff_handler): New function, combining the cores of the
14498 old tiff_error_handler and tiff_warning_handler.
14499 This function is rewritten to use vsnprintf and thereby avoid
14500 stack buffer overflows. It uses only the features of vsnprintf
14501 that are common to both POSIX and native Microsoft.
14502 (tiff_error_handler, tiff_warning_handler): Use it.
14503 (tiff_load, gif_load, imagemagick_load_image):
14504 Don't assume :index value fits in 'int'.
14505 (gif_load): Omit unnecessary cast to double, and avoid double-rounding.
14506 (imagemagick_load_image): Check that crop parameters fit into
14507 the integer types that MagickCropImage accepts. Don't assume
14508 Vimagemagick_render_type has a nonnegative value. Don't assume
14509 size_t fits in 'long'.
14510 (gs_load): Use printmax_t to print the widest integers possible.
14511 Check for integer overflow when computing image height and width.
14512
14513 2011-08-26 Eli Zaretskii <eliz@gnu.org>
14514
14515 * xdisp.c (redisplay_window): Don't force window start if point
14516 will be invisible in the resulting window. (Bug#9324)
14517
14518 2011-08-25 Eli Zaretskii <eliz@gnu.org>
14519
14520 * xdisp.c (compute_display_string_pos): Return 2 in DISP_PROP when
14521 the display spec is of the form `(space ...)'.
14522 (handle_display_spec): Return the value returned by
14523 handle_single_display_spec, not just 1 or zero.
14524 (handle_single_display_spec): If the display spec is of the form
14525 `(space ...)', and specifies display in the text area, return 2
14526 rather than 1.
14527 (try_cursor_movement): Check for the need to scroll more
14528 accurately, and prefer exact match for point under bidi.
14529 Don't advance `row' beyond the last row of the window.
14530
14531 * dispextern.h (struct bidi_it): Rename the disp_prop_p member
14532 into disp_prop; all users changed.
14533
14534 * bidi.c (bidi_fetch_char): If compute_display_string_pos returns
14535 DISP_PROP = 2, substitute the u+2029 PARAGRAPH SEPARATOR character
14536 for the text covered by the display property.
14537
14538 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
14539
14540 * buffer.c (Fbury_buffer_internal): Rename from Funrecord_buffer.
14541 Change return value to nil.
14542 (Frecord_buffer): Delete unused function.
14543
14544 2011-08-24 Eli Zaretskii <eliz@gnu.org>
14545
14546 * xdisp.c (Fcurrent_bidi_paragraph_direction): For unibyte
14547 buffers, return left-to-right.
14548 (set_cursor_from_row): Consider candidate row a win if its glyph
14549 represents a newline and point is on that newline. Fixes cursor
14550 positioning on the newline at EOL of R2L text within L2R
14551 paragraph, and vice versa.
14552 (try_cursor_movement): Check continued rows, in addition to
14553 continuation rows. Fixes unwarranted scroll when point enters a
14554 continued line of R2L text within an L2R paragraph, or vice versa.
14555 (cursor_row_p): Consider the case of point being equal to
14556 MATRIX_ROW_END_CHARPOS. Prevents cursor being stuck when moving
14557 from the end of a short line to the beginning of a continued line
14558 of R2L text within L2R paragraph.
14559 (RECORD_MAX_MIN_POS): For max_pos, use IT_CHARPOS even for
14560 composed characters.
14561
14562 * bidi.c (bidi_check_type): Use xassert.
14563 (bidi_cache_iterator_state): Update the disp_pos and disp_prop_p
14564 members.
14565
14566 2011-08-23 Eli Zaretskii <eliz@gnu.org>
14567
14568 * bidi.c (bidi_get_type): Abort if we get zero as the bidi type of
14569 a character.
14570
14571 2011-08-23 Chong Yidong <cyd@stupidchicken.com>
14572
14573 * nsfont.m (ns_otf_to_script): Fix typo.
14574
14575 2011-08-22 Kenichi Handa <handa@m17n.org>
14576
14577 * chartab.c (Fset_char_table_extra_slot): Do not inhibit setting a
14578 extra slot even if the purpose is char-code-property-table.
14579
14580 2011-08-23 Eli Zaretskii <eliz@gnu.org>
14581
14582 * xdisp.c (redisplay_window): When computing centering_position,
14583 account for the height of the header line. (Bug#8874)
14584
14585 * dispnew.c (buffer_posn_from_coords): Use buf_charpos_to_bytepos
14586 instead of CHAR_TO_BYTE. Fixes a crash when a completion
14587 candidate is selected by the mouse, and that candidate has a
14588 composed character under the mouse.
14589
14590 * xdisp.c (x_produce_glyphs): Set it->nglyphs to 1. Fixes pixel
14591 coordinates reported by pos-visible-in-window-p for a composed
14592 character in column zero.
14593
14594 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
14595
14596 * cmds.c (Fself_insert_command): Mention post-self-insert-hook.
14597
14598 2011-08-22 Eli Zaretskii <eliz@gnu.org>
14599
14600 * xdisp.c (BUFFER_POS_REACHED_P): If this is a composition,
14601 consider it a hit if to_charpos is anywhere in the range of the
14602 composed buffer positions.
14603
14604 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
14605
14606 * image.c (gif_load): Don't assume that each subimage has the same
14607 dimensions as the base image. Handle disposal method that is
14608 "undefined" by the gif spec (Bug#9335).
14609
14610 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
14611
14612 * eval.c (Fsignal): Handle `debug' symbol in error handler (Bug#9329).
14613 (Fcondition_case): Document `debug' symbol in error handler.
14614
14615 2011-08-19 Eli Zaretskii <eliz@gnu.org>
14616
14617 * xfaces.c (face_at_buffer_position): Avoid repeated evaluation of
14618 face ID by FACE_FROM_ID, and avoid a crash when mouse is moved
14619 from an Org mode buffer to a Speedbar frame.
14620
14621 * xdisp.c (RECORD_MAX_MIN_POS): If the display element comes from
14622 a composition, take its buffer position from IT->cmp_it.charpos.
14623 Fixes cursor positioning at the beginning of a line that begins
14624 with a composed character.
14625
14626 2011-08-18 Eli Zaretskii <eliz@gnu.org>
14627
14628 * bidi.c (bidi_get_type): If bidi_type_table reports zero as the
14629 character bidirectional type, use STRONG_L instead. Fixes crashes
14630 in a buffer produced by `describe-categories'.
14631
14632 * dispextern.h (struct bidi_it): Move disp_pos and disp_prop_p
14633 members before the level stack, so they would be saved and
14634 restored when copying iterator state. Fixes incorrect reordering
14635 around TABs covered by display properties.
14636
14637 2011-08-18 Andreas Schwab <schwab@linux-m68k.org>
14638
14639 * process.c (Fnetwork_interface_list): Correctly determine buffer size.
14640
14641 2011-08-17 Chong Yidong <cyd@stupidchicken.com>
14642
14643 * eval.c (internal_condition_case, internal_condition_case_1)
14644 (internal_condition_case_2, internal_condition_case_n):
14645 Remove unnecessary aborts (Bug#9081).
14646
14647 2011-08-17 Eli Zaretskii <eliz@gnu.org>
14648
14649 * lread.c (Fload) [DOS_NT]: If `openp' returns -2, but the file
14650 has no `load' handler, try opening the file locally. (Bug#9311)
14651
14652 2011-08-16 Ken Brown <kbrown@cornell.edu>
14653
14654 * gmalloc.c: Expand comment.
14655
14656 2011-08-16 Eli Zaretskii <eliz@gnu.org>
14657
14658 * xdisp.c (set_cursor_from_row): Don't accept a previous candidate
14659 if it fails the cursor_row_p test. Fixes cursor positioning at ZV.
14660
14661 2011-08-16 Ken Brown <kbrown@cornell.edu>
14662
14663 Fix memory allocation problems in Cygwin build (Bug#9273).
14664
14665 * unexcw.c ( __malloc_initialized): Declare external variable.
14666 (fixup_executable): Force the dumped emacs to reinitialize malloc.
14667
14668 * gmalloc.c [CYGWIN] (bss_sbrk_heapbase, bss_sbrk_heapinfo):
14669 New variables.
14670 (malloc_initialize_1) [CYGWIN]: Prepare for reinitializing the
14671 dumped emacs.
14672 (_free_internal_nolock) [CYGWIN]: Ignore requests to free storage
14673 in the static heap.
14674 [CYGWIN] (special_realloc): New function.
14675 (_realloc_internal_nolock) [CYGWIN]: Use the new function on
14676 requests to realloc storage in the static heap.
14677
14678 2011-08-15 Paul Eggert <eggert@cs.ucla.edu>
14679
14680 * bidi.c (bidi_initialize): Remove unused local.
14681
14682 2011-08-15 Eli Zaretskii <eliz@gnu.org>
14683
14684 * bidimirror.h:
14685 * biditype.h: Remove file.
14686 * makefile.w32-in ($(BLD)/bidi.$(O)):
14687 * deps.mk (bidi.o): Remove biditype.h and bidimirror.h.
14688
14689 * dispextern.h: Fix a typo in the comment to bidi_type_t.
14690
14691 * chartab.c: Improve commentary for the uniprop_table API.
14692
14693 * bidi.c (bidi_paragraph_init): Support zero value of
14694 bidi_ignore_explicit_marks_for_paragraph_level.
14695 (bidi_initialize): Use uniprop_table instead of including
14696 biditype.h and bidimirror.h.
14697
14698 * xdisp.c (move_it_in_display_line_to): Don't reset pixel
14699 coordinates of the iterator when restoring from ppos_it.
14700 (Bug#9296)
14701
14702 2011-08-14 Kenichi Handa <handa@m17n.org>
14703
14704 * process.c (create_process): Call setup_process_coding_systems
14705 after the pid of the process is set to -1 (Bug#8162).
14706
14707 2011-08-14 Eli Zaretskii <eliz@gnu.org>
14708
14709 * xdisp.c (move_it_in_display_line_to): Don't invoke
14710 IT_RESET_X_ASCENT_DESCENT when iterator position was restored from
14711 ppos_it. Fixes vertical cursor motion when line beginning is
14712 covered by an image. (Bug#9296)
14713
14714 2011-08-14 Jan Djärv <jan.h.d@swipnet.se>
14715
14716 * nsterm.h (ns_run_ascript): Declare.
14717 (NSAPP_DATA2_RUNASSCRIPT): Define.
14718
14719 * nsfns.m (as_script, as_result, as_status): New static variables.
14720 (ns_run_ascript): New function.
14721 (Fns_do_applescript): Set variables as_*. Make an NSApplicationDefined
14722 event with data2 set to NSAPP_DATA2_RUNASSCRIPT, post it and then start
14723 the event loop. Get status from as_status (Bug#7276).
14724
14725 * nsterm.m (sendEvent): If event is NSApplicationDefined and
14726 data2 is NSAPP_DATA2_RUNASSCRIPT, call ns_run_ascript and then exit
14727 the event loop (Bug#7276).
14728
14729 2011-08-14 Andreas Schwab <schwab@linux-m68k.org>
14730
14731 * gnutls.c (QCgnutls_bootprop_priority)
14732 (QCgnutls_bootprop_trustfiles, QCgnutls_bootprop_keylist)
14733 (QCgnutls_bootprop_crlfiles, QCgnutls_bootprop_callbacks)
14734 (QCgnutls_bootprop_loglevel, QCgnutls_bootprop_hostname)
14735 (QCgnutls_bootprop_min_prime_bits, QCgnutls_bootprop_verify_flags)
14736 (QCgnutls_bootprop_verify_hostname_error)
14737 (QCgnutls_bootprop_callbacks_verify): Rename from
14738 Qgnutls_bootprop_..., all uses changed.
14739
14740 * xfaces.c (QCignore_defface): Rename from Qignore_defface, all
14741 uses changed.
14742
14743 2011-08-14 Paul Eggert <eggert@cs.ucla.edu>
14744
14745 * xfaces.c (Qframe_set_background_mode): Now static.
14746 * dispextern.h (Qframe_set_background_mode): Remove decl.
14747
14748 * process.c (Fnetwork_interface_info): Declare local only if needed.
14749
14750 2011-08-13 Jan Djärv <jan.h.d@swipnet.se>
14751
14752 * process.c: Include ifaddrs.h and net/if_dl.h if available (Bug#8477).
14753 (Fnetwork_interface_list): Allocate in increments of bytes instead
14754 of sizeof (struct ifreq). Iterate over ifconf.ifc_req by counting
14755 bytes (Bug#8477). Count bytes correctly when ifr_addr is a struct
14756 sockaddr.
14757 (struct ifflag_def): notrailers is smart on OSX.
14758 (Fnetwork_interface_info): Handle case when ifr_flags is negative.
14759 Get hardware address with getifaddrs if available.
14760
14761 2011-08-12 Eli Zaretskii <eliz@gnu.org>
14762
14763 * xdisp.c (iterate_out_of_display_property): xassert that
14764 IT->position is set to within IT->object's boundaries. Break from
14765 the loop as soon as EOB is reached; avoids infloops in redisplay
14766 when IT->position is set up wrongly due to some bug.
14767 Set IT->current to match the bidi iterator unconditionally.
14768 (push_display_prop): Allow GET_FROM_STRING as IT->method on
14769 entry. Force push_it to save on the stack the current
14770 buffer/string position, to be restored by pop_it. Fix flags in
14771 the iterator structure wrt the object coming from a display
14772 property, as `line-prefix' and `wrap-prefix' are not ``replacing''
14773 properties. (Bug#9284)
14774
14775 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
14776
14777 * fontset.c (fontset_get_font_group): Add proper type checks.
14778 (Bug#9172)
14779
14780 2011-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14781
14782 * unexmacosx.c (print_load_command_name): Add cases LC_FUNCTION_STARTS
14783 and LC_VERSION_MIN_MACOSX.
14784 (copy_linkedit_data) [LC_FUNCTION_STARTS]: New function.
14785 (dump_it) [LC_FUNCTION_STARTS]: Use it.
14786
14787 2011-08-08 Eli Zaretskii <eliz@gnu.org>
14788
14789 * xdisp.c (forward_to_next_line_start): Allow to use the
14790 no-display-properties-and-no-overlays under bidi display.
14791 Set disp_pos in the bidi iterator to avoid searches for display
14792 properties and overlays.
14793
14794 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
14795
14796 * editfns.c (Fset_time_zone_rule): Document relationship with the
14797 setenv function.
14798
14799 * ftfont.c (ftfont_pattern_entity): Copy the extras argument to
14800 the font entity extracted from the cache (Bug#8109).
14801
14802 2011-08-07 Chong Yidong <cyd@stupidchicken.com>
14803
14804 * composite.c (autocmp_chars): Don't reset point. That is done by
14805 restore_point_unwind (Bug#5984).
14806
14807 2011-08-07 Juri Linkov <juri@jurta.org>
14808
14809 * editfns.c (Fformat_time_string): Doc fix, add tag `usage:'
14810 to show the arg `TIME' instead of `TIMEVAL'.
14811
14812 2011-08-06 Eli Zaretskii <eliz@gnu.org>
14813
14814 * xdisp.c (set_cursor_from_row): Fix cursor positioning when a
14815 display property strides EOL and includes a newline, as in
14816 longlines-mode. (Bug#9254)
14817 (move_it_in_display_line_to): Fix vertical-motion in a buffer with
14818 word-wrap under bidirectional display. (Bug#9224)
14819
14820 * bidi.c (bidi_unshelve_cache): Don't reset the cache if JUST_FREE
14821 is non-zero, even if the data buffer is NULL. Fixes a crash in
14822 vertical-motion with longlines-mode. (Bug#9254)
14823
14824 2011-08-05 Eli Zaretskii <eliz@gnu.org>
14825
14826 * bidi.c <bidi_cache_total_alloc>: Now static.
14827 (bidi_initialize): Initialize bidi_cache_total_alloc.
14828
14829 * xdisp.c (display_line): Release buffer allocated for shelved bidi
14830 cache. (Bug#9221)
14831
14832 * bidi.c (bidi_shelve_cache, bidi_unshelve_cache): Track total
14833 amount allocated this far in `bidi_cache_total_alloc'.
14834 (bidi_unshelve_cache): Accept an additional argument JUST_FREE; if
14835 non-zero, only free the data buffer without restoring the cache
14836 contents. All callers changed.
14837
14838 * dispextern.h (bidi_unshelve_cache): Update prototype.
14839
14840 * xdisp.c (SAVE_IT, pos_visible_p, move_it_in_display_line_to)
14841 (move_it_in_display_line, move_it_to)
14842 (move_it_vertically_backward, move_it_by_lines): Replace the call
14843 to xfree to an equivalent call to bidi_unshelve_cache.
14844 (move_it_in_display_line_to): Fix logic of returning
14845 MOVE_POS_MATCH_OR_ZV in the bidi case. (Bug#9224)
14846
14847 2011-08-05 Eli Zaretskii <eliz@gnu.org>
14848
14849 * xdisp.c (set_cursor_from_row): Prefer the candidate glyph that
14850 came from a string character with a `cursor' property. (Bug#9229)
14851
14852 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
14853
14854 * Makefile.in (LIB_PTHREAD): New variable.
14855 (LIBES): Add LIB_PTHREAD (Bug#9216).
14856
14857 * alloc.c, emacs.c, gmalloc.c, gtkutil.c, keyboard.c, syssignal.h:
14858 Rename HAVE_GTK_AND_PTHREAD to HAVE_PTHREAD (Bug#9216).
14859
14860 2011-08-04 Andreas Schwab <schwab@linux-m68k.org>
14861
14862 * regex.c (re_iswctype): Remove some redundant boolean conversions.
14863
14864 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
14865
14866 * xterm.c (x_find_topmost_parent): New function.
14867 (x_set_frame_alpha): Find topmost parent window with
14868 x_find_topmost_parent and set the property there also (bug#9181).
14869 (handle_one_xevent): Call x_set_frame_alpha on ReparentNotify.
14870
14871 2011-08-04 Paul Eggert <eggert@cs.ucla.edu>
14872
14873 * callproc.c (Fcall_process): Avoid vfork clobbering
14874 the local vars buffer, coding_systems, current_dir.
14875
14876 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
14877
14878 * keymap.c (Fmake_composed_keymap): Move to subr.el.
14879
14880 2011-08-03 Paul Eggert <eggert@cs.ucla.edu>
14881
14882 * fontset.c (dump_fontset) [FONTSET_DEBUG]: Declare EXTERNALLY_VISIBLE
14883 so that it is not optimized away.
14884
14885 * xdisp.c (compute_display_string_pos): Remove unused local.
14886
14887 2011-08-02 Eli Zaretskii <eliz@gnu.org>
14888
14889 Fix slow cursor motion and scrolling in large buffers with
14890 selective display, like Org Mode buffers. (Bug#9218)
14891
14892 * dispextern.h (struct bidi_it): New member disp_prop_p.
14893
14894 * xdisp.c: Remove one-slot cache of display string positions.
14895 (compute_display_string_pos): Accept an additional argument
14896 DISP_PROP_P; callers changed. Scan at most 5K characters forward
14897 for a display string or property. If found, set DISP_PROP_P
14898 non-zero.
14899
14900 * bidi.c (bidi_fetch_char): Accept an additional argument
14901 DISP_PROP_P, and pass it to compute_display_string_pos.
14902 Only handle text covered by a display string if DISP_PROP_P is returned
14903 non-zero. All callers of bidi_fetch_char changed.
14904
14905 2011-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
14906
14907 * keymap.c (Fdefine_key): Fix Lisp_Object/int mixup; apply some CSE.
14908
14909 2010-12-03 Don March <don@ohspite.net>
14910
14911 * keymap.c (Fdefine_key): Fix non-prefix key error message when
14912 last character M-[char] is translated to ESC [char] (bug#7541).
14913
14914 2011-08-02 Kenichi Handa <handa@m17n.org>
14915
14916 * lisp.h (uniprop_table): Extern it.
14917
14918 * chartab.c (uniprop_table): Make it non-static.
14919
14920 2011-08-01 Eli Zaretskii <eliz@gnu.org>
14921
14922 * xdisp.c (forward_to_next_line_start): Accept additional argument
14923 BIDI_IT_PREV, and store into it the state of the bidi iterator had
14924 on the newline.
14925 (reseat_at_next_visible_line_start): Use the bidi iterator state
14926 returned by forward_to_next_line_start to restore the state of
14927 it->bidi_it after backing up to previous newline. (Bug#9212)
14928
14929 2011-07-30 Andreas Schwab <schwab@linux-m68k.org>
14930
14931 * regex.c (re_comp): Protoize.
14932 (re_exec): Fix return type.
14933 (regexec): Fix type of `ret'. (Bug#9203)
14934
14935 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
14936
14937 * image.c (check_image_size): Use 1024x1024 if unknown frame (Bug#9189).
14938 This is needed if max-image-size is a floating-point number.
14939
14940 2011-07-28 Andreas Schwab <schwab@linux-m68k.org>
14941
14942 * print.c (print_object): Print empty symbol as ##.
14943
14944 * lread.c (read1): Read ## as empty symbol.
14945
14946 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
14947
14948 * nsfns.m (x_set_foreground_color): Set f->foreground_pixel when
14949 setting frame foreground color (Bug#9175).
14950 (x_set_background_color): Likewise.
14951
14952 * nsmenu.m (-setText): Size tooltip dimensions precisely to
14953 contents (Bug#9176).
14954 (EmacsTooltip -init): Remove bezels and add shadows to
14955 tooltip windows.
14956
14957 * nsterm.m (ns_dumpglyphs_stretch): Avoid overwriting left fringe
14958 or scroll bar (Bug#8470).
14959
14960 * nsfont.m (nsfont_open): Remove assignment to voffset and
14961 unnecessary vars hshink, expand, hd, full_height, min_height.
14962 (nsfont_draw): Use s->ybase as baseline for glyph drawing (Bug#8913).
14963
14964 * nsterm.h (nsfont_info): Remove voffset field.
14965
14966 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
14967
14968 Implement strike-through and overline on NextStep (Bug#8863).
14969
14970 * nsfont.m (nsfont_open): Use underline position provided by font,
14971 instead of hard-coded value of 2.
14972 (nsfont_draw): Call ns_draw_text_decoration instead.
14973
14974 * nsterm.h: Add declaration for ns_draw_text_decoration.
14975
14976 * nsterm.m (ns_draw_text_decoration): New function for drawing
14977 underline, overline, and strike-through.
14978 (ns_dumpglyphs_image, ns_dumpglyphs_stretch): Add call to
14979 ns_draw_text_decoration. Change treatment of cursor drawing to
14980 accommodate underlining, etc.
14981
14982 2011-07-28 Eli Zaretskii <eliz@gnu.org>
14983
14984 * buffer.c (init_buffer_once): Set bidi-display-reordering to t by
14985 default.
14986
14987 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
14988
14989 * alloc.c (memory_full) [!SYNC_INPUT]: Fix signal-related race.
14990 Without this fix, if a signal arrives just after memory fills up,
14991 'malloc' might be invoked reentrantly.
14992
14993 * image.c (x_check_image_size) [!HAVE_X_WINDOWS]: Return 1.
14994 In other words, assume that every image size is allowed, on non-X
14995 hosts. This assumption is probably wrong, but it lets Emacs compile.
14996
14997 2011-07-28 Andreas Schwab <schwab@linux-m68k.org>
14998
14999 * regex.c (re_iswctype): Convert return values to boolean.
15000
15001 2011-07-28 Eli Zaretskii <eliz@fencepost.gnu.org>
15002
15003 * xdisp.c (compute_display_string_pos): Don't use cached display
15004 string position if the buffer had its restriction changed.
15005 (Bug#9184)
15006
15007 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
15008
15009 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
15010
15011 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
15012
15013 Integer signedness and overflow and related fixes. (Bug#9079)
15014
15015 * bidi.c: Integer size and overflow fixes.
15016 (bidi_cache_size, bidi_cache_idx, bidi_cache_last_idx)
15017 (bidi_cache_start, bidi_cache_fetch_state, bidi_cache_search)
15018 (bidi_cache_find_level_change, bidi_cache_ensure_space)
15019 (bidi_cache_iterator_state, bidi_cache_find, bidi_cache_start_stack)
15020 (bidi_find_other_level_edge):
15021 Use ptrdiff_t instead of EMACS_INT where either will do.
15022 This works better on 32-bit hosts configured --with-wide-int.
15023 (bidi_cache_ensure_space): Check for size-calculation overflow.
15024 Use % rather than repeated addition, for better worst-case speed.
15025 Don't set bidi_cache_size until after xrealloc returns, because it
15026 might not return.
15027 (bidi_dump_cached_states): Use ptrdiff_t, not int, to avoid overflow.
15028 (bidi_cache_ensure_space): Also check that the bidi cache size
15029 does not exceed that of the largest Lisp string or buffer. See Eli
15030 Zaretskii in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#29>.
15031
15032 * alloc.c (__malloc_size_t): Remove.
15033 All uses replaced by size_t. See Andreas Schwab's note
15034 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#8>.
15035
15036 * image.c: Improve checking for integer overflow.
15037 (check_image_size): Assume that f is nonnull, since
15038 it is always nonnull in practice. This is one less thing to
15039 worry about when checking for integer overflow later.
15040 (x_check_image_size): New function, which checks for integer
15041 overflow issues inside X.
15042 (x_create_x_image_and_pixmap, xbm_read_bitmap_data): Use it.
15043 This removes the need for a memory_full check.
15044 (xbm_image_p): Rewrite to avoid integer multiplication overflow.
15045 (Create_Pixmap_From_Bitmap_Data, xbm_load): Use x_check_image_size.
15046 (xbm_read_bitmap_data): Change locals back to 'int', since
15047 their values must fit in 'int'.
15048 (xpm_load_image, png_load, tiff_load):
15049 Invoke x_create_x_image_and_pixmap earlier,
15050 to avoid much needless work if the image is too large.
15051 (tiff_load): Treat overly large images as if
15052 x_create_x_image_and_pixmap failed, not as malloc failures.
15053 (gs_load): Use x_check_image_size.
15054
15055 * gtkutil.c: Omit integer casts.
15056 (xg_get_pixbuf_from_pixmap): Remove unnecessary cast.
15057 (xg_set_toolkit_scroll_bar_thumb): Rewrite to avoid need for cast.
15058
15059 * image.c (png_load): Don't assume height * row_bytes fits in 'int'.
15060
15061 * xfaces.c (Fbitmap_spec_p): Fix integer overflow bug.
15062 Without this fix, (bitmap-spec-p '(34359738368 1 "x"))
15063 would wrongly return t on a 64-bit host.
15064
15065 * dispnew.c (init_display): Use *_RANGE_OVERFLOW macros.
15066 The plain *_OVERFLOW macros run afoul of GCC bug 49705
15067 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49705>
15068 and therefore cause GCC to emit a bogus diagnostic in some cases.
15069
15070 * image.c: Integer signedness and overflow and related fixes.
15071 This is not an exhaustive set of fixes, but it's time to
15072 record what I've got.
15073 (lookup_pixel_color, check_image_size): Remove redundant decls.
15074 (check_image_size): Don't assume that arbitrary EMACS_INT values
15075 fit in 'int', or that arbitrary 'double' values fit in 'int'.
15076 (x_alloc_image_color, x_create_x_image_and_pixmap, png_load)
15077 (tiff_load, imagemagick_load_image):
15078 Check for overflow in size calculations.
15079 (x_create_x_image_and_pixmap): Remove unnecessary test for
15080 xmalloc returning NULL; that can't happen.
15081 (xbm_read_bitmap_data): Don't assume sizes fit into 'int'.
15082 (xpm_color_bucket): Use better integer hashing function.
15083 (xpm_cache_color): Don't possibly over-allocate memory.
15084 (struct png_memory_storage, tiff_memory_source, tiff_seek_in_memory)
15085 (gif_memory_source):
15086 Use ptrdiff_t, not int or size_t, to record sizes.
15087 (png_load): Don't assume values greater than 2**31 fit in 'int'.
15088 (our_stdio_fill_input_buffer): Prefer ptrdiff_t to size_t when
15089 either works, as we prefer signed integers.
15090 (tiff_read_from_memory, tiff_write_from_memory):
15091 Return tsize_t, not size_t, since that's what the TIFF API wants.
15092 (tiff_read_from_memory): Don't fail simply because the read would
15093 go past EOF; instead, return a short read.
15094 (tiff_load): Omit no-longer-needed casts.
15095 (Fimagemagick_types): Don't assume size fits into 'int'.
15096
15097 Improve hashing quality when configured --with-wide-int.
15098 * fns.c (hash_string): New function, taken from sxhash_string.
15099 Do not discard information about ASCII character case; this
15100 discarding is no longer needed.
15101 (sxhash-string): Use it. Change sig to match it. Caller changed.
15102 * lisp.h: Declare it.
15103 * lread.c (hash_string): Remove, since we now use fns.c's version.
15104 The fns.c version returns a wider integer if --with-wide-int is
15105 specified, so this should help the quality of the hashing a bit.
15106
15107 * emacs.c: Integer overflow minor fix.
15108 (heap_bss_diff): Now uprintmax_t, not unsigned long. All used changed.
15109 Define only if GNU_LINUX.
15110 (main, Fdump_emacs): Set and use heap_bss_diff only if GNU_LINUX.
15111
15112 * dispnew.c: Integer signedness and overflow fixes.
15113 Remove unnecessary forward decls, that were a maintenance hassle.
15114 (history_tick): Now uprintmax_t, so it's more likely to avoid overflow.
15115 All uses changed.
15116 (adjust_glyph_matrix, realloc_glyph_pool, adjust_frame_message_buffer)
15117 (scrolling_window): Use ptrdiff_t, not int, for byte count.
15118 (prepare_desired_row, line_draw_cost):
15119 Use int, not unsigned, where either works.
15120 (save_current_matrix, restore_current_matrix):
15121 Use ptrdiff_t, not size_t, where either works.
15122 (init_display): Check for overflow more accurately, and without
15123 relying on undefined behavior.
15124
15125 * editfns.c (pWIDE, pWIDElen, signed_wide, unsigned_wide):
15126 Remove, replacing with the new symbols in lisp.h. All uses changed.
15127 * fileio.c (make_temp_name):
15128 * filelock.c (lock_file_1, lock_file):
15129 * xdisp.c (message_dolog):
15130 Don't assume PRIdMAX etc. works; this isn't portable to pre-C99 hosts.
15131 Use pMd etc. instead.
15132 * lisp.h (printmax_t, uprintmax_t, pMd, pMu): New types and macros,
15133 replacing the pWIDE etc. symbols removed from editfns.c.
15134
15135 * keyboard.h (num_input_events): Now uintmax_t.
15136 This is (very slightly) less likely to mess up due to wraparound.
15137 All uses changed.
15138
15139 * buffer.c: Integer signedness fixes.
15140 (alloc_buffer_text, enlarge_buffer_text):
15141 Use ptrdiff_t rather than size_t when either will do, as we prefer
15142 signed integers.
15143
15144 * alloc.c: Integer signedness and overflow fixes.
15145 Do not impose an arbitrary 32-bit limit on malloc sizes when debugging.
15146 (__malloc_size_t): Default to size_t, not to int.
15147 (pure_size, pure_bytes_used_before_overflow, stack_copy_size)
15148 (Fgarbage_collect, mark_object_loop_halt, mark_object):
15149 Prefer ptrdiff_t to size_t when either would do, as we prefer
15150 signed integers.
15151 (XMALLOC_OVERRUN_CHECK_OVERHEAD): New macro.
15152 (xmalloc_overrun_check_header, xmalloc_overrun_check_trailer):
15153 Now const. Initialize with values that are in range even if char
15154 is signed.
15155 (XMALLOC_PUT_SIZE, XMALLOC_GET_SIZE): Remove, replacing with ...
15156 (xmalloc_put_size, xmalloc_get_size): New functions. All uses changed.
15157 These functions do the right thing with sizes > 2**32.
15158 (check_depth): Now ptrdiff_t, not int.
15159 (overrun_check_malloc, overrun_check_realloc, overrun_check_free):
15160 Adjust to new way of storing sizes. Check for size overflow bugs
15161 in rest of code.
15162 (STRING_BYTES_MAX): Adjust to new overheads. The old code was
15163 slightly wrong anyway, as it missed one instance of
15164 XMALLOC_OVERRUN_CHECK_OVERHEAD.
15165 (refill_memory_reserve): Omit needless cast to size_t.
15166 (mark_object_loop_halt): Mark as externally visible.
15167
15168 * xselect.c: Integer signedness and overflow fixes.
15169 (Fx_register_dnd_atom, x_handle_dnd_message):
15170 Use ptrdiff_t, not size_t, since we prefer signed.
15171 (Fx_register_dnd_atom): Check for ptrdiff_t (and size_t) overflow.
15172 * xterm.h (struct x_display_info): Use ptrdiff_t, not size_t, for
15173 x_dnd_atoms_size and x_dnd_atoms_length.
15174
15175 * doprnt.c: Prefer signed to unsigned when either works.
15176 * eval.c (verror):
15177 * doprnt.c (doprnt):
15178 * lisp.h (doprnt):
15179 * xdisp.c (vmessage):
15180 Use ptrdiff_t, not size_t, when using or implementing doprnt,
15181 since the sizes cannot exceed ptrdiff_t bounds anyway, and we
15182 prefer signed arithmetic to avoid comparison confusion.
15183 * doprnt.c (doprnt): Avoid a "+ 1" that can't overflow,
15184 but is a bit tricky.
15185
15186 Assume freestanding C89 headers, string.h, stdlib.h.
15187 * data.c, doprnt.c, floatfns.c, print.c:
15188 Include float.h unconditionally.
15189 * gmalloc.c: Assume C89-at-least behavior for preprocessor,
15190 limits.h, stddef.h, string.h. Use memset instead of 'flood'.
15191 * regex.c: Likewise for stddef.h, string.h.
15192 (ISASCII): Remove; can assume it returns 1 now. All uses removed.
15193 * s/aix4-2.h (HAVE_STRING_H): Remove obsolete undef.
15194 * s/ms-w32.h (HAVE_LIMITS_H, HAVE_STRING_H, HAVE_STDLIB_H)
15195 (STDC_HEADERS): Remove obsolete defines.
15196 * sysdep.c: Include limits.h unconditionally.
15197
15198 Assume support for memcmp, memcpy, memmove, memset.
15199 * lisp.h, sysdep.c (memcmp, memcpy, memmove, memset):
15200 * regex.c (memcmp, memcpy):
15201 Remove; we assume C89 now.
15202
15203 * gmalloc.c (memcpy, memset, memmove): Remove; we assume C89 now.
15204 (__malloc_safe_bcopy): Remove; no longer needed.
15205
15206 * lisp.h (struct vectorlike_header, struct Lisp_Subr): Signed sizes.
15207 Use EMACS_INT, not EMACS_UINT, for sizes. The code works equally
15208 well either way, and we prefer signed to unsigned.
15209
15210 2011-07-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
15211
15212 * gnutls.c (emacs_gnutls_read): Don't message anything if the peer
15213 closes the connection while we're reading (bug#9182).
15214
15215 2011-07-25 Jan Djärv <jan.h.d@swipnet.se>
15216
15217 * nsmenu.m (ns_popup_dialog): Add an "ok" button if no buttons
15218 are specified (Bug#9168).
15219
15220 2011-07-25 Paul Eggert <eggert@cs.ucla.edu>
15221
15222 * bidi.c (bidi_dump_cached_states): Fix printf format mismatch.
15223 Found by GCC static checking and --with-wide-int on a 32-bit host.
15224
15225 2011-07-25 Eli Zaretskii <eliz@gnu.org>
15226
15227 * xdisp.c (compute_display_string_pos): Fix logic of caching
15228 previous display string position. Initialize cached_prev_pos to
15229 -1. Fixes slow-down at the beginning of a buffer.
15230
15231 2011-07-24 Eli Zaretskii <eliz@gnu.org>
15232
15233 * xfaces.c (check_lface_attrs) [HAVE_WINDOW_SYSTEM]: Allow `nil'
15234 for attrs[LFACE_FONTSET_INDEX].
15235
15236 2011-07-23 Paul Eggert <eggert@cs.ucla.edu>
15237
15238 * xml.c (parse_region): Remove unused local
15239 that was recently introduced.
15240
15241 2011-07-23 Eli Zaretskii <eliz@gnu.org>
15242
15243 * xfns.c (unwind_create_frame) [GLYPH_DEBUG]: Adapt to changes in
15244 2008-02-22T17:42:09Z!monnier@iro.umontreal.ca.
15245
15246 * xdisp.c (move_it_in_display_line_to): Record the best matching
15247 position for TO_CHARPOS while scanning the line, and restore it on
15248 exit if none of the characters scanned was an exact match.
15249 Fixes vertical-motion and pos-visible-in-window-p under bidi redisplay
15250 when exact match is impossible due to invisible text, and the
15251 lines are truncated.
15252
15253 2011-07-23 Jan Djärv <jan.h.d@swipnet.se>
15254
15255 * nsterm.m (initFrameFromEmacs): Set NSTitledWindowMask in styleMask
15256 for OSX >= 10.7.
15257
15258 2011-07-22 Eli Zaretskii <eliz@gnu.org>
15259
15260 Fix a significant slow-down of cursor motion with C-n, C-p,
15261 C-f/C-b, and C-v/M-v that couldn't keep up with keyboard
15262 auto-repeat under bidi redisplay in fontified buffers.
15263 * xdisp.c (compute_stop_pos_backwards): New function.
15264 (next_element_from_buffer): Call compute_stop_pos_backwards to
15265 find a suitable prev_stop when we find ourselves before
15266 base_level_stop.
15267 (reseat): Don't look for prev_stop, as that could mean a very long
15268 run.
15269 <cached_disp_pos, cached_disp_buffer, cached_disp_modiff>
15270 <cached_disp_overlay_modiff>: Cache for last found display string
15271 position.
15272 (compute_display_string_pos): Return the cached position if asked
15273 about the same buffer in the same area of character positions, and
15274 the buffer wasn't changed since the time the display string
15275 position was cached.
15276
15277 2011-07-22 Eli Zaretskii <eliz@gnu.org>
15278
15279 * xdisp.c (rows_from_pos_range): Don't ignore glyphs whose object
15280 is an integer, which is important for empty lines. (Bug#9149)
15281
15282 2011-07-22 Chong Yidong <cyd@stupidchicken.com>
15283
15284 * frame.c (Fmodify_frame_parameters): In tty case, update the
15285 default face if necessary (Bug#4238).
15286
15287 2011-07-21 Chong Yidong <cyd@stupidchicken.com>
15288
15289 * editfns.c (Fstring_to_char): No need to explain what a character
15290 is in the docstring (Bug#6576).
15291
15292 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
15293
15294 * xml.c (parse_region): Make sure we always return a tree.
15295
15296 2011-07-20 HAMANO Kiyoto <khiker.mail@gmail.com>
15297
15298 * xml.c (parse_region): If a document contains only comments,
15299 return that, too.
15300
15301 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
15302
15303 * xml.c (make_dom): Return comments, too.
15304
15305 2011-07-19 Paul Eggert <eggert@cs.ucla.edu>
15306
15307 Port to OpenBSD.
15308 See http://lists.gnu.org/archive/html/emacs-devel/2011-07/msg00688.html
15309 and the surrounding thread.
15310 * minibuf.c (read_minibuf_noninteractive): Rewrite to use getchar
15311 rather than fgets, and retry after EINTR. Otherwise, 'emacs
15312 --batch -f byte-compile-file' fails on OpenBSD if an inactivity
15313 timer goes off.
15314 * s/openbsd.h (BROKEN_SIGIO): Define.
15315 * unexelf.c (unexec) [__OpenBSD__]:
15316 Don't update the .mdebug section of the Alpha COFF symbol table.
15317
15318 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
15319
15320 * lread.c (syms_of_lread): Clarify when `lexical-binding' is used
15321 (bug#8460).
15322
15323 2011-07-18 Paul Eggert <eggert@cs.ucla.edu>
15324
15325 * fileio.c (Fcopy_file) [!MSDOS]: Tighten created file's mask.
15326 This fixes some race conditions on the permissions of any newly
15327 created file.
15328
15329 * alloc.c (valid_pointer_p): Use pipe, not open.
15330 This fixes some permissions issues when debugging.
15331
15332 * fileio.c (Fcopy_file): Adjust mode if fchown fails. (Bug#9002)
15333 If fchown fails to set both uid and gid, try to set just gid,
15334 as that is sometimes allowed. Adjust the file's mode to eliminate
15335 setuid or setgid bits that are inappropriate if fchown fails.
15336
15337 2011-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
15338
15339 * xdisp.c (next_element_from_string, next_element_from_buffer): Use EQ
15340 to compare Lisp_Objects.
15341 * gnutls.c (syms_of_gnutls): Rename Vgnutls_log_level to
15342 global_gnutls_log_level, don't mistake it for a Lisp_Object.
15343 (init_gnutls_functions, emacs_gnutls_handle_error): Fix up uses.
15344
15345 2011-07-17 Andreas Schwab <schwab@linux-m68k.org>
15346
15347 * lread.c (read_integer): Unread even EOF character.
15348 (read1): Likewise. Properly record start position of symbol.
15349
15350 * lread.c (read1): Read `#:' as empty uninterned symbol if no
15351 symbol character follows.
15352
15353 2011-07-17 Paul Eggert <eggert@cs.ucla.edu>
15354
15355 * fileio.c (Fcopy_file): Pacify gcc re fchown. (Bug#9002)
15356 This works around a problem with the previous change to Fcopy_file.
15357 Recent glibc declares fchown with __attribute__((warn_unused_result)),
15358 and without this change, GCC might complain about discarding
15359 fchown's return value.
15360
15361 2011-07-16 Juanma Barranquero <lekktu@gmail.com>
15362
15363 * makefile.w32-in (GLOBAL_SOURCES): Add gnutls.c (followup to bug#9059).
15364
15365 2011-07-16 Paul Eggert <eggert@cs.ucla.edu>
15366
15367 * fileio.c (Fcopy_file): Don't diagnose fchown failures. (Bug#9002)
15368
15369 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
15370
15371 * gnutls.c (syms_of_gnutls): Define `gnutls-log-level' here, since
15372 it's used from the C level.
15373
15374 * process.c: Use the same condition for POLL_FOR_INPUT in both
15375 keyboard.c and process.c (bug#1858).
15376
15377 2011-07-09 Lawrence Mitchell <wence@gmx.li>
15378
15379 * gnutls.c (Qgnutls_bootprop_min_prime_bits): New variable.
15380 (Fgnutls_boot): Use it.
15381
15382 2011-07-15 Andreas Schwab <schwab@linux-m68k.org>
15383
15384 * doc.c (Fsubstitute_command_keys): Revert last change.
15385
15386 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
15387
15388 * doc.c (Fsubstitute_command_keys): Clarify that \= really only
15389 quotes the next character, and doesn't affect other longer
15390 sequences (bug#8935).
15391
15392 * lread.c (syms_of_lread): Clarify that is isn't only
15393 `eval-buffer' and `eval-defun' that's affected by
15394 `lexical-binding' (bug#8460).
15395
15396 2011-07-15 Eli Zaretskii <eliz@gnu.org>
15397
15398 * xdisp.c (move_it_in_display_line_to): Fix vertical motion with
15399 bidi redisplay when a line includes both an image and is truncated.
15400
15401 2011-07-14 Paul Eggert <eggert@cs.ucla.edu>
15402
15403 Fix minor problems found by static checking.
15404 * bidi.c (bidi_cache_size): Now EMACS_INT, not size_t.
15405 (elsz): Now a signed constant, not a size_t var. We prefer signed
15406 types to unsigned, to avoid integer comparison confusion. Without
15407 this change, GCC 4.6.1 with -Wunsafe-loop-optimizations complains
15408 "cannot optimize loop, the loop counter may overflow", a symptom
15409 of the confusion.
15410 * indent.c (Fvertical_motion): Mark locals as initialized.
15411 * xdisp.c (reseat_to_string): Fix pointer signedness issue.
15412
15413 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
15414
15415 * search.c (Fre_search_backward): Mention `case-fold-search' in
15416 all the re_search_* functions (bug#8138).
15417
15418 * keyboard.c (Fopen_dribble_file): Document when the file is
15419 closed (bug#8056).
15420
15421 2011-07-14 Eli Zaretskii <eliz@gnu.org>
15422
15423 * bidi.c (bidi_dump_cached_states): Fix format of displaying
15424 bidi_cache_idx.
15425
15426 Support bidi reordering of display and overlay strings.
15427 * xdisp.c (compute_display_string_pos)
15428 (compute_display_string_end): Accept additional argument STRING.
15429 (init_iterator, reseat_1): Initialize bidi_it->string.s to NULL.
15430 (reseat_to_string): Initialize bidi_it->string.s and
15431 bidi_it->string.schars.
15432 (Fcurrent_bidi_paragraph_direction): Initialize itb.string.s to
15433 NULL (avoids a crash in bidi_paragraph_init).
15434 Initialize itb.string.lstring.
15435 (init_iterator): Call bidi_init_it only of a valid
15436 buffer position was specified. Initialize paragraph_embedding to
15437 L2R.
15438 (reseat_to_string): Initialize the bidi iterator.
15439 (display_string): If we need to ignore text properties of
15440 LISP_STRING, set IT->stop_charpos to IT->end_charpos. (The
15441 original value of -1 will not work with bidi.)
15442 (compute_display_string_pos): First arg is now struct
15443 `text_pos *'; all callers changed. Support display properties on
15444 Lisp strings.
15445 (compute_display_string_end): Support display properties on Lisp
15446 strings.
15447 (init_iterator, reseat_1, reseat_to_string): Initialize the
15448 string.bufpos member to 0 (zero, for compatibility with IT_CHARPOS
15449 when iterating on a string not from display properties).
15450 (compute_display_string_pos, compute_display_string_end):
15451 Fix calculation of the object to scan. Fixes an error when using
15452 arrow keys.
15453 (next_element_from_buffer): Don't abort when IT_CHARPOS is before
15454 base_level_stop; instead, set base_level_stop to BEGV.
15455 Fixes crashes in vertical-motion.
15456 (next_element_from_buffer): Improve commentary for when
15457 the iterator is before prev_stop.
15458 (init_iterator): Initialize bidi_p from the default value of
15459 bidi-display-reordering, not from buffer-local value. Use the
15460 buffer-local value only if initializing for buffer iteration.
15461 (handle_invisible_prop): Support invisible properties on strings
15462 that are being bidi-reordered.
15463 (set_iterator_to_next): Support bidi reordering of C strings and
15464 Lisp strings.
15465 (next_element_from_string): Support bidi reordering of Lisp
15466 strings.
15467 (handle_stop_backwards): Support Lisp strings as well.
15468 (display_string): Support display of R2L glyph rows.
15469 Use IT_STRING_CHARPOS when displaying from a Lisp string.
15470 (init_iterator): Don't initialize it->bidi_p for strings
15471 here.
15472 (reseat_to_string): Initialize it->bidi_p for strings here.
15473 (next_element_from_string, next_element_from_c_string)
15474 (next_element_from_buffer): Add xassert's for correspondence
15475 between IT's object being iterated and it->bidi_it.string
15476 structure.
15477 (face_before_or_after_it_pos): Support bidi iteration.
15478 (next_element_from_c_string): Handle the case of the first string
15479 character that is not the first one in the visual order.
15480 (get_visually_first_element): New function, refactored from common
15481 parts of next_element_from_buffer, next_element_from_string, and
15482 next_element_from_c_string.
15483 (tool_bar_lines_needed, redisplay_tool_bar)
15484 (display_menu_bar): Force left-to-right direction. Add a FIXME
15485 comment for making that be controlled by a user option.
15486 (push_it, pop_it): Save and restore the state of the
15487 bidi iterator. Save and restore the bidi_p flag.
15488 (pop_it): Iterate out of display property for string iteration as
15489 well.
15490 (iterate_out_of_display_property): Support iteration over strings.
15491 (handle_single_display_spec): Set up it->bidi_it for iteration
15492 over a display string, and call bidi_init_it.
15493 (handle_single_display_spec, next_overlay_string)
15494 (get_overlay_strings_1, push_display_prop): Set up the bidi
15495 iterator for displaying display or overlay strings.
15496 (forward_to_next_line_start): Don't use the shortcut if
15497 bidi-iterating.
15498 (back_to_previous_visible_line_start): If handle_display_prop
15499 pushed the iterator stack, restore the internal state of the bidi
15500 iterator by calling bidi_pop_it same number of times.
15501 (reseat_at_next_visible_line_start): If ON_NEWLINE_P is non-zero,
15502 and we are bidi-iterating, don't decrement the iterator position;
15503 instead, set the first_elt flag in the bidi iterator, to produce
15504 the same effect.
15505 (reseat_1): Remove redundant setting of string_from_display_prop_p.
15506 (push_display_prop): xassert that we are iterating a buffer.
15507 (push_it, pop_it): Save and restore paragraph_embedding member.
15508 (handle_single_display_spec, next_overlay_string)
15509 (get_overlay_strings_1, reseat_1, reseat_to_string)
15510 (push_display_prop): Set up the `unibyte' member of bidi_it.string
15511 correctly. Don't assume unibyte strings are not bidi-reordered.
15512 (compute_display_string_pos)
15513 (compute_display_string_end): Fix handling the case of C string.
15514 (push_it, pop_it): Save and restore from_disp_prop_p.
15515 (handle_single_display_spec, push_display_prop): Set the
15516 from_disp_prop_p flag.
15517 (get_overlay_strings_1): Reset the from_disp_prop_p flag.
15518 (pop_it): Call iterate_out_of_display_property only if we are
15519 popping after iteration over a string that came from a display
15520 property. Fix a typo in popping stretch info. Add an assertion
15521 for verifying that the iterator position is in sync with the bidi
15522 iterator.
15523 (handle_single_display_spec, get_overlay_strings_1)
15524 (push_display_prop): Fix initialization of paragraph direction for
15525 string when that of the parent object is not yet determined.
15526 (reseat_1): Call bidi_init_it to resync the bidi
15527 iterator with IT's position. (Bug#7616)
15528 (find_row_edges): If ROW->start.pos gives position
15529 smaller than min_pos, use it as ROW->minpos. (Bug#7616)
15530 (handle_stop, back_to_previous_visible_line_start, reseat_1):
15531 Reset the from_disp_prop_p flag.
15532 (SAVE_IT, RESTORE_IT): New macros.
15533 (pos_visible_p, face_before_or_after_it_pos)
15534 (back_to_previous_visible_line_start)
15535 (move_it_in_display_line_to, move_it_in_display_line)
15536 (move_it_to, move_it_vertically_backward, move_it_by_lines)
15537 (try_scrolling, redisplay_window, display_line): Use them when
15538 saving a temporary copy of the iterator and restoring it back.
15539 (back_to_previous_visible_line_start, reseat_1)
15540 (init_iterator): Empty the bidi cache "stack".
15541 (move_it_in_display_line_to): If iterator ended up at
15542 EOL, but we never saw any buffer positions smaller than
15543 to_charpos, return MOVE_POS_MATCH_OR_ZV. Fixes vertical cursor
15544 motion in bidi-reordered lines.
15545 (move_it_in_display_line_to): Record prev_method and prev_pos
15546 immediately before the call to set_iterator_to_next. Fixes cursor
15547 motion in bidi-reordered lines with stretch glyphs and strings
15548 displayed in margins. (Bug#8133) (Bug#8867)
15549 Return MOVE_POS_MATCH_OR_ZV only if iterator position is past
15550 TO_CHARPOS.
15551 (pos_visible_p): Support positions in bidi-reordered lines.
15552 Save and restore bidi cache.
15553
15554 * bidi.c (bidi_level_of_next_char): clen should be EMACS_NT, not int.
15555 (bidi_paragraph_info): Delete unused struct.
15556 (bidi_cache_idx, bidi_cache_last_idx): Declare EMACS_INT.
15557 (bidi_cache_start): New variable.
15558 (bidi_cache_reset): Reset bidi_cache_idx to bidi_cache_start, not
15559 to zero.
15560 (bidi_cache_fetch_state, bidi_cache_search)
15561 (bidi_cache_find_level_change, bidi_cache_iterator_state)
15562 (bidi_cache_find, bidi_peek_at_next_level)
15563 (bidi_level_of_next_char, bidi_find_other_level_edge)
15564 (bidi_move_to_visually_next): Compare cache index with
15565 bidi_cache_start rather than with zero.
15566 (bidi_fetch_char): Accept new argument STRING; all callers
15567 changed. Support iteration over a string. Support strings with
15568 display properties. Support unibyte strings. Fix the type of
15569 `len' according to what STRING_CHAR_AND_LENGTH expects.
15570 (bidi_paragraph_init, bidi_resolve_explicit_1)
15571 (bidi_resolve_explicit, bidi_resolve_weak)
15572 (bidi_level_of_next_char, bidi_move_to_visually_next):
15573 Support iteration over a string.
15574 (bidi_set_sor_type, bidi_resolve_explicit_1)
15575 (bidi_resolve_explicit, bidi_type_of_next_char): ignore_bn_limit
15576 can now be zero (for strings); special values 0 and -1 were
15577 changed to -1 and -2, respectively.
15578 (bidi_char_at_pos): New function.
15579 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak):
15580 Call it instead of FETCH_MULTIBYTE_CHAR.
15581 (bidi_move_to_visually_next): Abort if charpos or bytepos were not
15582 initialized to valid values.
15583 (bidi_init_it): Don't initialize charpos and bytepos with invalid
15584 values.
15585 (bidi_level_of_next_char): Allow the sentinel "position" to pass
15586 the test for valid cached positions. Fix the logic for looking up
15587 the sentinel state in the cache. GCPRO the Lisp string we are
15588 iterating.
15589 (bidi_push_it, bidi_pop_it): New functions.
15590 (bidi_initialize): Initialize the bidi cache start stack pointer.
15591 (bidi_cache_ensure_space): New function, refactored from part of
15592 bidi_cache_iterator_state. Don't assume the required size is just
15593 one BIDI_CACHE_CHUNK away.
15594 (bidi_cache_start_stack, bidi_push_it): Use IT_STACK_SIZE.
15595 (bidi_count_bytes, bidi_char_at_pos): New functions.
15596 (bidi_cache_search): Don't assume bidi_cache_last_idx is
15597 always valid if bidi_cache_idx is valid.
15598 (bidi_cache_find_level_change): xassert that bidi_cache_last_idx
15599 is valid if it's going to be used.
15600 (bidi_shelve_cache, bidi_unshelve_cache): New functions.
15601 (bidi_cache_fetch_state, bidi_cache_search)
15602 (bidi_cache_find_level_change, bidi_cache_ensure_space)
15603 (bidi_cache_iterator_state, bidi_cache_find)
15604 (bidi_find_other_level_edge, bidi_cache_start_stack):
15605 All variables related to cache indices are now EMACS_INT.
15606
15607 * dispextern.h (struct bidi_string_data): New structure.
15608 (struct bidi_it): New member `string'. Make flag members be 1-bit
15609 fields, and put them last in the struct.
15610 (compute_display_string_pos, compute_display_string_end):
15611 Update prototypes.
15612 (bidi_push_it, bidi_pop_it): Add prototypes.
15613 (struct iterator_stack_entry): New members bidi_p,
15614 paragraph_embedding, and from_disp_prop_p.
15615 (struct it): Member bidi_p is now a bit field 1 bit wide.
15616 (bidi_shelve_cache, bidi_unshelve_cache):
15617 Declare prototypes.
15618
15619 * .gdbinit (xvectype, xvector, xcompiled, xchartable, xboolvector)
15620 (xpr, xfont, xbacktrace): Use "header.size" when accessing vectors
15621 and vector-like objects.
15622
15623 * dispnew.c (buffer_posn_from_coords): Save and restore the bidi
15624 cache around display iteration.
15625
15626 * window.c (Fwindow_end, window_scroll_pixel_based)
15627 (displayed_window_lines, Frecenter): Save and restore the bidi
15628 cache around display iteration.
15629
15630 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
15631
15632 * editfns.c (Fdelete_region): Clarify the use of the named
15633 parameters (bug#6788).
15634
15635 2011-07-14 Martin Rudalics <rudalics@gmx.at>
15636
15637 * indent.c (Fvertical_motion): Set and restore w->pointm when
15638 saving and restoring the window's buffer (Bug#9006).
15639
15640 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
15641
15642 * editfns.c (Fstring_to_char): Clarify just what is returned
15643 (bug#6576). Text by Eli Zaretskii.
15644
15645 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
15646
15647 * gnutls.c (init_gnutls_functions): Honor gnutls_log_level (bug#9059).
15648
15649 2011-07-13 Eli Zaretskii <eliz@gnu.org>
15650
15651 * buffer.c (mmap_find): Fix a typo.
15652
15653 2011-07-13 Johan Bockgård <bojohan@gnu.org>
15654
15655 Fix execution of x selection hooks.
15656 * xselect.c (Qx_lost_selection_functions)
15657 (Qx_sent_selection_functions): New vars.
15658 (syms_of_xselect): DEFSYM them.
15659 (x_handle_selection_request): Pass Qx_sent_selection_functions
15660 rather than Vx_sent_selection_functions to Frun_hook_with_args.
15661 (x_handle_selection_clear,x_clear_frame_selections):
15662 Pass Qx_lost_selection_functions rather than
15663 Vx_lost_selection_functions to Frun_hook_with_args.
15664
15665 2011-07-13 Paul Eggert <eggert@cs.ucla.edu>
15666
15667 * buffer.c (Fget_buffer_create): Initialize inhibit_shrinking.
15668 The old code sometimes used this field without initializing it.
15669
15670 * alloc.c (gc_sweep): Don't read past end of array.
15671 In theory, the old code could also have corrupted Emacs internals,
15672 though it'd be very unlikely.
15673
15674 2011-07-12 Andreas Schwab <schwab@linux-m68k.org>
15675
15676 * character.c (Fcharacterp): Don't advertise optional ignored
15677 argument. (Bug#4026)
15678
15679 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
15680
15681 * keymap.c (syms_of_keymap): Clarify that "modifier" is "modifier
15682 key" (bug#4257).
15683
15684 * window.c (Fset_window_start): Doc fix (bug#4199).
15685 (Fset_window_hscroll): Ditto.
15686
15687 2011-07-12 Paul Eggert <eggert@cs.ucla.edu>
15688
15689 Fix minor new problems caught by GCC 4.6.1.
15690 * term.c (init_tty): Remove unused local.
15691 * xsettings.c (store_monospaced_changed): Define this function only
15692 if (defined HAVE_GSETTINGS || defined HAVE_GCONF), as it's
15693 not used otherwise.
15694
15695 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
15696
15697 * xdisp.c (Vresize_mini_windows): Minor doc fix (Bug#3300).
15698
15699 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
15700
15701 * xdisp.c (syms_of_xdisp): Make it explicit that the mini-windows
15702 are the mini-buffer and the echo area (bug#3320).
15703
15704 * term.c (init_tty): Remove support for supdup, c10 and perq
15705 terminals, which are no longer supported (bug#1482).
15706
15707 2011-07-10 Johan Bockgård <bojohan@gnu.org>
15708
15709 * xdisp.c (Ftool_bar_lines_needed): Fix WINDOWP check.
15710
15711 2011-07-10 Jan Djärv <jan.h.d@swipnet.se>
15712
15713 * xmenu.c (menu_highlight_callback): Only pass frame to show_help_event
15714 for non-popups (Bug#3642).
15715
15716 2011-07-10 Andreas Schwab <schwab@linux-m68k.org>
15717
15718 * alloc.c (reset_malloc_hooks): Protoize.
15719 * buffer.c (mmap_init, mmap_find, mmap_free_1, mmap_enlarge)
15720 (mmap_set_vars, mmap_alloc, mmap_free, mmap_realloc): Likewise.
15721 * cm.c (losecursor): Likewise.
15722 * data.c (fmod): Likewise.
15723 * dispnew.c (swap_glyphs_in_rows): Likewise.
15724 * emacs.c (memory_warning_signal): Likewise.
15725 * floatfns.c (float_error): Likewise.
15726 * font.c (check_gstring, check_otf_features, otf_tag_symbol)
15727 (otf_open, font_otf_capability, generate_otf_features)
15728 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
15729 Likewise.
15730 * image.c (pbm_read_file): Likewise.
15731 * indent.c (string_display_width): Likewise.
15732 * intervals.c (check_for_interval, search_for_interval)
15733 (inc_interval_count, count_intervals, root_interval)
15734 (adjust_intervals_for_insertion, make_new_interval): Likewise.
15735 * lread.c (defalias): Likewise.
15736 * ralloc.c (r_alloc_check): Likewise.
15737 * regex.c (set_image_of_range_1, set_image_of_range)
15738 (regex_grow_registers): Likewise.
15739 * sysdep.c (strerror): Likewise.
15740 * termcap.c (valid_filename_p, tprint, main): Likewise.
15741 * tparam.c (main): Likewise.
15742 * unexhp9k800.c (run_time_remap, save_data_space)
15743 (update_file_ptrs, read_header, write_header, calculate_checksum)
15744 (copy_file, copy_rest, display_header): Likewise.
15745 * widget.c (mark_shell_size_user_specified, create_frame_gcs):
15746 Likewise.
15747 * xdisp.c (check_it): Likewise.
15748 * xfaces.c (register_color, unregister_color, unregister_colors):
15749 Likewise.
15750 * xfns.c (print_fontset_result): Likewise.
15751 * xrdb.c (member, fatal, main): Likewise.
15752
15753 2011-07-10 Paul Eggert <eggert@cs.ucla.edu>
15754
15755 Fix minor problems found by static checking (Bug#9031).
15756 * chartab.c (char_table_set_range, map_sub_char_table):
15757 Remove unused locals.
15758 (uniprop_table): Now static.
15759 * composite.c (_work_char): Remove unused static var.
15760
15761 2011-07-09 Juanma Barranquero <lekktu@gmail.com>
15762
15763 * chartab.c (uniprop_table_uncompress): Remove unused local variable.
15764
15765 2011-07-09 Jan Djärv <jan.h.d@swipnet.se>
15766
15767 * gtkutil.c (qttip_cb): Remove code without function.
15768
15769 2011-07-09 Eli Zaretskii <eliz@gnu.org>
15770
15771 * w32.c (pthread_sigmask): New stub.
15772
15773 2011-07-08 Paul Eggert <eggert@cs.ucla.edu>
15774
15775 Use pthread_sigmask, not sigprocmask (Bug#9010).
15776 sigprocmask is portable only for single-threaded applications, and
15777 Emacs can be multi-threaded when it uses GTK.
15778 * Makefile.in (LIB_PTHREAD_SIGMASK): New macro.
15779 (LIBES): Use it.
15780 * callproc.c (Fcall_process):
15781 * process.c (create_process):
15782 * sysdep.c (sys_sigblock, sys_sigunblock, sys_sigsetmask):
15783 Use pthread_sigmask, not sigprocmask.
15784
15785 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
15786
15787 * gtkutil.c (qttip_cb): Set line wrap to FALSE for tooltip widget.
15788 (xg_prepare_tooltip): Revert text in x->ttip_lbl, margins was
15789 wrong (Bug#8591).
15790
15791 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
15792
15793 * gtkutil.c (xg_prepare_tooltip): Fix indentation and comment.
15794 Put text in x->ttip_lbl instead of gtk_tooltip_set_text (Bug#8591).
15795 (xg_hide_tooltip): Fix comment.
15796
15797 * nsterm.m (initFrameFromEmacs): Don't use ns_return_types
15798 in registerServicesMenuSendTypes.
15799 (validRequestorForSendType): Don't check ns_return_types.
15800
15801 * nsfns.m (Fx_open_connection): Put NSStringPboardType into
15802 ns_return_type.
15803
15804 2011-07-08 Jason Rumney <jasonr@gnu.org>
15805
15806 * w32term.c (x_make_frame_visible): Use SH_SHOWNORMAL rather than
15807 SH_SHOW for hidden windows (Bug#5482).
15808
15809 * w32fns.c (w32_wnd_proc) [WM_TIMER, WM_SET_CURSOR]: Avoid using
15810 frame struct members of non-existent frames (Bug#6284).
15811
15812 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
15813
15814 * nsterm.m (keyDown): Call to wantsToDelayTextChangeNotifications and
15815 variable firstTime not needed on OSX >= 10.6.
15816 (setPosition): setFloatValue:knobProportion: is deprecated on OSX
15817 >= 10.5. Use setKnobProportion, setDoubleValue.
15818
15819 * nsterm.h (MAC_OS_X_VERSION_10_3, MAC_OS_X_VERSION_10_4)
15820 (MAC_OS_X_VERSION_10_5): Define if not defined.
15821 (EmacsView, EmacsTooltip): Implements NSWindowDelegate on OSX >= 10.6.
15822 (EmacsMenu): Implements NSMenuDelegate on OSX >= 10.6.
15823 (EmacsToolbar): Implements NSToolbarDelegate on OSX >= 10.6.
15824
15825 * nsselect.m (ns_string_from_pasteboard): Don't use deprecated methods
15826 cString and lossyCString on OSX >= 10.4.
15827
15828 * nsmenu.m (fillWithWidgetValue): Don't use deprecated method
15829 sizeToFit on OSX >= 10.2.
15830
15831 * nsimage.m (allocInitFromFile): Don't use deprecated method
15832 bestRepresentationForDevice on OSX >= 10.6.
15833
15834 * nsfns.m (check_ns_display_info): Cast to long and use %ld in error
15835 to avoid warning.
15836
15837 * emacs.c: Declare unexec_init_emacs_zone.
15838
15839 * nsgui.h: Fix compiler warning about gnulib redefining verify.
15840
15841 * nsselect.m (ns_get_local_selection): Change to extern (Bug#8842).
15842
15843 * nsmenu.m (ns_update_menubar): Remove useless setDelegate call
15844 on svcsMenu (Bug#8842).
15845
15846 * nsfns.m (Fx_open_connection): Remove NSStringPboardType from
15847 ns_return_types.
15848 (Fns_list_services): Just return Qnil on 10.6, code not working there.
15849
15850 * nsterm.m (QUTF8_STRING): Declare.
15851 (initFrameFromEmacs): Call registerServicesMenuSendTypes.
15852 (validRequestorForSendType): Return type is (id).
15853 Change indexOfObjectIdenticalTo to indexOfObject.
15854 Check if we have local selection before returning self (Bug#8842).
15855 (writeSelectionToPasteboard): Put local selection into paste board
15856 if we have a local selection (Bug#8842).
15857 (syms_of_nsterm): DEFSYM QUTF8_STRING.
15858
15859 * nsterm.h (MAC_OS_X_VERSION_10_6): Define here instead of nsterm.m.
15860 (ns_get_local_selection): Declare.
15861
15862 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
15863
15864 * keymap.c (describe_map_tree): Don't insert a double newline at
15865 the end of the buffer (bug#1169) and return whether we inserted
15866 something.
15867
15868 * callint.c (Fcall_interactively): Change "reading args" to
15869 "providing args" to try to clarify what it does (bug#1010).
15870
15871 2011-07-07 Kenichi Handa <handa@m17n.org>
15872
15873 * composite.c (composition_compute_stop_pos): Ignore a static
15874 composition starting before CHARPOS (Bug#8915).
15875
15876 * xdisp.c (handle_composition_prop): Likewise.
15877
15878 2011-07-07 Eli Zaretskii <eliz@gnu.org>
15879
15880 * term.c (produce_glyphs) <xassert>: Allow IT_GLYPHLESS in it->what.
15881 (Bug#9015)
15882
15883 2011-07-07 Kenichi Handa <handa@m17n.org>
15884
15885 * character.h (unicode_category_t): New enum type.
15886
15887 * chartab.c (uniprop_decoder_t, uniprop_encoder_t): New types.
15888 (Qchar_code_property_table): New variable.
15889 (UNIPROP_TABLE_P, UNIPROP_GET_DECODER)
15890 (UNIPROP_COMPRESSED_FORM_P): New macros.
15891 (char_table_ascii): Uncompress the compressed values.
15892 (sub_char_table_ref): New arg is_uniprop. Callers changed.
15893 Uncompress the compressed values.
15894 (sub_char_table_ref_and_range): Likewise.
15895 (char_table_ref_and_range): Uncompress the compressed values.
15896 (sub_char_table_set): New arg is_uniprop. Callers changed.
15897 Uncompress the compressed values.
15898 (sub_char_table_set_range): Args changed. Callers changed.
15899 (char_table_set_range): Adjuted for the above change.
15900 (map_sub_char_table): Delete args default_val and parent. Add arg
15901 top. Give decoded values to a Lisp function.
15902 (map_char_table): Adjust for the above change. Give decoded
15903 values to a Lisp function. Gcpro more variables.
15904 (uniprop_table_uncompress)
15905 (uniprop_decode_value_run_length): New functions.
15906 (uniprop_decoder, uniprop_decoder_count): New variables.
15907 (uniprop_get_decoder, uniprop_encode_value_character)
15908 (uniprop_encode_value_run_length, uniprop_encode_value_numeric):
15909 New functions.
15910 (uniprop_encoder, uniprop_encoder_count): New variables.
15911 (uniprop_get_encoder, uniprop_table)
15912 (Funicode_property_table_internal, Fget_unicode_property_internal)
15913 (Fput_unicode_property_internal): New functions.
15914 (syms_of_chartab): DEFSYM Qchar_code_property_table, defsubr
15915 Sunicode_property_table_internal, Sget_unicode_property_internal,
15916 and Sput_unicode_property_internal. Defvar_lisp
15917 char-code-property-alist.
15918
15919 * composite.c (CHAR_COMPOSABLE_P): Adjust for the change of
15920 Vunicode_category_table.
15921
15922 * font.c (font_range): Adjust for the change of
15923 Vunicode_category_table.
15924
15925 2011-07-07 Dan Nicolaescu <dann@ics.uci.edu>
15926
15927 * m/iris4d.h: Remove file, move contents ...
15928 * s/irix6-5.h: ... here.
15929
15930 2011-07-06 Paul Eggert <eggert@cs.ucla.edu>
15931
15932 Remove unportable assumption about struct layout (Bug#8884).
15933 * alloc.c (mark_buffer):
15934 * buffer.c (reset_buffer_local_variables, Fbuffer_local_variables)
15935 (clone_per_buffer_values): Don't assume that
15936 sizeof (struct buffer) is a multiple of sizeof (Lisp_Object).
15937 This isn't true in general, and it's particularly not true
15938 if Emacs is configured with --with-wide-int.
15939 * buffer.h (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER):
15940 New macros, used in the buffer.c change.
15941
15942 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
15943
15944 * xsettings.c: Use both GConf and GSettings if both are available.
15945 (store_config_changed_event): Add comment.
15946 (dpyinfo_valid, store_font_name_changed, map_tool_bar_style)
15947 (store_tool_bar_style_changed): New functions.
15948 (store_monospaced_changed): Add comment. Call dpyinfo_valid.
15949 (struct xsettings): Move font inside HAVE_XFT.
15950 (GSETTINGS_TOOL_BAR_STYLE, GSETTINGS_FONT_NAME): New defines.
15951 (GSETTINGS_MONO_FONT): Rename from SYSTEM_MONO_FONT.
15952 Move inside HAVE_XFT.
15953 (something_changed_gsettingsCB): Rename from something_changedCB.
15954 Check for changes in GSETTINGS_TOOL_BAR_STYLE and GSETTINGS_FONT_NAME
15955 also.
15956 (GCONF_TOOL_BAR_STYLE, GCONF_FONT_NAME): New defines.
15957 (GCONF_MONO_FONT): Rename from SYSTEM_MONO_FONT. Move inside HAVE_XFT.
15958 (something_changed_gconfCB): Rename from something_changedCB.
15959 Check for changes in GCONF_TOOL_BAR_STYLE and GCONF_FONT_NAME also.
15960 (parse_settings): Move check for font inside HAVE_XFT.
15961 (read_settings, apply_xft_settings): Add comment.
15962 (read_and_apply_settings): Add comment. Call map_tool_bar_style and
15963 store_tool_bar_style_changed. Move check for font inside HAVE_XFT and
15964 call store_font_name_changed.
15965 (xft_settings_event): Add comment.
15966 (init_gsettings): Add comment. Get values for GSETTINGS_TOOL_BAR_STYLE
15967 and GSETTINGS_FONT_NAME. Move check for fonts within HAVE_XFT.
15968 (init_gconf): Add comment. Get values for GCONF_TOOL_BAR_STYLE
15969 and GCONF_FONT_NAME. Move check for fonts within HAVE_XFT.
15970 (xsettings_initialize): Call init_gsettings last.
15971 (xsettings_get_system_font, xsettings_get_system_normal_font):
15972 Add comment.
15973
15974 2011-07-05 Paul Eggert <eggert@cs.ucla.edu>
15975
15976 Random fixes. E.g., (random) never returned negative values.
15977 * fns.c (Frandom): Use GET_EMACS_TIME for random seed, and add the
15978 subseconds part to the entropy, as that's a bit more random.
15979 Prefer signed to unsigned, since the signedness doesn't matter and
15980 in general we prefer signed. When given a limit, use a
15981 denominator equal to INTMASK + 1, not to VALMASK + 1, because the
15982 latter isn't right if USE_2_TAGS_FOR_INTS.
15983 * sysdep.c (get_random): Return a value in the range 0..INTMASK,
15984 not 0..VALMASK. Don't discard "excess" bits that random () returns.
15985
15986 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
15987
15988 * textprop.c (text_property_stickiness):
15989 Obey Vtext_property_default_nonsticky.
15990 (syms_of_textprop): Add `display' to Vtext_property_default_nonsticky.
15991 * w32fns.c (syms_of_w32fns):
15992 * xfns.c (syms_of_xfns): Don't Add `display' since it's there by default.
15993
15994 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
15995
15996 * fileio.c (barf_or_query_if_file_exists): Use S_ISDIR.
15997 This is more efficient than Ffile_directory_p and avoids a minor race.
15998
15999 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
16000
16001 * buffer.c (Foverlay_put): Say what the return value is
16002 (bug#7835).
16003
16004 * fileio.c (barf_or_query_if_file_exists): Check first if the file
16005 is a directory before asking whether to use the file name
16006 (bug#7564).
16007 (barf_or_query_if_file_exists): Make the "File is a directory"
16008 error be more correct.
16009
16010 * fns.c (Frequire): Remove the mention of the .gz files, since
16011 that's installation-specific, but keep the mention of
16012 `get-load-suffixes'.
16013
16014 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
16015
16016 * editfns.c (Fformat_time_string): Don't assume strlen fits in int.
16017 Report string overflow if the output is too long.
16018
16019 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
16020
16021 * gnutls.c (Fgnutls_boot): Don't mention :verify-error.
16022 (syms_of_gnutls): Remove duplicate DEFSYM for
16023 Qgnutls_bootprop_verify_hostname_error, an error for
16024 Qgnutls_bootprop_verify_error (which is no longer used).
16025
16026 * eval.c (find_handler_clause): Remove parameters `sig' and `data',
16027 unused since 2011-01-26T20:02:07Z!monnier@iro.umontreal.ca. All callers changed.
16028 Also (re)move comments that are misplaced or no longer relevant.
16029
16030 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16031
16032 * callint.c (Finteractive): Clarify the meaning of "@" (bug#8813).
16033
16034 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
16035
16036 * xfaces.c (Finternal_merge_in_global_face): Modify the foreground
16037 and background color parameters if they have been changed.
16038
16039 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16040
16041 * editfns.c (Fformat): Clarify the - and 0 flags (bug#6659).
16042
16043 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
16044
16045 * xsettings.c (SYSTEM_FONT): Define only when used.
16046 No need to define when HAVE_GSETTINGS || !HAVE_XFT.
16047
16048 * keymap.c (access_keymap_1): Now static.
16049
16050 2011-07-02 Chong Yidong <cyd@stupidchicken.com>
16051
16052 * keyboard.c (command_loop_1): If a down-mouse event is unbound,
16053 leave any prefix arg for the up event (Bug#1586).
16054
16055 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
16056
16057 * lread.c (syms_of_lread): Mention single symbols defined by
16058 `defvar' or `defconst' (bug#7154).
16059
16060 * fns.c (Frequire): Mention .el.gz files (bug#7314).
16061 (Frequire): Mention get-load-suffixes.
16062
16063 2011-07-02 Martin Rudalics <rudalics@gmx.at>
16064
16065 * window.h (window): Remove clone_number slot.
16066 * window.c (Fwindow_clone_number, Fset_window_clone_number):
16067 Remove.
16068 (make_parent_window, make_window, saved_window)
16069 (Fset_window_configuration, save_window_save): Don't deal with
16070 clone numbers.
16071 * buffer.c (Qclone_number): Remove declaration.
16072 (sort_overlays, overlay_strings): Don't deal with clone numbers.
16073
16074 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
16075
16076 Add multiple inheritance to keymaps.
16077 * keymap.c (Fmake_composed_keymap): New function.
16078 (Fset_keymap_parent): Simplify.
16079 (fix_submap_inheritance): Remove.
16080 (access_keymap_1): New function extracted from access_keymap to handle
16081 embedded parents and handle lists of maps.
16082 (access_keymap): Use it.
16083 (Fkeymap_prompt, map_keymap_internal, map_keymap, store_in_keymap)
16084 (Fcopy_keymap): Handle embedded parents.
16085 (Fcommand_remapping, define_as_prefix): Simplify.
16086 (Fkey_binding): Simplify.
16087 (syms_of_keymap): Move minibuffer-local-completion-map,
16088 minibuffer-local-filename-completion-map,
16089 minibuffer-local-must-match-map, and
16090 minibuffer-local-filename-must-match-map to Elisp.
16091 (syms_of_keymap): Defsubr make-composed-keymap.
16092 * keyboard.c (menu_bar_items): Use map_keymap_canonical.
16093 (parse_menu_item): Trivial simplification.
16094
16095 2011-07-01 Glenn Morris <rgm@gnu.org>
16096
16097 * Makefile.in (SETTINGS_LIBS): Fix typo.
16098
16099 2011-07-01 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
16100
16101 * coding.c (Fencode_coding_string): Record the last coding system
16102 used, as the function doc string says (bug#8738).
16103
16104 2011-07-01 Jan Djärv <jan.h.d@swipnet.se>
16105
16106 * xsettings.c (store_monospaced_changed): Take new font as arg and
16107 check for change against current_mono_font.
16108 (EMACS_TYPE_SETTINGS): Remove this and related defines.
16109 (emacs_settings_constructor, emacs_settings_get_property)
16110 (emacs_settings_set_property, emacs_settings_class_init)
16111 (emacs_settings_init, gsettings_obj): Remove.
16112 (something_changedCB): New function for HAVE_GSETTINGS.
16113 (something_changedCB): HAVE_GCONF: Call store_monospaced_changed
16114 with value as argument.
16115 (init_gsettings): Check that GSETTINGS_SCHEMA exists before calling
16116 g_settings_new (Bug#8967). Do not create gsettings_obj.
16117 Remove calls to g_settings_bind. Connect something_changedCB to
16118 "changed".
16119
16120 * xgselect.c: Add defined (HAVE_GSETTINGS).
16121 (xgselect_initialize): Ditto.
16122
16123 * process.c: Add defined (HAVE_GSETTINGS) for xgselect.h
16124 (wait_reading_process_output): Add defined (HAVE_GSETTINGS) for
16125 xg_select.
16126
16127 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
16128
16129 * eval.c (struct backtrace): Simplify and port the data structure.
16130 Do not assume that "int nargs : BITS_PER_INT - 2;" produces a
16131 signed bit field, as this assumption is not portable and it makes
16132 Emacs crash when compiled with Sun C 5.8 on sparc. Do not use
16133 "char debug_on_exit : 1" as this is not portable either; instead,
16134 use the portable "unsigned int debug_on_exit : 1". Remove unused
16135 member evalargs. Remove obsolete comments about cc bombing out.
16136
16137 2011-06-30 Jan Djärv <jan.h.d@swipnet.se>
16138
16139 * xsettings.c: Include glib-object.h, gio/gio.h if HAVE_GSETTINGS.
16140 Let HAVE_GSETTINGS override HAVE_GCONF.
16141 (store_monospaced_changed): New function.
16142 (EMACS_SETTINGS): A new type derived from GObject to handle
16143 GSettings notifications.
16144 (emacs_settings_constructor, emacs_settings_get_property)
16145 (emacs_settings_set_property, emacs_settings_class_init):
16146 New functions.
16147 (gsettings_client, gsettings_obj): New variables.
16148 (GSETTINGS_SCHEMA): New define.
16149 (something_changedCB): Call store_monospaced_changed.
16150 (init_gsettings): New function.
16151 (xsettings_initialize): Call init_gsettings.
16152 (syms_of_xsettings): Initialize gsettings_client, gsettings_obj
16153 to NULL.
16154
16155 * Makefile.in (SETTINGS_CFLAGS, SETTINGS_LIBS): Rename from
16156 GCONF_CFLAGS/LIBS.
16157
16158 2011-06-29 Martin Rudalics <rudalics@gmx.at>
16159
16160 * window.c (resize_root_window, grow_mini_window)
16161 (shrink_mini_window): Rename Qresize_root_window to
16162 Qwindow_resize_root_window and Qresize_root_window_vertically to
16163 Qwindow_resize_root_window_vertically.
16164
16165 2011-06-28 Paul Eggert <eggert@cs.ucla.edu>
16166
16167 * gnutls.c (Qgnutls_bootprop_verify_error): Remove unused var.
16168
16169 2011-06-27 Juanma Barranquero <lekktu@gmail.com>
16170
16171 * makefile.w32-in: Redesign dependencies so they reflect more
16172 clearly which files are directly included by each source file,
16173 and not through other includes.
16174
16175 2011-06-27 Martin Rudalics <rudalics@gmx.at>
16176
16177 * buffer.c (Qclone_number): Declare static and DEFSYM it.
16178 (sort_overlays, overlay_strings): When an overlay's clone number
16179 matches the window's clone number process the overlay even if
16180 the overlay's window property doesn't match the current window.
16181
16182 * window.c (Fwindow_vchild): Rename to Fwindow_top_child.
16183 (Fwindow_hchild): Rename to Fwindow_left_child.
16184 (Fwindow_next): Rename to Fwindow_next_sibling.
16185 (Fwindow_prev): Rename to Fwindow_prev_sibling.
16186 (resize_window_check): Rename to window_resize_check.
16187 (resize_window_apply): Rename to window_resize_apply.
16188 (Fresize_window_apply): Rename to Fwindow_resize_apply.
16189 (Fdelete_other_windows_internal, resize_frame_windows)
16190 (Fsplit_window_internal, Fdelete_window_internal)
16191 (grow_mini_window, shrink_mini_window)
16192 (Fresize_mini_window_internal): Fix callers accordingly.
16193
16194 2011-06-26 Jan Djärv <jan.h.d@swipnet.se>
16195
16196 * emacsgtkfixed.h: State that this is only used with Gtk+3.
16197 (emacs_fixed_set_min_size): Remove.
16198 (emacs_fixed_new): Take frame as argument.
16199
16200 * emacsgtkfixed.c: State that this is only used with Gtk+3.
16201 (_EmacsFixedPrivate): Remove minwidth/height.
16202 Add struct frame *f.
16203 (emacs_fixed_init): Initialize priv->f.
16204 (get_parent_class, emacs_fixed_set_min_size): Remove.
16205 (emacs_fixed_new): Set priv->f to argument.
16206 (emacs_fixed_get_preferred_width)
16207 (emacs_fixed_get_preferred_height): Use min_width/height from
16208 frames size_hint to set minimum and natural (Bug#8919).
16209 (XSetWMSizeHints, XSetWMNormalHints): Override these functions
16210 and use min_width/height from frames size_hint to set
16211 min_width/height (Bug#8919).
16212
16213 * gtkutil.c (xg_create_frame_widgets): Pass f to emacs_fixed_new.
16214 (x_wm_set_size_hint): Remove call to emacs_fixed_set_min_size.
16215 Fix indentation.
16216
16217 2011-06-26 Eli Zaretskii <eliz@gnu.org>
16218
16219 * bidi.c (bidi_paragraph_init): Test for ZV_BYTE before calling
16220 bidi_at_paragraph_end, since fast_looking_at doesn't like to be
16221 called at ZV.
16222
16223 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
16224
16225 * process.c (wait_reading_process_output): Bypass select if
16226 waiting for a cell while ignoring keyboard input, and input is
16227 pending. Suggested by Jan Djärv (Bug#8869).
16228
16229 2011-06-25 Paul Eggert <eggert@cs.ucla.edu>
16230
16231 Use gnulib's dup2 module instead of rolling our own.
16232 * sysdep.c (dup2) [!HAVE_DUP2]: Remove; gnulib now does this.
16233
16234 2011-06-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16235
16236 * dispnew.c (scrolling_window): Before scrolling, turn off a
16237 mouse-highlight in the window being scrolled.
16238
16239 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
16240
16241 Move DEFSYM to lisp.h and use everywhere.
16242
16243 * character.h (DEFSYM): Move declaration...
16244 * lisp.h (DEFSYM): ...here.
16245
16246 * gnutls.c:
16247 * minibuf.c:
16248 * w32menu.c:
16249 * w32proc.c:
16250 * w32select.c: Don't include character.h.
16251
16252 * alloc.c (syms_of_alloc):
16253 * buffer.c (syms_of_buffer):
16254 * bytecode.c (syms_of_bytecode):
16255 * callint.c (syms_of_callint):
16256 * casefiddle.c (syms_of_casefiddle):
16257 * casetab.c (init_casetab_once):
16258 * category.c (init_category_once, syms_of_category):
16259 * ccl.c (syms_of_ccl):
16260 * cmds.c (syms_of_cmds):
16261 * composite.c (syms_of_composite):
16262 * dbusbind.c (syms_of_dbusbind):
16263 * dired.c (syms_of_dired):
16264 * dispnew.c (syms_of_display):
16265 * doc.c (syms_of_doc):
16266 * editfns.c (syms_of_editfns):
16267 * emacs.c (syms_of_emacs):
16268 * eval.c (syms_of_eval):
16269 * fileio.c (syms_of_fileio):
16270 * fns.c (syms_of_fns):
16271 * frame.c (syms_of_frame):
16272 * fringe.c (syms_of_fringe):
16273 * insdel.c (syms_of_insdel):
16274 * keymap.c (syms_of_keymap):
16275 * lread.c (init_obarray, syms_of_lread):
16276 * macros.c (syms_of_macros):
16277 * msdos.c (syms_of_msdos):
16278 * print.c (syms_of_print):
16279 * process.c (syms_of_process):
16280 * search.c (syms_of_search):
16281 * sound.c (syms_of_sound):
16282 * syntax.c (init_syntax_once, syms_of_syntax):
16283 * terminal.c (syms_of_terminal):
16284 * textprop.c (syms_of_textprop):
16285 * undo.c (syms_of_undo):
16286 * w32.c (globals_of_w32):
16287 * window.c (syms_of_window):
16288 * xdisp.c (syms_of_xdisp):
16289 * xfaces.c (syms_of_xfaces):
16290 * xfns.c (syms_of_xfns):
16291 * xmenu.c (syms_of_xmenu):
16292 * xsettings.c (syms_of_xsettings):
16293 * xterm.c (syms_of_xterm): Use DEFSYM.
16294
16295 2011-06-24 Teodor Zlatanov <tzz@lifelogs.com>
16296
16297 * gnutls.c (syms_of_gnutls): Use the DEFSYM macro from character.h.
16298
16299 2011-06-23 Paul Eggert <eggert@cs.ucla.edu>
16300
16301 Integer and buffer overflow fixes (Bug#8873).
16302
16303 * print.c (printchar, strout): Check for string overflow.
16304 (PRINTPREPARE, printchar, strout):
16305 Don't set size unless allocation succeeds.
16306
16307 * minibuf.c (read_minibuf_noninteractive): Use ptrdiff_t, not int,
16308 for sizes. Check for string overflow more accurately.
16309 Simplify newline removal at end; this suppresses a GCC 4.6.0 warning.
16310
16311 * macros.c: Integer and buffer overflow fixes.
16312 * keyboard.h (struct keyboard.kbd_macro_bufsize):
16313 * macros.c (Fstart_kbd_macro, store_kbd_macro_char):
16314 Use ptrdiff_t, not int, for sizes.
16315 Don't increment bufsize until after realloc succeeds.
16316 Check for size-calculation overflow.
16317 (Fstart_kbd_macro): Use EMACS_INT, not int, for XINT result.
16318
16319 * lisp.h (DEFVAR_KBOARD): Use offsetof instead of char * finagling.
16320
16321 * lread.c: Integer overflow fixes.
16322 (read_integer): Radix is now EMACS_INT, not int,
16323 to improve quality of diagnostics for out-of-range radices.
16324 Calculate buffer size correctly for out-of-range radices.
16325 (read1): Check for integer overflow in radices, and in
16326 read-circle numbers.
16327 (read_escape): Avoid int overflow.
16328 (Fload, openp, read_buffer_size, read1)
16329 (substitute_object_recurse, read_vector, read_list, map_obarray):
16330 Use ptrdiff_t, not int, for sizes.
16331 (read1): Use EMACS_INT, not int, for sizes.
16332 Check for size overflow.
16333
16334 * image.c (cache_image): Check for size arithmetic overflow.
16335
16336 * lread.c: Integer overflow issues.
16337 (saved_doc_string_size, saved_doc_string_length)
16338 (prev_saved_doc_string_size, prev_saved_doc_string_length):
16339 Now ptrdiff_t, not int.
16340 (read1): Don't assume doc string length fits in int. Check for
16341 out-of-range doc string lengths.
16342 (read_list): Don't assume file position fits in int.
16343 (read_escape): Check for hex character overflow.
16344
16345 2011-06-22 Leo Liu <sdl.web@gmail.com>
16346
16347 * minibuf.c (Fcompleting_read_default, Vcompleting_read_function):
16348 Move to minibuffer.el.
16349
16350 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
16351
16352 Fixes for GLYPH_DEBUG found by GCC 4.6.0 static checking.
16353 The following patches are for when GLYPH_DEBUG && !XASSERT.
16354 * dispextern.h (trace_redisplay_p, dump_glyph_string):
16355 * dispnew.c (flush_stdout):
16356 * xdisp.c (dump_glyph_row, dump_glyph_matrix, dump_glyph):
16357 Mark as externally visible.
16358 * dispnew.c (check_window_matrix_pointers): Now static.
16359 * dispnew.c (window_to_frame_vpos):
16360 * xfns.c (unwind_create_frame):
16361 * xterm.c (x_check_font): Remove unused local.
16362 * scroll.c (CHECK_BOUNDS):
16363 * xfaces.c (cache_fache): Rename local to avoid shadowing.
16364 * xfns.c, w32fns.c (image_cache_refcount, dpyinfo_refcount): Now static.
16365 * xdisp.c (check_window_end): Now a no-op if !XASSERTS.
16366 (debug_first_unchanged_at_end_vpos, debug_last_unchanged_at_beg_vpos)
16367 (debug_dvpos, debug_dy, debug_delta, debug_delta_bytes, debug_end_vpos):
16368 Now static.
16369 (debug_method_add): Use va_list and vsprintf rather than relying
16370 on undefined behavior with wrong number of arguments.
16371 (dump_glyph, dump_glyph_row, Fdump_glyph_matrix):
16372 Don't assume ptrdiff_t and EMACS_INT are the same width as int.
16373 In this code, it's OK to assume C99 behavior for ptrdiff_t formats
16374 since we're not interested in debugging glyphs with old libraries.
16375 * xfaces.c (cache_face): Move debugging code earlier; this pacifies
16376 GCC 4.6.0's static checking.
16377
16378 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
16379
16380 Integer overflow and signedness fixes (Bug#8873).
16381 A few related buffer overrun fixes, too.
16382
16383 * font.c (font_score): Use EMACS_INT, not int, to store XINT value.
16384
16385 * dispextern.h (struct face.stipple):
16386 * image.c (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
16387 (x_bitmap_mask, x_allocate_bitmap_record)
16388 (x_create_bitmap_from_data, x_create_bitmap_from_file)
16389 (x_destroy_bitmap, x_destroy_all_bitmaps, x_create_bitmap_mask)
16390 (x_create_bitmap_from_xpm_data):
16391 * nsterm.h (struct ns_display_info.bitmaps_size, .bitmaps_last):
16392 * w32term.h (struct w32_display_info.icon_bitmap_id, .bitmaps_size)
16393 (.bitmaps_last):
16394 * xfaces.c (load_pixmap):
16395 * xterm.c (x_bitmap_icon, x_wm_set_icon_pixmap):
16396 * xterm.h (struct x_display_info.icon_bitmap_id, .bitmaps_size)
16397 (.bitmaps_last, struct x_output.icon_bitmap):
16398 Use ptrdiff_t, not int, for bitmap indexes.
16399 (x_allocate_bitmap_record): Check for size overflow.
16400 * dispextern.h, lisp.h: Adjust to API changes elsewhere.
16401
16402 Use ptrdiff_t, not int, for overlay counts.
16403 * buffer.h (overlays_at, sort_overlays, GET_OVERLAYS_AT):
16404 * editfns.c (overlays_around, get_pos_property):
16405 * textprop.c (get_char_property_and_overlay):
16406 * xdisp.c (next_overlay_change, note_mouse_highlight):
16407 * xfaces.c (face_at_buffer_position):
16408 * buffer.c (OVERLAY_COUNT_MAX): New macro.
16409 (overlays_at, overlays_in, sort_overlays, Foverlays_at)
16410 (Fnext_overlay_change, Fprevious_overlay_change)
16411 (mouse_face_overlay_overlaps, Foverlays_in):
16412 Use ptrdiff_t, not int, for sizes.
16413 (overlays_at, overlays_in): Check for size-calculation overflow.
16414
16415 * xterm.c (xim_initialize, same_x_server): Strlen may not fit in int.
16416
16417 * xsmfns.c (smc_save_yourself_CB, x_session_initialize): Avoid strlen.
16418 (x_session_initialize): Do not assume string length fits in int.
16419
16420 * xsettings.c (apply_xft_settings): Fix potential buffer overrun.
16421 This is unlikely, but can occur if DPI is outlandish.
16422
16423 * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
16424 * xselect.c (Fx_get_atom_name): Avoid need for strlen.
16425
16426 * xrdb.c: Don't assume strlen fits in int; avoid some strlens.
16427 * xrdb.c (magic_file_p, search_magic_path):
16428 Omit last arg SUFFIX; it was always 0. All callers changed.
16429 (magic_file_p): Use ptrdiff_t, not int. Check for size overflow.
16430
16431 * xfont.c (xfont_match): Avoid need for strlen.
16432
16433 * xfns.c: Don't assume strlen fits in int.
16434 (xic_create_fontsetname, x_window): Use ptrdiff_t, not int.
16435
16436 * xdisp.c (message_log_check_duplicate): Return intmax_t,
16437 not unsigned long, as we prefer signed integers. All callers changed.
16438 Detect integer overflow in repeat count.
16439 (message_dolog): Don't assume print length fits in 39 bytes.
16440 (display_mode_element): Don't assume strlen fits in int.
16441
16442 * termcap.c: Don't assume sizes fit in int and never overflow.
16443 (struct termcap_buffer, tgetent): Use ptrdiff_t, not int, for sizes.
16444 (gobble_line): Check for size-calculation overflow.
16445
16446 * minibuf.c (Fread_buffer):
16447 * lread.c (intern, intern_c_string):
16448 * image.c (xpm_scan) [HAVE_NS && !HAVE_XPM]:
16449 Don't assume string length fits in int.
16450
16451 * keyboard.c (parse_tool_bar_item):
16452 * gtkutil.c (style_changed_cb): Avoid need for strlen.
16453
16454 * font.c: Don't assume string length fits in int.
16455 (font_parse_xlfd, font_parse_fcname, font_unparse_fcname):
16456 Use ptrdiff_t, not int.
16457 (font_intern_prop): Don't assume string length fits in int.
16458 Don't assume integer property fits in fixnum.
16459 * font.h (font_intern_prop): 2nd arg is now ptrdiff_t, not int.
16460
16461 * filelock.c: Fix some buffer overrun and integer overflow issues.
16462 (get_boot_time): Don't assume gzip command string fits in 100 bytes.
16463 Reformulate so as not to need the command string.
16464 Invoke gzip -cd rather than gunzip, as it's more portable.
16465 (lock_info_type, lock_file_1, lock_file):
16466 Don't assume pid_t and time_t fit in unsigned long.
16467 (LOCK_PID_MAX): Remove; we now use more-reliable bounds.
16468 (current_lock_owner): Prefer signed type for sizes.
16469 Use memcpy, not strncpy, where memcpy is what is really wanted.
16470 Don't assume (via atoi) that time_t and pid_t fit in int.
16471 Check for time_t and/or pid_t out of range, e.g., via a network share.
16472 Don't alloca where an auto var works fine.
16473
16474 * fileio.c: Fix some integer overflow issues.
16475 (file_name_as_directory, Fexpand_file_name, Fsubstitute_in_file_name):
16476 Don't assume string length fits in int.
16477 (directory_file_name): Don't assume string length fits in long.
16478 (make_temp_name): Don't assume pid fits in int, or that its print
16479 length is less than 20.
16480
16481 * data.c (Fsubr_name): Rewrite to avoid a strlen call.
16482
16483 * coding.c (make_subsidiaries): Don't assume string length fits in int.
16484
16485 * callproc.c (child_setup): Rewrite to avoid two strlen calls.
16486
16487 * process.c (Fformat_network_address): Use EMACS_INT, not EMACS_UINT.
16488 We prefer signed integers, even for size calculations.
16489
16490 * emacs.c: Don't assume string length fits in 'int'.
16491 (DEFINE_DUMMY_FUNCTION, sort_args): Use ptrdiff_t, not int.
16492 (main): Don't invoke strlen when not needed.
16493
16494 * dbusbind.c (XD_ERROR): Don't arbitrarily truncate string.
16495 (XD_DEBUG_MESSAGE): Don't waste a byte.
16496
16497 * callproc.c (getenv_internal_1, getenv_internal)
16498 (Fgetenv_internal):
16499 * buffer.c (init_buffer): Don't assume string length fits in 'int'.
16500
16501 * lread.c (invalid_syntax): Omit length argument.
16502 All uses changed. This doesn't fix a bug, but it simplifies the
16503 code away from its former Hollerith-constant appearance, and it's
16504 one less 'int' to worry about when looking at integer-overflow issues.
16505 (string_to_number): Simplify 2011-04-26 change by invoking xsignal1.
16506
16507 * lisp.h (DEFUN): Remove bogus use of sizeof (struct Lisp_Subr).
16508 This didn't break anything, but it didn't help either.
16509 It's confusing to put a bogus integer in a place where the actual
16510 value does not matter.
16511 (LIST_END_P): Remove unused macro and its bogus comment.
16512 (make_fixnum_or_float): Remove unnecessary cast to EMACS_INT.
16513
16514 * lisp.h (union Lisp_Object.i): EMACS_INT, not EMACS_UINT.
16515 This is for consistency with the ordinary, non-USE_LISP_UNION_TYPE,
16516 implementation.
16517 (struct Lisp_Bool_Vector.size): EMACS_INT, not EMACS_UINT.
16518 We prefer signed types, and the value cannot exceed the EMACS_INT
16519 range anyway (because otherwise the length would not be representable).
16520 (XSET) [USE_LISP_UNION_TYPE]: Use uintptr_t and intptr_t,
16521 not EMACS_UINT and EMACS_INT, when converting pointer to integer.
16522 This avoids a GCC warning when WIDE_EMACS_INT.
16523
16524 * indent.c (sane_tab_width): New function.
16525 (current_column, scan_for_column, Findent_to, position_indentation)
16526 (compute_motion): Use it. This is just for clarity.
16527 (Fcompute_motion): Don't assume hscroll and tab offset fit in int.
16528
16529 * image.c (xbm_image_p): Don't assume stated width, height fit in int.
16530
16531 * lisp.h (lint_assume): New macro.
16532 * composite.c (composition_gstring_put_cache):
16533 * ftfont.c (ftfont_shape_by_flt): Use it to pacify GCC 4.6.0.
16534
16535 * editfns.c, insdel.c:
16536 Omit unnecessary forward decls, to simplify future changes.
16537
16538 * ftfont.c (ftfont_shape_by_flt): Use signed integers for lengths.
16539
16540 * font.c (Ffont_shape_gstring): Don't assume glyph len fits in 'int'.
16541
16542 * fns.c (Ffillarray): Don't assume bool vector size fits in 'int'.
16543 Use much-faster test for byte-length change.
16544 Don't assume string byte-length fits in 'int'.
16545 Check that character arg fits in 'int'.
16546 (mapcar1): Declare byte as byte, for clarity.
16547
16548 * alloc.c (Fmake_bool_vector): Avoid unnecessary multiplication.
16549
16550 * fns.c (concat): Catch string overflow earlier.
16551 Do not rely on integer wraparound.
16552
16553 * dispextern.h (struct it.overlay_strings_charpos)
16554 (struct it.selective): Now EMACS_INT, not int.
16555 * xdisp.c (forward_to_next_line_start)
16556 (back_to_previous_visible_line_start)
16557 (reseat_at_next_visible_line_start, next_element_from_buffer):
16558 Don't arbitrarily truncate the value of 'selective' to int.
16559
16560 * xdisp.c (init_iterator): Use XINT, not XFASTINT; it might be < 0.
16561
16562 * composite.c: Don't truncate sizes to 'int'.
16563 (composition_gstring_p, composition_reseat_it)
16564 (composition_adjust_point): Use EMACS_INT, not int.
16565 (get_composition_id, composition_gstring_put_cache): Use EMACS_INT,
16566 not EMACS_UINT, for indexes.
16567
16568 * category.h (CATEGORY_SET_P): Remove unnecessary cast to EMACS_INT.
16569
16570 * buffer.c: Include <verify.h>.
16571 (struct sortvec.priority, struct sortstr.priority):
16572 Now EMACS_INT, not int.
16573 (compare_overlays, cmp_for_strings): Avoid subtraction overflow.
16574 (struct sortstr.size, record_overlay_string)
16575 (struct sortstrlist.size, struct sortlist.used):
16576 Don't truncate size to int.
16577 (record_overlay_string): Check for size-calculation overflow.
16578 (init_buffer_once): Check at compile-time, not run-time.
16579
16580 2011-06-22 Jim Meyering <meyering@redhat.com>
16581
16582 Don't leak an XBM-image-sized buffer
16583 * image.c (xbm_load): Free the image buffer after using it.
16584
16585 2011-06-21 Paul Eggert <eggert@cs.ucla.edu>
16586
16587 Port to Sun C.
16588 * composite.c (find_automatic_composition): Omit needless 'return 0;'
16589 that Sun C diagnosed.
16590 * fns.c (secure_hash): Fix pointer signedness issue.
16591 * intervals.c (static_offset_intervals): New function.
16592 (offset_intervals): Use it.
16593
16594 2011-06-21 Leo Liu <sdl.web@gmail.com>
16595
16596 * deps.mk (fns.o):
16597 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha256.h and
16598 sha512.h.
16599
16600 * fns.c (secure_hash): Rename from crypto_hash_function and change
16601 the first arg to accept symbols.
16602 (Fsecure_hash): New primitive.
16603 (syms_of_fns): New symbols.
16604
16605 2011-06-20 Deniz Dogan <deniz@dogan.se>
16606
16607 * process.c (Fset_process_buffer): Clarify return value in
16608 docstring.
16609
16610 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
16611
16612 * dispnew.c (add_window_display_history): Use BVAR.
16613
16614 * xdisp.c (debug_method_add): Use BVAR.
16615 (check_window_end, dump_glyph_matrix, dump_glyph)
16616 (dump_glyph_row, dump_glyph_string): Convert arglist to ANSI C.
16617
16618 * xfaces.c (check_lface_attrs, check_lface, dump_realized_face):
16619 Likewise.
16620
16621 * xfns.c (Fx_create_frame, x_create_tip_frame): Delay image cache
16622 check till after the cache is created in init_frame_faces.
16623
16624 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
16625
16626 * fns.c (Fsafe_length): Yet another int/Lisp_Object mixup.
16627
16628 2011-06-16 Paul Eggert <eggert@cs.ucla.edu>
16629
16630 * lisp.h: Include <limits.h>, for INT_MAX, LONG_MAX, LLONG_MAX.
16631 Without this, prin1 mishandles Lisp_Misc_Save_Value printing on
16632 hosts with pre-C99 libraries, because pD is wrongly defined to "t".
16633
16634 Improve buffer-overflow checking (Bug#8873).
16635 * fileio.c (Finsert_file_contents):
16636 * insdel.c (insert_from_buffer_1, replace_range, replace_range_2):
16637 Remove the old (too-loose) buffer overflow checks.
16638 They weren't needed, since make_gap checks for buffer overflow.
16639 * insdel.c (make_gap_larger): Catch buffer overflows that were missed.
16640 The old code merely checked for Emacs fixnum overflow, and relied
16641 on undefined (wraparound) behavior. The new code avoids undefined
16642 behavior, and also checks for ptrdiff_t and/or size_t overflow.
16643
16644 * editfns.c (Finsert_char): Don't dump core with very negative counts.
16645 Tune. Don't use wider integers than needed. Don't use alloca.
16646 Use a bigger 'string' buffer. Rewrite to avoid 'n > 0' test.
16647
16648 * insdel.c (replace_range): Fix buf overflow when insbytes < outgoing.
16649
16650 * insdel.c, lisp.h (buffer_overflow): New function.
16651 (insert_from_buffer_1, replace_range, replace_range_2):
16652 * insdel.c (make_gap_larger):
16653 * editfns.c (Finsert_char):
16654 * fileio.c (Finsert_file_contents): Use it, to normalize wording.
16655
16656 * buffer.h (BUF_BYTES_MAX): Cast to ptrdiff_t so that it's signed.
16657
16658 2011-06-15 Paul Eggert <eggert@cs.ucla.edu>
16659
16660 Integer overflow and signedness fixes (Bug#8873, Bug#8828).
16661
16662 * ccl.c (ASCENDING_ORDER): New macro, to work around GCC bug 43772.
16663 (GET_CCL_RANGE, IN_INT_RANGE): Use it.
16664
16665 * fileio.c: Don't assume EMACS_INT fits in off_t.
16666 (emacs_lseek): New static function.
16667 (Finsert_file_contents, Fwrite_region): Use it.
16668 Use SEEK_SET, SEEK_CUR, SEEK_END as appropriate.
16669
16670 * fns.c (Fload_average): Don't assume 100 * load average fits in int.
16671
16672 * fns.c: Don't overflow int when computing a list length.
16673 * fns.c (QUIT_COUNT_HEURISTIC): New constant.
16674 (Flength, Fsafe_length): Use EMACS_INT, not int, to avoid unwanted
16675 truncation on 64-bit hosts. Check for QUIT every
16676 QUIT_COUNT_HEURISTIC entries rather than every other entry; that's
16677 faster and is responsive enough.
16678 (Flength): Report an error instead of overflowing an integer.
16679 (Fsafe_length): Return a float if the value is not representable
16680 as a fixnum. This shouldn't happen except in contrived situations.
16681 (Fnthcdr, Fsort): Don't assume list length fits in int.
16682 (Fcopy_sequence): Don't assume vector length fits in int.
16683
16684 * alloc.c: Check that resized vectors' lengths fit in fixnums.
16685 (header_size, word_size): New constants.
16686 (allocate_vectorlike): Don't check size overflow here.
16687 (allocate_vector): Check it here instead, since this is the only
16688 caller of allocate_vectorlike that could cause overflow.
16689 Check that the new vector's length is representable as a fixnum.
16690
16691 * fns.c (next_almost_prime): Don't return a multiple of 3 or 5.
16692 The previous code was bogus. For example, next_almost_prime (32)
16693 returned 39, which is undesirable as it is a multiple of 3; and
16694 next_almost_prime (24) returned 25, which is a multiple of 5 so
16695 why was the code bothering to check for multiples of 7?
16696
16697 * bytecode.c (exec_byte_code): Use ptrdiff_t, not int, for vector length.
16698
16699 * eval.c, doprnt.c (SIZE_MAX): Remove; inttypes.h defines this now.
16700
16701 Variadic C functions now count arguments with ptrdiff_t.
16702 This partly undoes my 2011-03-30 change, which replaced int with size_t.
16703 Back then I didn't know that the Emacs coding style prefers signed int.
16704 Also, in the meantime I found a few more instances where arguments
16705 were being counted with int, which may truncate counts on 64-bit
16706 machines, or EMACS_INT, which may be unnecessarily wide.
16707 * lisp.h (struct Lisp_Subr.function.aMANY)
16708 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call):
16709 Arg counts are now ptrdiff_t, not size_t.
16710 All variadic functions and their callers changed accordingly.
16711 (struct gcpro.nvars): Now size_t, not size_t. All uses changed.
16712 * bytecode.c (exec_byte_code): Check maxdepth for overflow,
16713 to avoid potential buffer overrun. Don't assume arg counts fit in 'int'.
16714 * callint.c (Fcall_interactively): Check arg count for overflow,
16715 to avoid potential buffer overrun. Use signed char, not 'int',
16716 for 'varies' array, so that we needn't bother to check its size
16717 calculation for overflow.
16718 * editfns.c (Fformat): Use ptrdiff_t, not EMACS_INT, to count args.
16719 * eval.c (apply_lambda):
16720 * fns.c (Fmapconcat): Use XFASTINT, not XINT, to get args length.
16721 (struct textprop_rec.argnum): Now ptrdiff_t, not int. All uses changed.
16722 (mapconcat): Use ptrdiff_t, not int and EMACS_INT, to count args.
16723
16724 * callint.c (Fcall_interactively): Don't use index var as event count.
16725
16726 * vm-limit.c (check_memory_limits): Fix incorrect extern function decls.
16727 * mem-limits.h (SIZE): Remove; no longer used.
16728
16729 * xterm.c (x_alloc_nearest_color_1): Prefer int to long when int works.
16730
16731 Remove unnecessary casts.
16732 * xterm.c (x_term_init):
16733 * xfns.c (x_set_border_pixel):
16734 * widget.c (create_frame_gcs): Remove casts to unsigned long etc.
16735 These aren't needed now that we assume ANSI C.
16736
16737 * sound.c (Fplay_sound_internal): Remove cast to unsigned long.
16738 It's more likely to cause problems (due to unsigned overflow)
16739 than to cure them.
16740
16741 * dired.c (Ffile_attributes): Don't use 32-bit hack on 64-bit hosts.
16742
16743 * unexelf.c (unexec): Don't assume BSS addr fits in unsigned.
16744
16745 * xterm.c (handle_one_xevent): Omit unnecessary casts to unsigned.
16746
16747 * keyboard.c (modify_event_symbol): Don't limit alist len to UINT_MAX.
16748
16749 * lisp.h (CHAR_TABLE_SET): Omit now-redundant test.
16750
16751 * lread.c (Fload): Don't compare a possibly-garbage time_t value.
16752
16753 GLYPH_CODE_FACE returns EMACS_INT, not int.
16754 * dispextern.h (merge_faces):
16755 * xfaces.c (merge_faces):
16756 * xdisp.c (get_next_display_element, next_element_from_display_vector):
16757 Don't assume EMACS_INT fits in int.
16758
16759 * character.h (CHAR_VALID_P): Remove unused parameter.
16760 * fontset.c, lisp.h, xdisp.c: All uses changed.
16761
16762 * editfns.c (Ftranslate_region_internal): Omit redundant test.
16763
16764 * fns.c (concat): Minor tuning based on overflow analysis.
16765 This doesn't fix any bugs. Use int to hold character, instead
16766 of constantly refetching from Emacs object. Use XFASTINT, not
16767 XINT, for value known to be a character. Don't bother comparing
16768 a single byte to 0400, as it's always less.
16769
16770 * floatfns.c (Fexpt):
16771 * fileio.c (make_temp_name): Omit unnecessary cast to unsigned.
16772
16773 * editfns.c (Ftranslate_region_internal): Use int, not EMACS_INT
16774 for characters.
16775
16776 * doc.c (get_doc_string): Omit (unsigned)c that mishandled negatives.
16777
16778 * data.c (Faset): If ARRAY is a string, check that NEWELT is a char.
16779 Without this fix, on a 64-bit host (aset S 0 4294967386) would
16780 incorrectly succeed when S was a string, because 4294967386 was
16781 truncated before it was used.
16782
16783 * chartab.c (Fchar_table_range): Use CHARACTERP to check range.
16784 Otherwise, an out-of-range integer could cause undefined behavior
16785 on a 64-bit host.
16786
16787 * composite.c: Use int, not EMACS_INT, for characters.
16788 (fill_gstring_body, composition_compute_stop_pos): Use int, not
16789 EMACS_INT, for values that are known to be in character range.
16790 This doesn't fix any bugs but is the usual style inside Emacs and
16791 may generate better code on 32-bit machines.
16792
16793 Make sure a 64-bit char is never passed to ENCODE_CHAR.
16794 This is for reasons similar to the recent CHAR_STRING fix.
16795 * charset.c (Fencode_char): Check that character arg is actually
16796 a character. Pass an int to ENCODE_CHAR.
16797 * charset.h (ENCODE_CHAR): Verify that the character argument is no
16798 wider than 'int', as a compile-time check to prevent future regressions
16799 in this area.
16800
16801 * character.c (char_string): Remove unnecessary casts.
16802
16803 Make sure a 64-bit char is never passed to CHAR_STRING.
16804 Otherwise, CHAR_STRING would do the wrong thing on a 64-bit platform,
16805 by silently ignoring the top 32 bits, allowing some values
16806 that were far too large to be valid characters.
16807 * character.h: Include <verify.h>.
16808 (CHAR_STRING, CHAR_STRING_ADVANCE): Verify that the character
16809 arguments are no wider than unsigned, as a compile-time check
16810 to prevent future regressions in this area.
16811 * data.c (Faset):
16812 * editfns.c (Fchar_to_string, general_insert_function, Finsert_char)
16813 (Fsubst_char_in_region):
16814 * fns.c (concat):
16815 * xdisp.c (decode_mode_spec_coding):
16816 Adjust to CHAR_STRING's new requirement.
16817 * editfns.c (Finsert_char, Fsubst_char_in_region):
16818 * fns.c (concat): Check that character args are actually
16819 characters. Without this test, these functions did the wrong
16820 thing with wildly out-of-range values on 64-bit hosts.
16821
16822 Remove incorrect casts to 'unsigned' that lose info on 64-bit hosts.
16823 These casts should not be needed on 32-bit hosts, either.
16824 * keyboard.c (read_char):
16825 * lread.c (Fload): Remove casts to unsigned.
16826
16827 * lisp.h (UNSIGNED_CMP): New macro.
16828 This fixes comparison bugs on 64-bit hosts.
16829 (ASCII_CHAR_P): Use it.
16830 * casefiddle.c (casify_object):
16831 * character.h (ASCII_BYTE_P, CHAR_VALID_P)
16832 (SINGLE_BYTE_CHAR_P, CHAR_STRING):
16833 * composite.h (COMPOSITION_ENCODE_RULE_VALID):
16834 * dispextern.h (FACE_FROM_ID):
16835 * keyboard.c (read_char): Use UNSIGNED_CMP.
16836
16837 * xmenu.c (dialog_selection_callback) [!USE_GTK]: Cast to intptr_t,
16838 not to EMACS_INT, to avoid GCC warning.
16839
16840 * xfns.c (x_set_scroll_bar_default_width): Remove unused 'int' locals.
16841
16842 * buffer.h (PTR_BYTE_POS, BUF_PTR_BYTE_POS): Remove harmful cast.
16843 The cast incorrectly truncated 64-bit byte offsets to 32 bits, and
16844 isn't needed on 32-bit machines.
16845
16846 * buffer.c (Fgenerate_new_buffer_name):
16847 Use EMACS_INT for count, not int.
16848 (advance_to_char_boundary): Return EMACS_INT, not int.
16849
16850 * data.c (Qcompiled_function): Now static.
16851
16852 * window.c (window_body_lines): Now static.
16853
16854 * image.c (gif_load): Rename local to avoid shadowing.
16855
16856 * lisp.h (SAFE_ALLOCA_LISP): Check for integer overflow.
16857 (struct Lisp_Save_Value): Use ptrdiff_t, not int, for 'integer' member.
16858 * alloc.c (make_save_value): Integer argument is now of type
16859 ptrdiff_t, not int.
16860 (mark_object): Use ptrdiff_t, not int.
16861 * lisp.h (pD): New macro.
16862 * print.c (print_object): Use it.
16863
16864 * alloc.c: Use EMACS_INT, not int, to count objects.
16865 (total_conses, total_markers, total_symbols, total_vector_size)
16866 (total_free_conses, total_free_markers, total_free_symbols)
16867 (total_free_floats, total_floats, total_free_intervals)
16868 (total_intervals, total_strings, total_free_strings):
16869 Now EMACS_INT, not int. All uses changed.
16870 (Fgarbage_collect): Compute overall total using a double, so that
16871 integer overflow is less likely to be a problem. Check for overflow
16872 when converting back to an integer.
16873 (n_interval_blocks, n_string_blocks, n_float_blocks, n_cons_blocks)
16874 (n_vectors, n_symbol_blocks, n_marker_blocks): Remove.
16875 These were 'int' variables that could overflow on 64-bit hosts;
16876 they were never used, so remove them instead of repairing them.
16877 (nzombies, ngcs, max_live, max_zombies): Now EMACS_INT, not 'int'.
16878 (inhibit_garbage_collection): Set gc_cons_threshold to max value.
16879 Previously, this ceilinged at INT_MAX, but that doesn't work on
16880 64-bit machines.
16881 (allocate_pseudovector): Don't use EMACS_INT when int would do.
16882
16883 * alloc.c (Fmake_bool_vector): Don't assume vector size fits in int.
16884 (allocate_vectorlike): Check for ptrdiff_t overflow.
16885 (mark_vectorlike, mark_char_table, mark_object): Avoid EMACS_UINT
16886 when a (possibly-narrower) signed value would do just as well.
16887 We prefer using signed arithmetic, to avoid comparison confusion.
16888
16889 * alloc.c: Catch some string size overflows that we were missing.
16890 (XMALLOC_OVERRUN_CHECK_SIZE) [!XMALLOC_OVERRUN_CHECK]: Define to 0,
16891 for convenience in STRING_BYTES_MAX.
16892 (STRING_BYTES_MAX): New macro, superseding the old one in lisp.h.
16893 The definition here is exact; the one in lisp.h was approximate.
16894 (allocate_string_data): Check for string overflow. This catches
16895 some instances we weren't catching before. Also, it catches
16896 size_t overflow on (unusual) hosts where SIZE_MAX <= min
16897 (PTRDIFF_MAX, MOST_POSITIVE_FIXNUM), e.g., when size_t is 32 bits
16898 and ptrdiff_t and EMACS_INT are both 64 bits.
16899
16900 * character.c, coding.c, doprnt.c, editfns.c, eval.c:
16901 All uses of STRING_BYTES_MAX replaced by STRING_BYTES_BOUND.
16902 * lisp.h (STRING_BYTES_BOUND): Rename from STRING_BYTES_MAX.
16903
16904 * character.c (string_escape_byte8): Fix nbytes/nchars typo.
16905
16906 * alloc.c (Fmake_string): Check for out-of-range init.
16907
16908 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
16909
16910 * eval.c (Fdefvaralias): Also mark the target as variable-special-p.
16911
16912 2011-06-14 Jan Djärv <jan.h.d@swipnet.se>
16913
16914 * xfns.c (x_set_scroll_bar_default_width): Remove argument to
16915 xg_get_default_scrollbar_width.
16916
16917 * gtkutil.c: Include emacsgtkfixed.h if HAVE_GTK3.
16918 (int_gtk_range_get_value): Move to the scroll bar part of the file.
16919 (style_changed_cb): Call update_theme_scrollbar_width and call
16920 x_set_scroll_bar_default_width and xg_frame_set_char_size for
16921 all frames (Bug#8505).
16922 (xg_create_frame_widgets): Call emacs_fixed_new if HAVE_GTK3 (Bug#8505).
16923 Call gtk_window_set_resizable if HAVE_GTK3.
16924 (x_wm_set_size_hint): Call emacs_fixed_set_min_size with min width
16925 and height if HAVE_GTK3 (Bug#8505).
16926 (scroll_bar_width_for_theme): New variable.
16927 (update_theme_scrollbar_width): New function.
16928 (xg_get_default_scrollbar_width): Move code to
16929 update_theme_scrollbar_width, just return scroll_bar_width_for_theme.
16930 (xg_initialize): Call update_theme_scrollbar_width.
16931
16932 * gtkutil.h (xg_get_default_scrollbar_width): Remove argument.
16933
16934 * emacsgtkfixed.c, emacsgtkfixed.h: New files.
16935
16936 2011-06-12 Martin Rudalics <rudalics@gmx.at>
16937
16938 * frame.c (make_frame): Call other_buffer_safely instead of
16939 other_buffer.
16940
16941 * window.c (temp_output_buffer_show): Call display_buffer with
16942 second argument Vtemp_buffer_show_specifiers and reset latter
16943 immediately after the call.
16944 (Vtemp_buffer_show_specifiers): New variable.
16945 (auto_window_vscroll_p, next_screen_context_lines)
16946 (Vscroll_preserve_screen_position): Remove leading asterisks from
16947 doc-strings.
16948
16949 2011-06-12 Paul Eggert <eggert@cs.ucla.edu>
16950
16951 Fix minor problems found by GCC 4.6.0 static checking.
16952 * buffer.c (Qclone_number): Remove for now, as it's unused.
16953 (record_buffer, Funrecord_buffer): Rename local to avoid shadowing.
16954 (record_buffer): Remove unused local.
16955 * frame.c (other_visible_frames, frame_buffer_list): Now static.
16956 (set_frame_buffer_list): Remove; unused.
16957 * frame.h (other_visible_frames): Remove decl.
16958 * keyboard.h (menu_items_inuse): Declare only if USE_GTK || USE_MOTIF.
16959 * lisp.h (frame_buffer_list, set_frame_buffer_list): Remove decls.
16960 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor): Declare only
16961 if HAVE_GPM.
16962 * menu.c (menu_items_inuse): Now static unless USE_GTK || USE_MOTIF.
16963 * process.c (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
16964 Define only if HAVE_GPM.
16965 * widget.c (EmacsFrameResize, emacsFrameClassRec): Now static.
16966 (update_hints_inhibit): Remove; never set. All uses removed.
16967 * widgetprv.h (emacsFrameClassRec): Remove decl.
16968 * window.c (delete_deletable_window): Now returns void, since it
16969 wasn't returning anything.
16970 (compare_window_configurations): Remove unused locals.
16971 * xfns.c (x_set_scroll_bar_default_width): Remove unused locals.
16972 * xmenu.c (x_menu_set_in_use): Define only if USE_GTK || USE_MOTIF.
16973 (dialog_selection_callback) [!USE_GTK]: Prefer intptr_t for integers
16974 the same widths as pointers. This follows up on the 2011-05-06 patch.
16975 * xterm.c (x_alloc_lighter_color_for_widget): Define only if USE_LUCID.
16976 * xterm.h: Likewise.
16977 (x_menu_set_in_use): Declare only if USE_GTK || USE_MOTIF.
16978
16979 2011-06-12 Juanma Barranquero <lekktu@gmail.com>
16980
16981 * makefile.w32-in: Update dependencies.
16982 (LISP_H): Add lib/intprops.h.
16983
16984 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
16985
16986 * image.c (gif_load): Add animation frame delay to the metadata.
16987 (syms_of_image): Use DEFSYM. New symbol `delay'.
16988
16989 2011-06-11 Martin Rudalics <rudalics@gmx.at>
16990
16991 * window.c (delete_deletable_window): Re-add.
16992 (Fset_window_configuration): Rewrite to handle dead buffers and
16993 consequently deletable windows.
16994 (window_tree, Fwindow_tree): Remove. Supply functionality in
16995 window.el.
16996 (compare_window_configurations): Simplify code.
16997
16998 2011-06-11 Andreas Schwab <schwab@linux-m68k.org>
16999
17000 * image.c (imagemagick_load_image): Fix type mismatch.
17001 (Fimagemagick_types): Likewise.
17002
17003 * window.h (replace_buffer_in_windows): Declare.
17004
17005 2011-06-11 Martin Rudalics <rudalics@gmx.at>
17006
17007 * buffer.c: New Lisp objects Qbuffer_list_update_hook and
17008 Qclone_number. Remove external declaration of Qdelete_window.
17009 (Fbuffer_list): Rewrite doc-string. Minor restructuring of
17010 code.
17011 (Fget_buffer_create, Fmake_indirect_buffer, Frename_buffer):
17012 Run Qbuffer_list_update_hook if allowed.
17013 (Fother_buffer): Rewrite doc-string. Major rewrite for new
17014 buffer list implementation.
17015 (other_buffer_safely): New function.
17016 (Fkill_buffer): Replace call to replace_buffer_in_all_windows by
17017 calls to replace_buffer_in_windows and
17018 replace_buffer_in_windows_safely. Run Qbuffer_list_update_hook
17019 if allowed.
17020 (record_buffer): Inhibit quitting and rewrite using quittable
17021 functions. Run Qbuffer_list_update_hook if allowed.
17022 (Frecord_buffer, Funrecord_buffer): New functions.
17023 (switch_to_buffer_1, Fswitch_to_buffer): Remove.
17024 Move switch-to-buffer to window.el.
17025 (bury-buffer): Move to window.el.
17026 (Vbuffer_list_update_hook): New variable.
17027
17028 * lisp.h (other_buffer_safely): Add prototype in buffer.c
17029 section.
17030
17031 * window.h (resize_frame_windows): Move up in code.
17032 (Fwindow_frame): Remove EXFUN.
17033 (replace_buffer_in_all_windows): Remove prototype.
17034 (replace_buffer_in_windows_safely): Add prototype.
17035
17036 * window.c: Declare Qdelete_window static again. Move down
17037 declaration of select_count.
17038 (Fnext_window, Fprevious_window): Rewrite doc-strings.
17039 (Fother_window): Move to window.el.
17040 (window_loop): Remove DELETE_BUFFER_WINDOWS and UNSHOW_BUFFER
17041 cases. Add REPLACE_BUFFER_IN_WINDOWS_SAFELY case.
17042 (Fdelete_windows_on, Freplace_buffer_in_windows): Move to
17043 window.el.
17044 (replace_buffer_in_windows): Implement by calling
17045 Qreplace_buffer_in_windows.
17046 (replace_buffer_in_all_windows): Remove with some functionality
17047 moved into replace_buffer_in_windows_safely.
17048 (replace_buffer_in_windows_safely): New function.
17049 (select_window_norecord, select_frame_norecord): Move in front
17050 of run_window_configuration_change_hook. Remove now obsolete
17051 declarations.
17052 (Fset_window_buffer): Rewrite doc-string.
17053 Call Qrecord_window_buffer.
17054 (keys_of_window): Move binding for other-window to window.el.
17055
17056 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
17057
17058 * dispextern.h (struct image): Replace data member, whose int_val
17059 and ptr_val fields were not used by anything, with a single
17060 lisp_val object.
17061
17062 * image.c (Fimage_metadata, make_image, mark_image, tiff_load)
17063 (gif_clear_image, gif_load, imagemagick_load_image)
17064 (gs_clear_image, gs_load): Callers changed.
17065
17066 2011-06-10 Paul Eggert <eggert@cs.ucla.edu>
17067
17068 * buffer.h: Include <time.h>, for time_t.
17069 Needed to build on FreeBSD 8.2. Problem reported by Herbert J. Skuhra.
17070
17071 Fix minor problems found by static checking.
17072
17073 * image.c (PixelGetMagickColor): Declare if ImageMagick headers don't.
17074
17075 Make identifiers static if they are not used in other modules.
17076 * data.c (Qcompiled_function, Qframe, Qvector):
17077 * image.c (QimageMagick, Qsvg):
17078 * minibuf.c (Qmetadata):
17079 * window.c (resize_window_check, resize_root_window): Now static.
17080 * window.h (resize_window_check, resize_root_window): Remove decls.
17081
17082 * window.c (window_deletion_count, delete_deletable_window):
17083 Remove; unused.
17084 (window_body_lines): Now static.
17085 (Fdelete_other_windows_internal): Mark vars as initialized.
17086 Make sure 'resize_failed' is initialized.
17087 (run_window_configuration_change_hook): Rename local to avoid shadowing.
17088 (resize_window_apply): Remove unused local.
17089 * window.h (delete_deletable_window): Remove decl.
17090
17091 * image.c (gif_load, svg_load_image): Rename locals to avoid shadowing.
17092 (imagemagick_load_image): Fix pointer signedness problem by changing
17093 last arg from unsigned char * to char *. All uses changed.
17094 Also, fix a local for similar reasons.
17095 Remove unused locals. Remove locals to avoid shadowing.
17096 (fn_rsvg_handle_free): Remove; unused.
17097 (svg_load, svg_load_image): Fix pointer signedness problem.
17098 (imagemagick_load_image): Don't use garbage pointer image_wand.
17099
17100 * ftfont.c (ftfont_get_metrics, ftfont_drive_otf): Remove unused locals.
17101
17102 2011-06-10 Chong Yidong <cyd@stupidchicken.com>
17103
17104 * image.c (gif_load): Fix omitted cast error introduced by
17105 2011-06-06 change.
17106
17107 2011-06-10 Martin Rudalics <rudalics@gmx.at>
17108
17109 * window.h (resize_proportionally, orig_total_lines)
17110 (orig_top_line): Remove from window structure.
17111 (set_window_height, set_window_width, change_window_heights)
17112 (Fdelete_window): Remove prototypes.
17113 (resize_frame_windows): Remove duplicate declaration.
17114
17115 2011-06-10 Eli Zaretskii <eliz@gnu.org>
17116
17117 * window.h (resize_frame_windows, resize_window_check)
17118 (delete_deletable_window, resize_root_window)
17119 (resize_frame_windows): Declare prototypes.
17120
17121 * window.c (resize_window_apply): Make definition be "static" to
17122 match the prototype.
17123
17124 2011-06-10 Martin Rudalics <rudalics@gmx.at>
17125
17126 * window.c: Remove declarations of Qwindow_size_fixed,
17127 window_min_size_1, window_min_size_2, window_min_size,
17128 size_window, window_fixed_size_p, enlarge_window, delete_window.
17129 Remove static from declaration of Qdelete_window, it's
17130 temporarily needed by Fbury_buffer.
17131 (replace_window): Don't assign orig_top_line and
17132 orig_total_lines.
17133 (Fdelete_window, delete_window): Remove. Window deletion is
17134 handled by window.el.
17135 (window_loop): Remove DELETE_OTHER_WINDOWS case.
17136 Replace Fdelete_window calls with calls to Qdelete_window.
17137 (Fdelete_other_windows): Remove. Deleting other windows is
17138 handled by window.el.
17139 (window_fixed_size_p): Remove. Fixed-sizeness of windows is
17140 handled in window.el.
17141 (window_min_size_2, window_min_size_1, window_min_size): Remove.
17142 Window minimum sizes are handled in window.el.
17143 (shrink_windows, size_window, set_window_height)
17144 (set_window_width, change_window_heights, window_height)
17145 (window_width, CURBEG, CURSIZE, enlarge_window)
17146 (adjust_window_trailing_edge, Fadjust_window_trailing_edge)
17147 (Fenlarge_window, Fshrink_window): Remove. Window resizing is
17148 handled in window.el.
17149 (make_dummy_parent): Rename to make_parent_window and give it a
17150 second argument horflag.
17151 (make_window): Don't set resize_proportionally any more.
17152 (Fsplit_window): Remove. Windows are split in window.el.
17153 (save_restore_action, save_restore_orig_size)
17154 (shrink_window_lowest_first, save_restore_orig_size): Remove.
17155 Resize mini windows in window.el.
17156 (grow_mini_window, shrink_mini_window): Implement by calling
17157 Qresize_root_window_vertically, resize_window_check and
17158 resize_window_apply.
17159 (saved_window, Fset_window_configuration, save_window_save):
17160 Do not handle orig_top_line, orig_total_lines, and
17161 resize_proportionally.
17162 (window_min_height, window_min_width): Move to window.el.
17163 (keys_of_window): Move bindings for delete-other-windows,
17164 split-window, delete-window and enlarge-window to window.el.
17165
17166 * buffer.c: Temporarily extern Qdelete_window.
17167 (Fbury_buffer): Temporarily call Qdelete_window instead of
17168 Fdelete_window (Fbury_buffer will move to window.el soon).
17169
17170 * frame.c (set_menu_bar_lines_1): Remove code handling
17171 orig_top_line and orig_total_lines.
17172
17173 * dispnew.c (adjust_frame_glyphs_initially): Don't use
17174 set_window_height but set heights directly.
17175 (change_frame_size_1): Use resize_frame_windows.
17176
17177 * xdisp.c (init_xdisp): Don't use set_window_height but set
17178 heights directly.
17179
17180 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines):
17181 Use resize_frame_windows instead of change_window_heights and run
17182 run_window_configuration_change_hook.
17183
17184 * w32fns.c (x_set_tool_bar_lines): Use resize_frame_windows
17185 instead of change_window_heights and run
17186 run_window_configuration_change_hook.
17187
17188 2011-06-09 Martin Rudalics <rudalics@gmx.at>
17189
17190 * window.c (replace_window): Rename second argument REPLACEMENT to
17191 NEW. New third argument SETFLAG. Rewrite.
17192 (delete_window, make_dummy_parent): Call replace_window with
17193 third argument 1.
17194 (window_list_1): Move down in code.
17195 (run_window_configuration_change_hook): Move set_buffer part
17196 before select_frame_norecord part in order to unwind correctly.
17197 Rename count1 to count.
17198 (recombine_windows, delete_deletable_window, resize_root_window)
17199 (Fdelete_other_windows_internal)
17200 (Frun_window_configuration_change_hook, make_parent_window)
17201 (resize_window_check, resize_window_apply, Fresize_window_apply)
17202 (resize_frame_windows, Fsplit_window_internal)
17203 (Fdelete_window_internal, Fresize_mini_window_internal):
17204 New functions.
17205 (syms_of_window): New variables Vwindow_splits and Vwindow_nest.
17206
17207 2011-06-08 Martin Rudalics <rudalics@gmx.at>
17208
17209 * window.h (window): Add some new members to window structure -
17210 normal_lines, normal_cols, new_total, new_normal, clone_number,
17211 splits, nest, prev_buffers, next_buffers.
17212 (WINDOW_TOTAL_SIZE): Move here from window.c.
17213 (MIN_SAFE_WINDOW_WIDTH, MIN_SAFE_WINDOW_HEIGHT): Define here.
17214
17215 * window.c (Fwindow_height, Fwindow_width, Fwindow_full_width_p):
17216 Remove.
17217 (make_dummy_parent): Set new members of windows structure.
17218 (make_window): Move down in code. Handle new members of window
17219 structure.
17220 (Fwindow_clone_number, Fwindow_splits, Fset_window_splits)
17221 (Fwindow_nest, Fset_window_nest, Fwindow_new_total)
17222 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_prev_buffers)
17223 (Fset_window_prev_buffers, Fwindow_next_buffers)
17224 (Fset_window_next_buffers, Fset_window_clone_number):
17225 New functions.
17226 (Fwindow_hscroll, Fwindow_at, Fwindow_point, Fwindow_start)
17227 (Fwindow_end, Fwindow_line_height, Fset_window_dedicated_p):
17228 Doc-string fixes.
17229 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter):
17230 Argument WINDOW can be now internal window too.
17231 (Fwindow_use_time): Move up in code.
17232 (Fget_buffer_window): Rename argument FRAME to ALL-FRAMES.
17233 Rewrite doc-string.
17234 (Fset_window_configuration, saved_window)
17235 (Fcurrent_window_configuration, save_window_save): Handle new
17236 members of window structure.
17237 (WINDOW_TOTAL_SIZE, MIN_SAFE_WINDOW_WIDTH)
17238 (MIN_SAFE_WINDOW_HEIGHT): Move to window.h.
17239 (syms_of_window): New Lisp objects Qrecord_window_buffer,
17240 Qwindow_deletable_p, Qdelete_window, Qreplace_buffer_in_windows,
17241 Qget_mru_window, Qresize_root_window,
17242 Qresize_root_window_vertically, Qsafe, Qabove, Qbelow,
17243 Qauto_buffer_name; staticpro them.
17244
17245 2011-06-07 Martin Rudalics <rudalics@gmx.at>
17246
17247 * window.c (Fwindow_total_size, Fwindow_left_column)
17248 (Fwindow_top_line, window_body_lines, Fwindow_body_size)
17249 (Fwindow_list_1): New functions.
17250 (window_box_text_cols): Replace with window_body_cols.
17251 (Fwindow_width, Fscroll_left, Fscroll_right):
17252 Use window_body_cols instead of window_box_text_cols.
17253 (delete_window, Fset_window_configuration):
17254 Call delete_all_subwindows with window as argument.
17255 (delete_all_subwindows): Take a window as argument and not a
17256 structure. Rewrite.
17257 (window_loop): Remove handling of GET_LRU_WINDOW and
17258 GET_LARGEST_WINDOW.
17259 (Fget_lru_window, Fget_largest_window): Move to window.el.
17260
17261 * window.h: Extern window_body_cols instead of
17262 window_box_text_cols. delete_all_subwindows now takes a
17263 Lisp_Object as argument.
17264
17265 * indent.c (compute_motion, Fcompute_motion):
17266 Use window_body_cols instead of window_box_text_cols.
17267
17268 * frame.c (delete_frame): Call delete_all_subwindows with root
17269 window as argument.
17270
17271 2011-06-07 Daniel Colascione <dan.colascione@gmail.com>
17272
17273 * fns.c (Fputhash): Document return value.
17274
17275 2011-06-06 Chong Yidong <cyd@stupidchicken.com>
17276
17277 * image.c (gif_load): Implement gif89a spec "no disposal" method.
17278
17279 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
17280
17281 Cons<->int and similar integer overflow fixes (Bug#8794).
17282
17283 Check for overflow when converting integer to cons and back.
17284 * charset.c (Fdefine_charset_internal, Fdecode_char):
17285 Use cons_to_unsigned to catch overflow.
17286 (Fencode_char): Use INTEGER_TO_CONS.
17287 * composite.h (LGLYPH_CODE): Use cons_to_unsigned.
17288 (LGLYPH_SET_CODE): Use INTEGER_TO_CONS.
17289 * data.c (long_to_cons, cons_to_long): Remove.
17290 (cons_to_unsigned, cons_to_signed): New functions.
17291 These signal an error for invalid or out-of-range values.
17292 * dired.c (Ffile_attributes): Use INTEGER_TO_CONS.
17293 * fileio.c (Fset_visited_file_modtime): Use CONS_TO_INTEGER.
17294 * font.c (Ffont_variation_glyphs):
17295 * fontset.c (Finternal_char_font): Use INTEGER_TO_CONS.
17296 * lisp.h: Include <intprops.h>.
17297 (INTEGER_TO_CONS, CONS_TO_INTEGER): New macros.
17298 (cons_to_signed, cons_to_unsigned): New decls.
17299 (long_to_cons, cons_to_long): Remove decls.
17300 * undo.c (record_first_change): Use INTEGER_TO_CONS.
17301 (Fprimitive_undo): Use CONS_TO_INTEGER.
17302 * xfns.c (Fx_window_property): Likewise.
17303 * xselect.c: Include <limits.h>.
17304 (x_own_selection, selection_data_to_lisp_data):
17305 Use INTEGER_TO_CONS.
17306 (x_handle_selection_request, x_handle_selection_clear)
17307 (x_get_foreign_selection, Fx_disown_selection_internal)
17308 (Fx_get_atom_name, x_send_client_event): Use CONS_TO_INTEGER.
17309 (lisp_data_to_selection_data): Use cons_to_unsigned.
17310 (x_fill_property_data): Use cons_to_signed.
17311 Report values out of range.
17312
17313 Check for buffer and string overflow more precisely.
17314 * buffer.h (BUF_BYTES_MAX): New macro.
17315 * lisp.h (STRING_BYTES_MAX): New macro.
17316 * alloc.c (Fmake_string):
17317 * character.c (string_escape_byte8):
17318 * coding.c (coding_alloc_by_realloc):
17319 * doprnt.c (doprnt):
17320 * editfns.c (Fformat):
17321 * eval.c (verror):
17322 Use STRING_BYTES_MAX, not MOST_POSITIVE_FIXNUM,
17323 since they may not be the same number.
17324 * editfns.c (Finsert_char):
17325 * fileio.c (Finsert_file_contents):
17326 Likewise for BUF_BYTES_MAX.
17327
17328 * image.c: Use ptrdiff_t, not int, for sizes.
17329 (slurp_file): Switch from int to ptrdiff_t.
17330 All uses changed.
17331 (slurp_file): Check that file size fits in both size_t (for
17332 malloc) and ptrdiff_t (for sanity and safety).
17333
17334 * fileio.c (Fverify_visited_file_modtime): Avoid time overflow
17335 if b->modtime has its maximal value.
17336
17337 * dired.c (Ffile_attributes): Don't assume EMACS_INT has >32 bits.
17338
17339 Don't assume time_t can fit into int.
17340 * buffer.h (struct buffer.modtime): Now time_t, not int.
17341 * fileio.c (Fvisited_file_modtime): No need for time_t cast now.
17342 * undo.c (Fprimitive_undo): Use time_t, not int, for time_t value.
17343
17344 Minor fixes for signed vs unsigned integers.
17345 * character.h (MAYBE_UNIFY_CHAR):
17346 * charset.c (maybe_unify_char):
17347 * keyboard.c (read_char, reorder_modifiers):
17348 XINT -> XFASTINT, since the integer must be nonnegative.
17349 * ftfont.c (ftfont_spec_pattern):
17350 * keymap.c (access_keymap, silly_event_symbol_error):
17351 XUINT -> XFASTINT, since the integer must be nonnegative.
17352 (Fsingle_key_description, preferred_sequence_p): XUINT -> XINT,
17353 since it makes no difference and we prefer signed.
17354 * keyboard.c (record_char): Use XUINT when all the neighbors do.
17355 (access_keymap): NATNUMP -> INTEGERP, since the integer must be
17356 nonnegative.
17357
17358 2011-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
17359
17360 * window.h (Fwindow_frame): Declare.
17361
17362 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
17363
17364 * alloc.c: Simplify handling of large-request failures (Bug#8800).
17365 (SPARE_MEMORY): Always define.
17366 (LARGE_REQUEST): Remove.
17367 (memory_full): Use SPARE_MEMORY rather than LARGE_REQUEST.
17368
17369 2011-06-06 Martin Rudalics <rudalics@gmx.at>
17370
17371 * lisp.h: Move EXFUNS for Fframe_root_window,
17372 Fframe_first_window and Fset_frame_selected_window to window.h.
17373
17374 * window.h: Move EXFUNS for Fframe_root_window,
17375 Fframe_first_window and Fset_frame_selected_window here from
17376 lisp.h.
17377
17378 * frame.c (Fwindow_frame, Fframe_first_window)
17379 (Fframe_root_window, Fframe_selected_window)
17380 (Fset_frame_selected_window): Move to window.c.
17381 (Factive_minibuffer_window): Move to minibuf.c.
17382 (Fother_visible_frames_p): New function.
17383
17384 * minibuf.c (Factive_minibuffer_window): Move here from frame.c.
17385
17386 * window.c (decode_window, decode_any_window): Move up in code.
17387 (Fwindowp, Fwindow_live_p): Rewrite doc-strings.
17388 (inhibit_frame_unsplittable): Remove unused variable.
17389 (Fwindow_buffer): Move up and rewrite doc-string.
17390 (Fwindow_parent, Fwindow_vchild, Fwindow_hchild, Fwindow_next)
17391 (Fwindow_prev): New functions.
17392 (Fwindow_frame): Move here from frame.c. Accept any window as
17393 argument.
17394 (Fframe_root_window, Fframe_first_window)
17395 (Fframe_selected_window): Move here from frame.c. Accept frame
17396 or arbitrary window as argument. Update doc-strings.
17397 (Fminibuffer_window): Move up in code.
17398 (Fwindow_minibuffer_p): Move up in code and simplify.
17399 (Fset_frame_selected_window): Move here from frame.c.
17400 Marginal rewrite.
17401 (Fselected_window, select_window, Fselect_window): Move up in
17402 code. Minor doc-string fixes.
17403
17404 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
17405
17406 * alloc.c (memory_full) [SYSTEM_MALLOC]: Port to MacOS (Bug#8800).
17407 Do not assume that spare memory exists; that assumption is valid
17408 only if SYSTEM_MALLOC.
17409 (LARGE_REQUEST): New macro, so that the issue of large requests
17410 is separated from the issue of spare memory.
17411
17412 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
17413
17414 * editfns.c (Fformat): Correctly handle zero flag with hexadecimal
17415 format. (Bug#8806)
17416
17417 * gtkutil.c (xg_get_default_scrollbar_width): Avoid warning.
17418
17419 * xfns.c (x_set_scroll_bar_default_width): Move declarations
17420 before statements.
17421
17422 2011-06-05 Jan Djärv <jan.h.d@swipnet.se>
17423
17424 * gtkutil.c (xg_get_default_scrollbar_width): New function.
17425
17426 * gtkutil.h: Declare xg_get_default_scrollbar_width.
17427
17428 * xfns.c (x_set_scroll_bar_default_width): If USE_GTK, get
17429 min width by calling x_set_scroll_bar_default_width (Bug#8505).
17430
17431 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
17432
17433 * xdisp.c (single_display_spec_intangible_p): Remove declaration.
17434
17435 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
17436
17437 * xselect.c (x_clipboard_manager_save): Remove redundant arg.
17438 (x_clipboard_manager_save): Add return value.
17439 (x_clipboard_manager_error_1, x_clipboard_manager_error_2):
17440 New error handlers.
17441 (x_clipboard_manager_save_frame, x_clipboard_manager_save_all):
17442 Obey Vx_select_enable_clipboard_manager. Catch errors in
17443 x_clipboard_manager_save (Bug#8779).
17444 (Vx_select_enable_clipboard_manager): New variable.
17445 (x_get_foreign_selection): Reduce scope of x_catch_errors (Bug#8790).
17446
17447 2011-06-04 Dan Nicolaescu <dann@ics.uci.edu>
17448
17449 * emacs.c (main): Warn when starting a GTK emacs in daemon mode.
17450
17451 2011-06-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17452
17453 * fringe.c (update_window_fringes): Don't update overlay arrow bitmap
17454 in the current matrix if keep_current_p is non-zero.
17455
17456 2011-06-04 Eli Zaretskii <eliz@gnu.org>
17457
17458 * bidi.c (bidi_level_of_next_char): Fix last change.
17459
17460 2011-06-03 Eli Zaretskii <eliz@gnu.org>
17461
17462 Support bidi reordering of text covered by display properties.
17463
17464 * bidi.c (bidi_copy_it): Use offsetof instead of emulating it.
17465 (bidi_fetch_char, bidi_fetch_char_advance): New functions.
17466 (bidi_cache_search, bidi_cache_iterator_state)
17467 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
17468 (bidi_level_of_next_char, bidi_move_to_visually_next):
17469 Support character positions inside a run of characters covered by a
17470 display string.
17471 (bidi_paragraph_init, bidi_resolve_explicit_1)
17472 (bidi_level_of_next_char): Call bidi_fetch_char and
17473 bidi_fetch_char_advance instead of FETCH_CHAR and
17474 FETCH_CHAR_ADVANCE.
17475 (bidi_init_it): Initialize new members.
17476 (LRE_CHAR, RLE_CHAR, PDF_CHAR, LRO_CHAR, RLO_CHAR): Remove macro
17477 definitions.
17478 (bidi_explicit_dir_char): Lookup character type in bidi_type_table,
17479 instead of using explicit *_CHAR codes.
17480 (bidi_resolve_explicit, bidi_resolve_weak):
17481 Use FETCH_MULTIBYTE_CHAR instead of FETCH_CHAR, as reordering of
17482 bidirectional text is supported only in multibyte buffers.
17483 (bidi_init_it): Accept additional argument FRAME_WINDOW_P and use
17484 it to initialize the frame_window_p member of struct bidi_it.
17485 (bidi_cache_iterator_state, bidi_resolve_explicit_1)
17486 (bidi_resolve_explicit, bidi_resolve_weak)
17487 (bidi_level_of_next_char, bidi_move_to_visually_next): Abort if
17488 bidi_it->nchars is non-positive.
17489 (bidi_level_of_next_char): Don't try to lookup the cache for the
17490 next/previous character if nothing is cached there yet, or if we
17491 were just reseat()'ed to a new position.
17492
17493 * xdisp.c (set_cursor_from_row): Set start and stop points
17494 according to the row's direction when priming the loop that looks
17495 for the glyph on which to display cursor.
17496 (single_display_spec_intangible_p): Function deleted.
17497 (display_prop_intangible_p): Reimplement to call
17498 handle_display_spec instead of single_display_spec_intangible_p.
17499 Accept 3 additional arguments needed by handle_display_spec.
17500 This fixes incorrect cursor motion across display property with complex
17501 values: lists, `(when COND...)' forms, etc.
17502 (single_display_spec_string_p): Support property values that are
17503 lists with the argument STRING its top-level element.
17504 (display_prop_string_p): Fix the condition for processing a
17505 property that is a list to be consistent with handle_display_spec.
17506 (handle_display_spec): New function, refactored from the
17507 last portion of handle_display_prop.
17508 (compute_display_string_pos): Accept additional argument
17509 FRAME_WINDOW_P. Call handle_display_spec to determine whether the
17510 value of a `display' property is a "replacing spec".
17511 (handle_single_display_spec): Accept 2 additional arguments BUFPOS
17512 and FRAME_WINDOW_P. If IT is NULL, don't set up the iterator from
17513 the display property, but just return a value indicating whether
17514 the display property will replace the characters it covers.
17515 (Fcurrent_bidi_paragraph_direction): Initialize the nchars and
17516 frame_window_p members of struct bidi_it.
17517 (compute_display_string_pos, compute_display_string_end):
17518 New functions.
17519 (push_it): Accept second argument POSITION, where pop_it should
17520 jump to continue iteration.
17521 (reseat_1): Initialize bidi_it.disp_pos.
17522
17523 * keyboard.c (adjust_point_for_property): Adjust the call to
17524 display_prop_intangible_p to its new signature.
17525
17526 * dispextern.h (struct bidi_it): New member frame_window_p.
17527 (bidi_init_it): Update prototypes.
17528 (display_prop_intangible_p): Update prototype.
17529 (compute_display_string_pos, compute_display_string_end):
17530 Declare prototypes.
17531 (struct bidi_it): New members nchars and disp_pos. ch_len is now
17532 EMACS_INT.
17533
17534 2011-06-02 Paul Eggert <eggert@cs.ucla.edu>
17535
17536 Malloc failure behavior now depends on size of allocation.
17537 * alloc.c (buffer_memory_full, memory_full): New arg NBYTES.
17538 * lisp.h: Change signatures accordingly.
17539 * alloc.c, buffer.c, editfns.c, menu.c, minibuf.c, xterm.c:
17540 All callers changed. (Bug#8762)
17541
17542 * gnutls.c: Use Emacs's memory allocators.
17543 Without this change, the gnutls library would invoke malloc etc.
17544 directly, which causes problems on non-SYNC_INPUT hosts, and which
17545 runs afoul of improving memory_full behavior. (Bug#8761)
17546 (fn_gnutls_global_set_mem_functions): New macro or function pointer.
17547 (emacs_gnutls_global_init): Use it to specify xmalloc, xrealloc,
17548 xfree instead of the default malloc, realloc, free.
17549 (Fgnutls_boot): No need to check for memory allocation failure,
17550 since xmalloc does that for us.
17551
17552 Remove arbitrary limit of 2**31 entries in hash tables. (Bug#8771)
17553 * category.c (hash_get_category_set):
17554 * ccl.c (ccl_driver):
17555 * charset.c (Fdefine_charset_internal):
17556 * charset.h (struct charset.hash_index):
17557 * composite.c (get_composition_id, gstring_lookup_cache)
17558 (composition_gstring_put_cache):
17559 * composite.h (struct composition.hash_index):
17560 * dispextern.h (struct image.hash):
17561 * fns.c (next_almost_prime, larger_vector, cmpfn_eql)
17562 (cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
17563 (hashfn_equal, hashfn_user_defined, make_hash_table)
17564 (maybe_resize_hash_table, hash_lookup, hash_put)
17565 (hash_remove_from_table, hash_clear, sweep_weak_table, SXHASH_COMBINE)
17566 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector)
17567 (Fsxhash, Fgethash, Fputhash, Fmaphash):
17568 * image.c (make_image, search_image_cache, lookup_image)
17569 (xpm_put_color_table_h):
17570 * lisp.h (struct Lisp_Hash_Table):
17571 * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
17572 * print.c (print): Use 'EMACS_UINT' and 'EMACS_INT'
17573 for hashes and hash indexes, instead of 'unsigned' and 'int'.
17574 * alloc.c (allocate_vectorlike):
17575 Check for overflow in vector size calculations.
17576 * ccl.c (ccl_driver):
17577 Check for overflow when converting EMACS_INT to int.
17578 * fns.c, image.c: Remove unnecessary static decls that would otherwise
17579 need to be updated by these changes.
17580 * fns.c (make_hash_table, maybe_resize_hash_table):
17581 Check for integer overflow with large hash tables.
17582 (make_hash_table, maybe_resize_hash_table, Fmake_hash_table):
17583 Prefer the faster XFLOAT_DATA to XFLOATINT where either will do.
17584 (SXHASH_REDUCE): New macro.
17585 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector):
17586 Use it instead of discarding useful hash info with large hash values.
17587 (sxhash_float): New function.
17588 (sxhash): Use it. No more need for "& INTMASK" due to above changes.
17589 * lisp.h (FIXNUM_BITS): New macro, useful for SXHASH_REDUCE etc.
17590 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
17591 Rewrite to use FIXNUM_BITS, as this simplifies things.
17592 (next_almost_prime, larger_vector, sxhash, hash_lookup, hash_put):
17593 Adjust signatures to match updated version of code.
17594 (consing_since_gc): Now EMACS_INT, since a single hash table can
17595 use more than INT_MAX bytes.
17596
17597 2011-06-01 Dan Nicolaescu <dann@ics.uci.edu>
17598
17599 Make it possible to build with GCC-4.6+ -O2 -flto.
17600
17601 * emacs.c (__malloc_initialize_hook): Mark as EXTERNALLY_VISIBLE.
17602
17603 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
17604
17605 * minibuf.c (get_minibuffer, read_minibuf_unwind):
17606 Call minibuffer-inactive-mode.
17607
17608 2011-05-31 Juanma Barranquero <lekktu@gmail.com>
17609
17610 * makefile.w32-in ($(BLD)/data.$(O), $(BLD)/editfns.$(O)):
17611 Update dependencies.
17612
17613 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
17614
17615 * data.c (init_data): Remove code for UTS, this system is not
17616 supported anymore.
17617
17618 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
17619
17620 Don't force ./temacs to start in terminal mode.
17621
17622 * frame.c (make_initial_frame): Initialize faces in all cases, not
17623 only when CANNOT_DUMP is defined.
17624 * dispnew.c (init_display): Remove CANNOT_DUMP condition.
17625
17626 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
17627
17628 * dispnew.c (add_window_display_history): Use const for the string
17629 pointer. Remove declaration, not needed.
17630
17631 2011-05-31 Paul Eggert <eggert@cs.ucla.edu>
17632
17633 Use 'inline', not 'INLINE'.
17634 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00914.html>
17635 * alloc.c, fontset.c (INLINE): Remove.
17636 * alloc.c, bidi.c, charset.c, coding.c, dispnew.c, fns.c, image.c:
17637 * intervals.c, keyboard.c, process.c, syntax.c, textprop.c, w32term.c:
17638 * xdisp.c, xfaces.c, xterm.c: Replace all uses of INLINE with inline.
17639 * gmalloc.c (register_heapinfo): Use inline unconditionally.
17640 * lisp.h (LISP_MAKE_RVALUE): Use inline, not __inline__.
17641
17642 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
17643
17644 Make it possible to run ./temacs.
17645
17646 * callproc.c (set_initial_environment): Remove CANNOT_DUMP code,
17647 syms_of_callproc does the same thing. Remove test for
17648 "initialized", do it in the caller.
17649 * emacs.c (main): Avoid calling set_initial_environment when dumping.
17650
17651 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
17652
17653 * minibuf.c (Finternal_complete_buffer): Return `category' metadata.
17654 (read_minibuf): Use get_minibuffer.
17655 (syms_of_minibuf): Use DEFSYM.
17656 (Qmetadata): New var.
17657 * data.c (Qbuffer): Don't make it static.
17658 (syms_of_data): Use DEFSYM.
17659
17660 2011-05-31 Paul Eggert <eggert@cs.ucla.edu>
17661
17662 * ccl.c (CCL_CODE_RANGE): Allow negative numbers. (Bug#8751)
17663 (CCL_CODE_MIN): New macro.
17664
17665 2011-05-30 Paul Eggert <eggert@cs.ucla.edu>
17666
17667 * alloc.c (lisp_align_malloc): Omit unnecessary val==NULL tests.
17668
17669 * eval.c (Qdebug): Now static.
17670 * lisp.h (Qdebug): Remove decl. This reverts a part of the
17671 2011-04-26T11:26:05Z!dan.colascione@gmail.com that inadvertently undid part of
17672 2011-04-14T06:48:41Z!eggert@cs.ucla.edu.
17673
17674 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
17675
17676 * image.c: Various fixes to ImageMagick code comments.
17677 (Fimagemagick_types): Doc fix.
17678
17679 2011-05-29 Paul Eggert <eggert@cs.ucla.edu>
17680
17681 Minor fixes prompted by GCC 4.6.0 warnings.
17682
17683 * xselect.c (converted_selections, conversion_fail_tag): Now static.
17684
17685 * emacs.c [HAVE_X_WINDOWS]: Include "xterm.h".
17686 (x_clipboard_manager_save_all): Move extern decl to ...
17687 * xterm.h: ... here, so that it can be checked for consistency.
17688
17689 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
17690
17691 * xselect.c (x_clipboard_manager_save_frame)
17692 (x_clipboard_manager_save_all): New functions.
17693 (Fx_clipboard_manager_save): Lisp function deleted.
17694
17695 * emacs.c (Fkill_emacs): Call x_clipboard_manager_save_all.
17696 * frame.c (delete_frame): Call x_clipboard_manager_save_frame.
17697
17698 * xterm.h: Update prototype.
17699
17700 2011-05-28 William Xu <william.xwl@gmail.com>
17701
17702 * nsterm.m (ns_term_shutdown): Synchronize user defaults before
17703 exiting (Bug#8239).
17704
17705 2011-05-28 Jim Meyering <meyering@redhat.com>
17706
17707 Avoid a sign-extension bug in crypto_hash_function.
17708 * fns.c (to_uchar): Define.
17709 (crypto_hash_function): Use it to convert some newly-signed
17710 variables to unsigned, to avoid sign-extension bugs. For example,
17711 without this change, (md5 "truc") would evaluate to
17712 45723a2aff78ff4fff7fff1114760e62 rather than the expected
17713 45723a2af3788c4ff17f8d1114760e62. Reported by Antoine Levitt in
17714 https://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00883.html.
17715
17716 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
17717
17718 Integer overflow fixes.
17719
17720 * dbusbind.c: Serial number integer overflow fixes.
17721 (CHECK_DBUS_SERIAL_GET_SERIAL): New macro.
17722 (Fdbus_call_method_asynchronously, xd_read_message_1): Use a float
17723 to hold a serial number that is too large for a fixnum.
17724 (Fdbus_method_return_internal, Fdbus_method_error_internal):
17725 Check for serial numbers out of range. Decode any serial number
17726 that was so large that it became a float. (Bug#8722)
17727
17728 * dbusbind.c: Use XFASTINT rather than XUINT, and check for nonneg.
17729 (Fdbus_call_method, Fdbus_call_method_asynchronously):
17730 Use XFASTINT rather than XUINT when numbers are nonnegative.
17731 (xd_append_arg, Fdbus_method_return_internal):
17732 (Fdbus_method_error_internal): Likewise. Also, for unsigned
17733 arguments, check that Lisp number is nonnegative, rather than
17734 silently wrapping negative numbers around. (Bug#8722)
17735 (xd_read_message_1): Don't assume dbus_uint32_t can fit in int.
17736 (Bug#8722)
17737
17738 * data.c (arith_driver, Flsh): Avoid unnecessary casts to EMACS_UINT.
17739
17740 * ccl.c (ccl_driver): Redo slightly to avoid the need for 'unsigned'.
17741
17742 ccl: Add integer overflow checks.
17743 * ccl.c (CCL_CODE_MAX, GET_CCL_RANGE, GET_CCL_CODE, GET_CCL_INT):
17744 (IN_INT_RANGE): New macros.
17745 (ccl_driver): Use them to check for integer overflow when
17746 decoding a CCL program. Many of the new checks are whether XINT (x)
17747 fits in int; it doesn't always, on 64-bit hosts. The new version
17748 doesn't catch all possible integer overflows, but it's an
17749 improvement. (Bug#8719)
17750
17751 * alloc.c (make_event_array): Use XINT, not XUINT.
17752 There's no need for unsigned here.
17753
17754 * mem-limits.h (EXCEEDS_LISP_PTR) [!USE_LSB_TAG]: EMACS_UINT -> uintptr_t
17755 This follows up to the 2011-05-06 change that substituted uintptr_t
17756 for EMACS_INT. This case wasn't caught back then.
17757
17758 Rework Fformat to avoid integer overflow issues.
17759 * editfns.c: Include <float.h> unconditionally, as it's everywhere
17760 now (part of C89). Include <verify.h>.
17761 (MAX_10_EXP, CONVERTED_BYTE_SIZE): Remove; no longer needed.
17762 (pWIDE, pWIDElen, signed_wide, unsigned_wide): New defns.
17763 (Fformat): Avoid the prepass trying to compute sizes; it was only
17764 approximate and thus did not catch overflow reliably. Instead, walk
17765 through the format just once, formatting and computing sizes as we go,
17766 checking for integer overflow at every step, and allocating a larger
17767 buffer as needed. Keep track separately whether the format is
17768 multibyte. Keep only the most-recently calculated precision, rather
17769 than them all. Record whether each argument has been converted to
17770 string. Use EMACS_INT, not int, for byte and char and arg counts.
17771 Support field widths and precisions larger than INT_MAX. Avoid
17772 sprintf's undefined behavior with conversion specifications such as %#d
17773 and %.0c. Fix bug with strchr succeeding on '\0' when looking for
17774 flags. Fix bug with (format "%c" 256.0). Avoid integer overflow when
17775 formatting out-of-range floating point numbers with int
17776 formats. (Bug#8668)
17777
17778 * lisp.h (FIXNUM_OVERFLOW_P): Work even if arg is a NaN.
17779
17780 * data.c: Avoid integer truncation in expressions involving floats.
17781 * data.c: Include <intprops.h>.
17782 (arith_driver): When there's an integer overflow in an expression
17783 involving floating point, convert the integers to floating point
17784 so that the resulting value does not suffer from catastrophic
17785 integer truncation. For example, on a 64-bit host (* 4
17786 most-negative-fixnum 0.5) should yield about -4.6e+18, not zero.
17787 Do not rely on undefined behavior after integer overflow.
17788
17789 merge count_size_as_multibyte, parse_str_to_multibyte
17790 * character.c, character.h (count_size_as_multibyte):
17791 Rename from parse_str_to_multibyte; all uses changed.
17792 Check for integer overflow.
17793 * insdel.c, lisp.h (count_size_as_multibyte): Remove,
17794 since it's now a duplicate of the other. This is more of
17795 a character than a buffer op, so better that it's in character.c.
17796 * fns.c, print.c: Adjust to above changes.
17797
17798 2011-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
17799
17800 * xselect.c (x_convert_selection): Yet another int/Lisp_Object mixup.
17801
17802 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
17803
17804 * xselect.c: Fix minor problems prompted by GCC 4.6.0 warnings.
17805 (x_handle_selection_request, frame_for_x_selection): Remove unused vars.
17806 (x_clipboard_manager_save): Now static.
17807 (Fx_clipboard_manager_save): Rename local to avoid shadowing.
17808
17809 * fns.c: Fix minor problems prompted by GCC 4.6.0 warnings.
17810 (crypto_hash_function): Now static.
17811 Fix pointer signedness problems. Avoid unnecessary initializations.
17812
17813 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
17814
17815 * termhooks.h (Vselection_alist): Make it terminal-local.
17816
17817 * terminal.c (create_terminal): Initialize it.
17818
17819 * xselect.c: Support for clipboard managers.
17820 (Vselection_alist): Move to termhooks.h as terminal-local var.
17821 (LOCAL_SELECTION): New macro.
17822 (x_atom_to_symbol): Handle x_display_info_for_display fail case.
17823 (symbol_to_x_atom): Remove gratuitous arg.
17824 (x_handle_selection_request, lisp_data_to_selection_data)
17825 (x_get_foreign_selection, Fx_register_dnd_atom): Callers changed.
17826 (x_own_selection, x_get_local_selection, x_convert_selection):
17827 New arg, specifying work frame. Use terminal-local Vselection_alist.
17828 (some_frame_on_display): Delete unused function.
17829 (Fx_own_selection_internal, Fx_get_selection_internal)
17830 (Fx_disown_selection_internal, Fx_selection_owner_p)
17831 (Fx_selection_exists_p): New optional frame arg.
17832 (frame_for_x_selection, Fx_clipboard_manager_save): New functions.
17833 (x_handle_selection_clear): Don't treat other terminals with the
17834 same keyboard specially. Use the terminal-local Vselection_alist.
17835 (x_clear_frame_selections): Use Frun_hook_with_args.
17836
17837 * xterm.c (x_term_init): Intern ATOM and CLIPBOARD_MANAGER atoms.
17838
17839 * xterm.h: Add support for those atoms.
17840
17841 2011-05-26 Chong Yidong <cyd@stupidchicken.com>
17842
17843 * xselect.c: ICCCM-compliant handling of MULTIPLE targets.
17844 (converted_selections, conversion_fail_tag): New global variables.
17845 (x_selection_request_lisp_error): Free the above.
17846 (x_get_local_selection): Remove unnecessary code.
17847 (x_reply_selection_request): Args changed; handle arbitrary array
17848 of converted selections stored in converted_selections.
17849 Separate the XChangeProperty and SelectionNotify steps.
17850 (x_handle_selection_request): Rewrite to handle MULTIPLE target.
17851 (x_convert_selection): New function.
17852 (x_handle_selection_event): Simplify.
17853 (x_get_foreign_selection): Don't ignore incoming requests while
17854 waiting for an answer; this will fail when we implement
17855 SAVE_TARGETS, and seems unnecessary anyway.
17856 (selection_data_to_lisp_data): Recognize ATOM_PAIR type.
17857 (Vx_sent_selection_functions): Doc fix.
17858
17859 2011-05-26 Leo Liu <sdl.web@gmail.com>
17860
17861 * editfns.c (Ftranspose_regions): Allow empty regions. (Bug#8699)
17862
17863 2011-05-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17864
17865 * dispextern.h (struct glyph_row): New member fringe_bitmap_periodic_p.
17866
17867 * dispnew.c (shift_glyph_matrix, scrolling_window): Mark scrolled row
17868 for fringe update if it has periodic bitmap.
17869 (row_equal_p): Also compare left_fringe_offset, right_fringe_offset,
17870 and fringe_bitmap_periodic_p.
17871
17872 * fringe.c (get_fringe_bitmap_data): New function.
17873 (draw_fringe_bitmap_1, update_window_fringes): Use it.
17874 (update_window_fringes): Record periodicity of fringe bitmap in glyph
17875 row. Mark glyph row for fringe update if periodicity changed.
17876
17877 * xdisp.c (try_window_reusing_current_matrix): Don't mark scrolled row
17878 for fringe update unless it has periodic bitmap.
17879
17880 2011-05-25 Kenichi Handa <handa@m17n.org>
17881
17882 * xdisp.c (get_next_display_element): Set correct it->face_id for
17883 a static composition.
17884
17885 2011-05-24 Leo Liu <sdl.web@gmail.com>
17886
17887 * deps.mk (fns.o):
17888 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha1.h.
17889
17890 * fns.c (crypto_hash_function, Fsha1): New function.
17891 (Fmd5): Use crypto_hash_function.
17892 (syms_of_fns): Add Ssha1.
17893
17894 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
17895
17896 * gnutls.c: Remove unused macros.
17897 (fn_gnutls_transport_set_lowat, fn_gnutls_transport_set_pull_function):
17898 (fn_gnutls_transport_set_push_function) [!WINDOWSNT]:
17899 Remove macros that are defined and never used.
17900 Caught by gcc -Wunused-macros (GCC 4.6.0, Fedora 14).
17901
17902 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
17903
17904 * xselect.c (syms_of_xselect): Remove unused symbol SAVE_TARGETS.
17905 (Fx_get_selection_internal): Minor cleanup.
17906 (Fx_own_selection_internal): Rename arguments for consistency with
17907 select.el.
17908
17909 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
17910
17911 * xselect.c (QSAVE_TARGETS): New static var, to fix build failure.
17912
17913 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
17914
17915 * xselect.c (syms_of_xselect): Include character.h; use DEFSYM.
17916
17917 2011-05-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17918
17919 * dispnew.c (scrolling_window): Don't exclude the case that the
17920 last enabled row in the desired matrix touches the bottom boundary.
17921
17922 2011-05-21 Glenn Morris <rgm@gnu.org>
17923
17924 * Makefile.in ($(etc)/DOC): Make second command line even shorter.
17925 (SOME_MACHINE_OBJECTS): Replace FONT_OBJ by its maximal expansion,
17926 and add some more files.
17927
17928 2011-05-20 Eli Zaretskii <eliz@gnu.org>
17929
17930 * callproc.c (Fcall_process) [MSDOS]: Fix arguments to
17931 report_file_error introduced by the change from 2011-05-07.
17932
17933 2011-05-20 Paul Eggert <eggert@cs.ucla.edu>
17934
17935 * systime.h (Time): Define only if emacs is defined.
17936 This is to allow ../lib-src/profile.c to be compiled on FreeBSD,
17937 where the include path doesn't have X11/X.h by default. See
17938 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00561.html>.
17939
17940 2011-05-20 Kenichi Handa <handa@m17n.org>
17941
17942 * composite.c (find_automatic_composition): Fix previous change.
17943
17944 2011-05-20 Glenn Morris <rgm@gnu.org>
17945
17946 * lisp.mk: New file, split from Makefile.in.
17947 * Makefile.in (lisp): Move to separate file, inserted by @lisp_frag@.
17948 (shortlisp): Remove.
17949 ($(etc)/DOC): Edit lisp.mk rather than using $shortlisp.
17950
17951 2011-05-19 Glenn Morris <rgm@gnu.org>
17952
17953 * Makefile.in (MSDOS_SUPPORT_REAL, MSDOS_SUPPORT, NS_SUPPORT)
17954 (REAL_MOUSE_SUPPORT, GPM_MOUSE_SUPPORT, MOUSE_SUPPORT, TOOLTIP_SUPPORT)
17955 (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT, WINDOW_SUPPORT): Remove.
17956 (lisp): Set the order to that of loadup.el.
17957 (shortlisp): Make it a copy of $lisp.
17958 (SOME_MACHINE_LISP): Remove.
17959 ($(etc)/DOC): Depend just on $lisp, not $SOME_MACHINE_LISP too.
17960 Use just $shortlisp, not $SOME_MACHINE_LISP too.
17961
17962 2011-05-18 Kenichi Handa <handa@m17n.org>
17963
17964 * composite.c (CHAR_COMPOSABLE_P): Add more check for efficiency.
17965 (BACKWARD_CHAR): Wrap the arg STOP by parenthesis.
17966 (find_automatic_composition): Mostly rewrite for efficiency.
17967
17968 2011-05-18 Juanma Barranquero <lekktu@gmail.com>
17969
17970 * makefile.w32-in: Update dependencies.
17971
17972 2011-05-18 Christoph Scholtes <cschol2112@googlemail.com>
17973
17974 * menu.c: Include limits.h (fixes the MS-Windows build broken by
17975 2011-06-18T18:49:19Z!cyd@stupidchicken.com).
17976
17977 2011-05-18 Paul Eggert <eggert@cs.ucla.edu>
17978
17979 Fix some integer overflow issues, such as string length overflow.
17980
17981 * insdel.c (count_size_as_multibyte): Check for string overflow.
17982
17983 * character.c (lisp_string_width): Check for string overflow.
17984 Use EMACS_INT, not int, for string indexes and lengths; in
17985 particular, 2nd arg is now EMACS_INT, not int. Do not crash if
17986 the resulting string length overflows an EMACS_INT; instead,
17987 report a string overflow if no precision given. When checking for
17988 precision exhaustion, use a check that cannot possibly have
17989 integer overflow. (Bug#8675)
17990 * character.h (lisp_string_width): Adjust to new signature.
17991
17992 * alloc.c (string_overflow): New function.
17993 (Fmake_string): Use it. This doesn't change behavior, but saves
17994 a few bytes and will simplify future changes.
17995 * character.c (string_escape_byte8): Likewise.
17996 * lisp.h (string_overflow): New decl.
17997
17998 Fixups, following up to the user-interface timestamp change.
17999 * nsterm.m (last_mouse_movement_time, ns_mouse_position): Use Time
18000 for UI timestamps, instead of unsigned long.
18001 * msdos.c (mouse_get_pos): Likewise.
18002 * w32inevt.c (movement_time, w32_console_mouse_position): Likewise.
18003 * w32gui.h (Time): Define by including "systime.h" rather than by
18004 declaring it ourselves. (Bug#8664)
18005
18006 * dispextern.h (struct image): Don't assume time_t <= unsigned long.
18007 * image.c (clear_image_cache): Likewise.
18008
18009 * term.c (term_mouse_position): Don't assume time_t wraparound.
18010
18011 Be more systematic about user-interface timestamps.
18012 Before, the code sometimes used 'Time', sometimes 'unsigned long',
18013 and sometimes 'EMACS_UINT', to represent these timestamps.
18014 This change causes it to use 'Time' uniformly, as that's what X uses.
18015 This makes the code easier to follow, and makes it easier to catch
18016 integer overflow bugs such as Bug#8664.
18017 * frame.c (Fmouse_position, Fmouse_pixel_position):
18018 Use Time, not unsigned long, for user-interface timestamps.
18019 * keyboard.c (last_event_timestamp, kbd_buffer_get_event): Likewise.
18020 (button_down_time, make_lispy_position, make_lispy_movement): Likewise.
18021 * keyboard.h (last_event_timestamp): Likewise.
18022 * menu.c (Fx_popup_menu) [!HAVE_X_WINDOWS]: Likewise.
18023 * menu.h (xmenu_show): Likewise.
18024 * term.c (term_mouse_position): Likewise.
18025 * termhooks.h (struct input_event.timestamp): Likewise.
18026 (struct terminal.mouse_position_hook): Likewise.
18027 * xmenu.c (create_and_show_popup_menu, xmenu_show): Likewise.
18028 * xterm.c (XTmouse_position, x_scroll_bar_report_motion): Likewise.
18029 * systime.h (Time): New decl. Pull it in from <X11/X.h> if
18030 HAVE_X_WINDOWS, otherwise define it as unsigned long, which is
18031 what it was before.
18032 * menu.h, termhooks.h: Include "systime.h", for Time.
18033
18034 * keyboard.c (make_lispy_event): Fix problem in integer overflow.
18035 Don't assume that the difference between two unsigned long values
18036 can fit into an integer. At this point, we know button_down_time
18037 <= event->timestamp, so the difference must be nonnegative, so
18038 there's no need to cast the result if double-click-time is
18039 nonnegative, as it should be; check that it's nonnegative, just in
18040 case. This bug is triggered when events are more than 2**31 ms
18041 apart (about 25 days). (Bug#8664)
18042
18043 * xselect.c (last_event_timestamp): Remove duplicate decl.
18044 (x_own_selection): Remove needless cast to unsigned long.
18045
18046 * xmenu.c (set_frame_menubar): Use int, not EMACS_UINT, for indexes
18047 that always fit in int. Use a sentinel instead of a counter, to
18048 avoid a temp and to allay GCC's concerns about possible int overflow.
18049 * frame.h (struct frame): Use int for menu_bar_items_used
18050 instead of EMACS_INT, since it always fits in int.
18051
18052 * menu.c (grow_menu_items): Check for int overflow.
18053
18054 * xmenu.c (set_frame_menubar): Don't mishandle vectors with no nils.
18055
18056 * xterm.c: Use EMACS_INT for Emacs modifiers, and int for X modifiers.
18057 Before, the code was not consistent. These values cannot exceed
18058 2**31 - 1 so there's no need to make them unsigned.
18059 (x_x_to_emacs_modifiers): Accept int and return EMACS_INT.
18060 (x_emacs_to_x_modifiers): Accept EMACS_INT and return int.
18061 (x_x_to_emacs_modifiers, x_emacs_to_x_modifiers): Reject non-integers
18062 as modifiers.
18063 * xterm.h (x_x_to_emacs_modifiers): Adjust to signature change.
18064
18065 * lisp.h (XINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_INT.
18066 (XUINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_UINT.
18067 Otherwise, GCC 4.6.0 warns about printf (pI, XINT (...)),
18068 presumably because the widths might not match.
18069
18070 * window.c (size_window): Avoid needless test at loop start.
18071
18072 2011-05-18 Courtney Bane <emacs-bugs-7626@cbane.org> (tiny change)
18073
18074 * term.c (Fresume_tty): Restore hooks before reinitializing (bug#8687).
18075
18076 2011-05-12 Drew Adams <drew.adams@oracle.com>
18077
18078 * textprop.c (Fprevious_single_char_property_change): Doc fix (bug#8655).
18079
18080 2011-05-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18081
18082 * w32term.c (w32_draw_fringe_bitmap): Rename local vars `left' and
18083 `width' to `bar_area_x' and `bar_area_width', respectively.
18084 (x_scroll_run): Take account of fringe background extension.
18085
18086 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
18087 Rename local vars `left' and `width' to `bar_area_x' and
18088 `bar_area_width', respectively.
18089 (x_scroll_run) [USE_TOOLKIT_SCROLL_BARS]: Take account of fringe
18090 background extension.
18091
18092 2011-05-10 Jim Meyering <meyering@redhat.com>
18093
18094 * xdisp.c (x_intersect_rectangles): Fix typo "the the -> the".
18095
18096 2011-05-10 Juanma Barranquero <lekktu@gmail.com>
18097
18098 * image.c (Finit_image_library): Return t for built-in image types,
18099 like pbm and xbm. (Bug#8640)
18100
18101 2011-05-09 Andreas Schwab <schwab@linux-m68k.org>
18102
18103 * w32menu.c (set_frame_menubar): Fix submenu allocation.
18104
18105 2011-05-07 Eli Zaretskii <eliz@gnu.org>
18106
18107 * w32console.c (Fset_screen_color): Doc fix.
18108 (Fget_screen_color): New function.
18109 (syms_of_ntterm): Defsubr it.
18110
18111 * callproc.c (call_process_cleanup) [MSDOS]: Don't close and
18112 unlink the temporary file if Fcall_process didn't create it in the
18113 first place.
18114 (Fcall_process) [MSDOS]: Don't create tempfile if stdout of the
18115 child process will be redirected to a file specified with `:file'.
18116 Don't try to re-open tempfile in that case, and set fd[0] to -1 as
18117 cue to call_process_cleanup not to close that handle.
18118
18119 2011-05-07 Ben Key <bkey76@gmail.com>
18120
18121 * makefile.w32-in: The bootstrap-temacs rule now makes use of
18122 one of two shell specific rules, either bootstrap-temacs-CMD or
18123 bootstrap-temacs-SH. The bootstrap-temacs-SH rule is identical
18124 to the previous implementation of the bootstrap-temacs rule.
18125 The bootstrap-temacs-CMD rule is similar to the previous
18126 implementation of the bootstrap-temacs rule except that it
18127 makes use of the ESC_CFLAGS variable instead of the CFLAGS
18128 variable.
18129
18130 These changes, along with some changes to nt/configure.bat,
18131 nt/gmake.defs, and nt/nmake.defs, are required to extend my
18132 earlier fix to add support for --cflags and --ldflags options
18133 that include quotes so that it works whether make uses cmd or
18134 sh as the shell.
18135
18136 2011-05-06 Michael Albinus <michael.albinus@gmx.de>
18137
18138 * dbusbind.c (QCdbus_type_unix_fd): Declare static.
18139 (xd_remove_watch): Don't check QCdbus_type_unix_fd for SYMBOLP, it
18140 is a constant.
18141 (Fdbus_init_bus, xd_read_queued_messages): Bus can be a symbol or
18142 a string. Handle both cases.
18143 (Fdbus_call_method_asynchronously, Fdbus_register_signal)
18144 (Fdbus_register_method): Use Qinvalid_function.
18145
18146 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
18147
18148 * makefile.w32-in: Update dependencies.
18149 (LISP_H): Add inttypes.h and stdin.h.
18150 (PROCESS_H): Add unistd.h.
18151
18152 2011-05-06 Eli Zaretskii <eliz@gnu.org>
18153
18154 * lread.c: Include limits.h (fixes the MS-Windows build broken by
18155 2011-05-06T07:13:19Z!eggert@cs.ucla.edu).
18156
18157 2011-05-06 Paul Eggert <eggert@cs.ucla.edu>
18158
18159 * image.c (Finit_image_library) [!HAVE_NTGUI]: Omit unused local.
18160
18161 * term.c (vfatal): Remove stray call to va_end.
18162 It's not needed and the C Standard doesn't allow it here anyway.
18163
18164 Use C99's va_copy to avoid undefined behavior on x86-64 GNU/Linux.
18165 * eval.c (verror): doprnt a copy of ap, not the original. (Bug#8545)
18166
18167 * eval.c (verror): OK to create a string of up to MOST_POSITIVE_FIXNUM
18168 bytes.
18169
18170 * term.c: Don't include <stdarg.h>, as <lisp.h> does that.
18171
18172 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
18173
18174 * process.c (Fformat_network_address): Fix typo: args2 -> *args2.
18175
18176 * xmenu.c (set_frame_menubar): Fix typo: int * -> int (3 times).
18177
18178 * coding.c (detect_coding_charset): Fix typo: * 2 -> *4 (Bug#8601).
18179
18180 * charset.h (struct charset.code_space): Now has 15 elements, not 16.
18181 * charset.c (Fdefine_charset_internal): Don't initialize
18182 charset.code_space[15]. The value was garbage, on hosts with
18183 32-bit int (Bug#8600).
18184
18185 * lread.c (read_integer): Be more consistent with string-to-number.
18186 Use string_to_number to do the actual conversion; this avoids
18187 rounding errors and fixes some other screwups. Without this fix,
18188 for example, #x1fffffffffffffff was misread as -2305843009213693952.
18189 (digit_to_number): Move earlier, for benefit of read_integer.
18190 Return -1 if the digit is out of range for the base, -2 if it is
18191 not a digit in any supported base. (Bug#8602)
18192
18193 * doprnt.c (doprnt): Support arbitrary pI values, such as "I64".
18194
18195 * dispnew.c (scrolling_window): Return 1 if we scrolled,
18196 to match comment at start of function. This also removes a
18197 GCC warning about overflow in a 32+64-bit port.
18198
18199 * lisp.h (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Simplify.
18200
18201 * dbusbind.c: Do not use XPNTR on a value that may be an integer.
18202 Reported by Stefan Monnier in
18203 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00919.html>.
18204 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
18205 Use SYMBOLP-guarded XSYMBOL, not XPNTR.
18206
18207 * lisp.h (EMACS_INTPTR): Remove. All uses changed to intptr_t.
18208 (EMACS_UINTPTR): Likewise, with uintptr_t.
18209
18210 * lisp.h: Prefer 64-bit EMACS_INT if available.
18211 (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Define to 64-bit
18212 on 32-bit hosts that have 64-bit int, so that they can access
18213 large files.
18214 However, temporarily disable this change unless the temporary
18215 symbol WIDE_EMACS_INT is defined.
18216
18217 * lread.c, process.c: Do not include <inttypes.h>; lisp.h does it now.
18218
18219 Prefer intptr_t/uintptr_t for integers the same widths as pointers.
18220 This removes an assumption that EMACS_INT and long are the same
18221 width as pointers. The assumption is true for Emacs porting targets
18222 now, but we want to make other targets possible.
18223 * lisp.h: Include <inttypes.h>, for INTPTR_MAX, UINTPTR_MAX.
18224 (EMACS_INTPTR, EMACS_UINTPTR): New macros.
18225 In the rest of the code, change types of integers that hold casted
18226 pointers to EMACS_INTPTR and EMACS_UINTPTR, systematically
18227 replacing EMACS_INT, long, EMACS_UINT, and unsigned long.
18228 (XTYPE): Don't cast arg to EMACS_UINT; normally is not needed.
18229 (XSET): Cast type of XTYPE arg to EMACS_INTPTR; it is needed here.
18230 No need to cast type when ORing.
18231 (XPNTR): Return a value of type EMACS_INTPTR or EMACS_UINTPTR.
18232 * alloc.c (lisp_align_malloc): Remove a no-longer-needed cast.
18233 * doc.c (store_function_docstring): Use EMACS_INTPTR, so as not to
18234 assume EMACS_INT is the same width as char *.
18235 * gtkutil.c (xg_gtk_scroll_destroy, xg_tool_bar_button_cb):
18236 (xg_tool_bar_callback, xg_tool_bar_help_callback, xg_make_tool_item):
18237 Remove no-longer-needed casts.
18238 (xg_create_scroll_bar, xg_tool_bar_button_cb, xg_tool_bar_callback):
18239 (xg_tool_bar_help_callback, xg_make_tool_item):
18240 Use EMACS_INTPTR to hold an integer
18241 that will be cast to void *; this can avoid a GCC warning
18242 if EMACS_INT is not the same width as void *.
18243 * menu.c (find_and_call_menu_selection): Remove no-longer-needed cast.
18244 * xdisp.c (display_echo_area_1, resize_mini_window_1):
18245 (current_message_1, set_message_1):
18246 Use a local to convert to proper width without a cast.
18247 * xmenu.c (dialog_selection_callback): Likewise.
18248
18249 * sysdep.c (get_random): Don't assume EMACS_INT is no wider than long.
18250 Also, don't assume VALBITS / RAND_BITS is less than 5,
18251 and don't rely on undefined behavior when shifting a 1 left into
18252 the sign bit.
18253 * lisp.h (get_random): Change signature to match.
18254
18255 * lread.c (hash_string): Use size_t, not int, for hash computation.
18256 Normally we prefer signed values; but hashing is special, because
18257 it's better to use unsigned division on hash table sizes so that
18258 the remainder is nonnegative. Also, size_t is the natural width
18259 for hashing into memory. The previous code used 'int', which doesn't
18260 retain enough info to hash well into very large tables.
18261 (oblookup, oblookup_last_bucket_number, Funintern): Likewise.
18262
18263 * dbusbind.c: Don't possibly lose pointer info when converting.
18264 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
18265 Use XPNTR rather than XHASH, so that the high-order bits of
18266 the pointer aren't lost when converting through void *.
18267
18268 * eval.c (Fautoload): Don't double-shift a pointer.
18269
18270 * fns.c (Frandom): Let EMACS_UINT be wider than unsigned long.
18271
18272 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
18273
18274 * gnutls.c (DEF_GNUTLS_FN):
18275 * image.c (DEF_IMGLIB_FN): Make function pointers static.
18276
18277 2011-05-05 Andreas Schwab <schwab@linux-m68k.org>
18278
18279 * lread.c (lisp_file_lexically_bound_p): Stop scanning at end
18280 marker. (Bug#8610)
18281
18282 2011-05-05 Eli Zaretskii <eliz@gnu.org>
18283
18284 * w32heap.c (allocate_heap) [USE_LISP_UNION_TYPE || USE_LSB_TAG]:
18285 New version that can reserve upto 2GB of heap space.
18286
18287 2011-05-05 Chong Yidong <cyd@stupidchicken.com>
18288
18289 * nsfns.m (Fns_read_file_name): Doc fix (Bug#8534).
18290
18291 2011-05-05 Teodor Zlatanov <tzz@lifelogs.com>
18292
18293 * gnutls.c (fn_gnutls_certificate_set_x509_key_file): Add alias to
18294 `gnutls_certificate_set_x509_key_file'.
18295
18296 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
18297
18298 * makefile.w32-in ($(BLD)/image.$(O), $(BLD)/process.$(O)):
18299 Update dependencies.
18300
18301 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
18302
18303 * gnutls.h (emacs_gnutls_write, emacs_gnutls_read):
18304 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
18305 Remove unused parameter `fildes'.
18306 * process.c (read_process_output, send_process): Don't pass it.
18307
18308 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
18309
18310 Fix previous change: the library cache is defined in w32.c.
18311 * image.c (CACHE_IMAGE_TYPE) [!HAVE_NTGUI]: Define to noop.
18312 (Finit_image_library): Wrap Vlibrary_cache on "#ifdef HAVE_NTGUI".
18313
18314 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
18315
18316 Implement dynamic loading of GnuTLS on Windows.
18317
18318 * gnutls.h (GNUTLS_EMACS_ERROR_NOT_LOADED): New macro.
18319 (emacs_gnutls_write, emacs_gnutls_read): Mark as extern.
18320 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
18321 Declare.
18322
18323 * gnutls.c (Qgnutls_dll): Define.
18324 (DEF_GNUTLS_FN, LOAD_GNUTLS_FN): New macros.
18325 (gnutls_*): Declare function pointers.
18326 (init_gnutls_functions): New function to initialize function pointers.
18327 (emacs_gnutls_handshake, Fgnutls_error_string, Fgnutls_deinit)
18328 (emacs_gnutls_global_init, Fgnutls_bye): Use function pointers.
18329 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
18330 Wrappers for gnutls_record_check_pending and gnutls_transport_set_errno.
18331 (emacs_gnutls_write, emacs_gnutls_read)
18332 (emacs_gnutls_handle_error, Fgnutls_error_fatalp)
18333 (Fgnutls_available_p): New function.
18334 (Fgnutls_boot): Call Fgnutls_available_p. Use function pointers.
18335 (syms_of_gnutls) <Qgnutls_dll>: Initialize and staticpro it.
18336 (syms_of_gnutls) <Sgnutls_available_p>: defsubr it.
18337
18338 * image.c: Include w32.h.
18339 (Vimage_type_cache): Delete.
18340 (syms_of_image) <Vimage_type_cache>: Don't initialize and staticpro it.
18341 (CACHE_IMAGE_TYPE, Finit_image_library): Use Vlibrary_cache instead.
18342 (w32_delayed_load): Move to w32.c.
18343
18344 * w32.h (VlibraryCache, QCloaded_from, w32_delayed_load): Declare.
18345
18346 * w32.c (QCloaded_from, Vlibrary_cache): Define.
18347 (w32_delayed_load): Move from image.c. When loading a library, record
18348 its filename in the :loaded-from property of the library id.
18349 (globals_of_w32) <QCloaded_from, Vlibrary_cache>:
18350 Initialize and staticpro them.
18351 (emacs_gnutls_pull, emacs_gnutls_push): Call emacs_gnutls_* functions.
18352
18353 * process.c: Include lisp.h before w32.h, not after.
18354 (wait_reading_process_output): Call emacs_gnutls_record_check_pending
18355 instead of gnutls_record_check_pending.
18356
18357 * callproc.c, emacs.c: Include lisp.h before w32.h, not after.
18358
18359 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
18360
18361 * gnutls.c (Fgnutls_boot): Support :keylist and :crlfiles options
18362 instead of :keyfiles. Give GnuTLS the keylist and the CRL lists
18363 as passed in.
18364
18365 2011-05-03 Jan Djärv <jan.h.d@swipnet.se>
18366
18367 * xterm.c (x_set_frame_alpha): Do not set property on anything
18368 else than FRAME_X_OUTER_WINDOW (Bug#8608).
18369
18370 2011-05-02 Juanma Barranquero <lekktu@gmail.com>
18371
18372 * sysdep.c (get_tty_size) [WINDOWSNT]: Implement. (Bug#8596)
18373
18374 2011-05-02 Juanma Barranquero <lekktu@gmail.com>
18375
18376 * gnutls.c (Qgnutls_log_level, Qgnutls_code, Qgnutls_anon)
18377 (Qgnutls_x509pki, Qgnutls_e_interrupted, Qgnutls_e_again)
18378 (Qgnutls_e_invalid_session, Qgnutls_e_not_ready_for_handshake)
18379 (gnutls_global_initialized, Qgnutls_bootprop_priority)
18380 (Qgnutls_bootprop_trustfiles, Qgnutls_bootprop_keyfiles)
18381 (Qgnutls_bootprop_callbacks, Qgnutls_bootprop_loglevel)
18382 (Qgnutls_bootprop_hostname, Qgnutls_bootprop_verify_flags)
18383 (Qgnutls_bootprop_verify_error, Qgnutls_bootprop_verify_hostname_error)
18384 (Qgnutls_bootprop_callbacks_verify): Make static.
18385
18386 2011-05-01 Andreas Schwab <schwab@linux-m68k.org>
18387
18388 * callproc.c: Indentation fixup.
18389
18390 * sysdep.c (wait_for_termination_1): Make static.
18391 (wait_for_termination, interruptible_wait_for_termination):
18392 Move after wait_for_termination_1.
18393
18394 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
18395
18396 * sysdep.c (interruptible_wait_for_termination): New function
18397 which is like wait_for_termination, but allows keyboard
18398 interruptions.
18399
18400 * callproc.c (Fcall_process): Add (:file "file") as an option for
18401 the STDOUT buffer.
18402 (Fcall_process_region): Ditto.
18403
18404 2011-04-30 Eli Zaretskii <eliz@gnu.org>
18405
18406 * dosfns.c (Fint86, Fdos_memget, Fdos_memput): Use `ASIZE (FOO)'
18407 rather than `XVECTOR (FOO)->size'.
18408
18409 * process.c: Remove HAVE_INTTYPES_H condition from inclusion of
18410 inttypes.h, as a gnulib replacement is used if it not available in
18411 system headers.
18412
18413 2011-04-21 Eli Zaretskii <eliz@gnu.org>
18414
18415 Lift the MOST_POSITIVE_FIXNUM/4 limitation on visited files.
18416 * fileio.c (Finsert_file_contents): Don't limit file size to 1/4
18417 of MOST_POSITIVE_FIXNUM. (Bug#8528)
18418
18419 * coding.c (coding_alloc_by_realloc): Error out if destination
18420 will grow beyond MOST_POSITIVE_FIXNUM.
18421 (decode_coding_emacs_mule): Abort if there isn't enough place in
18422 charbuf for the composition carryover bytes. Reserve an extra
18423 space for up to 2 characters produced in a loop.
18424 (decode_coding_iso_2022): Abort if there isn't enough place in
18425 charbuf for the composition carryover bytes.
18426
18427 2011-04-21 Eli Zaretskii <eliz@gnu.org>
18428
18429 * doprnt.c (doprnt) [!HAVE_LONG_LONG_INT]: Error out instead of
18430 aborting when %lld or %lll format is passed.
18431 [!HAVE_UNSIGNED_LONG_LONG_INT]: Error out instead of aborting when
18432 %llo or %llx format is passed. (Bug#8545)
18433
18434 * window.c (window_scroll_line_based): Use a marker instead of
18435 simple variables to record original value of point. (Bug#7952)
18436
18437 * doprnt.c (doprnt): Fix the case where a multibyte sequence
18438 produced by %s or %c overflows available buffer space. (Bug#8545)
18439
18440 2011-04-28 Paul Eggert <eggert@cs.ucla.edu>
18441
18442 * doprnt.c (doprnt): Omit useless test; int overflow check (Bug#8545).
18443 (SIZE_MAX): Move defn after all includes, as they might #define it.
18444
18445 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
18446
18447 * w32.c (init_environment): Warn about defaulting HOME to C:\.
18448
18449 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
18450
18451 * keyboard.c (Qdelayed_warnings_hook): Define.
18452 (command_loop_1): Run `delayed-warnings-hook'
18453 if Vdelayed_warnings_list is non-nil.
18454 (syms_of_keyboard) <delayed-warnings-hook>: DEFSYM it.
18455 (syms_of_keyboard) <delayed-warnings-list>: DEFVAR_LISP it.
18456
18457 2011-04-28 Eli Zaretskii <eliz@gnu.org>
18458
18459 * doprnt.c (doprnt): Don't return value smaller than the buffer
18460 size if the message was truncated. (Bug#8545).
18461
18462 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
18463
18464 * w32fns.c (Fx_change_window_property, Fx_delete_window_property)
18465 (Fx_window_property): #if-0 the whole functions, not just the bodies.
18466
18467 2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
18468
18469 * doprnt.c (doprnt): Support "ll" length modifier, for long long.
18470
18471 2011-04-27 Juanma Barranquero <lekktu@gmail.com>
18472
18473 * makefile.w32-in: Update dependencies.
18474
18475 2011-04-27 Eli Zaretskii <eliz@gnu.org>
18476
18477 Improve `doprnt' and its usage. (Bug#8545)
18478 * doprnt.c (doprnt): Make sure `format' is never accessed beyond
18479 `format_end'. Remove support for %l as a conversion specifier.
18480 Don't use xrealloc. Improve diagnostics when the %l size modifier
18481 is used. Update the commentary.
18482
18483 * eval.c (verror): Simplify calculation of size_t.
18484
18485 * coding.c (Ffind_operation_coding_system): Fix diagnostic error
18486 messages.
18487
18488 2011-04-27 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
18489
18490 * buffer.c (init_buffer) [USE_MMAP_FOR_BUFFERS]: Adjust to aliasing
18491 change.
18492
18493 2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
18494
18495 * nsmenu.m: Replace all uses of XVECTOR with ASIZE and AREF.
18496 This makes this file independent of the recent pseudovector change.
18497
18498 2011-04-26 Paul Eggert <eggert@cs.ucla.edu>
18499
18500 * keyboard.c (handle_user_signal): Fix pointer signedness problem.
18501
18502 * gnutls.c (emacs_gnutls_handle_error): Remove unused local.
18503 (Fgnutls_boot): gnutls_certificate_verify_peers2 wants unsigned *.
18504 Remove unused local.
18505 (emacs_gnutls_write): Don't use uninitialized rtnval if nbyte <= 0.
18506
18507 * lisp.h: Fix a problem with aliasing and vector headers. (Bug#8546)
18508 GCC 4.6.0 optimizes based on type-based alias analysis.
18509 For example, if b is of type struct buffer * and v of type struct
18510 Lisp_Vector *, then gcc -O2 was incorrectly assuming that &b->size
18511 != &v->size, and therefore "v->size = 1; b->size = 2; return
18512 v->size;" must therefore return 1. This assumption is incorrect
18513 for Emacs, since it type-puns struct Lisp_Vector * with many other
18514 types. To fix this problem, this patch adds a new type struct
18515 vectorlike_header that documents the constraints on layout of vectors
18516 and pseudovectors, and helps optimizing compilers not get fooled
18517 by Emacs's type punning. It also adds the macros XSETTYPED_PVECTYPE
18518 XSETTYPED_PSEUDOVECTOR, TYPED_PSEUDOVECTORP, for similar reasons.
18519 * lisp.h (XSETTYPED_PVECTYPE): New macro, specifying the name of
18520 the size member.
18521 (XSETPVECTYPE): Rewrite in terms of new macro.
18522 (XSETPVECTYPESIZE): New macro, specifying both type and size.
18523 This is a bit clearer, and further avoids the possibility of
18524 undesirable aliasing.
18525 (XSETTYPED_PSEUDOVECTOR): New macro, specifying the size.
18526 (XSETPSEUDOVECTOR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR.
18527 (XSETSUBR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR and XSIZE,
18528 since Lisp_Subr is a special case (no "next" field).
18529 (ASIZE): Now uses header.size rather than size.
18530 All previous uses of XVECTOR (foo)->size replaced to use this macro,
18531 to avoid the hassle of writing XVECTOR (foo)->header.size.
18532 (struct vectorlike_header): New type.
18533 (TYPED_PSEUDOVECTORP): New macro, also specifying the C type of the
18534 object, to help avoid aliasing.
18535 (PSEUDOVECTORP): Rewrite in terms of TYPED_PSEUDOVECTORP.
18536 (SUBRP): Likewise, since Lisp_Subr is a special case.
18537 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table):
18538 (struct Lisp_Sub_Char_Table, struct Lisp_Bool_Vector):
18539 (struct Lisp_Hash_Table): Combine first two members into a single
18540 struct vectorlike_header member. All uses of "size" and "next" members
18541 changed to be "header.size" and "header.next".
18542 * buffer.h (struct buffer): Likewise.
18543 * font.h (struct font_spec, struct font_entity, struct font): Likewise.
18544 * frame.h (struct frame): Likewise.
18545 * process.h (struct Lisp_Process): Likewise.
18546 * termhooks.h (struct terminal): Likewise.
18547 * window.c (struct save_window_data, struct saved_window): Likewise.
18548 * window.h (struct window): Likewise.
18549 * alloc.c (allocate_buffer, Fmake_bool_vector, allocate_pseudovector):
18550 Use XSETPVECTYPESIZE, not XSETPVECTYPE, to avoid aliasing problems.
18551 * buffer.c (init_buffer_once): Likewise.
18552 * lread.c (defsubr): Use XSETTYPED_PVECTYPE, since Lisp_Subr is a
18553 special case.
18554 * process.c (Fformat_network_address): Use local var for size,
18555 for brevity.
18556
18557 * bytecode.c (exec_byte_code): Don't use XVECTOR before CHECK_VECTOR.
18558
18559 Make the Lisp reader and string-to-float more consistent (Bug#8525)
18560 * data.c (atof): Remove decl; no longer used or needed.
18561 (digit_to_number): Move to lread.c.
18562 (Fstring_to_number): Use new string_to_number function, to be
18563 consistent with how the Lisp reader treats infinities and NaNs.
18564 Do not assume that floating-point numbers represent EMACS_INT
18565 without losing information; this is not true on most 64-bit hosts.
18566 Avoid double-rounding errors, by insisting on integers when
18567 parsing non-base-10 numbers, as the documentation specifies.
18568 * lisp.h (string_to_number): New decl, replacing ...
18569 (isfloat_string): Remove.
18570 * lread.c: Include <inttypes.h>, for uintmax_t and strtoumax.
18571 (read1): Do not accept +. and -. as integers; this
18572 appears to have been a coding error. Similarly, do not accept
18573 strings like +-1e0 as floating point numbers. Do not report
18574 overflow for integer overflows unless the base is not 10 which
18575 means we have no simple and reliable way to continue.
18576 Break out the floating-point parsing into a new
18577 function string_to_number, so that Fstring_to_number parses
18578 floating point numbers consistently with the Lisp reader.
18579 (digit_to_number): Move here from data.c. Make it static inline.
18580 (E_CHAR, EXP_INT): Remove, replacing with ...
18581 (E_EXP): New macro, to solve the "1.0e+" problem mentioned below.
18582 (string_to_number): New function, replacing isfloat_string.
18583 This function checks for valid syntax and produces the resulting
18584 Lisp float number too. Rework it so that string-to-number
18585 no longer mishandles examples like "1.0e+". Use strtoumax,
18586 so that overflow for non-base-10 numbers is reported only when
18587 there's no portable and simple way to convert to floating point.
18588
18589 * textprop.c (set_text_properties_1): Rewrite for clarity,
18590 and to avoid GCC warning about integer overflow.
18591
18592 * intervals.h (struct interval): Use EMACS_INT for members
18593 where EMACS_UINT might cause problems. See
18594 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html>.
18595 (CHECK_TOTAL_LENGTH): Remove cast to EMACS_INT; no longer needed.
18596 * intervals.c (interval_deletion_adjustment): Now returns EMACS_INT.
18597 All uses changed.
18598 (offset_intervals): Tell GCC not to worry about length overflow
18599 when negating a negative length.
18600
18601 * alloc.c (overrun_check_malloc, overrun_check_realloc): Now static.
18602 (overrun_check_free): Likewise.
18603
18604 * alloc.c (SDATA_SIZE) [!GC_CHECK_STRING_BYTES]: Avoid runtime check
18605 in the common case where SDATA_DATA_OFFSET is a multiple of Emacs
18606 word size.
18607
18608 * gnutls.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
18609 (gnutls_make_error): Rename local to avoid shadowing.
18610 (gnutls_emacs_global_deinit): ifdef out; not used.
18611 (Fgnutls_boot): Use const for pointer to readonly storage.
18612 Comment out unused local. Fix pointer signedness problems.
18613
18614 * lread.c (openp): Don't stuff size_t into an 'int'.
18615 Use <= on length, not < on length + 1, to avoid GCC 4.6.0 warning
18616 about possible signed overflow.
18617
18618 * gtkutil.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
18619 (GDK_KEY_g): Don't define if already defined.
18620 (xg_prepare_tooltip): Avoid pointer signedness problem.
18621 (xg_set_toolkit_scroll_bar_thumb): Redo to avoid two casts.
18622
18623 * process.c (Fnetwork_interface_info): Avoid left-shift undefined
18624 behavior with 1 << 31. GCC 4.6.0 warns about this on 32-bit hosts.
18625
18626 * xfns.c (Fx_window_property): Simplify a bit,
18627 to make a bit faster and to avoid GCC 4.6.0 warning.
18628 * xselect.c (x_get_window_property, x_handle_dnd_message): Likewise.
18629
18630 * fns.c (internal_equal): Don't assume size_t fits in int.
18631
18632 * alloc.c (compact_small_strings): Tighten assertion a little.
18633
18634 Replace pEd with more-general pI, and fix some printf arg casts.
18635 * lisp.h (pI): New macro, generalizing old pEd macro to other
18636 conversion specifiers. For example, use "...%"pI"d..." rather
18637 than "...%"pEd"...".
18638 (pEd): Remove. All uses replaced with similar uses of pI.
18639 * m/amdx86-64.h, m/ia64.h, m/ibms390x.h: Likewise.
18640 * alloc.c (check_pure_size): Don't overflow by converting size to int.
18641 * bidi.c (bidi_dump_cached_states): Use pI to avoid cast.
18642 * data.c (Fnumber_to_string): Use pI instead of if-then-else-abort.
18643 * dbusbind.c (xd_append_arg): Use pI to avoid cast.
18644 (Fdbus_method_return_internal, Fdbus_method_error_internal): Likewise.
18645 * font.c (font_unparse_xlfd): Avoid potential buffer overrun on
18646 64-bit hosts.
18647 (font_unparse_xlfd, font_unparse_fcname): Use pI to avoid casts.
18648 * keyboard.c (record_char, modify_event_symbol): Use pI to avoid casts.
18649 * print.c (safe_debug_print, print_object): Likewise.
18650 (print_object): Don't overflow by converting EMACS_INT or EMACS_UINT
18651 to int.
18652 Use pI instead of if-then-else-abort. Use %p to avoid casts,
18653 avoiding the 0 flag, which is not portable.
18654 * process.c (Fmake_network_process): Use pI to avoid cast.
18655 * region-cache.c (pp_cache): Likewise.
18656 * xdisp.c (decode_mode_spec): Likewise.
18657 * xrdb.c (x_load_resources) [USE_MOTIF]: Use pI to avoid undefined
18658 behavior on 64-bit hosts with printf arg.
18659 * xselect.c (x_queue_event): Use %p to avoid casts, avoiding 0 flag.
18660 (x_stop_queuing_selection_requests): Likewise.
18661 (x_get_window_property): Don't truncate byte count to an 'int'
18662 when tracing.
18663
18664 * frame.c (frame_name_fnn_p): Get rid of strtol, which isn't right
18665 here, since it parses constructs like leading '-' and spaces,
18666 which are not wanted; and it overflows with large numbers.
18667 Instead, simply match F[0-9]+, which is what is wanted anyway.
18668
18669 * alloc.c: Remove unportable assumptions about struct layout.
18670 (SDATA_SELECTOR, SDATA_DATA_OFFSET): New macros.
18671 (SDATA_OF_STRING, SDATA_SIZE, allocate_string_data):
18672 (allocate_vectorlike, make_pure_vector): Use the new macros,
18673 plus offsetof, to remove unportable assumptions about struct layout.
18674 These assumptions hold on all porting targets that I know of, but
18675 they are not guaranteed, they're easy to remove, and removing them
18676 makes further changes easier.
18677
18678 * alloc.c (BLOCK BYTES): Fix typo by changing "ablock" to "ablocks".
18679 This doesn't fix a bug but makes the code clearer.
18680 (string_overrun_cookie): Now const. Use initializers that
18681 don't formally overflow signed char, to avoid warnings.
18682 (allocate_string_data) [GC_CHECK_STRING_OVERRUN]: Fix typo that
18683 can cause Emacs to crash when string overrun checking is enabled.
18684 (allocate_buffer): Don't assume sizeof (struct buffer) is a
18685 multiple of sizeof (EMACS_INT); it need not be, if
18686 alignof(EMACS_INT) < sizeof (EMACS_INT).
18687 (check_sblock, check_string_bytes, check_string_free_list): Protoize.
18688
18689 2011-04-26 Juanma Barranquero <lekktu@gmail.com>
18690
18691 * keyboard.c (QCrtl): Rename from Qrtl. All uses changed.
18692
18693 2011-04-26 Teodor Zlatanov <tzz@lifelogs.com>
18694
18695 * gnutls.c (emacs_gnutls_handshake): Return an error if we're not
18696 supposed to be handshaking. (Bug#8556)
18697 Reported by Paul Eggert <eggert@cs.ucla.edu>.
18698
18699 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
18700
18701 * lisp.h (Qdebug): List symbol.
18702 * eval.c (Qdebug): Restore global linkage.
18703 * keyboard.c (debug-on-event): New variable.
18704 (handle_user_signal): Break into debugger when debug-on-event
18705 matches the current signal symbol.
18706
18707 2011-04-25 Dan Nicolaescu <dann@ics.uci.edu>
18708
18709 * alloc.c (check_sblock, check_string_bytes)
18710 (check_string_free_list): Convert to standard C.
18711
18712 2011-04-25 Teodor Zlatanov <tzz@lifelogs.com>
18713
18714 * w32.c (emacs_gnutls_push): Fix typo.
18715
18716 2011-04-25 Eli Zaretskii <eliz@gnu.org>
18717
18718 * gnutls.c (emacs_gnutls_handshake): Avoid compiler warnings about
18719 "cast to pointer from integer of different size".
18720
18721 Improve doprnt and its use in verror. (Bug#8545)
18722 * doprnt.c (doprnt): Document the set of format control sequences
18723 supported by the function. Use SAFE_ALLOCA instead of always
18724 using `alloca'.
18725
18726 * eval.c (verror): Don't limit the buffer size at size_max-1, that
18727 is one byte too soon. Don't use xrealloc; instead xfree and
18728 xmalloc anew.
18729
18730 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
18731
18732 * gnutls.h: Add GNUTLS_STAGE_CALLBACKS enum to denote we're in the
18733 callbacks stage.
18734
18735 * gnutls.c: Renamed global_initialized to
18736 gnutls_global_initialized. Added internals for the
18737 :verify-hostname-error, :verify-error, and :verify-flags
18738 parameters of `gnutls-boot' and documented those parameters in the
18739 docstring. Start callback support.
18740 (emacs_gnutls_handshake): Add Woe32 support. Retry handshake
18741 unless a fatal error occurred. Call gnutls_alert_send_appropriate
18742 on error. Return error code.
18743 (emacs_gnutls_write): Call emacs_gnutls_handle_error.
18744 (emacs_gnutls_read): Likewise.
18745 (Fgnutls_boot): Return handshake error code.
18746 (emacs_gnutls_handle_error): New function.
18747 (wsaerror_to_errno): Likewise.
18748
18749 * w32.h (emacs_gnutls_pull): Add prototype.
18750 (emacs_gnutls_push): Likewise.
18751
18752 * w32.c (emacs_gnutls_pull): New function for GnuTLS on Woe32.
18753 (emacs_gnutls_push): Likewise.
18754
18755 2011-04-24 Claudio Bley <claudio.bley@gmail.com> (tiny change)
18756
18757 * process.c (wait_reading_process_output): Check if GnuTLS
18758 buffered some data internally if no FDs are set for TLS
18759 connections.
18760
18761 * makefile.w32-in (OBJ2): Add gnutls.$(O).
18762 (LIBS): Link to USER_LIBS.
18763 ($(BLD)/gnutls.$(0)): New target.
18764
18765 2011-04-24 Eli Zaretskii <eliz@gnu.org>
18766
18767 * xdisp.c (handle_single_display_spec): Rename the
18768 display_replaced_before_p argument into display_replaced_p, to
18769 make it consistent with the commentary. Fix typos in the
18770 commentary.
18771
18772 * textprop.c (syms_of_textprop): Remove dead code.
18773 (copy_text_properties): Delete obsolete commentary about an
18774 interface that was deleted long ago. Fix typos in the description
18775 of arguments.
18776
18777 * msdos.c (XMenuActivate, XMenuAddSelection): Adjust argument list
18778 to changes in oldXMenu/XMenu.h from 2011-04-16.
18779 <menu_help_message, prev_menu_help_message>: Constify.
18780 (IT_menu_make_room): menu->help_text is now `const char **';
18781 adjust.
18782
18783 * msdos.h (XMenuActivate, XMenuAddSelection): Adjust prototypes
18784 to changes in oldXMenu/XMenu.h from 2011-04-16.
18785 (struct XMenu): Declare `help_text' `const char **'.
18786
18787 * xfaces.c <Qunspecified>: Make extern again.
18788
18789 * syntax.c: Include sys/types.h before including regex.h, as
18790 required by POSIX.
18791
18792 * doc.c (get_doc_string): Improve the format passed to `error'.
18793
18794 * doprnt.c (doprnt): Improve commentary.
18795
18796 * term.c (init_tty) [MSDOS]: Fix 1st argument to maybe_fatal.
18797
18798 * Makefile.in (TAGS): Depend on $(M_FILE) and $(S_FILE), and scan
18799 them with etags.
18800
18801 * makefile.w32-in (globals.h): Add a dummy recipe, to make any
18802 changes in globals.h immediately force recompilation.
18803 (TAGS): Depend on $(CURDIR)/m/intel386.h and
18804 $(CURDIR)/s/ms-w32.h.
18805 (TAGS-gmake): Scan $(CURDIR)/m/intel386.h and $(CURDIR)/s/ms-w32.h.
18806
18807 * character.c (Fchar_direction): Function deleted.
18808 (syms_of_character): Don't defsubr it.
18809 <char-direction-table>: Deleted.
18810
18811 2011-04-23 Eli Zaretskii <eliz@gnu.org>
18812
18813 Fix doprnt so it could be used again safely in `verror'. (Bug#8435)
18814 * doprnt.c: Include limits.h.
18815 (SIZE_MAX): New macro.
18816 (doprnt): Return a size_t value. 2nd arg is now size_t.
18817 Many local variables are now size_t instead of int or unsigned.
18818 Improve overflow protection. Support `l' modifier for integer
18819 conversions. Support %l conversion. Don't assume an EMACS_INT
18820 argument for integer conversions and for %c.
18821
18822 * lisp.h (doprnt): Restore prototype.
18823
18824 * makefile.w32-in ($(BLD)/callint.$(O)): Depend on
18825 $(SRC)/character.h.
18826
18827 * Makefile.in (base_obj): Add back doprnt.o.
18828
18829 * deps.mk (doprnt.o): Add back prerequisites.
18830 (callint.o): Depend on character.h.
18831
18832 * eval.c (internal_lisp_condition_case): Include the handler
18833 representation in the error message.
18834 (verror): Call doprnt instead of vsnprintf. Fix an off-by-one bug
18835 when breaking from the loop.
18836
18837 * xdisp.c (vmessage): Call doprnt instead of vsnprintf.
18838
18839 * callint.c (Fcall_interactively): When displaying error message
18840 about invalid control letter, pass the character's codepoint, not
18841 a pointer to its multibyte form. Improve display of the character
18842 in octal and display also its hex code.
18843
18844 * character.c (char_string): Use %x to display the (unsigned)
18845 codepoint of an invalid character, to avoid displaying a bogus
18846 negative value.
18847
18848 * font.c (check_otf_features): Pass SDATA of SYMBOL_NAME to
18849 `error', not SYMBOL_NAME itself.
18850
18851 * coding.c (Fencode_sjis_char, Fencode_big5_char): Use %c for
18852 character arguments to `error'.
18853
18854 * charset.c (check_iso_charset_parameter): Fix incorrect argument
18855 to `error' in error message about FINAL_CHAR argument. Make sure
18856 FINAL_CHAR is a character, and use %c when it is passed as
18857 argument to `error'.
18858
18859 2011-04-23 Eli Zaretskii <eliz@gnu.org>
18860
18861 * s/ms-w32.h (localtime): Redirect to sys_localtime.
18862
18863 * w32.c: Include <time.h>.
18864 (sys_localtime): New function.
18865
18866 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
18867
18868 * xdisp.c (init_xdisp): Initialize echo_area_window (Bug#6451).
18869
18870 * buffer.c (syms_of_buffer): Doc fix (Bug#6902).
18871
18872 2011-04-23 Samuel Thibault <sthibault@debian.org> (tiny change)
18873
18874 * sysdep.c (wait_for_termination): On GNU Hurd, kill returns -1 on
18875 zombies (Bug#8467).
18876
18877 2011-04-19 Eli Zaretskii <eliz@gnu.org>
18878
18879 * syntax.h (SETUP_SYNTAX_TABLE_FOR_OBJECT): Fix setting of
18880 gl_state.e_property when gl_state.object is Qt.
18881
18882 * insdel.c (make_gap_larger): Remove limitation of buffer size
18883 to <= INT_MAX.
18884
18885 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
18886
18887 * xdisp.c (lookup_glyphless_char_display)
18888 (produce_glyphless_glyph): Handle cons cell entry in
18889 glyphless-char-display.
18890 (Vglyphless_char_display): Document it.
18891
18892 * term.c (produce_glyphless_glyph): Handle cons cell entry in
18893 glyphless-char-display.
18894
18895 2011-04-17 Chong Yidong <cyd@stupidchicken.com>
18896
18897 * xdisp.c (get_next_display_element): Remove unnecessary ifdefs.
18898
18899 * termhooks.h (FRAME_WINDOW_P): Remove duplicated definitions.
18900
18901 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): Add missing
18902 definition for no-X builds.
18903
18904 2011-04-16 Paul Eggert <eggert@cs.ucla.edu>
18905
18906 Static checks with GCC 4.6.0 and non-default toolkits.
18907
18908 * s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF): Protoize decl.
18909
18910 * process.c (keyboard_bit_set): Define only if SIGIO.
18911 (send_process_trap): Mark it with NO_RETURN if it doesn't return.
18912 (send_process): Repair possible setjmp clobbering.
18913
18914 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Don't pass extra arg to 'fatal'.
18915
18916 * eval.c: Include <stdio.h>, for vsnprintf on non-GNU/Linux hosts.
18917
18918 * data.c (arith_error): Mark with NO_RETURN if it doesn't return.
18919
18920 * alloc.c (bytes_used_when_full, SPARE_MEMORY, BYTES_USED):
18921 Define only if needed.
18922
18923 * sysdep.c (_FILE_OFFSET_BITS): Make this hack even uglier
18924 by pacifying GCC about it. Maybe it's time to retire it?
18925 * xfaces.c (USG, __TIMEVAL__): Likewise.
18926
18927 * dispextern.h (struct redisplay_interface): Rename param
18928 to avoid shadowing.
18929 * termhooks.h (struct terminal): Likewise.
18930 * xterm.c (xembed_send_message): Likewise.
18931
18932 * insdel.c (make_gap_smaller): Define only if
18933 USE_MMAP_FOR_BUFFERS || REL_ALLOC || DOUG_LEA_MALLOC.
18934
18935 * keyboard.c (read_char): Make a var volatile so longjmp won't clobber
18936 it.
18937
18938 * emacs.c (MAX_HEAP_BSS_DIFF, my_edata): Move to where they're used,
18939 so that we aren't warned about unused symbols.
18940
18941 * xfns.c (Fx_file_dialog): Rename local to avoid shadowing.
18942
18943 * xdisp.c (x_produce_glyphs): Mark var as initialized (Bug#8512).
18944
18945 * xfns.c (x_real_positions): Mark locals as initialized.
18946
18947 * xmenu.c (xmenu_show): Don't use uninitialized vars.
18948
18949 * xterm.c: Fix problems found by static analysis with other toolkits.
18950 (toolkit_scroll_bar_interaction): Define and use only if USE_X_TOOLKIT.
18951 (x_dispatch_event): Declare static if USE_GTK, and
18952 define if USE_GTK || USE_X_TOOLKIT.
18953 (SET_SAVED_BUTTON_EVENT): Define only if USE_X_TOOLKIT || USE_GTK.
18954 * xterm.h (x_dispatch_event): Extern only if USE_X_TOOLKIT.
18955 * xterm.c, xterm.h (x_mouse_leave): Bring this function back, but only
18956 if defined HAVE_MENUS && !defined USE_X_TOOLKIT && !defined USE_GTK.
18957
18958 * xmenu.c (menu_help_callback): Pointer type fixes.
18959 Use const pointers when pointing at readonly data. Avoid pointer
18960 signedness clashes.
18961 (FALSE): Remove unused macro.
18962 (update_frame_menubar): Remove unused decl.
18963
18964 * xfns.c (Fx_hide_tip): Move locals to avoid shadowing.
18965
18966 * menu.c (push_submenu_start, push_submenu_end): Do not define unless
18967 USE_X_TOOLKIT || USE_GTK || HAVE_NS || defined HAVE_NTGUI.
18968 (single_menu_item): Rename local to avoid shadowing.
18969
18970 * keyboard.c (make_lispy_event): Remove unused local var.
18971
18972 * frame.c, frame.h (x_get_resource_string): Bring this back, but
18973 only if HAVE_X_WINDOWS && !USE_X_TOOLKIT.
18974
18975 * bitmaps: Change bitmaps from unsigned char back to the X11
18976 compatible char. Avoid the old compiler warnings about
18977 out-of-range initializers by using, for example, '\xab' rather
18978 than 0xab.
18979
18980 * xgselect.c (xgselect_initialize): Check vs interface
18981 even if ! (defined (USE_GTK) || defined (HAVE_GCONF)).
18982
18983 * xmenu.c (xmenu_show): Rename parm to avoid shadowing.
18984
18985 * xterm.c (x_create_toolkit_scroll_bar): Use const * for pointers
18986 to read-only memory.
18987
18988 * fns.c (vector): Remove; this old hack is no longer needed.
18989
18990 * xsmfns.c (create_client_leader_window): Rename shadowing arg.
18991 Remove unused var.
18992 (gdk_x11_set_sm_client_id) [!USE_GTK]: Don't define.
18993
18994 * xrdb.c (x_load_resources): Omit unused local.
18995
18996 * xfns.c (free_frame_menubar, atof): Remove duplicate decls.
18997 (x_window): Rename locals to avoid shadowing.
18998 (USG): Use the kludged USG macro, to pacify gcc.
18999
19000 * xterm.c (x_alloc_nearest_color_for_widget): Remove; unused.
19001 (x_term_init): Remove local to avoid shadowing.
19002
19003 * xfns.c, xterm.c (_XEditResCheckMessages): Protoize decl.
19004
19005 * xdisp.c, dispextern.h (set_vertical_scroll_bar): Now extern if
19006 USE_TOOLKIT_SCROLL_BARS && !USE_GTK, as xterm.c needs it then.
19007
19008 2011-04-16 Eli Zaretskii <eliz@gnu.org>
19009
19010 * gnutls.c (Fgnutls_boot): Don't pass Lisp_Object to `error'.
19011
19012 Fix regex.c, syntax.c and friends for buffers > 2GB.
19013 * syntax.h (struct gl_state_s): Declare character position members
19014 EMACS_INT.
19015
19016 * syntax.c (update_syntax_table): Declare 2nd argument EMACS_INT.
19017
19018 * textprop.c (verify_interval_modification, interval_of):
19019 Declare arguments EMACS_INT.
19020
19021 * intervals.c (adjust_intervals_for_insertion): Declare arguments
19022 EMACS_INT.
19023
19024 * intervals.h (CHECK_TOTAL_LENGTH): Cast to EMACS_INT, not `int'.
19025
19026 * indent.c (Fvertical_motion): Local variable it_start is now
19027 EMACS_INT.
19028
19029 * regex.c (re_match, re_match_2, re_match_2_internal)
19030 (bcmp_translate, regcomp, regexec, print_double_string)
19031 (group_in_compile_stack, re_search, re_search_2, regex_compile)
19032 (re_compile_pattern, re_exec): Declare arguments and local
19033 variables `size_t' and `ssize_t' and return values `regoff_t', as
19034 appropriate.
19035 (POP_FAILURE_REG_OR_COUNT) <pfreg>: Declare `long'.
19036 (CHECK_INFINITE_LOOP) <failure>: Declare `ssize_t'.
19037 <compile_stack_type>: `size' and `avail' are now `size_t'.
19038
19039 * regex.h <regoff_t>: Use ssize_t, not int.
19040 (re_search, re_search_2, re_match, re_match_2): Arguments that
19041 specify buffer/string position and length are now ssize_t and
19042 size_t. Return type is regoff_t.
19043
19044 2011-04-16 Ben Key <bkey76@gmail.com>
19045
19046 * nsfont.m: Fixed bugs in ns_get_family and
19047 ns_descriptor_to_entity that were caused by using free to
19048 deallocate memory blocks that were allocated by xmalloc (via
19049 xstrdup). This caused Emacs to crash when compiled with
19050 XMALLOC_OVERRUN_CHECK defined (when Emacs was configured with
19051 --enable-checking=xmallocoverrun). xfree is now used to
19052 deallocate these memory blocks.
19053
19054 2011-04-15 Paul Eggert <eggert@cs.ucla.edu>
19055
19056 * sysdep.c (emacs_read): Remove unnecessary check vs MAX_RW_COUNT.
19057
19058 emacs_write: Accept and return EMACS_INT for sizes.
19059 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html
19060 et seq.
19061 * gnutls.c, gnutls.h (emacs_gnutls_read, emacs_gnutls_write):
19062 Accept and return EMACS_INT.
19063 (emacs_gnutls_write): Return the number of bytes written on
19064 partial writes.
19065 * sysdep.c, lisp.h (emacs_read, emacs_write): Likewise.
19066 (emacs_read, emacs_write): Remove check for negative size, as the
19067 Emacs source code has been audited now.
19068 * sysdep.c (MAX_RW_COUNT): New macro, to work around kernel bugs.
19069 (emacs_read, emacs_write): Use it.
19070 * process.c (send_process): Adjust to the new signatures of
19071 emacs_write and emacs_gnutls_write. Do not attempt to store
19072 a byte offset into an 'int'; it might overflow.
19073 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00483.html
19074
19075 * sound.c: Don't assume sizes fit in 'int'.
19076 (struct sound_device.period_size, alsa_period_size):
19077 Return EMACS_INT, not int.
19078 (struct sound_device.write, vox_write, alsa_write):
19079 Accept EMACS_INT, not int.
19080 (wav_play, au_play): Use EMACS_INT to store sizes and to
19081 record read return values.
19082
19083 2011-04-15 Ben Key <bkey76@gmail.com>
19084
19085 * keyboard.c (Qundefined): Don't declare static since it is used
19086 in nsfns.m.
19087 * xfaces.c (Qbold, Qexpanded, Qitalic, Qcondensed): Don't declare
19088 static since they are used in nsfont.m.
19089
19090 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
19091
19092 * process.c (Qprocessp): Don't declare static.
19093 * lisp.h (Qprocessp): Declare again.
19094
19095 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
19096
19097 * font.c (Qopentype): Don't make static (used from w32uniscribe.c).
19098
19099 2011-04-14 Paul Eggert <eggert@cs.ucla.edu>
19100
19101 Improve C-level modularity by making more things 'static'.
19102
19103 Don't publish debugger-only interfaces to other modules.
19104 * lisp.h (safe_debug_print, debug_output_compilation_hack):
19105 (verify_bytepos, count_markers): Move decls to the only modules
19106 that need them.
19107 * region-cache.h (pp_cache): Likewise.
19108 * window.h (check_all_windows): Likewise.
19109 * marker.c, print.c, region-cache.c, window.c: Decls moved here.
19110
19111 * sysdep.c (croak): Now static, if
19112 defined TIOCNOTTY || defined USG5 || defined CYGWIN.
19113 * syssignal.h (croak): Declare only if not static.
19114
19115 * alloc.c (refill_memory_reserve): Now static if
19116 !defined REL_ALLOC || defined SYSTEM_MALLOC.
19117 * lisp.h (refill_memory_reserve): Declare only if not static.
19118
19119 * xsettings.c, xsettings.h (xsettings_get_system_normal_font):
19120 Define only if USE_LUCID.
19121
19122 * xrdb.c (x_customization_string, x_rm_string): Now static.
19123
19124 * xmenu.c (x_menu_wait_for_event): Export only if USE_MOTIF.
19125 * xterm.h (x_menu_wait_for_event): Declare only if USE_MOTIF.
19126
19127 * xdisp.c (draw_row_with_mouse_face): Now static.
19128 * dispextern.h (draw_row_with_mouse_fave): Remove decl.
19129
19130 * window.h (check_all_windows): Mark externally visible.
19131
19132 * window.c (window_deletion_count): Now static.
19133
19134 * undo.c: Make symbols static if they're not exported.
19135 (last_undo_buffer, last_boundary_position, pending_boundary):
19136 Now static.
19137
19138 * textprop.c (interval_insert_behind_hooks): Now static.
19139 (interval_insert_in_front_hooks): Likewise.
19140
19141 * term.c: Make symbols static if they're not exported.
19142 (tty_turn_off_highlight, get_tty_terminal, max_frame_cols):
19143 (max_frame_lines, tty_set_terminal_modes):
19144 (tty_reset_terminal_modes, tty_turn_off_highlight):
19145 (get_tty_terminal): Now static.
19146 (term_mouse_moveto): Do not define if HAVE_WINDOW_SYSTEM.
19147 * termhooks.h (term_mouse_moveto): Do not declare if
19148 HAVE_WINDOW_SYSTEM.
19149 * dispextern.h (tty_set_terminal_modes, tty_reset_terminal_modes):
19150 (tty_turn_off_highlight, get_tty_terminal): Remove decls.
19151
19152 * sysdep.c: Make symbols static if they're not exported.
19153 (emacs_get_tty, emacs_set_tty, old_fcntl_flags, old_fcntl_owner):
19154 Now static.
19155 (sigprocmask_set, full_mask): Remove; unused.
19156 (wait_debugging): Mark as visible.
19157 * syssignal.h (SIGFULLMASK, full_mask): Remove decls.
19158 * systty.h (emacs_get_tty, emacs_set_tty): Remove decls.
19159
19160 * syntax.c (syntax_temp): Define only if !__GNUC__.
19161
19162 * sound.c (current_sound_device, current_sound): Now static.
19163
19164 * search.c (searchbufs, searchbuf_head): Now static.
19165
19166 * scroll.c (scroll_cost): Remove; unused.
19167 * dispextern.h (scroll_cost): Remove decl.
19168
19169 * region-cache.h (pp_cache): Mark as externally visible.
19170
19171 * process.c: Make symbols static if they're not exported.
19172 (process_tick, update_tick, create_process, chan_process):
19173 (Vprocess_alist, proc_buffered_char, datagram_access):
19174 (fd_callback_data, send_process_frame, process_sent_to): Now static.
19175 (deactivate_process): Mark defn as static, as well as decl.
19176 * lisp.h (create_process): Remove decl.
19177 * process.h (chan_process, Vprocess_alist): Remove decls.
19178
19179 * print.c: Make symbols static if they're not exported.
19180 (print_depth, new_backquote_output, being_printed, print_buffer):
19181 (print_buffer_size, print_buffer_pos, print_buffer_pos_byte):
19182 (print_interval, print_number_index, initial_stderr_stream):
19183 Now static.
19184 * lisp.h (Fprinc): Remove decl.
19185 (debug_output_compilation_hack): Mark as externally visible.
19186
19187 * sysdep.c (croak): Move decl from here to syssignal.h.
19188 * syssignal.h (croak): Put it here, so the API can be checked when
19189 'croak' is called from dissociate_if_controlling_tty.
19190
19191 * minibuf.c: Make symbols static if they're not exported.
19192 (minibuf_save_list, choose_minibuf_frame): Now static.
19193 * lisp.h (choose_minibuf_frame): Remove decl.
19194
19195 * lisp.h (verify_bytepos, count_markers): Mark as externally visible.
19196
19197 * lread.c: Make symbols static if they're not exported.
19198 (read_objects, initial_obarray, oblookup_last_bucket_number):
19199 Now static.
19200 (make_symbol): Remove; unused.
19201 * lisp.h (initial_obarray, make_symbol): Remove decls.
19202
19203 * keyboard.c: Make symbols static if they're not exported.
19204 (single_kboard, recent_keys_index, total_keys, recent_keys):
19205 (this_command_key_count_reset, raw_keybuf, raw_keybuf_count):
19206 (this_single_command_key_start, echoing, last_auto_save):
19207 (read_key_sequence_cmd, dribble, recursive_edit_unwind):
19208 (command_loop, echo_now, keyboard_init_hook, help_char_p):
19209 (quit_throw_to_read_char, command_loop_2, top_level_1, poll_timer):
19210 (Vlispy_mouse_stem, double_click_count):
19211 Now static.
19212 (force_auto_save_soon): Define only if SIGDANGER.
19213 (ignore_mouse_drag_p): Now static if
19214 !defined HAVE_WINDOW_SYSTEM || defined USE_GTK || defined HAVE_NS.
19215 (print_help): Remove; unused.
19216 (stop_character, last_timer_event): Mark as externally visible.
19217 * keyboard.h (ignore_mouse_drag_p): Declare only if
19218 defined HAVE_WINDOW_SYSTEM && !defined USE_GTK && !defined HAVE_NS.
19219 (echo_now, help_char_p, quit_throw_to_read_char): Remove decls.
19220 * lisp.h (echoing): Remove decl.
19221 (force_auto_save_soon): Declare only if SIGDANGER.
19222 * xdisp.c (redisplay_window): Simplify code, to make it more
19223 obvious that ignore_mouse_drag_p is not accessed if !defined
19224 USE_GTK && !defined HAVE_NS.
19225
19226 * intervals.c: Make symbols static if they're not exported.
19227 (merge_properties_sticky, merge_interval_right, delete_interval):
19228 Now static.
19229 * intervals.h (merge_interval_right, delete_interval): Remove decls.
19230
19231 * insdel.c: Make symbols static if they're not exported.
19232 However, leave prepare_to_modify_buffer alone. It's never
19233 called from outside this function, but that appears to be a bug.
19234 (combine_after_change_list, combine_after_change_buffer):
19235 (adjust_after_replace, signal_before_change): Now static.
19236 (adjust_after_replace_noundo): Remove; unused.
19237 * lisp.h (adjust_after_replace, adjust_after_replace_noundo):
19238 (signal_before_change): Remove decls.
19239
19240 * indent.c (val_compute_motion, val_vmotion): Now static.
19241
19242 * image.c: Make symbols static if they're not exported.
19243 * dispextern.h (x_create_bitmap_from_xpm_data): Do not declare
19244 if USE_GTK.
19245 * image.c (x_create_bitmap_from_xpm_data): Do not define if USE_GTK.
19246 (xpm_color_cache, ct_table, ct_colors_allocated): Now static.
19247
19248 * fringe.c (standard_bitmaps): Now static.
19249 (max_used_fringe_bitmap): Now static, unless HAVE_NS.
19250
19251 * frame.c: Make symbols static if they're not exported.
19252 (x_report_frame_params, make_terminal_frame): Now static.
19253 (get_frame_param): Now static, unless HAVE_NS.
19254 (x_fullscreen_adjust): Define if WINDOWSNT, not if HAVE_WINDOW_SYSTEM.
19255 (x_get_resource_string): Remove; not used.
19256 * frame.h (make_terminal_frame, x_report_frame_params):
19257 (x_get_resource_string); Remove decls.
19258 (x_fullscreen_adjust): Declare only if WINDOWSNT.
19259 * lisp.h (get_frame_param): Declare only if HAVE_NS.
19260
19261 * font.c, fontset.c: Make symbols static if they're not exported.
19262 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): New macro.
19263 (FACE_SUITABLE_FOR_CHAR_P): Use it.
19264 * font.c (font_close_object): Now static.
19265 * font.h (font_close_object): Remove.
19266 * fontset.c (FONTSET_OBJLIST): Remove.
19267 (free_realized_fontset) #if-0 the body, which does nothing.
19268 (face_suitable_for_char_p): #if-0, as it's never called.
19269 * fontset.h (face_suitable_for_char_p): Remove decl.
19270 * xfaces.c (face_at_string_position):
19271 Use FACE_SUITABLE_FOR_ASCII_CHAR_P, not FACE_SUITABLE_FOR_CHAR_P,
19272 since 0 is always ASCII.
19273
19274 * fns.c (weak_hash_tables): Now static.
19275
19276 * fileio.c: Make symbols static if they're not exported.
19277 (auto_saving, auto_save_mode_bits, auto_save_error_occurred):
19278 (Vwrite_region_annotation_buffers): Now static.
19279
19280 * eval.c: Make symbols static if they're not exported.
19281 (backtrace_list, lisp_eval_depth, when_entered_debugger): Now static.
19282 * lisp.h (backtrace_list): Remove decl.
19283
19284 * emacs.c: Make symbols static if they're not exported.
19285 (malloc_state_ptr, malloc_using_checking, syms_of_emacs):
19286 (fatal_error_code, fatal_error_signal_hook, standard_args):
19287 Now static.
19288 (fatal_error_signal): Now static, unless FLOAT_CATCH_SIGKILL.
19289 (DEFINE_DUMMY_FUNCTION): Mark function as externally visible.
19290 (__CTOR_LIST__, __DTOR_LIST__): Now externally visible.
19291 * lisp.h (fatal_error_signal_hook): Remove decl.
19292 (fatal_error_signal): Declare only if FLOAT_CATCH_SIGKILL.
19293
19294 * editfns.c: Move a (normally-unused) function to its only use.
19295 * editfns.c, lisp.h (get_operating_system_release): Remove.
19296 * process.c (init_process) [DARWIN_OS]: Do it inline, as it is not
19297 worth the hassle of breaking this out.
19298
19299 * xterm.c: Make symbols static if they're not exported.
19300 (x_raise_frame, x_lower_frame, x_wm_set_window_state):
19301 (x_wm_set_icon_pixmap, x_initialize, XTread_socket_fake_io_error):
19302 (x_destroy_window, x_delete_display):
19303 Now static.
19304 (x_dispatch_event): Now static if ! (USE_MOTIF || USE_X_TOOLKIT).
19305 (x_mouse_leave): Remove; unused.
19306 * xterm.h (x_display_info_for_name, x_raise_frame, x_lower_frame):
19307 (x_destroy_window, x_wm_set_window_state, x_wm_set_icon_pixmap):
19308 (x_delete_display, x_initialize, x_set_border_pixel, x_screen_planes):
19309 Remove decls.
19310 (x_mouse_leave): Declare only if WINDOWSNT.
19311 (x_dispatch_event): Declare only if USE_MOTIF or USE_X_TOOLKIT.
19312 (xic_create_fontsetname): Declare only if HAVE_X_WINDOWS &&
19313 USE_X_TOOLKIT.
19314
19315 * ftxfont.c: Make symbols static if they're not exported.
19316 (ftxfont_driver): Export only if !defined HAVE_XFT && def8ined
19317 HAVE_FREETYPE.
19318 * font.h (ftxfont_driver): Likewise.
19319
19320 * xfns.c: Make symbols static if they're not exported.
19321 (x_last_font_name, x_display_info_for_name):
19322 (x_set_foreground_color, x_set_background_color, x_set_mouse_color):
19323 (x_set_cursor_color, x_set_border_pixel, x_set_border_color):
19324 (x_set_cursor_type, x_set_icon_type, x_set_icon_name):
19325 (x_set_scroll_bar_foreground, x_set_scroll_bar_background):
19326 (x_explicitly_set_name, x_set_title, xic_defaut_fontset, tip_timer):
19327 (last_show_tip_args): Now static.
19328 (xic_defaut_fontset, xic_create_fontsetname): Define only if
19329 defined HAVE_X_WINDOWS && defined USE_X_TOOLKIT
19330 (x_screen_planes): Remove; unused.
19331 * dispextern.h (x_screen_planes): Remove decl.
19332
19333 * dispnew.c: Make symbols static if they're not exported.
19334 * dispextern.h (redraw_garbaged_frames, scrolling):
19335 (increment_row_positions): Remove.
19336 * dispnew.c (new_glyph_matrix, increment_row_positions, scrolling):
19337 (delayed_size_change, glyph_matrix_count, glyph_pool_count):
19338 Now static.
19339 (redraw_garbaged_frames): Remove; unused.
19340
19341 * xfaces.c: Make symbols static if they're not exported.
19342 * dispextern.h (ascii_face_of_lisp_face, free_realized_face):
19343 Remove decls.
19344 * xterm.h (defined_color): Remove decls.
19345 (x_free_dpy_colors): Declare only if USE_X_TOOLKIT.
19346 * xfaces.c (tty_suppress_bold_inverse_default_colors_p):
19347 (menu_face_changed_default, defined_color, free_realized_face):
19348 (x_free_dpy_colors): Define only if USE_X_TOOLKIT.
19349 (ascii_face_of_lisp_face): Remove; unused.
19350
19351 * xdisp.c: Make symbols static if they're not exported.
19352 * dispextern.h (scratch_glyph_row, window_box_edges):
19353 (glyph_to_pixel_coords, set_cursor_from_row):
19354 (get_next_display_element, set_iterator_to_next):
19355 (highlight_trailing_whitespace, frame_to_window_pixel_xy):
19356 (show_mouse_face): Remove decls
19357 * frame.h (message_buf_print): Likewise.
19358 * lisp.h (pop_message, set_message, check_point_in_composition):
19359 Likewise.
19360 * xterm.h (set_vertical_scroll_bar): Likewise.
19361 * xdisp.c (list_of_error, Vmessage_stack, line_number_displayed):
19362 (message_buf_print, scratch_glyph_row, displayed_buffer):
19363 (set_iterator_to_next, pop_message, set_message, set_cursor_from_row):
19364 (get_next_display_element, show_mouse_face, window_box_edges):
19365 (frame_to_window_pixel_xy, check_point_in_composition):
19366 (set_vertical_scroll_bar, highlight_trailing_whitespace): Now static.
19367 (glyph_to_pixel_coords): Remove; unused.
19368
19369 * dired.c (file_name_completion): Now static.
19370
19371 * dbusbind.c (xd_in_read_queued_messages): Now static.
19372
19373 * lisp.h (circular_list_error, FOREACH): Remove; unused.
19374 * data.c (circular_list_error): Remove.
19375
19376 * commands.h (last_point_position, last_point_position_buffer):
19377 (last_point_position_window): Remove decls.
19378 * keyboard.c: Make these variables static.
19379
19380 * coding.h (coding, code_convert_region, encode_coding_gap):
19381 Remove decls.
19382 * coding.c (Vsjis_coding_system, Vbig5_coding_system):
19383 (iso_code_class, detect_coding, code_convert_region): Now static.
19384 (encode_coding_gap): Remove; unused.
19385
19386 * chartab.c (chartab_chars, chartab_bits): Now static.
19387
19388 * charset.h (charset_iso_8859_1): Remove decl.
19389 * charset.c (charset_iso_8859_1, charset_emacs, map_charset_for_dump):
19390 Now static.
19391
19392 * ccl.h (check_ccl_update, Vccl_program_table): Remove decls.
19393 * ccl.c (Vccl_program_table): Now static.
19394 (check_ccl_update): Remove; unused.
19395
19396 * category.c (SET_CATEGORY_SET, set_category_set): Move here.
19397 * category.h: ... from here.
19398 * category.c (check_category_table, set_category_set): Now static.
19399
19400 * casetab.c (Vascii_upcase_table, Vascii_eqv_table): Now static.
19401 * lisp.h: Remove these decls.
19402
19403 * buffer.c (buffer_count): Remove unused var.
19404
19405 * bidi.c (bidi_dump_cached_states): Mark as externally visible,
19406 so that it's not optimized away.
19407 (bidi_ignore_explicit_marks_for_paragraph_level): Likewise.
19408 * dispextern.h (bidi_dump_cached_states): Remove, since it's
19409 exported only to the debugger.
19410
19411 * atimer.c (alarm_signal_handler, run_all_atimers): Now static.
19412 * atimer.h (run_all_atimers): Remove; not exported.
19413
19414 font.c: Make copy_font_spec and merge_font_spec ordinary C functions.
19415 * font.c (copy_font_spec): Rename from Fcopy_font_spec, since it
19416 was inaccessible from Lisp.
19417 (merge_font_spec): Likewise, renaming from Fmerge_font_spec.
19418 * font.c, font.h, fontset.c, xfaces.c, xfont.c: Change all uses.
19419
19420 alloc.c: Import and export fewer symbols, and remove unused items.
19421 * lisp.h (suppress_checking, die): Declare only if ENABLE_CHECKING
19422 is defined.
19423 (suppress_checking): Add EXTERNALLY_VISIBLE attribute, so that
19424 it's not optimized away by whole-program optimization.
19425 (message_enable_multibyte, free_misc): Remove.
19426 (catchlist, handlerlist, mark_backtrace):
19427 Declare only if BYTE_MARK_STACK.
19428 (mark_byte_stack): Likewise, fixing a ifdef-vs-if typo.
19429 * alloc.c (pure): Export only if VIRT_ADDR_VARIES is defined.
19430 (message_enable_multibyte): Remove decl.
19431 (free_misc, interval_free_list, float_block, float_block_index):
19432 (n_float_blocks, float_free_list, cons_block, cons_block_index):
19433 (cons_free_list, last_marked_index):
19434 Now static.
19435 (suppress_checking, die): Define only if ENABLE_CHECKING is defined.
19436 * eval.c (catchlist, handlerlist): Export only if BYTE_MARK_STACK.
19437 (mark_backtrace): Define only if BYTE_MARK_STACK.
19438 * xdisp.c (message_enable_multibyte): Now static.
19439
19440 Declare Lisp_Object Q* variables to be 'static' if not exported.
19441 This makes it easier for human readers (and static analyzers)
19442 to see whether these variables are used from other modules.
19443 * alloc.c, buffer.c, bytecode.c, callint.c, casetab.c, category.c:
19444 * ccl.c, character.c, charset.c, cmds.c, coding.c, composite.c:
19445 * data.c, dbusbind.c, dired.c, editfns.c, eval.c, fileio.c, fns.c:
19446 * font.c, frame.c, fringe.c, ftfont.c, image.c, keyboard.c, keymap.c:
19447 * lread.c, macros.c, minibuf.c, print.c, process.c, search.c:
19448 * sound.c, syntax.c, textprop.c, window.c, xdisp.c, xfaces.c, xfns.c:
19449 * xmenu.c, xselect.c:
19450 Declare Q* vars static if they are not used in other modules.
19451 * ccl.h, character.h, charset.h, coding.h, composite.h, font.h:
19452 * frame.h, intervals.h, keyboard.h, lisp.h, process.h, syntax.h:
19453 Remove decls of unexported vars.
19454 * keyboard.h (EVENT_HEAD_UNMODIFIED): Remove now-unused macro.
19455
19456 * lisp.h (DEFINE_FUNC): Make sname 'static'.
19457
19458 Make Emacs functions such as Fatom 'static' by default.
19459 This makes it easier for human readers (and static analyzers)
19460 to see whether these functions can be called from other modules.
19461 DEFUN now defines a static function. To make the function external
19462 so that it can be used in other C modules, use the new macro DEFUE.
19463 * lisp.h (Funibyte_char_to_multibyte, Fsyntax_table_p):
19464 (Finit_image_library):
19465 (Feval_region, Fbacktrace, Ffetch_bytecode, Fswitch_to_buffer):
19466 (Ffile_executable_p, Fmake_symbolic_link, Fcommand_execute):
19467 (Fget_process, Fdocumentation_property, Fbyte_code, Ffile_attributes):
19468 Remove decls, since these functions are now static.
19469 (Funintern, Fget_internal_run_time): New decls, since these functions
19470 were already external.
19471
19472 * alloc.c, buffer.c, callint.c, callproc.c, casefiddle.c, casetab.c:
19473 * ccl.c, character.c, chartab.c, cmds.c, coding.c, data.c, dispnew.c:
19474 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, floatfns.c:
19475 * fns.c, font.c, fontset.c, frame.c, image.c, indent.c:
19476 * keyboard.c, keymap.c, lread.c:
19477 * macros.c, marker.c, menu.c, minibuf.c, print.c, process.c, search.c:
19478 * syntax.c, term.c, terminal.c, textprop.c, undo.c:
19479 * window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xsettings.c:
19480 Mark functions with DEFUE instead of DEFUN,
19481 if they are used in other modules.
19482 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): New forward
19483 decls for now-static functions.
19484 * buffer.h (Fdelete_overlay): Remove decl.
19485 * callproc.c (Fgetenv_internal): Mark as internal.
19486 * composite.c (Fremove_list_of_text_properties): Remove decl.
19487 (Fcomposition_get_gstring): New forward static decl.
19488 * composite.h (Fcomposite_get_gstring): Remove decl.
19489 * dired.c (Ffile_attributes): New forward static decl.
19490 * doc.c (Fdocumntation_property): New forward static decl.
19491 * eval.c (Ffetch_bytecode): New forward static decl.
19492 (Funintern): Remove extern decl; now in .h file where it belongs.
19493 * fileio.c (Fmake_symbolic_link): New forward static decl.
19494 * image.c (Finit_image_library): New forward static decl.
19495 * insdel.c (Fcombine_after_change_execute): Make forward decl static.
19496 * intervals.h (Fprevious_property_change):
19497 (Fremove_list_of_text_properties): Remove decls.
19498 * keyboard.c (Fthis_command_keys): Remove decl.
19499 (Fcommand_execute): New forward static decl.
19500 * keymap.c (Flookup_key): New forward static decl.
19501 (Fcopy_keymap): Now static.
19502 * keymap.h (Flookup_key): Remove decl.
19503 * process.c (Fget_process): New forward static decl.
19504 (Fprocess_datagram_address): Mark as internal.
19505 * syntax.c (Fsyntax_table_p): New forward static decl.
19506 (skip_chars): Remove duplicate decl.
19507 * textprop.c (Fprevious_property_change): New forward static decl.
19508 * window.c (Fset_window_fringes, Fset_window_scroll_bars):
19509 Now internal.
19510 (Fset_window_margins, Fset_window_vscroll): New forward static decls.
19511 * window.h (Fset_window_vscroll, Fset_window_margins): Remove decls.
19512
19513 * editfns.c (Fformat): Remove unreachable code.
19514
19515 2011-04-14 Andreas Schwab <schwab@linux-m68k.org>
19516
19517 * fileio.c (Finsert_file_contents): Fix typo in 2005-05-13
19518 change. (Bug#8496)
19519
19520 2011-04-13 Eli Zaretskii <eliz@gnu.org>
19521
19522 * xdisp.c (handle_invisible_prop): Don't call bidi_paragraph_init
19523 when at ZV. (Bug#8487)
19524
19525 2011-04-12 Andreas Schwab <schwab@linux-m68k.org>
19526
19527 * charset.c (Fclear_charset_maps): Use xfree instead of free.
19528 (Bug#8437)
19529 * keyboard.c (parse_tool_bar_item): Likewise.
19530 * sound.c (sound_cleanup, alsa_close): Likewise.
19531 * termcap.c (tgetent): Likewise.
19532 * xfns.c (x_default_font_parameter): Likewise.
19533 * xsettings.c (read_and_apply_settings): Likewise.
19534
19535 * alloc.c (overrun_check_malloc, overrun_check_realloc)
19536 (overrun_check_free): Protoize.
19537
19538 2011-04-12 Paul Eggert <eggert@cs.ucla.edu>
19539
19540 * sysdep.c (emacs_read, emacs_write): Check for negative sizes
19541 since callers should never pass a negative size.
19542 Change the signature to match that of plain 'read' and 'write'; see
19543 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00397.html>.
19544 * lisp.h: Update prototypes of emacs_write and emacs_read.
19545
19546 2011-04-11 Eli Zaretskii <eliz@gnu.org>
19547
19548 * xdisp.c (redisplay_window): Don't try to determine the character
19549 position of the scroll margin if the window start point w->startp
19550 is outside the buffer's accessible region. (Bug#8468)
19551
19552 2011-04-10 Eli Zaretskii <eliz@gnu.org>
19553
19554 Fix write-region and its subroutines for buffers > 2GB.
19555 * fileio.c (a_write, e_write): Modify declaration of arguments and
19556 local variables to support buffers larger than 2GB.
19557 (Fcopy_file): Use EMACS_INT for return value of emacs_read.
19558
19559 * sysdep.c (emacs_write, emacs_read): Use ssize_t for last
19560 argument, local variables, and return value.
19561
19562 * lisp.h: Update prototypes of emacs_write and emacs_read.
19563
19564 * sound.c (vox_write): Use ssize_t for return value of emacs_write.
19565
19566 2011-04-10 Paul Eggert <eggert@cs.ucla.edu>
19567
19568 * xdisp.c (vmessage): Use memchr, not strnlen, which some hosts lack.
19569
19570 Fix more problems found by GCC 4.6.0's static checks.
19571
19572 * xdisp.c (vmessage): Use a better test for character truncation.
19573
19574 * charset.c (load_charset_map): <, not <=, for optimization,
19575 and to avoid potential problems with integer overflow.
19576 * chartab.c (sub_char_table_set_range, char_table_set_range): Likewise.
19577 * casetab.c (set_identity, shuffle): Likewise.
19578 * editfns.c (Fformat): Likewise.
19579 * syntax.c (skip_chars): Likewise.
19580
19581 * xmenu.c (set_frame_menubar): Allocate smaller local vectors.
19582 This also lets GCC 4.6.0 generate slightly better loop code.
19583
19584 * callint.c (Fcall_interactively): <, not <=, for optimization.
19585 (Fcall_interactively): Count the number of arguments produced,
19586 not the number of arguments given. This is simpler and lets GCC
19587 4.6.0 generate slightly better code.
19588
19589 * ftfont.c: Distingish more carefully between FcChar8 and char.
19590 The previous code passed unsigned char * to a functions like
19591 strlen and xstrcasecmp that expect char *, which does not
19592 conform to the C standard.
19593 (get_adstyle_property, ftfont_pattern_entity): Use FcChar8 for
19594 arguments to FcPatternGetString, and explicitly cast FcChar8 * to
19595 char * when the C standard requires it.
19596
19597 * keyboard.c (read_char): Remove unused var.
19598
19599 * eval.c: Port to Windows vsnprintf (Bug#8435).
19600 Include <limits.h>.
19601 (SIZE_MAX): Define if the headers do not.
19602 (verror): Do not give up if vsnprintf returns a negative count.
19603 Instead, grow the buffer. This ports to Windows vsnprintf, which
19604 does not conform to C99. Problem reported by Eli Zaretskii.
19605 Also, simplify the allocation scheme, by avoiding the need for
19606 calling realloc, and removing the ALLOCATED variable.
19607
19608 * eval.c (verror): Initial buffer size is 4000 (not 200) bytes.
19609
19610 Remove invocations of doprnt, as Emacs now uses vsnprintf.
19611 But keep the doprint source code for now, as we might revamp it
19612 and use it again (Bug#8435).
19613 * lisp.h (doprnt): Remove.
19614 * Makefile.in (base_obj): Remove doprnt.o.
19615 * deps.mk (doprnt.o): Remove.
19616
19617 error: Print 32- and 64-bit integers portably (Bug#8435).
19618 Without this change, on typical 64-bit hosts error ("...%d...", N)
19619 was used to print both 32- and 64-bit integers N, which relied on
19620 undefined behavior.
19621 * lisp.h, m/amdx86-64.h, m/ia64.h, m/ibms390x.h (pEd): New macro.
19622 * lisp.h (error, verror): Mark as printf-like functions.
19623 * eval.c (verror): Use vsnprintf, not doprnt, to do the real work.
19624 Report overflow in size calculations when allocating printf buffer.
19625 Do not truncate output string at its first null byte.
19626 * xdisp.c (vmessage): Use vsnprintf, not doprnt, to do the real work.
19627 Truncate the output at a character boundary, since vsnprintf does not
19628 do that.
19629 * charset.c (check_iso_charset_parameter): Convert internal
19630 character to string before calling 'error', since %c now has the
19631 printf meaning.
19632 * coding.c (Fdecode_sjis_char, Fdecode_big5_char): Avoid int
19633 overflow when computing char to be passed to 'error'. Do not
19634 pass Lisp_Object to 'error'; pass the integer instead.
19635 * nsfns.m (Fns_do_applescript): Use int, not long, since it's
19636 formatted with plain %d.
19637
19638 * eval.c (internal_lisp_condition_case): Don't pass spurious arg.
19639
19640 * keyboard.c (access_keymap_keyremap): Print func name, not garbage.
19641
19642 * coding.c (Fdecode_sjis_char): Don't assume CODE fits in int.
19643
19644 * xterm.c (x_catch_errors): Remove duplicate declaration.
19645
19646 * term.c (maybe_fatal): Mark its 3rd arg as a printf format, too.
19647
19648 * xdisp.c, lisp.h (message_nolog): Remove; unused.
19649
19650 2011-04-10 Jim Meyering <meyering@redhat.com>
19651
19652 use ssize_t and size_t for read- and write-like emacs_gnutls_* functions
19653 * gnutls.c (emacs_gnutls_read): Adjust signature to be more read-like:
19654 return ssize_t not "int", and use size_t as the buffer length.
19655 (emacs_gnutls_write): Likewise, and make the buffer pointer "const".
19656 * gnutls.h: Update declarations.
19657 * process.c (read_process_output): Use ssize_t, to match.
19658 (send_process): Likewise.
19659
19660 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
19661
19662 * image.c (Fimagemagick_types): Doc fix, and comment cleanup.
19663
19664 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
19665
19666 * ftfont.c (get_adstyle_property, ftfont_pattern_entity):
19667 Use unsigned char, to match FcChar8 type definition.
19668
19669 * xterm.c (handle_one_xevent):
19670 * xmenu.c (create_and_show_popup_menu):
19671 * xselect.c (x_decline_selection_request)
19672 (x_reply_selection_request): Avoid type-punned deref of X events.
19673
19674 2011-04-09 Eli Zaretskii <eliz@gnu.org>
19675
19676 Fix some uses of `int' instead of EMACS_INT.
19677 * search.c (string_match_1, fast_string_match)
19678 (fast_c_string_match_ignore_case, fast_string_match_ignore_case)
19679 (scan_buffer, find_next_newline_no_quit)
19680 (find_before_next_newline, search_command, Freplace_match)
19681 (Fmatch_data): Make some `int' variables be EMACS_INT.
19682
19683 * xdisp.c (display_count_lines): 3rd argument and return value now
19684 EMACS_INT. All callers changed.
19685 (pint2hrstr): Last argument is now EMACS_INT.
19686
19687 * coding.c (detect_coding_utf_8, detect_coding_emacs_mule)
19688 (detect_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
19689 (detect_coding_ccl, detect_coding_charset, decode_coding_utf_8)
19690 (decode_coding_utf_16, decode_coding_emacs_mule)
19691 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
19692 (decode_coding_ccl, decode_coding_charset)
19693 <consumed_chars, consumed_chars_base>: Declare EMACS_INT.
19694 (decode_coding_iso_2022, decode_coding_emacs_mule)
19695 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
19696 <char_offset, last_offset>: Declare EMACS_INT.
19697 (encode_coding_utf_8, encode_coding_utf_16)
19698 (encode_coding_emacs_mule, encode_invocation_designation)
19699 (encode_designation_at_bol, encode_coding_iso_2022)
19700 (encode_coding_sjis, encode_coding_big5, encode_coding_ccl)
19701 (encode_coding_raw_text, encode_coding_charset) <produced_chars>:
19702 Declare EMACS_INT.
19703 (ASSURE_DESTINATION): Declare more_bytes EMACS_INT.
19704 (encode_invocation_designation): Last argument P_NCHARS is now
19705 EMACS_INT.
19706 (decode_eol): Declare pos_byte, pos, and pos_end EMACS_INT.
19707 (produce_chars): from_nchars and to_nchars are now EMACS_INT.
19708
19709 * coding.h (struct coding_system) <head_ascii>: Declare EMACS_INT.
19710 All users changed.
19711
19712 * ccl.c (Fccl_execute_on_string): Declare some variables
19713 EMACS_INT.
19714
19715 2011-04-08 Samuel Thibault <sthibault@debian.org> (tiny change)
19716
19717 * term.c (init_tty): Fix incorrect ifdef placement (Bug#8450).
19718
19719 2011-03-19 Christoph Scholtes <cschol2112@googlemail.com>
19720
19721 * process.c (Fformat_network_address): Doc fix.
19722
19723 2011-04-08 T.V. Raman <tv.raman.tv@gmail.com> (tiny change)
19724
19725 * xml.c (parse_region): Avoid creating spurious whitespace nodes.
19726
19727 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
19728
19729 * keyboard.c (read_char): Call Lisp function help-form-show,
19730 instead of using internal_with_output_to_temp_buffer.
19731 (Qhelp_form_show): New var.
19732 (syms_of_keyboard): Use DEFSYM macro.
19733
19734 * print.c (internal_with_output_to_temp_buffer): Function deleted.
19735
19736 * lisp.h (internal_with_output_to_temp_buffer): Remove prototype.
19737
19738 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
19739
19740 * process.c (Flist_processes): Remove to Lisp.
19741 (list_processes_1): Delete.
19742
19743 2011-04-06 Eli Zaretskii <eliz@gnu.org>
19744
19745 * msdos.c (careadlinkat, careadlinkatcwd): MS-DOS replacements.
19746
19747 * w32.c (careadlinkat, careadlinkatcwd): New always-fail stubs.
19748
19749 2011-04-06 Paul Eggert <eggert@cs.ucla.edu>
19750
19751 Fix more problems found by GCC 4.6.0's static checks.
19752
19753 * xmenu.c (Fx_popup_dialog): Don't assume string is free of formats.
19754
19755 * menu.c (Fx_popup_menu): Don't assume error_name lacks printf formats.
19756
19757 * lisp.h (message, message_nolog, fatal): Mark as printf-like.
19758
19759 * xdisp.c (vmessage): Mark as a printf-like function.
19760
19761 * term.c (vfatal, maybe_fatal): Mark as printf-like functions.
19762
19763 * sound.c (sound_warning): Don't crash if arg contains a printf format.
19764
19765 * image.c (tiff_error_handler, tiff_warning_handler): Mark as
19766 printf-like functions.
19767 (tiff_load): Add casts to remove these marks before passing them
19768 to system-supplied API.
19769
19770 * eval.c (Fsignal): Remove excess argument to 'fatal'.
19771
19772 * coding.c (EMIT_ONE_BYTE, EMIT_TWO_BYTES): Use unsigned, not int.
19773 This avoids several warnings with gcc -Wstrict-overflow.
19774 (DECODE_COMPOSITION_RULE): If the rule is invalid, goto invalid_code
19775 directly, rather than having caller test rule sign. This avoids
19776 some unnecessary tests.
19777 * composite.h (COMPOSITION_ENCODE_RULE_VALID): New macro.
19778 (COMPOSITION_ENCODE_RULE): Arguments now must be valid. This
19779 affects only one use, in DECODE_COMPOSITION_RULE, which is changed.
19780
19781 * xfont.c (xfont_text_extents): Remove var that was set but not used.
19782 (xfont_open): Avoid unnecessary tests.
19783
19784 * composite.c (composition_gstring_put_cache): Use unsigned integer.
19785
19786 * composite.h, composite.c (composition_gstring_put_cache):
19787 Use EMACS_INT, not int, for length.
19788
19789 * composite.h (COMPOSITION_DECODE_REFS): New macro,
19790 breaking out part of COMPOSITION_DECODE_RULE.
19791 (COMPOSITION_DECODE_RULE): Use it.
19792 * composite.c (get_composition_id): Remove unused local vars,
19793 by using the new macro.
19794
19795 * textprop.c (set_text_properties_1): Change while to do-while,
19796 since the condition is always true at first.
19797
19798 * intervals.c (graft_intervals_into_buffer): Mark var as used.
19799 (interval_deletion_adjustment): Return unsigned value.
19800 All uses changed.
19801
19802 * process.c (list_processes_1, create_pty, read_process_output):
19803 (exec_sentinel): Remove vars that were set but not used.
19804 (create_pty): Remove unnecessary "volatile"s.
19805 (Fnetwork_interface_info): Avoid possibility of int overflow.
19806 (read_process_output): Do adaptive read buffering even if carryover.
19807 (read_process_output): Simplify nbytes computation if buffered.
19808
19809 * bytecode.c (exec_byte_code): Rename local to avoid shadowing.
19810
19811 * syntax.c (scan_words): Remove var that was set but not used.
19812 (update_syntax_table): Use unsigned instead of int.
19813
19814 * lread.c (lisp_file_lexically_bound_p): Use ints rather than endptrs.
19815 (lisp_file_lexically_bound_p, read1): Use unsigned instead of int.
19816 (safe_to_load_p): Make the end-of-loop test the inverse of the in-loop.
19817
19818 * print.c (print_error_message): Avoid int overflow.
19819
19820 * font.c (font_list_entities): Redo for clarity,
19821 so that reader need not know FONT_DPI_INDEX + 1 == FONT_SPACING_INDEX.
19822
19823 * font.c (font_find_for_lface, Ffont_get_glyphs): Remove unused vars.
19824 (font_score): Avoid potential overflow in diff calculation.
19825
19826 * fns.c (substring_both): Remove var that is set but not used.
19827 (sxhash): Redo loop for clarity and to avoid wraparound warning.
19828
19829 * eval.c (funcall_lambda): Rename local to avoid shadowing.
19830
19831 * alloc.c (mark_object_loop_halt, mark_object): Use size_t, not int.
19832 Otherwise, GCC 4.6.0 optimizes the loop check away since the check
19833 can always succeed if overflow has undefined behavior.
19834
19835 * search.c (boyer_moore, wordify): Remove vars set but not used.
19836 (wordify): Omit three unnecessary tests.
19837
19838 * indent.c (MULTIBYTE_BYTES_WIDTH): Don't compute wide_column.
19839 All callers changed. This avoids the need for an unused var.
19840
19841 * casefiddle.c (casify_region): Remove var that is set but not used.
19842
19843 * dired.c (file_name_completion): Remove var that is set but not used.
19844
19845 * fileio.c (Finsert_file_contents): Make EOF condition clearer.
19846
19847 * fileio.c (Finsert_file_contents): Avoid signed integer overflow.
19848 (Finsert_file_contents): Remove unnecessary code checking fd.
19849
19850 * minibuf.c (read_minibuf_noninteractive): Use size_t for sizes.
19851 Check for integer overflow on size calculations.
19852
19853 * buffer.c (Fprevious_overlay_change): Remove var that is set
19854 but not used.
19855
19856 * keyboard.c (menu_bar_items, read_char_minibuf_menu_prompt):
19857 Remove vars that are set but not used.
19858 (timer_check_2): Don't assume timer-list and idle-timer-list are lists.
19859 (timer_check_2): Mark vars as initialized.
19860
19861 * gtkutil.c (xg_get_file_with_chooser): Mark var as initialized.
19862
19863 * image.c (lookup_image): Remove var that is set but not used.
19864 (xbm_load): Use parse_p, for gcc -Werror=unused-but-set-variable.
19865
19866 * fontset.c (Finternal_char_font, Ffontset_info): Remove vars
19867 that are set but not used.
19868
19869 * xfns.c (make_invisible_cursor): Don't return garbage
19870 if XCreateBitmapFromData fails (Bug#8410).
19871
19872 * xselect.c (x_get_local_selection, x_handle_property_notify):
19873 Remove vars that are set but not used.
19874
19875 * xfns.c (x_create_tip_frame): Remove var that is set but not used.
19876 (make_invisible_cursor): Initialize a possibly-uninitialized variable.
19877
19878 * xterm.c (x_scroll_bar_to_input_event) [!USE_GTK]:
19879 Remove var that is set but not used.
19880 (scroll_bar_windows_size): Now size_t, not int.
19881 (x_send_scroll_bar_event): Use size_t, not int, for sizes.
19882 Check for overflow.
19883
19884 * xfaces.c (realize_named_face): Remove vars that are set but not used.
19885 (map_tty_color) [!defined MSDOS]: Likewise.
19886
19887 * term.c (tty_write_glyphs): Use size_t; this avoids overflow warning.
19888
19889 * coding.c: Remove vars that are set but not used.
19890 (DECODE_COMPOSITION_RULE): Remove 2nd arg, which is unused.
19891 All callers changed.
19892 (decode_coding_utf_8, decode_coding_utf_16 decode_coding_emacs_mule):
19893 (decode_coding_iso_2022, encode_coding_sjis, encode_coding_big5):
19894 (decode_coding_charset): Remove vars that are set but not used.
19895
19896 * bytecode.c (Fbyte_code) [!defined BYTE_CODE_SAFE]: Remove var
19897 that is set but not used.
19898
19899 * print.c (print_object): Remove var that is set but not used.
19900
19901 Replace 2 copies of readlink code with 1 gnulib version (Bug#8401).
19902 The gnulib version avoids calling malloc in the usual case,
19903 and on 64-bit hosts doesn't have some arbitrary 32-bit limits.
19904 * fileio.c (Ffile_symlink_p): Use emacs_readlink.
19905 * filelock.c (current_lock_owner): Likewise.
19906 * lisp.h (READLINK_BUFSIZE, emacs_readlink): New function.
19907 * sysdep.c: Include allocator.h, careadlinkat.h.
19908 (emacs_no_realloc_allocator): New static constant.
19909 (emacs_readlink): New function.
19910 * deps.mk (sysdep.o): Depend on ../lib/allocator.h and on
19911 ../lib/careadlinkat.h.
19912
19913 2011-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
19914
19915 * keyboard.c (safe_run_hook_funcall): Fix last change (don't stop at the
19916 first non-nil return value).
19917
19918 2011-04-03 Jan Djärv <jan.h.d@swipnet.se>
19919
19920 * nsterm.m (ns_update_auto_hide_menu_bar): Define MAC_OS_X_VERSION_10_6
19921 if not defined (Bug#8403).
19922
19923 2011-04-02 Juanma Barranquero <lekktu@gmail.com>
19924
19925 * xdisp.c (display_count_lines): Remove parameter `start',
19926 unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
19927 (get_char_face_and_encoding): Remove parameter `multibyte_p',
19928 unused since 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
19929 (fill_stretch_glyph_string): Remove parameters `row' and `area',
19930 unused at least since Kim's GUI unification at 2003-03-16T20:45:46Z!storm@cua.dk
19931 and thereabouts. All callers changed.
19932 (get_per_char_metric): Remove parameter `f', unused since
19933 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
19934
19935 2011-04-02 Jim Meyering <meyering@redhat.com>
19936
19937 do not dereference NULL upon failed strdup
19938 * nsfont.m (ns_descriptor_to_entity): Use xstrdup, not strdup.
19939 (ns_get_family): Likewise.
19940
19941 2011-04-02 Juanma Barranquero <lekktu@gmail.com>
19942
19943 * eval.c (unwind_to_catch) [DEBUG_GCPRO]: Remove redundant assignment.
19944
19945 2011-04-02 Jan Djärv <jan.h.d@swipnet.se>
19946
19947 * nsterm.m (ns_update_auto_hide_menu_bar): Only for OSX 10.6 or
19948 later (Bug#8403).
19949
19950 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
19951
19952 Add lexical binding.
19953
19954 * window.c (Ftemp_output_buffer_show): New fun.
19955 (Fsave_window_excursion):
19956 * print.c (Fwith_output_to_temp_buffer): Move to subr.el.
19957
19958 * lread.c (lisp_file_lexically_bound_p): New function.
19959 (Fload): Bind Qlexical_binding.
19960 (readevalloop): Remove `evalfun' arg.
19961 Bind Qinternal_interpreter_environment.
19962 (Feval_buffer): Bind Qlexical_binding.
19963 (defvar_int, defvar_bool, defvar_lisp_nopro, defvar_kboard):
19964 Mark as dynamic.
19965 (syms_of_lread): Declare `lexical-binding'.
19966
19967 * lisp.h (struct Lisp_Symbol): New field `declared_special'.
19968
19969 * keyboard.c (eval_dyn): New fun.
19970 (menu_item_eval_property): Use it.
19971
19972 * image.c (parse_image_spec): Use Ffunctionp.
19973
19974 * fns.c (concat, mapcar1): Accept byte-code-functions.
19975
19976 * eval.c (Fsetq): Handle lexical vars.
19977 (Fdefun, Fdefmacro, Ffunction): Make closures when needed.
19978 (Fdefconst, Fdefvaralias, Fdefvar): Mark as dynamic.
19979 (FletX, Flet): Obey lexical binding.
19980 (Fcommandp): Handle closures.
19981 (Feval): New `lexical' arg.
19982 (eval_sub): New function extracted from Feval. Use it almost
19983 everywhere where Feval was used. Look up vars in lexical env.
19984 Handle closures.
19985 (Ffunctionp): Move from subr.el.
19986 (Ffuncall): Handle closures.
19987 (apply_lambda): Remove `eval_flags'.
19988 (funcall_lambda): Handle closures and new byte-code-functions.
19989 (Fspecial_variable_p): New function.
19990 (syms_of_eval): Initialize the Vinternal_interpreter_environment var,
19991 but without exporting it to Lisp.
19992
19993 * doc.c (Fdocumentation, store_function_docstring):
19994 * data.c (Finteractive_form): Handle closures.
19995
19996 * callint.c (Fcall_interactively): Preserve lexical-binding mode for
19997 interactive spec.
19998
19999 * bytecode.c (Bstack_ref, Bstack_set, Bstack_set2, BdiscardN):
20000 New byte-codes.
20001 (exec_byte_code): New function extracted from Fbyte_code to handle new
20002 calling convention for byte-code-functions. Add new byte-codes.
20003
20004 * buffer.c (defvar_per_buffer): Set new `declared_special' field.
20005
20006 * alloc.c (Fmake_symbol): Init new `declared_special' field.
20007
20008 2011-03-31 Juanma Barranquero <lekktu@gmail.com>
20009
20010 * xdisp.c (redisplay_internal): Fix prototype.
20011
20012 2011-03-31 Eli Zaretskii <eliz@gnu.org>
20013
20014 * xdisp.c (SCROLL_LIMIT): New macro.
20015 (try_scrolling): Use it when setting scroll_limit.
20016 Limit scrolling to 100 screen lines.
20017 (redisplay_window): Even when falling back on "recentering",
20018 position point in the window according to scroll-conservatively,
20019 scroll-margin, and scroll-*-aggressively variables. (Bug#6671)
20020
20021 (try_scrolling): When point is above the window, allow searching
20022 as far as scroll_max, or one screenful, to compute vertical
20023 distance from PT to the scroll margin position. This prevents
20024 try_scrolling from unnecessarily failing when
20025 scroll-conservatively is set to a value slightly larger than the
20026 window height. Clean up the case of PT below the margin at bottom
20027 of window: scroll_max can no longer be INT_MAX. When aggressive
20028 scrolling is in use, don't let point enter the opposite scroll
20029 margin as result of the scroll.
20030 (syms_of_xdisp) <scroll-conservatively>: Document the
20031 threshold of 100 lines for never-recentering scrolling.
20032
20033 2011-03-31 Juanma Barranquero <lekktu@gmail.com>
20034
20035 * dispextern.h (move_it_by_lines):
20036 * xdisp.c (move_it_by_lines): Remove parameter `need_y_p', unused
20037 since 2000-12-29T14:24:09Z!gerd@gnu.org. All callers changed.
20038 (message_log_check_duplicate): Remove parameters `prev_bol' and
20039 `this_bol', unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
20040 (redisplay_internal): Remove parameter `preserve_echo_area',
20041 unused since 1999-07-21T21:43:52Z!gerd@gnu.org. All callers changed.
20042
20043 * indent.c (Fvertical_motion):
20044 * window.c (window_scroll_pixel_based, Frecenter):
20045 Don't pass `need_y_p' to `move_it_by_lines'.
20046
20047 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
20048
20049 * eval.c (struct backtrace): Don't cheat with negative numbers, but do
20050 steal a few bits to be more compact.
20051 (interactive_p, Fbacktrace, Fbacktrace_frame, mark_backtrace):
20052 Remove unneeded casts.
20053
20054 * bytecode.c (Fbyte_code): CAR and CDR can GC.
20055
20056 2011-03-30 Zachary Kanfer <zkanfer@gmail.com> (tiny change)
20057
20058 * keyboard.c (Fexecute_extended_command): Do log the "suggest key
20059 binding" message (bug#7967).
20060
20061 2011-03-30 Paul Eggert <eggert@cs.ucla.edu>
20062
20063 Fix more problems found by GCC 4.6.0's static checks.
20064
20065 * unexelf.c (unexec) [! (defined _SYSTYPE_SYSV || defined __sgi)]:
20066 Remove unused local var.
20067
20068 * editfns.c (Fmessage_box): Remove unused local var.
20069
20070 * xdisp.c (try_window_reusing_current_matrix, x_produce_glyphs):
20071 (note_mode_line_or_margin_highlight, note_mouse_highlight):
20072 Omit unused local vars.
20073 * window.c (shrink_windows): Omit unused local var.
20074 * menu.c (digest_single_submenu): Omit unused local var.
20075 * dispnew.c (update_window) [PERIODIC_PREEMPTION_CHECKING]:
20076 Omit unused local var.
20077
20078 * keyboard.c (parse_modifiers_uncached, parse_modifiers):
20079 Don't assume string length fits in int.
20080 (keyremap_step, read_key_sequence): Use size_t for sizes.
20081 (read_key_sequence): Don't check last_real_key_start redundantly.
20082
20083 * callproc.c (Fcall_process, Fcall_process_region): Use SAFE_ALLOCA
20084 instead of alloca (Bug#8344).
20085
20086 * eval.c (Fbacktrace): Don't assume nargs fits in int.
20087 (Fbacktrace_frame): Don't assume nframes fits in int.
20088
20089 * syntax.c (scan_sexps_forward): Avoid pointer wraparound.
20090
20091 * xterm.c (x_make_frame_visible, same_x_server): Redo to avoid overflow
20092 concerns.
20093
20094 * term.c (produce_glyphless_glyph): Remove unnecessary test.
20095
20096 * cm.c (calccost): Turn while-do into do-while, for clarity.
20097
20098 * keyboard.c (syms_of_keyboard): Use the same style as later
20099 in this function when indexing through an array. This also
20100 works around GCC bug 48267.
20101
20102 * image.c (tiff_load): Fix off-by-one image count (Bug#8336).
20103
20104 * xselect.c (x_check_property_data): Return correct size (Bug#8335).
20105
20106 * chartab.c (sub_char_table_ref_and_range): Redo for slight
20107 efficiency gain, and to bypass a gcc -Wstrict-overflow warning.
20108
20109 * keyboard.c, keyboard.h (num_input_events): Now size_t.
20110 This avoids undefined behavior on integer overflow, and is a bit
20111 more convenient anyway since it is compared to a size_t variable.
20112
20113 Variadic C functions now count arguments with size_t, not int.
20114 This avoids an unnecessary limitation on 64-bit machines, which
20115 caused (substring ...) to crash on large vectors (Bug#8344).
20116 * lisp.h (struct Lisp_Subr.function.aMANY): Now takes size_t, not int.
20117 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call): Likewise.
20118 All variadic functions and their callers changed accordingly.
20119 (struct gcpro.nvars): Now size_t, not int. All uses changed.
20120 * data.c (arith_driver, float_arith_driver): Likewise.
20121 * editfns.c (general_insert_function): Likewise.
20122 * eval.c (struct backtrace.nargs, interactive_p)
20123 (internal_condition_case_n, run_hook_with_args, apply_lambda)
20124 (funcall_lambda, mark_backtrace): Likewise.
20125 * fns.c (concat): Likewise.
20126 * frame.c (x_set_frame_parameters): Likewise.
20127 * fns.c (get_key_arg): Now accepts and returns size_t, and returns
20128 0 if not found, not -1. All callers changed.
20129
20130 * alloc.c (garbage_collect): Don't assume stack size fits in int.
20131 (stack_copy_size): Now size_t, not int.
20132 (stack_copy, stack_copy_size): Define only if MAX_SAVE_STACK > 0.
20133
20134 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
20135
20136 * coding.c (encode_designation_at_bol): Remove parameter `charbuf_end',
20137 unused since 2002-03-01T01:17:24Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
20138 All callers changed.
20139
20140 * lisp.h (multibyte_char_to_unibyte):
20141 * character.c (multibyte_char_to_unibyte): Remove parameter `rev_tbl',
20142 unused since 2002-03-01T01:16:34Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
20143 * character.h (CHAR_TO_BYTE8):
20144 * cmds.c (internal_self_insert):
20145 * editfns.c (general_insert_function):
20146 * keymap.c (push_key_description):
20147 * search.c (Freplace_match):
20148 * xdisp.c (message_dolog, set_message_1): All callers changed.
20149
20150 2011-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
20151
20152 * keyboard.c (safe_run_hook_funcall): New function.
20153 (safe_run_hooks_1, safe_run_hooks_error, safe_run_hooks): On error,
20154 don't set the hook to nil, but remove the offending function instead.
20155 (Qcommand_hook_internal): Remove, unused.
20156 (syms_of_keyboard): Don't initialize Qcommand_hook_internal nor define
20157 Vcommand_hook_internal.
20158
20159 * eval.c (enum run_hooks_condition): Remove.
20160 (funcall_nil, funcall_not): New functions.
20161 (run_hook_with_args): Call each function through a `funcall' argument.
20162 Remove `cond' argument, now redundant.
20163 (Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success)
20164 (Frun_hook_with_args_until_failure): Adjust accordingly.
20165 (run_hook_wrapped_funcall, Frun_hook_wrapped): New functions.
20166
20167 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
20168
20169 * dispextern.h (string_buffer_position): Remove declaration.
20170
20171 * print.c (strout): Remove parameter `multibyte', unused since
20172 1999-08-21T19:30:21Z!gerd@gnu.org. All callers changed.
20173
20174 * search.c (boyer_moore): Remove parameters `len', `pos' and `lim',
20175 never used since function introduction in 1998-02-08T21:33:56Z!rms@gnu.org.
20176 All callers changed.
20177
20178 * w32.c (_wsa_errlist): Use braces for struct initializers.
20179
20180 * xdisp.c (string_buffer_position_lim): Remove parameter `w',
20181 never used since function introduction in 2001-03-09T18:41:50Z!gerd@gnu.org.
20182 All callers changed.
20183 (string_buffer_position): Likewise. Also, make static (it's never
20184 used outside xdisp.c).
20185 (cursor_row_p): Remove parameter `w', unused since
20186 2000-10-17T16:08:57Z!gerd@gnu.org. All callers changed.
20187 (decode_mode_spec): Remove parameter `precision', introduced during
20188 Gerd Moellmann's rewrite at 1999-07-21T21:43:52Z!gerd@gnu.org, but never used.
20189 All callers changed.
20190
20191 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
20192
20193 * nsterm.m (syms_of_nsterm): Use doc: for ns-auto-hide-menu-bar.
20194
20195 2011-03-27 Anders Lindgren <andlind@gmail.com>
20196
20197 * nsterm.m (ns_menu_bar_is_hidden): New variable.
20198 (ns_constrain_all_frames, ns_menu_bar_should_be_hidden)
20199 (ns_update_auto_hide_menu_bar): New functions.
20200 (ns_update_begin): Call ns_update_auto_hide_menu_bar.
20201 (applicationDidBecomeActive): Call ns_update_auto_hide_menu_bar and
20202 ns_constrain_all_frames.
20203 (constrainFrameRect): Return at once if ns_menu_bar_should_be_hidden.
20204 (syms_of_nsterm): DEFVAR ns-auto-hide-menu-bar, init to Qnil.
20205
20206 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
20207
20208 * nsmenu.m (runDialogAt): Remove argument to timer_check.
20209
20210 2011-03-27 Glenn Morris <rgm@gnu.org>
20211
20212 * syssignal.h: Replace RETSIGTYPE with void.
20213 * atimer.c, data.c, dispnew.c, emacs.c, floatfns.c, keyboard.c:
20214 * keyboard.h, lisp.h, process.c, sysdep.c, xterm.c:
20215 Replace SIGTYPE with void everywhere.
20216 * s/usg5-4-common.h (SIGTYPE): Remove definition.
20217 * s/template.h (SIGTYPE): Remove commented out definition.
20218
20219 2011-03-26 Eli Zaretskii <eliz@gnu.org>
20220
20221 * xdisp.c (redisplay_window): Don't check buffer's clip_changed
20222 flag as a prerequisite for invoking try_scrolling. (Bug#6671)
20223
20224 2011-03-26 Juanma Barranquero <lekktu@gmail.com>
20225
20226 * w32.c (read_unc_volume): Use parameter `henum', instead of
20227 global variable `wget_enum_handle'.
20228
20229 * keymap.c (describe_vector): Remove parameters `indices' and
20230 `char_table_depth', unused since 2002-03-01T01:43:26Z!handa@m17n.org.
20231 (describe_map, Fdescribe_vector): Adjust calls to `describe_vector'.
20232
20233 * keyboard.h (timer_check, show_help_echo): Remove unused parameters.
20234
20235 * keyboard.c (timer_check): Remove parameter `do_it_now',
20236 unused since 1996-04-12T06:01:29Z!rms@gnu.org.
20237 (show_help_echo): Remove parameter `ok_to_overwrite_keystroke_echo',
20238 unused since 2008-04-19T19:30:53Z!monnier@iro.umontreal.ca.
20239
20240 * keyboard.c (read_char):
20241 * w32menu.c (w32_menu_display_help):
20242 * xmenu.c (show_help_event, menu_help_callback):
20243 Adjust calls to `show_help_echo'.
20244
20245 * gtkutil.c (xg_maybe_add_timer):
20246 * keyboard.c (readable_events):
20247 * process.c (wait_reading_process_output):
20248 * xmenu.c (x_menu_wait_for_event): Adjust calls to `timer_check'.
20249
20250 * insdel.c (adjust_markers_gap_motion):
20251 Remove; no-op since 1998-01-02T21:29:48Z!rms@gnu.org.
20252 (gap_left, gap_right): Don't call it.
20253
20254 2011-03-25 Chong Yidong <cyd@stupidchicken.com>
20255
20256 * xdisp.c (handle_fontified_prop): Discard changes to clip_changed
20257 incurred during fontification.
20258
20259 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
20260
20261 * buffer.c (defvar_per_buffer): Remove unused parameter `doc'.
20262 (DEFVAR_PER_BUFFER): Don't pass it.
20263
20264 * dispnew.c (row_equal_p, add_row_entry): Remove unused parameter `w'.
20265 (scrolling_window): Don't pass it.
20266
20267 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
20268
20269 * dispextern.h (glyph_matric): Use #if GLYPH_DEBUG, not #ifdef.
20270
20271 * fileio.c (check_executable) [DOS_NT]: Remove unused variables `len'
20272 and `suffix'.
20273 (Fset_file_selinux_context) [HAVE_LIBSELINUX]: Move here declaration
20274 of variables specific to SELinux and computation of `encoded_absname'.
20275
20276 * image.c (XPutPixel): Remove unused variable `height'.
20277
20278 * keyboard.c (make_lispy_event): Remove unused variable `hpos'.
20279
20280 * unexw32.c (get_section_info): Remove unused variable `section'.
20281
20282 * w32.c (stat): Remove unused variables `drive_root' and `devtype'.
20283 (system_process_attributes): Remove unused variable `sess'.
20284 (sys_read): Remove unused variable `err'.
20285
20286 * w32fns.c (top): Wrap variables with #if GLYPH_DEBUG, not #ifdef.
20287 (w32_wnd_proc): Remove unused variable `isdead'.
20288 (unwind_create_frame): Use #if GLYPH_DEBUG, not #ifdef.
20289 (Fx_server_max_request_size): Remove unused variable `dpyinfo'.
20290 (x_create_tip_frame): Remove unused variable `tem'.
20291
20292 * w32inevt.c (w32_console_read_socket):
20293 Remove unused variable `no_events'.
20294
20295 * w32term.c (x_draw_composite_glyph_string_foreground):
20296 Remove unused variable `width'.
20297
20298 2011-03-24 Juanma Barranquero <lekktu@gmail.com>
20299
20300 * w32term.c (x_set_glyph_string_clipping):
20301 Don't pass uninitialized region to CombineRgn.
20302
20303 2011-03-23 Juanma Barranquero <lekktu@gmail.com>
20304
20305 * w32fns.c (x_set_menu_bar_lines): Remove unused variable `olines'.
20306 (w32_wnd_proc): Pass NULL to Windows API, not uninitialized buffer.
20307 (Fx_close_connection): Remove unused variable `i'.
20308
20309 * w32font.c (w32font_draw): Return number of glyphs.
20310 (w32font_open_internal): Remove unused variable `i'.
20311 (w32font_driver): Add missing initializer.
20312
20313 * w32menu.c (utf8to16): Remove unused variable `utf16'.
20314 (fill_in_menu): Remove unused variable `items_added'.
20315
20316 * w32term.c (last_mouse_press_frame): Remove static global variable.
20317 (w32_clip_to_row): Remove unused variable `f'.
20318 (x_delete_terminal): Remove unused variable `i'.
20319
20320 * w32uniscribe.c (uniscribe_shape): Remove unused variable `nclusters'.
20321 (NOTHING): Remove unused static global variable.
20322 (uniscribe_check_otf): Remove unused variable `table'.
20323 (uniscribe_font_driver): Add missing initializers.
20324
20325 2011-03-23 Julien Danjou <julien@danjou.info>
20326
20327 * term.c (Fsuspend_tty, Fresume_tty):
20328 * minibuf.c (read_minibuf, run_exit_minibuf_hook):
20329 * window.c (temp_output_buffer_show):
20330 * insdel.c (signal_before_change):
20331 * frame.c (Fhandle_switch_frame):
20332 * fileio.c (Fdo_auto_save):
20333 * emacs.c (Fkill_emacs):
20334 * editfns.c (save_excursion_restore):
20335 * cmds.c (internal_self_insert):
20336 * callint.c (Fcall_interactively):
20337 * buffer.c (Fkill_all_local_variables):
20338 * keyboard.c (Fcommand_execute, Fsuspend_emacs, safe_run_hooks_1):
20339 Use Frun_hooks.
20340 (command_loop_1): Use Frun_hooks. Call safe_run_hooks
20341 unconditionally since it does the check itself.
20342
20343 2011-03-23 Paul Eggert <eggert@cs.ucla.edu>
20344
20345 Fix more problems found by GCC 4.5.2's static checks.
20346
20347 * coding.c (encode_coding_raw_text): Avoid unnecessary test
20348 the first time through the loop, since we know p0 < p1 then.
20349 This also avoids a gcc -Wstrict-overflow warning.
20350
20351 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP): Avoid 'int' overflow
20352 leading to a memory leak, possible in functions like
20353 load_charset_map_from_file that can allocate an unbounded number
20354 of objects (Bug#8318).
20355
20356 * xmenu.c (set_frame_menubar): Use EMACS_UINT, not int, for indexes
20357 that could (at least in theory) be that large.
20358
20359 * xdisp.c (message_log_check_duplicate): Return unsigned long, not int.
20360 This is less likely to overflow, and avoids undefined behavior if
20361 overflow does occur. All callers changed. Use strtoul to scan
20362 for the unsigned long integer.
20363 (pint2hrstr): Simplify and tune code slightly.
20364 This also avoids a (bogus) GCC warning with gcc -Wstrict-overflow.
20365
20366 * scroll.c (do_scrolling): Work around GCC bug 48228.
20367 See <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48228>.
20368
20369 * frame.c (Fmodify_frame_parameters): Simplify loop counter.
20370 This also avoids a warning with gcc -Wstrict-overflow.
20371 (validate_x_resource_name): Simplify count usage.
20372 This also avoids a warning with gcc -Wstrict-overflow.
20373
20374 * fileio.c (Fcopy_file): Report error if fchown or fchmod
20375 fail (Bug#8306).
20376
20377 * emacs.c (Fdaemon_initialized): Do not ignore I/O errors (Bug#8303).
20378
20379 * process.c (Fmake_network_process): Use socklen_t, not int,
20380 where POSIX says socklen_t is required in portable programs.
20381 This fixes a porting bug on hosts like 64-bit HP-UX, where
20382 socklen_t is wider than int (Bug#8277).
20383 (Fmake_network_process, server_accept_connection):
20384 (wait_reading_process_output, read_process_output):
20385 Likewise.
20386
20387 * process.c: Rename or move locals to avoid shadowing.
20388 (list_processes_1, Fmake_network_process):
20389 (read_process_output_error_handler, exec_sentinel_error_handler):
20390 Rename or move locals.
20391 (Fmake_network_process): Define label "retry_connect" only if needed.
20392 (Fnetwork_interface_info): Fix pointer signedness.
20393 (process_send_signal): Add cast to avoid pointer signedness problem.
20394 (FIRST_PROC_DESC, IF_NON_BLOCKING_CONNECT): Remove unused macros.
20395 (create_process): Use 'volatile' to avoid vfork clobbering (Bug#8298).
20396
20397 Make tparam.h and terminfo.c consistent.
20398 * cm.c (tputs, tgoto, BC, UP): Remove extern decls.
20399 Include tparam.h instead, since it declares them.
20400 * cm.h (PC): Remove extern decl; tparam.h now does this.
20401 * deps.mk (cm.o, terminfo.o): Depend on tparam.h.
20402 * terminfo.c: Include tparam.h, to check interfaces.
20403 (tparm): Make 1st arg a const pointer in decl. Put it at top level.
20404 (tparam): Adjust signature to match interface in tparam.h;
20405 this removes some undefined behavior. Check that outstring and len
20406 are zero, which they always are with Emacs.
20407 * tparam.h (PC, BC, UP): New extern decls.
20408
20409 * xftfont.c (xftfont_shape): Now static, and defined only if needed.
20410 (xftfont_open): Rename locals to avoid shadowing.
20411
20412 * ftfont.c (ftfont_resolve_generic_family): Fix pointer signedness.
20413 (ftfont_otf_capability, ftfont_shape): Omit decls if not needed.
20414 (OTF_TAG_SYM): Omit macro if not needed.
20415 (ftfont_list): Remove unused local.
20416 (get_adstyle_property, ftfont_pattern_entity):
20417 (ftfont_lookup_cache, ftfont_open, ftfont_anchor_point):
20418 Rename locals to avoid shadowing.
20419
20420 * xfont.c (xfont_list_family): Mark var as initialized.
20421
20422 * xml.c (make_dom): Now static.
20423
20424 * composite.c (composition_compute_stop_pos): Rename local to
20425 avoid shadowing.
20426 (composition_reseat_it): Remove unused locals.
20427 (find_automatic_composition, composition_adjust_point): Likewise.
20428 (composition_update_it): Mark var as initialized.
20429 (find_automatic_composition): Mark vars as initialized,
20430 with a FIXME (Bug#8290).
20431
20432 character.h: Rename locals to avoid shadowing.
20433 * character.h (PREV_CHAR_BOUNDARY, FETCH_STRING_CHAR_ADVANCE):
20434 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE, FETCH_CHAR_ADVANCE):
20435 (FETCH_CHAR_ADVANCE_NO_CHECK, INC_POS, DEC_POS, BUF_INC_POS):
20436 (BUF_DEC_POS): Be more systematic about renaming local temporaries
20437 to avoid shadowing.
20438
20439 * textprop.c (property_change_between_p): Remove; unused.
20440
20441 * intervals.c (interval_start_pos): Now static.
20442
20443 * intervals.h (CHECK_TOTAL_LENGTH): Avoid empty "else".
20444
20445 * atimer.c (start_atimer, append_atimer_lists, set_alarm):
20446 Rename locals to avoid shadowing.
20447
20448 * sound.c (wav_play, au_play, Fplay_sound_internal):
20449 Fix pointer signedness.
20450 (alsa_choose_format): Remove unused local var.
20451 (wav_play): Initialize a variable to 0, to prevent undefined
20452 behavior (Bug#8278).
20453
20454 * region-cache.c (insert_cache_boundary): Redo var to avoid shadowing.
20455
20456 * region-cache.h (pp_cache): New decl, for gcc -Wmissing-prototypes.
20457
20458 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork
20459 clobbering (Bug#8298).
20460 * sysdep.c (sys_subshell): Likewise.
20461 Previously, the sys_subshell 'volatile' was incorrectly IF_LINTted out.
20462
20463 * lisp.h (child_setup): Now NO_RETURN unless DOS_NT.
20464 This should get cleaned up, so that child_setup has the
20465 same signature on all platforms.
20466
20467 * callproc.c (call_process_cleanup): Now static.
20468 (relocate_fd): Rename locals to avoid shadowing.
20469
20470 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
20471
20472 * xterm.c (x_clear_frame): Remove XClearWindow call. This appears
20473 not to be necessary, and produces flickering.
20474
20475 2011-03-20 Glenn Morris <rgm@gnu.org>
20476
20477 * config.in: Remove file.
20478
20479 2011-03-20 Juanma Barranquero <lekktu@gmail.com>
20480
20481 * minibuf.c (Vcompleting_read_function): Don't declare, global variables
20482 are now in src/globals.h.
20483 (syms_of_minibuf): Remove spurious & from previous change.
20484
20485 2011-03-20 Leo Liu <sdl.web@gmail.com>
20486
20487 * minibuf.c (completing-read-function): New variable.
20488 (completing-read-default): Rename from completing-read.
20489 (completing-read): Call completing-read-function.
20490
20491 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
20492
20493 * xfaces.c (Fx_load_color_file):
20494 Read color file from absolute filename (bug#8250).
20495
20496 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
20497
20498 * makefile.w32-in: Update dependencies.
20499
20500 2011-03-17 Eli Zaretskii <eliz@gnu.org>
20501
20502 * makefile.w32-in ($(BLD)/unexw32.$(O)): Depend on $(SRC)/unexec.h.
20503
20504 2011-03-17 Paul Eggert <eggert@cs.ucla.edu>
20505
20506 Fix more problems found by GCC 4.5.2's static checks.
20507
20508 * process.c (make_serial_process_unwind, send_process_trap):
20509 (sigchld_handler): Now static.
20510
20511 * process.c (allocate_pty): Let PTY_ITERATION declare iteration vars.
20512 That way, the code declares only the vars that it needs.
20513 * s/aix4-2.h (PTY_ITERATION): Declare iteration vars.
20514 * s/cygwin.h (PTY_ITERATION): Likewise.
20515 * s/darwin.h (PTY_ITERATION): Likewise.
20516 * s/gnu-linux.h (PTY_ITERATION): Likewise.
20517
20518 * s/irix6-5.h (PTY_OPEN): Declare stb, to loosen coupling.
20519 * process.c (allocate_pty): Don't declare stb unless it's needed.
20520
20521 * bytecode.c (MAYBE_GC): Rewrite so as not to use empty "else".
20522 (CONSTANTLIM): Remove; unused.
20523 (METER_CODE, Bscan_buffer, Bread_char, Bset_mark):
20524 Define only if needed.
20525
20526 * unexelf.c (unexec): Name an expression,
20527 to avoid gcc -Wbad-function-cast warning.
20528 Use a different way to cause a compilation error if anyone uses
20529 n rather than nn, a way that does not involve shadowing.
20530 (ELF_BSS_SECTION_NAME, OLD_PROGRAM_H): Remove; unused.
20531
20532 * deps.mk (unexalpha.o): Remove; unused.
20533
20534 New file unexec.h, the (simple) interface for unexec (Bug#8267).
20535 * unexec.h: New file.
20536 * deps.mk (emacs.o, unexaix.o, unexcw.o, unexcoff.o, unexelf.o):
20537 (unexhp9k800.o, unexmacosx.o, unexsol.o, unexw32.o):
20538 Depend on unexec.h.
20539 * emacs.c [!defined CANNOT_DUMP]: Include unexec.h.
20540 * unexaix.c, unexcoff.c, unexcw.c, unexelf.c, unexhp9k800.c:
20541 * unexmacosx.c, unexsol.c, unexw32.c: Include unexec.h.
20542 Change as necessary to match prototype in unexec.h.
20543
20544 * syntax.c (Fforward_comment, scan_lists): Rename locals to avoid
20545 shadowing.
20546 (back_comment, skip_chars): Mark vars as initialized.
20547
20548 * character.h (FETCH_STRING_CHAR_ADVANCE_NO_CHECK, BUF_INC_POS):
20549 Rename locals to avoid shadowing.
20550
20551 * lread.c (read1): Rewrite so as not to use empty "else".
20552 (Fload, readevalloop, read1): Rename locals to avoid shadowing.
20553
20554 * print.c (Fredirect_debugging_output): Fix pointer signedess.
20555
20556 * lisp.h (debug_output_compilation_hack): Add decl here, to avoid
20557 warning when compiling print.c.
20558
20559 * font.c (font_unparse_fcname): Abort in an "impossible" situation
20560 instead of using an uninitialized var.
20561 (font_sort_entities): Mark var as initialized.
20562
20563 * character.h (FETCH_CHAR_ADVANCE): Rename locals to avoid shadowing.
20564
20565 * font.c (font_unparse_xlfd): Don't mix pointers to variables with
20566 pointers to constants.
20567 (font_parse_fcname): Remove unused vars.
20568 (font_delete_unmatched): Now static.
20569 (font_get_spec): Remove; unused.
20570 (font_style_to_value, font_prop_validate_style, font_unparse_fcname):
20571 (font_update_drivers, Ffont_get_glyphs, font_add_log):
20572 Rename or move locals to avoid shadowing.
20573
20574 * fns.c (require_nesting_list, require_unwind): Now static.
20575 (Ffillarray): Rename locals to avoid shadowing.
20576
20577 * floatfns.c (domain_error2): Define only if needed.
20578 (Ffrexp, Fldexp): Rename locals to avoid shadowing.
20579
20580 * alloc.c (mark_backtrace): Move decl from here ...
20581 * lisp.h: ... to here, so that it can be checked.
20582
20583 * eval.c (call_debugger, do_debug_on_call, grow_specpdl): Now static.
20584 (Fdefvar): Rewrite so as not to use empty "else".
20585 (lisp_indirect_variable): Name an expression,
20586 to avoid gcc -Wbad-function-cast warning.
20587 (Fdefvar): Rename locals to avoid shadowing.
20588
20589 * callint.c (quotify_arg, quotify_args): Now static.
20590 (Fcall_interactively): Rename locals to avoid shadowing.
20591 Use const pointer when appropriate.
20592
20593 * lisp.h (get_system_name, get_operating_system_release):
20594 Move decls here, to check interfaces.
20595 * process.c (get_operating_system_release): Move decl to lisp.h.
20596 * xrdb.c (get_system_name): Likewise.
20597 * editfns.c (init_editfns, Fuser_login_name, Fuser_uid):
20598 (Fuser_real_uid, Fuser_full_name): Remove unnecessary casts,
20599 some of which prompt warnings from gcc -Wbad-function-cast.
20600 (Fformat_time_string, Fencode_time, Finsert_char):
20601 (Ftranslate_region_internal, Fformat):
20602 Rename or remove local vars to avoid shadowing.
20603 (Ftranslate_region_internal): Mark var as initialized.
20604
20605 * doc.c (Fdocumentation, Fsnarf_documentation): Move locals to
20606 avoid shadowing.
20607
20608 * lisp.h (eassert): Check that the argument compiles, even if
20609 ENABLE_CHECKING is not defined.
20610
20611 * data.c (Findirect_variable): Name an expression, to avoid
20612 gcc -Wbad-function-cast warning.
20613 (default_value, arithcompare, arith_driver, arith_error): Now static.
20614 (store_symval_forwarding): Rename local to avoid shadowing.
20615 (Fmake_variable_buffer_local, Fmake_local_variable):
20616 Mark variables as initialized.
20617 (do_blv_forwarding, do_symval_forwarding): Remove; unused.
20618
20619 * alloc.c (check_cons_list): Do not define unless GC_CHECK_CONS_LIST.
20620 (Fmake_vector, Fvector, Fmake_byte_code, Fgarbage_collect):
20621 Rename locals to avoid shadowing.
20622 (mark_stack): Move local variables into the #ifdef region where
20623 they're used.
20624 (BLOCK_INPUT_ALLOC, UNBLOCK_INPUT_ALLOC): Define only if
20625 ! defined SYSTEM_MALLOC && ! defined SYNC_INPUT, as they are not
20626 needed otherwise.
20627 (CHECK_ALLOCATED): Define only if GC_CHECK_MARKED_OBJECTS.
20628 (GC_STRING_CHARS): Remove; not used.
20629 (Fmemory_limit): Cast sbrk's returned value to char *.
20630
20631 * lisp.h (check_cons_list): Declare if GC_CHECK_CONS_LIST; this
20632 avoids undefined behavior in theory.
20633
20634 * regex.c (IF_LINT): Add defn, for benefit of ../lib-src.
20635
20636 Use functions, not macros, for up- and down-casing (Bug#8254).
20637 * buffer.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
20638 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Remove. All callers changed
20639 to use the following functions instead of these macros.
20640 (downcase): Adjust to lack of DOWNCASE_TABLE. Return int, not
20641 EMACS_INT, since callers assume the returned value fits in int.
20642 (upcase1): Likewise, for UPCASE_TABLE.
20643 (uppercasep, lowercasep, upcase): New static inline functions.
20644 * editfns.c (Fchar_equal): Remove no-longer-needed workaround for
20645 the race-condition problem in the old DOWNCASE.
20646
20647 * regex.c (CHARSET_LOOKUP_RANGE_TABLE_RAW, POP_FAILURE_REG_OR_COUNT):
20648 Rename locals to avoid shadowing.
20649 (regex_compile, re_match_2_internal): Move locals to avoid shadowing.
20650 (regex_compile, re_search_2, re_match_2_internal):
20651 Remove unused local vars.
20652 (FREE_VAR): Rewrite so as not to use empty "else",
20653 which gcc can warn about.
20654 (regex_compile, re_match_2_internal): Mark locals as initialized.
20655 (RETALLOC_IF): Define only if needed.
20656 (WORDCHAR_P): Likewise. This one is never needed, but is used
20657 only in a comment talking about a compiler bug, so put inside
20658 the #if 0 of that comment.
20659 (CHARSET_LOOKUP_BITMAP, FAIL_STACK_FULL, RESET_FAIL_STACK):
20660 (PUSH_FAILURE_ELT, BUF_PUSH_3, STOP_ADDR_VSTRING):
20661 Remove; unused.
20662
20663 * search.c (boyer_moore): Rename locals to avoid shadowing.
20664 * character.h (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE):
20665 (PREV_CHAR_BOUNDARY): Likewise.
20666
20667 * search.c (simple_search): Remove unused var.
20668
20669 * dired.c (compile_pattern): Move decl from here ...
20670 * lisp.h: ... to here, so that it can be checked.
20671 (struct re_registers): New forward decl.
20672
20673 * character.h (INC_POS, DEC_POS): Rename locals to avoid shadowing.
20674
20675 * indent.c (MULTIBYTE_BYTES_WIDTH): New args bytes, width.
20676 All uses changed.
20677 (MULTIBYTE_BYTES_WIDTH, scan_for_column, compute_motion):
20678 Rename locals to avoid shadowing.
20679 (Fvertical_motion): Mark locals as initialized.
20680
20681 * casefiddle.c (casify_object, casify_region): Now static.
20682 (casify_region): Mark local as initialized.
20683
20684 * cmds.c (internal_self_insert): Rename local to avoid shadowing.
20685
20686 * lisp.h (GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR, GCPRO6_VAR):
20687 New macros, so that the caller can use some names other than
20688 gcpro1, gcpro2, etc.
20689 (GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6): Reimplement in terms
20690 of the new macros.
20691 (GCPRO1_VAR, UNGCPRO_VAR): Change the meaning of the second
20692 argument, for consistency with GCPRO2_VAR, etc: it is now the
20693 prefix of the variable, not the variable itself. All uses
20694 changed.
20695 * dired.c (directory_files_internal, file_name_completion):
20696 Rename locals to avoid shadowing.
20697
20698 Fix a race condition diagnosed by gcc -Wsequence-point (Bug#8254).
20699 An expression of the form (DOWNCASE (x) == DOWNCASE (y)), found in
20700 dired.c's scmp function, had undefined behavior.
20701 * lisp.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
20702 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Move from here ...
20703 * buffer.h: ... to here, because these macros use current_buffer,
20704 and the new implementation with inline functions needs to have
20705 current_buffer in scope now, rather than later when the macros
20706 are used.
20707 (downcase, upcase1): New static inline functions.
20708 (DOWNCASE, UPCASE1): Reimplement using these functions.
20709 This avoids undefined behavior in expressions like
20710 DOWNCASE (x) == DOWNCASE (y), which previously suffered
20711 from race conditions in accessing the global variables
20712 case_temp1 and case_temp2.
20713 * casetab.c (case_temp1, case_temp2): Remove; no longer needed.
20714 * lisp.h (case_temp1, case_temp2): Remove their decls.
20715 * character.h (ASCII_CHAR_P): Move from here ...
20716 * lisp.h: ... to here, so that the inline functions mentioned
20717 above can use them.
20718
20719 * dired.c (directory_files_internal_unwind): Now static.
20720
20721 * fileio.c (file_name_as_directory, directory_file_name):
20722 (barf_or_query_if_file_exists, auto_save_error, auto_save_1):
20723 Now static.
20724 (file_name_as_directory): Use const pointers when appropriate.
20725 (Fexpand_file_name): Likewise. In particular, newdir might
20726 point at constant storage, so make it a const pointer.
20727 (Fmake_directory_internal, Fread_file_name): Remove unused vars.
20728 (Ffile_selinux_context, Fset_file_selinux_context): Fix pointer
20729 signedness issues.
20730 (Fset_file_times, Finsert_file_contents, auto_save_error):
20731 Rename locals to avoid shadowing.
20732
20733 * minibuf.c (choose_minibuf_frame_1): Now static.
20734 (Ftry_completion, Fall_completions): Rename or remove locals
20735 to avoid shadowing.
20736
20737 * marker.c (bytepos_to_charpos): Remove; unused.
20738
20739 * lisp.h (verify_bytepos, count_markers): New decls,
20740 so that gcc does not warn that these functions aren't declared.
20741
20742 * insdel.c (check_markers, make_gap_larger, make_gap_smaller):
20743 (reset_var_on_error, Fcombine_after_change_execute_1): Now static.
20744 (CHECK_MARKERS): Redo to avoid gcc -Wempty-body diagnostic.
20745 (copy_text): Remove unused local var.
20746
20747 * filelock.c (within_one_second): Now static.
20748 (lock_file_1): Rename local to avoid shadowing.
20749
20750 * buffer.c (fix_overlays_before): Mark locals as initialized.
20751 (fix_start_end_in_overlays): Likewise. This function should be
20752 simplified by using pointers-to-pointers, but that's a different
20753 matter.
20754 (switch_to_buffer_1): Now static.
20755 (Fkill_buffer, record_buffer, Fbury_buffer, Fset_buffer_multibyte):
20756 (report_overlay_modification): Rename locals to avoid shadowing.
20757
20758 * sysdep.c (system_process_attributes): Rename vars to avoid shadowing.
20759 Fix pointer signedness issue.
20760 (sys_subshell): Mark local as volatile if checking for lint,
20761 to suppress a gcc -Wclobbered warning that does not seem to be right.
20762 (MAXPATHLEN): Define only if needed.
20763
20764 * process.c (serial_open, serial_configure): Move decls from here ...
20765 * systty.h: ... to here, so that they can be checked.
20766
20767 * fns.c (get_random, seed_random): Move extern decls from here ...
20768 * lisp.h: ... to here, so that they can be checked.
20769
20770 * sysdep.c (reset_io): Now static.
20771 (wait_for_termination_signal): Remove; unused.
20772
20773 * keymap.c (keymap_parent, keymap_memberp, map_keymap_internal):
20774 (copy_keymap_item, append_key, push_text_char_description):
20775 Now static.
20776 (Fwhere_is_internal): Don't test CONSP (sequences) unnecessarily.
20777 (DENSE_TABLE_SIZE): Remove; unused.
20778 (get_keymap, access_keymap, Fdefine_key, Fwhere_is_internal):
20779 (describe_map_tree):
20780 Rename locals to avoid shadowing.
20781
20782 * keyboard.c: Declare functions static if they are not used elsewhere.
20783 (echo_char, echo_dash, cmd_error, top_level_2):
20784 (poll_for_input, handle_async_input): Now static.
20785 (read_char, kbd_buffer_get_event, make_lispy_position):
20786 (make_lispy_event, make_lispy_movement, apply_modifiers):
20787 (decode_keyboard_code, tty_read_avail_input, menu_bar_items):
20788 (parse_tool_bar_item, read_key_sequence, Fread_key_sequence):
20789 (Fread_key_sequence_vector): Rename locals to avoid shadowing.
20790 (read_key_sequence, read_char): Mark locals as initialized.
20791 (Fexit_recursive_edit, Fabort_recursive_edit): Mark with NO_RETURN.
20792
20793 * keyboard.h (make_ctrl_char): New decl.
20794 (mark_kboards): Move decl here ...
20795 * alloc.c (mark_kboards): ... from here.
20796
20797 * lisp.h (force_auto_save_soon): New decl.
20798
20799 * emacs.c (init_cmdargs): Rename local to avoid shadowing.
20800 (DEFINE_DUMMY_FUNCTION): New macro.
20801 (__do_global_ctors, __do_global_ctors_aux, __do_global_dtors, __main):
20802 Use it.
20803 (main): Add casts to avoid warnings
20804 if GCC considers string literals to be constants.
20805
20806 * lisp.h (fatal_error_signal): Add decl, since it's exported.
20807
20808 * dbusbind.c: Pointer signedness fixes.
20809 (xd_signature, xd_append_arg, xd_initialize):
20810 (Fdbus_call_method, Fdbus_call_method_asynchronously):
20811 (Fdbus_method_return_internal, Fdbus_method_error_internal):
20812 (Fdbus_send_signal, xd_read_message_1, Fdbus_register_service):
20813 (Fdbus_register_signal): Use SSDATA when the context wants char *.
20814
20815 * dbusbind.c (Fdbus_init_bus): Add cast to avoid warning
20816 if GCC considers string literals to be constants.
20817 (Fdbus_register_service, Fdbus_register_method): Remove unused vars.
20818
20819 2011-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
20820
20821 * print.c (PRINT_CIRCLE_CANDIDATE_P): New macro.
20822 (print_preprocess, print_object): New macro to fix last change.
20823
20824 * print.c (print_preprocess): Don't forget font objects.
20825
20826 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
20827
20828 * emacs.c (USAGE3): Doc fixes.
20829
20830 2011-03-15 Andreas Schwab <schwab@linux-m68k.org>
20831
20832 * coding.c (detect_coding_iso_2022): Reorganize code to clarify
20833 structure.
20834
20835 2011-03-14 Juanma Barranquero <lekktu@gmail.com>
20836
20837 * lisp.h (VWindow_system, Qfile_name_history):
20838 * keyboard.h (lispy_function_keys) [WINDOWSNT]:
20839 * w32term.h (w32_system_caret_hwnd, w32_system_caret_height)
20840 (w32_system_caret_x, w32_system_caret_y): Declare extern.
20841
20842 * w32select.c: Don't #include "keyboard.h".
20843 (run_protected): Add extern declaration for waiting_for_input.
20844
20845 * w32.c (Qlocal, noninteractive1, inhibit_window_system):
20846 * w32console.c (detect_input_pending, read_input_pending)
20847 (encode_terminal_code):
20848 * w32fns.c (quit_char, lispy_function_keys, Qtooltip)
20849 (w32_system_caret_hwnd, w32_system_caret_height, w32_system_caret_x)
20850 (w32_system_caret_y, Qfile_name_history):
20851 * w32font.c (w32font_driver, QCantialias, QCotf, QClang):
20852 * w32inevt.c (reinvoke_input_signal, lispy_function_keys):
20853 * w32menu.c (Qmenu_bar, QCtoggle, QCradio, Qoverriding_local_map)
20854 (Qoverriding_terminal_local_map, Qmenu_bar_update_hook):
20855 * w32proc.c (Qlocal, report_file_error):
20856 * w32term.c (Vwindow_system, updating_frame):
20857 * w32uniscribe.c (initialized, uniscribe_font_driver):
20858 Remove unneeded extern declarations.
20859
20860 2011-03-14 Chong Yidong <cyd@stupidchicken.com>
20861
20862 * buffer.c (Fmake_indirect_buffer): Fix incorrect assertions.
20863
20864 2011-03-13 Chong Yidong <cyd@stupidchicken.com>
20865
20866 * buffer.h (BUF_BEGV, BUF_BEGV_BYTE, BUF_ZV, BUF_ZV_BYTE, BUF_PT)
20867 (BUF_PT_BYTE): Rewrite to handle indirect buffers (Bug#8219).
20868 These macros can no longer be used for assignment.
20869
20870 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
20871 Assign struct members directly, instead of using BUF_BEGV etc.
20872 (record_buffer_markers, fetch_buffer_markers): New functions for
20873 recording and fetching special buffer markers.
20874 (set_buffer_internal_1, set_buffer_temp): Use them.
20875
20876 * lread.c (unreadchar): Use SET_BUF_PT_BOTH.
20877
20878 * insdel.c (adjust_point): Use SET_BUF_PT_BOTH.
20879
20880 * intervals.c (temp_set_point_both): Use SET_BUF_PT_BOTH.
20881 (get_local_map): Use SET_BUF_BEGV_BOTH and SET_BUF_ZV_BOTH.
20882
20883 * xdisp.c (hscroll_window_tree):
20884 (reconsider_clip_changes): Use PT instead of BUF_PT.
20885
20886 2011-03-13 Eli Zaretskii <eliz@gnu.org>
20887
20888 * makefile.w32-in ($(BLD)/editfns.$(O)): Depend on
20889 $(EMACS_ROOT)/lib/intprops.h.
20890
20891 2011-03-13 Paul Eggert <eggert@cs.ucla.edu>
20892
20893 Fix more problems found by GCC 4.5.2's static checks.
20894
20895 * gtkutil.c (xg_get_pixbuf_from_pixmap): Add cast from char *
20896 to unsigned char * to avoid compiler diagnostic.
20897 (xg_free_frame_widgets): Make it clear that a local variable is
20898 needed only if USE_GTK_TOOLTIP.
20899 (gdk_window_get_screen): Make it clear that this macro is needed
20900 only if USE_GTK_TOOLTIP.
20901 (int_gtk_range_get_value): New function, which avoids a diagnostic
20902 from gcc -Wbad-function-cast.
20903 (xg_set_toolkit_scroll_bar_thumb): Use it.
20904 (xg_tool_bar_callback, xg_tool_item_stale_p): Rewrite to avoid
20905 diagnostic from gcc -Wbad-function-cast.
20906 (get_utf8_string, xg_get_file_with_chooser):
20907 Rename locals to avoid shadowing.
20908 (create_dialog): Move locals to avoid shadowing.
20909
20910 * xgselect.c (xg_select): Remove unused var.
20911
20912 * image.c (four_corners_best): Mark locals as initialized.
20913 (gif_load): Initialize transparent_p to zero (Bug#8238).
20914 Mark another local as initialized.
20915 (my_png_error, my_error_exit): Mark with NO_RETURN.
20916
20917 * image.c (clear_image_cache): Now static.
20918 (DIM, HAVE_STDLIB_H_1): Remove unused macros.
20919 (xpm_load): Redo to avoid "discards qualifiers" gcc warning.
20920 (x_edge_detection): Remove unnecessary cast that
20921 gcc -Wbad-function-cast diagnoses.
20922 (gif_load): Fix pointer signedness.
20923 (clear_image_cache, xbm_read_bitmap_data, x_detect_edges):
20924 (jpeg_load, gif_load): Rename locals to avoid shadowing.
20925
20926 2011-03-12 Paul Eggert <eggert@cs.ucla.edu>
20927
20928 Improve quality of tests for time stamp overflow.
20929 For example, without this patch (encode-time 0 0 0 1 1
20930 1152921504606846976) returns the obviously-bogus value (-948597
20931 62170) on my RHEL 5.5 x86-64 host. With the patch, it correctly
20932 reports time overflow. See
20933 <http://lists.gnu.org/archive/html/emacs-devel/2011-03/msg00470.html>.
20934 * deps.mk (editfns.o): Depend on ../lib/intprops.h.
20935 * editfns.c: Include limits.h and intprops.h.
20936 (TIME_T_MIN, TIME_T_MAX): New macros.
20937 (time_overflow): Move earlier, to before first use.
20938 (hi_time, lo_time): New functions, for an accurate test for
20939 out-of-range times.
20940 (Fcurrent_time, Fget_internal_run_time, make_time): Use them.
20941 (Fget_internal_run_time): Don't assume time_t fits in int.
20942 (make_time): Use list2 instead of Fcons twice.
20943 (Fdecode_time): More accurate test for out-of-range times.
20944 (check_tm_member): New function.
20945 (Fencode_time): Use it, to test for out-of-range times.
20946 (lisp_time_argument): Don't rely on undefined left-shift and
20947 right-shift behavior when checking for time stamp overflow.
20948
20949 * editfns.c (time_overflow): New function, refactoring common code.
20950 (Fformat_time_string, Fdecode_time, Fencode_time):
20951 (Fcurrent_time_string): Use it.
20952
20953 Move 'make_time' to be next to its inverse 'lisp_time_argument'.
20954 * dired.c (make_time): Move to ...
20955 * editfns.c (make_time): ... here.
20956 * systime.h: Note the move.
20957
20958 2011-03-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20959
20960 * fringe.c (update_window_fringes): Remove unused variables.
20961
20962 * unexmacosx.c (copy_data_segment): Also copy __got section.
20963 (Bug#8223)
20964
20965 2011-03-12 Eli Zaretskii <eliz@gnu.org>
20966
20967 * termcap.c [MSDOS]: Include "msdos.h".
20968 (find_capability, tgetnum, tgetflag, tgetstr, tputs, tgetent):
20969 Constify `char *' arguments and their references according to
20970 prototypes in tparam.h.
20971
20972 * deps.mk (termcap.o): Depend on tparam.h and msdos.h.
20973
20974 * msdos.c (XMenuAddPane): 3rd argument is `const char *' now.
20975 Adapt all references accordingly.
20976
20977 * msdos.h (XMenuAddPane): 3rd argument is `const char *' now.
20978
20979 2011-03-11 Tom Tromey <tromey@redhat.com>
20980
20981 * buffer.c (syms_of_buffer): Remove obsolete comment.
20982
20983 2011-03-11 Eli Zaretskii <eliz@gnu.org>
20984
20985 * termhooks.h (encode_terminal_code): Declare prototype.
20986
20987 * msdos.c (encode_terminal_code): Don't declare prototype.
20988
20989 * term.c (encode_terminal_code): Now external again, used by
20990 w32console.c and msdos.c.
20991
20992 * makefile.w32-in ($(BLD)/term.$(O), ($(BLD)/tparam.$(O)):
20993 Depend on $(SRC)/tparam.h, see 2011-03-11T07:24:21Z!eggert@cs.ucla.edu.
20994
20995 2011-03-11 Paul Eggert <eggert@cs.ucla.edu>
20996
20997 Fix some minor problems found by GCC 4.5.2's static checks.
20998
20999 * fringe.c (update_window_fringes): Mark locals as initialized
21000 (Bug#8227).
21001 (destroy_fringe_bitmap, init_fringe_bitmap): Now static.
21002
21003 * alloc.c (mark_fringe_data): Move decl from here ...
21004 * lisp.h (mark_fringe_data) [HAVE_WINDOW_SYSTEM]: ... to here,
21005 to check its interface.
21006 (init_fringe_once): Do not declare unless HAVE_WINDOW_SYSTEM.
21007
21008 * fontset.c (free_realized_fontset): Now static.
21009 (Fset_fontset_font): Rename local to avoid shadowing.
21010 (fontset_font): Mark local as initialized.
21011 (FONTSET_SPEC, FONTSET_REPERTORY, RFONT_DEF_REPERTORY): Remove; unused.
21012
21013 * xrdb.c: Include "xterm.h", to check x_load_resources's interface.
21014
21015 * xselect.c (x_disown_buffer_selections): Remove; not used.
21016 (TRACE3) [!defined TRACE_SELECTION]: Remove; not used.
21017 (x_own_selection, Fx_disown_selection_internal): Rename locals
21018 to avoid shadowing.
21019 (x_handle_dnd_message): Remove local to avoid shadowing.
21020
21021 * lisp.h (GCPRO1_VAR, UNGCPRO_VAR): New macros,
21022 so that the caller can use some name other than gcpro1.
21023 (GCPRO1, UNGCPRO): Reimplement in terms of the new macros.
21024 * xfns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
21025 (Fx_backspace_delete_keys_p):
21026 Use them to avoid shadowing, and rename vars to avoid shadowing.
21027 (x_decode_color, x_set_name, x_window): Now static.
21028 (Fx_create_frame): Add braces to silence GCC warning.
21029 (Fx_file_dialog, Fx_select_font): Fix pointer signedness.
21030 (x_real_positions, xg_set_icon_from_xpm_data, x_create_tip_frame):
21031 Remove unused locals.
21032 (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
21033 (Fx_backspace_delete_keys_p): Rename locals to avoid shadowing.
21034 Some of these renamings use the new GCPRO1_VAR and UNGCPRO_VAR
21035 macros.
21036
21037 * xterm.h (x_mouse_leave): New decl.
21038
21039 * xterm.c (x_copy_dpy_color, x_focus_on_frame, x_unfocus_frame):
21040 Remove unused functions.
21041 (x_shift_glyphs_for_insert, XTflash, XTring_bell):
21042 (x_calc_absolute_position): Now static.
21043 (XTread_socket): Don't define label "out" unless it's used.
21044 Don't declare local "event" unless it's used.
21045 (x_iconify_frame, x_free_frame_resources): Don't declare locals
21046 unless they are used.
21047 (XEMBED_VERSION, xembed_set_info): Don't define unless needed.
21048 (x_fatal_error_signal): Remove; not used.
21049 (x_draw_image_foreground, redo_mouse_highlight, XTmouse_position):
21050 (x_scroll_bar_report_motion, handle_one_xevent, x_draw_bar_cursor):
21051 (x_error_catcher, x_connection_closed, x_error_handler):
21052 (x_error_quitter, xembed_send_message, x_iconify_frame):
21053 (my_log_handler): Rename locals to avoid shadowing.
21054 (x_delete_glyphs, x_ins_del_lines): Mark with NO_RETURN.
21055 (x_connection_closed): Tell GCC not to suggest NO_RETURN.
21056
21057 * xfaces.c (clear_face_cache, Fx_list_fonts, Fface_font):
21058 Rename or move locals to avoid shadowing.
21059 (tty_defined_color, merge_face_heights): Now static.
21060 (free_realized_faces_for_fontset): Remove; not used.
21061 (Fx_list_fonts): Mark variable that gcc -Wuninitialized
21062 does not deduce is never used uninitialized.
21063 (STRDUPA, LSTRDUPA, FONT_POINT_SIZE_QUANTUM): Remove; not used.
21064 (LFACEP): Define only if XASSERTS, as it's not needed otherwise.
21065
21066 * terminal.c (store_terminal_param): Now static.
21067
21068 * xmenu.c (menu_highlight_callback): Now static.
21069 (set_frame_menubar): Remove unused local.
21070 (xmenu_show): Rename parameter to avoid shadowing.
21071 (xmenu_show, xdialog_show, xmenu_show): Make local pointers "const"
21072 since they might point to immutable storage.
21073 (next_menubar_widget_id): Declare only if USE_X_TOOLKIT,
21074 since it's unused otherwise.
21075
21076 * xdisp.c (produce_glyphless_glyph): Initialize lower_xoff.
21077 Add a FIXME, since the code still doesn't look right. (Bug#8215)
21078 (Fcurrent_bidi_paragraph_direction): Simplify slightly; this
21079 avoids a gcc -Wuninitialized diagnostic.
21080 (display_line, BUILD_COMPOSITE_GLYPH_STRING, draw_glyphs):
21081 (note_mouse_highlight): Mark variables that gcc -Wuninitialized
21082 does not deduce are never used uninitialized.
21083
21084 * lisp.h (IF_LINT): New macro, copied from ../lib-src/emacsclient.c.
21085
21086 * xdisp.c (redisplay_window): Rename local to avoid shadowing.
21087 * window.c (window_loop, size_window):
21088 (run_window_configuration_change_hook, enlarge_window): Likewise.
21089
21090 * window.c (display_buffer): Now static.
21091 (size_window): Mark variables that gcc -Wuninitialized
21092 does not deduce are never used uninitialized.
21093 * window.h (check_all_windows): New decl, to forestall
21094 gcc -Wmissing-prototypes diagnostic.
21095 * dispextern.h (bidi_dump_cached_states): Likewise.
21096
21097 * charset.h (CHECK_CHARSET_GET_CHARSET): Rename locals to avoid
21098 shadowing.
21099 * charset.c (map_charset_for_dump, Fchar_charset): Likewise.
21100 Include <limits.h>.
21101 (Fsort_charsets): Redo min/max calculation to shorten the code a bit
21102 and to avoid gcc -Wuninitialized warning.
21103 (load_charset_map): Mark variables that gcc -Wuninitialized
21104 does not deduce are never used uninitialized.
21105 (load_charset): Abort instead of using uninitialized var (Bug#8229).
21106
21107 * coding.c (coding_set_source, coding_set_destination):
21108 Use "else { /* comment */ }" rather than "else /* comment */;"
21109 for clarity, and to avoid gcc -Wempty-body warning.
21110 (Fdefine_coding_system_internal): Don't redeclare 'i' inside
21111 a block, when the outer 'i' will do.
21112 (decode_coding_utf_8, decode_coding_utf_16, detect_coding_emacs_mule):
21113 (emacs_mule_char, decode_coding_emacs_mule, detect_coding_iso_2022):
21114 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5):
21115 (decode_coding_raw_text, decode_coding_charset, get_translation_table):
21116 (Fdecode_sjis_char, Fdefine_coding_system_internal):
21117 Rename locals to avoid shadowing.
21118 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
21119 * coding.c (emacs_mule_char, encode_invocation_designation):
21120 Now static, since they're not used elsewhere.
21121 (decode_coding_iso_2022): Add "default: abort ();" as a safety check.
21122 (decode_coding_object, encode_coding_object, detect_coding_system):
21123 (decode_coding_emacs_mule): Mark variables that gcc
21124 -Wuninitialized does not deduce are never used uninitialized.
21125 (detect_coding_iso_2022): Initialize a local variable that might
21126 be used uninitialized. Leave a FIXME because it's not clear that
21127 this initialization is needed. (Bug#8211)
21128 (ISO_CODE_LF, ISO_CODE_CR, CODING_ISO_FLAG_EUC_TW_SHIFT):
21129 (ONE_MORE_BYTE_NO_CHECK, UTF_BOM, UTF_16_INVALID_P):
21130 (SHIFT_OUT_OK, ENCODE_CONTROL_SEQUENCE_INTRODUCER):
21131 (ENCODE_DIRECTION_R2L, ENCODE_DIRECTION_L2R):
21132 Remove unused macros.
21133
21134 * category.c (hash_get_category_set): Remove unused local var.
21135 (copy_category_table): Now static, since it's not used elsewhere.
21136 * character.c (string_count_byte8): Likewise.
21137
21138 * ccl.c (CCL_WRITE_STRING, CCL_ENCODE_CHAR, Fccl_execute_on_string):
21139 (Fregister_code_conversion_map): Rename locals to avoid shadowing.
21140
21141 * chartab.c (copy_sub_char_table): Now static, since it's not used
21142 elsewhere.
21143 (sub_char_table_ref_and_range, char_table_ref_and_range):
21144 Rename locals to avoid shadowing.
21145 (ASET_RANGE, GET_SUB_CHAR_TABLE): Remove unused macros.
21146
21147 * bidi.c (bidi_check_type): Now static, since it's not used elsewhere.
21148 (BIDI_BOB): Remove unused macro.
21149
21150 * cm.c (cmgoto): Mark variables that gcc -Wuninitialized does not
21151 deduce are never used uninitialized.
21152 * term.c (encode_terminal_code): Likewise.
21153
21154 * term.c (encode_terminal_code): Now static. Remove unused local.
21155
21156 * tparam.h: New file.
21157 * term.c, tparam.h: Include it.
21158 * deps.mk (term.o, tparam.o): Depend on tparam.h.
21159 * term.c (tputs, tgetent, tgetflag, tgetnum, tparam, tgetstr):
21160 Move these decls to tparam.h, and make them agree with what
21161 is actually in tparam.c. The previous trick of using incompatible
21162 decls in different modules does not conform to the C standard.
21163 All callers of tparam changed to use tparam's actual API.
21164 * tparam.c (tparam1, tparam, tgoto):
21165 Use const pointers where appropriate.
21166
21167 * cm.c (calccost, cmgoto): Use const pointers where appropriate.
21168 * cm.h (struct cm): Likewise.
21169 * dispextern.h (do_line_insertion_deletion_costs): Likewise.
21170 * scroll.c (ins_del_costs, do_line_insertion_deletion_costs): Likewise.
21171 * term.c (tty_ins_del_lines, calculate_costs, struct fkey_table):
21172 (term_get_fkeys_1, append_glyphless_glyph, produce_glyphless_glyph):
21173 (turn_on_face, init_tty): Likewise.
21174 * termchar.h (struct tty_display_info): Likewise.
21175
21176 * term.c (term_mouse_position): Rename local to avoid shadowing.
21177
21178 * alloc.c (mark_ttys): Move decl from here ...
21179 * lisp.h (mark_ttys): ... to here, so that it's checked against defn.
21180
21181 2011-03-11 Andreas Schwab <schwab@linux-m68k.org>
21182
21183 * .gdbinit (pwinx, xbuffer): Fix access to buffer name.
21184
21185 2011-03-09 Juanma Barranquero <lekktu@gmail.com>
21186
21187 * search.c (compile_pattern_1): Remove argument regp, unused since
21188 revid:rms@gnu.org-19941211082627-3x1g1wyqkjmwloig.
21189 (compile_pattern): Don't pass it.
21190
21191 2011-03-08 Jan Djärv <jan.h.d@swipnet.se>
21192
21193 * xterm.h (DEFAULT_GDK_DISPLAY): New define.
21194 (GDK_WINDOW_XID, gtk_widget_get_preferred_size): New defines
21195 for ! HAVE_GTK3.
21196 (GTK_WIDGET_TO_X_WIN): Use GDK_WINDOW_XID.
21197
21198 * xmenu.c (menu_position_func): Call gtk_widget_get_preferred_size.
21199
21200 * gtkutil.c: Include gtkx.h if HAVE_GTK3. If ! HAVE_GTK3, define
21201 gdk_window_get_screen, gdk_window_get_geometry,
21202 gdk_x11_window_lookup_for_display and GDK_KEY_g.
21203 (xg_set_screen): Use DEFAULT_GDK_DISPLAY.
21204 (xg_get_pixbuf_from_pixmap): New function.
21205 (xg_get_pixbuf_from_pix_and_mask): Change parameters from GdkPixmap
21206 to Pixmap, take frame as parameter, remove GdkColormap parameter.
21207 Call xg_get_pixbuf_from_pixmap instead of
21208 gdk_pixbuf_get_from_drawable.
21209 (xg_get_image_for_pixmap): Do not make GdkPixmaps, call
21210 xg_get_pixbuf_from_pix_and_mask with Pixmap parameters instead.
21211 (xg_check_special_colors): Use GtkStyleContext and its functions
21212 for HAVE_GTK3.
21213 (xg_prepare_tooltip, xg_hide_tooltip): Call gdk_window_get_screen.
21214 (xg_prepare_tooltip, create_dialog, menubar_map_cb)
21215 (xg_update_frame_menubar, xg_tool_bar_detach_callback)
21216 (xg_tool_bar_attach_callback, xg_update_tool_bar_sizes):
21217 Call gtk_widget_get_preferred_size.
21218 (xg_frame_resized): gdk_window_get_geometry only takes 5
21219 parameters.
21220 (xg_win_to_widget, xg_event_is_for_menubar):
21221 Call gdk_x11_window_lookup_for_display.
21222 (xg_set_widget_bg): New function.
21223 (delete_cb): New function.
21224 (xg_create_frame_widgets): Connect delete-event to delete_cb.
21225 Call xg_set_widget_bg. Only set background pixmap for ! HAVE_GTK3
21226 (xg_set_background_color): Call xg_set_widget_bg.
21227 (xg_set_frame_icon): Call xg_get_pixbuf_from_pix_and_mask.
21228 (xg_create_scroll_bar): vadj is a GtkAdjustment for HAVE_GTK3.
21229 Only call gtk_range_set_update_policy if ! HAVE_GTK3.
21230 (xg_make_tool_item): Only connect xg_tool_bar_item_expose_callback
21231 if ! HAVE_GTK3.
21232 (update_frame_tool_bar): Call gtk_widget_hide.
21233 (xg_initialize): Use GDK_KEY_g.
21234
21235 * xsmfns.c (gdk_set_sm_client_id): Define to gdk_set_sm_client_id
21236 if ! HAVE_GTK3
21237 (x_session_initialize): Call gdk_x11_set_sm_client_id.
21238
21239 * xterm.c (XFillRectangle): Use cairo routines for HAVE_GTK3.
21240 (x_term_init): Disable Xinput(2) with GDK_CORE_DEVICE_EVENTS.
21241 Load ~/emacs.d/gtkrc only for ! HAVE_GTK3.
21242
21243 2011-03-08 Juanma Barranquero <lekktu@gmail.com>
21244
21245 * w32xfns.c (select_palette): Check success of RealizePalette against
21246 GDI_ERROR, not zero.
21247
21248 See ChangeLog.11 for earlier changes.
21249
21250 ;; Local Variables:
21251 ;; coding: utf-8
21252 ;; End:
21253
21254 Copyright (C) 2011-2012 Free Software Foundation, Inc.
21255
21256 This file is part of GNU Emacs.
21257
21258 GNU Emacs is free software: you can redistribute it and/or modify
21259 it under the terms of the GNU General Public License as published by
21260 the Free Software Foundation, either version 3 of the License, or
21261 (at your option) any later version.
21262
21263 GNU Emacs is distributed in the hope that it will be useful,
21264 but WITHOUT ANY WARRANTY; without even the implied warranty of
21265 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21266 GNU General Public License for more details.
21267
21268 You should have received a copy of the GNU General Public License
21269 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.